/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopVersioningLICM.cpp | 327 if (I->mayReadFromMemory()) { in instructionSafeForVersioning() 525 if (!Inst.mayReadFromMemory() && !Inst.mayWriteToMemory()) in setNoAliasToLoop()
|
H A D | EarlyCSE.cpp | 922 bool mayReadFromMemory() const { in mayReadFromMemory() function in __anon2439b80b0411::EarlyCSE::ParseMemoryInst 925 return Inst->mayReadFromMemory(); in mayReadFromMemory() 1617 if ((Inst.mayReadFromMemory() || Inst.mayThrow()) && in processNode() 1618 !(MemInst.isValid() && !MemInst.mayReadFromMemory())) in processNode() 1682 assert(Inst.mayReadFromMemory() && "relied on to prevent DSE above"); in processNode()
|
H A D | Sink.cpp | 81 if (Inst->mayReadFromMemory() && in IsAcceptableTarget()
|
H A D | GuardWidening.cpp | 572 Inst->mayReadFromMemory()) in canBeHoistedTo() 593 !Inst->mayReadFromMemory() && in makeAvailableAt()
|
H A D | IndVarSimplify.cpp | 780 if(I->mayReadFromMemory() || isa<CallInst>(I) || isa<InvokeInst>(I)) in hasConcreteDefImpl() 1116 if (I->mayHaveSideEffects() || I->mayReadFromMemory()) in sinkUnusedInvariants()
|
H A D | DeadStoreElimination.cpp | 1273 if (!UseInst->mayReadFromMemory()) in isReadClobber() 1348 !KillingI->mayReadFromMemory(); in getDomMemoryDef()
|
H A D | LoopInterchange.cpp | 543 return I.mayHaveSideEffects() || I.mayReadFromMemory(); in containsUnsafeInstructions()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | FlattenCFG.cpp | 353 if (iter1->mayReadFromMemory()) in CompareIfRegionBlock() 358 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
|
H A D | LoopRotationUtils.cpp | 625 if (L->hasLoopInvariantOperands(Inst) && !Inst->mayReadFromMemory() && in rotateLoop()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Instruction.h | 751 bool mayReadFromMemory() const LLVM_READONLY; 755 return mayReadFromMemory() || mayWriteToMemory();
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | VectorUtils.cpp | 1352 (A->mayReadFromMemory() != B->mayReadFromMemory()) || in analyzeInterleaving() 1399 if (A->mayReadFromMemory()) in analyzeInterleaving()
|
H A D | DependenceAnalysis.cpp | 231 return Src->mayReadFromMemory() && Dst->mayReadFromMemory(); in isInput() 243 return Src->mayWriteToMemory() && Dst->mayReadFromMemory(); in isFlow() 249 return Src->mayReadFromMemory() && Dst->mayWriteToMemory(); in isAnti() 4030 assert(Src->mayReadFromMemory() || Src->mayWriteToMemory()); in getSplitIteration() 4031 assert(Dst->mayReadFromMemory() || Dst->mayWriteToMemory()); in getSplitIteration()
|
H A D | Loads.cpp | 787 } else if (I.mayReadFromMemory() || I.mayWriteToMemory() || I.mayThrow()) in isDereferenceableReadOnlyLoop()
|
H A D | GlobalsModRef.cpp | 608 if (I.mayReadFromMemory()) in AnalyzeCallGraph()
|
H A D | LoopInfo.cpp | 87 if (I->mayReadFromMemory()) in makeLoopInvariant()
|
H A D | IVDescriptors.cpp | 1009 SinkCandidate->mayReadFromMemory() || SinkCandidate->isTerminator()) in isFixedOrderRecurrence()
|
H A D | MemoryDependenceAnalysis.cpp | 177 if (Inst->mayReadFromMemory()) in GetLocation()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineLoadStoreAlloca.cpp | 1448 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory() || BBI->mayThrow()) in visitStoreInst() 1560 if (BBI->mayReadFromMemory() || BBI->mayThrow() || in mergeStoreIntoSuccessor() 1569 if (I->mayReadFromMemory() || I->mayThrow() || I->mayWriteToMemory()) in mergeStoreIntoSuccessor()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64StackTagging.cpp | 392 if (BI->mayWriteToMemory() || BI->mayReadFromMemory()) in collectInitializers()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | Analysis.cpp | 572 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() || in isInTailCallPosition()
|
H A D | SelectOptimize.cpp | 1062 if (ForSinking && II->mayReadFromMemory() && !isSafeToSinkLoad(II, SI)) in getExclBackwardsSlice()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | IndirectCallPromotion.cpp | 259 if (I->mayReadFromMemory()) { in tryToSinkInstruction()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanRecipes.cpp | 89 bool VPRecipeBase::mayReadFromMemory() const { in mayReadFromMemory() function in VPRecipeBase 96 ->mayReadFromMemory(); in mayReadFromMemory() 120 assert((!I || !I->mayReadFromMemory()) && in mayReadFromMemory()
|
H A D | LoopVectorizationLegality.cpp | 1300 if (I.mayReadFromMemory() || I.mayWriteToMemory() || I.mayThrow()) in blockCanBePredicated()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Instruction.cpp | 929 bool Instruction::mayReadFromMemory() const { in mayReadFromMemory() function in Instruction
|