1 ;; Frv Machine Description
2 ;; Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2007, 2008, 2010, 2011
3 ;; Free Software Foundation, Inc.
4 ;; Contributed by Red Hat, Inc.
6 ;; This file is part of GCC.
8 ;; GCC is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation; either version 3, or (at your option)
13 ;; GCC is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GCC; see the file COPYING3. If not see
20 ;; <http://www.gnu.org/licenses/>.
22 ;;- See file "rtl.def" for documentation on define_insn, match_*, et. al.
25 ;; ::::::::::::::::::::
29 ;; ::::::::::::::::::::
31 ;; GOT constants must go 12/HI/LO for the splitter to work
37 (UNSPEC_PIC_PROLOGUE 3)
39 (UNSPEC_STACK_ADJUST 5)
40 (UNSPEC_EH_RETURN_EPILOGUE 6)
43 (UNSPEC_OPTIONAL_MEMBAR 9)
45 (UNSPEC_GETTLSOFF 200)
46 (UNSPEC_TLS_LOAD_GOTTLSOFF12 201)
47 (UNSPEC_TLS_INDIRECT_CALL 202)
48 (UNSPEC_TLS_TLSDESC_LDD 203)
49 (UNSPEC_TLS_TLSDESC_LDD_AUX 204)
50 (UNSPEC_TLS_TLSOFF_LD 205)
52 (UNSPEC_TLSOFF_HILO 207)
58 (R_FRV_FUNCDESC_GOT12 15)
59 (R_FRV_FUNCDESC_GOTHI 16)
60 (R_FRV_FUNCDESC_GOTLO 17)
61 (R_FRV_FUNCDESC_VALUE 18)
62 (R_FRV_FUNCDESC_GOTOFF12 19)
63 (R_FRV_FUNCDESC_GOTOFFHI 20)
64 (R_FRV_FUNCDESC_GOTOFFLO 21)
71 (R_FRV_GOTTLSOFF_HI 28)
72 (R_FRV_GOTTLSOFF_LO 29)
78 (R_FRV_GOTTLSDESCHI 35)
79 (R_FRV_GOTTLSDESCLO 36)
84 ;; LR_REG conflicts with definition in frv.h
89 (define_mode_iterator IMODE [QI HI SI DI])
90 (define_mode_attr IMODEsuffix [(QI "b") (HI "h") (SI "") (DI "d")])
91 (define_mode_attr BREADsuffix [(QI "ub") (HI "uh") (SI "") (DI "d")])
93 ;; ::::::::::::::::::::
97 ;; ::::::::::::::::::::
99 ;; Standard Constraints
101 ;; `m' A memory operand is allowed, with any kind of address that the
102 ;; machine supports in general.
104 ;; `o' A memory operand is allowed, but only if the address is
105 ;; "offsettable". This means that adding a small integer (actually, the
106 ;; width in bytes of the operand, as determined by its machine mode) may be
107 ;; added to the address and the result is also a valid memory address.
109 ;; `V' A memory operand that is not offsettable. In other words,
110 ;; anything that would fit the `m' constraint but not the `o' constraint.
112 ;; `<' A memory operand with autodecrement addressing (either
113 ;; predecrement or postdecrement) is allowed.
115 ;; `>' A memory operand with autoincrement addressing (either
116 ;; preincrement or postincrement) is allowed.
118 ;; `r' A register operand is allowed provided that it is in a general
121 ;; `d', `a', `f', ...
122 ;; Other letters can be defined in machine-dependent fashion to stand for
123 ;; particular classes of registers. `d', `a' and `f' are defined on the
124 ;; 68000/68020 to stand for data, address and floating point registers.
126 ;; `i' An immediate integer operand (one with constant value) is allowed.
127 ;; This includes symbolic constants whose values will be known only at
130 ;; `n' An immediate integer operand with a known numeric value is allowed.
131 ;; Many systems cannot support assembly-time constants for operands less
132 ;; than a word wide. Constraints for these operands should use `n' rather
135 ;; 'I' First machine-dependent integer constant (6-bit signed ints).
136 ;; 'J' Second machine-dependent integer constant (10-bit signed ints).
137 ;; 'K' Third machine-dependent integer constant (-2048).
138 ;; 'L' Fourth machine-dependent integer constant (16-bit signed ints).
139 ;; 'M' Fifth machine-dependent integer constant (16-bit unsigned ints).
140 ;; 'N' Sixth machine-dependent integer constant (-2047..-1).
141 ;; 'O' Seventh machine-dependent integer constant (zero).
142 ;; 'P' Eighth machine-dependent integer constant (1..2047).
144 ;; Other letters in the range `I' through `P' may be defined in a
145 ;; machine-dependent fashion to permit immediate integer operands with
146 ;; explicit integer values in specified ranges. For example, on the 68000,
147 ;; `I' is defined to stand for the range of values 1 to 8. This is the
148 ;; range permitted as a shift count in the shift instructions.
150 ;; `E' An immediate floating operand (expression code `const_double') is
151 ;; allowed, but only if the target floating point format is the same as
152 ;; that of the host machine (on which the compiler is running).
154 ;; `F' An immediate floating operand (expression code `const_double') is
157 ;; 'G' First machine-dependent const_double.
158 ;; 'H' Second machine-dependent const_double.
160 ;; `s' An immediate integer operand whose value is not an explicit
161 ;; integer is allowed.
163 ;; This might appear strange; if an insn allows a constant operand with a
164 ;; value not known at compile time, it certainly must allow any known
165 ;; value. So why use `s' instead of `i'? Sometimes it allows better code
168 ;; For example, on the 68000 in a fullword instruction it is possible to
169 ;; use an immediate operand; but if the immediate value is between -128 and
170 ;; 127, better code results from loading the value into a register and
171 ;; using the register. This is because the load into the register can be
172 ;; done with a `moveq' instruction. We arrange for this to happen by
173 ;; defining the letter `K' to mean "any integer outside the range -128 to
174 ;; 127", and then specifying `Ks' in the operand constraints.
176 ;; `g' Any register, memory or immediate integer operand is allowed,
177 ;; except for registers that are not general registers.
179 ;; `X' Any operand whatsoever is allowed, even if it does not satisfy
180 ;; `general_operand'. This is normally used in the constraint of a
181 ;; `match_scratch' when certain alternatives will not actually require a
184 ;; `0' Match operand 0.
185 ;; `1' Match operand 1.
186 ;; `2' Match operand 2.
187 ;; `3' Match operand 3.
188 ;; `4' Match operand 4.
189 ;; `5' Match operand 5.
190 ;; `6' Match operand 6.
191 ;; `7' Match operand 7.
192 ;; `8' Match operand 8.
193 ;; `9' Match operand 9.
195 ;; An operand that matches the specified operand number is allowed. If a
196 ;; digit is used together with letters within the same alternative, the
197 ;; digit should come last.
199 ;; This is called a "matching constraint" and what it really means is that
200 ;; the assembler has only a single operand that fills two roles considered
201 ;; separate in the RTL insn. For example, an add insn has two input
202 ;; operands and one output operand in the RTL, but on most CISC machines an
203 ;; add instruction really has only two operands, one of them an
204 ;; input-output operand:
208 ;; Matching constraints are used in these circumstances. More precisely,
209 ;; the two operands that match must include one input-only operand and one
210 ;; output-only operand. Moreover, the digit must be a smaller number than
211 ;; the number of the operand that uses it in the constraint.
213 ;; For operands to match in a particular case usually means that they are
214 ;; identical-looking RTL expressions. But in a few special cases specific
215 ;; kinds of dissimilarity are allowed. For example, `*x' as an input
216 ;; operand will match `*x++' as an output operand. For proper results in
217 ;; such cases, the output template should always use the output-operand's
218 ;; number when printing the operand.
220 ;; `p' An operand that is a valid memory address is allowed. This is for
221 ;; "load address" and "push address" instructions.
223 ;; `p' in the constraint must be accompanied by `address_operand' as the
224 ;; predicate in the `match_operand'. This predicate interprets the mode
225 ;; specified in the `match_operand' as the mode of the memory reference for
226 ;; which the address would be valid.
228 ;; `Q` First non constant, non register machine-dependent insns
229 ;; `R` Second non constant, non register machine-dependent insns
230 ;; `S` Third non constant, non register machine-dependent insns
231 ;; `T` Fourth non constant, non register machine-dependent insns
232 ;; `U` Fifth non constant, non register machine-dependent insns
234 ;; Letters in the range `Q' through `U' may be defined in a
235 ;; machine-dependent fashion to stand for arbitrary operand types. The
236 ;; machine description macro `EXTRA_CONSTRAINT' is passed the operand as
237 ;; its first argument and the constraint letter as its second operand.
239 ;; A typical use for this would be to distinguish certain types of memory
240 ;; references that affect other insn operands.
242 ;; Do not define these constraint letters to accept register references
243 ;; (`reg'); the reload pass does not expect this and would not handle it
246 ;; Multiple Alternative Constraints
247 ;; `?' Disparage slightly the alternative that the `?' appears in, as a
248 ;; choice when no alternative applies exactly. The compiler regards this
249 ;; alternative as one unit more costly for each `?' that appears in it.
251 ;; `!' Disparage severely the alternative that the `!' appears in. This
252 ;; alternative can still be used if it fits without reloading, but if
253 ;; reloading is needed, some other alternative will be used.
255 ;; Constraint modifiers
256 ;; `=' Means that this operand is write-only for this instruction: the
257 ;; previous value is discarded and replaced by output data.
259 ;; `+' Means that this operand is both read and written by the
262 ;; When the compiler fixes up the operands to satisfy the constraints, it
263 ;; needs to know which operands are inputs to the instruction and which are
264 ;; outputs from it. `=' identifies an output; `+' identifies an operand
265 ;; that is both input and output; all other operands are assumed to be
268 ;; `&' Means (in a particular alternative) that this operand is written
269 ;; before the instruction is finished using the input operands. Therefore,
270 ;; this operand may not lie in a register that is used as an input operand
271 ;; or as part of any memory address.
273 ;; `&' applies only to the alternative in which it is written. In
274 ;; constraints with multiple alternatives, sometimes one alternative
275 ;; requires `&' while others do not.
277 ;; `&' does not obviate the need to write `='.
279 ;; `%' Declares the instruction to be commutative for this operand and the
280 ;; following operand. This means that the compiler may interchange the two
281 ;; operands if that is the cheapest way to make all operands fit the
282 ;; constraints. This is often used in patterns for addition instructions
283 ;; that really have only two operands: the result must go in one of the
286 ;; `#' Says that all following characters, up to the next comma, are to be
287 ;; ignored as a constraint. They are significant only for choosing
288 ;; register preferences.
290 ;; `*' Says that the following character should be ignored when choosing
291 ;; register preferences. `*' has no effect on the meaning of the
292 ;; constraint as a constraint, and no effect on reloading.
295 ;; ::::::::::::::::::::
299 ;; ::::::::::::::::::::
301 ;; The `define_attr' expression is used to define each attribute required by
302 ;; the target machine. It looks like:
304 ;; (define_attr NAME LIST-OF-VALUES DEFAULT)
306 ;; NAME is a string specifying the name of the attribute being defined.
308 ;; LIST-OF-VALUES is either a string that specifies a comma-separated list of
309 ;; values that can be assigned to the attribute, or a null string to indicate
310 ;; that the attribute takes numeric values.
312 ;; DEFAULT is an attribute expression that gives the value of this attribute
313 ;; for insns that match patterns whose definition does not include an explicit
314 ;; value for this attribute.
316 ;; For each defined attribute, a number of definitions are written to the
317 ;; `insn-attr.h' file. For cases where an explicit set of values is specified
318 ;; for an attribute, the following are defined:
320 ;; * A `#define' is written for the symbol `HAVE_ATTR_NAME'.
322 ;; * An enumeral class is defined for `attr_NAME' with elements of the
323 ;; form `UPPER-NAME_UPPER-VALUE' where the attribute name and value are first
324 ;; converted to upper case.
326 ;; * A function `get_attr_NAME' is defined that is passed an insn and
327 ;; returns the attribute value for that insn.
329 ;; For example, if the following is present in the `md' file:
331 ;; (define_attr "type" "branch,fp,load,store,arith" ...)
333 ;; the following lines will be written to the file `insn-attr.h'.
335 ;; #define HAVE_ATTR_type
336 ;; enum attr_type {TYPE_BRANCH, TYPE_FP, TYPE_LOAD, TYPE_STORE, TYPE_ARITH};
337 ;; extern enum attr_type get_attr_type ();
339 ;; If the attribute takes numeric values, no `enum' type will be defined and
340 ;; the function to obtain the attribute's value will return `int'.
342 (define_attr "length" "" (const_int 4))
344 ;; Processor type -- this attribute must exactly match the processor_type
345 ;; enumeration in frv-protos.h.
347 (define_attr "cpu" "generic,fr550,fr500,fr450,fr405,fr400,fr300,simple,tomcat"
348 (const (symbol_ref "(enum attr_cpu) frv_cpu_type")))
350 ;; Attribute is "yes" for branches and jumps that span too great a distance
351 ;; to be implemented in the most natural way. Such instructions will use
352 ;; a call instruction in some way.
354 (define_attr "far_jump" "yes,no" (const_string "no"))
357 ;; "unknown" must come last.
359 "int,sethi,setlo,mul,div,gload,gstore,fload,fstore,movfg,movgf,macc,scan,cut,branch,jump,jumpl,call,spr,trap,fnop,fsconv,fsadd,fscmp,fsmul,fsmadd,fsdiv,sqrt_single,fdconv,fdadd,fdcmp,fdmul,fdmadd,fddiv,sqrt_double,mnop,mlogic,maveh,msath,maddh,mqaddh,mpackh,munpackh,mdpackh,mbhconv,mrot,mshift,mexpdhw,mexpdhd,mwcut,mmulh,mmulxh,mmach,mmrdh,mqmulh,mqmulxh,mqmach,mcpx,mqcpx,mcut,mclracc,mclracca,mdunpackh,mbhconve,mrdacc,mwtacc,maddacc,mdaddacc,mabsh,mdrot,mcpl,mdcut,mqsath,mqlimh,mqshift,mset,ccr,multi,load_or_call,unknown"
360 (const_string "unknown"))
362 (define_attr "acc_group" "none,even,odd"
363 (symbol_ref "(enum attr_acc_group) frv_acc_group (insn)"))
365 ;; Scheduling and Packing Overview
366 ;; -------------------------------
368 ;; FR-V instructions are divided into five groups: integer, floating-point,
369 ;; media, branch and control. Each group is associated with a separate set
370 ;; of processing units, the number and behavior of which depend on the target
371 ;; target processor. Integer units have names like I0 and I1, floating-point
372 ;; units have names like F0 and F1, and so on.
374 ;; Each member of the FR-V family has its own restrictions on which
375 ;; instructions can issue to which units. For example, some processors
376 ;; allow loads to issue to I0 or I1 while others only allow them to issue
377 ;; to I0. As well as these processor-specific restrictions, there is a
378 ;; general rule that an instruction can only issue to unit X + 1 if an
379 ;; instruction in the same packet issued to unit X.
381 ;; Sometimes the only way to honor these restrictions is by adding nops
382 ;; to a packet. For example, on the fr550, media instructions that access
383 ;; ACC4-7 can only issue to M1 or M3. It is therefore only possible to
384 ;; execute these instructions by packing them with something that issues
385 ;; to M0. When no useful M0 instruction exists, an "mnop" can be used
388 ;; Having decided which instructions should issue to which units, the packet
389 ;; should be ordered according to the following template:
391 ;; I0 F0/M0 I1 F1/M1 .... B0 B1 ...
393 ;; Note that VLIW packets execute strictly in parallel. Every instruction
394 ;; in the packet will stall until all input operands are ready. These
395 ;; operands are then read simultaneously before any registers are modified.
396 ;; This means that it's OK to have write-after-read hazards between
397 ;; instructions in the same packet, even if the write is listed earlier
400 ;; Three gcc passes are involved in generating VLIW packets:
402 ;; (1) The scheduler. This pass uses the standard scheduling code and
403 ;; behaves in much the same way as it would for a superscalar RISC
406 ;; (2) frv_reorg. This pass inserts nops into packets in order to meet
407 ;; the processor's issue requirements. It also has code to optimize
408 ;; the type of padding used to align labels.
410 ;; (3) frv_pack_insns. The final packing phase, which puts the
411 ;; instructions into assembly language order according to the
412 ;; "I0 F0/M0 ..." template above.
414 ;; In the ideal case, these three passes will agree on which instructions
415 ;; should be packed together, but this won't always happen. In particular:
417 ;; (a) (2) might not pack predicated instructions in the same way as (1).
418 ;; The scheduler tries to schedule predicated instructions for the
419 ;; worst case, assuming the predicate is true. However, if we have
420 ;; something like a predicated load, it isn't always possible to
421 ;; fill the load delay with useful instructions. (2) should then
422 ;; pack the user of the loaded value as aggressively as possible,
423 ;; in order to optimize the case when the predicate is false.
424 ;; See frv_pack_insn_p for more details.
426 ;; (b) The final shorten_branches pass runs between (2) and (3).
427 ;; Since (2) inserts nops, it is possible that some branches
428 ;; that were thought to be in range during (2) turned out to
429 ;; out-of-range in (3).
431 ;; All three passes use DFAs to model issue restrictions. The main
432 ;; question that the DFAs are supposed to answer is simply: can these
433 ;; instructions be packed together? The DFAs are not responsible for
434 ;; assigning instructions to execution units; that's the job of
435 ;; frv_sort_insn_group, see below for details.
437 ;; To get the best results, the DFAs should try to allow packets to
438 ;; be built in every possible order. This gives the scheduler more
439 ;; flexibility, removing the need for things like multipass lookahead.
440 ;; It also means we can take more advantage of inter-packet dependencies.
442 ;; For example, suppose we're compiling for the fr400 and we have:
445 ;; ldi @(gr6,gr0),gr4
447 ;; We can pack these instructions together by assigning the load to I0 and
448 ;; the addition to I1. However, because of the anti dependence between the
449 ;; two instructions, the scheduler must schedule the addition first.
450 ;; We should generally get better schedules if the DFA allows both
451 ;; (ldi, addi) and (addi, ldi), leaving the final packing pass to
452 ;; reorder the packet where appropriate.
454 ;; Almost all integer instructions can issue to any unit in the range I0
455 ;; to Ix, where the value of "x" depends on the type of instruction and
456 ;; on the target processor. The rules for other instruction groups are
459 ;; When the restrictions are as regular as this, we can get the desired
460 ;; behavior by claiming the DFA unit associated with the highest unused
461 ;; execution unit. For example, if an instruction can issue to I0 or I1,
462 ;; the DFA first tries to take the DFA unit associated with I1, and will
463 ;; only take I0's unit if I1 isn't free. (Note that, as mentioned above,
464 ;; the DFA does not assign instructions to units. An instruction that
465 ;; claims DFA unit I1 will not necessarily issue to I1 in the final packet.)
467 ;; There are some cases, such as the fr550 media restriction mentioned
468 ;; above, where the rule is not as simple as "any unit between 0 and X".
469 ;; Even so, allocating higher units first brings us close to the ideal.
471 ;; Having divided instructions into packets, passes (2) and (3) must
472 ;; assign instructions to specific execution units. They do this using
473 ;; the following algorithm:
475 ;; 1. Partition the instructions into groups (integer, float/media, etc.)
477 ;; 2. For each group of instructions:
479 ;; (a) Issue each instruction in the reset DFA state and use the
480 ;; DFA cpu_unit_query interface to find out which unit it picks
483 ;; (b) Sort the instructions into ascending order of picked units.
484 ;; Instructions that pick I1 first come after those that pick
485 ;; I0 first, and so on. Let S be the sorted sequence and S[i]
486 ;; be the ith element of it (counting from zero).
488 ;; (c) If this is the control or branch group, goto (i)
490 ;; (d) Find the largest L such that S[0]...S[L-1] can be issued
491 ;; consecutively from the reset state and such that the DFA
492 ;; claims unit X when S[X] is added. Let D be the DFA state
493 ;; after instructions S[0]...S[L-1] have been issued.
495 ;; (e) If L is the length of S, goto (i)
497 ;; (f) Let U be the number of units belonging to this group and #S be
498 ;; the length of S. Create a new sequence S' by concatenating
499 ;; S[L]...S[#S-1] and (U - #S) nops.
501 ;; (g) For each permutation S'' of S', try issuing S'' from last to
502 ;; first, starting with state D. See if the DFA claims unit
503 ;; X + L when each S''[X] is added. If so, set S to the
504 ;; concatenation of S[0]...S[L-1] and S'', then goto (i).
506 ;; (h) If (g) found no permutation, abort.
508 ;; (i) S is now the sorted sequence for this group, meaning that S[X]
509 ;; issues to unit X. Trim any unwanted nops from the end of S.
511 ;; The sequence calculated by (b) is trivially correct for control
512 ;; instructions since they can't be packed. It is also correct for branch
513 ;; instructions due to their simple issue requirements. For integer and
514 ;; floating-point/media instructions, the sequence calculated by (b) is
515 ;; often the correct answer; the rest of the algorithm is optimized for
516 ;; the case in which it is correct.
518 ;; If there were no irregularities in the issue restrictions then step
519 ;; (d) would not be needed. It is mainly there to cope with the fr550
520 ;; integer restrictions, where a store can issue to I1, but only if a store
521 ;; also issues to I0. (Note that if a packet has two stores, they will be
522 ;; at the beginning of the sequence calculated by (b).) It also copes
523 ;; with fr400 M-2 instructions, which must issue to M0, and which cannot
524 ;; be issued together with an mnop in M1.
526 ;; Step (g) is the main one for integer and float/media instructions.
527 ;; The first permutation it tries is S' itself (because, as noted above,
528 ;; the sequence calculated by (b) is often correct). If S' doesn't work,
529 ;; the implementation tries varying the beginning of the sequence first.
530 ;; Thus the nops towards the end of the sequence will only move to lower
531 ;; positions if absolutely necessary.
533 ;; The algorithm is theoretically exponential in the number of instructions
534 ;; in a group, although it's only O(n log(n)) if the sequence calculated by
535 ;; (b) is acceptable. In practice, the algorithm completes quickly even
536 ;; in the rare cases where (g) needs to try other permutations.
537 (define_automaton "integer, float_media, branch, control, idiv, div")
539 ;; The main issue units. Note that not all units are available on
541 (define_query_cpu_unit "i0,i1,i2,i3" "integer")
542 (define_query_cpu_unit "f0,f1,f2,f3" "float_media")
543 (define_query_cpu_unit "b0,b1" "branch")
544 (define_query_cpu_unit "c" "control")
547 (define_cpu_unit "idiv1,idiv2" "idiv")
548 (define_cpu_unit "div1,div2,root" "div")
550 ;; Control instructions cannot be packed with others.
551 (define_reservation "control" "i0+i1+i2+i3+f0+f1+f2+f3+b0+b1")
553 ;; Generic reservation for control insns
554 (define_insn_reservation "control" 1
555 (eq_attr "type" "trap,spr,unknown,multi")
558 ;; Reservation for relaxable calls to gettlsoff.
559 (define_insn_reservation "load_or_call" 3
560 (eq_attr "type" "load_or_call")
563 ;; ::::::::::::::::::::
565 ;; :: Generic/FR500 scheduler description
567 ;; ::::::::::::::::::::
570 ;; Synthetic units used to describe issue restrictions.
571 (define_automaton "fr500_integer")
572 (define_cpu_unit "fr500_load0,fr500_load1,fr500_store0" "fr500_integer")
573 (exclusion_set "fr500_load0,fr500_load1" "fr500_store0")
575 (define_bypass 0 "fr500_i1_sethi" "fr500_i1_setlo")
576 (define_insn_reservation "fr500_i1_sethi" 1
577 (and (eq_attr "cpu" "generic,fr500,tomcat")
578 (eq_attr "type" "sethi"))
581 (define_insn_reservation "fr500_i1_setlo" 1
582 (and (eq_attr "cpu" "generic,fr500,tomcat")
583 (eq_attr "type" "setlo"))
586 (define_insn_reservation "fr500_i1_int" 1
587 (and (eq_attr "cpu" "generic,fr500,tomcat")
588 (eq_attr "type" "int"))
591 (define_insn_reservation "fr500_i1_mul" 3
592 (and (eq_attr "cpu" "generic,fr500,tomcat")
593 (eq_attr "type" "mul"))
596 (define_insn_reservation "fr500_i1_div" 19
597 (and (eq_attr "cpu" "generic,fr500,tomcat")
598 (eq_attr "type" "div"))
599 "(i1|i0),(idiv1*18|idiv2*18)")
601 (define_insn_reservation "fr500_i2" 4
602 (and (eq_attr "cpu" "generic,fr500,tomcat")
603 (eq_attr "type" "gload,fload"))
604 "(i1|i0) + (fr500_load0|fr500_load1)")
606 (define_insn_reservation "fr500_i3" 0
607 (and (eq_attr "cpu" "generic,fr500,tomcat")
608 (eq_attr "type" "gstore,fstore"))
611 (define_insn_reservation "fr500_i4" 3
612 (and (eq_attr "cpu" "generic,fr500,tomcat")
613 (eq_attr "type" "movgf,movfg"))
616 (define_insn_reservation "fr500_i5" 0
617 (and (eq_attr "cpu" "generic,fr500,tomcat")
618 (eq_attr "type" "jumpl"))
622 ;; Branch-instructions
624 (define_insn_reservation "fr500_branch" 0
625 (and (eq_attr "cpu" "generic,fr500,tomcat")
626 (eq_attr "type" "jump,branch,ccr"))
629 (define_insn_reservation "fr500_call" 0
630 (and (eq_attr "cpu" "generic,fr500,tomcat")
631 (eq_attr "type" "call"))
634 ;; Floating point insns. The default latencies are for non-media
635 ;; instructions; media instructions incur an extra cycle.
637 (define_bypass 4 "fr500_farith" "fr500_m1,fr500_m2,fr500_m3,
638 fr500_m4,fr500_m5,fr500_m6")
639 (define_insn_reservation "fr500_farith" 3
640 (and (eq_attr "cpu" "generic,fr500,tomcat")
641 (eq_attr "type" "fnop,fsconv,fsadd,fsmul,fsmadd,fdconv,fdadd,fdmul,fdmadd"))
644 (define_insn_reservation "fr500_fcmp" 4
645 (and (eq_attr "cpu" "generic,fr500,tomcat")
646 (eq_attr "type" "fscmp,fdcmp"))
649 (define_bypass 11 "fr500_fdiv" "fr500_m1,fr500_m2,fr500_m3,
650 fr500_m4,fr500_m5,fr500_m6")
651 (define_insn_reservation "fr500_fdiv" 10
652 (and (eq_attr "cpu" "generic,fr500,tomcat")
653 (eq_attr "type" "fsdiv,fddiv"))
654 "(f1|f0),(div1*9 | div2*9)")
656 (define_bypass 16 "fr500_froot" "fr500_m1,fr500_m2,fr500_m3,
657 fr500_m4,fr500_m5,fr500_m6")
658 (define_insn_reservation "fr500_froot" 15
659 (and (eq_attr "cpu" "generic,fr500,tomcat")
660 (eq_attr "type" "sqrt_single,sqrt_double"))
663 ;; Media insns. Conflict table is as follows:
673 ;; where X indicates an invalid combination.
675 ;; Target registers are as follows:
684 ;; The default FPR latencies are for integer instructions.
685 ;; Floating-point instructions need one cycle more and media
686 ;; instructions need one cycle less.
687 (define_automaton "fr500_media")
688 (define_cpu_unit "fr500_m2_0,fr500_m2_1" "fr500_media")
689 (define_cpu_unit "fr500_m3_0,fr500_m3_1" "fr500_media")
690 (define_cpu_unit "fr500_m4_0,fr500_m4_1" "fr500_media")
691 (define_cpu_unit "fr500_m5" "fr500_media")
692 (define_cpu_unit "fr500_m6" "fr500_media")
694 (exclusion_set "fr500_m5,fr500_m6" "fr500_m2_0,fr500_m2_1,
695 fr500_m3_0,fr500_m3_1")
696 (exclusion_set "fr500_m6" "fr500_m4_0,fr500_m4_1,fr500_m5")
698 (define_bypass 2 "fr500_m1" "fr500_m1,fr500_m2,fr500_m3,
699 fr500_m4,fr500_m5,fr500_m6")
700 (define_bypass 4 "fr500_m1" "fr500_farith,fr500_fcmp,fr500_fdiv,fr500_froot")
701 (define_insn_reservation "fr500_m1" 3
702 (and (eq_attr "cpu" "generic,fr500,tomcat")
703 (eq_attr "type" "mnop,mlogic,maveh,msath,maddh,mqaddh"))
706 (define_bypass 2 "fr500_m2" "fr500_m1,fr500_m2,fr500_m3,
707 fr500_m4,fr500_m5,fr500_m6")
708 (define_bypass 4 "fr500_m2" "fr500_farith,fr500_fcmp,fr500_fdiv,fr500_froot")
709 (define_insn_reservation "fr500_m2" 3
710 (and (eq_attr "cpu" "generic,fr500,tomcat")
711 (eq_attr "type" "mrdacc,mpackh,munpackh,mbhconv,mrot,mshift,mexpdhw,mexpdhd,mwcut,mcut,mdunpackh,mbhconve"))
712 "(f1|f0) + (fr500_m2_0|fr500_m2_1)")
714 (define_bypass 1 "fr500_m3" "fr500_m4")
715 (define_insn_reservation "fr500_m3" 2
716 (and (eq_attr "cpu" "generic,fr500,tomcat")
717 (eq_attr "type" "mclracc,mwtacc"))
718 "(f1|f0) + (fr500_m3_0|fr500_m3_1)")
720 (define_bypass 1 "fr500_m4" "fr500_m4")
721 (define_insn_reservation "fr500_m4" 2
722 (and (eq_attr "cpu" "generic,fr500,tomcat")
723 (eq_attr "type" "mmulh,mmulxh,mmach,mmrdh,mqmulh,mqmulxh,mqmach,mcpx,mqcpx"))
724 "(f1|f0) + (fr500_m4_0|fr500_m4_1)")
726 (define_bypass 2 "fr500_m5" "fr500_m1,fr500_m2,fr500_m3,
727 fr500_m4,fr500_m5,fr500_m6")
728 (define_bypass 4 "fr500_m5" "fr500_farith,fr500_fcmp,fr500_fdiv,fr500_froot")
729 (define_insn_reservation "fr500_m5" 3
730 (and (eq_attr "cpu" "generic,fr500,tomcat")
731 (eq_attr "type" "mdpackh"))
732 "(f1|f0) + fr500_m5")
734 (define_bypass 1 "fr500_m6" "fr500_m4")
735 (define_insn_reservation "fr500_m6" 2
736 (and (eq_attr "cpu" "generic,fr500,tomcat")
737 (eq_attr "type" "mclracca"))
738 "(f1|f0) + fr500_m6")
740 ;; ::::::::::::::::::::
742 ;; :: FR400 scheduler description
744 ;; ::::::::::::::::::::
746 ;; Category 2 media instructions use both media units, but can be packed
747 ;; with non-media instructions. Use fr400_m1unit to claim the M1 unit
748 ;; without claiming a slot.
750 ;; Name Class Units Latency
751 ;; ==== ===== ===== =======
753 ;; sethi I1 I0/I1 0 -- does not interfere with setlo
758 ;; fload I2 I0 4 -- only 3 if read by a media insn
759 ;; gstore I3 I0 0 -- provides no result
760 ;; fstore I3 I0 0 -- provides no result
763 ;; jumpl I5 I0 0 -- provides no result
765 ;; (*) The results of these instructions can be read one cycle earlier
766 ;; than indicated. The penalty given is for instructions with write-after-
767 ;; write dependencies.
769 ;; The FR400 can only do loads and stores in I0, so we there's no danger
770 ;; of memory unit collision in the same packet. There's only one divide
773 (define_automaton "fr400_integer")
774 (define_cpu_unit "fr400_mul" "fr400_integer")
776 (define_insn_reservation "fr400_i1_int" 1
777 (and (eq_attr "cpu" "fr400,fr405,fr450")
778 (eq_attr "type" "int"))
781 (define_bypass 0 "fr400_i1_sethi" "fr400_i1_setlo")
782 (define_insn_reservation "fr400_i1_sethi" 1
783 (and (eq_attr "cpu" "fr400,fr405,fr450")
784 (eq_attr "type" "sethi"))
787 (define_insn_reservation "fr400_i1_setlo" 1
788 (and (eq_attr "cpu" "fr400,fr405,fr450")
789 (eq_attr "type" "setlo"))
792 ;; 3 is the worst case (write-after-write hazard).
793 (define_insn_reservation "fr400_i1_mul" 3
794 (and (eq_attr "cpu" "fr400,fr405")
795 (eq_attr "type" "mul"))
798 (define_insn_reservation "fr450_i1_mul" 2
799 (and (eq_attr "cpu" "fr450")
800 (eq_attr "type" "mul"))
803 (define_bypass 1 "fr400_i1_macc" "fr400_i1_macc")
804 (define_insn_reservation "fr400_i1_macc" 2
805 (and (eq_attr "cpu" "fr405,fr450")
806 (eq_attr "type" "macc"))
807 "(i0|i1) + fr400_mul")
809 (define_insn_reservation "fr400_i1_scan" 1
810 (and (eq_attr "cpu" "fr400,fr405,fr450")
811 (eq_attr "type" "scan"))
814 (define_insn_reservation "fr400_i1_cut" 2
815 (and (eq_attr "cpu" "fr405,fr450")
816 (eq_attr "type" "cut"))
819 ;; 20 is for a write-after-write hazard.
820 (define_insn_reservation "fr400_i1_div" 20
821 (and (eq_attr "cpu" "fr400,fr405")
822 (eq_attr "type" "div"))
825 (define_insn_reservation "fr450_i1_div" 19
826 (and (eq_attr "cpu" "fr450")
827 (eq_attr "type" "div"))
830 ;; 4 is for a write-after-write hazard.
831 (define_insn_reservation "fr400_i2" 4
832 (and (eq_attr "cpu" "fr400,fr405")
833 (eq_attr "type" "gload,fload"))
836 (define_insn_reservation "fr450_i2_gload" 3
837 (and (eq_attr "cpu" "fr450")
838 (eq_attr "type" "gload"))
841 ;; 4 is for a write-after-write hazard.
842 (define_insn_reservation "fr450_i2_fload" 4
843 (and (eq_attr "cpu" "fr450")
844 (eq_attr "type" "fload"))
847 (define_insn_reservation "fr400_i3" 0
848 (and (eq_attr "cpu" "fr400,fr405,fr450")
849 (eq_attr "type" "gstore,fstore"))
852 ;; 3 is for a write-after-write hazard.
853 (define_insn_reservation "fr400_i4" 3
854 (and (eq_attr "cpu" "fr400,fr405")
855 (eq_attr "type" "movfg,movgf"))
858 (define_insn_reservation "fr450_i4_movfg" 2
859 (and (eq_attr "cpu" "fr450")
860 (eq_attr "type" "movfg"))
863 ;; 3 is for a write-after-write hazard.
864 (define_insn_reservation "fr450_i4_movgf" 3
865 (and (eq_attr "cpu" "fr450")
866 (eq_attr "type" "movgf"))
869 (define_insn_reservation "fr400_i5" 0
870 (and (eq_attr "cpu" "fr400,fr405,fr450")
871 (eq_attr "type" "jumpl"))
874 ;; The bypass between FPR loads and media instructions, described above.
878 "fr400_m1_1,fr400_m1_2,\
879 fr400_m2_1,fr400_m2_2,\
880 fr400_m3_1,fr400_m3_2,\
881 fr400_m4_1,fr400_m4_2,\
884 ;; The branch instructions all use the B unit and produce no result.
886 (define_insn_reservation "fr400_b" 0
887 (and (eq_attr "cpu" "fr400,fr405,fr450")
888 (eq_attr "type" "jump,branch,ccr,call"))
891 ;; FP->FP moves are marked as "fsconv" instructions in the define_insns
892 ;; below, but are implemented on the FR400 using "mlogic" instructions.
893 ;; It's easier to class "fsconv" as a "m1:1" instruction than provide
894 ;; separate define_insns for the FR400.
896 ;; M1 instructions store their results in FPRs. Any instruction can read
897 ;; the result in the following cycle, so no penalty occurs.
899 (define_automaton "fr400_media")
900 (define_cpu_unit "fr400_m1a,fr400_m1b,fr400_m2a" "fr400_media")
901 (exclusion_set "fr400_m1a,fr400_m1b" "fr400_m2a")
903 (define_reservation "fr400_m1" "(f1|f0) + (fr400_m1a|fr400_m1b)")
904 (define_reservation "fr400_m2" "f0 + fr400_m2a")
906 (define_insn_reservation "fr400_m1_1" 1
907 (and (eq_attr "cpu" "fr400,fr405")
908 (eq_attr "type" "fsconv,mnop,mlogic,maveh,msath,maddh,mabsh,mset"))
911 (define_insn_reservation "fr400_m1_2" 1
912 (and (eq_attr "cpu" "fr400,fr405")
913 (eq_attr "type" "mqaddh,mqsath,mqlimh,mqshift"))
916 ;; M2 instructions store their results in accumulators, which are read
917 ;; by M2 or M4 media commands. M2 instructions can read the results in
918 ;; the following cycle, but M4 instructions must wait a cycle more.
921 "fr400_m2_1,fr400_m2_2"
922 "fr400_m2_1,fr400_m2_2")
924 (define_insn_reservation "fr400_m2_1" 2
925 (and (eq_attr "cpu" "fr400,fr405")
926 (eq_attr "type" "mmulh,mmulxh,mmach,mmrdh,mcpx,maddacc"))
929 (define_insn_reservation "fr400_m2_2" 2
930 (and (eq_attr "cpu" "fr400,fr405")
931 (eq_attr "type" "mqmulh,mqmulxh,mqmach,mqcpx,mdaddacc"))
934 ;; For our purposes, there seems to be little real difference between
935 ;; M1 and M3 instructions. Keep them separate anyway in case the distinction
938 (define_insn_reservation "fr400_m3_1" 1
939 (and (eq_attr "cpu" "fr400,fr405")
940 (eq_attr "type" "mpackh,mrot,mshift,mexpdhw"))
943 (define_insn_reservation "fr400_m3_2" 1
944 (and (eq_attr "cpu" "fr400,fr405")
945 (eq_attr "type" "munpackh,mdpackh,mbhconv,mexpdhd,mwcut,mdrot,mcpl"))
948 ;; M4 instructions write to accumulators or FPRs. MOVFG and STF
949 ;; instructions can read an FPR result in the following cycle, but
950 ;; M-unit instructions must wait a cycle more for either kind of result.
952 (define_bypass 1 "fr400_m4_1,fr400_m4_2" "fr400_i3,fr400_i4")
954 (define_insn_reservation "fr400_m4_1" 2
955 (and (eq_attr "cpu" "fr400,fr405")
956 (eq_attr "type" "mrdacc,mcut,mclracc"))
959 (define_insn_reservation "fr400_m4_2" 2
960 (and (eq_attr "cpu" "fr400,fr405")
961 (eq_attr "type" "mclracca,mdcut"))
964 ;; M5 instructions always incur a 1-cycle penalty.
966 (define_insn_reservation "fr400_m5" 2
967 (and (eq_attr "cpu" "fr400,fr405")
968 (eq_attr "type" "mwtacc"))
971 ;; ::::::::::::::::::::
973 ;; :: FR450 media scheduler description
975 ;; ::::::::::::::::::::
977 ;; The FR451 media restrictions are similar to the FR400's, but not as
978 ;; strict and not as regular. There are 6 categories with the following
982 ;; M-1 M-2 M-3 M-4 M-5 M-6
990 ;; where "x" indicates a conflict.
992 ;; There is no difference between M-1 and M-3 as far as issue
993 ;; restrictions are concerned, so they are combined as "m13".
995 ;; Units for odd-numbered categories. There can be two of these
997 (define_cpu_unit "fr450_m13a,fr450_m13b" "float_media")
998 (define_cpu_unit "fr450_m5a,fr450_m5b" "float_media")
1000 ;; Units for even-numbered categories. There can only be one per packet.
1001 (define_cpu_unit "fr450_m2a,fr450_m4a,fr450_m6a" "float_media")
1003 ;; Enforce the restriction matrix above.
1004 (exclusion_set "fr450_m2a,fr450_m4a,fr450_m6a" "fr450_m13a,fr450_m13b")
1005 (exclusion_set "fr450_m2a,fr450_m6a" "fr450_m5a,fr450_m5b")
1006 (exclusion_set "fr450_m4a,fr450_m6a" "fr450_m2a")
1008 (define_reservation "fr450_m13" "(f1|f0) + (fr450_m13a|fr450_m13b)")
1009 (define_reservation "fr450_m2" "f0 + fr450_m2a")
1010 (define_reservation "fr450_m4" "f0 + fr450_m4a")
1011 (define_reservation "fr450_m5" "(f1|f0) + (fr450_m5a|fr450_m5b)")
1012 (define_reservation "fr450_m6" "(f0|f1) + fr450_m6a")
1014 ;; MD-1, MD-3 and MD-8 instructions, which are the same as far
1015 ;; as scheduling is concerned. The inputs and outputs are FPRs.
1016 ;; Instructions that have 32-bit inputs and outputs belong to M-1 while
1017 ;; the rest belong to M-2.
1019 ;; ??? Arithmetic shifts (MD-6) have an extra cycle latency, but we don't
1020 ;; make the distinction between them and logical shifts.
1021 (define_insn_reservation "fr450_md138_1" 1
1022 (and (eq_attr "cpu" "fr450")
1023 (eq_attr "type" "fsconv,mnop,mlogic,maveh,msath,maddh,mabsh,mset,
1024 mrot,mshift,mexpdhw,mpackh"))
1027 (define_insn_reservation "fr450_md138_2" 1
1028 (and (eq_attr "cpu" "fr450")
1029 (eq_attr "type" "mqaddh,mqsath,mqlimh,
1030 mdrot,mwcut,mqshift,mexpdhd,
1031 munpackh,mdpackh,mbhconv,mcpl"))
1034 ;; MD-2 instructions. These take FPR or ACC inputs and produce an ACC output.
1035 ;; Instructions that write to double ACCs belong to M-3 while those that write
1036 ;; to quad ACCs belong to M-4.
1037 (define_insn_reservation "fr450_md2_3" 2
1038 (and (eq_attr "cpu" "fr450")
1039 (eq_attr "type" "mmulh,mmach,mcpx,mmulxh,mmrdh,maddacc"))
1042 (define_insn_reservation "fr450_md2_4" 2
1043 (and (eq_attr "cpu" "fr450")
1044 (eq_attr "type" "mqmulh,mqmach,mqcpx,mqmulxh,mdaddacc"))
1047 ;; Another MD-2 instruction can use the result on the following cycle.
1048 (define_bypass 1 "fr450_md2_3,fr450_md2_4" "fr450_md2_3,fr450_md2_4")
1050 ;; MD-4 instructions that write to ACCs.
1051 (define_insn_reservation "fr450_md4_3" 2
1052 (and (eq_attr "cpu" "fr450")
1053 (eq_attr "type" "mclracc"))
1056 (define_insn_reservation "fr450_md4_4" 3
1057 (and (eq_attr "cpu" "fr450")
1058 (eq_attr "type" "mclracca"))
1061 ;; MD-4 instructions that write to FPRs.
1062 (define_insn_reservation "fr450_md4_1" 2
1063 (and (eq_attr "cpu" "fr450")
1064 (eq_attr "type" "mcut"))
1067 (define_insn_reservation "fr450_md4_5" 2
1068 (and (eq_attr "cpu" "fr450")
1069 (eq_attr "type" "mrdacc"))
1072 (define_insn_reservation "fr450_md4_6" 2
1073 (and (eq_attr "cpu" "fr450")
1074 (eq_attr "type" "mdcut"))
1077 ;; Integer instructions can read the FPR result of an MD-4 instruction on
1078 ;; the following cycle.
1079 (define_bypass 1 "fr450_md4_1,fr450_md4_5,fr450_md4_6"
1080 "fr400_i3,fr450_i4_movfg")
1082 ;; MD-5 instructions, which belong to M-3. They take FPR inputs and
1084 (define_insn_reservation "fr450_md5_3" 2
1085 (and (eq_attr "cpu" "fr450")
1086 (eq_attr "type" "mwtacc"))
1089 ;; ::::::::::::::::::::
1091 ;; :: FR550 scheduler description
1093 ;; ::::::::::::::::::::
1095 ;; Prevent loads and stores from being issued in the same packet.
1096 ;; These units must go into the generic "integer" reservation because
1097 ;; of the constraints on fr550_store0 and fr550_store1.
1098 (define_cpu_unit "fr550_load0,fr550_load1" "integer")
1099 (define_cpu_unit "fr550_store0,fr550_store1" "integer")
1100 (exclusion_set "fr550_load0,fr550_load1" "fr550_store0,fr550_store1")
1102 ;; A store can only issue to I1 if one has also been issued to I0.
1103 (presence_set "fr550_store1" "fr550_store0")
1105 (define_bypass 0 "fr550_sethi" "fr550_setlo")
1106 (define_insn_reservation "fr550_sethi" 1
1107 (and (eq_attr "cpu" "fr550")
1108 (eq_attr "type" "sethi"))
1111 (define_insn_reservation "fr550_setlo" 1
1112 (and (eq_attr "cpu" "fr550")
1113 (eq_attr "type" "setlo"))
1116 (define_insn_reservation "fr550_int" 1
1117 (and (eq_attr "cpu" "fr550")
1118 (eq_attr "type" "int"))
1121 (define_insn_reservation "fr550_mul" 2
1122 (and (eq_attr "cpu" "fr550")
1123 (eq_attr "type" "mul"))
1126 (define_insn_reservation "fr550_div" 19
1127 (and (eq_attr "cpu" "fr550")
1128 (eq_attr "type" "div"))
1129 "(i1|i0),(idiv1*18 | idiv2*18)")
1131 (define_insn_reservation "fr550_load" 3
1132 (and (eq_attr "cpu" "fr550")
1133 (eq_attr "type" "gload,fload"))
1134 "(i1|i0)+(fr550_load0|fr550_load1)")
1136 ;; We can only issue a store to I1 if one was also issued to I0.
1137 ;; This means that, as far as frv_reorder_packet is concerned,
1138 ;; the instruction has the same priority as an I0-only instruction.
1139 (define_insn_reservation "fr550_store" 1
1140 (and (eq_attr "cpu" "fr550")
1141 (eq_attr "type" "gstore,fstore"))
1142 "(i0+fr550_store0)|(i1+fr550_store1)")
1144 (define_insn_reservation "fr550_transfer" 2
1145 (and (eq_attr "cpu" "fr550")
1146 (eq_attr "type" "movgf,movfg"))
1149 (define_insn_reservation "fr550_jumpl" 0
1150 (and (eq_attr "cpu" "fr550")
1151 (eq_attr "type" "jumpl"))
1154 (define_cpu_unit "fr550_ccr0,fr550_ccr1" "float_media")
1156 (define_insn_reservation "fr550_branch" 0
1157 (and (eq_attr "cpu" "fr550")
1158 (eq_attr "type" "jump,branch"))
1161 (define_insn_reservation "fr550_ccr" 0
1162 (and (eq_attr "cpu" "fr550")
1163 (eq_attr "type" "ccr"))
1164 "(b1|b0) + (fr550_ccr1|fr550_ccr0)")
1166 (define_insn_reservation "fr550_call" 0
1167 (and (eq_attr "cpu" "fr550")
1168 (eq_attr "type" "call"))
1171 (define_automaton "fr550_float_media")
1172 (define_cpu_unit "fr550_add0,fr550_add1" "fr550_float_media")
1174 ;; There are three possible combinations of floating-point/media instructions:
1176 ;; - one media and one float
1177 ;; - up to four float, no media
1178 ;; - up to four media, no float
1179 (define_cpu_unit "fr550_f0,fr550_f1,fr550_f2,fr550_f3" "fr550_float_media")
1180 (define_cpu_unit "fr550_m0,fr550_m1,fr550_m2,fr550_m3" "fr550_float_media")
1181 (exclusion_set "fr550_f1,fr550_f2,fr550_f3" "fr550_m1,fr550_m2,fr550_m3")
1182 (exclusion_set "fr550_m0" "fr550_f1,fr550_f2,fr550_f3")
1183 ;; FIXME: This next exclusion set should be defined as well, so that we do
1184 ;; not get a packet containing multiple media instructions plus a single
1185 ;; floating point instruction. At the moment we can get away with not
1186 ;; defining it because gcc does not seem to generate such packets.
1188 ;; If we do enable the exclusion however the insertion of fnop insns into
1189 ;; a packet containing media instructions will stop working, because the
1190 ;; fnop insn counts as a floating point instruction. The correct solution
1191 ;; is to fix the reservation for the fnop insn so that it does not have the
1192 ;; same restrictions as ordinary floating point insns.
1193 ;;(exclusion_set "fr550_f0" "fr550_m1,fr550_m2,fr550_m3")
1195 (define_reservation "fr550_float" "fr550_f0|fr550_f1|fr550_f2|fr550_f3")
1196 (define_reservation "fr550_media" "fr550_m0|fr550_m1|fr550_m2|fr550_m3")
1198 (define_insn_reservation "fr550_f1" 0
1199 (and (eq_attr "cpu" "fr550")
1200 (eq_attr "type" "fnop"))
1201 "(f3|f2|f1|f0) + fr550_float")
1203 (define_insn_reservation "fr550_f2" 3
1204 (and (eq_attr "cpu" "fr550")
1205 (eq_attr "type" "fsconv,fsadd,fscmp"))
1206 "(f3|f2|f1|f0) + (fr550_add0|fr550_add1) + fr550_float")
1208 (define_insn_reservation "fr550_f3_mul" 3
1209 (and (eq_attr "cpu" "fr550")
1210 (eq_attr "type" "fsmul"))
1211 "(f1|f0) + fr550_float")
1213 (define_insn_reservation "fr550_f3_div" 10
1214 (and (eq_attr "cpu" "fr550")
1215 (eq_attr "type" "fsdiv"))
1216 "(f1|f0) + fr550_float")
1218 (define_insn_reservation "fr550_f3_sqrt" 15
1219 (and (eq_attr "cpu" "fr550")
1220 (eq_attr "type" "sqrt_single"))
1221 "(f1|f0) + fr550_float")
1223 ;; Synthetic units for enforcing media issue restrictions. Certain types
1224 ;; of insn in M2 conflict with certain types in M0:
1227 ;; MNOP MALU MSFT MMAC MSET
1230 ;; M0 MSFT - - x - x
1234 ;; where "x" indicates a conflict. The same restrictions apply to
1237 ;; In addition -- and this is the awkward bit! -- instructions that
1238 ;; access ACC0-3 can only issue to M0 or M2. Those that access ACC4-7
1239 ;; can only issue to M1 or M3. We refer to such instructions as "even"
1240 ;; and "odd" respectively.
1241 (define_cpu_unit "fr550_malu0,fr550_malu1" "float_media")
1242 (define_cpu_unit "fr550_malu2,fr550_malu3" "float_media")
1243 (define_cpu_unit "fr550_msft0,fr550_msft1" "float_media")
1244 (define_cpu_unit "fr550_mmac0,fr550_mmac1" "float_media")
1245 (define_cpu_unit "fr550_mmac2,fr550_mmac3" "float_media")
1246 (define_cpu_unit "fr550_mset0,fr550_mset1" "float_media")
1247 (define_cpu_unit "fr550_mset2,fr550_mset3" "float_media")
1249 (exclusion_set "fr550_malu0" "fr550_malu2")
1250 (exclusion_set "fr550_malu1" "fr550_malu3")
1252 (exclusion_set "fr550_msft0" "fr550_mset2")
1253 (exclusion_set "fr550_msft1" "fr550_mset3")
1255 (exclusion_set "fr550_mmac0" "fr550_mmac2")
1256 (exclusion_set "fr550_mmac1" "fr550_mmac3")
1258 ;; If an MSFT or MMAC instruction issues to a unit other than M0, we may
1259 ;; need to insert some nops. In the worst case, the packet will end up
1260 ;; having 4 integer instructions and 4 media instructions, leaving no
1261 ;; room for any branch instructions that the DFA might have accepted.
1263 ;; This doesn't matter for JUMP_INSNs and CALL_INSNs because they are
1264 ;; always the last instructions to be passed to the DFA, and could be
1265 ;; pushed out to a separate packet once the nops have been added.
1266 ;; However, it does cause problems for ccr instructions since they
1267 ;; can occur anywhere in the unordered packet.
1268 (exclusion_set "fr550_msft1,fr550_mmac1,fr550_mmac2,fr550_mmac3"
1269 "fr550_ccr0,fr550_ccr1")
1271 (define_reservation "fr550_malu"
1272 "(f3 + fr550_malu3) | (f2 + fr550_malu2)
1273 | (f1 + fr550_malu1) | (f0 + fr550_malu0)")
1275 (define_reservation "fr550_msft_even"
1278 (define_reservation "fr550_msft_odd"
1281 (define_reservation "fr550_msft_either"
1282 "(f1 + fr550_msft1) | (f0 + fr550_msft0)")
1284 (define_reservation "fr550_mmac_even"
1285 "(f2 + fr550_mmac2) | (f0 + fr550_mmac0)")
1287 (define_reservation "fr550_mmac_odd"
1288 "(f3 + fr550_mmac3) | (f1 + fr550_mmac1)")
1290 (define_reservation "fr550_mset"
1291 "(f3 + fr550_mset3) | (f2 + fr550_mset2)
1292 | (f1 + fr550_mset1) | (f0 + fr550_mset0)")
1294 (define_insn_reservation "fr550_mnop" 0
1295 (and (eq_attr "cpu" "fr550")
1296 (eq_attr "type" "mnop"))
1297 "fr550_media + (f3|f2|f1|f0)")
1299 (define_insn_reservation "fr550_malu" 2
1300 (and (eq_attr "cpu" "fr550")
1301 (eq_attr "type" "mlogic,maveh,msath,mabsh,maddh,mqaddh,mqsath"))
1302 "fr550_media + fr550_malu")
1304 ;; These insns only operate on FPRs and so don't need to be classified
1306 (define_insn_reservation "fr550_msft_1_either" 2
1307 (and (eq_attr "cpu" "fr550")
1308 (eq_attr "type" "mrot,mwcut,mshift,mexpdhw,mexpdhd,mpackh,
1309 munpackh,mdpackh,mbhconv,mdrot,mcpl"))
1310 "fr550_media + fr550_msft_either")
1312 ;; These insns read from ACC0-3.
1313 (define_insn_reservation "fr550_msft_1_even" 2
1314 (and (eq_attr "cpu" "fr550")
1315 (and (eq_attr "type" "mcut,mrdacc,mdcut")
1316 (eq_attr "acc_group" "even")))
1317 "fr550_media + fr550_msft_even")
1319 ;; These insns read from ACC4-7.
1320 (define_insn_reservation "fr550_msft_1_odd" 2
1321 (and (eq_attr "cpu" "fr550")
1322 (and (eq_attr "type" "mcut,mrdacc,mdcut")
1323 (eq_attr "acc_group" "odd")))
1324 "fr550_media + fr550_msft_odd")
1326 ;; MCLRACC with A=1 can issue to either M0 or M1.
1327 (define_insn_reservation "fr550_msft_2_either" 2
1328 (and (eq_attr "cpu" "fr550")
1329 (eq_attr "type" "mclracca"))
1330 "fr550_media + fr550_msft_either")
1332 ;; These insns write to ACC0-3.
1333 (define_insn_reservation "fr550_msft_2_even" 2
1334 (and (eq_attr "cpu" "fr550")
1335 (and (eq_attr "type" "mclracc,mwtacc")
1336 (eq_attr "acc_group" "even")))
1337 "fr550_media + fr550_msft_even")
1339 ;; These insns write to ACC4-7.
1340 (define_insn_reservation "fr550_msft_2_odd" 2
1341 (and (eq_attr "cpu" "fr550")
1342 (and (eq_attr "type" "mclracc,mwtacc")
1343 (eq_attr "acc_group" "odd")))
1344 "fr550_media + fr550_msft_odd")
1346 ;; These insns read from and write to ACC0-3.
1347 (define_insn_reservation "fr550_mmac_even" 2
1348 (and (eq_attr "cpu" "fr550")
1349 (and (eq_attr "type" "mmulh,mmulxh,mmach,mmrdh,mqmulh,mqmulxh,mqmach,
1350 maddacc,mdaddacc,mcpx,mqcpx")
1351 (eq_attr "acc_group" "even")))
1352 "fr550_media + fr550_mmac_even")
1354 ;; These insns read from and write to ACC4-7.
1355 (define_insn_reservation "fr550_mmac_odd" 2
1356 (and (eq_attr "cpu" "fr550")
1357 (and (eq_attr "type" "mmulh,mmulxh,mmach,mmrdh,mqmulh,mqmulxh,mqmach,
1358 maddacc,mdaddacc,mcpx,mqcpx")
1359 (eq_attr "acc_group" "odd")))
1360 "fr550_media + fr550_mmac_odd")
1362 (define_insn_reservation "fr550_mset" 1
1363 (and (eq_attr "cpu" "fr550")
1364 (eq_attr "type" "mset"))
1365 "fr550_media + fr550_mset")
1367 ;; ::::::::::::::::::::
1369 ;; :: Simple/FR300 scheduler description
1371 ;; ::::::::::::::::::::
1373 ;; Fr300 or simple processor. To describe it as 1 insn issue
1374 ;; processor, we use control unit.
1376 (define_insn_reservation "fr300_lat1" 1
1377 (and (eq_attr "cpu" "fr300,simple")
1378 (eq_attr "type" "!gload,fload,movfg,movgf"))
1381 (define_insn_reservation "fr300_lat2" 2
1382 (and (eq_attr "cpu" "fr300,simple")
1383 (eq_attr "type" "gload,fload,movfg,movgf"))
1387 ;; ::::::::::::::::::::
1391 ;; ::::::::::::::::::::
1393 ;; The insn attribute mechanism can be used to specify the requirements for
1394 ;; delay slots, if any, on a target machine. An instruction is said to require
1395 ;; a "delay slot" if some instructions that are physically after the
1396 ;; instruction are executed as if they were located before it. Classic
1397 ;; examples are branch and call instructions, which often execute the following
1398 ;; instruction before the branch or call is performed.
1400 ;; On some machines, conditional branch instructions can optionally "annul"
1401 ;; instructions in the delay slot. This means that the instruction will not be
1402 ;; executed for certain branch outcomes. Both instructions that annul if the
1403 ;; branch is true and instructions that annul if the branch is false are
1406 ;; Delay slot scheduling differs from instruction scheduling in that
1407 ;; determining whether an instruction needs a delay slot is dependent only
1408 ;; on the type of instruction being generated, not on data flow between the
1409 ;; instructions. See the next section for a discussion of data-dependent
1410 ;; instruction scheduling.
1412 ;; The requirement of an insn needing one or more delay slots is indicated via
1413 ;; the `define_delay' expression. It has the following form:
1415 ;; (define_delay TEST
1416 ;; [DELAY-1 ANNUL-TRUE-1 ANNUL-FALSE-1
1417 ;; DELAY-2 ANNUL-TRUE-2 ANNUL-FALSE-2
1420 ;; TEST is an attribute test that indicates whether this `define_delay' applies
1421 ;; to a particular insn. If so, the number of required delay slots is
1422 ;; determined by the length of the vector specified as the second argument. An
1423 ;; insn placed in delay slot N must satisfy attribute test DELAY-N.
1424 ;; ANNUL-TRUE-N is an attribute test that specifies which insns may be annulled
1425 ;; if the branch is true. Similarly, ANNUL-FALSE-N specifies which insns in
1426 ;; the delay slot may be annulled if the branch is false. If annulling is not
1427 ;; supported for that delay slot, `(nil)' should be coded.
1429 ;; For example, in the common case where branch and call insns require a single
1430 ;; delay slot, which may contain any insn other than a branch or call, the
1431 ;; following would be placed in the `md' file:
1433 ;; (define_delay (eq_attr "type" "branch,call")
1434 ;; [(eq_attr "type" "!branch,call") (nil) (nil)])
1436 ;; Multiple `define_delay' expressions may be specified. In this case, each
1437 ;; such expression specifies different delay slot requirements and there must
1438 ;; be no insn for which tests in two `define_delay' expressions are both true.
1440 ;; For example, if we have a machine that requires one delay slot for branches
1441 ;; but two for calls, no delay slot can contain a branch or call insn, and any
1442 ;; valid insn in the delay slot for the branch can be annulled if the branch is
1443 ;; true, we might represent this as follows:
1445 ;; (define_delay (eq_attr "type" "branch")
1446 ;; [(eq_attr "type" "!branch,call")
1447 ;; (eq_attr "type" "!branch,call")
1450 ;; (define_delay (eq_attr "type" "call")
1451 ;; [(eq_attr "type" "!branch,call") (nil) (nil)
1452 ;; (eq_attr "type" "!branch,call") (nil) (nil)])
1454 ;; Note - it is the backend's responsibility to fill any unfilled delay slots
1455 ;; at assembler generation time. This is usually done by adding a special print
1456 ;; operand to the delayed instruction, and then in the PRINT_OPERAND function
1457 ;; calling dbr_sequence_length() to determine how many delay slots were filled.
1460 ;; --------------<machine>.md-----------------
1461 ;; (define_insn "call"
1462 ;; [(call (match_operand 0 "memory_operand" "m")
1463 ;; (match_operand 1 "" ""))]
1465 ;; "call_delayed %0,%1,%2%#"
1466 ;; [(set_attr "length" "4")
1467 ;; (set_attr "type" "call")])
1469 ;; -------------<machine>.h-------------------
1470 ;; #define PRINT_OPERAND_PUNCT_VALID_P(CODE) (CODE == '#')
1472 ;; ------------<machine>.c------------------
1474 ;; machine_print_operand (file, x, code)
1482 ;; if (dbr_sequence_length () == 0)
1483 ;; fputs ("\n\tnop", file);
1486 ;; ::::::::::::::::::::
1488 ;; :: Notes on Patterns
1490 ;; ::::::::::::::::::::
1492 ;; If you need to construct a sequence of assembler instructions in order
1493 ;; to implement a pattern be sure to escape any backslashes and double quotes
1494 ;; that you use, e.g.:
1496 ;; (define_insn "an example"
1500 ;; { static char buffer [100];
1501 ;; sprintf (buffer, \"insn \\t %d\", REGNO (operands[1]));
1506 ;; Also if there is more than one instruction, they can be separated by \\;
1507 ;; which is a space saving synonym for \\n\\t:
1509 ;; (define_insn "another example"
1513 ;; { static char buffer [100];
1514 ;; sprintf (buffer, \"insn1 \\t %d\\;insn2 \\t %%1\",
1515 ;; REGNO (operands[1]));
1521 (include "predicates.md")
1522 (include "constraints.md")
1524 ;; ::::::::::::::::::::
1528 ;; ::::::::::::::::::::
1530 ;; Wrap moves in define_expand to prevent memory->memory moves from being
1531 ;; generated at the RTL level, which generates better code for most machines
1532 ;; which can't do mem->mem moves.
1534 ;; If operand 0 is a `subreg' with mode M of a register whose own mode is wider
1535 ;; than M, the effect of this instruction is to store the specified value in
1536 ;; the part of the register that corresponds to mode M. The effect on the rest
1537 ;; of the register is undefined.
1539 ;; This class of patterns is special in several ways. First of all, each of
1540 ;; these names *must* be defined, because there is no other way to copy a datum
1541 ;; from one place to another.
1543 ;; Second, these patterns are not used solely in the RTL generation pass. Even
1544 ;; the reload pass can generate move insns to copy values from stack slots into
1545 ;; temporary registers. When it does so, one of the operands is a hard
1546 ;; register and the other is an operand that can need to be reloaded into a
1549 ;; Therefore, when given such a pair of operands, the pattern must
1550 ;; generate RTL which needs no reloading and needs no temporary
1551 ;; registers--no registers other than the operands. For example, if
1552 ;; you support the pattern with a `define_expand', then in such a
1553 ;; case the `define_expand' mustn't call `force_reg' or any other such
1554 ;; function which might generate new pseudo registers.
1556 ;; This requirement exists even for subword modes on a RISC machine
1557 ;; where fetching those modes from memory normally requires several
1558 ;; insns and some temporary registers. Look in `spur.md' to see how
1559 ;; the requirement can be satisfied.
1561 ;; During reload a memory reference with an invalid address may be passed as an
1562 ;; operand. Such an address will be replaced with a valid address later in the
1563 ;; reload pass. In this case, nothing may be done with the address except to
1564 ;; use it as it stands. If it is copied, it will not be replaced with a valid
1565 ;; address. No attempt should be made to make such an address into a valid
1566 ;; address and no routine (such as `change_address') that will do so may be
1567 ;; called. Note that `general_operand' will fail when applied to such an
1570 ;; The global variable `reload_in_progress' (which must be explicitly declared
1571 ;; if required) can be used to determine whether such special handling is
1574 ;; The variety of operands that have reloads depends on the rest of
1575 ;; the machine description, but typically on a RISC machine these can
1576 ;; only be pseudo registers that did not get hard registers, while on
1577 ;; other machines explicit memory references will get optional
1580 ;; If a scratch register is required to move an object to or from memory, it
1581 ;; can be allocated using `gen_reg_rtx' prior to reload. But this is
1582 ;; impossible during and after reload. If there are cases needing scratch
1583 ;; registers after reload, you must define `SECONDARY_INPUT_RELOAD_CLASS' and
1584 ;; perhaps also `SECONDARY_OUTPUT_RELOAD_CLASS' to detect them, and provide
1585 ;; patterns `reload_inM' or `reload_outM' to handle them.
1587 ;; The constraints on a `moveM' must permit moving any hard register to any
1588 ;; other hard register provided that `HARD_REGNO_MODE_OK' permits mode M in
1589 ;; both registers and `REGISTER_MOVE_COST' applied to their classes returns a
1592 ;; It is obligatory to support floating point `moveM' instructions
1593 ;; into and out of any registers that can hold fixed point values,
1594 ;; because unions and structures (which have modes `SImode' or
1595 ;; `DImode') can be in those registers and they may have floating
1598 ;; There may also be a need to support fixed point `moveM' instructions in and
1599 ;; out of floating point registers. Unfortunately, I have forgotten why this
1600 ;; was so, and I don't know whether it is still true. If `HARD_REGNO_MODE_OK'
1601 ;; rejects fixed point values in floating point registers, then the constraints
1602 ;; of the fixed point `moveM' instructions must be designed to avoid ever
1603 ;; trying to reload into a floating point register.
1605 (define_expand "movqi"
1606 [(set (match_operand:QI 0 "general_operand" "")
1607 (match_operand:QI 1 "general_operand" ""))]
1609 "{ frv_emit_move (QImode, operands[0], operands[1]); DONE; }")
1611 (define_insn "*movqi_load"
1612 [(set (match_operand:QI 0 "register_operand" "=d,f")
1613 (match_operand:QI 1 "frv_load_operand" "m,m"))]
1615 "* return output_move_single (operands, insn);"
1616 [(set_attr "length" "4")
1617 (set_attr "type" "gload,fload")])
1619 (define_insn "*movqi_internal"
1620 [(set (match_operand:QI 0 "move_destination_operand" "=d,d,m,m,?f,?f,?d,?m,f,d,f")
1621 (match_operand:QI 1 "move_source_operand" "L,d,d,O, d, f, f, f,GO,!m,!m"))]
1622 "register_operand(operands[0], QImode) || reg_or_0_operand (operands[1], QImode)"
1623 "* return output_move_single (operands, insn);"
1624 [(set_attr "length" "4")
1625 (set_attr "type" "int,int,gstore,gstore,movgf,fsconv,movfg,fstore,movgf,gload,fload")])
1627 (define_expand "movhi"
1628 [(set (match_operand:HI 0 "general_operand" "")
1629 (match_operand:HI 1 "general_operand" ""))]
1631 "{ frv_emit_move (HImode, operands[0], operands[1]); DONE; }")
1633 (define_insn "*movhi_load"
1634 [(set (match_operand:HI 0 "register_operand" "=d,f")
1635 (match_operand:HI 1 "frv_load_operand" "m,m"))]
1637 "* return output_move_single (operands, insn);"
1638 [(set_attr "length" "4")
1639 (set_attr "type" "gload,fload")])
1641 (define_insn "*movhi_internal"
1642 [(set (match_operand:HI 0 "move_destination_operand" "=d,d,d,m,m,?f,?f,?d,?m,f,d,f")
1643 (match_operand:HI 1 "move_source_operand" "L,n,d,d,O, d, f, f, f,GO,!m,!m"))]
1644 "register_operand(operands[0], HImode) || reg_or_0_operand (operands[1], HImode)"
1645 "* return output_move_single (operands, insn);"
1646 [(set_attr "length" "4,8,4,4,4,4,4,4,4,4,4,4")
1647 (set_attr "type" "int,multi,int,gstore,gstore,movgf,fsconv,movfg,fstore,movgf,gload,fload")])
1649 ;; Split 2 word load of constants into sethi/setlo instructions
1651 [(set (match_operand:HI 0 "integer_register_operand" "")
1652 (match_operand:HI 1 "int_2word_operand" ""))]
1655 (high:HI (match_dup 1)))
1657 (lo_sum:HI (match_dup 0)
1661 (define_insn "movhi_high"
1662 [(set (match_operand:HI 0 "integer_register_operand" "=d")
1663 (high:HI (match_operand:HI 1 "int_2word_operand" "i")))]
1666 [(set_attr "type" "sethi")
1667 (set_attr "length" "4")])
1669 (define_insn "movhi_lo_sum"
1670 [(set (match_operand:HI 0 "integer_register_operand" "+d")
1671 (lo_sum:HI (match_dup 0)
1672 (match_operand:HI 1 "int_2word_operand" "i")))]
1675 [(set_attr "type" "setlo")
1676 (set_attr "length" "4")])
1678 (define_expand "movsi"
1679 [(set (match_operand:SI 0 "move_destination_operand" "")
1680 (match_operand:SI 1 "move_source_operand" ""))]
1682 "{ frv_emit_move (SImode, operands[0], operands[1]); DONE; }")
1684 ;; Note - it is best to only have one movsi pattern and to handle
1685 ;; all the various contingencies by the use of alternatives. This
1686 ;; allows reload the greatest amount of flexibility (since reload will
1687 ;; only choose amongst alternatives for a selected insn, it will not
1688 ;; replace the insn with another one).
1690 ;; Unfortunately, we do have to separate out load-type moves from the rest,
1691 ;; and only allow memory source operands in the former. If we do memory and
1692 ;; constant loads in a single pattern, reload will be tempted to force
1693 ;; constants into memory when the destination is a floating-point register.
1694 ;; That may make a function use a PIC pointer when it didn't before, and we
1695 ;; cannot change PIC usage (and hence stack layout) so late in the game.
1696 ;; The resulting sequences for loading constants into FPRs are preferable
1697 ;; even when we're not generating PIC code.
1699 ;; However, if we don't accept input from memory at all in the generic
1700 ;; movsi pattern, reloads for asm instructions that reference pseudos
1701 ;; that end up assigned to memory will fail to match, because we
1702 ;; recognize them right after they're emitted, and we don't
1703 ;; re-recognize them again after the substitution for memory. So keep
1704 ;; a memory constraint available, just make sure reload won't be
1705 ;; tempted to use it.
1709 (define_insn "*movsi_load"
1710 [(set (match_operand:SI 0 "register_operand" "=d,f")
1711 (match_operand:SI 1 "frv_load_operand" "m,m"))]
1713 "* return output_move_single (operands, insn);"
1714 [(set_attr "length" "4")
1715 (set_attr "type" "gload,fload")])
1717 (define_insn "*movsi_got"
1718 [(set (match_operand:SI 0 "integer_register_operand" "=d")
1719 (match_operand:SI 1 "got12_operand" ""))]
1722 [(set_attr "type" "int")
1723 (set_attr "length" "4")])
1725 (define_insn "*movsi_high_got"
1726 [(set (match_operand:SI 0 "integer_register_operand" "=d")
1727 (high:SI (match_operand:SI 1 "const_unspec_operand" "")))]
1730 [(set_attr "type" "sethi")
1731 (set_attr "length" "4")])
1733 (define_insn "*movsi_lo_sum_got"
1734 [(set (match_operand:SI 0 "integer_register_operand" "=d")
1735 (lo_sum:SI (match_operand:SI 1 "integer_register_operand" "0")
1736 (match_operand:SI 2 "const_unspec_operand" "")))]
1739 [(set_attr "type" "setlo")
1740 (set_attr "length" "4")])
1742 (define_insn "*movsi_internal"
1743 [(set (match_operand:SI 0 "move_destination_operand" "=d,d,d,m,m,z,d,d,f,f,m,?f,?z,d,f")
1744 (match_operand:SI 1 "move_source_operand" "L,n,d,d,O,d,z,f,d,f,f,GO,GO,!m,!m"))]
1745 "register_operand (operands[0], SImode) || reg_or_0_operand (operands[1], SImode)"
1746 "* return output_move_single (operands, insn);"
1747 [(set_attr "length" "4,8,4,4,4,4,4,4,4,4,4,4,4,4,4")
1748 (set_attr "type" "int,multi,int,gstore,gstore,spr,spr,movfg,movgf,fsconv,fstore,movgf,spr,gload,fload")])
1750 ;; Split 2 word load of constants into sethi/setlo instructions
1751 (define_insn_and_split "*movsi_2word"
1752 [(set (match_operand:SI 0 "integer_register_operand" "=d")
1753 (match_operand:SI 1 "int_2word_operand" "i"))]
1758 (high:SI (match_dup 1)))
1760 (lo_sum:SI (match_dup 0)
1763 [(set_attr "length" "8")
1764 (set_attr "type" "multi")])
1766 (define_insn "movsi_high"
1767 [(set (match_operand:SI 0 "integer_register_operand" "=d")
1768 (high:SI (match_operand:SI 1 "int_2word_operand" "i")))]
1771 [(set_attr "type" "sethi")
1772 (set_attr "length" "4")])
1774 (define_insn "movsi_lo_sum"
1775 [(set (match_operand:SI 0 "integer_register_operand" "+d")
1776 (lo_sum:SI (match_dup 0)
1777 (match_operand:SI 1 "int_2word_operand" "i")))]
1780 [(set_attr "type" "setlo")
1781 (set_attr "length" "4")])
1783 (define_expand "movdi"
1784 [(set (match_operand:DI 0 "nonimmediate_operand" "")
1785 (match_operand:DI 1 "general_operand" ""))]
1787 "{ frv_emit_move (DImode, operands[0], operands[1]); DONE; }")
1789 (define_insn "*movdi_double"
1790 [(set (match_operand:DI 0 "move_destination_operand" "=e,?h,??d,??f,R,?R,??m,??m,e,?h,??d,??f,?e,??d,?h,??f,R,m,e,??d,e,??d,?h,??f")
1791 (match_operand:DI 1 "move_source_operand" " e,h,d,f,e,h,d,f,R,R,m,m,h,f,e,d,GO,GO,GO,GO,nF,nF,GO,GO"))]
1793 && (register_operand (operands[0], DImode)
1794 || reg_or_0_operand (operands[1], DImode))"
1795 "* return output_move_double (operands, insn);"
1796 [(set_attr "length" "8,4,8,8,4,4,8,8,4,4,8,8,4,8,4,8,4,8,8,8,16,16,8,8")
1797 (set_attr "type" "multi,fdconv,multi,multi,gstore,fstore,gstore,fstore,gload,fload,gload,fload,movfg,movfg,movgf,movgf,gstore,gstore,multi,multi,multi,multi,movgf,movgf")])
1799 (define_insn "*movdi_nodouble"
1800 [(set (match_operand:DI 0 "move_destination_operand" "=e,?h,??d,??f,R,?R,??m,??m,e,?h,??d,??f,?e,??d,?h,??f,R,m,e,??d,e,??d,?h,??f")
1801 (match_operand:DI 1 "move_source_operand" " e,h,d,f,e,h,d,f,R,R,m,m,h,f,e,d,GO,GO,GO,GO,nF,nF,GO,GO"))]
1803 && (register_operand (operands[0], DImode)
1804 || reg_or_0_operand (operands[1], DImode))"
1805 "* return output_move_double (operands, insn);"
1806 [(set_attr "length" "8,8,8,8,4,4,8,8,4,4,8,8,8,8,8,8,4,8,8,8,16,16,8,8")
1807 (set_attr "type" "multi,multi,multi,multi,gstore,fstore,gstore,fstore,gload,fload,gload,fload,movfg,movfg,movgf,movgf,gstore,gstore,multi,multi,multi,multi,movgf,movgf")])
1810 [(set (match_operand:DI 0 "register_operand" "")
1811 (match_operand:DI 1 "dbl_memory_two_insn_operand" ""))]
1814 "frv_split_double_load (operands[0], operands[1]);")
1817 [(set (match_operand:DI 0 "odd_reg_operand" "")
1818 (match_operand:DI 1 "memory_operand" ""))]
1821 "frv_split_double_load (operands[0], operands[1]);")
1824 [(set (match_operand:DI 0 "dbl_memory_two_insn_operand" "")
1825 (match_operand:DI 1 "reg_or_0_operand" ""))]
1828 "frv_split_double_store (operands[0], operands[1]);")
1831 [(set (match_operand:DI 0 "memory_operand" "")
1832 (match_operand:DI 1 "odd_reg_operand" ""))]
1835 "frv_split_double_store (operands[0], operands[1]);")
1838 [(set (match_operand:DI 0 "register_operand" "")
1839 (match_operand:DI 1 "register_operand" ""))]
1841 && (odd_reg_operand (operands[0], DImode)
1842 || odd_reg_operand (operands[1], DImode)
1843 || (integer_register_operand (operands[0], DImode)
1844 && integer_register_operand (operands[1], DImode))
1846 && fpr_operand (operands[0], DImode)
1847 && fpr_operand (operands[1], DImode)))"
1848 [(set (match_dup 2) (match_dup 4))
1849 (set (match_dup 3) (match_dup 5))]
1852 rtx op0 = operands[0];
1853 rtx op0_low = gen_lowpart (SImode, op0);
1854 rtx op0_high = gen_highpart (SImode, op0);
1855 rtx op1 = operands[1];
1856 rtx op1_low = gen_lowpart (SImode, op1);
1857 rtx op1_high = gen_highpart (SImode, op1);
1859 /* We normally copy the low-numbered register first. However, if the first
1860 register operand 0 is the same as the second register of operand 1, we
1861 must copy in the opposite order. */
1863 if (REGNO (op0_high) == REGNO (op1_low))
1865 operands[2] = op0_low;
1866 operands[3] = op0_high;
1867 operands[4] = op1_low;
1868 operands[5] = op1_high;
1872 operands[2] = op0_high;
1873 operands[3] = op0_low;
1874 operands[4] = op1_high;
1875 operands[5] = op1_low;
1880 [(set (match_operand:DI 0 "register_operand" "")
1881 (match_operand:DI 1 "const_int_operand" ""))]
1883 [(set (match_dup 2) (match_dup 4))
1884 (set (match_dup 3) (match_dup 5))]
1887 rtx op0 = operands[0];
1888 rtx op1 = operands[1];
1890 operands[2] = gen_highpart (SImode, op0);
1891 operands[3] = gen_lowpart (SImode, op0);
1892 if (HOST_BITS_PER_WIDE_INT <= 32)
1894 operands[4] = GEN_INT ((INTVAL (op1) < 0) ? -1 : 0);
1899 operands[4] = gen_int_mode ((INTVAL (op1) >> 16) >> 16, SImode);
1900 operands[5] = gen_int_mode (INTVAL (op1), SImode);
1905 [(set (match_operand:DI 0 "register_operand" "")
1906 (match_operand:DI 1 "const_double_operand" ""))]
1908 [(set (match_dup 2) (match_dup 4))
1909 (set (match_dup 3) (match_dup 5))]
1912 rtx op0 = operands[0];
1913 rtx op1 = operands[1];
1915 operands[2] = gen_highpart (SImode, op0);
1916 operands[3] = gen_lowpart (SImode, op0);
1917 operands[4] = GEN_INT (CONST_DOUBLE_HIGH (op1));
1918 operands[5] = GEN_INT (CONST_DOUBLE_LOW (op1));
1921 ;; Floating Point Moves
1923 ;; Note - Patterns for SF mode moves are compulsory, but
1924 ;; patterns for DF are optional, as GCC can synthesize them.
1926 (define_expand "movsf"
1927 [(set (match_operand:SF 0 "general_operand" "")
1928 (match_operand:SF 1 "general_operand" ""))]
1930 "{ frv_emit_move (SFmode, operands[0], operands[1]); DONE; }")
1933 [(set (match_operand:SF 0 "integer_register_operand" "")
1934 (match_operand:SF 1 "int_2word_operand" ""))]
1937 (high:SF (match_dup 1)))
1939 (lo_sum:SF (match_dup 0)
1943 (define_insn "*movsf_load_has_fprs"
1944 [(set (match_operand:SF 0 "register_operand" "=f,d")
1945 (match_operand:SF 1 "frv_load_operand" "m,m"))]
1947 "* return output_move_single (operands, insn);"
1948 [(set_attr "length" "4")
1949 (set_attr "type" "fload,gload")])
1951 (define_insn "*movsf_internal_has_fprs"
1952 [(set (match_operand:SF 0 "move_destination_operand" "=f,f,m,m,?f,?d,?d,m,?d")
1953 (match_operand:SF 1 "move_source_operand" "f,OG,f,OG,d,f,d,d,F"))]
1955 && (register_operand (operands[0], SFmode) || reg_or_0_operand (operands[1], SFmode))"
1956 "* return output_move_single (operands, insn);"
1957 [(set_attr "length" "4,4,4,4,4,4,4,4,8")
1958 (set_attr "type" "fsconv,movgf,fstore,gstore,movgf,movfg,int,gstore,multi")])
1960 ;; If we don't support the double instructions, prefer gprs over fprs, since it
1961 ;; will all be emulated
1962 (define_insn "*movsf_internal_no_fprs"
1963 [(set (match_operand:SF 0 "move_destination_operand" "=d,d,m,d,d")
1964 (match_operand:SF 1 "move_source_operand" " d,OG,dOG,m,F"))]
1966 && (register_operand (operands[0], SFmode) || reg_or_0_operand (operands[1], SFmode))"
1967 "* return output_move_single (operands, insn);"
1968 [(set_attr "length" "4,4,4,4,8")
1969 (set_attr "type" "int,int,gstore,gload,multi")])
1971 (define_insn "movsf_high"
1972 [(set (match_operand:SF 0 "integer_register_operand" "=d")
1973 (high:SF (match_operand:SF 1 "int_2word_operand" "i")))]
1976 [(set_attr "type" "sethi")
1977 (set_attr "length" "4")])
1979 (define_insn "movsf_lo_sum"
1980 [(set (match_operand:SF 0 "integer_register_operand" "+d")
1981 (lo_sum:SF (match_dup 0)
1982 (match_operand:SF 1 "int_2word_operand" "i")))]
1985 [(set_attr "type" "setlo")
1986 (set_attr "length" "4")])
1988 (define_expand "movdf"
1989 [(set (match_operand:DF 0 "nonimmediate_operand" "")
1990 (match_operand:DF 1 "general_operand" ""))]
1992 "{ frv_emit_move (DFmode, operands[0], operands[1]); DONE; }")
1994 (define_insn "*movdf_double"
1995 [(set (match_operand:DF 0 "move_destination_operand" "=h,?e,??f,??d,R,?R,??m,??m,h,?e,??f,??d,?h,??f,?e,??d,R,m,h,??f,e,??d,e,??d")
1996 (match_operand:DF 1 "move_source_operand" " h,e,f,d,h,e,f,d,R,R,m,m,e,d,h,f,GO,GO,GO,GO,GO,GO,F,F"))]
1998 && (register_operand (operands[0], DFmode)
1999 || reg_or_0_operand (operands[1], DFmode))"
2000 "* return output_move_double (operands, insn);"
2001 [(set_attr "length" "4,8,8,8,4,4,8,8,4,4,8,8,4,8,4,8,4,8,8,8,8,8,16,16")
2002 (set_attr "type" "fdconv,multi,multi,multi,fstore,gstore,fstore,gstore,fload,gload,fload,gload,movgf,movgf,movfg,movfg,gstore,gstore,movgf,movgf,multi,multi,multi,multi")])
2004 ;; If we don't support the double instructions, prefer gprs over fprs, since it
2005 ;; will all be emulated
2006 (define_insn "*movdf_nodouble"
2007 [(set (match_operand:DF 0 "move_destination_operand" "=e,?h,??d,??f,R,?R,??m,??m,e,?h,??d,??f,?e,??d,?h,??f,R,m,e,??d,e,??d,?h,??f")
2008 (match_operand:DF 1 "move_source_operand" " e,h,d,f,e,h,d,f,R,R,m,m,h,f,e,d,GO,GO,GO,GO,nF,nF,GO,GO"))]
2010 && (register_operand (operands[0], DFmode)
2011 || reg_or_0_operand (operands[1], DFmode))"
2012 "* return output_move_double (operands, insn);"
2013 [(set_attr "length" "8,8,8,8,4,4,8,8,4,4,8,8,8,8,8,8,4,8,8,8,16,16,8,8")
2014 (set_attr "type" "multi,multi,multi,multi,gstore,fstore,gstore,fstore,gload,fload,gload,fload,movfg,movfg,movgf,movgf,gstore,gstore,multi,multi,multi,multi,movgf,movgf")])
2017 [(set (match_operand:DF 0 "register_operand" "")
2018 (match_operand:DF 1 "dbl_memory_two_insn_operand" ""))]
2021 "frv_split_double_load (operands[0], operands[1]);")
2024 [(set (match_operand:DF 0 "odd_reg_operand" "")
2025 (match_operand:DF 1 "memory_operand" ""))]
2028 "frv_split_double_load (operands[0], operands[1]);")
2031 [(set (match_operand:DF 0 "dbl_memory_two_insn_operand" "")
2032 (match_operand:DF 1 "reg_or_0_operand" ""))]
2035 "frv_split_double_store (operands[0], operands[1]);")
2038 [(set (match_operand:DF 0 "memory_operand" "")
2039 (match_operand:DF 1 "odd_reg_operand" ""))]
2042 "frv_split_double_store (operands[0], operands[1]);")
2045 [(set (match_operand:DF 0 "register_operand" "")
2046 (match_operand:DF 1 "register_operand" ""))]
2048 && (odd_reg_operand (operands[0], DFmode)
2049 || odd_reg_operand (operands[1], DFmode)
2050 || (integer_register_operand (operands[0], DFmode)
2051 && integer_register_operand (operands[1], DFmode))
2053 && fpr_operand (operands[0], DFmode)
2054 && fpr_operand (operands[1], DFmode)))"
2055 [(set (match_dup 2) (match_dup 4))
2056 (set (match_dup 3) (match_dup 5))]
2059 rtx op0 = operands[0];
2060 rtx op0_low = gen_lowpart (SImode, op0);
2061 rtx op0_high = gen_highpart (SImode, op0);
2062 rtx op1 = operands[1];
2063 rtx op1_low = gen_lowpart (SImode, op1);
2064 rtx op1_high = gen_highpart (SImode, op1);
2066 /* We normally copy the low-numbered register first. However, if the first
2067 register operand 0 is the same as the second register of operand 1, we
2068 must copy in the opposite order. */
2070 if (REGNO (op0_high) == REGNO (op1_low))
2072 operands[2] = op0_low;
2073 operands[3] = op0_high;
2074 operands[4] = op1_low;
2075 operands[5] = op1_high;
2079 operands[2] = op0_high;
2080 operands[3] = op0_low;
2081 operands[4] = op1_high;
2082 operands[5] = op1_low;
2087 [(set (match_operand:DF 0 "register_operand" "")
2088 (match_operand:DF 1 "const_int_operand" ""))]
2090 [(set (match_dup 2) (match_dup 4))
2091 (set (match_dup 3) (match_dup 5))]
2094 rtx op0 = operands[0];
2095 rtx op1 = operands[1];
2097 operands[2] = gen_highpart (SImode, op0);
2098 operands[3] = gen_lowpart (SImode, op0);
2099 if (HOST_BITS_PER_WIDE_INT <= 32)
2101 operands[4] = GEN_INT ((INTVAL (op1) < 0) ? -1 : 0);
2106 operands[4] = GEN_INT (((((unsigned HOST_WIDE_INT)INTVAL (op1) >> 16)
2107 >> 16) ^ ((unsigned HOST_WIDE_INT)1 << 31))
2108 - ((unsigned HOST_WIDE_INT)1 << 31));
2109 operands[5] = GEN_INT (trunc_int_for_mode (INTVAL (op1), SImode));
2114 [(set (match_operand:DF 0 "register_operand" "")
2115 (match_operand:DF 1 "const_double_operand" ""))]
2117 [(set (match_dup 2) (match_dup 4))
2118 (set (match_dup 3) (match_dup 5))]
2121 rtx op0 = operands[0];
2122 rtx op1 = operands[1];
2126 REAL_VALUE_FROM_CONST_DOUBLE (rv, op1);
2127 REAL_VALUE_TO_TARGET_DOUBLE (rv, l);
2129 operands[2] = gen_highpart (SImode, op0);
2130 operands[3] = gen_lowpart (SImode, op0);
2131 operands[4] = GEN_INT (l[0]);
2132 operands[5] = GEN_INT (l[1]);
2135 ;; String/block move insn.
2136 ;; Argument 0 is the destination
2137 ;; Argument 1 is the source
2138 ;; Argument 2 is the length
2139 ;; Argument 3 is the alignment
2141 (define_expand "movmemsi"
2142 [(parallel [(set (match_operand:BLK 0 "" "")
2143 (match_operand:BLK 1 "" ""))
2144 (use (match_operand:SI 2 "" ""))
2145 (use (match_operand:SI 3 "" ""))])]
2149 if (frv_expand_block_move (operands))
2155 ;; String/block set insn.
2156 ;; Argument 0 is the destination
2157 ;; Argument 1 is the length
2158 ;; Argument 2 is the byte value -- ignore any value but zero
2159 ;; Argument 3 is the alignment
2161 (define_expand "setmemsi"
2162 [(parallel [(set (match_operand:BLK 0 "" "")
2163 (match_operand 2 "" ""))
2164 (use (match_operand:SI 1 "" ""))
2165 (use (match_operand:SI 3 "" ""))])]
2169 /* If value to set is not zero, use the library routine. */
2170 if (operands[2] != const0_rtx)
2173 if (frv_expand_block_clear (operands))
2180 ;; The "membar" part of a __builtin_read* or __builtin_write* function.
2181 ;; Operand 0 is a volatile reference to the memory that the function reads
2182 ;; or writes. Operand 1 is the address being accessed, or zero if the
2183 ;; address isn't a known constant. Operand 2 describes the __builtin
2184 ;; function (either FRV_IO_READ or FRV_IO_WRITE).
2185 (define_insn "optional_membar_<mode>"
2186 [(set (match_operand:IMODE 0 "memory_operand" "=m")
2187 (unspec:IMODE [(match_operand 1 "const_int_operand" "")
2188 (match_operand 2 "const_int_operand" "")]
2189 UNSPEC_OPTIONAL_MEMBAR))]
2192 [(set_attr "length" "4")])
2194 ;; ::::::::::::::::::::
2196 ;; :: Reload CC registers
2198 ;; ::::::::::::::::::::
2200 ;; Use as a define_expand so that cse/gcse/combine can't accidentally
2201 ;; create movcc insns.
2203 (define_expand "movcc"
2204 [(parallel [(set (match_operand:CC 0 "move_destination_operand" "")
2205 (match_operand:CC 1 "move_source_operand" ""))
2206 (clobber (match_dup 2))])]
2210 if (! reload_in_progress && ! reload_completed)
2213 operands[2] = gen_rtx_REG (CC_CCRmode, ICR_TEMP);
2216 (define_insn "*internal_movcc"
2217 [(set (match_operand:CC 0 "move_destination_operand" "=t,d,d,m,d")
2218 (match_operand:CC 1 "move_source_operand" "d,d,m,d,t"))
2219 (clobber (match_scratch:CC_CCR 2 "=X,X,X,X,&v"))]
2220 "reload_in_progress || reload_completed"
2227 [(set_attr "length" "4,4,4,4,20")
2228 (set_attr "type" "int,int,gload,gstore,multi")])
2230 ;; To move an ICC value to a GPR for a signed comparison, we create a value
2231 ;; that when compared to 0, sets the N and Z flags appropriately (we don't care
2232 ;; about the V and C flags, since these comparisons are signed).
2235 [(set (match_operand:CC 0 "integer_register_operand" "")
2236 (match_operand:CC 1 "icc_operand" ""))
2237 (clobber (match_operand:CC_CCR 2 "icr_operand" ""))]
2238 "reload_in_progress || reload_completed"
2242 rtx dest = simplify_gen_subreg (SImode, operands[0], CCmode, 0);
2243 rtx icc = operands[1];
2244 rtx icr = operands[2];
2248 emit_insn (gen_rtx_SET (VOIDmode, icr,
2249 gen_rtx_LT (CC_CCRmode, icc, const0_rtx)));
2251 emit_insn (gen_movsi (dest, const1_rtx));
2253 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
2254 gen_rtx_NE (CC_CCRmode, icr, const0_rtx),
2255 gen_rtx_SET (VOIDmode, dest,
2256 gen_rtx_NEG (SImode, dest))));
2258 emit_insn (gen_rtx_SET (VOIDmode, icr,
2259 gen_rtx_EQ (CC_CCRmode, icc, const0_rtx)));
2261 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
2262 gen_rtx_NE (CC_CCRmode, icr, const0_rtx),
2263 gen_rtx_SET (VOIDmode, dest, const0_rtx)));
2265 operands[3] = get_insns ();
2269 ;; Reload CC_UNSmode for unsigned integer comparisons
2270 ;; Use define_expand so that cse/gcse/combine can't create movcc_uns insns
2272 (define_expand "movcc_uns"
2273 [(parallel [(set (match_operand:CC_UNS 0 "move_destination_operand" "")
2274 (match_operand:CC_UNS 1 "move_source_operand" ""))
2275 (clobber (match_dup 2))])]
2279 if (! reload_in_progress && ! reload_completed)
2281 operands[2] = gen_rtx_REG (CC_CCRmode, ICR_TEMP);
2284 (define_insn "*internal_movcc_uns"
2285 [(set (match_operand:CC_UNS 0 "move_destination_operand" "=t,d,d,m,d")
2286 (match_operand:CC_UNS 1 "move_source_operand" "d,d,m,d,t"))
2287 (clobber (match_scratch:CC_CCR 2 "=X,X,X,X,&v"))]
2288 "reload_in_progress || reload_completed"
2295 [(set_attr "length" "4,4,4,4,20")
2296 (set_attr "type" "int,int,gload,gstore,multi")])
2298 ;; To move an ICC value to a GPR for an unsigned comparison, we create a value
2299 ;; that when compared to 1, sets the Z, V, and C flags appropriately (we don't
2300 ;; care about the N flag, since these comparisons are unsigned).
2303 [(set (match_operand:CC_UNS 0 "integer_register_operand" "")
2304 (match_operand:CC_UNS 1 "icc_operand" ""))
2305 (clobber (match_operand:CC_CCR 2 "icr_operand" ""))]
2306 "reload_in_progress || reload_completed"
2310 rtx dest = simplify_gen_subreg (SImode, operands[0], CC_UNSmode, 0);
2311 rtx icc = operands[1];
2312 rtx icr = operands[2];
2316 emit_insn (gen_rtx_SET (VOIDmode, icr,
2317 gen_rtx_GTU (CC_CCRmode, icc, const0_rtx)));
2319 emit_insn (gen_movsi (dest, const1_rtx));
2321 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
2322 gen_rtx_NE (CC_CCRmode, icr, const0_rtx),
2323 gen_addsi3 (dest, dest, dest)));
2325 emit_insn (gen_rtx_SET (VOIDmode, icr,
2326 gen_rtx_LTU (CC_CCRmode, icc, const0_rtx)));
2328 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
2329 gen_rtx_NE (CC_CCRmode, icr, const0_rtx),
2330 gen_rtx_SET (VOIDmode, dest, const0_rtx)));
2332 operands[3] = get_insns ();
2336 ;; Reload CC_NZmode. This is mostly the same as the CCmode and CC_UNSmode
2337 ;; handling, but it uses different sequences for moving between GPRs and ICCs.
2339 (define_expand "movcc_nz"
2340 [(parallel [(set (match_operand:CC_NZ 0 "move_destination_operand" "")
2341 (match_operand:CC_NZ 1 "move_source_operand" ""))
2342 (clobber (match_dup 2))])]
2346 if (!reload_in_progress && !reload_completed)
2348 operands[2] = gen_rtx_REG (CC_CCRmode, ICR_TEMP);
2351 (define_insn "*internal_movcc_nz"
2352 [(set (match_operand:CC_NZ 0 "move_destination_operand" "=t,d,d,m,d")
2353 (match_operand:CC_NZ 1 "move_source_operand" "d,d,m,d,t"))
2354 (clobber (match_scratch:CC_CCR 2 "=X,X,X,X,&v"))]
2355 "reload_in_progress || reload_completed"
2362 [(set_attr "length" "4,4,4,4,20")
2363 (set_attr "type" "int,int,gload,gstore,multi")])
2365 ;; Set the destination to a value that, when compared with zero, will
2366 ;; restore the value of the Z and N flags. The values of the other
2367 ;; flags don't matter. The sequence is:
2371 ;; csub gr0,op0,op0,op2
2375 [(set (match_operand:CC_NZ 0 "integer_register_operand" "")
2376 (match_operand:CC_NZ 1 "icc_operand" ""))
2377 (clobber (match_operand:CC_CCR 2 "icr_operand" ""))]
2378 "reload_in_progress || reload_completed"
2382 (ge:CC_CCR (match_dup 1)
2384 (cond_exec (ne:CC_CCR (match_dup 2)
2387 (neg:SI (match_dup 3))))
2389 (eq:CC_CCR (match_dup 1)
2391 (cond_exec (ne:CC_CCR (match_dup 2)
2393 (set (match_dup 3) (const_int 0)))]
2394 "operands[3] = simplify_gen_subreg (SImode, operands[0], CC_NZmode, 0);")
2396 ;; Reload CC_FPmode for floating point comparisons
2397 ;; We use a define_expand here so that cse/gcse/combine can't accidentally
2398 ;; create movcc insns. If this was a named define_insn, we would not be able
2399 ;; to make it conditional on reload.
2401 (define_expand "movcc_fp"
2402 [(set (match_operand:CC_FP 0 "movcc_fp_destination_operand" "")
2403 (match_operand:CC_FP 1 "move_source_operand" ""))]
2407 if (! reload_in_progress && ! reload_completed)
2411 (define_insn "*movcc_fp_internal"
2412 [(set (match_operand:CC_FP 0 "movcc_fp_destination_operand" "=d,d,d,m")
2413 (match_operand:CC_FP 1 "move_source_operand" "u,d,m,d"))]
2414 "TARGET_HAS_FPRS && (reload_in_progress || reload_completed)"
2420 [(set_attr "length" "12,4,4,4")
2421 (set_attr "type" "multi,int,gload,gstore")])
2424 (define_expand "reload_incc_fp"
2425 [(match_operand:CC_FP 0 "fcc_operand" "=u")
2426 (match_operand:CC_FP 1 "gpr_or_memory_operand_with_scratch" "m")
2427 (match_operand:TI 2 "integer_register_operand" "=&d")]
2431 rtx cc_op2 = simplify_gen_subreg (CC_FPmode, operands[2], TImode, 0);
2432 rtx int_op2 = simplify_gen_subreg (SImode, operands[2], TImode, 0);
2433 rtx temp1 = simplify_gen_subreg (SImode, operands[2], TImode, 4);
2434 rtx temp2 = simplify_gen_subreg (SImode, operands[2], TImode, 8);
2435 int shift = CC_SHIFT_RIGHT (REGNO (operands[0]));
2438 if (!gpr_or_memory_operand (operands[1], CC_FPmode))
2441 rtx temp3 = simplify_gen_subreg (SImode, operands[2], TImode, 12);
2443 gcc_assert (GET_CODE (operands[1]) == MEM);
2445 addr = XEXP (operands[1], 0);
2447 gcc_assert (GET_CODE (addr) == PLUS);
2449 emit_move_insn (temp3, XEXP (addr, 1));
2451 operands[1] = replace_equiv_address (operands[1],
2452 gen_rtx_PLUS (GET_MODE (addr),
2457 emit_insn (gen_movcc_fp (cc_op2, operands[1]));
2459 emit_insn (gen_ashlsi3 (int_op2, int_op2, GEN_INT (shift)));
2461 mask = ~ ((HOST_WIDE_INT)CC_MASK << shift);
2462 emit_insn (gen_movsi (temp1, GEN_INT (mask)));
2463 emit_insn (gen_update_fcc (operands[0], int_op2, temp1, temp2));
2467 (define_expand "reload_outcc_fp"
2468 [(set (match_operand:CC_FP 2 "integer_register_operand" "=&d")
2469 (match_operand:CC_FP 1 "fcc_operand" "u"))
2470 (set (match_operand:CC_FP 0 "memory_operand" "=m")
2475 ;; Convert a FCC value to gpr
2476 (define_insn "read_fcc"
2477 [(set (match_operand:SI 0 "integer_register_operand" "=d")
2478 (unspec:SI [(match_operand:CC_FP 1 "fcc_operand" "u")]
2482 [(set_attr "type" "spr")
2483 (set_attr "length" "4")])
2486 [(set (match_operand:CC_FP 0 "integer_register_operand" "")
2487 (match_operand:CC_FP 1 "fcc_operand" ""))]
2488 "reload_completed && TARGET_HAS_FPRS"
2492 rtx int_op0 = simplify_gen_subreg (SImode, operands[0], CC_FPmode, 0);
2493 int shift = CC_SHIFT_RIGHT (REGNO (operands[1]));
2497 emit_insn (gen_read_fcc (int_op0, operands[1]));
2499 emit_insn (gen_lshrsi3 (int_op0, int_op0, GEN_INT (shift)));
2501 emit_insn (gen_andsi3 (int_op0, int_op0, GEN_INT (CC_MASK)));
2503 operands[2] = get_insns ();
2507 ;; Move a gpr value to FCC.
2509 ;; Operand1 = reloaded value shifted appropriately
2510 ;; Operand2 = mask to eliminate current register
2511 ;; Operand3 = temporary to load/store ccr
2512 (define_insn "update_fcc"
2513 [(set (match_operand:CC_FP 0 "fcc_operand" "=u")
2514 (unspec:CC_FP [(match_operand:SI 1 "integer_register_operand" "d")
2515 (match_operand:SI 2 "integer_register_operand" "d")]
2517 (clobber (match_operand:SI 3 "integer_register_operand" "=&d"))]
2519 "movsg ccr, %3\;and %2, %3, %3\;or %1, %3, %3\;movgs %3, ccr"
2520 [(set_attr "type" "multi")
2521 (set_attr "length" "16")])
2523 ;; Reload CC_CCRmode for conditional execution registers
2524 (define_insn "movcc_ccr"
2525 [(set (match_operand:CC_CCR 0 "move_destination_operand" "=d,d,d,m,v,?w,C,d")
2526 (match_operand:CC_CCR 1 "move_source_operand" "C,d,m,d,n,n,C,L"))]
2537 [(set_attr "length" "8,4,4,4,8,12,4,4")
2538 (set_attr "type" "multi,int,gload,gstore,multi,multi,ccr,int")])
2540 (define_expand "reload_incc_ccr"
2541 [(match_operand:CC_CCR 0 "cr_operand" "=C")
2542 (match_operand:CC_CCR 1 "memory_operand" "m")
2543 (match_operand:CC_CCR 2 "integer_register_operand" "=&d")]
2547 rtx icc = gen_rtx_REG (CCmode, ICC_TEMP);
2548 rtx int_op2 = simplify_gen_subreg (SImode, operands[2], CC_CCRmode, 0);
2549 rtx icr = (ICR_P (REGNO (operands[0]))
2550 ? operands[0] : gen_rtx_REG (CC_CCRmode, ICR_TEMP));
2552 emit_insn (gen_movcc_ccr (operands[2], operands[1]));
2553 emit_insn (gen_cmpsi_cc (icc, int_op2, const0_rtx));
2554 emit_insn (gen_movcc_ccr (icr, gen_rtx_NE (CC_CCRmode, icc, const0_rtx)));
2556 if (! ICR_P (REGNO (operands[0])))
2557 emit_insn (gen_movcc_ccr (operands[0], icr));
2562 (define_expand "reload_outcc_ccr"
2563 [(set (match_operand:CC_CCR 2 "integer_register_operand" "=&d")
2564 (match_operand:CC_CCR 1 "cr_operand" "C"))
2565 (set (match_operand:CC_CCR 0 "memory_operand" "=m")
2571 [(set (match_operand:CC_CCR 0 "integer_register_operand" "")
2572 (match_operand:CC_CCR 1 "cr_operand" ""))]
2577 rtx int_op0 = simplify_gen_subreg (SImode, operands[0], CC_CCRmode, 0);
2580 emit_move_insn (operands[0], const1_rtx);
2581 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
2582 gen_rtx_EQ (CC_CCRmode,
2585 gen_rtx_SET (VOIDmode, int_op0,
2588 operands[2] = get_insns ();
2593 [(set (match_operand:CC_CCR 0 "cr_operand" "")
2594 (match_operand:CC_CCR 1 "const_int_operand" ""))]
2599 rtx icc = gen_rtx_REG (CCmode, ICC_TEMP);
2600 rtx r0 = gen_rtx_REG (SImode, GPR_FIRST);
2601 rtx icr = (ICR_P (REGNO (operands[0]))
2602 ? operands[0] : gen_rtx_REG (CC_CCRmode, ICR_TEMP));
2606 emit_insn (gen_cmpsi_cc (icc, r0, const0_rtx));
2608 emit_insn (gen_movcc_ccr (icr,
2609 gen_rtx_fmt_ee (((INTVAL (operands[1]) == 0)
2610 ? EQ : NE), CC_CCRmode,
2613 if (! ICR_P (REGNO (operands[0])))
2614 emit_insn (gen_movcc_ccr (operands[0], icr));
2616 operands[2] = get_insns ();
2621 ;; ::::::::::::::::::::
2625 ;; ::::::::::::::::::::
2627 ;; Signed conversions from a smaller integer to a larger integer
2629 ;; These operations are optional. If they are not
2630 ;; present GCC will synthesize them for itself
2631 ;; Even though frv does not provide these instructions, we define them
2632 ;; to allow load + sign extend to be collapsed together
2633 (define_insn "extendqihi2"
2634 [(set (match_operand:HI 0 "integer_register_operand" "=d,d")
2635 (sign_extend:HI (match_operand:QI 1 "gpr_or_memory_operand" "d,m")))]
2640 [(set_attr "length" "8,4")
2641 (set_attr "type" "multi,gload")])
2644 [(set (match_operand:HI 0 "integer_register_operand" "")
2645 (sign_extend:HI (match_operand:QI 1 "integer_register_operand" "")))]
2651 rtx op0 = gen_lowpart (SImode, operands[0]);
2652 rtx op1 = gen_lowpart (SImode, operands[1]);
2653 rtx shift = GEN_INT (24);
2655 operands[2] = gen_ashlsi3 (op0, op1, shift);
2656 operands[3] = gen_ashrsi3 (op0, op0, shift);
2659 (define_insn "extendqisi2"
2660 [(set (match_operand:SI 0 "integer_register_operand" "=d,d")
2661 (sign_extend:SI (match_operand:QI 1 "gpr_or_memory_operand" "d,m")))]
2666 [(set_attr "length" "8,4")
2667 (set_attr "type" "multi,gload")])
2670 [(set (match_operand:SI 0 "integer_register_operand" "")
2671 (sign_extend:SI (match_operand:QI 1 "integer_register_operand" "")))]
2677 rtx op0 = gen_lowpart (SImode, operands[0]);
2678 rtx op1 = gen_lowpart (SImode, operands[1]);
2679 rtx shift = GEN_INT (24);
2681 operands[2] = gen_ashlsi3 (op0, op1, shift);
2682 operands[3] = gen_ashrsi3 (op0, op0, shift);
2685 ;;(define_insn "extendqidi2"
2686 ;; [(set (match_operand:DI 0 "register_operand" "=r")
2687 ;; (sign_extend:DI (match_operand:QI 1 "general_operand" "g")))]
2689 ;; "extendqihi2 %0,%1"
2690 ;; [(set_attr "length" "4")])
2692 (define_insn "extendhisi2"
2693 [(set (match_operand:SI 0 "integer_register_operand" "=d,d")
2694 (sign_extend:SI (match_operand:HI 1 "gpr_or_memory_operand" "d,m")))]
2699 [(set_attr "length" "8,4")
2700 (set_attr "type" "multi,gload")])
2703 [(set (match_operand:SI 0 "integer_register_operand" "")
2704 (sign_extend:SI (match_operand:HI 1 "integer_register_operand" "")))]
2710 rtx op0 = gen_lowpart (SImode, operands[0]);
2711 rtx op1 = gen_lowpart (SImode, operands[1]);
2712 rtx shift = GEN_INT (16);
2714 operands[2] = gen_ashlsi3 (op0, op1, shift);
2715 operands[3] = gen_ashrsi3 (op0, op0, shift);
2718 ;;(define_insn "extendhidi2"
2719 ;; [(set (match_operand:DI 0 "register_operand" "=r")
2720 ;; (sign_extend:DI (match_operand:HI 1 "general_operand" "g")))]
2722 ;; "extendhihi2 %0,%1"
2723 ;; [(set_attr "length" "4")])
2725 ;;(define_insn "extendsidi2"
2726 ;; [(set (match_operand:DI 0 "register_operand" "=r")
2727 ;; (sign_extend:DI (match_operand:SI 1 "general_operand" "g")))]
2729 ;; "extendsidi2 %0,%1"
2730 ;; [(set_attr "length" "4")])
2732 ;; Unsigned conversions from a smaller integer to a larger integer
2733 (define_insn "zero_extendqihi2"
2734 [(set (match_operand:HI 0 "integer_register_operand" "=d,d,d")
2736 (match_operand:QI 1 "gpr_or_memory_operand" "d,L,m")))]
2742 [(set_attr "length" "4")
2743 (set_attr "type" "int,int,gload")])
2745 (define_insn "zero_extendqisi2"
2746 [(set (match_operand:SI 0 "integer_register_operand" "=d,d,d")
2748 (match_operand:QI 1 "gpr_or_memory_operand" "d,L,m")))]
2754 [(set_attr "length" "4")
2755 (set_attr "type" "int,int,gload")])
2757 ;;(define_insn "zero_extendqidi2"
2758 ;; [(set (match_operand:DI 0 "register_operand" "=r")
2759 ;; (zero_extend:DI (match_operand:QI 1 "general_operand" "g")))]
2761 ;; "zero_extendqihi2 %0,%1"
2762 ;; [(set_attr "length" "4")])
2764 ;; Do not set the type for the sethi to "sethi", since the scheduler will think
2765 ;; the sethi takes 0 cycles as part of allowing sethi/setlo to be in the same
2766 ;; VLIW instruction.
2767 (define_insn "zero_extendhisi2"
2768 [(set (match_operand:SI 0 "integer_register_operand" "=d,d")
2769 (zero_extend:SI (match_operand:HI 1 "gpr_or_memory_operand" "0,m")))]
2774 [(set_attr "length" "4")
2775 (set_attr "type" "int,gload")])
2777 ;;(define_insn "zero_extendhidi2"
2778 ;; [(set (match_operand:DI 0 "register_operand" "=r")
2779 ;; (zero_extend:DI (match_operand:HI 1 "general_operand" "g")))]
2781 ;; "zero_extendhihi2 %0,%1"
2782 ;; [(set_attr "length" "4")])
2784 ;;(define_insn "zero_extendsidi2"
2785 ;; [(set (match_operand:DI 0 "register_operand" "=r")
2786 ;; (zero_extend:DI (match_operand:SI 1 "general_operand" "g")))]
2788 ;; "zero_extendsidi2 %0,%1"
2789 ;; [(set_attr "length" "4")])
2791 ;;;; Convert between floating point types of different sizes.
2793 ;;(define_insn "extendsfdf2"
2794 ;; [(set (match_operand:DF 0 "register_operand" "=r")
2795 ;; (float_extend:DF (match_operand:SF 1 "register_operand" "r")))]
2797 ;; "extendsfdf2 %0,%1"
2798 ;; [(set_attr "length" "4")])
2800 ;;(define_insn "truncdfsf2"
2801 ;; [(set (match_operand:SF 0 "register_operand" "=r")
2802 ;; (float_truncate:SF (match_operand:DF 1 "register_operand" "r")))]
2804 ;; "truncdfsf2 %0,%1"
2805 ;; [(set_attr "length" "4")])
2807 ;;;; Convert between signed integer types and floating point.
2808 (define_insn "floatsisf2"
2809 [(set (match_operand:SF 0 "fpr_operand" "=f")
2810 (float:SF (match_operand:SI 1 "fpr_operand" "f")))]
2813 [(set_attr "length" "4")
2814 (set_attr "type" "fsconv")])
2816 (define_insn "floatsidf2"
2817 [(set (match_operand:DF 0 "fpr_operand" "=h")
2818 (float:DF (match_operand:SI 1 "fpr_operand" "f")))]
2819 "TARGET_HARD_FLOAT && TARGET_DOUBLE"
2821 [(set_attr "length" "4")
2822 (set_attr "type" "fdconv")])
2824 ;;(define_insn "floatdisf2"
2825 ;; [(set (match_operand:SF 0 "register_operand" "=r")
2826 ;; (float:SF (match_operand:DI 1 "register_operand" "r")))]
2828 ;; "floatdisf2 %0,%1"
2829 ;; [(set_attr "length" "4")])
2831 ;;(define_insn "floatdidf2"
2832 ;; [(set (match_operand:DF 0 "register_operand" "=r")
2833 ;; (float:DF (match_operand:DI 1 "register_operand" "r")))]
2835 ;; "floatdidf2 %0,%1"
2836 ;; [(set_attr "length" "4")])
2838 (define_insn "fix_truncsfsi2"
2839 [(set (match_operand:SI 0 "fpr_operand" "=f")
2840 (fix:SI (match_operand:SF 1 "fpr_operand" "f")))]
2843 [(set_attr "length" "4")
2844 (set_attr "type" "fsconv")])
2846 (define_insn "fix_truncdfsi2"
2847 [(set (match_operand:SI 0 "fpr_operand" "=f")
2848 (fix:SI (match_operand:DF 1 "fpr_operand" "h")))]
2849 "TARGET_HARD_FLOAT && TARGET_DOUBLE"
2851 [(set_attr "length" "4")
2852 (set_attr "type" "fdconv")])
2854 ;;(define_insn "fix_truncsfdi2"
2855 ;; [(set (match_operand:DI 0 "register_operand" "=r")
2856 ;; (fix:DI (match_operand:SF 1 "register_operand" "r")))]
2858 ;; "fix_truncsfdi2 %0,%1"
2859 ;; [(set_attr "length" "4")])
2861 ;;(define_insn "fix_truncdfdi2"
2862 ;; [(set (match_operand:DI 0 "register_operand" "=r")
2863 ;; (fix:DI (match_operand:DF 1 "register_operand" "r")))]
2865 ;; "fix_truncdfdi2 %0,%1"
2866 ;; [(set_attr "length" "4")])
2868 ;;;; Convert between unsigned integer types and floating point.
2870 ;;(define_insn "floatunssisf2"
2871 ;; [(set (match_operand:SF 0 "register_operand" "=r")
2872 ;; (unsigned_float:SF (match_operand:SI 1 "register_operand" "r")))]
2874 ;; "floatunssisf2 %0,%1"
2875 ;; [(set_attr "length" "4")])
2877 ;;(define_insn "floatunssidf2"
2878 ;; [(set (match_operand:DF 0 "register_operand" "=r")
2879 ;; (unsigned_float:DF (match_operand:SI 1 "register_operand" "r")))]
2881 ;; "floatunssidf2 %0,%1"
2882 ;; [(set_attr "length" "4")])
2884 ;;(define_insn "floatunsdisf2"
2885 ;; [(set (match_operand:SF 0 "register_operand" "=r")
2886 ;; (unsigned_float:SF (match_operand:DI 1 "register_operand" "r")))]
2888 ;; "floatunsdisf2 %0,%1"
2889 ;; [(set_attr "length" "4")])
2891 ;;(define_insn "floatunsdidf2"
2892 ;; [(set (match_operand:DF 0 "register_operand" "=r")
2893 ;; (unsigned_float:DF (match_operand:DI 1 "register_operand" "r")))]
2895 ;; "floatunsdidf2 %0,%1"
2896 ;; [(set_attr "length" "4")])
2898 ;;(define_insn "fixuns_truncsfsi2"
2899 ;; [(set (match_operand:SI 0 "register_operand" "=r")
2900 ;; (unsigned_fix:SI (match_operand:SF 1 "register_operand" "r")))]
2902 ;; "fixuns_truncsfsi2 %0,%1"
2903 ;; [(set_attr "length" "4")])
2905 ;;(define_insn "fixuns_truncdfsi2"
2906 ;; [(set (match_operand:SI 0 "register_operand" "=r")
2907 ;; (unsigned_fix:SI (match_operand:DF 1 "register_operand" "r")))]
2909 ;; "fixuns_truncdfsi2 %0,%1"
2910 ;; [(set_attr "length" "4")])
2912 ;;(define_insn "fixuns_truncsfdi2"
2913 ;; [(set (match_operand:DI 0 "register_operand" "=r")
2914 ;; (unsigned_fix:DI (match_operand:SF 1 "register_operand" "r")))]
2916 ;; "fixuns_truncsfdi2 %0,%1"
2917 ;; [(set_attr "length" "4")])
2919 ;;(define_insn "fixuns_truncdfdi2"
2920 ;; [(set (match_operand:DI 0 "register_operand" "=r")
2921 ;; (unsigned_fix:DI (match_operand:DF 1 "register_operand" "r")))]
2923 ;; "fixuns_truncdfdi2 %0,%1"
2924 ;; [(set_attr "length" "4")])
2927 ;; ::::::::::::::::::::
2929 ;; :: 32-bit Integer arithmetic
2931 ;; ::::::::::::::::::::
2934 (define_insn "addsi3"
2935 [(set (match_operand:SI 0 "integer_register_operand" "=d")
2936 (plus:SI (match_operand:SI 1 "integer_register_operand" "%d")
2937 (match_operand:SI 2 "gpr_or_int12_operand" "dNOPQ")))]
2940 [(set_attr "length" "4")
2941 (set_attr "type" "int")])
2943 ;; Subtraction. No need to worry about constants, since the compiler
2944 ;; canonicalizes them into addsi3's. We prevent SUBREG's here to work around a
2945 ;; combine bug, that combines the 32x32->upper 32 bit multiply that uses a
2946 ;; SUBREG with a minus that shows up in modulus by constants.
2947 (define_insn "subsi3"
2948 [(set (match_operand:SI 0 "integer_register_operand" "=d")
2949 (minus:SI (match_operand:SI 1 "gpr_no_subreg_operand" "d")
2950 (match_operand:SI 2 "gpr_no_subreg_operand" "d")))]
2953 [(set_attr "length" "4")
2954 (set_attr "type" "int")])
2956 ;; Signed multiplication producing 64-bit results from 32-bit inputs
2957 ;; Note, frv doesn't have a 32x32->32 bit multiply, but the compiler
2958 ;; will do the 32x32->64 bit multiply and use the bottom word.
2959 (define_expand "mulsidi3"
2960 [(set (match_operand:DI 0 "integer_register_operand" "")
2961 (mult:DI (sign_extend:DI (match_operand:SI 1 "integer_register_operand" ""))
2962 (sign_extend:DI (match_operand:SI 2 "gpr_or_int12_operand" ""))))]
2966 if (GET_CODE (operands[2]) == CONST_INT)
2968 emit_insn (gen_mulsidi3_const (operands[0], operands[1], operands[2]));
2973 (define_insn "*mulsidi3_reg"
2974 [(set (match_operand:DI 0 "even_gpr_operand" "=e")
2975 (mult:DI (sign_extend:DI (match_operand:SI 1 "integer_register_operand" "%d"))
2976 (sign_extend:DI (match_operand:SI 2 "integer_register_operand" "d"))))]
2979 [(set_attr "length" "4")
2980 (set_attr "type" "mul")])
2982 (define_insn "mulsidi3_const"
2983 [(set (match_operand:DI 0 "even_gpr_operand" "=e")
2984 (mult:DI (sign_extend:DI (match_operand:SI 1 "integer_register_operand" "d"))
2985 (match_operand:SI 2 "int12_operand" "NOP")))]
2988 [(set_attr "length" "4")
2989 (set_attr "type" "mul")])
2991 ;; Unsigned multiplication producing 64-bit results from 32-bit inputs
2992 (define_expand "umulsidi3"
2993 [(set (match_operand:DI 0 "even_gpr_operand" "")
2994 (mult:DI (zero_extend:DI (match_operand:SI 1 "integer_register_operand" ""))
2995 (zero_extend:DI (match_operand:SI 2 "gpr_or_int12_operand" ""))))]
2999 if (GET_CODE (operands[2]) == CONST_INT)
3001 emit_insn (gen_umulsidi3_const (operands[0], operands[1], operands[2]));
3006 (define_insn "*mulsidi3_reg"
3007 [(set (match_operand:DI 0 "even_gpr_operand" "=e")
3008 (mult:DI (zero_extend:DI (match_operand:SI 1 "integer_register_operand" "%d"))
3009 (zero_extend:DI (match_operand:SI 2 "integer_register_operand" "d"))))]
3012 [(set_attr "length" "4")
3013 (set_attr "type" "mul")])
3015 (define_insn "umulsidi3_const"
3016 [(set (match_operand:DI 0 "even_gpr_operand" "=e")
3017 (mult:DI (zero_extend:DI (match_operand:SI 1 "integer_register_operand" "d"))
3018 (match_operand:SI 2 "int12_operand" "NOP")))]
3021 [(set_attr "length" "4")
3022 (set_attr "type" "mul")])
3025 (define_insn "divsi3"
3026 [(set (match_operand:SI 0 "register_operand" "=d,d")
3027 (div:SI (match_operand:SI 1 "register_operand" "d,d")
3028 (match_operand:SI 2 "gpr_or_int12_operand" "d,NOP")))]
3031 [(set_attr "length" "4")
3032 (set_attr "type" "div")])
3034 ;; Unsigned Division
3035 (define_insn "udivsi3"
3036 [(set (match_operand:SI 0 "register_operand" "=d,d")
3037 (udiv:SI (match_operand:SI 1 "register_operand" "d,d")
3038 (match_operand:SI 2 "gpr_or_int12_operand" "d,NOP")))]
3041 [(set_attr "length" "4")
3042 (set_attr "type" "div")])
3045 (define_insn "negsi2"
3046 [(set (match_operand:SI 0 "integer_register_operand" "=d")
3047 (neg:SI (match_operand:SI 1 "integer_register_operand" "d")))]
3050 [(set_attr "length" "4")
3051 (set_attr "type" "int")])
3053 ;; Find first one bit
3054 ;; (define_insn "ffssi2"
3055 ;; [(set (match_operand:SI 0 "register_operand" "=r")
3056 ;; (ffs:SI (match_operand:SI 1 "register_operand" "r")))]
3059 ;; [(set_attr "length" "4")])
3062 ;; ::::::::::::::::::::
3064 ;; :: 64-bit Integer arithmetic
3066 ;; ::::::::::::::::::::
3069 (define_insn_and_split "adddi3"
3070 [(set (match_operand:DI 0 "integer_register_operand" "=&e,e")
3071 (plus:DI (match_operand:DI 1 "integer_register_operand" "%e,0")
3072 (match_operand:DI 2 "gpr_or_int10_operand" "eJ,eJ")))
3073 (clobber (match_scratch:CC 3 "=t,t"))]
3084 for (op = 0; op < 3; op++)
3085 for (part = 0; part < 2; part++)
3086 parts[op][part] = simplify_gen_subreg (SImode, operands[op],
3087 DImode, part * UNITS_PER_WORD);
3089 operands[4] = gen_adddi3_lower (parts[0][1], parts[1][1], parts[2][1],
3091 operands[5] = gen_adddi3_upper (parts[0][0], parts[1][0], parts[2][0],
3092 copy_rtx (operands[3]));
3094 [(set_attr "length" "8")
3095 (set_attr "type" "multi")])
3097 ;; Subtraction No need to worry about constants, since the compiler
3098 ;; canonicalizes them into adddi3's.
3099 (define_insn_and_split "subdi3"
3100 [(set (match_operand:DI 0 "integer_register_operand" "=&e,e,e")
3101 (minus:DI (match_operand:DI 1 "integer_register_operand" "e,0,e")
3102 (match_operand:DI 2 "integer_register_operand" "e,e,0")))
3103 (clobber (match_scratch:CC 3 "=t,t,t"))]
3111 rtx op0_high = gen_highpart (SImode, operands[0]);
3112 rtx op1_high = gen_highpart (SImode, operands[1]);
3113 rtx op2_high = gen_highpart (SImode, operands[2]);
3114 rtx op0_low = gen_lowpart (SImode, operands[0]);
3115 rtx op1_low = gen_lowpart (SImode, operands[1]);
3116 rtx op2_low = gen_lowpart (SImode, operands[2]);
3117 rtx op3 = operands[3];
3119 operands[4] = gen_subdi3_lower (op0_low, op1_low, op2_low, op3);
3120 operands[5] = gen_subdi3_upper (op0_high, op1_high, op2_high, op3);
3122 [(set_attr "length" "8")
3123 (set_attr "type" "multi")])
3125 ;; Patterns for addsi3/subdi3 after splitting
3126 (define_insn "adddi3_lower"
3127 [(set (match_operand:SI 0 "integer_register_operand" "=d")
3128 (plus:SI (match_operand:SI 1 "integer_register_operand" "d")
3129 (match_operand:SI 2 "gpr_or_int10_operand" "dJ")))
3130 (set (match_operand:CC 3 "icc_operand" "=t")
3131 (compare:CC (plus:SI (match_dup 1)
3135 "add%I2cc %1,%2,%0,%3"
3136 [(set_attr "length" "4")
3137 (set_attr "type" "int")])
3139 (define_insn "adddi3_upper"
3140 [(set (match_operand:SI 0 "integer_register_operand" "=d")
3141 (plus:SI (match_operand:SI 1 "integer_register_operand" "d")
3142 (plus:SI (match_operand:SI 2 "gpr_or_int10_operand" "dJ")
3143 (match_operand:CC 3 "icc_operand" "t"))))]
3145 "addx%I2 %1,%2,%0,%3"
3146 [(set_attr "length" "4")
3147 (set_attr "type" "int")])
3149 (define_insn "subdi3_lower"
3150 [(set (match_operand:SI 0 "integer_register_operand" "=d")
3151 (minus:SI (match_operand:SI 1 "integer_register_operand" "d")
3152 (match_operand:SI 2 "integer_register_operand" "d")))
3153 (set (match_operand:CC 3 "icc_operand" "=t")
3154 (compare:CC (plus:SI (match_dup 1)
3159 [(set_attr "length" "4")
3160 (set_attr "type" "int")])
3162 (define_insn "subdi3_upper"
3163 [(set (match_operand:SI 0 "integer_register_operand" "=d")
3164 (minus:SI (match_operand:SI 1 "integer_register_operand" "d")
3165 (minus:SI (match_operand:SI 2 "integer_register_operand" "d")
3166 (match_operand:CC 3 "icc_operand" "t"))))]
3169 [(set_attr "length" "4")
3170 (set_attr "type" "int")])
3172 (define_insn_and_split "negdi2"
3173 [(set (match_operand:DI 0 "integer_register_operand" "=&e,e")
3174 (neg:DI (match_operand:DI 1 "integer_register_operand" "e,0")))
3175 (clobber (match_scratch:CC 2 "=t,t"))]
3183 rtx op0_high = gen_highpart (SImode, operands[0]);
3184 rtx op1_high = gen_rtx_REG (SImode, GPR_FIRST);
3185 rtx op2_high = gen_highpart (SImode, operands[1]);
3186 rtx op0_low = gen_lowpart (SImode, operands[0]);
3187 rtx op1_low = op1_high;
3188 rtx op2_low = gen_lowpart (SImode, operands[1]);
3189 rtx op3 = operands[2];
3191 operands[3] = gen_subdi3_lower (op0_low, op1_low, op2_low, op3);
3192 operands[4] = gen_subdi3_upper (op0_high, op1_high, op2_high, op3);
3194 [(set_attr "length" "8")
3195 (set_attr "type" "multi")])
3197 ;; Multiplication (same size)
3198 ;; (define_insn "muldi3"
3199 ;; [(set (match_operand:DI 0 "register_operand" "=r")
3200 ;; (mult:DI (match_operand:DI 1 "register_operand" "%r")
3201 ;; (match_operand:DI 2 "nonmemory_operand" "ri")))]
3203 ;; "muldi3 %0,%1,%2"
3204 ;; [(set_attr "length" "4")])
3207 ;; (define_insn "divdi3"
3208 ;; [(set (match_operand:DI 0 "register_operand" "=r")
3209 ;; (div:DI (match_operand:DI 1 "register_operand" "r")
3210 ;; (match_operand:DI 2 "nonmemory_operand" "ri")))]
3212 ;; "divdi3 %0,%1,%2"
3213 ;; [(set_attr "length" "4")])
3215 ;; Undsgned Division
3216 ;; (define_insn "udivdi3"
3217 ;; [(set (match_operand:DI 0 "register_operand" "=r")
3218 ;; (udiv:DI (match_operand:DI 1 "register_operand" "r")
3219 ;; (match_operand:DI 2 "nonmemory_operand" "ri")))]
3221 ;; "udivdi3 %0,%1,%2"
3222 ;; [(set_attr "length" "4")])
3225 ;; (define_insn "negdi2"
3226 ;; [(set (match_operand:DI 0 "register_operand" "=r")
3227 ;; (neg:DI (match_operand:DI 1 "register_operand" "r")))]
3230 ;; [(set_attr "length" "4")])
3232 ;; Find first one bit
3233 ;; (define_insn "ffsdi2"
3234 ;; [(set (match_operand:DI 0 "register_operand" "=r")
3235 ;; (ffs:DI (match_operand:DI 1 "register_operand" "r")))]
3238 ;; [(set_attr "length" "4")])
3241 ;; ::::::::::::::::::::
3243 ;; :: 32-bit floating point arithmetic
3245 ;; ::::::::::::::::::::
3248 (define_insn "addsf3"
3249 [(set (match_operand:SF 0 "fpr_operand" "=f")
3250 (plus:SF (match_operand:SF 1 "fpr_operand" "%f")
3251 (match_operand:SF 2 "fpr_operand" "f")))]
3254 [(set_attr "length" "4")
3255 (set_attr "type" "fsadd")])
3258 (define_insn "subsf3"
3259 [(set (match_operand:SF 0 "fpr_operand" "=f")
3260 (minus:SF (match_operand:SF 1 "fpr_operand" "f")
3261 (match_operand:SF 2 "fpr_operand" "f")))]
3264 [(set_attr "length" "4")
3265 (set_attr "type" "fsadd")])
3268 (define_insn "mulsf3"
3269 [(set (match_operand:SF 0 "fpr_operand" "=f")
3270 (mult:SF (match_operand:SF 1 "fpr_operand" "%f")
3271 (match_operand:SF 2 "fpr_operand" "f")))]
3274 [(set_attr "length" "4")
3275 (set_attr "type" "fsmul")])
3277 ;; Multiplication with addition/subtraction
3278 (define_insn "fmasf4"
3279 [(set (match_operand:SF 0 "fpr_operand" "=f")
3280 (fma:SF (match_operand:SF 1 "fpr_operand" "f")
3281 (match_operand:SF 2 "fpr_operand" "f")
3282 (match_operand:SF 3 "fpr_operand" "0")))]
3283 "TARGET_HARD_FLOAT && TARGET_MULADD"
3285 [(set_attr "length" "4")
3286 (set_attr "type" "fsmadd")])
3288 (define_insn "fmssf4"
3289 [(set (match_operand:SF 0 "fpr_operand" "=f")
3290 (fma:SF (match_operand:SF 1 "fpr_operand" "f")
3291 (match_operand:SF 2 "fpr_operand" "f")
3292 (neg:SF (match_operand:SF 3 "fpr_operand" "0"))))]
3293 "TARGET_HARD_FLOAT && TARGET_MULADD"
3295 [(set_attr "length" "4")
3296 (set_attr "type" "fsmadd")])
3299 (define_insn "divsf3"
3300 [(set (match_operand:SF 0 "fpr_operand" "=f")
3301 (div:SF (match_operand:SF 1 "fpr_operand" "f")
3302 (match_operand:SF 2 "fpr_operand" "f")))]
3305 [(set_attr "length" "4")
3306 (set_attr "type" "fsdiv")])
3309 (define_insn "negsf2"
3310 [(set (match_operand:SF 0 "fpr_operand" "=f")
3311 (neg:SF (match_operand:SF 1 "fpr_operand" "f")))]
3314 [(set_attr "length" "4")
3315 (set_attr "type" "fsconv")])
3318 (define_insn "abssf2"
3319 [(set (match_operand:SF 0 "fpr_operand" "=f")
3320 (abs:SF (match_operand:SF 1 "fpr_operand" "f")))]
3323 [(set_attr "length" "4")
3324 (set_attr "type" "fsconv")])
3327 (define_insn "sqrtsf2"
3328 [(set (match_operand:SF 0 "fpr_operand" "=f")
3329 (sqrt:SF (match_operand:SF 1 "fpr_operand" "f")))]
3332 [(set_attr "length" "4")
3333 (set_attr "type" "sqrt_single")])
3336 ;; ::::::::::::::::::::
3338 ;; :: 64-bit floating point arithmetic
3340 ;; ::::::::::::::::::::
3343 (define_insn "adddf3"
3344 [(set (match_operand:DF 0 "even_fpr_operand" "=h")
3345 (plus:DF (match_operand:DF 1 "fpr_operand" "%h")
3346 (match_operand:DF 2 "fpr_operand" "h")))]
3347 "TARGET_HARD_FLOAT && TARGET_DOUBLE"
3349 [(set_attr "length" "4")
3350 (set_attr "type" "fdadd")])
3353 (define_insn "subdf3"
3354 [(set (match_operand:DF 0 "even_fpr_operand" "=h")
3355 (minus:DF (match_operand:DF 1 "fpr_operand" "h")
3356 (match_operand:DF 2 "fpr_operand" "h")))]
3357 "TARGET_HARD_FLOAT && TARGET_DOUBLE"
3359 [(set_attr "length" "4")
3360 (set_attr "type" "fdadd")])
3363 (define_insn "muldf3"
3364 [(set (match_operand:DF 0 "even_fpr_operand" "=h")
3365 (mult:DF (match_operand:DF 1 "fpr_operand" "%h")
3366 (match_operand:DF 2 "fpr_operand" "h")))]
3367 "TARGET_HARD_FLOAT && TARGET_DOUBLE"
3369 [(set_attr "length" "4")
3370 (set_attr "type" "fdmul")])
3372 ;; Multiplication with addition/subtraction
3373 (define_insn "*muladddf4"
3374 [(set (match_operand:DF 0 "fpr_operand" "=f")
3375 (plus:DF (mult:DF (match_operand:DF 1 "fpr_operand" "%f")
3376 (match_operand:DF 2 "fpr_operand" "f"))
3377 (match_operand:DF 3 "fpr_operand" "0")))]
3378 "TARGET_HARD_FLOAT && TARGET_DOUBLE && TARGET_MULADD"
3380 [(set_attr "length" "4")
3381 (set_attr "type" "fdmadd")])
3383 (define_insn "*mulsubdf4"
3384 [(set (match_operand:DF 0 "fpr_operand" "=f")
3385 (minus:DF (mult:DF (match_operand:DF 1 "fpr_operand" "%f")
3386 (match_operand:DF 2 "fpr_operand" "f"))
3387 (match_operand:DF 3 "fpr_operand" "0")))]
3388 "TARGET_HARD_FLOAT && TARGET_DOUBLE && TARGET_MULADD"
3390 [(set_attr "length" "4")
3391 (set_attr "type" "fdmadd")])
3394 (define_insn "divdf3"
3395 [(set (match_operand:DF 0 "even_fpr_operand" "=h")
3396 (div:DF (match_operand:DF 1 "fpr_operand" "h")
3397 (match_operand:DF 2 "fpr_operand" "h")))]
3398 "TARGET_HARD_FLOAT && TARGET_DOUBLE"
3400 [(set_attr "length" "4")
3401 (set_attr "type" "fddiv")])
3404 (define_insn "negdf2"
3405 [(set (match_operand:DF 0 "even_fpr_operand" "=h")
3406 (neg:DF (match_operand:DF 1 "fpr_operand" "h")))]
3407 "TARGET_HARD_FLOAT && TARGET_DOUBLE"
3409 [(set_attr "length" "4")
3410 (set_attr "type" "fdconv")])
3413 (define_insn "absdf2"
3414 [(set (match_operand:DF 0 "even_fpr_operand" "=h")
3415 (abs:DF (match_operand:DF 1 "fpr_operand" "h")))]
3416 "TARGET_HARD_FLOAT && TARGET_DOUBLE"
3418 [(set_attr "length" "4")
3419 (set_attr "type" "fdconv")])
3422 (define_insn "sqrtdf2"
3423 [(set (match_operand:DF 0 "even_fpr_operand" "=h")
3424 (sqrt:DF (match_operand:DF 1 "fpr_operand" "h")))]
3425 "TARGET_HARD_FLOAT && TARGET_DOUBLE"
3427 [(set_attr "length" "4")
3428 (set_attr "type" "sqrt_double")])
3431 ;; ::::::::::::::::::::
3433 ;; :: 32-bit Integer Shifts and Rotates
3435 ;; ::::::::::::::::::::
3437 ;; Arithmetic Shift Left
3438 (define_insn "ashlsi3"
3439 [(set (match_operand:SI 0 "integer_register_operand" "=d,d")
3440 (ashift:SI (match_operand:SI 1 "integer_register_operand" "d,d")
3441 (match_operand:SI 2 "gpr_or_int12_operand" "d,NOP")))]
3444 [(set_attr "length" "4")
3445 (set_attr "type" "int")])
3447 ;; Arithmetic Shift Right
3448 (define_insn "ashrsi3"
3449 [(set (match_operand:SI 0 "integer_register_operand" "=d,d")
3450 (ashiftrt:SI (match_operand:SI 1 "integer_register_operand" "d,d")
3451 (match_operand:SI 2 "gpr_or_int12_operand" "d,NOP")))]
3454 [(set_attr "length" "4")
3455 (set_attr "type" "int")])
3457 ;; Logical Shift Right
3458 (define_insn "lshrsi3"
3459 [(set (match_operand:SI 0 "integer_register_operand" "=d,d")
3460 (lshiftrt:SI (match_operand:SI 1 "integer_register_operand" "d,d")
3461 (match_operand:SI 2 "gpr_or_int12_operand" "d,NOP")))]
3464 [(set_attr "length" "4")
3465 (set_attr "type" "int")])
3468 ;; (define_insn "rotlsi3"
3469 ;; [(set (match_operand:SI 0 "register_operand" "=r")
3470 ;; (rotate:SI (match_operand:SI 1 "register_operand" "r")
3471 ;; (match_operand:SI 2 "nonmemory_operand" "ri")))]
3473 ;; "rotlsi3 %0,%1,%2"
3474 ;; [(set_attr "length" "4")])
3477 ;; (define_insn "rotrsi3"
3478 ;; [(set (match_operand:SI 0 "register_operand" "=r")
3479 ;; (rotatert:SI (match_operand:SI 1 "register_operand" "r")
3480 ;; (match_operand:SI 2 "nonmemory_operand" "ri")))]
3482 ;; "rotrsi3 %0,%1,%2"
3483 ;; [(set_attr "length" "4")])
3486 ;; ::::::::::::::::::::
3488 ;; :: 64-bit Integer Shifts and Rotates
3490 ;; ::::::::::::::::::::
3492 ;; Arithmetic Shift Left
3493 ;; (define_insn "ashldi3"
3494 ;; [(set (match_operand:DI 0 "register_operand" "=r")
3495 ;; (ashift:DI (match_operand:DI 1 "register_operand" "r")
3496 ;; (match_operand:SI 2 "nonmemory_operand" "ri")))]
3498 ;; "ashldi3 %0,%1,%2"
3499 ;; [(set_attr "length" "4")])
3501 ;; Arithmetic Shift Right
3502 ;; (define_insn "ashrdi3"
3503 ;; [(set (match_operand:DI 0 "register_operand" "=r")
3504 ;; (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
3505 ;; (match_operand:SI 2 "nonmemory_operand" "ri")))]
3507 ;; "ashrdi3 %0,%1,%2"
3508 ;; [(set_attr "length" "4")])
3510 ;; Logical Shift Right
3511 ;; (define_insn "lshrdi3"
3512 ;; [(set (match_operand:DI 0 "register_operand" "=r")
3513 ;; (lshiftrt:DI (match_operand:DI 1 "register_operand" "r")
3514 ;; (match_operand:SI 2 "nonmemory_operand" "ri")))]
3516 ;; "lshrdi3 %0,%1,%2"
3517 ;; [(set_attr "length" "4")])
3520 ;; (define_insn "rotldi3"
3521 ;; [(set (match_operand:DI 0 "register_operand" "=r")
3522 ;; (rotate:DI (match_operand:DI 1 "register_operand" "r")
3523 ;; (match_operand:SI 2 "nonmemory_operand" "ri")))]
3525 ;; "rotldi3 %0,%1,%2"
3526 ;; [(set_attr "length" "4")])
3529 ;; (define_insn "rotrdi3"
3530 ;; [(set (match_operand:DI 0 "register_operand" "=r")
3531 ;; (rotatert:DI (match_operand:DI 1 "register_operand" "r")
3532 ;; (match_operand:SI 2 "nonmemory_operand" "ri")))]
3534 ;; "rotrdi3 %0,%1,%2"
3535 ;; [(set_attr "length" "4")])
3538 ;; ::::::::::::::::::::
3540 ;; :: 32-Bit Integer Logical operations
3542 ;; ::::::::::::::::::::
3544 ;; Logical AND, 32-bit integers
3545 (define_insn "andsi3_media"
3546 [(set (match_operand:SI 0 "gpr_or_fpr_operand" "=d,f")
3547 (and:SI (match_operand:SI 1 "gpr_or_fpr_operand" "%d,f")
3548 (match_operand:SI 2 "gpr_fpr_or_int12_operand" "dNOP,f")))]
3553 [(set_attr "length" "4")
3554 (set_attr "type" "int,mlogic")])
3556 (define_insn "andsi3_nomedia"
3557 [(set (match_operand:SI 0 "integer_register_operand" "=d")
3558 (and:SI (match_operand:SI 1 "integer_register_operand" "%d")
3559 (match_operand:SI 2 "gpr_or_int12_operand" "dNOP")))]
3562 [(set_attr "length" "4")
3563 (set_attr "type" "int")])
3565 (define_expand "andsi3"
3566 [(set (match_operand:SI 0 "gpr_or_fpr_operand" "")
3567 (and:SI (match_operand:SI 1 "gpr_or_fpr_operand" "")
3568 (match_operand:SI 2 "gpr_fpr_or_int12_operand" "")))]
3572 ;; Inclusive OR, 32-bit integers
3573 (define_insn "iorsi3_media"
3574 [(set (match_operand:SI 0 "gpr_or_fpr_operand" "=d,f")
3575 (ior:SI (match_operand:SI 1 "gpr_or_fpr_operand" "%d,f")
3576 (match_operand:SI 2 "gpr_fpr_or_int12_operand" "dNOP,f")))]
3581 [(set_attr "length" "4")
3582 (set_attr "type" "int,mlogic")])
3584 (define_insn "iorsi3_nomedia"
3585 [(set (match_operand:SI 0 "integer_register_operand" "=d")
3586 (ior:SI (match_operand:SI 1 "integer_register_operand" "%d")
3587 (match_operand:SI 2 "gpr_or_int12_operand" "dNOP")))]
3590 [(set_attr "length" "4")
3591 (set_attr "type" "int")])
3593 (define_expand "iorsi3"
3594 [(set (match_operand:SI 0 "gpr_or_fpr_operand" "")
3595 (ior:SI (match_operand:SI 1 "gpr_or_fpr_operand" "")
3596 (match_operand:SI 2 "gpr_fpr_or_int12_operand" "")))]
3600 ;; Exclusive OR, 32-bit integers
3601 (define_insn "xorsi3_media"
3602 [(set (match_operand:SI 0 "gpr_or_fpr_operand" "=d,f")
3603 (xor:SI (match_operand:SI 1 "gpr_or_fpr_operand" "%d,f")
3604 (match_operand:SI 2 "gpr_fpr_or_int12_operand" "dNOP,f")))]
3609 [(set_attr "length" "4")
3610 (set_attr "type" "int,mlogic")])
3612 (define_insn "xorsi3_nomedia"
3613 [(set (match_operand:SI 0 "integer_register_operand" "=d")
3614 (xor:SI (match_operand:SI 1 "integer_register_operand" "%d")
3615 (match_operand:SI 2 "gpr_or_int12_operand" "dNOP")))]
3618 [(set_attr "length" "4")
3619 (set_attr "type" "int")])
3621 (define_expand "xorsi3"
3622 [(set (match_operand:SI 0 "gpr_or_fpr_operand" "")
3623 (xor:SI (match_operand:SI 1 "gpr_or_fpr_operand" "")
3624 (match_operand:SI 2 "gpr_fpr_or_int12_operand" "")))]
3628 ;; One's complement, 32-bit integers
3629 (define_insn "one_cmplsi2_media"
3630 [(set (match_operand:SI 0 "gpr_or_fpr_operand" "=d,f")
3631 (not:SI (match_operand:SI 1 "gpr_or_fpr_operand" "d,f")))]
3636 [(set_attr "length" "4")
3637 (set_attr "type" "int,mlogic")])
3639 (define_insn "one_cmplsi2_nomedia"
3640 [(set (match_operand:SI 0 "integer_register_operand" "=d")
3641 (not:SI (match_operand:SI 1 "integer_register_operand" "d")))]
3644 [(set_attr "length" "4")
3645 (set_attr "type" "int")])
3647 (define_expand "one_cmplsi2"
3648 [(set (match_operand:SI 0 "gpr_or_fpr_operand" "")
3649 (not:SI (match_operand:SI 1 "gpr_or_fpr_operand" "")))]
3654 ;; ::::::::::::::::::::
3656 ;; :: 64-Bit Integer Logical operations
3658 ;; ::::::::::::::::::::
3660 ;; Logical AND, 64-bit integers
3661 ;; (define_insn "anddi3"
3662 ;; [(set (match_operand:DI 0 "register_operand" "=r")
3663 ;; (and:DI (match_operand:DI 1 "register_operand" "%r")
3664 ;; (match_operand:DI 2 "nonmemory_operand" "ri")))]
3666 ;; "anddi3 %0,%1,%2"
3667 ;; [(set_attr "length" "4")])
3669 ;; Inclusive OR, 64-bit integers
3670 ;; (define_insn "iordi3"
3671 ;; [(set (match_operand:DI 0 "register_operand" "=r")
3672 ;; (ior:DI (match_operand:DI 1 "register_operand" "%r")
3673 ;; (match_operand:DI 2 "nonmemory_operand" "ri")))]
3675 ;; "iordi3 %0,%1,%2"
3676 ;; [(set_attr "length" "4")])
3678 ;; Exclusive OR, 64-bit integers
3679 ;; (define_insn "xordi3"
3680 ;; [(set (match_operand:DI 0 "register_operand" "=r")
3681 ;; (xor:DI (match_operand:DI 1 "register_operand" "%r")
3682 ;; (match_operand:DI 2 "nonmemory_operand" "ri")))]
3684 ;; "xordi3 %0,%1,%2"
3685 ;; [(set_attr "length" "4")])
3687 ;; One's complement, 64-bit integers
3688 ;; (define_insn "one_cmpldi2"
3689 ;; [(set (match_operand:DI 0 "register_operand" "=r")
3690 ;; (not:DI (match_operand:DI 1 "register_operand" "r")))]
3693 ;; [(set_attr "length" "4")])
3696 ;; ::::::::::::::::::::
3698 ;; :: Combination of integer operation with comparison
3700 ;; ::::::::::::::::::::
3702 (define_insn "*combo_intop_compare1"
3703 [(set (match_operand:CC_NZ 0 "icc_operand" "=t")
3705 (match_operator:SI 1 "intop_compare_operator"
3706 [(match_operand:SI 2 "integer_register_operand" "d")
3707 (match_operand:SI 3 "gpr_or_int10_operand" "dJ")])
3710 "%O1%I3cc %2, %3, %., %0"
3711 [(set_attr "type" "int")
3712 (set_attr "length" "4")])
3714 (define_insn "*combo_intop_compare2"
3715 [(set (match_operand:CC_NZ 0 "icc_operand" "=t")
3717 (match_operator:SI 1 "intop_compare_operator"
3718 [(match_operand:SI 2 "integer_register_operand" "d")
3719 (match_operand:SI 3 "gpr_or_int10_operand" "dJ")])
3721 (set (match_operand:SI 4 "integer_register_operand" "=d")
3722 (match_operator:SI 5 "intop_compare_operator"
3725 "GET_CODE (operands[1]) == GET_CODE (operands[5])"
3726 "%O1%I3cc %2, %3, %4, %0"
3727 [(set_attr "type" "int")
3728 (set_attr "length" "4")])
3730 ;; ::::::::::::::::::::
3734 ;; ::::::::::::::::::::
3736 ;; The comparisons are generated by the branch and/or scc operations
3738 (define_insn "cmpsi_cc"
3739 [(set (match_operand:CC 0 "icc_operand" "=t,t")
3740 (compare:CC (match_operand:SI 1 "integer_register_operand" "d,d")
3741 (match_operand:SI 2 "gpr_or_int10_operand" "d,J")))]
3744 [(set_attr "length" "4")
3745 (set_attr "type" "int")])
3747 (define_insn "*cmpsi_cc_uns"
3748 [(set (match_operand:CC_UNS 0 "icc_operand" "=t,t")
3749 (compare:CC_UNS (match_operand:SI 1 "integer_register_operand" "d,d")
3750 (match_operand:SI 2 "gpr_or_int10_operand" "d,J")))]
3753 [(set_attr "length" "4")
3754 (set_attr "type" "int")])
3756 ;; The only requirement for a CC_NZmode GPR or memory value is that
3757 ;; comparing it against zero must set the Z and N flags appropriately.
3758 ;; The source operand is therefore a valid CC_NZmode value.
3759 (define_insn "*cmpsi_cc_nz"
3760 [(set (match_operand:CC_NZ 0 "nonimmediate_operand" "=t,d,m")
3761 (compare:CC_NZ (match_operand:SI 1 "integer_register_operand" "d,d,d")
3768 [(set_attr "length" "4,4,4")
3769 (set_attr "type" "int,int,gstore")])
3771 (define_insn "*cmpsf_cc_fp"
3772 [(set (match_operand:CC_FP 0 "fcc_operand" "=u")
3773 (compare:CC_FP (match_operand:SF 1 "fpr_operand" "f")
3774 (match_operand:SF 2 "fpr_operand" "f")))]
3777 [(set_attr "length" "4")
3778 (set_attr "type" "fscmp")])
3780 (define_insn "*cmpdf_cc_fp"
3781 [(set (match_operand:CC_FP 0 "fcc_operand" "=u")
3782 (compare:CC_FP (match_operand:DF 1 "even_fpr_operand" "h")
3783 (match_operand:DF 2 "even_fpr_operand" "h")))]
3784 "TARGET_HARD_FLOAT && TARGET_DOUBLE"
3786 [(set_attr "length" "4")
3787 (set_attr "type" "fdcmp")])
3790 ;; ::::::::::::::::::::
3794 ;; ::::::::::::::::::::
3796 ;; Define_expands called by the machine independent part of the compiler
3797 ;; to allocate a new comparison register.
3799 (define_expand "cbranchdf4"
3800 [(use (match_operator 0 "ordered_comparison_operator"
3801 [(match_operand:DF 1 "fpr_operand" "")
3802 (match_operand:DF 2 "fpr_operand" "")]))
3803 (use (match_operand 3 ""))]
3804 "TARGET_HARD_FLOAT && TARGET_DOUBLE"
3805 { if (frv_emit_cond_branch (operands)) DONE; gcc_unreachable (); })
3807 (define_expand "cbranchsf4"
3808 [(use (match_operator 0 "ordered_comparison_operator"
3809 [(match_operand:SF 1 "fpr_operand" "")
3810 (match_operand:SF 2 "fpr_operand" "")]))
3811 (use (match_operand 3 ""))]
3813 { if (frv_emit_cond_branch (operands)) DONE; gcc_unreachable (); })
3815 (define_expand "cbranchsi4"
3816 [(use (match_operator 0 "ordered_comparison_operator"
3817 [(match_operand:SI 1 "integer_register_operand" "")
3818 (match_operand:SI 2 "gpr_or_int10_operand" "")]))
3819 (use (match_operand 3 ""))]
3821 { if (frv_emit_cond_branch (operands)) DONE; gcc_unreachable (); })
3823 ;; Actual branches. We must allow for the (label_ref) and the (pc) to be
3824 ;; swapped. If they are swapped, it reverses the sense of the branch.
3826 ;; Note - unlike the define expands above, these patterns can be amalgamated
3827 ;; into one pattern for branch-if-true and one for branch-if-false. This does
3828 ;; require an operand operator to select the correct branch mnemonic.
3830 ;; If a fixed condition code register is being used, (as opposed to, say,
3831 ;; using cc0), then the expands could look like this:
3833 ;; (define_insn "*branch_true"
3835 ;; (if_then_else (match_operator:CC 0 "comparison_operator"
3836 ;; [(reg:CC <number_of_CC_register>)
3838 ;; (label_ref (match_operand 1 "" ""))
3842 ;; [(set_attr "length" "4")]
3845 ;; In the above example the %B is a directive to frv_print_operand()
3846 ;; to decode and print the correct branch mnemonic.
3848 (define_insn "*branch_int_true"
3850 (if_then_else (match_operator 0 "integer_relational_operator"
3851 [(match_operand 1 "icc_operand" "t")
3853 (label_ref (match_operand 2 "" ""))
3858 if (get_attr_length (insn) == 4)
3859 return \"b%c0 %1,%#,%l2\";
3861 return \"b%C0 %1,%#,1f\;call %l2\\n1:\";
3863 [(set (attr "length")
3865 (and (ge (minus (match_dup 2) (pc)) (const_int -32768))
3866 (le (minus (match_dup 2) (pc)) (const_int 32764)))
3869 (set (attr "far_jump")
3871 (eq_attr "length" "4")
3873 (const_string "yes")))
3876 (eq_attr "length" "4")
3877 (const_string "branch")
3878 (const_string "multi")))])
3880 (define_insn "*branch_int_false"
3882 (if_then_else (match_operator 0 "integer_relational_operator"
3883 [(match_operand 1 "icc_operand" "t")
3886 (label_ref (match_operand 2 "" ""))))]
3890 if (get_attr_length (insn) == 4)
3891 return \"b%C0 %1,%#,%l2\";
3893 return \"b%c0 %1,%#,1f\;call %l2\\n1:\";
3895 [(set (attr "length")
3897 (and (ge (minus (match_dup 2) (pc)) (const_int -32768))
3898 (le (minus (match_dup 2) (pc)) (const_int 32764)))
3901 (set (attr "far_jump")
3903 (eq_attr "length" "4")
3905 (const_string "yes")))
3908 (eq_attr "length" "4")
3909 (const_string "branch")
3910 (const_string "multi")))])
3912 (define_insn "*branch_fp_true"
3914 (if_then_else (match_operator:CC_FP 0 "float_relational_operator"
3915 [(match_operand 1 "fcc_operand" "u")
3917 (label_ref (match_operand 2 "" ""))
3922 if (get_attr_length (insn) == 4)
3923 return \"fb%f0 %1,%#,%l2\";
3925 return \"fb%F0 %1,%#,1f\;call %l2\\n1:\";
3927 [(set (attr "length")
3929 (and (ge (minus (match_dup 2) (pc)) (const_int -32768))
3930 (le (minus (match_dup 2) (pc)) (const_int 32764)))
3933 (set (attr "far_jump")
3935 (eq_attr "length" "4")
3937 (const_string "yes")))
3940 (eq_attr "length" "4")
3941 (const_string "branch")
3942 (const_string "multi")))])
3944 (define_insn "*branch_fp_false"
3946 (if_then_else (match_operator:CC_FP 0 "float_relational_operator"
3947 [(match_operand 1 "fcc_operand" "u")
3950 (label_ref (match_operand 2 "" ""))))]
3954 if (get_attr_length (insn) == 4)
3955 return \"fb%F0 %1,%#,%l2\";
3957 return \"fb%f0 %1,%#,1f\;call %l2\\n1:\";
3959 [(set (attr "length")
3961 (and (ge (minus (match_dup 2) (pc)) (const_int -32768))
3962 (le (minus (match_dup 2) (pc)) (const_int 32764)))
3965 (set (attr "far_jump")
3967 (eq_attr "length" "4")
3969 (const_string "yes")))
3972 (eq_attr "length" "4")
3973 (const_string "branch")
3974 (const_string "multi")))])
3977 ;; ::::::::::::::::::::
3979 ;; :: Set flag operations
3981 ;; ::::::::::::::::::::
3983 ;; Define_expands called by the machine independent part of the compiler
3984 ;; to allocate a new comparison register
3986 (define_expand "cstoredf4"
3987 [(use (match_operator:SI 1 "ordered_comparison_operator"
3988 [(match_operand:DF 2 "fpr_operand")
3989 (match_operand:DF 3 "fpr_operand")]))
3990 (clobber (match_operand:SI 0 "register_operand"))]
3991 "TARGET_HARD_FLOAT && TARGET_DOUBLE"
3992 { if (frv_emit_scc (operands)) DONE; else FAIL; })
3994 (define_expand "cstoresf4"
3995 [(use (match_operator:SI 1 "ordered_comparison_operator"
3996 [(match_operand:SF 2 "fpr_operand")
3997 (match_operand:SF 3 "fpr_operand")]))
3998 (clobber (match_operand:SI 0 "register_operand"))]
4000 { if (frv_emit_scc (operands)) DONE; else FAIL; })
4002 (define_expand "cstoresi4"
4003 [(use (match_operator:SI 1 "ordered_comparison_operator"
4004 [(match_operand:SI 2 "integer_register_operand")
4005 (match_operand:SI 3 "gpr_or_int10_operand")]))
4006 (clobber (match_operand:SI 0 "register_operand"))]
4008 { if (frv_emit_scc (operands)) DONE; else FAIL; })
4010 (define_insn "*scc_int"
4011 [(set (match_operand:SI 0 "integer_register_operand" "=d")
4012 (match_operator:SI 1 "integer_relational_operator"
4013 [(match_operand 2 "icc_operand" "t")
4015 (clobber (match_operand:CC_CCR 3 "icr_operand" "=v"))]
4018 [(set_attr "length" "12")
4019 (set_attr "type" "multi")])
4021 (define_insn "*scc_float"
4022 [(set (match_operand:SI 0 "integer_register_operand" "=d")
4023 (match_operator:SI 1 "float_relational_operator"
4024 [(match_operand:CC_FP 2 "fcc_operand" "u")
4026 (clobber (match_operand:CC_CCR 3 "fcr_operand" "=w"))]
4029 [(set_attr "length" "12")
4030 (set_attr "type" "multi")])
4032 ;; XXX -- add reload_completed to the splits, because register allocation
4033 ;; currently isn't ready to see cond_exec packets.
4035 [(set (match_operand:SI 0 "integer_register_operand" "")
4036 (match_operator:SI 1 "relational_operator"
4037 [(match_operand 2 "cc_operand" "")
4039 (clobber (match_operand 3 "cr_operand" ""))]
4042 "operands[4] = frv_split_scc (operands[0], operands[1], operands[2],
4043 operands[3], (HOST_WIDE_INT) 1);")
4045 (define_insn "*scc_neg1_int"
4046 [(set (match_operand:SI 0 "integer_register_operand" "=d")
4047 (neg:SI (match_operator:SI 1 "integer_relational_operator"
4048 [(match_operand 2 "icc_operand" "t")
4050 (clobber (match_operand:CC_CCR 3 "icr_operand" "=v"))]
4053 [(set_attr "length" "12")
4054 (set_attr "type" "multi")])
4056 (define_insn "*scc_neg1_float"
4057 [(set (match_operand:SI 0 "integer_register_operand" "=d")
4058 (neg:SI (match_operator:SI 1 "float_relational_operator"
4059 [(match_operand:CC_FP 2 "fcc_operand" "u")
4061 (clobber (match_operand:CC_CCR 3 "fcr_operand" "=w"))]
4064 [(set_attr "length" "12")
4065 (set_attr "type" "multi")])
4068 [(set (match_operand:SI 0 "integer_register_operand" "")
4069 (neg:SI (match_operator:SI 1 "relational_operator"
4070 [(match_operand 2 "cc_operand" "")
4072 (clobber (match_operand 3 "cr_operand" ""))]
4075 "operands[4] = frv_split_scc (operands[0], operands[1], operands[2],
4076 operands[3], (HOST_WIDE_INT) -1);")
4079 ;; ::::::::::::::::::::
4081 ;; :: Conditionally executed instructions
4083 ;; ::::::::::::::::::::
4085 ;; Convert ICC/FCC comparison into CCR bits so we can do conditional execution
4086 (define_insn "*ck_signed"
4087 [(set (match_operand:CC_CCR 0 "icr_operand" "=v")
4088 (match_operator:CC_CCR 1 "integer_relational_operator"
4089 [(match_operand 2 "icc_operand" "t")
4093 [(set_attr "length" "4")
4094 (set_attr "type" "ccr")])
4096 (define_insn "*fck_float"
4097 [(set (match_operand:CC_CCR 0 "fcr_operand" "=w")
4098 (match_operator:CC_CCR 1 "float_relational_operator"
4099 [(match_operand:CC_FP 2 "fcc_operand" "u")
4103 [(set_attr "length" "4")
4104 (set_attr "type" "ccr")])
4106 ;; Conditionally convert ICC/FCC comparison into CCR bits to provide && and ||
4107 ;; tests in conditional execution
4108 (define_insn "cond_exec_ck"
4109 [(set (match_operand:CC_CCR 0 "cr_operand" "=v,w")
4110 (if_then_else:CC_CCR (match_operator 1 "ccr_eqne_operator"
4111 [(match_operand 2 "cr_operand" "C,C")
4113 (match_operator 3 "relational_operator"
4114 [(match_operand 4 "cc_operand" "t,u")
4119 cck%c3 %4, %0, %2, %e1
4120 cfck%f3 %4, %0, %2, %e1"
4121 [(set_attr "length" "4")
4122 (set_attr "type" "ccr")])
4124 ;; Conditionally set a register to either 0 or another register
4125 (define_insn "*cond_exec_movqi"
4127 (match_operator 0 "ccr_eqne_operator"
4128 [(match_operand 1 "cr_operand" "C,C,C,C,C,C")
4130 (set (match_operand:QI 2 "condexec_dest_operand" "=d,d,U,?f,?f,?d")
4131 (match_operand:QI 3 "condexec_source_operand" "dO,U,dO,f,d,f")))]
4132 "register_operand(operands[2], QImode) || reg_or_0_operand (operands[3], QImode)"
4133 "* return output_condmove_single (operands, insn);"
4134 [(set_attr "length" "4")
4135 (set_attr "type" "int,gload,gstore,fsconv,movgf,movfg")])
4137 (define_insn "*cond_exec_movhi"
4139 (match_operator 0 "ccr_eqne_operator"
4140 [(match_operand 1 "cr_operand" "C,C,C,C,C,C")
4142 (set (match_operand:HI 2 "condexec_dest_operand" "=d,d,U,?f,?f,?d")
4143 (match_operand:HI 3 "condexec_source_operand" "dO,U,dO,f,d,f")))]
4144 "register_operand(operands[2], HImode) || reg_or_0_operand (operands[3], HImode)"
4145 "* return output_condmove_single (operands, insn);"
4146 [(set_attr "length" "4")
4147 (set_attr "type" "int,gload,gstore,fsconv,movgf,movfg")])
4149 (define_insn "*cond_exec_movsi"
4151 (match_operator 0 "ccr_eqne_operator"
4152 [(match_operand 1 "cr_operand" "C,C,C,C,C,C,C,C")
4154 (set (match_operand:SI 2 "condexec_dest_operand" "=d,d,U,?f,?f,?d,?f,?m")
4155 (match_operand:SI 3 "condexec_source_operand" "dO,U,dO,f,d,f,m,f")))]
4156 "register_operand(operands[2], SImode) || reg_or_0_operand (operands[3], SImode)"
4157 "* return output_condmove_single (operands, insn);"
4158 [(set_attr "length" "4")
4159 (set_attr "type" "int,gload,gstore,fsconv,movgf,movfg,fload,fstore")])
4162 (define_insn "*cond_exec_movsf_has_fprs"
4164 (match_operator 0 "ccr_eqne_operator"
4165 [(match_operand 1 "cr_operand" "C,C,C,C,C,C,C,C,C,C")
4167 (set (match_operand:SF 2 "condexec_dest_operand" "=f,?d,?d,?f,f,f,?d,U,?U,U")
4168 (match_operand:SF 3 "condexec_source_operand" "f,d,f,d,G,U,U,f,d,G")))]
4170 "* return output_condmove_single (operands, insn);"
4171 [(set_attr "length" "4")
4172 (set_attr "type" "fsconv,int,movgf,movfg,movgf,fload,gload,fstore,gstore,gstore")])
4174 (define_insn "*cond_exec_movsf_no_fprs"
4176 (match_operator 0 "ccr_eqne_operator"
4177 [(match_operand 1 "cr_operand" "C,C,C")
4179 (set (match_operand:SF 2 "condexec_dest_operand" "=d,d,U")
4180 (match_operand:SF 3 "condexec_source_operand" "d,U,dG")))]
4182 "* return output_condmove_single (operands, insn);"
4183 [(set_attr "length" "4")
4184 (set_attr "type" "int,gload,gstore")])
4186 (define_insn "*cond_exec_si_binary1"
4188 (match_operator 0 "ccr_eqne_operator"
4189 [(match_operand 1 "cr_operand" "C")
4191 (set (match_operand:SI 2 "integer_register_operand" "=d")
4192 (match_operator:SI 3 "condexec_si_binary_operator"
4193 [(match_operand:SI 4 "integer_register_operand" "d")
4194 (match_operand:SI 5 "integer_register_operand" "d")])))]
4198 switch (GET_CODE (operands[3]))
4200 case PLUS: return \"cadd %4, %z5, %2, %1, %e0\";
4201 case MINUS: return \"csub %4, %z5, %2, %1, %e0\";
4202 case AND: return \"cand %4, %z5, %2, %1, %e0\";
4203 case IOR: return \"cor %4, %z5, %2, %1, %e0\";
4204 case XOR: return \"cxor %4, %z5, %2, %1, %e0\";
4205 case ASHIFT: return \"csll %4, %z5, %2, %1, %e0\";
4206 case ASHIFTRT: return \"csra %4, %z5, %2, %1, %e0\";
4207 case LSHIFTRT: return \"csrl %4, %z5, %2, %1, %e0\";
4208 default: gcc_unreachable ();
4211 [(set_attr "length" "4")
4212 (set_attr "type" "int")])
4214 (define_insn "*cond_exec_si_binary2"
4216 (match_operator 0 "ccr_eqne_operator"
4217 [(match_operand 1 "cr_operand" "C")
4219 (set (match_operand:SI 2 "fpr_operand" "=f")
4220 (match_operator:SI 3 "condexec_si_media_operator"
4221 [(match_operand:SI 4 "fpr_operand" "f")
4222 (match_operand:SI 5 "fpr_operand" "f")])))]
4226 switch (GET_CODE (operands[3]))
4228 case AND: return \"cmand %4, %5, %2, %1, %e0\";
4229 case IOR: return \"cmor %4, %5, %2, %1, %e0\";
4230 case XOR: return \"cmxor %4, %5, %2, %1, %e0\";
4231 default: gcc_unreachable ();
4234 [(set_attr "length" "4")
4235 (set_attr "type" "mlogic")])
4237 ;; Note, flow does not (currently) know how to handle an operation that uses
4238 ;; only part of the hard registers allocated for a multiregister value, such as
4239 ;; DImode in this case if the user is only interested in the lower 32-bits. So
4240 ;; we emit a USE of the entire register after the csmul instruction so it won't
4241 ;; get confused. See frv_ifcvt_modify_insn for more details.
4243 (define_insn "*cond_exec_si_smul"
4245 (match_operator 0 "ccr_eqne_operator"
4246 [(match_operand 1 "cr_operand" "C")
4248 (set (match_operand:DI 2 "even_gpr_operand" "=e")
4249 (mult:DI (sign_extend:DI (match_operand:SI 3 "integer_register_operand" "%d"))
4250 (sign_extend:DI (match_operand:SI 4 "integer_register_operand" "d")))))]
4252 "csmul %3, %4, %2, %1, %e0"
4253 [(set_attr "length" "4")
4254 (set_attr "type" "mul")])
4256 (define_insn "*cond_exec_si_divide"
4258 (match_operator 0 "ccr_eqne_operator"
4259 [(match_operand 1 "cr_operand" "C")
4261 (set (match_operand:SI 2 "integer_register_operand" "=d")
4262 (match_operator:SI 3 "condexec_si_divide_operator"
4263 [(match_operand:SI 4 "integer_register_operand" "d")
4264 (match_operand:SI 5 "integer_register_operand" "d")])))]
4268 switch (GET_CODE (operands[3]))
4270 case DIV: return \"csdiv %4, %z5, %2, %1, %e0\";
4271 case UDIV: return \"cudiv %4, %z5, %2, %1, %e0\";
4272 default: gcc_unreachable ();
4275 [(set_attr "length" "4")
4276 (set_attr "type" "div")])
4278 (define_insn "*cond_exec_si_unary1"
4280 (match_operator 0 "ccr_eqne_operator"
4281 [(match_operand 1 "cr_operand" "C")
4283 (set (match_operand:SI 2 "integer_register_operand" "=d")
4284 (match_operator:SI 3 "condexec_si_unary_operator"
4285 [(match_operand:SI 4 "integer_register_operand" "d")])))]
4289 switch (GET_CODE (operands[3]))
4291 case NOT: return \"cnot %4, %2, %1, %e0\";
4292 case NEG: return \"csub %., %4, %2, %1, %e0\";
4293 default: gcc_unreachable ();
4296 [(set_attr "length" "4")
4297 (set_attr "type" "int")])
4299 (define_insn "*cond_exec_si_unary2"
4301 (match_operator 0 "ccr_eqne_operator"
4302 [(match_operand 1 "cr_operand" "C")
4304 (set (match_operand:SI 2 "fpr_operand" "=f")
4305 (not:SI (match_operand:SI 3 "fpr_operand" "f"))))]
4307 "cmnot %3, %2, %1, %e0"
4308 [(set_attr "length" "4")
4309 (set_attr "type" "mlogic")])
4311 (define_insn "*cond_exec_cmpsi_cc"
4313 (match_operator 0 "ccr_eqne_operator"
4314 [(match_operand 1 "cr_operand" "C")
4316 (set (match_operand:CC 2 "icc_operand" "=t")
4317 (compare:CC (match_operand:SI 3 "integer_register_operand" "d")
4318 (match_operand:SI 4 "reg_or_0_operand" "dO"))))]
4320 && REGNO (operands[1]) == REGNO (operands[2]) - ICC_FIRST + ICR_FIRST"
4321 "ccmp %3, %z4, %1, %e0"
4322 [(set_attr "length" "4")
4323 (set_attr "type" "int")])
4325 (define_insn "*cond_exec_cmpsi_cc_uns"
4327 (match_operator 0 "ccr_eqne_operator"
4328 [(match_operand 1 "cr_operand" "C")
4330 (set (match_operand:CC_UNS 2 "icc_operand" "=t")
4331 (compare:CC_UNS (match_operand:SI 3 "integer_register_operand" "d")
4332 (match_operand:SI 4 "reg_or_0_operand" "dO"))))]
4334 && REGNO (operands[1]) == REGNO (operands[2]) - ICC_FIRST + ICR_FIRST"
4335 "ccmp %3, %z4, %1, %e0"
4336 [(set_attr "length" "4")
4337 (set_attr "type" "int")])
4339 (define_insn "*cond_exec_cmpsi_cc_nz"
4341 (match_operator 0 "ccr_eqne_operator"
4342 [(match_operand 1 "cr_operand" "C")
4344 (set (match_operand:CC_NZ 2 "icc_operand" "=t")
4345 (compare:CC_NZ (match_operand:SI 3 "integer_register_operand" "d")
4348 && REGNO (operands[1]) == REGNO (operands[2]) - ICC_FIRST + ICR_FIRST"
4349 "ccmp %3, %., %1, %e0"
4350 [(set_attr "length" "4")
4351 (set_attr "type" "int")])
4353 (define_insn "*cond_exec_sf_conv"
4355 (match_operator 0 "ccr_eqne_operator"
4356 [(match_operand 1 "cr_operand" "C")
4358 (set (match_operand:SF 2 "fpr_operand" "=f")
4359 (match_operator:SF 3 "condexec_sf_conv_operator"
4360 [(match_operand:SF 4 "fpr_operand" "f")])))]
4364 switch (GET_CODE (operands[3]))
4366 case ABS: return \"cfabss %4, %2, %1, %e0\";
4367 case NEG: return \"cfnegs %4, %2, %1, %e0\";
4368 default: gcc_unreachable ();
4371 [(set_attr "length" "4")
4372 (set_attr "type" "fsconv")])
4374 (define_insn "*cond_exec_sf_add"
4376 (match_operator 0 "ccr_eqne_operator"
4377 [(match_operand 1 "cr_operand" "C")
4379 (set (match_operand:SF 2 "fpr_operand" "=f")
4380 (match_operator:SF 3 "condexec_sf_add_operator"
4381 [(match_operand:SF 4 "fpr_operand" "f")
4382 (match_operand:SF 5 "fpr_operand" "f")])))]
4386 switch (GET_CODE (operands[3]))
4388 case PLUS: return \"cfadds %4, %5, %2, %1, %e0\";
4389 case MINUS: return \"cfsubs %4, %5, %2, %1, %e0\";
4390 default: gcc_unreachable ();
4393 [(set_attr "length" "4")
4394 (set_attr "type" "fsadd")])
4396 (define_insn "*cond_exec_sf_mul"
4398 (match_operator 0 "ccr_eqne_operator"
4399 [(match_operand 1 "cr_operand" "C")
4401 (set (match_operand:SF 2 "fpr_operand" "=f")
4402 (mult:SF (match_operand:SF 3 "fpr_operand" "f")
4403 (match_operand:SF 4 "fpr_operand" "f"))))]
4405 "cfmuls %3, %4, %2, %1, %e0"
4406 [(set_attr "length" "4")
4407 (set_attr "type" "fsmul")])
4409 (define_insn "*cond_exec_sf_div"
4411 (match_operator 0 "ccr_eqne_operator"
4412 [(match_operand 1 "cr_operand" "C")
4414 (set (match_operand:SF 2 "fpr_operand" "=f")
4415 (div:SF (match_operand:SF 3 "fpr_operand" "f")
4416 (match_operand:SF 4 "fpr_operand" "f"))))]
4418 "cfdivs %3, %4, %2, %1, %e0"
4419 [(set_attr "length" "4")
4420 (set_attr "type" "fsdiv")])
4422 (define_insn "*cond_exec_sf_sqrt"
4424 (match_operator 0 "ccr_eqne_operator"
4425 [(match_operand 1 "cr_operand" "C")
4427 (set (match_operand:SF 2 "fpr_operand" "=f")
4428 (sqrt:SF (match_operand:SF 3 "fpr_operand" "f"))))]
4430 "cfsqrts %3, %2, %1, %e0"
4431 [(set_attr "length" "4")
4432 (set_attr "type" "fsdiv")])
4434 (define_insn "*cond_exec_cmpsi_cc_fp"
4436 (match_operator 0 "ccr_eqne_operator"
4437 [(match_operand 1 "cr_operand" "C")
4439 (set (match_operand:CC_FP 2 "fcc_operand" "=u")
4440 (compare:CC_FP (match_operand:SF 3 "fpr_operand" "f")
4441 (match_operand:SF 4 "fpr_operand" "f"))))]
4442 "reload_completed && TARGET_HARD_FLOAT
4443 && REGNO (operands[1]) == REGNO (operands[2]) - FCC_FIRST + FCR_FIRST"
4444 "cfcmps %3, %4, %2, %1, %e0"
4445 [(set_attr "length" "4")
4446 (set_attr "type" "fsconv")])
4449 ;; ::::::::::::::::::::
4451 ;; :: Logical operations on CR registers
4453 ;; ::::::::::::::::::::
4455 ;; We use UNSPEC to encode andcr/iorcr/etc. rather than the normal RTL
4456 ;; operations, since the RTL operations only have an idea of TRUE and FALSE,
4457 ;; while the CRs have TRUE, FALSE, and UNDEFINED.
4459 (define_expand "andcr"
4460 [(set (match_operand:CC_CCR 0 "cr_operand" "")
4461 (unspec:CC_CCR [(match_operand:CC_CCR 1 "cr_operand" "")
4462 (match_operand:CC_CCR 2 "cr_operand" "")
4463 (const_int 0)] UNSPEC_CR_LOGIC))]
4467 (define_expand "orcr"
4468 [(set (match_operand:CC_CCR 0 "cr_operand" "")
4469 (unspec:CC_CCR [(match_operand:CC_CCR 1 "cr_operand" "")
4470 (match_operand:CC_CCR 2 "cr_operand" "")
4471 (const_int 1)] UNSPEC_CR_LOGIC))]
4475 (define_expand "xorcr"
4476 [(set (match_operand:CC_CCR 0 "cr_operand" "")
4477 (unspec:CC_CCR [(match_operand:CC_CCR 1 "cr_operand" "")
4478 (match_operand:CC_CCR 2 "cr_operand" "")
4479 (const_int 2)] UNSPEC_CR_LOGIC))]
4483 (define_expand "nandcr"
4484 [(set (match_operand:CC_CCR 0 "cr_operand" "")
4485 (unspec:CC_CCR [(match_operand:CC_CCR 1 "cr_operand" "")
4486 (match_operand:CC_CCR 2 "cr_operand" "")
4487 (const_int 3)] UNSPEC_CR_LOGIC))]
4491 (define_expand "norcr"
4492 [(set (match_operand:CC_CCR 0 "cr_operand" "")
4493 (unspec:CC_CCR [(match_operand:CC_CCR 1 "cr_operand" "")
4494 (match_operand:CC_CCR 2 "cr_operand" "")
4495 (const_int 4)] UNSPEC_CR_LOGIC))]
4499 (define_expand "andncr"
4500 [(set (match_operand:CC_CCR 0 "cr_operand" "")
4501 (unspec:CC_CCR [(match_operand:CC_CCR 1 "cr_operand" "")
4502 (match_operand:CC_CCR 2 "cr_operand" "")
4503 (const_int 5)] UNSPEC_CR_LOGIC))]
4507 (define_expand "orncr"
4508 [(set (match_operand:CC_CCR 0 "cr_operand" "")
4509 (unspec:CC_CCR [(match_operand:CC_CCR 1 "cr_operand" "")
4510 (match_operand:CC_CCR 2 "cr_operand" "")
4511 (const_int 6)] UNSPEC_CR_LOGIC))]
4515 (define_expand "nandncr"
4516 [(set (match_operand:CC_CCR 0 "cr_operand" "")
4517 (unspec:CC_CCR [(match_operand:CC_CCR 1 "cr_operand" "")
4518 (match_operand:CC_CCR 2 "cr_operand" "")
4519 (const_int 7)] UNSPEC_CR_LOGIC))]
4523 (define_expand "norncr"
4524 [(set (match_operand:CC_CCR 0 "cr_operand" "")
4525 (unspec:CC_CCR [(match_operand:CC_CCR 1 "cr_operand" "")
4526 (match_operand:CC_CCR 2 "cr_operand" "")
4527 (const_int 8)] UNSPEC_CR_LOGIC))]
4531 (define_expand "notcr"
4532 [(set (match_operand:CC_CCR 0 "cr_operand" "")
4533 (unspec:CC_CCR [(match_operand:CC_CCR 1 "cr_operand" "")
4535 (const_int 9)] UNSPEC_CR_LOGIC))]
4539 (define_insn "*logical_cr"
4540 [(set (match_operand:CC_CCR 0 "cr_operand" "=C")
4541 (unspec:CC_CCR [(match_operand:CC_CCR 1 "cr_operand" "C")
4542 (match_operand:CC_CCR 2 "cr_operand" "C")
4543 (match_operand:SI 3 "const_int_operand" "n")]
4548 switch (INTVAL (operands[3]))
4551 case 0: return \"andcr %1, %2, %0\";
4552 case 1: return \"orcr %1, %2, %0\";
4553 case 2: return \"xorcr %1, %2, %0\";
4554 case 3: return \"nandcr %1, %2, %0\";
4555 case 4: return \"norcr %1, %2, %0\";
4556 case 5: return \"andncr %1, %2, %0\";
4557 case 6: return \"orncr %1, %2, %0\";
4558 case 7: return \"nandncr %1, %2, %0\";
4559 case 8: return \"norncr %1, %2, %0\";
4560 case 9: return \"notcr %1, %0\";
4563 fatal_insn (\"logical_cr\", insn);
4565 [(set_attr "length" "4")
4566 (set_attr "type" "ccr")])
4569 ;; ::::::::::::::::::::
4571 ;; :: Conditional move instructions
4573 ;; ::::::::::::::::::::
4576 ;; - conditional moves based on floating-point comparisons require
4577 ;; TARGET_HARD_FLOAT, because an FPU is required to do the comparison.
4579 ;; - conditional moves between FPRs based on integer comparisons
4580 ;; require TARGET_HAS_FPRS.
4582 (define_expand "movqicc"
4583 [(set (match_operand:QI 0 "integer_register_operand" "")
4584 (if_then_else:QI (match_operand 1 "" "")
4585 (match_operand:QI 2 "gpr_or_int_operand" "")
4586 (match_operand:QI 3 "gpr_or_int_operand" "")))]
4590 if (!frv_emit_cond_move (operands[0], operands[1], operands[2], operands[3]))
4596 (define_insn "*movqicc_internal1_int"
4597 [(set (match_operand:QI 0 "integer_register_operand" "=d,d,d")
4598 (if_then_else:QI (match_operator 1 "integer_relational_operator"
4599 [(match_operand 2 "icc_operand" "t,t,t")
4601 (match_operand:QI 3 "reg_or_0_operand" "0,dO,dO")
4602 (match_operand:QI 4 "reg_or_0_operand" "dO,0,dO")))
4603 (clobber (match_operand:CC_CCR 5 "icr_operand" "=v,v,v"))]
4606 [(set_attr "length" "8,8,12")
4607 (set_attr "type" "multi")])
4609 (define_insn "*movqicc_internal1_float"
4610 [(set (match_operand:QI 0 "integer_register_operand" "=d,d,d")
4611 (if_then_else:QI (match_operator:CC_FP 1 "float_relational_operator"
4612 [(match_operand:CC_FP 2 "fcc_operand" "u,u,u")
4614 (match_operand:QI 3 "reg_or_0_operand" "0,dO,dO")
4615 (match_operand:QI 4 "reg_or_0_operand" "dO,0,dO")))
4616 (clobber (match_operand:CC_CCR 5 "fcr_operand" "=w,w,w"))]
4619 [(set_attr "length" "8,8,12")
4620 (set_attr "type" "multi")])
4622 (define_insn "*movqicc_internal2_int"
4623 [(set (match_operand:QI 0 "integer_register_operand" "=d,d,d,d,d")
4624 (if_then_else:QI (match_operator 1 "integer_relational_operator"
4625 [(match_operand 2 "icc_operand" "t,t,t,t,t")
4627 (match_operand:QI 3 "const_int_operand" "O,O,L,n,n")
4628 (match_operand:QI 4 "const_int_operand" "L,n,O,O,n")))
4629 (clobber (match_operand:CC_CCR 5 "icr_operand" "=v,v,v,v,v"))]
4630 "(INTVAL (operands[3]) == 0
4631 || INTVAL (operands[4]) == 0
4632 || (IN_RANGE (INTVAL (operands[3]), -2048, 2047)
4633 && IN_RANGE (INTVAL (operands[4]) - INTVAL (operands[3]), -2048, 2047)))"
4635 [(set_attr "length" "8,12,8,12,12")
4636 (set_attr "type" "multi")])
4638 (define_insn "*movqicc_internal2_float"
4639 [(set (match_operand:QI 0 "integer_register_operand" "=d,d,d,d,d")
4640 (if_then_else:QI (match_operator:CC_FP 1 "float_relational_operator"
4641 [(match_operand:CC_FP 2 "fcc_operand" "u,u,u,u,u")
4643 (match_operand:QI 3 "const_int_operand" "O,O,L,n,n")
4644 (match_operand:QI 4 "const_int_operand" "L,n,O,O,n")))
4645 (clobber (match_operand:CC_CCR 5 "fcr_operand" "=w,w,w,w,w"))]
4647 && (INTVAL (operands[3]) == 0
4648 || INTVAL (operands[4]) == 0
4649 || (IN_RANGE (INTVAL (operands[3]), -2048, 2047)
4650 && IN_RANGE (INTVAL (operands[4]) - INTVAL (operands[3]), -2048, 2047)))"
4652 [(set_attr "length" "8,12,8,12,12")
4653 (set_attr "type" "multi")])
4656 [(set (match_operand:QI 0 "integer_register_operand" "")
4657 (if_then_else:QI (match_operator 1 "relational_operator"
4658 [(match_operand 2 "cc_operand" "")
4660 (match_operand:QI 3 "gpr_or_int_operand" "")
4661 (match_operand:QI 4 "gpr_or_int_operand" "")))
4662 (clobber (match_operand:CC_CCR 5 "cr_operand" ""))]
4665 "operands[6] = frv_split_cond_move (operands);")
4667 (define_expand "movhicc"
4668 [(set (match_operand:HI 0 "integer_register_operand" "")
4669 (if_then_else:HI (match_operand 1 "" "")
4670 (match_operand:HI 2 "gpr_or_int_operand" "")
4671 (match_operand:HI 3 "gpr_or_int_operand" "")))]
4675 if (!frv_emit_cond_move (operands[0], operands[1], operands[2], operands[3]))
4681 (define_insn "*movhicc_internal1_int"
4682 [(set (match_operand:HI 0 "integer_register_operand" "=d,d,d")
4683 (if_then_else:HI (match_operator 1 "integer_relational_operator"
4684 [(match_operand 2 "icc_operand" "t,t,t")
4686 (match_operand:HI 3 "reg_or_0_operand" "0,dO,dO")
4687 (match_operand:HI 4 "reg_or_0_operand" "dO,0,dO")))
4688 (clobber (match_operand:CC_CCR 5 "icr_operand" "=v,v,v"))]
4691 [(set_attr "length" "8,8,12")
4692 (set_attr "type" "multi")])
4694 (define_insn "*movhicc_internal1_float"
4695 [(set (match_operand:HI 0 "integer_register_operand" "=d,d,d")
4696 (if_then_else:HI (match_operator:CC_FP 1 "float_relational_operator"
4697 [(match_operand:CC_FP 2 "fcc_operand" "u,u,u")
4699 (match_operand:HI 3 "reg_or_0_operand" "0,dO,dO")
4700 (match_operand:HI 4 "reg_or_0_operand" "dO,0,dO")))
4701 (clobber (match_operand:CC_CCR 5 "fcr_operand" "=w,w,w"))]
4704 [(set_attr "length" "8,8,12")
4705 (set_attr "type" "multi")])
4707 (define_insn "*movhicc_internal2_int"
4708 [(set (match_operand:HI 0 "integer_register_operand" "=d,d,d,d,d")
4709 (if_then_else:HI (match_operator 1 "integer_relational_operator"
4710 [(match_operand 2 "icc_operand" "t,t,t,t,t")
4712 (match_operand:HI 3 "const_int_operand" "O,O,L,n,n")
4713 (match_operand:HI 4 "const_int_operand" "L,n,O,O,n")))
4714 (clobber (match_operand:CC_CCR 5 "icr_operand" "=v,v,v,v,v"))]
4715 "(INTVAL (operands[3]) == 0
4716 || INTVAL (operands[4]) == 0
4717 || (IN_RANGE (INTVAL (operands[3]), -2048, 2047)
4718 && IN_RANGE (INTVAL (operands[4]) - INTVAL (operands[3]), -2048, 2047)))"
4720 [(set_attr "length" "8,12,8,12,12")
4721 (set_attr "type" "multi")])
4723 (define_insn "*movhicc_internal2_float"
4724 [(set (match_operand:HI 0 "integer_register_operand" "=d,d,d,d,d")
4725 (if_then_else:HI (match_operator:CC_FP 1 "float_relational_operator"
4726 [(match_operand:CC_FP 2 "fcc_operand" "u,u,u,u,u")
4728 (match_operand:HI 3 "const_int_operand" "O,O,L,n,n")
4729 (match_operand:HI 4 "const_int_operand" "L,n,O,O,n")))
4730 (clobber (match_operand:CC_CCR 5 "fcr_operand" "=w,w,w,w,w"))]
4732 && (INTVAL (operands[3]) == 0
4733 || INTVAL (operands[4]) == 0
4734 || (IN_RANGE (INTVAL (operands[3]), -2048, 2047)
4735 && IN_RANGE (INTVAL (operands[4]) - INTVAL (operands[3]), -2048, 2047)))"
4737 [(set_attr "length" "8,12,8,12,12")
4738 (set_attr "type" "multi")])
4741 [(set (match_operand:HI 0 "integer_register_operand" "")
4742 (if_then_else:HI (match_operator 1 "relational_operator"
4743 [(match_operand 2 "cc_operand" "")
4745 (match_operand:HI 3 "gpr_or_int_operand" "")
4746 (match_operand:HI 4 "gpr_or_int_operand" "")))
4747 (clobber (match_operand:CC_CCR 5 "cr_operand" ""))]
4750 "operands[6] = frv_split_cond_move (operands);")
4752 (define_expand "movsicc"
4753 [(set (match_operand:SI 0 "integer_register_operand" "")
4754 (if_then_else:SI (match_operand 1 "" "")
4755 (match_operand:SI 2 "gpr_or_int_operand" "")
4756 (match_operand:SI 3 "gpr_or_int_operand" "")))]
4760 if (!frv_emit_cond_move (operands[0], operands[1], operands[2], operands[3]))
4766 (define_insn "*movsicc_internal1_int"
4767 [(set (match_operand:SI 0 "integer_register_operand" "=d,d,d")
4768 (if_then_else:SI (match_operator 1 "integer_relational_operator"
4769 [(match_operand 2 "icc_operand" "t,t,t")
4771 (match_operand:SI 3 "reg_or_0_operand" "0,dO,dO")
4772 (match_operand:SI 4 "reg_or_0_operand" "dO,0,dO")))
4773 (clobber (match_operand:CC_CCR 5 "icr_operand" "=v,v,v"))]
4776 [(set_attr "length" "8,8,12")
4777 (set_attr "type" "multi")])
4779 (define_insn "*movsicc_internal1_float"
4780 [(set (match_operand:SI 0 "integer_register_operand" "=d,d,d")
4781 (if_then_else:SI (match_operator:CC_FP 1 "float_relational_operator"
4782 [(match_operand:CC_FP 2 "fcc_operand" "u,u,u")
4784 (match_operand:SI 3 "reg_or_0_operand" "0,dO,dO")
4785 (match_operand:SI 4 "reg_or_0_operand" "dO,0,dO")))
4786 (clobber (match_operand:CC_CCR 5 "fcr_operand" "=w,w,w"))]
4789 [(set_attr "length" "8,8,12")
4790 (set_attr "type" "multi")])
4792 (define_insn "*movsicc_internal2_int"
4793 [(set (match_operand:SI 0 "integer_register_operand" "=d,d,d,d,d")
4794 (if_then_else:SI (match_operator 1 "integer_relational_operator"
4795 [(match_operand 2 "icc_operand" "t,t,t,t,t")
4797 (match_operand:SI 3 "const_int_operand" "O,O,L,n,n")
4798 (match_operand:SI 4 "const_int_operand" "L,n,O,O,n")))
4799 (clobber (match_operand:CC_CCR 5 "icr_operand" "=v,v,v,v,v"))]
4800 "(INTVAL (operands[3]) == 0
4801 || INTVAL (operands[4]) == 0
4802 || (IN_RANGE (INTVAL (operands[3]), -2048, 2047)
4803 && IN_RANGE (INTVAL (operands[4]) - INTVAL (operands[3]), -2048, 2047)))"
4805 [(set_attr "length" "8,12,8,12,12")
4806 (set_attr "type" "multi")])
4808 (define_insn "*movsicc_internal2_float"
4809 [(set (match_operand:SI 0 "integer_register_operand" "=d,d,d,d,d")
4810 (if_then_else:SI (match_operator:CC_FP 1 "float_relational_operator"
4811 [(match_operand:CC_FP 2 "fcc_operand" "u,u,u,u,u")
4813 (match_operand:SI 3 "const_int_operand" "O,O,L,n,n")
4814 (match_operand:SI 4 "const_int_operand" "L,n,O,O,n")))
4815 (clobber (match_operand:CC_CCR 5 "fcr_operand" "=w,w,w,w,w"))]
4817 && (INTVAL (operands[3]) == 0
4818 || INTVAL (operands[4]) == 0
4819 || (IN_RANGE (INTVAL (operands[3]), -2048, 2047)
4820 && IN_RANGE (INTVAL (operands[4]) - INTVAL (operands[3]), -2048, 2047)))"
4822 [(set_attr "length" "8,12,8,12,12")
4823 (set_attr "type" "multi")])
4826 [(set (match_operand:SI 0 "integer_register_operand" "")
4827 (if_then_else:SI (match_operator 1 "relational_operator"
4828 [(match_operand 2 "cc_operand" "")
4830 (match_operand:SI 3 "gpr_or_int_operand" "")
4831 (match_operand:SI 4 "gpr_or_int_operand" "")))
4832 (clobber (match_operand:CC_CCR 5 "cr_operand" ""))]
4835 "operands[6] = frv_split_cond_move (operands);")
4837 (define_expand "movsfcc"
4838 [(set (match_operand:SF 0 "register_operand" "")
4839 (if_then_else:SF (match_operand 1 "" "")
4840 (match_operand:SF 2 "register_operand" "")
4841 (match_operand:SF 3 "register_operand" "")))]
4845 if (!frv_emit_cond_move (operands[0], operands[1], operands[2], operands[3]))
4851 (define_insn "*movsfcc_has_fprs_int"
4852 [(set (match_operand:SF 0 "register_operand" "=f,f,f,?f,?f,?d")
4853 (if_then_else:SF (match_operator 1 "integer_relational_operator"
4854 [(match_operand 2 "icc_operand" "t,t,t,t,t,t")
4856 (match_operand:SF 3 "register_operand" "0,f,f,f,d,fd")
4857 (match_operand:SF 4 "register_operand" "f,0,f,d,fd,fd")))
4858 (clobber (match_operand:CC_CCR 5 "icr_operand" "=v,v,v,v,v,v"))]
4861 [(set_attr "length" "8,8,12,12,12,12")
4862 (set_attr "type" "multi")])
4864 (define_insn "*movsfcc_hardfloat_float"
4865 [(set (match_operand:SF 0 "register_operand" "=f,f,f,?f,?f,?d")
4866 (if_then_else:SF (match_operator:CC_FP 1 "float_relational_operator"
4867 [(match_operand:CC_FP 2 "fcc_operand" "u,u,u,u,u,u")
4869 (match_operand:SF 3 "register_operand" "0,f,f,f,d,fd")
4870 (match_operand:SF 4 "register_operand" "f,0,f,d,fd,fd")))
4871 (clobber (match_operand:CC_CCR 5 "fcr_operand" "=w,w,w,w,w,w"))]
4874 [(set_attr "length" "8,8,12,12,12,12")
4875 (set_attr "type" "multi")])
4877 (define_insn "*movsfcc_no_fprs_int"
4878 [(set (match_operand:SF 0 "integer_register_operand" "=d,d,d")
4879 (if_then_else:SF (match_operator 1 "integer_relational_operator"
4880 [(match_operand 2 "icc_operand" "t,t,t")
4882 (match_operand:SF 3 "integer_register_operand" "0,d,d")
4883 (match_operand:SF 4 "integer_register_operand" "d,0,d")))
4884 (clobber (match_operand:CC_CCR 5 "icr_operand" "=v,v,v"))]
4887 [(set_attr "length" "8,8,12")
4888 (set_attr "type" "multi")])
4891 [(set (match_operand:SF 0 "register_operand" "")
4892 (if_then_else:SF (match_operator 1 "relational_operator"
4893 [(match_operand 2 "cc_operand" "")
4895 (match_operand:SF 3 "register_operand" "")
4896 (match_operand:SF 4 "register_operand" "")))
4897 (clobber (match_operand:CC_CCR 5 "cr_operand" ""))]
4900 "operands[6] = frv_split_cond_move (operands);")
4903 ;; ::::::::::::::::::::
4905 ;; :: Minimum, maximum, and integer absolute value
4907 ;; ::::::::::::::::::::
4909 ;; These 'instructions' are provided to give the compiler a slightly better
4910 ;; nudge at register allocation, then it would if it constructed the
4911 ;; instructions from basic building blocks (since it indicates it prefers one
4912 ;; of the operands to be the same as the destination. It also helps the
4913 ;; earlier passes of the compiler, by not breaking things into small basic
4916 (define_expand "abssi2"
4917 [(parallel [(set (match_operand:SI 0 "integer_register_operand" "")
4918 (abs:SI (match_operand:SI 1 "integer_register_operand" "")))
4919 (clobber (match_dup 2))
4920 (clobber (match_dup 3))])]
4924 operands[2] = gen_reg_rtx (CCmode);
4925 operands[3] = gen_reg_rtx (CC_CCRmode);
4928 (define_insn_and_split "*abssi2_internal"
4929 [(set (match_operand:SI 0 "integer_register_operand" "=d,d")
4930 (abs:SI (match_operand:SI 1 "integer_register_operand" "0,d")))
4931 (clobber (match_operand:CC 2 "icc_operand" "=t,t"))
4932 (clobber (match_operand:CC_CCR 3 "icr_operand" "=v,v"))]
4937 "operands[4] = frv_split_abs (operands);"
4938 [(set_attr "length" "12,16")
4939 (set_attr "type" "multi")])
4941 (define_expand "sminsi3"
4942 [(parallel [(set (match_operand:SI 0 "integer_register_operand" "")
4943 (smin:SI (match_operand:SI 1 "integer_register_operand" "")
4944 (match_operand:SI 2 "gpr_or_int10_operand" "")))
4945 (clobber (match_dup 3))
4946 (clobber (match_dup 4))])]
4950 operands[3] = gen_reg_rtx (CCmode);
4951 operands[4] = gen_reg_rtx (CC_CCRmode);
4954 (define_expand "smaxsi3"
4955 [(parallel [(set (match_operand:SI 0 "integer_register_operand" "")
4956 (smax:SI (match_operand:SI 1 "integer_register_operand" "")
4957 (match_operand:SI 2 "gpr_or_int10_operand" "")))
4958 (clobber (match_dup 3))
4959 (clobber (match_dup 4))])]
4963 operands[3] = gen_reg_rtx (CCmode);
4964 operands[4] = gen_reg_rtx (CC_CCRmode);
4967 (define_insn_and_split "*minmax_si_signed"
4968 [(set (match_operand:SI 0 "integer_register_operand" "=d,d,&d")
4969 (match_operator:SI 1 "minmax_operator"
4970 [(match_operand:SI 2 "integer_register_operand" "%0,dO,d")
4971 (match_operand:SI 3 "gpr_or_int10_operand" "dO,0,dJ")]))
4972 (clobber (match_operand:CC 4 "icc_operand" "=t,t,t"))
4973 (clobber (match_operand:CC_CCR 5 "icr_operand" "=v,v,v"))]
4978 "operands[6] = frv_split_minmax (operands);"
4979 [(set_attr "length" "12,12,16")
4980 (set_attr "type" "multi")])
4982 (define_expand "uminsi3"
4983 [(parallel [(set (match_operand:SI 0 "integer_register_operand" "")
4984 (umin:SI (match_operand:SI 1 "integer_register_operand" "")
4985 (match_operand:SI 2 "gpr_or_int10_operand" "")))
4986 (clobber (match_dup 3))
4987 (clobber (match_dup 4))])]
4991 operands[3] = gen_reg_rtx (CC_UNSmode);
4992 operands[4] = gen_reg_rtx (CC_CCRmode);
4995 (define_expand "umaxsi3"
4996 [(parallel [(set (match_operand:SI 0 "integer_register_operand" "")
4997 (umax:SI (match_operand:SI 1 "integer_register_operand" "")
4998 (match_operand:SI 2 "gpr_or_int10_operand" "")))
4999 (clobber (match_dup 3))
5000 (clobber (match_dup 4))])]
5004 operands[3] = gen_reg_rtx (CC_UNSmode);
5005 operands[4] = gen_reg_rtx (CC_CCRmode);
5008 (define_insn_and_split "*minmax_si_unsigned"
5009 [(set (match_operand:SI 0 "integer_register_operand" "=d,d,&d")
5010 (match_operator:SI 1 "minmax_operator"
5011 [(match_operand:SI 2 "integer_register_operand" "%0,dO,d")
5012 (match_operand:SI 3 "gpr_or_int10_operand" "dO,0,dJ")]))
5013 (clobber (match_operand:CC_UNS 4 "icc_operand" "=t,t,t"))
5014 (clobber (match_operand:CC_CCR 5 "icr_operand" "=v,v,v"))]
5019 "operands[6] = frv_split_minmax (operands);"
5020 [(set_attr "length" "12,12,16")
5021 (set_attr "type" "multi")])
5023 (define_expand "sminsf3"
5024 [(parallel [(set (match_operand:SF 0 "fpr_operand" "")
5025 (smin:SF (match_operand:SF 1 "fpr_operand" "")
5026 (match_operand:SF 2 "fpr_operand" "")))
5027 (clobber (match_dup 3))
5028 (clobber (match_dup 4))])]
5029 "TARGET_COND_MOVE && TARGET_HARD_FLOAT"
5032 operands[3] = gen_reg_rtx (CC_FPmode);
5033 operands[4] = gen_reg_rtx (CC_CCRmode);
5036 (define_expand "smaxsf3"
5037 [(parallel [(set (match_operand:SF 0 "fpr_operand" "")
5038 (smax:SF (match_operand:SF 1 "fpr_operand" "")
5039 (match_operand:SF 2 "fpr_operand" "")))
5040 (clobber (match_dup 3))
5041 (clobber (match_dup 4))])]
5042 "TARGET_COND_MOVE && TARGET_HARD_FLOAT"
5045 operands[3] = gen_reg_rtx (CC_FPmode);
5046 operands[4] = gen_reg_rtx (CC_CCRmode);
5049 (define_insn_and_split "*minmax_sf"
5050 [(set (match_operand:SF 0 "fpr_operand" "=f,f,f")
5051 (match_operator:SF 1 "minmax_operator"
5052 [(match_operand:SF 2 "fpr_operand" "%0,f,f")
5053 (match_operand:SF 3 "fpr_operand" "f,0,f")]))
5054 (clobber (match_operand:CC_FP 4 "fcc_operand" "=u,u,u"))
5055 (clobber (match_operand:CC_CCR 5 "fcr_operand" "=w,w,w"))]
5056 "TARGET_COND_MOVE && TARGET_HARD_FLOAT"
5060 "operands[6] = frv_split_minmax (operands);"
5061 [(set_attr "length" "12,12,16")
5062 (set_attr "type" "multi")])
5064 (define_expand "smindf3"
5065 [(parallel [(set (match_operand:DF 0 "fpr_operand" "")
5066 (smin:DF (match_operand:DF 1 "fpr_operand" "")
5067 (match_operand:DF 2 "fpr_operand" "")))
5068 (clobber (match_dup 3))
5069 (clobber (match_dup 4))])]
5070 "TARGET_COND_MOVE && TARGET_HARD_FLOAT && TARGET_DOUBLE"
5073 operands[3] = gen_reg_rtx (CC_FPmode);
5074 operands[4] = gen_reg_rtx (CC_CCRmode);
5077 (define_expand "smaxdf3"
5078 [(parallel [(set (match_operand:DF 0 "fpr_operand" "")
5079 (smax:DF (match_operand:DF 1 "fpr_operand" "")
5080 (match_operand:DF 2 "fpr_operand" "")))
5081 (clobber (match_dup 3))
5082 (clobber (match_dup 4))])]
5083 "TARGET_COND_MOVE && TARGET_HARD_FLOAT && TARGET_DOUBLE"
5086 operands[3] = gen_reg_rtx (CC_FPmode);
5087 operands[4] = gen_reg_rtx (CC_CCRmode);
5090 (define_insn_and_split "*minmax_df"
5091 [(set (match_operand:DF 0 "fpr_operand" "=f,f,f")
5092 (match_operator:DF 1 "minmax_operator"
5093 [(match_operand:DF 2 "fpr_operand" "%0,f,f")
5094 (match_operand:DF 3 "fpr_operand" "f,0,f")]))
5095 (clobber (match_operand:CC_FP 4 "fcc_operand" "=u,u,u"))
5096 (clobber (match_operand:CC_CCR 5 "fcr_operand" "=w,w,w"))]
5097 "TARGET_COND_MOVE && TARGET_HARD_FLOAT && TARGET_DOUBLE"
5101 "operands[6] = frv_split_minmax (operands);"
5102 [(set_attr "length" "12,12,16")
5103 (set_attr "type" "multi")])
5106 ;; ::::::::::::::::::::
5108 ;; :: Call and branch instructions
5110 ;; ::::::::::::::::::::
5112 ;; Subroutine call instruction returning no value. Operand 0 is the function
5113 ;; to call; operand 1 is the number of bytes of arguments pushed (in mode
5114 ;; `SImode', except it is normally a `const_int'); operand 2 is the number of
5115 ;; registers used as operands.
5117 ;; On most machines, operand 2 is not actually stored into the RTL pattern. It
5118 ;; is supplied for the sake of some RISC machines which need to put this
5119 ;; information into the assembler code; they can put it in the RTL instead of
5122 (define_expand "call"
5123 [(use (match_operand:QI 0 "" ""))
5124 (use (match_operand 1 "" ""))
5125 (use (match_operand 2 "" ""))
5126 (use (match_operand 3 "" ""))]
5130 rtx lr = gen_rtx_REG (Pmode, LR_REGNO);
5133 gcc_assert (GET_CODE (operands[0]) == MEM);
5135 addr = XEXP (operands[0], 0);
5136 if (! call_operand (addr, Pmode))
5137 addr = force_reg (Pmode, addr);
5140 operands[2] = const0_rtx;
5143 frv_expand_fdpic_call (operands, false, false);
5145 emit_call_insn (gen_call_internal (addr, operands[1], operands[2], lr));
5150 (define_insn "call_internal"
5151 [(call (mem:QI (match_operand:SI 0 "call_operand" "S,dNOP"))
5152 (match_operand 1 "" ""))
5153 (use (match_operand 2 "" ""))
5154 (clobber (match_operand:SI 3 "lr_operand" "=l,l"))]
5159 [(set_attr "length" "4")
5160 (set_attr "type" "call,jumpl")])
5162 ;; The odd use of GR0 within the UNSPEC below prevents cseing or
5163 ;; hoisting function descriptor loads out of loops. This is almost
5164 ;; never desirable, since if we preserve the function descriptor in a
5165 ;; pair of registers, it takes two insns to move it to gr14/gr15, and
5166 ;; if it's in the stack, we just waste space with the store, since
5167 ;; we'll have to load back from memory anyway. And, in the worst
5168 ;; case, we may end up reusing a function descriptor still pointing at
5169 ;; a PLT entry, instead of to the resolved function, which means going
5170 ;; through the resolver for every call that uses the outdated value.
5173 ;; The explicit MEM inside the SPEC prevents the compiler from moving
5174 ;; the load before a branch after a NULL test, or before a store that
5175 ;; initializes a function descriptor.
5177 (define_insn "movdi_ldd"
5178 [(set (match_operand:DI 0 "fdpic_fptr_operand" "=e")
5179 (unspec:DI [(mem:DI (match_operand:SI 1 "ldd_address_operand" "p"))
5180 (reg:SI 0)] UNSPEC_LDD))]
5183 [(set_attr "length" "4")
5184 (set_attr "type" "gload")])
5186 (define_insn "call_fdpicdi"
5187 [(call (mem:QI (match_operand:DI 0 "fdpic_fptr_operand" "W"))
5188 (match_operand 1 "" ""))
5189 (clobber (match_operand:SI 2 "lr_operand" "=l"))]
5192 [(set_attr "length" "4")
5193 (set_attr "type" "jumpl")])
5195 (define_insn "call_fdpicsi"
5196 [(call (mem:QI (match_operand:SI 0 "call_operand" "S,dNOP"))
5197 (match_operand 1 "" ""))
5198 (use (match_operand 2 "" ""))
5199 (use (match_operand:SI 3 "fdpic_operand" "Z,Z"))
5200 (clobber (match_operand:SI 4 "lr_operand" "=l,l"))]
5205 [(set_attr "length" "4")
5206 (set_attr "type" "call,jumpl")])
5208 (define_expand "sibcall"
5209 [(use (match_operand:QI 0 "" ""))
5210 (use (match_operand 1 "" ""))
5211 (use (match_operand 2 "" ""))
5212 (use (match_operand 3 "" ""))]
5218 gcc_assert (GET_CODE (operands[0]) == MEM);
5220 addr = XEXP (operands[0], 0);
5221 if (! sibcall_operand (addr, Pmode))
5222 addr = force_reg (Pmode, addr);
5225 operands[2] = const0_rtx;
5228 frv_expand_fdpic_call (operands, false, true);
5230 emit_call_insn (gen_sibcall_internal (addr, operands[1], operands[2]));
5235 ;; It might seem that these sibcall patterns are missing references to
5236 ;; LR, but they're not necessary because sibcall_epilogue will make
5237 ;; sure LR is restored, and having LR here will set
5238 ;; regs_ever_used[REG_LR], forcing it to be saved on the stack, and
5239 ;; then restored in sibcalls and regular return code paths, even if
5240 ;; the function becomes a leaf function after tail-call elimination.
5242 ;; We must not use a call-saved register here. `W' limits ourselves
5243 ;; to gr14 or gr15, but since we're almost running out of constraint
5244 ;; letters, and most other call-clobbered registers are often used for
5245 ;; argument-passing, this will do.
5246 (define_insn "sibcall_internal"
5247 [(call (mem:QI (match_operand:SI 0 "sibcall_operand" "WNOP"))
5248 (match_operand 1 "" ""))
5249 (use (match_operand 2 "" ""))
5253 [(set_attr "length" "4")
5254 (set_attr "type" "jumpl")])
5256 (define_insn "sibcall_fdpicdi"
5257 [(call (mem:QI (match_operand:DI 0 "fdpic_fptr_operand" "W"))
5258 (match_operand 1 "" ""))
5262 [(set_attr "length" "4")
5263 (set_attr "type" "jumpl")])
5266 ;; Subroutine call instruction returning a value. Operand 0 is the hard
5267 ;; register in which the value is returned. There are three more operands, the
5268 ;; same as the three operands of the `call' instruction (but with numbers
5269 ;; increased by one).
5271 ;; Subroutines that return `BLKmode' objects use the `call' insn.
5273 (define_expand "call_value"
5274 [(use (match_operand 0 "" ""))
5275 (use (match_operand:QI 1 "" ""))
5276 (use (match_operand 2 "" ""))
5277 (use (match_operand 3 "" ""))
5278 (use (match_operand 4 "" ""))]
5282 rtx lr = gen_rtx_REG (Pmode, LR_REGNO);
5285 gcc_assert (GET_CODE (operands[1]) == MEM);
5287 addr = XEXP (operands[1], 0);
5288 if (! call_operand (addr, Pmode))
5289 addr = force_reg (Pmode, addr);
5292 operands[3] = const0_rtx;
5295 frv_expand_fdpic_call (operands, true, false);
5297 emit_call_insn (gen_call_value_internal (operands[0], addr, operands[2],
5303 (define_insn "call_value_internal"
5304 [(set (match_operand 0 "register_operand" "=d,d")
5305 (call (mem:QI (match_operand:SI 1 "call_operand" "S,dNOP"))
5306 (match_operand 2 "" "")))
5307 (use (match_operand 3 "" ""))
5308 (clobber (match_operand:SI 4 "lr_operand" "=l,l"))]
5313 [(set_attr "length" "4")
5314 (set_attr "type" "call,jumpl")])
5316 (define_insn "call_value_fdpicdi"
5317 [(set (match_operand 0 "register_operand" "=d")
5318 (call (mem:QI (match_operand:DI 1 "fdpic_fptr_operand" "W"))
5319 (match_operand 2 "" "")))
5320 (clobber (match_operand:SI 3 "lr_operand" "=l"))]
5323 [(set_attr "length" "4")
5324 (set_attr "type" "jumpl")])
5326 (define_insn "call_value_fdpicsi"
5327 [(set (match_operand 0 "register_operand" "=d,d")
5328 (call (mem:QI (match_operand:SI 1 "call_operand" "S,dNOP"))
5329 (match_operand 2 "" "")))
5330 (use (match_operand 3 "" ""))
5331 (use (match_operand:SI 4 "fdpic_operand" "Z,Z"))
5332 (clobber (match_operand:SI 5 "lr_operand" "=l,l"))]
5337 [(set_attr "length" "4")
5338 (set_attr "type" "call,jumpl")])
5340 (define_expand "sibcall_value"
5341 [(use (match_operand 0 "" ""))
5342 (use (match_operand:QI 1 "" ""))
5343 (use (match_operand 2 "" ""))
5344 (use (match_operand 3 "" ""))
5345 (use (match_operand 4 "" ""))]
5351 gcc_assert (GET_CODE (operands[1]) == MEM);
5353 addr = XEXP (operands[1], 0);
5354 if (! sibcall_operand (addr, Pmode))
5355 addr = force_reg (Pmode, addr);
5358 operands[3] = const0_rtx;
5361 frv_expand_fdpic_call (operands, true, true);
5363 emit_call_insn (gen_sibcall_value_internal (operands[0], addr, operands[2],
5368 (define_insn "sibcall_value_internal"
5369 [(set (match_operand 0 "register_operand" "=d")
5370 (call (mem:QI (match_operand:SI 1 "sibcall_operand" "WNOP"))
5371 (match_operand 2 "" "")))
5372 (use (match_operand 3 "" ""))
5376 [(set_attr "length" "4")
5377 (set_attr "type" "jumpl")])
5379 (define_insn "sibcall_value_fdpicdi"
5380 [(set (match_operand 0 "register_operand" "=d")
5381 (call (mem:QI (match_operand:DI 1 "fdpic_fptr_operand" "W"))
5382 (match_operand 2 "" "")))
5386 [(set_attr "length" "4")
5387 (set_attr "type" "jumpl")])
5389 ;; return instruction generated instead of jmp to epilog
5390 (define_expand "return"
5391 [(parallel [(return)
5393 (use (const_int 1))])]
5394 "direct_return_p ()"
5397 operands[0] = gen_rtx_REG (Pmode, LR_REGNO);
5400 ;; return instruction generated by the epilogue
5401 (define_expand "epilogue_return"
5402 [(parallel [(return)
5403 (use (match_operand:SI 0 "register_operand" ""))
5404 (use (const_int 0))])]
5408 (define_insn "*return_internal"
5410 (use (match_operand:SI 0 "register_operand" "l,d"))
5411 (use (match_operand:SI 1 "immediate_operand" "n,n"))]
5416 [(set_attr "length" "4")
5417 (set_attr "type" "jump,jumpl")])
5419 (define_insn "*return_true"
5421 (if_then_else (match_operator 0 "integer_relational_operator"
5422 [(match_operand 1 "icc_operand" "t")
5426 "direct_return_p ()"
5428 [(set_attr "length" "4")
5429 (set_attr "type" "jump")])
5431 (define_insn "*return_false"
5433 (if_then_else (match_operator 0 "integer_relational_operator"
5434 [(match_operand 1 "icc_operand" "t")
5438 "direct_return_p ()"
5440 [(set_attr "length" "4")
5441 (set_attr "type" "jump")])
5443 ;; A version of addsi3 for deallocating stack space at the end of the
5444 ;; epilogue. The addition is done in parallel with an (unspec_volatile),
5445 ;; which represents the clobbering of the deallocated space.
5446 (define_insn "stack_adjust"
5447 [(set (match_operand:SI 0 "register_operand" "=d")
5448 (plus:SI (match_operand:SI 1 "register_operand" "d")
5449 (match_operand:SI 2 "general_operand" "dNOP")))
5450 (unspec_volatile [(const_int 0)] UNSPEC_STACK_ADJUST)]
5453 [(set_attr "length" "4")
5454 (set_attr "type" "int")])
5456 ;; Normal unconditional jump
5458 ;; Use the "call" instruction for long branches, but prefer to use "bra" for
5459 ;; short ones since it does not force us to save the link register.
5461 ;; This define_insn uses the branch-shortening code to decide which
5462 ;; instruction it emits. Since the main branch-shortening interface is
5463 ;; through get_attr_length(), the two alternatives must be given different
5464 ;; lengths. Here we pretend that the far jump is 8 rather than 4 bytes
5465 ;; long, though both alternatives are really the same size.
5467 [(set (pc) (label_ref (match_operand 0 "" "")))]
5471 if (get_attr_length (insn) == 4)
5474 return \"call %l0\";
5476 [(set (attr "length")
5478 (and (ge (minus (match_dup 0) (pc)) (const_int -32768))
5479 (le (minus (match_dup 0) (pc)) (const_int 32764)))
5482 (set (attr "far_jump")
5484 (eq_attr "length" "4")
5486 (const_string "yes")))
5489 (eq_attr "length" "4")
5490 (const_string "jump")
5491 (const_string "call")))])
5493 ;; Indirect jump through a register
5494 (define_insn "indirect_jump"
5495 [(set (pc) (match_operand:SI 0 "register_operand" "d,l"))]
5500 [(set_attr "length" "4")
5501 (set_attr "type" "jumpl,branch")])
5503 ;; Instruction to jump to a variable address. This is a low-level capability
5504 ;; which can be used to implement a dispatch table when there is no `casesi'
5505 ;; pattern. Either the 'casesi' pattern or the 'tablejump' pattern, or both,
5506 ;; MUST be present in this file.
5508 ;; This pattern requires two operands: the address or offset, and a label which
5509 ;; should immediately precede the jump table. If the macro
5510 ;; `CASE_VECTOR_PC_RELATIVE' is defined then the first operand is an offset
5511 ;; which counts from the address of the table; otherwise, it is an absolute
5512 ;; address to jump to. In either case, the first operand has mode `Pmode'.
5514 ;; The `tablejump' insn is always the last insn before the jump table it uses.
5515 ;; Its assembler code normally has no need to use the second operand, but you
5516 ;; should incorporate it in the RTL pattern so that the jump optimizer will not
5517 ;; delete the table as unreachable code.
5519 (define_expand "tablejump"
5520 [(parallel [(set (pc) (match_operand:SI 0 "address_operand" "p"))
5521 (use (label_ref (match_operand 1 "" "")))])]
5525 (define_insn "tablejump_insn"
5526 [(set (pc) (match_operand:SI 0 "address_operand" "p"))
5527 (use (label_ref (match_operand 1 "" "")))]
5530 [(set_attr "length" "4")
5531 (set_attr "type" "jumpl")])
5533 ;; Implement switch statements when generating PIC code. Switches are
5534 ;; implemented by `tablejump' when not using -fpic.
5536 ;; Emit code here to do the range checking and make the index zero based.
5537 ;; operand 0 is the index
5538 ;; operand 1 is the lower bound
5539 ;; operand 2 is the range of indices (highest - lowest + 1)
5540 ;; operand 3 is the label that precedes the table itself
5541 ;; operand 4 is the fall through label
5543 (define_expand "casesi"
5544 [(use (match_operand:SI 0 "integer_register_operand" ""))
5545 (use (match_operand:SI 1 "const_int_operand" ""))
5546 (use (match_operand:SI 2 "const_int_operand" ""))
5547 (use (match_operand 3 "" ""))
5548 (use (match_operand 4 "" ""))]
5554 rtx low = operands[1];
5555 rtx range = operands[2];
5556 rtx table = operands[3];
5558 rtx fail = operands[4];
5563 gcc_assert (GET_CODE (operands[1]) == CONST_INT);
5565 gcc_assert (GET_CODE (operands[2]) == CONST_INT);
5567 /* If we can't generate an immediate instruction, promote to register. */
5568 if (! IN_RANGE (INTVAL (range), -2048, 2047))
5569 range = force_reg (SImode, range);
5571 /* If low bound is 0, we don't have to subtract it. */
5572 if (INTVAL (operands[1]) == 0)
5576 indx = gen_reg_rtx (SImode);
5577 if (IN_RANGE (INTVAL (low), -2047, 2048))
5578 emit_insn (gen_addsi3 (indx, operands[0], GEN_INT (- INTVAL (low))));
5580 emit_insn (gen_subsi3 (indx, operands[0], force_reg (SImode, low)));
5583 /* Do an unsigned comparison (in the proper mode) between the index
5584 expression and the value which represents the length of the range.
5585 Since we just finished subtracting the lower bound of the range
5586 from the index expression, this comparison allows us to simultaneously
5587 check that the original index expression value is both greater than
5588 or equal to the minimum value of the range and less than or equal to
5589 the maximum value of the range. */
5591 emit_cmp_and_jump_insns (indx, range, GTU, NULL_RTX, SImode, 1, fail);
5593 /* Move the table address to a register. */
5594 treg = gen_reg_rtx (Pmode);
5595 emit_insn (gen_movsi (treg, gen_rtx_LABEL_REF (VOIDmode, table)));
5597 /* Scale index-low by wordsize. */
5598 scale = gen_reg_rtx (SImode);
5599 emit_insn (gen_ashlsi3 (scale, indx, const2_rtx));
5601 /* Load the address, add the start of the table back in,
5603 mem = gen_rtx_MEM (SImode, gen_rtx_PLUS (Pmode, scale, treg));
5604 reg2 = gen_reg_rtx (SImode);
5605 reg3 = gen_reg_rtx (SImode);
5606 emit_insn (gen_movsi (reg2, mem));
5607 emit_insn (gen_addsi3 (reg3, reg2, treg));
5608 emit_jump_insn (gen_tablejump_insn (reg3, table));
5613 ;; ::::::::::::::::::::
5615 ;; :: Prologue and Epilogue instructions
5617 ;; ::::::::::::::::::::
5619 ;; Called after register allocation to add any instructions needed for the
5620 ;; prologue. Using a prologue insn is favored compared to putting all of the
5621 ;; instructions in the FUNCTION_PROLOGUE macro, since it allows the scheduler
5622 ;; to intermix instructions with the saves of the caller saved registers. In
5623 ;; some cases, it might be necessary to emit a barrier instruction as the last
5624 ;; insn to prevent such scheduling.
5625 (define_expand "prologue"
5630 frv_expand_prologue ();
5634 ;; Called after register allocation to add any instructions needed for the
5635 ;; epilogue. Using an epilogue insn is favored compared to putting all of the
5636 ;; instructions in the FUNCTION_EPILOGUE macro, since it allows the scheduler
5637 ;; to intermix instructions with the restores of the caller saved registers.
5638 ;; In some cases, it might be necessary to emit a barrier instruction as the
5639 ;; first insn to prevent such scheduling.
5640 (define_expand "epilogue"
5645 frv_expand_epilogue (true);
5649 ;; This pattern, if defined, emits RTL for exit from a function without the final
5650 ;; branch back to the calling function. This pattern will be emitted before any
5651 ;; sibling call (aka tail call) sites.
5653 ;; The sibcall_epilogue pattern must not clobber any arguments used for
5654 ;; parameter passing or any stack slots for arguments passed to the current
5656 (define_expand "sibcall_epilogue"
5661 frv_expand_epilogue (false);
5665 ;; Set up the pic register to hold the address of the pic table
5666 (define_insn "pic_prologue"
5667 [(set (match_operand:SI 0 "integer_register_operand" "=d")
5668 (unspec_volatile:SI [(const_int 0)] UNSPEC_PIC_PROLOGUE))
5669 (clobber (match_operand:SI 1 "lr_operand" "=l"))
5670 (clobber (match_operand:SI 2 "integer_register_operand" "=d"))]
5674 static int frv_pic_labelno = 0;
5676 operands[3] = GEN_INT (frv_pic_labelno++);
5677 return \"call %P3\\n%P3:\;movsg %1, %0\;sethi #gprelhi(%P3), %2\;setlo #gprello(%P3), %2\;sub %0,%2,%0\";
5679 [(set_attr "length" "16")
5680 (set_attr "type" "multi")])
5682 ;; ::::::::::::::::::::
5684 ;; :: Miscellaneous instructions
5686 ;; ::::::::::::::::::::
5688 ;; No operation, needed in case the user uses -g but not -O.
5693 [(set_attr "length" "4")
5694 (set_attr "type" "int")])
5700 [(set_attr "length" "4")
5701 (set_attr "type" "fnop")])
5707 [(set_attr "length" "4")
5708 (set_attr "type" "mnop")])
5710 ;; Pseudo instruction that prevents the scheduler from moving code above this
5711 ;; point. Note, type unknown is used to make sure the VLIW instructions are
5712 ;; not continued past this point.
5713 (define_insn "blockage"
5714 [(unspec_volatile [(const_int 0)] UNSPEC_BLOCKAGE)]
5717 [(set_attr "length" "0")
5718 (set_attr "type" "unknown")])
5720 ;; ::::::::::::::::::::
5722 ;; :: Media instructions
5724 ;; ::::::::::::::::::::
5726 ;; Unimplemented instructions:
5730 [(UNSPEC_MLOGIC 100)
5737 (UNSPEC_MUNPACKH 107)
5738 (UNSPEC_MDPACKH 108)
5743 (UNSPEC_MEXPDHW 113)
5744 (UNSPEC_MEXPDHD 114)
5751 (UNSPEC_MQMULXH 121)
5757 (UNSPEC_MRDACCG 127)
5759 (UNSPEC_MWTACCG 129)
5761 (UNSPEC_MCLRACC 131)
5762 (UNSPEC_MCLRACCA 132)
5765 (UNSPEC_MDUNPACKH 135)
5766 (UNSPEC_MDUNPACKH_INTERNAL 136)
5768 (UNSPEC_MBTOHE_INTERNAL 138)
5770 (UNSPEC_MBTOHE_INTERNAL 138)
5771 (UNSPEC_MQMACH2 139)
5772 (UNSPEC_MADDACC 140)
5773 (UNSPEC_MDADDACC 141)
5775 (UNSPEC_MDROTLI 143)
5778 (UNSPEC_MDCUTSSI 146)
5779 (UNSPEC_MQSATHS 147)
5780 (UNSPEC_MHSETLOS 148)
5781 (UNSPEC_MHSETLOH 149)
5782 (UNSPEC_MHSETHIS 150)
5783 (UNSPEC_MHSETHIH 151)
5784 (UNSPEC_MHDSETS 152)
5785 (UNSPEC_MHDSETH 153)
5786 (UNSPEC_MQLCLRHS 154)
5787 (UNSPEC_MQLMTHS 155)
5788 (UNSPEC_MQSLLHI 156)
5789 (UNSPEC_MQSRAHI 157)
5790 (UNSPEC_MASACCS 158)
5791 (UNSPEC_MDASACCS 159)
5794 ;; Logic operations: type "mlogic"
5796 (define_expand "mand"
5797 [(set (match_operand:SI 0 "fpr_operand" "")
5798 (unspec:SI [(match_operand:SI 1 "fpr_operand" "")
5799 (match_operand:SI 2 "fpr_operand" "")
5803 "operands[3] = GEN_INT (FRV_BUILTIN_MAND);")
5805 (define_expand "mor"
5806 [(set (match_operand:SI 0 "fpr_operand" "")
5807 (unspec:SI [(match_operand:SI 1 "fpr_operand" "")
5808 (match_operand:SI 2 "fpr_operand" "")
5812 "operands[3] = GEN_INT (FRV_BUILTIN_MOR);")
5814 (define_expand "mxor"
5815 [(set (match_operand:SI 0 "fpr_operand" "")
5816 (unspec:SI [(match_operand:SI 1 "fpr_operand" "")
5817 (match_operand:SI 2 "fpr_operand" "")
5821 "operands[3] = GEN_INT (FRV_BUILTIN_MXOR);")
5823 (define_insn "*mlogic"
5824 [(set (match_operand:SI 0 "fpr_operand" "=f")
5825 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
5826 (match_operand:SI 2 "fpr_operand" "f")
5827 (match_operand:SI 3 "const_int_operand" "n")]
5832 switch (INTVAL (operands[3]))
5835 case FRV_BUILTIN_MAND: return \"mand %1, %2, %0\";
5836 case FRV_BUILTIN_MOR: return \"mor %1, %2, %0\";
5837 case FRV_BUILTIN_MXOR: return \"mxor %1, %2, %0\";
5840 fatal_insn (\"Bad media insn, mlogic\", insn);
5842 [(set_attr "length" "4")
5843 (set_attr "type" "mlogic")])
5845 (define_insn "*cond_exec_mlogic"
5847 (match_operator 0 "ccr_eqne_operator"
5848 [(match_operand 1 "cr_operand" "C")
5850 (set (match_operand:SI 2 "fpr_operand" "=f")
5851 (unspec:SI [(match_operand:SI 3 "fpr_operand" "f")
5852 (match_operand:SI 4 "fpr_operand" "f")
5853 (match_operand:SI 5 "const_int_operand" "n")]
5858 switch (INTVAL (operands[5]))
5861 case FRV_BUILTIN_MAND: return \"cmand %3, %4, %2, %1, %e0\";
5862 case FRV_BUILTIN_MOR: return \"cmor %3, %4, %2, %1, %e0\";
5863 case FRV_BUILTIN_MXOR: return \"cmxor %3, %4, %2, %1, %e0\";
5866 fatal_insn (\"Bad media insn, cond_exec_mlogic\", insn);
5868 [(set_attr "length" "4")
5869 (set_attr "type" "mlogic")])
5871 ;; Logical not: type "mlogic"
5874 [(set (match_operand:SI 0 "fpr_operand" "=f")
5875 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")] UNSPEC_MNOT))]
5878 [(set_attr "length" "4")
5879 (set_attr "type" "mlogic")])
5881 (define_insn "*cond_exec_mnot"
5883 (match_operator 0 "ccr_eqne_operator"
5884 [(match_operand 1 "cr_operand" "C")
5886 (set (match_operand:SI 2 "fpr_operand" "=f")
5887 (unspec:SI [(match_operand:SI 3 "fpr_operand" "f")] UNSPEC_MNOT)))]
5889 "cmnot %3, %2, %1, %e0"
5890 [(set_attr "length" "4")
5891 (set_attr "type" "mlogic")])
5893 ;; Dual average (halfword): type "maveh"
5895 (define_insn "maveh"
5896 [(set (match_operand:SI 0 "fpr_operand" "=f")
5897 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
5898 (match_operand:SI 2 "fpr_operand" "f")]
5902 [(set_attr "length" "4")
5903 (set_attr "type" "maveh")])
5905 ;; Dual saturation (halfword): type "msath"
5907 (define_expand "msaths"
5908 [(set (match_operand:SI 0 "fpr_operand" "=f")
5909 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
5910 (match_operand:SI 2 "fpr_operand" "f")
5914 "operands[3] = GEN_INT (FRV_BUILTIN_MSATHS);")
5916 (define_expand "msathu"
5917 [(set (match_operand:SI 0 "fpr_operand" "=f")
5918 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
5919 (match_operand:SI 2 "fpr_operand" "f")
5923 "operands[3] = GEN_INT (FRV_BUILTIN_MSATHU);")
5925 (define_insn "*msath"
5926 [(set (match_operand:SI 0 "fpr_operand" "=f")
5927 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
5928 (match_operand:SI 2 "fpr_operand" "f")
5929 (match_operand:SI 3 "const_int_operand" "n")]
5934 switch (INTVAL (operands[3]))
5937 case FRV_BUILTIN_MSATHS: return \"msaths %1, %2, %0\";
5938 case FRV_BUILTIN_MSATHU: return \"msathu %1, %2, %0\";
5941 fatal_insn (\"Bad media insn, msath\", insn);
5943 [(set_attr "length" "4")
5944 (set_attr "type" "msath")])
5946 ;; Dual addition/subtraction with saturation (halfword): type "maddh"
5948 (define_expand "maddhss"
5949 [(set (match_operand:SI 0 "fpr_operand" "=f")
5950 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
5951 (match_operand:SI 2 "fpr_operand" "f")
5955 "operands[3] = GEN_INT (FRV_BUILTIN_MADDHSS);")
5957 (define_expand "maddhus"
5958 [(set (match_operand:SI 0 "fpr_operand" "=f")
5959 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
5960 (match_operand:SI 2 "fpr_operand" "f")
5964 "operands[3] = GEN_INT (FRV_BUILTIN_MADDHUS);")
5966 (define_expand "msubhss"
5967 [(set (match_operand:SI 0 "fpr_operand" "=f")
5968 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
5969 (match_operand:SI 2 "fpr_operand" "f")
5973 "operands[3] = GEN_INT (FRV_BUILTIN_MSUBHSS);")
5975 (define_expand "msubhus"
5976 [(set (match_operand:SI 0 "fpr_operand" "=f")
5977 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
5978 (match_operand:SI 2 "fpr_operand" "f")
5982 "operands[3] = GEN_INT (FRV_BUILTIN_MSUBHUS);")
5984 (define_insn "*maddh"
5985 [(set (match_operand:SI 0 "fpr_operand" "=f")
5986 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
5987 (match_operand:SI 2 "fpr_operand" "f")
5988 (match_operand:SI 3 "const_int_operand" "n")]
5993 switch (INTVAL (operands[3]))
5996 case FRV_BUILTIN_MADDHSS: return \"maddhss %1, %2, %0\";
5997 case FRV_BUILTIN_MADDHUS: return \"maddhus %1, %2, %0\";
5998 case FRV_BUILTIN_MSUBHSS: return \"msubhss %1, %2, %0\";
5999 case FRV_BUILTIN_MSUBHUS: return \"msubhus %1, %2, %0\";
6002 fatal_insn (\"Bad media insn, maddh\", insn);
6004 [(set_attr "length" "4")
6005 (set_attr "type" "maddh")])
6007 (define_insn "*cond_exec_maddh"
6009 (match_operator 0 "ccr_eqne_operator"
6010 [(match_operand 1 "cr_operand" "C")
6012 (set (match_operand:SI 2 "fpr_operand" "=f")
6013 (unspec:SI [(match_operand:SI 3 "fpr_operand" "f")
6014 (match_operand:SI 4 "fpr_operand" "f")
6015 (match_operand:SI 5 "const_int_operand" "n")]
6020 switch (INTVAL (operands[5]))
6023 case FRV_BUILTIN_MADDHSS: return \"cmaddhss %3, %4, %2, %1, %e0\";
6024 case FRV_BUILTIN_MADDHUS: return \"cmaddhus %3, %4, %2, %1, %e0\";
6025 case FRV_BUILTIN_MSUBHSS: return \"cmsubhss %3, %4, %2, %1, %e0\";
6026 case FRV_BUILTIN_MSUBHUS: return \"cmsubhus %3, %4, %2, %1, %e0\";
6029 fatal_insn (\"Bad media insn, cond_exec_maddh\", insn);
6031 [(set_attr "length" "4")
6032 (set_attr "type" "maddh")])
6034 ;; Quad addition/subtraction with saturation (halfword): type "mqaddh"
6036 (define_expand "mqaddhss"
6037 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
6038 (unspec:DI [(match_operand:DI 1 "even_fpr_operand" "h")
6039 (match_operand:DI 2 "even_fpr_operand" "h")
6043 "operands[3] = GEN_INT (FRV_BUILTIN_MQADDHSS);")
6045 (define_expand "mqaddhus"
6046 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
6047 (unspec:DI [(match_operand:DI 1 "even_fpr_operand" "h")
6048 (match_operand:DI 2 "even_fpr_operand" "h")
6052 "operands[3] = GEN_INT (FRV_BUILTIN_MQADDHUS);")
6054 (define_expand "mqsubhss"
6055 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
6056 (unspec:DI [(match_operand:DI 1 "even_fpr_operand" "h")
6057 (match_operand:DI 2 "even_fpr_operand" "h")
6061 "operands[3] = GEN_INT (FRV_BUILTIN_MQSUBHSS);")
6063 (define_expand "mqsubhus"
6064 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
6065 (unspec:DI [(match_operand:DI 1 "even_fpr_operand" "h")
6066 (match_operand:DI 2 "even_fpr_operand" "h")
6070 "operands[3] = GEN_INT (FRV_BUILTIN_MQSUBHUS);")
6072 (define_insn "*mqaddh"
6073 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
6074 (unspec:DI [(match_operand:DI 1 "even_fpr_operand" "h")
6075 (match_operand:DI 2 "even_fpr_operand" "h")
6076 (match_operand:SI 3 "const_int_operand" "n")]
6081 switch (INTVAL (operands[3]))
6084 case FRV_BUILTIN_MQADDHSS: return \"mqaddhss %1, %2, %0\";
6085 case FRV_BUILTIN_MQADDHUS: return \"mqaddhus %1, %2, %0\";
6086 case FRV_BUILTIN_MQSUBHSS: return \"mqsubhss %1, %2, %0\";
6087 case FRV_BUILTIN_MQSUBHUS: return \"mqsubhus %1, %2, %0\";
6090 fatal_insn (\"Bad media insn, mqaddh\", insn);
6092 [(set_attr "length" "4")
6093 (set_attr "type" "mqaddh")])
6095 (define_insn "*cond_exec_mqaddh"
6097 (match_operator 0 "ccr_eqne_operator"
6098 [(match_operand 1 "cr_operand" "C")
6100 (set (match_operand:DI 2 "even_fpr_operand" "=h")
6101 (unspec:DI [(match_operand:DI 3 "even_fpr_operand" "h")
6102 (match_operand:DI 4 "even_fpr_operand" "h")
6103 (match_operand:SI 5 "const_int_operand" "n")]
6108 switch (INTVAL (operands[5]))
6111 case FRV_BUILTIN_MQADDHSS: return \"cmqaddhss %3, %4, %2, %1, %e0\";
6112 case FRV_BUILTIN_MQADDHUS: return \"cmqaddhus %3, %4, %2, %1, %e0\";
6113 case FRV_BUILTIN_MQSUBHSS: return \"cmqsubhss %3, %4, %2, %1, %e0\";
6114 case FRV_BUILTIN_MQSUBHUS: return \"cmqsubhus %3, %4, %2, %1, %e0\";
6117 fatal_insn (\"Bad media insn, cond_exec_mqaddh\", insn);
6119 [(set_attr "length" "4")
6120 (set_attr "type" "mqaddh")])
6122 ;; Pack halfword: type "mpackh"
6124 (define_insn "mpackh"
6125 [(set (match_operand:SI 0 "fpr_operand" "=f")
6126 (unspec:SI [(match_operand:HI 1 "fpr_operand" "f")
6127 (match_operand:HI 2 "fpr_operand" "f")]
6131 [(set_attr "length" "4")
6132 (set_attr "type" "mpackh")])
6134 ;; Unpack halfword: type "mpackh"
6136 (define_insn "munpackh"
6137 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
6138 (unspec:DI [(match_operand:SI 1 "fpr_operand" "f")]
6142 [(set_attr "length" "4")
6143 (set_attr "type" "munpackh")])
6145 ;; Dual pack halfword: type "mdpackh"
6147 (define_insn "mdpackh"
6148 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
6149 (unspec:DI [(match_operand:DI 1 "even_fpr_operand" "h")
6150 (match_operand:DI 2 "even_fpr_operand" "h")]
6153 "mdpackh %1, %2, %0"
6154 [(set_attr "length" "4")
6155 (set_attr "type" "mdpackh")])
6157 ;; Byte-halfword conversion: type "mbhconv"
6159 (define_insn "mbtoh"
6160 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
6161 (unspec:DI [(match_operand:SI 1 "fpr_operand" "f")]
6165 [(set_attr "length" "4")
6166 (set_attr "type" "mbhconv")])
6168 (define_insn "*cond_exec_mbtoh"
6170 (match_operator 0 "ccr_eqne_operator"
6171 [(match_operand 1 "cr_operand" "C")
6173 (set (match_operand:DI 2 "even_fpr_operand" "=h")
6174 (unspec:DI [(match_operand:SI 3 "fpr_operand" "f")]
6177 "cmbtoh %3, %2, %1, %e0"
6178 [(set_attr "length" "4")
6179 (set_attr "type" "mbhconv")])
6181 (define_insn "mhtob"
6182 [(set (match_operand:SI 0 "fpr_operand" "=f")
6183 (unspec:SI [(match_operand:DI 1 "even_fpr_operand" "h")]
6187 [(set_attr "length" "4")
6188 (set_attr "type" "mbhconv")])
6190 (define_insn "*cond_exec_mhtob"
6192 (match_operator 0 "ccr_eqne_operator"
6193 [(match_operand 1 "cr_operand" "C")
6195 (set (match_operand:SI 2 "fpr_operand" "=f")
6196 (unspec:SI [(match_operand:DI 3 "even_fpr_operand" "h")]
6199 "cmhtob %3, %2, %1, %e0"
6200 [(set_attr "length" "4")
6201 (set_attr "type" "mbhconv")])
6203 ;; Rotate: type "mrot"
6205 (define_expand "mrotli"
6206 [(set (match_operand:SI 0 "fpr_operand" "")
6207 (unspec:SI [(match_operand:SI 1 "fpr_operand" "")
6208 (match_operand:SI 2 "uint5_operand" "")
6212 "operands[3] = GEN_INT (FRV_BUILTIN_MROTLI);")
6214 (define_expand "mrotri"
6215 [(set (match_operand:SI 0 "fpr_operand" "")
6216 (unspec:SI [(match_operand:SI 1 "fpr_operand" "")
6217 (match_operand:SI 2 "uint5_operand" "")
6221 "operands[3] = GEN_INT (FRV_BUILTIN_MROTRI);")
6223 (define_insn "*mrot"
6224 [(set (match_operand:SI 0 "fpr_operand" "=f")
6225 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
6226 (match_operand:SI 2 "uint5_operand" "I")
6227 (match_operand:SI 3 "const_int_operand" "n")]
6232 switch (INTVAL (operands[3]))
6235 case FRV_BUILTIN_MROTLI: return \"mrotli %1, %2, %0\";
6236 case FRV_BUILTIN_MROTRI: return \"mrotri %1, %2, %0\";
6239 fatal_insn (\"Bad media insn, mrot\", insn);
6241 [(set_attr "length" "4")
6242 (set_attr "type" "mrot")])
6244 ;; Dual shift halfword: type "msh"
6246 (define_expand "msllhi"
6247 [(set (match_operand:SI 0 "fpr_operand" "")
6248 (unspec:SI [(match_operand:SI 1 "fpr_operand" "")
6249 (match_operand:SI 2 "uint4_operand" "")
6253 "operands[3] = GEN_INT (FRV_BUILTIN_MSLLHI);")
6255 (define_expand "msrlhi"
6256 [(set (match_operand:SI 0 "fpr_operand" "")
6257 (unspec:SI [(match_operand:SI 1 "fpr_operand" "")
6258 (match_operand:SI 2 "uint4_operand" "")
6262 "operands[3] = GEN_INT (FRV_BUILTIN_MSRLHI);")
6264 (define_expand "msrahi"
6265 [(set (match_operand:SI 0 "fpr_operand" "")
6266 (unspec:SI [(match_operand:SI 1 "fpr_operand" "")
6267 (match_operand:SI 2 "uint4_operand" "")
6271 "operands[3] = GEN_INT (FRV_BUILTIN_MSRAHI);")
6273 (define_insn "*mshift"
6274 [(set (match_operand:SI 0 "fpr_operand" "=f")
6275 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
6276 (match_operand:SI 2 "uint4_operand" "I")
6277 (match_operand:SI 3 "const_int_operand" "n")]
6282 switch (INTVAL (operands[3]))
6285 case FRV_BUILTIN_MSLLHI: return \"msllhi %1, %2, %0\";
6286 case FRV_BUILTIN_MSRLHI: return \"msrlhi %1, %2, %0\";
6287 case FRV_BUILTIN_MSRAHI: return \"msrahi %1, %2, %0\";
6290 fatal_insn (\"Bad media insn, mshift\", insn);
6292 [(set_attr "length" "4")
6293 (set_attr "type" "mshift")])
6295 ;; Expand halfword to word: type "mexpdhw"
6297 (define_insn "mexpdhw"
6298 [(set (match_operand:SI 0 "fpr_operand" "=f")
6299 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
6300 (match_operand:SI 2 "uint1_operand" "I")]
6303 "mexpdhw %1, %2, %0"
6304 [(set_attr "length" "4")
6305 (set_attr "type" "mexpdhw")])
6307 (define_insn "*cond_exec_mexpdhw"
6309 (match_operator 0 "ccr_eqne_operator"
6310 [(match_operand 1 "cr_operand" "C")
6312 (set (match_operand:SI 2 "fpr_operand" "=f")
6313 (unspec:SI [(match_operand:SI 3 "fpr_operand" "f")
6314 (match_operand:SI 4 "uint1_operand" "I")]
6317 "cmexpdhw %3, %4, %2, %1, %e0"
6318 [(set_attr "length" "4")
6319 (set_attr "type" "mexpdhw")])
6321 ;; Expand halfword to double: type "mexpdhd"
6323 (define_insn "mexpdhd"
6324 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
6325 (unspec:DI [(match_operand:SI 1 "fpr_operand" "f")
6326 (match_operand:SI 2 "uint1_operand" "I")]
6329 "mexpdhd %1, %2, %0"
6330 [(set_attr "length" "4")
6331 (set_attr "type" "mexpdhd")])
6333 (define_insn "*cond_exec_mexpdhd"
6335 (match_operator 0 "ccr_eqne_operator"
6336 [(match_operand 1 "cr_operand" "C")
6338 (set (match_operand:DI 2 "even_fpr_operand" "=h")
6339 (unspec:DI [(match_operand:SI 3 "fpr_operand" "f")
6340 (match_operand:SI 4 "uint1_operand" "I")]
6343 "cmexpdhd %3, %4, %2, %1, %e0"
6344 [(set_attr "length" "4")
6345 (set_attr "type" "mexpdhd")])
6347 ;; FR cut: type "mwcut"
6349 (define_insn "mwcut"
6350 [(set (match_operand:SI 0 "fpr_operand" "=f")
6351 (unspec:SI [(match_operand:DI 1 "fpr_operand" "f")
6352 (match_operand:SI 2 "fpr_or_int6_operand" "fI")]
6355 "mwcut%i2 %1, %2, %0"
6356 [(set_attr "length" "4")
6357 (set_attr "type" "mwcut")])
6359 ;; Dual multiplication (halfword): type "mmulh"
6361 (define_expand "mmulhs"
6362 [(parallel [(set (match_operand:DI 0 "even_acc_operand" "=b")
6363 (unspec:DI [(match_operand:SI 1 "fpr_operand" "f")
6364 (match_operand:SI 2 "fpr_operand" "f")
6367 (set (match_operand:HI 3 "accg_operand" "=B")
6368 (unspec:HI [(const_int 0)] UNSPEC_MMULH))])]
6370 "operands[4] = GEN_INT (FRV_BUILTIN_MMULHS);")
6372 (define_expand "mmulhu"
6373 [(parallel [(set (match_operand:DI 0 "even_acc_operand" "=b")
6374 (unspec:DI [(match_operand:SI 1 "fpr_operand" "f")
6375 (match_operand:SI 2 "fpr_operand" "f")
6378 (set (match_operand:HI 3 "accg_operand" "=B")
6379 (unspec:HI [(const_int 0)] UNSPEC_MMULH))])]
6381 "operands[4] = GEN_INT (FRV_BUILTIN_MMULHU);")
6383 (define_insn "*mmulh"
6384 [(set (match_operand:DI 0 "even_acc_operand" "=b")
6385 (unspec:DI [(match_operand:SI 1 "fpr_operand" "f")
6386 (match_operand:SI 2 "fpr_operand" "f")
6387 (match_operand:SI 3 "const_int_operand" "n")]
6389 (set (match_operand:HI 4 "accg_operand" "=B")
6390 (unspec:HI [(const_int 0)] UNSPEC_MMULH))]
6394 switch (INTVAL (operands[3]))
6397 case FRV_BUILTIN_MMULHS: return \"mmulhs %1, %2, %0\";
6398 case FRV_BUILTIN_MMULHU: return \"mmulhu %1, %2, %0\";
6401 fatal_insn (\"Bad media insn, mmulh\", insn);
6403 [(set_attr "length" "4")
6404 (set_attr "type" "mmulh")])
6406 (define_insn "*cond_exec_mmulh"
6408 (match_operator 0 "ccr_eqne_operator"
6409 [(match_operand 1 "cr_operand" "C")
6411 (parallel [(set (match_operand:DI 2 "even_acc_operand" "=b")
6412 (unspec:DI [(match_operand:SI 3 "fpr_operand" "f")
6413 (match_operand:SI 4 "fpr_operand" "f")
6414 (match_operand:SI 5 "const_int_operand" "n")]
6416 (set (match_operand:HI 6 "accg_operand" "=B")
6417 (unspec:HI [(const_int 0)] UNSPEC_MMULH))]))]
6421 switch (INTVAL (operands[5]))
6424 case FRV_BUILTIN_MMULHS: return \"cmmulhs %3, %4, %2, %1, %e0\";
6425 case FRV_BUILTIN_MMULHU: return \"cmmulhu %3, %4, %2, %1, %e0\";
6428 fatal_insn (\"Bad media insn, cond_exec_mmulh\", insn);
6430 [(set_attr "length" "4")
6431 (set_attr "type" "mmulh")])
6433 ;; Dual cross multiplication (halfword): type "mmulxh"
6435 (define_expand "mmulxhs"
6436 [(parallel [(set (match_operand:DI 0 "even_acc_operand" "=b")
6437 (unspec:DI [(match_operand:SI 1 "fpr_operand" "f")
6438 (match_operand:SI 2 "fpr_operand" "f")
6441 (set (match_operand:HI 3 "accg_operand" "=B")
6442 (unspec:HI [(const_int 0)] UNSPEC_MMULXH))])]
6444 "operands[4] = GEN_INT (FRV_BUILTIN_MMULXHS);")
6446 (define_expand "mmulxhu"
6447 [(parallel [(set (match_operand:DI 0 "even_acc_operand" "=b")
6448 (unspec:DI [(match_operand:SI 1 "fpr_operand" "f")
6449 (match_operand:SI 2 "fpr_operand" "f")
6452 (set (match_operand:HI 3 "accg_operand" "=B")
6453 (unspec:HI [(const_int 0)] UNSPEC_MMULXH))])]
6455 "operands[4] = GEN_INT (FRV_BUILTIN_MMULXHU);")
6457 (define_insn "*mmulxh"
6458 [(set (match_operand:DI 0 "even_acc_operand" "=b")
6459 (unspec:DI [(match_operand:SI 1 "fpr_operand" "f")
6460 (match_operand:SI 2 "fpr_operand" "f")
6461 (match_operand:SI 3 "const_int_operand" "n")]
6463 (set (match_operand:HI 4 "accg_operand" "=B")
6464 (unspec:HI [(const_int 0)] UNSPEC_MMULXH))]
6468 switch (INTVAL (operands[3]))
6471 case FRV_BUILTIN_MMULXHS: return \"mmulxhs %1, %2, %0\";
6472 case FRV_BUILTIN_MMULXHU: return \"mmulxhu %1, %2, %0\";
6475 fatal_insn (\"Bad media insn, mmulxh\", insn);
6477 [(set_attr "length" "4")
6478 (set_attr "type" "mmulxh")])
6480 ;; Dual product-sum (halfword): type "mmach"
6482 (define_expand "mmachs"
6483 [(parallel [(set (match_operand:DI 0 "even_acc_operand" "+b")
6484 (unspec:DI [(match_dup 0)
6485 (match_operand:SI 1 "fpr_operand" "f")
6486 (match_operand:SI 2 "fpr_operand" "f")
6487 (match_operand:HI 3 "accg_operand" "+B")
6491 (unspec:HI [(const_int 0)] UNSPEC_MMACH))])]
6493 "operands[4] = GEN_INT (FRV_BUILTIN_MMACHS);")
6495 (define_expand "mmachu"
6496 [(parallel [(set (match_operand:DI 0 "even_acc_operand" "+b")
6497 (unspec:DI [(match_dup 0)
6498 (match_operand:SI 1 "fpr_operand" "f")
6499 (match_operand:SI 2 "fpr_operand" "f")
6500 (match_operand:HI 3 "accg_operand" "+B")
6504 (unspec:HI [(const_int 0)] UNSPEC_MMACH))])]
6506 "operands[4] = GEN_INT (FRV_BUILTIN_MMACHU);")
6508 (define_insn "*mmach"
6509 [(set (match_operand:DI 0 "even_acc_operand" "+b")
6510 (unspec:DI [(match_dup 0)
6511 (match_operand:SI 1 "fpr_operand" "f")
6512 (match_operand:SI 2 "fpr_operand" "f")
6513 (match_operand:HI 3 "accg_operand" "+B")
6514 (match_operand:SI 4 "const_int_operand" "n")]
6516 (set (match_dup 3) (unspec:HI [(const_int 0)] UNSPEC_MMACH))]
6520 switch (INTVAL (operands[4]))
6523 case FRV_BUILTIN_MMACHS: return \"mmachs %1, %2, %0\";
6524 case FRV_BUILTIN_MMACHU: return \"mmachu %1, %2, %0\";
6527 fatal_insn (\"Bad media insn, mmach\", insn);
6529 [(set_attr "length" "4")
6530 (set_attr "type" "mmach")])
6532 (define_insn "*cond_exec_mmach"
6534 (match_operator 0 "ccr_eqne_operator"
6535 [(match_operand 1 "cr_operand" "C")
6537 (parallel [(set (match_operand:DI 2 "even_acc_operand" "+b")
6538 (unspec:DI [(match_dup 2)
6539 (match_operand:SI 3 "fpr_operand" "f")
6540 (match_operand:SI 4 "fpr_operand" "f")
6541 (match_operand:HI 5 "accg_operand" "+B")
6542 (match_operand:SI 6 "const_int_operand" "n")]
6545 (unspec:HI [(const_int 0)] UNSPEC_MMACH))]))]
6549 switch (INTVAL (operands[6]))
6552 case FRV_BUILTIN_MMACHS: return \"cmmachs %3, %4, %2, %1, %e0\";
6553 case FRV_BUILTIN_MMACHU: return \"cmmachu %3, %4, %2, %1, %e0\";
6556 fatal_insn (\"Bad media insn, cond_exec_mmach\", insn);
6558 [(set_attr "length" "4")
6559 (set_attr "type" "mmach")])
6561 ;; Dual product-difference: type "mmrdh"
6563 (define_expand "mmrdhs"
6564 [(parallel [(set (match_operand:DI 0 "even_acc_operand" "+b")
6565 (unspec:DI [(match_dup 0)
6566 (match_operand:SI 1 "fpr_operand" "f")
6567 (match_operand:SI 2 "fpr_operand" "f")
6568 (match_operand:HI 3 "accg_operand" "+B")
6572 (unspec:HI [(const_int 0)] UNSPEC_MMRDH))])]
6574 "operands[4] = GEN_INT (FRV_BUILTIN_MMRDHS);")
6576 (define_expand "mmrdhu"
6577 [(parallel [(set (match_operand:DI 0 "even_acc_operand" "+b")
6578 (unspec:DI [(match_dup 0)
6579 (match_operand:SI 1 "fpr_operand" "f")
6580 (match_operand:SI 2 "fpr_operand" "f")
6581 (match_operand:HI 3 "accg_operand" "+B")
6585 (unspec:HI [(const_int 0)] UNSPEC_MMRDH))])]
6587 "operands[4] = GEN_INT (FRV_BUILTIN_MMRDHU);")
6589 (define_insn "*mmrdh"
6590 [(set (match_operand:DI 0 "even_acc_operand" "+b")
6591 (unspec:DI [(match_dup 0)
6592 (match_operand:SI 1 "fpr_operand" "f")
6593 (match_operand:SI 2 "fpr_operand" "f")
6594 (match_operand:HI 3 "accg_operand" "+B")
6595 (match_operand:SI 4 "const_int_operand" "n")]
6598 (unspec:HI [(const_int 0)] UNSPEC_MMRDH))]
6602 switch (INTVAL (operands[4]))
6605 case FRV_BUILTIN_MMRDHS: return \"mmrdhs %1, %2, %0\";
6606 case FRV_BUILTIN_MMRDHU: return \"mmrdhu %1, %2, %0\";
6609 fatal_insn (\"Bad media insn, mrdh\", insn);
6611 [(set_attr "length" "4")
6612 (set_attr "type" "mmrdh")])
6614 ;; Quad multiply (halfword): type "mqmulh"
6616 (define_expand "mqmulhs"
6617 [(parallel [(set (match_operand:V4SI 0 "quad_acc_operand" "=A")
6618 (unspec:V4SI [(match_operand:DI 1 "even_fpr_operand" "h")
6619 (match_operand:DI 2 "even_fpr_operand" "h")
6622 (set (match_operand:V4QI 3 "accg_operand" "=B")
6623 (unspec:V4QI [(const_int 0)] UNSPEC_MQMULH))])]
6625 "operands[4] = GEN_INT (FRV_BUILTIN_MQMULHS);")
6627 (define_expand "mqmulhu"
6628 [(parallel [(set (match_operand:V4SI 0 "quad_acc_operand" "=A")
6629 (unspec:V4SI [(match_operand:DI 1 "even_fpr_operand" "h")
6630 (match_operand:DI 2 "even_fpr_operand" "h")
6633 (set (match_operand:V4QI 3 "accg_operand" "=B")
6634 (unspec:V4QI [(const_int 0)] UNSPEC_MQMULH))])]
6636 "operands[4] = GEN_INT (FRV_BUILTIN_MQMULHU);")
6638 (define_insn "*mqmulh"
6639 [(set (match_operand:V4SI 0 "quad_acc_operand" "=A")
6640 (unspec:V4SI [(match_operand:DI 1 "even_fpr_operand" "h")
6641 (match_operand:DI 2 "even_fpr_operand" "h")
6642 (match_operand:SI 3 "const_int_operand" "n")]
6644 (set (match_operand:V4QI 4 "accg_operand" "=B")
6645 (unspec:V4QI [(const_int 0)] UNSPEC_MQMULH))]
6649 switch (INTVAL (operands[3]))
6652 case FRV_BUILTIN_MQMULHS: return \"mqmulhs %1, %2, %0\";
6653 case FRV_BUILTIN_MQMULHU: return \"mqmulhu %1, %2, %0\";
6656 fatal_insn (\"Bad media insn, mqmulh\", insn);
6658 [(set_attr "length" "4")
6659 (set_attr "type" "mqmulh")])
6661 (define_insn "*cond_exec_mqmulh"
6663 (match_operator 0 "ccr_eqne_operator"
6664 [(match_operand 1 "cr_operand" "C")
6666 (parallel [(set (match_operand:V4SI 2 "quad_acc_operand" "=A")
6667 (unspec:V4SI [(match_operand:DI 3 "even_fpr_operand" "h")
6668 (match_operand:DI 4 "even_fpr_operand" "h")
6669 (match_operand:SI 5 "const_int_operand" "n")]
6671 (set (match_operand:V4QI 6 "accg_operand" "=B")
6672 (unspec:V4QI [(const_int 0)] UNSPEC_MQMULH))]))]
6676 switch (INTVAL (operands[5]))
6679 case FRV_BUILTIN_MQMULHS: return \"cmqmulhs %3, %4, %2, %1, %e0\";
6680 case FRV_BUILTIN_MQMULHU: return \"cmqmulhu %3, %4, %2, %1, %e0\";
6683 fatal_insn (\"Bad media insn, cond_exec_mqmulh\", insn);
6685 [(set_attr "length" "4")
6686 (set_attr "type" "mqmulh")])
6688 ;; Quad cross multiply (halfword): type "mqmulxh"
6690 (define_expand "mqmulxhs"
6691 [(parallel [(set (match_operand:V4SI 0 "quad_acc_operand" "=A")
6692 (unspec:V4SI [(match_operand:DI 1 "even_fpr_operand" "h")
6693 (match_operand:DI 2 "even_fpr_operand" "h")
6696 (set (match_operand:V4QI 3 "accg_operand" "=B")
6697 (unspec:V4QI [(const_int 0)] UNSPEC_MQMULXH))])]
6699 "operands[4] = GEN_INT (FRV_BUILTIN_MQMULXHS);")
6701 (define_expand "mqmulxhu"
6702 [(parallel [(set (match_operand:V4SI 0 "quad_acc_operand" "=A")
6703 (unspec:V4SI [(match_operand:DI 1 "even_fpr_operand" "h")
6704 (match_operand:DI 2 "even_fpr_operand" "h")
6707 (set (match_operand:V4QI 3 "accg_operand" "=B")
6708 (unspec:V4QI [(const_int 0)] UNSPEC_MQMULXH))])]
6710 "operands[4] = GEN_INT (FRV_BUILTIN_MQMULXHU);")
6712 (define_insn "*mqmulxh"
6713 [(set (match_operand:V4SI 0 "quad_acc_operand" "=A")
6714 (unspec:V4SI [(match_operand:DI 1 "even_fpr_operand" "h")
6715 (match_operand:DI 2 "even_fpr_operand" "h")
6716 (match_operand:SI 3 "const_int_operand" "n")]
6718 (set (match_operand:V4QI 4 "accg_operand" "=B")
6719 (unspec:V4QI [(const_int 0)] UNSPEC_MQMULXH))]
6723 switch (INTVAL (operands[3]))
6726 case FRV_BUILTIN_MQMULXHS: return \"mqmulxhs %1, %2, %0\";
6727 case FRV_BUILTIN_MQMULXHU: return \"mqmulxhu %1, %2, %0\";
6730 fatal_insn (\"Bad media insn, mqmulxh\", insn);
6732 [(set_attr "length" "4")
6733 (set_attr "type" "mqmulxh")])
6735 ;; Quad product-sum (halfword): type "mqmach"
6737 (define_expand "mqmachs"
6738 [(parallel [(set (match_operand:V4SI 0 "even_acc_operand" "+A")
6739 (unspec:V4SI [(match_dup 0)
6740 (match_operand:DI 1 "even_fpr_operand" "h")
6741 (match_operand:DI 2 "even_fpr_operand" "h")
6742 (match_operand:V4QI 3 "accg_operand" "+B")
6746 (unspec:V4QI [(const_int 0)] UNSPEC_MQMACH))])]
6748 "operands[4] = GEN_INT (FRV_BUILTIN_MQMACHS);")
6750 (define_expand "mqmachu"
6751 [(parallel [(set (match_operand:V4SI 0 "even_acc_operand" "+A")
6752 (unspec:V4SI [(match_dup 0)
6753 (match_operand:DI 1 "even_fpr_operand" "h")
6754 (match_operand:DI 2 "even_fpr_operand" "h")
6755 (match_operand:V4QI 3 "accg_operand" "+B")
6759 (unspec:V4QI [(const_int 0)] UNSPEC_MQMACH))])]
6761 "operands[4] = GEN_INT (FRV_BUILTIN_MQMACHU);")
6763 (define_insn "*mqmach"
6764 [(set (match_operand:V4SI 0 "even_acc_operand" "+A")
6765 (unspec:V4SI [(match_dup 0)
6766 (match_operand:DI 1 "even_fpr_operand" "h")
6767 (match_operand:DI 2 "even_fpr_operand" "h")
6768 (match_operand:V4QI 3 "accg_operand" "+B")
6769 (match_operand:SI 4 "const_int_operand" "n")]
6772 (unspec:V4QI [(const_int 0)] UNSPEC_MQMACH))]
6776 switch (INTVAL (operands[4]))
6779 case FRV_BUILTIN_MQMACHS: return \"mqmachs %1, %2, %0\";
6780 case FRV_BUILTIN_MQMACHU: return \"mqmachu %1, %2, %0\";
6783 fatal_insn (\"Bad media insn, mqmach\", insn);
6785 [(set_attr "length" "4")
6786 (set_attr "type" "mqmach")])
6788 (define_insn "*cond_exec_mqmach"
6790 (match_operator 0 "ccr_eqne_operator"
6791 [(match_operand 1 "cr_operand" "C")
6793 (parallel [(set (match_operand:V4SI 2 "even_acc_operand" "+A")
6794 (unspec:V4SI [(match_dup 2)
6795 (match_operand:DI 3 "even_fpr_operand" "h")
6796 (match_operand:DI 4 "even_fpr_operand" "h")
6797 (match_operand:V4QI 5 "accg_operand" "+B")
6798 (match_operand:SI 6 "const_int_operand" "n")]
6801 (unspec:V4QI [(const_int 0)] UNSPEC_MQMACH))]))]
6805 switch (INTVAL (operands[6]))
6808 case FRV_BUILTIN_MQMACHS: return \"cmqmachs %3, %4, %2, %1, %e0\";
6809 case FRV_BUILTIN_MQMACHU: return \"cmqmachu %3, %4, %2, %1, %e0\";
6812 fatal_insn (\"Bad media insn, cond_exec_mqmach\", insn);
6814 [(set_attr "length" "4")
6815 (set_attr "type" "mqmach")])
6817 ;; Dual complex number product-sum (halfword)
6819 (define_expand "mcpxrs"
6820 [(parallel [(set (match_operand:SI 0 "acc_operand" "=a")
6821 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
6822 (match_operand:SI 2 "fpr_operand" "f")
6825 (set (match_operand:QI 3 "accg_operand" "=B")
6826 (unspec:QI [(const_int 0)] UNSPEC_MCPX))])]
6828 "operands[4] = GEN_INT (FRV_BUILTIN_MCPXRS);")
6830 (define_expand "mcpxru"
6831 [(parallel [(set (match_operand:SI 0 "acc_operand" "=a")
6832 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
6833 (match_operand:SI 2 "fpr_operand" "f")
6836 (set (match_operand:QI 3 "accg_operand" "=B")
6837 (unspec:QI [(const_int 0)] UNSPEC_MCPX))])]
6839 "operands[4] = GEN_INT (FRV_BUILTIN_MCPXRU);")
6841 (define_expand "mcpxis"
6842 [(parallel [(set (match_operand:SI 0 "acc_operand" "=a")
6843 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
6844 (match_operand:SI 2 "fpr_operand" "f")
6847 (set (match_operand:QI 3 "accg_operand" "=B")
6848 (unspec:QI [(const_int 0)] UNSPEC_MCPX))])]
6850 "operands[4] = GEN_INT (FRV_BUILTIN_MCPXIS);")
6852 (define_expand "mcpxiu"
6853 [(parallel [(set (match_operand:SI 0 "acc_operand" "=a")
6854 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
6855 (match_operand:SI 2 "fpr_operand" "f")
6858 (set (match_operand:QI 3 "accg_operand" "=B")
6859 (unspec:QI [(const_int 0)] UNSPEC_MCPX))])]
6861 "operands[4] = GEN_INT (FRV_BUILTIN_MCPXIU);")
6863 (define_insn "*mcpx"
6864 [(parallel [(set (match_operand:SI 0 "acc_operand" "=a")
6865 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
6866 (match_operand:SI 2 "fpr_operand" "f")
6867 (match_operand:SI 3 "const_int_operand" "n")]
6869 (set (match_operand:QI 4 "accg_operand" "=B")
6870 (unspec:QI [(const_int 0)] UNSPEC_MCPX))])]
6874 switch (INTVAL (operands[3]))
6877 case FRV_BUILTIN_MCPXRS: return \"mcpxrs %1, %2, %0\";
6878 case FRV_BUILTIN_MCPXRU: return \"mcpxru %1, %2, %0\";
6879 case FRV_BUILTIN_MCPXIS: return \"mcpxis %1, %2, %0\";
6880 case FRV_BUILTIN_MCPXIU: return \"mcpxiu %1, %2, %0\";
6883 fatal_insn (\"Bad media insn, mcpx\", insn);
6885 [(set_attr "length" "4")
6886 (set_attr "type" "mcpx")])
6888 (define_insn "*cond_exec_mcpx"
6890 (match_operator 0 "ccr_eqne_operator"
6891 [(match_operand 1 "cr_operand" "C")
6893 (parallel [(set (match_operand:SI 2 "acc_operand" "=a")
6894 (unspec:SI [(match_operand:SI 3 "fpr_operand" "f")
6895 (match_operand:SI 4 "fpr_operand" "f")
6896 (match_operand:SI 5 "const_int_operand" "n")]
6898 (set (match_operand:QI 6 "accg_operand" "=B")
6899 (unspec:QI [(const_int 0)] UNSPEC_MCPX))]))]
6903 switch (INTVAL (operands[5]))
6906 case FRV_BUILTIN_MCPXRS: return \"cmcpxrs %3, %4, %2, %1, %e0\";
6907 case FRV_BUILTIN_MCPXRU: return \"cmcpxru %3, %4, %2, %1, %e0\";
6908 case FRV_BUILTIN_MCPXIS: return \"cmcpxis %3, %4, %2, %1, %e0\";
6909 case FRV_BUILTIN_MCPXIU: return \"cmcpxiu %3, %4, %2, %1, %e0\";
6912 fatal_insn (\"Bad media insn, cond_exec_mcpx\", insn);
6914 [(set_attr "length" "4")
6915 (set_attr "type" "mcpx")])
6917 ;; Quad complex number product-sum (halfword): type "mqcpx"
6919 (define_expand "mqcpxrs"
6920 [(parallel [(set (match_operand:DI 0 "even_acc_operand" "=b")
6921 (unspec:DI [(match_operand:DI 1 "fpr_operand" "f")
6922 (match_operand:DI 2 "fpr_operand" "f")
6925 (set (match_operand:HI 3 "accg_operand" "=B")
6926 (unspec:HI [(const_int 0)] UNSPEC_MQCPX))])]
6928 "operands[4] = GEN_INT (FRV_BUILTIN_MQCPXRS);")
6930 (define_expand "mqcpxru"
6931 [(parallel [(set (match_operand:DI 0 "even_acc_operand" "=b")
6932 (unspec:DI [(match_operand:DI 1 "fpr_operand" "f")
6933 (match_operand:DI 2 "fpr_operand" "f")
6936 (set (match_operand:HI 3 "accg_operand" "=B")
6937 (unspec:HI [(const_int 0)] UNSPEC_MQCPX))])]
6939 "operands[4] = GEN_INT (FRV_BUILTIN_MQCPXRU);")
6941 (define_expand "mqcpxis"
6942 [(parallel [(set (match_operand:DI 0 "even_acc_operand" "=b")
6943 (unspec:DI [(match_operand:DI 1 "fpr_operand" "f")
6944 (match_operand:DI 2 "fpr_operand" "f")
6947 (set (match_operand:HI 3 "accg_operand" "=B")
6948 (unspec:HI [(const_int 0)] UNSPEC_MQCPX))])]
6950 "operands[4] = GEN_INT (FRV_BUILTIN_MQCPXIS);")
6952 (define_expand "mqcpxiu"
6953 [(parallel [(set (match_operand:DI 0 "even_acc_operand" "=b")
6954 (unspec:DI [(match_operand:DI 1 "fpr_operand" "f")
6955 (match_operand:DI 2 "fpr_operand" "f")
6958 (set (match_operand:HI 3 "accg_operand" "=B")
6959 (unspec:HI [(const_int 0)] UNSPEC_MQCPX))])]
6961 "operands[4] = GEN_INT (FRV_BUILTIN_MQCPXIU);")
6963 (define_insn "*mqcpx"
6964 [(set (match_operand:DI 0 "even_acc_operand" "=b")
6965 (unspec:DI [(match_operand:DI 1 "fpr_operand" "f")
6966 (match_operand:DI 2 "fpr_operand" "f")
6967 (match_operand:SI 3 "const_int_operand" "n")]
6969 (set (match_operand:HI 4 "accg_operand" "=B")
6970 (unspec:HI [(const_int 0)] UNSPEC_MQCPX))]
6974 switch (INTVAL (operands[3]))
6977 case FRV_BUILTIN_MQCPXRS: return \"mqcpxrs %1, %2, %0\";
6978 case FRV_BUILTIN_MQCPXRU: return \"mqcpxru %1, %2, %0\";
6979 case FRV_BUILTIN_MQCPXIS: return \"mqcpxis %1, %2, %0\";
6980 case FRV_BUILTIN_MQCPXIU: return \"mqcpxiu %1, %2, %0\";
6983 fatal_insn (\"Bad media insn, mqcpx\", insn);
6985 [(set_attr "length" "4")
6986 (set_attr "type" "mqcpx")])
6990 (define_expand "mcut"
6991 [(set (match_operand:SI 0 "fpr_operand" "=f")
6992 (unspec:SI [(match_operand:SI 1 "acc_operand" "a")
6993 (match_operand:SI 2 "fpr_or_int6_operand" "fI")
6994 (match_operand:QI 3 "accg_operand" "B")
6998 "operands[4] = GEN_INT (FRV_BUILTIN_MCUT);")
7000 (define_expand "mcutss"
7001 [(set (match_operand:SI 0 "fpr_operand" "=f")
7002 (unspec:SI [(match_operand:SI 1 "acc_operand" "a")
7003 (match_operand:SI 2 "fpr_or_int6_operand" "fI")
7004 (match_operand:QI 3 "accg_operand" "B")
7008 "operands[4] = GEN_INT (FRV_BUILTIN_MCUTSS);")
7010 (define_insn "*mcut"
7011 [(set (match_operand:SI 0 "fpr_operand" "=f")
7012 (unspec:SI [(match_operand:SI 1 "acc_operand" "a")
7013 (match_operand:SI 2 "fpr_or_int6_operand" "fI")
7014 (match_operand:QI 3 "accg_operand" "B")
7015 (match_operand:SI 4 "const_int_operand" "n")]
7020 switch (INTVAL (operands[4]))
7023 case FRV_BUILTIN_MCUT: return \"mcut%i2 %1, %2, %0\";
7024 case FRV_BUILTIN_MCUTSS: return \"mcutss%i2 %1, %2, %0\";
7027 fatal_insn (\"Bad media insn, mcut\", insn);
7029 [(set_attr "length" "4")
7030 (set_attr "type" "mcut")])
7032 ;; Accumulator read: type "mrdacc"
7034 (define_insn "mrdacc"
7035 [(set (match_operand:SI 0 "fpr_operand" "=f")
7036 (unspec:SI [(match_operand:SI 1 "acc_operand" "a")] UNSPEC_MRDACC))]
7039 [(set_attr "length" "4")
7040 (set_attr "type" "mrdacc")])
7042 (define_insn "mrdaccg"
7043 [(set (match_operand:SI 0 "fpr_operand" "=f")
7044 (unspec:SI [(match_operand:QI 1 "accg_operand" "B")] UNSPEC_MRDACCG))]
7047 [(set_attr "length" "4")
7048 (set_attr "type" "mrdacc")])
7050 ;; Accumulator write: type "mwtacc"
7052 (define_insn "mwtacc"
7053 [(set (match_operand:SI 0 "acc_operand" "=a")
7054 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")] UNSPEC_MWTACC))]
7057 [(set_attr "length" "4")
7058 (set_attr "type" "mwtacc")])
7060 (define_insn "mwtaccg"
7061 [(set (match_operand:QI 0 "accg_operand" "=B")
7062 (unspec:QI [(match_operand:SI 1 "fpr_operand" "f")] UNSPEC_MWTACCG))]
7065 [(set_attr "length" "4")
7066 (set_attr "type" "mwtacc")])
7068 ;; Trap: This one executes on the control unit, not the media units.
7070 (define_insn "mtrap"
7071 [(unspec_volatile [(const_int 0)] UNSPEC_MTRAP)]
7074 [(set_attr "length" "4")
7075 (set_attr "type" "trap")])
7077 ;; Clear single accumulator: type "mclracc"
7079 (define_insn "mclracc_internal"
7080 [(set (match_operand:SI 0 "acc_operand" "=a")
7081 (unspec:SI [(const_int 0)] UNSPEC_MCLRACC))
7082 (set (match_operand:QI 1 "accg_operand" "=B")
7083 (unspec:QI [(const_int 0)] UNSPEC_MCLRACC))]
7086 [(set_attr "length" "4")
7087 (set_attr "type" "mclracc")])
7089 (define_expand "mclracc"
7090 [(parallel [(set (match_operand:SI 0 "acc_operand" "=a")
7091 (unspec:SI [(const_int 0)] UNSPEC_MCLRACC))
7093 (unspec:QI [(const_int 0)] UNSPEC_MCLRACC))])]
7097 if (GET_CODE (operands[0]) != REG || !ACC_P (REGNO (operands[0])))
7100 operands[1] = frv_matching_accg_for_acc (operands[0]);
7103 ;; Clear all accumulators: type "mclracca"
7105 (define_insn "mclracca8_internal"
7106 [(set (match_operand:V4SI 0 "quad_acc_operand" "=b")
7107 (unspec:V4SI [(const_int 0)] UNSPEC_MCLRACCA))
7108 (set (match_operand:V4SI 1 "quad_acc_operand" "=b")
7109 (unspec:V4SI [(const_int 0)] UNSPEC_MCLRACCA))
7110 (set (match_operand:V4QI 2 "accg_operand" "=B")
7111 (unspec:V4QI [(const_int 0)] UNSPEC_MCLRACCA))
7112 (set (match_operand:V4QI 3 "accg_operand" "=B")
7113 (unspec:V4QI [(const_int 0)] UNSPEC_MCLRACCA))]
7114 "TARGET_MEDIA && TARGET_ACC_8"
7116 [(set_attr "length" "4")
7117 (set_attr "type" "mclracca")])
7119 (define_insn "mclracca4_internal"
7120 [(set (match_operand:V4SI 0 "quad_acc_operand" "=b")
7121 (unspec:V4SI [(const_int 0)] UNSPEC_MCLRACCA))
7122 (set (match_operand:V4QI 1 "accg_operand" "=B")
7123 (unspec:V4QI [(const_int 0)] UNSPEC_MCLRACCA))]
7124 "TARGET_MEDIA && TARGET_ACC_4"
7126 [(set_attr "length" "4")
7127 (set_attr "type" "mclracca")])
7129 (define_expand "mclracca8"
7130 [(parallel [(set (match_dup 0) (unspec:V4SI [(const_int 0)] UNSPEC_MCLRACCA))
7131 (set (match_dup 1) (unspec:V4SI [(const_int 0)] UNSPEC_MCLRACCA))
7132 (set (match_dup 2) (unspec:V4QI [(const_int 0)] UNSPEC_MCLRACCA))
7133 (set (match_dup 3) (unspec:V4QI [(const_int 0)] UNSPEC_MCLRACCA))])]
7134 "TARGET_MEDIA && TARGET_ACC_8"
7137 operands[0] = gen_rtx_REG (V4SImode, ACC_FIRST);
7138 operands[1] = gen_rtx_REG (V4SImode, ACC_FIRST + (~3 & ACC_MASK));
7139 operands[2] = gen_rtx_REG (V4QImode, ACCG_FIRST);
7140 operands[3] = gen_rtx_REG (V4QImode, ACCG_FIRST + (~3 & ACC_MASK));
7143 (define_expand "mclracca4"
7144 [(parallel [(set (match_dup 0) (unspec:V4SI [(const_int 0)] UNSPEC_MCLRACCA))
7145 (set (match_dup 1) (unspec:V4QI [(const_int 0)] UNSPEC_MCLRACCA))])]
7146 "TARGET_MEDIA && TARGET_ACC_4"
7149 operands[0] = gen_rtx_REG (V4SImode, ACC_FIRST);
7150 operands[1] = gen_rtx_REG (V4QImode, ACCG_FIRST);
7153 (define_insn "mcop1"
7154 [(set (match_operand:SI 0 "fpr_operand" "=f")
7155 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
7156 (match_operand:SI 2 "fpr_operand" "f")] UNSPEC_MCOP1))]
7159 [(set_attr "length" "4")
7160 ;; What is the class of the insn ???
7161 (set_attr "type" "multi")])
7163 (define_insn "mcop2"
7164 [(set (match_operand:SI 0 "fpr_operand" "=f")
7165 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")
7166 (match_operand:SI 2 "fpr_operand" "f")] UNSPEC_MCOP2))]
7169 [(set_attr "length" "4")
7170 ;; What is the class of the insn ???
7171 (set_attr "type" "multi")])
7173 (define_insn "*mdunpackh_internal"
7174 [(set (match_operand:V4SI 0 "quad_fpr_operand" "=x")
7175 (unspec:V4SI [(match_operand:DI 1 "even_fpr_operand" "h")]
7176 UNSPEC_MDUNPACKH_INTERNAL))]
7179 [(set_attr "length" "4")
7180 (set_attr "type" "mdunpackh")])
7182 (define_insn_and_split "mdunpackh"
7183 [(set (match_operand:V4SI 0 "memory_operand" "=o")
7184 (unspec:V4SI [(match_operand:DI 1 "even_fpr_operand" "h")]
7186 (clobber (match_scratch:V4SI 2 "=x"))]
7191 (unspec:V4SI [(match_dup 1)] UNSPEC_MDUNPACKH_INTERNAL))
7198 operands[3] = change_address (operands[0], DImode, NULL_RTX);
7199 operands[4] = gen_rtx_REG (DImode, REGNO (operands[2]));
7200 operands[5] = frv_index_memory (operands[0], DImode, 1);
7201 operands[6] = gen_rtx_REG (DImode, REGNO (operands[2])+2);
7203 [(set_attr "length" "20")
7204 (set_attr "type" "multi")])
7206 (define_insn "*mbtohe_internal"
7207 [(set (match_operand:V4SI 0 "quad_fpr_operand" "=x")
7208 (unspec:V4SI [(match_operand:SI 1 "fpr_operand" "f")]
7209 UNSPEC_MBTOHE_INTERNAL))]
7212 [(set_attr "length" "4")
7213 (set_attr "type" "mbhconve")])
7215 (define_insn_and_split "mbtohe"
7216 [(set (match_operand:V4SI 0 "memory_operand" "=o")
7217 (unspec:V4SI [(match_operand:SI 1 "fpr_operand" "f")]
7219 (clobber (match_scratch:V4SI 2 "=x"))]
7224 (unspec:V4SI [(match_dup 1)] UNSPEC_MBTOHE_INTERNAL))
7231 operands[3] = change_address (operands[0], DImode, NULL_RTX);
7232 operands[4] = gen_rtx_REG (DImode, REGNO (operands[2]));
7233 operands[5] = frv_index_memory (operands[0], DImode, 1);
7234 operands[6] = gen_rtx_REG (DImode, REGNO (operands[2])+2);
7236 [(set_attr "length" "20")
7237 (set_attr "type" "multi")])
7239 ;; Quad product-sum (halfword) instructions only found on the FR400.
7242 (define_expand "mqxmachs"
7243 [(parallel [(set (match_operand:V4SI 0 "quad_acc_operand" "")
7244 (unspec:V4SI [(match_dup 0)
7245 (match_operand:DI 1 "even_fpr_operand" "")
7246 (match_operand:DI 2 "even_fpr_operand" "")
7247 (match_operand:V4QI 3 "accg_operand" "")
7251 (unspec:V4QI [(const_int 0)] UNSPEC_MQMACH2))])]
7253 "operands[4] = GEN_INT (FRV_BUILTIN_MQXMACHS);")
7255 (define_expand "mqxmacxhs"
7256 [(parallel [(set (match_operand:V4SI 0 "quad_acc_operand" "")
7257 (unspec:V4SI [(match_dup 0)
7258 (match_operand:DI 1 "even_fpr_operand" "")
7259 (match_operand:DI 2 "even_fpr_operand" "")
7260 (match_operand:V4QI 3 "accg_operand" "")
7264 (unspec:V4QI [(const_int 0)] UNSPEC_MQMACH2))])]
7266 "operands[4] = GEN_INT (FRV_BUILTIN_MQXMACXHS);")
7268 (define_expand "mqmacxhs"
7269 [(parallel [(set (match_operand:V4SI 0 "quad_acc_operand" "")
7270 (unspec:V4SI [(match_dup 0)
7271 (match_operand:DI 1 "even_fpr_operand" "")
7272 (match_operand:DI 2 "even_fpr_operand" "")
7273 (match_operand:V4QI 3 "accg_operand" "")
7277 (unspec:V4QI [(const_int 0)] UNSPEC_MQMACH2))])]
7279 "operands[4] = GEN_INT (FRV_BUILTIN_MQMACXHS);")
7281 (define_insn "*mqmach2"
7282 [(set (match_operand:V4SI 0 "quad_acc_operand" "+A")
7283 (unspec:V4SI [(match_dup 0)
7284 (match_operand:DI 1 "even_fpr_operand" "h")
7285 (match_operand:DI 2 "even_fpr_operand" "h")
7286 (match_operand:V4QI 3 "accg_operand" "+B")
7287 (match_operand:SI 4 "const_int_operand" "n")]
7290 (unspec:V4QI [(const_int 0)] UNSPEC_MQMACH2))]
7294 switch (INTVAL (operands[4]))
7297 case FRV_BUILTIN_MQXMACHS: return \"mqxmachs %1, %2, %0\";
7298 case FRV_BUILTIN_MQXMACXHS: return \"mqxmacxhs %1, %2, %0\";
7299 case FRV_BUILTIN_MQMACXHS: return \"mqmacxhs %1, %2, %0\";
7302 fatal_insn (\"Bad media insn, mqmach2\", insn);
7304 [(set_attr "length" "4")
7305 (set_attr "type" "mqmach")])
7307 ;; Accumulator addition/subtraction: type "maddacc"
7309 (define_expand "maddaccs"
7310 [(parallel [(set (match_operand:SI 0 "acc_operand" "")
7311 (unspec:SI [(match_operand:DI 1 "even_acc_operand" "")]
7313 (set (match_operand:QI 2 "accg_operand" "")
7314 (unspec:QI [(match_operand:HI 3 "accg_operand" "")
7318 "operands[4] = GEN_INT (FRV_BUILTIN_MADDACCS);")
7320 (define_expand "msubaccs"
7321 [(parallel [(set (match_operand:SI 0 "acc_operand" "")
7322 (unspec:SI [(match_operand:DI 1 "even_acc_operand" "")]
7324 (set (match_operand:QI 2 "accg_operand" "")
7325 (unspec:QI [(match_operand:HI 3 "accg_operand" "")
7329 "operands[4] = GEN_INT (FRV_BUILTIN_MSUBACCS);")
7331 (define_insn "masaccs"
7332 [(set (match_operand:DI 0 "even_acc_operand" "=b")
7333 (unspec:DI [(match_operand:DI 1 "even_acc_operand" "b")]
7335 (set (match_operand:HI 2 "accg_operand" "=B")
7336 (unspec:HI [(match_operand:HI 3 "accg_operand" "B")]
7340 [(set_attr "length" "4")
7341 (set_attr "type" "maddacc")])
7343 (define_insn "*maddacc"
7344 [(set (match_operand:SI 0 "acc_operand" "=a")
7345 (unspec:SI [(match_operand:DI 1 "even_acc_operand" "b")]
7347 (set (match_operand:QI 2 "accg_operand" "=B")
7348 (unspec:QI [(match_operand:HI 3 "accg_operand" "B")
7349 (match_operand:SI 4 "const_int_operand" "n")]
7354 switch (INTVAL (operands[4]))
7357 case FRV_BUILTIN_MADDACCS: return \"maddaccs %1, %0\";
7358 case FRV_BUILTIN_MSUBACCS: return \"msubaccs %1, %0\";
7361 fatal_insn (\"Bad media insn, maddacc\", insn);
7363 [(set_attr "length" "4")
7364 (set_attr "type" "maddacc")])
7366 ;; Dual accumulator addition/subtraction: type "mdaddacc"
7368 (define_expand "mdaddaccs"
7369 [(parallel [(set (match_operand:DI 0 "even_acc_operand" "")
7370 (unspec:DI [(match_operand:V4SI 1 "quad_acc_operand" "")]
7372 (set (match_operand:HI 2 "accg_operand" "")
7373 (unspec:HI [(match_operand:V4QI 3 "accg_operand" "")
7375 UNSPEC_MDADDACC))])]
7377 "operands[4] = GEN_INT (FRV_BUILTIN_MDADDACCS);")
7379 (define_expand "mdsubaccs"
7380 [(parallel [(set (match_operand:DI 0 "even_acc_operand" "")
7381 (unspec:DI [(match_operand:V4SI 1 "quad_acc_operand" "")]
7383 (set (match_operand:HI 2 "accg_operand" "")
7384 (unspec:HI [(match_operand:V4QI 3 "accg_operand" "")
7386 UNSPEC_MDADDACC))])]
7388 "operands[4] = GEN_INT (FRV_BUILTIN_MDSUBACCS);")
7390 (define_insn "mdasaccs"
7391 [(set (match_operand:V4SI 0 "quad_acc_operand" "=A")
7392 (unspec:V4SI [(match_operand:V4SI 1 "quad_acc_operand" "A")]
7394 (set (match_operand:V4QI 2 "accg_operand" "=B")
7395 (unspec:V4QI [(match_operand:V4QI 3 "accg_operand" "B")]
7399 [(set_attr "length" "4")
7400 (set_attr "type" "mdaddacc")])
7402 (define_insn "*mdaddacc"
7403 [(set (match_operand:DI 0 "even_acc_operand" "=b")
7404 (unspec:DI [(match_operand:V4SI 1 "quad_acc_operand" "A")]
7406 (set (match_operand:HI 2 "accg_operand" "=B")
7407 (unspec:HI [(match_operand:V4QI 3 "accg_operand" "B")
7408 (match_operand:SI 4 "const_int_operand" "n")]
7413 switch (INTVAL (operands[4]))
7416 case FRV_BUILTIN_MDADDACCS: return \"mdaddaccs %1, %0\";
7417 case FRV_BUILTIN_MDSUBACCS: return \"mdsubaccs %1, %0\";
7420 fatal_insn (\"Bad media insn, mdaddacc\", insn);
7422 [(set_attr "length" "4")
7423 (set_attr "type" "mdaddacc")])
7425 ;; Dual absolute (halfword): type "mabsh"
7427 (define_insn "mabshs"
7428 [(set (match_operand:SI 0 "fpr_operand" "=f")
7429 (unspec:SI [(match_operand:SI 1 "fpr_operand" "f")] UNSPEC_MABSHS))]
7432 [(set_attr "length" "4")
7433 (set_attr "type" "mabsh")])
7435 ;; Dual rotate: type "mdrot"
7437 (define_insn "mdrotli"
7438 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
7439 (unspec:DI [(match_operand:DI 1 "even_fpr_operand" "h")
7440 (match_operand:SI 2 "uint5_operand" "I")]
7443 "mdrotli %1, %2, %0"
7444 [(set_attr "length" "4")
7445 (set_attr "type" "mdrot")])
7447 ;; Dual coupling (concatenation): type "mcpl"
7449 (define_insn "mcplhi"
7450 [(set (match_operand:SI 0 "fpr_operand" "=f")
7451 (unspec:SI [(match_operand:DI 1 "fpr_operand" "h")
7452 (match_operand:SI 2 "uint4_operand" "I")]
7456 [(set_attr "length" "4")
7457 (set_attr "type" "mcpl")])
7459 (define_insn "mcpli"
7460 [(set (match_operand:SI 0 "fpr_operand" "=f")
7461 (unspec:SI [(match_operand:DI 1 "fpr_operand" "h")
7462 (match_operand:SI 2 "uint5_operand" "I")]
7466 [(set_attr "length" "4")
7467 (set_attr "type" "mcpl")])
7469 ;; Dual cut: type "mdcut"
7471 (define_insn "mdcutssi"
7472 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
7473 (unspec:DI [(match_operand:DI 1 "even_acc_operand" "b")
7474 (match_operand:SI 2 "int6_operand" "I")
7475 (match_operand:HI 3 "accg_operand" "B")]
7478 "mdcutssi %1, %2, %0"
7479 [(set_attr "length" "4")
7480 (set_attr "type" "mdcut")])
7482 ;; Quad saturate (halfword): type "mqsath"
7484 (define_insn "mqsaths"
7485 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
7486 (unspec:DI [(match_operand:DI 1 "even_fpr_operand" "h")
7487 (match_operand:DI 2 "even_fpr_operand" "h")]
7490 "mqsaths %1, %2, %0"
7491 [(set_attr "length" "4")
7492 (set_attr "type" "mqsath")])
7494 ;; Quad limit instructions: type "mqlimh"
7496 (define_insn "mqlclrhs"
7497 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
7498 (unspec:DI [(match_operand:DI 1 "even_fpr_operand" "h")
7499 (match_operand:DI 2 "even_fpr_operand" "h")]
7501 "TARGET_MEDIA_FR450"
7502 "mqlclrhs %1, %2, %0"
7503 [(set_attr "length" "4")
7504 (set_attr "type" "mqlimh")])
7506 (define_insn "mqlmths"
7507 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
7508 (unspec:DI [(match_operand:DI 1 "even_fpr_operand" "h")
7509 (match_operand:DI 2 "even_fpr_operand" "h")]
7511 "TARGET_MEDIA_FR450"
7512 "mqlmths %1, %2, %0"
7513 [(set_attr "length" "4")
7514 (set_attr "type" "mqlimh")])
7516 (define_insn "mqsllhi"
7517 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
7518 (unspec:DI [(match_operand:DI 1 "even_fpr_operand" "h")
7519 (match_operand:SI 2 "int6_operand" "I")]
7521 "TARGET_MEDIA_FR450"
7522 "mqsllhi %1, %2, %0"
7523 [(set_attr "length" "4")
7524 (set_attr "type" "mqshift")])
7526 (define_insn "mqsrahi"
7527 [(set (match_operand:DI 0 "even_fpr_operand" "=h")
7528 (unspec:DI [(match_operand:DI 1 "even_fpr_operand" "h")
7529 (match_operand:SI 2 "int6_operand" "I")]
7531 "TARGET_MEDIA_FR450"
7532 "mqsrahi %1, %2, %0"
7533 [(set_attr "length" "4")
7534 (set_attr "type" "mqshift")])
7536 ;; Set hi/lo instructions: type "mset"
7538 (define_insn "mhsetlos"
7539 [(set (match_operand:SI 0 "fpr_operand" "=f")
7540 (unspec:SI [(match_operand:SI 1 "fpr_operand" "0")
7541 (match_operand:SI 2 "int12_operand" "NOP")]
7545 [(set_attr "length" "4")
7546 (set_attr "type" "mset")])
7548 (define_insn "mhsetloh"
7549 [(set (match_operand:SI 0 "fpr_operand" "=f")
7550 (unspec:SI [(match_operand:SI 1 "fpr_operand" "0")
7551 (match_operand:SI 2 "int5_operand" "I")]
7555 [(set_attr "length" "4")
7556 (set_attr "type" "mset")])
7558 (define_insn "mhsethis"
7559 [(set (match_operand:SI 0 "fpr_operand" "=f")
7560 (unspec:SI [(match_operand:SI 1 "fpr_operand" "0")
7561 (match_operand:SI 2 "int12_operand" "NOP")]
7565 [(set_attr "length" "4")
7566 (set_attr "type" "mset")])
7568 (define_insn "mhsethih"
7569 [(set (match_operand:SI 0 "fpr_operand" "=f")
7570 (unspec:SI [(match_operand:SI 1 "fpr_operand" "0")
7571 (match_operand:SI 2 "int5_operand" "I")]
7575 [(set_attr "length" "4")
7576 (set_attr "type" "mset")])
7578 (define_insn "mhdsets"
7579 [(set (match_operand:SI 0 "fpr_operand" "=f")
7580 (unspec:SI [(match_operand:SI 1 "int12_operand" "NOP")]
7584 [(set_attr "length" "4")
7585 (set_attr "type" "mset")])
7587 (define_insn "mhdseth"
7588 [(set (match_operand:SI 0 "fpr_operand" "=f")
7589 (unspec:SI [(match_operand:SI 1 "fpr_operand" "0")
7590 (match_operand:SI 2 "int5_operand" "I")]
7594 [(set_attr "length" "4")
7595 (set_attr "type" "mset")])
7597 ;;-----------------------------------------------------------------------------
7599 (define_expand "symGOT2reg"
7600 [(match_operand:SI 0 "" "")
7601 (match_operand:SI 1 "" "")
7602 (match_operand:SI 2 "" "")
7603 (match_operand:SI 3 "" "")]
7609 insn = emit_insn (gen_symGOT2reg_i (operands[0], operands[1], operands[2], operands[3]));
7611 MEM_READONLY_P (SET_SRC (PATTERN (insn))) = 1;
7613 set_unique_reg_note (insn, REG_EQUAL, operands[1]);
7618 (define_expand "symGOT2reg_i"
7619 [(set (match_operand:SI 0 "" "")
7620 (mem:SI (plus:SI (match_operand:SI 2 "" "")
7621 (const:SI (unspec:SI [(match_operand:SI 1 "" "")
7622 (match_operand:SI 3 "" "")]
7627 (define_expand "symGOT2reg_hilo"
7629 (high:SI (const:SI (unspec:SI [(match_operand:SI 1 "" "")
7630 (match_dup 4)] UNSPEC_GOT))))
7632 (lo_sum:SI (match_dup 6)
7633 (const:SI (unspec:SI [(match_dup 1)
7634 (match_operand:SI 3 "" "")]
7636 (set (match_operand:SI 0 "" "")
7637 (mem:SI (plus:SI (match_dup 5)
7638 (match_operand:SI 2 "" ""))))
7643 if (!can_create_pseudo_p ())
7644 operands[6] = operands[5] = operands[0];
7647 operands[6] = gen_reg_rtx (SImode);
7648 operands[5] = gen_reg_rtx (SImode);
7651 operands[4] = GEN_INT (INTVAL (operands[3]) + 1);
7652 operands[3] = GEN_INT (INTVAL (operands[3]) + 2);
7655 (define_expand "symGOTOFF2reg_hilo"
7657 (high:SI (const:SI (unspec:SI [(match_operand:SI 1 "" "")
7658 (match_dup 4)] UNSPEC_GOT))))
7660 (lo_sum:SI (match_dup 6)
7661 (const:SI (unspec:SI [(match_dup 1)
7662 (match_operand:SI 3 "" "")]
7664 (set (match_operand:SI 0 "" "")
7665 (plus:SI (match_dup 5)
7666 (match_operand:SI 2 "" "")))
7671 if (!can_create_pseudo_p ())
7672 operands[6] = operands[5] = operands[0];
7675 operands[6] = gen_reg_rtx (SImode);
7676 operands[5] = gen_reg_rtx (SImode);
7679 operands[4] = GEN_INT (INTVAL (operands[3]) + 1);
7680 operands[3] = GEN_INT (INTVAL (operands[3]) + 2);
7683 (define_expand "symGOTOFF2reg"
7684 [(match_operand:SI 0 "" "")
7685 (match_operand:SI 1 "" "")
7686 (match_operand:SI 2 "" "")
7687 (match_operand:SI 3 "" "")]
7691 rtx insn = emit_insn (gen_symGOTOFF2reg_i (operands[0], operands[1], operands[2], operands[3]));
7693 set_unique_reg_note (insn, REG_EQUAL, operands[1]);
7698 (define_expand "symGOTOFF2reg_i"
7699 [(set (match_operand:SI 0 "" "")
7700 (plus:SI (match_operand:SI 2 "" "")
7702 (unspec:SI [(match_operand:SI 1 "" "")
7703 (match_operand:SI 3 "" "")]
7708 (define_expand "symGPREL2reg"
7709 [(match_operand:SI 0 "" "")
7710 (match_operand:SI 1 "" "")
7711 (match_operand:SI 2 "" "")
7712 (match_operand:SI 3 "" "")
7719 if (!can_create_pseudo_p ())
7720 operands[4] = operands[0];
7722 operands[4] = gen_reg_rtx (SImode);
7724 emit_insn (frv_gen_GPsym2reg (operands[4], operands[2]));
7726 insn = emit_insn (gen_symGOTOFF2reg_i (operands[0], operands[1],
7727 operands[4], operands[3]));
7729 set_unique_reg_note (insn, REG_EQUAL, operands[1]);
7734 (define_expand "symGPREL2reg_hilo"
7735 [(match_operand:SI 0 "" "")
7736 (match_operand:SI 1 "" "")
7737 (match_operand:SI 2 "" "")
7738 (match_operand:SI 3 "" "")
7745 if (!can_create_pseudo_p ())
7747 emit_insn (gen_symGOT2reg (operands[0], operands[1], operands[2],
7748 GEN_INT (R_FRV_GOT12)));
7752 operands[4] = gen_reg_rtx (SImode);
7754 emit_insn (frv_gen_GPsym2reg (operands[4], operands[2]));
7756 insn = emit_insn (gen_symGOTOFF2reg_hilo (operands[0], operands[1],
7757 operands[4], operands[3]));
7759 set_unique_reg_note (insn, REG_EQUAL, operands[1]);
7775 (UNSPEC_PREFETCH0 163)
7776 (UNSPEC_PREFETCH 164)
7777 (UNSPEC_IACCreadll 165)
7778 (UNSPEC_IACCreadl 166)
7779 (UNSPEC_IACCsetll 167)
7780 (UNSPEC_IACCsetl 168)
7789 [(set (match_operand:DI 0 "integer_register_operand" "=d")
7790 (unspec:DI [(match_operand:SI 1 "integer_register_operand" "d")
7791 (match_operand:SI 2 "integer_register_operand" "d")]
7795 [(set_attr "length" "4")
7796 (set_attr "type" "mul")])
7799 [(set (match_operand:DI 0 "integer_register_operand" "=d")
7800 (unspec:DI [(match_operand:SI 1 "integer_register_operand" "d")
7801 (match_operand:SI 2 "integer_register_operand" "d")]
7805 [(set_attr "length" "4")
7806 (set_attr "type" "mul")])
7808 (define_insn "smass"
7809 [(set (reg:DI IACC0_REG)
7810 (unspec:DI [(match_operand:SI 0 "integer_register_operand" "d")
7811 (match_operand:SI 1 "integer_register_operand" "d")
7814 "TARGET_FR405_BUILTINS"
7816 [(set_attr "length" "4")
7817 (set_attr "type" "macc")])
7819 (define_insn "smsss"
7820 [(set (reg:DI IACC0_REG)
7821 (unspec:DI [(match_operand:SI 0 "integer_register_operand" "d")
7822 (match_operand:SI 1 "integer_register_operand" "d")
7825 "TARGET_FR405_BUILTINS"
7827 [(set_attr "length" "4")
7828 (set_attr "type" "macc")])
7831 [(set (reg:DI IACC0_REG)
7832 (unspec:DI [(match_operand:SI 0 "integer_register_operand" "d")
7833 (match_operand:SI 1 "integer_register_operand" "d")]
7835 "TARGET_FR405_BUILTINS"
7837 [(set_attr "length" "4")
7838 (set_attr "type" "macc")])
7840 (define_insn "addss"
7841 [(set (match_operand:SI 0 "integer_register_operand" "=d")
7842 (unspec:SI [(match_operand:SI 1 "integer_register_operand" "d")
7843 (match_operand:SI 2 "integer_register_operand" "d")]
7845 "TARGET_FR405_BUILTINS"
7847 [(set_attr "length" "4")
7848 (set_attr "type" "int")])
7850 (define_insn "subss"
7851 [(set (match_operand:SI 0 "integer_register_operand" "=d")
7852 (unspec:SI [(match_operand:SI 1 "integer_register_operand" "d")
7853 (match_operand:SI 2 "integer_register_operand" "d")]
7855 "TARGET_FR405_BUILTINS"
7857 [(set_attr "length" "4")
7858 (set_attr "type" "int")])
7860 (define_insn "slass"
7861 [(set (match_operand:SI 0 "integer_register_operand" "=d")
7862 (unspec:SI [(match_operand:SI 1 "integer_register_operand" "d")
7863 (match_operand:SI 2 "integer_register_operand" "d")]
7865 "TARGET_FR405_BUILTINS"
7867 [(set_attr "length" "4")
7868 (set_attr "type" "int")])
7871 [(set (match_operand:SI 0 "integer_register_operand" "=d")
7872 (unspec:SI [(match_operand:SI 1 "integer_register_operand" "d")
7873 (match_operand:SI 2 "integer_register_operand" "d")]
7877 [(set_attr "length" "4")
7878 (set_attr "type" "scan")])
7880 (define_insn "scutss"
7881 [(set (match_operand:SI 0 "integer_register_operand" "=d")
7882 (unspec:SI [(match_operand:SI 1 "integer_register_operand" "d")
7885 "TARGET_FR405_BUILTINS"
7887 [(set_attr "length" "4")
7888 (set_attr "type" "cut")])
7890 (define_insn "frv_prefetch0"
7891 [(prefetch (unspec:SI [(match_operand:SI 0 "register_operand" "r")]
7897 [(set_attr "length" "4")])
7899 (define_insn "frv_prefetch"
7900 [(prefetch (unspec:SI [(match_operand:SI 0 "register_operand" "r")]
7904 "TARGET_FR500_FR550_BUILTINS"
7905 "nop.p\\n\\tnldub @(%0, gr0), gr0"
7906 [(set_attr "length" "8")])
7910 (define_insn "call_gettlsoff"
7911 [(set (match_operand:SI 0 "register_operand" "=D09")
7913 [(match_operand:SI 1 "symbolic_operand" "")]
7915 (clobber (reg:SI GR8_REG))
7916 (clobber (reg:SI LRREG))
7917 (use (match_operand:SI 2 "register_operand" "D15"))]
7919 "call #gettlsoff(%a1)"
7920 [(set_attr "length" "4")
7921 (set_attr "type" "load_or_call")])
7923 ;; We have to expand this like a libcall (it sort of actually is)
7924 ;; because otherwise sched may move, for example, an insn that sets up
7925 ;; GR8 for a subsequence call before the *tls_indirect_call insn, and
7926 ;; then reload won't be able to fix things up.
7927 (define_expand "tls_indirect_call"
7928 [(set (reg:DI GR8_REG)
7929 (match_operand:DI 2 "register_operand" ""))
7931 [(set (reg:SI GR9_REG)
7933 [(match_operand:SI 1 "symbolic_operand" "")
7935 UNSPEC_TLS_INDIRECT_CALL))
7936 (clobber (reg:SI GR8_REG))
7937 (clobber (reg:SI LRREG))
7938 (use (match_operand:SI 3 "register_operand" ""))])
7939 (set (match_operand:SI 0 "register_operand" "")
7943 (define_insn "*tls_indirect_call"
7944 [(set (reg:SI GR9_REG)
7946 [(match_operand:SI 0 "symbolic_operand" "")
7948 UNSPEC_TLS_INDIRECT_CALL))
7949 (clobber (reg:SI GR8_REG))
7950 (clobber (reg:SI LRREG))
7951 ;; If there was a way to represent the fact that we don't need GR9
7952 ;; or GR15 to be set before this instruction (it could be in
7953 ;; parallel), we could use it here. This change wouldn't apply to
7954 ;; call_gettlsoff, thought, since the linker may turn the latter
7955 ;; into ldi @(gr15,offset),gr9.
7956 (use (match_operand:SI 1 "register_operand" "D15"))]
7958 "calll #gettlsoff(%a0)@(gr8,gr0)"
7959 [(set_attr "length" "4")
7960 (set_attr "type" "jumpl")])
7962 (define_insn "tls_load_gottlsoff12"
7963 [(set (match_operand:SI 0 "register_operand" "=r")
7965 [(match_operand:SI 1 "symbolic_operand" "")
7966 (match_operand:SI 2 "register_operand" "r")]
7967 UNSPEC_TLS_LOAD_GOTTLSOFF12))]
7969 "ldi @(%2, #gottlsoff12(%1)), %0"
7970 [(set_attr "length" "4")])
7972 (define_expand "tlsoff_hilo"
7973 [(set (match_operand:SI 0 "register_operand" "=r")
7974 (high:SI (const:SI (unspec:SI
7975 [(match_operand:SI 1 "symbolic_operand" "")
7976 (match_operand:SI 2 "immediate_operand" "n")]
7979 (lo_sum:SI (match_dup 0)
7980 (const:SI (unspec:SI [(match_dup 1)
7981 (match_dup 3)] UNSPEC_GOT))))]
7985 operands[3] = GEN_INT (INTVAL (operands[2]) + 1);
7988 ;; Just like movdi_ldd, but with relaxation annotations.
7989 (define_insn "tls_tlsdesc_ldd"
7990 [(set (match_operand:DI 0 "register_operand" "=r")
7991 (unspec:DI [(mem:DI (unspec:SI
7992 [(match_operand:SI 1 "register_operand" "r")
7993 (match_operand:SI 2 "register_operand" "r")
7994 (match_operand:SI 3 "symbolic_operand" "")]
7995 UNSPEC_TLS_TLSDESC_LDD_AUX))]
7996 UNSPEC_TLS_TLSDESC_LDD))]
7998 "ldd #tlsdesc(%a3)@(%1,%2), %0"
7999 [(set_attr "length" "4")
8000 (set_attr "type" "gload")])
8002 (define_insn "tls_tlsoff_ld"
8003 [(set (match_operand:SI 0 "register_operand" "=r")
8005 [(match_operand:SI 1 "register_operand" "r")
8006 (match_operand:SI 2 "register_operand" "r")
8007 (match_operand:SI 3 "symbolic_operand" "")]
8008 UNSPEC_TLS_TLSOFF_LD)))]
8010 "ld #tlsoff(%a3)@(%1,%2), %0"
8011 [(set_attr "length" "4")
8012 (set_attr "type" "gload")])
8014 (define_insn "tls_lddi"
8015 [(set (match_operand:DI 0 "register_operand" "=r")
8016 (unspec:DI [(match_operand:SI 1 "symbolic_operand" "")
8017 (match_operand:SI 2 "register_operand" "d")]
8020 "lddi @(%2, #gottlsdesc12(%a1)), %0"
8021 [(set_attr "length" "4")
8022 (set_attr "type" "gload")])