blob: 67dfb358e3cb94aeb9e60226fca5c44d51561f58 [file] [log] [blame]
David Blaikie10743a92014-05-26 06:44:52 +00001; REQUIRES: object-emission
2
3; RUN: %llc_dwarf -O0 -filetype=obj < %s | llvm-dwarfdump -debug-dump=info - | FileCheck %s
4
5; Built from source:
6; $ clang++ a.cpp b.cpp -g -c -emit-llvm
7; $ llvm-link a.bc b.bc -o ab.bc
David Blaikie10743a92014-05-26 06:44:52 +00008; $ cat a.cpp
9; # 1 "func.h"
10; inline int func(int i) {
11; return i * 2;
12; }
13; int (*x)(int) = &func;
14; $ cat b.cpp
15; # 1 "func.h"
16; inline int func(int i) {
17; return i * 2;
18; }
19; int (*y)(int) = &func;
20
21; CHECK: DW_TAG_compile_unit
22; CHECK: DW_TAG_subprogram
23; CHECK-NOT: DW_TAG
24; CHECK: DW_AT_name {{.*}} "func"
25; CHECK: DW_TAG_compile_unit
26; CHECK-NOT: DW_TAG_subprogram
27
28@x = global i32 (i32)* @_Z4funci, align 8
29@y = global i32 (i32)* @_Z4funci, align 8
30
31; Function Attrs: inlinehint nounwind uwtable
Peter Collingbourned4bff302015-11-05 22:03:56 +000032define linkonce_odr i32 @_Z4funci(i32 %i) #0 !dbg !4 {
David Blaikie10743a92014-05-26 06:44:52 +000033 %1 = alloca i32, align 4
34 store i32 %i, i32* %1, align 4
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000035 call void @llvm.dbg.declare(metadata i32* %1, metadata !20, metadata !DIExpression()), !dbg !21
David Blaikiea79ac142015-02-27 21:17:42 +000036 %2 = load i32, i32* %1, align 4, !dbg !22
David Blaikie10743a92014-05-26 06:44:52 +000037 %3 = mul nsw i32 %2, 2, !dbg !22
38 ret i32 %3, !dbg !22
39}
40
41; Function Attrs: nounwind readnone
Adrian Prantl87b7eb92014-10-01 18:55:02 +000042declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
David Blaikie10743a92014-05-26 06:44:52 +000043
44attributes #0 = { inlinehint nounwind uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
45attributes #1 = { nounwind readnone }
46
47!llvm.dbg.cu = !{!0, !13}
48!llvm.module.flags = !{!17, !18}
49!llvm.ident = !{!19, !19}
50
Adrian Prantl75819ae2016-04-15 15:57:41 +000051!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5.0 ", isOptimized: false, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !10, imports: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000052!1 = !DIFile(filename: "a.cpp", directory: "/tmp/dbginfo")
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000053!2 = !{}
Adrian Prantl75819ae2016-04-15 15:57:41 +000054!4 = distinct !DISubprogram(name: "func", linkageName: "_Z4funci", line: 1, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !0, scopeLine: 1, file: !5, scope: !6, type: !7, variables: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000055!5 = !DIFile(filename: "func.h", directory: "/tmp/dbginfo")
56!6 = !DIFile(filename: "func.h", directory: "/tmp/dbginfo")
57!7 = !DISubroutineType(types: !8)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000058!8 = !{!9, !9}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000059!9 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000060!10 = !{!11}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000061!11 = !DIGlobalVariable(name: "x", line: 4, isLocal: false, isDefinition: true, scope: null, file: !6, type: !12, variable: i32 (i32)** @x)
62!12 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, baseType: !7)
Adrian Prantl75819ae2016-04-15 15:57:41 +000063!13 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5.0 ", isOptimized: false, emissionKind: FullDebug, file: !14, enums: !2, retainedTypes: !2, globals: !15, imports: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000064!14 = !DIFile(filename: "b.cpp", directory: "/tmp/dbginfo")
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000065!15 = !{!16}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000066!16 = !DIGlobalVariable(name: "y", line: 4, isLocal: false, isDefinition: true, scope: null, file: !6, type: !12, variable: i32 (i32)** @y)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000067!17 = !{i32 2, !"Dwarf Version", i32 4}
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +000068!18 = !{i32 1, !"Debug Info Version", i32 3}
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000069!19 = !{!"clang version 3.5.0 "}
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +000070!20 = !DILocalVariable(name: "i", line: 1, arg: 1, scope: !4, file: !6, type: !9)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000071!21 = !DILocation(line: 1, scope: !4)
72!22 = !DILocation(line: 2, scope: !4)
Adrian Prantl75819ae2016-04-15 15:57:41 +000073!24 = distinct !DISubprogram(name: "func", linkageName: "_Z4funci", line: 1, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !13, scopeLine: 1, file: !5, scope: !6, type: !7, variables: !2)