(ashiftrt:SWIM248 (match_dup 4) (match_dup 5)))
(clobber (reg:CC FLAGS_REG))])
(parallel [(set (match_dup 0)
- (div:SWIM248 (match_dup 2) (match_dup 3)))
+ (div:SWIM248 (match_dup 2) (match_dup 3)))
(set (match_dup 1)
(mod:SWIM248 (match_dup 2) (match_dup 3)))
(use (match_dup 1))
[(set_attr "type" "idiv")
(set_attr "mode" "SI")])
+;; Avoid sign-extension (using cdq) for constant numerators.
+(define_insn_and_split "*divmodsi4_const"
+ [(set (match_operand:SI 0 "register_operand" "=&a")
+ (div:SI (match_operand:SI 2 "const_int_operand" "n")
+ (match_operand:SI 3 "nonimmediate_operand" "rm")))
+ (set (match_operand:SI 1 "register_operand" "=&d")
+ (mod:SI (match_dup 2) (match_dup 3)))
+ (clobber (reg:CC FLAGS_REG))]
+ "!optimize_function_for_size_p (cfun)"
+ "#"
+ "reload_completed"
+ [(set (match_dup 0) (match_dup 2))
+ (set (match_dup 1) (match_dup 4))
+ (parallel [(set (match_dup 0)
+ (div:SI (match_dup 0) (match_dup 3)))
+ (set (match_dup 1)
+ (mod:SI (match_dup 0) (match_dup 3)))
+ (use (match_dup 1))
+ (clobber (reg:CC FLAGS_REG))])]
+{
+ operands[4] = INTVAL (operands[2]) < 0 ? constm1_rtx : const0_rtx;
+}
+ [(set_attr "type" "multi")
+ (set_attr "mode" "SI")])
+
(define_expand "divmodqi4"
[(parallel [(set (match_operand:QI 0 "register_operand")
(div:QI