/external/clang/test/CodeGen/ |
atomics-inlining.c | 24 (void)__atomic_store(&c1, &c2, memory_order_seq_cst); 26 (void)__atomic_store(&s1, &s2, memory_order_seq_cst); 28 (void)__atomic_store(&i1, &i2, memory_order_seq_cst); 30 (void)__atomic_store(&ll1, &ll2, memory_order_seq_cst); 32 (void)__atomic_store(&a1, &a2, memory_order_seq_cst); 44 // ARM: call arm_aapcscc void @__atomic_store(i32 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0) 56 // PPC32: call void @__atomic_store(i32 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0) 68 // PPC64: call void @__atomic_store(i64 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0) 80 // MIPS32: call void @__atomic_store(i32 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0) 92 // MIPS64: call void @__atomic_store(i64 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([ (…) [all...] |
arm-atomics-m.c | 23 __atomic_store(&i, &r, memory_order_seq_cst); 34 __atomic_store(&l, &rl, memory_order_seq_cst);
|
arm-atomics-m0.c | 23 __atomic_store(&i, &r, memory_order_seq_cst); 34 __atomic_store(&l, &rl, memory_order_seq_cst);
|
arm-atomics.c | 25 __atomic_store(&i, &r, memory_order_seq_cst); 36 __atomic_store(&l, &rl, memory_order_seq_cst);
|
big-atomic-ops.c | 47 __atomic_store(i, &v, memory_order_seq_cst); 250 // CHECK: call void @__atomic_store(i64 512, i8* bitcast ({{.*}} @bigAtomic to i8*), 253 __atomic_store(&smallThing, &b, 5); 254 // CHECK: call void @__atomic_store(i64 3, i8* {{.*}} @smallThing 256 __atomic_store(&bigThing, &f, 5); 257 // CHECK: call void @__atomic_store(i64 512, i8* {{.*}} @bigThing
|
atomic-ops.c | 47 __atomic_store(i, &v, memory_order_seq_cst); 262 __atomic_store(&smallThing, &b, 5); 263 // CHECK: call void @__atomic_store(i32 3, i8* {{.*}} @smallThing 265 __atomic_store(&bigThing, &f, 5); 266 // CHECK: call void @__atomic_store(i32 512, i8* {{.*}} @bigThing
|
/external/clang/test/Sema/ |
atomic-requires-library-error.c | 20 __atomic_store(&smallThing, &b, 5); 22 __atomic_store(&bigThing, &f, 5);
|
atomic-ops.c | 117 __atomic_store(I, *P, memory_order_release); member in struct:s2 118 __atomic_store(s1, s2, memory_order_release); 119 __atomic_store(i, I, memory_order_release); // expected-error {{trivially-copyable}} 280 (void)__atomic_store(p, p, memory_order_relaxed); 281 (void)__atomic_store(p, p, memory_order_acquire); // expected-warning {{memory order argument to atomic operation is invalid}} 282 (void)__atomic_store(p, p, memory_order_consume); // expected-warning {{memory order argument to atomic operation is invalid}} 283 (void)__atomic_store(p, p, memory_order_release); 284 (void)__atomic_store(p, p, memory_order_acq_rel); // expected-warning {{memory order argument to atomic operation is invalid}} 285 (void)__atomic_store(p, p, memory_order_seq_cst);
|
/external/compiler-rt/lib/builtins/ |
apple_versioning.c | 198 NOT_HERE_IN_10_8_AND_EARLIER(__atomic_store)
|
atomic.c | 41 #pragma redefine_extname __atomic_store_c __atomic_store
|