summaryrefslogtreecommitdiff
path: root/powerpc/SelectOp.vp
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2012-01-21 16:11:50 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2012-01-21 16:11:50 +0000
commitd2b9858f3f5e013bbd9d2221c8d1a3d2960665be (patch)
tree82d17ae170e7595045604663b152a04afe3e9c4c /powerpc/SelectOp.vp
parent88e55a6729b58cfc2ce32ed526dfd3c9cdf4feef (diff)
powerpc/SelectOp: optimize the pattern ((x >>s N) & N1) & N2 common in a certain customer's code
backend/Coloringaux: avoid spilling the dummy result registers for built-ins that have no result. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1799 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'powerpc/SelectOp.vp')
-rw-r--r--powerpc/SelectOp.vp7
1 files changed, 7 insertions, 0 deletions
diff --git a/powerpc/SelectOp.vp b/powerpc/SelectOp.vp
index 40c9011..3bb5544 100644
--- a/powerpc/SelectOp.vp
+++ b/powerpc/SelectOp.vp
@@ -210,6 +210,13 @@ Nondetfunction andimm (n1: int) (e2: expr) :=
match e2 with
| Eop (Ointconst n2) Enil =>
Eop (Ointconst (Int.and n1 n2)) Enil
+ | Eop (Oandimm n2) (Eop (Oshrimm amount) (t2:::Enil) ::: Enil) =>
+ let n := Int.and n1 n2 in
+ if Int.eq (Int.shru (Int.shl n amount) amount) n
+ && Int.ltu amount Int.iwordsize
+ then rolm t2 (Int.sub Int.iwordsize amount)
+ (Int.and (Int.shru Int.mone amount) n)
+ else Eop (Oandimm n) (Eop (Oshrimm amount) (t2:::Enil) ::: Enil)
| Eop (Oandimm n2) (t2:::Enil) =>
Eop (Oandimm (Int.and n1 n2)) (t2:::Enil)
| Eop (Orolm amount2 mask2) (t2:::Enil) =>