Searched refs:mayWriteToMemory (Results 1 - 25 of 51) sorted by relevance

123

/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DLoads.cpp137 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() &&
224 if (Inst->mayWriteToMemory()) {
H A DLoopDependenceAnalysis.cpp65 return I && (I->mayReadFromMemory() || I->mayWriteToMemory());
119 (cast<const Instruction>(A)->mayWriteToMemory() ||
120 cast<const Instruction>(B)->mayWriteToMemory());
H A DMemDepPrinter.cpp104 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory())
/external/swiftshader/third_party/LLVM/include/llvm/
H A DInstruction.h218 /// mayWriteToMemory - Return true if this instruction may modify memory.
220 bool mayWriteToMemory() const;
230 return mayReadFromMemory() || mayWriteToMemory();
244 return mayWriteToMemory() || mayThrow();
/external/llvm/include/llvm/IR/
H A DInstruction.h385 bool mayWriteToMemory() const;
392 return mayReadFromMemory() || mayWriteToMemory();
408 bool mayHaveSideEffects() const { return mayWriteToMemory() || mayThrow(); }
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DInstruction.h410 bool mayWriteToMemory() const;
417 return mayReadFromMemory() || mayWriteToMemory();
433 // This list should be kept in sync with the list in mayWriteToMemory for
450 bool mayHaveSideEffects() const { return mayWriteToMemory() || mayThrow(); }
/external/llvm/lib/Analysis/
H A DMemDepPrinter.cpp102 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory())
H A DLoads.cpp261 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() &&
404 if (Inst->mayWriteToMemory()) {
H A DDependenceAnalysis.cpp208 return Src->mayWriteToMemory() && Dst->mayWriteToMemory();
214 return Src->mayWriteToMemory() && Dst->mayReadFromMemory();
220 return Src->mayReadFromMemory() && Dst->mayWriteToMemory();
3294 if ((!Src->mayReadFromMemory() && !Src->mayWriteToMemory()) ||
3295 (!Dst->mayReadFromMemory() && !Dst->mayWriteToMemory()))
3751 assert(Src->mayReadFromMemory() || Src->mayWriteToMemory());
3752 assert(Dst->mayReadFromMemory() || Dst->mayWriteToMemory());
H A DAliasSetTracker.cpp131 if (!I->mayWriteToMemory()) {
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DSink.cpp157 if (Inst->mayWriteToMemory()) {
H A DLoopRotation.cpp238 !Inst->mayReadFromMemory() && !Inst->mayWriteToMemory() &&
H A DEarlyCSE.cpp414 if (Inst->mayWriteToMemory()) {
H A DTailRecursionElimination.cpp245 if (CI->mayWriteToMemory() ||
/external/llvm/lib/Transforms/Scalar/
H A DLoopVersioningLICM.cpp355 else if (I->mayWriteToMemory()) {
489 if (!Inst.mayReadFromMemory() && !Inst.mayWriteToMemory())
H A DSink.cpp63 if (Inst->mayWriteToMemory()) {
H A DLoadCombine.cpp251 if (I.mayThrow() || (I.mayWriteToMemory() && AST.containsUnknown(&I))) {
H A DEarlyCSE.cpp468 bool mayWriteToMemory() const { function in class:__anon13465::EarlyCSE::ParseMemoryInst
470 return Inst->mayWriteToMemory();
738 if (Inst->mayWriteToMemory()) {
/external/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp357 if (iter1->mayWriteToMemory()) {
359 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) {
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp446 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory())
577 if (BBI->mayReadFromMemory() || BBI->mayWriteToMemory() ||
587 if (I->mayReadFromMemory() || I->mayWriteToMemory())
/external/llvm/unittests/IR/
H A DValueHandleTest.cpp116 EXPECT_FALSE(AVH->mayWriteToMemory());
117 EXPECT_FALSE((*AVH).mayWriteToMemory());
/external/swiftshader/third_party/LLVM/unittests/Support/
H A DValueHandleTest.cpp120 EXPECT_FALSE(AVH->mayWriteToMemory());
121 EXPECT_FALSE((*AVH).mayWriteToMemory());
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DFunctionAttrs.cpp188 if (I->mayWriteToMemory())
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp1237 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory())
1360 if (BBI->mayReadFromMemory() || BBI->mayWriteToMemory() ||
1370 if (I->mayReadFromMemory() || I->mayWriteToMemory())
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DInstruction.cpp333 /// mayWriteToMemory - Return true if this instruction may modify memory.
335 bool Instruction::mayWriteToMemory() const { function in class:Instruction
338 case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory

Completed in 1247 milliseconds

123