/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
H A D | Instruction.h | 580 bool mayWriteToMemory() const; 587 return mayReadFromMemory() || mayWriteToMemory(); 629 bool mayHaveSideEffects() const { return mayWriteToMemory() || mayThrow(); }
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
H A D | InstructionPrecedenceTracking.h | 131 bool mayWriteToMemory(const BasicBlock *BB) { in mayWriteToMemory() function
|
H A D | VectorUtils.h | 688 assert(!getMember(0)->mayWriteToMemory() && in requiresScalarEpilogue() 911 if (!Src->mayWriteToMemory()) in canReorderMemAccessesForInterleavedGroups()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
H A D | Loads.cpp | 369 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() && in isSafeToLoadUnconditionally() 588 if (Inst->mayWriteToMemory()) { in findAvailablePtrLoadStore() 634 if (Inst.mayWriteToMemory()) in FindAvailableLoadedValue()
|
H A D | InstructionPrecedenceTracking.cpp | 144 return Insn->mayWriteToMemory(); in isSpecialInstruction()
|
H A D | MemDepPrinter.cpp | 101 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
|
H A D | VectorUtils.cpp | 1069 if (B->mayWriteToMemory()) in analyzeInterleaving() 1135 (A->mayWriteToMemory() != B->mayWriteToMemory())) in analyzeInterleaving()
|
H A D | DependenceAnalysis.cpp | 228 return Src->mayWriteToMemory() && Dst->mayWriteToMemory(); in isOutput() 234 return Src->mayWriteToMemory() && Dst->mayReadFromMemory(); in isFlow() 240 return Src->mayReadFromMemory() && Dst->mayWriteToMemory(); in isAnti() 3936 assert(Src->mayReadFromMemory() || Src->mayWriteToMemory()); in getSplitIteration() 3937 assert(Dst->mayReadFromMemory() || Dst->mayWriteToMemory()); in getSplitIteration()
|
H A D | MustExecute.cpp | 292 if (MW.mayWriteToMemory(Pred)) in doesNotWriteMemoryBefore()
|
H A D | AliasSetTracker.cpp | 177 bool MayWriteMemory = I->mayWriteToMemory() && !isGuard(I) && in addUnknownInst()
|
H A D | GlobalsModRef.cpp | 612 if (I.mayWriteToMemory()) in AnalyzeCallGraph()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
H A D | FlattenCFG.cpp | 359 if (iter1->mayWriteToMemory()) { in CompareIfRegionBlock() 361 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
|
H A D | LoopRotationUtils.cpp | 428 !Inst->mayWriteToMemory() && !Inst->isTerminator() && in rotateLoop()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
H A D | LoopVersioningLICM.cpp | 379 else if (I->mayWriteToMemory()) { in instructionSafeForVersioning() 563 if (!Inst.mayReadFromMemory() && !Inst.mayWriteToMemory()) in setNoAliasToLoop()
|
H A D | Sink.cpp | 38 if (Inst->mayWriteToMemory()) { in isSafeToMove()
|
H A D | EarlyCSE.cpp | 790 bool mayWriteToMemory() const { in mayWriteToMemory() function in __anon16fc0a160311::EarlyCSE::ParseMemoryInst 793 return Inst->mayWriteToMemory(); in mayWriteToMemory() 1521 if (Inst.mayWriteToMemory()) { in processNode()
|
H A D | DeadStoreElimination.cpp | 537 if (I->mayWriteToMemory() && I != SecondI) in memoryIsNotModifiedBetween() 1067 if (!I->mayWriteToMemory()) in getLocForWriteEx() 1112 if (!UseInst->mayWriteToMemory()) in isCompleteOverwrite()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineLoadStoreAlloca.cpp | 1435 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory() || BBI->mayThrow()) in visitStoreInst() 1525 BBI->mayWriteToMemory() || BBI == OtherBB->begin()) in mergeStoreIntoSuccessor() 1533 if (I->mayReadFromMemory() || I->mayThrow() || I->mayWriteToMemory()) in mergeStoreIntoSuccessor()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanSLP.cpp | 134 if (LoadsSeen > 0 && VPI->mayWriteToMemory()) { in areVectorizable()
|
H A D | LoopVectorizationLegality.cpp | 956 if (I.mayWriteToMemory()) { in blockCanBePredicated()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
H A D | HexagonVectorCombine.cpp | 639 if (!Info.Inst->mayWriteToMemory()) in createStoreGroups() 1398 bool MayWrite = In.mayWriteToMemory(); in isSafeToMoveBeforeInBB() 1427 if (MayWrite || I.mayWriteToMemory()) { in isSafeToMoveBeforeInBB()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
H A D | ARMParallelDSP.cpp | 360 if (I.mayWriteToMemory()) in RecordMemoryOps()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | Instruction.cpp | 563 bool Instruction::mayWriteToMemory() const { in mayWriteToMemory() function in Instruction
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
H A D | AArch64StackTagging.cpp | 376 if (BI->mayWriteToMemory() || BI->mayReadFromMemory()) in collectInitializers()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
H A D | FunctionAttrs.cpp | 220 WritesMemory |= I->mayWriteToMemory(); in checkFunctionMemoryAccess()
|