diff options
author | Dehao Chen <dehao@google.com> | 2016-09-18 23:11:37 +0000 |
---|---|---|
committer | Dehao Chen <dehao@google.com> | 2016-09-18 23:11:37 +0000 |
commit | 41cde0b986a5296cb8e3b575e678ca0db55fa1ab (patch) | |
tree | f16aeaf63958877a5591efb327a187a63e0b4239 /llvm/test/Transforms/SampleProfile/early-inline.ll | |
parent | e111710242ba612964db78627170c63b2cd01a30 (diff) | |
download | bcm5719-llvm-41cde0b986a5296cb8e3b575e678ca0db55fa1ab.tar.gz bcm5719-llvm-41cde0b986a5296cb8e3b575e678ca0db55fa1ab.zip |
Handle Invoke during sample profiler annotation: make it inlinable.
Summary: Previously we reline on inst-combine to remove inlinable invoke instructions. This causes trouble because a few extra optimizations are schedule early that could introduce too much CFG change (e.g. simplifycfg removes too much control flow). This patch handles invoke instruction in-place during sample profile annotation, so that we do not rely on instcombine to remove those invoke instructions.
Reviewers: davidxl, dnovillo
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D24409
llvm-svn: 281870
Diffstat (limited to 'llvm/test/Transforms/SampleProfile/early-inline.ll')
-rw-r--r-- | llvm/test/Transforms/SampleProfile/early-inline.ll | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/llvm/test/Transforms/SampleProfile/early-inline.ll b/llvm/test/Transforms/SampleProfile/early-inline.ll new file mode 100644 index 00000000000..1ec16119e52 --- /dev/null +++ b/llvm/test/Transforms/SampleProfile/early-inline.ll @@ -0,0 +1,47 @@ +; RUN: opt < %s -instcombine -sample-profile -sample-profile-file=%S/Inputs/einline.prof | FileCheck %s + +; Checks if both call and invoke can be inlined early if their inlined +; instances are hot in profile. + +target triple = "x86_64-unknown-linux-gnu" + +@_ZTIi = external constant i8* + +; Function Attrs: uwtable +define void @_Z3foov() #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) !dbg !6 { + %1 = alloca i8* + %2 = alloca i32 + %3 = alloca i32, align 4 +; CHECK-NOT: call + call void @_ZL3barv(), !dbg !9 +; CHECK-NOT: invoke + invoke void @_ZL3barv() + to label %4 unwind label %5, !dbg !10 + +; <label>:4: + ret void + +; <label>:5: + %6 = landingpad { i8*, i32 } + catch i8* bitcast (i8** @_ZTIi to i8*) + ret void +} + +; Function Attrs: nounwind uwtable +define internal void @_ZL3barv() #1 { + ret void +} + +declare i32 @__gxx_personality_v0(...) + +!llvm.dbg.cu = !{!0} +!llvm.module.flags = !{!3, !4} + +!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1) +!1 = !DIFile(filename: "a", directory: "b/") +!3 = !{i32 2, !"Dwarf Version", i32 4} +!4 = !{i32 2, !"Debug Info Version", i32 3} +!6 = distinct !DISubprogram(linkageName: "_Z3foov", scope: !1, line: 5, scopeLine: 5, unit: !0) +!9 = !DILocation(line: 6, column: 3, scope: !6) +!10 = !DILocation(line: 8, column: 5, scope: !11) +!11 = distinct !DILexicalBlock(scope: !6, file: !1, line: 7, column: 7) |