1 ; RUN: llc -mcpu=core2 -mtriple=i686-pc-win32 < %s | FileCheck %s --check-prefix=ASM
2 ; RUN: llc -mcpu=core2 -mtriple=i686-pc-win32 < %s -filetype=obj | llvm-readobj --codeview - | FileCheck %s --check-prefix=OBJ
4 ; This LL file was generated by running 'clang -O1 -g -gcodeview' on the
6 ; 1: extern volatile int x;
7 ; 2: static inline void foo() {
13 ; 8: static inline void bar() {
25 ; ASM: .cv_loc 0 1 13 0 # t.cpp:13:0
26 ; ASM: .cv_loc 0 1 14 5 # t.cpp:14:5
27 ; ASM: addl $6, "?x@@3HC"
28 ; ASM: .cv_inline_site_id 1 within 0 inlined_at 1 15 3
29 ; ASM: .cv_loc 1 1 9 5 # t.cpp:9:5
30 ; ASM: addl $4, "?x@@3HC"
31 ; ASM: .cv_inline_site_id 2 within 1 inlined_at 1 10 3
32 ; ASM: .cv_loc 2 1 4 5 # t.cpp:4:5
33 ; ASM: addl {{.*}}, "?x@@3HC"
34 ; ASM: .cv_loc 2 1 5 5 # t.cpp:5:5
35 ; ASM: addl $2, "?x@@3HC"
36 ; ASM: .cv_loc 2 1 6 5 # t.cpp:6:5
37 ; ASM: addl $3, "?x@@3HC"
38 ; ASM: .cv_loc 1 1 11 5 # t.cpp:11:5
39 ; ASM: addl $5, "?x@@3HC"
40 ; ASM: .cv_loc 0 1 16 5 # t.cpp:16:5
41 ; ASM: addl $7, "?x@@3HC"
42 ; ASM: .cv_loc 0 1 17 1 # t.cpp:17:1
44 ; ASM: .section .debug$S,"dr"
45 ; ASM: .long 246 # Inlinee lines subsection
46 ; ASM: .long [[inline_end:.*]]-[[inline_beg:.*]] #
47 ; ASM: [[inline_beg]]:
49 ; ASM: # Inlined function bar starts at t.cpp:8
50 ; ASM: .long 4098 # Type index of inlined function
51 ; ASM: .cv_filechecksumoffset 1 # Offset into filechecksum table
52 ; ASM: .long 8 # Starting line number
53 ; ASM: # Inlined function foo starts at t.cpp:2
55 ; ASM: .cv_filechecksumoffset 1 # Offset into filechecksum table
57 ; ASM: [[inline_end]]:
59 ; ASM: .long 241 # Symbol subsection for baz
60 ; ASM: .long {{.*}} # Subsection size
65 ; ASM: .cv_inline_linetable 1 1 8 Lfunc_begin0 Lfunc_end0
70 ; ASM: .cv_inline_linetable 2 1 2 Lfunc_begin0 Lfunc_end0
74 ; ASM: .cv_filechecksums
76 ; ASM: .section .debug$T,"dr"
77 ; ASM: .long 4 # Debug section magic
78 ; ASM: # ArgList (0x1000)
79 ; ASM: .short 0x6 # Record length
80 ; ASM: .short 0x1201 # Record kind: LF_ARGLIST
81 ; ASM: .long 0x0 # NumArgs
82 ; ASM: # Procedure (0x1001)
83 ; ASM: .short 0xe # Record length
84 ; ASM: .short 0x1008 # Record kind: LF_PROCEDURE
85 ; ASM: .long 0x3 # ReturnType: void
86 ; ASM: .byte 0x0 # CallingConvention: NearC
87 ; ASM: .byte 0x0 # FunctionOptions
88 ; ASM: .short 0x0 # NumParameters
89 ; ASM: .long 0x1000 # ArgListType: ()
90 ; ASM: # FuncId (0x1002)
91 ; ASM: .short 0xe # Record length
92 ; ASM: .short 0x1601 # Record kind: LF_FUNC_ID
93 ; ASM: .long 0x0 # ParentScope
94 ; ASM: .long 0x1001 # FunctionType: void ()
95 ; ASM: .asciz "bar" # Name
96 ; ASM: # FuncId (0x1003)
97 ; ASM: .short 0xe # Record length
98 ; ASM: .short 0x1601 # Record kind: LF_FUNC_ID
99 ; ASM: .long 0x0 # ParentScope
100 ; ASM: .long 0x1001 # FunctionType: void ()
101 ; ASM: .asciz "foo" # Name
103 ; We should only the LF_FUNC_ID records that we needed to reference.
104 ; OBJ: CodeViewTypes [
105 ; OBJ: Section: .debug$T
106 ; OBJ: ArgList (0x1000) {
107 ; OBJ: TypeLeafKind: LF_ARGLIST (0x1201)
110 ; OBJ: Procedure (0x1001) {
111 ; OBJ: TypeLeafKind: LF_PROCEDURE (0x1008)
112 ; OBJ: ReturnType: void (0x3)
113 ; OBJ: NumParameters: 0
114 ; OBJ: ArgListType: () (0x1000)
116 ; OBJ: FuncId (0x1002) {
117 ; OBJ: TypeLeafKind: LF_FUNC_ID (0x1601)
118 ; OBJ: ParentScope: 0x0
119 ; OBJ: FunctionType: void () (0x1001)
122 ; OBJ: FuncId (0x1003) {
123 ; OBJ: TypeLeafKind: LF_FUNC_ID (0x1601)
124 ; OBJ: ParentScope: 0x0
125 ; OBJ: FunctionType: void () (0x1001)
128 ; OBJ: FuncId (0x1004) {
129 ; OBJ: TypeLeafKind: LF_FUNC_ID (0x1601)
130 ; OBJ: ParentScope: 0x0
131 ; OBJ: FunctionType: void () (0x1001)
134 ; OBJ-NOT: TypeLeafKind: LF_FUNC_ID
138 ; OBJ: SubSectionType: InlineeLines (0xF6)
139 ; OBJ: SubSectionSize: 0x1C
140 ; OBJ: InlineeSourceLine {
141 ; OBJ: Inlinee: bar (0x1002)
142 ; OBJ: FileID: D:\src\llvm\build\t.cpp (0x0)
143 ; OBJ: SourceLineNum: 8
145 ; OBJ: InlineeSourceLine {
146 ; OBJ: Inlinee: foo (0x1003)
147 ; OBJ: FileID: D:\src\llvm\build\t.cpp (0x0)
148 ; OBJ: SourceLineNum: 2
152 ; OBJ: SubSectionType: Symbols (0xF1)
153 ; OBJ: {{.*}}Proc{{.*}}Sym {
154 ; OBJ: PtrParent: 0x0
157 ; OBJ: CodeSize: 0x35
160 ; OBJ: FunctionType: baz (0x1004)
161 ; OBJ: CodeOffset: ?baz@@YAXXZ+0x0
163 ; OBJ: Flags [ (0x80)
164 ; OBJ: HasOptimizedDebugInfo (0x80)
166 ; OBJ: DisplayName: baz
167 ; OBJ: LinkageName: ?baz@@YAXXZ
170 ; OBJ-NEXT: Kind: S_INLINEES (0x1168)
171 ; OBJ-NEXT: Inlinees [
172 ; OBJ-NEXT: FuncID: bar (0x1002)
175 ; OBJ: InlineSiteSym {
176 ; OBJ: PtrParent: 0x0
178 ; OBJ: Inlinee: bar (0x1002)
179 ; OBJ: BinaryAnnotations [
180 ; OBJ-NEXT: ChangeCodeOffsetAndLineOffset: {CodeOffset: 0x8, LineOffset: 1}
181 ; OBJ-NEXT: ChangeCodeOffsetAndLineOffset: {CodeOffset: 0x9, LineOffset: 1}
182 ; OBJ-NEXT: ChangeLineOffset: 1
183 ; OBJ-NEXT: ChangeCodeOffset: 0x14
184 ; OBJ-NEXT: ChangeCodeLength: 0x7
187 ; OBJ: InlineSiteSym {
188 ; OBJ: PtrParent: 0x0
190 ; OBJ: Inlinee: foo (0x1003)
191 ; OBJ: BinaryAnnotations [
192 ; OBJ-NEXT: ChangeLineOffset: 2
193 ; OBJ-NEXT: ChangeCodeOffset: 0x11
194 ; OBJ-NEXT: ChangeCodeOffsetAndLineOffset: {CodeOffset: 0x6, LineOffset: 1}
195 ; OBJ-NEXT: ChangeCodeOffsetAndLineOffset: {CodeOffset: 0x7, LineOffset: 1}
196 ; OBJ-NEXT: ChangeCodeLength: 0x7
199 ; OBJ: InlineSiteEnd {
201 ; OBJ: InlineSiteEnd {
207 target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
208 target triple = "x86_64-pc-windows-msvc18.0.0"
210 @"\01?x@@3HC" = external global i32, align 4
212 ; Function Attrs: norecurse nounwind uwtable
213 define void @"\01?baz@@YAXXZ"() #0 !dbg !4 {
215 %y.i.i = alloca i32, align 4
216 %0 = load volatile i32, ptr @"\01?x@@3HC", align 4, !dbg !12, !tbaa !13
217 %add = add nsw i32 %0, 6, !dbg !12
218 store volatile i32 %add, ptr @"\01?x@@3HC", align 4, !dbg !12, !tbaa !13
219 %1 = load volatile i32, ptr @"\01?x@@3HC", align 4, !dbg !17, !tbaa !13
220 %add.i = add nsw i32 %1, 4, !dbg !17
221 store volatile i32 %add.i, ptr @"\01?x@@3HC", align 4, !dbg !17, !tbaa !13
222 call void @llvm.lifetime.start(i64 4, ptr %y.i.i) #2, !dbg !19
223 store i32 1, ptr %y.i.i, align 4, !dbg !21, !tbaa !13
224 %2 = ptrtoint ptr %y.i.i to i64, !dbg !22
225 %3 = trunc i64 %2 to i32, !dbg !22
226 %4 = load volatile i32, ptr @"\01?x@@3HC", align 4, !dbg !23, !tbaa !13
227 %add.i.i = add nsw i32 %4, %3, !dbg !23
228 store volatile i32 %add.i.i, ptr @"\01?x@@3HC", align 4, !dbg !23, !tbaa !13
229 %5 = load volatile i32, ptr @"\01?x@@3HC", align 4, !dbg !24, !tbaa !13
230 %add1.i.i = add nsw i32 %5, 2, !dbg !24
231 store volatile i32 %add1.i.i, ptr @"\01?x@@3HC", align 4, !dbg !24, !tbaa !13
232 %6 = load volatile i32, ptr @"\01?x@@3HC", align 4, !dbg !25, !tbaa !13
233 %add2.i.i = add nsw i32 %6, 3, !dbg !25
234 store volatile i32 %add2.i.i, ptr @"\01?x@@3HC", align 4, !dbg !25, !tbaa !13
235 call void @llvm.lifetime.end(i64 4, ptr %y.i.i) #2, !dbg !26
236 %7 = load volatile i32, ptr @"\01?x@@3HC", align 4, !dbg !27, !tbaa !13
237 %add1.i = add nsw i32 %7, 5, !dbg !27
238 store volatile i32 %add1.i, ptr @"\01?x@@3HC", align 4, !dbg !27, !tbaa !13
239 %8 = load volatile i32, ptr @"\01?x@@3HC", align 4, !dbg !28, !tbaa !13
240 %add1 = add nsw i32 %8, 7, !dbg !28
241 store volatile i32 %add1, ptr @"\01?x@@3HC", align 4, !dbg !28, !tbaa !13
245 ; Function Attrs: argmemonly nounwind
246 declare void @llvm.lifetime.start(i64, ptr nocapture) #1
248 ; Function Attrs: argmemonly nounwind
249 declare void @llvm.lifetime.end(i64, ptr nocapture) #1
251 attributes #0 = { norecurse nounwind uwtable "disable-tail-calls"="false" "less-precise-fpmad"="false" "frame-pointer"="none" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2" "unsafe-fp-math"="false" "use-soft-float"="false" }
252 attributes #1 = { argmemonly nounwind }
253 attributes #2 = { nounwind }
256 !llvm.module.flags = !{!8, !9, !10}
259 !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "clang version 3.9.0 ", isOptimized: true, runtimeVersion: 0, emissionKind: LineTablesOnly, enums: !2)
260 !1 = !DIFile(filename: "t.cpp", directory: "D:\5Csrc\5Cllvm\5Cbuild")
262 !4 = distinct !DISubprogram(name: "baz", scope: !1, file: !1, line: 13, type: !5, isLocal: false, isDefinition: true, scopeLine: 13, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !2)
263 !5 = !DISubroutineType(types: !2)
264 !6 = distinct !DISubprogram(name: "bar", scope: !1, file: !1, line: 8, type: !5, isLocal: true, isDefinition: true, scopeLine: 8, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !2)
265 !7 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 2, type: !5, isLocal: true, isDefinition: true, scopeLine: 2, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !2)
266 !8 = !{i32 2, !"CodeView", i32 1}
267 !9 = !{i32 2, !"Debug Info Version", i32 3}
268 !10 = !{i32 1, !"PIC Level", i32 2}
269 !11 = !{!"clang version 3.9.0 "}
270 !12 = !DILocation(line: 14, column: 5, scope: !4)
271 !13 = !{!14, !14, i64 0}
272 !14 = !{!"int", !15, i64 0}
273 !15 = !{!"omnipotent char", !16, i64 0}
274 !16 = !{!"Simple C/C++ TBAA"}
275 !17 = !DILocation(line: 9, column: 5, scope: !6, inlinedAt: !18)
276 !18 = distinct !DILocation(line: 15, column: 3, scope: !4)
277 !19 = !DILocation(line: 3, column: 3, scope: !7, inlinedAt: !20)
278 !20 = distinct !DILocation(line: 10, column: 3, scope: !6, inlinedAt: !18)
279 !21 = !DILocation(line: 3, column: 7, scope: !7, inlinedAt: !20)
280 !22 = !DILocation(line: 4, column: 8, scope: !7, inlinedAt: !20)
281 !23 = !DILocation(line: 4, column: 5, scope: !7, inlinedAt: !20)
282 !24 = !DILocation(line: 5, column: 5, scope: !7, inlinedAt: !20)
283 !25 = !DILocation(line: 6, column: 5, scope: !7, inlinedAt: !20)
284 !26 = !DILocation(line: 7, column: 1, scope: !7, inlinedAt: !20)
285 !27 = !DILocation(line: 11, column: 5, scope: !6, inlinedAt: !18)
286 !28 = !DILocation(line: 16, column: 5, scope: !4)
287 !29 = !DILocation(line: 17, column: 1, scope: !4)