]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
IRA: Make sure array is big enough
authorTorbjörn SVENSSON <torbjorn.svensson@foss.st.com>
Tue, 25 Oct 2022 09:45:40 +0000 (11:45 +0200)
committerTorbjörn SVENSSON <torbjorn.svensson@foss.st.com>
Thu, 27 Oct 2022 07:34:29 +0000 (09:34 +0200)
In commit 081c96621da, the call to resize_reg_info() was moved before
the call to remove_scratches() and the latter one can increase the
number of regs and that would cause an out of bounds usage on the
reg_renumber global array.

Without this patch, the following testcase randomly fails with:
during RTL pass: ira
In file included from /src/gcc/testsuite/gcc.dg/compat/struct-by-value-5b_y.c:13:
/src/gcc/testsuite/gcc.dg/compat/struct-by-value-5b_y.c: In function 'checkgSf13':
/src/gcc/testsuite/gcc.dg/compat/fp-struct-test-by-value-y.h:28:1: internal compiler error: Segmentation fault
/src/gcc/testsuite/gcc.dg/compat/struct-by-value-5b_y.c:22:1: note: in expansion of macro 'TEST'

gcc/ChangeLog:

* ira.cc: Resize array after reg number increased.

Co-Authored-By: Yvan ROUX <yvan.roux@foss.st.com>
Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@foss.st.com>
gcc/ira.cc

index 42c9cead9f8e087c47b510f8fdf6aab217f162db..d28a67b2546f1a160761ba342e4e98151af43e84 100644 (file)
@@ -5718,6 +5718,7 @@ ira (FILE *f)
     regstat_free_ri ();
     regstat_init_n_sets_and_refs ();
     regstat_compute_ri ();
+    resize_reg_info ();
   };
 
   int max_regno_before_rm = max_reg_num ();