[llvm] [DebugInfo] Soft-disable the production of debug intrinsics (PR #133933)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 1 15:20:37 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-debuginfo
Author: Jeremy Morse (jmorse)
<details>
<summary>Changes</summary>
The objective of this patch is to flush out anyone who's still using debug intrinsics by breaking their tests (see commit message below), and getting them to make contact. To the best of my knowledge, there's nothing left for us to do for eliminating debug intrinsics aside from this. We could also be hard-nosed and just start deleting stuff, but this'll give downstream folks a heads-up at least.
All the llvm-lit tests pass with this change. It's possible there are rarer mlir/flang tests that'll fail, I suspect the solution to those will be deleting coverage for what's about to be disabled anyway. In an ideal world, we can then move on to deleting spurious debug-info things!.
This patch depends on #<!-- -->133917, which is just squashing another output-variation flag.
~
This patch switches the --experimental-debuginfo-iterators flag to be stored to an otherwise unused cl-opt. This is a deliberate attempt to break downstream tests that are relying on the use of debug intrinsics, because they're imminently going away! If this commit breaks your tests, please just revert the commit upstream, and then make contact with us here:
https://discourse.llvm.org/t/psa-ir-output-changing-from-debug-intrinsics-to-debug-records/79578
So that we can work out whether there's any further transition work needed to support the move away from using debug intrinsics.
---
Full diff: https://github.com/llvm/llvm-project/pull/133933.diff
1 Files Affected:
- (modified) llvm/lib/IR/BasicBlock.cpp (+21-4)
``````````diff
diff --git a/llvm/lib/IR/BasicBlock.cpp b/llvm/lib/IR/BasicBlock.cpp
index d9ff0687480a4..7f5311dc63809 100644
--- a/llvm/lib/IR/BasicBlock.cpp
+++ b/llvm/lib/IR/BasicBlock.cpp
@@ -30,11 +30,28 @@ using namespace llvm;
#define DEBUG_TYPE "ir"
STATISTIC(NumInstrRenumberings, "Number of renumberings across all blocks");
+// This cl-opt exists to control whether variable-location information is
+// produced using intrinsics, or whether DbgRecords are produced. However,
+// it's imminently being phased out, so give it a flag-name that is very
+// unlikely to be used anywhere.
+//
+// If you find yourself needing to use this flag for any period longer than
+// five minutes, please revert the patch making this change, and make contact
+// in this discourse post, where we can discuss any further transition work
+// that might be needed to remove debug intrinsics.
+//
+// https://discourse.llvm.org/t/psa-ir-output-changing-from-debug-intrinsics-to-debug-records/79578
cl::opt<bool> UseNewDbgInfoFormat(
- "experimental-debuginfo-iterators",
- cl::desc("Enable communicating debuginfo positions through iterators, "
- "eliminating intrinsics. Has no effect if "
- "--preserve-input-debuginfo-format=true."),
+ "dont-pass-this-flag-please-experimental-debuginfo", cl::Hidden,
+ cl::init(true));
+
+// This cl-opt collects the --experimental-debuginfo-iterators flag and then
+// does nothing with it (because the it gets stored into an otherwise unused
+// cl-opt), so that we can disable debug-intrinsic production without
+// immediately modifying lots of tests. If your tests break because of this
+// change, please see the next comment up.
+static cl::opt<bool> DeliberatelyUnseenDbgInfoFlag(
+ "experimental-debuginfo-iterators", cl::Hidden,
cl::init(true));
cl::opt<cl::boolOrDefault> PreserveInputDbgFormat(
"preserve-input-debuginfo-format", cl::Hidden,
``````````
</details>
https://github.com/llvm/llvm-project/pull/133933
More information about the llvm-commits
mailing list