mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 22:01:56 +00:00

The current function importer will walk the callgraph, importing transitively any callee that is below the threshold. This can lead to import very deep which is costly in compile time and not necessarily beneficial as most of the inline would happen in imported function and not necessarilly in user code. The actual factor has been carefully chosen by flipping a coin ;) Some tuning need to be done (just at the existing limiting threshold). Reviewers: tejohnson Differential Revision: http://reviews.llvm.org/D17082 From: Mehdi Amini <mehdi.amini@apple.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@260466 91177308-0d34-0410-b5e6-96231b3b80d8
32 lines
1.2 KiB
LLVM
32 lines
1.2 KiB
LLVM
; Do setup work for all below tests: generate bitcode and combined index
|
|
; RUN: llvm-as -function-summary %s -o %t.bc
|
|
; RUN: llvm-as -function-summary %p/Inputs/adjustable_threshold.ll -o %t2.bc
|
|
; RUN: llvm-lto -thinlto -o %t3 %t.bc %t2.bc
|
|
|
|
; Test import with default progressive instruction factor
|
|
; RUN: opt -function-import -summary-file %t3.thinlto.bc %s -import-instr-limit=10 -S | FileCheck %s --check-prefix=CHECK --check-prefix=INSTLIM-DEFAULT
|
|
; INSTLIM-DEFAULT: call void @staticfunc2.llvm.2()
|
|
|
|
; Test import with a reduced progressive instruction factor
|
|
; RUN: opt -function-import -summary-file %t3.thinlto.bc %s -import-instr-limit=10 -import-instr-evolution-factor=0.5 -S | FileCheck %s --check-prefix=CHECK --check-prefix=INSTLIM-PROGRESSIVE
|
|
; INSTLIM-PROGRESSIVE-NOT: call void @staticfunc
|
|
|
|
|
|
|
|
declare void @globalfunc1()
|
|
declare void @globalfunc2()
|
|
|
|
define void @entry() {
|
|
entry:
|
|
; Call site are processed in reversed order!
|
|
|
|
; On the direct call, we reconsider @largefunction with a higher threshold and
|
|
; import it
|
|
call void @globalfunc2()
|
|
; When importing globalfunc1, the threshold was limited and @largefunction was
|
|
; not imported.
|
|
call void @globalfunc1()
|
|
ret void
|
|
}
|
|
|