[llvm] [AMDGPU] Improve StructurizeCFG pass performance: avoid redundant DebugLoc map initialization. NFC. (PR #130568)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 10 02:52:25 PDT 2025


================
@@ -990,10 +996,10 @@ 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);
+  auto *Term = Dominator->getTerminator();
+  if (const DebugLoc &DL =
+          Term ? Term->getDebugLoc() : TermDL.lookup(Dominator))
+    TermDL[Flow] = DL;
----------------
arsenm wrote:

This is a double map lookup in the !Term case

https://github.com/llvm/llvm-project/pull/130568


More information about the llvm-commits mailing list