Home
last modified time | relevance | path

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

12

/freebsd-14.2/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 DSink.cpp81 if (Inst->mayReadFromMemory() && in IsAcceptableTarget()
H A DEarlyCSE.cpp922 bool mayReadFromMemory() const { in mayReadFromMemory() function in __anon472e9e410411::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 DGuardWidening.cpp569 Inst->mayReadFromMemory()) in canBeHoistedTo()
589 !Inst->mayReadFromMemory() && in makeAvailableAt()
H A DIndVarSimplify.cpp768 if(I->mayReadFromMemory() || isa<CallInst>(I) || isa<InvokeInst>(I)) in hasConcreteDefImpl()
1104 if (I->mayHaveSideEffects() || I->mayReadFromMemory()) in sinkUnusedInvariants()
H A DDeadStoreElimination.cpp1273 if (!UseInst->mayReadFromMemory()) in isReadClobber()
1348 !KillingI->mayReadFromMemory(); in getDomMemoryDef()
H A DLoopRerollPass.cpp1296 if (RootInst->mayReadFromMemory()) { in validate()
H A DLoopInterchange.cpp543 return I.mayHaveSideEffects() || I.mayReadFromMemory(); in containsUnsafeInstructions()
/freebsd-14.2/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.cpp610 if (L->hasLoopInvariantOperands(Inst) && !Inst->mayReadFromMemory() && in rotateLoop()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h716 bool mayReadFromMemory() const LLVM_READONLY;
720 return mayReadFromMemory() || mayWriteToMemory();
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DVectorUtils.cpp1293 (A->mayReadFromMemory() != B->mayReadFromMemory()) || in analyzeInterleaving()
1340 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 DGlobalsModRef.cpp600 if (I.mayReadFromMemory()) in AnalyzeCallGraph()
H A DLoopInfo.cpp86 if (I->mayReadFromMemory()) in makeLoopInvariant()
H A DIVDescriptors.cpp1010 SinkCandidate->mayReadFromMemory() || SinkCandidate->isTerminator()) in isFixedOrderRecurrence()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp1449 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory() || BBI->mayThrow()) in visitStoreInst()
1561 if (BBI->mayReadFromMemory() || BBI->mayThrow() || in mergeStoreIntoSuccessor()
1570 if (I->mayReadFromMemory() || I->mayThrow() || I->mayWriteToMemory()) in mergeStoreIntoSuccessor()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanRecipes.cpp82 bool VPRecipeBase::mayReadFromMemory() const { in mayReadFromMemory() function in VPRecipeBase
90 ->mayReadFromMemory(); in mayReadFromMemory()
107 assert((!I || !I->mayReadFromMemory()) && in mayReadFromMemory()
H A DVectorCombine.cpp911 if ((IsConst0 && I1 && I1->mayReadFromMemory()) || in scalarizeBinopOrCmp()
912 (IsConst1 && I0 && I0->mayReadFromMemory())) in scalarizeBinopOrCmp()
H A DLoopVectorizationLegality.cpp1292 if (I.mayReadFromMemory() || I.mayWriteToMemory() || I.mayThrow()) in blockCanBePredicated()
H A DVPlan.h786 bool mayReadFromMemory() const;
793 return mayReadFromMemory() || mayWriteToMemory(); in mayReadOrWriteMemory()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp370 if (BI->mayWriteToMemory() || BI->mayReadFromMemory()) in collectInitializers()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DAnalysis.cpp608 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() || in isInTailCallPosition()
H A DSelectOptimize.cpp1009 if (ForSinking && II->mayReadFromMemory() && !isSafeToSinkLoad(II, SI)) in getExclBackwardsSlice()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp837 bool Instruction::mayReadFromMemory() const { in mayReadFromMemory() function in Instruction

12