aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir N. Makarov <vmakarov@redhat.com>2025-01-24 13:16:53 -0500
committerVladimir N. Makarov <vmakarov@redhat.com>2025-01-24 13:17:41 -0500
commitc4dae80357ccf2e035d8e9ec0a3bb319344c5b41 (patch)
tree10f91713ae25bb2dff2e7a8f32a09afde2b245d1
parent10850f92b2a618ef1b1ad399530943ef4847823d (diff)
downloadgcc-c4dae80357ccf2e035d8e9ec0a3bb319344c5b41.zip
gcc-c4dae80357ccf2e035d8e9ec0a3bb319344c5b41.tar.gz
gcc-c4dae80357ccf2e035d8e9ec0a3bb319344c5b41.tar.bz2
[PR118497][IRA]: Fix calculation of cost of assigning callee-saved hard reg
Assembler code generated by GCC for PR118497 contains unnecessary move insn. This happened as IRA assigns AX reg to a pseudo which should be in BX reg later for a call. The pseudo did not get BX as LRA decided that it requires to save BX although BX will be saved anyway. The patch fixes the cost calculation. Usage of hard reg nrefs from regstat or DF will result in numerous failures as such nrefs include artificial reg refs. Therefore we add a calculation of hard reg nrefs in IRA. Also we change regexp used for scanning the assembler in test vartrack-1.c as with the patch LRA assigns callee-saved hard reg BP instead of another callee-saved hard reg BX expected by the test. gcc/ChangeLog: PR target/118497 * ira-int.h (target_ira_int): Add x_ira_hard_regno_nrefs. (ira_hard_regno_nrefs): New macro. * ira.cc (setup_hard_regno_aclass): Remove unused code. Modify the comment. (setup_hard_regno_nrefs): New function. (ira): Call it. * ira-color.cc (calculate_saved_nregs): Check ira_hard_regno_nrefs. gcc/testsuite/ChangeLog: PR target/118497 * gcc.target/i386/pr118497.c: New. * gcc.target/i386/vartrack-1.c: Modify the regexp.
-rw-r--r--gcc/ira-color.cc1
-rw-r--r--gcc/ira-int.h5
-rw-r--r--gcc/ira.cc42
-rw-r--r--gcc/testsuite/gcc.target/i386/pr118497.c16
-rw-r--r--gcc/testsuite/gcc.target/i386/vartrack-1.c12
5 files changed, 54 insertions, 22 deletions
diff --git a/gcc/ira-color.cc b/gcc/ira-color.cc
index 23f68c0..0699b34 100644
--- a/gcc/ira-color.cc
+++ b/gcc/ira-color.cc
@@ -1752,6 +1752,7 @@ calculate_saved_nregs (int hard_regno, machine_mode mode)
ira_assert (hard_regno >= 0);
for (i = hard_regno_nregs (hard_regno, mode) - 1; i >= 0; i--)
if (!allocated_hardreg_p[hard_regno + i]
+ && ira_hard_regno_nrefs[hard_regno + i] == 0
&& !crtl->abi->clobbers_full_reg_p (hard_regno + i)
&& !LOCAL_REGNO (hard_regno + i))
nregs++;
diff --git a/gcc/ira-int.h b/gcc/ira-int.h
index aa84324..49e086e 100644
--- a/gcc/ira-int.h
+++ b/gcc/ira-int.h
@@ -936,6 +936,9 @@ public:
/* Flag of that the above array has been initialized. */
bool x_ira_prohibited_mode_move_regs_initialized_p;
+
+ /* Number of real occurences of hard regs before IRA. */
+ size_t x_ira_hard_regno_nrefs[FIRST_PSEUDO_REGISTER];
};
extern class target_ira_int default_target_ira_int;
@@ -983,6 +986,8 @@ extern class target_ira_int *this_target_ira_int;
(this_target_ira_int->x_ira_reg_class_superunion)
#define ira_prohibited_mode_move_regs \
(this_target_ira_int->x_ira_prohibited_mode_move_regs)
+#define ira_hard_regno_nrefs \
+ (this_target_ira_int->x_ira_hard_regno_nrefs)
/* ira.cc: */
diff --git a/gcc/ira.cc b/gcc/ira.cc
index ad522b0..885239d 100644
--- a/gcc/ira.cc
+++ b/gcc/ira.cc
@@ -1416,7 +1416,7 @@ find_reg_classes (void)
-/* Set up the array above. */
+/* Set up array ira_hard_regno_allocno_class. */
static void
setup_hard_regno_aclass (void)
{
@@ -1424,25 +1424,10 @@ setup_hard_regno_aclass (void)
for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
{
-#if 1
ira_hard_regno_allocno_class[i]
= (TEST_HARD_REG_BIT (no_unit_alloc_regs, i)
? NO_REGS
: ira_allocno_class_translate[REGNO_REG_CLASS (i)]);
-#else
- int j;
- enum reg_class cl;
- ira_hard_regno_allocno_class[i] = NO_REGS;
- for (j = 0; j < ira_allocno_classes_num; j++)
- {
- cl = ira_allocno_classes[j];
- if (ira_class_hard_reg_index[cl][i] >= 0)
- {
- ira_hard_regno_allocno_class[i] = cl;
- break;
- }
- }
-#endif
}
}
@@ -5549,6 +5534,30 @@ static int saved_flag_ira_share_spill_slots;
/* Set to true while in IRA. */
bool ira_in_progress = false;
+/* Set up array ira_hard_regno_nrefs. */
+static void
+setup_hard_regno_nrefs (void)
+{
+ int i;
+
+ for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
+ {
+ ira_hard_regno_nrefs[i] = 0;
+ for (df_ref use = DF_REG_USE_CHAIN (i);
+ use != NULL;
+ use = DF_REF_NEXT_REG (use))
+ if (DF_REF_CLASS (use) != DF_REF_ARTIFICIAL
+ && !(DF_REF_INSN_INFO (use) && DEBUG_INSN_P (DF_REF_INSN (use))))
+ ira_hard_regno_nrefs[i]++;
+ for (df_ref def = DF_REG_DEF_CHAIN (i);
+ def != NULL;
+ def = DF_REF_NEXT_REG (def))
+ if (DF_REF_CLASS (def) != DF_REF_ARTIFICIAL
+ && !(DF_REF_INSN_INFO (def) && DEBUG_INSN_P (DF_REF_INSN (def))))
+ ira_hard_regno_nrefs[i]++;
+ }
+}
+
/* This is the main entry of IRA. */
static void
ira (FILE *f)
@@ -5562,6 +5571,7 @@ ira (FILE *f)
edge e;
bool output_jump_reload_p = false;
+ setup_hard_regno_nrefs ();
if (ira_use_lra_p)
{
/* First put potential jump output reloads on the output edges
diff --git a/gcc/testsuite/gcc.target/i386/pr118497.c b/gcc/testsuite/gcc.target/i386/pr118497.c
new file mode 100644
index 0000000..ef72093
--- /dev/null
+++ b/gcc/testsuite/gcc.target/i386/pr118497.c
@@ -0,0 +1,16 @@
+/* { dg-do compile { target { ia32 } } } */
+/* { dg-options "-O2 -fpic" } */
+extern void crosscall2 (void (*fn) (void *, int), void *, int);
+extern void _cgo_panic (void *, int);
+extern void _cgo_allocate (void *, int);
+
+void
+callPanic (void)
+{
+ struct { const char *p; } a;
+ a.p = "panic from C";
+ crosscall2 (_cgo_panic, &a, sizeof a);
+ *(int*) 1 = 1;
+}
+
+/* { dg-final { scan-assembler "__x86.get_pc_thunk.bx" } } */
diff --git a/gcc/testsuite/gcc.target/i386/vartrack-1.c b/gcc/testsuite/gcc.target/i386/vartrack-1.c
index b7e7e78..14a2d6a 100644
--- a/gcc/testsuite/gcc.target/i386/vartrack-1.c
+++ b/gcc/testsuite/gcc.target/i386/vartrack-1.c
@@ -15,14 +15,14 @@ main ()
}
/* Before adjust_insn:
- 26: [--sp:DI]=bx:DI
- 29: bx:DI=[sp:DI++]
+ 26: [--sp:DI]=b[px]:DI
+ 29: b[px]:DI=[sp:DI++]
after adjust_insn:
- 26: {[argp:DI-0x10]=bx:DI;sp:DI=argp:DI-0x10;}
- 29: {bx:DI=[argp:DI-0x10];sp:DI=argp:DI-0x8;} */
+ 26: {[argp:DI-0x10]=b[px]:DI;sp:DI=argp:DI-0x10;}
+ 29: {b[px]:DI=[argp:DI-0x10];sp:DI=argp:DI-0x8;} */
-/* { dg-final { scan-rtl-dump-times {[0-9][0-9]*: \{\[argp:DI-0x10\]=bx:DI;sp:DI=argp:DI-0x10;\}} 1 "vartrack" } } */
+/* { dg-final { scan-rtl-dump-times {[0-9][0-9]*: \{\[argp:DI-0x10\]=b[px]:DI;sp:DI=argp:DI-0x10;\}} 1 "vartrack" } } */
-/* { dg-final { scan-rtl-dump-times {[0-9][0-9]*: \{bx:DI=\[argp:DI-0x10\];sp:DI=argp:DI-0x8;\}} 1 "vartrack" } } */
+/* { dg-final { scan-rtl-dump-times {[0-9][0-9]*: \{b[px]:DI=\[argp:DI-0x10\];sp:DI=argp:DI-0x8;\}} 1 "vartrack" } } */