Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:sll

11 signed long long sll;
22 (void) __sync_fetch_and_add (&sll, 1); // CHECK: atomicrmw add i64
31 (void) __sync_fetch_and_sub (&sll, 1); // CHECK: atomicrmw sub i64
40 (void) __sync_fetch_and_or (&sll, 1); // CHECK: atomicrmw or i64
49 (void) __sync_fetch_and_xor (&sll, 1); // CHECK: atomicrmw xor i64
58 (void) __sync_fetch_and_and (&sll, 1); // CHECK: atomicrmw and i64
71 sll = __sync_fetch_and_add (&sll, 11); // CHECK: atomicrmw add
80 sll = __sync_fetch_and_sub (&sll, 11); // CHECK: atomicrmw sub
89 sll = __sync_fetch_and_or (&sll, 11); // CHECK: atomicrmw or
98 sll = __sync_fetch_and_xor (&sll, 11); // CHECK: atomicrmw xor
107 sll = __sync_fetch_and_and (&sll, 11); // CHECK: atomicrmw and
120 sll = __sync_add_and_fetch (&sll, uc); // CHECK: atomicrmw add
129 sll = __sync_sub_and_fetch (&sll, uc); // CHECK: atomicrmw sub
138 sll = __sync_or_and_fetch (&sll, uc); // CHECK: atomicrmw or
147 sll = __sync_xor_and_fetch (&sll, uc); // CHECK: atomicrmw xor
156 sll = __sync_and_and_fetch (&sll, uc); // CHECK: atomicrmw and
187 sll = __sync_val_compare_and_swap (&sll, uc, sc);
220 ui = __sync_bool_compare_and_swap (&sll, uc, sc);
237 sll = __sync_lock_test_and_set (&sll, 1); // CHECK: atomicrmw xchg i64
248 __sync_lock_release (&sll); // CHECK: store atomic {{.*}} release, align 8