public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [pushed] [PR109541] RA: Constrain class of pic offset table pseudo to general regs
@ 2023-06-07 15:35 Vladimir Makarov
  2023-06-07 16:20 ` Jeff Law
  0 siblings, 1 reply; 3+ messages in thread
From: Vladimir Makarov @ 2023-06-07 15:35 UTC (permalink / raw)
  To: gcc-patches

The following patch fixes

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109541

The patch was successfully bootstrapped and tested on x86-64, aarcha64, 
and ppc64le.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [pushed] [PR109541] RA: Constrain class of pic offset table pseudo to general regs
  2023-06-07 15:35 [pushed] [PR109541] RA: Constrain class of pic offset table pseudo to general regs Vladimir Makarov
@ 2023-06-07 16:20 ` Jeff Law
  2023-06-07 16:28   ` Vladimir Makarov
  0 siblings, 1 reply; 3+ messages in thread
From: Jeff Law @ 2023-06-07 16:20 UTC (permalink / raw)
  To: Vladimir Makarov, gcc-patches



On 6/7/23 09:35, Vladimir Makarov via Gcc-patches wrote:
> The following patch fixes
> 
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109541
> 
> The patch was successfully bootstrapped and tested on x86-64, aarcha64, 
> and ppc64le.
> 
-ENOPATCH

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [pushed] [PR109541] RA: Constrain class of pic offset table pseudo to general regs
  2023-06-07 16:20 ` Jeff Law
@ 2023-06-07 16:28   ` Vladimir Makarov
  0 siblings, 0 replies; 3+ messages in thread
From: Vladimir Makarov @ 2023-06-07 16:28 UTC (permalink / raw)
  To: Jeff Law, gcc-patches

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


On 6/7/23 12:20, Jeff Law wrote:
>
>
> On 6/7/23 09:35, Vladimir Makarov via Gcc-patches wrote:
>> The following patch fixes
>>
>>
> -ENOPATCH
>
Sorry, here is the patch.


[-- Attachment #2: pr109541.patch --]
[-- Type: text/x-patch, Size: 2778 bytes --]

commit 08ca31fb27841cb7f3bff7086be6f139136be1a7
Author: Vladimir N. Makarov <vmakarov@redhat.com>
Date:   Wed Jun 7 09:51:54 2023 -0400

    RA: Constrain class of pic offset table pseudo to general regs
    
    On some targets an integer pseudo can be assigned to a FP reg.  For
    pic offset table pseudo it means we will reload the pseudo in this
    case and, as a consequence, memory containing the pseudo might be
    recognized as wrong one.  The patch fix this problem.
    
            PR target/109541
    
    gcc/ChangeLog:
    
            * ira-costs.cc: (find_costs_and_classes): Constrain classes of pic
              offset table pseudo to a general reg subset.
    
    gcc/testsuite/ChangeLog:
    
            * gcc.target/sparc/pr109541.c: New.

diff --git a/gcc/ira-costs.cc b/gcc/ira-costs.cc
index ae8304ff938..d9e700e8947 100644
--- a/gcc/ira-costs.cc
+++ b/gcc/ira-costs.cc
@@ -2016,6 +2016,16 @@ find_costs_and_classes (FILE *dump_file)
 	      ira_assert (regno_aclass[i] != NO_REGS
 			  && ira_reg_allocno_class_p[regno_aclass[i]]);
 	    }
+	  if (pic_offset_table_rtx != NULL
+	      && i == (int) REGNO (pic_offset_table_rtx))
+	    {
+	      /* For some targets, integer pseudos can be assigned to fp
+		 regs.  As we don't want reload pic offset table pseudo, we
+		 should avoid using non-integer regs.  */
+	      regno_aclass[i]
+		= ira_reg_class_intersect[regno_aclass[i]][GENERAL_REGS];
+	      alt_class = ira_reg_class_intersect[alt_class][GENERAL_REGS];
+	    }
 	  if ((new_class
 	       = (reg_class) (targetm.ira_change_pseudo_allocno_class
 			      (i, regno_aclass[i], best))) != regno_aclass[i])
diff --git a/gcc/testsuite/gcc.target/sparc/pr109541.c b/gcc/testsuite/gcc.target/sparc/pr109541.c
new file mode 100644
index 00000000000..1360f101930
--- /dev/null
+++ b/gcc/testsuite/gcc.target/sparc/pr109541.c
@@ -0,0 +1,23 @@
+/* { dg-do compile } */
+/* { dg-options "-O1 -mcpu=niagara4 -fpic -w" } */
+
+int rhash_sha512_process_block_A, rhash_sha512_process_block_i,
+rhash_sha512_process_block_block, rhash_sha512_process_block_W_0;
+
+unsigned rhash_sha512_process_block_W_2;
+
+void rhash_sha512_process_block (void)
+{
+  unsigned C, E, F, G, H, W_0, W_4, W_9, W_5, W_3, T1;
+
+  for (; rhash_sha512_process_block_i; rhash_sha512_process_block_i += 6) {
+    T1 = F + (rhash_sha512_process_block_W_2 += 6);
+    rhash_sha512_process_block_A += H & G + (W_5 += rhash_sha512_process_block_W_0);
+    H = C & T1 & E ^ F + (W_9 += rhash_sha512_process_block_W_0);
+    G = T1 ^ 6 + (W_0 += rhash_sha512_process_block_block);
+    F = (unsigned) &G;
+    T1 = (unsigned) (&T1 + (W_3 += rhash_sha512_process_block_block > 9 > W_4));
+    C = (unsigned) (T1 + &E);
+    W_4 += W_5 += rhash_sha512_process_block_W_0;
+  }
+}

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-06-07 16:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-07 15:35 [pushed] [PR109541] RA: Constrain class of pic offset table pseudo to general regs Vladimir Makarov
2023-06-07 16:20 ` Jeff Law
2023-06-07 16:28   ` 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).