From: segher Date: Sun, 21 Sep 2014 17:59:40 +0000 (+0000) Subject: 2014-09-21 Segher Boessenkool X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74a7c64ab8ccb1011da04275fab55e57df2ce278;p=thirdparty%2Fgcc.git 2014-09-21 Segher Boessenkool * config/rs6000/rs6000.md (*neg2_internal): Delete. (two anonymous define_insn and two define_split): Delete. (*neg2, *neg2_dot, *neg2_dot2): New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@215432 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 35159c54fe90..b3aa885c7605 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2014-09-21 Segher Boessenkool + + * config/rs6000/rs6000.md (*neg2_internal): Delete. + (two anonymous define_insn and two define_split): Delete. + (*neg2, *neg2_dot, *neg2_dot2): New. + 2014-09-21 Segher Boessenkool * config/rs6000/rs6000.md (*one_cmpl2): Generate "not" insn. diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 332b7dcc7c63..48cc73deb9e8 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -1726,72 +1726,61 @@ } }") + (define_expand "neg2" [(set (match_operand:SDI 0 "gpc_reg_operand" "") (neg:SDI (match_operand:SDI 1 "gpc_reg_operand" "")))] "" "") -(define_insn "*neg2_internal" +(define_insn "*neg2" [(set (match_operand:GPR 0 "gpc_reg_operand" "=r") (neg:GPR (match_operand:GPR 1 "gpc_reg_operand" "r")))] "" "neg %0,%1" [(set_attr "type" "add")]) -(define_insn "" - [(set (match_operand:CC 0 "cc_reg_operand" "=x,?y") - (compare:CC (neg:P (match_operand:P 1 "gpc_reg_operand" "r,r")) +(define_insn_and_split "*neg2_dot" + [(set (match_operand:CC 2 "cc_reg_operand" "=x,?y") + (compare:CC (neg:GPR (match_operand:GPR 1 "gpc_reg_operand" "r,r")) (const_int 0))) - (clobber (match_scratch:P 2 "=r,r"))] - "" + (clobber (match_scratch:GPR 0 "=r,r"))] + "mode == Pmode" "@ - neg. %2,%1 + neg. %0,%1 #" + "&& reload_completed && cc_reg_not_cr0_operand (operands[2], CCmode)" + [(set (match_dup 0) + (neg:GPR (match_dup 1))) + (set (match_dup 2) + (compare:CC (match_dup 0) + (const_int 0)))] + "" [(set_attr "type" "add") (set_attr "dot" "yes") (set_attr "length" "4,8")]) -(define_split - [(set (match_operand:CC 0 "cc_reg_not_cr0_operand" "") - (compare:CC (neg:P (match_operand:P 1 "gpc_reg_operand" "")) - (const_int 0))) - (clobber (match_scratch:P 2 ""))] - "reload_completed" - [(set (match_dup 2) - (neg:P (match_dup 1))) - (set (match_dup 0) - (compare:CC (match_dup 2) - (const_int 0)))] - "") - -(define_insn "" +(define_insn_and_split "*neg2_dot2" [(set (match_operand:CC 2 "cc_reg_operand" "=x,?y") - (compare:CC (neg:P (match_operand:P 1 "gpc_reg_operand" "r,r")) + (compare:CC (neg:GPR (match_operand:GPR 1 "gpc_reg_operand" "r,r")) (const_int 0))) - (set (match_operand:P 0 "gpc_reg_operand" "=r,r") - (neg:P (match_dup 1)))] - "" + (set (match_operand:GPR 0 "gpc_reg_operand" "=r,r") + (neg:GPR (match_dup 1)))] + "mode == Pmode" "@ neg. %0,%1 #" - [(set_attr "type" "add") - (set_attr "dot" "yes") - (set_attr "length" "4,8")]) - -(define_split - [(set (match_operand:CC 2 "cc_reg_not_cr0_operand" "") - (compare:CC (neg:P (match_operand:P 1 "gpc_reg_operand" "")) - (const_int 0))) - (set (match_operand:P 0 "gpc_reg_operand" "") - (neg:P (match_dup 1)))] - "reload_completed" + "&& reload_completed && cc_reg_not_cr0_operand (operands[2], CCmode)" [(set (match_dup 0) - (neg:P (match_dup 1))) + (neg:GPR (match_dup 1))) (set (match_dup 2) (compare:CC (match_dup 0) (const_int 0)))] - "") + "" + [(set_attr "type" "add") + (set_attr "dot" "yes") + (set_attr "length" "4,8")]) + (define_insn "clz2" [(set (match_operand:GPR 0 "gpc_reg_operand" "=r")