/external/llvm/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 473 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()
|
D | LoopRotation.cpp | 229 !Inst->mayReadFromMemory() && !Inst->mayWriteToMemory() && in rotateLoop()
|
D | LoopInterchange.cpp | 619 } else if (I->mayHaveSideEffects() || I->mayReadFromMemory()) in containsUnsafeInstructionsInHeader() 634 } else if (I->mayHaveSideEffects() || I->mayReadFromMemory()) in containsUnsafeInstructionsInLatch()
|
D | DeadStoreElimination.cpp | 914 } else if (!BBI->mayReadFromMemory()) { in handleEndBlock()
|
D | IndVarSimplify.cpp | 1669 if(I->mayReadFromMemory() || isa<CallInst>(I) || isa<InvokeInst>(I)) in hasConcreteDefImpl() 2012 if (I->mayHaveSideEffects() || I->mayReadFromMemory()) in sinkUnusedInvariants()
|
D | MemCpyOptimizer.cpp | 388 if (BI->mayWriteToMemory() || BI->mayReadFromMemory()) in INITIALIZE_PASS_DEPENDENCY()
|
D | LoopRerollPass.cpp | 1152 if (RootInst->mayReadFromMemory()) in validate()
|
D | GVN.cpp | 2583 CurInst->mayReadFromMemory() || CurInst->mayHaveSideEffects() || in performScalarPRE()
|
/external/llvm/include/llvm/IR/ |
D | Instruction.h | 358 bool mayReadFromMemory() const; 364 return mayReadFromMemory() || mayWriteToMemory();
|
/external/llvm/lib/Transforms/Utils/ |
D | FlattenCFG.cpp | 354 if (iter1->mayReadFromMemory()) in CompareIfRegionBlock() 359 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
|
/external/llvm/lib/Analysis/ |
D | MemDepPrinter.cpp | 102 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
|
D | DependenceAnalysis.cpp | 196 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()
|
D | LoopInfo.cpp | 103 if (I->mayReadFromMemory()) in makeLoopInvariant()
|
D | GlobalsModRef.cpp | 596 if (I.mayReadFromMemory()) in AnalyzeCallGraph()
|
D | MemoryDependenceAnalysis.cpp | 199 if (Inst->mayReadFromMemory()) in GetLocation()
|
D | LoopAccessAnalysis.cpp | 1387 if (it->mayReadFromMemory()) { in analyzeLoop()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCLoopDataPrefetch.cpp | 224 ConstantInt::get(I32, MemI->mayReadFromMemory() ? 0 : 1), in runOnLoop()
|
/external/llvm/lib/CodeGen/ |
D | Analysis.cpp | 511 if (I->mayHaveSideEffects() || I->mayReadFromMemory() || in isInTailCallPosition() 519 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() || in isInTailCallPosition()
|
D | StackProtector.cpp | 260 return !I->mayHaveSideEffects() && !I->mayReadFromMemory() && in InstructionWillNotHaveChain()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineLoadStoreAlloca.cpp | 1100 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/ |
D | Instruction.cpp | 414 bool Instruction::mayReadFromMemory() const { in mayReadFromMemory() function in Instruction
|
/external/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 4499 if (it->mayReadFromMemory()) { in blockCanBePredicated() 4672 if (isInterleaved(B) || A->mayReadFromMemory() != B->mayReadFromMemory()) in analyzeInterleaving() 4703 if (B->mayReadFromMemory()) in analyzeInterleaving()
|
D | BBVectorize.cpp | 1211 if (!UsesI && J->mayReadFromMemory()) { in trackUsesOfI() 2939 if (L->mayReadFromMemory()) { in collectPairLoadMoveSet() 3163 if (I->mayReadFromMemory()) { in fuseChosenPairs()
|
/external/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 213 ReadsMemory |= I->mayReadFromMemory(); in checkFunctionMemoryAccess()
|
/external/llvm/docs/ |
D | Atomics.rst | 370 * ``mayReadFromMemory()``/``mayWriteToMemory()``: Existing predicate, but note
|