From: James E Wilson Date: Tue, 12 Dec 2006 15:03:39 +0000 (+0100) Subject: re PR rtl-optimization/27761 (combine miscompiles) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b5425e756b286c723d4b53129957f6e2aa1715f0;p=gcc.git re PR rtl-optimization/27761 (combine miscompiles) PR rtl-optimization/27761 * combine.c (try_combine): Don't create a useless garbage SET if PATTERN (i2) is a PARALLEL. If added_sets_1, save PATTERN (i1) resp. SET from i1src to i1dest in i1pat and use it to prevent accidental modification of i1src. Co-Authored-By: Jakub Jelinek From-SVN: r119785 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 23721c40105..a857f9a0483 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,12 @@ +2006-12-12 Jim Wilson + Jakub Jelinek + + PR rtl-optimization/27761 + * combine.c (try_combine): Don't create a useless garbage SET + if PATTERN (i2) is a PARALLEL. If added_sets_1, save + PATTERN (i1) resp. SET from i1src to i1dest in i1pat + and use it to prevent accidental modification of i1src. + 2006-12-12 Ira Rosen * tree-vect-analyze.c (vect_analyze_data_ref_access): Add another check diff --git a/gcc/combine.c b/gcc/combine.c index 7f75f9d6c4d..32117bee219 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -1819,8 +1819,8 @@ try_combine (rtx i3, rtx i2, rtx i1, int *new_direct_jump_p) rtx i3dest_killed = 0; /* SET_DEST and SET_SRC of I2 and I1. */ rtx i2dest, i2src, i1dest = 0, i1src = 0; - /* PATTERN (I2), or a copy of it in certain cases. */ - rtx i2pat; + /* PATTERN (I1) and PATTERN (I2), or a copy of it in certain cases. */ + rtx i1pat = 0, i2pat = 0; /* Indicates if I2DEST or I1DEST is in I2SRC or I1_SRC. */ int i2dest_in_i2src = 0, i1dest_in_i1src = 0, i2dest_in_i1src = 0; int i2dest_killed = 0, i1dest_killed = 0; @@ -2218,12 +2218,21 @@ try_combine (rtx i3, rtx i2, rtx i1, int *new_direct_jump_p) rtx. If I2 is a PARALLEL, we just need the piece that assigns I2SRC to I2DEST. */ - i2pat = (GET_CODE (PATTERN (i2)) == PARALLEL - ? gen_rtx_SET (VOIDmode, i2dest, i2src) - : PATTERN (i2)); - if (added_sets_2) - i2pat = copy_rtx (i2pat); + { + if (GET_CODE (PATTERN (i2)) == PARALLEL) + i2pat = gen_rtx_SET (VOIDmode, i2dest, copy_rtx (i2src)); + else + i2pat = copy_rtx (PATTERN (i2)); + } + + if (added_sets_1) + { + if (GET_CODE (PATTERN (i1)) == PARALLEL) + i1pat = gen_rtx_SET (VOIDmode, i1dest, copy_rtx (i1src)); + else + i1pat = copy_rtx (PATTERN (i1)); + } combine_merges++; @@ -2418,9 +2427,7 @@ try_combine (rtx i3, rtx i2, rtx i1, int *new_direct_jump_p) } if (added_sets_1) - XVECEXP (newpat, 0, --total_sets) - = (GET_CODE (PATTERN (i1)) == PARALLEL - ? gen_rtx_SET (VOIDmode, i1dest, i1src) : PATTERN (i1)); + XVECEXP (newpat, 0, --total_sets) = i1pat; if (added_sets_2) {