rs6000: Remove the ancient mfcr peepholes
authorSegher Boessenkool <segher@kernel.crashing.org>
Fri, 3 Jun 2016 12:33:07 +0000 (14:33 +0200)
committerSegher Boessenkool <segher@gcc.gnu.org>
Fri, 3 Jun 2016 12:33:07 +0000 (14:33 +0200)
commit5abc59784181358f0125ac67bbff25016cadf3ff
tree35bc0204bc73f0c29aba432c0c905b9b8fd87d4b
parente7fc19fcb5b0413324d0ccae7a045f3ef3cc04a6
rs6000: Remove the ancient mfcr peepholes

These peepholes replace two mfcr;mask sequences by one mfcr;mask;mask
sequence.  On modern cpus, the original mfcr's were actually mfocrf,
but the new insn is an actual heavy-weight mfcr.  This is very bad
for performance.

The comment says there is a three cycle delay between two consecutive
mfcr insns.  This may have been true on rios, and it's true on 604,
but on 603, 750, 7400 it is just a single cycle (on 7450 it is two).

This is also a define_peephole, and we should get rid of those.

So this patch just removes the peepholes; the benefit is marginal at
best, and it so very hurts in other cases.

* config/rs6000/rs6000.md (define_peepholes for two mfcr's): Delete.

From-SVN: r237062
gcc/ChangeLog
gcc/config/rs6000/rs6000.md