[llvm] [AMDGPU] Improve StructurizeCFG pass performance: avoid redundant DebugLoc map initialization. NFC. (PR #130568)
Valery Pykhtin via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 10 11:06:21 PDT 2025
================
@@ -990,10 +996,13 @@ BasicBlock *StructurizeCFG::getNextFlow(BasicBlock *Dominator) {
Func, Insert);
FlowSet.insert(Flow);
- // use a temporary variable to avoid a use-after-free if the map's storage is
- // reallocated
- DebugLoc DL = TermDL[Dominator];
- TermDL[Flow] = std::move(DL);
+ if (auto *Term = Dominator->getTerminator()) {
+ if (const DebugLoc &DL = Term->getDebugLoc())
+ TermDL[Flow] = DL;
+ } else if (DebugLoc DLTemp = TermDL.lookup(Dominator))
+ // use a temporary variable to avoid a use-after-free if the map's storage
+ // is reallocated
+ TermDL[Flow] = DLTemp;
----------------
vpykhtin wrote:
Thanks, done
https://github.com/llvm/llvm-project/pull/130568
More information about the llvm-commits
mailing list