Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Linker / thinlto_funcimport_debug.ll
blob5a69fc6492b2445aa0aa07eb79612180b5750d62
1 ; Do setup work for all below tests: generate bitcode and combined index
2 ; RUN: opt -module-summary %s -o %t.bc
3 ; RUN: opt -module-summary %p/Inputs/thinlto_funcimport_debug.ll -o %t2.bc
4 ; RUN: llvm-lto -thinlto -o %t3 %t.bc %t2.bc
6 ; If we import func1 and not func2 we should only link DISubprogram for func1
7 ; RUN: llvm-link %t2.bc -summary-index=%t3.thinlto.bc -import=func1:%t.bc -S | FileCheck %s
9 ;; Repeat runlines using "new" debuginfo iterators mode.
10 ; RUN: llvm-lto -thinlto -o %t3 %t.bc %t2.bc --try-experimental-debuginfo-iterators
11 ; RUN: llvm-link %t2.bc -summary-index=%t3.thinlto.bc -import=func1:%t.bc -S --try-experimental-debuginfo-iterators | FileCheck %s
13 ; CHECK: declare i32 @func2
14 ; CHECK: define available_externally i32 @func1
16 ; Ensure that each subprogram points to the correct CU.
17 ; CHECK: ![[CU1:[0-9]+]] = distinct !DICompileUnit(
18 ; CHECK: ![[CU2:[0-9]+]] = distinct !DICompileUnit(
20 ; CHECK: distinct !DISubprogram(name: "main", {{.*}}, unit: ![[CU1]]
21 ; CHECK: distinct !DISubprogram(name: "func1", {{.*}}, unit: ![[CU2]]
22 ; CHECK-NOT: distinct !DISubprogram(name: "func2"
23 ; CHECK: distinct !DISubprogram(name: "func3", {{.*}}, unit: ![[CU2]]
24 ; CHECK: distinct !DISubprogram(name: "func4", {{.*}}, unit: ![[CU2]]
27 ; ModuleID = 'dbg.o'
28 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
29 target triple = "x86_64-unknown-linux-gnu"
31 ; Function Attrs: nounwind readnone uwtable
32 define i32 @func1(i32 %n) #0 !dbg !4 {
33 entry:
34   tail call void @llvm.dbg.value(metadata i32 %n, i64 0, metadata !9, metadata !17), !dbg !18
35   tail call void @llvm.dbg.value(metadata i32 5, i64 0, metadata !10, metadata !17), !dbg !19
36   %cmp = icmp sgt i32 %n, 10, !dbg !20
37   %. = select i1 %cmp, i32 10, i32 5, !dbg !22
38   tail call void @llvm.dbg.value(metadata i32 %., i64 0, metadata !10, metadata !17), !dbg !19
39   ret i32 %., !dbg !23
42 ; Function Attrs: nounwind readnone uwtable
43 define i32 @func2(i32 %n) #0 !dbg !11 {
44 entry:
45   tail call void @llvm.dbg.value(metadata i32 %n, i64 0, metadata !13, metadata !17), !dbg !24
46   ret i32 %n, !dbg !25
49 ; Function Attrs: nounwind readnone
50 declare void @llvm.dbg.value(metadata, i64, metadata, metadata) #1
52 attributes #0 = { nounwind readnone 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" }
53 attributes #1 = { nounwind readnone }
55 !llvm.dbg.cu = !{!0}
56 !llvm.module.flags = !{!14, !15}
57 !llvm.ident = !{!16}
59 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 3.8.0 (trunk 251407) (llvm/trunk 251401)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
60 !1 = !DIFile(filename: "dbg.c", directory: ".")
61 !2 = !{}
62 !4 = distinct !DISubprogram(name: "func1", scope: !1, file: !1, line: 1, type: !5, isLocal: false, isDefinition: true, scopeLine: 1, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !8)
63 !5 = !DISubroutineType(types: !6)
64 !6 = !{!7, !7}
65 !7 = !DIBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
66 !8 = !{!9, !10}
67 !9 = !DILocalVariable(name: "n", arg: 1, scope: !4, file: !1, line: 1, type: !7)
68 !10 = !DILocalVariable(name: "x", scope: !4, file: !1, line: 2, type: !7)
69 !11 = distinct !DISubprogram(name: "func2", scope: !1, file: !1, line: 8, type: !5, isLocal: false, isDefinition: true, scopeLine: 8, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !12)
70 !12 = !{!13}
71 !13 = !DILocalVariable(name: "n", arg: 1, scope: !11, file: !1, line: 8, type: !7)
72 !14 = !{i32 2, !"Dwarf Version", i32 4}
73 !15 = !{i32 2, !"Debug Info Version", i32 3}
74 !16 = !{!"clang version 3.8.0 (trunk 251407) (llvm/trunk 251401)"}
75 !17 = !DIExpression()
76 !18 = !DILocation(line: 1, column: 15, scope: !4)
77 !19 = !DILocation(line: 2, column: 7, scope: !4)
78 !20 = !DILocation(line: 3, column: 9, scope: !21, inlinedAt: !26)
79 !21 = distinct !DILexicalBlock(scope: !27, file: !1, line: 3, column: 7)
80 !22 = !DILocation(line: 3, column: 7, scope: !4)
81 !23 = !DILocation(line: 5, column: 3, scope: !4)
82 !24 = !DILocation(line: 8, column: 15, scope: !11)
83 !25 = !DILocation(line: 9, column: 3, scope: !11)
84 !26 = !DILocation(line: 9, column: 3, scope: !4)
85 !27 = distinct !DISubprogram(name: "func3", scope: !1, file: !1, line: 8, type: !5, isLocal: false, isDefinition: true, scopeLine: 8, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !28)
86 !28 = !{!29}
87 !29 = !DILocalVariable(name: "n", arg: 1, scope: !30, file: !1, line: 8, type: !7)
88 !30 = distinct !DISubprogram(name: "func4", scope: !1, file: !1, line: 8, type: !5, isLocal: false, isDefinition: true, scopeLine: 8, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !31)
89 !31 = !{!32}
90 !32 = !DILocalVariable(name: "n", arg: 1, scope: !30, file: !1, line: 8, type: !7)