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/setcc-logic.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/setcc-logic.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/setcc-logic.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/PowerPC/setcc-logic.ll b/llvm/test/CodeGen/PowerPC/setcc-logic.ll index 3b9b5228fa4..4abfa36535c 100644 --- a/llvm/test/CodeGen/PowerPC/setcc-logic.ll +++ b/llvm/test/CodeGen/PowerPC/setcc-logic.ll @@ -86,7 +86,7 @@ define zeroext i1 @any_bits_clear(i32 %P, i32 %Q) { ; CHECK-NEXT: li 5, -1 ; CHECK-NEXT: and 3, 3, 4 ; CHECK-NEXT: xor 3, 3, 5 -; CHECK-NEXT: cntlzw 3, 3 +; CHECK-NEXT: cntlzw 3, 3 ; CHECK-NEXT: srwi 3, 3, 5 ; CHECK-NEXT: xori 3, 3, 1 ; CHECK-NEXT: blr @@ -469,8 +469,8 @@ define <4 x i1> @and_eq_vec(<4 x i32> %a, <4 x i32> %b, <4 x i32> %c, <4 x i32> ; CHECK-LABEL: and_eq_vec: ; CHECK: # %bb.0: ; CHECK-NEXT: vcmpequw 2, 2, 3 -; CHECK-NEXT: vcmpequw 19, 4, 5 -; CHECK-NEXT: xxland 34, 34, 51 +; CHECK-NEXT: vcmpequw 3, 4, 5 +; CHECK-NEXT: xxland 34, 34, 35 ; CHECK-NEXT: blr %cmp1 = icmp eq <4 x i32> %a, %b %cmp2 = icmp eq <4 x i32> %c, %d |