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
55 lines
2.5 KiB
LLVM
55 lines
2.5 KiB
LLVM
; RUN: opt -S -loop-reduce %s | FileCheck %s
|
|
; RUN: opt --try-experimental-debuginfo-iterators -S -loop-reduce %s | FileCheck %s
|
|
;
|
|
; Test that LSR SCEV-based salvaging does not crash when translating SCEVs
|
|
; that contain integers with binary representations greater than 64-bits.
|
|
; Also show that no salvaging attempt is made for dbg.value that are undef
|
|
; pre-LSR.
|
|
;
|
|
; CHECK: #dbg_value(i64 undef, !{{[0-9]+}}, !DIExpression(DW_OP_plus_uconst, 228, DW_OP_stack_value),
|
|
; CHECK: #dbg_value(i64 %var2, !{{[0-9]+}}, !DIExpression(DW_OP_plus_uconst, 228, DW_OP_stack_value),
|
|
|
|
|
|
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
; Function Attrs: nofree nosync nounwind readnone speculatable willreturn
|
|
declare void @llvm.dbg.value(metadata, metadata, metadata)
|
|
|
|
; Function Attrs: nounwind
|
|
define hidden void @reproducer() local_unnamed_addr !dbg !5 {
|
|
init:
|
|
%0 = lshr i128 undef, 64
|
|
%var1 = trunc i128 %0 to i64
|
|
%1 = add nuw i64 undef, %var1
|
|
%var2 = lshr i64 %1, 12
|
|
br label %Label_d0
|
|
|
|
Label_d0: ; preds = %Label_d0, %init
|
|
%var3 = phi i64 [ %var2, %init ], [ %var4, %Label_d0 ]
|
|
call void @llvm.dbg.value(metadata i64 undef, metadata !11, metadata !DIExpression(DW_OP_plus_uconst, 228, DW_OP_stack_value)), !dbg !12
|
|
call void @llvm.dbg.value(metadata i64 %var2, metadata !11, metadata !DIExpression(DW_OP_plus_uconst, 228, DW_OP_stack_value)), !dbg !12
|
|
%var4 = add i64 %var3, -1
|
|
%var5 = icmp eq i64 %var4, 0
|
|
br i1 %var5, label %Label_1bc, label %Label_d0
|
|
|
|
Label_1bc: ; preds = %Label_d0
|
|
ret void
|
|
}
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
!llvm.module.flags = !{!3, !4}
|
|
|
|
!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "frontend", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
|
|
!1 = !DIFile(filename: "source", directory: "")
|
|
!2 = !{}
|
|
!3 = !{i32 2, !"Debug Info Version", i32 3}
|
|
!4 = !{i32 1, !"wchar_size", i32 4}
|
|
!5 = distinct !DISubprogram(name: "reproducer", scope: !1, file: !1, line: 904320, type: !6, scopeLine: 904320, spFlags: DISPFlagDefinition, unit: !0, retainedNodes: !10)
|
|
!6 = !DISubroutineType(types: !7)
|
|
!7 = !{null, !8, !9, !9, !9, !9, !9, !9}
|
|
!8 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 64)
|
|
!9 = !DIBasicType(name: "my_type", size: 64, encoding: DW_ATE_unsigned)
|
|
!10 = !{!11}
|
|
!11 = !DILocalVariable(name: "my_var", arg: 1, scope: !5, file: !1, line: 904320, type: !8)
|
|
!12 = !DILocation(line: 904544, scope: !5) |