S/390: Replace LDER with LDR.
authorAndreas Krebbel <krebbel@linux.vnet.ibm.com>
Fri, 29 Apr 2016 09:17:35 +0000 (09:17 +0000)
committerAndreas Krebbel <krebbel@gcc.gnu.org>
Fri, 29 Apr 2016 09:17:35 +0000 (09:17 +0000)
commitae1c6198f9a6da7bee7bd4d7276b64781eae377a
tree862051704ad7057867536ddf07eccd300a1ce886
parent3e4be43f69daddc9123f5c2f8129311e0a702ef6
S/390: Replace LDER with LDR.

For performance reasons it is important to write the full 64 bits of
an FPR target reg even when dealing with 32 bit values.  So we chose
lder over ler for 32 bit float register moves.  lder zero-extends the
32 bit value from the source reg to 64 bit in the target.  However,
since it actually doesn't matter whether we write the upper 32 bits
with zeros or with any other garbage we can also use ldr instead.  It
is bit shorter and therefore will do good for I-Cache usage.

gcc/ChangeLog:

2016-04-29  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>

* config/s390/2964.md ("z13_unit_fxu", "z13_0"): Remove lder.
* config/s390/s390.md ("movsi_larl", "*movsi_esa", "mov<mode>"):
Change lder to ldr.
* config/s390/vector.md ("mov<mode>"): Likewise.

From-SVN: r235627
gcc/ChangeLog
gcc/config/s390/2964.md
gcc/config/s390/s390.md
gcc/config/s390/vector.md