1 ;; GCC machine description for Matsushita MN10300
2 ;; Copyright (C) 1996-2017 Free Software Foundation, Inc.
3 ;; Contributed by Jeff Law (law@cygnus.com).
5 ;; This file is part of GCC.
7 ;; GCC is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 3, or (at your option)
12 ;; GCC is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GCC; see the file COPYING3. If not see
19 ;; <http://www.gnu.org/licenses/>.
21 ;; The original PO technology requires these to be ordered by speed,
22 ;; so that assigner will pick the fastest.
24 ;; See file "rtl.def" for documentation on define_insn, match_*, et. al.
41 ;; This is used to encode LIW patterns.
43 ;; This is for the low overhead loop instructions.
47 (include "predicates.md")
48 (include "constraints.md")
50 ;; Processor type. This attribute must exactly match the processor_type
51 ;; enumeration in mn10300.h.
52 (define_attr "cpu" "mn10300,am33,am33_2,am34"
53 (const (symbol_ref "(enum attr_cpu) mn10300_tune_cpu")))
55 ;; Used to control the "enabled" attribute on a per-instruction basis.
56 (define_attr "isa" "base,am33,am33_2,am34"
57 (const_string "base"))
59 (define_attr "enabled" ""
60 (cond [(eq_attr "isa" "base")
63 (and (eq_attr "isa" "am33")
64 (match_test "TARGET_AM33"))
67 (and (eq_attr "isa" "am33_2")
68 (match_test "TARGET_AM33_2"))
71 (and (eq_attr "isa" "am34")
72 (match_test "TARGET_AM34"))
78 (define_mode_iterator INT [QI HI SI])
81 ;; Bundling of smaller insns into a long instruction word (LIW)
82 (define_automaton "liw_bundling")
83 (automata_option "ndfa")
85 (define_cpu_unit "liw_op1_u,liw_op2_u" "liw_bundling")
87 (define_attr "liw" "op1,op2,both,either"
88 (const_string "both"))
89 ;; Note: this list must match the one defined for liw_op_names[].
90 (define_attr "liw_op" "add,cmp,sub,mov,and,or,xor,asr,lsr,asl,none,max"
91 (const_string "none"))
93 (define_insn_reservation "liw_op1" 1
94 (and (ior (eq_attr "cpu" "am33")
95 (eq_attr "cpu" "am33_2")
96 (eq_attr "cpu" "am34"))
97 (eq_attr "liw" "op1"))
99 (define_insn_reservation "liw_op2" 1
100 (and (ior (eq_attr "cpu" "am33")
101 (eq_attr "cpu" "am33_2")
102 (eq_attr "cpu" "am34"))
103 (eq_attr "liw" "op2"))
105 (define_insn_reservation "liw_both" 1
106 (and (ior (eq_attr "cpu" "am33")
107 (eq_attr "cpu" "am33_2")
108 (eq_attr "cpu" "am34"))
109 (eq_attr "liw" "both"))
110 "liw_op1_u + liw_op2_u");
111 (define_insn_reservation "liw_either" 1
112 (and (ior (eq_attr "cpu" "am33")
113 (eq_attr "cpu" "am33_2")
114 (eq_attr "cpu" "am34"))
115 (eq_attr "liw" "either"))
116 "liw_op1_u | liw_op2_u");
118 ;; ----------------------------------------------------------------------
119 ;; Pipeline description.
120 ;; ----------------------------------------------------------------------
122 ;; The AM33 only has a single pipeline. It has five stages (fetch,
123 ;; decode, execute, memory access, writeback) each of which normally
124 ;; takes a single CPU clock cycle.
126 ;; The timings attribute consists of two numbers, the first is the
127 ;; throughput, which is the number of cycles the instruction takes
128 ;; to execute and generate a result. The second is the latency
129 ;; which is the effective number of cycles the instruction takes to
130 ;; execute if its result is used by the following instruction. The
131 ;; latency is always greater than or equal to the throughput.
132 ;; These values were taken from the Appendix of the "MN103E Series
133 ;; Instruction Manual" and the timings for the AM34.
135 ;; Note - it would be nice to use strings rather than integers for
136 ;; the possible values of this attribute, so that we can have the
137 ;; gcc build mechanism check for values that are not supported by
138 ;; the reservations below. But this will not work because the code
139 ;; in mn10300_adjust_sched_cost() needs integers not strings.
141 (define_attr "timings" "" (const_int 11))
143 (define_automaton "pipelining")
144 (define_cpu_unit "throughput" "pipelining")
146 (define_insn_reservation "throughput__1_latency__1" 1
147 (eq_attr "timings" "11") "throughput")
148 (define_insn_reservation "throughput__1_latency__2" 2
149 (eq_attr "timings" "12") "throughput,nothing")
150 (define_insn_reservation "throughput__1_latency__3" 3
151 (eq_attr "timings" "13") "throughput,nothing*2")
152 (define_insn_reservation "throughput__1_latency__4" 4
153 (eq_attr "timings" "14") "throughput,nothing*3")
154 (define_insn_reservation "throughput__2_latency__2" 2
155 (eq_attr "timings" "22") "throughput*2")
156 (define_insn_reservation "throughput__2_latency__3" 3
157 (eq_attr "timings" "23") "throughput*2,nothing")
158 (define_insn_reservation "throughput__2_latency__4" 4
159 (eq_attr "timings" "24") "throughput*2,nothing*2")
160 (define_insn_reservation "throughput__2_latency__5" 5
161 (eq_attr "timings" "25") "throughput*2,nothing*3")
162 (define_insn_reservation "throughput__3_latency__3" 3
163 (eq_attr "timings" "33") "throughput*3")
164 (define_insn_reservation "throughput__3_latency__7" 7
165 (eq_attr "timings" "37") "throughput*3,nothing*4")
166 (define_insn_reservation "throughput__4_latency__4" 4
167 (eq_attr "timings" "44") "throughput*4")
168 (define_insn_reservation "throughput__4_latency__7" 7
169 (eq_attr "timings" "47") "throughput*4,nothing*3")
170 (define_insn_reservation "throughput__4_latency__8" 8
171 (eq_attr "timings" "48") "throughput*4,nothing*4")
172 (define_insn_reservation "throughput__5_latency__5" 5
173 (eq_attr "timings" "55") "throughput*5")
174 (define_insn_reservation "throughput__6_latency__6" 6
175 (eq_attr "timings" "66") "throughput*6")
176 (define_insn_reservation "throughput__7_latency__7" 7
177 (eq_attr "timings" "77") "throughput*7")
178 (define_insn_reservation "throughput__7_latency__8" 8
179 (eq_attr "timings" "78") "throughput*7,nothing")
180 (define_insn_reservation "throughput__8_latency__8" 8
181 (eq_attr "timings" "88") "throughput*8")
182 (define_insn_reservation "throughput__9_latency__9" 9
183 (eq_attr "timings" "99") "throughput*9")
184 (define_insn_reservation "throughput__8_latency_14" 14
185 (eq_attr "timings" "814") "throughput*8,nothing*6")
186 (define_insn_reservation "throughput__9_latency_10" 10
187 (eq_attr "timings" "910") "throughput*9,nothing")
188 (define_insn_reservation "throughput_10_latency_10" 10
189 (eq_attr "timings" "1010") "throughput*10")
190 (define_insn_reservation "throughput_12_latency_16" 16
191 (eq_attr "timings" "1216") "throughput*12,nothing*4")
192 (define_insn_reservation "throughput_13_latency_13" 13
193 (eq_attr "timings" "1313") "throughput*13")
194 (define_insn_reservation "throughput_14_latency_14" 14
195 (eq_attr "timings" "1414") "throughput*14")
196 (define_insn_reservation "throughput_13_latency_17" 17
197 (eq_attr "timings" "1317") "throughput*13,nothing*4")
198 (define_insn_reservation "throughput_23_latency_27" 27
199 (eq_attr "timings" "2327") "throughput*23,nothing*4")
200 (define_insn_reservation "throughput_25_latency_31" 31
201 (eq_attr "timings" "2531") "throughput*25,nothing*6")
202 (define_insn_reservation "throughput_38_latency_39" 39
203 (eq_attr "timings" "3839") "throughput*38,nothing")
204 (define_insn_reservation "throughput_39_latency_40" 40
205 (eq_attr "timings" "3940") "throughput*39,nothing")
206 (define_insn_reservation "throughput_40_latency_40" 40
207 (eq_attr "timings" "4040") "throughput*40")
208 (define_insn_reservation "throughput_41_latency_42" 42
209 (eq_attr "timings" "4142") "throughput*41,nothing")
210 (define_insn_reservation "throughput_42_latency_43" 44
211 (eq_attr "timings" "4243") "throughput*42,nothing")
212 (define_insn_reservation "throughput_43_latency_44" 44
213 (eq_attr "timings" "4344") "throughput*43,nothing")
214 (define_insn_reservation "throughput_45_latency_46" 46
215 (eq_attr "timings" "4546") "throughput*45,nothing")
216 (define_insn_reservation "throughput_47_latency_53" 53
217 (eq_attr "timings" "4753") "throughput*47,nothing*6")
219 ;; Note - the conflict between memory load/store instructions
220 ;; and floating point instructions described in section 1-7-4
221 ;; of Chapter 3 of the MN103E Series Instruction Manual is
222 ;; handled by the mn10300_adjust_sched_cost function.
224 ;; ----------------------------------------------------------------------
226 ;; ----------------------------------------------------------------------
230 (define_expand "movqi"
231 [(set (match_operand:QI 0 "nonimmediate_operand")
232 (match_operand:QI 1 "general_operand"))]
235 /* One of the ops has to be in a register. */
236 if (!register_operand (operand0, QImode)
237 && !register_operand (operand1, QImode))
238 operands[1] = force_reg (QImode, operand1);
241 (define_insn "*movqi_internal"
242 [(set (match_operand:QI 0 "nonimmediate_operand" "=*r,D*r,D*r,D,m,*z,d")
243 (match_operand:QI 1 "general_operand" " 0,D*r, i,m,D,d,*z"))]
244 "(register_operand (operands[0], QImode)
245 || register_operand (operands[1], QImode))"
247 switch (which_alternative)
258 return "movbu %1,%0";
263 [(set_attr_alternative "timings"
267 (if_then_else (eq_attr "cpu" "am34")
268 (const_int 13) (const_int 24))
269 (if_then_else (eq_attr "cpu" "am34")
270 (const_int 11) (const_int 22))
278 (define_expand "movhi"
279 [(set (match_operand:HI 0 "nonimmediate_operand")
280 (match_operand:HI 1 "general_operand"))]
283 /* One of the ops has to be in a register. */
284 if (!register_operand (operand1, HImode)
285 && !register_operand (operand0, HImode))
286 operands[1] = force_reg (HImode, operand1);
289 (define_insn "*movhi_internal"
290 [(set (match_operand:HI 0 "nonimmediate_operand" "=*r,D*r,D*r,D,m,*z,d")
291 (match_operand:HI 1 "general_operand" " 0, i,D*r,m,D,d,*z"))]
292 "(register_operand (operands[0], HImode)
293 || register_operand (operands[1], HImode))"
295 switch (which_alternative)
300 /* Note that "MOV imm8,An" is already zero-extending, and is 2 bytes.
301 We have "MOV imm16,Dn" at 3 bytes. The only win for the 4 byte
302 movu is for an 8-bit unsigned move into Rn. */
304 && CONST_INT_P (operands[1])
305 && IN_RANGE (INTVAL (operands[1]), 0x80, 0xff)
306 && REGNO_EXTENDED_P (REGNO (operands[0]), 1))
315 return "movhu %1,%0";
320 [(set_attr_alternative "timings"
323 (if_then_else (eq_attr "cpu" "am34")
324 (const_int 11) (const_int 22))
325 (if_then_else (eq_attr "cpu" "am34")
326 (const_int 13) (const_int 24))
327 (if_then_else (eq_attr "cpu" "am34")
328 (const_int 11) (const_int 22))
329 (if_then_else (eq_attr "cpu" "am34")
330 (const_int 11) (const_int 22))
331 (if_then_else (eq_attr "cpu" "am34")
332 (const_int 11) (const_int 22))
338 ;; We use this to handle addition of two values when one operand is the
339 ;; stack pointer and the other is a memory reference of some kind. Reload
340 ;; does not handle them correctly without this expander.
341 (define_expand "reload_plus_sp_const"
342 [(set (match_operand:SI 0 "register_operand" "=r")
343 (match_operand:SI 1 "impossible_plus_operand" ""))
344 (clobber (match_operand:SI 2 "register_operand" "=&A"))]
347 rtx dest, scratch, other;
350 scratch = operands[2];
352 other = XEXP (operands[1], 1);
353 if (other == stack_pointer_rtx)
354 other = XEXP (operands[1], 0);
356 if (true_regnum (other) == true_regnum (dest))
358 gcc_assert (true_regnum (scratch) != true_regnum (dest));
359 emit_move_insn (scratch, stack_pointer_rtx);
360 emit_insn (gen_addsi3 (dest, dest, scratch));
362 else if (TARGET_AM33 || REGNO_REG_CLASS (true_regnum (dest)) == ADDRESS_REGS)
364 emit_move_insn (dest, stack_pointer_rtx);
365 if (other == stack_pointer_rtx)
366 emit_insn (gen_addsi3 (dest, dest, dest));
367 else if (other != const0_rtx)
368 emit_insn (gen_addsi3 (dest, dest, other));
372 emit_move_insn (scratch, stack_pointer_rtx);
373 if (other == stack_pointer_rtx)
375 emit_move_insn (dest, scratch);
376 emit_insn (gen_addsi3 (dest, dest, dest));
378 else if (other != const0_rtx)
380 emit_move_insn (dest, other);
381 emit_insn (gen_addsi3 (dest, dest, scratch));
384 emit_move_insn (dest, scratch);
389 (define_expand "movsi"
390 [(set (match_operand:SI 0 "nonimmediate_operand")
391 (match_operand:SI 1 "general_operand"))]
394 /* One of the ops has to be in a register. */
395 if (!register_operand (operand1, SImode)
396 && !register_operand (operand0, SImode))
397 operands[1] = force_reg (SImode, operand1);
401 if (SYMBOLIC_CONST_P (operands[1]))
403 if (MEM_P (operands[0]))
404 operands[1] = force_reg (Pmode, operands[1]);
407 temp = (!can_create_pseudo_p ()
409 : gen_reg_rtx (Pmode));
410 operands[1] = mn10300_legitimize_pic_address (operands[1], temp);
413 else if (GET_CODE (operands[1]) == CONST
414 && GET_CODE (XEXP (operands[1], 0)) == PLUS
415 && SYMBOLIC_CONST_P (XEXP (XEXP (operands[1], 0), 0)))
417 temp = !can_create_pseudo_p () ? operands[0] : gen_reg_rtx (Pmode);
418 temp = mn10300_legitimize_pic_address (XEXP (XEXP (operands[1], 0), 0),
420 operands[1] = expand_binop (SImode, add_optab, temp,
421 XEXP (XEXP (operands[1], 0), 1),
422 (!can_create_pseudo_p ()
424 : gen_reg_rtx (Pmode)),
430 (define_insn "*movsi_internal"
431 [(set (match_operand:SI 0 "nonimmediate_operand"
432 "=r,r,r,r,m,r, A,*y,*y,*z,*d")
433 (match_operand:SI 1 "general_operand"
434 " 0,O,i,r,r,m,*y, A, i,*d,*z"))]
435 "register_operand (operands[0], SImode)
436 || register_operand (operands[1], SImode)"
438 switch (which_alternative)
442 case 1: /* imm-reg. */
444 /* See movhi for a discussion of sizes for 8-bit movu. Note that the
445 24-bit movu is 6 bytes, which is the same size as the full 32-bit
446 mov form for An and Dn. So again movu is only a win for Rn. */
448 && CONST_INT_P (operands[1])
449 && REGNO_EXTENDED_P (REGNO (operands[0]), 1))
451 HOST_WIDE_INT val = INTVAL (operands[1]);
452 if (IN_RANGE (val, 0x80, 0xff)
453 || IN_RANGE (val, 0x800000, 0xffffff))
457 case 3: /* reg-reg */
458 case 4: /* reg-mem */
459 case 5: /* mem-reg */
463 case 9: /* reg-mdr */
464 case 10: /* mdr-reg */
470 [(set_attr "isa" "*,*,*,*,*,*,*,*,am33,*,*")
471 (set_attr "liw" "*,either,*,either,*,*,*,*,*,*,*")
472 (set_attr "liw_op" "mov")
473 (set_attr_alternative "timings"
478 (if_then_else (eq_attr "cpu" "am34")
479 (const_int 11) (const_int 22))
480 (if_then_else (eq_attr "cpu" "am34")
481 (const_int 13) (const_int 24))
482 (if_then_else (eq_attr "cpu" "am34")
483 (const_int 11) (const_int 22))
484 (if_then_else (eq_attr "cpu" "am34")
485 (const_int 13) (const_int 24))
492 (define_expand "movsf"
493 [(set (match_operand:SF 0 "nonimmediate_operand")
494 (match_operand:SF 1 "general_operand"))]
497 /* One of the ops has to be in a register. */
498 if (!register_operand (operand1, SFmode)
499 && !register_operand (operand0, SFmode))
500 operands[1] = force_reg (SFmode, operand1);
503 (define_insn "*movsf_internal"
504 [(set (match_operand:SF 0 "nonimmediate_operand" "=rf,r,f,r,f,r,f,r,m,f,Q,z,d")
505 (match_operand:SF 1 "general_operand" " 0,F,F,r,f,f,r,m,r,Q,f,d,z"))]
507 && (register_operand (operands[0], SFmode)
508 || register_operand (operands[1], SFmode))"
510 switch (which_alternative)
532 [(set_attr_alternative "timings"
535 (if_then_else (eq_attr "cpu" "am34")
536 (const_int 47) (const_int 25))
538 (if_then_else (eq_attr "cpu" "am34")
539 (const_int 13) (const_int 14))
540 (if_then_else (eq_attr "cpu" "am34")
541 (const_int 13) (const_int 12))
542 (if_then_else (eq_attr "cpu" "am34")
543 (const_int 13) (const_int 14))
544 (if_then_else (eq_attr "cpu" "am34")
545 (const_int 13) (const_int 24))
546 (if_then_else (eq_attr "cpu" "am34")
547 (const_int 13) (const_int 24))
548 (if_then_else (eq_attr "cpu" "am34")
549 (const_int 13) (const_int 24))
550 (if_then_else (eq_attr "cpu" "am34")
551 (const_int 13) (const_int 24))
557 ;; If the flags register is not live, generate CLR instead of MOV 0.
558 ;; For MN103, this is only legal for DATA_REGS; for AM33 this is legal
559 ;; but not a win for ADDRESS_REGS.
561 [(set (match_operand:INT 0 "register_operand" "") (const_int 0))]
562 "peep2_regno_dead_p (0, CC_REG)
563 && (REGNO_DATA_P (REGNO (operands[0]), 1)
564 || REGNO_EXTENDED_P (REGNO (operands[0]), 1))"
565 [(parallel [(set (match_dup 0) (const_int 0))
566 (clobber (reg:CC CC_REG))])]
569 (define_insn "*mov<mode>_clr"
570 [(set (match_operand:INT 0 "register_operand" "=D")
572 (clobber (reg:CC CC_REG))]
577 ;; ----------------------------------------------------------------------
579 ;; ----------------------------------------------------------------------
581 (define_insn "addsi3"
582 [(set (match_operand:SI 0 "register_operand" "=r,r,r,!*y,!r")
583 (plus:SI (match_operand:SI 1 "register_operand" "%0,0,0, 0, r")
584 (match_operand:SI 2 "nonmemory_operand" "r,O,i, i, r")))
585 (clobber (reg:CC CC_REG))]
587 { return mn10300_output_add (operands, false); }
588 [(set_attr "timings" "11,11,11,11,22")
589 (set_attr "liw" "either,either,*,*,*")
590 (set_attr "liw_op" "add")]
593 ;; Note that ADD IMM,SP does not set the flags, so omit that here.
594 (define_insn "*addsi3_flags"
596 (compare (plus:SI (match_operand:SI 1 "register_operand" "%0, r")
597 (match_operand:SI 2 "nonmemory_operand" "ri, r"))
599 (set (match_operand:SI 0 "register_operand" "=r,!r")
600 (plus:SI (match_dup 1) (match_dup 2)))]
601 "reload_completed && mn10300_match_ccmode (insn, CCZNCmode)"
602 { return mn10300_output_add (operands, true); }
603 [(set_attr "timings" "11,22")]
606 ;; A helper to expand the above, with the CC_MODE filled in.
607 (define_expand "addsi3_flags"
608 [(parallel [(set (reg:CCZNC CC_REG)
609 (compare:CCZNC (plus:SI (match_dup 1) (match_dup 2))
611 (set (match_operand:SI 0 "register_operand")
612 (plus:SI (match_operand:SI 1 "register_operand")
613 (match_operand:SI 2 "nonmemory_operand")))])]
617 (define_insn "addc_internal"
618 [(set (match_operand:SI 0 "register_operand" "=D,r,r")
621 (ltu:SI (reg:CC CC_REG) (const_int 0))
622 (match_operand:SI 1 "register_operand" "%0,0,r"))
623 (match_operand:SI 2 "reg_or_am33_const_operand" " D,i,r")))
624 (clobber (reg:CC CC_REG))]
630 [(set_attr "isa" "*,am33,am33")]
633 (define_expand "adddi3"
634 [(set (match_operand:DI 0 "register_operand" "")
635 (plus:DI (match_operand:DI 1 "register_operand" "")
636 (match_operand:DI 2 "nonmemory_operand" "")))]
639 rtx op0l, op0h, op1l, op1h, op2l, op2h;
641 op0l = gen_lowpart (SImode, operands[0]);
642 op1l = gen_lowpart (SImode, operands[1]);
643 op2l = gen_lowpart (SImode, operands[2]);
644 op0h = gen_highpart (SImode, operands[0]);
645 op1h = gen_highpart (SImode, operands[1]);
646 op2h = gen_highpart_mode (SImode, DImode, operands[2]);
648 if (!reg_or_am33_const_operand (op2h, SImode))
649 op2h = force_reg (SImode, op2h);
651 emit_insn (gen_adddi3_internal (op0l, op0h, op1l, op2l, op1h, op2h));
655 ;; Note that reload only supports one commutative operand. Thus we cannot
656 ;; auto-swap both the high and low outputs with their matching constraints.
657 ;; For MN103, we're strapped for registers but thankfully the alternatives
658 ;; are few. For AM33, it becomes much easier to not represent the early
659 ;; clobber and 6 permutations of immediate and three-operand adds, but
660 ;; instead allocate a scratch register and do the expansion by hand.
662 (define_insn_and_split "adddi3_internal"
663 [(set (match_operand:SI 0 "register_operand" "=r, r, r")
664 (plus:SI (match_operand:SI 2 "register_operand" "%0, 0, r")
665 (match_operand:SI 3 "nonmemory_operand" "ri,ri,ri")))
666 (set (match_operand:SI 1 "register_operand" "=D, D, r")
669 (ltu:SI (plus:SI (match_dup 2) (match_dup 3)) (match_dup 2))
670 (match_operand:SI 4 "register_operand" " 1, D, r"))
671 (match_operand:SI 5 "reg_or_am33_const_operand" " D, 1,ri")))
672 (clobber (match_scratch:SI 6 "=X, X,&r"))
673 (clobber (reg:CC CC_REG))]
679 rtx op0l = operands[0];
680 rtx op0h = operands[1];
681 rtx op1l = operands[2];
682 rtx op2l = operands[3];
683 rtx op1h = operands[4];
684 rtx op2h = operands[5];
685 rtx scratch = operands[6];
688 if (reg_overlap_mentioned_p (op0l, op1h))
690 emit_move_insn (scratch, op0l);
692 if (reg_overlap_mentioned_p (op0l, op2h))
695 else if (reg_overlap_mentioned_p (op0l, op2h))
697 emit_move_insn (scratch, op0l);
701 if (rtx_equal_p (op0l, op1l))
703 else if (rtx_equal_p (op0l, op2l))
704 x = op1l, op1l = op2l, op2l = x;
707 gcc_assert (TARGET_AM33);
710 emit_move_insn (op0l, op2l);
715 emit_insn (gen_addsi3_flags (op0l, op1l, op2l));
717 if (rtx_equal_p (op0h, op1h))
719 else if (rtx_equal_p (op0h, op2h))
720 x = op1h, op1h = op2h, op2h = x;
723 gcc_assert (TARGET_AM33);
726 emit_move_insn (op0h, op2h);
731 emit_insn (gen_addc_internal (op0h, op1h, op2h));
734 [(set_attr "isa" "*,*,am33")]
737 ;; The following pattern is generated by combine when it proves that one
738 ;; of the inputs to the low-part of the double-word add is zero, and thus
739 ;; no carry is generated into the high-part.
741 (define_insn_and_split "*adddi3_degenerate"
742 [(set (match_operand:SI 0 "register_operand" "=&r,&r")
743 (match_operand:SI 2 "nonmemory_operand" " 0, 0"))
744 (set (match_operand:SI 1 "register_operand" "=r , r")
745 (plus:SI (match_operand:SI 3 "register_operand" "%1 , r")
746 (match_operand:SI 4 "nonmemory_operand" "ri, r")))
747 (clobber (reg:CC CC_REG))]
753 rtx scratch = NULL_RTX;
754 if (!rtx_equal_p (operands[0], operands[2]))
756 gcc_assert (!reg_overlap_mentioned_p (operands[0], operands[1]));
757 if (reg_overlap_mentioned_p (operands[0], operands[3])
758 || reg_overlap_mentioned_p (operands[0], operands[4]))
760 scratch = gen_reg_rtx (SImode);
761 emit_move_insn (scratch, operands[2]);
764 emit_move_insn (operands[0], operands[2]);
766 emit_insn (gen_addsi3 (operands[1], operands[3], operands[4]));
768 emit_move_insn (operands[0], scratch);
772 ;; ----------------------------------------------------------------------
773 ;; SUBTRACT INSTRUCTIONS
774 ;; ----------------------------------------------------------------------
776 (define_insn "subsi3"
777 [(set (match_operand:SI 0 "register_operand" "=r,r,r,r")
778 (minus:SI (match_operand:SI 1 "register_operand" "0,0,0,r")
779 (match_operand:SI 2 "nonmemory_operand" "r,O,i,r")))
780 (clobber (reg:CC CC_REG))]
787 [(set_attr "isa" "*,*,*,am33")
788 (set_attr "liw" "either,either,*,*")
789 (set_attr "liw_op" "sub")
790 (set_attr "timings" "11,11,11,22")]
793 (define_insn "*subsi3_flags"
795 (compare (minus:SI (match_operand:SI 1 "register_operand" "0, r")
796 (match_operand:SI 2 "nonmemory_operand" "ri,r"))
798 (set (match_operand:SI 0 "register_operand" "=r, r")
799 (minus:SI (match_dup 1) (match_dup 2)))]
800 "reload_completed && mn10300_match_ccmode (insn, CCZNCmode)"
804 [(set_attr "isa" "*,am33")
805 (set_attr "timings" "11,22")]
808 ;; A helper to expand the above, with the CC_MODE filled in.
809 (define_expand "subsi3_flags"
810 [(parallel [(set (reg:CCZNC CC_REG)
811 (compare:CCZNC (minus:SI (match_dup 1) (match_dup 2))
813 (set (match_operand:SI 0 "register_operand")
814 (minus:SI (match_operand:SI 1 "register_operand")
815 (match_operand:SI 2 "nonmemory_operand")))])]
819 (define_insn "subc_internal"
820 [(set (match_operand:SI 0 "register_operand" "=D,r,r")
822 (minus:SI (match_operand:SI 1 "register_operand" " 0,0,r")
823 (match_operand:SI 2 "reg_or_am33_const_operand" " D,i,r"))
824 (geu:SI (reg:CC CC_REG) (const_int 0))))
825 (clobber (reg:CC CC_REG))]
831 [(set_attr "isa" "*,am33,am33")]
834 (define_expand "subdi3"
835 [(set (match_operand:DI 0 "register_operand" "")
836 (minus:DI (match_operand:DI 1 "register_operand" "")
837 (match_operand:DI 2 "nonmemory_operand" "")))]
840 rtx op0l, op0h, op1l, op1h, op2l, op2h;
842 op0l = gen_lowpart (SImode, operands[0]);
843 op1l = gen_lowpart (SImode, operands[1]);
844 op2l = gen_lowpart (SImode, operands[2]);
845 op0h = gen_highpart (SImode, operands[0]);
846 op1h = gen_highpart (SImode, operands[1]);
847 op2h = gen_highpart_mode (SImode, DImode, operands[2]);
849 if (!reg_or_am33_const_operand (op2h, SImode))
850 op2h = force_reg (SImode, op2h);
852 emit_insn (gen_subdi3_internal (op0l, op0h, op1l, op1h, op2l, op2h));
856 ;; As with adddi3, the use of the scratch register helps reduce the
857 ;; number of permutations for AM33.
858 ;; ??? The early clobber on op0 avoids a reload bug wherein both output
859 ;; registers are set the same. Consider negate, where both op2 and op3
860 ;; are 0, are csed to the same input register, and reload fails to undo
861 ;; the cse when satisfying the matching constraints.
863 (define_insn_and_split "subdi3_internal"
864 [(set (match_operand:SI 0 "register_operand" "=&r, r")
866 (match_operand:SI 2 "register_operand" " 0, r")
867 (match_operand:SI 4 "nonmemory_operand" " ri,ri")))
868 (set (match_operand:SI 1 "register_operand" "=D , r")
871 (match_operand:SI 3 "register_operand" " 1, r")
872 (match_operand:SI 5 "reg_or_am33_const_operand" " D,ri"))
873 (ltu:SI (match_dup 2) (match_dup 4))))
874 (clobber (match_scratch:SI 6 "=X ,&r"))
875 (clobber (reg:CC CC_REG))]
881 rtx op0l = operands[0];
882 rtx op0h = operands[1];
883 rtx op1l = operands[2];
884 rtx op1h = operands[3];
885 rtx op2l = operands[4];
886 rtx op2h = operands[5];
887 rtx scratch = operands[6];
889 if (reg_overlap_mentioned_p (op0l, op1h))
891 emit_move_insn (scratch, op0l);
893 if (reg_overlap_mentioned_p (op0l, op2h))
896 else if (reg_overlap_mentioned_p (op0l, op2h))
898 emit_move_insn (scratch, op0l);
902 if (!rtx_equal_p (op0l, op1l))
904 gcc_assert (TARGET_AM33);
907 emit_move_insn (op0l, op1l);
911 emit_insn (gen_subsi3_flags (op0l, op1l, op2l));
913 if (!rtx_equal_p (op0h, op1h))
915 gcc_assert (TARGET_AM33);
918 emit_move_insn (op0h, op1h);
922 emit_insn (gen_subc_internal (op0h, op1h, op2h));
925 [(set_attr "isa" "*,am33")]
928 ;; The following pattern is generated by combine when it proves that one
929 ;; of the inputs to the low-part of the double-word sub is zero, and thus
930 ;; no carry is generated into the high-part.
932 (define_insn_and_split "*subdi3_degenerate"
933 [(set (match_operand:SI 0 "register_operand" "=&r,&r")
934 (match_operand:SI 2 "nonmemory_operand" " 0, 0"))
935 (set (match_operand:SI 1 "register_operand" "=r , r")
936 (minus:SI (match_operand:SI 3 "register_operand" " 1, r")
937 (match_operand:SI 4 "nonmemory_operand" " ri, r")))
938 (clobber (reg:CC CC_REG))]
944 rtx scratch = NULL_RTX;
945 if (!rtx_equal_p (operands[0], operands[2]))
947 gcc_assert (!reg_overlap_mentioned_p (operands[0], operands[1]));
948 if (reg_overlap_mentioned_p (operands[0], operands[3])
949 || reg_overlap_mentioned_p (operands[0], operands[4]))
951 scratch = gen_reg_rtx (SImode);
952 emit_move_insn (scratch, operands[2]);
955 emit_move_insn (operands[0], operands[2]);
957 emit_insn (gen_subsi3 (operands[1], operands[3], operands[4]));
959 emit_move_insn (operands[0], scratch);
963 (define_insn_and_split "negsi2"
964 [(set (match_operand:SI 0 "register_operand" "=D,&r")
965 (neg:SI (match_operand:SI 1 "register_operand" " 0, r")))
966 (clobber (reg:CC CC_REG))]
969 "&& reload_completed"
972 /* Recall that twos-compliment is ones-compliment plus one. When
973 allocated in DATA_REGS this is 2+1 bytes; otherwise (for am33)
976 For AM33, it would have been possible to load zero and use the
977 three-address subtract to have a total size of 3+4*N bytes for
978 multiple negations, plus increased throughput. Not attempted here. */
980 if (true_regnum (operands[0]) == true_regnum (operands[1]))
982 emit_insn (gen_one_cmplsi2 (operands[0], operands[0]));
983 emit_insn (gen_addsi3 (operands[0], operands[0], const1_rtx));
987 emit_move_insn (operands[0], const0_rtx);
988 emit_insn (gen_subsi3 (operands[0], operands[0], operands[1]));
993 ;; ----------------------------------------------------------------------
994 ;; MULTIPLY INSTRUCTIONS
995 ;; ----------------------------------------------------------------------
997 ;; ??? Note that AM33 has a third multiply variant that puts the high part
998 ;; into the MDRQ register, however this variant also constrains the inputs
999 ;; to be in DATA_REGS and thus isn't as helpful as it might be considering
1000 ;; the existence of the 4-operand multiply. Nor is there a set of divide
1001 ;; insns that use MDRQ. Given that there is an IMM->MDRQ insn, this would
1002 ;; have been very handy for starting udivmodsi4...
1004 (define_expand "mulsidi3"
1005 [(set (match_operand:DI 0 "register_operand" "")
1006 (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" ""))
1007 (sign_extend:DI (match_operand:SI 2 "register_operand" ""))))]
1010 emit_insn (gen_mulsidi3_internal (gen_lowpart (SImode, operands[0]),
1011 gen_highpart (SImode, operands[0]),
1012 operands[1], operands[2]));
1016 (define_insn "mulsidi3_internal"
1017 [(set (match_operand:SI 0 "register_operand" "=D,r")
1018 (mult:SI (match_operand:SI 2 "register_operand" "%0,r")
1019 (match_operand:SI 3 "register_operand" " D,r")))
1020 (set (match_operand:SI 1 "register_operand" "=z,r")
1023 (mult:DI (sign_extend:DI (match_dup 2))
1024 (sign_extend:DI (match_dup 3)))
1026 (clobber (reg:CC CC_REG))]
1029 if (which_alternative == 1)
1030 return "mul %2,%3,%1,%0";
1031 else if (TARGET_MULT_BUG)
1032 return "nop\;nop\;mul %3,%0";
1036 [(set_attr "isa" "*,am33")
1037 (set (attr "timings")
1038 (if_then_else (eq_attr "cpu" "am34") (const_int 24) (const_int 23)))]
1041 (define_expand "umulsidi3"
1042 [(set (match_operand:DI 0 "register_operand" "")
1043 (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" ""))
1044 (zero_extend:DI (match_operand:SI 2 "register_operand" ""))))
1045 (clobber (reg:CC CC_REG))]
1048 emit_insn (gen_umulsidi3_internal (gen_lowpart (SImode, operands[0]),
1049 gen_highpart (SImode, operands[0]),
1050 operands[1], operands[2]));
1054 (define_insn "umulsidi3_internal"
1055 [(set (match_operand:SI 0 "register_operand" "=D,r")
1056 (mult:SI (match_operand:SI 2 "register_operand" "%0,r")
1057 (match_operand:SI 3 "register_operand" " D,r")))
1058 (set (match_operand:SI 1 "register_operand" "=z,r")
1061 (mult:DI (zero_extend:DI (match_dup 2))
1062 (zero_extend:DI (match_dup 3)))
1064 (clobber (reg:CC CC_REG))]
1067 if (which_alternative == 1)
1068 return "mulu %2,%3,%1,%0";
1069 else if (TARGET_MULT_BUG)
1070 return "nop\;nop\;mulu %3,%0";
1072 return "mulu %3,%0";
1074 [(set_attr "isa" "*,am33")
1075 (set (attr "timings")
1076 (if_then_else (eq_attr "cpu" "am34") (const_int 24) (const_int 23)))]
1079 (define_expand "mulsi3"
1080 [(parallel [(set (match_operand:SI 0 "register_operand")
1081 (mult:SI (match_operand:SI 1 "register_operand")
1082 (match_operand:SI 2 "reg_or_am33_const_operand")))
1083 (clobber (match_scratch:SI 3))
1084 (clobber (reg:CC CC_REG))])]
1088 (define_insn "*mulsi3"
1089 [(set (match_operand:SI 0 "register_operand" "=D, r,r")
1090 (mult:SI (match_operand:SI 2 "register_operand" "%0, 0,r")
1091 (match_operand:SI 3 "reg_or_am33_const_operand" " D,ri,r")))
1092 (clobber (match_scratch:SI 1 "=z, z,r"))
1093 (clobber (reg:CC CC_REG))]
1096 if (which_alternative == 2)
1097 return "mul %2,%3,%1,%0";
1098 else if (TARGET_MULT_BUG)
1099 return "nop\;nop\;mul %3,%0";
1103 [(set_attr "isa" "*,am33,am33")
1104 (set (attr "timings")
1105 (if_then_else (eq_attr "cpu" "am34") (const_int 24) (const_int 23)))]
1108 (define_expand "udivmodsi4"
1109 [(parallel [(set (match_operand:SI 0 "register_operand")
1110 (udiv:SI (match_operand:SI 1 "register_operand")
1111 (match_operand:SI 2 "register_operand")))
1112 (set (match_operand:SI 3 "register_operand")
1113 (umod:SI (match_dup 1) (match_dup 2)))
1115 (clobber (reg:CC CC_REG))])]
1119 ;; Note the trick to get reload to put the zero into the MDR register,
1120 ;; rather than exposing the load early and letting CSE or someone try
1121 ;; to share the zeros between division insns. Which tends to result
1122 ;; in sequences like 0->r0->d0->mdr.
1124 (define_insn "*udivmodsi4"
1125 [(set (match_operand:SI 0 "register_operand" "=D")
1126 (udiv:SI (match_operand:SI 2 "register_operand" " 0")
1127 (match_operand:SI 3 "register_operand" " D")))
1128 (set (match_operand:SI 1 "register_operand" "=z")
1129 (umod:SI (match_dup 2) (match_dup 3)))
1130 (use (match_operand:SI 4 "nonmemory_operand" " 1"))
1131 (clobber (reg:CC CC_REG))]
1134 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
1135 (const_int 3839) (const_int 4243)))]
1138 (define_expand "divmodsi4"
1139 [(parallel [(set (match_operand:SI 0 "register_operand" "")
1140 (div:SI (match_operand:SI 1 "register_operand" "")
1141 (match_operand:SI 2 "register_operand" "")))
1142 (set (match_operand:SI 3 "register_operand" "")
1143 (mod:SI (match_dup 1) (match_dup 2)))
1145 (clobber (reg:CC CC_REG))])]
1148 operands[4] = gen_reg_rtx (SImode);
1149 emit_insn (gen_ext_internal (operands[4], operands[1]));
1152 ;; ??? Ideally we'd represent this via shift, but it seems like adding a
1153 ;; special-case pattern for (ashiftrt x 31) is just as likely to result
1154 ;; in poor register allocation choices.
1155 (define_insn "ext_internal"
1156 [(set (match_operand:SI 0 "register_operand" "=z")
1157 (unspec:SI [(match_operand:SI 1 "register_operand" "D")] UNSPEC_EXT))]
1162 (define_insn "*divmodsi4"
1163 [(set (match_operand:SI 0 "register_operand" "=D")
1164 (div:SI (match_operand:SI 2 "register_operand" " 0")
1165 (match_operand:SI 3 "register_operand" " D")))
1166 (set (match_operand:SI 1 "register_operand" "=z")
1167 (mod:SI (match_dup 2) (match_dup 3)))
1168 (use (match_operand:SI 4 "register_operand" " 1"))
1169 (clobber (reg:CC CC_REG))]
1172 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
1173 (const_int 3839) (const_int 4243)))]
1177 ;; ----------------------------------------------------------------------
1179 ;; ----------------------------------------------------------------------
1181 (define_insn "andsi3"
1182 [(set (match_operand:SI 0 "register_operand" "=D,D,r")
1183 (and:SI (match_operand:SI 1 "register_operand" "%0,0,r")
1184 (match_operand:SI 2 "nonmemory_operand" " i,D,r")))
1185 (clobber (reg:CC CC_REG))]
1191 [(set_attr "isa" "*,*,am33")
1192 (set_attr "liw" "*,op1,*")
1193 (set_attr "liw_op" "and")
1194 (set_attr "timings" "22,11,11")]
1197 (define_insn "*andsi3_flags"
1199 (compare (and:SI (match_operand:SI 1 "register_operand" "%0,0,r")
1200 (match_operand:SI 2 "nonmemory_operand" " i,D,r"))
1202 (set (match_operand:SI 0 "register_operand" "=D,D,r")
1203 (and:SI (match_dup 1) (match_dup 2)))]
1204 "reload_completed && mn10300_match_ccmode (insn, CCZNmode)"
1209 [(set_attr "isa" "*,*,am33")
1210 (set_attr "timings" "22,11,11")]
1213 ;; Make sure we generate extensions instead of ANDs.
1216 [(parallel [(set (match_operand:SI 0 "register_operand" "")
1217 (and:SI (match_operand:SI 1 "register_operand" "")
1219 (clobber (reg:CC CC_REG))])]
1221 [(set (match_dup 0) (zero_extend:SI (match_dup 1)))]
1222 { operands[1] = gen_lowpart (QImode, operands[1]); }
1226 [(parallel [(set (match_operand:SI 0 "register_operand" "")
1227 (and:SI (match_operand:SI 1 "register_operand" "")
1229 (clobber (reg:CC CC_REG))])]
1231 [(set (match_dup 0) (zero_extend:SI (match_dup 1)))]
1232 { operands[1] = gen_lowpart (HImode, operands[1]); }
1235 ;; Split AND by an appropriate constant into two shifts. Recall that
1236 ;; operations with a full 32-bit immediate require an extra cycle, so
1237 ;; this is a size optimization with no speed penalty. This only applies
1238 ;; do DATA_REGS; the shift insns that AM33 adds are too large for a win.
1241 [(parallel [(set (match_operand:SI 0 "register_operand" "")
1242 (and:SI (match_dup 0)
1243 (match_operand:SI 1 "const_int_operand" "")))
1244 (clobber (reg:CC CC_REG))])]
1246 && REGNO_DATA_P (true_regnum (operands[0]), 1)
1247 && mn10300_split_and_operand_count (operands[1]) != 0"
1250 int count = mn10300_split_and_operand_count (operands[1]);
1253 emit_insn (gen_lshrsi3 (operands[0], operands[0], GEN_INT (count)));
1254 emit_insn (gen_ashlsi3 (operands[0], operands[0], GEN_INT (count)));
1258 emit_insn (gen_ashlsi3 (operands[0], operands[0], GEN_INT (-count)));
1259 emit_insn (gen_lshrsi3 (operands[0], operands[0], GEN_INT (-count)));
1264 ;; ----------------------------------------------------------------------
1266 ;; ----------------------------------------------------------------------
1268 (define_insn "iorsi3"
1269 [(set (match_operand:SI 0 "register_operand" "=D,D,r")
1270 (ior:SI (match_operand:SI 1 "register_operand" "%0,0,r")
1271 (match_operand:SI 2 "nonmemory_operand" " i,D,r")))
1272 (clobber (reg:CC CC_REG))]
1278 [(set_attr "isa" "*,*,am33")
1279 (set_attr "liw" "*,op1,*")
1280 (set_attr "liw_op" "or")
1281 (set_attr "timings" "22,11,11")]
1284 (define_insn "*iorsi3_flags"
1286 (compare (ior:SI (match_operand:SI 1 "register_operand" "%0,0,r")
1287 (match_operand:SI 2 "nonmemory_operand" " i,D,r"))
1289 (set (match_operand:SI 0 "register_operand" "=D,D,r")
1290 (ior:SI (match_dup 1) (match_dup 2)))]
1291 "reload_completed && mn10300_match_ccmode (insn, CCZNmode)"
1296 [(set_attr "isa" "*,*,am33")
1297 (set_attr "timings" "22,11,11")]
1300 ;; ----------------------------------------------------------------------
1302 ;; ----------------------------------------------------------------------
1304 (define_insn "xorsi3"
1305 [(set (match_operand:SI 0 "register_operand" "=D,D,r")
1306 (xor:SI (match_operand:SI 1 "register_operand" "%0,0,r")
1307 (match_operand:SI 2 "nonmemory_operand" " i,D,r")))
1308 (clobber (reg:CC CC_REG))]
1314 [(set_attr "isa" "*,*,am33")
1315 (set_attr "liw" "*,op1,*")
1316 (set_attr "liw_op" "xor")
1317 (set_attr "timings" "22,11,11")]
1320 (define_insn "*xorsi3_flags"
1322 (compare (xor:SI (match_operand:SI 1 "register_operand" "%0,0,r")
1323 (match_operand:SI 2 "nonmemory_operand" " i,D,r"))
1325 (set (match_operand:SI 0 "register_operand" "=D,D,r")
1326 (xor:SI (match_dup 1) (match_dup 2)))]
1327 "reload_completed && mn10300_match_ccmode (insn, CCZNmode)"
1332 [(set_attr "isa" "*,*,am33")
1333 (set_attr "timings" "22,11,11")]
1336 ;; ----------------------------------------------------------------------
1338 ;; ----------------------------------------------------------------------
1340 (define_insn "one_cmplsi2"
1341 [(set (match_operand:SI 0 "register_operand" "=D")
1342 (not:SI (match_operand:SI 1 "register_operand" " 0")))
1343 (clobber (reg:CC CC_REG))]
1348 (define_insn "*one_cmplsi2_flags"
1350 (compare (not:SI (match_operand:SI 1 "register_operand" "0"))
1352 (set (match_operand:SI 0 "register_operand" "=D")
1353 (not:SI (match_dup 1)))]
1354 "reload_completed && mn10300_match_ccmode (insn, CCZNmode)"
1358 ;; ----------------------------------------------------------------------
1359 ;; COMPARE AND BRANCH INSTRUCTIONS
1360 ;; ----------------------------------------------------------------------
1362 ;; We expand the comparison into a single insn so that it will not be split
1364 (define_expand "cbranchsi4"
1367 (match_operator 0 "ordered_comparison_operator"
1368 [(match_operand:SI 1 "register_operand")
1369 (match_operand:SI 2 "nonmemory_operand")])
1370 (label_ref (match_operand 3 ""))
1376 (define_insn_and_split "*cbranchsi4_cmp"
1378 (if_then_else (match_operator 3 "ordered_comparison_operator"
1379 [(match_operand:SI 0 "register_operand" "r")
1380 (match_operand:SI 1 "nonmemory_operand" "ri")])
1381 (match_operand 2 "label_ref_operand" "")
1388 mn10300_split_cbranch (CCmode, operands[3], operands[2]);
1392 (define_insn "cmpsi"
1394 (compare (match_operand:SI 0 "register_operand" "r,r,r")
1395 (match_operand:SI 1 "nonmemory_operand" "r,O,i")))]
1398 /* The operands of CMP must be distinct registers. In the case where
1399 we've failed to optimize the comparison of a register to itself, we
1400 must use another method to set the Z flag. We can achieve this
1401 effect with a BTST 0,D0. This will not alter the contents of D0;
1402 the use of d0 is arbitrary; any data register would work. */
1403 if (rtx_equal_p (operands[0], operands[1]))
1408 [(set_attr_alternative "timings"
1409 [(if_then_else (eq_attr "cpu" "am34") (const_int 11) (const_int 22))
1410 (if_then_else (eq_attr "cpu" "am34") (const_int 11) (const_int 22))
1411 (if_then_else (eq_attr "cpu" "am34") (const_int 11) (const_int 22))])
1412 (set_attr "liw" "either,either,*")
1413 (set_attr "liw_op" "cmp")]
1416 (define_insn "*integer_conditional_branch"
1418 (if_then_else (match_operator 0 "comparison_operator"
1419 [(match_operand 2 "int_mode_flags" "")
1421 (label_ref (match_operand 1 "" ""))
1427 (define_insn_and_split "*cbranchsi4_btst"
1430 (match_operator 3 "CCZN_comparison_operator"
1431 [(and:SI (match_operand:SI 0 "register_operand" "D")
1432 (match_operand:SI 1 "immediate_operand" "i"))
1434 (match_operand 2 "label_ref_operand" "")
1441 mn10300_split_cbranch (CCZNmode, operands[3], operands[2]);
1445 (define_insn "*btstsi"
1446 [(set (reg:CCZN CC_REG)
1448 (and:SI (match_operand:SI 0 "register_operand" "D")
1449 (match_operand:SI 1 "immediate_operand" "i"))
1455 (define_expand "cbranchsf4"
1458 (match_operator 0 "ordered_comparison_operator"
1459 [(match_operand:SF 1 "register_operand")
1460 (match_operand:SF 2 "nonmemory_operand")])
1461 (label_ref (match_operand 3 ""))
1467 (define_insn_and_split "*cbranchsf4_cmp"
1469 (if_then_else (match_operator 3 "ordered_comparison_operator"
1470 [(match_operand:SF 0 "register_operand" "f")
1471 (match_operand:SF 1 "nonmemory_operand" "fF")])
1472 (match_operand 2 "label_ref_operand" "")
1477 "&& reload_completed"
1480 mn10300_split_cbranch (CC_FLOATmode, operands[3], operands[2]);
1484 (define_insn "*am33_cmpsf"
1485 [(set (reg:CC_FLOAT CC_REG)
1486 (compare:CC_FLOAT (match_operand:SF 0 "register_operand" "f")
1487 (match_operand:SF 1 "nonmemory_operand" "fF")))]
1488 "TARGET_AM33_2 && reload_completed"
1490 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
1491 (const_int 17) (const_int 25)))]
1494 (define_insn "*float_conditional_branch"
1496 (if_then_else (match_operator 0 "comparison_operator"
1497 [(reg:CC_FLOAT CC_REG) (const_int 0)])
1498 (label_ref (match_operand 1 "" ""))
1500 "TARGET_AM33_2 && reload_completed"
1502 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
1503 (const_int 44) (const_int 33)))]
1506 ;; Unconditional and other jump instructions.
1510 (label_ref (match_operand 0 "" "")))]
1513 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
1514 (const_int 11) (const_int 44)))]
1517 (define_insn "indirect_jump"
1518 [(set (pc) (match_operand:SI 0 "register_operand" "a"))]
1521 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
1522 (const_int 11) (const_int 33)))]
1525 (define_expand "builtin_setjmp_receiver"
1526 [(match_operand 0 "" "")]
1529 emit_insn (gen_load_pic ());
1533 (define_expand "casesi"
1534 [(match_operand:SI 0 "register_operand")
1535 (match_operand:SI 1 "immediate_operand")
1536 (match_operand:SI 2 "immediate_operand")
1537 (match_operand 3 "" "") (match_operand 4 "")]
1540 rtx table = gen_reg_rtx (SImode);
1541 rtx index = gen_reg_rtx (SImode);
1542 rtx addr = gen_reg_rtx (Pmode);
1545 emit_move_insn (table, gen_rtx_LABEL_REF (VOIDmode, operands[3]));
1546 emit_insn (gen_addsi3 (index, operands[0], GEN_INT (- INTVAL (operands[1]))));
1547 test = gen_rtx_fmt_ee (GTU, VOIDmode, index, operands[2]);
1548 emit_jump_insn (gen_cbranchsi4 (test, index, operands[2], operands[4]));
1550 emit_insn (gen_ashlsi3 (index, index, const2_rtx));
1551 emit_move_insn (addr, gen_rtx_MEM (SImode,
1552 gen_rtx_PLUS (SImode, table, index)));
1554 emit_insn (gen_addsi3 (addr, addr, table));
1556 emit_jump_insn (gen_tablejump (addr, operands[3]));
1560 (define_insn "tablejump"
1561 [(set (pc) (match_operand:SI 0 "register_operand" "a"))
1562 (use (label_ref (match_operand 1 "" "")))]
1565 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
1566 (const_int 11) (const_int 33)))]
1569 ;; Call subroutine with no return value.
1571 (define_expand "call"
1572 [(call (match_operand:QI 0 "general_operand")
1573 (match_operand:SI 1 "general_operand"))]
1576 rtx fn = XEXP (operands[0], 0);
1578 if (flag_pic && GET_CODE (fn) == SYMBOL_REF)
1580 if (MN10300_GLOBAL_P (fn))
1582 /* The PLT code won't run on AM30, but then, there's no
1583 shared library support for AM30 either, so we just assume
1584 the linker is going to adjust all @PLT relocs to the
1586 emit_use (pic_offset_table_rtx);
1587 fn = gen_rtx_UNSPEC (SImode, gen_rtvec (1, fn), UNSPEC_PLT);
1590 fn = gen_rtx_UNSPEC (SImode, gen_rtvec (1, fn), UNSPEC_PIC);
1592 if (! call_address_operand (fn, VOIDmode))
1593 fn = force_reg (SImode, fn);
1595 XEXP (operands[0], 0) = fn;
1598 (define_insn "*call_internal"
1599 [(call (mem:QI (match_operand:SI 0 "call_address_operand" "a,S"))
1600 (match_operand:SI 1 "" ""))]
1605 [(set_attr_alternative "timings"
1606 [(if_then_else (eq_attr "cpu" "am34")
1607 (const_int 33) (const_int 44))
1608 (if_then_else (eq_attr "cpu" "am34")
1609 (const_int 55) (const_int 33))
1614 ;; Call subroutine, returning value in operand 0
1615 ;; (which must be a hard register).
1617 (define_expand "call_value"
1618 [(set (match_operand 0 "")
1619 (call (match_operand:QI 1 "general_operand")
1620 (match_operand:SI 2 "general_operand")))]
1623 rtx fn = XEXP (operands[1], 0);
1625 if (flag_pic && GET_CODE (fn) == SYMBOL_REF)
1627 if (MN10300_GLOBAL_P (fn))
1629 /* The PLT code won't run on AM30, but then, there's no
1630 shared library support for AM30 either, so we just assume
1631 the linker is going to adjust all @PLT relocs to the
1633 emit_use (pic_offset_table_rtx);
1634 fn = gen_rtx_UNSPEC (SImode, gen_rtvec (1, fn), UNSPEC_PLT);
1637 fn = gen_rtx_UNSPEC (SImode, gen_rtvec (1, fn), UNSPEC_PIC);
1639 if (! call_address_operand (fn, VOIDmode))
1640 fn = force_reg (SImode, fn);
1642 XEXP (operands[1], 0) = fn;
1645 (define_insn "call_value_internal"
1646 [(set (match_operand 0 "" "")
1647 (call (mem:QI (match_operand:SI 1 "call_address_operand" "a,S"))
1648 (match_operand:SI 2 "" "")))]
1653 [(set_attr_alternative "timings"
1654 [(if_then_else (eq_attr "cpu" "am34")
1655 (const_int 33) (const_int 44))
1656 (if_then_else (eq_attr "cpu" "am34")
1657 (const_int 55) (const_int 33))
1662 (define_expand "untyped_call"
1663 [(parallel [(call (match_operand 0 "")
1665 (match_operand 1 "")
1666 (match_operand 2 "")])]
1671 emit_call_insn (gen_call (operands[0], const0_rtx));
1673 for (i = 0; i < XVECLEN (operands[2], 0); i++)
1675 rtx set = XVECEXP (operands[2], 0, i);
1676 emit_move_insn (SET_DEST (set), SET_SRC (set));
1687 ;; ----------------------------------------------------------------------
1688 ;; EXTEND INSTRUCTIONS
1689 ;; ----------------------------------------------------------------------
1691 (define_insn "zero_extendqisi2"
1692 [(set (match_operand:SI 0 "register_operand" "=D,D,r")
1694 (match_operand:QI 1 "nonimmediate_operand" " 0,m,r")))]
1700 [(set_attr "isa" "*,*,am33")
1701 (set_attr_alternative "timings"
1703 (if_then_else (eq_attr "cpu" "am34")
1704 (const_int 13) (const_int 24))
1709 (define_insn "zero_extendhisi2"
1710 [(set (match_operand:SI 0 "register_operand" "=D,D,r")
1712 (match_operand:HI 1 "nonimmediate_operand" " 0,m,r")))]
1718 [(set_attr "isa" "*,*,am33")
1719 (set_attr_alternative "timings"
1721 (if_then_else (eq_attr "cpu" "am34")
1722 (const_int 13) (const_int 24))
1726 (define_insn "extendqisi2"
1727 [(set (match_operand:SI 0 "register_operand" "=D,r")
1729 (match_operand:QI 1 "register_operand" "0,r")))]
1734 [(set_attr "isa" "*,am33")]
1737 (define_insn "extendhisi2"
1738 [(set (match_operand:SI 0 "register_operand" "=D,r")
1740 (match_operand:HI 1 "register_operand" "0,r")))]
1745 [(set_attr "isa" "*,am33")]
1748 ;; ----------------------------------------------------------------------
1750 ;; ----------------------------------------------------------------------
1752 (define_insn "ashlsi3"
1753 [(set (match_operand:SI 0 "register_operand" "=r,D,d,d,D,D,D,r")
1755 (match_operand:SI 1 "register_operand" " 0,0,0,0,0,0,0,r")
1756 (match_operand:QI 2 "nonmemory_operand" " J,K,M,L,D,O,i,r")))
1757 (clobber (reg:CC CC_REG))]
1768 [(set_attr "isa" "*,*,*,*,*,*,*,am33")
1769 (set_attr "liw" "op2,op2,op2,op2,op2,op2,*,*")
1770 (set_attr "liw_op" "asl")
1771 (set_attr "timings" "11,11,22,22,11,11,11,11")]
1774 (define_insn "lshrsi3"
1775 [(set (match_operand:SI 0 "register_operand" "=D,D,D,r")
1777 (match_operand:SI 1 "register_operand" "0,0,0,r")
1778 (match_operand:QI 2 "nonmemory_operand" "D,O,i,r")))
1779 (clobber (reg:CC CC_REG))]
1786 [(set_attr "isa" "*,*,*,am33")
1787 (set_attr "liw" "op2,op2,*,*")
1788 (set_attr "liw_op" "lsr")]
1791 (define_insn "ashrsi3"
1792 [(set (match_operand:SI 0 "register_operand" "=D,D,D,r")
1794 (match_operand:SI 1 "register_operand" "0,0,0,r")
1795 (match_operand:QI 2 "nonmemory_operand" "D,O,i,r")))
1796 (clobber (reg:CC CC_REG))]
1803 [(set_attr "isa" "*,*,*,am33")
1804 (set_attr "liw" "op2,op2,*,*")
1805 (set_attr "liw_op" "asr")]
1808 ;; ----------------------------------------------------------------------
1810 ;; ----------------------------------------------------------------------
1812 ;; Note the use of the (const_int 0) when generating the insn that matches
1813 ;; the bsch pattern. This ensures that the destination register is
1814 ;; initialised with 0 which will make the BSCH instruction set searching
1817 ;; The XOR in the instruction sequence below is there because the BSCH
1818 ;; instruction returns the bit number of the highest set bit and we want
1819 ;; the number of zero bits above that bit. The AM33 does not have a
1820 ;; reverse subtraction instruction, but we can use a simple xor instead
1821 ;; since we know that the top 27 bits are clear.
1822 (define_expand "clzsi2"
1823 [(parallel [(set (match_operand:SI 0 "register_operand")
1824 (unspec:SI [(match_operand:SI 1 "register_operand")
1825 (const_int 0)] UNSPEC_BSCH))
1826 (clobber (reg:CC CC_REG))])
1827 (parallel [(set (match_dup 0)
1828 (xor:SI (match_dup 0)
1830 (clobber (reg:CC CC_REG))])]
1834 (define_insn "*bsch"
1835 [(set (match_operand:SI 0 "register_operand" "=r")
1836 (unspec:SI [(match_operand:SI 1 "register_operand" "r")
1837 (match_operand:SI 2 "nonmemory_operand" "0")]
1839 (clobber (reg:CC CC_REG))]
1844 ;; ----------------------------------------------------------------------
1846 ;; ----------------------------------------------------------------------
1848 (define_insn "abssf2"
1849 [(set (match_operand:SF 0 "register_operand" "=f,f")
1850 (abs:SF (match_operand:SF 1 "register_operand" "0,?f")))]
1855 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
1856 (const_int 17) (const_int 14)))]
1859 (define_insn "negsf2"
1860 [(set (match_operand:SF 0 "register_operand" "=f,f")
1861 (neg:SF (match_operand:SF 1 "register_operand" "0,?f")))]
1866 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
1867 (const_int 17) (const_int 14)))]
1870 (define_expand "sqrtsf2"
1871 [(set (match_operand:SF 0 "register_operand" "")
1872 (sqrt:SF (match_operand:SF 1 "register_operand" "")))]
1873 "TARGET_AM33_2 && flag_unsafe_math_optimizations"
1875 rtx scratch = gen_reg_rtx (SFmode);
1876 emit_insn (gen_rsqrtsf2 (scratch, operands[1], CONST1_RTX (SFmode)));
1877 emit_insn (gen_divsf3 (operands[0], force_reg (SFmode, CONST1_RTX (SFmode)),
1882 (define_insn "rsqrtsf2"
1883 [(set (match_operand:SF 0 "register_operand" "=f,f")
1884 (div:SF (match_operand:SF 2 "const_1f_operand" "F,F")
1885 (sqrt:SF (match_operand:SF 1 "register_operand" "0,?f"))))
1886 (clobber (reg:CC_FLOAT CC_REG))]
1891 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
1892 (const_int 4753) (const_int 2327)))]
1895 (define_insn "addsf3"
1896 [(set (match_operand:SF 0 "register_operand" "=f,f")
1897 (plus:SF (match_operand:SF 1 "register_operand" "%0,f")
1898 (match_operand:SF 2 "nonmemory_operand" "f,?fF")))
1899 (clobber (reg:CC_FLOAT CC_REG))]
1904 [(set_attr_alternative "timings"
1905 [(if_then_else (eq_attr "cpu" "am34")
1906 (const_int 17) (const_int 14))
1907 (if_then_else (eq_attr "cpu" "am34")
1908 (const_int 17) (const_int 25))
1912 (define_insn "subsf3"
1913 [(set (match_operand:SF 0 "register_operand" "=f,f")
1914 (minus:SF (match_operand:SF 1 "register_operand" "0,f")
1915 (match_operand:SF 2 "nonmemory_operand" "f,?fF")))
1916 (clobber (reg:CC_FLOAT CC_REG))]
1921 [(set_attr_alternative "timings"
1922 [(if_then_else (eq_attr "cpu" "am34")
1923 (const_int 17) (const_int 14))
1924 (if_then_else (eq_attr "cpu" "am34")
1925 (const_int 17) (const_int 25))
1929 (define_insn "mulsf3"
1930 [(set (match_operand:SF 0 "register_operand" "=f,f")
1931 (mult:SF (match_operand:SF 1 "register_operand" "%0,f")
1932 (match_operand:SF 2 "nonmemory_operand" "f,?fF")))
1933 (clobber (reg:CC_FLOAT CC_REG))
1939 [(set_attr_alternative "timings"
1940 [(if_then_else (eq_attr "cpu" "am34")
1941 (const_int 17) (const_int 14))
1942 (if_then_else (eq_attr "cpu" "am34")
1943 (const_int 17) (const_int 25))
1947 (define_insn "divsf3"
1948 [(set (match_operand:SF 0 "register_operand" "=f,f")
1949 (div:SF (match_operand:SF 1 "register_operand" "0,f")
1950 (match_operand:SF 2 "nonmemory_operand" "f,?fF")))
1951 (clobber (reg:CC_FLOAT CC_REG))]
1956 [(set_attr_alternative "timings"
1957 [(if_then_else (eq_attr "cpu" "am34")
1958 (const_int 2531) (const_int 1216))
1959 (if_then_else (eq_attr "cpu" "am34")
1960 (const_int 2531) (const_int 1317))
1964 (define_insn "fmasf4"
1965 [(set (match_operand:SF 0 "register_operand" "=c")
1966 (fma:SF (match_operand:SF 1 "register_operand" "f")
1967 (match_operand:SF 2 "register_operand" "f")
1968 (match_operand:SF 3 "register_operand" "f")))
1969 (clobber (reg:CC_FLOAT CC_REG))
1972 "fmadd %1, %2, %3, %0"
1973 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
1974 (const_int 17) (const_int 24)))]
1977 (define_insn "fmssf4"
1978 [(set (match_operand:SF 0 "register_operand" "=c")
1979 (fma:SF (match_operand:SF 1 "register_operand" "f")
1980 (match_operand:SF 2 "register_operand" "f")
1981 (neg:SF (match_operand:SF 3 "register_operand" "f"))))
1982 (clobber (reg:CC_FLOAT CC_REG))
1985 "fmsub %1, %2, %3, %0"
1986 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
1987 (const_int 17) (const_int 24)))]
1990 (define_insn "fnmasf4"
1991 [(set (match_operand:SF 0 "register_operand" "=c")
1992 (fma:SF (neg:SF (match_operand:SF 1 "register_operand" "f"))
1993 (match_operand:SF 2 "register_operand" "f")
1994 (match_operand:SF 3 "register_operand" "f")))
1995 (clobber (reg:CC_FLOAT CC_REG))
1998 "fnmadd %1, %2, %3, %0"
1999 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
2000 (const_int 17) (const_int 24)))]
2003 (define_insn "fnmssf4"
2004 [(set (match_operand:SF 0 "register_operand" "=c")
2005 (fma:SF (neg:SF (match_operand:SF 1 "register_operand" "f"))
2006 (match_operand:SF 2 "register_operand" "f")
2007 (neg:SF (match_operand:SF 3 "register_operand" "f"))))
2008 (clobber (reg:CC_FLOAT CC_REG))
2011 "fnmsub %1, %2, %3, %0"
2012 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
2013 (const_int 17) (const_int 24)))]
2016 ;; ----------------------------------------------------------------------
2017 ;; PROLOGUE/EPILOGUE
2018 ;; ----------------------------------------------------------------------
2019 (define_expand "prologue"
2022 { mn10300_expand_prologue (); DONE; }
2025 (define_expand "epilogue"
2028 { mn10300_expand_epilogue (); DONE; }
2031 (define_insn "return"
2033 "mn10300_can_use_rets_insn ()"
2035 /* The RETF insn is 4 cycles faster than RETS, though 1 byte larger. */
2036 if (optimize_insn_for_speed_p () && mn10300_can_use_retf_insn ())
2042 (define_insn "return_ret"
2044 (use (match_operand:SI 0 "const_int_operand" ""))]
2047 /* The RETF insn is up to 3 cycles faster than RET. */
2048 fputs ((mn10300_can_use_retf_insn () ? "\tretf " : "\tret "), asm_out_file);
2049 mn10300_print_reg_list (asm_out_file, mn10300_get_live_callee_saved_regs (NULL));
2050 fprintf (asm_out_file, ",%d\n", (int) INTVAL (operands[0]));
2054 ;; This instruction matches one generated by mn10300_gen_multiple_store()
2055 (define_insn "store_movm"
2056 [(match_parallel 0 "mn10300_store_multiple_operation"
2057 [(set (reg:SI SP_REG) (plus:SI (reg:SI SP_REG) (match_operand 1 "" "")))])]
2060 fputs ("\tmovm ", asm_out_file);
2061 mn10300_print_reg_list (asm_out_file,
2062 mn10300_store_multiple_regs (operands[0]));
2063 fprintf (asm_out_file, ",(sp)\n");
2066 ;; Assume that no more than 8 registers will be pushed.
2067 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
2068 (const_int 99) (const_int 88)))]
2071 (define_expand "load_pic"
2076 emit_insn (gen_am33_load_pic (pic_offset_table_rtx));
2077 else if (mn10300_frame_size () == 0)
2078 emit_insn (gen_mn10300_load_pic0 (pic_offset_table_rtx));
2080 emit_insn (gen_mn10300_load_pic1 (pic_offset_table_rtx));
2084 (define_insn "am33_load_pic"
2085 [(set (match_operand:SI 0 "register_operand" "=a")
2086 (unspec:SI [(const_int 0)] UNSPEC_GOT))
2087 (clobber (reg:CC CC_REG))]
2090 operands[1] = gen_rtx_SYMBOL_REF (VOIDmode, GOT_SYMBOL_NAME);
2091 return ".LPIC%=:\;mov pc,%0\;add %1-(.LPIC%=-.),%0";
2093 [(set_attr "timings" "33")]
2096 ;; Load pic register with push/pop of stack.
2097 (define_insn "mn10300_load_pic0"
2098 [(set (match_operand:SI 0 "register_operand" "=a")
2099 (unspec:SI [(const_int 0)] UNSPEC_GOT))
2100 (clobber (reg:SI MDR_REG))
2101 (clobber (reg:CC CC_REG))]
2104 operands[1] = gen_rtx_SYMBOL_REF (VOIDmode, GOT_SYMBOL_NAME);
2105 return ("add -4,sp\;"
2109 "add %1-(.LPIC%=-.),%0");
2111 [(set_attr "timings" "88")]
2114 ;; Load pic register re-using existing stack space.
2115 (define_insn "mn10300_load_pic1"
2116 [(set (match_operand:SI 0 "register_operand" "=a")
2117 (unspec:SI [(const_int 0)] UNSPEC_GOT))
2118 (clobber (mem:SI (reg:SI SP_REG)))
2119 (clobber (reg:SI MDR_REG))
2120 (clobber (reg:CC CC_REG))]
2123 operands[1] = gen_rtx_SYMBOL_REF (VOIDmode, GOT_SYMBOL_NAME);
2124 return ("calls .LPIC%=\n"
2127 "add %1-(.LPIC%=-.),%0");
2129 [(set_attr "timings" "66")]
2132 ;; The mode on operand 3 has been deliberately omitted because it
2133 ;; can be either SI (for arithmetic operations) or QI (for shifts).
2135 [(set (match_operand:SI 0 "register_operand" "=r")
2136 (unspec:SI [(match_dup 0)
2137 (match_operand 2 "liw_operand" "rO")
2138 (match_operand:SI 4 "const_int_operand" "")]
2140 (set (match_operand:SI 1 "register_operand" "=r")
2141 (unspec:SI [(match_dup 1)
2142 (match_operand 3 "liw_operand" "rO")
2143 (match_operand:SI 5 "const_int_operand" "")]
2146 "%W4_%W5 %2, %0, %3, %1"
2147 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
2148 (const_int 13) (const_int 12)))]
2151 ;; The mode on operand 1 has been deliberately omitted because it
2152 ;; can be either SI (for arithmetic operations) or QI (for shifts).
2153 (define_insn "cmp_liw"
2154 [(set (reg:CC CC_REG)
2155 (compare:CC (match_operand:SI 2 "register_operand" "r")
2156 (match_operand 3 "liw_operand" "rO")))
2157 (set (match_operand:SI 0 "register_operand" "=r")
2158 (unspec:SI [(match_dup 0)
2159 (match_operand 1 "liw_operand" "rO")
2160 (match_operand:SI 4 "const_int_operand" "")]
2163 "cmp_%W4 %3, %2, %1, %0"
2164 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
2165 (const_int 13) (const_int 12)))]
2168 (define_insn "liw_cmp"
2169 [(set (match_operand:SI 0 "register_operand" "=r")
2170 (unspec:SI [(match_dup 0)
2171 (match_operand 1 "liw_operand" "rO")
2172 (match_operand:SI 4 "const_int_operand" "")]
2174 (set (reg:CC CC_REG)
2175 (compare:CC (match_operand:SI 2 "register_operand" "r")
2176 (match_operand 3 "liw_operand" "rO")))]
2178 "%W4_cmp %1, %0, %3, %2"
2179 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34")
2180 (const_int 13) (const_int 12)))]
2183 ;; Note - in theory the doloop patterns could be used here to express
2184 ;; the SETLB and Lcc instructions. In practice this does not work because
2185 ;; the acceptable forms of the doloop patterns do not include UNSPECs
2186 ;; and without them gcc's basic block reordering code can duplicate the
2187 ;; doloop_end pattern, leading to bogus multiple decrements of the loop
2190 (define_insn "setlb"
2191 [(unspec [(const_int 0)] UNSPEC_SETLB)]
2192 "TARGET_AM33 && TARGET_ALLOW_SETLB"
2198 (if_then_else (match_operator 0 "comparison_operator"
2199 [(reg:CC CC_REG) (const_int 0)])
2200 (label_ref (match_operand 1 "" ""))
2202 (unspec [(const_int 1)] UNSPEC_SETLB)]
2203 "TARGET_AM33 && TARGET_ALLOW_SETLB"
2204 "L%b0 # loop back to: %1"
2209 (if_then_else (match_operator 0 "comparison_operator"
2210 [(reg:CC_FLOAT CC_REG) (const_int 0)])
2211 (label_ref (match_operand 1 "" ""))
2213 (unspec [(const_int 2)] UNSPEC_SETLB)]
2214 "TARGET_AM33_2 && TARGET_ALLOW_SETLB"
2215 "FL%b0 # loop back to: %1"
2216 [(set (attr "timings") (if_then_else (eq_attr "cpu" "am34") (const_int 44) (const_int 11)))]