comparison gcc/config/m32r/m32r.md @ 0:a06113de4d67

first commit
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 17 Jul 2009 14:47:48 +0900
parents
children 77e2b8dfacca
comparison
equal deleted inserted replaced
-1:000000000000 0:a06113de4d67
1 ;; Machine description of the Renesas M32R cpu for GNU C compiler
2 ;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2003, 2004, 2005,
3 ; 2007, 2008 Free Software Foundation, Inc.
4
5 ;; This file is part of GCC.
6
7 ;; GCC is free software; you can redistribute it and/or modify it
8 ;; under the terms of the GNU General Public License as published
9 ;; by the Free Software Foundation; either version 3, or (at your
10 ;; option) any later version.
11
12 ;; GCC is distributed in the hope that it will be useful, but WITHOUT
13 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 ;; or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 ;; License for more details.
16
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/>.
20
21 ;; See file "rtl.def" for documentation on define_insn, match_*, et. al.
22
23 ;; UNSPEC_VOLATILE usage
24 (define_constants
25 [(UNSPECV_BLOCKAGE 0)
26 (UNSPECV_FLUSH_ICACHE 1)])
27
28 ;; UNSPEC usage
29 (define_constants
30 [(UNSPEC_LOAD_SDA_BASE 2)
31 (UNSPEC_SET_CBIT 3)
32 (UNSPEC_PIC_LOAD_ADDR 4)
33 (UNSPEC_GET_PC 5)
34 (UNSPEC_GOTOFF 6)
35 ])
36
37 ;; Insn type. Used to default other attribute values.
38 (define_attr "type"
39 "int2,int4,load2,load4,load8,store2,store4,store8,shift2,shift4,mul2,div4,uncond_branch,branch,call,multi,misc"
40 (const_string "misc"))
41
42 ;; Length in bytes.
43 (define_attr "length" ""
44 (cond [(eq_attr "type" "int2,load2,store2,shift2,mul2")
45 (const_int 2)
46
47 (eq_attr "type" "int4,load4,store4,shift4,div4")
48 (const_int 4)
49
50 (eq_attr "type" "multi")
51 (const_int 8)
52
53 (eq_attr "type" "uncond_branch,branch,call")
54 (const_int 4)]
55
56 (const_int 4)))
57
58 ;; The length here is the length of a single asm. Unfortunately it might be
59 ;; 2 or 4 so we must allow for 4. That's ok though.
60 (define_asm_attributes
61 [(set_attr "length" "4")
62 (set_attr "type" "multi")])
63
64 ;; Whether an instruction is short (16-bit) or long (32-bit).
65 (define_attr "insn_size" "short,long"
66 (if_then_else (eq_attr "type" "int2,load2,store2,shift2,mul2")
67 (const_string "short")
68 (const_string "long")))
69
70 ;; The target CPU we're compiling for.
71 (define_attr "cpu" "m32r,m32r2,m32rx"
72 (cond [(ne (symbol_ref "TARGET_M32RX") (const_int 0))
73 (const_string "m32rx")
74 (ne (symbol_ref "TARGET_M32R2") (const_int 0))
75 (const_string "m32r2")]
76 (const_string "m32r")))
77
78 ;; Defines the pipeline where an instruction can be executed on.
79 ;; For the M32R, a short instruction can execute one of the two pipes.
80 ;; For the M32Rx, the restrictions are modelled in the second
81 ;; condition of this attribute definition.
82 (define_attr "m32r_pipeline" "either,s,o,long"
83 (cond [(and (eq_attr "cpu" "m32r")
84 (eq_attr "insn_size" "short"))
85 (const_string "either")
86 (eq_attr "insn_size" "!short")
87 (const_string "long")]
88 (cond [(eq_attr "type" "int2")
89 (const_string "either")
90 (eq_attr "type" "load2,store2,shift2,uncond_branch,branch,call")
91 (const_string "o")
92 (eq_attr "type" "mul2")
93 (const_string "s")]
94 (const_string "long"))))
95
96 ;; ::::::::::::::::::::
97 ;; ::
98 ;; :: Pipeline description
99 ;; ::
100 ;; ::::::::::::::::::::
101
102 ;; This model is based on Chapter 2, Appendix 3 and Appendix 4 of the
103 ;; "M32R-FPU Software Manual", Revision 1.01, plus additional information
104 ;; obtained by our best friend and mine, Google.
105 ;;
106 ;; The pipeline is modelled as a fetch unit, and a core with a memory unit,
107 ;; two execution units, where "fetch" models IF and D, "memory" for MEM1
108 ;; and MEM2, and "EXEC" for E, E1, E2, EM, and EA. Writeback and
109 ;; bypasses are not modelled.
110 (define_automaton "m32r")
111
112 ;; We pretend there are two short (16 bits) instruction fetchers. The
113 ;; "s" short fetcher cannot be reserved until the "o" short fetcher is
114 ;; reserved. Some instructions reserve both the left and right fetchers.
115 ;; These fetch units are a hack to get GCC to better pack the instructions
116 ;; for the M32Rx processor, which has two execution pipes.
117 ;;
118 ;; In reality there is only one decoder, which can decode either two 16-bit
119 ;; instructions, or a single 32-bit instruction.
120 ;;
121 ;; Note, "fetch" models both the IF and the D pipeline stages.
122 ;;
123 ;; The m32rx core has two execution pipes. We name them o_E and s_E.
124 ;; In addition, there's a memory unit.
125
126 (define_cpu_unit "o_IF,s_IF,o_E,s_E,memory" "m32r")
127
128 ;; Prevent the s pipe from being reserved before the o pipe.
129 (absence_set "s_IF" "o_IF")
130 (absence_set "s_E" "o_E")
131
132 ;; On the M32Rx, long instructions execute on both pipes, so reserve
133 ;; both fetch slots and both pipes.
134 (define_reservation "long_IF" "o_IF+s_IF")
135 (define_reservation "long_E" "o_E+s_E")
136
137 ;; ::::::::::::::::::::
138
139 ;; Simple instructions do 4 stages: IF D E WB. WB is not modelled.
140 ;; Hence, ready latency is 1.
141 (define_insn_reservation "short_left" 1
142 (and (eq_attr "m32r_pipeline" "o")
143 (and (eq_attr "insn_size" "short")
144 (eq_attr "type" "!load2")))
145 "o_IF,o_E")
146
147 (define_insn_reservation "short_right" 1
148 (and (eq_attr "m32r_pipeline" "s")
149 (and (eq_attr "insn_size" "short")
150 (eq_attr "type" "!load2")))
151 "s_IF,s_E")
152
153 (define_insn_reservation "short_either" 1
154 (and (eq_attr "m32r_pipeline" "either")
155 (and (eq_attr "insn_size" "short")
156 (eq_attr "type" "!load2")))
157 "o_IF|s_IF,o_E|s_E")
158
159 (define_insn_reservation "long_m32r" 1
160 (and (eq_attr "cpu" "m32r")
161 (and (eq_attr "insn_size" "long")
162 (eq_attr "type" "!load4,load8")))
163 "long_IF,long_E")
164
165 (define_insn_reservation "long_m32rx" 2
166 (and (eq_attr "m32r_pipeline" "long")
167 (and (eq_attr "insn_size" "long")
168 (eq_attr "type" "!load4,load8")))
169 "long_IF,long_E")
170
171 ;; Load/store instructions do 6 stages: IF D E MEM1 MEM2 WB.
172 ;; MEM1 may require more than one cycle depending on locality. We
173 ;; optimistically assume all memory is nearby, i.e. MEM1 takes only
174 ;; one cycle. Hence, ready latency is 3.
175
176 ;; The M32Rx can do short load/store only on the left pipe.
177 (define_insn_reservation "short_load_left" 3
178 (and (eq_attr "m32r_pipeline" "o")
179 (and (eq_attr "insn_size" "short")
180 (eq_attr "type" "load2")))
181 "o_IF,o_E,memory*2")
182
183 (define_insn_reservation "short_load" 3
184 (and (eq_attr "m32r_pipeline" "either")
185 (and (eq_attr "insn_size" "short")
186 (eq_attr "type" "load2")))
187 "s_IF|o_IF,s_E|o_E,memory*2")
188
189 (define_insn_reservation "long_load" 3
190 (and (eq_attr "cpu" "m32r")
191 (and (eq_attr "insn_size" "long")
192 (eq_attr "type" "load4,load8")))
193 "long_IF,long_E,memory*2")
194
195 (define_insn_reservation "long_load_m32rx" 3
196 (and (eq_attr "m32r_pipeline" "long")
197 (eq_attr "type" "load4,load8"))
198 "long_IF,long_E,memory*2")
199
200
201 (include "predicates.md")
202 (include "constraints.md")
203
204 ;; Expand prologue as RTL
205 (define_expand "prologue"
206 [(const_int 1)]
207 ""
208 "
209 {
210 m32r_expand_prologue ();
211 DONE;
212 }")
213
214 ;; Expand epilogue as RTL
215 (define_expand "epilogue"
216 [(return)]
217 ""
218 "
219 {
220 m32r_expand_epilogue ();
221 emit_jump_insn (gen_return_normal ());
222 DONE;
223 }")
224
225 ;; Move instructions.
226 ;;
227 ;; For QI and HI moves, the register must contain the full properly
228 ;; sign-extended value. nonzero_bits assumes this [otherwise
229 ;; SHORT_IMMEDIATES_SIGN_EXTEND must be used, but the comment for it
230 ;; says it's a kludge and the .md files should be fixed instead].
231
232 (define_expand "movqi"
233 [(set (match_operand:QI 0 "general_operand" "")
234 (match_operand:QI 1 "general_operand" ""))]
235 ""
236 "
237 {
238 /* Fixup PIC cases. */
239 if (flag_pic)
240 {
241 if (symbolic_operand (operands[1], QImode))
242 {
243 if (reload_in_progress || reload_completed)
244 operands[1] = m32r_legitimize_pic_address (operands[1], operands[0]);
245 else
246 operands[1] = m32r_legitimize_pic_address (operands[1], NULL_RTX);
247 }
248 }
249
250 /* Everything except mem = const or mem = mem can be done easily.
251 Objects in the small data area are handled too. */
252
253 if (GET_CODE (operands[0]) == MEM)
254 operands[1] = force_reg (QImode, operands[1]);
255 }")
256
257 (define_insn "*movqi_insn"
258 [(set (match_operand:QI 0 "move_dest_operand" "=r,r,r,r,r,T,m")
259 (match_operand:QI 1 "move_src_operand" "r,I,JQR,T,m,r,r"))]
260 "register_operand (operands[0], QImode) || register_operand (operands[1], QImode)"
261 "@
262 mv %0,%1
263 ldi %0,%#%1
264 ldi %0,%#%1
265 ldub %0,%1
266 ldub %0,%1
267 stb %1,%0
268 stb %1,%0"
269 [(set_attr "type" "int2,int2,int4,load2,load4,store2,store4")
270 (set_attr "length" "2,2,4,2,4,2,4")])
271
272 (define_expand "movhi"
273 [(set (match_operand:HI 0 "general_operand" "")
274 (match_operand:HI 1 "general_operand" ""))]
275 ""
276 "
277 {
278 /* Fixup PIC cases. */
279 if (flag_pic)
280 {
281 if (symbolic_operand (operands[1], HImode))
282 {
283 if (reload_in_progress || reload_completed)
284 operands[1] = m32r_legitimize_pic_address (operands[1], operands[0]);
285 else
286 operands[1] = m32r_legitimize_pic_address (operands[1], NULL_RTX);
287 }
288 }
289
290 /* Everything except mem = const or mem = mem can be done easily. */
291
292 if (GET_CODE (operands[0]) == MEM)
293 operands[1] = force_reg (HImode, operands[1]);
294 }")
295
296 (define_insn "*movhi_insn"
297 [(set (match_operand:HI 0 "move_dest_operand" "=r,r,r,r,r,r,T,m")
298 (match_operand:HI 1 "move_src_operand" "r,I,JQR,K,T,m,r,r"))]
299 "register_operand (operands[0], HImode) || register_operand (operands[1], HImode)"
300 "@
301 mv %0,%1
302 ldi %0,%#%1
303 ldi %0,%#%1
304 ld24 %0,%#%1
305 lduh %0,%1
306 lduh %0,%1
307 sth %1,%0
308 sth %1,%0"
309 [(set_attr "type" "int2,int2,int4,int4,load2,load4,store2,store4")
310 (set_attr "length" "2,2,4,4,2,4,2,4")])
311
312 (define_expand "movsi_push"
313 [(set (mem:SI (pre_dec:SI (match_operand:SI 0 "register_operand" "")))
314 (match_operand:SI 1 "register_operand" ""))]
315 ""
316 "")
317
318 (define_expand "movsi_pop"
319 [(set (match_operand:SI 0 "register_operand" "")
320 (mem:SI (post_inc:SI (match_operand:SI 1 "register_operand" ""))))]
321 ""
322 "")
323
324 (define_expand "movsi"
325 [(set (match_operand:SI 0 "general_operand" "")
326 (match_operand:SI 1 "general_operand" ""))]
327 ""
328 "
329 {
330 /* Fixup PIC cases. */
331 if (flag_pic)
332 {
333 if (symbolic_operand (operands[1], SImode))
334 {
335 if (reload_in_progress || reload_completed)
336 operands[1] = m32r_legitimize_pic_address (operands[1], operands[0]);
337 else
338 operands[1] = m32r_legitimize_pic_address (operands[1], NULL_RTX);
339 }
340 }
341
342 /* Everything except mem = const or mem = mem can be done easily. */
343
344 if (GET_CODE (operands[0]) == MEM)
345 operands[1] = force_reg (SImode, operands[1]);
346
347 /* Small Data Area reference? */
348 if (small_data_operand (operands[1], SImode))
349 {
350 emit_insn (gen_movsi_sda (operands[0], operands[1]));
351 DONE;
352 }
353
354 /* If medium or large code model, symbols have to be loaded with
355 seth/add3. */
356 if (addr32_operand (operands[1], SImode))
357 {
358 emit_insn (gen_movsi_addr32 (operands[0], operands[1]));
359 DONE;
360 }
361 }")
362
363 ;; ??? Do we need a const_double constraint here for large unsigned values?
364 (define_insn "*movsi_insn"
365 [(set (match_operand:SI 0 "move_dest_operand" "=r,r,r,r,r,r,r,r,r,T,S,m")
366 (match_operand:SI 1 "move_src_operand" "r,I,J,MQ,L,n,T,U,m,r,r,r"))]
367 "register_operand (operands[0], SImode) || register_operand (operands[1], SImode)"
368 "*
369 {
370 if (GET_CODE (operands[0]) == REG || GET_CODE (operands[1]) == SUBREG)
371 {
372 switch (GET_CODE (operands[1]))
373 {
374 HOST_WIDE_INT value;
375
376 default:
377 break;
378
379 case REG:
380 case SUBREG:
381 return \"mv %0,%1\";
382
383 case MEM:
384 if (GET_CODE (XEXP (operands[1], 0)) == POST_INC
385 && XEXP (XEXP (operands[1], 0), 0) == stack_pointer_rtx)
386 return \"pop %0\";
387
388 return \"ld %0,%1\";
389
390 case CONST_INT:
391 if (satisfies_constraint_J (operands[1]))
392 return \"ldi %0,%#%1\\t; %X1\";
393
394 if (satisfies_constraint_M (operands[1]))
395 return \"ld24 %0,%#%1\\t; %X1\";
396
397 if (satisfies_constraint_L (operands[1]))
398 return \"seth %0,%#%T1\\t; %X1\";
399
400 return \"#\";
401
402 case CONST:
403 case SYMBOL_REF:
404 case LABEL_REF:
405 if (TARGET_ADDR24)
406 return \"ld24 %0,%#%1\";
407
408 return \"#\";
409 }
410 }
411
412 else if (GET_CODE (operands[0]) == MEM
413 && (GET_CODE (operands[1]) == REG || GET_CODE (operands[1]) == SUBREG))
414 {
415 if (GET_CODE (XEXP (operands[0], 0)) == PRE_DEC
416 && XEXP (XEXP (operands[0], 0), 0) == stack_pointer_rtx)
417 return \"push %1\";
418
419 return \"st %1,%0\";
420 }
421
422 gcc_unreachable ();
423 }"
424 [(set_attr "type" "int2,int2,int4,int4,int4,multi,load2,load2,load4,store2,store2,store4")
425 (set_attr "length" "2,2,4,4,4,8,2,2,4,2,2,4")])
426
427 ; Try to use a four byte / two byte pair for constants not loadable with
428 ; ldi, ld24, seth.
429
430 (define_split
431 [(set (match_operand:SI 0 "register_operand" "")
432 (match_operand:SI 1 "two_insn_const_operand" ""))]
433 ""
434 [(set (match_dup 0) (match_dup 2))
435 (set (match_dup 0) (ior:SI (match_dup 0) (match_dup 3)))]
436 "
437 {
438 unsigned HOST_WIDE_INT val = INTVAL (operands[1]);
439 unsigned HOST_WIDE_INT tmp;
440 int shift;
441
442 /* In all cases we will emit two instructions. However we try to
443 use 2 byte instructions wherever possible. We can assume the
444 constant isn't loadable with any of ldi, ld24, or seth. */
445
446 /* See if we can load a 24-bit unsigned value and invert it. */
447 if (UINT24_P (~ val))
448 {
449 emit_insn (gen_movsi (operands[0], GEN_INT (~ val)));
450 emit_insn (gen_one_cmplsi2 (operands[0], operands[0]));
451 DONE;
452 }
453
454 /* See if we can load a 24-bit unsigned value and shift it into place.
455 0x01fffffe is just beyond ld24's range. */
456 for (shift = 1, tmp = 0x01fffffe;
457 shift < 8;
458 ++shift, tmp <<= 1)
459 {
460 if ((val & ~tmp) == 0)
461 {
462 emit_insn (gen_movsi (operands[0], GEN_INT (val >> shift)));
463 emit_insn (gen_ashlsi3 (operands[0], operands[0], GEN_INT (shift)));
464 DONE;
465 }
466 }
467
468 /* Can't use any two byte insn, fall back to seth/or3. Use ~0xffff instead
469 of 0xffff0000, since the later fails on a 64-bit host. */
470 operands[2] = GEN_INT ((val) & ~0xffff);
471 operands[3] = GEN_INT ((val) & 0xffff);
472 }")
473
474 (define_split
475 [(set (match_operand:SI 0 "register_operand" "")
476 (match_operand:SI 1 "seth_add3_operand" ""))]
477 "TARGET_ADDR32"
478 [(set (match_dup 0)
479 (high:SI (match_dup 1)))
480 (set (match_dup 0)
481 (lo_sum:SI (match_dup 0)
482 (match_dup 1)))]
483 "")
484
485 ;; Small data area support.
486 ;; The address of _SDA_BASE_ is loaded into a register and all objects in
487 ;; the small data area are indexed off that. This is done for each reference
488 ;; but cse will clean things up for us. We let the compiler choose the
489 ;; register to use so we needn't allocate (and maybe even fix) a special
490 ;; register to use. Since the load and store insns have a 16-bit offset the
491 ;; total size of the data area can be 64K. However, if the data area lives
492 ;; above 16M (24 bits), _SDA_BASE_ will have to be loaded with seth/add3 which
493 ;; would then yield 3 instructions to reference an object [though there would
494 ;; be no net loss if two or more objects were referenced]. The 3 insns can be
495 ;; reduced back to 2 if the size of the small data area were reduced to 32K
496 ;; [then seth + ld/st would work for any object in the area]. Doing this
497 ;; would require special handling of _SDA_BASE_ (its value would be
498 ;; (.sdata + 32K) & 0xffff0000) and reloc computations would be different
499 ;; [I think]. What to do about this is deferred until later and for now we
500 ;; require .sdata to be in the first 16M.
501
502 (define_expand "movsi_sda"
503 [(set (match_dup 2)
504 (unspec:SI [(const_int 0)] UNSPEC_LOAD_SDA_BASE))
505 (set (match_operand:SI 0 "register_operand" "")
506 (lo_sum:SI (match_dup 2)
507 (match_operand:SI 1 "small_data_operand" "")))]
508 ""
509 "
510 {
511 if (reload_in_progress || reload_completed)
512 operands[2] = operands[0];
513 else
514 operands[2] = gen_reg_rtx (SImode);
515 }")
516
517 (define_insn "*load_sda_base_32"
518 [(set (match_operand:SI 0 "register_operand" "=r")
519 (unspec:SI [(const_int 0)] UNSPEC_LOAD_SDA_BASE))]
520 "TARGET_ADDR32"
521 "seth %0,%#shigh(_SDA_BASE_)\;add3 %0,%0,%#low(_SDA_BASE_)"
522 [(set_attr "type" "multi")
523 (set_attr "length" "8")])
524
525 (define_insn "*load_sda_base"
526 [(set (match_operand:SI 0 "register_operand" "=r")
527 (unspec:SI [(const_int 0)] UNSPEC_LOAD_SDA_BASE))]
528 ""
529 "ld24 %0,#_SDA_BASE_"
530 [(set_attr "type" "int4")
531 (set_attr "length" "4")])
532
533 ;; 32-bit address support.
534
535 (define_expand "movsi_addr32"
536 [(set (match_dup 2)
537 ; addr32_operand isn't used because it's too restrictive,
538 ; seth_add3_operand is more general and thus safer.
539 (high:SI (match_operand:SI 1 "seth_add3_operand" "")))
540 (set (match_operand:SI 0 "register_operand" "")
541 (lo_sum:SI (match_dup 2) (match_dup 1)))]
542 ""
543 "
544 {
545 if (reload_in_progress || reload_completed)
546 operands[2] = operands[0];
547 else
548 operands[2] = gen_reg_rtx (SImode);
549 }")
550
551 (define_insn "set_hi_si"
552 [(set (match_operand:SI 0 "register_operand" "=r")
553 (high:SI (match_operand 1 "symbolic_operand" "")))]
554 ""
555 "seth %0,%#shigh(%1)"
556 [(set_attr "type" "int4")
557 (set_attr "length" "4")])
558
559 (define_insn "lo_sum_si"
560 [(set (match_operand:SI 0 "register_operand" "=r")
561 (lo_sum:SI (match_operand:SI 1 "register_operand" "r")
562 (match_operand:SI 2 "immediate_operand" "in")))]
563 ""
564 "add3 %0,%1,%#%B2"
565 [(set_attr "type" "int4")
566 (set_attr "length" "4")])
567
568 (define_expand "movdi"
569 [(set (match_operand:DI 0 "general_operand" "")
570 (match_operand:DI 1 "general_operand" ""))]
571 ""
572 "
573 {
574 /* Fixup PIC cases. */
575 if (flag_pic)
576 {
577 if (symbolic_operand (operands[1], DImode))
578 {
579 if (reload_in_progress || reload_completed)
580 operands[1] = m32r_legitimize_pic_address (operands[1], operands[0]);
581 else
582 operands[1] = m32r_legitimize_pic_address (operands[1], NULL_RTX);
583 }
584 }
585
586 /* Everything except mem = const or mem = mem can be done easily. */
587
588 if (GET_CODE (operands[0]) == MEM)
589 operands[1] = force_reg (DImode, operands[1]);
590 }")
591
592 (define_insn "*movdi_insn"
593 [(set (match_operand:DI 0 "move_dest_operand" "=r,r,r,r,m")
594 (match_operand:DI 1 "move_double_src_operand" "r,nG,F,m,r"))]
595 "register_operand (operands[0], DImode) || register_operand (operands[1], DImode)"
596 "#"
597 [(set_attr "type" "multi,multi,multi,load8,store8")
598 (set_attr "length" "4,4,16,6,6")])
599
600 (define_split
601 [(set (match_operand:DI 0 "move_dest_operand" "")
602 (match_operand:DI 1 "move_double_src_operand" ""))]
603 "reload_completed"
604 [(match_dup 2)]
605 "operands[2] = gen_split_move_double (operands);")
606
607 ;; Floating point move insns.
608
609 (define_expand "movsf"
610 [(set (match_operand:SF 0 "general_operand" "")
611 (match_operand:SF 1 "general_operand" ""))]
612 ""
613 "
614 {
615 /* Fixup PIC cases. */
616 if (flag_pic)
617 {
618 if (symbolic_operand (operands[1], SFmode))
619 {
620 if (reload_in_progress || reload_completed)
621 operands[1] = m32r_legitimize_pic_address (operands[1], operands[0]);
622 else
623 operands[1] = m32r_legitimize_pic_address (operands[1], NULL_RTX);
624 }
625 }
626
627 /* Everything except mem = const or mem = mem can be done easily. */
628
629 if (GET_CODE (operands[0]) == MEM)
630 operands[1] = force_reg (SFmode, operands[1]);
631 }")
632
633 (define_insn "*movsf_insn"
634 [(set (match_operand:SF 0 "move_dest_operand" "=r,r,r,r,r,T,S,m")
635 (match_operand:SF 1 "move_src_operand" "r,F,U,S,m,r,r,r"))]
636 "register_operand (operands[0], SFmode) || register_operand (operands[1], SFmode)"
637 "@
638 mv %0,%1
639 #
640 ld %0,%1
641 ld %0,%1
642 ld %0,%1
643 st %1,%0
644 st %1,%0
645 st %1,%0"
646 ;; ??? Length of alternative 1 is either 2, 4 or 8.
647 [(set_attr "type" "int2,multi,load2,load2,load4,store2,store2,store4")
648 (set_attr "length" "2,8,2,2,4,2,2,4")])
649
650 (define_split
651 [(set (match_operand:SF 0 "register_operand" "")
652 (match_operand:SF 1 "const_double_operand" ""))]
653 "reload_completed"
654 [(set (match_dup 2) (match_dup 3))]
655 "
656 {
657 operands[2] = operand_subword (operands[0], 0, 0, SFmode);
658 operands[3] = operand_subword (operands[1], 0, 0, SFmode);
659 }")
660
661 (define_expand "movdf"
662 [(set (match_operand:DF 0 "general_operand" "")
663 (match_operand:DF 1 "general_operand" ""))]
664 ""
665 "
666 {
667 /* Fixup PIC cases. */
668 if (flag_pic)
669 {
670 if (symbolic_operand (operands[1], DFmode))
671 {
672 if (reload_in_progress || reload_completed)
673 operands[1] = m32r_legitimize_pic_address (operands[1], operands[0]);
674 else
675 operands[1] = m32r_legitimize_pic_address (operands[1], NULL_RTX);
676 }
677 }
678
679 /* Everything except mem = const or mem = mem can be done easily. */
680
681 if (GET_CODE (operands[0]) == MEM)
682 operands[1] = force_reg (DFmode, operands[1]);
683 }")
684
685 (define_insn "*movdf_insn"
686 [(set (match_operand:DF 0 "move_dest_operand" "=r,r,r,m")
687 (match_operand:DF 1 "move_double_src_operand" "r,F,m,r"))]
688 "register_operand (operands[0], DFmode) || register_operand (operands[1], DFmode)"
689 "#"
690 [(set_attr "type" "multi,multi,load8,store8")
691 (set_attr "length" "4,16,6,6")])
692
693 (define_split
694 [(set (match_operand:DF 0 "move_dest_operand" "")
695 (match_operand:DF 1 "move_double_src_operand" ""))]
696 "reload_completed"
697 [(match_dup 2)]
698 "operands[2] = gen_split_move_double (operands);")
699
700 ;; Zero extension instructions.
701
702 (define_insn "zero_extendqihi2"
703 [(set (match_operand:HI 0 "register_operand" "=r,r,r")
704 (zero_extend:HI (match_operand:QI 1 "extend_operand" "r,T,m")))]
705 ""
706 "@
707 and3 %0,%1,%#255
708 ldub %0,%1
709 ldub %0,%1"
710 [(set_attr "type" "int4,load2,load4")
711 (set_attr "length" "4,2,4")])
712
713 (define_insn "zero_extendqisi2"
714 [(set (match_operand:SI 0 "register_operand" "=r,r,r")
715 (zero_extend:SI (match_operand:QI 1 "extend_operand" "r,T,m")))]
716 ""
717 "@
718 and3 %0,%1,%#255
719 ldub %0,%1
720 ldub %0,%1"
721 [(set_attr "type" "int4,load2,load4")
722 (set_attr "length" "4,2,4")])
723
724 (define_insn "zero_extendhisi2"
725 [(set (match_operand:SI 0 "register_operand" "=r,r,r")
726 (zero_extend:SI (match_operand:HI 1 "extend_operand" "r,T,m")))]
727 ""
728 "@
729 and3 %0,%1,%#65535
730 lduh %0,%1
731 lduh %0,%1"
732 [(set_attr "type" "int4,load2,load4")
733 (set_attr "length" "4,2,4")])
734
735 ;; Signed conversions from a smaller integer to a larger integer
736 (define_insn "extendqihi2"
737 [(set (match_operand:HI 0 "register_operand" "=r,r,r")
738 (sign_extend:HI (match_operand:QI 1 "extend_operand" "0,T,m")))]
739 ""
740 "@
741 #
742 ldb %0,%1
743 ldb %0,%1"
744 [(set_attr "type" "multi,load2,load4")
745 (set_attr "length" "2,2,4")])
746
747 (define_split
748 [(set (match_operand:HI 0 "register_operand" "")
749 (sign_extend:HI (match_operand:QI 1 "register_operand" "")))]
750 "reload_completed"
751 [(match_dup 2)
752 (match_dup 3)]
753 "
754 {
755 rtx op0 = gen_lowpart (SImode, operands[0]);
756 rtx shift = GEN_INT (24);
757
758 operands[2] = gen_ashlsi3 (op0, op0, shift);
759 operands[3] = gen_ashrsi3 (op0, op0, shift);
760 }")
761
762 (define_insn "extendqisi2"
763 [(set (match_operand:SI 0 "register_operand" "=r,r,r")
764 (sign_extend:SI (match_operand:QI 1 "extend_operand" "0,T,m")))]
765 ""
766 "@
767 #
768 ldb %0,%1
769 ldb %0,%1"
770 [(set_attr "type" "multi,load2,load4")
771 (set_attr "length" "4,2,4")])
772
773 (define_split
774 [(set (match_operand:SI 0 "register_operand" "")
775 (sign_extend:SI (match_operand:QI 1 "register_operand" "")))]
776 "reload_completed"
777 [(match_dup 2)
778 (match_dup 3)]
779 "
780 {
781 rtx shift = GEN_INT (24);
782
783 operands[2] = gen_ashlsi3 (operands[0], operands[0], shift);
784 operands[3] = gen_ashrsi3 (operands[0], operands[0], shift);
785 }")
786
787 (define_insn "extendhisi2"
788 [(set (match_operand:SI 0 "register_operand" "=r,r,r")
789 (sign_extend:SI (match_operand:HI 1 "extend_operand" "0,T,m")))]
790 ""
791 "@
792 #
793 ldh %0,%1
794 ldh %0,%1"
795 [(set_attr "type" "multi,load2,load4")
796 (set_attr "length" "4,2,4")])
797
798 (define_split
799 [(set (match_operand:SI 0 "register_operand" "")
800 (sign_extend:SI (match_operand:HI 1 "register_operand" "")))]
801 "reload_completed"
802 [(match_dup 2)
803 (match_dup 3)]
804 "
805 {
806 rtx shift = GEN_INT (16);
807
808 operands[2] = gen_ashlsi3 (operands[0], operands[0], shift);
809 operands[3] = gen_ashrsi3 (operands[0], operands[0], shift);
810 }")
811
812 ;; Arithmetic instructions.
813
814 ; ??? Adding an alternative to split add3 of small constants into two
815 ; insns yields better instruction packing but slower code. Adds of small
816 ; values is done a lot.
817
818 (define_insn "addsi3"
819 [(set (match_operand:SI 0 "register_operand" "=r,r,r")
820 (plus:SI (match_operand:SI 1 "register_operand" "%0,0,r")
821 (match_operand:SI 2 "nonmemory_operand" "r,I,J")))]
822 ""
823 "@
824 add %0,%2
825 addi %0,%#%2
826 add3 %0,%1,%#%2"
827 [(set_attr "type" "int2,int2,int4")
828 (set_attr "length" "2,2,4")])
829
830 ;(define_split
831 ; [(set (match_operand:SI 0 "register_operand" "")
832 ; (plus:SI (match_operand:SI 1 "register_operand" "")
833 ; (match_operand:SI 2 "int8_operand" "")))]
834 ; "reload_completed
835 ; && REGNO (operands[0]) != REGNO (operands[1])
836 ; && satisfies_constraint_I (operands[2])
837 ; && INTVAL (operands[2]) != 0"
838 ; [(set (match_dup 0) (match_dup 1))
839 ; (set (match_dup 0) (plus:SI (match_dup 0) (match_dup 2)))]
840 ; "")
841
842 (define_insn "adddi3"
843 [(set (match_operand:DI 0 "register_operand" "=r")
844 (plus:DI (match_operand:DI 1 "register_operand" "%0")
845 (match_operand:DI 2 "register_operand" "r")))
846 (clobber (reg:CC 17))]
847 ""
848 "#"
849 [(set_attr "type" "multi")
850 (set_attr "length" "6")])
851
852 ;; ??? The cmp clears the condition bit. Can we speed up somehow?
853 (define_split
854 [(set (match_operand:DI 0 "register_operand" "")
855 (plus:DI (match_operand:DI 1 "register_operand" "")
856 (match_operand:DI 2 "register_operand" "")))
857 (clobber (reg:CC 17))]
858 "reload_completed"
859 [(parallel [(set (reg:CC 17)
860 (const_int 0))
861 (use (match_dup 4))])
862 (parallel [(set (match_dup 4)
863 (plus:SI (match_dup 4)
864 (plus:SI (match_dup 5)
865 (ne:SI (reg:CC 17) (const_int 0)))))
866 (set (reg:CC 17)
867 (unspec:CC [(const_int 0)] UNSPEC_SET_CBIT))])
868 (parallel [(set (match_dup 6)
869 (plus:SI (match_dup 6)
870 (plus:SI (match_dup 7)
871 (ne:SI (reg:CC 17) (const_int 0)))))
872 (set (reg:CC 17)
873 (unspec:CC [(const_int 0)] UNSPEC_SET_CBIT))])]
874 "
875 {
876 operands[4] = operand_subword (operands[0], (WORDS_BIG_ENDIAN != 0), 0, DImode);
877 operands[5] = operand_subword (operands[2], (WORDS_BIG_ENDIAN != 0), 0, DImode);
878 operands[6] = operand_subword (operands[0], (WORDS_BIG_ENDIAN == 0), 0, DImode);
879 operands[7] = operand_subword (operands[2], (WORDS_BIG_ENDIAN == 0), 0, DImode);
880 }")
881
882 (define_insn "*clear_c"
883 [(set (reg:CC 17)
884 (const_int 0))
885 (use (match_operand:SI 0 "register_operand" "r"))]
886 ""
887 "cmp %0,%0"
888 [(set_attr "type" "int2")
889 (set_attr "length" "2")])
890
891 (define_insn "*add_carry"
892 [(set (match_operand:SI 0 "register_operand" "=r")
893 (plus:SI (match_operand:SI 1 "register_operand" "%0")
894 (plus:SI (match_operand:SI 2 "register_operand" "r")
895 (ne:SI (reg:CC 17) (const_int 0)))))
896 (set (reg:CC 17)
897 (unspec:CC [(const_int 0)] UNSPEC_SET_CBIT))]
898 ""
899 "addx %0,%2"
900 [(set_attr "type" "int2")
901 (set_attr "length" "2")])
902
903 (define_insn "subsi3"
904 [(set (match_operand:SI 0 "register_operand" "=r")
905 (minus:SI (match_operand:SI 1 "register_operand" "0")
906 (match_operand:SI 2 "register_operand" "r")))]
907 ""
908 "sub %0,%2"
909 [(set_attr "type" "int2")
910 (set_attr "length" "2")])
911
912 (define_insn "subdi3"
913 [(set (match_operand:DI 0 "register_operand" "=r")
914 (minus:DI (match_operand:DI 1 "register_operand" "0")
915 (match_operand:DI 2 "register_operand" "r")))
916 (clobber (reg:CC 17))]
917 ""
918 "#"
919 [(set_attr "type" "multi")
920 (set_attr "length" "6")])
921
922 ;; ??? The cmp clears the condition bit. Can we speed up somehow?
923 (define_split
924 [(set (match_operand:DI 0 "register_operand" "")
925 (minus:DI (match_operand:DI 1 "register_operand" "")
926 (match_operand:DI 2 "register_operand" "")))
927 (clobber (reg:CC 17))]
928 "reload_completed"
929 [(parallel [(set (reg:CC 17)
930 (const_int 0))
931 (use (match_dup 4))])
932 (parallel [(set (match_dup 4)
933 (minus:SI (match_dup 4)
934 (minus:SI (match_dup 5)
935 (ne:SI (reg:CC 17) (const_int 0)))))
936 (set (reg:CC 17)
937 (unspec:CC [(const_int 0)] UNSPEC_SET_CBIT))])
938 (parallel [(set (match_dup 6)
939 (minus:SI (match_dup 6)
940 (minus:SI (match_dup 7)
941 (ne:SI (reg:CC 17) (const_int 0)))))
942 (set (reg:CC 17)
943 (unspec:CC [(const_int 0)] UNSPEC_SET_CBIT))])]
944 "
945 {
946 operands[4] = operand_subword (operands[0], (WORDS_BIG_ENDIAN != 0), 0, DImode);
947 operands[5] = operand_subword (operands[2], (WORDS_BIG_ENDIAN != 0), 0, DImode);
948 operands[6] = operand_subword (operands[0], (WORDS_BIG_ENDIAN == 0), 0, DImode);
949 operands[7] = operand_subword (operands[2], (WORDS_BIG_ENDIAN == 0), 0, DImode);
950 }")
951
952 (define_insn "*sub_carry"
953 [(set (match_operand:SI 0 "register_operand" "=r")
954 (minus:SI (match_operand:SI 1 "register_operand" "%0")
955 (minus:SI (match_operand:SI 2 "register_operand" "r")
956 (ne:SI (reg:CC 17) (const_int 0)))))
957 (set (reg:CC 17)
958 (unspec:CC [(const_int 0)] UNSPEC_SET_CBIT))]
959 ""
960 "subx %0,%2"
961 [(set_attr "type" "int2")
962 (set_attr "length" "2")])
963
964 ; Multiply/Divide instructions.
965
966 (define_insn "mulhisi3"
967 [(set (match_operand:SI 0 "register_operand" "=r")
968 (mult:SI (sign_extend:SI (match_operand:HI 1 "register_operand" "r"))
969 (sign_extend:SI (match_operand:HI 2 "register_operand" "r"))))]
970 ""
971 "mullo %1,%2\;mvfacmi %0"
972 [(set_attr "type" "multi")
973 (set_attr "length" "4")])
974
975 (define_insn "mulsi3"
976 [(set (match_operand:SI 0 "register_operand" "=r")
977 (mult:SI (match_operand:SI 1 "register_operand" "%0")
978 (match_operand:SI 2 "register_operand" "r")))]
979 ""
980 "mul %0,%2"
981 [(set_attr "type" "mul2")
982 (set_attr "length" "2")])
983
984 (define_insn "divsi3"
985 [(set (match_operand:SI 0 "register_operand" "=r")
986 (div:SI (match_operand:SI 1 "register_operand" "0")
987 (match_operand:SI 2 "register_operand" "r")))]
988 ""
989 "div %0,%2"
990 [(set_attr "type" "div4")
991 (set_attr "length" "4")])
992
993 (define_insn "udivsi3"
994 [(set (match_operand:SI 0 "register_operand" "=r")
995 (udiv:SI (match_operand:SI 1 "register_operand" "0")
996 (match_operand:SI 2 "register_operand" "r")))]
997 ""
998 "divu %0,%2"
999 [(set_attr "type" "div4")
1000 (set_attr "length" "4")])
1001
1002 (define_insn "modsi3"
1003 [(set (match_operand:SI 0 "register_operand" "=r")
1004 (mod:SI (match_operand:SI 1 "register_operand" "0")
1005 (match_operand:SI 2 "register_operand" "r")))]
1006 ""
1007 "rem %0,%2"
1008 [(set_attr "type" "div4")
1009 (set_attr "length" "4")])
1010
1011 (define_insn "umodsi3"
1012 [(set (match_operand:SI 0 "register_operand" "=r")
1013 (umod:SI (match_operand:SI 1 "register_operand" "0")
1014 (match_operand:SI 2 "register_operand" "r")))]
1015 ""
1016 "remu %0,%2"
1017 [(set_attr "type" "div4")
1018 (set_attr "length" "4")])
1019
1020 ;; Boolean instructions.
1021 ;;
1022 ;; We don't define the DImode versions as expand_binop does a good enough job.
1023 ;; And if it doesn't it should be fixed.
1024
1025 (define_insn "andsi3"
1026 [(set (match_operand:SI 0 "register_operand" "=r,r")
1027 (and:SI (match_operand:SI 1 "register_operand" "%0,r")
1028 (match_operand:SI 2 "reg_or_uint16_operand" "r,K")))]
1029 ""
1030 "*
1031 {
1032 /* If we are worried about space, see if we can break this up into two
1033 short instructions, which might eliminate a NOP being inserted. */
1034 if (optimize_size
1035 && m32r_not_same_reg (operands[0], operands[1])
1036 && satisfies_constraint_I (operands[2]))
1037 return \"#\";
1038
1039 else if (GET_CODE (operands[2]) == CONST_INT)
1040 return \"and3 %0,%1,%#%X2\";
1041
1042 return \"and %0,%2\";
1043 }"
1044 [(set_attr "type" "int2,int4")
1045 (set_attr "length" "2,4")])
1046
1047 (define_split
1048 [(set (match_operand:SI 0 "register_operand" "")
1049 (and:SI (match_operand:SI 1 "register_operand" "")
1050 (match_operand:SI 2 "int8_operand" "")))]
1051 "optimize_size && m32r_not_same_reg (operands[0], operands[1])"
1052 [(set (match_dup 0) (match_dup 2))
1053 (set (match_dup 0) (and:SI (match_dup 0) (match_dup 1)))]
1054 "")
1055
1056 (define_insn "iorsi3"
1057 [(set (match_operand:SI 0 "register_operand" "=r,r")
1058 (ior:SI (match_operand:SI 1 "register_operand" "%0,r")
1059 (match_operand:SI 2 "reg_or_uint16_operand" "r,K")))]
1060 ""
1061 "*
1062 {
1063 /* If we are worried about space, see if we can break this up into two
1064 short instructions, which might eliminate a NOP being inserted. */
1065 if (optimize_size
1066 && m32r_not_same_reg (operands[0], operands[1])
1067 && satisfies_constraint_I (operands[2]))
1068 return \"#\";
1069
1070 else if (GET_CODE (operands[2]) == CONST_INT)
1071 return \"or3 %0,%1,%#%X2\";
1072
1073 return \"or %0,%2\";
1074 }"
1075 [(set_attr "type" "int2,int4")
1076 (set_attr "length" "2,4")])
1077
1078 (define_split
1079 [(set (match_operand:SI 0 "register_operand" "")
1080 (ior:SI (match_operand:SI 1 "register_operand" "")
1081 (match_operand:SI 2 "int8_operand" "")))]
1082 "optimize_size && m32r_not_same_reg (operands[0], operands[1])"
1083 [(set (match_dup 0) (match_dup 2))
1084 (set (match_dup 0) (ior:SI (match_dup 0) (match_dup 1)))]
1085 "")
1086
1087 (define_insn "xorsi3"
1088 [(set (match_operand:SI 0 "register_operand" "=r,r")
1089 (xor:SI (match_operand:SI 1 "register_operand" "%0,r")
1090 (match_operand:SI 2 "reg_or_uint16_operand" "r,K")))]
1091 ""
1092 "*
1093 {
1094 /* If we are worried about space, see if we can break this up into two
1095 short instructions, which might eliminate a NOP being inserted. */
1096 if (optimize_size
1097 && m32r_not_same_reg (operands[0], operands[1])
1098 && satisfies_constraint_I (operands[2]))
1099 return \"#\";
1100
1101 else if (GET_CODE (operands[2]) == CONST_INT)
1102 return \"xor3 %0,%1,%#%X2\";
1103
1104 return \"xor %0,%2\";
1105 }"
1106 [(set_attr "type" "int2,int4")
1107 (set_attr "length" "2,4")])
1108
1109 (define_split
1110 [(set (match_operand:SI 0 "register_operand" "")
1111 (xor:SI (match_operand:SI 1 "register_operand" "")
1112 (match_operand:SI 2 "int8_operand" "")))]
1113 "optimize_size && m32r_not_same_reg (operands[0], operands[1])"
1114 [(set (match_dup 0) (match_dup 2))
1115 (set (match_dup 0) (xor:SI (match_dup 0) (match_dup 1)))]
1116 "")
1117
1118 (define_insn "negsi2"
1119 [(set (match_operand:SI 0 "register_operand" "=r")
1120 (neg:SI (match_operand:SI 1 "register_operand" "r")))]
1121 ""
1122 "neg %0,%1"
1123 [(set_attr "type" "int2")
1124 (set_attr "length" "2")])
1125
1126 (define_insn "one_cmplsi2"
1127 [(set (match_operand:SI 0 "register_operand" "=r")
1128 (not:SI (match_operand:SI 1 "register_operand" "r")))]
1129 ""
1130 "not %0,%1"
1131 [(set_attr "type" "int2")
1132 (set_attr "length" "2")])
1133
1134 ;; Shift instructions.
1135
1136 (define_insn "ashlsi3"
1137 [(set (match_operand:SI 0 "register_operand" "=r,r,r")
1138 (ashift:SI (match_operand:SI 1 "register_operand" "0,0,r")
1139 (match_operand:SI 2 "reg_or_uint16_operand" "r,O,K")))]
1140 ""
1141 "@
1142 sll %0,%2
1143 slli %0,%#%2
1144 sll3 %0,%1,%#%2"
1145 [(set_attr "type" "shift2,shift2,shift4")
1146 (set_attr "length" "2,2,4")])
1147
1148 (define_insn "ashrsi3"
1149 [(set (match_operand:SI 0 "register_operand" "=r,r,r")
1150 (ashiftrt:SI (match_operand:SI 1 "register_operand" "0,0,r")
1151 (match_operand:SI 2 "reg_or_uint16_operand" "r,O,K")))]
1152 ""
1153 "@
1154 sra %0,%2
1155 srai %0,%#%2
1156 sra3 %0,%1,%#%2"
1157 [(set_attr "type" "shift2,shift2,shift4")
1158 (set_attr "length" "2,2,4")])
1159
1160 (define_insn "lshrsi3"
1161 [(set (match_operand:SI 0 "register_operand" "=r,r,r")
1162 (lshiftrt:SI (match_operand:SI 1 "register_operand" "0,0,r")
1163 (match_operand:SI 2 "reg_or_uint16_operand" "r,O,K")))]
1164 ""
1165 "@
1166 srl %0,%2
1167 srli %0,%#%2
1168 srl3 %0,%1,%#%2"
1169 [(set_attr "type" "shift2,shift2,shift4")
1170 (set_attr "length" "2,2,4")])
1171
1172 ;; Compare instructions.
1173 ;; This controls RTL generation and register allocation.
1174
1175 ;; We generate RTL for comparisons and branches by having the cmpxx
1176 ;; patterns store away the operands. Then the bcc patterns
1177 ;; emit RTL for both the compare and the branch.
1178 ;;
1179 ;; On the m32r it is more efficient to use the bxxz instructions and
1180 ;; thus merge the compare and branch into one instruction, so they are
1181 ;; preferred.
1182
1183 (define_expand "cmpsi"
1184 [(set (reg:CC 17)
1185 (compare:CC (match_operand:SI 0 "register_operand" "")
1186 (match_operand:SI 1 "reg_or_cmp_int16_operand" "")))]
1187 ""
1188 "
1189 {
1190 m32r_compare_op0 = operands[0];
1191 m32r_compare_op1 = operands[1];
1192 DONE;
1193 }")
1194
1195 (define_insn "cmp_eqsi_zero_insn"
1196 [(set (reg:CC 17)
1197 (eq:CC (match_operand:SI 0 "register_operand" "r,r")
1198 (match_operand:SI 1 "reg_or_zero_operand" "r,P")))]
1199 "TARGET_M32RX || TARGET_M32R2"
1200 "@
1201 cmpeq %0, %1
1202 cmpz %0"
1203 [(set_attr "type" "int4")
1204 (set_attr "length" "4")])
1205
1206 ;; The cmp_xxx_insn patterns set the condition bit to the result of the
1207 ;; comparison. There isn't a "compare equal" instruction so cmp_eqsi_insn
1208 ;; is quite inefficient. However, it is rarely used.
1209
1210 (define_insn "cmp_eqsi_insn"
1211 [(set (reg:CC 17)
1212 (eq:CC (match_operand:SI 0 "register_operand" "r,r")
1213 (match_operand:SI 1 "reg_or_cmp_int16_operand" "r,P")))
1214 (clobber (match_scratch:SI 2 "=&r,&r"))]
1215 ""
1216 "*
1217 {
1218 if (which_alternative == 0)
1219 {
1220 return \"mv %2,%0\;sub %2,%1\;cmpui %2,#1\";
1221 }
1222 else
1223 {
1224 if (INTVAL (operands [1]) == 0)
1225 return \"cmpui %0, #1\";
1226 else if (REGNO (operands [2]) == REGNO (operands [0]))
1227 return \"addi %0,%#%N1\;cmpui %2,#1\";
1228 else
1229 return \"add3 %2,%0,%#%N1\;cmpui %2,#1\";
1230 }
1231 }"
1232 [(set_attr "type" "multi,multi")
1233 (set_attr "length" "8,8")])
1234
1235 (define_insn "cmp_ltsi_insn"
1236 [(set (reg:CC 17)
1237 (lt:CC (match_operand:SI 0 "register_operand" "r,r")
1238 (match_operand:SI 1 "reg_or_int16_operand" "r,J")))]
1239 ""
1240 "@
1241 cmp %0,%1
1242 cmpi %0,%#%1"
1243 [(set_attr "type" "int2,int4")
1244 (set_attr "length" "2,4")])
1245
1246 (define_insn "cmp_ltusi_insn"
1247 [(set (reg:CC 17)
1248 (ltu:CC (match_operand:SI 0 "register_operand" "r,r")
1249 (match_operand:SI 1 "reg_or_int16_operand" "r,J")))]
1250 ""
1251 "@
1252 cmpu %0,%1
1253 cmpui %0,%#%1"
1254 [(set_attr "type" "int2,int4")
1255 (set_attr "length" "2,4")])
1256
1257 ;; These control RTL generation for conditional jump insns.
1258
1259 (define_expand "beq"
1260 [(set (pc)
1261 (if_then_else (match_dup 1)
1262 (label_ref (match_operand 0 "" ""))
1263 (pc)))]
1264 ""
1265 "
1266 {
1267 operands[1] = gen_compare (EQ, m32r_compare_op0, m32r_compare_op1, FALSE);
1268 }")
1269
1270 (define_expand "bne"
1271 [(set (pc)
1272 (if_then_else (match_dup 1)
1273 (label_ref (match_operand 0 "" ""))
1274 (pc)))]
1275 ""
1276 "
1277 {
1278 operands[1] = gen_compare (NE, m32r_compare_op0, m32r_compare_op1, FALSE);
1279 }")
1280
1281 (define_expand "bgt"
1282 [(set (pc)
1283 (if_then_else (match_dup 1)
1284 (label_ref (match_operand 0 "" ""))
1285 (pc)))]
1286 ""
1287 "
1288 {
1289 operands[1] = gen_compare (GT, m32r_compare_op0, m32r_compare_op1, FALSE);
1290 }")
1291
1292 (define_expand "ble"
1293 [(set (pc)
1294 (if_then_else (match_dup 1)
1295 (label_ref (match_operand 0 "" ""))
1296 (pc)))]
1297 ""
1298 "
1299 {
1300 operands[1] = gen_compare (LE, m32r_compare_op0, m32r_compare_op1, FALSE);
1301 }")
1302
1303 (define_expand "bge"
1304 [(set (pc)
1305 (if_then_else (match_dup 1)
1306 (label_ref (match_operand 0 "" ""))
1307 (pc)))]
1308 ""
1309 "
1310 {
1311 operands[1] = gen_compare (GE, m32r_compare_op0, m32r_compare_op1, FALSE);
1312 }")
1313
1314 (define_expand "blt"
1315 [(set (pc)
1316 (if_then_else (match_dup 1)
1317 (label_ref (match_operand 0 "" ""))
1318 (pc)))]
1319 ""
1320 "
1321 {
1322 operands[1] = gen_compare (LT, m32r_compare_op0, m32r_compare_op1, FALSE);
1323 }")
1324
1325 (define_expand "bgtu"
1326 [(set (pc)
1327 (if_then_else (match_dup 1)
1328 (label_ref (match_operand 0 "" ""))
1329 (pc)))]
1330 ""
1331 "
1332 {
1333 operands[1] = gen_compare (GTU, m32r_compare_op0, m32r_compare_op1, FALSE);
1334 }")
1335
1336 (define_expand "bleu"
1337 [(set (pc)
1338 (if_then_else (match_dup 1)
1339 (label_ref (match_operand 0 "" ""))
1340 (pc)))]
1341 ""
1342 "
1343 {
1344 operands[1] = gen_compare (LEU, m32r_compare_op0, m32r_compare_op1, FALSE);
1345 }")
1346
1347 (define_expand "bgeu"
1348 [(set (pc)
1349 (if_then_else (match_dup 1)
1350 (label_ref (match_operand 0 "" ""))
1351 (pc)))]
1352 ""
1353 "
1354 {
1355 operands[1] = gen_compare (GEU, m32r_compare_op0, m32r_compare_op1, FALSE);
1356 }")
1357
1358 (define_expand "bltu"
1359 [(set (pc)
1360 (if_then_else (match_dup 1)
1361 (label_ref (match_operand 0 "" ""))
1362 (pc)))]
1363 ""
1364 "
1365 {
1366 operands[1] = gen_compare (LTU, m32r_compare_op0, m32r_compare_op1, FALSE);
1367 }")
1368
1369 ;; Now match both normal and inverted jump.
1370
1371 (define_insn "*branch_insn"
1372 [(set (pc)
1373 (if_then_else (match_operator 1 "eqne_comparison_operator"
1374 [(reg 17) (const_int 0)])
1375 (label_ref (match_operand 0 "" ""))
1376 (pc)))]
1377 ""
1378 "*
1379 {
1380 static char instruction[40];
1381 sprintf (instruction, \"%s%s %%l0\",
1382 (GET_CODE (operands[1]) == NE) ? \"bc\" : \"bnc\",
1383 (get_attr_length (insn) == 2) ? \".s\" : \"\");
1384 return instruction;
1385 }"
1386 [(set_attr "type" "branch")
1387 ; cf PR gcc/28508
1388 ; We use 300/600 instead of 512,1024 to account for inaccurate insn
1389 ; lengths and insn alignments that are complex to track.
1390 ; It's not important that we be hyper-precise here. It may be more
1391 ; important blah blah blah when the chip supports parallel execution
1392 ; blah blah blah but until then blah blah blah this is simple and
1393 ; suffices.
1394 (set (attr "length") (if_then_else (ltu (plus (minus (match_dup 0) (pc))
1395 (const_int 300))
1396 (const_int 600))
1397 (const_int 2)
1398 (const_int 4)))])
1399
1400 (define_insn "*rev_branch_insn"
1401 [(set (pc)
1402 (if_then_else (match_operator 1 "eqne_comparison_operator"
1403 [(reg 17) (const_int 0)])
1404 (pc)
1405 (label_ref (match_operand 0 "" ""))))]
1406 ;"REVERSIBLE_CC_MODE (GET_MODE (XEXP (operands[1], 0)))"
1407 ""
1408 "*
1409 {
1410 static char instruction[40];
1411 sprintf (instruction, \"%s%s %%l0\",
1412 (GET_CODE (operands[1]) == EQ) ? \"bc\" : \"bnc\",
1413 (get_attr_length (insn) == 2) ? \".s\" : \"\");
1414 return instruction;
1415 }"
1416 [(set_attr "type" "branch")
1417 ; cf PR gcc/28508
1418 ; We use 300/600 instead of 512,1024 to account for inaccurate insn
1419 ; lengths and insn alignments that are complex to track.
1420 ; It's not important that we be hyper-precise here. It may be more
1421 ; important blah blah blah when the chip supports parallel execution
1422 ; blah blah blah but until then blah blah blah this is simple and
1423 ; suffices.
1424 (set (attr "length") (if_then_else (ltu (plus (minus (match_dup 0) (pc))
1425 (const_int 300))
1426 (const_int 600))
1427 (const_int 2)
1428 (const_int 4)))])
1429
1430 ; reg/reg compare and branch insns
1431
1432 (define_insn "*reg_branch_insn"
1433 [(set (pc)
1434 (if_then_else (match_operator 1 "eqne_comparison_operator"
1435 [(match_operand:SI 2 "register_operand" "r")
1436 (match_operand:SI 3 "register_operand" "r")])
1437 (label_ref (match_operand 0 "" ""))
1438 (pc)))]
1439 ""
1440 "*
1441 {
1442 /* Is branch target reachable with beq/bne? */
1443 if (get_attr_length (insn) == 4)
1444 {
1445 if (GET_CODE (operands[1]) == EQ)
1446 return \"beq %2,%3,%l0\";
1447 else
1448 return \"bne %2,%3,%l0\";
1449 }
1450 else
1451 {
1452 if (GET_CODE (operands[1]) == EQ)
1453 return \"bne %2,%3,1f\;bra %l0\;1:\";
1454 else
1455 return \"beq %2,%3,1f\;bra %l0\;1:\";
1456 }
1457 }"
1458 [(set_attr "type" "branch")
1459 ; We use 25000/50000 instead of 32768/65536 to account for slot filling
1460 ; which is complex to track and inaccurate length specs.
1461 (set (attr "length") (if_then_else (ltu (plus (minus (match_dup 0) (pc))
1462 (const_int 25000))
1463 (const_int 50000))
1464 (const_int 4)
1465 (const_int 8)))])
1466
1467 (define_insn "*rev_reg_branch_insn"
1468 [(set (pc)
1469 (if_then_else (match_operator 1 "eqne_comparison_operator"
1470 [(match_operand:SI 2 "register_operand" "r")
1471 (match_operand:SI 3 "register_operand" "r")])
1472 (pc)
1473 (label_ref (match_operand 0 "" ""))))]
1474 ""
1475 "*
1476 {
1477 /* Is branch target reachable with beq/bne? */
1478 if (get_attr_length (insn) == 4)
1479 {
1480 if (GET_CODE (operands[1]) == NE)
1481 return \"beq %2,%3,%l0\";
1482 else
1483 return \"bne %2,%3,%l0\";
1484 }
1485 else
1486 {
1487 if (GET_CODE (operands[1]) == NE)
1488 return \"bne %2,%3,1f\;bra %l0\;1:\";
1489 else
1490 return \"beq %2,%3,1f\;bra %l0\;1:\";
1491 }
1492 }"
1493 [(set_attr "type" "branch")
1494 ; We use 25000/50000 instead of 32768/65536 to account for slot filling
1495 ; which is complex to track and inaccurate length specs.
1496 (set (attr "length") (if_then_else (ltu (plus (minus (match_dup 0) (pc))
1497 (const_int 25000))
1498 (const_int 50000))
1499 (const_int 4)
1500 (const_int 8)))])
1501
1502 ; reg/zero compare and branch insns
1503
1504 (define_insn "*zero_branch_insn"
1505 [(set (pc)
1506 (if_then_else (match_operator 1 "signed_comparison_operator"
1507 [(match_operand:SI 2 "register_operand" "r")
1508 (const_int 0)])
1509 (label_ref (match_operand 0 "" ""))
1510 (pc)))]
1511 ""
1512 "*
1513 {
1514 const char *br,*invbr;
1515 char asmtext[40];
1516
1517 switch (GET_CODE (operands[1]))
1518 {
1519 case EQ : br = \"eq\"; invbr = \"ne\"; break;
1520 case NE : br = \"ne\"; invbr = \"eq\"; break;
1521 case LE : br = \"le\"; invbr = \"gt\"; break;
1522 case GT : br = \"gt\"; invbr = \"le\"; break;
1523 case LT : br = \"lt\"; invbr = \"ge\"; break;
1524 case GE : br = \"ge\"; invbr = \"lt\"; break;
1525
1526 default: gcc_unreachable ();
1527 }
1528
1529 /* Is branch target reachable with bxxz? */
1530 if (get_attr_length (insn) == 4)
1531 {
1532 sprintf (asmtext, \"b%sz %%2,%%l0\", br);
1533 output_asm_insn (asmtext, operands);
1534 }
1535 else
1536 {
1537 sprintf (asmtext, \"b%sz %%2,1f\;bra %%l0\;1:\", invbr);
1538 output_asm_insn (asmtext, operands);
1539 }
1540 return \"\";
1541 }"
1542 [(set_attr "type" "branch")
1543 ; We use 25000/50000 instead of 32768/65536 to account for slot filling
1544 ; which is complex to track and inaccurate length specs.
1545 (set (attr "length") (if_then_else (ltu (plus (minus (match_dup 0) (pc))
1546 (const_int 25000))
1547 (const_int 50000))
1548 (const_int 4)
1549 (const_int 8)))])
1550
1551 (define_insn "*rev_zero_branch_insn"
1552 [(set (pc)
1553 (if_then_else (match_operator 1 "eqne_comparison_operator"
1554 [(match_operand:SI 2 "register_operand" "r")
1555 (const_int 0)])
1556 (pc)
1557 (label_ref (match_operand 0 "" ""))))]
1558 ""
1559 "*
1560 {
1561 const char *br,*invbr;
1562 char asmtext[40];
1563
1564 switch (GET_CODE (operands[1]))
1565 {
1566 case EQ : br = \"eq\"; invbr = \"ne\"; break;
1567 case NE : br = \"ne\"; invbr = \"eq\"; break;
1568 case LE : br = \"le\"; invbr = \"gt\"; break;
1569 case GT : br = \"gt\"; invbr = \"le\"; break;
1570 case LT : br = \"lt\"; invbr = \"ge\"; break;
1571 case GE : br = \"ge\"; invbr = \"lt\"; break;
1572
1573 default: gcc_unreachable ();
1574 }
1575
1576 /* Is branch target reachable with bxxz? */
1577 if (get_attr_length (insn) == 4)
1578 {
1579 sprintf (asmtext, \"b%sz %%2,%%l0\", invbr);
1580 output_asm_insn (asmtext, operands);
1581 }
1582 else
1583 {
1584 sprintf (asmtext, \"b%sz %%2,1f\;bra %%l0\;1:\", br);
1585 output_asm_insn (asmtext, operands);
1586 }
1587 return \"\";
1588 }"
1589 [(set_attr "type" "branch")
1590 ; We use 25000/50000 instead of 32768/65536 to account for slot filling
1591 ; which is complex to track and inaccurate length specs.
1592 (set (attr "length") (if_then_else (ltu (plus (minus (match_dup 0) (pc))
1593 (const_int 25000))
1594 (const_int 50000))
1595 (const_int 4)
1596 (const_int 8)))])
1597
1598 ;; S<cc> operations to set a register to 1/0 based on a comparison
1599
1600 (define_expand "seq"
1601 [(match_operand:SI 0 "register_operand" "")]
1602 ""
1603 "
1604 {
1605 rtx op0 = operands[0];
1606 rtx op1 = m32r_compare_op0;
1607 rtx op2 = m32r_compare_op1;
1608 enum machine_mode mode = GET_MODE (op0);
1609
1610 if (mode != SImode)
1611 FAIL;
1612
1613 if (! register_operand (op1, mode))
1614 op1 = force_reg (mode, op1);
1615
1616 if (TARGET_M32RX || TARGET_M32R2)
1617 {
1618 if (! reg_or_zero_operand (op2, mode))
1619 op2 = force_reg (mode, op2);
1620
1621 emit_insn (gen_seq_insn_m32rx (op0, op1, op2));
1622 DONE;
1623 }
1624 if (GET_CODE (op2) == CONST_INT && INTVAL (op2) == 0)
1625 {
1626 emit_insn (gen_seq_zero_insn (op0, op1));
1627 DONE;
1628 }
1629
1630 if (! reg_or_eq_int16_operand (op2, mode))
1631 op2 = force_reg (mode, op2);
1632
1633 emit_insn (gen_seq_insn (op0, op1, op2));
1634 DONE;
1635 }")
1636
1637 (define_insn "seq_insn_m32rx"
1638 [(set (match_operand:SI 0 "register_operand" "=r")
1639 (eq:SI (match_operand:SI 1 "register_operand" "%r")
1640 (match_operand:SI 2 "reg_or_zero_operand" "rP")))
1641 (clobber (reg:CC 17))]
1642 "TARGET_M32RX || TARGET_M32R2"
1643 "#"
1644 [(set_attr "type" "multi")
1645 (set_attr "length" "6")])
1646
1647 (define_split
1648 [(set (match_operand:SI 0 "register_operand" "")
1649 (eq:SI (match_operand:SI 1 "register_operand" "")
1650 (match_operand:SI 2 "reg_or_zero_operand" "")))
1651 (clobber (reg:CC 17))]
1652 "TARGET_M32RX || TARGET_M32R2"
1653 [(set (reg:CC 17)
1654 (eq:CC (match_dup 1)
1655 (match_dup 2)))
1656 (set (match_dup 0)
1657 (ne:SI (reg:CC 17) (const_int 0)))]
1658 "")
1659
1660 (define_insn "seq_zero_insn"
1661 [(set (match_operand:SI 0 "register_operand" "=r")
1662 (eq:SI (match_operand:SI 1 "register_operand" "r")
1663 (const_int 0)))
1664 (clobber (reg:CC 17))]
1665 "TARGET_M32R"
1666 "#"
1667 [(set_attr "type" "multi")
1668 (set_attr "length" "6")])
1669
1670 (define_split
1671 [(set (match_operand:SI 0 "register_operand" "")
1672 (eq:SI (match_operand:SI 1 "register_operand" "")
1673 (const_int 0)))
1674 (clobber (reg:CC 17))]
1675 "TARGET_M32R"
1676 [(match_dup 3)]
1677 "
1678 {
1679 rtx op0 = operands[0];
1680 rtx op1 = operands[1];
1681
1682 start_sequence ();
1683 emit_insn (gen_cmp_ltusi_insn (op1, const1_rtx));
1684 emit_insn (gen_movcc_insn (op0));
1685 operands[3] = get_insns ();
1686 end_sequence ();
1687 }")
1688
1689 (define_insn "seq_insn"
1690 [(set (match_operand:SI 0 "register_operand" "=r,r,??r,r")
1691 (eq:SI (match_operand:SI 1 "register_operand" "r,r,r,r")
1692 (match_operand:SI 2 "reg_or_eq_int16_operand" "r,r,r,PK")))
1693 (clobber (reg:CC 17))
1694 (clobber (match_scratch:SI 3 "=1,2,&r,r"))]
1695 "TARGET_M32R"
1696 "#"
1697 [(set_attr "type" "multi")
1698 (set_attr "length" "8,8,10,10")])
1699
1700 (define_split
1701 [(set (match_operand:SI 0 "register_operand" "")
1702 (eq:SI (match_operand:SI 1 "register_operand" "")
1703 (match_operand:SI 2 "reg_or_eq_int16_operand" "")))
1704 (clobber (reg:CC 17))
1705 (clobber (match_scratch:SI 3 ""))]
1706 "TARGET_M32R && reload_completed"
1707 [(match_dup 4)]
1708 "
1709 {
1710 rtx op0 = operands[0];
1711 rtx op1 = operands[1];
1712 rtx op2 = operands[2];
1713 rtx op3 = operands[3];
1714 HOST_WIDE_INT value;
1715
1716 if (GET_CODE (op2) == REG && GET_CODE (op3) == REG
1717 && REGNO (op2) == REGNO (op3))
1718 {
1719 op1 = operands[2];
1720 op2 = operands[1];
1721 }
1722
1723 start_sequence ();
1724 if (GET_CODE (op1) == REG && GET_CODE (op3) == REG
1725 && REGNO (op1) != REGNO (op3))
1726 {
1727 emit_move_insn (op3, op1);
1728 op1 = op3;
1729 }
1730
1731 if (satisfies_constraint_P (op2) && (value = INTVAL (op2)) != 0)
1732 emit_insn (gen_addsi3 (op3, op1, GEN_INT (-value)));
1733 else
1734 emit_insn (gen_xorsi3 (op3, op1, op2));
1735
1736 emit_insn (gen_cmp_ltusi_insn (op3, const1_rtx));
1737 emit_insn (gen_movcc_insn (op0));
1738 operands[4] = get_insns ();
1739 end_sequence ();
1740 }")
1741
1742 (define_expand "sne"
1743 [(match_operand:SI 0 "register_operand" "")]
1744 ""
1745 "
1746 {
1747 rtx op0 = operands[0];
1748 rtx op1 = m32r_compare_op0;
1749 rtx op2 = m32r_compare_op1;
1750 enum machine_mode mode = GET_MODE (op0);
1751
1752 if (mode != SImode)
1753 FAIL;
1754
1755 if (GET_CODE (op2) != CONST_INT
1756 || (INTVAL (op2) != 0 && satisfies_constraint_K (op2)))
1757 {
1758 rtx reg;
1759
1760 if (reload_completed || reload_in_progress)
1761 FAIL;
1762
1763 reg = gen_reg_rtx (SImode);
1764 emit_insn (gen_xorsi3 (reg, op1, op2));
1765 op1 = reg;
1766
1767 if (! register_operand (op1, mode))
1768 op1 = force_reg (mode, op1);
1769
1770 emit_insn (gen_sne_zero_insn (op0, op1));
1771 DONE;
1772 }
1773 else
1774 FAIL;
1775 }")
1776
1777 (define_insn "sne_zero_insn"
1778 [(set (match_operand:SI 0 "register_operand" "=r")
1779 (ne:SI (match_operand:SI 1 "register_operand" "r")
1780 (const_int 0)))
1781 (clobber (reg:CC 17))
1782 (clobber (match_scratch:SI 2 "=&r"))]
1783 ""
1784 "#"
1785 [(set_attr "type" "multi")
1786 (set_attr "length" "6")])
1787
1788 (define_split
1789 [(set (match_operand:SI 0 "register_operand" "")
1790 (ne:SI (match_operand:SI 1 "register_operand" "")
1791 (const_int 0)))
1792 (clobber (reg:CC 17))
1793 (clobber (match_scratch:SI 2 ""))]
1794 "reload_completed"
1795 [(set (match_dup 2)
1796 (const_int 0))
1797 (set (reg:CC 17)
1798 (ltu:CC (match_dup 2)
1799 (match_dup 1)))
1800 (set (match_dup 0)
1801 (ne:SI (reg:CC 17) (const_int 0)))]
1802 "")
1803
1804 (define_expand "slt"
1805 [(match_operand:SI 0 "register_operand" "")]
1806 ""
1807 "
1808 {
1809 rtx op0 = operands[0];
1810 rtx op1 = m32r_compare_op0;
1811 rtx op2 = m32r_compare_op1;
1812 enum machine_mode mode = GET_MODE (op0);
1813
1814 if (mode != SImode)
1815 FAIL;
1816
1817 if (! register_operand (op1, mode))
1818 op1 = force_reg (mode, op1);
1819
1820 if (! reg_or_int16_operand (op2, mode))
1821 op2 = force_reg (mode, op2);
1822
1823 emit_insn (gen_slt_insn (op0, op1, op2));
1824 DONE;
1825 }")
1826
1827 (define_insn "slt_insn"
1828 [(set (match_operand:SI 0 "register_operand" "=r,r")
1829 (lt:SI (match_operand:SI 1 "register_operand" "r,r")
1830 (match_operand:SI 2 "reg_or_int16_operand" "r,J")))
1831 (clobber (reg:CC 17))]
1832 ""
1833 "#"
1834 [(set_attr "type" "multi")
1835 (set_attr "length" "4,6")])
1836
1837 (define_split
1838 [(set (match_operand:SI 0 "register_operand" "")
1839 (lt:SI (match_operand:SI 1 "register_operand" "")
1840 (match_operand:SI 2 "reg_or_int16_operand" "")))
1841 (clobber (reg:CC 17))]
1842 ""
1843 [(set (reg:CC 17)
1844 (lt:CC (match_dup 1)
1845 (match_dup 2)))
1846 (set (match_dup 0)
1847 (ne:SI (reg:CC 17) (const_int 0)))]
1848 "")
1849
1850 (define_expand "sle"
1851 [(match_operand:SI 0 "register_operand" "")]
1852 ""
1853 "
1854 {
1855 rtx op0 = operands[0];
1856 rtx op1 = m32r_compare_op0;
1857 rtx op2 = m32r_compare_op1;
1858 enum machine_mode mode = GET_MODE (op0);
1859
1860 if (mode != SImode)
1861 FAIL;
1862
1863 if (! register_operand (op1, mode))
1864 op1 = force_reg (mode, op1);
1865
1866 if (GET_CODE (op2) == CONST_INT)
1867 {
1868 HOST_WIDE_INT value = INTVAL (op2);
1869 if (value >= 2147483647)
1870 {
1871 emit_move_insn (op0, const1_rtx);
1872 DONE;
1873 }
1874
1875 op2 = GEN_INT (value+1);
1876 if (value < -32768 || value >= 32767)
1877 op2 = force_reg (mode, op2);
1878
1879 emit_insn (gen_slt_insn (op0, op1, op2));
1880 DONE;
1881 }
1882
1883 if (! register_operand (op2, mode))
1884 op2 = force_reg (mode, op2);
1885
1886 emit_insn (gen_sle_insn (op0, op1, op2));
1887 DONE;
1888 }")
1889
1890 (define_insn "sle_insn"
1891 [(set (match_operand:SI 0 "register_operand" "=r")
1892 (le:SI (match_operand:SI 1 "register_operand" "r")
1893 (match_operand:SI 2 "register_operand" "r")))
1894 (clobber (reg:CC 17))]
1895 ""
1896 "#"
1897 [(set_attr "type" "multi")
1898 (set_attr "length" "8")])
1899
1900 (define_split
1901 [(set (match_operand:SI 0 "register_operand" "")
1902 (le:SI (match_operand:SI 1 "register_operand" "")
1903 (match_operand:SI 2 "register_operand" "")))
1904 (clobber (reg:CC 17))]
1905 "!optimize_size"
1906 [(set (reg:CC 17)
1907 (lt:CC (match_dup 2)
1908 (match_dup 1)))
1909 (set (match_dup 0)
1910 (ne:SI (reg:CC 17) (const_int 0)))
1911 (set (match_dup 0)
1912 (xor:SI (match_dup 0)
1913 (const_int 1)))]
1914 "")
1915
1916 ;; If optimizing for space, use -(reg - 1) to invert the comparison rather than
1917 ;; xor reg,reg,1 which might eliminate a NOP being inserted.
1918 (define_split
1919 [(set (match_operand:SI 0 "register_operand" "")
1920 (le:SI (match_operand:SI 1 "register_operand" "")
1921 (match_operand:SI 2 "register_operand" "")))
1922 (clobber (reg:CC 17))]
1923 "optimize_size"
1924 [(set (reg:CC 17)
1925 (lt:CC (match_dup 2)
1926 (match_dup 1)))
1927 (set (match_dup 0)
1928 (ne:SI (reg:CC 17) (const_int 0)))
1929 (set (match_dup 0)
1930 (plus:SI (match_dup 0)
1931 (const_int -1)))
1932 (set (match_dup 0)
1933 (neg:SI (match_dup 0)))]
1934 "")
1935
1936 (define_expand "sgt"
1937 [(match_operand:SI 0 "register_operand" "")]
1938 ""
1939 "
1940 {
1941 rtx op0 = operands[0];
1942 rtx op1 = m32r_compare_op0;
1943 rtx op2 = m32r_compare_op1;
1944 enum machine_mode mode = GET_MODE (op0);
1945
1946 if (mode != SImode)
1947 FAIL;
1948
1949 if (! register_operand (op1, mode))
1950 op1 = force_reg (mode, op1);
1951
1952 if (! register_operand (op2, mode))
1953 op2 = force_reg (mode, op2);
1954
1955 emit_insn (gen_slt_insn (op0, op2, op1));
1956 DONE;
1957 }")
1958
1959 (define_expand "sge"
1960 [(match_operand:SI 0 "register_operand" "")]
1961 ""
1962 "
1963 {
1964 rtx op0 = operands[0];
1965 rtx op1 = m32r_compare_op0;
1966 rtx op2 = m32r_compare_op1;
1967 enum machine_mode mode = GET_MODE (op0);
1968
1969 if (mode != SImode)
1970 FAIL;
1971
1972 if (! register_operand (op1, mode))
1973 op1 = force_reg (mode, op1);
1974
1975 if (! reg_or_int16_operand (op2, mode))
1976 op2 = force_reg (mode, op2);
1977
1978 emit_insn (gen_sge_insn (op0, op1, op2));
1979 DONE;
1980 }")
1981
1982 (define_insn "sge_insn"
1983 [(set (match_operand:SI 0 "register_operand" "=r,r")
1984 (ge:SI (match_operand:SI 1 "register_operand" "r,r")
1985 (match_operand:SI 2 "reg_or_int16_operand" "r,J")))
1986 (clobber (reg:CC 17))]
1987 ""
1988 "#"
1989 [(set_attr "type" "multi")
1990 (set_attr "length" "8,10")])
1991
1992 (define_split
1993 [(set (match_operand:SI 0 "register_operand" "")
1994 (ge:SI (match_operand:SI 1 "register_operand" "")
1995 (match_operand:SI 2 "reg_or_int16_operand" "")))
1996 (clobber (reg:CC 17))]
1997 "!optimize_size"
1998 [(set (reg:CC 17)
1999 (lt:CC (match_dup 1)
2000 (match_dup 2)))
2001 (set (match_dup 0)
2002 (ne:SI (reg:CC 17) (const_int 0)))
2003 (set (match_dup 0)
2004 (xor:SI (match_dup 0)
2005 (const_int 1)))]
2006 "")
2007
2008 ;; If optimizing for space, use -(reg - 1) to invert the comparison rather than
2009 ;; xor reg,reg,1 which might eliminate a NOP being inserted.
2010 (define_split
2011 [(set (match_operand:SI 0 "register_operand" "")
2012 (ge:SI (match_operand:SI 1 "register_operand" "")
2013 (match_operand:SI 2 "reg_or_int16_operand" "")))
2014 (clobber (reg:CC 17))]
2015 "optimize_size"
2016 [(set (reg:CC 17)
2017 (lt:CC (match_dup 1)
2018 (match_dup 2)))
2019 (set (match_dup 0)
2020 (ne:SI (reg:CC 17) (const_int 0)))
2021 (set (match_dup 0)
2022 (plus:SI (match_dup 0)
2023 (const_int -1)))
2024 (set (match_dup 0)
2025 (neg:SI (match_dup 0)))]
2026 "")
2027
2028 (define_expand "sltu"
2029 [(match_operand:SI 0 "register_operand" "")]
2030 ""
2031 "
2032 {
2033 rtx op0 = operands[0];
2034 rtx op1 = m32r_compare_op0;
2035 rtx op2 = m32r_compare_op1;
2036 enum machine_mode mode = GET_MODE (op0);
2037
2038 if (mode != SImode)
2039 FAIL;
2040
2041 if (! register_operand (op1, mode))
2042 op1 = force_reg (mode, op1);
2043
2044 if (! reg_or_int16_operand (op2, mode))
2045 op2 = force_reg (mode, op2);
2046
2047 emit_insn (gen_sltu_insn (op0, op1, op2));
2048 DONE;
2049 }")
2050
2051 (define_insn "sltu_insn"
2052 [(set (match_operand:SI 0 "register_operand" "=r,r")
2053 (ltu:SI (match_operand:SI 1 "register_operand" "r,r")
2054 (match_operand:SI 2 "reg_or_int16_operand" "r,J")))
2055 (clobber (reg:CC 17))]
2056 ""
2057 "#"
2058 [(set_attr "type" "multi")
2059 (set_attr "length" "6,8")])
2060
2061 (define_split
2062 [(set (match_operand:SI 0 "register_operand" "")
2063 (ltu:SI (match_operand:SI 1 "register_operand" "")
2064 (match_operand:SI 2 "reg_or_int16_operand" "")))
2065 (clobber (reg:CC 17))]
2066 ""
2067 [(set (reg:CC 17)
2068 (ltu:CC (match_dup 1)
2069 (match_dup 2)))
2070 (set (match_dup 0)
2071 (ne:SI (reg:CC 17) (const_int 0)))]
2072 "")
2073
2074 (define_expand "sleu"
2075 [(match_operand:SI 0 "register_operand" "")]
2076 ""
2077 "
2078 {
2079 rtx op0 = operands[0];
2080 rtx op1 = m32r_compare_op0;
2081 rtx op2 = m32r_compare_op1;
2082 enum machine_mode mode = GET_MODE (op0);
2083
2084 if (mode != SImode)
2085 FAIL;
2086
2087 if (GET_CODE (op2) == CONST_INT)
2088 {
2089 HOST_WIDE_INT value = INTVAL (op2);
2090 if (value >= 2147483647)
2091 {
2092 emit_move_insn (op0, const1_rtx);
2093 DONE;
2094 }
2095
2096 op2 = GEN_INT (value+1);
2097 if (value < 0 || value >= 32767)
2098 op2 = force_reg (mode, op2);
2099
2100 emit_insn (gen_sltu_insn (op0, op1, op2));
2101 DONE;
2102 }
2103
2104 if (! register_operand (op2, mode))
2105 op2 = force_reg (mode, op2);
2106
2107 emit_insn (gen_sleu_insn (op0, op1, op2));
2108 DONE;
2109 }")
2110
2111 (define_insn "sleu_insn"
2112 [(set (match_operand:SI 0 "register_operand" "=r")
2113 (leu:SI (match_operand:SI 1 "register_operand" "r")
2114 (match_operand:SI 2 "register_operand" "r")))
2115 (clobber (reg:CC 17))]
2116 ""
2117 "#"
2118 [(set_attr "type" "multi")
2119 (set_attr "length" "8")])
2120
2121 (define_split
2122 [(set (match_operand:SI 0 "register_operand" "")
2123 (leu:SI (match_operand:SI 1 "register_operand" "")
2124 (match_operand:SI 2 "register_operand" "")))
2125 (clobber (reg:CC 17))]
2126 "!optimize_size"
2127 [(set (reg:CC 17)
2128 (ltu:CC (match_dup 2)
2129 (match_dup 1)))
2130 (set (match_dup 0)
2131 (ne:SI (reg:CC 17) (const_int 0)))
2132 (set (match_dup 0)
2133 (xor:SI (match_dup 0)
2134 (const_int 1)))]
2135 "")
2136
2137 ;; If optimizing for space, use -(reg - 1) to invert the comparison rather than
2138 ;; xor reg,reg,1 which might eliminate a NOP being inserted.
2139 (define_split
2140 [(set (match_operand:SI 0 "register_operand" "")
2141 (leu:SI (match_operand:SI 1 "register_operand" "")
2142 (match_operand:SI 2 "register_operand" "")))
2143 (clobber (reg:CC 17))]
2144 "optimize_size"
2145 [(set (reg:CC 17)
2146 (ltu:CC (match_dup 2)
2147 (match_dup 1)))
2148 (set (match_dup 0)
2149 (ne:SI (reg:CC 17) (const_int 0)))
2150 (set (match_dup 0)
2151 (plus:SI (match_dup 0)
2152 (const_int -1)))
2153 (set (match_dup 0)
2154 (neg:SI (match_dup 0)))]
2155 "")
2156
2157 (define_expand "sgtu"
2158 [(match_operand:SI 0 "register_operand" "")]
2159 ""
2160 "
2161 {
2162 rtx op0 = operands[0];
2163 rtx op1 = m32r_compare_op0;
2164 rtx op2 = m32r_compare_op1;
2165 enum machine_mode mode = GET_MODE (op0);
2166
2167 if (mode != SImode)
2168 FAIL;
2169
2170 if (! register_operand (op1, mode))
2171 op1 = force_reg (mode, op1);
2172
2173 if (! register_operand (op2, mode))
2174 op2 = force_reg (mode, op2);
2175
2176 emit_insn (gen_sltu_insn (op0, op2, op1));
2177 DONE;
2178 }")
2179
2180 (define_expand "sgeu"
2181 [(match_operand:SI 0 "register_operand" "")]
2182 ""
2183 "
2184 {
2185 rtx op0 = operands[0];
2186 rtx op1 = m32r_compare_op0;
2187 rtx op2 = m32r_compare_op1;
2188 enum machine_mode mode = GET_MODE (op0);
2189
2190 if (mode != SImode)
2191 FAIL;
2192
2193 if (! register_operand (op1, mode))
2194 op1 = force_reg (mode, op1);
2195
2196 if (! reg_or_int16_operand (op2, mode))
2197 op2 = force_reg (mode, op2);
2198
2199 emit_insn (gen_sgeu_insn (op0, op1, op2));
2200 DONE;
2201 }")
2202
2203 (define_insn "sgeu_insn"
2204 [(set (match_operand:SI 0 "register_operand" "=r,r")
2205 (geu:SI (match_operand:SI 1 "register_operand" "r,r")
2206 (match_operand:SI 2 "reg_or_int16_operand" "r,J")))
2207 (clobber (reg:CC 17))]
2208 ""
2209 "#"
2210 [(set_attr "type" "multi")
2211 (set_attr "length" "8,10")])
2212
2213 (define_split
2214 [(set (match_operand:SI 0 "register_operand" "")
2215 (geu:SI (match_operand:SI 1 "register_operand" "")
2216 (match_operand:SI 2 "reg_or_int16_operand" "")))
2217 (clobber (reg:CC 17))]
2218 "!optimize_size"
2219 [(set (reg:CC 17)
2220 (ltu:CC (match_dup 1)
2221 (match_dup 2)))
2222 (set (match_dup 0)
2223 (ne:SI (reg:CC 17) (const_int 0)))
2224 (set (match_dup 0)
2225 (xor:SI (match_dup 0)
2226 (const_int 1)))]
2227 "")
2228
2229 ;; If optimizing for space, use -(reg - 1) to invert the comparison rather than
2230 ;; xor reg,reg,1 which might eliminate a NOP being inserted.
2231 (define_split
2232 [(set (match_operand:SI 0 "register_operand" "")
2233 (geu:SI (match_operand:SI 1 "register_operand" "")
2234 (match_operand:SI 2 "reg_or_int16_operand" "")))
2235 (clobber (reg:CC 17))]
2236 "optimize_size"
2237 [(set (reg:CC 17)
2238 (ltu:CC (match_dup 1)
2239 (match_dup 2)))
2240 (set (match_dup 0)
2241 (ne:SI (reg:CC 17) (const_int 0)))
2242 (set (match_dup 0)
2243 (plus:SI (match_dup 0)
2244 (const_int -1)))
2245 (set (match_dup 0)
2246 (neg:SI (match_dup 0)))]
2247 "")
2248
2249 (define_insn "movcc_insn"
2250 [(set (match_operand:SI 0 "register_operand" "=r")
2251 (ne:SI (reg:CC 17) (const_int 0)))]
2252 ""
2253 "mvfc %0, cbr"
2254 [(set_attr "type" "misc")
2255 (set_attr "length" "2")])
2256
2257
2258 ;; Unconditional and other jump instructions.
2259
2260 (define_insn "jump"
2261 [(set (pc) (label_ref (match_operand 0 "" "")))]
2262 ""
2263 "bra %l0"
2264 [(set_attr "type" "uncond_branch")
2265 (set (attr "length") (if_then_else (ltu (plus (minus (match_dup 0) (pc))
2266 (const_int 400))
2267 (const_int 800))
2268 (const_int 2)
2269 (const_int 4)))])
2270
2271 (define_insn "indirect_jump"
2272 [(set (pc) (match_operand:SI 0 "address_operand" "p"))]
2273 ""
2274 "jmp %a0"
2275 [(set_attr "type" "uncond_branch")
2276 (set_attr "length" "2")])
2277
2278 (define_insn "return_lr"
2279 [(parallel [(return) (use (reg:SI 14))])]
2280 ""
2281 "jmp lr"
2282 [(set_attr "type" "uncond_branch")
2283 (set_attr "length" "2")])
2284
2285 (define_insn "return_rte"
2286 [(return)]
2287 ""
2288 "rte"
2289 [(set_attr "type" "uncond_branch")
2290 (set_attr "length" "2")])
2291
2292 (define_expand "return"
2293 [(return)]
2294 "direct_return ()"
2295 "
2296 {
2297 emit_jump_insn (gen_return_lr ());
2298 DONE;
2299 }")
2300
2301 (define_expand "return_normal"
2302 [(return)]
2303 "!direct_return ()"
2304 "
2305 {
2306 enum m32r_function_type fn_type;
2307
2308 fn_type = m32r_compute_function_type (current_function_decl);
2309 if (M32R_INTERRUPT_P (fn_type))
2310 {
2311 emit_jump_insn (gen_return_rte ());
2312 DONE;
2313 }
2314
2315 emit_jump_insn (gen_return_lr ());
2316 DONE;
2317 }")
2318
2319 (define_expand "tablejump"
2320 [(parallel [(set (pc) (match_operand 0 "register_operand" "r"))
2321 (use (label_ref (match_operand 1 "" "")))])]
2322 ""
2323 "
2324 {
2325 /* In pic mode, our address differences are against the base of the
2326 table. Add that base value back in; CSE ought to be able to combine
2327 the two address loads. */
2328 if (flag_pic)
2329 {
2330 rtx tmp, tmp2;
2331
2332 tmp = gen_rtx_LABEL_REF (Pmode, operands[1]);
2333 tmp2 = operands[0];
2334 tmp = gen_rtx_PLUS (Pmode, tmp2, tmp);
2335 operands[0] = memory_address (Pmode, tmp);
2336 }
2337 }")
2338
2339 (define_insn "*tablejump_insn"
2340 [(set (pc) (match_operand:SI 0 "address_operand" "p"))
2341 (use (label_ref (match_operand 1 "" "")))]
2342 ""
2343 "jmp %a0"
2344 [(set_attr "type" "uncond_branch")
2345 (set_attr "length" "2")])
2346
2347 (define_expand "call"
2348 ;; operands[1] is stack_size_rtx
2349 ;; operands[2] is next_arg_register
2350 [(parallel [(call (match_operand:SI 0 "call_operand" "")
2351 (match_operand 1 "" ""))
2352 (clobber (reg:SI 14))])]
2353 ""
2354 "
2355 {
2356 if (flag_pic)
2357 crtl->uses_pic_offset_table = 1;
2358 }")
2359
2360 (define_insn "*call_via_reg"
2361 [(call (mem:SI (match_operand:SI 0 "register_operand" "r"))
2362 (match_operand 1 "" ""))
2363 (clobber (reg:SI 14))]
2364 ""
2365 "jl %0"
2366 [(set_attr "type" "call")
2367 (set_attr "length" "2")])
2368
2369 (define_insn "*call_via_label"
2370 [(call (mem:SI (match_operand:SI 0 "call_address_operand" ""))
2371 (match_operand 1 "" ""))
2372 (clobber (reg:SI 14))]
2373 ""
2374 "*
2375 {
2376 int call26_p = call26_operand (operands[0], FUNCTION_MODE);
2377
2378 if (! call26_p)
2379 {
2380 /* We may not be able to reach with a `bl' insn so punt and leave it to
2381 the linker.
2382 We do this here, rather than doing a force_reg in the define_expand
2383 so these insns won't be separated, say by scheduling, thus simplifying
2384 the linker. */
2385 return \"seth r14,%T0\;add3 r14,r14,%B0\;jl r14\";
2386 }
2387 else
2388 return \"bl %0\";
2389 }"
2390 [(set_attr "type" "call")
2391 (set (attr "length")
2392 (if_then_else (eq (symbol_ref "call26_operand (operands[0], FUNCTION_MODE)")
2393 (const_int 0))
2394 (const_int 12) ; 10 + 2 for nop filler
2395 ; The return address must be on a 4 byte boundary so
2396 ; there's no point in using a value of 2 here. A 2 byte
2397 ; insn may go in the left slot but we currently can't
2398 ; use such knowledge.
2399 (const_int 4)))])
2400
2401 (define_expand "call_value"
2402 ;; operand 2 is stack_size_rtx
2403 ;; operand 3 is next_arg_register
2404 [(parallel [(set (match_operand 0 "register_operand" "=r")
2405 (call (match_operand:SI 1 "call_operand" "")
2406 (match_operand 2 "" "")))
2407 (clobber (reg:SI 14))])]
2408 ""
2409 "
2410 {
2411 if (flag_pic)
2412 crtl->uses_pic_offset_table = 1;
2413 }")
2414
2415 (define_insn "*call_value_via_reg"
2416 [(set (match_operand 0 "register_operand" "=r")
2417 (call (mem:SI (match_operand:SI 1 "register_operand" "r"))
2418 (match_operand 2 "" "")))
2419 (clobber (reg:SI 14))]
2420 ""
2421 "jl %1"
2422 [(set_attr "type" "call")
2423 (set_attr "length" "2")])
2424
2425 (define_insn "*call_value_via_label"
2426 [(set (match_operand 0 "register_operand" "=r")
2427 (call (mem:SI (match_operand:SI 1 "call_address_operand" ""))
2428 (match_operand 2 "" "")))
2429 (clobber (reg:SI 14))]
2430 ""
2431 "*
2432 {
2433 int call26_p = call26_operand (operands[1], FUNCTION_MODE);
2434
2435 if (flag_pic)
2436 crtl->uses_pic_offset_table = 1;
2437
2438 if (! call26_p)
2439 {
2440 /* We may not be able to reach with a `bl' insn so punt and leave it to
2441 the linker.
2442 We do this here, rather than doing a force_reg in the define_expand
2443 so these insns won't be separated, say by scheduling, thus simplifying
2444 the linker. */
2445 return \"seth r14,%T1\;add3 r14,r14,%B1\;jl r14\";
2446 }
2447 else
2448 return \"bl %1\";
2449 }"
2450 [(set_attr "type" "call")
2451 (set (attr "length")
2452 (if_then_else (eq (symbol_ref "call26_operand (operands[1], FUNCTION_MODE)")
2453 (const_int 0))
2454 (const_int 12) ; 10 + 2 for nop filler
2455 ; The return address must be on a 4 byte boundary so
2456 ; there's no point in using a value of 2 here. A 2 byte
2457 ; insn may go in the left slot but we currently can't
2458 ; use such knowledge.
2459 (const_int 4)))])
2460
2461 (define_insn "nop"
2462 [(const_int 0)]
2463 ""
2464 "nop"
2465 [(set_attr "type" "int2")
2466 (set_attr "length" "2")])
2467
2468 ;; UNSPEC_VOLATILE is considered to use and clobber all hard registers and
2469 ;; all of memory. This blocks insns from being moved across this point.
2470
2471 (define_insn "blockage"
2472 [(unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)]
2473 ""
2474 "")
2475
2476 ;; Special pattern to flush the icache.
2477
2478 (define_insn "flush_icache"
2479 [(unspec_volatile [(match_operand 0 "memory_operand" "m")]
2480 UNSPECV_FLUSH_ICACHE)
2481 (match_operand 1 "" "")
2482 (clobber (reg:SI 17))]
2483 ""
2484 "* return \"trap %#%1 ; flush-icache\";"
2485 [(set_attr "type" "int4")
2486 (set_attr "length" "4")])
2487
2488 ;; Speed up fabs and provide correct sign handling for -0
2489
2490 (define_insn "absdf2"
2491 [(set (match_operand:DF 0 "register_operand" "=r")
2492 (abs:DF (match_operand:DF 1 "register_operand" "0")))]
2493 ""
2494 "#"
2495 [(set_attr "type" "multi")
2496 (set_attr "length" "4")])
2497
2498 (define_split
2499 [(set (match_operand:DF 0 "register_operand" "")
2500 (abs:DF (match_operand:DF 1 "register_operand" "")))]
2501 "reload_completed"
2502 [(set (match_dup 2)
2503 (ashift:SI (match_dup 2)
2504 (const_int 1)))
2505 (set (match_dup 2)
2506 (lshiftrt:SI (match_dup 2)
2507 (const_int 1)))]
2508 "operands[2] = gen_highpart (SImode, operands[0]);")
2509
2510 (define_insn "abssf2"
2511 [(set (match_operand:SF 0 "register_operand" "=r")
2512 (abs:SF (match_operand:SF 1 "register_operand" "0")))]
2513 ""
2514 "#"
2515 [(set_attr "type" "multi")
2516 (set_attr "length" "4")])
2517
2518 (define_split
2519 [(set (match_operand:SF 0 "register_operand" "")
2520 (abs:SF (match_operand:SF 1 "register_operand" "")))]
2521 "reload_completed"
2522 [(set (match_dup 2)
2523 (ashift:SI (match_dup 2)
2524 (const_int 1)))
2525 (set (match_dup 2)
2526 (lshiftrt:SI (match_dup 2)
2527 (const_int 1)))]
2528 "operands[2] = gen_highpart (SImode, operands[0]);")
2529
2530 ;; Conditional move instructions
2531 ;; Based on those done for the d10v
2532
2533 (define_expand "movsicc"
2534 [
2535 (set (match_operand:SI 0 "register_operand" "r")
2536 (if_then_else:SI (match_operand 1 "" "")
2537 (match_operand:SI 2 "conditional_move_operand" "O")
2538 (match_operand:SI 3 "conditional_move_operand" "O")
2539 )
2540 )
2541 ]
2542 ""
2543 "
2544 {
2545 if (! zero_and_one (operands [2], operands [3]))
2546 FAIL;
2547
2548 /* Generate the comparison that will set the carry flag. */
2549 operands[1] = gen_compare (GET_CODE (operands[1]), m32r_compare_op0,
2550 m32r_compare_op1, TRUE);
2551
2552 /* See other movsicc pattern below for reason why. */
2553 emit_insn (gen_blockage ());
2554 }")
2555
2556 ;; Generate the conditional instructions based on how the carry flag is examined.
2557 (define_insn "*movsicc_internal"
2558 [(set (match_operand:SI 0 "register_operand" "=r")
2559 (if_then_else:SI (match_operand 1 "carry_compare_operand" "")
2560 (match_operand:SI 2 "conditional_move_operand" "O")
2561 (match_operand:SI 3 "conditional_move_operand" "O")
2562 )
2563 )]
2564 "zero_and_one (operands [2], operands[3])"
2565 "* return emit_cond_move (operands, insn);"
2566 [(set_attr "type" "multi")
2567 (set_attr "length" "8")
2568 ]
2569 )
2570
2571
2572 ;; Block moves, see m32r.c for more details.
2573 ;; Argument 0 is the destination
2574 ;; Argument 1 is the source
2575 ;; Argument 2 is the length
2576 ;; Argument 3 is the alignment
2577
2578 (define_expand "movmemsi"
2579 [(parallel [(set (match_operand:BLK 0 "general_operand" "")
2580 (match_operand:BLK 1 "general_operand" ""))
2581 (use (match_operand:SI 2 "immediate_operand" ""))
2582 (use (match_operand:SI 3 "immediate_operand" ""))])]
2583 ""
2584 "
2585 {
2586 if (operands[0]) /* Avoid unused code messages. */
2587 {
2588 if (m32r_expand_block_move (operands))
2589 DONE;
2590 else
2591 FAIL;
2592 }
2593 }")
2594
2595 ;; Insn generated by block moves
2596
2597 (define_insn "movmemsi_internal"
2598 [(set (mem:BLK (match_operand:SI 0 "register_operand" "r")) ;; destination
2599 (mem:BLK (match_operand:SI 1 "register_operand" "r"))) ;; source
2600 (use (match_operand:SI 2 "m32r_block_immediate_operand" "J"));; # bytes to move
2601 (set (match_operand:SI 3 "register_operand" "=0")
2602 (plus:SI (minus (match_dup 2) (const_int 4))
2603 (match_dup 0)))
2604 (set (match_operand:SI 4 "register_operand" "=1")
2605 (plus:SI (match_dup 1)
2606 (match_dup 2)))
2607 (clobber (match_scratch:SI 5 "=&r")) ;; temp1
2608 (clobber (match_scratch:SI 6 "=&r"))] ;; temp2
2609 ""
2610 "* m32r_output_block_move (insn, operands); return \"\"; "
2611 [(set_attr "type" "store8")
2612 (set_attr "length" "72")]) ;; Maximum
2613
2614 ;; PIC
2615
2616 /* When generating pic, we need to load the symbol offset into a register.
2617 So that the optimizer does not confuse this with a normal symbol load
2618 we use an unspec. The offset will be loaded from a constant pool entry,
2619 since that is the only type of relocation we can use. */
2620
2621 (define_insn "pic_load_addr"
2622 [(set (match_operand:SI 0 "register_operand" "=r")
2623 (unspec:SI [(match_operand 1 "" "")] UNSPEC_PIC_LOAD_ADDR))]
2624 "flag_pic"
2625 "ld24 %0,%#%1"
2626 [(set_attr "type" "int4")])
2627
2628 (define_insn "gotoff_load_addr"
2629 [(set (match_operand:SI 0 "register_operand" "=r")
2630 (unspec:SI [(match_operand 1 "" "")] UNSPEC_GOTOFF))]
2631 "flag_pic"
2632 "seth %0, %#shigh(%1@GOTOFF)\;add3 %0, %0, low(%1@GOTOFF)"
2633 [(set_attr "type" "int4")
2634 (set_attr "length" "8")])
2635
2636 ;; Load program counter insns.
2637
2638 (define_insn "get_pc"
2639 [(clobber (reg:SI 14))
2640 (set (match_operand 0 "register_operand" "=r,r")
2641 (unspec [(match_operand 1 "" "")] UNSPEC_GET_PC))
2642 (use (match_operand:SI 2 "immediate_operand" "W,i"))]
2643 "flag_pic"
2644 "@
2645 bl.s .+4\;seth %0,%#shigh(%1)\;add3 %0,%0,%#low(%1+4)\;add %0,lr
2646 bl.s .+4\;ld24 %0,%#%1\;add %0,lr"
2647 [(set_attr "length" "12,8")])
2648
2649 (define_expand "builtin_setjmp_receiver"
2650 [(label_ref (match_operand 0 "" ""))]
2651 "flag_pic"
2652 "
2653 {
2654 m32r_load_pic_register ();
2655 DONE;
2656 }")