Home
last modified time | relevance | path

Searched refs:DomPoint (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp2606 Instruction &From, Value &To, Instruction &DomPoint, DominatorTree &DT, in rewriteDebugUsers() argument
2622 bool DomPointAfterFrom = From.getNextNonDebugInstruction() == &DomPoint; in rewriteDebugUsers()
2627 if (DomPointAfterFrom && DII->getNextNonDebugInstruction() == &DomPoint) { in rewriteDebugUsers()
2629 DII->moveAfter(&DomPoint); in rewriteDebugUsers()
2634 } else if (!DT.dominates(&DomPoint, DII)) { in rewriteDebugUsers()
2647 if (DomPointAfterFrom && NextNonDebug == &DomPoint) { in rewriteDebugUsers()
2651 DomPoint.getParent()->insertDbgRecordAfter(DVR, &DomPoint); in rewriteDebugUsers()
2653 } else if (!DT.dominates(&DomPoint, MarkedInstr)) { in rewriteDebugUsers()
2722 Instruction &DomPoint, DominatorTree &DT) { in replaceAllDbgUsesWith() argument
2743 return rewriteDebugUsers(From, To, DomPoint, DT, Identity, IdentityDVR); in replaceAllDbgUsesWith()
[all …]
/src/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLocal.h358 bool replaceAllDbgUsesWith(Instruction &From, Value &To, Instruction &DomPoint,