From: Chung-Ju Wu Date: Thu, 5 Apr 2018 03:10:42 +0000 (+0000) Subject: [NDS32] Generate alu-shift instructions only for -Os. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b9774a97af284e42882cd30b7ba352e3dea8c9ed;p=gcc.git [NDS32] Generate alu-shift instructions only for -Os. gcc/ * config/nds32/nds32.md: Use optimize_size in the condition for alu-shift instructions. From-SVN: r259120 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 485c59ea797..0928418e9ea 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2018-04-05 Chung-Ju Wu + + * config/nds32/nds32.md: Use optimize_size in the condition for + alu-shift instructions. + 2018-04-05 Chung-Ju Wu * config/nds32/nds32.md (divsi4, udivsi4): New patterns. diff --git a/gcc/config/nds32/nds32.md b/gcc/config/nds32/nds32.md index 2d0f1d3e91b..b64e1c20bf9 100644 --- a/gcc/config/nds32/nds32.md +++ b/gcc/config/nds32/nds32.md @@ -385,7 +385,7 @@ (plus:SI (mult:SI (match_operand:SI 1 "register_operand" " r") (match_operand:SI 2 "immediate_operand" " i")) (match_operand:SI 3 "register_operand" " r")))] - "TARGET_ISA_V3 + "TARGET_ISA_V3 && optimize_size && (exact_log2 (INTVAL (operands[2])) != -1) && (exact_log2 (INTVAL (operands[2])) <= 31)" { @@ -404,7 +404,7 @@ (plus:SI (lshiftrt:SI (match_operand:SI 1 "register_operand" " r") (match_operand:SI 2 "nds32_imm5u_operand" " Iu05")) (match_operand:SI 3 "register_operand" " r")))] - "TARGET_ISA_V3" + "TARGET_ISA_V3 && optimize_size" "add_srli\t%0, %3, %1, %2" [(set_attr "type" "alu_shift") (set_attr "combo" "2") @@ -419,7 +419,7 @@ (minus:SI (match_operand:SI 1 "register_operand" " r") (mult:SI (match_operand:SI 2 "register_operand" " r") (match_operand:SI 3 "immediate_operand" " i"))))] - "TARGET_ISA_V3 + "TARGET_ISA_V3 && optimize_size && (exact_log2 (INTVAL (operands[3])) != -1) && (exact_log2 (INTVAL (operands[3])) <= 31)" { @@ -438,7 +438,7 @@ (minus:SI (match_operand:SI 1 "register_operand" " r") (lshiftrt:SI (match_operand:SI 2 "register_operand" " r") (match_operand:SI 3 "nds32_imm5u_operand" " Iu05"))))] - "TARGET_ISA_V3" + "TARGET_ISA_V3 && optimize_size" "sub_srli\t%0, %1, %2, %3" [(set_attr "type" "alu_shift") (set_attr "combo" "2") @@ -650,7 +650,7 @@ (and:SI (ashift:SI (match_operand:SI 1 "register_operand" " r") (match_operand:SI 2 "nds32_imm5u_operand" " Iu05")) (match_operand:SI 3 "register_operand" " r")))] - "TARGET_ISA_V3" + "TARGET_ISA_V3 && optimize_size" "and_slli\t%0, %3, %1, %2" [(set_attr "type" "alu_shift") (set_attr "length" "4")]) @@ -660,7 +660,7 @@ (and:SI (lshiftrt:SI (match_operand:SI 1 "register_operand" " r") (match_operand:SI 2 "nds32_imm5u_operand" " Iu05")) (match_operand:SI 3 "register_operand" " r")))] - "TARGET_ISA_V3" + "TARGET_ISA_V3 && optimize_size" "and_srli\t%0, %3, %1, %2" [(set_attr "type" "alu_shift") (set_attr "length" "4")]) @@ -702,7 +702,7 @@ (ior:SI (ashift:SI (match_operand:SI 1 "register_operand" " r") (match_operand:SI 2 "nds32_imm5u_operand" " Iu05")) (match_operand:SI 3 "register_operand" " r")))] - "TARGET_ISA_V3" + "TARGET_ISA_V3 && optimize_size" "or_slli\t%0, %3, %1, %2" [(set_attr "type" "alu_shift") (set_attr "length" "4")]) @@ -712,7 +712,7 @@ (ior:SI (lshiftrt:SI (match_operand:SI 1 "register_operand" " r") (match_operand:SI 2 "nds32_imm5u_operand" " Iu05")) (match_operand:SI 3 "register_operand" " r")))] - "TARGET_ISA_V3" + "TARGET_ISA_V3 && optimize_size" "or_srli\t%0, %3, %1, %2" [(set_attr "type" "alu_shift") (set_attr "length" "4")]) @@ -754,7 +754,7 @@ (xor:SI (ashift:SI (match_operand:SI 1 "register_operand" " r") (match_operand:SI 2 "nds32_imm5u_operand" " Iu05")) (match_operand:SI 3 "register_operand" " r")))] - "TARGET_ISA_V3" + "TARGET_ISA_V3 && optimize_size" "xor_slli\t%0, %3, %1, %2" [(set_attr "type" "alu_shift") (set_attr "length" "4")]) @@ -764,7 +764,7 @@ (xor:SI (lshiftrt:SI (match_operand:SI 1 "register_operand" " r") (match_operand:SI 2 "nds32_imm5u_operand" " Iu05")) (match_operand:SI 3 "register_operand" " r")))] - "TARGET_ISA_V3" + "TARGET_ISA_V3 && optimize_size" "xor_srli\t%0, %3, %1, %2" [(set_attr "type" "alu_shift") (set_attr "length" "4")])