Home | History | Annotate | Download | only in CodeGen

Lines Matching full:cmpxchg

163   sc = __sync_val_compare_and_swap (&sc, uc, sc); // CHECK: cmpxchg i8
164 uc = __sync_val_compare_and_swap (&uc, uc, sc); // CHECK: cmpxchg i8
165 ss = __sync_val_compare_and_swap (&ss, uc, sc); // CHECK: cmpxchg i16
166 us = __sync_val_compare_and_swap (&us, uc, sc); // CHECK: cmpxchg i16
167 si = __sync_val_compare_and_swap (&si, uc, sc); // CHECK: cmpxchg i32
168 ui = __sync_val_compare_and_swap (&ui, uc, sc); // CHECK: cmpxchg i32
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
172 ui = __sync_bool_compare_and_swap (&sc, uc, sc); // CHECK: cmpxchg
173 ui = __sync_bool_compare_and_swap (&uc, uc, sc); // CHECK: cmpxchg
174 ui = __sync_bool_compare_and_swap (&ss, uc, sc); // CHECK: cmpxchg
175 ui = __sync_bool_compare_and_swap (&us, uc, sc); // CHECK: cmpxchg
176 ui = __sync_bool_compare_and_swap (&si, uc, sc); // CHECK: cmpxchg
177 ui = __sync_bool_compare_and_swap (&ui, uc, sc); // CHECK: cmpxchg
178 ui = __sync_bool_compare_and_swap (&sll, uc, sc); // CHECK: cmpxchg
179 ui = __sync_bool_compare_and_swap (&ull, uc, sc); // CHECK: cmpxchg