Searched refs:AtomicRMW (Results 1 - 14 of 14) sorted by relevance

/external/llvm/unittests/Analysis/
H A DAliasAnalysisTest.cpp187 auto *AtomicRMW = local
206 EXPECT_EQ(AA.getModRefInfo(AtomicRMW, MemoryLocation()), MRI_ModRef);
207 EXPECT_EQ(AA.getModRefInfo(AtomicRMW), MRI_ModRef);
/external/llvm/lib/IR/
H A DInstruction.cpp234 case AtomicRMW: return "atomicrmw";
421 case Instruction::AtomicRMW:
443 case Instruction::AtomicRMW:
461 case Instruction::AtomicRMW:
H A DInstructions.cpp1459 "AtomicRMW instructions must be atomic!");
1466 : Instruction(Val->getType(), AtomicRMW,
1477 : Instruction(Val->getType(), AtomicRMW,
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interface_atomic.cc299 static T AtomicRMW(ThreadState *thr, uptr pc, volatile T *a, T v, morder mo) { function
358 return AtomicRMW<T, func_xchg>(thr, pc, a, v, mo);
364 return AtomicRMW<T, func_add>(thr, pc, a, v, mo);
370 return AtomicRMW<T, func_sub>(thr, pc, a, v, mo);
376 return AtomicRMW<T, func_and>(thr, pc, a, v, mo);
382 return AtomicRMW<T, func_or>(thr, pc, a, v, mo);
388 return AtomicRMW<T, func_xor>(thr, pc, a, v, mo);
394 return AtomicRMW<T, func_nand>(thr, pc, a, v, mo);
/external/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h480 case Instruction::AtomicRMW:
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp755 INSTKEYWORD(atomicrmw, AtomicRMW);
/external/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1578 case AtomicRMW: return 0;
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml213 | AtomicRMW Constructor in type:Opcode/t
H A Dllvm.mli271 | AtomicRMW
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp1583 case Instruction::AtomicRMW: {
/external/llvm/lib/Analysis/
H A DValueTracking.cpp3434 case Instruction::AtomicRMW:
3792 case Instruction::AtomicRMW:
/external/llvm/include/llvm/IR/
H A DInstructions.h800 return I->getOpcode() == Instruction::AtomicRMW;
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2125 case Instruction::AtomicRMW:
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp1081 case Instruction::AtomicRMW: NumFastIselFailAtomicRMW++; return;

Completed in 273 milliseconds