public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-5037] [RA]: Fixing LRA cycling for multi-reg variable containing a fixed reg
@ 2023-10-31 15:45 Vladimir Makarov
  0 siblings, 0 replies; only message in thread
From: Vladimir Makarov @ 2023-10-31 15:45 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:9119b008b4195e06012a485ec01a8bb0e43266be

commit r14-5037-g9119b008b4195e06012a485ec01a8bb0e43266be
Author: Vladimir N. Makarov <vmakarov@redhat.com>
Date:   Tue Oct 31 10:54:43 2023 -0400

    [RA]: Fixing LRA cycling for multi-reg variable containing a fixed reg
    
    PR111971 test case uses a multi-reg variable containing a fixed reg.  LRA
    rejects such multi-reg because of this when matching the constraint for
    an asm insn.  The rejection results in LRA cycling.  The patch fixes this issue.
    
    gcc/ChangeLog:
    
            PR rtl-optimization/111971
            * lra-constraints.cc: (process_alt_operands): Don't check start
            hard regs for regs originated from register variables.
    
    gcc/testsuite/ChangeLog:
    
            PR rtl-optimization/111971
            * gcc.target/powerpc/pr111971.c: New test.

Diff:
---
 gcc/lra-constraints.cc                      |  9 ++++++---
 gcc/testsuite/gcc.target/powerpc/pr111971.c | 10 ++++++++++
 2 files changed, 16 insertions(+), 3 deletions(-)

diff --git a/gcc/lra-constraints.cc b/gcc/lra-constraints.cc
index d10a2a3dc512..0607c8be7cbb 100644
--- a/gcc/lra-constraints.cc
+++ b/gcc/lra-constraints.cc
@@ -2609,12 +2609,15 @@ process_alt_operands (int only_alternative)
 		  winreg = true;
 		  if (REG_P (op))
 		    {
+		      tree decl;
 		      if (hard_regno[nop] >= 0
 			  && in_hard_reg_set_p (this_alternative_set,
 						mode, hard_regno[nop])
-			  && !TEST_HARD_REG_BIT
-			      (this_alternative_exclude_start_hard_regs,
-			       hard_regno[nop]))
+			  && ((REG_ATTRS (op) && (decl = REG_EXPR (op)) != NULL
+			       && VAR_P (decl) && DECL_HARD_REGISTER (decl))
+			      || !(TEST_HARD_REG_BIT
+				   (this_alternative_exclude_start_hard_regs,
+				    hard_regno[nop]))))
 			win = true;
 		      else if (hard_regno[nop] < 0
 			       && in_class_p (op, this_alternative, NULL))
diff --git a/gcc/testsuite/gcc.target/powerpc/pr111971.c b/gcc/testsuite/gcc.target/powerpc/pr111971.c
new file mode 100644
index 000000000000..7f058bd48207
--- /dev/null
+++ b/gcc/testsuite/gcc.target/powerpc/pr111971.c
@@ -0,0 +1,10 @@
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+void
+foo (unsigned long long *a)
+{
+  register long long d asm ("r0") = 0x24;
+  long long n;
+  asm ("mr %0, %1" : "=r"(n) : "r"(d));
+  *a++ = n;
+}

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

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

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-31 15:45 [gcc r14-5037] [RA]: Fixing LRA cycling for multi-reg variable containing a fixed reg Vladimir Makarov

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).