/external/clang/test/CodeGen/ |
atomics-inlining.c | 23 (void)__atomic_load(&c1, &c2, memory_order_seq_cst); 25 (void)__atomic_load(&s1, &s2, memory_order_seq_cst); 27 (void)__atomic_load(&i1, &i2, memory_order_seq_cst); 29 (void)__atomic_load(&ll1, &ll2, memory_order_seq_cst); 31 (void)__atomic_load(&a1, &a2, memory_order_seq_cst); 43 // ARM: call arm_aapcscc void @__atomic_load(i32 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0) 55 // PPC32: call void @__atomic_load(i32 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0) 67 // PPC64: call void @__atomic_load(i64 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0) 79 // MIPS32: call void @__atomic_load(i32 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0) 91 // MIPS64: call void @__atomic_load(i64 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0 [all...] |
arm-atomics-m.c | 20 __atomic_load(&i, &r, memory_order_seq_cst); 31 __atomic_load(&l, &rl, memory_order_seq_cst);
|
arm-atomics-m0.c | 20 __atomic_load(&i, &r, memory_order_seq_cst); 31 __atomic_load(&l, &rl, memory_order_seq_cst);
|
arm-atomics.c | 22 __atomic_load(&i, &r, memory_order_seq_cst); 33 __atomic_load(&l, &rl, memory_order_seq_cst);
|
big-atomic-ops.c | 27 __atomic_load(i, &v, memory_order_seq_cst); 262 // CHECK: call void @__atomic_load(i64 512, i8* bitcast ({{.*}} @bigAtomic to i8*), 265 __atomic_load(&smallThing, &b, 5); 266 // CHECK: call void @__atomic_load(i64 3, i8* {{.*}} @smallThing 268 __atomic_load(&bigThing, &f, 5); 269 // CHECK: call void @__atomic_load(i64 512, i8* {{.*}} @bigThing
|
atomic-ops.c | 27 __atomic_load(i, &v, memory_order_seq_cst); 271 __atomic_load(&smallThing, &b, 5); 272 // CHECK: call void @__atomic_load(i32 3, i8* {{.*}} @smallThing 275 __atomic_load(&bigThing, &f, 5); 276 // CHECK: call void @__atomic_load(i32 512, i8* {{.*}} @bigThing
|
/external/clang/test/Sema/ |
atomic-requires-library-error.c | 28 __atomic_load(&smallThing, &b, 5); 30 __atomic_load(&bigThing, &f, 5);
|
atomic-ops.c | 100 __atomic_load(i, I, memory_order_relaxed); // expected-error {{must be a pointer to a trivially-copyable type}} 101 __atomic_load(I, i, memory_order_relaxed); // expected-warning {{passing '_Atomic(int) *' to parameter of type 'int *'}} 102 __atomic_load(I, *P, memory_order_relaxed); member in struct:s2 103 __atomic_load(I, *P, memory_order_relaxed, 42); // expected-error {{too many arguments}} member in struct:s2 104 (int)__atomic_load(I, I, memory_order_seq_cst); // expected-error {{operand of type 'void'}} 105 __atomic_load(s1, s2, memory_order_acquire); 273 (void)__atomic_load(p, p, memory_order_relaxed); 274 (void)__atomic_load(p, p, memory_order_acquire); 275 (void)__atomic_load(p, p, memory_order_consume); 276 (void)__atomic_load(p, p, memory_order_release); // expected-warning {{memory order argument to atomic operation is in (…) [all...] |
/external/compiler-rt/lib/builtins/ |
apple_versioning.c | 192 NOT_HERE_IN_10_8_AND_EARLIER(__atomic_load)
|
atomic.c | 40 #pragma redefine_extname __atomic_load_c __atomic_load
|