From cb4f0c5c07af1ce096c1609bd6576a0aee57700a Mon Sep 17 00:00:00 2001 From: Stefan Pintilie Date: Wed, 4 Jul 2018 18:54:25 +0000 Subject: [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 --- llvm/test/CodeGen/PowerPC/Frames-large.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/test/CodeGen/PowerPC/Frames-large.ll') 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 -- cgit v1.2.3