[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 07:29:12 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 =
----------------
vpykhtin wrote:

Right, it still can happen, I'll change it to a copy, thanks!

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


More information about the llvm-commits mailing list