alpha.h (FUNCTION_OK_FOR_SIBCALL): New.
[gcc.git] / gcc / config / alpha / alpha.md
1 ;; Machine description for DEC Alpha for GNU C compiler
2 ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 ;; 2000 Free Software Foundation, Inc.
4 ;; Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
5
6 ;; This file is part of GNU CC.
7
8 ;; GNU CC 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 2, or (at your option)
11 ;; any later version.
12
13 ;; GNU CC 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.
17
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GNU CC; see the file COPYING. If not, write to
20 ;; the Free Software Foundation, 59 Temple Place - Suite 330,
21 ;; Boston, MA 02111-1307, USA.
22
23 ;;- See file "rtl.def" for documentation on define_insn, match_*, et. al.
24
25 ;; Uses of UNSPEC in this file:
26 ;;
27 ;; 0 arg_home
28 ;; 1 cttz
29 ;; 2 insxh
30 ;; 3 mskxh
31 ;; 5 cvtql
32 ;; 6 nt_lda
33 ;;
34 ;; UNSPEC_VOLATILE:
35 ;;
36 ;; 0 imb
37 ;; 1 blockage
38 ;; 2 builtin_setjmp_receiver
39 ;; 3 builtin_longjmp
40 ;; 4 trapb
41 ;; 5 prologue_stack_probe_loop
42 ;; 6 realign
43 ;; 7 exception_receiver
44 \f
45 ;; Processor type -- this attribute must exactly match the processor_type
46 ;; enumeration in alpha.h.
47
48 (define_attr "cpu" "ev4,ev5,ev6"
49 (const (symbol_ref "alpha_cpu")))
50
51 ;; Define an insn type attribute. This is used in function unit delay
52 ;; computations, among other purposes. For the most part, we use the names
53 ;; defined in the EV4 documentation, but add a few that we have to know about
54 ;; separately.
55
56 (define_attr "type"
57 "ild,fld,ldsym,ist,fst,ibr,fbr,jsr,iadd,ilog,shift,icmov,fcmov,icmp,imul,fadd,fmul,fcpys,fdiv,fsqrt,misc,mvi,ftoi,itof,multi"
58 (const_string "iadd"))
59
60 ;; Describe a user's asm statement.
61 (define_asm_attributes
62 [(set_attr "type" "multi")])
63
64 ;; Define the operand size an insn operates on. Used primarily by mul
65 ;; and div operations that have size dependant timings.
66
67 (define_attr "opsize" "si,di,udi" (const_string "di"))
68
69 ;; The TRAP_TYPE attribute marks instructions that may generate traps
70 ;; (which are imprecise and may need a trapb if software completion
71 ;; is desired).
72
73 (define_attr "trap" "no,yes" (const_string "no"))
74
75 ;; The length of an instruction sequence in bytes.
76
77 (define_attr "length" "" (const_int 4))
78 \f
79 ;; On EV4 there are two classes of resources to consider: resources needed
80 ;; to issue, and resources needed to execute. IBUS[01] are in the first
81 ;; category. ABOX, BBOX, EBOX, FBOX, IMUL & FDIV make up the second.
82 ;; (There are a few other register-like resources, but ...)
83
84 ; First, describe all of the issue constraints with single cycle delays.
85 ; All insns need a bus, but all except loads require one or the other.
86 (define_function_unit "ev4_ibus0" 1 0
87 (and (eq_attr "cpu" "ev4")
88 (eq_attr "type" "fst,fbr,iadd,imul,ilog,shift,icmov,icmp"))
89 1 1)
90
91 (define_function_unit "ev4_ibus1" 1 0
92 (and (eq_attr "cpu" "ev4")
93 (eq_attr "type" "ist,ibr,jsr,fadd,fcmov,fcpys,fmul,fdiv,misc"))
94 1 1)
95
96 ; Memory delivers its result in three cycles. Actually return one and
97 ; take care of this in adjust_cost, since we want to handle user-defined
98 ; memory latencies.
99 (define_function_unit "ev4_abox" 1 0
100 (and (eq_attr "cpu" "ev4")
101 (eq_attr "type" "ild,fld,ldsym,ist,fst"))
102 1 1)
103
104 ; Branches have no delay cost, but do tie up the unit for two cycles.
105 (define_function_unit "ev4_bbox" 1 1
106 (and (eq_attr "cpu" "ev4")
107 (eq_attr "type" "ibr,fbr,jsr"))
108 2 2)
109
110 ; Arithmetic insns are normally have their results available after
111 ; two cycles. There are a number of exceptions. They are encoded in
112 ; ADJUST_COST. Some of the other insns have similar exceptions.
113 (define_function_unit "ev4_ebox" 1 0
114 (and (eq_attr "cpu" "ev4")
115 (eq_attr "type" "iadd,ilog,shift,icmov,icmp,misc"))
116 2 1)
117
118 (define_function_unit "imul" 1 0
119 (and (eq_attr "cpu" "ev4")
120 (and (eq_attr "type" "imul")
121 (eq_attr "opsize" "si")))
122 21 19)
123
124 (define_function_unit "imul" 1 0
125 (and (eq_attr "cpu" "ev4")
126 (and (eq_attr "type" "imul")
127 (eq_attr "opsize" "!si")))
128 23 21)
129
130 (define_function_unit "ev4_fbox" 1 0
131 (and (eq_attr "cpu" "ev4")
132 (eq_attr "type" "fadd,fmul,fcpys,fcmov"))
133 6 1)
134
135 (define_function_unit "fdiv" 1 0
136 (and (eq_attr "cpu" "ev4")
137 (and (eq_attr "type" "fdiv")
138 (eq_attr "opsize" "si")))
139 34 30)
140
141 (define_function_unit "fdiv" 1 0
142 (and (eq_attr "cpu" "ev4")
143 (and (eq_attr "type" "fdiv")
144 (eq_attr "opsize" "di")))
145 63 59)
146 \f
147 ;; EV5 scheduling. EV5 can issue 4 insns per clock.
148 ;;
149 ;; EV5 has two asymetric integer units. Model this with E0 & E1 along
150 ;; with the combined resource EBOX.
151
152 (define_function_unit "ev5_ebox" 2 0
153 (and (eq_attr "cpu" "ev5")
154 (eq_attr "type" "!fbr,fcmov,fadd,fmul,fcpys,fdiv"))
155 1 1)
156
157 ; Memory takes at least 2 clocks. Return one from here and fix up with
158 ; user-defined latencies in adjust_cost.
159 (define_function_unit "ev5_ebox" 2 0
160 (and (eq_attr "cpu" "ev5")
161 (eq_attr "type" "ild,fld,ldsym"))
162 1 1)
163
164 ; Loads can dual issue with one another, but loads and stores do not mix.
165 (define_function_unit "ev5_e0" 1 0
166 (and (eq_attr "cpu" "ev5")
167 (eq_attr "type" "ild,fld,ldsym"))
168 1 1
169 [(eq_attr "type" "ist,fst")])
170
171 ; Stores, shifts, multiplies can only issue to E0
172 (define_function_unit "ev5_e0" 1 0
173 (and (eq_attr "cpu" "ev5")
174 (eq_attr "type" "ist,fst,shift,imul"))
175 1 1)
176
177 ; Motion video insns also issue only to E0, and take two ticks.
178 (define_function_unit "ev5_e0" 1 0
179 (and (eq_attr "cpu" "ev5")
180 (eq_attr "type" "mvi"))
181 2 1)
182
183 ; Conditional moves always take 2 ticks.
184 (define_function_unit "ev5_ebox" 2 0
185 (and (eq_attr "cpu" "ev5")
186 (eq_attr "type" "icmov"))
187 2 1)
188
189 ; Branches can only issue to E1
190 (define_function_unit "ev5_e1" 1 0
191 (and (eq_attr "cpu" "ev5")
192 (eq_attr "type" "ibr,jsr"))
193 1 1)
194
195 ; Multiplies also use the integer multiplier.
196 ; ??? How to: "No instruction can be issued to pipe E0 exactly two
197 ; cycles before an integer multiplication completes."
198 (define_function_unit "imul" 1 0
199 (and (eq_attr "cpu" "ev5")
200 (and (eq_attr "type" "imul")
201 (eq_attr "opsize" "si")))
202 8 4)
203
204 (define_function_unit "imul" 1 0
205 (and (eq_attr "cpu" "ev5")
206 (and (eq_attr "type" "imul")
207 (eq_attr "opsize" "di")))
208 12 8)
209
210 (define_function_unit "imul" 1 0
211 (and (eq_attr "cpu" "ev5")
212 (and (eq_attr "type" "imul")
213 (eq_attr "opsize" "udi")))
214 14 8)
215
216 ;; Similarly for the FPU we have two asymetric units. But fcpys can issue
217 ;; on either so we have to play the game again.
218
219 (define_function_unit "ev5_fbox" 2 0
220 (and (eq_attr "cpu" "ev5")
221 (eq_attr "type" "fadd,fcmov,fmul,fcpys,fbr,fdiv"))
222 4 1)
223
224 (define_function_unit "ev5_fm" 1 0
225 (and (eq_attr "cpu" "ev5")
226 (eq_attr "type" "fmul"))
227 4 1)
228
229 ; Add and cmov as you would expect; fbr never produces a result;
230 ; fdiv issues through fa to the divider,
231 (define_function_unit "ev5_fa" 1 0
232 (and (eq_attr "cpu" "ev5")
233 (eq_attr "type" "fadd,fcmov,fbr,fdiv"))
234 4 1)
235
236 ; ??? How to: "No instruction can be issued to pipe FA exactly five
237 ; cycles before a floating point divide completes."
238 (define_function_unit "fdiv" 1 0
239 (and (eq_attr "cpu" "ev5")
240 (and (eq_attr "type" "fdiv")
241 (eq_attr "opsize" "si")))
242 15 15) ; 15 to 31 data dependant
243
244 (define_function_unit "fdiv" 1 0
245 (and (eq_attr "cpu" "ev5")
246 (and (eq_attr "type" "fdiv")
247 (eq_attr "opsize" "di")))
248 22 22) ; 22 to 60 data dependant
249 \f
250 ;; EV6 scheduling. EV6 can issue 4 insns per clock.
251 ;;
252 ;; EV6 has two symmetric pairs ("clusters") of two asymetric integer units
253 ;; ("upper" and "lower"), yielding pipe names U0, U1, L0, L1.
254
255 ;; Conditional moves decompose into two independant primitives, each
256 ;; taking one cycle. Since ev6 is out-of-order, we can't see anything
257 ;; but two cycles.
258 (define_function_unit "ev6_ebox" 4 0
259 (and (eq_attr "cpu" "ev6")
260 (eq_attr "type" "icmov"))
261 2 1)
262
263 (define_function_unit "ev6_ebox" 4 0
264 (and (eq_attr "cpu" "ev6")
265 (eq_attr "type" "!fbr,fcmov,fadd,fmul,fcpys,fdiv,fsqrt"))
266 1 1)
267
268 ;; Integer loads take at least 3 clocks, and only issue to lower units.
269 ;; Return one from here and fix up with user-defined latencies in adjust_cost.
270 (define_function_unit "ev6_l" 2 0
271 (and (eq_attr "cpu" "ev6")
272 (eq_attr "type" "ild,ldsym,ist,fst"))
273 1 1)
274
275 ;; FP loads take at least 4 clocks. Return two from here...
276 (define_function_unit "ev6_l" 2 0
277 (and (eq_attr "cpu" "ev6")
278 (eq_attr "type" "fld"))
279 2 1)
280
281 ;; Motion video insns also issue only to U0, and take three ticks.
282 (define_function_unit "ev6_u0" 1 0
283 (and (eq_attr "cpu" "ev6")
284 (eq_attr "type" "mvi"))
285 3 1)
286
287 (define_function_unit "ev6_u" 2 0
288 (and (eq_attr "cpu" "ev6")
289 (eq_attr "type" "mvi"))
290 3 1)
291
292 ;; Shifts issue to either upper pipe.
293 (define_function_unit "ev6_u" 2 0
294 (and (eq_attr "cpu" "ev6")
295 (eq_attr "type" "shift"))
296 1 1)
297
298 ;; Multiplies issue only to U1, and all take 7 ticks.
299 ;; Rather than create a new function unit just for U1, reuse IMUL
300 (define_function_unit "imul" 1 0
301 (and (eq_attr "cpu" "ev6")
302 (eq_attr "type" "imul"))
303 7 1)
304
305 (define_function_unit "ev6_u" 2 0
306 (and (eq_attr "cpu" "ev6")
307 (eq_attr "type" "imul"))
308 7 1)
309
310 ;; Branches issue to either upper pipe
311 (define_function_unit "ev6_u" 2 0
312 (and (eq_attr "cpu" "ev6")
313 (eq_attr "type" "ibr"))
314 3 1)
315
316 ;; Calls only issue to L0.
317 (define_function_unit "ev6_l0" 1 0
318 (and (eq_attr "cpu" "ev6")
319 (eq_attr "type" "jsr"))
320 1 1)
321
322 (define_function_unit "ev6_l" 2 0
323 (and (eq_attr "cpu" "ev6")
324 (eq_attr "type" "jsr"))
325 1 1)
326
327 ;; Ftoi/itof only issue to lower pipes
328 (define_function_unit "ev6_l" 2 0
329 (and (eq_attr "cpu" "ev6")
330 (eq_attr "type" "ftoi"))
331 3 1)
332
333 (define_function_unit "ev6_l" 2 0
334 (and (eq_attr "cpu" "ev6")
335 (eq_attr "type" "itof"))
336 4 1)
337
338 ;; For the FPU we are very similar to EV5, except there's no insn that
339 ;; can issue to fm & fa, so we get to leave that out.
340
341 (define_function_unit "ev6_fm" 1 0
342 (and (eq_attr "cpu" "ev6")
343 (eq_attr "type" "fmul"))
344 4 1)
345
346 (define_function_unit "ev6_fa" 1 0
347 (and (eq_attr "cpu" "ev6")
348 (eq_attr "type" "fadd,fcpys,fbr,fdiv,fsqrt"))
349 4 1)
350
351 (define_function_unit "ev6_fa" 1 0
352 (and (eq_attr "cpu" "ev6")
353 (eq_attr "type" "fcmov"))
354 8 1)
355
356 (define_function_unit "fdiv" 1 0
357 (and (eq_attr "cpu" "ev6")
358 (and (eq_attr "type" "fdiv")
359 (eq_attr "opsize" "si")))
360 12 10)
361
362 (define_function_unit "fdiv" 1 0
363 (and (eq_attr "cpu" "ev6")
364 (and (eq_attr "type" "fdiv")
365 (eq_attr "opsize" "di")))
366 15 13)
367
368 (define_function_unit "fsqrt" 1 0
369 (and (eq_attr "cpu" "ev6")
370 (and (eq_attr "type" "fsqrt")
371 (eq_attr "opsize" "si")))
372 16 14)
373
374 (define_function_unit "fsqrt" 1 0
375 (and (eq_attr "cpu" "ev6")
376 (and (eq_attr "type" "fsqrt")
377 (eq_attr "opsize" "di")))
378 32 30)
379
380 ; ??? The FPU communicates with memory and the integer register file
381 ; via two fp store units. We need a slot in the fst immediately, and
382 ; a slot in LOW after the operand data is ready. At which point the
383 ; data may be moved either to the store queue or the integer register
384 ; file and the insn retired.
385
386 \f
387 ;; First define the arithmetic insns. Note that the 32-bit forms also
388 ;; sign-extend.
389
390 ;; Handle 32-64 bit extension from memory to a floating point register
391 ;; specially, since this ocurrs frequently in int->double conversions.
392 ;;
393 ;; Note that while we must retain the =f case in the insn for reload's
394 ;; benefit, it should be eliminated after reload, so we should never emit
395 ;; code for that case. But we don't reject the possibility.
396
397 (define_expand "extendsidi2"
398 [(set (match_operand:DI 0 "register_operand" "")
399 (sign_extend:DI (match_operand:SI 1 "nonimmediate_operand" "")))]
400 ""
401 "")
402
403 (define_insn ""
404 [(set (match_operand:DI 0 "register_operand" "=r,r,*f,?*f")
405 (sign_extend:DI
406 (match_operand:SI 1 "nonimmediate_operand" "r,m,*f,m")))]
407 "! TARGET_FIX"
408 "@
409 addl %1,$31,%0
410 ldl %0,%1
411 cvtlq %1,%0
412 lds %0,%1\;cvtlq %0,%0"
413 [(set_attr "type" "iadd,ild,fadd,fld")
414 (set_attr "length" "*,*,*,8")])
415
416 (define_insn ""
417 [(set (match_operand:DI 0 "register_operand" "=r,r,r,*f,?*f")
418 (sign_extend:DI
419 (match_operand:SI 1 "nonimmediate_operand" "r,m,*f,*f,m")))]
420 "TARGET_FIX"
421 "@
422 addl %1,$31,%0
423 ldl %0,%1
424 ftois %1,%0
425 cvtlq %1,%0
426 lds %0,%1\;cvtlq %0,%0"
427 [(set_attr "type" "iadd,ild,ftoi,fadd,fld")
428 (set_attr "length" "*,*,*,*,8")])
429
430 ;; Due to issues with CLASS_CANNOT_CHANGE_SIZE, we cannot use a subreg here.
431 (define_split
432 [(set (match_operand:DI 0 "hard_fp_register_operand" "")
433 (sign_extend:DI (match_operand:SI 1 "memory_operand" "")))]
434 "reload_completed"
435 [(set (match_dup 2) (match_dup 1))
436 (set (match_dup 0) (sign_extend:DI (match_dup 2)))]
437 "operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]));")
438
439 ;; Do addsi3 the way expand_binop would do if we didn't have one. This
440 ;; generates better code. We have the anonymous addsi3 pattern below in
441 ;; case combine wants to make it.
442 (define_expand "addsi3"
443 [(set (match_operand:SI 0 "register_operand" "")
444 (plus:SI (match_operand:SI 1 "reg_or_0_operand" "")
445 (match_operand:SI 2 "add_operand" "")))]
446 ""
447 "
448 {
449 if (optimize)
450 {
451 rtx op1 = gen_lowpart (DImode, operands[1]);
452 rtx op2 = gen_lowpart (DImode, operands[2]);
453
454 if (! cse_not_expected)
455 {
456 rtx tmp = gen_reg_rtx (DImode);
457 emit_insn (gen_adddi3 (tmp, op1, op2));
458 emit_move_insn (gen_lowpart (DImode, operands[0]), tmp);
459 }
460 else
461 emit_insn (gen_adddi3 (gen_lowpart (DImode, operands[0]), op1, op2));
462 DONE;
463 }
464 }")
465
466 (define_insn ""
467 [(set (match_operand:SI 0 "register_operand" "=r,r,r,r")
468 (plus:SI (match_operand:SI 1 "reg_or_0_operand" "%rJ,rJ,rJ,rJ")
469 (match_operand:SI 2 "add_operand" "rI,O,K,L")))]
470 ""
471 "@
472 addl %r1,%2,%0
473 subl %r1,%n2,%0
474 lda %0,%2(%r1)
475 ldah %0,%h2(%r1)")
476
477 (define_split
478 [(set (match_operand:SI 0 "register_operand" "")
479 (plus:SI (match_operand:SI 1 "register_operand" "")
480 (match_operand:SI 2 "const_int_operand" "")))]
481 "! add_operand (operands[2], SImode)"
482 [(set (match_dup 0) (plus:SI (match_dup 1) (match_dup 3)))
483 (set (match_dup 0) (plus:SI (match_dup 0) (match_dup 4)))]
484 "
485 {
486 HOST_WIDE_INT val = INTVAL (operands[2]);
487 HOST_WIDE_INT low = (val & 0xffff) - 2 * (val & 0x8000);
488 HOST_WIDE_INT rest = val - low;
489
490 operands[3] = GEN_INT (rest);
491 operands[4] = GEN_INT (low);
492 }")
493
494 (define_insn ""
495 [(set (match_operand:DI 0 "register_operand" "=r,r")
496 (sign_extend:DI
497 (plus:SI (match_operand:SI 1 "reg_or_0_operand" "%rJ,rJ")
498 (match_operand:SI 2 "sext_add_operand" "rI,O"))))]
499 ""
500 "@
501 addl %r1,%2,%0
502 subl %r1,%n2,%0")
503
504 (define_split
505 [(set (match_operand:DI 0 "register_operand" "")
506 (sign_extend:DI
507 (plus:SI (match_operand:SI 1 "reg_not_elim_operand" "")
508 (match_operand:SI 2 "const_int_operand" ""))))
509 (clobber (match_operand:SI 3 "reg_not_elim_operand" ""))]
510 "! sext_add_operand (operands[2], SImode) && INTVAL (operands[2]) > 0
511 && INTVAL (operands[2]) % 4 == 0"
512 [(set (match_dup 3) (match_dup 4))
513 (set (match_dup 0) (sign_extend:DI (plus:SI (mult:SI (match_dup 3)
514 (match_dup 5))
515 (match_dup 1))))]
516 "
517 {
518 HOST_WIDE_INT val = INTVAL (operands[2]) / 4;
519 int mult = 4;
520
521 if (val % 2 == 0)
522 val /= 2, mult = 8;
523
524 operands[4] = GEN_INT (val);
525 operands[5] = GEN_INT (mult);
526 }")
527
528 (define_split
529 [(set (match_operand:DI 0 "register_operand" "")
530 (sign_extend:DI
531 (plus:SI (match_operator:SI 1 "comparison_operator"
532 [(match_operand 2 "" "")
533 (match_operand 3 "" "")])
534 (match_operand:SI 4 "add_operand" ""))))
535 (clobber (match_operand:DI 5 "register_operand" ""))]
536 ""
537 [(set (match_dup 5) (match_dup 6))
538 (set (match_dup 0) (sign_extend:DI (plus:SI (match_dup 7) (match_dup 4))))]
539 "
540 {
541 operands[6] = gen_rtx_fmt_ee (GET_CODE (operands[1]), DImode,
542 operands[2], operands[3]);
543 operands[7] = gen_lowpart (SImode, operands[5]);
544 }")
545
546 (define_expand "adddi3"
547 [(set (match_operand:DI 0 "register_operand" "")
548 (plus:DI (match_operand:DI 1 "register_operand" "")
549 (match_operand:DI 2 "add_operand" "")))]
550 ""
551 "")
552
553 ;; This pattern exists so that register elimination tries to canonize
554 ;; (plus (plus reg c1) c2).
555
556 (define_insn "*lda"
557 [(set (match_operand:DI 0 "register_operand" "=r")
558 (match_operand:DI 1 "addition_operation" "p"))]
559 ""
560 "lda %0,%a1")
561
562 ;; We used to expend quite a lot of effort choosing addq/subq/lda.
563 ;; With complications like
564 ;;
565 ;; The NT stack unwind code can't handle a subq to adjust the stack
566 ;; (that's a bug, but not one we can do anything about). As of NT4.0 SP3,
567 ;; the exception handling code will loop if a subq is used and an
568 ;; exception occurs.
569 ;;
570 ;; The 19980616 change to emit prologues as RTL also confused some
571 ;; versions of GDB, which also interprets prologues. This has been
572 ;; fixed as of GDB 4.18, but it does not harm to unconditionally
573 ;; use lda here.
574 ;;
575 ;; and the fact that the three insns schedule exactly the same, it's
576 ;; just not worth the effort.
577
578 (define_insn "*adddi_2"
579 [(set (match_operand:DI 0 "register_operand" "=r,r,r")
580 (plus:DI (match_operand:DI 1 "register_operand" "%r,r,r")
581 (match_operand:DI 2 "add_operand" "r,K,L")))]
582 ""
583 "@
584 addq %1,%2,%0
585 lda %0,%2(%1)
586 ldah %0,%h2(%1)")
587
588 ;; ??? Allow large constants when basing off the frame pointer or some
589 ;; virtual register that may eliminate to the frame pointer. This is
590 ;; done because register elimination offsets will change the hi/lo split,
591 ;; and if we split before reload, we will require additional instructions.
592
593 (define_insn ""
594 [(set (match_operand:DI 0 "register_operand" "=r")
595 (plus:DI (match_operand:DI 1 "reg_no_subreg_operand" "r")
596 (match_operand:DI 2 "const_int_operand" "n")))]
597 "REG_OK_FP_BASE_P (operands[1])
598 && INTVAL (operands[2]) >= 0
599 /* This is the largest constant an lda+ldah pair can add, minus
600 an upper bound on the displacement between SP and AP during
601 register elimination. See INITIAL_ELIMINATION_OFFSET. */
602 && INTVAL (operands[2])
603 < (0x7fff8000
604 - FIRST_PSEUDO_REGISTER * UNITS_PER_WORD
605 - ALPHA_ROUND(current_function_outgoing_args_size)
606 - (ALPHA_ROUND (get_frame_size ()
607 + max_reg_num () * UNITS_PER_WORD
608 + current_function_pretend_args_size)
609 - current_function_pretend_args_size))"
610 "#")
611
612 ;; Don't do this if we are adjusting SP since we don't want to do it
613 ;; in two steps. Don't split FP sources for the reason listed above.
614 (define_split
615 [(set (match_operand:DI 0 "register_operand" "")
616 (plus:DI (match_operand:DI 1 "register_operand" "")
617 (match_operand:DI 2 "const_int_operand" "")))]
618 "! add_operand (operands[2], DImode)
619 && operands[0] != stack_pointer_rtx
620 && operands[1] != frame_pointer_rtx
621 && operands[1] != arg_pointer_rtx"
622 [(set (match_dup 0) (plus:DI (match_dup 1) (match_dup 3)))
623 (set (match_dup 0) (plus:DI (match_dup 0) (match_dup 4)))]
624 "
625 {
626 HOST_WIDE_INT val = INTVAL (operands[2]);
627 HOST_WIDE_INT low = (val & 0xffff) - 2 * (val & 0x8000);
628 HOST_WIDE_INT rest = val - low;
629
630 operands[4] = GEN_INT (low);
631 if (CONST_OK_FOR_LETTER_P (rest, 'L'))
632 operands[3] = GEN_INT (rest);
633 else if (! no_new_pseudos)
634 {
635 operands[3] = gen_reg_rtx (DImode);
636 emit_move_insn (operands[3], operands[2]);
637 emit_insn (gen_adddi3 (operands[0], operands[1], operands[3]));
638 DONE;
639 }
640 else
641 FAIL;
642 }")
643
644 (define_insn ""
645 [(set (match_operand:SI 0 "register_operand" "=r,r")
646 (plus:SI (mult:SI (match_operand:SI 1 "reg_not_elim_operand" "r,r")
647 (match_operand:SI 2 "const48_operand" "I,I"))
648 (match_operand:SI 3 "sext_add_operand" "rI,O")))]
649 ""
650 "@
651 s%2addl %1,%3,%0
652 s%2subl %1,%n3,%0")
653
654 (define_insn ""
655 [(set (match_operand:DI 0 "register_operand" "=r,r")
656 (sign_extend:DI
657 (plus:SI (mult:SI (match_operand:SI 1 "reg_not_elim_operand" "r,r")
658 (match_operand:SI 2 "const48_operand" "I,I"))
659 (match_operand:SI 3 "sext_add_operand" "rI,O"))))]
660 ""
661 "@
662 s%2addl %1,%3,%0
663 s%2subl %1,%n3,%0")
664
665 (define_split
666 [(set (match_operand:DI 0 "register_operand" "")
667 (sign_extend:DI
668 (plus:SI (mult:SI (match_operator:SI 1 "comparison_operator"
669 [(match_operand 2 "" "")
670 (match_operand 3 "" "")])
671 (match_operand:SI 4 "const48_operand" ""))
672 (match_operand:SI 5 "sext_add_operand" ""))))
673 (clobber (match_operand:DI 6 "reg_not_elim_operand" ""))]
674 ""
675 [(set (match_dup 6) (match_dup 7))
676 (set (match_dup 0)
677 (sign_extend:DI (plus:SI (mult:SI (match_dup 8) (match_dup 4))
678 (match_dup 5))))]
679 "
680 {
681 operands[7] = gen_rtx_fmt_ee (GET_CODE (operands[1]), DImode,
682 operands[2], operands[3]);
683 operands[8] = gen_lowpart (SImode, operands[6]);
684 }")
685
686 (define_insn ""
687 [(set (match_operand:DI 0 "register_operand" "=r,r")
688 (plus:DI (mult:DI (match_operand:DI 1 "reg_not_elim_operand" "r,r")
689 (match_operand:DI 2 "const48_operand" "I,I"))
690 (match_operand:DI 3 "sext_add_operand" "rI,O")))]
691 ""
692 "@
693 s%2addq %1,%3,%0
694 s%2subq %1,%n3,%0")
695
696 (define_insn "negsi2"
697 [(set (match_operand:SI 0 "register_operand" "=r")
698 (neg:SI (match_operand:SI 1 "reg_or_8bit_operand" "rI")))]
699 ""
700 "subl $31,%1,%0")
701
702 (define_insn ""
703 [(set (match_operand:DI 0 "register_operand" "=r")
704 (sign_extend:DI (neg:SI
705 (match_operand:SI 1 "reg_or_8bit_operand" "rI"))))]
706 ""
707 "subl $31,%1,%0")
708
709 (define_insn "negdi2"
710 [(set (match_operand:DI 0 "register_operand" "=r")
711 (neg:DI (match_operand:DI 1 "reg_or_8bit_operand" "rI")))]
712 ""
713 "subq $31,%1,%0")
714
715 (define_expand "subsi3"
716 [(set (match_operand:SI 0 "register_operand" "")
717 (minus:SI (match_operand:SI 1 "reg_or_0_operand" "")
718 (match_operand:SI 2 "reg_or_8bit_operand" "")))]
719 ""
720 "
721 {
722 if (optimize)
723 {
724 rtx op1 = gen_lowpart (DImode, operands[1]);
725 rtx op2 = gen_lowpart (DImode, operands[2]);
726
727 if (! cse_not_expected)
728 {
729 rtx tmp = gen_reg_rtx (DImode);
730 emit_insn (gen_subdi3 (tmp, op1, op2));
731 emit_move_insn (gen_lowpart (DImode, operands[0]), tmp);
732 }
733 else
734 emit_insn (gen_subdi3 (gen_lowpart (DImode, operands[0]), op1, op2));
735 DONE;
736 }
737 } ")
738
739 (define_insn ""
740 [(set (match_operand:SI 0 "register_operand" "=r")
741 (minus:SI (match_operand:SI 1 "reg_or_0_operand" "rJ")
742 (match_operand:SI 2 "reg_or_8bit_operand" "rI")))]
743 ""
744 "subl %r1,%2,%0")
745
746 (define_insn ""
747 [(set (match_operand:DI 0 "register_operand" "=r")
748 (sign_extend:DI (minus:SI (match_operand:SI 1 "reg_or_0_operand" "rJ")
749 (match_operand:SI 2 "reg_or_8bit_operand" "rI"))))]
750 ""
751 "subl %r1,%2,%0")
752
753 (define_insn "subdi3"
754 [(set (match_operand:DI 0 "register_operand" "=r")
755 (minus:DI (match_operand:DI 1 "reg_or_0_operand" "rJ")
756 (match_operand:DI 2 "reg_or_8bit_operand" "rI")))]
757 ""
758 "subq %r1,%2,%0")
759
760 (define_insn ""
761 [(set (match_operand:SI 0 "register_operand" "=r")
762 (minus:SI (mult:SI (match_operand:SI 1 "reg_not_elim_operand" "r")
763 (match_operand:SI 2 "const48_operand" "I"))
764 (match_operand:SI 3 "reg_or_8bit_operand" "rI")))]
765 ""
766 "s%2subl %1,%3,%0")
767
768 (define_insn ""
769 [(set (match_operand:DI 0 "register_operand" "=r")
770 (sign_extend:DI
771 (minus:SI (mult:SI (match_operand:SI 1 "reg_not_elim_operand" "r")
772 (match_operand:SI 2 "const48_operand" "I"))
773 (match_operand:SI 3 "reg_or_8bit_operand" "rI"))))]
774 ""
775 "s%2subl %1,%3,%0")
776
777 (define_insn ""
778 [(set (match_operand:DI 0 "register_operand" "=r")
779 (minus:DI (mult:DI (match_operand:DI 1 "reg_not_elim_operand" "r")
780 (match_operand:DI 2 "const48_operand" "I"))
781 (match_operand:DI 3 "reg_or_8bit_operand" "rI")))]
782 ""
783 "s%2subq %1,%3,%0")
784
785 (define_insn "mulsi3"
786 [(set (match_operand:SI 0 "register_operand" "=r")
787 (mult:SI (match_operand:SI 1 "reg_or_0_operand" "%rJ")
788 (match_operand:SI 2 "reg_or_8bit_operand" "rI")))]
789 ""
790 "mull %r1,%2,%0"
791 [(set_attr "type" "imul")
792 (set_attr "opsize" "si")])
793
794 (define_insn ""
795 [(set (match_operand:DI 0 "register_operand" "=r")
796 (sign_extend:DI
797 (mult:SI (match_operand:SI 1 "reg_or_0_operand" "%rJ")
798 (match_operand:SI 2 "reg_or_8bit_operand" "rI"))))]
799 ""
800 "mull %r1,%2,%0"
801 [(set_attr "type" "imul")
802 (set_attr "opsize" "si")])
803
804 (define_insn "muldi3"
805 [(set (match_operand:DI 0 "register_operand" "=r")
806 (mult:DI (match_operand:DI 1 "reg_or_0_operand" "%rJ")
807 (match_operand:DI 2 "reg_or_8bit_operand" "rI")))]
808 ""
809 "mulq %r1,%2,%0"
810 [(set_attr "type" "imul")])
811
812 (define_insn "umuldi3_highpart"
813 [(set (match_operand:DI 0 "register_operand" "=r")
814 (truncate:DI
815 (lshiftrt:TI
816 (mult:TI (zero_extend:TI
817 (match_operand:DI 1 "reg_or_0_operand" "%rJ"))
818 (zero_extend:TI
819 (match_operand:DI 2 "reg_or_8bit_operand" "rI")))
820 (const_int 64))))]
821 ""
822 "umulh %r1,%2,%0"
823 [(set_attr "type" "imul")
824 (set_attr "opsize" "udi")])
825
826 (define_insn ""
827 [(set (match_operand:DI 0 "register_operand" "=r")
828 (truncate:DI
829 (lshiftrt:TI
830 (mult:TI (zero_extend:TI (match_operand:DI 1 "register_operand" "r"))
831 (match_operand:TI 2 "cint8_operand" "I"))
832 (const_int 64))))]
833 ""
834 "umulh %1,%2,%0"
835 [(set_attr "type" "imul")
836 (set_attr "opsize" "udi")])
837 \f
838 ;; The divide and remainder operations always take their inputs from
839 ;; r24 and r25, put their output in r27, and clobber r23 and r28.
840
841 ;; ??? Force sign-extension here because some versions of OSF/1 don't
842 ;; do the right thing if the inputs are not properly sign-extended.
843 ;; But Linux, for instance, does not have this problem. Is it worth
844 ;; the complication here to eliminate the sign extension?
845 ;; Interix/NT has the same sign-extension problem.
846
847 (define_expand "divsi3"
848 [(set (reg:DI 24)
849 (sign_extend:DI (match_operand:SI 1 "nonimmediate_operand" "")))
850 (set (reg:DI 25)
851 (sign_extend:DI (match_operand:SI 2 "nonimmediate_operand" "")))
852 (parallel [(set (reg:DI 27)
853 (sign_extend:DI (div:SI (reg:DI 24) (reg:DI 25))))
854 (clobber (reg:DI 23))
855 (clobber (reg:DI 28))])
856 (set (match_operand:SI 0 "nonimmediate_operand" "")
857 (subreg:SI (reg:DI 27) 0))]
858 "!TARGET_OPEN_VMS"
859 "")
860
861 (define_expand "udivsi3"
862 [(set (reg:DI 24)
863 (sign_extend:DI (match_operand:SI 1 "nonimmediate_operand" "")))
864 (set (reg:DI 25)
865 (sign_extend:DI (match_operand:SI 2 "nonimmediate_operand" "")))
866 (parallel [(set (reg:DI 27)
867 (sign_extend:DI (udiv:SI (reg:DI 24) (reg:DI 25))))
868 (clobber (reg:DI 23))
869 (clobber (reg:DI 28))])
870 (set (match_operand:SI 0 "nonimmediate_operand" "")
871 (subreg:SI (reg:DI 27) 0))]
872 "!TARGET_OPEN_VMS"
873 "")
874
875 (define_expand "modsi3"
876 [(set (reg:DI 24)
877 (sign_extend:DI (match_operand:SI 1 "nonimmediate_operand" "")))
878 (set (reg:DI 25)
879 (sign_extend:DI (match_operand:SI 2 "nonimmediate_operand" "")))
880 (parallel [(set (reg:DI 27)
881 (sign_extend:DI (mod:SI (reg:DI 24) (reg:DI 25))))
882 (clobber (reg:DI 23))
883 (clobber (reg:DI 28))])
884 (set (match_operand:SI 0 "nonimmediate_operand" "")
885 (subreg:SI (reg:DI 27) 0))]
886 "!TARGET_OPEN_VMS"
887 "")
888
889 (define_expand "umodsi3"
890 [(set (reg:DI 24)
891 (sign_extend:DI (match_operand:SI 1 "nonimmediate_operand" "")))
892 (set (reg:DI 25)
893 (sign_extend:DI (match_operand:SI 2 "nonimmediate_operand" "")))
894 (parallel [(set (reg:DI 27)
895 (sign_extend:DI (umod:SI (reg:DI 24) (reg:DI 25))))
896 (clobber (reg:DI 23))
897 (clobber (reg:DI 28))])
898 (set (match_operand:SI 0 "nonimmediate_operand" "")
899 (subreg:SI (reg:DI 27) 0))]
900 "!TARGET_OPEN_VMS"
901 "")
902
903 (define_expand "divdi3"
904 [(set (reg:DI 24) (match_operand:DI 1 "input_operand" ""))
905 (set (reg:DI 25) (match_operand:DI 2 "input_operand" ""))
906 (parallel [(set (reg:DI 27)
907 (div:DI (reg:DI 24)
908 (reg:DI 25)))
909 (clobber (reg:DI 23))
910 (clobber (reg:DI 28))])
911 (set (match_operand:DI 0 "nonimmediate_operand" "")
912 (reg:DI 27))]
913 "!TARGET_OPEN_VMS"
914 "")
915
916 (define_expand "udivdi3"
917 [(set (reg:DI 24) (match_operand:DI 1 "input_operand" ""))
918 (set (reg:DI 25) (match_operand:DI 2 "input_operand" ""))
919 (parallel [(set (reg:DI 27)
920 (udiv:DI (reg:DI 24)
921 (reg:DI 25)))
922 (clobber (reg:DI 23))
923 (clobber (reg:DI 28))])
924 (set (match_operand:DI 0 "nonimmediate_operand" "")
925 (reg:DI 27))]
926 "!TARGET_OPEN_VMS"
927 "")
928
929 (define_expand "moddi3"
930 [(set (reg:DI 24) (match_operand:DI 1 "input_operand" ""))
931 (set (reg:DI 25) (match_operand:DI 2 "input_operand" ""))
932 (parallel [(set (reg:DI 27)
933 (mod:DI (reg:DI 24)
934 (reg:DI 25)))
935 (clobber (reg:DI 23))
936 (clobber (reg:DI 28))])
937 (set (match_operand:DI 0 "nonimmediate_operand" "")
938 (reg:DI 27))]
939 "!TARGET_OPEN_VMS"
940 "")
941
942 (define_expand "umoddi3"
943 [(set (reg:DI 24) (match_operand:DI 1 "input_operand" ""))
944 (set (reg:DI 25) (match_operand:DI 2 "input_operand" ""))
945 (parallel [(set (reg:DI 27)
946 (umod:DI (reg:DI 24)
947 (reg:DI 25)))
948 (clobber (reg:DI 23))
949 (clobber (reg:DI 28))])
950 (set (match_operand:DI 0 "nonimmediate_operand" "")
951 (reg:DI 27))]
952 "!TARGET_OPEN_VMS"
953 "")
954
955 ;; Lengths of 8 for ldq $t12,__divq($gp); jsr $t9,($t12),__divq as
956 ;; expanded by the assembler.
957 (define_insn ""
958 [(set (reg:DI 27)
959 (sign_extend:DI (match_operator:SI 1 "divmod_operator"
960 [(reg:DI 24) (reg:DI 25)])))
961 (clobber (reg:DI 23))
962 (clobber (reg:DI 28))]
963 "!TARGET_OPEN_VMS"
964 "%E1 $24,$25,$27"
965 [(set_attr "type" "jsr")
966 (set_attr "length" "8")])
967
968 (define_insn ""
969 [(set (reg:DI 27)
970 (match_operator:DI 1 "divmod_operator"
971 [(reg:DI 24) (reg:DI 25)]))
972 (clobber (reg:DI 23))
973 (clobber (reg:DI 28))]
974 "!TARGET_OPEN_VMS"
975 "%E1 $24,$25,$27"
976 [(set_attr "type" "jsr")
977 (set_attr "length" "8")])
978 \f
979 ;; Next are the basic logical operations. These only exist in DImode.
980
981 (define_insn "anddi3"
982 [(set (match_operand:DI 0 "register_operand" "=r,r,r")
983 (and:DI (match_operand:DI 1 "reg_or_0_operand" "%rJ,rJ,rJ")
984 (match_operand:DI 2 "and_operand" "rI,N,MH")))]
985 ""
986 "@
987 and %r1,%2,%0
988 bic %r1,%N2,%0
989 zapnot %r1,%m2,%0"
990 [(set_attr "type" "ilog,ilog,shift")])
991
992 ;; There are times when we can split an AND into two AND insns. This occurs
993 ;; when we can first clear any bytes and then clear anything else. For
994 ;; example "I & 0xffff07" is "(I & 0xffffff) & 0xffffffffffffff07".
995 ;; Only do this when running on 64-bit host since the computations are
996 ;; too messy otherwise.
997
998 (define_split
999 [(set (match_operand:DI 0 "register_operand" "")
1000 (and:DI (match_operand:DI 1 "register_operand" "")
1001 (match_operand:DI 2 "const_int_operand" "")))]
1002 "HOST_BITS_PER_WIDE_INT == 64 && ! and_operand (operands[2], DImode)"
1003 [(set (match_dup 0) (and:DI (match_dup 1) (match_dup 3)))
1004 (set (match_dup 0) (and:DI (match_dup 0) (match_dup 4)))]
1005 "
1006 {
1007 unsigned HOST_WIDE_INT mask1 = INTVAL (operands[2]);
1008 unsigned HOST_WIDE_INT mask2 = mask1;
1009 int i;
1010
1011 /* For each byte that isn't all zeros, make it all ones. */
1012 for (i = 0; i < 64; i += 8)
1013 if ((mask1 & ((HOST_WIDE_INT) 0xff << i)) != 0)
1014 mask1 |= (HOST_WIDE_INT) 0xff << i;
1015
1016 /* Now turn on any bits we've just turned off. */
1017 mask2 |= ~ mask1;
1018
1019 operands[3] = GEN_INT (mask1);
1020 operands[4] = GEN_INT (mask2);
1021 }")
1022
1023 (define_insn "zero_extendqihi2"
1024 [(set (match_operand:HI 0 "register_operand" "=r")
1025 (zero_extend:HI (match_operand:QI 1 "register_operand" "r")))]
1026 ""
1027 "and %1,0xff,%0"
1028 [(set_attr "type" "ilog")])
1029
1030 (define_insn ""
1031 [(set (match_operand:SI 0 "register_operand" "=r,r")
1032 (zero_extend:SI (match_operand:QI 1 "nonimmediate_operand" "r,m")))]
1033 "TARGET_BWX"
1034 "@
1035 and %1,0xff,%0
1036 ldbu %0,%1"
1037 [(set_attr "type" "ilog,ild")])
1038
1039 (define_insn ""
1040 [(set (match_operand:SI 0 "register_operand" "=r")
1041 (zero_extend:SI (match_operand:QI 1 "register_operand" "r")))]
1042 "! TARGET_BWX"
1043 "and %1,0xff,%0"
1044 [(set_attr "type" "ilog")])
1045
1046 (define_expand "zero_extendqisi2"
1047 [(set (match_operand:SI 0 "register_operand" "")
1048 (zero_extend:SI (match_operand:QI 1 "register_operand" "")))]
1049 ""
1050 "")
1051
1052 (define_insn ""
1053 [(set (match_operand:DI 0 "register_operand" "=r,r")
1054 (zero_extend:DI (match_operand:QI 1 "nonimmediate_operand" "r,m")))]
1055 "TARGET_BWX"
1056 "@
1057 and %1,0xff,%0
1058 ldbu %0,%1"
1059 [(set_attr "type" "ilog,ild")])
1060
1061 (define_insn ""
1062 [(set (match_operand:DI 0 "register_operand" "=r")
1063 (zero_extend:DI (match_operand:QI 1 "register_operand" "r")))]
1064 "! TARGET_BWX"
1065 "and %1,0xff,%0"
1066 [(set_attr "type" "ilog")])
1067
1068 (define_expand "zero_extendqidi2"
1069 [(set (match_operand:DI 0 "register_operand" "")
1070 (zero_extend:DI (match_operand:QI 1 "register_operand" "")))]
1071 ""
1072 "")
1073
1074 (define_insn ""
1075 [(set (match_operand:SI 0 "register_operand" "=r,r")
1076 (zero_extend:SI (match_operand:HI 1 "nonimmediate_operand" "r,m")))]
1077 "TARGET_BWX"
1078 "@
1079 zapnot %1,3,%0
1080 ldwu %0,%1"
1081 [(set_attr "type" "shift,ild")])
1082
1083 (define_insn ""
1084 [(set (match_operand:SI 0 "register_operand" "=r")
1085 (zero_extend:SI (match_operand:HI 1 "register_operand" "r")))]
1086 "! TARGET_BWX"
1087 "zapnot %1,3,%0"
1088 [(set_attr "type" "shift")])
1089
1090 (define_expand "zero_extendhisi2"
1091 [(set (match_operand:SI 0 "register_operand" "")
1092 (zero_extend:SI (match_operand:HI 1 "register_operand" "")))]
1093 ""
1094 "")
1095
1096 (define_insn ""
1097 [(set (match_operand:DI 0 "register_operand" "=r,r")
1098 (zero_extend:DI (match_operand:HI 1 "nonimmediate_operand" "r,m")))]
1099 "TARGET_BWX"
1100 "@
1101 zapnot %1,3,%0
1102 ldwu %0,%1"
1103 [(set_attr "type" "shift,ild")])
1104
1105 (define_insn ""
1106 [(set (match_operand:DI 0 "register_operand" "=r")
1107 (zero_extend:DI (match_operand:HI 1 "register_operand" "r")))]
1108 ""
1109 "zapnot %1,3,%0"
1110 [(set_attr "type" "shift")])
1111
1112 (define_expand "zero_extendhidi2"
1113 [(set (match_operand:DI 0 "register_operand" "")
1114 (zero_extend:DI (match_operand:HI 1 "register_operand" "")))]
1115 ""
1116 "")
1117
1118 (define_insn "zero_extendsidi2"
1119 [(set (match_operand:DI 0 "register_operand" "=r")
1120 (zero_extend:DI (match_operand:SI 1 "register_operand" "r")))]
1121 ""
1122 "zapnot %1,15,%0"
1123 [(set_attr "type" "shift")])
1124
1125 (define_insn ""
1126 [(set (match_operand:DI 0 "register_operand" "=r")
1127 (and:DI (not:DI (match_operand:DI 1 "reg_or_8bit_operand" "rI"))
1128 (match_operand:DI 2 "reg_or_0_operand" "rJ")))]
1129 ""
1130 "bic %r2,%1,%0"
1131 [(set_attr "type" "ilog")])
1132
1133 (define_insn "iordi3"
1134 [(set (match_operand:DI 0 "register_operand" "=r,r")
1135 (ior:DI (match_operand:DI 1 "reg_or_0_operand" "%rJ,rJ")
1136 (match_operand:DI 2 "or_operand" "rI,N")))]
1137 ""
1138 "@
1139 bis %r1,%2,%0
1140 ornot %r1,%N2,%0"
1141 [(set_attr "type" "ilog")])
1142
1143 (define_insn "one_cmpldi2"
1144 [(set (match_operand:DI 0 "register_operand" "=r")
1145 (not:DI (match_operand:DI 1 "reg_or_8bit_operand" "rI")))]
1146 ""
1147 "ornot $31,%1,%0"
1148 [(set_attr "type" "ilog")])
1149
1150 (define_insn ""
1151 [(set (match_operand:DI 0 "register_operand" "=r")
1152 (ior:DI (not:DI (match_operand:DI 1 "reg_or_8bit_operand" "rI"))
1153 (match_operand:DI 2 "reg_or_0_operand" "rJ")))]
1154 ""
1155 "ornot %r2,%1,%0"
1156 [(set_attr "type" "ilog")])
1157
1158 (define_insn "xordi3"
1159 [(set (match_operand:DI 0 "register_operand" "=r,r")
1160 (xor:DI (match_operand:DI 1 "reg_or_0_operand" "%rJ,rJ")
1161 (match_operand:DI 2 "or_operand" "rI,N")))]
1162 ""
1163 "@
1164 xor %r1,%2,%0
1165 eqv %r1,%N2,%0"
1166 [(set_attr "type" "ilog")])
1167
1168 (define_insn ""
1169 [(set (match_operand:DI 0 "register_operand" "=r")
1170 (not:DI (xor:DI (match_operand:DI 1 "register_operand" "%rJ")
1171 (match_operand:DI 2 "register_operand" "rI"))))]
1172 ""
1173 "eqv %r1,%2,%0"
1174 [(set_attr "type" "ilog")])
1175 \f
1176 ;; Handle the FFS insn iff we support CIX.
1177 ;;
1178 ;; These didn't make it into EV6 pass 2 as planned. Instead they
1179 ;; cropped cttz/ctlz/ctpop from the old CIX and renamed it FIX for
1180 ;; "Square Root and Floating Point Convert Extension".
1181 ;;
1182 ;; I'm assured that these insns will make it into EV67 (first pass
1183 ;; due Summer 1999), presumably with a new AMASK bit, and presumably
1184 ;; will still be named CIX.
1185
1186 (define_expand "ffsdi2"
1187 [(set (match_dup 2)
1188 (unspec:DI [(match_operand:DI 1 "register_operand" "")] 1))
1189 (set (match_dup 3)
1190 (plus:DI (match_dup 2) (const_int 1)))
1191 (set (match_operand:DI 0 "register_operand" "")
1192 (if_then_else:DI (eq (match_dup 1) (const_int 0))
1193 (const_int 0) (match_dup 3)))]
1194 "TARGET_CIX"
1195 "
1196 {
1197 operands[2] = gen_reg_rtx (DImode);
1198 operands[3] = gen_reg_rtx (DImode);
1199 }")
1200
1201 (define_insn ""
1202 [(set (match_operand:DI 0 "register_operand" "=r")
1203 (unspec:DI [(match_operand:DI 1 "register_operand" "r")] 1))]
1204 "TARGET_CIX"
1205 "cttz %1,%0"
1206 ; EV6 calls all mvi and cttz/ctlz/popc class imisc, so just
1207 ; reuse the existing type name.
1208 [(set_attr "type" "mvi")])
1209 \f
1210 ;; Next come the shifts and the various extract and insert operations.
1211
1212 (define_insn "ashldi3"
1213 [(set (match_operand:DI 0 "register_operand" "=r,r")
1214 (ashift:DI (match_operand:DI 1 "reg_or_0_operand" "rJ,rJ")
1215 (match_operand:DI 2 "reg_or_6bit_operand" "P,rS")))]
1216 ""
1217 "*
1218 {
1219 switch (which_alternative)
1220 {
1221 case 0:
1222 if (operands[2] == const1_rtx)
1223 return \"addq %r1,%r1,%0\";
1224 else
1225 return \"s%P2addq %r1,0,%0\";
1226 case 1:
1227 return \"sll %r1,%2,%0\";
1228 default:
1229 abort();
1230 }
1231 }"
1232 [(set_attr "type" "iadd,shift")])
1233
1234 ;; ??? The following pattern is made by combine, but earlier phases
1235 ;; (specifically flow) can't handle it. This occurs in jump.c. Deal
1236 ;; with this in a better way at some point.
1237 ;;(define_insn ""
1238 ;; [(set (match_operand:DI 0 "register_operand" "=r")
1239 ;; (sign_extend:DI
1240 ;; (subreg:SI (ashift:DI (match_operand:DI 1 "reg_or_0_operand" "rJ")
1241 ;; (match_operand:DI 2 "const_int_operand" "P"))
1242 ;; 0)))]
1243 ;; "INTVAL (operands[2]) >= 1 && INTVAL (operands[2]) <= 3"
1244 ;; "*
1245 ;;{
1246 ;; if (operands[2] == const1_rtx)
1247 ;; return \"addl %r1,%r1,%0\";
1248 ;; else
1249 ;; return \"s%P2addl %r1,0,%0\";
1250 ;; }"
1251 ;; [(set_attr "type" "iadd")])
1252
1253 (define_insn "lshrdi3"
1254 [(set (match_operand:DI 0 "register_operand" "=r")
1255 (lshiftrt:DI (match_operand:DI 1 "reg_or_0_operand" "rJ")
1256 (match_operand:DI 2 "reg_or_6bit_operand" "rS")))]
1257 ""
1258 "srl %r1,%2,%0"
1259 [(set_attr "type" "shift")])
1260
1261 (define_insn "ashrdi3"
1262 [(set (match_operand:DI 0 "register_operand" "=r")
1263 (ashiftrt:DI (match_operand:DI 1 "reg_or_0_operand" "rJ")
1264 (match_operand:DI 2 "reg_or_6bit_operand" "rS")))]
1265 ""
1266 "sra %r1,%2,%0"
1267 [(set_attr "type" "shift")])
1268
1269 (define_expand "extendqihi2"
1270 [(set (match_dup 2)
1271 (ashift:DI (match_operand:QI 1 "some_operand" "")
1272 (const_int 56)))
1273 (set (match_operand:HI 0 "register_operand" "")
1274 (ashiftrt:DI (match_dup 2)
1275 (const_int 56)))]
1276 ""
1277 "
1278 {
1279 if (TARGET_BWX)
1280 {
1281 emit_insn (gen_extendqihi2x (operands[0],
1282 force_reg (QImode, operands[1])));
1283 DONE;
1284 }
1285
1286 /* If we have an unaligned MEM, extend to DImode (which we do
1287 specially) and then copy to the result. */
1288 if (unaligned_memory_operand (operands[1], HImode))
1289 {
1290 rtx temp = gen_reg_rtx (DImode);
1291
1292 emit_insn (gen_extendqidi2 (temp, operands[1]));
1293 emit_move_insn (operands[0], gen_lowpart (HImode, temp));
1294 DONE;
1295 }
1296
1297 operands[0] = gen_lowpart (DImode, operands[0]);
1298 operands[1] = gen_lowpart (DImode, force_reg (QImode, operands[1]));
1299 operands[2] = gen_reg_rtx (DImode);
1300 }")
1301
1302 (define_insn "extendqidi2x"
1303 [(set (match_operand:DI 0 "register_operand" "=r")
1304 (sign_extend:DI (match_operand:QI 1 "register_operand" "r")))]
1305 "TARGET_BWX"
1306 "sextb %1,%0"
1307 [(set_attr "type" "shift")])
1308
1309 (define_insn "extendhidi2x"
1310 [(set (match_operand:DI 0 "register_operand" "=r")
1311 (sign_extend:DI (match_operand:HI 1 "register_operand" "r")))]
1312 "TARGET_BWX"
1313 "sextw %1,%0"
1314 [(set_attr "type" "shift")])
1315
1316 (define_insn "extendqisi2x"
1317 [(set (match_operand:SI 0 "register_operand" "=r")
1318 (sign_extend:SI (match_operand:QI 1 "register_operand" "r")))]
1319 "TARGET_BWX"
1320 "sextb %1,%0"
1321 [(set_attr "type" "shift")])
1322
1323 (define_insn "extendhisi2x"
1324 [(set (match_operand:SI 0 "register_operand" "=r")
1325 (sign_extend:SI (match_operand:HI 1 "register_operand" "r")))]
1326 "TARGET_BWX"
1327 "sextw %1,%0"
1328 [(set_attr "type" "shift")])
1329
1330 (define_insn "extendqihi2x"
1331 [(set (match_operand:HI 0 "register_operand" "=r")
1332 (sign_extend:HI (match_operand:QI 1 "register_operand" "r")))]
1333 "TARGET_BWX"
1334 "sextb %1,%0"
1335 [(set_attr "type" "shift")])
1336
1337 (define_expand "extendqisi2"
1338 [(set (match_dup 2)
1339 (ashift:DI (match_operand:QI 1 "some_operand" "")
1340 (const_int 56)))
1341 (set (match_operand:SI 0 "register_operand" "")
1342 (ashiftrt:DI (match_dup 2)
1343 (const_int 56)))]
1344 ""
1345 "
1346 {
1347 if (TARGET_BWX)
1348 {
1349 emit_insn (gen_extendqisi2x (operands[0],
1350 force_reg (QImode, operands[1])));
1351 DONE;
1352 }
1353
1354 /* If we have an unaligned MEM, extend to a DImode form of
1355 the result (which we do specially). */
1356 if (unaligned_memory_operand (operands[1], QImode))
1357 {
1358 rtx temp = gen_reg_rtx (DImode);
1359
1360 emit_insn (gen_extendqidi2 (temp, operands[1]));
1361 emit_move_insn (operands[0], gen_lowpart (SImode, temp));
1362 DONE;
1363 }
1364
1365 operands[0] = gen_lowpart (DImode, operands[0]);
1366 operands[1] = gen_lowpart (DImode, force_reg (QImode, operands[1]));
1367 operands[2] = gen_reg_rtx (DImode);
1368 }")
1369
1370 (define_expand "extendqidi2"
1371 [(set (match_dup 2)
1372 (ashift:DI (match_operand:QI 1 "some_operand" "")
1373 (const_int 56)))
1374 (set (match_operand:DI 0 "register_operand" "")
1375 (ashiftrt:DI (match_dup 2)
1376 (const_int 56)))]
1377 ""
1378 "
1379 {
1380 if (TARGET_BWX)
1381 {
1382 emit_insn (gen_extendqidi2x (operands[0],
1383 force_reg (QImode, operands[1])));
1384 DONE;
1385 }
1386
1387 if (unaligned_memory_operand (operands[1], QImode))
1388 {
1389 rtx seq
1390 = gen_unaligned_extendqidi (operands[0],
1391 get_unaligned_address (operands[1], 1));
1392
1393 alpha_set_memflags (seq, operands[1]);
1394 emit_insn (seq);
1395 DONE;
1396 }
1397
1398 operands[1] = gen_lowpart (DImode, force_reg (QImode, operands[1]));
1399 operands[2] = gen_reg_rtx (DImode);
1400 }")
1401
1402 (define_expand "extendhisi2"
1403 [(set (match_dup 2)
1404 (ashift:DI (match_operand:HI 1 "some_operand" "")
1405 (const_int 48)))
1406 (set (match_operand:SI 0 "register_operand" "")
1407 (ashiftrt:DI (match_dup 2)
1408 (const_int 48)))]
1409 ""
1410 "
1411 {
1412 if (TARGET_BWX)
1413 {
1414 emit_insn (gen_extendhisi2x (operands[0],
1415 force_reg (HImode, operands[1])));
1416 DONE;
1417 }
1418
1419 /* If we have an unaligned MEM, extend to a DImode form of
1420 the result (which we do specially). */
1421 if (unaligned_memory_operand (operands[1], HImode))
1422 {
1423 rtx temp = gen_reg_rtx (DImode);
1424
1425 emit_insn (gen_extendhidi2 (temp, operands[1]));
1426 emit_move_insn (operands[0], gen_lowpart (SImode, temp));
1427 DONE;
1428 }
1429
1430 operands[0] = gen_lowpart (DImode, operands[0]);
1431 operands[1] = gen_lowpart (DImode, force_reg (HImode, operands[1]));
1432 operands[2] = gen_reg_rtx (DImode);
1433 }")
1434
1435 (define_expand "extendhidi2"
1436 [(set (match_dup 2)
1437 (ashift:DI (match_operand:HI 1 "some_operand" "")
1438 (const_int 48)))
1439 (set (match_operand:DI 0 "register_operand" "")
1440 (ashiftrt:DI (match_dup 2)
1441 (const_int 48)))]
1442 ""
1443 "
1444 {
1445 if (TARGET_BWX)
1446 {
1447 emit_insn (gen_extendhidi2x (operands[0],
1448 force_reg (HImode, operands[1])));
1449 DONE;
1450 }
1451
1452 if (unaligned_memory_operand (operands[1], HImode))
1453 {
1454 rtx seq
1455 = gen_unaligned_extendhidi (operands[0],
1456 get_unaligned_address (operands[1], 2));
1457
1458 alpha_set_memflags (seq, operands[1]);
1459 emit_insn (seq);
1460 DONE;
1461 }
1462
1463 operands[1] = gen_lowpart (DImode, force_reg (HImode, operands[1]));
1464 operands[2] = gen_reg_rtx (DImode);
1465 }")
1466
1467 ;; Here's how we sign extend an unaligned byte and halfword. Doing this
1468 ;; as a pattern saves one instruction. The code is similar to that for
1469 ;; the unaligned loads (see below).
1470 ;;
1471 ;; Operand 1 is the address + 1 (+2 for HI), operand 0 is the result.
1472 (define_expand "unaligned_extendqidi"
1473 [(set (match_dup 2) (match_operand:DI 1 "address_operand" ""))
1474 (set (match_dup 3)
1475 (mem:DI (and:DI (plus:DI (match_dup 2) (const_int -1))
1476 (const_int -8))))
1477 (set (match_dup 4)
1478 (ashift:DI (match_dup 3)
1479 (minus:DI (const_int 64)
1480 (ashift:DI
1481 (and:DI (match_dup 2) (const_int 7))
1482 (const_int 3)))))
1483 (set (subreg:DI (match_operand:QI 0 "register_operand" "") 0)
1484 (ashiftrt:DI (match_dup 4) (const_int 56)))]
1485 ""
1486 "
1487 { operands[2] = gen_reg_rtx (DImode);
1488 operands[3] = gen_reg_rtx (DImode);
1489 operands[4] = gen_reg_rtx (DImode);
1490 }")
1491
1492 (define_expand "unaligned_extendhidi"
1493 [(set (match_dup 2) (match_operand:DI 1 "address_operand" ""))
1494 (set (match_dup 3)
1495 (mem:DI (and:DI (plus:DI (match_dup 2) (const_int -2))
1496 (const_int -8))))
1497 (set (match_dup 4)
1498 (ashift:DI (match_dup 3)
1499 (minus:DI (const_int 64)
1500 (ashift:DI
1501 (and:DI (match_dup 2) (const_int 7))
1502 (const_int 3)))))
1503 (set (subreg:DI (match_operand:QI 0 "register_operand" "") 0)
1504 (ashiftrt:DI (match_dup 4) (const_int 48)))]
1505 ""
1506 "
1507 { operands[2] = gen_reg_rtx (DImode);
1508 operands[3] = gen_reg_rtx (DImode);
1509 operands[4] = gen_reg_rtx (DImode);
1510 }")
1511
1512 (define_insn ""
1513 [(set (match_operand:DI 0 "register_operand" "=r")
1514 (zero_extract:DI (match_operand:DI 1 "reg_or_0_operand" "rJ")
1515 (match_operand:DI 2 "mode_width_operand" "n")
1516 (match_operand:DI 3 "mul8_operand" "I")))]
1517 ""
1518 "ext%M2l %r1,%s3,%0"
1519 [(set_attr "type" "shift")])
1520
1521 (define_insn "extxl"
1522 [(set (match_operand:DI 0 "register_operand" "=r")
1523 (zero_extract:DI (match_operand:DI 1 "reg_or_0_operand" "rJ")
1524 (match_operand:DI 2 "mode_width_operand" "n")
1525 (ashift:DI (match_operand:DI 3 "reg_or_8bit_operand" "rI")
1526 (const_int 3))))]
1527 ""
1528 "ext%M2l %r1,%3,%0"
1529 [(set_attr "type" "shift")])
1530
1531 ;; Combine has some strange notion of preserving existing undefined behaviour
1532 ;; in shifts larger than a word size. So capture these patterns that it
1533 ;; should have turned into zero_extracts.
1534
1535 (define_insn ""
1536 [(set (match_operand:DI 0 "register_operand" "=r")
1537 (and:DI (lshiftrt:DI (match_operand:DI 1 "reg_or_0_operand" "rJ")
1538 (ashift:DI (match_operand:DI 2 "reg_or_8bit_operand" "rI")
1539 (const_int 3)))
1540 (match_operand:DI 3 "mode_mask_operand" "n")))]
1541 ""
1542 "ext%U3l %1,%2,%0"
1543 [(set_attr "type" "shift")])
1544
1545 (define_insn ""
1546 [(set (match_operand:DI 0 "register_operand" "=r")
1547 (lshiftrt:DI (match_operand:DI 1 "reg_or_0_operand" "rJ")
1548 (ashift:DI (match_operand:DI 2 "reg_or_8bit_operand" "rI")
1549 (const_int 3))))]
1550 ""
1551 "extql %1,%2,%0"
1552 [(set_attr "type" "shift")])
1553
1554 (define_insn "extqh"
1555 [(set (match_operand:DI 0 "register_operand" "=r")
1556 (ashift:DI
1557 (match_operand:DI 1 "reg_or_0_operand" "rJ")
1558 (minus:DI (const_int 64)
1559 (ashift:DI
1560 (and:DI
1561 (match_operand:DI 2 "reg_or_8bit_operand" "rI")
1562 (const_int 7))
1563 (const_int 3)))))]
1564 ""
1565 "extqh %r1,%2,%0"
1566 [(set_attr "type" "shift")])
1567
1568 (define_insn "extlh"
1569 [(set (match_operand:DI 0 "register_operand" "=r")
1570 (ashift:DI
1571 (and:DI (match_operand:DI 1 "reg_or_0_operand" "rJ")
1572 (const_int 2147483647))
1573 (minus:DI (const_int 64)
1574 (ashift:DI
1575 (and:DI
1576 (match_operand:DI 2 "reg_or_8bit_operand" "rI")
1577 (const_int 7))
1578 (const_int 3)))))]
1579 ""
1580 "extlh %r1,%2,%0"
1581 [(set_attr "type" "shift")])
1582
1583 (define_insn "extwh"
1584 [(set (match_operand:DI 0 "register_operand" "=r")
1585 (ashift:DI
1586 (and:DI (match_operand:DI 1 "reg_or_0_operand" "rJ")
1587 (const_int 65535))
1588 (minus:DI (const_int 64)
1589 (ashift:DI
1590 (and:DI
1591 (match_operand:DI 2 "reg_or_8bit_operand" "rI")
1592 (const_int 7))
1593 (const_int 3)))))]
1594 ""
1595 "extwh %r1,%2,%0"
1596 [(set_attr "type" "shift")])
1597
1598 ;; This converts an extXl into an extXh with an appropriate adjustment
1599 ;; to the address calculation.
1600
1601 ;;(define_split
1602 ;; [(set (match_operand:DI 0 "register_operand" "")
1603 ;; (ashift:DI (zero_extract:DI (match_operand:DI 1 "register_operand" "")
1604 ;; (match_operand:DI 2 "mode_width_operand" "")
1605 ;; (ashift:DI (match_operand:DI 3 "" "")
1606 ;; (const_int 3)))
1607 ;; (match_operand:DI 4 "const_int_operand" "")))
1608 ;; (clobber (match_operand:DI 5 "register_operand" ""))]
1609 ;; "INTVAL (operands[4]) == 64 - INTVAL (operands[2])"
1610 ;; [(set (match_dup 5) (match_dup 6))
1611 ;; (set (match_dup 0)
1612 ;; (ashift:DI (zero_extract:DI (match_dup 1) (match_dup 2)
1613 ;; (ashift:DI (plus:DI (match_dup 5)
1614 ;; (match_dup 7))
1615 ;; (const_int 3)))
1616 ;; (match_dup 4)))]
1617 ;; "
1618 ;;{
1619 ;; operands[6] = plus_constant (operands[3],
1620 ;; INTVAL (operands[2]) / BITS_PER_UNIT);
1621 ;; operands[7] = GEN_INT (- INTVAL (operands[2]) / BITS_PER_UNIT);
1622 ;;}")
1623
1624 (define_insn ""
1625 [(set (match_operand:DI 0 "register_operand" "=r")
1626 (ashift:DI (zero_extend:DI (match_operand:QI 1 "register_operand" "r"))
1627 (match_operand:DI 2 "mul8_operand" "I")))]
1628 ""
1629 "insbl %1,%s2,%0"
1630 [(set_attr "type" "shift")])
1631
1632 (define_insn ""
1633 [(set (match_operand:DI 0 "register_operand" "=r")
1634 (ashift:DI (zero_extend:DI (match_operand:HI 1 "register_operand" "r"))
1635 (match_operand:DI 2 "mul8_operand" "I")))]
1636 ""
1637 "inswl %1,%s2,%0"
1638 [(set_attr "type" "shift")])
1639
1640 (define_insn ""
1641 [(set (match_operand:DI 0 "register_operand" "=r")
1642 (ashift:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
1643 (match_operand:DI 2 "mul8_operand" "I")))]
1644 ""
1645 "insll %1,%s2,%0"
1646 [(set_attr "type" "shift")])
1647
1648 (define_insn "insbl"
1649 [(set (match_operand:DI 0 "register_operand" "=r")
1650 (ashift:DI (zero_extend:DI (match_operand:QI 1 "register_operand" "r"))
1651 (ashift:DI (match_operand:DI 2 "reg_or_8bit_operand" "rI")
1652 (const_int 3))))]
1653 ""
1654 "insbl %1,%2,%0"
1655 [(set_attr "type" "shift")])
1656
1657 (define_insn "inswl"
1658 [(set (match_operand:DI 0 "register_operand" "=r")
1659 (ashift:DI (zero_extend:DI (match_operand:HI 1 "register_operand" "r"))
1660 (ashift:DI (match_operand:DI 2 "reg_or_8bit_operand" "rI")
1661 (const_int 3))))]
1662 ""
1663 "inswl %1,%2,%0"
1664 [(set_attr "type" "shift")])
1665
1666 (define_insn "insll"
1667 [(set (match_operand:DI 0 "register_operand" "=r")
1668 (ashift:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
1669 (ashift:DI (match_operand:DI 2 "reg_or_8bit_operand" "rI")
1670 (const_int 3))))]
1671 ""
1672 "insll %1,%2,%0"
1673 [(set_attr "type" "shift")])
1674
1675 (define_insn "insql"
1676 [(set (match_operand:DI 0 "register_operand" "=r")
1677 (ashift:DI (match_operand:DI 1 "register_operand" "r")
1678 (ashift:DI (match_operand:DI 2 "reg_or_8bit_operand" "rI")
1679 (const_int 3))))]
1680 ""
1681 "insql %1,%2,%0"
1682 [(set_attr "type" "shift")])
1683
1684 ;; Combine has this sometimes habit of moving the and outside of the
1685 ;; shift, making life more interesting.
1686
1687 (define_insn ""
1688 [(set (match_operand:DI 0 "register_operand" "=r")
1689 (and:DI (ashift:DI (match_operand:DI 1 "register_operand" "r")
1690 (match_operand:DI 2 "mul8_operand" "I"))
1691 (match_operand:DI 3 "immediate_operand" "i")))]
1692 "HOST_BITS_PER_WIDE_INT == 64
1693 && GET_CODE (operands[3]) == CONST_INT
1694 && (((unsigned HOST_WIDE_INT) 0xff << INTVAL (operands[2])
1695 == (unsigned HOST_WIDE_INT) INTVAL (operands[3]))
1696 || ((unsigned HOST_WIDE_INT) 0xffff << INTVAL (operands[2])
1697 == (unsigned HOST_WIDE_INT) INTVAL (operands[3]))
1698 || ((unsigned HOST_WIDE_INT) 0xffffffff << INTVAL (operands[2])
1699 == (unsigned HOST_WIDE_INT) INTVAL (operands[3])))"
1700 "*
1701 {
1702 #if HOST_BITS_PER_WIDE_INT == 64
1703 if ((unsigned HOST_WIDE_INT) 0xff << INTVAL (operands[2])
1704 == (unsigned HOST_WIDE_INT) INTVAL (operands[3]))
1705 return \"insbl %1,%s2,%0\";
1706 if ((unsigned HOST_WIDE_INT) 0xffff << INTVAL (operands[2])
1707 == (unsigned HOST_WIDE_INT) INTVAL (operands[3]))
1708 return \"inswl %1,%s2,%0\";
1709 if ((unsigned HOST_WIDE_INT) 0xffffffff << INTVAL (operands[2])
1710 == (unsigned HOST_WIDE_INT) INTVAL (operands[3]))
1711 return \"insll %1,%s2,%0\";
1712 #endif
1713 abort();
1714 }"
1715 [(set_attr "type" "shift")])
1716
1717 ;; We do not include the insXh insns because they are complex to express
1718 ;; and it does not appear that we would ever want to generate them.
1719 ;;
1720 ;; Since we need them for block moves, though, cop out and use unspec.
1721
1722 (define_insn "insxh"
1723 [(set (match_operand:DI 0 "register_operand" "=r")
1724 (unspec:DI [(match_operand:DI 1 "register_operand" "r")
1725 (match_operand:DI 2 "mode_width_operand" "n")
1726 (match_operand:DI 3 "reg_or_8bit_operand" "rI")] 2))]
1727 ""
1728 "ins%M2h %1,%3,%0"
1729 [(set_attr "type" "shift")])
1730
1731 (define_insn "mskxl"
1732 [(set (match_operand:DI 0 "register_operand" "=r")
1733 (and:DI (not:DI (ashift:DI
1734 (match_operand:DI 2 "mode_mask_operand" "n")
1735 (ashift:DI
1736 (match_operand:DI 3 "reg_or_8bit_operand" "rI")
1737 (const_int 3))))
1738 (match_operand:DI 1 "reg_or_0_operand" "rJ")))]
1739 ""
1740 "msk%U2l %r1,%3,%0"
1741 [(set_attr "type" "shift")])
1742
1743 ;; We do not include the mskXh insns because it does not appear we would
1744 ;; ever generate one.
1745 ;;
1746 ;; Again, we do for block moves and we use unspec again.
1747
1748 (define_insn "mskxh"
1749 [(set (match_operand:DI 0 "register_operand" "=r")
1750 (unspec:DI [(match_operand:DI 1 "register_operand" "r")
1751 (match_operand:DI 2 "mode_width_operand" "n")
1752 (match_operand:DI 3 "reg_or_8bit_operand" "rI")] 3))]
1753 ""
1754 "msk%M2h %1,%3,%0"
1755 [(set_attr "type" "shift")])
1756 \f
1757 ;; Floating-point operations. All the double-precision insns can extend
1758 ;; from single, so indicate that. The exception are the ones that simply
1759 ;; play with the sign bits; it's not clear what to do there.
1760
1761 (define_insn "abssf2"
1762 [(set (match_operand:SF 0 "register_operand" "=f")
1763 (abs:SF (match_operand:SF 1 "reg_or_fp0_operand" "fG")))]
1764 "TARGET_FP"
1765 "cpys $f31,%R1,%0"
1766 [(set_attr "type" "fcpys")])
1767
1768 (define_insn "absdf2"
1769 [(set (match_operand:DF 0 "register_operand" "=f")
1770 (abs:DF (match_operand:DF 1 "reg_or_fp0_operand" "fG")))]
1771 "TARGET_FP"
1772 "cpys $f31,%R1,%0"
1773 [(set_attr "type" "fcpys")])
1774
1775 (define_expand "abstf2"
1776 [(parallel [(set (match_operand:TF 0 "register_operand" "")
1777 (neg:TF (match_operand:TF 1 "reg_or_fp0_operand" "")))
1778 (use (match_dup 2))])]
1779 "TARGET_HAS_XFLOATING_LIBS"
1780 "
1781 {
1782 #if HOST_BITS_PER_WIDE_INT >= 64
1783 operands[2] = force_reg (DImode, GEN_INT (0x8000000000000000));
1784 #else
1785 operands[2] = force_reg (DImode, immed_double_const (0, 0x80000000, DImode));
1786 #endif
1787 }")
1788
1789 (define_insn ""
1790 [(set (match_operand:TF 0 "register_operand" "=r")
1791 (abs:TF (match_operand:TF 1 "reg_or_fp0_operand" "rG")))
1792 (use (match_operand:DI 2 "register_operand" "=r"))]
1793 "TARGET_HAS_XFLOATING_LIBS"
1794 "#")
1795
1796 (define_split
1797 [(set (match_operand:TF 0 "register_operand" "")
1798 (abs:TF (match_operand:TF 1 "reg_or_fp0_operand" "")))
1799 (use (match_operand:DI 4 "register_operand" ""))]
1800 "reload_completed"
1801 [(const_int 0)]
1802 "
1803 {
1804 int move;
1805 rtx tmp;
1806
1807 alpha_split_tfmode_pair (operands);
1808
1809 move = 1;
1810 if (rtx_equal_p (operands[0], operands[2]))
1811 move = 0;
1812 else if (rtx_equal_p (operands[1], operands[2]))
1813 move = -1;
1814
1815 if (move < 0)
1816 emit_move_insn (operands[0], operands[2]);
1817
1818 tmp = gen_rtx_NOT (DImode, operands[4]);
1819 tmp = gen_rtx_AND (DImode, tmp, operands[3]);
1820 emit_insn (gen_rtx_SET (VOIDmode, operands[1], tmp));
1821
1822 if (move > 0)
1823 emit_move_insn (operands[0], operands[2]);
1824 DONE;
1825 }")
1826
1827 (define_insn "negsf2"
1828 [(set (match_operand:SF 0 "register_operand" "=f")
1829 (neg:SF (match_operand:SF 1 "reg_or_fp0_operand" "fG")))]
1830 "TARGET_FP"
1831 "cpysn %R1,%R1,%0"
1832 [(set_attr "type" "fadd")])
1833
1834 (define_insn "negdf2"
1835 [(set (match_operand:DF 0 "register_operand" "=f")
1836 (neg:DF (match_operand:DF 1 "reg_or_fp0_operand" "fG")))]
1837 "TARGET_FP"
1838 "cpysn %R1,%R1,%0"
1839 [(set_attr "type" "fadd")])
1840
1841 (define_expand "negtf2"
1842 [(parallel [(set (match_operand:TF 0 "register_operand" "")
1843 (neg:TF (match_operand:TF 1 "reg_or_fp0_operand" "")))
1844 (use (match_dup 2))])]
1845 "TARGET_HAS_XFLOATING_LIBS"
1846 "
1847 {
1848 #if HOST_BITS_PER_WIDE_INT >= 64
1849 operands[2] = force_reg (DImode, GEN_INT (0x8000000000000000));
1850 #else
1851 operands[2] = force_reg (DImode, immed_double_const (0, 0x80000000, DImode));
1852 #endif
1853 }")
1854
1855 (define_insn ""
1856 [(set (match_operand:TF 0 "register_operand" "=r")
1857 (neg:TF (match_operand:TF 1 "reg_or_fp0_operand" "rG")))
1858 (use (match_operand:DI 2 "register_operand" "=r"))]
1859 "TARGET_HAS_XFLOATING_LIBS"
1860 "#")
1861
1862 (define_split
1863 [(set (match_operand:TF 0 "register_operand" "")
1864 (neg:TF (match_operand:TF 1 "reg_or_fp0_operand" "")))
1865 (use (match_operand:DI 4 "register_operand" ""))]
1866 "reload_completed"
1867 [(const_int 0)]
1868 "
1869 {
1870 int move;
1871
1872 alpha_split_tfmode_pair (operands);
1873
1874 move = 1;
1875 if (rtx_equal_p (operands[0], operands[2]))
1876 move = 0;
1877 else if (rtx_equal_p (operands[1], operands[2]))
1878 move = -1;
1879
1880 if (move < 0)
1881 emit_move_insn (operands[0], operands[2]);
1882
1883 emit_insn (gen_xordi3 (operands[1], operands[3], operands[4]));
1884
1885 if (move > 0)
1886 emit_move_insn (operands[0], operands[2]);
1887 DONE;
1888 }")
1889
1890 (define_insn ""
1891 [(set (match_operand:SF 0 "register_operand" "=&f")
1892 (plus:SF (match_operand:SF 1 "reg_or_fp0_operand" "%fG")
1893 (match_operand:SF 2 "reg_or_fp0_operand" "fG")))]
1894 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
1895 "add%,%)%& %R1,%R2,%0"
1896 [(set_attr "type" "fadd")
1897 (set_attr "trap" "yes")])
1898
1899 (define_insn "addsf3"
1900 [(set (match_operand:SF 0 "register_operand" "=f")
1901 (plus:SF (match_operand:SF 1 "reg_or_fp0_operand" "%fG")
1902 (match_operand:SF 2 "reg_or_fp0_operand" "fG")))]
1903 "TARGET_FP"
1904 "add%,%)%& %R1,%R2,%0"
1905 [(set_attr "type" "fadd")
1906 (set_attr "trap" "yes")])
1907
1908 (define_insn ""
1909 [(set (match_operand:DF 0 "register_operand" "=&f")
1910 (plus:DF (match_operand:DF 1 "reg_or_fp0_operand" "%fG")
1911 (match_operand:DF 2 "reg_or_fp0_operand" "fG")))]
1912 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
1913 "add%-%)%& %R1,%R2,%0"
1914 [(set_attr "type" "fadd")
1915 (set_attr "trap" "yes")])
1916
1917 (define_insn "adddf3"
1918 [(set (match_operand:DF 0 "register_operand" "=f")
1919 (plus:DF (match_operand:DF 1 "reg_or_fp0_operand" "%fG")
1920 (match_operand:DF 2 "reg_or_fp0_operand" "fG")))]
1921 "TARGET_FP"
1922 "add%-%)%& %R1,%R2,%0"
1923 [(set_attr "type" "fadd")
1924 (set_attr "trap" "yes")])
1925
1926 (define_insn ""
1927 [(set (match_operand:DF 0 "register_operand" "=f")
1928 (plus:DF (float_extend:DF
1929 (match_operand:SF 1 "reg_or_fp0_operand" "fG"))
1930 (match_operand:DF 2 "reg_or_fp0_operand" "fG")))]
1931 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
1932 "add%-%)%& %R1,%R2,%0"
1933 [(set_attr "type" "fadd")
1934 (set_attr "trap" "yes")])
1935
1936 (define_insn ""
1937 [(set (match_operand:DF 0 "register_operand" "=f")
1938 (plus:DF (float_extend:DF
1939 (match_operand:SF 1 "reg_or_fp0_operand" "%fG"))
1940 (float_extend:DF
1941 (match_operand:SF 2 "reg_or_fp0_operand" "fG"))))]
1942 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
1943 "add%-%)%& %R1,%R2,%0"
1944 [(set_attr "type" "fadd")
1945 (set_attr "trap" "yes")])
1946
1947 (define_expand "addtf3"
1948 [(use (match_operand 0 "register_operand" ""))
1949 (use (match_operand 1 "general_operand" ""))
1950 (use (match_operand 2 "general_operand" ""))]
1951 "TARGET_HAS_XFLOATING_LIBS"
1952 "alpha_emit_xfloating_arith (PLUS, operands); DONE;")
1953
1954 ;; Define conversion operators between DFmode and SImode, using the cvtql
1955 ;; instruction. To allow combine et al to do useful things, we keep the
1956 ;; operation as a unit until after reload, at which point we split the
1957 ;; instructions.
1958 ;;
1959 ;; Note that we (attempt to) only consider this optimization when the
1960 ;; ultimate destination is memory. If we will be doing further integer
1961 ;; processing, it is cheaper to do the truncation in the int regs.
1962
1963 (define_insn "*cvtql"
1964 [(set (match_operand:SI 0 "register_operand" "=f")
1965 (unspec:SI [(match_operand:DI 1 "reg_or_fp0_operand" "fG")] 5))]
1966 "TARGET_FP"
1967 "cvtql%` %R1,%0"
1968 [(set_attr "type" "fadd")
1969 (set_attr "trap" "yes")])
1970
1971 (define_split
1972 [(set (match_operand:SI 0 "memory_operand" "")
1973 (subreg:SI (fix:DI (match_operand:DF 1 "reg_or_fp0_operand" "")) 0))
1974 (clobber (match_scratch:DI 2 ""))
1975 (clobber (match_scratch:SI 3 ""))]
1976 "TARGET_FP && reload_completed"
1977 [(set (match_dup 2) (fix:DI (match_dup 1)))
1978 (set (match_dup 3) (unspec:SI [(match_dup 2)] 5))
1979 (set (match_dup 0) (match_dup 3))]
1980 "")
1981
1982 (define_split
1983 [(set (match_operand:SI 0 "memory_operand" "")
1984 (subreg:SI (fix:DI (match_operand:DF 1 "reg_or_fp0_operand" "")) 0))
1985 (clobber (match_scratch:DI 2 ""))]
1986 "TARGET_FP && reload_completed"
1987 [(set (match_dup 2) (fix:DI (match_dup 1)))
1988 (set (match_dup 3) (unspec:SI [(match_dup 2)] 5))
1989 (set (match_dup 0) (match_dup 3))]
1990 ;; Due to REG_CANNOT_CHANGE_SIZE issues, we cannot simply use SUBREG.
1991 "operands[3] = gen_rtx_REG (SImode, REGNO (operands[2]));")
1992
1993 (define_insn ""
1994 [(set (match_operand:SI 0 "memory_operand" "=m")
1995 (subreg:SI (fix:DI (match_operand:DF 1 "reg_or_fp0_operand" "fG")) 0))
1996 (clobber (match_scratch:DI 2 "=&f"))
1997 (clobber (match_scratch:SI 3 "=&f"))]
1998 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
1999 "#"
2000 [(set_attr "type" "fadd")
2001 (set_attr "trap" "yes")])
2002
2003 (define_insn ""
2004 [(set (match_operand:SI 0 "memory_operand" "=m")
2005 (subreg:SI (fix:DI (match_operand:DF 1 "reg_or_fp0_operand" "fG")) 0))
2006 (clobber (match_scratch:DI 2 "=f"))]
2007 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2008 "#"
2009 [(set_attr "type" "fadd")
2010 (set_attr "trap" "yes")])
2011
2012 (define_insn ""
2013 [(set (match_operand:DI 0 "reg_no_subreg_operand" "=&f")
2014 (fix:DI (match_operand:DF 1 "reg_or_fp0_operand" "fG")))]
2015 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2016 "cvt%-q%(c %R1,%0"
2017 [(set_attr "type" "fadd")
2018 (set_attr "trap" "yes")])
2019
2020 (define_insn "fix_truncdfdi2"
2021 [(set (match_operand:DI 0 "reg_no_subreg_operand" "=f")
2022 (fix:DI (match_operand:DF 1 "reg_or_fp0_operand" "fG")))]
2023 "TARGET_FP"
2024 "cvt%-q%(c %R1,%0"
2025 [(set_attr "type" "fadd")
2026 (set_attr "trap" "yes")])
2027
2028 ;; Likewise between SFmode and SImode.
2029
2030 (define_split
2031 [(set (match_operand:SI 0 "memory_operand" "")
2032 (subreg:SI (fix:DI (float_extend:DF
2033 (match_operand:SF 1 "reg_or_fp0_operand" ""))) 0))
2034 (clobber (match_scratch:DI 2 ""))
2035 (clobber (match_scratch:SI 3 ""))]
2036 "TARGET_FP && reload_completed"
2037 [(set (match_dup 2) (fix:DI (float_extend:DF (match_dup 1))))
2038 (set (match_dup 3) (unspec:SI [(match_dup 2)] 5))
2039 (set (match_dup 0) (match_dup 3))]
2040 "")
2041
2042 (define_split
2043 [(set (match_operand:SI 0 "memory_operand" "")
2044 (subreg:SI (fix:DI (float_extend:DF
2045 (match_operand:SF 1 "reg_or_fp0_operand" ""))) 0))
2046 (clobber (match_scratch:DI 2 ""))]
2047 "TARGET_FP && reload_completed"
2048 [(set (match_dup 2) (fix:DI (float_extend:DF (match_dup 1))))
2049 (set (match_dup 3) (unspec:SI [(match_dup 2)] 5))
2050 (set (match_dup 0) (match_dup 3))]
2051 ;; Due to REG_CANNOT_CHANGE_SIZE issues, we cannot simply use SUBREG.
2052 "operands[3] = gen_rtx_REG (SImode, REGNO (operands[2]));")
2053
2054 (define_insn ""
2055 [(set (match_operand:SI 0 "memory_operand" "=m")
2056 (subreg:SI (fix:DI (float_extend:DF
2057 (match_operand:SF 1 "reg_or_fp0_operand" "fG"))) 0))
2058 (clobber (match_scratch:DI 2 "=&f"))
2059 (clobber (match_scratch:SI 3 "=&f"))]
2060 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2061 "#"
2062 [(set_attr "type" "fadd")
2063 (set_attr "trap" "yes")])
2064
2065 (define_insn ""
2066 [(set (match_operand:SI 0 "memory_operand" "=m")
2067 (subreg:SI (fix:DI (float_extend:DF
2068 (match_operand:SF 1 "reg_or_fp0_operand" "fG"))) 0))
2069 (clobber (match_scratch:DI 2 "=f"))]
2070 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2071 "#"
2072 [(set_attr "type" "fadd")
2073 (set_attr "trap" "yes")])
2074
2075 (define_insn ""
2076 [(set (match_operand:DI 0 "reg_no_subreg_operand" "=&f")
2077 (fix:DI (float_extend:DF
2078 (match_operand:SF 1 "reg_or_fp0_operand" "fG"))))]
2079 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2080 "cvt%-q%(c %R1,%0"
2081 [(set_attr "type" "fadd")
2082 (set_attr "trap" "yes")])
2083
2084 (define_insn "fix_truncsfdi2"
2085 [(set (match_operand:DI 0 "reg_no_subreg_operand" "=f")
2086 (fix:DI (float_extend:DF
2087 (match_operand:SF 1 "reg_or_fp0_operand" "fG"))))]
2088 "TARGET_FP"
2089 "cvt%-q%(c %R1,%0"
2090 [(set_attr "type" "fadd")
2091 (set_attr "trap" "yes")])
2092
2093 (define_expand "fix_trunctfdi2"
2094 [(use (match_operand:DI 0 "register_operand" ""))
2095 (use (match_operand:TF 1 "general_operand" ""))]
2096 "TARGET_HAS_XFLOATING_LIBS"
2097 "alpha_emit_xfloating_cvt (FIX, operands); DONE;")
2098
2099 (define_insn ""
2100 [(set (match_operand:SF 0 "register_operand" "=&f")
2101 (float:SF (match_operand:DI 1 "reg_no_subreg_operand" "f")))]
2102 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2103 "cvtq%,%+%& %1,%0"
2104 [(set_attr "type" "fadd")
2105 (set_attr "trap" "yes")])
2106
2107 (define_insn "floatdisf2"
2108 [(set (match_operand:SF 0 "register_operand" "=f")
2109 (float:SF (match_operand:DI 1 "reg_no_subreg_operand" "f")))]
2110 "TARGET_FP"
2111 "cvtq%,%+%& %1,%0"
2112 [(set_attr "type" "fadd")
2113 (set_attr "trap" "yes")])
2114
2115 (define_insn ""
2116 [(set (match_operand:DF 0 "register_operand" "=&f")
2117 (float:DF (match_operand:DI 1 "reg_no_subreg_operand" "f")))]
2118 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2119 "cvtq%-%+%& %1,%0"
2120 [(set_attr "type" "fadd")
2121 (set_attr "trap" "yes")])
2122
2123 (define_insn "floatdidf2"
2124 [(set (match_operand:DF 0 "register_operand" "=f")
2125 (float:DF (match_operand:DI 1 "reg_no_subreg_operand" "f")))]
2126 "TARGET_FP"
2127 "cvtq%-%+%& %1,%0"
2128 [(set_attr "type" "fadd")
2129 (set_attr "trap" "yes")])
2130
2131 (define_expand "floatditf2"
2132 [(use (match_operand:TF 0 "register_operand" ""))
2133 (use (match_operand:DI 1 "general_operand" ""))]
2134 "TARGET_HAS_XFLOATING_LIBS"
2135 "alpha_emit_xfloating_cvt (FLOAT, operands); DONE;")
2136
2137 (define_expand "floatunsdisf2"
2138 [(use (match_operand:SF 0 "register_operand" ""))
2139 (use (match_operand:DI 1 "register_operand" ""))]
2140 ""
2141 "alpha_emit_floatuns (operands); DONE;")
2142
2143 (define_expand "floatunsdidf2"
2144 [(use (match_operand:DF 0 "register_operand" ""))
2145 (use (match_operand:DI 1 "register_operand" ""))]
2146 ""
2147 "alpha_emit_floatuns (operands); DONE;")
2148
2149 (define_expand "floatunsditf2"
2150 [(use (match_operand:TF 0 "register_operand" ""))
2151 (use (match_operand:DI 1 "general_operand" ""))]
2152 "TARGET_HAS_XFLOATING_LIBS"
2153 "alpha_emit_xfloating_cvt (UNSIGNED_FLOAT, operands); DONE;")
2154
2155 (define_expand "extendsfdf2"
2156 [(set (match_operand:DF 0 "register_operand" "")
2157 (float_extend:DF (match_operand:SF 1 "nonimmediate_operand" "")))]
2158 "TARGET_FP"
2159 "
2160 {
2161 if (alpha_fptm >= ALPHA_FPTM_SU)
2162 operands[1] = force_reg (SFmode, operands[1]);
2163 }")
2164
2165 (define_insn ""
2166 [(set (match_operand:DF 0 "register_operand" "=&f")
2167 (float_extend:DF (match_operand:SF 1 "register_operand" "f")))]
2168 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2169 "cvtsts %1,%0"
2170 [(set_attr "type" "fadd")
2171 (set_attr "trap" "yes")])
2172
2173 (define_insn ""
2174 [(set (match_operand:DF 0 "register_operand" "=f,f,m")
2175 (float_extend:DF (match_operand:SF 1 "nonimmediate_operand" "f,m,f")))]
2176 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2177 "@
2178 fmov %1,%0
2179 ld%, %0,%1
2180 st%- %1,%0"
2181 [(set_attr "type" "fcpys,fld,fst")])
2182
2183 (define_expand "extendsftf2"
2184 [(use (match_operand:TF 0 "register_operand" ""))
2185 (use (match_operand:SF 1 "general_operand" ""))]
2186 "TARGET_HAS_XFLOATING_LIBS"
2187 "
2188 {
2189 rtx tmp = gen_reg_rtx (DFmode);
2190 emit_insn (gen_extendsfdf2 (tmp, operands[1]));
2191 emit_insn (gen_extenddftf2 (operands[0], tmp));
2192 DONE;
2193 }")
2194
2195 (define_expand "extenddftf2"
2196 [(use (match_operand:TF 0 "register_operand" ""))
2197 (use (match_operand:DF 1 "general_operand" ""))]
2198 "TARGET_HAS_XFLOATING_LIBS"
2199 "alpha_emit_xfloating_cvt (FLOAT_EXTEND, operands); DONE;")
2200
2201 (define_insn ""
2202 [(set (match_operand:SF 0 "register_operand" "=&f")
2203 (float_truncate:SF (match_operand:DF 1 "reg_or_fp0_operand" "fG")))]
2204 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2205 "cvt%-%,%)%& %R1,%0"
2206 [(set_attr "type" "fadd")
2207 (set_attr "trap" "yes")])
2208
2209 (define_insn "truncdfsf2"
2210 [(set (match_operand:SF 0 "register_operand" "=f")
2211 (float_truncate:SF (match_operand:DF 1 "reg_or_fp0_operand" "fG")))]
2212 "TARGET_FP"
2213 "cvt%-%,%)%& %R1,%0"
2214 [(set_attr "type" "fadd")
2215 (set_attr "trap" "yes")])
2216
2217 (define_expand "trunctfdf2"
2218 [(use (match_operand:DF 0 "register_operand" ""))
2219 (use (match_operand:TF 1 "general_operand" ""))]
2220 "TARGET_HAS_XFLOATING_LIBS"
2221 "alpha_emit_xfloating_cvt (FLOAT_TRUNCATE, operands); DONE;")
2222
2223 (define_expand "trunctfsf2"
2224 [(use (match_operand:SF 0 "register_operand" ""))
2225 (use (match_operand:TF 1 "general_operand" ""))]
2226 "TARGET_HAS_XFLOATING_LIBS"
2227 "
2228 {
2229 rtx tmpf, sticky, arg, lo, hi;
2230
2231 tmpf = gen_reg_rtx (DFmode);
2232 sticky = gen_reg_rtx (DImode);
2233 arg = copy_to_mode_reg (TFmode, operands[1]);
2234 lo = gen_lowpart (DImode, arg);
2235 hi = gen_highpart (DImode, arg);
2236
2237 /* Convert the low word of the TFmode value into a sticky rounding bit,
2238 then or it into the low bit of the high word. This leaves the sticky
2239 bit at bit 48 of the fraction, which is representable in DFmode,
2240 which prevents rounding error in the final conversion to SFmode. */
2241
2242 emit_insn (gen_rtx_SET (VOIDmode, sticky,
2243 gen_rtx_LTU (DImode, const0_rtx, lo)));
2244 emit_insn (gen_iordi3 (hi, hi, sticky));
2245 emit_insn (gen_trunctfdf2 (tmpf, arg));
2246 emit_insn (gen_truncdfsf2 (operands[0], tmpf));
2247 DONE;
2248 }")
2249
2250 (define_insn ""
2251 [(set (match_operand:SF 0 "register_operand" "=&f")
2252 (div:SF (match_operand:SF 1 "reg_or_fp0_operand" "fG")
2253 (match_operand:SF 2 "reg_or_fp0_operand" "fG")))]
2254 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2255 "div%,%)%& %R1,%R2,%0"
2256 [(set_attr "type" "fdiv")
2257 (set_attr "opsize" "si")
2258 (set_attr "trap" "yes")])
2259
2260 (define_insn "divsf3"
2261 [(set (match_operand:SF 0 "register_operand" "=f")
2262 (div:SF (match_operand:SF 1 "reg_or_fp0_operand" "fG")
2263 (match_operand:SF 2 "reg_or_fp0_operand" "fG")))]
2264 "TARGET_FP"
2265 "div%,%)%& %R1,%R2,%0"
2266 [(set_attr "type" "fdiv")
2267 (set_attr "opsize" "si")
2268 (set_attr "trap" "yes")])
2269
2270 (define_insn ""
2271 [(set (match_operand:DF 0 "register_operand" "=&f")
2272 (div:DF (match_operand:DF 1 "reg_or_fp0_operand" "fG")
2273 (match_operand:DF 2 "reg_or_fp0_operand" "fG")))]
2274 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2275 "div%-%)%& %R1,%R2,%0"
2276 [(set_attr "type" "fdiv")
2277 (set_attr "trap" "yes")])
2278
2279 (define_insn "divdf3"
2280 [(set (match_operand:DF 0 "register_operand" "=f")
2281 (div:DF (match_operand:DF 1 "reg_or_fp0_operand" "fG")
2282 (match_operand:DF 2 "reg_or_fp0_operand" "fG")))]
2283 "TARGET_FP"
2284 "div%-%)%& %R1,%R2,%0"
2285 [(set_attr "type" "fdiv")
2286 (set_attr "trap" "yes")])
2287
2288 (define_insn ""
2289 [(set (match_operand:DF 0 "register_operand" "=f")
2290 (div:DF (float_extend:DF (match_operand:SF 1 "reg_or_fp0_operand" "fG"))
2291 (match_operand:DF 2 "reg_or_fp0_operand" "fG")))]
2292 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2293 "div%-%)%& %R1,%R2,%0"
2294 [(set_attr "type" "fdiv")
2295 (set_attr "trap" "yes")])
2296
2297 (define_insn ""
2298 [(set (match_operand:DF 0 "register_operand" "=f")
2299 (div:DF (match_operand:DF 1 "reg_or_fp0_operand" "fG")
2300 (float_extend:DF
2301 (match_operand:SF 2 "reg_or_fp0_operand" "fG"))))]
2302 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2303 "div%-%)%& %R1,%R2,%0"
2304 [(set_attr "type" "fdiv")
2305 (set_attr "trap" "yes")])
2306
2307 (define_insn ""
2308 [(set (match_operand:DF 0 "register_operand" "=f")
2309 (div:DF (float_extend:DF (match_operand:SF 1 "reg_or_fp0_operand" "fG"))
2310 (float_extend:DF (match_operand:SF 2 "reg_or_fp0_operand" "fG"))))]
2311 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2312 "div%-%)%& %R1,%R2,%0"
2313 [(set_attr "type" "fdiv")
2314 (set_attr "trap" "yes")])
2315
2316 (define_expand "divtf3"
2317 [(use (match_operand 0 "register_operand" ""))
2318 (use (match_operand 1 "general_operand" ""))
2319 (use (match_operand 2 "general_operand" ""))]
2320 "TARGET_HAS_XFLOATING_LIBS"
2321 "alpha_emit_xfloating_arith (DIV, operands); DONE;")
2322
2323 (define_insn ""
2324 [(set (match_operand:SF 0 "register_operand" "=&f")
2325 (mult:SF (match_operand:SF 1 "reg_or_fp0_operand" "%fG")
2326 (match_operand:SF 2 "reg_or_fp0_operand" "fG")))]
2327 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2328 "mul%,%)%& %R1,%R2,%0"
2329 [(set_attr "type" "fmul")
2330 (set_attr "trap" "yes")])
2331
2332 (define_insn "mulsf3"
2333 [(set (match_operand:SF 0 "register_operand" "=f")
2334 (mult:SF (match_operand:SF 1 "reg_or_fp0_operand" "%fG")
2335 (match_operand:SF 2 "reg_or_fp0_operand" "fG")))]
2336 "TARGET_FP"
2337 "mul%,%)%& %R1,%R2,%0"
2338 [(set_attr "type" "fmul")
2339 (set_attr "trap" "yes")])
2340
2341 (define_insn ""
2342 [(set (match_operand:DF 0 "register_operand" "=&f")
2343 (mult:DF (match_operand:DF 1 "reg_or_fp0_operand" "%fG")
2344 (match_operand:DF 2 "reg_or_fp0_operand" "fG")))]
2345 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2346 "mul%-%)%& %R1,%R2,%0"
2347 [(set_attr "type" "fmul")
2348 (set_attr "trap" "yes")])
2349
2350 (define_insn "muldf3"
2351 [(set (match_operand:DF 0 "register_operand" "=f")
2352 (mult:DF (match_operand:DF 1 "reg_or_fp0_operand" "%fG")
2353 (match_operand:DF 2 "reg_or_fp0_operand" "fG")))]
2354 "TARGET_FP"
2355 "mul%-%)%& %R1,%R2,%0"
2356 [(set_attr "type" "fmul")
2357 (set_attr "trap" "yes")])
2358
2359 (define_insn ""
2360 [(set (match_operand:DF 0 "register_operand" "=f")
2361 (mult:DF (float_extend:DF
2362 (match_operand:SF 1 "reg_or_fp0_operand" "fG"))
2363 (match_operand:DF 2 "reg_or_fp0_operand" "fG")))]
2364 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2365 "mul%-%)%& %R1,%R2,%0"
2366 [(set_attr "type" "fmul")
2367 (set_attr "trap" "yes")])
2368
2369 (define_insn ""
2370 [(set (match_operand:DF 0 "register_operand" "=f")
2371 (mult:DF (float_extend:DF
2372 (match_operand:SF 1 "reg_or_fp0_operand" "%fG"))
2373 (float_extend:DF
2374 (match_operand:SF 2 "reg_or_fp0_operand" "fG"))))]
2375 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2376 "mul%-%)%& %R1,%R2,%0"
2377 [(set_attr "type" "fmul")
2378 (set_attr "trap" "yes")])
2379
2380 (define_expand "multf3"
2381 [(use (match_operand 0 "register_operand" ""))
2382 (use (match_operand 1 "general_operand" ""))
2383 (use (match_operand 2 "general_operand" ""))]
2384 "TARGET_HAS_XFLOATING_LIBS"
2385 "alpha_emit_xfloating_arith (MULT, operands); DONE;")
2386
2387 (define_insn ""
2388 [(set (match_operand:SF 0 "register_operand" "=&f")
2389 (minus:SF (match_operand:SF 1 "reg_or_fp0_operand" "fG")
2390 (match_operand:SF 2 "reg_or_fp0_operand" "fG")))]
2391 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2392 "sub%,%)%& %R1,%R2,%0"
2393 [(set_attr "type" "fadd")
2394 (set_attr "trap" "yes")])
2395
2396 (define_insn "subsf3"
2397 [(set (match_operand:SF 0 "register_operand" "=f")
2398 (minus:SF (match_operand:SF 1 "reg_or_fp0_operand" "fG")
2399 (match_operand:SF 2 "reg_or_fp0_operand" "fG")))]
2400 "TARGET_FP"
2401 "sub%,%)%& %R1,%R2,%0"
2402 [(set_attr "type" "fadd")
2403 (set_attr "trap" "yes")])
2404
2405 (define_insn ""
2406 [(set (match_operand:DF 0 "register_operand" "=&f")
2407 (minus:DF (match_operand:DF 1 "reg_or_fp0_operand" "fG")
2408 (match_operand:DF 2 "reg_or_fp0_operand" "fG")))]
2409 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2410 "sub%-%)%& %R1,%R2,%0"
2411 [(set_attr "type" "fadd")
2412 (set_attr "trap" "yes")])
2413
2414 (define_insn "subdf3"
2415 [(set (match_operand:DF 0 "register_operand" "=f")
2416 (minus:DF (match_operand:DF 1 "reg_or_fp0_operand" "fG")
2417 (match_operand:DF 2 "reg_or_fp0_operand" "fG")))]
2418 "TARGET_FP"
2419 "sub%-%)%& %R1,%R2,%0"
2420 [(set_attr "type" "fadd")
2421 (set_attr "trap" "yes")])
2422
2423 (define_insn ""
2424 [(set (match_operand:DF 0 "register_operand" "=f")
2425 (minus:DF (float_extend:DF
2426 (match_operand:SF 1 "reg_or_fp0_operand" "fG"))
2427 (match_operand:DF 2 "reg_or_fp0_operand" "fG")))]
2428 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2429 "sub%-%)%& %R1,%R2,%0"
2430 [(set_attr "type" "fadd")
2431 (set_attr "trap" "yes")])
2432
2433 (define_insn ""
2434 [(set (match_operand:DF 0 "register_operand" "=f")
2435 (minus:DF (match_operand:DF 1 "reg_or_fp0_operand" "fG")
2436 (float_extend:DF
2437 (match_operand:SF 2 "reg_or_fp0_operand" "fG"))))]
2438 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2439 "sub%-%)%& %R1,%R2,%0"
2440 [(set_attr "type" "fadd")
2441 (set_attr "trap" "yes")])
2442
2443 (define_insn ""
2444 [(set (match_operand:DF 0 "register_operand" "=f")
2445 (minus:DF (float_extend:DF
2446 (match_operand:SF 1 "reg_or_fp0_operand" "fG"))
2447 (float_extend:DF
2448 (match_operand:SF 2 "reg_or_fp0_operand" "fG"))))]
2449 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2450 "sub%-%)%& %R1,%R2,%0"
2451 [(set_attr "type" "fadd")
2452 (set_attr "trap" "yes")])
2453
2454 (define_expand "subtf3"
2455 [(use (match_operand 0 "register_operand" ""))
2456 (use (match_operand 1 "general_operand" ""))
2457 (use (match_operand 2 "general_operand" ""))]
2458 "TARGET_HAS_XFLOATING_LIBS"
2459 "alpha_emit_xfloating_arith (MINUS, operands); DONE;")
2460
2461 (define_insn ""
2462 [(set (match_operand:SF 0 "register_operand" "=&f")
2463 (sqrt:SF (match_operand:SF 1 "reg_or_fp0_operand" "fG")))]
2464 "TARGET_FP && TARGET_FIX && alpha_fptm >= ALPHA_FPTM_SU"
2465 "sqrt%,%)%& %R1,%0"
2466 [(set_attr "type" "fsqrt")
2467 (set_attr "opsize" "si")
2468 (set_attr "trap" "yes")])
2469
2470 (define_insn "sqrtsf2"
2471 [(set (match_operand:SF 0 "register_operand" "=f")
2472 (sqrt:SF (match_operand:SF 1 "reg_or_fp0_operand" "fG")))]
2473 "TARGET_FP && TARGET_FIX"
2474 "sqrt%,%)%& %R1,%0"
2475 [(set_attr "type" "fsqrt")
2476 (set_attr "opsize" "si")
2477 (set_attr "trap" "yes")])
2478
2479 (define_insn ""
2480 [(set (match_operand:DF 0 "register_operand" "=&f")
2481 (sqrt:DF (match_operand:DF 1 "reg_or_fp0_operand" "fG")))]
2482 "TARGET_FP && TARGET_FIX && alpha_fptm >= ALPHA_FPTM_SU"
2483 "sqrt%-%)%& %R1,%0"
2484 [(set_attr "type" "fsqrt")
2485 (set_attr "trap" "yes")])
2486
2487 (define_insn "sqrtdf2"
2488 [(set (match_operand:DF 0 "register_operand" "=f")
2489 (sqrt:DF (match_operand:DF 1 "reg_or_fp0_operand" "fG")))]
2490 "TARGET_FP && TARGET_FIX"
2491 "sqrt%-%)%& %1,%0"
2492 [(set_attr "type" "fsqrt")
2493 (set_attr "trap" "yes")])
2494 \f
2495 ;; Next are all the integer comparisons, and conditional moves and branches
2496 ;; and some of the related define_expand's and define_split's.
2497
2498 (define_insn ""
2499 [(set (match_operand:DI 0 "register_operand" "=r")
2500 (match_operator:DI 1 "alpha_comparison_operator"
2501 [(match_operand:DI 2 "reg_or_0_operand" "rJ")
2502 (match_operand:DI 3 "reg_or_8bit_operand" "rI")]))]
2503 ""
2504 "cmp%C1 %r2,%3,%0"
2505 [(set_attr "type" "icmp")])
2506
2507 (define_insn ""
2508 [(set (match_operand:DI 0 "register_operand" "=r")
2509 (match_operator:DI 1 "alpha_swapped_comparison_operator"
2510 [(match_operand:DI 2 "reg_or_8bit_operand" "rI")
2511 (match_operand:DI 3 "reg_or_0_operand" "rJ")]))]
2512 ""
2513 "cmp%c1 %r3,%2,%0"
2514 [(set_attr "type" "icmp")])
2515
2516 ;; This pattern exists so conditional moves of SImode values are handled.
2517 ;; Comparisons are still done in DImode though.
2518
2519 (define_insn ""
2520 [(set (match_operand:SI 0 "register_operand" "=r,r,r,r")
2521 (if_then_else:SI
2522 (match_operator 2 "signed_comparison_operator"
2523 [(match_operand:DI 3 "reg_or_0_operand" "rJ,rJ,J,J")
2524 (match_operand:DI 4 "reg_or_0_operand" "J,J,rJ,rJ")])
2525 (match_operand:SI 1 "reg_or_8bit_operand" "rI,0,rI,0")
2526 (match_operand:SI 5 "reg_or_8bit_operand" "0,rI,0,rI")))]
2527 "operands[3] == const0_rtx || operands[4] == const0_rtx"
2528 "@
2529 cmov%C2 %r3,%1,%0
2530 cmov%D2 %r3,%5,%0
2531 cmov%c2 %r4,%1,%0
2532 cmov%d2 %r4,%5,%0"
2533 [(set_attr "type" "icmov")])
2534
2535 (define_insn ""
2536 [(set (match_operand:DI 0 "register_operand" "=r,r,r,r")
2537 (if_then_else:DI
2538 (match_operator 2 "signed_comparison_operator"
2539 [(match_operand:DI 3 "reg_or_0_operand" "rJ,rJ,J,J")
2540 (match_operand:DI 4 "reg_or_0_operand" "J,J,rJ,rJ")])
2541 (match_operand:DI 1 "reg_or_8bit_operand" "rI,0,rI,0")
2542 (match_operand:DI 5 "reg_or_8bit_operand" "0,rI,0,rI")))]
2543 "operands[3] == const0_rtx || operands[4] == const0_rtx"
2544 "@
2545 cmov%C2 %r3,%1,%0
2546 cmov%D2 %r3,%5,%0
2547 cmov%c2 %r4,%1,%0
2548 cmov%d2 %r4,%5,%0"
2549 [(set_attr "type" "icmov")])
2550
2551 (define_insn ""
2552 [(set (match_operand:DI 0 "register_operand" "=r,r")
2553 (if_then_else:DI
2554 (eq (zero_extract:DI (match_operand:DI 2 "reg_or_0_operand" "rJ,rJ")
2555 (const_int 1)
2556 (const_int 0))
2557 (const_int 0))
2558 (match_operand:DI 1 "reg_or_8bit_operand" "rI,0")
2559 (match_operand:DI 3 "reg_or_8bit_operand" "0,rI")))]
2560 ""
2561 "@
2562 cmovlbc %r2,%1,%0
2563 cmovlbs %r2,%3,%0"
2564 [(set_attr "type" "icmov")])
2565
2566 (define_insn ""
2567 [(set (match_operand:DI 0 "register_operand" "=r,r")
2568 (if_then_else:DI
2569 (ne (zero_extract:DI (match_operand:DI 2 "reg_or_0_operand" "rJ,rJ")
2570 (const_int 1)
2571 (const_int 0))
2572 (const_int 0))
2573 (match_operand:DI 1 "reg_or_8bit_operand" "rI,0")
2574 (match_operand:DI 3 "reg_or_8bit_operand" "0,rI")))]
2575 ""
2576 "@
2577 cmovlbs %r2,%1,%0
2578 cmovlbc %r2,%3,%0"
2579 [(set_attr "type" "icmov")])
2580
2581 ;; For ABS, we have two choices, depending on whether the input and output
2582 ;; registers are the same or not.
2583 (define_expand "absdi2"
2584 [(set (match_operand:DI 0 "register_operand" "")
2585 (abs:DI (match_operand:DI 1 "register_operand" "")))]
2586 ""
2587 "
2588 { if (rtx_equal_p (operands[0], operands[1]))
2589 emit_insn (gen_absdi2_same (operands[0], gen_reg_rtx (DImode)));
2590 else
2591 emit_insn (gen_absdi2_diff (operands[0], operands[1]));
2592
2593 DONE;
2594 }")
2595
2596 (define_expand "absdi2_same"
2597 [(set (match_operand:DI 1 "register_operand" "")
2598 (neg:DI (match_operand:DI 0 "register_operand" "")))
2599 (set (match_dup 0)
2600 (if_then_else:DI (ge (match_dup 0) (const_int 0))
2601 (match_dup 0)
2602 (match_dup 1)))]
2603 ""
2604 "")
2605
2606 (define_expand "absdi2_diff"
2607 [(set (match_operand:DI 0 "register_operand" "")
2608 (neg:DI (match_operand:DI 1 "register_operand" "")))
2609 (set (match_dup 0)
2610 (if_then_else:DI (lt (match_dup 1) (const_int 0))
2611 (match_dup 0)
2612 (match_dup 1)))]
2613 ""
2614 "")
2615
2616 (define_split
2617 [(set (match_operand:DI 0 "register_operand" "")
2618 (abs:DI (match_dup 0)))
2619 (clobber (match_operand:DI 2 "register_operand" ""))]
2620 ""
2621 [(set (match_dup 1) (neg:DI (match_dup 0)))
2622 (set (match_dup 0) (if_then_else:DI (ge (match_dup 0) (const_int 0))
2623 (match_dup 0) (match_dup 1)))]
2624 "")
2625
2626 (define_split
2627 [(set (match_operand:DI 0 "register_operand" "")
2628 (abs:DI (match_operand:DI 1 "register_operand" "")))]
2629 "! rtx_equal_p (operands[0], operands[1])"
2630 [(set (match_dup 0) (neg:DI (match_dup 1)))
2631 (set (match_dup 0) (if_then_else:DI (lt (match_dup 1) (const_int 0))
2632 (match_dup 0) (match_dup 1)))]
2633 "")
2634
2635 (define_split
2636 [(set (match_operand:DI 0 "register_operand" "")
2637 (neg:DI (abs:DI (match_dup 0))))
2638 (clobber (match_operand:DI 2 "register_operand" ""))]
2639 ""
2640 [(set (match_dup 1) (neg:DI (match_dup 0)))
2641 (set (match_dup 0) (if_then_else:DI (le (match_dup 0) (const_int 0))
2642 (match_dup 0) (match_dup 1)))]
2643 "")
2644
2645 (define_split
2646 [(set (match_operand:DI 0 "register_operand" "")
2647 (neg:DI (abs:DI (match_operand:DI 1 "register_operand" ""))))]
2648 "! rtx_equal_p (operands[0], operands[1])"
2649 [(set (match_dup 0) (neg:DI (match_dup 1)))
2650 (set (match_dup 0) (if_then_else:DI (gt (match_dup 1) (const_int 0))
2651 (match_dup 0) (match_dup 1)))]
2652 "")
2653
2654 (define_insn "sminqi3"
2655 [(set (match_operand:QI 0 "register_operand" "=r")
2656 (smin:QI (match_operand:QI 1 "reg_or_0_operand" "%rJ")
2657 (match_operand:QI 2 "reg_or_8bit_operand" "rI")))]
2658 "TARGET_MAX"
2659 "minsb8 %r1,%2,%0"
2660 [(set_attr "type" "mvi")])
2661
2662 (define_insn "uminqi3"
2663 [(set (match_operand:QI 0 "register_operand" "=r")
2664 (umin:QI (match_operand:QI 1 "reg_or_0_operand" "%rJ")
2665 (match_operand:QI 2 "reg_or_8bit_operand" "rI")))]
2666 "TARGET_MAX"
2667 "minub8 %r1,%2,%0"
2668 [(set_attr "type" "mvi")])
2669
2670 (define_insn "smaxqi3"
2671 [(set (match_operand:QI 0 "register_operand" "=r")
2672 (smax:QI (match_operand:QI 1 "reg_or_0_operand" "%rJ")
2673 (match_operand:QI 2 "reg_or_8bit_operand" "rI")))]
2674 "TARGET_MAX"
2675 "maxsb8 %r1,%2,%0"
2676 [(set_attr "type" "mvi")])
2677
2678 (define_insn "umaxqi3"
2679 [(set (match_operand:QI 0 "register_operand" "=r")
2680 (umax:QI (match_operand:QI 1 "reg_or_0_operand" "%rJ")
2681 (match_operand:QI 2 "reg_or_8bit_operand" "rI")))]
2682 "TARGET_MAX"
2683 "maxub8 %r1,%2,%0"
2684 [(set_attr "type" "mvi")])
2685
2686 (define_insn "sminhi3"
2687 [(set (match_operand:HI 0 "register_operand" "=r")
2688 (smin:HI (match_operand:HI 1 "reg_or_0_operand" "%rJ")
2689 (match_operand:HI 2 "reg_or_8bit_operand" "rI")))]
2690 "TARGET_MAX"
2691 "minsw4 %r1,%2,%0"
2692 [(set_attr "type" "mvi")])
2693
2694 (define_insn "uminhi3"
2695 [(set (match_operand:HI 0 "register_operand" "=r")
2696 (umin:HI (match_operand:HI 1 "reg_or_0_operand" "%rJ")
2697 (match_operand:HI 2 "reg_or_8bit_operand" "rI")))]
2698 "TARGET_MAX"
2699 "minuw4 %r1,%2,%0"
2700 [(set_attr "type" "mvi")])
2701
2702 (define_insn "smaxhi3"
2703 [(set (match_operand:HI 0 "register_operand" "=r")
2704 (smax:HI (match_operand:HI 1 "reg_or_0_operand" "%rJ")
2705 (match_operand:HI 2 "reg_or_8bit_operand" "rI")))]
2706 "TARGET_MAX"
2707 "maxsw4 %r1,%2,%0"
2708 [(set_attr "type" "mvi")])
2709
2710 (define_insn "umaxhi3"
2711 [(set (match_operand:HI 0 "register_operand" "=r")
2712 (umax:HI (match_operand:HI 1 "reg_or_0_operand" "%rJ")
2713 (match_operand:HI 2 "reg_or_8bit_operand" "rI")))]
2714 "TARGET_MAX"
2715 "maxuw4 %r1,%2,%0"
2716 [(set_attr "type" "shift")])
2717
2718 (define_expand "smaxdi3"
2719 [(set (match_dup 3)
2720 (le:DI (match_operand:DI 1 "reg_or_0_operand" "")
2721 (match_operand:DI 2 "reg_or_8bit_operand" "")))
2722 (set (match_operand:DI 0 "register_operand" "")
2723 (if_then_else:DI (eq (match_dup 3) (const_int 0))
2724 (match_dup 1) (match_dup 2)))]
2725 ""
2726 "
2727 { operands[3] = gen_reg_rtx (DImode);
2728 }")
2729
2730 (define_split
2731 [(set (match_operand:DI 0 "register_operand" "")
2732 (smax:DI (match_operand:DI 1 "reg_or_0_operand" "")
2733 (match_operand:DI 2 "reg_or_8bit_operand" "")))
2734 (clobber (match_operand:DI 3 "register_operand" ""))]
2735 "operands[2] != const0_rtx"
2736 [(set (match_dup 3) (le:DI (match_dup 1) (match_dup 2)))
2737 (set (match_dup 0) (if_then_else:DI (eq (match_dup 3) (const_int 0))
2738 (match_dup 1) (match_dup 2)))]
2739 "")
2740
2741 (define_insn ""
2742 [(set (match_operand:DI 0 "register_operand" "=r")
2743 (smax:DI (match_operand:DI 1 "register_operand" "0")
2744 (const_int 0)))]
2745 ""
2746 "cmovlt %0,0,%0"
2747 [(set_attr "type" "icmov")])
2748
2749 (define_expand "smindi3"
2750 [(set (match_dup 3)
2751 (lt:DI (match_operand:DI 1 "reg_or_0_operand" "")
2752 (match_operand:DI 2 "reg_or_8bit_operand" "")))
2753 (set (match_operand:DI 0 "register_operand" "")
2754 (if_then_else:DI (ne (match_dup 3) (const_int 0))
2755 (match_dup 1) (match_dup 2)))]
2756 ""
2757 "
2758 { operands[3] = gen_reg_rtx (DImode);
2759 }")
2760
2761 (define_split
2762 [(set (match_operand:DI 0 "register_operand" "")
2763 (smin:DI (match_operand:DI 1 "reg_or_0_operand" "")
2764 (match_operand:DI 2 "reg_or_8bit_operand" "")))
2765 (clobber (match_operand:DI 3 "register_operand" ""))]
2766 "operands[2] != const0_rtx"
2767 [(set (match_dup 3) (lt:DI (match_dup 1) (match_dup 2)))
2768 (set (match_dup 0) (if_then_else:DI (ne (match_dup 3) (const_int 0))
2769 (match_dup 1) (match_dup 2)))]
2770 "")
2771
2772 (define_insn ""
2773 [(set (match_operand:DI 0 "register_operand" "=r")
2774 (smin:DI (match_operand:DI 1 "register_operand" "0")
2775 (const_int 0)))]
2776 ""
2777 "cmovgt %0,0,%0"
2778 [(set_attr "type" "icmov")])
2779
2780 (define_expand "umaxdi3"
2781 [(set (match_dup 3)
2782 (leu:DI (match_operand:DI 1 "reg_or_0_operand" "")
2783 (match_operand:DI 2 "reg_or_8bit_operand" "")))
2784 (set (match_operand:DI 0 "register_operand" "")
2785 (if_then_else:DI (eq (match_dup 3) (const_int 0))
2786 (match_dup 1) (match_dup 2)))]
2787 ""
2788 "
2789 { operands[3] = gen_reg_rtx (DImode);
2790 }")
2791
2792 (define_split
2793 [(set (match_operand:DI 0 "register_operand" "")
2794 (umax:DI (match_operand:DI 1 "reg_or_0_operand" "")
2795 (match_operand:DI 2 "reg_or_8bit_operand" "")))
2796 (clobber (match_operand:DI 3 "register_operand" ""))]
2797 "operands[2] != const0_rtx"
2798 [(set (match_dup 3) (leu:DI (match_dup 1) (match_dup 2)))
2799 (set (match_dup 0) (if_then_else:DI (eq (match_dup 3) (const_int 0))
2800 (match_dup 1) (match_dup 2)))]
2801 "")
2802
2803 (define_expand "umindi3"
2804 [(set (match_dup 3)
2805 (ltu:DI (match_operand:DI 1 "reg_or_0_operand" "")
2806 (match_operand:DI 2 "reg_or_8bit_operand" "")))
2807 (set (match_operand:DI 0 "register_operand" "")
2808 (if_then_else:DI (ne (match_dup 3) (const_int 0))
2809 (match_dup 1) (match_dup 2)))]
2810 ""
2811 "
2812 { operands[3] = gen_reg_rtx (DImode);
2813 }")
2814
2815 (define_split
2816 [(set (match_operand:DI 0 "register_operand" "")
2817 (umin:DI (match_operand:DI 1 "reg_or_0_operand" "")
2818 (match_operand:DI 2 "reg_or_8bit_operand" "")))
2819 (clobber (match_operand:DI 3 "register_operand" ""))]
2820 "operands[2] != const0_rtx"
2821 [(set (match_dup 3) (ltu:DI (match_dup 1) (match_dup 2)))
2822 (set (match_dup 0) (if_then_else:DI (ne (match_dup 3) (const_int 0))
2823 (match_dup 1) (match_dup 2)))]
2824 "")
2825
2826 (define_insn ""
2827 [(set (pc)
2828 (if_then_else
2829 (match_operator 1 "signed_comparison_operator"
2830 [(match_operand:DI 2 "reg_or_0_operand" "rJ")
2831 (const_int 0)])
2832 (label_ref (match_operand 0 "" ""))
2833 (pc)))]
2834 ""
2835 "b%C1 %r2,%0"
2836 [(set_attr "type" "ibr")])
2837
2838 (define_insn ""
2839 [(set (pc)
2840 (if_then_else
2841 (match_operator 1 "signed_comparison_operator"
2842 [(const_int 0)
2843 (match_operand:DI 2 "register_operand" "r")])
2844 (label_ref (match_operand 0 "" ""))
2845 (pc)))]
2846 ""
2847 "b%c1 %2,%0"
2848 [(set_attr "type" "ibr")])
2849
2850 (define_insn ""
2851 [(set (pc)
2852 (if_then_else
2853 (ne (zero_extract:DI (match_operand:DI 1 "reg_or_0_operand" "rJ")
2854 (const_int 1)
2855 (const_int 0))
2856 (const_int 0))
2857 (label_ref (match_operand 0 "" ""))
2858 (pc)))]
2859 ""
2860 "blbs %r1,%0"
2861 [(set_attr "type" "ibr")])
2862
2863 (define_insn ""
2864 [(set (pc)
2865 (if_then_else
2866 (eq (zero_extract:DI (match_operand:DI 1 "reg_or_0_operand" "rJ")
2867 (const_int 1)
2868 (const_int 0))
2869 (const_int 0))
2870 (label_ref (match_operand 0 "" ""))
2871 (pc)))]
2872 ""
2873 "blbc %r1,%0"
2874 [(set_attr "type" "ibr")])
2875
2876 (define_split
2877 [(parallel
2878 [(set (pc)
2879 (if_then_else
2880 (match_operator 1 "comparison_operator"
2881 [(zero_extract:DI (match_operand:DI 2 "register_operand" "")
2882 (const_int 1)
2883 (match_operand:DI 3 "const_int_operand" ""))
2884 (const_int 0)])
2885 (label_ref (match_operand 0 "" ""))
2886 (pc)))
2887 (clobber (match_operand:DI 4 "register_operand" ""))])]
2888 "INTVAL (operands[3]) != 0"
2889 [(set (match_dup 4)
2890 (lshiftrt:DI (match_dup 2) (match_dup 3)))
2891 (set (pc)
2892 (if_then_else (match_op_dup 1
2893 [(zero_extract:DI (match_dup 4)
2894 (const_int 1)
2895 (const_int 0))
2896 (const_int 0)])
2897 (label_ref (match_dup 0))
2898 (pc)))]
2899 "")
2900 \f
2901 ;; The following are the corresponding floating-point insns. Recall
2902 ;; we need to have variants that expand the arguments from SFmode
2903 ;; to DFmode.
2904
2905 (define_insn "*cmpdf_tp"
2906 [(set (match_operand:DF 0 "register_operand" "=&f")
2907 (match_operator:DF 1 "alpha_fp_comparison_operator"
2908 [(match_operand:DF 2 "reg_or_fp0_operand" "fG")
2909 (match_operand:DF 3 "reg_or_fp0_operand" "fG")]))]
2910 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2911 "cmp%-%C1%' %R2,%R3,%0"
2912 [(set_attr "type" "fadd")
2913 (set_attr "trap" "yes")])
2914
2915 (define_insn "*cmpdf_no_tp"
2916 [(set (match_operand:DF 0 "register_operand" "=f")
2917 (match_operator:DF 1 "alpha_fp_comparison_operator"
2918 [(match_operand:DF 2 "reg_or_fp0_operand" "fG")
2919 (match_operand:DF 3 "reg_or_fp0_operand" "fG")]))]
2920 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2921 "cmp%-%C1%' %R2,%R3,%0"
2922 [(set_attr "type" "fadd")
2923 (set_attr "trap" "yes")])
2924
2925 (define_insn ""
2926 [(set (match_operand:DF 0 "register_operand" "=&f")
2927 (match_operator:DF 1 "alpha_fp_comparison_operator"
2928 [(float_extend:DF
2929 (match_operand:SF 2 "reg_or_fp0_operand" "fG"))
2930 (match_operand:DF 3 "reg_or_fp0_operand" "fG")]))]
2931 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2932 "cmp%-%C1%' %R2,%R3,%0"
2933 [(set_attr "type" "fadd")
2934 (set_attr "trap" "yes")])
2935
2936 (define_insn ""
2937 [(set (match_operand:DF 0 "register_operand" "=f")
2938 (match_operator:DF 1 "alpha_fp_comparison_operator"
2939 [(float_extend:DF
2940 (match_operand:SF 2 "reg_or_fp0_operand" "fG"))
2941 (match_operand:DF 3 "reg_or_fp0_operand" "fG")]))]
2942 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2943 "cmp%-%C1%' %R2,%R3,%0"
2944 [(set_attr "type" "fadd")
2945 (set_attr "trap" "yes")])
2946
2947 (define_insn ""
2948 [(set (match_operand:DF 0 "register_operand" "=&f")
2949 (match_operator:DF 1 "alpha_fp_comparison_operator"
2950 [(match_operand:DF 2 "reg_or_fp0_operand" "fG")
2951 (float_extend:DF
2952 (match_operand:SF 3 "reg_or_fp0_operand" "fG"))]))]
2953 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2954 "cmp%-%C1%' %R2,%R3,%0"
2955 [(set_attr "type" "fadd")
2956 (set_attr "trap" "yes")])
2957
2958 (define_insn ""
2959 [(set (match_operand:DF 0 "register_operand" "=f")
2960 (match_operator:DF 1 "alpha_fp_comparison_operator"
2961 [(match_operand:DF 2 "reg_or_fp0_operand" "fG")
2962 (float_extend:DF
2963 (match_operand:SF 3 "reg_or_fp0_operand" "fG"))]))]
2964 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2965 "cmp%-%C1%' %R2,%R3,%0"
2966 [(set_attr "type" "fadd")
2967 (set_attr "trap" "yes")])
2968
2969 (define_insn ""
2970 [(set (match_operand:DF 0 "register_operand" "=&f")
2971 (match_operator:DF 1 "alpha_fp_comparison_operator"
2972 [(float_extend:DF
2973 (match_operand:SF 2 "reg_or_fp0_operand" "fG"))
2974 (float_extend:DF
2975 (match_operand:SF 3 "reg_or_fp0_operand" "fG"))]))]
2976 "TARGET_FP && alpha_fptm >= ALPHA_FPTM_SU"
2977 "cmp%-%C1%' %R2,%R3,%0"
2978 [(set_attr "type" "fadd")
2979 (set_attr "trap" "yes")])
2980
2981 (define_insn ""
2982 [(set (match_operand:DF 0 "register_operand" "=f")
2983 (match_operator:DF 1 "alpha_fp_comparison_operator"
2984 [(float_extend:DF
2985 (match_operand:SF 2 "reg_or_fp0_operand" "fG"))
2986 (float_extend:DF
2987 (match_operand:SF 3 "reg_or_fp0_operand" "fG"))]))]
2988 "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU"
2989 "cmp%-%C1%' %R2,%R3,%0"
2990 [(set_attr "type" "fadd")
2991 (set_attr "trap" "yes")])
2992
2993 (define_insn ""
2994 [(set (match_operand:DF 0 "register_operand" "=f,f")
2995 (if_then_else:DF
2996 (match_operator 3 "signed_comparison_operator"
2997 [(match_operand:DF 4 "reg_or_fp0_operand" "fG,fG")
2998 (match_operand:DF 2 "fp0_operand" "G,G")])
2999 (match_operand:DF 1 "reg_or_fp0_operand" "fG,0")
3000 (match_operand:DF 5 "reg_or_fp0_operand" "0,fG")))]
3001 "TARGET_FP"
3002 "@
3003 fcmov%C3 %R4,%R1,%0
3004 fcmov%D3 %R4,%R5,%0"
3005 [(set_attr "type" "fcmov")])
3006
3007 (define_insn ""
3008 [(set (match_operand:SF 0 "register_operand" "=f,f")
3009 (if_then_else:SF
3010 (match_operator 3 "signed_comparison_operator"
3011 [(match_operand:DF 4 "reg_or_fp0_operand" "fG,fG")
3012 (match_operand:DF 2 "fp0_operand" "G,G")])
3013 (match_operand:SF 1 "reg_or_fp0_operand" "fG,0")
3014 (match_operand:SF 5 "reg_or_fp0_operand" "0,fG")))]
3015 "TARGET_FP"
3016 "@
3017 fcmov%C3 %R4,%R1,%0
3018 fcmov%D3 %R4,%R5,%0"
3019 [(set_attr "type" "fcmov")])
3020
3021 (define_insn ""
3022 [(set (match_operand:DF 0 "register_operand" "=f,f")
3023 (if_then_else:DF
3024 (match_operator 3 "signed_comparison_operator"
3025 [(match_operand:DF 4 "reg_or_fp0_operand" "fG,fG")
3026 (match_operand:DF 2 "fp0_operand" "G,G")])
3027 (float_extend:DF (match_operand:SF 1 "reg_or_fp0_operand" "fG,0"))
3028 (match_operand:DF 5 "reg_or_fp0_operand" "0,fG")))]
3029 "TARGET_FP"
3030 "@
3031 fcmov%C3 %R4,%R1,%0
3032 fcmov%D3 %R4,%R5,%0"
3033 [(set_attr "type" "fcmov")])
3034
3035 (define_insn ""
3036 [(set (match_operand:DF 0 "register_operand" "=f,f")
3037 (if_then_else:DF
3038 (match_operator 3 "signed_comparison_operator"
3039 [(float_extend:DF
3040 (match_operand:SF 4 "reg_or_fp0_operand" "fG,fG"))
3041 (match_operand:DF 2 "fp0_operand" "G,G")])
3042 (match_operand:DF 1 "reg_or_fp0_operand" "fG,0")
3043 (match_operand:DF 5 "reg_or_fp0_operand" "0,fG")))]
3044 "TARGET_FP"
3045 "@
3046 fcmov%C3 %R4,%R1,%0
3047 fcmov%D3 %R4,%R5,%0"
3048 [(set_attr "type" "fcmov")])
3049
3050 (define_insn ""
3051 [(set (match_operand:SF 0 "register_operand" "=f,f")
3052 (if_then_else:SF
3053 (match_operator 3 "signed_comparison_operator"
3054 [(float_extend:DF
3055 (match_operand:SF 4 "reg_or_fp0_operand" "fG,fG"))
3056 (match_operand:DF 2 "fp0_operand" "G,G")])
3057 (match_operand:SF 1 "reg_or_fp0_operand" "fG,0")
3058 (match_operand:SF 5 "reg_or_fp0_operand" "0,fG")))]
3059 "TARGET_FP"
3060 "@
3061 fcmov%C3 %R4,%R1,%0
3062 fcmov%D3 %R4,%R5,%0"
3063 [(set_attr "type" "fcmov")])
3064
3065 (define_insn ""
3066 [(set (match_operand:DF 0 "register_operand" "=f,f")
3067 (if_then_else:DF
3068 (match_operator 3 "signed_comparison_operator"
3069 [(float_extend:DF
3070 (match_operand:SF 4 "reg_or_fp0_operand" "fG,fG"))
3071 (match_operand:DF 2 "fp0_operand" "G,G")])
3072 (float_extend:DF (match_operand:SF 1 "reg_or_fp0_operand" "fG,0"))
3073 (match_operand:DF 5 "reg_or_fp0_operand" "0,fG")))]
3074 "TARGET_FP"
3075 "@
3076 fcmov%C3 %R4,%R1,%0
3077 fcmov%D3 %R4,%R5,%0"
3078 [(set_attr "type" "fcmov")])
3079
3080 (define_expand "maxdf3"
3081 [(set (match_dup 3)
3082 (le:DF (match_operand:DF 1 "reg_or_fp0_operand" "")
3083 (match_operand:DF 2 "reg_or_fp0_operand" "")))
3084 (set (match_operand:DF 0 "register_operand" "")
3085 (if_then_else:DF (eq (match_dup 3) (match_dup 4))
3086 (match_dup 1) (match_dup 2)))]
3087 "TARGET_FP"
3088 "
3089 { operands[3] = gen_reg_rtx (DFmode);
3090 operands[4] = CONST0_RTX (DFmode);
3091 }")
3092
3093 (define_expand "mindf3"
3094 [(set (match_dup 3)
3095 (lt:DF (match_operand:DF 1 "reg_or_fp0_operand" "")
3096 (match_operand:DF 2 "reg_or_fp0_operand" "")))
3097 (set (match_operand:DF 0 "register_operand" "")
3098 (if_then_else:DF (ne (match_dup 3) (match_dup 4))
3099 (match_dup 1) (match_dup 2)))]
3100 "TARGET_FP"
3101 "
3102 { operands[3] = gen_reg_rtx (DFmode);
3103 operands[4] = CONST0_RTX (DFmode);
3104 }")
3105
3106 (define_expand "maxsf3"
3107 [(set (match_dup 3)
3108 (le:DF (float_extend:DF (match_operand:SF 1 "reg_or_fp0_operand" ""))
3109 (float_extend:DF (match_operand:SF 2 "reg_or_fp0_operand" ""))))
3110 (set (match_operand:SF 0 "register_operand" "")
3111 (if_then_else:SF (eq (match_dup 3) (match_dup 4))
3112 (match_dup 1) (match_dup 2)))]
3113 "TARGET_FP"
3114 "
3115 { operands[3] = gen_reg_rtx (DFmode);
3116 operands[4] = CONST0_RTX (DFmode);
3117 }")
3118
3119 (define_expand "minsf3"
3120 [(set (match_dup 3)
3121 (lt:DF (float_extend:DF (match_operand:SF 1 "reg_or_fp0_operand" ""))
3122 (float_extend:DF (match_operand:SF 2 "reg_or_fp0_operand" ""))))
3123 (set (match_operand:SF 0 "register_operand" "")
3124 (if_then_else:SF (ne (match_dup 3) (match_dup 4))
3125 (match_dup 1) (match_dup 2)))]
3126 "TARGET_FP"
3127 "
3128 { operands[3] = gen_reg_rtx (DFmode);
3129 operands[4] = CONST0_RTX (DFmode);
3130 }")
3131
3132 (define_insn ""
3133 [(set (pc)
3134 (if_then_else
3135 (match_operator 1 "signed_comparison_operator"
3136 [(match_operand:DF 2 "reg_or_fp0_operand" "fG")
3137 (match_operand:DF 3 "fp0_operand" "G")])
3138 (label_ref (match_operand 0 "" ""))
3139 (pc)))]
3140 "TARGET_FP"
3141 "fb%C1 %R2,%0"
3142 [(set_attr "type" "fbr")])
3143
3144 (define_insn ""
3145 [(set (pc)
3146 (if_then_else
3147 (match_operator 1 "signed_comparison_operator"
3148 [(float_extend:DF
3149 (match_operand:SF 2 "reg_or_fp0_operand" "fG"))
3150 (match_operand:DF 3 "fp0_operand" "G")])
3151 (label_ref (match_operand 0 "" ""))
3152 (pc)))]
3153 "TARGET_FP"
3154 "fb%C1 %R2,%0"
3155 [(set_attr "type" "fbr")])
3156 \f
3157 ;; These are the main define_expand's used to make conditional branches
3158 ;; and compares.
3159
3160 (define_expand "cmpdf"
3161 [(set (cc0) (compare (match_operand:DF 0 "reg_or_fp0_operand" "")
3162 (match_operand:DF 1 "reg_or_fp0_operand" "")))]
3163 "TARGET_FP"
3164 "
3165 {
3166 alpha_compare.op0 = operands[0];
3167 alpha_compare.op1 = operands[1];
3168 alpha_compare.fp_p = 1;
3169 DONE;
3170 }")
3171
3172 (define_expand "cmptf"
3173 [(set (cc0) (compare (match_operand:TF 0 "general_operand" "")
3174 (match_operand:TF 1 "general_operand" "")))]
3175 "TARGET_HAS_XFLOATING_LIBS"
3176 "
3177 {
3178 alpha_compare.op0 = operands[0];
3179 alpha_compare.op1 = operands[1];
3180 alpha_compare.fp_p = 1;
3181 DONE;
3182 }")
3183
3184 (define_expand "cmpdi"
3185 [(set (cc0) (compare (match_operand:DI 0 "reg_or_0_operand" "")
3186 (match_operand:DI 1 "reg_or_8bit_operand" "")))]
3187 ""
3188 "
3189 {
3190 alpha_compare.op0 = operands[0];
3191 alpha_compare.op1 = operands[1];
3192 alpha_compare.fp_p = 0;
3193 DONE;
3194 }")
3195
3196 (define_expand "beq"
3197 [(set (pc)
3198 (if_then_else (match_dup 1)
3199 (label_ref (match_operand 0 "" ""))
3200 (pc)))]
3201 ""
3202 "{ operands[1] = alpha_emit_conditional_branch (EQ); }")
3203
3204 (define_expand "bne"
3205 [(set (pc)
3206 (if_then_else (match_dup 1)
3207 (label_ref (match_operand 0 "" ""))
3208 (pc)))]
3209 ""
3210 "{ operands[1] = alpha_emit_conditional_branch (NE); }")
3211
3212 (define_expand "blt"
3213 [(set (pc)
3214 (if_then_else (match_dup 1)
3215 (label_ref (match_operand 0 "" ""))
3216 (pc)))]
3217 ""
3218 "{ operands[1] = alpha_emit_conditional_branch (LT); }")
3219
3220 (define_expand "ble"
3221 [(set (pc)
3222 (if_then_else (match_dup 1)
3223 (label_ref (match_operand 0 "" ""))
3224 (pc)))]
3225 ""
3226 "{ operands[1] = alpha_emit_conditional_branch (LE); }")
3227
3228 (define_expand "bgt"
3229 [(set (pc)
3230 (if_then_else (match_dup 1)
3231 (label_ref (match_operand 0 "" ""))
3232 (pc)))]
3233 ""
3234 "{ operands[1] = alpha_emit_conditional_branch (GT); }")
3235
3236 (define_expand "bge"
3237 [(set (pc)
3238 (if_then_else (match_dup 1)
3239 (label_ref (match_operand 0 "" ""))
3240 (pc)))]
3241 ""
3242 "{ operands[1] = alpha_emit_conditional_branch (GE); }")
3243
3244 (define_expand "bltu"
3245 [(set (pc)
3246 (if_then_else (match_dup 1)
3247 (label_ref (match_operand 0 "" ""))
3248 (pc)))]
3249 ""
3250 "{ operands[1] = alpha_emit_conditional_branch (LTU); }")
3251
3252 (define_expand "bleu"
3253 [(set (pc)
3254 (if_then_else (match_dup 1)
3255 (label_ref (match_operand 0 "" ""))
3256 (pc)))]
3257 ""
3258 "{ operands[1] = alpha_emit_conditional_branch (LEU); }")
3259
3260 (define_expand "bgtu"
3261 [(set (pc)
3262 (if_then_else (match_dup 1)
3263 (label_ref (match_operand 0 "" ""))
3264 (pc)))]
3265 ""
3266 "{ operands[1] = alpha_emit_conditional_branch (GTU); }")
3267
3268 (define_expand "bgeu"
3269 [(set (pc)
3270 (if_then_else (match_dup 1)
3271 (label_ref (match_operand 0 "" ""))
3272 (pc)))]
3273 ""
3274 "{ operands[1] = alpha_emit_conditional_branch (GEU); }")
3275
3276 (define_expand "bunordered"
3277 [(set (pc)
3278 (if_then_else (match_dup 1)
3279 (label_ref (match_operand 0 "" ""))
3280 (pc)))]
3281 ""
3282 "{ operands[1] = alpha_emit_conditional_branch (UNORDERED); }")
3283
3284 (define_expand "bordered"
3285 [(set (pc)
3286 (if_then_else (match_dup 1)
3287 (label_ref (match_operand 0 "" ""))
3288 (pc)))]
3289 ""
3290 "{ operands[1] = alpha_emit_conditional_branch (ORDERED); }")
3291
3292 (define_expand "seq"
3293 [(set (match_operand:DI 0 "register_operand" "")
3294 (match_dup 1))]
3295 ""
3296 "
3297 {
3298 if (alpha_compare.fp_p)
3299 FAIL;
3300
3301 operands[1] = gen_rtx_EQ (DImode, alpha_compare.op0, alpha_compare.op1);
3302 alpha_compare.op0 = alpha_compare.op1 = NULL_RTX;
3303 }")
3304
3305 (define_expand "sne"
3306 [(set (match_operand:DI 0 "register_operand" "")
3307 (match_dup 1))
3308 (set (match_dup 0) (xor:DI (match_dup 0) (const_int 1)))]
3309 ""
3310 "
3311 {
3312 if (alpha_compare.fp_p)
3313 FAIL;
3314
3315 if (alpha_compare.op1 == const0_rtx)
3316 {
3317 emit_insn (gen_sgtu (operands[0]));
3318 DONE;
3319 }
3320
3321 operands[1] = gen_rtx_EQ (DImode, alpha_compare.op0, alpha_compare.op1);
3322 alpha_compare.op0 = alpha_compare.op1 = NULL_RTX;
3323 }")
3324
3325 (define_expand "slt"
3326 [(set (match_operand:DI 0 "register_operand" "")
3327 (match_dup 1))]
3328 ""
3329 "
3330 {
3331 if (alpha_compare.fp_p)
3332 FAIL;
3333
3334 operands[1] = gen_rtx_LT (DImode, alpha_compare.op0, alpha_compare.op1);
3335 alpha_compare.op0 = alpha_compare.op1 = NULL_RTX;
3336 }")
3337
3338 (define_expand "sle"
3339 [(set (match_operand:DI 0 "register_operand" "")
3340 (match_dup 1))]
3341 ""
3342 "
3343 {
3344 if (alpha_compare.fp_p)
3345 FAIL;
3346
3347 operands[1] = gen_rtx_LE (DImode, alpha_compare.op0, alpha_compare.op1);
3348 alpha_compare.op0 = alpha_compare.op1 = NULL_RTX;
3349 }")
3350
3351 (define_expand "sgt"
3352 [(set (match_operand:DI 0 "register_operand" "")
3353 (match_dup 1))]
3354 ""
3355 "
3356 {
3357 if (alpha_compare.fp_p)
3358 FAIL;
3359
3360 operands[1] = gen_rtx_LT (DImode, force_reg (DImode, alpha_compare.op1),
3361 alpha_compare.op0);
3362 alpha_compare.op0 = alpha_compare.op1 = NULL_RTX;
3363 }")
3364
3365 (define_expand "sge"
3366 [(set (match_operand:DI 0 "register_operand" "")
3367 (match_dup 1))]
3368 ""
3369 "
3370 {
3371 if (alpha_compare.fp_p)
3372 FAIL;
3373
3374 operands[1] = gen_rtx_LE (DImode, force_reg (DImode, alpha_compare.op1),
3375 alpha_compare.op0);
3376 alpha_compare.op0 = alpha_compare.op1 = NULL_RTX;
3377 }")
3378
3379 (define_expand "sltu"
3380 [(set (match_operand:DI 0 "register_operand" "")
3381 (match_dup 1))]
3382 ""
3383 "
3384 {
3385 if (alpha_compare.fp_p)
3386 FAIL;
3387
3388 operands[1] = gen_rtx_LTU (DImode, alpha_compare.op0, alpha_compare.op1);
3389 alpha_compare.op0 = alpha_compare.op1 = NULL_RTX;
3390 }")
3391
3392 (define_expand "sleu"
3393 [(set (match_operand:DI 0 "register_operand" "")
3394 (match_dup 1))]
3395 ""
3396 "
3397 {
3398 if (alpha_compare.fp_p)
3399 FAIL;
3400
3401 operands[1] = gen_rtx_LEU (DImode, alpha_compare.op0, alpha_compare.op1);
3402 alpha_compare.op0 = alpha_compare.op1 = NULL_RTX;
3403 }")
3404
3405 (define_expand "sgtu"
3406 [(set (match_operand:DI 0 "register_operand" "")
3407 (match_dup 1))]
3408 ""
3409 "
3410 {
3411 if (alpha_compare.fp_p)
3412 FAIL;
3413
3414 operands[1] = gen_rtx_LTU (DImode, force_reg (DImode, alpha_compare.op1),
3415 alpha_compare.op0);
3416 alpha_compare.op0 = alpha_compare.op1 = NULL_RTX;
3417 }")
3418
3419 (define_expand "sgeu"
3420 [(set (match_operand:DI 0 "register_operand" "")
3421 (match_dup 1))]
3422 ""
3423 "
3424 {
3425 if (alpha_compare.fp_p)
3426 FAIL;
3427
3428 operands[1] = gen_rtx_LEU (DImode, force_reg (DImode, alpha_compare.op1),
3429 alpha_compare.op0);
3430 alpha_compare.op0 = alpha_compare.op1 = NULL_RTX;
3431 }")
3432 \f
3433 ;; These are the main define_expand's used to make conditional moves.
3434
3435 (define_expand "movsicc"
3436 [(set (match_operand:SI 0 "register_operand" "")
3437 (if_then_else:SI (match_operand 1 "comparison_operator" "")
3438 (match_operand:SI 2 "reg_or_8bit_operand" "")
3439 (match_operand:SI 3 "reg_or_8bit_operand" "")))]
3440 ""
3441 "
3442 {
3443 if ((operands[1] = alpha_emit_conditional_move (operands[1], SImode)) == 0)
3444 FAIL;
3445 }")
3446
3447 (define_expand "movdicc"
3448 [(set (match_operand:DI 0 "register_operand" "")
3449 (if_then_else:DI (match_operand 1 "comparison_operator" "")
3450 (match_operand:DI 2 "reg_or_8bit_operand" "")
3451 (match_operand:DI 3 "reg_or_8bit_operand" "")))]
3452 ""
3453 "
3454 {
3455 if ((operands[1] = alpha_emit_conditional_move (operands[1], DImode)) == 0)
3456 FAIL;
3457 }")
3458
3459 (define_expand "movsfcc"
3460 [(set (match_operand:SF 0 "register_operand" "")
3461 (if_then_else:SF (match_operand 1 "comparison_operator" "")
3462 (match_operand:SF 2 "reg_or_8bit_operand" "")
3463 (match_operand:SF 3 "reg_or_8bit_operand" "")))]
3464 ""
3465 "
3466 {
3467 if ((operands[1] = alpha_emit_conditional_move (operands[1], SFmode)) == 0)
3468 FAIL;
3469 }")
3470
3471 (define_expand "movdfcc"
3472 [(set (match_operand:DF 0 "register_operand" "")
3473 (if_then_else:DF (match_operand 1 "comparison_operator" "")
3474 (match_operand:DF 2 "reg_or_8bit_operand" "")
3475 (match_operand:DF 3 "reg_or_8bit_operand" "")))]
3476 ""
3477 "
3478 {
3479 if ((operands[1] = alpha_emit_conditional_move (operands[1], DFmode)) == 0)
3480 FAIL;
3481 }")
3482 \f
3483 ;; These define_split definitions are used in cases when comparisons have
3484 ;; not be stated in the correct way and we need to reverse the second
3485 ;; comparison. For example, x >= 7 has to be done as x < 6 with the
3486 ;; comparison that tests the result being reversed. We have one define_split
3487 ;; for each use of a comparison. They do not match valid insns and need
3488 ;; not generate valid insns.
3489 ;;
3490 ;; We can also handle equality comparisons (and inequality comparisons in
3491 ;; cases where the resulting add cannot overflow) by doing an add followed by
3492 ;; a comparison with zero. This is faster since the addition takes one
3493 ;; less cycle than a compare when feeding into a conditional move.
3494 ;; For this case, we also have an SImode pattern since we can merge the add
3495 ;; and sign extend and the order doesn't matter.
3496 ;;
3497 ;; We do not do this for floating-point, since it isn't clear how the "wrong"
3498 ;; operation could have been generated.
3499
3500 (define_split
3501 [(set (match_operand:DI 0 "register_operand" "")
3502 (if_then_else:DI
3503 (match_operator 1 "comparison_operator"
3504 [(match_operand:DI 2 "reg_or_0_operand" "")
3505 (match_operand:DI 3 "reg_or_cint_operand" "")])
3506 (match_operand:DI 4 "reg_or_cint_operand" "")
3507 (match_operand:DI 5 "reg_or_cint_operand" "")))
3508 (clobber (match_operand:DI 6 "register_operand" ""))]
3509 "operands[3] != const0_rtx"
3510 [(set (match_dup 6) (match_dup 7))
3511 (set (match_dup 0)
3512 (if_then_else:DI (match_dup 8) (match_dup 4) (match_dup 5)))]
3513 "
3514 { enum rtx_code code = GET_CODE (operands[1]);
3515 int unsignedp = (code == GEU || code == LEU || code == GTU || code == LTU);
3516
3517 /* If we are comparing for equality with a constant and that constant
3518 appears in the arm when the register equals the constant, use the
3519 register since that is more likely to match (and to produce better code
3520 if both would). */
3521
3522 if (code == EQ && GET_CODE (operands[3]) == CONST_INT
3523 && rtx_equal_p (operands[4], operands[3]))
3524 operands[4] = operands[2];
3525
3526 else if (code == NE && GET_CODE (operands[3]) == CONST_INT
3527 && rtx_equal_p (operands[5], operands[3]))
3528 operands[5] = operands[2];
3529
3530 if (code == NE || code == EQ
3531 || (extended_count (operands[2], DImode, unsignedp) >= 1
3532 && extended_count (operands[3], DImode, unsignedp) >= 1))
3533 {
3534 if (GET_CODE (operands[3]) == CONST_INT)
3535 operands[7] = gen_rtx_PLUS (DImode, operands[2],
3536 GEN_INT (- INTVAL (operands[3])));
3537 else
3538 operands[7] = gen_rtx_MINUS (DImode, operands[2], operands[3]);
3539
3540 operands[8] = gen_rtx_fmt_ee (code, VOIDmode, operands[6], const0_rtx);
3541 }
3542
3543 else if (code == EQ || code == LE || code == LT
3544 || code == LEU || code == LTU)
3545 {
3546 operands[7] = gen_rtx_fmt_ee (code, DImode, operands[2], operands[3]);
3547 operands[8] = gen_rtx_NE (VOIDmode, operands[6], const0_rtx);
3548 }
3549 else
3550 {
3551 operands[7] = gen_rtx_fmt_ee (reverse_condition (code), DImode,
3552 operands[2], operands[3]);
3553 operands[8] = gen_rtx_EQ (VOIDmode, operands[6], const0_rtx);
3554 }
3555 }")
3556
3557 (define_split
3558 [(set (match_operand:DI 0 "register_operand" "")
3559 (if_then_else:DI
3560 (match_operator 1 "comparison_operator"
3561 [(match_operand:SI 2 "reg_or_0_operand" "")
3562 (match_operand:SI 3 "reg_or_cint_operand" "")])
3563 (match_operand:DI 4 "reg_or_8bit_operand" "")
3564 (match_operand:DI 5 "reg_or_8bit_operand" "")))
3565 (clobber (match_operand:DI 6 "register_operand" ""))]
3566 "operands[3] != const0_rtx
3567 && (GET_CODE (operands[1]) == EQ || GET_CODE (operands[1]) == NE)"
3568 [(set (match_dup 6) (match_dup 7))
3569 (set (match_dup 0)
3570 (if_then_else:DI (match_dup 8) (match_dup 4) (match_dup 5)))]
3571 "
3572 { enum rtx_code code = GET_CODE (operands[1]);
3573 int unsignedp = (code == GEU || code == LEU || code == GTU || code == LTU);
3574 rtx tem;
3575
3576 if ((code != NE && code != EQ
3577 && ! (extended_count (operands[2], DImode, unsignedp) >= 1
3578 && extended_count (operands[3], DImode, unsignedp) >= 1)))
3579 FAIL;
3580
3581 if (GET_CODE (operands[3]) == CONST_INT)
3582 tem = gen_rtx_PLUS (SImode, operands[2],
3583 GEN_INT (- INTVAL (operands[3])));
3584 else
3585 tem = gen_rtx_MINUS (SImode, operands[2], operands[3]);
3586
3587 operands[7] = gen_rtx_SIGN_EXTEND (DImode, tem);
3588 operands[8] = gen_rtx_fmt_ee (GET_CODE (operands[1]), VOIDmode,
3589 operands[6], const0_rtx);
3590 }")
3591
3592 (define_split
3593 [(set (pc)
3594 (if_then_else
3595 (match_operator 1 "comparison_operator"
3596 [(match_operand:DI 2 "reg_or_0_operand" "")
3597 (match_operand:DI 3 "reg_or_cint_operand" "")])
3598 (label_ref (match_operand 0 "" ""))
3599 (pc)))
3600 (clobber (match_operand:DI 4 "register_operand" ""))]
3601 "operands[3] != const0_rtx"
3602 [(set (match_dup 4) (match_dup 5))
3603 (set (pc) (if_then_else (match_dup 6) (label_ref (match_dup 0)) (pc)))]
3604 "
3605 { enum rtx_code code = GET_CODE (operands[1]);
3606 int unsignedp = (code == GEU || code == LEU || code == GTU || code == LTU);
3607
3608 if (code == NE || code == EQ
3609 || (extended_count (operands[2], DImode, unsignedp) >= 1
3610 && extended_count (operands[3], DImode, unsignedp) >= 1))
3611 {
3612 if (GET_CODE (operands[3]) == CONST_INT)
3613 operands[5] = gen_rtx_PLUS (DImode, operands[2],
3614 GEN_INT (- INTVAL (operands[3])));
3615 else
3616 operands[5] = gen_rtx_MINUS (DImode, operands[2], operands[3]);
3617
3618 operands[6] = gen_rtx_fmt_ee (code, VOIDmode, operands[4], const0_rtx);
3619 }
3620
3621 else if (code == EQ || code == LE || code == LT
3622 || code == LEU || code == LTU)
3623 {
3624 operands[5] = gen_rtx_fmt_ee (code, DImode, operands[2], operands[3]);
3625 operands[6] = gen_rtx_NE (VOIDmode, operands[4], const0_rtx);
3626 }
3627 else
3628 {
3629 operands[5] = gen_rtx_fmt_ee (reverse_condition (code), DImode,
3630 operands[2], operands[3]);
3631 operands[6] = gen_rtx_EQ (VOIDmode, operands[4], const0_rtx);
3632 }
3633 }")
3634
3635 (define_split
3636 [(set (pc)
3637 (if_then_else
3638 (match_operator 1 "comparison_operator"
3639 [(match_operand:SI 2 "reg_or_0_operand" "")
3640 (match_operand:SI 3 "const_int_operand" "")])
3641 (label_ref (match_operand 0 "" ""))
3642 (pc)))
3643 (clobber (match_operand:DI 4 "register_operand" ""))]
3644 "operands[3] != const0_rtx
3645 && (GET_CODE (operands[1]) == EQ || GET_CODE (operands[1]) == NE)"
3646 [(set (match_dup 4) (match_dup 5))
3647 (set (pc) (if_then_else (match_dup 6) (label_ref (match_dup 0)) (pc)))]
3648 "
3649 { rtx tem;
3650
3651 if (GET_CODE (operands[3]) == CONST_INT)
3652 tem = gen_rtx_PLUS (SImode, operands[2],
3653 GEN_INT (- INTVAL (operands[3])));
3654 else
3655 tem = gen_rtx_MINUS (SImode, operands[2], operands[3]);
3656
3657 operands[5] = gen_rtx_SIGN_EXTEND (DImode, tem);
3658 operands[6] = gen_rtx_fmt_ee (GET_CODE (operands[1]), VOIDmode,
3659 operands[4], const0_rtx);
3660 }")
3661
3662 ;; We can convert such things as "a > 0xffff" to "t = a & ~ 0xffff; t != 0".
3663 ;; This eliminates one, and sometimes two, insns when the AND can be done
3664 ;; with a ZAP.
3665 (define_split
3666 [(set (match_operand:DI 0 "register_operand" "")
3667 (match_operator:DI 1 "comparison_operator"
3668 [(match_operand:DI 2 "register_operand" "")
3669 (match_operand:DI 3 "const_int_operand" "")]))
3670 (clobber (match_operand:DI 4 "register_operand" ""))]
3671 "exact_log2 (INTVAL (operands[3]) + 1) >= 0
3672 && (GET_CODE (operands[1]) == GTU
3673 || GET_CODE (operands[1]) == LEU
3674 || ((GET_CODE (operands[1]) == GT || GET_CODE (operands[1]) == LE)
3675 && extended_count (operands[2], DImode, 1) > 0))"
3676 [(set (match_dup 4) (and:DI (match_dup 2) (match_dup 5)))
3677 (set (match_dup 0) (match_dup 6))]
3678 "
3679 {
3680 operands[5] = GEN_INT (~ INTVAL (operands[3]));
3681 operands[6] = gen_rtx_fmt_ee (((GET_CODE (operands[1]) == GTU
3682 || GET_CODE (operands[1]) == GT)
3683 ? NE : EQ),
3684 DImode, operands[4], const0_rtx);
3685 }")
3686 \f
3687 ;; Here are the CALL and unconditional branch insns. Calls on NT and OSF
3688 ;; work differently, so we have different patterns for each.
3689
3690 (define_expand "call"
3691 [(use (match_operand:DI 0 "" ""))
3692 (use (match_operand 1 "" ""))
3693 (use (match_operand 2 "" ""))
3694 (use (match_operand 3 "" ""))]
3695 ""
3696 "
3697 { if (TARGET_WINDOWS_NT)
3698 emit_call_insn (gen_call_nt (operands[0], operands[1]));
3699 else if (TARGET_OPEN_VMS)
3700 emit_call_insn (gen_call_vms (operands[0], operands[2]));
3701 else
3702 emit_call_insn (gen_call_osf (operands[0], operands[1]));
3703
3704 DONE;
3705 }")
3706
3707 (define_expand "sibcall"
3708 [(call (mem:DI (match_operand 0 "" ""))
3709 (match_operand 1 "" ""))]
3710 "!TARGET_OPEN_VMS && !TARGET_WINDOWS_NT"
3711 "
3712 {
3713 if (GET_CODE (operands[0]) != MEM)
3714 abort ();
3715 operands[0] = XEXP (operands[0], 0);
3716 }")
3717
3718 (define_expand "call_osf"
3719 [(parallel [(call (mem:DI (match_operand 0 "" ""))
3720 (match_operand 1 "" ""))
3721 (clobber (reg:DI 27))
3722 (clobber (reg:DI 26))])]
3723 ""
3724 "
3725 { if (GET_CODE (operands[0]) != MEM)
3726 abort ();
3727
3728 operands[0] = XEXP (operands[0], 0);
3729
3730 if (GET_CODE (operands[0]) != SYMBOL_REF
3731 && ! (GET_CODE (operands[0]) == REG && REGNO (operands[0]) == 27))
3732 {
3733 rtx tem = gen_rtx_REG (DImode, 27);
3734 emit_move_insn (tem, operands[0]);
3735 operands[0] = tem;
3736 }
3737 }")
3738
3739 (define_expand "call_nt"
3740 [(parallel [(call (mem:DI (match_operand 0 "" ""))
3741 (match_operand 1 "" ""))
3742 (clobber (reg:DI 26))])]
3743 ""
3744 "
3745 { if (GET_CODE (operands[0]) != MEM)
3746 abort ();
3747
3748 operands[0] = XEXP (operands[0], 0);
3749 if (GET_CODE (operands[0]) != SYMBOL_REF && GET_CODE (operands[0]) != REG)
3750 operands[0] = force_reg (DImode, operands[0]);
3751 }")
3752
3753 ;;
3754 ;; call openvms/alpha
3755 ;; op 0: symbol ref for called function
3756 ;; op 1: next_arg_reg (argument information value for R25)
3757 ;;
3758 (define_expand "call_vms"
3759 [(parallel [(call (mem:DI (match_operand 0 "" ""))
3760 (match_operand 1 "" ""))
3761 (use (match_dup 2))
3762 (use (reg:DI 25))
3763 (use (reg:DI 26))
3764 (clobber (reg:DI 27))])]
3765 ""
3766 "
3767 { if (GET_CODE (operands[0]) != MEM)
3768 abort ();
3769
3770 operands[0] = XEXP (operands[0], 0);
3771
3772 /* Always load AI with argument information, then handle symbolic and
3773 indirect call differently. Load RA and set operands[2] to PV in
3774 both cases. */
3775
3776 emit_move_insn (gen_rtx_REG (DImode, 25), operands[1]);
3777 if (GET_CODE (operands[0]) == SYMBOL_REF)
3778 {
3779 extern char *savealloc ();
3780 const char *symbol = XSTR (operands[0], 0);
3781 char *linksym;
3782 rtx linkage;
3783
3784 if (*symbol == '*')
3785 symbol++;
3786 linksym = savealloc (strlen (symbol) + 6);
3787
3788 alpha_need_linkage (symbol, 0);
3789
3790 linksym[0] = '$';
3791 strcpy (linksym+1, symbol);
3792 strcat (linksym, \"..lk\");
3793 linkage = gen_rtx_SYMBOL_REF (Pmode, linksym);
3794
3795 emit_move_insn (gen_rtx_REG (Pmode, 26), gen_rtx_MEM (Pmode, linkage));
3796
3797 operands[2]
3798 = validize_mem (gen_rtx_MEM (Pmode, plus_constant (linkage, 8)));
3799 }
3800 else
3801 {
3802 emit_move_insn (gen_rtx_REG (Pmode, 26),
3803 gen_rtx_MEM (Pmode, plus_constant (operands[0], 8)));
3804
3805 operands[2] = operands[0];
3806 }
3807
3808 }")
3809
3810 (define_expand "call_value"
3811 [(use (match_operand 0 "" ""))
3812 (use (match_operand:DI 1 "" ""))
3813 (use (match_operand 2 "" ""))
3814 (use (match_operand 3 "" ""))
3815 (use (match_operand 4 "" ""))]
3816 ""
3817 "
3818 { if (TARGET_WINDOWS_NT)
3819 emit_call_insn (gen_call_value_nt (operands[0], operands[1], operands[2]));
3820 else if (TARGET_OPEN_VMS)
3821 emit_call_insn (gen_call_value_vms (operands[0], operands[1],
3822 operands[3]));
3823 else
3824 emit_call_insn (gen_call_value_osf (operands[0], operands[1],
3825 operands[2]));
3826 DONE;
3827 }")
3828
3829 (define_expand "sibcall_value"
3830 [(set (match_operand 0 "" "")
3831 (call (mem:DI (match_operand 1 "" ""))
3832 (match_operand 2 "" "")))]
3833 "!TARGET_OPEN_VMS && !TARGET_WINDOWS_NT"
3834 "
3835 {
3836 if (GET_CODE (operands[1]) != MEM)
3837 abort ();
3838 operands[1] = XEXP (operands[1], 0);
3839 }")
3840
3841 (define_expand "call_value_osf"
3842 [(parallel [(set (match_operand 0 "" "")
3843 (call (mem:DI (match_operand 1 "" ""))
3844 (match_operand 2 "" "")))
3845 (clobber (reg:DI 27))
3846 (clobber (reg:DI 26))])]
3847 ""
3848 "
3849 { if (GET_CODE (operands[1]) != MEM)
3850 abort ();
3851
3852 operands[1] = XEXP (operands[1], 0);
3853
3854 if (GET_CODE (operands[1]) != SYMBOL_REF
3855 && ! (GET_CODE (operands[1]) == REG && REGNO (operands[1]) == 27))
3856 {
3857 rtx tem = gen_rtx_REG (DImode, 27);
3858 emit_move_insn (tem, operands[1]);
3859 operands[1] = tem;
3860 }
3861 }")
3862
3863 (define_expand "call_value_nt"
3864 [(parallel [(set (match_operand 0 "" "")
3865 (call (mem:DI (match_operand 1 "" ""))
3866 (match_operand 2 "" "")))
3867 (clobber (reg:DI 26))])]
3868 ""
3869 "
3870 { if (GET_CODE (operands[1]) != MEM)
3871 abort ();
3872
3873 operands[1] = XEXP (operands[1], 0);
3874 if (GET_CODE (operands[1]) != SYMBOL_REF && GET_CODE (operands[1]) != REG)
3875 operands[1] = force_reg (DImode, operands[1]);
3876 }")
3877
3878 (define_expand "call_value_vms"
3879 [(parallel [(set (match_operand 0 "" "")
3880 (call (mem:DI (match_operand:DI 1 "" ""))
3881 (match_operand 2 "" "")))
3882 (use (match_dup 3))
3883 (use (reg:DI 25))
3884 (use (reg:DI 26))
3885 (clobber (reg:DI 27))])]
3886 ""
3887 "
3888 { if (GET_CODE (operands[1]) != MEM)
3889 abort ();
3890
3891 operands[1] = XEXP (operands[1], 0);
3892
3893 /* Always load AI with argument information, then handle symbolic and
3894 indirect call differently. Load RA and set operands[3] to PV in
3895 both cases. */
3896
3897 emit_move_insn (gen_rtx_REG (DImode, 25), operands[2]);
3898 if (GET_CODE (operands[1]) == SYMBOL_REF)
3899 {
3900 extern char *savealloc ();
3901 const char *symbol = XSTR (operands[1], 0);
3902 char *linksym;
3903 rtx linkage;
3904
3905 if (*symbol == '*')
3906 symbol++;
3907 linksym = savealloc (strlen (symbol) + 6);
3908
3909 alpha_need_linkage (symbol, 0);
3910 linksym[0] = '$';
3911 strcpy (linksym+1, symbol);
3912 strcat (linksym, \"..lk\");
3913 linkage = gen_rtx_SYMBOL_REF (Pmode, linksym);
3914
3915 emit_move_insn (gen_rtx_REG (Pmode, 26), gen_rtx_MEM (Pmode, linkage));
3916
3917 operands[3]
3918 = validize_mem (gen_rtx_MEM (Pmode, plus_constant (linkage, 8)));
3919 }
3920 else
3921 {
3922 emit_move_insn (gen_rtx_REG (Pmode, 26),
3923 gen_rtx_MEM (Pmode, plus_constant (operands[1], 8)));
3924
3925 operands[3] = operands[1];
3926 }
3927 }")
3928
3929 (define_insn "*call_osf_1"
3930 [(call (mem:DI (match_operand:DI 0 "call_operand" "r,R,i"))
3931 (match_operand 1 "" ""))
3932 (clobber (reg:DI 27))
3933 (clobber (reg:DI 26))]
3934 "! TARGET_WINDOWS_NT && ! TARGET_OPEN_VMS"
3935 "@
3936 jsr $26,($27),0\;ldgp $29,0($26)
3937 bsr $26,$%0..ng
3938 jsr $26,%0\;ldgp $29,0($26)"
3939 [(set_attr "type" "jsr")
3940 (set_attr "length" "12,*,16")])
3941
3942 (define_insn "*sibcall_osf_1"
3943 [(call (mem:DI (match_operand:DI 0 "call_operand" "R,i"))
3944 (match_operand 1 "" ""))]
3945 "! TARGET_WINDOWS_NT && ! TARGET_OPEN_VMS"
3946 "@
3947 br $31,$%0..ng
3948 jmp $31,%0"
3949 [(set_attr "type" "jsr")
3950 (set_attr "length" "*,8")])
3951
3952 (define_insn "*call_nt_1"
3953 [(call (mem:DI (match_operand:DI 0 "call_operand" "r,R,i"))
3954 (match_operand 1 "" ""))
3955 (clobber (reg:DI 26))]
3956 "TARGET_WINDOWS_NT"
3957 "@
3958 jsr $26,(%0)
3959 bsr $26,%0
3960 jsr $26,%0"
3961 [(set_attr "type" "jsr")
3962 (set_attr "length" "*,*,12")])
3963
3964 (define_insn "*call_vms_1"
3965 [(call (mem:DI (match_operand:DI 0 "call_operand" "r,i"))
3966 (match_operand 1 "" ""))
3967 (use (match_operand:DI 2 "nonimmediate_operand" "r,m"))
3968 (use (reg:DI 25))
3969 (use (reg:DI 26))
3970 (clobber (reg:DI 27))]
3971 "TARGET_OPEN_VMS"
3972 "@
3973 mov %2,$27\;jsr $26,0\;ldq $27,0($29)
3974 ldq $27,%2\;jsr $26,%0\;ldq $27,0($29)"
3975 [(set_attr "type" "jsr")
3976 (set_attr "length" "12,16")])
3977
3978 ;; Call subroutine returning any type.
3979
3980 (define_expand "untyped_call"
3981 [(parallel [(call (match_operand 0 "" "")
3982 (const_int 0))
3983 (match_operand 1 "" "")
3984 (match_operand 2 "" "")])]
3985 ""
3986 "
3987 {
3988 int i;
3989
3990 emit_call_insn (gen_call (operands[0], const0_rtx, NULL, const0_rtx));
3991
3992 for (i = 0; i < XVECLEN (operands[2], 0); i++)
3993 {
3994 rtx set = XVECEXP (operands[2], 0, i);
3995 emit_move_insn (SET_DEST (set), SET_SRC (set));
3996 }
3997
3998 /* The optimizer does not know that the call sets the function value
3999 registers we stored in the result block. We avoid problems by
4000 claiming that all hard registers are used and clobbered at this
4001 point. */
4002 emit_insn (gen_blockage ());
4003
4004 DONE;
4005 }")
4006
4007 ;; UNSPEC_VOLATILE is considered to use and clobber all hard registers and
4008 ;; all of memory. This blocks insns from being moved across this point.
4009
4010 (define_insn "blockage"
4011 [(unspec_volatile [(const_int 0)] 1)]
4012 ""
4013 ""
4014 [(set_attr "length" "0")])
4015
4016 (define_insn "jump"
4017 [(set (pc)
4018 (label_ref (match_operand 0 "" "")))]
4019 ""
4020 "br $31,%l0"
4021 [(set_attr "type" "ibr")])
4022
4023 (define_expand "return"
4024 [(return)]
4025 "direct_return ()"
4026 "")
4027
4028 (define_insn "*return_internal"
4029 [(return)]
4030 "reload_completed"
4031 "ret $31,($26),1"
4032 [(set_attr "type" "ibr")])
4033
4034 (define_insn "indirect_jump"
4035 [(set (pc) (match_operand:DI 0 "register_operand" "r"))]
4036 ""
4037 "jmp $31,(%0),0"
4038 [(set_attr "type" "ibr")])
4039
4040 (define_expand "tablejump"
4041 [(use (match_operand:SI 0 "register_operand" ""))
4042 (use (match_operand:SI 1 "" ""))]
4043 ""
4044 "
4045 {
4046 if (TARGET_WINDOWS_NT)
4047 emit_jump_insn (gen_tablejump_nt (operands[0], operands[1]));
4048 else if (TARGET_OPEN_VMS)
4049 emit_jump_insn (gen_tablejump_vms (operands[0], operands[1]));
4050 else
4051 emit_jump_insn (gen_tablejump_osf (operands[0], operands[1]));
4052
4053 DONE;
4054 }")
4055
4056 (define_expand "tablejump_osf"
4057 [(set (match_dup 3)
4058 (sign_extend:DI (match_operand:SI 0 "register_operand" "")))
4059 (parallel [(set (pc)
4060 (plus:DI (match_dup 3)
4061 (label_ref (match_operand 1 "" ""))))
4062 (clobber (match_scratch:DI 2 "=r"))])]
4063 ""
4064 "
4065 { operands[3] = gen_reg_rtx (DImode); }")
4066
4067 (define_expand "tablejump_nt"
4068 [(set (match_dup 3)
4069 (sign_extend:DI (match_operand:SI 0 "register_operand" "")))
4070 (parallel [(set (pc)
4071 (match_dup 3))
4072 (use (label_ref (match_operand 1 "" "")))])]
4073 ""
4074 "
4075 { operands[3] = gen_reg_rtx (DImode); }")
4076
4077 ;;
4078 ;; tablejump, openVMS way
4079 ;; op 0: offset
4080 ;; op 1: label preceding jump-table
4081 ;;
4082 (define_expand "tablejump_vms"
4083 [(set (match_dup 2)
4084 (match_operand:DI 0 "register_operand" ""))
4085 (set (pc)
4086 (plus:DI (match_dup 2)
4087 (label_ref (match_operand 1 "" ""))))]
4088 ""
4089 "
4090 { operands[2] = gen_reg_rtx (DImode); }")
4091
4092 (define_insn ""
4093 [(set (pc)
4094 (plus (match_operand:DI 0 "register_operand" "r")
4095 (label_ref (match_operand 1 "" ""))))
4096 (clobber (match_scratch:DI 2 "=r"))]
4097 "! TARGET_WINDOWS_NT && ! TARGET_OPEN_VMS && next_active_insn (insn) != 0
4098 && GET_CODE (PATTERN (next_active_insn (insn))) == ADDR_DIFF_VEC
4099 && PREV_INSN (next_active_insn (insn)) == operands[1]"
4100 "*
4101 { rtx best_label = 0;
4102 rtx jump_table_insn = next_active_insn (operands[1]);
4103
4104 if (GET_CODE (jump_table_insn) == JUMP_INSN
4105 && GET_CODE (PATTERN (jump_table_insn)) == ADDR_DIFF_VEC)
4106 {
4107 rtx jump_table = PATTERN (jump_table_insn);
4108 int n_labels = XVECLEN (jump_table, 1);
4109 int best_count = -1;
4110 int i, j;
4111
4112 for (i = 0; i < n_labels; i++)
4113 {
4114 int count = 1;
4115
4116 for (j = i + 1; j < n_labels; j++)
4117 if (XEXP (XVECEXP (jump_table, 1, i), 0)
4118 == XEXP (XVECEXP (jump_table, 1, j), 0))
4119 count++;
4120
4121 if (count > best_count)
4122 best_count = count, best_label = XVECEXP (jump_table, 1, i);
4123 }
4124 }
4125
4126 if (best_label)
4127 {
4128 operands[3] = best_label;
4129 return \"addq %0,$29,%2\;jmp $31,(%2),%3\";
4130 }
4131 else
4132 return \"addq %0,$29,%2\;jmp $31,(%2),0\";
4133 }"
4134 [(set_attr "type" "ibr")
4135 (set_attr "length" "8")])
4136
4137 (define_insn ""
4138 [(set (pc)
4139 (match_operand:DI 0 "register_operand" "r"))
4140 (use (label_ref (match_operand 1 "" "")))]
4141 "TARGET_WINDOWS_NT && next_active_insn (insn) != 0
4142 && GET_CODE (PATTERN (next_active_insn (insn))) == ADDR_DIFF_VEC
4143 && PREV_INSN (next_active_insn (insn)) == operands[1]"
4144 "*
4145 { rtx best_label = 0;
4146 rtx jump_table_insn = next_active_insn (operands[1]);
4147
4148 if (GET_CODE (jump_table_insn) == JUMP_INSN
4149 && GET_CODE (PATTERN (jump_table_insn)) == ADDR_DIFF_VEC)
4150 {
4151 rtx jump_table = PATTERN (jump_table_insn);
4152 int n_labels = XVECLEN (jump_table, 1);
4153 int best_count = -1;
4154 int i, j;
4155
4156 for (i = 0; i < n_labels; i++)
4157 {
4158 int count = 1;
4159
4160 for (j = i + 1; j < n_labels; j++)
4161 if (XEXP (XVECEXP (jump_table, 1, i), 0)
4162 == XEXP (XVECEXP (jump_table, 1, j), 0))
4163 count++;
4164
4165 if (count > best_count)
4166 best_count = count, best_label = XVECEXP (jump_table, 1, i);
4167 }
4168 }
4169
4170 if (best_label)
4171 {
4172 operands[2] = best_label;
4173 return \"jmp $31,(%0),%2\";
4174 }
4175 else
4176 return \"jmp $31,(%0),0\";
4177 }"
4178 [(set_attr "type" "ibr")])
4179
4180 ;;
4181 ;; op 0 is table offset
4182 ;; op 1 is table label
4183 ;;
4184
4185 (define_insn ""
4186 [(set (pc)
4187 (plus (match_operand:DI 0 "register_operand" "r")
4188 (label_ref (match_operand 1 "" ""))))]
4189 "TARGET_OPEN_VMS"
4190 "jmp $31,(%0),0"
4191 [(set_attr "type" "ibr")])
4192
4193 ;; Cache flush. Used by INITIALIZE_TRAMPOLINE. 0x86 is PAL_imb, but we don't
4194 ;; want to have to include pal.h in our .s file.
4195 ;;
4196 ;; Technically the type for call_pal is jsr, but we use that for determining
4197 ;; if we need a GP. Use ibr instead since it has the same EV5 scheduling
4198 ;; characteristics.
4199 (define_insn "imb"
4200 [(unspec_volatile [(const_int 0)] 0)]
4201 ""
4202 "call_pal 0x86"
4203 [(set_attr "type" "ibr")])
4204 \f
4205 ;; Finally, we have the basic data motion insns. The byte and word insns
4206 ;; are done via define_expand. Start with the floating-point insns, since
4207 ;; they are simpler.
4208
4209 (define_insn ""
4210 [(set (match_operand:SF 0 "nonimmediate_operand" "=f,f,*r,*r,m,m")
4211 (match_operand:SF 1 "input_operand" "fG,m,*rG,m,fG,*r"))]
4212 "! TARGET_FIX
4213 && (register_operand (operands[0], SFmode)
4214 || reg_or_fp0_operand (operands[1], SFmode))"
4215 "@
4216 fmov %R1,%0
4217 ld%, %0,%1
4218 mov %r1,%0
4219 ldl %0,%1
4220 st%, %R1,%0
4221 stl %r1,%0"
4222 [(set_attr "type" "fcpys,fld,ilog,ild,fst,ist")])
4223
4224 (define_insn ""
4225 [(set (match_operand:SF 0 "nonimmediate_operand" "=f,f,*r,*r,m,m,f,*r")
4226 (match_operand:SF 1 "input_operand" "fG,m,*rG,m,fG,*r,*r,f"))]
4227 "TARGET_FIX
4228 && (register_operand (operands[0], SFmode)
4229 || reg_or_fp0_operand (operands[1], SFmode))"
4230 "@
4231 fmov %R1,%0
4232 ld%, %0,%1
4233 mov %r1,%0
4234 ldl %0,%1
4235 st%, %R1,%0
4236 stl %r1,%0
4237 itofs %1,%0
4238 ftois %1,%0"
4239 [(set_attr "type" "fcpys,fld,ilog,ild,fst,ist,itof,ftoi")])
4240
4241 (define_insn ""
4242 [(set (match_operand:DF 0 "nonimmediate_operand" "=f,f,*r,*r,m,m")
4243 (match_operand:DF 1 "input_operand" "fG,m,*rG,m,fG,*r"))]
4244 "! TARGET_FIX
4245 && (register_operand (operands[0], DFmode)
4246 || reg_or_fp0_operand (operands[1], DFmode))"
4247 "@
4248 fmov %R1,%0
4249 ld%- %0,%1
4250 mov %r1,%0
4251 ldq %0,%1
4252 st%- %R1,%0
4253 stq %r1,%0"
4254 [(set_attr "type" "fcpys,fld,ilog,ild,fst,ist")])
4255
4256 (define_insn ""
4257 [(set (match_operand:DF 0 "nonimmediate_operand" "=f,f,*r,*r,m,m,f,*r")
4258 (match_operand:DF 1 "input_operand" "fG,m,*rG,m,fG,*r,*r,f"))]
4259 "TARGET_FIX
4260 && (register_operand (operands[0], DFmode)
4261 || reg_or_fp0_operand (operands[1], DFmode))"
4262 "@
4263 fmov %R1,%0
4264 ld%- %0,%1
4265 mov %r1,%0
4266 ldq %0,%1
4267 st%- %R1,%0
4268 stq %r1,%0
4269 itoft %1,%0
4270 ftoit %1,%0"
4271 [(set_attr "type" "fcpys,fld,ilog,ild,fst,ist,itof,ftoi")])
4272
4273 ;; Subregs suck for register allocation. Pretend we can move TFmode
4274 ;; data between general registers until after reload.
4275 (define_insn ""
4276 [(set (match_operand:TF 0 "nonimmediate_operand" "=r,o")
4277 (match_operand:TF 1 "input_operand" "roG,r"))]
4278 "register_operand (operands[0], TFmode)
4279 || reg_or_fp0_operand (operands[1], TFmode)"
4280 "#")
4281
4282 (define_split
4283 [(set (match_operand:TF 0 "nonimmediate_operand" "")
4284 (match_operand:TF 1 "input_operand" ""))]
4285 "reload_completed"
4286 [(set (match_dup 0) (match_dup 2))
4287 (set (match_dup 1) (match_dup 3))]
4288 "
4289 {
4290 alpha_split_tfmode_pair (operands);
4291 if (rtx_equal_p (operands[0], operands[3]))
4292 {
4293 rtx tmp;
4294 tmp = operands[0], operands[0] = operands[1], operands[1] = tmp;
4295 tmp = operands[2], operands[2] = operands[3], operands[3] = tmp;
4296 }
4297 }")
4298
4299 (define_expand "movsf"
4300 [(set (match_operand:SF 0 "nonimmediate_operand" "")
4301 (match_operand:SF 1 "general_operand" ""))]
4302 ""
4303 "
4304 {
4305 if (GET_CODE (operands[0]) == MEM
4306 && ! reg_or_fp0_operand (operands[1], SFmode))
4307 operands[1] = force_reg (SFmode, operands[1]);
4308 }")
4309
4310 (define_expand "movdf"
4311 [(set (match_operand:DF 0 "nonimmediate_operand" "")
4312 (match_operand:DF 1 "general_operand" ""))]
4313 ""
4314 "
4315 {
4316 if (GET_CODE (operands[0]) == MEM
4317 && ! reg_or_fp0_operand (operands[1], DFmode))
4318 operands[1] = force_reg (DFmode, operands[1]);
4319 }")
4320
4321 (define_expand "movtf"
4322 [(set (match_operand:TF 0 "nonimmediate_operand" "")
4323 (match_operand:TF 1 "general_operand" ""))]
4324 ""
4325 "
4326 {
4327 if (GET_CODE (operands[0]) == MEM
4328 && ! reg_or_fp0_operand (operands[1], TFmode))
4329 operands[1] = force_reg (TFmode, operands[1]);
4330 }")
4331
4332 (define_insn ""
4333 [(set (match_operand:SI 0 "nonimmediate_operand" "=r,r,r,r,m,*f,*f,m")
4334 (match_operand:SI 1 "input_operand" "rJ,K,L,m,rJ,*fJ,m,*f"))]
4335 "! TARGET_WINDOWS_NT && ! TARGET_OPEN_VMS && ! TARGET_FIX
4336 && (register_operand (operands[0], SImode)
4337 || reg_or_0_operand (operands[1], SImode))"
4338 "@
4339 mov %r1,%0
4340 lda %0,%1
4341 ldah %0,%h1
4342 ldl %0,%1
4343 stl %r1,%0
4344 fmov %R1,%0
4345 ld%, %0,%1
4346 st%, %R1,%0"
4347 [(set_attr "type" "ilog,iadd,iadd,ild,ist,fcpys,fld,fst")])
4348
4349 (define_insn ""
4350 [(set (match_operand:SI 0 "nonimmediate_operand" "=r,r,r,r,m,*f,*f,m,r,*f")
4351 (match_operand:SI 1 "input_operand" "rJ,K,L,m,rJ,*fJ,m,*f,*f,r"))]
4352 "! TARGET_WINDOWS_NT && ! TARGET_OPEN_VMS && TARGET_FIX
4353 && (register_operand (operands[0], SImode)
4354 || reg_or_0_operand (operands[1], SImode))"
4355 "@
4356 mov %r1,%0
4357 lda %0,%1
4358 ldah %0,%h1
4359 ldl %0,%1
4360 stl %r1,%0
4361 fmov %R1,%0
4362 ld%, %0,%1
4363 st%, %R1,%0
4364 ftois %1,%0
4365 itofs %1,%0"
4366 [(set_attr "type" "ilog,iadd,iadd,ild,ist,fcpys,fld,fst,ftoi,itof")])
4367
4368 (define_insn ""
4369 [(set (match_operand:SI 0 "nonimmediate_operand" "=r,r,r,r,r,m,*f,*f,m")
4370 (match_operand:SI 1 "input_operand" "rJ,K,L,s,m,rJ,*fJ,m,*f"))]
4371 "(TARGET_WINDOWS_NT || TARGET_OPEN_VMS)
4372 && (register_operand (operands[0], SImode)
4373 || reg_or_0_operand (operands[1], SImode))"
4374 "@
4375 mov %1,%0
4376 lda %0,%1
4377 ldah %0,%h1
4378 lda %0,%1
4379 ldl %0,%1
4380 stl %r1,%0
4381 fmov %R1,%0
4382 ld%, %0,%1
4383 st%, %R1,%0"
4384 [(set_attr "type" "ilog,iadd,iadd,ldsym,ild,ist,fcpys,fld,fst")])
4385
4386 (define_insn ""
4387 [(set (match_operand:HI 0 "register_operand" "=r,r")
4388 (match_operand:HI 1 "input_operand" "rJ,n"))]
4389 "! TARGET_BWX
4390 && (register_operand (operands[0], HImode)
4391 || register_operand (operands[1], HImode))"
4392 "@
4393 mov %r1,%0
4394 lda %0,%L1"
4395 [(set_attr "type" "ilog,iadd")])
4396
4397 (define_insn ""
4398 [(set (match_operand:HI 0 "nonimmediate_operand" "=r,r,r,m")
4399 (match_operand:HI 1 "input_operand" "rJ,n,m,rJ"))]
4400 "TARGET_BWX
4401 && (register_operand (operands[0], HImode)
4402 || reg_or_0_operand (operands[1], HImode))"
4403 "@
4404 mov %r1,%0
4405 lda %0,%L1
4406 ldwu %0,%1
4407 stw %r1,%0"
4408 [(set_attr "type" "ilog,iadd,ild,ist")])
4409
4410 (define_insn ""
4411 [(set (match_operand:QI 0 "register_operand" "=r,r")
4412 (match_operand:QI 1 "input_operand" "rJ,n"))]
4413 "! TARGET_BWX
4414 && (register_operand (operands[0], QImode)
4415 || register_operand (operands[1], QImode))"
4416 "@
4417 mov %r1,%0
4418 lda %0,%L1"
4419 [(set_attr "type" "ilog,iadd")])
4420
4421 (define_insn ""
4422 [(set (match_operand:QI 0 "nonimmediate_operand" "=r,r,r,m")
4423 (match_operand:QI 1 "input_operand" "rJ,n,m,rJ"))]
4424 "TARGET_BWX
4425 && (register_operand (operands[0], QImode)
4426 || reg_or_0_operand (operands[1], QImode))"
4427 "@
4428 mov %r1,%0
4429 lda %0,%L1
4430 ldbu %0,%1
4431 stb %r1,%0"
4432 [(set_attr "type" "ilog,iadd,ild,ist")])
4433
4434 ;; We do two major things here: handle mem->mem and construct long
4435 ;; constants.
4436
4437 (define_expand "movsi"
4438 [(set (match_operand:SI 0 "nonimmediate_operand" "")
4439 (match_operand:SI 1 "general_operand" ""))]
4440 ""
4441 "
4442 {
4443 if (GET_CODE (operands[0]) == MEM
4444 && ! reg_or_0_operand (operands[1], SImode))
4445 operands[1] = force_reg (SImode, operands[1]);
4446
4447 if (! CONSTANT_P (operands[1]) || input_operand (operands[1], SImode))
4448 ;
4449 else if (GET_CODE (operands[1]) == CONST_INT)
4450 {
4451 operands[1]
4452 = alpha_emit_set_const (operands[0], SImode, INTVAL (operands[1]), 3);
4453 if (rtx_equal_p (operands[0], operands[1]))
4454 DONE;
4455 }
4456 }")
4457
4458 ;; Split a load of a large constant into the appropriate two-insn
4459 ;; sequence.
4460
4461 (define_split
4462 [(set (match_operand:SI 0 "register_operand" "")
4463 (match_operand:SI 1 "const_int_operand" ""))]
4464 "! add_operand (operands[1], SImode)"
4465 [(set (match_dup 0) (match_dup 2))
4466 (set (match_dup 0) (plus:SI (match_dup 0) (match_dup 3)))]
4467 "
4468 { rtx tem
4469 = alpha_emit_set_const (operands[0], SImode, INTVAL (operands[1]), 2);
4470
4471 if (tem == operands[0])
4472 DONE;
4473 else
4474 FAIL;
4475 }")
4476
4477 (define_insn ""
4478 [(set (match_operand:DI 0 "nonimmediate_operand" "=r,r,r,r,r,m,*f,*f,Q")
4479 (match_operand:DI 1 "input_operand" "rJ,K,L,s,m,rJ,*fJ,Q,*f"))]
4480 "! TARGET_FIX
4481 && (register_operand (operands[0], DImode)
4482 || reg_or_0_operand (operands[1], DImode))"
4483 "@
4484 mov %r1,%0
4485 lda %0,%1
4486 ldah %0,%h1
4487 lda %0,%1
4488 ldq%A1 %0,%1
4489 stq%A0 %r1,%0
4490 fmov %R1,%0
4491 ldt %0,%1
4492 stt %R1,%0"
4493 [(set_attr "type" "ilog,iadd,iadd,ldsym,ild,ist,fcpys,fld,fst")])
4494
4495 (define_insn ""
4496 [(set (match_operand:DI 0 "nonimmediate_operand" "=r,r,r,r,r,m,*f,*f,Q,r,*f")
4497 (match_operand:DI 1 "input_operand" "rJ,K,L,s,m,rJ,*fJ,Q,*f,*f,r"))]
4498 "TARGET_FIX
4499 && (register_operand (operands[0], DImode)
4500 || reg_or_0_operand (operands[1], DImode))"
4501 "@
4502 mov %r1,%0
4503 lda %0,%1
4504 ldah %0,%h1
4505 lda %0,%1
4506 ldq%A1 %0,%1
4507 stq%A0 %r1,%0
4508 fmov %R1,%0
4509 ldt %0,%1
4510 stt %R1,%0
4511 ftoit %1,%0
4512 itoft %1,%0"
4513 [(set_attr "type" "ilog,iadd,iadd,ldsym,ild,ist,fcpys,fld,fst,ftoi,itof")])
4514
4515 ;; We do three major things here: handle mem->mem, put 64-bit constants in
4516 ;; memory, and construct long 32-bit constants.
4517
4518 (define_expand "movdi"
4519 [(set (match_operand:DI 0 "nonimmediate_operand" "")
4520 (match_operand:DI 1 "general_operand" ""))]
4521 ""
4522 "
4523 {
4524 rtx tem;
4525
4526 if (GET_CODE (operands[0]) == MEM
4527 && ! reg_or_0_operand (operands[1], DImode))
4528 operands[1] = force_reg (DImode, operands[1]);
4529
4530 if (! CONSTANT_P (operands[1]) || input_operand (operands[1], DImode))
4531 ;
4532 else if (GET_CODE (operands[1]) == CONST_INT
4533 && (tem = alpha_emit_set_const (operands[0], DImode,
4534 INTVAL (operands[1]), 3)) != 0)
4535 {
4536 if (rtx_equal_p (tem, operands[0]))
4537 DONE;
4538 else
4539 operands[1] = tem;
4540 }
4541 else if (CONSTANT_P (operands[1]))
4542 {
4543 if (TARGET_BUILD_CONSTANTS)
4544 {
4545 HOST_WIDE_INT i0, i1;
4546
4547 if (GET_CODE (operands[1]) == CONST_INT)
4548 {
4549 i0 = INTVAL (operands[1]);
4550 i1 = -(i0 < 0);
4551 }
4552 else if (GET_CODE (operands[1]) == CONST_DOUBLE)
4553 {
4554 #if HOST_BITS_PER_WIDE_INT >= 64
4555 i0 = CONST_DOUBLE_LOW (operands[1]);
4556 i1 = -(i0 < 0);
4557 #else
4558 i0 = CONST_DOUBLE_LOW (operands[1]);
4559 i1 = CONST_DOUBLE_HIGH (operands[1]);
4560 #endif
4561 }
4562 else
4563 abort();
4564
4565 tem = alpha_emit_set_long_const (operands[0], i0, i1);
4566 if (rtx_equal_p (tem, operands[0]))
4567 DONE;
4568 else
4569 operands[1] = tem;
4570 }
4571 else
4572 {
4573 operands[1] = force_const_mem (DImode, operands[1]);
4574 if (reload_in_progress)
4575 {
4576 emit_move_insn (operands[0], XEXP (operands[1], 0));
4577 operands[1] = copy_rtx (operands[1]);
4578 XEXP (operands[1], 0) = operands[0];
4579 }
4580 else
4581 operands[1] = validize_mem (operands[1]);
4582 }
4583 }
4584 else
4585 abort ();
4586 }")
4587
4588 ;; Split a load of a large constant into the appropriate two-insn
4589 ;; sequence.
4590
4591 (define_split
4592 [(set (match_operand:DI 0 "register_operand" "")
4593 (match_operand:DI 1 "const_int_operand" ""))]
4594 "! add_operand (operands[1], DImode)"
4595 [(set (match_dup 0) (match_dup 2))
4596 (set (match_dup 0) (plus:DI (match_dup 0) (match_dup 3)))]
4597 "
4598 { rtx tem
4599 = alpha_emit_set_const (operands[0], DImode, INTVAL (operands[1]), 2);
4600
4601 if (tem == operands[0])
4602 DONE;
4603 else
4604 FAIL;
4605 }")
4606
4607 ;; These are the partial-word cases.
4608 ;;
4609 ;; First we have the code to load an aligned word. Operand 0 is the register
4610 ;; in which to place the result. It's mode is QImode or HImode. Operand 1
4611 ;; is an SImode MEM at the low-order byte of the proper word. Operand 2 is the
4612 ;; number of bits within the word that the value is. Operand 3 is an SImode
4613 ;; scratch register. If operand 0 is a hard register, operand 3 may be the
4614 ;; same register. It is allowed to conflict with operand 1 as well.
4615
4616 (define_expand "aligned_loadqi"
4617 [(set (match_operand:SI 3 "register_operand" "")
4618 (match_operand:SI 1 "memory_operand" ""))
4619 (set (subreg:DI (match_operand:QI 0 "register_operand" "") 0)
4620 (zero_extract:DI (subreg:DI (match_dup 3) 0)
4621 (const_int 8)
4622 (match_operand:DI 2 "const_int_operand" "")))]
4623
4624 ""
4625 "")
4626
4627 (define_expand "aligned_loadhi"
4628 [(set (match_operand:SI 3 "register_operand" "")
4629 (match_operand:SI 1 "memory_operand" ""))
4630 (set (subreg:DI (match_operand:HI 0 "register_operand" "") 0)
4631 (zero_extract:DI (subreg:DI (match_dup 3) 0)
4632 (const_int 16)
4633 (match_operand:DI 2 "const_int_operand" "")))]
4634
4635 ""
4636 "")
4637
4638 ;; Similar for unaligned loads, where we use the sequence from the
4639 ;; Alpha Architecture manual.
4640 ;;
4641 ;; Operand 1 is the address. Operands 2 and 3 are temporaries, where
4642 ;; operand 3 can overlap the input and output registers.
4643
4644 (define_expand "unaligned_loadqi"
4645 [(set (match_operand:DI 2 "register_operand" "")
4646 (mem:DI (and:DI (match_operand:DI 1 "address_operand" "")
4647 (const_int -8))))
4648 (set (match_operand:DI 3 "register_operand" "")
4649 (match_dup 1))
4650 (set (subreg:DI (match_operand:QI 0 "register_operand" "") 0)
4651 (zero_extract:DI (match_dup 2)
4652 (const_int 8)
4653 (ashift:DI (match_dup 3) (const_int 3))))]
4654 ""
4655 "")
4656
4657 (define_expand "unaligned_loadhi"
4658 [(set (match_operand:DI 2 "register_operand" "")
4659 (mem:DI (and:DI (match_operand:DI 1 "address_operand" "")
4660 (const_int -8))))
4661 (set (match_operand:DI 3 "register_operand" "")
4662 (match_dup 1))
4663 (set (subreg:DI (match_operand:QI 0 "register_operand" "") 0)
4664 (zero_extract:DI (match_dup 2)
4665 (const_int 16)
4666 (ashift:DI (match_dup 3) (const_int 3))))]
4667 ""
4668 "")
4669
4670 ;; Storing an aligned byte or word requires two temporaries. Operand 0 is the
4671 ;; aligned SImode MEM. Operand 1 is the register containing the
4672 ;; byte or word to store. Operand 2 is the number of bits within the word that
4673 ;; the value should be placed. Operands 3 and 4 are SImode temporaries.
4674
4675 (define_expand "aligned_store"
4676 [(set (match_operand:SI 3 "register_operand" "")
4677 (match_operand:SI 0 "memory_operand" ""))
4678 (set (subreg:DI (match_dup 3) 0)
4679 (and:DI (subreg:DI (match_dup 3) 0) (match_dup 5)))
4680 (set (subreg:DI (match_operand:SI 4 "register_operand" "") 0)
4681 (ashift:DI (zero_extend:DI (match_operand 1 "register_operand" ""))
4682 (match_operand:DI 2 "const_int_operand" "")))
4683 (set (subreg:DI (match_dup 4) 0)
4684 (ior:DI (subreg:DI (match_dup 4) 0) (subreg:DI (match_dup 3) 0)))
4685 (set (match_dup 0) (match_dup 4))]
4686 ""
4687 "
4688 { operands[5] = GEN_INT (~ (GET_MODE_MASK (GET_MODE (operands[1]))
4689 << INTVAL (operands[2])));
4690 }")
4691
4692 ;; For the unaligned byte and halfword cases, we use code similar to that
4693 ;; in the ;; Architecture book, but reordered to lower the number of registers
4694 ;; required. Operand 0 is the address. Operand 1 is the data to store.
4695 ;; Operands 2, 3, and 4 are DImode temporaries, where operands 2 and 4 may
4696 ;; be the same temporary, if desired. If the address is in a register,
4697 ;; operand 2 can be that register.
4698
4699 (define_expand "unaligned_storeqi"
4700 [(set (match_operand:DI 3 "register_operand" "")
4701 (mem:DI (and:DI (match_operand:DI 0 "address_operand" "")
4702 (const_int -8))))
4703 (set (match_operand:DI 2 "register_operand" "")
4704 (match_dup 0))
4705 (set (match_dup 3)
4706 (and:DI (not:DI (ashift:DI (const_int 255)
4707 (ashift:DI (match_dup 2) (const_int 3))))
4708 (match_dup 3)))
4709 (set (match_operand:DI 4 "register_operand" "")
4710 (ashift:DI (zero_extend:DI (match_operand:QI 1 "register_operand" ""))
4711 (ashift:DI (match_dup 2) (const_int 3))))
4712 (set (match_dup 4) (ior:DI (match_dup 4) (match_dup 3)))
4713 (set (mem:DI (and:DI (match_dup 0) (const_int -8)))
4714 (match_dup 4))]
4715 ""
4716 "")
4717
4718 (define_expand "unaligned_storehi"
4719 [(set (match_operand:DI 3 "register_operand" "")
4720 (mem:DI (and:DI (match_operand:DI 0 "address_operand" "")
4721 (const_int -8))))
4722 (set (match_operand:DI 2 "register_operand" "")
4723 (match_dup 0))
4724 (set (match_dup 3)
4725 (and:DI (not:DI (ashift:DI (const_int 65535)
4726 (ashift:DI (match_dup 2) (const_int 3))))
4727 (match_dup 3)))
4728 (set (match_operand:DI 4 "register_operand" "")
4729 (ashift:DI (zero_extend:DI (match_operand:HI 1 "register_operand" ""))
4730 (ashift:DI (match_dup 2) (const_int 3))))
4731 (set (match_dup 4) (ior:DI (match_dup 4) (match_dup 3)))
4732 (set (mem:DI (and:DI (match_dup 0) (const_int -8)))
4733 (match_dup 4))]
4734 ""
4735 "")
4736 \f
4737 ;; Here are the define_expand's for QI and HI moves that use the above
4738 ;; patterns. We have the normal sets, plus the ones that need scratch
4739 ;; registers for reload.
4740
4741 (define_expand "movqi"
4742 [(set (match_operand:QI 0 "nonimmediate_operand" "")
4743 (match_operand:QI 1 "general_operand" ""))]
4744 ""
4745 "
4746 {
4747 if (TARGET_BWX)
4748 {
4749 if (GET_CODE (operands[0]) == MEM
4750 && ! reg_or_0_operand (operands[1], QImode))
4751 operands[1] = force_reg (QImode, operands[1]);
4752
4753 if (GET_CODE (operands[1]) == CONST_INT
4754 && ! input_operand (operands[1], QImode))
4755 {
4756 operands[1] = alpha_emit_set_const (operands[0], QImode,
4757 INTVAL (operands[1]), 3);
4758
4759 if (rtx_equal_p (operands[0], operands[1]))
4760 DONE;
4761 }
4762
4763 goto def;
4764 }
4765
4766 /* If the output is not a register, the input must be. */
4767 if (GET_CODE (operands[0]) == MEM)
4768 operands[1] = force_reg (QImode, operands[1]);
4769
4770 /* Handle four memory cases, unaligned and aligned for either the input
4771 or the output. The only case where we can be called during reload is
4772 for aligned loads; all other cases require temporaries. */
4773
4774 if (GET_CODE (operands[1]) == MEM
4775 || (GET_CODE (operands[1]) == SUBREG
4776 && GET_CODE (SUBREG_REG (operands[1])) == MEM)
4777 || (reload_in_progress && GET_CODE (operands[1]) == REG
4778 && REGNO (operands[1]) >= FIRST_PSEUDO_REGISTER)
4779 || (reload_in_progress && GET_CODE (operands[1]) == SUBREG
4780 && GET_CODE (SUBREG_REG (operands[1])) == REG
4781 && REGNO (SUBREG_REG (operands[1])) >= FIRST_PSEUDO_REGISTER))
4782 {
4783 if (aligned_memory_operand (operands[1], QImode))
4784 {
4785 if (reload_in_progress)
4786 {
4787 emit_insn (gen_reload_inqi_help
4788 (operands[0], operands[1],
4789 gen_rtx_REG (SImode, REGNO (operands[0]))));
4790 }
4791 else
4792 {
4793 rtx aligned_mem, bitnum;
4794 rtx scratch = gen_reg_rtx (SImode);
4795
4796 get_aligned_mem (operands[1], &aligned_mem, &bitnum);
4797
4798 emit_insn (gen_aligned_loadqi (operands[0], aligned_mem, bitnum,
4799 scratch));
4800 }
4801 }
4802 else
4803 {
4804 /* Don't pass these as parameters since that makes the generated
4805 code depend on parameter evaluation order which will cause
4806 bootstrap failures. */
4807
4808 rtx temp1 = gen_reg_rtx (DImode);
4809 rtx temp2 = gen_reg_rtx (DImode);
4810 rtx seq
4811 = gen_unaligned_loadqi (operands[0],
4812 get_unaligned_address (operands[1], 0),
4813 temp1, temp2);
4814
4815 alpha_set_memflags (seq, operands[1]);
4816 emit_insn (seq);
4817 }
4818
4819 DONE;
4820 }
4821
4822 else if (GET_CODE (operands[0]) == MEM
4823 || (GET_CODE (operands[0]) == SUBREG
4824 && GET_CODE (SUBREG_REG (operands[0])) == MEM)
4825 || (reload_in_progress && GET_CODE (operands[0]) == REG
4826 && REGNO (operands[0]) >= FIRST_PSEUDO_REGISTER)
4827 || (reload_in_progress && GET_CODE (operands[0]) == SUBREG
4828 && GET_CODE (SUBREG_REG (operands[0])) == REG
4829 && REGNO (operands[0]) >= FIRST_PSEUDO_REGISTER))
4830 {
4831 if (aligned_memory_operand (operands[0], QImode))
4832 {
4833 rtx aligned_mem, bitnum;
4834 rtx temp1 = gen_reg_rtx (SImode);
4835 rtx temp2 = gen_reg_rtx (SImode);
4836
4837 get_aligned_mem (operands[0], &aligned_mem, &bitnum);
4838
4839 emit_insn (gen_aligned_store (aligned_mem, operands[1], bitnum,
4840 temp1, temp2));
4841 }
4842 else
4843 {
4844 rtx temp1 = gen_reg_rtx (DImode);
4845 rtx temp2 = gen_reg_rtx (DImode);
4846 rtx temp3 = gen_reg_rtx (DImode);
4847 rtx seq
4848 = gen_unaligned_storeqi (get_unaligned_address (operands[0], 0),
4849 operands[1], temp1, temp2, temp3);
4850
4851 alpha_set_memflags (seq, operands[0]);
4852 emit_insn (seq);
4853 }
4854 DONE;
4855 }
4856 def:;
4857 }")
4858
4859 (define_expand "movhi"
4860 [(set (match_operand:HI 0 "nonimmediate_operand" "")
4861 (match_operand:HI 1 "general_operand" ""))]
4862 ""
4863 "
4864 {
4865 if (TARGET_BWX)
4866 {
4867 if (GET_CODE (operands[0]) == MEM
4868 && ! reg_or_0_operand (operands[1], HImode))
4869 operands[1] = force_reg (HImode, operands[1]);
4870
4871 if (GET_CODE (operands[1]) == CONST_INT
4872 && ! input_operand (operands[1], HImode))
4873 {
4874 operands[1] = alpha_emit_set_const (operands[0], HImode,
4875 INTVAL (operands[1]), 3);
4876
4877 if (rtx_equal_p (operands[0], operands[1]))
4878 DONE;
4879 }
4880
4881 goto def;
4882 }
4883
4884 /* If the output is not a register, the input must be. */
4885 if (GET_CODE (operands[0]) == MEM)
4886 operands[1] = force_reg (HImode, operands[1]);
4887
4888 /* Handle four memory cases, unaligned and aligned for either the input
4889 or the output. The only case where we can be called during reload is
4890 for aligned loads; all other cases require temporaries. */
4891
4892 if (GET_CODE (operands[1]) == MEM
4893 || (GET_CODE (operands[1]) == SUBREG
4894 && GET_CODE (SUBREG_REG (operands[1])) == MEM)
4895 || (reload_in_progress && GET_CODE (operands[1]) == REG
4896 && REGNO (operands[1]) >= FIRST_PSEUDO_REGISTER)
4897 || (reload_in_progress && GET_CODE (operands[1]) == SUBREG
4898 && GET_CODE (SUBREG_REG (operands[1])) == REG
4899 && REGNO (SUBREG_REG (operands[1])) >= FIRST_PSEUDO_REGISTER))
4900 {
4901 if (aligned_memory_operand (operands[1], HImode))
4902 {
4903 if (reload_in_progress)
4904 {
4905 emit_insn (gen_reload_inhi_help
4906 (operands[0], operands[1],
4907 gen_rtx_REG (SImode, REGNO (operands[0]))));
4908 }
4909 else
4910 {
4911 rtx aligned_mem, bitnum;
4912 rtx scratch = gen_reg_rtx (SImode);
4913
4914 get_aligned_mem (operands[1], &aligned_mem, &bitnum);
4915
4916 emit_insn (gen_aligned_loadhi (operands[0], aligned_mem, bitnum,
4917 scratch));
4918 }
4919 }
4920 else
4921 {
4922 /* Don't pass these as parameters since that makes the generated
4923 code depend on parameter evaluation order which will cause
4924 bootstrap failures. */
4925
4926 rtx temp1 = gen_reg_rtx (DImode);
4927 rtx temp2 = gen_reg_rtx (DImode);
4928 rtx seq
4929 = gen_unaligned_loadhi (operands[0],
4930 get_unaligned_address (operands[1], 0),
4931 temp1, temp2);
4932
4933 alpha_set_memflags (seq, operands[1]);
4934 emit_insn (seq);
4935 }
4936
4937 DONE;
4938 }
4939
4940 else if (GET_CODE (operands[0]) == MEM
4941 || (GET_CODE (operands[0]) == SUBREG
4942 && GET_CODE (SUBREG_REG (operands[0])) == MEM)
4943 || (reload_in_progress && GET_CODE (operands[0]) == REG
4944 && REGNO (operands[0]) >= FIRST_PSEUDO_REGISTER)
4945 || (reload_in_progress && GET_CODE (operands[0]) == SUBREG
4946 && GET_CODE (SUBREG_REG (operands[0])) == REG
4947 && REGNO (operands[0]) >= FIRST_PSEUDO_REGISTER))
4948 {
4949 if (aligned_memory_operand (operands[0], HImode))
4950 {
4951 rtx aligned_mem, bitnum;
4952 rtx temp1 = gen_reg_rtx (SImode);
4953 rtx temp2 = gen_reg_rtx (SImode);
4954
4955 get_aligned_mem (operands[0], &aligned_mem, &bitnum);
4956
4957 emit_insn (gen_aligned_store (aligned_mem, operands[1], bitnum,
4958 temp1, temp2));
4959 }
4960 else
4961 {
4962 rtx temp1 = gen_reg_rtx (DImode);
4963 rtx temp2 = gen_reg_rtx (DImode);
4964 rtx temp3 = gen_reg_rtx (DImode);
4965 rtx seq
4966 = gen_unaligned_storehi (get_unaligned_address (operands[0], 0),
4967 operands[1], temp1, temp2, temp3);
4968
4969 alpha_set_memflags (seq, operands[0]);
4970 emit_insn (seq);
4971 }
4972
4973 DONE;
4974 }
4975 def:;
4976 }")
4977
4978 ;; Here are the versions for reload. Note that in the unaligned cases
4979 ;; we know that the operand must not be a pseudo-register because stack
4980 ;; slots are always aligned references.
4981
4982 (define_expand "reload_inqi"
4983 [(parallel [(match_operand:QI 0 "register_operand" "=r")
4984 (match_operand:QI 1 "any_memory_operand" "m")
4985 (match_operand:TI 2 "register_operand" "=&r")])]
4986 "! TARGET_BWX"
4987 "
4988 {
4989 rtx scratch, seq;
4990
4991 if (GET_CODE (operands[1]) != MEM)
4992 abort ();
4993
4994 if (aligned_memory_operand (operands[1], QImode))
4995 {
4996 seq = gen_reload_inqi_help (operands[0], operands[1],
4997 gen_rtx_REG (SImode, REGNO (operands[2])));
4998 }
4999 else
5000 {
5001 rtx addr;
5002
5003 /* It is possible that one of the registers we got for operands[2]
5004 might coincide with that of operands[0] (which is why we made
5005 it TImode). Pick the other one to use as our scratch. */
5006 if (REGNO (operands[0]) == REGNO (operands[2]))
5007 scratch = gen_rtx_REG (DImode, REGNO (operands[2]) + 1);
5008 else
5009 scratch = gen_rtx_REG (DImode, REGNO (operands[2]));
5010
5011 addr = get_unaligned_address (operands[1], 0);
5012 seq = gen_unaligned_loadqi (operands[0], addr, scratch,
5013 gen_rtx_REG (DImode, REGNO (operands[0])));
5014 alpha_set_memflags (seq, operands[1]);
5015 }
5016 emit_insn (seq);
5017 DONE;
5018 }")
5019
5020 (define_expand "reload_inhi"
5021 [(parallel [(match_operand:HI 0 "register_operand" "=r")
5022 (match_operand:HI 1 "any_memory_operand" "m")
5023 (match_operand:TI 2 "register_operand" "=&r")])]
5024 "! TARGET_BWX"
5025 "
5026 {
5027 rtx scratch, seq;
5028
5029 if (GET_CODE (operands[1]) != MEM)
5030 abort ();
5031
5032 if (aligned_memory_operand (operands[1], HImode))
5033 {
5034 seq = gen_reload_inhi_help (operands[0], operands[1],
5035 gen_rtx_REG (SImode, REGNO (operands[2])));
5036 }
5037 else
5038 {
5039 rtx addr;
5040
5041 /* It is possible that one of the registers we got for operands[2]
5042 might coincide with that of operands[0] (which is why we made
5043 it TImode). Pick the other one to use as our scratch. */
5044 if (REGNO (operands[0]) == REGNO (operands[2]))
5045 scratch = gen_rtx_REG (DImode, REGNO (operands[2]) + 1);
5046 else
5047 scratch = gen_rtx_REG (DImode, REGNO (operands[2]));
5048
5049 addr = get_unaligned_address (operands[1], 0);
5050 seq = gen_unaligned_loadhi (operands[0], addr, scratch,
5051 gen_rtx_REG (DImode, REGNO (operands[0])));
5052 alpha_set_memflags (seq, operands[1]);
5053 }
5054 emit_insn (seq);
5055 DONE;
5056 }")
5057
5058 (define_expand "reload_outqi"
5059 [(parallel [(match_operand:QI 0 "any_memory_operand" "=m")
5060 (match_operand:QI 1 "register_operand" "r")
5061 (match_operand:TI 2 "register_operand" "=&r")])]
5062 "! TARGET_BWX"
5063 "
5064 {
5065 if (GET_CODE (operands[0]) != MEM)
5066 abort ();
5067
5068 if (aligned_memory_operand (operands[0], QImode))
5069 {
5070 emit_insn (gen_reload_outqi_help
5071 (operands[0], operands[1],
5072 gen_rtx_REG (SImode, REGNO (operands[2])),
5073 gen_rtx_REG (SImode, REGNO (operands[2]) + 1)));
5074 }
5075 else
5076 {
5077 rtx addr = get_unaligned_address (operands[0], 0);
5078 rtx scratch1 = gen_rtx_REG (DImode, REGNO (operands[2]));
5079 rtx scratch2 = gen_rtx_REG (DImode, REGNO (operands[2]) + 1);
5080 rtx scratch3 = scratch1;
5081 rtx seq;
5082
5083 if (GET_CODE (addr) == REG)
5084 scratch1 = addr;
5085
5086 seq = gen_unaligned_storeqi (addr, operands[1], scratch1,
5087 scratch2, scratch3);
5088 alpha_set_memflags (seq, operands[0]);
5089 emit_insn (seq);
5090 }
5091 DONE;
5092 }")
5093
5094 (define_expand "reload_outhi"
5095 [(parallel [(match_operand:HI 0 "any_memory_operand" "=m")
5096 (match_operand:HI 1 "register_operand" "r")
5097 (match_operand:TI 2 "register_operand" "=&r")])]
5098 "! TARGET_BWX"
5099 "
5100 {
5101 if (GET_CODE (operands[0]) != MEM)
5102 abort ();
5103
5104 if (aligned_memory_operand (operands[0], HImode))
5105 {
5106 emit_insn (gen_reload_outhi_help
5107 (operands[0], operands[1],
5108 gen_rtx_REG (SImode, REGNO (operands[2])),
5109 gen_rtx_REG (SImode, REGNO (operands[2]) + 1)));
5110 }
5111 else
5112 {
5113 rtx addr = get_unaligned_address (operands[0], 0);
5114 rtx scratch1 = gen_rtx_REG (DImode, REGNO (operands[2]));
5115 rtx scratch2 = gen_rtx_REG (DImode, REGNO (operands[2]) + 1);
5116 rtx scratch3 = scratch1;
5117 rtx seq;
5118
5119 if (GET_CODE (addr) == REG)
5120 scratch1 = addr;
5121
5122 seq = gen_unaligned_storehi (addr, operands[1], scratch1,
5123 scratch2, scratch3);
5124 alpha_set_memflags (seq, operands[0]);
5125 emit_insn (seq);
5126 }
5127 DONE;
5128 }")
5129
5130 ;; Helpers for the above. The way reload is structured, we can't
5131 ;; always get a proper address for a stack slot during reload_foo
5132 ;; expansion, so we must delay our address manipulations until after.
5133
5134 (define_insn "reload_inqi_help"
5135 [(set (match_operand:QI 0 "register_operand" "=r")
5136 (match_operand:QI 1 "memory_operand" "m"))
5137 (clobber (match_operand:SI 2 "register_operand" "=r"))]
5138 "! TARGET_BWX && (reload_in_progress || reload_completed)"
5139 "#")
5140
5141 (define_insn "reload_inhi_help"
5142 [(set (match_operand:HI 0 "register_operand" "=r")
5143 (match_operand:HI 1 "memory_operand" "m"))
5144 (clobber (match_operand:SI 2 "register_operand" "=r"))]
5145 "! TARGET_BWX && (reload_in_progress || reload_completed)"
5146 "#")
5147
5148 (define_insn "reload_outqi_help"
5149 [(set (match_operand:QI 0 "memory_operand" "=m")
5150 (match_operand:QI 1 "register_operand" "r"))
5151 (clobber (match_operand:SI 2 "register_operand" "=r"))
5152 (clobber (match_operand:SI 3 "register_operand" "=r"))]
5153 "! TARGET_BWX && (reload_in_progress || reload_completed)"
5154 "#")
5155
5156 (define_insn "reload_outhi_help"
5157 [(set (match_operand:HI 0 "memory_operand" "=m")
5158 (match_operand:HI 1 "register_operand" "r"))
5159 (clobber (match_operand:SI 2 "register_operand" "=r"))
5160 (clobber (match_operand:SI 3 "register_operand" "=r"))]
5161 "! TARGET_BWX && (reload_in_progress || reload_completed)"
5162 "#")
5163
5164 (define_split
5165 [(set (match_operand:QI 0 "register_operand" "")
5166 (match_operand:QI 1 "memory_operand" ""))
5167 (clobber (match_operand:SI 2 "register_operand" ""))]
5168 "! TARGET_BWX && reload_completed"
5169 [(const_int 0)]
5170 "
5171 {
5172 rtx aligned_mem, bitnum;
5173 get_aligned_mem (operands[1], &aligned_mem, &bitnum);
5174 emit_insn (gen_aligned_loadqi (operands[0], aligned_mem, bitnum,
5175 operands[2]));
5176 DONE;
5177 }")
5178
5179 (define_split
5180 [(set (match_operand:HI 0 "register_operand" "")
5181 (match_operand:HI 1 "memory_operand" ""))
5182 (clobber (match_operand:SI 2 "register_operand" ""))]
5183 "! TARGET_BWX && reload_completed"
5184 [(const_int 0)]
5185 "
5186 {
5187 rtx aligned_mem, bitnum;
5188 get_aligned_mem (operands[1], &aligned_mem, &bitnum);
5189 emit_insn (gen_aligned_loadhi (operands[0], aligned_mem, bitnum,
5190 operands[2]));
5191 DONE;
5192 }")
5193
5194 (define_split
5195 [(set (match_operand:QI 0 "memory_operand" "")
5196 (match_operand:QI 1 "register_operand" ""))
5197 (clobber (match_operand:SI 2 "register_operand" ""))
5198 (clobber (match_operand:SI 3 "register_operand" ""))]
5199 "! TARGET_BWX && reload_completed"
5200 [(const_int 0)]
5201 "
5202 {
5203 rtx aligned_mem, bitnum;
5204 get_aligned_mem (operands[0], &aligned_mem, &bitnum);
5205 emit_insn (gen_aligned_store (aligned_mem, operands[1], bitnum,
5206 operands[2], operands[3]));
5207 DONE;
5208 }")
5209
5210 (define_split
5211 [(set (match_operand:HI 0 "memory_operand" "")
5212 (match_operand:HI 1 "register_operand" ""))
5213 (clobber (match_operand:SI 2 "register_operand" ""))
5214 (clobber (match_operand:SI 3 "register_operand" ""))]
5215 "! TARGET_BWX && reload_completed"
5216 [(const_int 0)]
5217 "
5218 {
5219 rtx aligned_mem, bitnum;
5220 get_aligned_mem (operands[0], &aligned_mem, &bitnum);
5221 emit_insn (gen_aligned_store (aligned_mem, operands[1], bitnum,
5222 operands[2], operands[3]));
5223 DONE;
5224 }")
5225 \f
5226 ;; Bit field extract patterns which use ext[wlq][lh]
5227
5228 (define_expand "extv"
5229 [(set (match_operand:DI 0 "register_operand" "")
5230 (sign_extract:DI (match_operand:QI 1 "memory_operand" "")
5231 (match_operand:DI 2 "immediate_operand" "")
5232 (match_operand:DI 3 "immediate_operand" "")))]
5233 ""
5234 "
5235 {
5236 /* We can do 16, 32 and 64 bit fields, if aligned on byte boundaries. */
5237 if (INTVAL (operands[3]) % 8 != 0
5238 || (INTVAL (operands[2]) != 16
5239 && INTVAL (operands[2]) != 32
5240 && INTVAL (operands[2]) != 64))
5241 FAIL;
5242
5243 /* From mips.md: extract_bit_field doesn't verify that our source
5244 matches the predicate, so we force it to be a MEM here. */
5245 if (GET_CODE (operands[1]) != MEM)
5246 FAIL;
5247
5248 alpha_expand_unaligned_load (operands[0], operands[1],
5249 INTVAL (operands[2]) / 8,
5250 INTVAL (operands[3]) / 8, 1);
5251 DONE;
5252 }")
5253
5254 (define_expand "extzv"
5255 [(set (match_operand:DI 0 "register_operand" "")
5256 (zero_extract:DI (match_operand:DI 1 "nonimmediate_operand" "")
5257 (match_operand:DI 2 "immediate_operand" "")
5258 (match_operand:DI 3 "immediate_operand" "")))]
5259 ""
5260 "
5261 {
5262 /* We can do 8, 16, 32 and 64 bit fields, if aligned on byte boundaries. */
5263 if (INTVAL (operands[3]) % 8 != 0
5264 || (INTVAL (operands[2]) != 8
5265 && INTVAL (operands[2]) != 16
5266 && INTVAL (operands[2]) != 32
5267 && INTVAL (operands[2]) != 64))
5268 FAIL;
5269
5270 if (GET_CODE (operands[1]) == MEM)
5271 {
5272 /* Fail 8 bit fields, falling back on a simple byte load. */
5273 if (INTVAL (operands[2]) == 8)
5274 FAIL;
5275
5276 alpha_expand_unaligned_load (operands[0], operands[1],
5277 INTVAL (operands[2]) / 8,
5278 INTVAL (operands[3]) / 8, 0);
5279 DONE;
5280 }
5281 }")
5282
5283 (define_expand "insv"
5284 [(set (zero_extract:DI (match_operand:QI 0 "memory_operand" "")
5285 (match_operand:DI 1 "immediate_operand" "")
5286 (match_operand:DI 2 "immediate_operand" ""))
5287 (match_operand:DI 3 "register_operand" ""))]
5288 ""
5289 "
5290 {
5291 /* We can do 16, 32 and 64 bit fields, if aligned on byte boundaries. */
5292 if (INTVAL (operands[2]) % 8 != 0
5293 || (INTVAL (operands[1]) != 16
5294 && INTVAL (operands[1]) != 32
5295 && INTVAL (operands[1]) != 64))
5296 FAIL;
5297
5298 /* From mips.md: store_bit_field doesn't verify that our source
5299 matches the predicate, so we force it to be a MEM here. */
5300 if (GET_CODE (operands[0]) != MEM)
5301 FAIL;
5302
5303 alpha_expand_unaligned_store (operands[0], operands[3],
5304 INTVAL (operands[1]) / 8,
5305 INTVAL (operands[2]) / 8);
5306 DONE;
5307 }")
5308
5309
5310
5311 ;; Block move/clear, see alpha.c for more details.
5312 ;; Argument 0 is the destination
5313 ;; Argument 1 is the source
5314 ;; Argument 2 is the length
5315 ;; Argument 3 is the alignment
5316
5317 (define_expand "movstrqi"
5318 [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
5319 (match_operand:BLK 1 "memory_operand" ""))
5320 (use (match_operand:DI 2 "immediate_operand" ""))
5321 (use (match_operand:DI 3 "immediate_operand" ""))])]
5322 ""
5323 "
5324 {
5325 if (alpha_expand_block_move (operands))
5326 DONE;
5327 else
5328 FAIL;
5329 }")
5330
5331 (define_expand "clrstrqi"
5332 [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
5333 (const_int 0))
5334 (use (match_operand:DI 1 "immediate_operand" ""))
5335 (use (match_operand:DI 2 "immediate_operand" ""))])]
5336 ""
5337 "
5338 {
5339 if (alpha_expand_block_clear (operands))
5340 DONE;
5341 else
5342 FAIL;
5343 }")
5344 \f
5345 ;; Subroutine of stack space allocation. Perform a stack probe.
5346 (define_expand "probe_stack"
5347 [(set (match_dup 1) (match_operand:DI 0 "const_int_operand" ""))]
5348 ""
5349 "
5350 {
5351 operands[1] = gen_rtx_MEM (DImode, plus_constant (stack_pointer_rtx,
5352 INTVAL (operands[0])));
5353 MEM_VOLATILE_P (operands[1]) = 1;
5354
5355 operands[0] = const0_rtx;
5356 }")
5357
5358 ;; This is how we allocate stack space. If we are allocating a
5359 ;; constant amount of space and we know it is less than 4096
5360 ;; bytes, we need do nothing.
5361 ;;
5362 ;; If it is more than 4096 bytes, we need to probe the stack
5363 ;; periodically.
5364 (define_expand "allocate_stack"
5365 [(set (reg:DI 30)
5366 (plus:DI (reg:DI 30)
5367 (match_operand:DI 1 "reg_or_cint_operand" "")))
5368 (set (match_operand:DI 0 "register_operand" "=r")
5369 (match_dup 2))]
5370 ""
5371 "
5372 {
5373 if (GET_CODE (operands[1]) == CONST_INT
5374 && INTVAL (operands[1]) < 32768)
5375 {
5376 if (INTVAL (operands[1]) >= 4096)
5377 {
5378 /* We do this the same way as in the prologue and generate explicit
5379 probes. Then we update the stack by the constant. */
5380
5381 int probed = 4096;
5382
5383 emit_insn (gen_probe_stack (GEN_INT (- probed)));
5384 while (probed + 8192 < INTVAL (operands[1]))
5385 emit_insn (gen_probe_stack (GEN_INT (- (probed += 8192))));
5386
5387 if (probed + 4096 < INTVAL (operands[1]))
5388 emit_insn (gen_probe_stack (GEN_INT (- INTVAL(operands[1]))));
5389 }
5390
5391 operands[1] = GEN_INT (- INTVAL (operands[1]));
5392 operands[2] = virtual_stack_dynamic_rtx;
5393 }
5394 else
5395 {
5396 rtx out_label = 0;
5397 rtx loop_label = gen_label_rtx ();
5398 rtx want = gen_reg_rtx (Pmode);
5399 rtx tmp = gen_reg_rtx (Pmode);
5400 rtx memref;
5401
5402 emit_insn (gen_subdi3 (want, stack_pointer_rtx,
5403 force_reg (Pmode, operands[1])));
5404 emit_insn (gen_adddi3 (tmp, stack_pointer_rtx, GEN_INT (-4096)));
5405
5406 if (GET_CODE (operands[1]) != CONST_INT)
5407 {
5408 out_label = gen_label_rtx ();
5409 emit_insn (gen_cmpdi (want, tmp));
5410 emit_jump_insn (gen_bgeu (out_label));
5411 }
5412
5413 emit_label (loop_label);
5414 memref = gen_rtx_MEM (DImode, tmp);
5415 MEM_VOLATILE_P (memref) = 1;
5416 emit_move_insn (memref, const0_rtx);
5417 emit_insn (gen_adddi3 (tmp, tmp, GEN_INT(-8192)));
5418 emit_insn (gen_cmpdi (tmp, want));
5419 emit_jump_insn (gen_bgtu (loop_label));
5420
5421 memref = gen_rtx_MEM (DImode, want);
5422 MEM_VOLATILE_P (memref) = 1;
5423 emit_move_insn (memref, const0_rtx);
5424
5425 if (out_label)
5426 emit_label (out_label);
5427
5428 emit_move_insn (stack_pointer_rtx, want);
5429 emit_move_insn (operands[0], virtual_stack_dynamic_rtx);
5430 DONE;
5431 }
5432 }")
5433
5434 ;; This is used by alpha_expand_prolog to do the same thing as above,
5435 ;; except we cannot at that time generate new basic blocks, so we hide
5436 ;; the loop in this one insn.
5437
5438 (define_insn "prologue_stack_probe_loop"
5439 [(unspec_volatile [(match_operand:DI 0 "register_operand" "r")
5440 (match_operand:DI 1 "register_operand" "r")] 5)]
5441 ""
5442 "*
5443 {
5444 operands[2] = gen_label_rtx ();
5445 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, \"L\",
5446 CODE_LABEL_NUMBER (operands[2]));
5447
5448 return \"stq $31,-8192(%1)\;subq %0,1,%0\;lda %1,-8192(%1)\;bne %0,%l2\";
5449 }"
5450 [(set_attr "length" "16")
5451 (set_attr "type" "multi")])
5452
5453 (define_expand "prologue"
5454 [(clobber (const_int 0))]
5455 ""
5456 "alpha_expand_prologue (); DONE;")
5457
5458 (define_insn "init_fp"
5459 [(set (match_operand:DI 0 "register_operand" "=r")
5460 (match_operand:DI 1 "register_operand" "r"))
5461 (clobber (mem:BLK (match_operand:DI 2 "register_operand" "=r")))]
5462 ""
5463 "mov %1,%0")
5464
5465 (define_expand "epilogue"
5466 [(return)]
5467 ""
5468 "alpha_expand_epilogue ();")
5469
5470 (define_expand "sibcall_epilogue"
5471 [(return)]
5472 "!TARGET_OPEN_VMS && !TARGET_WINDOWS_NT"
5473 "alpha_expand_epilogue (); DONE;")
5474
5475 (define_expand "eh_epilogue"
5476 [(use (match_operand:DI 0 "register_operand" "r"))
5477 (use (match_operand:DI 1 "register_operand" "r"))
5478 (use (match_operand:DI 2 "register_operand" "r"))]
5479 "! TARGET_OPEN_VMS"
5480 "
5481 {
5482 cfun->machine->eh_epilogue_sp_ofs = operands[1];
5483 if (GET_CODE (operands[2]) != REG || REGNO (operands[2]) != 26)
5484 {
5485 rtx ra = gen_rtx_REG (Pmode, 26);
5486 emit_move_insn (ra, operands[2]);
5487 operands[2] = ra;
5488 }
5489 }")
5490
5491 ;; In creating a large stack frame, NT _must_ use ldah+lda to load
5492 ;; the frame size into a register. We use this pattern to ensure
5493 ;; we get lda instead of addq.
5494 (define_insn "nt_lda"
5495 [(set (match_operand:DI 0 "register_operand" "=r")
5496 (unspec:DI [(match_dup 0)
5497 (match_operand:DI 1 "const_int_operand" "n")] 6))]
5498 ""
5499 "lda %0,%1(%0)")
5500
5501 (define_expand "builtin_longjmp"
5502 [(unspec_volatile [(match_operand:DI 0 "register_operand" "r")] 3)]
5503 "! TARGET_OPEN_VMS && ! TARGET_WINDOWS_NT"
5504 "
5505 {
5506 /* The elements of the buffer are, in order: */
5507 rtx fp = gen_rtx_MEM (Pmode, operands[0]);
5508 rtx lab = gen_rtx_MEM (Pmode, plus_constant (operands[0], 8));
5509 rtx stack = gen_rtx_MEM (Pmode, plus_constant (operands[0], 16));
5510 rtx pv = gen_rtx_REG (Pmode, 27);
5511
5512 /* This bit is the same as expand_builtin_longjmp. */
5513 emit_move_insn (hard_frame_pointer_rtx, fp);
5514 emit_move_insn (pv, lab);
5515 emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX);
5516 emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
5517 emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
5518
5519 /* Load the label we are jumping through into $27 so that we know
5520 where to look for it when we get back to setjmp's function for
5521 restoring the gp. */
5522 emit_indirect_jump (pv);
5523 DONE;
5524 }")
5525
5526 (define_insn "builtin_setjmp_receiver"
5527 [(unspec_volatile [(label_ref (match_operand 0 "" ""))] 2)]
5528 "! TARGET_OPEN_VMS && ! TARGET_WINDOWS_NT && TARGET_AS_CAN_SUBTRACT_LABELS"
5529 "\\n$LSJ%=:\;ldgp $29,$LSJ%=-%l0($27)"
5530 [(set_attr "length" "8")
5531 (set_attr "type" "multi")])
5532
5533 (define_insn ""
5534 [(unspec_volatile [(label_ref (match_operand 0 "" ""))] 2)]
5535 "! TARGET_OPEN_VMS && ! TARGET_WINDOWS_NT"
5536 "br $29,$LSJ%=\\n$LSJ%=:\;ldgp $29,0($29)"
5537 [(set_attr "length" "12")
5538 (set_attr "type" "multi")])
5539
5540 (define_insn "exception_receiver"
5541 [(unspec_volatile [(const_int 0)] 7)]
5542 "! TARGET_OPEN_VMS && ! TARGET_WINDOWS_NT"
5543 "br $29,$LSJ%=\\n$LSJ%=:\;ldgp $29,0($29)"
5544 [(set_attr "length" "12")
5545 (set_attr "type" "multi")])
5546
5547 (define_expand "nonlocal_goto_receiver"
5548 [(unspec_volatile [(const_int 0)] 1)
5549 (set (reg:DI 27) (mem:DI (reg:DI 29)))
5550 (unspec_volatile [(const_int 0)] 1)
5551 (use (reg:DI 27))]
5552 "TARGET_OPEN_VMS"
5553 "")
5554
5555 (define_insn "arg_home"
5556 [(unspec [(const_int 0)] 0)
5557 (use (reg:DI 1))
5558 (use (reg:DI 25))
5559 (use (reg:DI 16))
5560 (use (reg:DI 17))
5561 (use (reg:DI 18))
5562 (use (reg:DI 19))
5563 (use (reg:DI 20))
5564 (use (reg:DI 21))
5565 (use (reg:DI 48))
5566 (use (reg:DI 49))
5567 (use (reg:DI 50))
5568 (use (reg:DI 51))
5569 (use (reg:DI 52))
5570 (use (reg:DI 53))
5571 (clobber (mem:BLK (const_int 0)))
5572 (clobber (reg:DI 24))
5573 (clobber (reg:DI 25))
5574 (clobber (reg:DI 0))]
5575 "TARGET_OPEN_VMS"
5576 "lda $0,OTS$HOME_ARGS\;ldq $0,8($0)\;jsr $0,OTS$HOME_ARGS"
5577 [(set_attr "length" "16")
5578 (set_attr "type" "multi")])
5579
5580 ;; Close the trap shadow of preceeding instructions. This is generated
5581 ;; by alpha_reorg.
5582
5583 (define_insn "trapb"
5584 [(unspec_volatile [(const_int 0)] 4)]
5585 ""
5586 "trapb"
5587 [(set_attr "type" "misc")])
5588
5589 ;; No-op instructions used by machine-dependant reorg to preserve
5590 ;; alignment for instruction issue.
5591
5592 (define_insn "nop"
5593 [(const_int 0)]
5594 ""
5595 "nop"
5596 [(set_attr "type" "ilog")])
5597
5598 (define_insn "fnop"
5599 [(const_int 1)]
5600 "TARGET_FP"
5601 "fnop"
5602 [(set_attr "type" "fcpys")])
5603
5604 (define_insn "unop"
5605 [(const_int 2)]
5606 ""
5607 "unop")
5608
5609 (define_insn "realign"
5610 [(unspec_volatile [(match_operand 0 "immediate_operand" "i")] 6)]
5611 ""
5612 ".align %0 #realign")
5613
5614 ;; The call patterns are at the end of the file because their
5615 ;; wildcard operand0 interferes with nice recognition.
5616
5617 (define_insn "*call_value_osf_1"
5618 [(set (match_operand 0 "" "")
5619 (call (mem:DI (match_operand:DI 1 "call_operand" "r,R,i"))
5620 (match_operand 2 "" "")))
5621 (clobber (reg:DI 27))
5622 (clobber (reg:DI 26))]
5623 "! TARGET_WINDOWS_NT && ! TARGET_OPEN_VMS"
5624 "@
5625 jsr $26,($27),0\;ldgp $29,0($26)
5626 bsr $26,$%1..ng
5627 jsr $26,%1\;ldgp $29,0($26)"
5628 [(set_attr "type" "jsr")
5629 (set_attr "length" "12,*,16")])
5630
5631 (define_insn "*sibcall_value_osf_1"
5632 [(set (match_operand 0 "" "")
5633 (call (mem:DI (match_operand:DI 1 "call_operand" "R,i"))
5634 (match_operand 2 "" "")))]
5635 "! TARGET_WINDOWS_NT && ! TARGET_OPEN_VMS"
5636 "@
5637 br $31,$%1..ng
5638 jmp $31,%1"
5639 [(set_attr "type" "jsr")
5640 (set_attr "length" "*,8")])
5641
5642 (define_insn "*call_value_nt_1"
5643 [(set (match_operand 0 "" "")
5644 (call (mem:DI (match_operand:DI 1 "call_operand" "r,R,i"))
5645 (match_operand 2 "" "")))
5646 (clobber (reg:DI 26))]
5647 "TARGET_WINDOWS_NT"
5648 "@
5649 jsr $26,(%1)
5650 bsr $26,%1
5651 jsr $26,%1"
5652 [(set_attr "type" "jsr")
5653 (set_attr "length" "*,*,12")])
5654
5655 (define_insn "*call_value_vms_1"
5656 [(set (match_operand 0 "" "")
5657 (call (mem:DI (match_operand:DI 1 "call_operand" "r,i"))
5658 (match_operand 2 "" "")))
5659 (use (match_operand:DI 3 "nonimmediate_operand" "r,m"))
5660 (use (reg:DI 25))
5661 (use (reg:DI 26))
5662 (clobber (reg:DI 27))]
5663 "TARGET_OPEN_VMS"
5664 "@
5665 mov %3,$27\;jsr $26,0\;ldq $27,0($29)
5666 ldq $27,%3\;jsr $26,%1\;ldq $27,0($29)"
5667 [(set_attr "type" "jsr")
5668 (set_attr "length" "12,16")])
5669 \f
5670 ;; Peepholes go at the end.
5671
5672 ;; Optimize sign-extension of SImode loads. This shows up in the wake of
5673 ;; reload when converting fp->int.
5674
5675 (define_peephole2
5676 [(set (match_operand:SI 0 "register_operand" "=r")
5677 (match_operand:SI 1 "memory_operand" "m"))
5678 (set (match_operand:DI 2 "register_operand" "=r")
5679 (sign_extend:DI (match_dup 0)))]
5680 "dead_or_set_p (next_nonnote_insn (insn), operands[0])"
5681 [(set (match_dup 2)
5682 (sign_extend:DI (match_dup 1)))]
5683 "")
5684
5685 (define_peephole2
5686 [(set (match_operand:SI 0 "register_operand" "=r")
5687 (match_operand:SI 1 "hard_fp_register_operand" "f"))
5688 (set (match_operand:DI 2 "register_operand" "=r")
5689 (sign_extend:DI (match_dup 0)))]
5690 "TARGET_FIX && dead_or_set_p (next_nonnote_insn (insn), operands[0])"
5691 [(set (match_dup 2)
5692 (sign_extend:DI (match_dup 1)))]
5693 "")