Home
last modified time | relevance | path

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

12

/external/llvm/include/llvm/IR/
DInstruction.h352 bool mayWriteToMemory() const;
362 return mayReadFromMemory() || mayWriteToMemory();
387 return mayWriteToMemory() || mayThrow() || !mayReturn();
/external/llvm/lib/Analysis/
DLoads.cpp126 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() && in isSafeToLoadUnconditionally()
246 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()
3301 if ((!Src->mayReadFromMemory() && !Src->mayWriteToMemory()) || in depends()
3302 (!Dst->mayReadFromMemory() && !Dst->mayWriteToMemory())) in depends()
3756 assert(Src->mayReadFromMemory() || Src->mayWriteToMemory()); in getSplitIteration()
3757 assert(Dst->mayReadFromMemory() || Dst->mayWriteToMemory()); in getSplitIteration()
DAliasSetTracker.cpp135 if (!I->mayWriteToMemory()) { in addUnknownInst()
DLoopAccessAnalysis.cpp999 if (it->mayWriteToMemory()) { in analyzeLoop()
DMemoryDependenceAnalysis.cpp192 if (Inst->mayWriteToMemory()) in GetLocation()
/external/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp388 MayWriteToMemory = Inst->mayWriteToMemory(); in ParseMemoryInst()
422 bool mayWriteToMemory() { return MayWriteToMemory; } in mayWriteToMemory() function in __anoncdf6c96d0311::EarlyCSE::ParseMemoryInst
531 if (Inst->mayWriteToMemory()) in processNode()
595 if (Inst->mayWriteToMemory()) { in processNode()
DSink.cpp160 if (Inst->mayWriteToMemory()) { in isSafeToMove()
DLoadCombine.cpp238 if (I.mayThrow() || (I.mayWriteToMemory() && AST.containsUnknown(&I))) { in runOnBasicBlock()
DLoopRotation.cpp432 !Inst->mayReadFromMemory() && !Inst->mayWriteToMemory() && in rotateLoop()
DTailRecursionElimination.cpp452 if (CI->mayWriteToMemory() || in CanMoveAboveCall()
DMemCpyOptimizer.cpp392 if (BI->mayWriteToMemory() || BI->mayReadFromMemory()) in INITIALIZE_PASS_DEPENDENCY()
DLoopRerollPass.cpp1123 if (I->mayWriteToMemory()) in validate()
DScalarReplAggregates.cpp1199 if (BBI->mayWriteToMemory()) in isSafePHIToSpeculate()
/external/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp358 if (iter1->mayWriteToMemory()) { in CompareIfRegionBlock()
360 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
/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.cpp964 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory()) in visitStoreInst()
1084 if (BBI->mayReadFromMemory() || BBI->mayWriteToMemory() || in SimplifyStoreAtEndOfBlock()
1094 if (I->mayReadFromMemory() || I->mayWriteToMemory()) in SimplifyStoreAtEndOfBlock()
DInstCombinePHI.cpp253 if (BBI->mayWriteToMemory()) in isSafeAndProfitableToSinkLoad()
DInstCombineCalls.cpp1332 if (Inst->mayWriteToMemory()) in FindInitTrampolineFromBB()
/external/llvm/lib/IR/
DInstruction.cpp417 bool Instruction::mayWriteToMemory() const { in mayWriteToMemory() function in Instruction
/external/llvm/lib/Transforms/Vectorize/
DBBVectorize.cpp1218 if (J->mayWriteToMemory()) WriteSet.add(J); in trackUsesOfI()
1247 if (I->mayWriteToMemory()) WriteSet.add(I); in getCandidatePairs()
1475 if (I->mayWriteToMemory()) WriteSet.add(I); in buildDepMap()
2869 if (I->mayWriteToMemory()) WriteSet.add(I); in canMoveUsesOfIAfterJ()
2891 if (I->mayWriteToMemory()) WriteSet.add(I); in moveUsesOfIAfterJ()
2922 if (I->mayWriteToMemory()) WriteSet.add(I); in collectPairLoadMoveSet()
DSLPVectorizer.cpp2907 bool SrcMayWrite = BundleMember->Inst->mayWriteToMemory(); in calculateDependencies()
2922 ((SrcMayWrite || DepDest->Inst->mayWriteToMemory()) && in calculateDependencies()
/external/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp255 if (I->mayWriteToMemory()) in AddReadAttrs()
/external/llvm/docs/
DAtomics.rst370 * ``mayReadFromMemory()``/``mayWriteToMemory()``: Existing predicate, but note

12