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
74 lines
2.5 KiB
LLVM
74 lines
2.5 KiB
LLVM
; RUN: opt -passes='module(debugify),function(dce)' -S < %s | FileCheck %s
|
|
; RUN: opt -passes='module(debugify),function(dce)' -S < %s --try-experimental-debuginfo-iterators | FileCheck %s
|
|
|
|
; CHECK-LABEL: @test
|
|
define void @test() {
|
|
%add = add i32 1, 2
|
|
; CHECK-NEXT: #dbg_value(i32 1, [[add:![0-9]+]], !DIExpression(DW_OP_plus_uconst, 2, DW_OP_stack_value),
|
|
%sub = sub i32 %add, 1
|
|
; CHECK-NEXT: #dbg_value(i32 1, [[sub:![0-9]+]], !DIExpression(DW_OP_plus_uconst, 2, DW_OP_constu, 1, DW_OP_minus, DW_OP_stack_value),
|
|
; CHECK-NEXT: ret void
|
|
ret void
|
|
}
|
|
|
|
declare void @llvm.lifetime.start.p0(i64, ptr nocapture) nounwind
|
|
declare void @llvm.lifetime.end.p0(i64, ptr nocapture) nounwind
|
|
|
|
; CHECK-LABEL: @test_lifetime_alloca
|
|
define i32 @test_lifetime_alloca() {
|
|
; Check that lifetime intrinsics are removed along with the pointer.
|
|
; CHECK-NEXT: #dbg_value
|
|
; CHECK-NEXT: ret i32 0
|
|
; CHECK-NOT: llvm.lifetime.start
|
|
; CHECK-NOT: llvm.lifetime.end
|
|
%i = alloca i8, align 4
|
|
call void @llvm.lifetime.start.p0(i64 -1, ptr %i)
|
|
call void @llvm.lifetime.end.p0(i64 -1, ptr %i)
|
|
ret i32 0
|
|
}
|
|
|
|
; CHECK-LABEL: @test_lifetime_arg
|
|
define i32 @test_lifetime_arg(ptr) {
|
|
; Check that lifetime intrinsics are removed along with the pointer.
|
|
; CHECK-NEXT: #dbg_value
|
|
; CHECK-NEXT: ret i32 0
|
|
; CHECK-NOT: llvm.lifetime.start
|
|
; CHECK-NOT: llvm.lifetime.end
|
|
call void @llvm.lifetime.start.p0(i64 -1, ptr %0)
|
|
call void @llvm.lifetime.end.p0(i64 -1, ptr %0)
|
|
ret i32 0
|
|
}
|
|
|
|
@glob = global i8 1
|
|
|
|
; CHECK-LABEL: @test_lifetime_global
|
|
define i32 @test_lifetime_global() {
|
|
; Check that lifetime intrinsics are removed along with the pointer.
|
|
; CHECK-NEXT: #dbg_value
|
|
; CHECK-NEXT: ret i32 0
|
|
; CHECK-NOT: llvm.lifetime.start
|
|
; CHECK-NOT: llvm.lifetime.end
|
|
call void @llvm.lifetime.start.p0(i64 -1, ptr @glob)
|
|
call void @llvm.lifetime.end.p0(i64 -1, ptr @glob)
|
|
ret i32 0
|
|
}
|
|
|
|
; CHECK-LABEL: @test_lifetime_bitcast
|
|
define i32 @test_lifetime_bitcast(ptr %arg) {
|
|
; Check that lifetime intrinsics are NOT removed when the pointer is a bitcast.
|
|
; It's not uncommon for two bitcasts to be made: one for lifetime, one for use.
|
|
; TODO: Support the above case.
|
|
; CHECK-NEXT: bitcast
|
|
; CHECK-NEXT: #dbg_value
|
|
; CHECK-NEXT: llvm.lifetime.start.p0(i64 -1, ptr %cast)
|
|
; CHECK-NEXT: llvm.lifetime.end.p0(i64 -1, ptr %cast)
|
|
; CHECK-NEXT: ret i32 0
|
|
%cast = bitcast ptr %arg to ptr
|
|
call void @llvm.lifetime.start.p0(i64 -1, ptr %cast)
|
|
call void @llvm.lifetime.end.p0(i64 -1, ptr %cast)
|
|
ret i32 0
|
|
}
|
|
|
|
; CHECK: [[add]] = !DILocalVariable
|
|
; CHECK: [[sub]] = !DILocalVariable
|