This is the mail archive of the gcc-cvs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

r242282 - /branches/ARM/sve-branch/gcc/lra-spil...


Author: rsandifo
Date: Fri Nov 11 17:33:17 2016
New Revision: 242282

URL: https://gcc.gnu.org/viewcvs?rev=242282&root=gcc&view=rev
Log:
Improve spilling for variable-width slots

Once SVE is enabled, a general AArch64 spill slot offset will be

  A + B * VL

where A is a constant and B is a multiple of the SVE vector length.
The offsets in SVE load and store instructions are a multiple of VL
(and so can encode some Bs), while offsets for standard AArch64 load
and store instructions aren't (and encode some As).  We therefore
get better spill code if variable-sized slots are grouped together
separately from constant-sized slots, and if variable-sized slots
are not reused for constant-sized data.  Then, spills to the
constant-sized slots can add B * VL to the offset first, creating
a common anchor point for spills with the same B component but
different A components.  Similarly, spills to variable-sized slots
can add A to the offset first, creating a common anchor point spills
with the same A component but different B components.

This patch implements the sorting and grouping side of the optimisation.
A later patch creates the anchor points.

Modified:
    branches/ARM/sve-branch/gcc/lra-spills.c


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]