Home
last modified time | relevance | path

Searched refs:AtomicStore (Results 1 – 19 of 19) sorted by relevance

/external/deqp-deps/glslang/Test/baseResults/
Dspv.atomicFloat.comp.out258 AtomicStore 111 19 58 112
268 AtomicStore 11(atomf) 19 58 119
280 AtomicStore 127 19 58 128
290 AtomicStore 37(atomd) 19 58 135
335 AtomicStore 181 19 157 180
380 AtomicStore 224 19 157 223
425 AtomicStore 262 19 157 261
470 AtomicStore 300 19 157 299
515 AtomicStore 344 19 157 343
560 AtomicStore 384 19 157 383
[all …]
Dspv.memoryScopeSemantics.comp.out198 AtomicStore 23(atomu) 12 33 32
206 AtomicStore 52 12 33 51
283 AtomicStore 166 12 33 14
285 AtomicStore 168 12 33 167
Dspv.imageAtomic64.frag.out311 AtomicStore 191 116 119 190
481 AtomicStore 362 116 119 361
/external/swiftshader/third_party/subzero/src/
DIceIntrinsics.cpp67 case AtomicStore: in isMemoryOrderValid()
DIceIntrinsics.h42 AtomicStore, enumerator
DIceTargetLoweringMIPS32.cpp638 case Intrinsics::AtomicStore: { in genTargetHelperCallFor()
4628 case Intrinsics::AtomicStore: { in lowerIntrinsic()
DIceTargetLoweringARM32.cpp5065 case Intrinsics::AtomicStore: { in lowerIntrinsic()
DIceTargetLoweringX86BaseImpl.h4225 case Intrinsics::AtomicStore: {
/external/llvm-project/llvm/test/Instrumentation/MemorySanitizer/
Datomics.ll144 define void @AtomicStore(i32* %p, i32 %x) sanitize_memory {
150 ; CHECK-LABEL: @AtomicStore
/external/llvm/test/Instrumentation/MemorySanitizer/
Datomics.ll138 define void @AtomicStore(i32* %p, i32 %x) sanitize_memory {
144 ; CHECK-LABEL: @AtomicStore
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyInstrAtomics.td271 multiclass AtomicStore<WebAssemblyRegClass rc, string name, int atomic_op> {
276 defm ATOMIC_STORE_I32 : AtomicStore<I32, "i32.atomic.store", 0x17>;
277 defm ATOMIC_STORE_I64 : AtomicStore<I64, "i64.atomic.store", 0x18>;
318 defm ATOMIC_STORE8_I32 : AtomicStore<I32, "i32.atomic.store8", 0x19>;
319 defm ATOMIC_STORE16_I32 : AtomicStore<I32, "i32.atomic.store16", 0x1a>;
320 defm ATOMIC_STORE8_I64 : AtomicStore<I64, "i64.atomic.store8", 0x1b>;
321 defm ATOMIC_STORE16_I64 : AtomicStore<I64, "i64.atomic.store16", 0x1c>;
322 defm ATOMIC_STORE32_I64 : AtomicStore<I64, "i64.atomic.store32", 0x1d>;
/external/llvm-project/llvm/lib/Target/WebAssembly/
DWebAssemblyInstrAtomics.td355 multiclass AtomicStore<WebAssemblyRegClass rc, string name, int atomic_op> {
360 defm ATOMIC_STORE_I32 : AtomicStore<I32, "i32.atomic.store", 0x17>;
361 defm ATOMIC_STORE_I64 : AtomicStore<I64, "i64.atomic.store", 0x18>;
421 defm ATOMIC_STORE8_I32 : AtomicStore<I32, "i32.atomic.store8", 0x19>;
422 defm ATOMIC_STORE16_I32 : AtomicStore<I32, "i32.atomic.store16", 0x1a>;
423 defm ATOMIC_STORE8_I64 : AtomicStore<I64, "i64.atomic.store8", 0x1b>;
424 defm ATOMIC_STORE16_I64 : AtomicStore<I64, "i64.atomic.store16", 0x1c>;
425 defm ATOMIC_STORE32_I64 : AtomicStore<I64, "i64.atomic.store32", 0x1d>;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/
DAVRInstrInfo.td1268 class AtomicStore<PatFrag Op, RegisterClass DRC,
1296 def AtomicStore8 : AtomicStore<atomic_store_8, GPR8, PTRREGS>;
1297 def AtomicStore16 : AtomicStore<atomic_store_16, DREGS, PTRDISPREGS>;
/external/compiler-rt/lib/tsan/rtl/
Dtsan_interface_atomic.cc253 static void AtomicStore(ThreadState *thr, uptr pc, volatile T *a, T v, in AtomicStore() function
/external/llvm-project/compiler-rt/lib/tsan/rtl/
Dtsan_interface_atomic.cpp258 static void AtomicStore(ThreadState *thr, uptr pc, volatile T *a, T v, in AtomicStore() function
/external/llvm-project/llvm/lib/Target/AVR/
DAVRInstrInfo.td1284 class AtomicStore<PatFrag Op, RegisterClass DRC,
1312 def AtomicStore8 : AtomicStore<atomic_store_8, GPR8, PTRREGS>;
1313 def AtomicStore16 : AtomicStore<atomic_store_16, DREGS, PTRDISPREGS>;
/external/llvm-project/llvm/lib/Target/NVPTX/
DNVPTXISelDAGToDAG.cpp1708 AtomicSDNode *AtomicStore = dyn_cast<AtomicSDNode>(N); in tryStore() local
1709 assert((PlainStore || AtomicStore) && "Expected store"); in tryStore()
1767 SDValue Value = PlainStore ? PlainStore->getValue() : AtomicStore->getVal(); in tryStore()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXISelDAGToDAG.cpp1709 AtomicSDNode *AtomicStore = dyn_cast<AtomicSDNode>(N); in tryStore() local
1710 assert((PlainStore || AtomicStore) && "Expected store"); in tryStore()
1768 SDValue Value = PlainStore ? PlainStore->getValue() : AtomicStore->getVal(); in tryStore()
/external/mesa3d/src/compiler/spirv/
Dspirv_to_nir.c3197 OP(AtomicStore, store) in vtn_handle_image()