Searched refs:mayReadFromMemory (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemDepPrinter.cpp101 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory())
H A DVectorUtils.cpp993 // Note that mayReadFromMemory() isn't mutually exclusive to
998 (A->mayReadFromMemory() != B->mayReadFromMemory()) ||
1045 if (A->mayReadFromMemory())
H A DDependenceAnalysis.cpp222 return Src->mayReadFromMemory() && Dst->mayReadFromMemory();
234 return Src->mayWriteToMemory() && Dst->mayReadFromMemory();
240 return Src->mayReadFromMemory() && Dst->mayWriteToMemory();
3832 assert(Src->mayReadFromMemory() || Src->mayWriteToMemory());
3833 assert(Dst->mayReadFromMemory() || Dst->mayWriteToMemory());
H A DGlobalsModRef.cpp608 if (I.mayReadFromMemory())
H A DLoopInfo.cpp87 if (I->mayReadFromMemory())
H A DMemoryDependenceAnalysis.cpp178 if (Inst->mayReadFromMemory())
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopVersioningLICM.cpp352 if (I->mayReadFromMemory()) {
550 if (!Inst.mayReadFromMemory() && !Inst.mayWriteToMemory())
H A DSink.cpp117 if (Inst->mayReadFromMemory())
H A DEarlyCSE.cpp718 bool mayReadFromMemory() const { function in class:__anon5635::EarlyCSE::ParseMemoryInst
720 return Inst->mayReadFromMemory();
803 // onlyReadsMemory(), mayReadFromMemory(), and mayWriteToMemory() in this pass
1157 if ((Inst->mayReadFromMemory() || Inst->mayThrow()) &&
1158 !(MemInst.isValid() && !MemInst.mayReadFromMemory()))
1197 assert(Inst->mayReadFromMemory() && "relied on to prevent DSE above");
H A DLoopDataPrefetch.cpp321 ConstantInt::get(I32, MemI->mayReadFromMemory() ? 0 : 1),
H A DGuardWidening.cpp470 Inst->mayReadFromMemory())
490 !Inst->mayReadFromMemory() && "Should've checked with isAvailableAt!");
H A DIndVarSimplify.cpp2205 if(I->mayReadFromMemory() || isa<CallInst>(I) || isa<InvokeInst>(I))
2615 if (I->mayHaveSideEffects() || I->mayReadFromMemory())
H A DDeadStoreElimination.cpp897 } else if (!BBI->mayReadFromMemory()) {
H A DLoopFuse.cpp206 if (I.mayReadFromMemory())
H A DLoopInterchange.cpp591 return I.mayHaveSideEffects() || I.mayReadFromMemory();
H A DLoopRerollPass.cpp1311 if (RootInst->mayReadFromMemory())
H A DMemCpyOptimizer.cpp322 if (BI->mayWriteToMemory() || BI->mayReadFromMemory())
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp365 if (iter1->mayReadFromMemory())
370 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) {
H A DLoopRotationUtils.cpp341 if (L->hasLoopInvariantOperands(Inst) && !Inst->mayReadFromMemory() &&
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h539 bool mayReadFromMemory() const;
543 return mayReadFromMemory() || mayWriteToMemory();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DAnalysis.cpp533 if (I->mayHaveSideEffects() || I->mayReadFromMemory() ||
547 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() ||
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp1472 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory() || BBI->mayThrow())
1577 if (BBI->mayReadFromMemory() || BBI->mayThrow() ||
1586 if (I->mayReadFromMemory() || I->mayThrow() || I->mayWriteToMemory())
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp514 bool Instruction::mayReadFromMemory() const { function in class:Instruction
519 case Instruction::Fence: // FIXME: refine definition of mayReadFromMemory
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp353 if (BI->mayWriteToMemory() || BI->mayReadFromMemory())
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp901 if (I.mayReadFromMemory()) {

Completed in 233 milliseconds

12