mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
f2f667dd6a
Summary: This updates the Inliner to only add a single Optimization Remark when Inlining, rather than an Analysis Remark and an Optimization Remark. Fixes https://bugs.llvm.org/show_bug.cgi?id=33786 Reviewers: anemet, davidxl, chandlerc Reviewed By: anemet Subscribers: haicheng, fhahn, mehdi_amini, dblaikie, llvm-commits, eraman Differential Revision: https://reviews.llvm.org/D36054 llvm-svn: 311349
43 lines
1.2 KiB
LLVM
43 lines
1.2 KiB
LLVM
; Check that the hotness attribute is included in the optimization record file
|
|
; with -lto-pass-remarks-with-hotness.
|
|
|
|
; RUN: llvm-as < %s >%t.bc
|
|
; RUN: rm -f %t.yaml
|
|
; RUN: llvm-lto -lto-pass-remarks-output=%t.yaml \
|
|
; RUN: -lto-pass-remarks-with-hotness \
|
|
; RUN: -exported-symbol _main -o %t.o %t.bc
|
|
; RUN: cat %t.yaml | FileCheck -check-prefix=YAML %s
|
|
|
|
; YAML: --- !Passed
|
|
; YAML-NEXT: Pass: inline
|
|
; YAML-NEXT: Name: Inlined
|
|
; YAML-NEXT: Function: main
|
|
; YAML-NEXT: Hotness: 300
|
|
; YAML-NEXT: Args:
|
|
; YAML-NEXT: - Callee: foo
|
|
; YAML-NEXT: - String: ' inlined into '
|
|
; YAML-NEXT: - Caller: main
|
|
; YAML-NEXT: - String: ' with cost='
|
|
; YAML-NEXT: - Cost: '-15000'
|
|
; YAML-NEXT: - String: ' (threshold='
|
|
; YAML-NEXT: - Threshold: '337'
|
|
; YAML-NEXT: - String: ')'
|
|
; YAML-NEXT: ...
|
|
|
|
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-apple-darwin"
|
|
|
|
declare i32 @bar()
|
|
|
|
define i32 @foo() {
|
|
%a = call i32 @bar()
|
|
ret i32 %a
|
|
}
|
|
|
|
define i32 @main() !prof !0 {
|
|
%i = call i32 @foo()
|
|
ret i32 %i
|
|
}
|
|
|
|
!0 = !{!"function_entry_count", i64 300}
|