| /freebsd-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | FlattenCFG.cpp | 366 if (iter1->mayReadFromMemory()) in CompareIfRegionBlock() 371 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
|
| H A D | LoopRotationUtils.cpp | 334 if (L->hasLoopInvariantOperands(Inst) && !Inst->mayReadFromMemory() && in rotateLoop()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | EarlyCSE.cpp | 566 bool mayReadFromMemory() const { in mayReadFromMemory() function in __anonb85134700311::EarlyCSE::ParseMemoryInst 568 return Inst->mayReadFromMemory(); in mayReadFromMemory() 1025 if ((Inst->mayReadFromMemory() || Inst->mayThrow()) && in processNode() 1026 !(MemInst.isValid() && !MemInst.mayReadFromMemory())) in processNode() 1065 assert(Inst->mayReadFromMemory() && "relied on to prevent DSE above"); in processNode()
|
| H A D | LoopVersioningLICM.cpp | 375 if (I->mayReadFromMemory()) { in instructionSafeForVersioning() 573 if (!Inst.mayReadFromMemory() && !Inst.mayWriteToMemory()) in setNoAliasToLoop()
|
| H A D | Sink.cpp | 117 if (Inst->mayReadFromMemory()) in IsAcceptableTarget()
|
| H A D | LoopDataPrefetch.cpp | 320 ConstantInt::get(I32, MemI->mayReadFromMemory() ? 0 : 1), in runOnLoop()
|
| H A D | GuardWidening.cpp | 488 Inst->mayReadFromMemory()) in isAvailableAt() 508 !Inst->mayReadFromMemory() && "Should've checked with isAvailableAt!"); in makeAvailableAt()
|
| H A D | IndVarSimplify.cpp | 2126 if(I->mayReadFromMemory() || isa<CallInst>(I) || isa<InvokeInst>(I)) in hasConcreteDefImpl() 2554 if (I->mayHaveSideEffects() || I->mayReadFromMemory()) in sinkUnusedInvariants()
|
| H A D | LoopInterchange.cpp | 593 return I.mayHaveSideEffects() || I.mayReadFromMemory(); in containsUnsafeInstructions()
|
| H A D | DeadStoreElimination.cpp | 881 } else if (!BBI->mayReadFromMemory()) { in handleEndBlock()
|
| H A D | LoopRerollPass.cpp | 1301 if (RootInst->mayReadFromMemory()) in validate()
|
| H A D | MemCpyOptimizer.cpp | 406 if (BI->mayWriteToMemory() || BI->mayReadFromMemory()) in INITIALIZE_PASS_DEPENDENCY()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | Instruction.h | 519 bool mayReadFromMemory() const; 523 return mayReadFromMemory() || mayWriteToMemory();
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | MemDepPrinter.cpp | 101 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
|
| H A D | VectorUtils.cpp | 909 (A->mayReadFromMemory() != B->mayReadFromMemory()) || in analyzeInterleaving() 956 if (A->mayReadFromMemory()) in analyzeInterleaving()
|
| H A D | DependenceAnalysis.cpp | 209 return Src->mayReadFromMemory() && Dst->mayReadFromMemory(); in isInput() 221 return Src->mayWriteToMemory() && Dst->mayReadFromMemory(); in isFlow() 227 return Src->mayReadFromMemory() && Dst->mayWriteToMemory(); in isAnti() 3389 if ((!Src->mayReadFromMemory() && !Src->mayWriteToMemory()) || in depends() 3390 (!Dst->mayReadFromMemory() && !Dst->mayWriteToMemory())) in depends() 3817 assert(Src->mayReadFromMemory() || Src->mayWriteToMemory()); in getSplitIteration() 3818 assert(Dst->mayReadFromMemory() || Dst->mayWriteToMemory()); in getSplitIteration()
|
| H A D | LoopInfo.cpp | 82 if (I->mayReadFromMemory()) in makeLoopInvariant()
|
| H A D | GlobalsModRef.cpp | 601 if (I.mayReadFromMemory()) in AnalyzeCallGraph()
|
| H A D | MemoryDependenceAnalysis.cpp | 178 if (Inst->mayReadFromMemory()) in GetLocation()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | Analysis.cpp | 491 if (I->mayHaveSideEffects() || I->mayReadFromMemory() || in isInTailCallPosition() 503 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() || in isInTailCallPosition()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineLoadStoreAlloca.cpp | 1481 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory() || BBI->mayThrow()) in visitStoreInst() 1586 if (BBI->mayReadFromMemory() || BBI->mayThrow() || in mergeStoreIntoSuccessor() 1595 if (I->mayReadFromMemory() || I->mayThrow() || I->mayWriteToMemory()) in mergeStoreIntoSuccessor()
|
| /freebsd-12.1/contrib/llvm/lib/Target/ARM/ |
| H A D | ARMParallelDSP.cpp | 556 if (I.mayReadFromMemory()) in AliasCandidates()
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | Instruction.cpp | 507 bool Instruction::mayReadFromMemory() const { in mayReadFromMemory() function in Instruction
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/ |
| H A D | LoopVectorizationLegality.cpp | 893 if (I.mayReadFromMemory()) { in blockCanBePredicated()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/IPO/ |
| H A D | FunctionAttrs.cpp | 211 ReadsMemory |= I->mayReadFromMemory(); in checkFunctionMemoryAccess()
|