Home
last modified time | relevance | path

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

/external/llvm/include/llvm/IR/
DInstruction.h299 bool mayReadFromMemory() const;
305 return mayReadFromMemory() || mayWriteToMemory(); in mayReadOrWriteMemory()
/external/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp354 if (iter1->mayReadFromMemory()) in CompareIfRegionBlock()
359 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineLoadStoreAlloca.cpp639 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory()) in visitStoreInst()
770 if (BBI->mayReadFromMemory() || BBI->mayWriteToMemory() || in SimplifyStoreAtEndOfBlock()
780 if (I->mayReadFromMemory() || I->mayWriteToMemory()) in SimplifyStoreAtEndOfBlock()
DInstructionCombining.cpp2165 if (I->mayReadFromMemory()) { in TryToSinkInstruction()
/external/llvm/lib/Analysis/
DMemDepPrinter.cpp104 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
DDependenceAnalysis.cpp190 return Src->mayReadFromMemory() && Dst->mayReadFromMemory(); in isInput()
202 return Src->mayWriteToMemory() && Dst->mayReadFromMemory(); in isFlow()
208 return Src->mayReadFromMemory() && Dst->mayWriteToMemory(); in isAnti()
3208 if ((!Src->mayReadFromMemory() && !Src->mayWriteToMemory()) || in depends()
3209 (!Dst->mayReadFromMemory() && !Dst->mayWriteToMemory())) in depends()
3655 assert(Src->mayReadFromMemory() || Src->mayWriteToMemory()); in getSplitIteration()
3656 assert(Dst->mayReadFromMemory() || Dst->mayWriteToMemory()); in getSplitIteration()
DLoopInfo.cpp110 if (I->mayReadFromMemory()) in makeLoopInvariant()
DMemoryDependenceAnalysis.cpp184 if (Inst->mayReadFromMemory()) in GetLocation()
DScalarEvolution.cpp5686 if (AI->isIdenticalTo(BI) && !AI->mayReadFromMemory()) in HasSameValue()
/external/llvm/lib/CodeGen/
DAnalysis.cpp498 if (I->mayHaveSideEffects() || I->mayReadFromMemory() || in isInTailCallPosition()
507 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() || in isInTailCallPosition()
/external/llvm/lib/Transforms/Scalar/
DLoopRotation.cpp367 !Inst->mayReadFromMemory() && !Inst->mayWriteToMemory() && in rotateLoop()
DEarlyCSE.cpp501 if (Inst->mayReadFromMemory()) in INITIALIZE_PASS_DEPENDENCY()
DDeadStoreElimination.cpp843 } else if (!BBI->mayReadFromMemory()) { in handleEndBlock()
DIndVarSimplify.cpp1331 if(I->mayReadFromMemory() || isa<CallInst>(I) || isa<InvokeInst>(I)) in hasConcreteDefImpl()
1671 if (I->mayHaveSideEffects() || I->mayReadFromMemory()) in SinkUnusedInvariants()
DMemCpyOptimizer.cpp380 if (BI->mayWriteToMemory() || BI->mayReadFromMemory()) in INITIALIZE_PASS_DEPENDENCY()
DGVN.cpp2396 CurInst->mayReadFromMemory() || CurInst->mayHaveSideEffects() || in performPRE()
/external/llvm/lib/IR/
DInstruction.cpp420 bool Instruction::mayReadFromMemory() const { in mayReadFromMemory() function in Instruction
/external/llvm/lib/Transforms/Vectorize/
DBBVectorize.cpp1141 if (!UsesI && J->mayReadFromMemory()) { in trackUsesOfI()
2862 if (L->mayReadFromMemory()) { in collectPairLoadMoveSet()
3100 if (I->mayReadFromMemory()) { in fuseChosenPairs()
DLoopVectorize.cpp3544 if (it->mayReadFromMemory()) { in canVectorizeMemory()
4038 if (it->mayReadFromMemory()) { in blockCanBePredicated()
/external/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp255 ReadsMemory |= I->mayReadFromMemory(); in AddReadAttrs()
/external/llvm/docs/
DAtomics.rst368 * ``mayReadFromMemory()``/``mayWriteToMemory()``: Existing predicate, but note