aboutsummaryrefslogtreecommitdiff
path: root/gcc/reload.c
diff options
context:
space:
mode:
authorhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2011-06-17 02:18:24 +0000
committerhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2011-06-17 02:18:24 +0000
commitfd7a154df349ff34ac9d96db9f143844ba04d19e (patch)
tree691aeafddb0a87acbd9aac366c7ea95648cda6d0 /gcc/reload.c
parentf5945047d04c5006a37fa100b8e41153b84cb762 (diff)
PR rtl-optimization/48542
* reload.c (find_equiv_reg): Stop looking when finding a setjmp-type call. * reload1.c (reload_as_needed): Invalidate all reload registers when crossing a setjmp-type call. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@175132 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/reload.c')
-rw-r--r--gcc/reload.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/reload.c b/gcc/reload.c
index 27d57877501..3ad46b991ad 100644
--- a/gcc/reload.c
+++ b/gcc/reload.c
@@ -6791,6 +6791,15 @@ find_equiv_reg (rtx goal, rtx insn, enum reg_class rclass, int other,
|| num > PARAM_VALUE (PARAM_MAX_RELOAD_SEARCH_INSNS))
return 0;
+ /* Don't reuse register contents from before a setjmp-type
+ function call; on the second return (from the longjmp) it
+ might have been clobbered by a later reuse. It doesn't
+ seem worthwhile to actually go and see if it is actually
+ reused even if that information would be readily available;
+ just don't reuse it across the setjmp call. */
+ if (CALL_P (p) && find_reg_note (p, REG_SETJMP, NULL_RTX))
+ return 0;
+
if (NONJUMP_INSN_P (p)
/* If we don't want spill regs ... */
&& (! (reload_reg_p != 0