diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2005-09-15 21:51:13 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2005-09-15 21:51:13 +0000 |
commit | 9026e8d4d52b13de3adcb6a165145a30f366decb (patch) | |
tree | 0a38e977e8114c15ea3e4e67712f71ad00c88686 /gcc/optabs.c | |
parent | befd75753fb9b8c44aecaffe63f8d2cd4026b196 (diff) | |
download | gcc-9026e8d4d52b13de3adcb6a165145a30f366decb.zip gcc-9026e8d4d52b13de3adcb6a165145a30f366decb.tar.gz gcc-9026e8d4d52b13de3adcb6a165145a30f366decb.tar.bz2 |
optabs.c (expand_binop): Use swap_commutative_operands_with_target to order operands.
2005-09-15 Paolo Bonzini <bonzini@gnu.org>
* optabs.c (expand_binop): Use swap_commutative_operands_with_target
to order operands.
(swap_commutative_operands_with_target): New.
From-SVN: r104324
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r-- | gcc/optabs.c | 35 |
1 files changed, 24 insertions, 11 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index f2df3de..bcb11b5 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -998,6 +998,28 @@ expand_simple_binop (enum machine_mode mode, enum rtx_code code, rtx op0, return expand_binop (mode, binop, op0, op1, target, unsignedp, methods); } + +/* Return whether OP0 and OP1 should be swapped when expanding a commutative + binop. Order them according to commutative_operand_precedence and, if + possible, try to put TARGET first. */ +static bool +swap_commutative_operands_with_target (rtx target, rtx op0, rtx op1) +{ + int op0_prec = commutative_operand_precedence (op0); + int op1_prec = commutative_operand_precedence (op1); + + if (op0_prec < op1_prec) + return true; + + if (op0_prec > op1_prec) + return false; + + /* With equal precedence, both orders are ok, but try to put the + target first. */ + return target && rtx_equal_p (op1, target); +} + + /* Generate code to perform an operation specified by BINOPTAB on operands OP0 and OP1, with result having machine-mode MODE. @@ -1060,10 +1082,7 @@ expand_binop (enum machine_mode mode, optab binoptab, rtx op0, rtx op1, /* Record where to delete back to if we backtrack. */ last = get_last_insn (); - /* If operation is commutative, - try to make the first operand a register. - Even better, try to make it the same as the target. - Also try to make the last operand a constant. */ + /* If operation is commutative, canonicalize the order of the operands. */ if (GET_RTX_CLASS (binoptab->code) == RTX_COMM_ARITH || binoptab == smul_widen_optab || binoptab == umul_widen_optab @@ -1071,13 +1090,7 @@ expand_binop (enum machine_mode mode, optab binoptab, rtx op0, rtx op1, || binoptab == umul_highpart_optab) { commutative_op = 1; - - if (((target == 0 || REG_P (target)) - ? ((REG_P (op1) - && !REG_P (op0)) - || target == op1) - : rtx_equal_p (op1, target)) - || GET_CODE (op0) == CONST_INT) + if (swap_commutative_operands_with_target (target, op0, op1)) { temp = op1; op1 = op0; |