diff options
author | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-27 02:14:12 +0000 |
---|---|---|
committer | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-27 02:14:12 +0000 |
commit | 92c7a85ca9ddf4465b28fa2022e31bb3657f8383 (patch) | |
tree | 7029a1edafb8e3f060c15a751871f7acafd0a18a /gcc | |
parent | f3d96a589c138697c4c9d1ad41973a2b110f4266 (diff) | |
download | gcc-92c7a85ca9ddf4465b28fa2022e31bb3657f8383.tar.gz |
* reload.h (earlyclobber_operand_p): Declare.
* reload.c (earlyclobber_operand_p): Don't declare. No longer static.
* reload1.c (reload_reg_free_for_value_p): RELOAD_OTHER reloads with
an earlyclobbered output conflict with RELOAD_INPUT reloads - handle
case where the RELOAD_OTHER reload is new. Use earlyclobber_operand_p.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30202 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/reload.c | 3 | ||||
-rw-r--r-- | gcc/reload.h | 3 | ||||
-rw-r--r-- | gcc/reload1.c | 18 |
4 files changed, 26 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6614d8ba543..bbec9cfcd1e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +Wed Oct 27 03:09:23 1999 J"orn Rennecke <amylaar@cygnus.co.uk> + + * reload.h (earlyclobber_operand_p): Declare. + * reload.c (earlyclobber_operand_p): Don't declare. No longer static. + * reload1.c (reload_reg_free_for_value_p): RELOAD_OTHER reloads with + an earlyclobbered output conflict with RELOAD_INPUT reloads - handle + case where the RELOAD_OTHER reload is new. Use earlyclobber_operand_p. + Tue Oct 26 18:23:38 1999 Jan Hubicka <hubicka@freesoft.cz> Richard Henderson <rth@cygnus.com> diff --git a/gcc/reload.c b/gcc/reload.c index bd32ba30341..40103390727 100644 --- a/gcc/reload.c +++ b/gcc/reload.c @@ -252,7 +252,6 @@ static int find_reusable_reload PROTO((rtx *, rtx, enum reg_class, static rtx find_dummy_reload PROTO((rtx, rtx, rtx *, rtx *, enum machine_mode, enum machine_mode, enum reg_class, int, int)); -static int earlyclobber_operand_p PROTO((rtx)); static int hard_reg_set_here_p PROTO((int, int, rtx)); static struct decomposition decompose PROTO((rtx)); static int immune_p PROTO((rtx, rtx, struct decomposition)); @@ -1921,7 +1920,7 @@ find_dummy_reload (real_in, real_out, inloc, outloc, /* Return 1 if X is an operand of an insn that is being earlyclobbered. */ -static int +int earlyclobber_operand_p (x) rtx x; { diff --git a/gcc/reload.h b/gcc/reload.h index c07515fe12b..953e0592ce0 100644 --- a/gcc/reload.h +++ b/gcc/reload.h @@ -354,6 +354,9 @@ extern rtx find_equiv_reg PROTO((rtx, rtx, enum reg_class, int, short *, /* Return 1 if register REGNO is the subject of a clobber in insn INSN. */ extern int regno_clobbered_p PROTO((int, rtx)); +/* Return 1 if X is an operand of an insn that is being earlyclobbered. */ +int earlyclobber_operand_p PROTO((rtx)); + /* Functions in reload1.c: */ extern int reloads_conflict PROTO ((int, int)); diff --git a/gcc/reload1.c b/gcc/reload1.c index 0528860c15d..955acca0494 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -5291,6 +5291,10 @@ reload_reg_free_for_value_p (regno, opnum, type, value, out, reloadnum, int ignore_address_reloads; { int time1; + /* Set if we see an input reload that must not share its reload register + with any new earlyclobber, but might otherwise share the reload + register with an output or input-output reload. */ + int check_earlyclobber = 0; int i; int copy = 0; @@ -5372,7 +5376,7 @@ reload_reg_free_for_value_p (regno, opnum, type, value, out, reloadnum, if (! rld[i].in || ! rtx_equal_p (rld[i].in, value) || rld[i].out || out) { - int j, time2; + int time2; switch (rld[i].when_needed) { case RELOAD_FOR_OTHER_ADDRESS: @@ -5411,6 +5415,7 @@ reload_reg_free_for_value_p (regno, opnum, type, value, out, reloadnum, break; case RELOAD_FOR_INPUT: time2 = rld[i].opnum * 4 + 4; + check_earlyclobber = 1; break; /* rld[i].opnum * 4 + 4 <= (MAX_RECOG_OPERAND - 1) * 4 + 4 == MAX_RECOG_OPERAND * 4 */ @@ -5423,6 +5428,7 @@ reload_reg_free_for_value_p (regno, opnum, type, value, out, reloadnum, break; case RELOAD_FOR_OPERAND_ADDRESS: time2 = MAX_RECOG_OPERANDS * 4 + 2; + check_earlyclobber = 1; break; case RELOAD_FOR_INSN: time2 = MAX_RECOG_OPERANDS * 4 + 3; @@ -5452,9 +5458,8 @@ reload_reg_free_for_value_p (regno, opnum, type, value, out, reloadnum, { time2 = MAX_RECOG_OPERANDS * 4 + 4; /* Earlyclobbered outputs must conflict with inputs. */ - for (j = 0; j < n_earlyclobbers; j++) - if (rld[i].out == reload_earlyclobbers[j]) - time2 = MAX_RECOG_OPERANDS * 4 + 3; + if (earlyclobber_operand_p (rld[i].out)) + time2 = MAX_RECOG_OPERANDS * 4 + 3; break; } @@ -5478,6 +5483,11 @@ reload_reg_free_for_value_p (regno, opnum, type, value, out, reloadnum, } } } + + /* Earlyclobbered outputs must conflict with inputs. */ + if (check_earlyclobber && out && earlyclobber_operand_p (out)) + return 0; + return 1; } |