mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 09:16:08 +00:00

This patch makes the final major change of the RemoveDIs project, changing the default IR output from debug intrinsics to debug records. This is expected to break a large number of tests: every single one that tests for uses or declarations of debug intrinsics and does not explicitly disable writing records. If this patch has broken your downstream tests (or upstream tests on a configuration I wasn't able to run): 1. If you need to immediately unblock a build, pass `--write-experimental-debuginfo=false` to LLVM's option processing for all failing tests (remember to use `-mllvm` for clang/flang to forward arguments to LLVM). 2. For most test failures, the changes are trivial and mechanical, enough that they can be done by script; see the migration guide for a guide on how to do this: https://llvm.org/docs/RemoveDIsDebugInfo.html#test-updates 3. If any tests fail for reasons other than FileCheck check lines that need updating, such as assertion failures, that is most likely a real bug with this patch and should be reported as such. For more information, see the recent PSA: https://discourse.llvm.org/t/psa-ir-output-changing-from-debug-intrinsics-to-debug-records/79578
45 lines
1.5 KiB
C++
45 lines
1.5 KiB
C++
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -gno-column-info -triple x86_64-apple-macosx10.9.0 -funwind-tables=2 -std=c++11 -fcxx-exceptions -fexceptions %s -o - | FileCheck -allow-deprecated-dag-overlap %s
|
|
|
|
// Test that emitting a landing pad does not affect the line table
|
|
// entries for the code that triggered it.
|
|
|
|
// CHECK: #dbg_declare
|
|
// CHECK: #dbg_declare({{.*}}, ![[CURRENT_ADDR:.*]], !{{.*}}, ![[DBG1:[0-9]+]]
|
|
// CHECK: unwind label %{{.*}}, !dbg ![[DBG1]]
|
|
// CHECK: store i64 %{{.*}}, ptr %current_address, align 8, !dbg ![[DBG4:.*]]
|
|
// CHECK-NEXT: #dbg_declare({{.*}}, ![[FOUND_IT:.*]], !{{.*}}, ![[DBG2:[0-9]+]]
|
|
// CHECK: = landingpad
|
|
// CHECK-NEXT: cleanup, !dbg ![[DBG3:.*]]
|
|
// CHECK-DAG: ![[CURRENT_ADDR]] = {{.*}}name: "current_address"
|
|
// CHECK-DAG: ![[FOUND_IT]] = {{.*}}name: "found_it"
|
|
// CHECK-DAG: ![[DBG1]] = !DILocation(line: 256,
|
|
// CHECK-DAG: ![[DBG2]] = !DILocation(line: 257,
|
|
// CHECK-DAG: ![[DBG3]] = !DILocation(line: 268,
|
|
// CHECK-DAG: ![[DBG4]] = !DILocation(line: 256,
|
|
typedef unsigned long long uint64_t;
|
|
template<class _Tp> class shared_ptr {
|
|
public:
|
|
typedef _Tp element_type;
|
|
element_type* __ptr_;
|
|
~shared_ptr();
|
|
element_type* operator->() const noexcept {return __ptr_;}
|
|
};
|
|
class Context {
|
|
public:
|
|
uint64_t GetIt();
|
|
};
|
|
class Foo
|
|
{
|
|
bool bar();
|
|
virtual shared_ptr<Context> GetContext () = 0;
|
|
};
|
|
# 253 "Foo.cpp" 3
|
|
bool
|
|
Foo::bar ()
|
|
{
|
|
uint64_t current_address = GetContext()->GetIt();
|
|
bool found_it = false;
|
|
# 267 "Foo.cpp" 3
|
|
return found_it;
|
|
}
|