diff options
author | Xinliang David Li <davidxl@google.com> | 2017-05-12 23:41:43 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2017-05-12 23:41:43 +0000 |
commit | 66bdfca77a5ecf1abe45b2db20ea2deda610b96b (patch) | |
tree | 25e657160c06410c6facd195c636d48dffda30a5 /llvm/test/Transforms/CodeExtractor/PartialInlineOr.ll | |
parent | 3f6dd7a86c8c30d65b661f6cb90618c78e9c2c38 (diff) | |
download | bcm5719-llvm-66bdfca77a5ecf1abe45b2db20ea2deda610b96b.tar.gz bcm5719-llvm-66bdfca77a5ecf1abe45b2db20ea2deda610b96b.zip |
[PartialInlining] Profile based cost analysis
Implemented frequency based cost/saving analysis
and related options.
The pass is now in a state ready to be turne on
in the pipeline (in follow up).
Differential Revision: http://reviews.llvm.org/D32783
llvm-svn: 302967
Diffstat (limited to 'llvm/test/Transforms/CodeExtractor/PartialInlineOr.ll')
-rw-r--r-- | llvm/test/Transforms/CodeExtractor/PartialInlineOr.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/CodeExtractor/PartialInlineOr.ll b/llvm/test/Transforms/CodeExtractor/PartialInlineOr.ll index 5408b4faaf7..758945c7ade 100644 --- a/llvm/test/Transforms/CodeExtractor/PartialInlineOr.ll +++ b/llvm/test/Transforms/CodeExtractor/PartialInlineOr.ll @@ -1,5 +1,5 @@ -; RUN: opt < %s -partial-inliner -S | FileCheck %s -; RUN: opt < %s -passes=partial-inliner -S | FileCheck %s +; RUN: opt < %s -partial-inliner -skip-partial-inlining-cost-analysis -S | FileCheck %s +; RUN: opt < %s -passes=partial-inliner -skip-partial-inlining-cost-analysis -S | FileCheck %s ; RUN: opt < %s -partial-inliner -max-num-inline-blocks=2 -S | FileCheck --check-prefix=LIMIT %s ; RUN: opt < %s -passes=partial-inliner -max-num-inline-blocks=2 -S | FileCheck --check-prefix=LIMIT %s |