+2002-12-01 Kazu Hirata <kazu@cs.umass.edu>
+
+ * config/h8300/h8300.md: Add comments for define_peephole2.
+
2002-12-01 Mark Mitchell <mark@codesourcery.com>
* builtin-types.def (BT_SIZE): Use size_type_node.
;; PEEPHOLE PATTERNS
;; -----------------------------------------------------------------
+;; Convert (A >> B) & C to (A & 255) >> B if C == 255 >> B.
+
(define_peephole2
[(parallel
[(set (match_operand:HI 0 "register_operand" "")
(clobber (match_dup 2))])]
"")
+;; Convert (A << B) & C to (A & 255) << B if C == 255 << B.
+
(define_peephole2
[(parallel
[(set (match_operand:HI 0 "register_operand" "")
(clobber (match_dup 2))])]
"")
+;; Convert (A >> B) & C to (A & 255) >> B if C == 255 >> B.
+
(define_peephole2
[(parallel
[(set (match_operand:SI 0 "register_operand" "")
(clobber (match_dup 2))])]
"")
+;; Convert (A << B) & C to (A & 255) << B if C == 255 << B.
+
(define_peephole2
[(parallel
[(set (match_operand:SI 0 "register_operand" "")
(clobber (match_dup 2))])]
"")
+;; Convert (A >> B) & C to (A & 65535) >> B if C == 65535 >> B.
+
(define_peephole2
[(parallel
[(set (match_operand:SI 0 "register_operand" "")
(clobber (match_dup 2))])]
"")
+;; Convert (A << B) & C to (A & 65535) << B if C == 65535 << B.
+
(define_peephole2
[(parallel
[(set (match_operand:SI 0 "register_operand" "")