/external/llvm/test/CodeGen/ARM/ |
2012-06-12-SchedMemLatency.ll | 8 ; CHECK: SU(2){{.*}}STR{{.*}}Volatile 12 ; CHECK: SU(3){{.*}}LDR{{.*}}Volatile 29 store volatile i32 65540, i32* %p1, align 4 30 %0 = load volatile i32* %p2, align 4
|
/external/llvm/test/CodeGen/R600/ |
atomic_load_add.ll | 8 %unused = atomicrmw volatile add i32 addrspace(3)* %local, i32 5 seq_cst 17 %val = atomicrmw volatile add i32 addrspace(3)* %gep, i32 5 seq_cst 25 %val = atomicrmw volatile add i32 addrspace(3)* %local, i32 5 seq_cst 35 %val = atomicrmw volatile add i32 addrspace(3)* %gep, i32 5 seq_cst
|
atomic_load_sub.ll | 8 %unused = atomicrmw volatile sub i32 addrspace(3)* %local, i32 5 seq_cst 17 %val = atomicrmw volatile sub i32 addrspace(3)* %gep, i32 5 seq_cst 25 %val = atomicrmw volatile sub i32 addrspace(3)* %local, i32 5 seq_cst 35 %val = atomicrmw volatile sub i32 addrspace(3)* %gep, i32 5 seq_cst
|
/external/llvm/test/CodeGen/SystemZ/ |
branch-01.ll | 12 store volatile i8 1, i8 *%dest
|
frame-10.ll | 12 store volatile i8 *%addr, i8 **%dest
|
/external/llvm/test/CodeGen/X86/ |
store-empty-member.ll | 12 store volatile %testType {i32 1, [0 x i32] zeroinitializer, i32 2}, %testType* %1
|
/external/llvm/test/Transforms/InstCombine/ |
2008-04-29-VolatileLoadDontMerge.ll | 1 ; RUN: opt < %s -instcombine -S | grep "load volatile" | count 2 9 %tmp34 = load volatile i32* @g_1, align 4 ; <i32> [#uses=1] 16 store volatile i32 %tmp4, i32* @g_1, align 4 19 %tmp3 = load volatile i32* @g_1, align 4 ; <i32> [#uses=1]
|
2008-07-08-VolatileLoadMerge.ll | 1 ; RUN: opt < %s -instcombine -S | grep "load volatile" | count 2 10 %tmp34 = load volatile i32* @g_1, align 4 ; <i32> [#uses=1] 17 store volatile i32 %tmp4, i32* @g_1, align 4 20 %tmp3 = load volatile i32* @g_1, align 4 ; <i32> [#uses=1]
|
/external/qemu/distrib/mini-glib/src/ |
glib-mini-win32.c | 23 void g_atomic_int_inc(int volatile* atomic) { 25 InterlockedIncrement((LONG volatile*)atomic); 28 gboolean g_atomic_int_dec_and_test(int volatile* atomic) { 30 return !InterlockedIncrement((LONG volatile*)atomic);
|
/external/qemu/distrib/sdl-1.2.15/src/thread/win32/ |
win_ce_semaphore.h | 8 volatile LONG CurCount;
|
/external/skia/src/ports/ |
SkBarriers_tsan.h | 11 static inline void sk_compiler_barrier() { asm volatile("" : : : "memory"); }
|
/external/valgrind/main/helgrind/tests/ |
hg03_inherit.c | 11 static volatile int shared[2]; 15 volatile int *ip = (int *)v; 25 volatile int *ip = (int *)v; 37 volatile int ret = 0;
|
/external/valgrind/main/none/tests/s390x/ |
bfp-3.c | 10 __asm__ volatile("maebr %[r1],%[r3],%[r2]" 19 __asm__ volatile("madbr %[r1],%[r3],%[r2]" 28 __asm__ volatile("msebr %[r1],%[r3],%[r2]" 37 __asm__ volatile("msdbr %[r1],%[r3],%[r2]"
|
dfp-2.c | 17 asm volatile(".insn rre, 0xb3e50000, %[out], %[in]\n\t" 27 asm volatile(".insn rre, 0xb3ed0000, %[out], %[in]\n\t" 37 asm volatile(".insn rre, 0xb3e70000, %[out], %[in]\n\t" 47 asm volatile(".insn rre, 0xb3ef0000, %[out], %[in]\n\t" 58 asm volatile (".insn rrf, 0xb3f60000, %[out], %[amount], %[in], 0\n\t" 73 asm volatile (".insn rrf, 0xb3fe0000, %[out], %[amount], %[in], 0\n\t" 88 asm volatile(".insn rre, 0xb3d60000, %[out], %[in]\n\t" 102 asm volatile(".insn rre, 0xb3de0000, %[out], %[in]\n\t" 116 asm volatile ( 142 asm volatile ( [all...] |
fold_And16.c | 9 __asm__ volatile ( "iihl %[p],0x0a00\n\t"
|
lam_stam.c | 13 asm volatile( "larl 1,input\n\t"
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.flag/ |
atomic_flag_clear_explicit.pass.cpp | 14 // void atomic_flag_clear_explicit(volatile atomic_flag*, memory_order); 41 volatile std::atomic_flag f; 47 volatile std::atomic_flag f; 53 volatile std::atomic_flag f;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.trans/meta.trans.cv/ |
add_const.pass.cpp | 30 test_add_const_imp<volatile T, volatile const T>(); 31 test_add_const_imp<const volatile T, const volatile T>();
|
remove_const.pass.cpp | 30 test_remove_const_imp<volatile T, volatile T>(); 31 test_remove_const_imp<const volatile T, volatile T>();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/ |
has_virtual_destructor.pass.cpp | 21 static_assert( std::has_virtual_destructor<volatile T>::value, ""); 22 static_assert( std::has_virtual_destructor<const volatile T>::value, ""); 30 static_assert(!std::has_virtual_destructor<volatile T>::value, ""); 31 static_assert(!std::has_virtual_destructor<const volatile T>::value, "");
|
is_abstract.pass.cpp | 21 static_assert( std::is_abstract<volatile T>::value, ""); 22 static_assert( std::is_abstract<const volatile T>::value, ""); 30 static_assert(!std::is_abstract<volatile T>::value, ""); 31 static_assert(!std::is_abstract<const volatile T>::value, "");
|
is_empty.pass.cpp | 21 static_assert( std::is_empty<volatile T>::value, ""); 22 static_assert( std::is_empty<const volatile T>::value, ""); 30 static_assert(!std::is_empty<volatile T>::value, ""); 31 static_assert(!std::is_empty<const volatile T>::value, "");
|
is_final.pass.cpp | 27 static_assert( std::is_final<volatile T>::value, ""); 28 static_assert( std::is_final<const volatile T>::value, ""); 36 static_assert(!std::is_final<volatile T>::value, ""); 37 static_assert(!std::is_final<const volatile T>::value, "");
|
is_nothrow_default_constructible.pass.cpp | 21 static_assert( std::is_nothrow_default_constructible<volatile T>::value, ""); 22 static_assert( std::is_nothrow_default_constructible<const volatile T>::value, ""); 30 static_assert(!std::is_nothrow_default_constructible<volatile T>::value, ""); 31 static_assert(!std::is_nothrow_default_constructible<const volatile T>::value, "");
|
is_pod.pass.cpp | 21 static_assert( std::is_pod<volatile T>::value, ""); 22 static_assert( std::is_pod<const volatile T>::value, ""); 30 static_assert(!std::is_pod<volatile T>::value, ""); 31 static_assert(!std::is_pod<const volatile T>::value, "");
|