diff options
author | Eric Christopher <echristo@gcc.gnu.org> | 2003-11-14 10:20:48 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2003-11-14 10:20:48 +0000 |
commit | f2b7f367d58c9da38eee0599a97ef3527d82e96b (patch) | |
tree | 4ac88036dba89bbd0e0bd6453ac93f1c0401a94a | |
parent | 15cc172b125877cd6079ef3975fc1d3025a66c52 (diff) | |
download | gcc-f2b7f367d58c9da38eee0599a97ef3527d82e96b.zip gcc-f2b7f367d58c9da38eee0599a97ef3527d82e96b.tar.gz gcc-f2b7f367d58c9da38eee0599a97ef3527d82e96b.tar.bz2 |
reload1.c (reload): Revert previous patch.
2003-11-14 Eric Christopher <echristo@redhat.com>
* reload1.c (reload): Revert previous patch. Make
check for assignment into reg_equiv_address stricter.
From-SVN: r73595
-rw-r--r-- | gcc/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/reload1.c | 16 |
2 files changed, 15 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 15bd740..41450e2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-11-14 Eric Christopher <echristo@redhat.com> + + * reload1.c (reload): Revert previous patch. Make + check for assignment into reg_equiv_address stricter. + 2003-11-14 Arnaud Charlet <charlet@act-europe.fr> * Makefile.in (POSTSTAGE1_FLAGS_TO_PASS): Pass ADAFLAGS. @@ -37,8 +42,8 @@ 2003-11-13 Andrew Pinski <apinski@apple.com> - * config/darwin.c (machopic_output_possible_stub_label): - Allow stub symbol be not defined when outputting possible + * config/darwin.c (machopic_output_possible_stub_label): + Allow stub symbol be not defined when outputting possible stub label. 2003-11-13 Kazu Hirata <kazu@cs.umass.edu> diff --git a/gcc/reload1.c b/gcc/reload1.c index 7bfc142..5851dbf 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -774,12 +774,6 @@ reload (rtx first, int global) = force_const_mem (GET_MODE (SET_DEST (set)), x); if (!reg_equiv_memory_loc[i]) continue; - /* As above. Later passes of reload assume that - all addresses found in the reg_equiv_* arrays - were originally legitimate. */ - if (!memory_operand (reg_equiv_memory_loc[i], VOIDmode)) - reg_equiv_memory_loc[i] = NULL_RTX; - } } else @@ -916,18 +910,24 @@ reload (rtx first, int global) if (reg_renumber[i] < 0 && reg_equiv_memory_loc[i]) { rtx x = eliminate_regs (reg_equiv_memory_loc[i], 0, NULL_RTX); + enum reg_class class = MODE_BASE_REG_CLASS (GET_MODE (x)); if (strict_memory_address_p (GET_MODE (regno_reg_rtx[i]), XEXP (x, 0))) reg_equiv_mem[i] = x, reg_equiv_address[i] = 0; - else if (CONSTANT_P (XEXP (x, 0)) + else if ((CONSTANT_P (x) + && LEGITIMATE_CONSTANT_P (x) + && PREFERRED_RELOAD_CLASS (x, class) != NO_REGS) || (GET_CODE (XEXP (x, 0)) == REG && REGNO (XEXP (x, 0)) < FIRST_PSEUDO_REGISTER) || (GET_CODE (XEXP (x, 0)) == PLUS && GET_CODE (XEXP (XEXP (x, 0), 0)) == REG && (REGNO (XEXP (XEXP (x, 0), 0)) < FIRST_PSEUDO_REGISTER) - && CONSTANT_P (XEXP (XEXP (x, 0), 1)))) + && (CONSTANT_P (XEXP (XEXP (x, 0), 1)) + && LEGITIMATE_CONSTANT_P (XEXP (XEXP (x, 0), 1)) + && PREFERRED_RELOAD_CLASS (XEXP (XEXP (x, 0), 1), class) + != NO_REGS))) reg_equiv_address[i] = XEXP (x, 0), reg_equiv_mem[i] = 0; else { |