diff options
author | Davide Italiano <davide@freebsd.org> | 2017-02-12 05:05:35 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2017-02-12 05:05:35 +0000 |
commit | 6cb6f997d82add4e9619f3e9de27a563f30ccca2 (patch) | |
tree | dee6b332a1f64144d570d3241cfd38d938f019cb | |
parent | 1e30b3d7bee19e5c949ec6113f46d862808c4b2d (diff) | |
download | bcm5719-llvm-6cb6f997d82add4e9619f3e9de27a563f30ccca2.tar.gz bcm5719-llvm-6cb6f997d82add4e9619f3e9de27a563f30ccca2.zip |
[lib/LTO] Add support for hotness optremarks in the new API.
llvm-svn: 294885
-rw-r--r-- | llvm/test/LTO/Resolution/X86/diagnostic-handler-remarks-with-hotness.ll | 37 | ||||
-rw-r--r-- | llvm/tools/llvm-lto2/llvm-lto2.cpp | 6 |
2 files changed, 43 insertions, 0 deletions
diff --git a/llvm/test/LTO/Resolution/X86/diagnostic-handler-remarks-with-hotness.ll b/llvm/test/LTO/Resolution/X86/diagnostic-handler-remarks-with-hotness.ll new file mode 100644 index 00000000000..4c0d6161094 --- /dev/null +++ b/llvm/test/LTO/Resolution/X86/diagnostic-handler-remarks-with-hotness.ll @@ -0,0 +1,37 @@ +; RUN: llvm-as < %s >%t.bc + +; RUN: rm -f %t.yaml +; RUN: llvm-lto2 -pass-remarks-output=%t.yaml \ +; RUN: -pass-remarks-with-hotness \ +; RUN: -r %t.bc,tinkywinky,p \ +; RUN: -r %t.bc,patatino,px \ +; RUN: -r %t.bc,main,px -o %t.o %t.bc +; RUN: cat %t.yaml | FileCheck %s -check-prefix=YAML + +; YAML: --- !Passed +; YAML-NEXT: Pass: inline +; YAML-NEXT: Name: Inlined +; YAML-NEXT: Function: main +; YAML-NEXT: Hotness: 300 +; YAML-NEXT: Args: +; YAML-NEXT: - Callee: tinkywinky +; YAML-NEXT: - String: ' inlined into ' +; YAML-NEXT: - Caller: main +; YAML-NEXT: ... + +target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-scei-ps4" + +declare i32 @patatino() + +define i32 @tinkywinky() { + %a = call i32 @patatino() + ret i32 %a +} + +define i32 @main() !prof !0 { + %i = call i32 @tinkywinky() + ret i32 %i +} + +!0 = !{!"function_entry_count", i64 300} diff --git a/llvm/tools/llvm-lto2/llvm-lto2.cpp b/llvm/tools/llvm-lto2/llvm-lto2.cpp index bff50aa2dc6..ebe5def099d 100644 --- a/llvm/tools/llvm-lto2/llvm-lto2.cpp +++ b/llvm/tools/llvm-lto2/llvm-lto2.cpp @@ -94,6 +94,11 @@ static cl::opt<std::string> OptRemarksOutput("pass-remarks-output", cl::desc("YAML output file for optimization remarks")); +static cl::opt<bool> OptRemarksWithsHotness( + "pass-remarks-with-hotness", + cl::desc("Whether to include hotness informations in the remarks.\n" + "Has effect only if -pass-remarks-output is specified.")); + static void check(Error E, std::string Msg) { if (!E) return; @@ -182,6 +187,7 @@ int main(int argc, char **argv) { // Optimization remarks. Conf.RemarksFilename = OptRemarksOutput; + Conf.RemarksWithHotness = OptRemarksWithsHotness; // Run a custom pipeline, if asked for. Conf.OptPipeline = OptPipeline; |