Home
last modified time | relevance | path

Searched refs:mayWriteToMemory (Results 1 – 21 of 21) sorted by relevance

/external/llvm/include/llvm/
DInstruction.h220 bool mayWriteToMemory() const;
230 return mayReadFromMemory() || mayWriteToMemory(); in mayReadOrWriteMemory()
244 return mayWriteToMemory() || mayThrow(); in mayHaveSideEffects()
/external/llvm/lib/Analysis/
DLoads.cpp138 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() && in isSafeToLoadUnconditionally()
234 if (Inst->mayWriteToMemory()) { in FindAvailableLoadedValue()
DLoopDependenceAnalysis.cpp65 return I && (I->mayReadFromMemory() || I->mayWriteToMemory()); in IsMemRefInstr()
117 (cast<const Instruction>(A)->mayWriteToMemory() || in isDependencePair()
118 cast<const Instruction>(B)->mayWriteToMemory()); in isDependencePair()
DMemDepPrinter.cpp104 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
DAliasSetTracker.cpp129 if (!I->mayWriteToMemory()) { in addUnknownInst()
DMemoryDependenceAnalysis.cpp184 if (Inst->mayWriteToMemory()) in GetLocation()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineLoadStoreAlloca.cpp515 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory()) in visitStoreInst()
646 if (BBI->mayReadFromMemory() || BBI->mayWriteToMemory() || in SimplifyStoreAtEndOfBlock()
656 if (I->mayReadFromMemory() || I->mayWriteToMemory()) in SimplifyStoreAtEndOfBlock()
DInstCombinePHI.cpp251 if (BBI->mayWriteToMemory()) in isSafeAndProfitableToSinkLoad()
DInstCombineCalls.cpp872 if (Inst->mayWriteToMemory()) in FindInitTrampolineFromBB()
DInstructionCombining.cpp1781 if (Scan->mayWriteToMemory()) in TryToSinkInstruction()
/external/llvm/lib/Transforms/Scalar/
DSink.cpp158 if (Inst->mayWriteToMemory()) { in isSafeToMove()
DLoopRotation.cpp341 !Inst->mayReadFromMemory() && !Inst->mayWriteToMemory() && in rotateLoop()
DEarlyCSE.cpp470 if (Inst->mayWriteToMemory()) { in INITIALIZE_PASS_DEPENDENCY()
DTailRecursionElimination.cpp245 if (CI->mayWriteToMemory() || in CanMoveAboveCall()
DMemCpyOptimizer.cpp380 if (BI->mayWriteToMemory() || BI->mayReadFromMemory()) in INITIALIZE_PASS_DEPENDENCY()
DScalarReplAggregates.cpp1078 if (BBI->mayWriteToMemory()) in isSafePHIToSpeculate()
/external/llvm/unittests/Support/
DValueHandleTest.cpp120 EXPECT_FALSE(AVH->mayWriteToMemory()); in TEST_F()
121 EXPECT_FALSE((*AVH).mayWriteToMemory()); in TEST_F()
/external/llvm/lib/VMCore/
DInstruction.cpp332 bool Instruction::mayWriteToMemory() const { in mayWriteToMemory() function in Instruction
/external/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp189 if (I->mayWriteToMemory()) in AddReadAttrs()
/external/llvm/lib/Transforms/Vectorize/
DBBVectorize.cpp763 if (J->mayWriteToMemory()) WriteSet.add(J); in trackUsesOfI()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp873 return !I->mayWriteToMemory() && // Side-effecting instructions aren't folded. in isFoldedOrDeadInstruction()