diff options
author | Jeff Law <law@gcc.gnu.org> | 1995-05-12 14:51:46 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1995-05-12 14:51:46 -0600 |
commit | ff0a4409da5157eb7542b43f1dfc73b9384b90e3 (patch) | |
tree | 680cf7b9f986cebb18cd64c8598d63643f7ecc80 /gcc | |
parent | 71380ac6922a4329c3d7f28213e1ca9c63ae0720 (diff) | |
download | gcc-ff0a4409da5157eb7542b43f1dfc73b9384b90e3.zip gcc-ff0a4409da5157eb7542b43f1dfc73b9384b90e3.tar.gz gcc-ff0a4409da5157eb7542b43f1dfc73b9384b90e3.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/pa.md | 64 |
1 files changed, 52 insertions, 12 deletions
diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 0643e10..7587865 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)))]) |