Lines Matching full:i64
22 (void) __sync_fetch_and_add (&sll, 1); // CHECK: atomicrmw add i64
23 (void) __sync_fetch_and_add (&ull, 1); // CHECK: atomicrmw add i64
31 (void) __sync_fetch_and_sub (&sll, 1); // CHECK: atomicrmw sub i64
32 (void) __sync_fetch_and_sub (&ull, 1); // CHECK: atomicrmw sub i64
40 (void) __sync_fetch_and_or (&sll, 1); // CHECK: atomicrmw or i64
41 (void) __sync_fetch_and_or (&ull, 1); // CHECK: atomicrmw or i64
49 (void) __sync_fetch_and_xor (&sll, 1); // CHECK: atomicrmw xor i64
50 (void) __sync_fetch_and_xor (&ull, 1); // CHECK: atomicrmw xor i64
58 (void) __sync_fetch_and_and (&sll, 1); // CHECK: atomicrmw and i64
59 (void) __sync_fetch_and_and (&ull, 1); // CHECK: atomicrmw and i64
169 sll = __sync_val_compare_and_swap (&sll, uc, sc); // CHECK: cmpxchg i64
170 ull = __sync_val_compare_and_swap (&ull, uc, sc); // CHECK: cmpxchg i64
190 sll = __sync_lock_test_and_set (&sll, 1); // CHECK: atomicrmw xchg i64
191 ull = __sync_lock_test_and_set (&ull, 1); // CHECK: atomicrmw xchg i64