Home
last modified time | relevance | path

Searched refs:getMemoryAccess (Results 1 – 11 of 11) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DMemorySSAUpdater.cpp351 if (auto *MP = MSSA->getMemoryAccess(S)) in fixupDefs()
382 if (auto *MP = MSSA->getMemoryAccess(S)) in fixupDefs()
397 if (MemoryPhi *MPhi = MSSA->getMemoryAccess(To)) { in removeEdge()
406 if (MemoryPhi *MPhi = MSSA->getMemoryAccess(To)) { in removeDuplicatePhiEdgesBetween()
497 IncMUD = MSSA->getMemoryAccess(NewIncI); in updateForClonedLoop()
522 if (MemoryPhi *MPhi = MSSA->getMemoryAccess(BB)) { in updateForClonedLoop()
534 if (MemoryPhi *MPhi = MSSA->getMemoryAccess(BB)) in updateForClonedLoop()
547 if (MemoryPhi *MPhi = MSSA->getMemoryAccess(BB)) in updateForClonedBlockIntoPred()
791 MemoryPhi *NewPhi = MSSA->getMemoryAccess(BB); in applyInsertUpdates()
963 if ((FirstInNew = MSSA->getMemoryAccess(&I))) in moveAllAccesses()
[all …]
H A DMemorySSA.cpp103 if (MemoryAccess *MA = MSSA->getMemoryAccess(BB)) in emitBasicBlockStartAnnot()
109 if (MemoryAccess *MA = MSSA->getMemoryAccess(I)) in emitInstructionAnnot()
1610 assert(!getMemoryAccess(BB) && "MemoryPhi already exists for this BB"); in createMemoryPhi()
1862 MemoryAccess *Phi = getMemoryAccess(&B); in verifyOrdering()
1869 MemoryAccess *MA = getMemoryAccess(&I); in verifyOrdering()
1921 if (MemoryPhi *MP = getMemoryAccess(&B)) in verifyDomination()
1926 MemoryAccess *MD = dyn_cast_or_null<MemoryDef>(getMemoryAccess(&I)); in verifyDomination()
1958 if (MemoryPhi *Phi = getMemoryAccess(&B)) { in verifyDefUses()
1971 if (MemoryUseOrDef *MA = getMemoryAccess(&I)) { in verifyDefUses()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DLoopInstSimplify.cpp139 if (MemoryAccess *MA = MSSA->getMemoryAccess(&I)) in simplifyLoopInst()
140 if (MemoryAccess *ReplacementMA = MSSA->getMemoryAccess(SimpleI)) in simplifyLoopInst()
H A DNewGVN.cpp905 auto *Result = MSSA->getMemoryAccess(I); in getMemoryAccess()
911 return MSSA->getMemoryAccess(BB); in getMemoryAccess()
1366 auto *StoreAccess = getMemoryAccess(SI); in performSymbolicStoreEvaluation()
1501 MemoryAccess *OriginalAccess = getMemoryAccess(I); in performSymbolicLoadEvaluation()
2173 return getMemoryAccess(NL); in getNextMemoryLeader()
2177 return getMemoryAccess(cast<StoreInst>(V)); in getNextMemoryLeader()
2425 if (MemoryAccess *MA = getMemoryAccess(I)) in performCongruenceFinding()
2470 if (MemoryAccess *MemPhi = getMemoryAccess(To)) in updateReachableEdge()
2565 auto *MA = getMemoryAccess(TI); in processOutgoingEdges()
2731 auto *MemAccess = getMemoryAccess(I); in makePossiblePHIOfOps()
[all …]
H A DGVNHoist.cpp608 MemoryUseOrDef *UD = MSSA->getMemoryAccess(Insn); in checkSafety()
922 MemoryAccess *OldMA = MSSA->getMemoryAccess(I); in rauw()
957 MemoryUseOrDef *NewMemAcc = MSSA->getMemoryAccess(Repl); in removeAndReplace()
H A DEarlyCSE.cpp614 if (MemoryAccess *MA = MSSA->getMemoryAccess(Inst)) { in removeMSSA()
680 auto *EarlierMA = MSSA->getMemoryAccess(EarlierInst); in isSameMemGeneration()
683 auto *LaterMA = MSSA->getMemoryAccess(LaterInst); in isSameMemGeneration()
H A DLICM.cpp1032 MSSA, cast<MemoryUse>(MSSA->getMemoryAccess(LI)), CurLoop); in canSinkOrHoistInst()
1077 MSSA, cast<MemoryUse>(MSSA->getMemoryAccess(CI)), CurLoop); in canSinkOrHoistInst()
1266 if (MSSAU && (OldMemAcc = MSSAU->getMemorySSA()->getMemoryAccess(&I))) { in CloneInstructionInExitBlock()
1559 MSSAU->getMemorySSA()->getMemoryAccess(&I)); in hoist()
H A DSimpleLoopUnswitch.cpp2398 MemoryDef *MD = cast<MemoryDef>(MSSAU->getMemorySSA()->getMemoryAccess(GI)); in turnGuardIntoBranch()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DMemorySSAUpdater.h231 if (MemoryAccess *MA = MSSA->getMemoryAccess(I)) in removeMemoryAccess()
H A DMemorySSA.h713 MemoryUseOrDef *getMemoryAccess(const Instruction *I) const {
717 MemoryPhi *getMemoryAccess(const BasicBlock *BB) const {
1017 MemoryAccess *MA = MSSA->getMemoryAccess(I);
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DInterleavedLoadCombinePass.cpp1183 auto FMA = MSSA.getMemoryAccess(First); in combine()
1185 auto MADef = MSSA.getMemoryAccess(LI)->getDefiningAccess(); in combine()
1226 LI, nullptr, MSSA.getMemoryAccess(InsertionPoint))); in combine()