diff options
author | Stefan Pintilie <stefanp@ca.ibm.com> | 2018-07-04 18:54:25 +0000 |
---|---|---|
committer | Stefan Pintilie <stefanp@ca.ibm.com> | 2018-07-04 18:54:25 +0000 |
commit | cb4f0c5c07af1ce096c1609bd6576a0aee57700a (patch) | |
tree | 5123514d4ab99e117e3c0103b558b31551332f7f /llvm/test/CodeGen/PowerPC/Frames-large.ll | |
parent | bea19a9493b7286a0c79a8be2b788bed8cb4cfa9 (diff) | |
download | bcm5719-llvm-cb4f0c5c07af1ce096c1609bd6576a0aee57700a.tar.gz bcm5719-llvm-cb4f0c5c07af1ce096c1609bd6576a0aee57700a.zip |
[PowerPC] Replace the Post RA List Scheduler with the Machine Scheduler
We want to run the Machine Scheduler instead of the List Scheduler after RA.
Checked with a performance run on a Power 9 machine with SPEC 2006 and while
some benchmarks improved and others degraded the geomean was slightly improved
with the Machine Scheduler.
Differential Revision: https://reviews.llvm.org/D45265
llvm-svn: 336295
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/Frames-large.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/Frames-large.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/PowerPC/Frames-large.ll b/llvm/test/CodeGen/PowerPC/Frames-large.ll index 7ffc7afb149..182d607c852 100644 --- a/llvm/test/CodeGen/PowerPC/Frames-large.ll +++ b/llvm/test/CodeGen/PowerPC/Frames-large.ll @@ -20,8 +20,8 @@ define i32* @f1() nounwind { ; PPC32-FP: _f1: ; PPC32-FP: lis r0, -1 -; PPC32-FP: stw r31, -4(r1) ; PPC32-FP: ori r0, r0, 32736 +; PPC32-FP: stw r31, -4(r1) ; PPC32-FP: stwux r1, r1, r0 ; PPC32-FP: mr r31, r1 ; PPC32-FP: addi r3, r31, 32 @@ -41,8 +41,8 @@ define i32* @f1() nounwind { ; PPC64-FP: _f1: ; PPC64-FP: lis r0, -1 -; PPC64-FP: std r31, -8(r1) ; PPC64-FP: ori r0, r0, 32704 +; PPC64-FP: std r31, -8(r1) ; PPC64-FP: stdux r1, r1, r0 ; PPC64-FP: mr r31, r1 ; PPC64-FP: addi r3, r31, 60 |