This is the mail archive of the gcc-patches@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]

Re: [PATCH][AArch64] Align FP callee-saves


On Mon, Oct 17, 2016 at 12:40:18PM +0000, Wilco Dijkstra wrote:
> 
> ping
>
> If the number of integer callee-saves is odd, the FP callee-saves use 8-byte
> aligned LDP/STP.  Since 16-byte alignment may be faster on some CPUs, align
> the FP callee-saves to 16 bytes and use the alignment gap for the last FP
> callee-save when possible. Besides slightly different offsets for FP
> callee-saves, the generated code doesn't change.
> 
> Bootstrap and regression pass, OK for commit?

This looks OK to me.

Thanks for the patch.

James

> ChangeLog:
> 2016-09-08  Wilco Dijkstra  <wdijkstr@arm.com>
> 
>         * config/aarch64/aarch64.c (aarch64_layout_frame):
>         Align FP callee-saves.
> --
> diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c
> index fed3b6e803821392194dc34a6c3df5f653d2e33e..075b3802c72a68f63b47574e19186e7ce3440b28 100644
> --- a/gcc/config/aarch64/aarch64.c
> +++ b/gcc/config/aarch64/aarch64.c
> @@ -2735,7 +2735,7 @@ static void
>  aarch64_layout_frame (void)
>  {
>    HOST_WIDE_INT offset = 0;
> -  int regno;
> +  int regno, last_fp_reg = INVALID_REGNUM;
>  
>    if (reload_completed && cfun->machine->frame.laid_out)
>      return;
> @@ -2781,7 +2781,10 @@ aarch64_layout_frame (void)
>    for (regno = V0_REGNUM; regno <= V31_REGNUM; regno++)
>      if (df_regs_ever_live_p (regno)
>          && !call_used_regs[regno])
> -      cfun->machine->frame.reg_offset[regno] = SLOT_REQUIRED;
> +      {
> +       cfun->machine->frame.reg_offset[regno] = SLOT_REQUIRED;
> +       last_fp_reg = regno;
> +      }
>  
>    if (cfun->machine->frame.emit_frame_chain)
>      {
> @@ -2805,9 +2808,21 @@ aarch64_layout_frame (void)
>          offset += UNITS_PER_WORD;
>        }
>  
> +  HOST_WIDE_INT max_int_offset = offset;
> +  offset = ROUND_UP (offset, STACK_BOUNDARY / BITS_PER_UNIT);
> +  bool has_align_gap = offset != max_int_offset;
> +
>    for (regno = V0_REGNUM; regno <= V31_REGNUM; regno++)
>      if (cfun->machine->frame.reg_offset[regno] == SLOT_REQUIRED)
>        {
> +       /* If there is an alignment gap between integer and fp callee-saves,
> +          allocate the last fp register to it if possible.  */
> +       if (regno == last_fp_reg && has_align_gap && (offset & 8) == 0)
> +         {
> +           cfun->machine->frame.reg_offset[regno] = max_int_offset;
> +           break;
> +         }
> +
>          cfun->machine->frame.reg_offset[regno] = offset;
>          if (cfun->machine->frame.wb_candidate1 == INVALID_REGNUM)
>            cfun->machine->frame.wb_candidate1 = regno;
> 


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