[clang] bf1d422 - [KeyInstr][Clang] Catch variable init atom (#134641)
via cfe-commits
cfe-commits at lists.llvm.org
Tue May 27 03:12:19 PDT 2025
Author: Orlando Cazalet-Hyams
Date: 2025-05-27T11:12:16+01:00
New Revision: bf1d4228f1660db694c29e2694414340897734f7
URL: https://github.com/llvm/llvm-project/commit/bf1d4228f1660db694c29e2694414340897734f7
DIFF: https://github.com/llvm/llvm-project/commit/bf1d4228f1660db694c29e2694414340897734f7.diff
LOG: [KeyInstr][Clang] Catch variable init atom (#134641)
This patch is part of a stack that teaches Clang to generate Key Instructions
metadata for C and C++.
RFC:
https://discourse.llvm.org/t/rfc-improving-is-stmt-placement-for-better-interactive-debugging/82668
The feature is only functional in LLVM if LLVM is built with CMake flag
LLVM_EXPERIMENTAL_KEY_INSTRUCTIONs. Eventually that flag will be removed.
Added:
clang/test/DebugInfo/KeyInstructions/try-catch.cpp
Modified:
clang/lib/CodeGen/ItaniumCXXABI.cpp
Removed:
################################################################################
diff --git a/clang/lib/CodeGen/ItaniumCXXABI.cpp b/clang/lib/CodeGen/ItaniumCXXABI.cpp
index faa07024a6052..5018a6b39b000 100644
--- a/clang/lib/CodeGen/ItaniumCXXABI.cpp
+++ b/clang/lib/CodeGen/ItaniumCXXABI.cpp
@@ -5055,7 +5055,11 @@ void ItaniumCXXABI::emitBeginCatch(CodeGenFunction &CGF,
// Emit the local.
CodeGenFunction::AutoVarEmission var = CGF.EmitAutoVarAlloca(*CatchParam);
- InitCatchParam(CGF, *CatchParam, var.getObjectAddress(CGF), S->getBeginLoc());
+ {
+ ApplyAtomGroup Grp(CGF.getDebugInfo());
+ InitCatchParam(CGF, *CatchParam, var.getObjectAddress(CGF),
+ S->getBeginLoc());
+ }
CGF.EmitAutoVarCleanups(var);
}
diff --git a/clang/test/DebugInfo/KeyInstructions/try-catch.cpp b/clang/test/DebugInfo/KeyInstructions/try-catch.cpp
new file mode 100644
index 0000000000000..918eb4c97db9a
--- /dev/null
+++ b/clang/test/DebugInfo/KeyInstructions/try-catch.cpp
@@ -0,0 +1,20 @@
+// RUN: %clang_cc1 -triple x86_64-linux-gnu -gkey-instructions %s -debug-info-kind=line-tables-only -emit-llvm -o - -fexceptions -fcxx-exceptions \
+// RUN: | FileCheck %s
+
+void except() {
+ // FIXME(OCH): Should `store i32 32, ptr %exception` be key?
+ throw 32;
+}
+
+void attempt() {
+ try { except(); }
+// CHECK: catch:
+// CHECK: %4 = call ptr @__cxa_begin_catch(ptr %exn)
+// CHECK: %5 = load i32{{.*}}, !dbg [[G1R2:!.*]]
+// CHECK: store i32 %5, ptr %e{{.*}}, !dbg [[G1R1:!.*]]
+// CHECK: call void @__cxa_end_catch()
+ catch (int e) { }
+}
+
+// CHECK: [[G1R2]] = !DILocation({{.*}}, atomGroup: 1, atomRank: 2)
+// CHECK: [[G1R1]] = !DILocation({{.*}}, atomGroup: 1, atomRank: 1)
More information about the cfe-commits
mailing list