Home
last modified time | relevance | path

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

12

/external/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp473 bool mayReadFromMemory() const { in mayReadFromMemory() function in __anonc2cac6ee0311::EarlyCSE::ParseMemoryInst
475 return Inst->mayReadFromMemory(); in mayReadFromMemory()
644 if (Inst->mayReadFromMemory() && in processNode()
645 !(MemInst.isValid() && !MemInst.mayReadFromMemory())) in processNode()
677 assert(Inst->mayReadFromMemory() && "relied on to prevent DSE above"); in processNode()
DLoopRotation.cpp229 !Inst->mayReadFromMemory() && !Inst->mayWriteToMemory() && in rotateLoop()
DLoopInterchange.cpp619 } else if (I->mayHaveSideEffects() || I->mayReadFromMemory()) in containsUnsafeInstructionsInHeader()
634 } else if (I->mayHaveSideEffects() || I->mayReadFromMemory()) in containsUnsafeInstructionsInLatch()
DDeadStoreElimination.cpp914 } else if (!BBI->mayReadFromMemory()) { in handleEndBlock()
DIndVarSimplify.cpp1669 if(I->mayReadFromMemory() || isa<CallInst>(I) || isa<InvokeInst>(I)) in hasConcreteDefImpl()
2012 if (I->mayHaveSideEffects() || I->mayReadFromMemory()) in sinkUnusedInvariants()
DMemCpyOptimizer.cpp388 if (BI->mayWriteToMemory() || BI->mayReadFromMemory()) in INITIALIZE_PASS_DEPENDENCY()
DLoopRerollPass.cpp1152 if (RootInst->mayReadFromMemory()) in validate()
DGVN.cpp2583 CurInst->mayReadFromMemory() || CurInst->mayHaveSideEffects() || in performScalarPRE()
/external/llvm/include/llvm/IR/
DInstruction.h358 bool mayReadFromMemory() const;
364 return mayReadFromMemory() || mayWriteToMemory();
/external/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp354 if (iter1->mayReadFromMemory()) in CompareIfRegionBlock()
359 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
/external/llvm/lib/Analysis/
DMemDepPrinter.cpp102 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
DDependenceAnalysis.cpp196 return Src->mayReadFromMemory() && Dst->mayReadFromMemory(); in isInput()
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()
DLoopInfo.cpp103 if (I->mayReadFromMemory()) in makeLoopInvariant()
DGlobalsModRef.cpp596 if (I.mayReadFromMemory()) in AnalyzeCallGraph()
DMemoryDependenceAnalysis.cpp199 if (Inst->mayReadFromMemory()) in GetLocation()
DLoopAccessAnalysis.cpp1387 if (it->mayReadFromMemory()) { in analyzeLoop()
/external/llvm/lib/Target/PowerPC/
DPPCLoopDataPrefetch.cpp224 ConstantInt::get(I32, MemI->mayReadFromMemory() ? 0 : 1), in runOnLoop()
/external/llvm/lib/CodeGen/
DAnalysis.cpp511 if (I->mayHaveSideEffects() || I->mayReadFromMemory() || in isInTailCallPosition()
519 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() || in isInTailCallPosition()
DStackProtector.cpp260 return !I->mayHaveSideEffects() && !I->mayReadFromMemory() && in InstructionWillNotHaveChain()
/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()
/external/llvm/lib/IR/
DInstruction.cpp414 bool Instruction::mayReadFromMemory() const { in mayReadFromMemory() function in Instruction
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp4499 if (it->mayReadFromMemory()) { in blockCanBePredicated()
4672 if (isInterleaved(B) || A->mayReadFromMemory() != B->mayReadFromMemory()) in analyzeInterleaving()
4703 if (B->mayReadFromMemory()) in analyzeInterleaving()
DBBVectorize.cpp1211 if (!UsesI && J->mayReadFromMemory()) { in trackUsesOfI()
2939 if (L->mayReadFromMemory()) { in collectPairLoadMoveSet()
3163 if (I->mayReadFromMemory()) { in fuseChosenPairs()
/external/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp213 ReadsMemory |= I->mayReadFromMemory(); in checkFunctionMemoryAccess()
/external/llvm/docs/
DAtomics.rst370 * ``mayReadFromMemory()``/``mayWriteToMemory()``: Existing predicate, but note

12