Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopVersioningLICM.cpp327 if (I->mayReadFromMemory()) { in instructionSafeForVersioning()
525 if (!Inst.mayReadFromMemory() && !Inst.mayWriteToMemory()) in setNoAliasToLoop()
H A DEarlyCSE.cpp922 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 DSink.cpp81 if (Inst->mayReadFromMemory() && in IsAcceptableTarget()
H A DGuardWidening.cpp572 Inst->mayReadFromMemory()) in canBeHoistedTo()
593 !Inst->mayReadFromMemory() && in makeAvailableAt()
H A DIndVarSimplify.cpp780 if(I->mayReadFromMemory() || isa<CallInst>(I) || isa<InvokeInst>(I)) in hasConcreteDefImpl()
1116 if (I->mayHaveSideEffects() || I->mayReadFromMemory()) in sinkUnusedInvariants()
H A DDeadStoreElimination.cpp1273 if (!UseInst->mayReadFromMemory()) in isReadClobber()
1348 !KillingI->mayReadFromMemory(); in getDomMemoryDef()
H A DLoopInterchange.cpp543 return I.mayHaveSideEffects() || I.mayReadFromMemory(); in containsUnsafeInstructions()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp353 if (iter1->mayReadFromMemory()) in CompareIfRegionBlock()
358 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
H A DLoopRotationUtils.cpp625 if (L->hasLoopInvariantOperands(Inst) && !Inst->mayReadFromMemory() && in rotateLoop()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h751 bool mayReadFromMemory() const LLVM_READONLY;
755 return mayReadFromMemory() || mayWriteToMemory();
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DVectorUtils.cpp1352 (A->mayReadFromMemory() != B->mayReadFromMemory()) || in analyzeInterleaving()
1399 if (A->mayReadFromMemory()) in analyzeInterleaving()
H A DDependenceAnalysis.cpp231 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 DLoads.cpp787 } else if (I.mayReadFromMemory() || I.mayWriteToMemory() || I.mayThrow()) in isDereferenceableReadOnlyLoop()
H A DGlobalsModRef.cpp608 if (I.mayReadFromMemory()) in AnalyzeCallGraph()
H A DLoopInfo.cpp87 if (I->mayReadFromMemory()) in makeLoopInvariant()
H A DIVDescriptors.cpp1009 SinkCandidate->mayReadFromMemory() || SinkCandidate->isTerminator()) in isFixedOrderRecurrence()
H A DMemoryDependenceAnalysis.cpp177 if (Inst->mayReadFromMemory()) in GetLocation()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp1448 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 DAArch64StackTagging.cpp392 if (BI->mayWriteToMemory() || BI->mayReadFromMemory()) in collectInitializers()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DAnalysis.cpp572 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() || in isInTailCallPosition()
H A DSelectOptimize.cpp1062 if (ForSinking && II->mayReadFromMemory() && !isSafeToSinkLoad(II, SI)) in getExclBackwardsSlice()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DIndirectCallPromotion.cpp259 if (I->mayReadFromMemory()) { in tryToSinkInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanRecipes.cpp89 bool VPRecipeBase::mayReadFromMemory() const { in mayReadFromMemory() function in VPRecipeBase
96 ->mayReadFromMemory(); in mayReadFromMemory()
120 assert((!I || !I->mayReadFromMemory()) && in mayReadFromMemory()
H A DLoopVectorizationLegality.cpp1300 if (I.mayReadFromMemory() || I.mayWriteToMemory() || I.mayThrow()) in blockCanBePredicated()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp929 bool Instruction::mayReadFromMemory() const { in mayReadFromMemory() function in Instruction

12