Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / DebugInfo / Generic / no-empty-child-vars.ll
blob1399b68b9b7f1841cbce749f15d26fcb82a967f4
1 ; RUN: %llc_dwarf %s -o - -filetype=obj | llvm-dwarfdump - | FileCheck %s -implicit-check-not=DW_TAG
3 ; Issue #46473
4 ; XFAIL: target=sparc{{.*}}
6 ; This tests that we do not create concrete variable DIEs for variables that
7 ; have no location -- for both ways that LLVM-IR can express a variable with
8 ; no location. It's possible to:
9 ;   1) Omit all dbg.values and place the variable in the subprograms retained
10 ;      nodes list,
11 ;   2) Have a dbg.value with an undef operand, and none with "real" operands.
12 ; Both of these should produce the same DWARF. In the two functions below
13 ; (qux and croix) I've modified the IR to represent both scenarios.
15 ; Original C, LLVM-IR modified afterwards:
17 ; int foo(int bar) {
18 ;   int baz = 12 + bar;
19 ;   return baz;
20 ; }
22 ; int qux(int quux) {
23 ;   int xyzzy = foo(quux);
24 ;   return xyzzy;
25 ; }
27 ; int croix(int quux) {
28 ;   int xyzzy = foo(quux);
29 ;   return xyzzy;
30 ; }
32 ;; Note the implicit DW_TAG check-not in the FileCheck command line.
33 ; CHECK: DW_TAG_compile_unit
35 ;; First subprogram is attached to the plain "foo" function in the output
36 ;; object. It should have locations for the two variables in the function,
37 ;; let's be non-specific as to how.
38 ; CHECK:     DW_TAG_subprogram
39 ; CHECK:       DW_AT_abstract_origin (0x{{[0-9a-f]*}} "foo")
40 ; CHECK:       DW_TAG_formal_parameter
41 ; CHECK:         DW_AT_location
42 ; CHECK:       DW_TAG_variable
43 ; CHECK:         DW_AT_location
45 ;; Abstract subprogram; should have plain variable declarations
46 ; CHECK:     DW_TAG_subprogram
47 ; CHECK:       DW_AT_name ("foo")
48 ; CHECK:       DW_TAG_formal_parameter
49 ; CHECK:         DW_AT_name ("bar")
50 ; CHECK:       DW_TAG_variable
51 ; CHECK:         DW_AT_name ("baz")
53 ; CHECK:     DW_TAG_base_type
55 ;; The copy of "foo" inlined into "qux" should have no children.
56 ; CHECK:     DW_TAG_subprogram
57 ; CHECK:       DW_AT_name ("qux")
58 ; CHECK:       DW_TAG_formal_parameter
59 ; CHECK:       DW_TAG_variable
60 ; CHECK:       DW_TAG_inlined_subroutine
61 ; CHECK:     NULL
63 ;; Same for the copy of foo inlined into "croix"
64 ; CHECK:     DW_TAG_subprogram
65 ; CHECK:       DW_AT_name ("croix")
66 ; CHECK:       DW_TAG_formal_parameter
67 ; CHECK:       DW_TAG_variable
68 ; CHECK:       DW_TAG_inlined_subroutine
69 ; CHECK:     NULL
71 ; Function Attrs: norecurse nounwind readnone uwtable willreturn
72 define dso_local i32 @foo(i32 %bar) local_unnamed_addr !dbg !7 {
73 entry:
74   call void @llvm.dbg.value(metadata i32 %bar, metadata !12, metadata !DIExpression()), !dbg !14
75   %add = add nsw i32 %bar, 12, !dbg !15
76   call void @llvm.dbg.value(metadata i32 %add, metadata !13, metadata !DIExpression()), !dbg !14
77   ret i32 %add, !dbg !16
80 ; Function Attrs: norecurse nounwind readnone uwtable willreturn
81 define dso_local i32 @qux(i32 %quux) local_unnamed_addr !dbg !17 {
82 entry:
83   %add.i = add nsw i32 %quux, 12, !dbg !24
84   ret i32 %add.i, !dbg !25
87 ; Function Attrs: norecurse nounwind readnone uwtable willreturn
88 define dso_local i32 @croix(i32 %quux) local_unnamed_addr !dbg !26 {
89 entry:
90   call void @llvm.dbg.value(metadata i32 undef, metadata !28, metadata !DIExpression()), !dbg !30
91   call void @llvm.dbg.value(metadata i32 undef, metadata !12, metadata !DIExpression()), !dbg !31
92   %add.i = add nsw i32 %quux, 12, !dbg !33
93   call void @llvm.dbg.value(metadata i32 undef, metadata !13, metadata !DIExpression()), !dbg !31
94   call void @llvm.dbg.value(metadata i32 undef, metadata !29, metadata !DIExpression()), !dbg !30
95   ret i32 %add.i, !dbg !34
98 ; Function Attrs: nofree nosync nounwind readnone speculatable willreturn
99 declare void @llvm.dbg.value(metadata, metadata, metadata)
101 !llvm.dbg.cu = !{!0}
102 !llvm.module.flags = !{!3, !4, !5}
103 !llvm.ident = !{!6}
105 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, splitDebugInlining: false, nameTableKind: None)
106 !1 = !DIFile(filename: "test.c", directory: ".")
107 !2 = !{}
108 !3 = !{i32 7, !"Dwarf Version", i32 4}
109 !4 = !{i32 2, !"Debug Info Version", i32 3}
110 !5 = !{i32 1, !"wchar_size", i32 4}
111 !6 = !{!"clang"}
112 !7 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 1, type: !8, scopeLine: 1, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !11)
113 !8 = !DISubroutineType(types: !9)
114 !9 = !{!10, !10}
115 !10 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
116 !11 = !{!12, !13}
117 !12 = !DILocalVariable(name: "bar", arg: 1, scope: !7, file: !1, line: 1, type: !10)
118 !13 = !DILocalVariable(name: "baz", scope: !7, file: !1, line: 2, type: !10)
119 !14 = !DILocation(line: 0, scope: !7)
120 !15 = !DILocation(line: 2, column: 16, scope: !7)
121 !16 = !DILocation(line: 3, column: 3, scope: !7)
122 !17 = distinct !DISubprogram(name: "qux", scope: !1, file: !1, line: 6, type: !8, scopeLine: 6, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !18)
123 !18 = !{!19, !20}
124 !19 = !DILocalVariable(name: "quux", arg: 1, scope: !17, file: !1, line: 6, type: !10)
125 !20 = !DILocalVariable(name: "xyzzy", scope: !17, file: !1, line: 7, type: !10)
126 !21 = !DILocation(line: 0, scope: !17)
127 !22 = !DILocation(line: 0, scope: !7, inlinedAt: !23)
128 !23 = distinct !DILocation(line: 7, column: 15, scope: !17)
129 !24 = !DILocation(line: 2, column: 16, scope: !7, inlinedAt: !23)
130 !25 = !DILocation(line: 8, column: 3, scope: !17)
131 !26 = distinct !DISubprogram(name: "croix", scope: !1, file: !1, line: 11, type: !8, scopeLine: 11, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !27)
132 !27 = !{!28, !29}
133 !28 = !DILocalVariable(name: "quux", arg: 1, scope: !26, file: !1, line: 11, type: !10)
134 !29 = !DILocalVariable(name: "xyzzy", scope: !26, file: !1, line: 12, type: !10)
135 !30 = !DILocation(line: 0, scope: !26)
136 !31 = !DILocation(line: 0, scope: !7, inlinedAt: !32)
137 !32 = distinct !DILocation(line: 12, column: 15, scope: !26)
138 !33 = !DILocation(line: 2, column: 16, scope: !7, inlinedAt: !32)
139 !34 = !DILocation(line: 13, column: 3, scope: !26)