aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>1999-01-11 16:24:25 -0800
committerRichard Henderson <rth@gcc.gnu.org>1999-01-11 16:24:25 -0800
commitfbdfe39cf2e796a57d0370bc1d841ff439948d48 (patch)
tree684fcad77ee721ed4f11fd55f48d8e58e435ac59 /gcc/function.c
parent5f6c11d6e5d0ad0306c806e61d17e4b92f681c05 (diff)
downloadgcc-fbdfe39cf2e796a57d0370bc1d841ff439948d48.zip
gcc-fbdfe39cf2e796a57d0370bc1d841ff439948d48.tar.gz
gcc-fbdfe39cf2e796a57d0370bc1d841ff439948d48.tar.bz2
function.c (purge_addressof_1): If the note accesses a mem+addressof in a wider mode than any replacement...
* function.c (purge_addressof_1): If the note accesses a mem+addressof in a wider mode than any replacement, adjust the cached replacement. Cache trivial substitutions as well. From-SVN: r24629
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c45
1 files changed, 39 insertions, 6 deletions
diff --git a/gcc/function.c b/gcc/function.c
index c152193..87a923b 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -2899,11 +2899,36 @@ purge_addressof_1 (loc, insn, force, store)
for (tem = purge_addressof_replacements; tem != NULL_RTX;
tem = XEXP (XEXP (tem, 1), 1))
- if (rtx_equal_p (x, XEXP (tem, 0)))
- {
- *loc = XEXP (XEXP (tem, 1), 0);
- return;
- }
+ {
+ rtx y = XEXP (tem, 0);
+ if (GET_CODE (y) == MEM
+ && rtx_equal_p (XEXP (x, 0), XEXP (y, 0)))
+ {
+ /* It can happen that the note may speak of things in
+ a wider (or just different) mode than the code did.
+ This is especially true of REG_RETVAL. */
+
+ rtx z = XEXP (XEXP (tem, 1), 0);
+ if (GET_MODE (x) != GET_MODE (y))
+ {
+ if (GET_CODE (z) == SUBREG && SUBREG_WORD (z) == 0)
+ z = SUBREG_REG (z);
+
+ /* ??? If we'd gotten into any of the really complex
+ cases below, I'm not sure we can do a proper
+ replacement. Might we be able to delete the
+ note in some cases? */
+ if (GET_MODE_SIZE (GET_MODE (x))
+ < GET_MODE_SIZE (GET_MODE (y)))
+ abort ();
+
+ z = gen_lowpart (GET_MODE (x), z);
+ }
+
+ *loc = z;
+ return;
+ }
+ }
/* There should always be such a replacement. */
abort ();
@@ -2991,7 +3016,15 @@ purge_addressof_1 (loc, insn, force, store)
}
}
else if (validate_change (insn, loc, sub, 0))
- goto restart;
+ {
+ /* Remember the replacement so that the same one can be done
+ on the REG_NOTES. */
+ purge_addressof_replacements
+ = gen_rtx_EXPR_LIST (VOIDmode, x,
+ gen_rtx_EXPR_LIST (VOIDmode, sub,
+ purge_addressof_replacements));
+ goto restart;
+ }
give_up:;
/* else give up and put it into the stack */
}