public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Vladimir Makarov <vmakarov@redhat.com>
To: "gcc-patches@gcc.gnu.org" <gcc-patches@gcc.gnu.org>,
	SenthilKumar.Selvaraj@microchip.com
Subject: [pushed][LRA]: When assigning stack slots to pseudos previously assigned to fp consider other spilled pseudos
Date: Thu, 17 Aug 2023 12:02:23 -0400	[thread overview]
Message-ID: <8d04289d-a00e-20e0-38ce-c18b525d62b3@redhat.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 218 bytes --]

The following patch fixes a problem with allocating the same stack slots 
to conflicting pseudos.  The problem exists only for AVR LRA port.

The patch was successfully bootstrapped and tested on x86-64 and aarch64.


[-- Attachment #2: z --]
[-- Type: text/plain, Size: 1887 bytes --]

commit c024867d1aa9d465e0236fc9d45d8e1d4bb6bd30
Author: Vladimir N. Makarov <vmakarov@redhat.com>
Date:   Thu Aug 17 11:57:45 2023 -0400

    [LRA]: When assigning stack slots to pseudos previously assigned to fp consider other spilled pseudos
    
    The previous LRA patch can assign slot of conflicting pseudos to
    pseudos spilled after prohibiting fp->sp elimination.  This patch
    fixes this problem.
    
    gcc/ChangeLog:
    
            * lra-spills.cc (assign_stack_slot_num_and_sort_pseudos): Moving
            slots_num initialization from here ...
            (lra_spill): ... to here before the 1st call of
            assign_stack_slot_num_and_sort_pseudos.  Add the 2nd call after
            fp->sp elimination.

diff --git a/gcc/lra-spills.cc b/gcc/lra-spills.cc
index 7e1d35b5e4e..a663a1931e3 100644
--- a/gcc/lra-spills.cc
+++ b/gcc/lra-spills.cc
@@ -363,7 +363,6 @@ assign_stack_slot_num_and_sort_pseudos (int *pseudo_regnos, int n)
 {
   int i, j, regno;
 
-  slots_num = 0;
   /* Assign stack slot numbers to spilled pseudos, use smaller numbers
      for most frequently used pseudos.	*/
   for (i = 0; i < n; i++)
@@ -628,6 +627,7 @@ lra_spill (void)
   /* Sort regnos according their usage frequencies.  */
   qsort (pseudo_regnos, n, sizeof (int), regno_freq_compare);
   n = assign_spill_hard_regs (pseudo_regnos, n);
+  slots_num = 0;
   assign_stack_slot_num_and_sort_pseudos (pseudo_regnos, n);
   for (i = 0; i < n; i++)
     if (pseudo_slots[pseudo_regnos[i]].mem == NULL_RTX)
@@ -635,6 +635,7 @@ lra_spill (void)
   if ((n2 = lra_update_fp2sp_elimination (pseudo_regnos)) > 0)
     {
       /* Assign stack slots to spilled pseudos assigned to fp.  */
+      assign_stack_slot_num_and_sort_pseudos (pseudo_regnos, n2);
       for (i = 0; i < n2; i++)
 	if (pseudo_slots[pseudo_regnos[i]].mem == NULL_RTX)
 	  assign_mem_slot (pseudo_regnos[i]);

                 reply	other threads:[~2023-08-17 16:02 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8d04289d-a00e-20e0-38ce-c18b525d62b3@redhat.com \
    --to=vmakarov@redhat.com \
    --cc=SenthilKumar.Selvaraj@microchip.com \
    --cc=gcc-patches@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).