rs6000: Optimise SImode cstore on 64-bit
authorSegher Boessenkool <segher@kernel.crashing.org>
Wed, 2 Dec 2015 10:56:15 +0000 (11:56 +0100)
committerSegher Boessenkool <segher@gcc.gnu.org>
Wed, 2 Dec 2015 10:56:15 +0000 (11:56 +0100)
commitcbd3a543f674ad143aa7d5639e6d2719d0df19b7
tree91068602631c3d28713bc7e74bbf6d0319a4358c
parent1a99e748a310e31176736ed34aab012c7464efd0
rs6000: Optimise SImode cstore on 64-bit

On 64-bit we can do comparisons of 32-bit values by extending those
values to 64-bit, subtracting them, and then getting the high bit of
the result.  For registers this is always cheaper than using the carry
bit sequence; and if the comparison involves a constant, this is cheaper
than the sequence we previously generated in half of the cases (and the
same cost in the other cases).

After this, the only sequence left that is using the mfcr insn is the
one doing signed comparison of Pmode registers.

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