blob: dc3e77203e0c82debf85459c4b55906f4f0f4827 [file] [log] [blame]
Florian Hahnc5bebff2017-12-09 14:25:33 +00001; RUN: opt < %s -S -partial-inliner -skip-partial-inlining-cost-analysis=true | FileCheck %s
2
3; CHECK-LABEL: @callee
4; CHECK: %mul = mul nsw i32 %v, 10, !dbg ![[DBG1:[0-9]+]]
5define i32 @callee(i32 %v, ...) !dbg !16 {
6entry:
7 %cmp = icmp sgt i32 %v, 2000, !dbg !17
8 br i1 %cmp, label %if.then, label %if.end, !dbg !19
9
10if.then: ; preds = %entry
11 %mul = mul nsw i32 %v, 10, !dbg !20
12 br label %if.end, !dbg !21
13
14if.end: ; preds = %if.then, %entry
15 %v2 = phi i32 [ %v, %entry ], [ %mul, %if.then ]
16 %add = add nsw i32 %v2, 200, !dbg !22
17 ret i32 %add, !dbg !23
18}
19
20; CHECK-LABEL: @caller
21; CHECK: codeRepl.i:
22; CHECK-NEXT: call void (i32, i32*, ...) @callee.1_if.then(i32 %v, i32* %mul.loc.i, i32 99), !dbg ![[DBG2:[0-9]+]]
23define i32 @caller(i32 %v) !dbg !8 {
24entry:
25 %call = call i32 (i32, ...) @callee(i32 %v, i32 99), !dbg !14
26 ret i32 %call, !dbg !15
27}
28
29; CHECK-LABEL: define internal void @callee.1_if.then
30; CHECK: br label %if.then, !dbg ![[DBG3:[0-9]+]]
31
32; CHECK: ![[DBG1]] = !DILocation(line: 10, column: 7,
33; CHECK: ![[DBG2]] = !DILocation(line: 10, column: 7,
34; CHECK: ![[DBG3]] = !DILocation(line: 10, column: 7,
35
36
37!llvm.dbg.cu = !{!0}
38!llvm.module.flags = !{!3, !4, !5, !6}
39!llvm.ident = !{!7}
40
41!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 6.0.0 (trunk 177881)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
42!1 = !DIFile(filename: "test.c", directory: "/tmp")
43!2 = !{}
44!3 = !{i32 2, !"Dwarf Version", i32 4}
45!4 = !{i32 2, !"Debug Info Version", i32 3}
46!5 = !{i32 1, !"wchar_size", i32 4}
47!6 = !{i32 1, !"min_enum_size", i32 4}
48!7 = !{!"clang version 6.0.0"}
49!8 = distinct !DISubprogram(name: "caller", scope: !1, file: !1, line: 3, type: !9, isLocal: false, isDefinition: true, scopeLine: 3, flags: DIFlagPrototyped, isOptimized: true, unit: !0, variables: !12)
50!9 = !DISubroutineType(types: !10)
51!10 = !{!11, !11}
52!11 = !DIBasicType(name: "int", size: 19, encoding: DW_ATE_signed)
53!12 = !{!13}
54!13 = !DILocalVariable(name: "v", arg: 1, scope: !8, file: !1, line: 3, type: !11)
55!14 = !DILocation(line: 5, column: 10, scope: !8)
56!15 = !DILocation(line: 5, column: 3, scope: !8)
57!16 = distinct !DISubprogram(name: "callee", scope: !1, file: !1, line: 8, type: !9, isLocal: false, isDefinition: true, scopeLine: 8, flags: DIFlagPrototyped, isOptimized: true, unit: !0, variables: !26)
58!26 = !{!27}
59!27 = !DILocalVariable(name: "v", arg: 1, scope: !16, file: !1, line: 8, type: !11)
60!17 = !DILocation(line: 9, column: 9, scope: !18)
61!18 = distinct !DILexicalBlock(scope: !16, file: !1, line: 9, column: 7)
62!19 = !DILocation(line: 9, column: 7, scope: !16)
63!20 = !DILocation(line: 10, column: 7, scope: !18)
64!21 = !DILocation(line: 10, column: 5, scope: !18)
65!22 = !DILocation(line: 11, column: 5, scope: !16)
66!36 = !DILocation(line: 12, column: 10, scope: !16)
67!23 = !DILocation(line: 12, column: 3, scope: !16)