Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / DebugInfo / COFF / defer-complete-type.ll
blob7a5d552be4f8800e832aa7b850db27bfde61f49f
1 ; RUN: llc < %s -filetype=obj | llvm-readobj - -codeview | FileCheck %s
3 ; Both A and B should get forward declarations and complete definitions for this
4 ; example.
6 ; C++ source to regenerate:
7 ; $ cat t.cpp
8 ; struct B { int b; };
9 ; struct A { B *b; };
10 ; int f(A *p) { return p->b->b; }
11 ; $ clang t.cpp -S -emit-llvm -g -gcodeview -o t.ll
13 ; CHECK: CodeViewTypes [
14 ; CHECK:   Section: .debug$T (6)
15 ; CHECK:   Magic: 0x4
16 ; CHECK:   Struct (0x1000) {
17 ; CHECK:     TypeLeafKind: LF_STRUCTURE (0x1505)
18 ; CHECK:     MemberCount: 0
19 ; CHECK:     Properties [ (0x280)
20 ; CHECK:       ForwardReference (0x80)
21 ; CHECK:       HasUniqueName (0x200)
22 ; CHECK:     ]
23 ; CHECK:     FieldList: 0x0
24 ; CHECK:     DerivedFrom: 0x0
25 ; CHECK:     VShape: 0x0
26 ; CHECK:     SizeOf: 0
27 ; CHECK:     Name: A
28 ; CHECK:     LinkageName: .?AUA@@
29 ; CHECK:   }
30 ; CHECK:   Pointer (0x1001) {
31 ; CHECK:     TypeLeafKind: LF_POINTER (0x1002)
32 ; CHECK:     PointeeType: A (0x1000)
33 ; CHECK:     PtrType: Near64 (0xC)
34 ; CHECK:     PtrMode: Pointer (0x0)
35 ; CHECK:     IsFlat: 0
36 ; CHECK:     IsConst: 0
37 ; CHECK:     IsVolatile: 0
38 ; CHECK:     IsUnaligned: 0
39 ; CHECK:     SizeOf: 8
40 ; CHECK:   }
41 ; CHECK:   ArgList (0x1002) {
42 ; CHECK:     TypeLeafKind: LF_ARGLIST (0x1201)
43 ; CHECK:     NumArgs: 1
44 ; CHECK:     Arguments [
45 ; CHECK:       ArgType: A* (0x1001)
46 ; CHECK:     ]
47 ; CHECK:   }
48 ; CHECK:   Procedure (0x1003) {
49 ; CHECK:     TypeLeafKind: LF_PROCEDURE (0x1008)
50 ; CHECK:     ReturnType: int (0x74)
51 ; CHECK:     CallingConvention: NearC (0x0)
52 ; CHECK:     FunctionOptions [ (0x0)
53 ; CHECK:     ]
54 ; CHECK:     NumParameters: 1
55 ; CHECK:     ArgListType: (A*) (0x1002)
56 ; CHECK:   }
57 ; CHECK:   Struct (0x1004) {
58 ; CHECK:     TypeLeafKind: LF_STRUCTURE (0x1505)
59 ; CHECK:     MemberCount: 0
60 ; CHECK:     Properties [ (0x280)
61 ; CHECK:       ForwardReference (0x80)
62 ; CHECK:       HasUniqueName (0x200)
63 ; CHECK:     ]
64 ; CHECK:     FieldList: 0x0
65 ; CHECK:     DerivedFrom: 0x0
66 ; CHECK:     VShape: 0x0
67 ; CHECK:     SizeOf: 0
68 ; CHECK:     Name: B
69 ; CHECK:     LinkageName: .?AUB@@
70 ; CHECK:   }
71 ; CHECK:   Pointer (0x1005) {
72 ; CHECK:     TypeLeafKind: LF_POINTER (0x1002)
73 ; CHECK:     PointeeType: B (0x1004)
74 ; CHECK:     PtrType: Near64 (0xC)
75 ; CHECK:     PtrMode: Pointer (0x0)
76 ; CHECK:     IsFlat: 0
77 ; CHECK:     IsConst: 0
78 ; CHECK:     IsVolatile: 0
79 ; CHECK:     IsUnaligned: 0
80 ; CHECK:     SizeOf: 8
81 ; CHECK:   }
82 ; CHECK:   FieldList (0x1006) {
83 ; CHECK:     TypeLeafKind: LF_FIELDLIST (0x1203)
84 ; CHECK:     DataMember {
85 ; CHECK:       AccessSpecifier: Public (0x3)
86 ; CHECK:       Type: B* (0x1005)
87 ; CHECK:       FieldOffset: 0x0
88 ; CHECK:       Name: b
89 ; CHECK:     }
90 ; CHECK:   }
91 ; CHECK:   Struct (0x1007) {
92 ; CHECK:     TypeLeafKind: LF_STRUCTURE (0x1505)
93 ; CHECK:     MemberCount: 1
94 ; CHECK:     Properties [ (0x200)
95 ; CHECK:       HasUniqueName (0x200)
96 ; CHECK:     ]
97 ; CHECK:     FieldList: <field list> (0x1006)
98 ; CHECK:     DerivedFrom: 0x0
99 ; CHECK:     VShape: 0x0
100 ; CHECK:     SizeOf: 8
101 ; CHECK:     Name: A
102 ; CHECK:     LinkageName: .?AUA@@
103 ; CHECK:   }
104 ; CHECK:   StringId (0x1008) {
105 ; CHECK:     TypeLeafKind: LF_STRING_ID (0x1605)
106 ; CHECK:     Id: 0x0
107 ; CHECK:     StringData: D:\src\llvm\build\t.cpp
108 ; CHECK:   }
109 ; CHECK:   UdtSourceLine (0x1009) {
110 ; CHECK:     TypeLeafKind: LF_UDT_SRC_LINE (0x1606)
111 ; CHECK:     UDT: A (0x1007)
112 ; CHECK:     SourceFile: D:\src\llvm\build\t.cpp (0x1008)
113 ; CHECK:     LineNumber: 2
114 ; CHECK:   }
115 ; CHECK:   FieldList (0x100A) {
116 ; CHECK:     TypeLeafKind: LF_FIELDLIST (0x1203)
117 ; CHECK:     DataMember {
118 ; CHECK:       AccessSpecifier: Public (0x3)
119 ; CHECK:       Type: int (0x74)
120 ; CHECK:       FieldOffset: 0x0
121 ; CHECK:       Name: b
122 ; CHECK:     }
123 ; CHECK:   }
124 ; CHECK:   Struct (0x100B) {
125 ; CHECK:     TypeLeafKind: LF_STRUCTURE (0x1505)
126 ; CHECK:     MemberCount: 1
127 ; CHECK:     Properties [ (0x200)
128 ; CHECK:       HasUniqueName (0x200)
129 ; CHECK:     ]
130 ; CHECK:     FieldList: <field list> (0x100A)
131 ; CHECK:     DerivedFrom: 0x0
132 ; CHECK:     VShape: 0x0
133 ; CHECK:     SizeOf: 4
134 ; CHECK:     Name: B
135 ; CHECK:     LinkageName: .?AUB@@
136 ; CHECK:   }
137 ; CHECK:   UdtSourceLine (0x100C) {
138 ; CHECK:     TypeLeafKind: LF_UDT_SRC_LINE (0x1606)
139 ; CHECK:     UDT: B (0x100B)
140 ; CHECK:     SourceFile: D:\src\llvm\build\t.cpp (0x1008)
141 ; CHECK:     LineNumber: 1
142 ; CHECK:   }
143 ; CHECK:   FuncId (0x100D) {
144 ; CHECK:     TypeLeafKind: LF_FUNC_ID (0x1601)
145 ; CHECK:     ParentScope: 0x0
146 ; CHECK:     FunctionType: int (A*) (0x1003)
147 ; CHECK:     Name: f
148 ; CHECK:   }
149 ; CHECK: ]
151 ; ModuleID = 't.cpp'
152 source_filename = "t.cpp"
153 target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
154 target triple = "x86_64-pc-windows-msvc19.0.23918"
156 %struct.A = type { %struct.B* }
157 %struct.B = type { i32 }
159 ; Function Attrs: nounwind uwtable
160 define i32 @"\01?f@@YAHPEAUA@@@Z"(%struct.A* %p) #0 !dbg !7 {
161 entry:
162   %p.addr = alloca %struct.A*, align 8
163   store %struct.A* %p, %struct.A** %p.addr, align 8
164   call void @llvm.dbg.declare(metadata %struct.A** %p.addr, metadata !19, metadata !20), !dbg !21
165   %0 = load %struct.A*, %struct.A** %p.addr, align 8, !dbg !22
166   %b = getelementptr inbounds %struct.A, %struct.A* %0, i32 0, i32 0, !dbg !23
167   %1 = load %struct.B*, %struct.B** %b, align 8, !dbg !23
168   %b1 = getelementptr inbounds %struct.B, %struct.B* %1, i32 0, i32 0, !dbg !24
169   %2 = load i32, i32* %b1, align 4, !dbg !24
170   ret i32 %2, !dbg !25
173 ; Function Attrs: nounwind readnone
174 declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
176 attributes #0 = { nounwind uwtable "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" }
177 attributes #1 = { nounwind readnone }
179 !llvm.dbg.cu = !{!0}
180 !llvm.module.flags = !{!3, !4, !5}
181 !llvm.ident = !{!6}
183 !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "clang version 3.9.0 ", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
184 !1 = !DIFile(filename: "t.cpp", directory: "D:\5Csrc\5Cllvm\5Cbuild")
185 !2 = !{}
186 !3 = !{i32 2, !"CodeView", i32 1}
187 !4 = !{i32 2, !"Debug Info Version", i32 3}
188 !5 = !{i32 1, !"PIC Level", i32 2}
189 !6 = !{!"clang version 3.9.0 "}
190 !7 = distinct !DISubprogram(name: "f", linkageName: "\01?f@@YAHPEAUA@@@Z", scope: !1, file: !1, line: 3, type: !8, isLocal: false, isDefinition: true, scopeLine: 3, flags: DIFlagPrototyped, isOptimized: false, unit: !0, retainedNodes: !2)
191 !8 = !DISubroutineType(types: !9)
192 !9 = !{!10, !11}
193 !10 = !DIBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
194 !11 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !12, size: 64, align: 64)
195 !12 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "A", file: !1, line: 2, size: 64, align: 64, elements: !13, identifier: ".?AUA@@")
196 !13 = !{!14}
197 !14 = !DIDerivedType(tag: DW_TAG_member, name: "b", scope: !12, file: !1, line: 2, baseType: !15, size: 64, align: 64)
198 !15 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !16, size: 64, align: 64)
199 !16 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "B", file: !1, line: 1, size: 32, align: 32, elements: !17, identifier: ".?AUB@@")
200 !17 = !{!18}
201 !18 = !DIDerivedType(tag: DW_TAG_member, name: "b", scope: !16, file: !1, line: 1, baseType: !10, size: 32, align: 32)
202 !19 = !DILocalVariable(name: "p", arg: 1, scope: !7, file: !1, line: 3, type: !11)
203 !20 = !DIExpression()
204 !21 = !DILocation(line: 3, column: 10, scope: !7)
205 !22 = !DILocation(line: 3, column: 22, scope: !7)
206 !23 = !DILocation(line: 3, column: 25, scope: !7)
207 !24 = !DILocation(line: 3, column: 28, scope: !7)
208 !25 = !DILocation(line: 3, column: 15, scope: !7)