[InstCombine] Signed saturation tests. NFC
[llvm-complete.git] / test / Transforms / GCOVProfiling / return-block.ll
blob74812d14c643385c7edfa80ef74af83b1ccf561a
1 ; Inject metadata to set the .gcno file location
2 ; RUN: rm -rf %t && mkdir -p %t
3 ; RUN: echo '!19 = !{!"%/t/return-block.ll", !0}' > %t/1
4 ; RUN: cat %s %t/1 > %t/2
6 ; By default, the return block is last.
7 ; RUN: opt -insert-gcov-profiling -disable-output %t/2
8 ; RUN: llvm-cov gcov -n -dump %t/return-block.gcno 2>&1 | FileCheck -check-prefix=CHECK -check-prefix=RETURN-LAST %s
10 ; But we can optionally emit it second, to match newer gcc versions.
11 ; RUN: opt -insert-gcov-profiling -gcov-exit-block-before-body -disable-output %t/2
12 ; RUN: llvm-cov gcov -n -dump %t/return-block.gcno 2>&1 | FileCheck -check-prefix=CHECK -check-prefix=RETURN-SECOND %s
13 ; RUN: rm  %t/return-block.gcno
15 ; By default, the return block is last.
16 ; RUN: opt -passes=insert-gcov-profiling -disable-output %t/2
17 ; RUN: llvm-cov gcov -n -dump %t/return-block.gcno 2>&1 | FileCheck -check-prefix=CHECK -check-prefix=RETURN-LAST %s
19 ; But we can optionally emit it second, to match newer gcc versions.
20 ; RUN: opt -passes=insert-gcov-profiling -gcov-exit-block-before-body -disable-output %t/2
21 ; RUN: llvm-cov gcov -n -dump %t/return-block.gcno 2>&1 | FileCheck -check-prefix=CHECK -check-prefix=RETURN-SECOND %s
23 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
24 target triple = "x86_64-unknown-linux-gnu"
26 @A = common global i32 0, align 4, !dbg !9
28 ; Function Attrs: nounwind uwtable
29 define void @test() #0 !dbg !4 {
30 entry:
31   tail call void (...) @f() #2, !dbg !14
32   %0 = load i32, i32* @A, align 4, !dbg !15
33   %tobool = icmp eq i32 %0, 0, !dbg !15
34   br i1 %tobool, label %if.end, label %if.then, !dbg !15
36 if.then:                                          ; preds = %entry
37   tail call void (...) @g() #2, !dbg !16
38   br label %if.end, !dbg !16
40 if.end:                                           ; preds = %entry, %if.then
41   ret void, !dbg !18
44 declare void @f(...) #1
46 declare void @g(...) #1
48 attributes #0 = { nounwind uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
49 attributes #1 = { "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
50 attributes #2 = { nounwind }
52 !llvm.gcov = !{!19}
53 !llvm.dbg.cu = !{!0}
54 !llvm.module.flags = !{!11, !12}
55 !llvm.ident = !{!13}
57 !0 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang version 3.6.0 (trunk 223182)", isOptimized: true, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !8, imports: !2)
58 !1 = !DIFile(filename: ".../llvm/test/Transforms/GCOVProfiling/return-block.ll", directory: "")
59 !2 = !{}
60 !4 = distinct !DISubprogram(name: "test", line: 5, isLocal: false, isDefinition: true, isOptimized: true, unit: !0, scopeLine: 5, file: !1, scope: !5, type: !6, retainedNodes: !2)
61 !5 = !DIFile(filename: ".../llvm/test/Transforms/GCOVProfiling/return-block.ll", directory: "")
62 !6 = !DISubroutineType(types: !7)
63 !7 = !{null}
64 !8 = !{!9}
65 !9 = !DIGlobalVariableExpression(var: !DIGlobalVariable(name: "A", line: 3, isLocal: false, isDefinition: true, scope: null, file: !5, type: !10), expr: !DIExpression())
66 !10 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
67 !11 = !{i32 2, !"Dwarf Version", i32 4}
68 !12 = !{i32 2, !"Debug Info Version", i32 3}
69 !13 = !{!"clang version 3.6.0 (trunk 223182)"}
70 !14 = !DILocation(line: 6, column: 3, scope: !4)
71 !15 = !DILocation(line: 7, column: 7, scope: !4)
72 !16 = !DILocation(line: 8, column: 5, scope: !17)
73 !17 = distinct !DILexicalBlock(line: 7, column: 7, file: !1, scope: !4)
74 !18 = !DILocation(line: 9, column: 1, scope: !4)
76 ; There should be no destination edges for the exit block.
77 ; CHECK: Block : 1 Counter : 0
78 ; RETURN-LAST:       Destination Edges
79 ; RETURN-SECOND-NOT: Destination Edges
80 ; CHECK: Block : 2 Counter : 0
81 ; CHECK: Block : 4 Counter : 0
82 ; RETURN-LAST-NOT: Destination Edges
83 ; RETURN-SECOND:   Destination Edges
84 ; CHECK-NOT: Block :