gc-alloc 0.1.1

A Rust library for garbage-collected memory allocation using libgc (bdwgc).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
        .seg    "text"
#if !defined(AO_NO_SPARC_V9)
        .globl  AO_fetch_compare_and_swap_full
AO_fetch_compare_and_swap_full:
        membar  #StoreLoad | #LoadLoad
#if defined(__arch64__) || defined(__sparcv9)
        casx    [%o0],%o1,%o2
#else
        cas     [%o0],%o1,%o2
#endif
        membar  #StoreLoad | #StoreStore
        retl
        mov     %o2, %o0
#endif
        .globl  AO_test_and_set_full
AO_test_and_set_full:
        retl
        ldstub  [%o0],%o0