Home
last modified time | relevance | path

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

12

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp356 if (iter1->mayReadFromMemory()) in CompareIfRegionBlock()
361 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
DLoopRotationUtils.cpp427 if (L->hasLoopInvariantOperands(Inst) && !Inst->mayReadFromMemory() && in rotateLoop()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DLoopVersioningLICM.cpp365 if (I->mayReadFromMemory()) { in instructionSafeForVersioning()
563 if (!Inst.mayReadFromMemory() && !Inst.mayWriteToMemory()) in setNoAliasToLoop()
DEarlyCSE.cpp784 bool mayReadFromMemory() const { in mayReadFromMemory() function in __anon8faea6230311::EarlyCSE::ParseMemoryInst
787 return Inst->mayReadFromMemory(); in mayReadFromMemory()
1440 if ((Inst.mayReadFromMemory() || Inst.mayThrow()) && in processNode()
1441 !(MemInst.isValid() && !MemInst.mayReadFromMemory())) in processNode()
1480 assert(Inst.mayReadFromMemory() && "relied on to prevent DSE above"); in processNode()
DSink.cpp87 if (Inst->mayReadFromMemory()) in IsAcceptableTarget()
DGuardWidening.cpp469 Inst->mayReadFromMemory()) in isAvailableAt()
489 !Inst->mayReadFromMemory() && "Should've checked with isAvailableAt!"); in makeAvailableAt()
DIndVarSimplify.cpp819 if(I->mayReadFromMemory() || isa<CallInst>(I) || isa<InvokeInst>(I)) in hasConcreteDefImpl()
1230 if (I->mayHaveSideEffects() || I->mayReadFromMemory()) in sinkUnusedInvariants()
DDeadStoreElimination.cpp1266 if (!UseInst->mayReadFromMemory()) in isReadClobber()
1497 if (!EarlierMemInst->mayReadFromMemory()) in getDomMemoryDef()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
DInstruction.h597 bool mayReadFromMemory() const;
601 return mayReadFromMemory() || mayWriteToMemory();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DMemDepPrinter.cpp101 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
DVectorUtils.cpp1143 (A->mayReadFromMemory() != B->mayReadFromMemory()) || in analyzeInterleaving()
1190 if (A->mayReadFromMemory()) in analyzeInterleaving()
DDependenceAnalysis.cpp222 return Src->mayReadFromMemory() && Dst->mayReadFromMemory(); in isInput()
234 return Src->mayWriteToMemory() && Dst->mayReadFromMemory(); in isFlow()
240 return Src->mayReadFromMemory() && Dst->mayWriteToMemory(); in isAnti()
3946 assert(Src->mayReadFromMemory() || Src->mayWriteToMemory()); in getSplitIteration()
3947 assert(Dst->mayReadFromMemory() || Dst->mayWriteToMemory()); in getSplitIteration()
DGlobalsModRef.cpp610 if (I.mayReadFromMemory()) in AnalyzeCallGraph()
DLoopInfo.cpp89 if (I->mayReadFromMemory()) in makeLoopInvariant()
DIVDescriptors.cpp778 SinkCandidate->mayReadFromMemory() || SinkCandidate->isTerminator()) in isFirstOrderRecurrence()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineLoadStoreAlloca.cpp1447 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory() || BBI->mayThrow()) in visitStoreInst()
1536 if (BBI->mayReadFromMemory() || BBI->mayThrow() || in mergeStoreIntoSuccessor()
1545 if (I->mayReadFromMemory() || I->mayThrow() || I->mayWriteToMemory()) in mergeStoreIntoSuccessor()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
DVPlan.cpp543 bool VPRecipeBase::mayReadFromMemory() const { in mayReadFromMemory() function in VPRecipeBase
551 ->mayReadFromMemory(); in mayReadFromMemory()
565 assert((!I || !I->mayReadFromMemory()) && in mayReadFromMemory()
DVectorCombine.cpp610 if ((IsConst0 && I1 && I1->mayReadFromMemory()) || in scalarizeBinopOrCmp()
611 (IsConst1 && I0 && I0->mayReadFromMemory())) in scalarizeBinopOrCmp()
DLoopVectorizationLegality.cpp982 if (I.mayReadFromMemory()) { in blockCanBePredicated()
DVPlan.h744 bool mayReadFromMemory() const;
751 return mayReadFromMemory() || mayWriteToMemory(); in mayReadOrWriteMemory()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DFunctionSpecialization.cpp281 if (I->mayReadFromMemory() || I->isCast()) in getUserBonus()
DFunctionAttrs.cpp223 ReadsMemory |= I->mayReadFromMemory(); in checkFunctionMemoryAccess()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DAnalysis.cpp539 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() || in isInTailCallPosition()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
DAArch64StackTagging.cpp378 if (BI->mayWriteToMemory() || BI->mayReadFromMemory()) in collectInitializers()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DInstruction.cpp564 bool Instruction::mayReadFromMemory() const { in mayReadFromMemory() function in Instruction

12