From: Jeff Law Date: Fri, 12 May 1995 20:51:46 +0000 (-0600) Subject: pa.md (bb patterns): Fix bugs in length computation exposed by recent branch shorteni... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ff0a4409da5157eb7542b43f1dfc73b9384b90e3;p=gcc.git pa.md (bb patterns): Fix bugs in length computation exposed by recent branch shortening and... * pa.md (bb patterns): Fix bugs in length computation exposed by recent branch shortening and genattrtab changes. From-SVN: r9665 --- diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 0643e10c2e4..7587865c0b6 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -1051,19 +1051,39 @@ (const_int 1) (match_operand:SI 1 "uint5_operand" "")) (const_int 0)) - (match_operand 2 "pc_or_label_operand" "") - (match_operand 3 "pc_or_label_operand" "")))] + (label_ref (match_operand 2 "" "")) + (pc)))] "" "* { return output_bb (operands, INSN_ANNULLED_BRANCH_P (insn), - get_attr_length (insn), - (operands[3] != pc_rtx), - insn, 0); + get_attr_length (insn), 0, insn, 0); }" [(set_attr "type" "cbranch") (set (attr "length") - (if_then_else (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8)))) + (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8)))) + (const_int 8188)) + (const_int 4) + (const_int 8)))]) + +(define_insn "" + [(set (pc) + (if_then_else + (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r") + (const_int 1) + (match_operand:SI 1 "uint5_operand" "")) + (const_int 0)) + (pc) + (label_ref (match_operand 2 "" ""))))] + "" + "* +{ + return output_bb (operands, INSN_ANNULLED_BRANCH_P (insn), + get_attr_length (insn), 1, insn, 0); +}" +[(set_attr "type" "cbranch") + (set (attr "length") + (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8)))) (const_int 8188)) (const_int 4) (const_int 8)))]) @@ -1075,19 +1095,39 @@ (const_int 1) (match_operand:SI 1 "uint5_operand" "")) (const_int 0)) - (match_operand 2 "pc_or_label_operand" "") - (match_operand 3 "pc_or_label_operand" "")))] + (label_ref (match_operand 2 "" "")) + (pc)))] "" "* { return output_bb (operands, INSN_ANNULLED_BRANCH_P (insn), - get_attr_length (insn), - (operands[3] != pc_rtx), - insn, 1); + get_attr_length (insn), 0, insn, 1); }" [(set_attr "type" "cbranch") (set (attr "length") - (if_then_else (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8)))) + (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8)))) + (const_int 8188)) + (const_int 4) + (const_int 8)))]) + +(define_insn "" + [(set (pc) + (if_then_else + (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r") + (const_int 1) + (match_operand:SI 1 "uint5_operand" "")) + (const_int 0)) + (pc) + (label_ref (match_operand 2 "" ""))))] + "" + "* +{ + return output_bb (operands, INSN_ANNULLED_BRANCH_P (insn), + get_attr_length (insn), 1, insn, 1); +}" +[(set_attr "type" "cbranch") + (set (attr "length") + (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8)))) (const_int 8188)) (const_int 4) (const_int 8)))])