public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-9867] aarch64: Minor initial adjustment tweak
@ 2023-09-12 15:10 Richard Sandiford
  0 siblings, 0 replies; only message in thread
From: Richard Sandiford @ 2023-09-12 15:10 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:08f71b4bb28fb74d20e8d2927a557e8119ce9f4d

commit r12-9867-g08f71b4bb28fb74d20e8d2927a557e8119ce9f4d
Author: Richard Sandiford <richard.sandiford@arm.com>
Date:   Tue Sep 12 16:08:54 2023 +0100

    aarch64: Minor initial adjustment tweak
    
    This patch just changes a calculation of initial_adjust
    to one that makes it slightly more obvious that the total
    adjustment is frame.frame_size.
    
    gcc/
            * config/aarch64/aarch64.cc (aarch64_layout_frame): Tweak
            calculation of initial_adjust for frames in which all saves
            are SVE saves.

Diff:
---
 gcc/config/aarch64/aarch64.cc | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/gcc/config/aarch64/aarch64.cc b/gcc/config/aarch64/aarch64.cc
index 81935852d5b2..4d9fcf3d1623 100644
--- a/gcc/config/aarch64/aarch64.cc
+++ b/gcc/config/aarch64/aarch64.cc
@@ -8414,11 +8414,10 @@ aarch64_layout_frame (void)
     {
       /* Frame in which all saves are SVE saves:
 
-	 sub sp, sp, hard_fp_offset + below_hard_fp_saved_regs_size
+	 sub sp, sp, frame_size - bytes_below_saved_regs
 	 save SVE registers relative to SP
 	 sub sp, sp, bytes_below_saved_regs  */
-      frame.initial_adjust = (frame.bytes_above_hard_fp
-			      + frame.below_hard_fp_saved_regs_size);
+      frame.initial_adjust = frame.frame_size - frame.bytes_below_saved_regs;
       frame.final_adjust = frame.bytes_below_saved_regs;
     }
   else if (frame.bytes_above_hard_fp.is_constant (&const_above_fp)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-09-12 15:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-12 15:10 [gcc r12-9867] aarch64: Minor initial adjustment tweak Richard Sandiford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).