diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-04-06 19:38:34 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-04-06 19:38:34 +0000 |
commit | aa353df66a0f89f63ec45888a6e05877cd4c64ec (patch) | |
tree | b0fbf2dc41b326863269226e959e0c282703f2ad /gcc/unroll.c | |
parent | f14ac14bbdba1d54ba87e504f8ff2a787e4e7f33 (diff) | |
download | gcc-aa353df66a0f89f63ec45888a6e05877cd4c64ec.tar.gz |
(loop_iterations): When computing comparison_value, use
reg_set_p to identify instructions that modify it.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4036 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r-- | gcc/unroll.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c index b58066d20ca..d93e3bac95a 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -3039,14 +3039,19 @@ loop_iterations (loop_start, loop_end) break; else if (GET_RTX_CLASS (GET_CODE (insn)) == 'i' - && (set = single_set (insn)) - && (SET_DEST (set) == comparison_value)) + && reg_set_p (comparison_value, insn)) { - rtx note = find_reg_note (insn, REG_EQUAL, NULL_RTX); - - if (note && GET_CODE (XEXP (note, 0)) != EXPR_LIST) - comparison_value = XEXP (note, 0); + /* We found the last insn before the loop that sets the register. + If it sets the entire register, and has a REG_EQUAL note, + then use the value of the REG_EQUAL note. */ + if ((set = single_set (insn)) + && (SET_DEST (set) == comparison_value)) + { + rtx note = find_reg_note (insn, REG_EQUAL, NULL_RTX); + if (note && GET_CODE (XEXP (note, 0)) != EXPR_LIST) + comparison_value = XEXP (note, 0); + } break; } } |