]> git.ipfire.org Git - thirdparty/gcc.git/commit - gcc/lra-constraints.c
Rework the legitimize_address_displacement hook
authorRichard Sandiford <richard.sandiford@linaro.org>
Sat, 13 Jan 2018 18:00:59 +0000 (18:00 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Sat, 13 Jan 2018 18:00:59 +0000 (18:00 +0000)
commit9005477f2552a411974c12299f627f80473e17d9
tree923ea4cad9f4eac45c16ec2f88e594968f305011
parent5cce817119cd31d18fbfc1c8245519d86b5e9480
Rework the legitimize_address_displacement hook

This patch:

- tweaks the handling of legitimize_address_displacement
  so that it gets called before rather than after the address has
  been expanded.  This means that we're no longer at the mercy
  of LRA being able to interpret the expanded instructions.

- passes the original offset to legitimize_address_displacement.

- adds SVE support to the AArch64 implementation of
  legitimize_address_displacement.

2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
    Alan Hayward  <alan.hayward@arm.com>
    David Sherwood  <david.sherwood@arm.com>

gcc/
* target.def (legitimize_address_displacement): Take the original
offset as a poly_int.
* targhooks.h (default_legitimize_address_displacement): Update
accordingly.
* targhooks.c (default_legitimize_address_displacement): Likewise.
* doc/tm.texi: Regenerate.
* lra-constraints.c (base_plus_disp_to_reg): Take the displacement
as an argument, moving assert of ad->disp == ad->disp_term to...
(process_address_1): ...here.  Update calls to base_plus_disp_to_reg.
Try calling targetm.legitimize_address_displacement before expanding
the address rather than afterwards, and adjust for the new interface.
* config/aarch64/aarch64.c (aarch64_legitimize_address_displacement):
Match the new hook interface.  Handle SVE addresses.
* config/sh/sh.c (sh_legitimize_address_displacement): Make the
new hook interface.

Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
Co-Authored-By: David Sherwood <david.sherwood@arm.com>
From-SVN: r256637
gcc/ChangeLog
gcc/config/aarch64/aarch64.c
gcc/config/sh/sh.c
gcc/doc/tm.texi
gcc/lra-constraints.c
gcc/target.def
gcc/targhooks.c
gcc/targhooks.h