Commit 5ed18204 by Richard Sandiford Committed by Richard Sandiford

sh.md: Use nonimmediate_operand rather than general_operand for the destination of a...

gcc/
	* config/sh/sh.md: Use nonimmediate_operand rather than general_operand
	for the destination of a define_peephole2.  Likewise register_operand
	rather than arith_reg_operand.  Remove constraints from
	define_peephole2s.

From-SVN: r205303
parent 2e62f2ff
2013-11-23 Richard Sandiford <rdsandiford@googlemail.com>
* config/sh/sh.md: Use nonimmediate_operand rather than general_operand
for the destination of a define_peephole2. Likewise register_operand
rather than arith_reg_operand. Remove constraints from
define_peephole2s.
2013-11-23 Richard Sandiford <rdsandiford@googlemail.com>
* config/mn10300/mn10300-protos.h (mn10300_store_multiple_operation):
Delete.
(mn10300_store_multiple_operation_p): Declare.
......@@ -6065,7 +6065,7 @@ label:
(define_peephole2
[(set (match_operand:SI 0 "arith_reg_dest" "")
(zero_extend:SI (match_operand 1 "displacement_mem_operand" "")))
(set (match_operand 2 "general_operand" "")
(set (match_operand 2 "nonimmediate_operand" "")
(match_operand 3 "arith_reg_operand" ""))]
"TARGET_SH2A
&& REGNO (operands[0]) == REGNO (operands[3])
......@@ -13700,13 +13700,13 @@ label:
;; -------------------------------------------------------------------------
;; This matches cases where the bit in a memory location is set.
(define_peephole2
[(set (match_operand:SI 0 "arith_reg_operand" "r,r")
(sign_extend:SI (match_operand:QI 1 "bitwise_memory_operand" "Sbw,Sbv")))
[(set (match_operand:SI 0 "register_operand")
(sign_extend:SI (match_operand:QI 1 "bitwise_memory_operand")))
(set (match_dup 0)
(ior:SI (match_dup 0)
(match_operand:SI 2 "const_int_operand" "Pso,Pso")))
(match_operand:SI 2 "const_int_operand")))
(set (match_dup 1)
(match_operand 3 "arith_reg_operand" "r,r"))]
(match_operand 3 "arith_reg_operand"))]
"TARGET_SH2A && TARGET_BITOPS
&& satisfies_constraint_Pso (operands[2])
&& REGNO (operands[0]) == REGNO (operands[3])"
......@@ -13716,13 +13716,13 @@ label:
;; This matches cases where the bit in a memory location is cleared.
(define_peephole2
[(set (match_operand:SI 0 "arith_reg_operand" "r,r")
(sign_extend:SI (match_operand:QI 1 "bitwise_memory_operand" "Sbw,Sbv")))
[(set (match_operand:SI 0 "register_operand")
(sign_extend:SI (match_operand:QI 1 "bitwise_memory_operand")))
(set (match_dup 0)
(and:SI (match_dup 0)
(match_operand:SI 2 "const_int_operand" "Psz,Psz")))
(match_operand:SI 2 "const_int_operand")))
(set (match_dup 1)
(match_operand 3 "arith_reg_operand" "r,r"))]
(match_operand 3 "arith_reg_operand"))]
"TARGET_SH2A && TARGET_BITOPS
&& satisfies_constraint_Psz (operands[2])
&& REGNO (operands[0]) == REGNO (operands[3])"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment