Home
last modified time | relevance | path

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

12

/external/llvm/include/llvm/IR/
DInstruction.h354 bool mayWriteToMemory() const;
364 return mayReadFromMemory() || mayWriteToMemory();
389 return mayWriteToMemory() || mayThrow() || !mayReturn();
/external/llvm/lib/Analysis/
DLoads.cpp133 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() && in isSafeToLoadUnconditionally()
271 if (Inst->mayWriteToMemory()) { in FindAvailableLoadedValue()
DMemDepPrinter.cpp102 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
DDependenceAnalysis.cpp202 return Src->mayWriteToMemory() && Dst->mayWriteToMemory(); in isOutput()
208 return Src->mayWriteToMemory() && Dst->mayReadFromMemory(); in isFlow()
214 return Src->mayReadFromMemory() && Dst->mayWriteToMemory(); in isAnti()
3363 if ((!Src->mayReadFromMemory() && !Src->mayWriteToMemory()) || in depends()
3364 (!Dst->mayReadFromMemory() && !Dst->mayWriteToMemory())) in depends()
3820 assert(Src->mayReadFromMemory() || Src->mayWriteToMemory()); in getSplitIteration()
3821 assert(Dst->mayReadFromMemory() || Dst->mayWriteToMemory()); in getSplitIteration()
DAliasSetTracker.cpp131 if (!I->mayWriteToMemory()) { in addUnknownInst()
DGlobalsModRef.cpp598 if (I.mayWriteToMemory()) in AnalyzeCallGraph()
DMemoryDependenceAnalysis.cpp197 if (Inst->mayWriteToMemory()) in GetLocation()
DLoopAccessAnalysis.cpp1416 if (it->mayWriteToMemory()) { in analyzeLoop()
/external/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp357 if (iter1->mayWriteToMemory()) { in CompareIfRegionBlock()
359 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
/external/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp477 bool mayWriteToMemory() const { in mayWriteToMemory() function in __anoncdf6c96d0311::EarlyCSE::ParseMemoryInst
479 return Inst->mayWriteToMemory(); in mayWriteToMemory()
711 if (Inst->mayWriteToMemory()) { in processNode()
DSink.cpp160 if (Inst->mayWriteToMemory()) { in isSafeToMove()
DLoadCombine.cpp239 if (I.mayThrow() || (I.mayWriteToMemory() && AST.containsUnknown(&I))) { in runOnBasicBlock()
DLoopRotation.cpp229 !Inst->mayReadFromMemory() && !Inst->mayWriteToMemory() && in rotateLoop()
DTailRecursionElimination.cpp459 if (CI->mayWriteToMemory() || in CanMoveAboveCall()
DDeadStoreElimination.cpp700 if (I->mayWriteToMemory() && I != SecondI) { in MemoryIsNotModifiedBetween()
DMemCpyOptimizer.cpp388 if (BI->mayWriteToMemory() || BI->mayReadFromMemory()) in INITIALIZE_PASS_DEPENDENCY()
DLoopRerollPass.cpp1128 if (I->mayWriteToMemory()) in validate()
/external/llvm/unittests/IR/
DValueHandleTest.cpp116 EXPECT_FALSE(AVH->mayWriteToMemory()); in TEST_F()
117 EXPECT_FALSE((*AVH).mayWriteToMemory()); in TEST_F()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineLoadStoreAlloca.cpp1100 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory()) in visitStoreInst()
1224 if (BBI->mayReadFromMemory() || BBI->mayWriteToMemory() || in SimplifyStoreAtEndOfBlock()
1234 if (I->mayReadFromMemory() || I->mayWriteToMemory()) in SimplifyStoreAtEndOfBlock()
DInstCombinePHI.cpp252 if (BBI->mayWriteToMemory()) in isSafeAndProfitableToSinkLoad()
/external/llvm/lib/IR/
DInstruction.cpp436 bool Instruction::mayWriteToMemory() const { in mayWriteToMemory() function in Instruction
/external/llvm/lib/Transforms/Vectorize/
DBBVectorize.cpp1226 if (J->mayWriteToMemory()) WriteSet.add(J); in trackUsesOfI()
1256 if (I->mayWriteToMemory()) in getCandidatePairs()
1488 if (I->mayWriteToMemory()) in buildDepMap()
2879 if (I->mayWriteToMemory()) WriteSet.add(I); in canMoveUsesOfIAfterJ()
2901 if (I->mayWriteToMemory()) WriteSet.add(I); in moveUsesOfIAfterJ()
2932 if (I->mayWriteToMemory()) WriteSet.add(I); in collectPairLoadMoveSet()
DSLPVectorizer.cpp3000 bool SrcMayWrite = BundleMember->Inst->mayWriteToMemory(); in calculateDependencies()
3015 ((SrcMayWrite || DepDest->Inst->mayWriteToMemory()) && in calculateDependencies()
/external/llvm/docs/
DAtomics.rst370 * ``mayReadFromMemory()``/``mayWriteToMemory()``: Existing predicate, but note
/external/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp208 if (I->mayWriteToMemory()) in checkFunctionMemoryAccess()

12