xref: /llvm-project/llvm/test/Transforms/LoopStrengthReduce/dbg-preserve-2.ll (revision 094572701dce4aaf36f4521d6cf750420d39f206)
1; RUN: opt < %s -loop-reduce -S | FileCheck %s
2; RUN: opt --try-experimental-debuginfo-iterators < %s -loop-reduce -S | FileCheck %s
3
4; Test that LSR does not produce invalid debug info when a debug value is
5; salvaged during LSR by adding additional location operands, then becomes
6; undef, and finally recovered by SCEV salvaging.
7
8target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
9
10define i32 @_Z3fooiii(i32 %Result, i32 %Step, i32 %Last) local_unnamed_addr !dbg !7 {
11; CHECK-LABEL: @_Z3fooiii(
12entry:
13  call void @llvm.dbg.value(metadata i32 %Result, metadata !12, metadata !DIExpression()), !dbg !17
14  call void @llvm.dbg.value(metadata i32 %Step, metadata !13, metadata !DIExpression()), !dbg !17
15  call void @llvm.dbg.value(metadata i32 %Last, metadata !14, metadata !DIExpression()), !dbg !17
16  call void @llvm.dbg.value(metadata i32 0, metadata !16, metadata !DIExpression()), !dbg !17
17  br label %do.body, !dbg !18
18
19do.body:                                          ; preds = %do.body, %entry
20; CHECK-LABEL: do.body:
21  %Result.addr.0 = phi i32 [ %Result, %entry ], [ %or, %do.body ]
22  %Itr.0 = phi i32 [ 0, %entry ], [ %add, %do.body ], !dbg !17
23; CHECK-NOT: #dbg_value(!DIArgList
24; CHECK: #dbg_value(!DIArgList(i32 %lsr.iv, i32 %Step), ![[VAR_ITR:[0-9]+]], !DIExpression(DW_OP_LLVM_arg, 0, DW_OP_LLVM_arg, 1, DW_OP_minus, DW_OP_LLVM_arg, 1, DW_OP_div, DW_OP_LLVM_arg, 1, DW_OP_mul, DW_OP_stack_value),
25  call void @llvm.dbg.value(metadata i32 %Itr.0, metadata !16, metadata !DIExpression()), !dbg !17
26  call void @llvm.dbg.value(metadata i32 %Result.addr.0, metadata !12, metadata !DIExpression()), !dbg !17
27  %add = add nsw i32 %Itr.0, %Step, !dbg !19
28  call void @llvm.dbg.value(metadata i32 %add, metadata !16, metadata !DIExpression()), !dbg !17
29  %call = tail call i32 @_Z3barv(), !dbg !21
30  call void @llvm.dbg.value(metadata i32 %call, metadata !15, metadata !DIExpression()), !dbg !17
31  %shl = shl i32 %call, %add, !dbg !22
32  %or = or i32 %shl, %Result.addr.0, !dbg !23
33  call void @llvm.dbg.value(metadata i32 %or, metadata !12, metadata !DIExpression()), !dbg !17
34  %and = and i32 %call, %Last, !dbg !24
35  %tobool.not = icmp eq i32 %and, 0, !dbg !25
36  br i1 %tobool.not, label %do.end, label %do.body, !dbg !26, !llvm.loop !27
37
38do.end:                                           ; preds = %do.body
39  ret i32 %or, !dbg !30
40}
41
42declare !dbg !31 dso_local i32 @_Z3barv() local_unnamed_addr
43
44declare void @llvm.dbg.value(metadata, metadata, metadata)
45
46; CHECK: ![[VAR_ITR]] = !DILocalVariable(name: "Itr"
47
48!llvm.dbg.cu = !{!0}
49!llvm.module.flags = !{!3, !4, !5}
50!llvm.ident = !{!6}
51
52!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus_14, file: !1, producer: "clang version 13.0.0", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, splitDebugInlining: false, nameTableKind: None)
53!1 = !DIFile(filename: "test.cpp", directory: "/")
54!2 = !{}
55!3 = !{i32 7, !"Dwarf Version", i32 4}
56!4 = !{i32 2, !"Debug Info Version", i32 3}
57!5 = !{i32 1, !"wchar_size", i32 4}
58!6 = !{!"clang version 13.0.0"}
59!7 = distinct !DISubprogram(name: "foo", linkageName: "_Z3fooiii", scope: !1, file: !1, line: 3, type: !8, scopeLine: 3, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !11)
60!8 = !DISubroutineType(types: !9)
61!9 = !{!10, !10, !10, !10}
62!10 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
63!11 = !{!12, !13, !14, !15, !16}
64!12 = !DILocalVariable(name: "Result", arg: 1, scope: !7, file: !1, line: 3, type: !10)
65!13 = !DILocalVariable(name: "Step", arg: 2, scope: !7, file: !1, line: 3, type: !10)
66!14 = !DILocalVariable(name: "Last", arg: 3, scope: !7, file: !1, line: 3, type: !10)
67!15 = !DILocalVariable(name: "Bar", scope: !7, file: !1, line: 4, type: !10)
68!16 = !DILocalVariable(name: "Itr", scope: !7, file: !1, line: 5, type: !10)
69!17 = !DILocation(line: 0, scope: !7)
70!18 = !DILocation(line: 6, column: 3, scope: !7)
71!19 = !DILocation(line: 7, column: 9, scope: !20)
72!20 = distinct !DILexicalBlock(scope: !7, file: !1, line: 6, column: 6)
73!21 = !DILocation(line: 8, column: 11, scope: !20)
74!22 = !DILocation(line: 9, column: 20, scope: !20)
75!23 = !DILocation(line: 9, column: 12, scope: !20)
76!24 = !DILocation(line: 10, column: 16, scope: !7)
77!25 = !DILocation(line: 10, column: 12, scope: !7)
78!26 = !DILocation(line: 10, column: 3, scope: !20)
79!27 = distinct !{!27, !18, !28, !29}
80!28 = !DILocation(line: 10, column: 22, scope: !7)
81!29 = !{!"llvm.loop.mustprogress"}
82!30 = !DILocation(line: 11, column: 3, scope: !7)
83!31 = !DISubprogram(name: "bar", linkageName: "_Z3barv", scope: !1, file: !1, line: 1, type: !32, flags: DIFlagPrototyped, spFlags: DISPFlagOptimized, retainedNodes: !2)
84!32 = !DISubroutineType(types: !33)
85!33 = !{!10}
86