re PR target/10067 (GCC-3.2.2 outputs invalid asm on sparc64)
[gcc.git] / gcc / config / sparc / sparc.md
1 ;; Machine description for SPARC chip for GNU C compiler
2 ;; Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 ;; 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4 ;; Contributed by Michael Tiemann (tiemann@cygnus.com)
5 ;; 64 bit SPARC V9 support by Michael Tiemann, Jim Wilson, and Doug Evans,
6 ;; at Cygnus Support.
7
8 ;; This file is part of GNU CC.
9
10 ;; GNU CC is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU CC is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU CC; see the file COPYING. If not, write to
22 ;; the Free Software Foundation, 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;- See file "rtl.def" for documentation on define_insn, match_*, et. al.
26
27 (define_constants
28 [(UNSPEC_MOVE_PIC 0)
29 (UNSPEC_UPDATE_RETURN 1)
30 (UNSPEC_GET_PC 2)
31 (UNSPEC_MOVE_PIC_LABEL 5)
32 (UNSPEC_SETH44 6)
33 (UNSPEC_SETM44 7)
34 (UNSPEC_SETHH 9)
35 (UNSPEC_SETLM 10)
36 (UNSPEC_EMB_HISUM 11)
37 (UNSPEC_EMB_TEXTUHI 13)
38 (UNSPEC_EMB_TEXTHI 14)
39 (UNSPEC_EMB_TEXTULO 15)
40 (UNSPEC_EMB_SETHM 18)
41 ])
42
43 (define_constants
44 [(UNSPECV_BLOCKAGE 0)
45 (UNSPECV_FLUSHW 1)
46 (UNSPECV_GOTO 2)
47 (UNSPECV_GOTO_V9 3)
48 (UNSPECV_FLUSH 4)
49 (UNSPECV_SETJMP 5)
50 ])
51
52 ;; The upper 32 fp regs on the v9 can't hold SFmode values. To deal with this
53 ;; a second register class, EXTRA_FP_REGS, exists for the v9 chip. The name
54 ;; is a bit of a misnomer as it covers all 64 fp regs. The corresponding
55 ;; constraint letter is 'e'. To avoid any confusion, 'e' is used instead of
56 ;; 'f' for all DF/TFmode values, including those that are specific to the v8.
57
58 ;; Attribute for cpu type.
59 ;; These must match the values for enum processor_type in sparc.h.
60 (define_attr "cpu"
61 "v7,
62 cypress,
63 v8,
64 supersparc,
65 sparclite,f930,f934,
66 hypersparc,sparclite86x,
67 sparclet,tsc701,
68 v9,
69 ultrasparc,
70 ultrasparc3"
71 (const (symbol_ref "sparc_cpu_attr")))
72
73 ;; Attribute for the instruction set.
74 ;; At present we only need to distinguish v9/!v9, but for clarity we
75 ;; test TARGET_V8 too.
76 (define_attr "isa" "v6,v8,v9,sparclet"
77 (const
78 (cond [(symbol_ref "TARGET_V9") (const_string "v9")
79 (symbol_ref "TARGET_V8") (const_string "v8")
80 (symbol_ref "TARGET_SPARCLET") (const_string "sparclet")]
81 (const_string "v6"))))
82
83 ;; Architecture size.
84 (define_attr "arch" "arch32bit,arch64bit"
85 (const
86 (cond [(symbol_ref "TARGET_ARCH64") (const_string "arch64bit")]
87 (const_string "arch32bit"))))
88
89 ;; Insn type.
90
91 (define_attr "type"
92 "ialu,compare,shift,
93 load,sload,store,
94 uncond_branch,branch,call,sibcall,call_no_delay_slot,
95 imul,idiv,
96 fpload,fpstore,
97 fp,fpmove,
98 fpcmove,fpcrmove,
99 fpcmp,
100 fpmul,fpdivs,fpdivd,
101 fpsqrts,fpsqrtd,
102 cmove,
103 ialuX,
104 multi,flushw,iflush,trap"
105 (const_string "ialu"))
106
107 ;; true if branch/call has empty delay slot and will emit a nop in it
108 (define_attr "empty_delay_slot" "false,true"
109 (symbol_ref "empty_delay_slot (insn)"))
110
111 (define_attr "branch_type" "none,icc,fcc,reg" (const_string "none"))
112
113 (define_attr "pic" "false,true"
114 (symbol_ref "flag_pic != 0"))
115
116 (define_attr "current_function_calls_alloca" "false,true"
117 (symbol_ref "current_function_calls_alloca != 0"))
118
119 (define_attr "flat" "false,true"
120 (symbol_ref "TARGET_FLAT != 0"))
121
122 ;; Length (in # of insns).
123 (define_attr "length" ""
124 (cond [(eq_attr "type" "uncond_branch,call,sibcall")
125 (if_then_else (eq_attr "empty_delay_slot" "true")
126 (const_int 2)
127 (const_int 1))
128 (eq_attr "branch_type" "icc")
129 (if_then_else (match_operand 0 "noov_compare64_op" "")
130 (if_then_else (lt (pc) (match_dup 1))
131 (if_then_else (lt (minus (match_dup 1) (pc)) (const_int 260000))
132 (if_then_else (eq_attr "empty_delay_slot" "true")
133 (const_int 2)
134 (const_int 1))
135 (if_then_else (eq_attr "empty_delay_slot" "true")
136 (const_int 4)
137 (const_int 3)))
138 (if_then_else (lt (minus (pc) (match_dup 1)) (const_int 260000))
139 (if_then_else (eq_attr "empty_delay_slot" "true")
140 (const_int 2)
141 (const_int 1))
142 (if_then_else (eq_attr "empty_delay_slot" "true")
143 (const_int 4)
144 (const_int 3))))
145 (if_then_else (eq_attr "empty_delay_slot" "true")
146 (const_int 2)
147 (const_int 1)))
148 (eq_attr "branch_type" "fcc")
149 (if_then_else (match_operand 0 "fcc0_reg_operand" "")
150 (if_then_else (eq_attr "empty_delay_slot" "true")
151 (const_int 2)
152 (const_int 1))
153 (if_then_else (lt (pc) (match_dup 2))
154 (if_then_else (lt (minus (match_dup 2) (pc)) (const_int 260000))
155 (if_then_else (eq_attr "empty_delay_slot" "true")
156 (const_int 2)
157 (const_int 1))
158 (if_then_else (eq_attr "empty_delay_slot" "true")
159 (const_int 4)
160 (const_int 3)))
161 (if_then_else (lt (minus (pc) (match_dup 2)) (const_int 260000))
162 (if_then_else (eq_attr "empty_delay_slot" "true")
163 (const_int 2)
164 (const_int 1))
165 (if_then_else (eq_attr "empty_delay_slot" "true")
166 (const_int 4)
167 (const_int 3)))))
168 (eq_attr "branch_type" "reg")
169 (if_then_else (lt (pc) (match_dup 2))
170 (if_then_else (lt (minus (match_dup 2) (pc)) (const_int 32000))
171 (if_then_else (eq_attr "empty_delay_slot" "true")
172 (const_int 2)
173 (const_int 1))
174 (if_then_else (eq_attr "empty_delay_slot" "true")
175 (const_int 4)
176 (const_int 3)))
177 (if_then_else (lt (minus (pc) (match_dup 2)) (const_int 32000))
178 (if_then_else (eq_attr "empty_delay_slot" "true")
179 (const_int 2)
180 (const_int 1))
181 (if_then_else (eq_attr "empty_delay_slot" "true")
182 (const_int 4)
183 (const_int 3))))
184 ] (const_int 1)))
185
186 ;; FP precision.
187 (define_attr "fptype" "single,double" (const_string "single"))
188
189 ;; UltraSPARC-III integer load type.
190 (define_attr "us3load_type" "2cycle,3cycle" (const_string "2cycle"))
191
192 (define_asm_attributes
193 [(set_attr "length" "2")
194 (set_attr "type" "multi")])
195
196 ;; Attributes for instruction and branch scheduling
197
198 (define_attr "in_call_delay" "false,true"
199 (cond [(eq_attr "type" "uncond_branch,branch,call,sibcall,call_no_delay_slot,multi")
200 (const_string "false")
201 (eq_attr "type" "load,fpload,store,fpstore")
202 (if_then_else (eq_attr "length" "1")
203 (const_string "true")
204 (const_string "false"))]
205 (if_then_else (eq_attr "length" "1")
206 (const_string "true")
207 (const_string "false"))))
208
209 (define_delay (eq_attr "type" "call")
210 [(eq_attr "in_call_delay" "true") (nil) (nil)])
211
212 (define_attr "eligible_for_sibcall_delay" "false,true"
213 (symbol_ref "eligible_for_sibcall_delay (insn)"))
214
215 (define_delay (eq_attr "type" "sibcall")
216 [(eq_attr "eligible_for_sibcall_delay" "true") (nil) (nil)])
217
218 (define_attr "leaf_function" "false,true"
219 (const (symbol_ref "current_function_uses_only_leaf_regs")))
220
221 ;; ??? Should implement the notion of predelay slots for floating point
222 ;; branches. This would allow us to remove the nop always inserted before
223 ;; a floating point branch.
224
225 ;; ??? It is OK for fill_simple_delay_slots to put load/store instructions
226 ;; in a delay slot, but it is not OK for fill_eager_delay_slots to do so.
227 ;; This is because doing so will add several pipeline stalls to the path
228 ;; that the load/store did not come from. Unfortunately, there is no way
229 ;; to prevent fill_eager_delay_slots from using load/store without completely
230 ;; disabling them. For the SPEC benchmark set, this is a serious lose,
231 ;; because it prevents us from moving back the final store of inner loops.
232
233 (define_attr "in_branch_delay" "false,true"
234 (if_then_else (and (eq_attr "type" "!uncond_branch,branch,call,sibcall,call_no_delay_slot,multi")
235 (eq_attr "length" "1"))
236 (const_string "true")
237 (const_string "false")))
238
239 (define_attr "in_uncond_branch_delay" "false,true"
240 (if_then_else (and (eq_attr "type" "!uncond_branch,branch,call,sibcall,call_no_delay_slot,multi")
241 (eq_attr "length" "1"))
242 (const_string "true")
243 (const_string "false")))
244
245 (define_attr "in_annul_branch_delay" "false,true"
246 (if_then_else (and (eq_attr "type" "!uncond_branch,branch,call,sibcall,call_no_delay_slot,multi")
247 (eq_attr "length" "1"))
248 (const_string "true")
249 (const_string "false")))
250
251 (define_delay (eq_attr "type" "branch")
252 [(eq_attr "in_branch_delay" "true")
253 (nil) (eq_attr "in_annul_branch_delay" "true")])
254
255 (define_delay (eq_attr "type" "uncond_branch")
256 [(eq_attr "in_uncond_branch_delay" "true")
257 (nil) (nil)])
258
259 ;; Include SPARC DFA schedulers
260
261 (include "cypress.md")
262 (include "supersparc.md")
263 (include "hypersparc.md")
264 (include "sparclet.md")
265 (include "ultra1_2.md")
266 (include "ultra3.md")
267
268 \f
269 ;; Compare instructions.
270 ;; This controls RTL generation and register allocation.
271
272 ;; We generate RTL for comparisons and branches by having the cmpxx
273 ;; patterns store away the operands. Then, the scc and bcc patterns
274 ;; emit RTL for both the compare and the branch.
275 ;;
276 ;; We do this because we want to generate different code for an sne and
277 ;; seq insn. In those cases, if the second operand of the compare is not
278 ;; const0_rtx, we want to compute the xor of the two operands and test
279 ;; it against zero.
280 ;;
281 ;; We start with the DEFINE_EXPANDs, then the DEFINE_INSNs to match
282 ;; the patterns. Finally, we have the DEFINE_SPLITs for some of the scc
283 ;; insns that actually require more than one machine instruction.
284
285 ;; Put cmpsi first among compare insns so it matches two CONST_INT operands.
286
287 (define_expand "cmpsi"
288 [(set (reg:CC 100)
289 (compare:CC (match_operand:SI 0 "register_operand" "")
290 (match_operand:SI 1 "arith_operand" "")))]
291 ""
292 {
293 sparc_compare_op0 = operands[0];
294 sparc_compare_op1 = operands[1];
295 DONE;
296 })
297
298 (define_expand "cmpdi"
299 [(set (reg:CCX 100)
300 (compare:CCX (match_operand:DI 0 "register_operand" "")
301 (match_operand:DI 1 "arith_double_operand" "")))]
302 "TARGET_ARCH64"
303 {
304 sparc_compare_op0 = operands[0];
305 sparc_compare_op1 = operands[1];
306 DONE;
307 })
308
309 (define_expand "cmpsf"
310 ;; The 96 here isn't ever used by anyone.
311 [(set (reg:CCFP 96)
312 (compare:CCFP (match_operand:SF 0 "register_operand" "")
313 (match_operand:SF 1 "register_operand" "")))]
314 "TARGET_FPU"
315 {
316 sparc_compare_op0 = operands[0];
317 sparc_compare_op1 = operands[1];
318 DONE;
319 })
320
321 (define_expand "cmpdf"
322 ;; The 96 here isn't ever used by anyone.
323 [(set (reg:CCFP 96)
324 (compare:CCFP (match_operand:DF 0 "register_operand" "")
325 (match_operand:DF 1 "register_operand" "")))]
326 "TARGET_FPU"
327 {
328 sparc_compare_op0 = operands[0];
329 sparc_compare_op1 = operands[1];
330 DONE;
331 })
332
333 (define_expand "cmptf"
334 ;; The 96 here isn't ever used by anyone.
335 [(set (reg:CCFP 96)
336 (compare:CCFP (match_operand:TF 0 "register_operand" "")
337 (match_operand:TF 1 "register_operand" "")))]
338 "TARGET_FPU"
339 {
340 sparc_compare_op0 = operands[0];
341 sparc_compare_op1 = operands[1];
342 DONE;
343 })
344
345 ;; Now the compare DEFINE_INSNs.
346
347 (define_insn "*cmpsi_insn"
348 [(set (reg:CC 100)
349 (compare:CC (match_operand:SI 0 "register_operand" "r")
350 (match_operand:SI 1 "arith_operand" "rI")))]
351 ""
352 "cmp\t%0, %1"
353 [(set_attr "type" "compare")])
354
355 (define_insn "*cmpdi_sp64"
356 [(set (reg:CCX 100)
357 (compare:CCX (match_operand:DI 0 "register_operand" "r")
358 (match_operand:DI 1 "arith_double_operand" "rHI")))]
359 "TARGET_ARCH64"
360 "cmp\t%0, %1"
361 [(set_attr "type" "compare")])
362
363 (define_insn "*cmpsf_fpe"
364 [(set (match_operand:CCFPE 0 "fcc_reg_operand" "=c")
365 (compare:CCFPE (match_operand:SF 1 "register_operand" "f")
366 (match_operand:SF 2 "register_operand" "f")))]
367 "TARGET_FPU"
368 {
369 if (TARGET_V9)
370 return "fcmpes\t%0, %1, %2";
371 return "fcmpes\t%1, %2";
372 }
373 [(set_attr "type" "fpcmp")])
374
375 (define_insn "*cmpdf_fpe"
376 [(set (match_operand:CCFPE 0 "fcc_reg_operand" "=c")
377 (compare:CCFPE (match_operand:DF 1 "register_operand" "e")
378 (match_operand:DF 2 "register_operand" "e")))]
379 "TARGET_FPU"
380 {
381 if (TARGET_V9)
382 return "fcmped\t%0, %1, %2";
383 return "fcmped\t%1, %2";
384 }
385 [(set_attr "type" "fpcmp")
386 (set_attr "fptype" "double")])
387
388 (define_insn "*cmptf_fpe"
389 [(set (match_operand:CCFPE 0 "fcc_reg_operand" "=c")
390 (compare:CCFPE (match_operand:TF 1 "register_operand" "e")
391 (match_operand:TF 2 "register_operand" "e")))]
392 "TARGET_FPU && TARGET_HARD_QUAD"
393 {
394 if (TARGET_V9)
395 return "fcmpeq\t%0, %1, %2";
396 return "fcmpeq\t%1, %2";
397 }
398 [(set_attr "type" "fpcmp")])
399
400 (define_insn "*cmpsf_fp"
401 [(set (match_operand:CCFP 0 "fcc_reg_operand" "=c")
402 (compare:CCFP (match_operand:SF 1 "register_operand" "f")
403 (match_operand:SF 2 "register_operand" "f")))]
404 "TARGET_FPU"
405 {
406 if (TARGET_V9)
407 return "fcmps\t%0, %1, %2";
408 return "fcmps\t%1, %2";
409 }
410 [(set_attr "type" "fpcmp")])
411
412 (define_insn "*cmpdf_fp"
413 [(set (match_operand:CCFP 0 "fcc_reg_operand" "=c")
414 (compare:CCFP (match_operand:DF 1 "register_operand" "e")
415 (match_operand:DF 2 "register_operand" "e")))]
416 "TARGET_FPU"
417 {
418 if (TARGET_V9)
419 return "fcmpd\t%0, %1, %2";
420 return "fcmpd\t%1, %2";
421 }
422 [(set_attr "type" "fpcmp")
423 (set_attr "fptype" "double")])
424
425 (define_insn "*cmptf_fp"
426 [(set (match_operand:CCFP 0 "fcc_reg_operand" "=c")
427 (compare:CCFP (match_operand:TF 1 "register_operand" "e")
428 (match_operand:TF 2 "register_operand" "e")))]
429 "TARGET_FPU && TARGET_HARD_QUAD"
430 {
431 if (TARGET_V9)
432 return "fcmpq\t%0, %1, %2";
433 return "fcmpq\t%1, %2";
434 }
435 [(set_attr "type" "fpcmp")])
436 \f
437 ;; Next come the scc insns. For seq, sne, sgeu, and sltu, we can do this
438 ;; without jumps using the addx/subx instructions. For seq/sne on v9 we use
439 ;; the same code as v8 (the addx/subx method has more applications). The
440 ;; exception to this is "reg != 0" which can be done in one instruction on v9
441 ;; (so we do it). For the rest, on v9 we use conditional moves; on v8, we do
442 ;; branches.
443
444 ;; Seq_special[_xxx] and sne_special[_xxx] clobber the CC reg, because they
445 ;; generate addcc/subcc instructions.
446
447 (define_expand "seqsi_special"
448 [(set (match_dup 3)
449 (xor:SI (match_operand:SI 1 "register_operand" "")
450 (match_operand:SI 2 "register_operand" "")))
451 (parallel [(set (match_operand:SI 0 "register_operand" "")
452 (eq:SI (match_dup 3) (const_int 0)))
453 (clobber (reg:CC 100))])]
454 ""
455 { operands[3] = gen_reg_rtx (SImode); })
456
457 (define_expand "seqdi_special"
458 [(set (match_dup 3)
459 (xor:DI (match_operand:DI 1 "register_operand" "")
460 (match_operand:DI 2 "register_operand" "")))
461 (set (match_operand:DI 0 "register_operand" "")
462 (eq:DI (match_dup 3) (const_int 0)))]
463 "TARGET_ARCH64"
464 { operands[3] = gen_reg_rtx (DImode); })
465
466 (define_expand "snesi_special"
467 [(set (match_dup 3)
468 (xor:SI (match_operand:SI 1 "register_operand" "")
469 (match_operand:SI 2 "register_operand" "")))
470 (parallel [(set (match_operand:SI 0 "register_operand" "")
471 (ne:SI (match_dup 3) (const_int 0)))
472 (clobber (reg:CC 100))])]
473 ""
474 { operands[3] = gen_reg_rtx (SImode); })
475
476 (define_expand "snedi_special"
477 [(set (match_dup 3)
478 (xor:DI (match_operand:DI 1 "register_operand" "")
479 (match_operand:DI 2 "register_operand" "")))
480 (set (match_operand:DI 0 "register_operand" "")
481 (ne:DI (match_dup 3) (const_int 0)))]
482 "TARGET_ARCH64"
483 { operands[3] = gen_reg_rtx (DImode); })
484
485 (define_expand "seqdi_special_trunc"
486 [(set (match_dup 3)
487 (xor:DI (match_operand:DI 1 "register_operand" "")
488 (match_operand:DI 2 "register_operand" "")))
489 (set (match_operand:SI 0 "register_operand" "")
490 (eq:SI (match_dup 3) (const_int 0)))]
491 "TARGET_ARCH64"
492 { operands[3] = gen_reg_rtx (DImode); })
493
494 (define_expand "snedi_special_trunc"
495 [(set (match_dup 3)
496 (xor:DI (match_operand:DI 1 "register_operand" "")
497 (match_operand:DI 2 "register_operand" "")))
498 (set (match_operand:SI 0 "register_operand" "")
499 (ne:SI (match_dup 3) (const_int 0)))]
500 "TARGET_ARCH64"
501 { operands[3] = gen_reg_rtx (DImode); })
502
503 (define_expand "seqsi_special_extend"
504 [(set (match_dup 3)
505 (xor:SI (match_operand:SI 1 "register_operand" "")
506 (match_operand:SI 2 "register_operand" "")))
507 (parallel [(set (match_operand:DI 0 "register_operand" "")
508 (eq:DI (match_dup 3) (const_int 0)))
509 (clobber (reg:CC 100))])]
510 "TARGET_ARCH64"
511 { operands[3] = gen_reg_rtx (SImode); })
512
513 (define_expand "snesi_special_extend"
514 [(set (match_dup 3)
515 (xor:SI (match_operand:SI 1 "register_operand" "")
516 (match_operand:SI 2 "register_operand" "")))
517 (parallel [(set (match_operand:DI 0 "register_operand" "")
518 (ne:DI (match_dup 3) (const_int 0)))
519 (clobber (reg:CC 100))])]
520 "TARGET_ARCH64"
521 { operands[3] = gen_reg_rtx (SImode); })
522
523 ;; ??? v9: Operand 0 needs a mode, so SImode was chosen.
524 ;; However, the code handles both SImode and DImode.
525 (define_expand "seq"
526 [(set (match_operand:SI 0 "intreg_operand" "")
527 (eq:SI (match_dup 1) (const_int 0)))]
528 ""
529 {
530 if (GET_MODE (sparc_compare_op0) == SImode)
531 {
532 rtx pat;
533
534 if (GET_MODE (operands[0]) == SImode)
535 pat = gen_seqsi_special (operands[0], sparc_compare_op0,
536 sparc_compare_op1);
537 else if (! TARGET_ARCH64)
538 FAIL;
539 else
540 pat = gen_seqsi_special_extend (operands[0], sparc_compare_op0,
541 sparc_compare_op1);
542 emit_insn (pat);
543 DONE;
544 }
545 else if (GET_MODE (sparc_compare_op0) == DImode)
546 {
547 rtx pat;
548
549 if (! TARGET_ARCH64)
550 FAIL;
551 else if (GET_MODE (operands[0]) == SImode)
552 pat = gen_seqdi_special_trunc (operands[0], sparc_compare_op0,
553 sparc_compare_op1);
554 else
555 pat = gen_seqdi_special (operands[0], sparc_compare_op0,
556 sparc_compare_op1);
557 emit_insn (pat);
558 DONE;
559 }
560 else if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
561 {
562 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, EQ);
563 emit_jump_insn (gen_sne (operands[0]));
564 DONE;
565 }
566 else if (TARGET_V9)
567 {
568 if (gen_v9_scc (EQ, operands))
569 DONE;
570 /* fall through */
571 }
572 FAIL;
573 })
574
575 ;; ??? v9: Operand 0 needs a mode, so SImode was chosen.
576 ;; However, the code handles both SImode and DImode.
577 (define_expand "sne"
578 [(set (match_operand:SI 0 "intreg_operand" "")
579 (ne:SI (match_dup 1) (const_int 0)))]
580 ""
581 {
582 if (GET_MODE (sparc_compare_op0) == SImode)
583 {
584 rtx pat;
585
586 if (GET_MODE (operands[0]) == SImode)
587 pat = gen_snesi_special (operands[0], sparc_compare_op0,
588 sparc_compare_op1);
589 else if (! TARGET_ARCH64)
590 FAIL;
591 else
592 pat = gen_snesi_special_extend (operands[0], sparc_compare_op0,
593 sparc_compare_op1);
594 emit_insn (pat);
595 DONE;
596 }
597 else if (GET_MODE (sparc_compare_op0) == DImode)
598 {
599 rtx pat;
600
601 if (! TARGET_ARCH64)
602 FAIL;
603 else if (GET_MODE (operands[0]) == SImode)
604 pat = gen_snedi_special_trunc (operands[0], sparc_compare_op0,
605 sparc_compare_op1);
606 else
607 pat = gen_snedi_special (operands[0], sparc_compare_op0,
608 sparc_compare_op1);
609 emit_insn (pat);
610 DONE;
611 }
612 else if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
613 {
614 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, NE);
615 emit_jump_insn (gen_sne (operands[0]));
616 DONE;
617 }
618 else if (TARGET_V9)
619 {
620 if (gen_v9_scc (NE, operands))
621 DONE;
622 /* fall through */
623 }
624 FAIL;
625 })
626
627 (define_expand "sgt"
628 [(set (match_operand:SI 0 "intreg_operand" "")
629 (gt:SI (match_dup 1) (const_int 0)))]
630 ""
631 {
632 if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
633 {
634 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, GT);
635 emit_jump_insn (gen_sne (operands[0]));
636 DONE;
637 }
638 else if (TARGET_V9)
639 {
640 if (gen_v9_scc (GT, operands))
641 DONE;
642 /* fall through */
643 }
644 FAIL;
645 })
646
647 (define_expand "slt"
648 [(set (match_operand:SI 0 "intreg_operand" "")
649 (lt:SI (match_dup 1) (const_int 0)))]
650 ""
651 {
652 if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
653 {
654 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, LT);
655 emit_jump_insn (gen_sne (operands[0]));
656 DONE;
657 }
658 else if (TARGET_V9)
659 {
660 if (gen_v9_scc (LT, operands))
661 DONE;
662 /* fall through */
663 }
664 FAIL;
665 })
666
667 (define_expand "sge"
668 [(set (match_operand:SI 0 "intreg_operand" "")
669 (ge:SI (match_dup 1) (const_int 0)))]
670 ""
671 {
672 if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
673 {
674 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, GE);
675 emit_jump_insn (gen_sne (operands[0]));
676 DONE;
677 }
678 else if (TARGET_V9)
679 {
680 if (gen_v9_scc (GE, operands))
681 DONE;
682 /* fall through */
683 }
684 FAIL;
685 })
686
687 (define_expand "sle"
688 [(set (match_operand:SI 0 "intreg_operand" "")
689 (le:SI (match_dup 1) (const_int 0)))]
690 ""
691 {
692 if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
693 {
694 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, LE);
695 emit_jump_insn (gen_sne (operands[0]));
696 DONE;
697 }
698 else if (TARGET_V9)
699 {
700 if (gen_v9_scc (LE, operands))
701 DONE;
702 /* fall through */
703 }
704 FAIL;
705 })
706
707 (define_expand "sgtu"
708 [(set (match_operand:SI 0 "intreg_operand" "")
709 (gtu:SI (match_dup 1) (const_int 0)))]
710 ""
711 {
712 if (! TARGET_V9)
713 {
714 rtx tem, pat;
715
716 /* We can do ltu easily, so if both operands are registers, swap them and
717 do a LTU. */
718 if ((GET_CODE (sparc_compare_op0) == REG
719 || GET_CODE (sparc_compare_op0) == SUBREG)
720 && (GET_CODE (sparc_compare_op1) == REG
721 || GET_CODE (sparc_compare_op1) == SUBREG))
722 {
723 tem = sparc_compare_op0;
724 sparc_compare_op0 = sparc_compare_op1;
725 sparc_compare_op1 = tem;
726 pat = gen_sltu (operands[0]);
727 if (pat == NULL_RTX)
728 FAIL;
729 emit_insn (pat);
730 DONE;
731 }
732 }
733 else
734 {
735 if (gen_v9_scc (GTU, operands))
736 DONE;
737 }
738 FAIL;
739 })
740
741 (define_expand "sltu"
742 [(set (match_operand:SI 0 "intreg_operand" "")
743 (ltu:SI (match_dup 1) (const_int 0)))]
744 ""
745 {
746 if (TARGET_V9)
747 {
748 if (gen_v9_scc (LTU, operands))
749 DONE;
750 }
751 operands[1] = gen_compare_reg (LTU, sparc_compare_op0, sparc_compare_op1);
752 })
753
754 (define_expand "sgeu"
755 [(set (match_operand:SI 0 "intreg_operand" "")
756 (geu:SI (match_dup 1) (const_int 0)))]
757 ""
758 {
759 if (TARGET_V9)
760 {
761 if (gen_v9_scc (GEU, operands))
762 DONE;
763 }
764 operands[1] = gen_compare_reg (GEU, sparc_compare_op0, sparc_compare_op1);
765 })
766
767 (define_expand "sleu"
768 [(set (match_operand:SI 0 "intreg_operand" "")
769 (leu:SI (match_dup 1) (const_int 0)))]
770 ""
771 {
772 if (! TARGET_V9)
773 {
774 rtx tem, pat;
775
776 /* We can do geu easily, so if both operands are registers, swap them and
777 do a GEU. */
778 if ((GET_CODE (sparc_compare_op0) == REG
779 || GET_CODE (sparc_compare_op0) == SUBREG)
780 && (GET_CODE (sparc_compare_op1) == REG
781 || GET_CODE (sparc_compare_op1) == SUBREG))
782 {
783 tem = sparc_compare_op0;
784 sparc_compare_op0 = sparc_compare_op1;
785 sparc_compare_op1 = tem;
786 pat = gen_sgeu (operands[0]);
787 if (pat == NULL_RTX)
788 FAIL;
789 emit_insn (pat);
790 DONE;
791 }
792 }
793 else
794 {
795 if (gen_v9_scc (LEU, operands))
796 DONE;
797 }
798 FAIL;
799 })
800
801 ;; Now the DEFINE_INSNs for the scc cases.
802
803 ;; The SEQ and SNE patterns are special because they can be done
804 ;; without any branching and do not involve a COMPARE. We want
805 ;; them to always use the splitz below so the results can be
806 ;; scheduled.
807
808 (define_insn_and_split "*snesi_zero"
809 [(set (match_operand:SI 0 "register_operand" "=r")
810 (ne:SI (match_operand:SI 1 "register_operand" "r")
811 (const_int 0)))
812 (clobber (reg:CC 100))]
813 ""
814 "#"
815 ""
816 [(set (reg:CC_NOOV 100) (compare:CC_NOOV (neg:SI (match_dup 1))
817 (const_int 0)))
818 (set (match_dup 0) (ltu:SI (reg:CC 100) (const_int 0)))]
819 ""
820 [(set_attr "length" "2")])
821
822 (define_insn_and_split "*neg_snesi_zero"
823 [(set (match_operand:SI 0 "register_operand" "=r")
824 (neg:SI (ne:SI (match_operand:SI 1 "register_operand" "r")
825 (const_int 0))))
826 (clobber (reg:CC 100))]
827 ""
828 "#"
829 ""
830 [(set (reg:CC_NOOV 100) (compare:CC_NOOV (neg:SI (match_dup 1))
831 (const_int 0)))
832 (set (match_dup 0) (neg:SI (ltu:SI (reg:CC 100) (const_int 0))))]
833 ""
834 [(set_attr "length" "2")])
835
836 (define_insn_and_split "*snesi_zero_extend"
837 [(set (match_operand:DI 0 "register_operand" "=r")
838 (ne:DI (match_operand:SI 1 "register_operand" "r")
839 (const_int 0)))
840 (clobber (reg:CC 100))]
841 "TARGET_ARCH64"
842 "#"
843 "&& 1"
844 [(set (reg:CC_NOOV 100) (compare:CC_NOOV (minus:SI (const_int 0)
845 (match_dup 1))
846 (const_int 0)))
847 (set (match_dup 0) (zero_extend:DI (plus:SI (plus:SI (const_int 0)
848 (const_int 0))
849 (ltu:SI (reg:CC_NOOV 100)
850 (const_int 0)))))]
851 ""
852 [(set_attr "length" "2")])
853
854 (define_insn_and_split "*snedi_zero"
855 [(set (match_operand:DI 0 "register_operand" "=&r")
856 (ne:DI (match_operand:DI 1 "register_operand" "r")
857 (const_int 0)))]
858 "TARGET_ARCH64"
859 "#"
860 "&& ! reg_overlap_mentioned_p (operands[1], operands[0])"
861 [(set (match_dup 0) (const_int 0))
862 (set (match_dup 0) (if_then_else:DI (ne:DI (match_dup 1)
863 (const_int 0))
864 (const_int 1)
865 (match_dup 0)))]
866 ""
867 [(set_attr "length" "2")])
868
869 (define_insn_and_split "*neg_snedi_zero"
870 [(set (match_operand:DI 0 "register_operand" "=&r")
871 (neg:DI (ne:DI (match_operand:DI 1 "register_operand" "r")
872 (const_int 0))))]
873 "TARGET_ARCH64"
874 "#"
875 "&& ! reg_overlap_mentioned_p (operands[1], operands[0])"
876 [(set (match_dup 0) (const_int 0))
877 (set (match_dup 0) (if_then_else:DI (ne:DI (match_dup 1)
878 (const_int 0))
879 (const_int -1)
880 (match_dup 0)))]
881 ""
882 [(set_attr "length" "2")])
883
884 (define_insn_and_split "*snedi_zero_trunc"
885 [(set (match_operand:SI 0 "register_operand" "=&r")
886 (ne:SI (match_operand:DI 1 "register_operand" "r")
887 (const_int 0)))]
888 "TARGET_ARCH64"
889 "#"
890 "&& ! reg_overlap_mentioned_p (operands[1], operands[0])"
891 [(set (match_dup 0) (const_int 0))
892 (set (match_dup 0) (if_then_else:SI (ne:DI (match_dup 1)
893 (const_int 0))
894 (const_int 1)
895 (match_dup 0)))]
896 ""
897 [(set_attr "length" "2")])
898
899 (define_insn_and_split "*seqsi_zero"
900 [(set (match_operand:SI 0 "register_operand" "=r")
901 (eq:SI (match_operand:SI 1 "register_operand" "r")
902 (const_int 0)))
903 (clobber (reg:CC 100))]
904 ""
905 "#"
906 ""
907 [(set (reg:CC_NOOV 100) (compare:CC_NOOV (neg:SI (match_dup 1))
908 (const_int 0)))
909 (set (match_dup 0) (geu:SI (reg:CC 100) (const_int 0)))]
910 ""
911 [(set_attr "length" "2")])
912
913 (define_insn_and_split "*neg_seqsi_zero"
914 [(set (match_operand:SI 0 "register_operand" "=r")
915 (neg:SI (eq:SI (match_operand:SI 1 "register_operand" "r")
916 (const_int 0))))
917 (clobber (reg:CC 100))]
918 ""
919 "#"
920 ""
921 [(set (reg:CC_NOOV 100) (compare:CC_NOOV (neg:SI (match_dup 1))
922 (const_int 0)))
923 (set (match_dup 0) (neg:SI (geu:SI (reg:CC 100) (const_int 0))))]
924 ""
925 [(set_attr "length" "2")])
926
927 (define_insn_and_split "*seqsi_zero_extend"
928 [(set (match_operand:DI 0 "register_operand" "=r")
929 (eq:DI (match_operand:SI 1 "register_operand" "r")
930 (const_int 0)))
931 (clobber (reg:CC 100))]
932 "TARGET_ARCH64"
933 "#"
934 "&& 1"
935 [(set (reg:CC_NOOV 100) (compare:CC_NOOV (minus:SI (const_int 0)
936 (match_dup 1))
937 (const_int 0)))
938 (set (match_dup 0) (zero_extend:DI (minus:SI (minus:SI (const_int 0)
939 (const_int -1))
940 (ltu:SI (reg:CC_NOOV 100)
941 (const_int 0)))))]
942 ""
943 [(set_attr "length" "2")])
944
945 (define_insn_and_split "*seqdi_zero"
946 [(set (match_operand:DI 0 "register_operand" "=&r")
947 (eq:DI (match_operand:DI 1 "register_operand" "r")
948 (const_int 0)))]
949 "TARGET_ARCH64"
950 "#"
951 "&& ! reg_overlap_mentioned_p (operands[1], operands[0])"
952 [(set (match_dup 0) (const_int 0))
953 (set (match_dup 0) (if_then_else:DI (eq:DI (match_dup 1)
954 (const_int 0))
955 (const_int 1)
956 (match_dup 0)))]
957 ""
958 [(set_attr "length" "2")])
959
960 (define_insn_and_split "*neg_seqdi_zero"
961 [(set (match_operand:DI 0 "register_operand" "=&r")
962 (neg:DI (eq:DI (match_operand:DI 1 "register_operand" "r")
963 (const_int 0))))]
964 "TARGET_ARCH64"
965 "#"
966 "&& ! reg_overlap_mentioned_p (operands[1], operands[0])"
967 [(set (match_dup 0) (const_int 0))
968 (set (match_dup 0) (if_then_else:DI (eq:DI (match_dup 1)
969 (const_int 0))
970 (const_int -1)
971 (match_dup 0)))]
972 ""
973 [(set_attr "length" "2")])
974
975 (define_insn_and_split "*seqdi_zero_trunc"
976 [(set (match_operand:SI 0 "register_operand" "=&r")
977 (eq:SI (match_operand:DI 1 "register_operand" "r")
978 (const_int 0)))]
979 "TARGET_ARCH64"
980 "#"
981 "&& ! reg_overlap_mentioned_p (operands[1], operands[0])"
982 [(set (match_dup 0) (const_int 0))
983 (set (match_dup 0) (if_then_else:SI (eq:DI (match_dup 1)
984 (const_int 0))
985 (const_int 1)
986 (match_dup 0)))]
987 ""
988 [(set_attr "length" "2")])
989
990 ;; We can also do (x + (i == 0)) and related, so put them in.
991 ;; ??? The addx/subx insns use the 32 bit carry flag so there are no DImode
992 ;; versions for v9.
993
994 (define_insn_and_split "*x_plus_i_ne_0"
995 [(set (match_operand:SI 0 "register_operand" "=r")
996 (plus:SI (ne:SI (match_operand:SI 1 "register_operand" "r")
997 (const_int 0))
998 (match_operand:SI 2 "register_operand" "r")))
999 (clobber (reg:CC 100))]
1000 ""
1001 "#"
1002 ""
1003 [(set (reg:CC_NOOV 100) (compare:CC_NOOV (neg:SI (match_dup 1))
1004 (const_int 0)))
1005 (set (match_dup 0) (plus:SI (ltu:SI (reg:CC 100) (const_int 0))
1006 (match_dup 2)))]
1007 ""
1008 [(set_attr "length" "2")])
1009
1010 (define_insn_and_split "*x_minus_i_ne_0"
1011 [(set (match_operand:SI 0 "register_operand" "=r")
1012 (minus:SI (match_operand:SI 2 "register_operand" "r")
1013 (ne:SI (match_operand:SI 1 "register_operand" "r")
1014 (const_int 0))))
1015 (clobber (reg:CC 100))]
1016 ""
1017 "#"
1018 ""
1019 [(set (reg:CC_NOOV 100) (compare:CC_NOOV (neg:SI (match_dup 1))
1020 (const_int 0)))
1021 (set (match_dup 0) (minus:SI (match_dup 2)
1022 (ltu:SI (reg:CC 100) (const_int 0))))]
1023 ""
1024 [(set_attr "length" "2")])
1025
1026 (define_insn_and_split "*x_plus_i_eq_0"
1027 [(set (match_operand:SI 0 "register_operand" "=r")
1028 (plus:SI (eq:SI (match_operand:SI 1 "register_operand" "r")
1029 (const_int 0))
1030 (match_operand:SI 2 "register_operand" "r")))
1031 (clobber (reg:CC 100))]
1032 ""
1033 "#"
1034 ""
1035 [(set (reg:CC_NOOV 100) (compare:CC_NOOV (neg:SI (match_dup 1))
1036 (const_int 0)))
1037 (set (match_dup 0) (plus:SI (geu:SI (reg:CC 100) (const_int 0))
1038 (match_dup 2)))]
1039 ""
1040 [(set_attr "length" "2")])
1041
1042 (define_insn_and_split "*x_minus_i_eq_0"
1043 [(set (match_operand:SI 0 "register_operand" "=r")
1044 (minus:SI (match_operand:SI 2 "register_operand" "r")
1045 (eq:SI (match_operand:SI 1 "register_operand" "r")
1046 (const_int 0))))
1047 (clobber (reg:CC 100))]
1048 ""
1049 "#"
1050 ""
1051 [(set (reg:CC_NOOV 100) (compare:CC_NOOV (neg:SI (match_dup 1))
1052 (const_int 0)))
1053 (set (match_dup 0) (minus:SI (match_dup 2)
1054 (geu:SI (reg:CC 100) (const_int 0))))]
1055 ""
1056 [(set_attr "length" "2")])
1057
1058 ;; We can also do GEU and LTU directly, but these operate after a compare.
1059 ;; ??? The addx/subx insns use the 32 bit carry flag so there are no DImode
1060 ;; versions for v9.
1061
1062 (define_insn "*sltu_insn"
1063 [(set (match_operand:SI 0 "register_operand" "=r")
1064 (ltu:SI (reg:CC 100) (const_int 0)))]
1065 ""
1066 "addx\t%%g0, 0, %0"
1067 [(set_attr "type" "ialuX")])
1068
1069 (define_insn "*neg_sltu_insn"
1070 [(set (match_operand:SI 0 "register_operand" "=r")
1071 (neg:SI (ltu:SI (reg:CC 100) (const_int 0))))]
1072 ""
1073 "subx\t%%g0, 0, %0"
1074 [(set_attr "type" "ialuX")])
1075
1076 ;; ??? Combine should canonicalize these next two to the same pattern.
1077 (define_insn "*neg_sltu_minus_x"
1078 [(set (match_operand:SI 0 "register_operand" "=r")
1079 (minus:SI (neg:SI (ltu:SI (reg:CC 100) (const_int 0)))
1080 (match_operand:SI 1 "arith_operand" "rI")))]
1081 ""
1082 "subx\t%%g0, %1, %0"
1083 [(set_attr "type" "ialuX")])
1084
1085 (define_insn "*neg_sltu_plus_x"
1086 [(set (match_operand:SI 0 "register_operand" "=r")
1087 (neg:SI (plus:SI (ltu:SI (reg:CC 100) (const_int 0))
1088 (match_operand:SI 1 "arith_operand" "rI"))))]
1089 ""
1090 "subx\t%%g0, %1, %0"
1091 [(set_attr "type" "ialuX")])
1092
1093 (define_insn "*sgeu_insn"
1094 [(set (match_operand:SI 0 "register_operand" "=r")
1095 (geu:SI (reg:CC 100) (const_int 0)))]
1096 ""
1097 "subx\t%%g0, -1, %0"
1098 [(set_attr "type" "ialuX")])
1099
1100 (define_insn "*neg_sgeu_insn"
1101 [(set (match_operand:SI 0 "register_operand" "=r")
1102 (neg:SI (geu:SI (reg:CC 100) (const_int 0))))]
1103 ""
1104 "addx\t%%g0, -1, %0"
1105 [(set_attr "type" "ialuX")])
1106
1107 ;; We can also do (x + ((unsigned) i >= 0)) and related, so put them in.
1108 ;; ??? The addx/subx insns use the 32 bit carry flag so there are no DImode
1109 ;; versions for v9.
1110
1111 (define_insn "*sltu_plus_x"
1112 [(set (match_operand:SI 0 "register_operand" "=r")
1113 (plus:SI (ltu:SI (reg:CC 100) (const_int 0))
1114 (match_operand:SI 1 "arith_operand" "rI")))]
1115 ""
1116 "addx\t%%g0, %1, %0"
1117 [(set_attr "type" "ialuX")])
1118
1119 (define_insn "*sltu_plus_x_plus_y"
1120 [(set (match_operand:SI 0 "register_operand" "=r")
1121 (plus:SI (ltu:SI (reg:CC 100) (const_int 0))
1122 (plus:SI (match_operand:SI 1 "arith_operand" "%r")
1123 (match_operand:SI 2 "arith_operand" "rI"))))]
1124 ""
1125 "addx\t%1, %2, %0"
1126 [(set_attr "type" "ialuX")])
1127
1128 (define_insn "*x_minus_sltu"
1129 [(set (match_operand:SI 0 "register_operand" "=r")
1130 (minus:SI (match_operand:SI 1 "register_operand" "r")
1131 (ltu:SI (reg:CC 100) (const_int 0))))]
1132 ""
1133 "subx\t%1, 0, %0"
1134 [(set_attr "type" "ialuX")])
1135
1136 ;; ??? Combine should canonicalize these next two to the same pattern.
1137 (define_insn "*x_minus_y_minus_sltu"
1138 [(set (match_operand:SI 0 "register_operand" "=r")
1139 (minus:SI (minus:SI (match_operand:SI 1 "reg_or_0_operand" "rJ")
1140 (match_operand:SI 2 "arith_operand" "rI"))
1141 (ltu:SI (reg:CC 100) (const_int 0))))]
1142 ""
1143 "subx\t%r1, %2, %0"
1144 [(set_attr "type" "ialuX")])
1145
1146 (define_insn "*x_minus_sltu_plus_y"
1147 [(set (match_operand:SI 0 "register_operand" "=r")
1148 (minus:SI (match_operand:SI 1 "reg_or_0_operand" "rJ")
1149 (plus:SI (ltu:SI (reg:CC 100) (const_int 0))
1150 (match_operand:SI 2 "arith_operand" "rI"))))]
1151 ""
1152 "subx\t%r1, %2, %0"
1153 [(set_attr "type" "ialuX")])
1154
1155 (define_insn "*sgeu_plus_x"
1156 [(set (match_operand:SI 0 "register_operand" "=r")
1157 (plus:SI (geu:SI (reg:CC 100) (const_int 0))
1158 (match_operand:SI 1 "register_operand" "r")))]
1159 ""
1160 "subx\t%1, -1, %0"
1161 [(set_attr "type" "ialuX")])
1162
1163 (define_insn "*x_minus_sgeu"
1164 [(set (match_operand:SI 0 "register_operand" "=r")
1165 (minus:SI (match_operand:SI 1 "register_operand" "r")
1166 (geu:SI (reg:CC 100) (const_int 0))))]
1167 ""
1168 "addx\t%1, -1, %0"
1169 [(set_attr "type" "ialuX")])
1170
1171 (define_split
1172 [(set (match_operand:SI 0 "register_operand" "")
1173 (match_operator:SI 2 "noov_compare_op"
1174 [(match_operand 1 "icc_or_fcc_reg_operand" "")
1175 (const_int 0)]))]
1176 ;; 32 bit LTU/GEU are better implemented using addx/subx
1177 "TARGET_V9 && REGNO (operands[1]) == SPARC_ICC_REG
1178 && (GET_MODE (operands[1]) == CCXmode
1179 || (GET_CODE (operands[2]) != LTU && GET_CODE (operands[2]) != GEU))"
1180 [(set (match_dup 0) (const_int 0))
1181 (set (match_dup 0)
1182 (if_then_else:SI (match_op_dup:SI 2 [(match_dup 1) (const_int 0)])
1183 (const_int 1)
1184 (match_dup 0)))]
1185 "")
1186
1187 \f
1188 ;; These control RTL generation for conditional jump insns
1189
1190 ;; The quad-word fp compare library routines all return nonzero to indicate
1191 ;; true, which is different from the equivalent libgcc routines, so we must
1192 ;; handle them specially here.
1193
1194 (define_expand "beq"
1195 [(set (pc)
1196 (if_then_else (eq (match_dup 1) (const_int 0))
1197 (label_ref (match_operand 0 "" ""))
1198 (pc)))]
1199 ""
1200 {
1201 if (TARGET_ARCH64 && sparc_compare_op1 == const0_rtx
1202 && GET_CODE (sparc_compare_op0) == REG
1203 && GET_MODE (sparc_compare_op0) == DImode)
1204 {
1205 emit_v9_brxx_insn (EQ, sparc_compare_op0, operands[0]);
1206 DONE;
1207 }
1208 else if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
1209 {
1210 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, EQ);
1211 emit_jump_insn (gen_bne (operands[0]));
1212 DONE;
1213 }
1214 operands[1] = gen_compare_reg (EQ, sparc_compare_op0, sparc_compare_op1);
1215 })
1216
1217 (define_expand "bne"
1218 [(set (pc)
1219 (if_then_else (ne (match_dup 1) (const_int 0))
1220 (label_ref (match_operand 0 "" ""))
1221 (pc)))]
1222 ""
1223 {
1224 if (TARGET_ARCH64 && sparc_compare_op1 == const0_rtx
1225 && GET_CODE (sparc_compare_op0) == REG
1226 && GET_MODE (sparc_compare_op0) == DImode)
1227 {
1228 emit_v9_brxx_insn (NE, sparc_compare_op0, operands[0]);
1229 DONE;
1230 }
1231 else if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
1232 {
1233 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, NE);
1234 emit_jump_insn (gen_bne (operands[0]));
1235 DONE;
1236 }
1237 operands[1] = gen_compare_reg (NE, sparc_compare_op0, sparc_compare_op1);
1238 })
1239
1240 (define_expand "bgt"
1241 [(set (pc)
1242 (if_then_else (gt (match_dup 1) (const_int 0))
1243 (label_ref (match_operand 0 "" ""))
1244 (pc)))]
1245 ""
1246 {
1247 if (TARGET_ARCH64 && sparc_compare_op1 == const0_rtx
1248 && GET_CODE (sparc_compare_op0) == REG
1249 && GET_MODE (sparc_compare_op0) == DImode)
1250 {
1251 emit_v9_brxx_insn (GT, sparc_compare_op0, operands[0]);
1252 DONE;
1253 }
1254 else if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
1255 {
1256 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, GT);
1257 emit_jump_insn (gen_bne (operands[0]));
1258 DONE;
1259 }
1260 operands[1] = gen_compare_reg (GT, sparc_compare_op0, sparc_compare_op1);
1261 })
1262
1263 (define_expand "bgtu"
1264 [(set (pc)
1265 (if_then_else (gtu (match_dup 1) (const_int 0))
1266 (label_ref (match_operand 0 "" ""))
1267 (pc)))]
1268 ""
1269 {
1270 operands[1] = gen_compare_reg (GTU, sparc_compare_op0, sparc_compare_op1);
1271 })
1272
1273 (define_expand "blt"
1274 [(set (pc)
1275 (if_then_else (lt (match_dup 1) (const_int 0))
1276 (label_ref (match_operand 0 "" ""))
1277 (pc)))]
1278 ""
1279 {
1280 if (TARGET_ARCH64 && sparc_compare_op1 == const0_rtx
1281 && GET_CODE (sparc_compare_op0) == REG
1282 && GET_MODE (sparc_compare_op0) == DImode)
1283 {
1284 emit_v9_brxx_insn (LT, sparc_compare_op0, operands[0]);
1285 DONE;
1286 }
1287 else if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
1288 {
1289 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, LT);
1290 emit_jump_insn (gen_bne (operands[0]));
1291 DONE;
1292 }
1293 operands[1] = gen_compare_reg (LT, sparc_compare_op0, sparc_compare_op1);
1294 })
1295
1296 (define_expand "bltu"
1297 [(set (pc)
1298 (if_then_else (ltu (match_dup 1) (const_int 0))
1299 (label_ref (match_operand 0 "" ""))
1300 (pc)))]
1301 ""
1302 {
1303 operands[1] = gen_compare_reg (LTU, sparc_compare_op0, sparc_compare_op1);
1304 })
1305
1306 (define_expand "bge"
1307 [(set (pc)
1308 (if_then_else (ge (match_dup 1) (const_int 0))
1309 (label_ref (match_operand 0 "" ""))
1310 (pc)))]
1311 ""
1312 {
1313 if (TARGET_ARCH64 && sparc_compare_op1 == const0_rtx
1314 && GET_CODE (sparc_compare_op0) == REG
1315 && GET_MODE (sparc_compare_op0) == DImode)
1316 {
1317 emit_v9_brxx_insn (GE, sparc_compare_op0, operands[0]);
1318 DONE;
1319 }
1320 else if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
1321 {
1322 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, GE);
1323 emit_jump_insn (gen_bne (operands[0]));
1324 DONE;
1325 }
1326 operands[1] = gen_compare_reg (GE, sparc_compare_op0, sparc_compare_op1);
1327 })
1328
1329 (define_expand "bgeu"
1330 [(set (pc)
1331 (if_then_else (geu (match_dup 1) (const_int 0))
1332 (label_ref (match_operand 0 "" ""))
1333 (pc)))]
1334 ""
1335 {
1336 operands[1] = gen_compare_reg (GEU, sparc_compare_op0, sparc_compare_op1);
1337 })
1338
1339 (define_expand "ble"
1340 [(set (pc)
1341 (if_then_else (le (match_dup 1) (const_int 0))
1342 (label_ref (match_operand 0 "" ""))
1343 (pc)))]
1344 ""
1345 {
1346 if (TARGET_ARCH64 && sparc_compare_op1 == const0_rtx
1347 && GET_CODE (sparc_compare_op0) == REG
1348 && GET_MODE (sparc_compare_op0) == DImode)
1349 {
1350 emit_v9_brxx_insn (LE, sparc_compare_op0, operands[0]);
1351 DONE;
1352 }
1353 else if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
1354 {
1355 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, LE);
1356 emit_jump_insn (gen_bne (operands[0]));
1357 DONE;
1358 }
1359 operands[1] = gen_compare_reg (LE, sparc_compare_op0, sparc_compare_op1);
1360 })
1361
1362 (define_expand "bleu"
1363 [(set (pc)
1364 (if_then_else (leu (match_dup 1) (const_int 0))
1365 (label_ref (match_operand 0 "" ""))
1366 (pc)))]
1367 ""
1368 {
1369 operands[1] = gen_compare_reg (LEU, sparc_compare_op0, sparc_compare_op1);
1370 })
1371
1372 (define_expand "bunordered"
1373 [(set (pc)
1374 (if_then_else (unordered (match_dup 1) (const_int 0))
1375 (label_ref (match_operand 0 "" ""))
1376 (pc)))]
1377 ""
1378 {
1379 if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
1380 {
1381 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1,
1382 UNORDERED);
1383 emit_jump_insn (gen_beq (operands[0]));
1384 DONE;
1385 }
1386 operands[1] = gen_compare_reg (UNORDERED, sparc_compare_op0,
1387 sparc_compare_op1);
1388 })
1389
1390 (define_expand "bordered"
1391 [(set (pc)
1392 (if_then_else (ordered (match_dup 1) (const_int 0))
1393 (label_ref (match_operand 0 "" ""))
1394 (pc)))]
1395 ""
1396 {
1397 if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
1398 {
1399 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, ORDERED);
1400 emit_jump_insn (gen_bne (operands[0]));
1401 DONE;
1402 }
1403 operands[1] = gen_compare_reg (ORDERED, sparc_compare_op0,
1404 sparc_compare_op1);
1405 })
1406
1407 (define_expand "bungt"
1408 [(set (pc)
1409 (if_then_else (ungt (match_dup 1) (const_int 0))
1410 (label_ref (match_operand 0 "" ""))
1411 (pc)))]
1412 ""
1413 {
1414 if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
1415 {
1416 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, UNGT);
1417 emit_jump_insn (gen_bgt (operands[0]));
1418 DONE;
1419 }
1420 operands[1] = gen_compare_reg (UNGT, sparc_compare_op0, sparc_compare_op1);
1421 })
1422
1423 (define_expand "bunlt"
1424 [(set (pc)
1425 (if_then_else (unlt (match_dup 1) (const_int 0))
1426 (label_ref (match_operand 0 "" ""))
1427 (pc)))]
1428 ""
1429 {
1430 if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
1431 {
1432 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, UNLT);
1433 emit_jump_insn (gen_bne (operands[0]));
1434 DONE;
1435 }
1436 operands[1] = gen_compare_reg (UNLT, sparc_compare_op0, sparc_compare_op1);
1437 })
1438
1439 (define_expand "buneq"
1440 [(set (pc)
1441 (if_then_else (uneq (match_dup 1) (const_int 0))
1442 (label_ref (match_operand 0 "" ""))
1443 (pc)))]
1444 ""
1445 {
1446 if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
1447 {
1448 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, UNEQ);
1449 emit_jump_insn (gen_beq (operands[0]));
1450 DONE;
1451 }
1452 operands[1] = gen_compare_reg (UNEQ, sparc_compare_op0, sparc_compare_op1);
1453 })
1454
1455 (define_expand "bunge"
1456 [(set (pc)
1457 (if_then_else (unge (match_dup 1) (const_int 0))
1458 (label_ref (match_operand 0 "" ""))
1459 (pc)))]
1460 ""
1461 {
1462 if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
1463 {
1464 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, UNGE);
1465 emit_jump_insn (gen_bne (operands[0]));
1466 DONE;
1467 }
1468 operands[1] = gen_compare_reg (UNGE, sparc_compare_op0, sparc_compare_op1);
1469 })
1470
1471 (define_expand "bunle"
1472 [(set (pc)
1473 (if_then_else (unle (match_dup 1) (const_int 0))
1474 (label_ref (match_operand 0 "" ""))
1475 (pc)))]
1476 ""
1477 {
1478 if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
1479 {
1480 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, UNLE);
1481 emit_jump_insn (gen_bne (operands[0]));
1482 DONE;
1483 }
1484 operands[1] = gen_compare_reg (UNLE, sparc_compare_op0, sparc_compare_op1);
1485 })
1486
1487 (define_expand "bltgt"
1488 [(set (pc)
1489 (if_then_else (ltgt (match_dup 1) (const_int 0))
1490 (label_ref (match_operand 0 "" ""))
1491 (pc)))]
1492 ""
1493 {
1494 if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
1495 {
1496 sparc_emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, LTGT);
1497 emit_jump_insn (gen_bne (operands[0]));
1498 DONE;
1499 }
1500 operands[1] = gen_compare_reg (LTGT, sparc_compare_op0, sparc_compare_op1);
1501 })
1502 \f
1503 ;; Now match both normal and inverted jump.
1504
1505 ;; XXX fpcmp nop braindamage
1506 (define_insn "*normal_branch"
1507 [(set (pc)
1508 (if_then_else (match_operator 0 "noov_compare_op"
1509 [(reg 100) (const_int 0)])
1510 (label_ref (match_operand 1 "" ""))
1511 (pc)))]
1512 ""
1513 {
1514 return output_cbranch (operands[0], operands[1], 1, 0,
1515 final_sequence && INSN_ANNULLED_BRANCH_P (insn),
1516 ! final_sequence, insn);
1517 }
1518 [(set_attr "type" "branch")
1519 (set_attr "branch_type" "icc")])
1520
1521 ;; XXX fpcmp nop braindamage
1522 (define_insn "*inverted_branch"
1523 [(set (pc)
1524 (if_then_else (match_operator 0 "noov_compare_op"
1525 [(reg 100) (const_int 0)])
1526 (pc)
1527 (label_ref (match_operand 1 "" ""))))]
1528 ""
1529 {
1530 return output_cbranch (operands[0], operands[1], 1, 1,
1531 final_sequence && INSN_ANNULLED_BRANCH_P (insn),
1532 ! final_sequence, insn);
1533 }
1534 [(set_attr "type" "branch")
1535 (set_attr "branch_type" "icc")])
1536
1537 ;; XXX fpcmp nop braindamage
1538 (define_insn "*normal_fp_branch"
1539 [(set (pc)
1540 (if_then_else (match_operator 1 "comparison_operator"
1541 [(match_operand:CCFP 0 "fcc_reg_operand" "c")
1542 (const_int 0)])
1543 (label_ref (match_operand 2 "" ""))
1544 (pc)))]
1545 ""
1546 {
1547 return output_cbranch (operands[1], operands[2], 2, 0,
1548 final_sequence && INSN_ANNULLED_BRANCH_P (insn),
1549 ! final_sequence, insn);
1550 }
1551 [(set_attr "type" "branch")
1552 (set_attr "branch_type" "fcc")])
1553
1554 ;; XXX fpcmp nop braindamage
1555 (define_insn "*inverted_fp_branch"
1556 [(set (pc)
1557 (if_then_else (match_operator 1 "comparison_operator"
1558 [(match_operand:CCFP 0 "fcc_reg_operand" "c")
1559 (const_int 0)])
1560 (pc)
1561 (label_ref (match_operand 2 "" ""))))]
1562 ""
1563 {
1564 return output_cbranch (operands[1], operands[2], 2, 1,
1565 final_sequence && INSN_ANNULLED_BRANCH_P (insn),
1566 ! final_sequence, insn);
1567 }
1568 [(set_attr "type" "branch")
1569 (set_attr "branch_type" "fcc")])
1570
1571 ;; XXX fpcmp nop braindamage
1572 (define_insn "*normal_fpe_branch"
1573 [(set (pc)
1574 (if_then_else (match_operator 1 "comparison_operator"
1575 [(match_operand:CCFPE 0 "fcc_reg_operand" "c")
1576 (const_int 0)])
1577 (label_ref (match_operand 2 "" ""))
1578 (pc)))]
1579 ""
1580 {
1581 return output_cbranch (operands[1], operands[2], 2, 0,
1582 final_sequence && INSN_ANNULLED_BRANCH_P (insn),
1583 ! final_sequence, insn);
1584 }
1585 [(set_attr "type" "branch")
1586 (set_attr "branch_type" "fcc")])
1587
1588 ;; XXX fpcmp nop braindamage
1589 (define_insn "*inverted_fpe_branch"
1590 [(set (pc)
1591 (if_then_else (match_operator 1 "comparison_operator"
1592 [(match_operand:CCFPE 0 "fcc_reg_operand" "c")
1593 (const_int 0)])
1594 (pc)
1595 (label_ref (match_operand 2 "" ""))))]
1596 ""
1597 {
1598 return output_cbranch (operands[1], operands[2], 2, 1,
1599 final_sequence && INSN_ANNULLED_BRANCH_P (insn),
1600 ! final_sequence, insn);
1601 }
1602 [(set_attr "type" "branch")
1603 (set_attr "branch_type" "fcc")])
1604
1605 ;; SPARC V9-specific jump insns. None of these are guaranteed to be
1606 ;; in the architecture.
1607
1608 ;; There are no 32 bit brreg insns.
1609
1610 ;; XXX
1611 (define_insn "*normal_int_branch_sp64"
1612 [(set (pc)
1613 (if_then_else (match_operator 0 "v9_regcmp_op"
1614 [(match_operand:DI 1 "register_operand" "r")
1615 (const_int 0)])
1616 (label_ref (match_operand 2 "" ""))
1617 (pc)))]
1618 "TARGET_ARCH64"
1619 {
1620 return output_v9branch (operands[0], operands[2], 1, 2, 0,
1621 final_sequence && INSN_ANNULLED_BRANCH_P (insn),
1622 ! final_sequence, insn);
1623 }
1624 [(set_attr "type" "branch")
1625 (set_attr "branch_type" "reg")])
1626
1627 ;; XXX
1628 (define_insn "*inverted_int_branch_sp64"
1629 [(set (pc)
1630 (if_then_else (match_operator 0 "v9_regcmp_op"
1631 [(match_operand:DI 1 "register_operand" "r")
1632 (const_int 0)])
1633 (pc)
1634 (label_ref (match_operand 2 "" ""))))]
1635 "TARGET_ARCH64"
1636 {
1637 return output_v9branch (operands[0], operands[2], 1, 2, 1,
1638 final_sequence && INSN_ANNULLED_BRANCH_P (insn),
1639 ! final_sequence, insn);
1640 }
1641 [(set_attr "type" "branch")
1642 (set_attr "branch_type" "reg")])
1643 \f
1644 ;; Load program counter insns.
1645
1646 (define_insn "get_pc"
1647 [(clobber (reg:SI 15))
1648 (set (match_operand 0 "register_operand" "=r")
1649 (unspec [(match_operand 1 "" "") (match_operand 2 "" "")] UNSPEC_GET_PC))]
1650 "flag_pic && REGNO (operands[0]) == 23"
1651 "sethi\t%%hi(%a1-4), %0\n\tcall\t%a2\n\tadd\t%0, %%lo(%a1+4), %0"
1652 [(set_attr "type" "multi")
1653 (set_attr "length" "3")])
1654
1655 \f
1656 ;; Move instructions
1657
1658 (define_expand "movqi"
1659 [(set (match_operand:QI 0 "general_operand" "")
1660 (match_operand:QI 1 "general_operand" ""))]
1661 ""
1662 {
1663 /* Working with CONST_INTs is easier, so convert
1664 a double if needed. */
1665 if (GET_CODE (operands[1]) == CONST_DOUBLE)
1666 {
1667 operands[1] = GEN_INT (trunc_int_for_mode
1668 (CONST_DOUBLE_LOW (operands[1]), QImode));
1669 }
1670
1671 /* Handle sets of MEM first. */
1672 if (GET_CODE (operands[0]) == MEM)
1673 {
1674 if (reg_or_0_operand (operands[1], QImode))
1675 goto movqi_is_ok;
1676
1677 if (! reload_in_progress)
1678 {
1679 operands[0] = validize_mem (operands[0]);
1680 operands[1] = force_reg (QImode, operands[1]);
1681 }
1682 }
1683
1684 /* Fixup PIC cases. */
1685 if (flag_pic)
1686 {
1687 if (CONSTANT_P (operands[1])
1688 && pic_address_needs_scratch (operands[1]))
1689 operands[1] = legitimize_pic_address (operands[1], QImode, 0);
1690
1691 if (symbolic_operand (operands[1], QImode))
1692 {
1693 operands[1] = legitimize_pic_address (operands[1],
1694 QImode,
1695 (reload_in_progress ?
1696 operands[0] :
1697 NULL_RTX));
1698 goto movqi_is_ok;
1699 }
1700 }
1701
1702 /* All QI constants require only one insn, so proceed. */
1703
1704 movqi_is_ok:
1705 ;
1706 })
1707
1708 (define_insn "*movqi_insn"
1709 [(set (match_operand:QI 0 "nonimmediate_operand" "=r,r,m")
1710 (match_operand:QI 1 "input_operand" "rI,m,rJ"))]
1711 "(register_operand (operands[0], QImode)
1712 || reg_or_0_operand (operands[1], QImode))"
1713 "@
1714 mov\t%1, %0
1715 ldub\t%1, %0
1716 stb\t%r1, %0"
1717 [(set_attr "type" "*,load,store")
1718 (set_attr "us3load_type" "*,3cycle,*")])
1719
1720 (define_expand "movhi"
1721 [(set (match_operand:HI 0 "general_operand" "")
1722 (match_operand:HI 1 "general_operand" ""))]
1723 ""
1724 {
1725 /* Working with CONST_INTs is easier, so convert
1726 a double if needed. */
1727 if (GET_CODE (operands[1]) == CONST_DOUBLE)
1728 operands[1] = GEN_INT (CONST_DOUBLE_LOW (operands[1]));
1729
1730 /* Handle sets of MEM first. */
1731 if (GET_CODE (operands[0]) == MEM)
1732 {
1733 if (reg_or_0_operand (operands[1], HImode))
1734 goto movhi_is_ok;
1735
1736 if (! reload_in_progress)
1737 {
1738 operands[0] = validize_mem (operands[0]);
1739 operands[1] = force_reg (HImode, operands[1]);
1740 }
1741 }
1742
1743 /* Fixup PIC cases. */
1744 if (flag_pic)
1745 {
1746 if (CONSTANT_P (operands[1])
1747 && pic_address_needs_scratch (operands[1]))
1748 operands[1] = legitimize_pic_address (operands[1], HImode, 0);
1749
1750 if (symbolic_operand (operands[1], HImode))
1751 {
1752 operands[1] = legitimize_pic_address (operands[1],
1753 HImode,
1754 (reload_in_progress ?
1755 operands[0] :
1756 NULL_RTX));
1757 goto movhi_is_ok;
1758 }
1759 }
1760
1761 /* This makes sure we will not get rematched due to splittage. */
1762 if (! CONSTANT_P (operands[1]) || input_operand (operands[1], HImode))
1763 ;
1764 else if (CONSTANT_P (operands[1])
1765 && GET_CODE (operands[1]) != HIGH
1766 && GET_CODE (operands[1]) != LO_SUM)
1767 {
1768 sparc_emit_set_const32 (operands[0], operands[1]);
1769 DONE;
1770 }
1771 movhi_is_ok:
1772 ;
1773 })
1774
1775 (define_insn "*movhi_const64_special"
1776 [(set (match_operand:HI 0 "register_operand" "=r")
1777 (match_operand:HI 1 "const64_high_operand" ""))]
1778 "TARGET_ARCH64"
1779 "sethi\t%%hi(%a1), %0")
1780
1781 (define_insn "*movhi_insn"
1782 [(set (match_operand:HI 0 "nonimmediate_operand" "=r,r,r,m")
1783 (match_operand:HI 1 "input_operand" "rI,K,m,rJ"))]
1784 "(register_operand (operands[0], HImode)
1785 || reg_or_0_operand (operands[1], HImode))"
1786 "@
1787 mov\t%1, %0
1788 sethi\t%%hi(%a1), %0
1789 lduh\t%1, %0
1790 sth\t%r1, %0"
1791 [(set_attr "type" "*,*,load,store")
1792 (set_attr "us3load_type" "*,*,3cycle,*")])
1793
1794 ;; We always work with constants here.
1795 (define_insn "*movhi_lo_sum"
1796 [(set (match_operand:HI 0 "register_operand" "=r")
1797 (ior:HI (match_operand:HI 1 "arith_operand" "%r")
1798 (match_operand:HI 2 "arith_operand" "I")))]
1799 ""
1800 "or\t%1, %2, %0")
1801
1802 (define_expand "movsi"
1803 [(set (match_operand:SI 0 "general_operand" "")
1804 (match_operand:SI 1 "general_operand" ""))]
1805 ""
1806 {
1807 /* Working with CONST_INTs is easier, so convert
1808 a double if needed. */
1809 if (GET_CODE (operands[1]) == CONST_DOUBLE)
1810 operands[1] = GEN_INT (CONST_DOUBLE_LOW (operands[1]));
1811
1812 /* Handle sets of MEM first. */
1813 if (GET_CODE (operands[0]) == MEM)
1814 {
1815 if (reg_or_0_operand (operands[1], SImode))
1816 goto movsi_is_ok;
1817
1818 if (! reload_in_progress)
1819 {
1820 operands[0] = validize_mem (operands[0]);
1821 operands[1] = force_reg (SImode, operands[1]);
1822 }
1823 }
1824
1825 /* Fixup PIC cases. */
1826 if (flag_pic)
1827 {
1828 if (CONSTANT_P (operands[1])
1829 && pic_address_needs_scratch (operands[1]))
1830 operands[1] = legitimize_pic_address (operands[1], SImode, 0);
1831
1832 if (GET_CODE (operands[1]) == LABEL_REF)
1833 {
1834 /* shit */
1835 emit_insn (gen_movsi_pic_label_ref (operands[0], operands[1]));
1836 DONE;
1837 }
1838
1839 if (symbolic_operand (operands[1], SImode))
1840 {
1841 operands[1] = legitimize_pic_address (operands[1],
1842 SImode,
1843 (reload_in_progress ?
1844 operands[0] :
1845 NULL_RTX));
1846 goto movsi_is_ok;
1847 }
1848 }
1849
1850 /* If we are trying to toss an integer constant into the
1851 FPU registers, force it into memory. */
1852 if (GET_CODE (operands[0]) == REG
1853 && REGNO (operands[0]) >= SPARC_FIRST_FP_REG
1854 && REGNO (operands[0]) <= SPARC_LAST_V9_FP_REG
1855 && CONSTANT_P (operands[1]))
1856 operands[1] = validize_mem (force_const_mem (GET_MODE (operands[0]),
1857 operands[1]));
1858
1859 /* This makes sure we will not get rematched due to splittage. */
1860 if (! CONSTANT_P (operands[1]) || input_operand (operands[1], SImode))
1861 ;
1862 else if (CONSTANT_P (operands[1])
1863 && GET_CODE (operands[1]) != HIGH
1864 && GET_CODE (operands[1]) != LO_SUM)
1865 {
1866 sparc_emit_set_const32 (operands[0], operands[1]);
1867 DONE;
1868 }
1869 movsi_is_ok:
1870 ;
1871 })
1872
1873 ;; This is needed to show CSE exactly which bits are set
1874 ;; in a 64-bit register by sethi instructions.
1875 (define_insn "*movsi_const64_special"
1876 [(set (match_operand:SI 0 "register_operand" "=r")
1877 (match_operand:SI 1 "const64_high_operand" ""))]
1878 "TARGET_ARCH64"
1879 "sethi\t%%hi(%a1), %0")
1880
1881 (define_insn "*movsi_insn"
1882 [(set (match_operand:SI 0 "nonimmediate_operand" "=r,f,r,r,r,f,m,m,d")
1883 (match_operand:SI 1 "input_operand" "rI,!f,K,J,m,!m,rJ,!f,J"))]
1884 "(register_operand (operands[0], SImode)
1885 || reg_or_0_operand (operands[1], SImode))"
1886 "@
1887 mov\t%1, %0
1888 fmovs\t%1, %0
1889 sethi\t%%hi(%a1), %0
1890 clr\t%0
1891 ld\t%1, %0
1892 ld\t%1, %0
1893 st\t%r1, %0
1894 st\t%1, %0
1895 fzeros\t%0"
1896 [(set_attr "type" "*,fpmove,*,*,load,fpload,store,fpstore,fpmove")])
1897
1898 (define_insn "*movsi_lo_sum"
1899 [(set (match_operand:SI 0 "register_operand" "=r")
1900 (lo_sum:SI (match_operand:SI 1 "register_operand" "r")
1901 (match_operand:SI 2 "immediate_operand" "in")))]
1902 ""
1903 "or\t%1, %%lo(%a2), %0")
1904
1905 (define_insn "*movsi_high"
1906 [(set (match_operand:SI 0 "register_operand" "=r")
1907 (high:SI (match_operand:SI 1 "immediate_operand" "in")))]
1908 ""
1909 "sethi\t%%hi(%a1), %0")
1910
1911 ;; The next two patterns must wrap the SYMBOL_REF in an UNSPEC
1912 ;; so that CSE won't optimize the address computation away.
1913 (define_insn "movsi_lo_sum_pic"
1914 [(set (match_operand:SI 0 "register_operand" "=r")
1915 (lo_sum:SI (match_operand:SI 1 "register_operand" "r")
1916 (unspec:SI [(match_operand:SI 2 "immediate_operand" "in")] UNSPEC_MOVE_PIC)))]
1917 "flag_pic"
1918 "or\t%1, %%lo(%a2), %0")
1919
1920 (define_insn "movsi_high_pic"
1921 [(set (match_operand:SI 0 "register_operand" "=r")
1922 (high:SI (unspec:SI [(match_operand 1 "" "")] UNSPEC_MOVE_PIC)))]
1923 "flag_pic && check_pic (1)"
1924 "sethi\t%%hi(%a1), %0")
1925
1926 (define_expand "movsi_pic_label_ref"
1927 [(set (match_dup 3) (high:SI
1928 (unspec:SI [(match_operand:SI 1 "label_ref_operand" "")
1929 (match_dup 2)] UNSPEC_MOVE_PIC_LABEL)))
1930 (set (match_dup 4) (lo_sum:SI (match_dup 3)
1931 (unspec:SI [(match_dup 1) (match_dup 2)] UNSPEC_MOVE_PIC_LABEL)))
1932 (set (match_operand:SI 0 "register_operand" "=r")
1933 (minus:SI (match_dup 5) (match_dup 4)))]
1934 "flag_pic"
1935 {
1936 current_function_uses_pic_offset_table = 1;
1937 operands[2] = gen_rtx_SYMBOL_REF (Pmode, "_GLOBAL_OFFSET_TABLE_");
1938 if (no_new_pseudos)
1939 {
1940 operands[3] = operands[0];
1941 operands[4] = operands[0];
1942 }
1943 else
1944 {
1945 operands[3] = gen_reg_rtx (SImode);
1946 operands[4] = gen_reg_rtx (SImode);
1947 }
1948 operands[5] = pic_offset_table_rtx;
1949 })
1950
1951 (define_insn "*movsi_high_pic_label_ref"
1952 [(set (match_operand:SI 0 "register_operand" "=r")
1953 (high:SI
1954 (unspec:SI [(match_operand:SI 1 "label_ref_operand" "")
1955 (match_operand:SI 2 "" "")] UNSPEC_MOVE_PIC_LABEL)))]
1956 "flag_pic"
1957 "sethi\t%%hi(%a2-(%a1-.)), %0")
1958
1959 (define_insn "*movsi_lo_sum_pic_label_ref"
1960 [(set (match_operand:SI 0 "register_operand" "=r")
1961 (lo_sum:SI (match_operand:SI 1 "register_operand" "r")
1962 (unspec:SI [(match_operand:SI 2 "label_ref_operand" "")
1963 (match_operand:SI 3 "" "")] UNSPEC_MOVE_PIC_LABEL)))]
1964 "flag_pic"
1965 "or\t%1, %%lo(%a3-(%a2-.)), %0")
1966
1967 (define_expand "movdi"
1968 [(set (match_operand:DI 0 "reg_or_nonsymb_mem_operand" "")
1969 (match_operand:DI 1 "general_operand" ""))]
1970 ""
1971 {
1972 /* Where possible, convert CONST_DOUBLE into a CONST_INT. */
1973 if (GET_CODE (operands[1]) == CONST_DOUBLE
1974 #if HOST_BITS_PER_WIDE_INT == 32
1975 && ((CONST_DOUBLE_HIGH (operands[1]) == 0
1976 && (CONST_DOUBLE_LOW (operands[1]) & 0x80000000) == 0)
1977 || (CONST_DOUBLE_HIGH (operands[1]) == (HOST_WIDE_INT) 0xffffffff
1978 && (CONST_DOUBLE_LOW (operands[1]) & 0x80000000) != 0))
1979 #endif
1980 )
1981 operands[1] = GEN_INT (CONST_DOUBLE_LOW (operands[1]));
1982
1983 /* Handle MEM cases first. */
1984 if (GET_CODE (operands[0]) == MEM)
1985 {
1986 /* If it's a REG, we can always do it.
1987 The const zero case is more complex, on v9
1988 we can always perform it. */
1989 if (register_operand (operands[1], DImode)
1990 || (TARGET_V9
1991 && (operands[1] == const0_rtx)))
1992 goto movdi_is_ok;
1993
1994 if (! reload_in_progress)
1995 {
1996 operands[0] = validize_mem (operands[0]);
1997 operands[1] = force_reg (DImode, operands[1]);
1998 }
1999 }
2000
2001 if (flag_pic)
2002 {
2003 if (CONSTANT_P (operands[1])
2004 && pic_address_needs_scratch (operands[1]))
2005 operands[1] = legitimize_pic_address (operands[1], DImode, 0);
2006
2007 if (GET_CODE (operands[1]) == LABEL_REF)
2008 {
2009 if (! TARGET_ARCH64)
2010 abort ();
2011 emit_insn (gen_movdi_pic_label_ref (operands[0], operands[1]));
2012 DONE;
2013 }
2014
2015 if (symbolic_operand (operands[1], DImode))
2016 {
2017 operands[1] = legitimize_pic_address (operands[1],
2018 DImode,
2019 (reload_in_progress ?
2020 operands[0] :
2021 NULL_RTX));
2022 goto movdi_is_ok;
2023 }
2024 }
2025
2026 /* If we are trying to toss an integer constant into the
2027 FPU registers, force it into memory. */
2028 if (GET_CODE (operands[0]) == REG
2029 && REGNO (operands[0]) >= SPARC_FIRST_FP_REG
2030 && REGNO (operands[0]) <= SPARC_LAST_V9_FP_REG
2031 && CONSTANT_P (operands[1]))
2032 operands[1] = validize_mem (force_const_mem (GET_MODE (operands[0]),
2033 operands[1]));
2034
2035 /* This makes sure we will not get rematched due to splittage. */
2036 if (! CONSTANT_P (operands[1]) || input_operand (operands[1], DImode))
2037 ;
2038 else if (TARGET_ARCH64
2039 && CONSTANT_P (operands[1])
2040 && GET_CODE (operands[1]) != HIGH
2041 && GET_CODE (operands[1]) != LO_SUM)
2042 {
2043 sparc_emit_set_const64 (operands[0], operands[1]);
2044 DONE;
2045 }
2046
2047 movdi_is_ok:
2048 ;
2049 })
2050
2051 ;; Be careful, fmovd does not exist when !v9.
2052 ;; We match MEM moves directly when we have correct even
2053 ;; numbered registers, but fall into splits otherwise.
2054 ;; The constraint ordering here is really important to
2055 ;; avoid insane problems in reload, especially for patterns
2056 ;; of the form:
2057 ;;
2058 ;; (set (mem:DI (plus:SI (reg:SI 30 %fp)
2059 ;; (const_int -5016)))
2060 ;; (reg:DI 2 %g2))
2061 ;;
2062
2063 (define_insn "*movdi_insn_sp32_v9"
2064 [(set (match_operand:DI 0 "nonimmediate_operand"
2065 "=T,o,T,U,o,r,r,r,?T,?f,?f,?o,?e,?e,?W")
2066 (match_operand:DI 1 "input_operand"
2067 " J,J,U,T,r,o,i,r, f, T, o, f, e, W, e"))]
2068 "! TARGET_ARCH64 && TARGET_V9
2069 && (GET_CODE (operands[0]) != MEM || GET_CODE (operands[1]) != MEM)"
2070 "@
2071 stx\t%%g0, %0
2072 #
2073 std\t%1, %0
2074 ldd\t%1, %0
2075 #
2076 #
2077 #
2078 #
2079 std\t%1, %0
2080 ldd\t%1, %0
2081 #
2082 #
2083 fmovd\\t%1, %0
2084 ldd\\t%1, %0
2085 std\\t%1, %0"
2086 [(set_attr "type" "store,store,store,load,*,*,*,*,fpstore,fpload,*,*,fpmove,fpload,fpstore")
2087 (set_attr "length" "*,2,*,*,2,2,2,2,*,*,2,2,*,*,*")
2088 (set_attr "fptype" "*,*,*,*,*,*,*,*,*,*,*,*,double,*,*")])
2089
2090 (define_insn "*movdi_insn_sp32"
2091 [(set (match_operand:DI 0 "nonimmediate_operand"
2092 "=o,T,U,o,r,r,r,?T,?f,?f,?o,?f")
2093 (match_operand:DI 1 "input_operand"
2094 " J,U,T,r,o,i,r, f, T, o, f, f"))]
2095 "! TARGET_ARCH64
2096 && (register_operand (operands[0], DImode)
2097 || register_operand (operands[1], DImode))"
2098 "@
2099 #
2100 std\t%1, %0
2101 ldd\t%1, %0
2102 #
2103 #
2104 #
2105 #
2106 std\t%1, %0
2107 ldd\t%1, %0
2108 #
2109 #
2110 #"
2111 [(set_attr "type" "store,store,load,*,*,*,*,fpstore,fpload,*,*,*")
2112 (set_attr "length" "2,*,*,2,2,2,2,*,*,2,2,2")])
2113
2114 ;; The following are generated by sparc_emit_set_const64
2115 (define_insn "*movdi_sp64_dbl"
2116 [(set (match_operand:DI 0 "register_operand" "=r")
2117 (match_operand:DI 1 "const64_operand" ""))]
2118 "(TARGET_ARCH64
2119 && HOST_BITS_PER_WIDE_INT != 64)"
2120 "mov\t%1, %0")
2121
2122 ;; This is needed to show CSE exactly which bits are set
2123 ;; in a 64-bit register by sethi instructions.
2124 (define_insn "*movdi_const64_special"
2125 [(set (match_operand:DI 0 "register_operand" "=r")
2126 (match_operand:DI 1 "const64_high_operand" ""))]
2127 "TARGET_ARCH64"
2128 "sethi\t%%hi(%a1), %0")
2129
2130 (define_insn "*movdi_insn_sp64_novis"
2131 [(set (match_operand:DI 0 "nonimmediate_operand" "=r,r,r,r,m,?e,?e,?W")
2132 (match_operand:DI 1 "input_operand" "rI,N,J,m,rJ,e,W,e"))]
2133 "TARGET_ARCH64 && ! TARGET_VIS
2134 && (register_operand (operands[0], DImode)
2135 || reg_or_0_operand (operands[1], DImode))"
2136 "@
2137 mov\t%1, %0
2138 sethi\t%%hi(%a1), %0
2139 clr\t%0
2140 ldx\t%1, %0
2141 stx\t%r1, %0
2142 fmovd\t%1, %0
2143 ldd\t%1, %0
2144 std\t%1, %0"
2145 [(set_attr "type" "*,*,*,load,store,fpmove,fpload,fpstore")
2146 (set_attr "fptype" "*,*,*,*,*,double,*,*")])
2147
2148 (define_insn "*movdi_insn_sp64_vis"
2149 [(set (match_operand:DI 0 "nonimmediate_operand" "=r,r,r,r,m,?e,?e,?W,b")
2150 (match_operand:DI 1 "input_operand" "rI,N,J,m,rJ,e,W,e,J"))]
2151 "TARGET_ARCH64 && TARGET_VIS &&
2152 (register_operand (operands[0], DImode)
2153 || reg_or_0_operand (operands[1], DImode))"
2154 "@
2155 mov\t%1, %0
2156 sethi\t%%hi(%a1), %0
2157 clr\t%0
2158 ldx\t%1, %0
2159 stx\t%r1, %0
2160 fmovd\t%1, %0
2161 ldd\t%1, %0
2162 std\t%1, %0
2163 fzero\t%0"
2164 [(set_attr "type" "*,*,*,load,store,fpmove,fpload,fpstore,fpmove")
2165 (set_attr "fptype" "*,*,*,*,*,double,*,*,double")])
2166
2167 (define_expand "movdi_pic_label_ref"
2168 [(set (match_dup 3) (high:DI
2169 (unspec:DI [(match_operand:DI 1 "label_ref_operand" "")
2170 (match_dup 2)] UNSPEC_MOVE_PIC_LABEL)))
2171 (set (match_dup 4) (lo_sum:DI (match_dup 3)
2172 (unspec:DI [(match_dup 1) (match_dup 2)] UNSPEC_MOVE_PIC_LABEL)))
2173 (set (match_operand:DI 0 "register_operand" "=r")
2174 (minus:DI (match_dup 5) (match_dup 4)))]
2175 "TARGET_ARCH64 && flag_pic"
2176 {
2177 current_function_uses_pic_offset_table = 1;
2178 operands[2] = gen_rtx_SYMBOL_REF (Pmode, "_GLOBAL_OFFSET_TABLE_");
2179 if (no_new_pseudos)
2180 {
2181 operands[3] = operands[0];
2182 operands[4] = operands[0];
2183 }
2184 else
2185 {
2186 operands[3] = gen_reg_rtx (DImode);
2187 operands[4] = gen_reg_rtx (DImode);
2188 }
2189 operands[5] = pic_offset_table_rtx;
2190 })
2191
2192 (define_insn "*movdi_high_pic_label_ref"
2193 [(set (match_operand:DI 0 "register_operand" "=r")
2194 (high:DI
2195 (unspec:DI [(match_operand:DI 1 "label_ref_operand" "")
2196 (match_operand:DI 2 "" "")] UNSPEC_MOVE_PIC_LABEL)))]
2197 "TARGET_ARCH64 && flag_pic"
2198 "sethi\t%%hi(%a2-(%a1-.)), %0")
2199
2200 (define_insn "*movdi_lo_sum_pic_label_ref"
2201 [(set (match_operand:DI 0 "register_operand" "=r")
2202 (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
2203 (unspec:DI [(match_operand:DI 2 "label_ref_operand" "")
2204 (match_operand:DI 3 "" "")] UNSPEC_MOVE_PIC_LABEL)))]
2205 "TARGET_ARCH64 && flag_pic"
2206 "or\t%1, %%lo(%a3-(%a2-.)), %0")
2207
2208 ;; SPARC-v9 code model support insns. See sparc_emit_set_symbolic_const64
2209 ;; in sparc.c to see what is going on here... PIC stuff comes first.
2210
2211 (define_insn "movdi_lo_sum_pic"
2212 [(set (match_operand:DI 0 "register_operand" "=r")
2213 (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
2214 (unspec:DI [(match_operand:DI 2 "immediate_operand" "in")] UNSPEC_MOVE_PIC)))]
2215 "TARGET_ARCH64 && flag_pic"
2216 "or\t%1, %%lo(%a2), %0")
2217
2218 (define_insn "movdi_high_pic"
2219 [(set (match_operand:DI 0 "register_operand" "=r")
2220 (high:DI (unspec:DI [(match_operand 1 "" "")] UNSPEC_MOVE_PIC)))]
2221 "TARGET_ARCH64 && flag_pic && check_pic (1)"
2222 "sethi\t%%hi(%a1), %0")
2223
2224 (define_insn "*sethi_di_medlow_embmedany_pic"
2225 [(set (match_operand:DI 0 "register_operand" "=r")
2226 (high:DI (match_operand:DI 1 "sp64_medium_pic_operand" "")))]
2227 "(TARGET_CM_MEDLOW || TARGET_CM_EMBMEDANY) && check_pic (1)"
2228 "sethi\t%%hi(%a1), %0")
2229
2230 (define_insn "*sethi_di_medlow"
2231 [(set (match_operand:DI 0 "register_operand" "=r")
2232 (high:DI (match_operand:DI 1 "symbolic_operand" "")))]
2233 "TARGET_CM_MEDLOW && check_pic (1)"
2234 "sethi\t%%hi(%a1), %0")
2235
2236 (define_insn "*losum_di_medlow"
2237 [(set (match_operand:DI 0 "register_operand" "=r")
2238 (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
2239 (match_operand:DI 2 "symbolic_operand" "")))]
2240 "TARGET_CM_MEDLOW"
2241 "or\t%1, %%lo(%a2), %0")
2242
2243 (define_insn "seth44"
2244 [(set (match_operand:DI 0 "register_operand" "=r")
2245 (high:DI (unspec:DI [(match_operand:DI 1 "symbolic_operand" "")] UNSPEC_SETH44)))]
2246 "TARGET_CM_MEDMID"
2247 "sethi\t%%h44(%a1), %0")
2248
2249 (define_insn "setm44"
2250 [(set (match_operand:DI 0 "register_operand" "=r")
2251 (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
2252 (unspec:DI [(match_operand:DI 2 "symbolic_operand" "")] UNSPEC_SETM44)))]
2253 "TARGET_CM_MEDMID"
2254 "or\t%1, %%m44(%a2), %0")
2255
2256 (define_insn "setl44"
2257 [(set (match_operand:DI 0 "register_operand" "=r")
2258 (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
2259 (match_operand:DI 2 "symbolic_operand" "")))]
2260 "TARGET_CM_MEDMID"
2261 "or\t%1, %%l44(%a2), %0")
2262
2263 (define_insn "sethh"
2264 [(set (match_operand:DI 0 "register_operand" "=r")
2265 (high:DI (unspec:DI [(match_operand:DI 1 "symbolic_operand" "")] UNSPEC_SETHH)))]
2266 "TARGET_CM_MEDANY"
2267 "sethi\t%%hh(%a1), %0")
2268
2269 (define_insn "setlm"
2270 [(set (match_operand:DI 0 "register_operand" "=r")
2271 (high:DI (unspec:DI [(match_operand:DI 1 "symbolic_operand" "")] UNSPEC_SETLM)))]
2272 "TARGET_CM_MEDANY"
2273 "sethi\t%%lm(%a1), %0")
2274
2275 (define_insn "sethm"
2276 [(set (match_operand:DI 0 "register_operand" "=r")
2277 (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
2278 (unspec:DI [(match_operand:DI 2 "symbolic_operand" "")] UNSPEC_EMB_SETHM)))]
2279 "TARGET_CM_MEDANY"
2280 "or\t%1, %%hm(%a2), %0")
2281
2282 (define_insn "setlo"
2283 [(set (match_operand:DI 0 "register_operand" "=r")
2284 (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
2285 (match_operand:DI 2 "symbolic_operand" "")))]
2286 "TARGET_CM_MEDANY"
2287 "or\t%1, %%lo(%a2), %0")
2288
2289 (define_insn "embmedany_sethi"
2290 [(set (match_operand:DI 0 "register_operand" "=r")
2291 (high:DI (unspec:DI [(match_operand:DI 1 "data_segment_operand" "")] UNSPEC_EMB_HISUM)))]
2292 "TARGET_CM_EMBMEDANY && check_pic (1)"
2293 "sethi\t%%hi(%a1), %0")
2294
2295 (define_insn "embmedany_losum"
2296 [(set (match_operand:DI 0 "register_operand" "=r")
2297 (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
2298 (match_operand:DI 2 "data_segment_operand" "")))]
2299 "TARGET_CM_EMBMEDANY"
2300 "add\t%1, %%lo(%a2), %0")
2301
2302 (define_insn "embmedany_brsum"
2303 [(set (match_operand:DI 0 "register_operand" "=r")
2304 (unspec:DI [(match_operand:DI 1 "register_operand" "r")] UNSPEC_EMB_HISUM))]
2305 "TARGET_CM_EMBMEDANY"
2306 "add\t%1, %_, %0")
2307
2308 (define_insn "embmedany_textuhi"
2309 [(set (match_operand:DI 0 "register_operand" "=r")
2310 (high:DI (unspec:DI [(match_operand:DI 1 "text_segment_operand" "")] UNSPEC_EMB_TEXTUHI)))]
2311 "TARGET_CM_EMBMEDANY && check_pic (1)"
2312 "sethi\t%%uhi(%a1), %0")
2313
2314 (define_insn "embmedany_texthi"
2315 [(set (match_operand:DI 0 "register_operand" "=r")
2316 (high:DI (unspec:DI [(match_operand:DI 1 "text_segment_operand" "")] UNSPEC_EMB_TEXTHI)))]
2317 "TARGET_CM_EMBMEDANY && check_pic (1)"
2318 "sethi\t%%hi(%a1), %0")
2319
2320 (define_insn "embmedany_textulo"
2321 [(set (match_operand:DI 0 "register_operand" "=r")
2322 (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
2323 (unspec:DI [(match_operand:DI 2 "text_segment_operand" "")] UNSPEC_EMB_TEXTULO)))]
2324 "TARGET_CM_EMBMEDANY"
2325 "or\t%1, %%ulo(%a2), %0")
2326
2327 (define_insn "embmedany_textlo"
2328 [(set (match_operand:DI 0 "register_operand" "=r")
2329 (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
2330 (match_operand:DI 2 "text_segment_operand" "")))]
2331 "TARGET_CM_EMBMEDANY"
2332 "or\t%1, %%lo(%a2), %0")
2333
2334 ;; Now some patterns to help reload out a bit.
2335 (define_expand "reload_indi"
2336 [(parallel [(match_operand:DI 0 "register_operand" "=r")
2337 (match_operand:DI 1 "immediate_operand" "")
2338 (match_operand:TI 2 "register_operand" "=&r")])]
2339 "(TARGET_CM_MEDANY
2340 || TARGET_CM_EMBMEDANY)
2341 && ! flag_pic"
2342 {
2343 sparc_emit_set_symbolic_const64 (operands[0], operands[1], operands[2]);
2344 DONE;
2345 })
2346
2347 (define_expand "reload_outdi"
2348 [(parallel [(match_operand:DI 0 "register_operand" "=r")
2349 (match_operand:DI 1 "immediate_operand" "")
2350 (match_operand:TI 2 "register_operand" "=&r")])]
2351 "(TARGET_CM_MEDANY
2352 || TARGET_CM_EMBMEDANY)
2353 && ! flag_pic"
2354 {
2355 sparc_emit_set_symbolic_const64 (operands[0], operands[1], operands[2]);
2356 DONE;
2357 })
2358
2359 ;; Split up putting CONSTs and REGs into DI regs when !arch64
2360 (define_split
2361 [(set (match_operand:DI 0 "register_operand" "")
2362 (match_operand:DI 1 "const_int_operand" ""))]
2363 "! TARGET_ARCH64 && reload_completed"
2364 [(clobber (const_int 0))]
2365 {
2366 #if HOST_BITS_PER_WIDE_INT == 32
2367 emit_insn (gen_movsi (gen_highpart (SImode, operands[0]),
2368 (INTVAL (operands[1]) < 0) ?
2369 constm1_rtx :
2370 const0_rtx));
2371 emit_insn (gen_movsi (gen_lowpart (SImode, operands[0]),
2372 operands[1]));
2373 #else
2374 unsigned int low, high;
2375
2376 low = trunc_int_for_mode (INTVAL (operands[1]), SImode);
2377 high = trunc_int_for_mode (INTVAL (operands[1]) >> 32, SImode);
2378 emit_insn (gen_movsi (gen_highpart (SImode, operands[0]), GEN_INT (high)));
2379
2380 /* Slick... but this trick loses if this subreg constant part
2381 can be done in one insn. */
2382 if (low == high && (low & 0x3ff) != 0 && low + 0x1000 >= 0x2000)
2383 emit_insn (gen_movsi (gen_lowpart (SImode, operands[0]),
2384 gen_highpart (SImode, operands[0])));
2385 else
2386 emit_insn (gen_movsi (gen_lowpart (SImode, operands[0]), GEN_INT (low)));
2387 #endif
2388 DONE;
2389 })
2390
2391 (define_split
2392 [(set (match_operand:DI 0 "register_operand" "")
2393 (match_operand:DI 1 "const_double_operand" ""))]
2394 "reload_completed
2395 && (! TARGET_V9
2396 || (! TARGET_ARCH64
2397 && ((GET_CODE (operands[0]) == REG
2398 && REGNO (operands[0]) < 32)
2399 || (GET_CODE (operands[0]) == SUBREG
2400 && GET_CODE (SUBREG_REG (operands[0])) == REG
2401 && REGNO (SUBREG_REG (operands[0])) < 32))))"
2402 [(clobber (const_int 0))]
2403 {
2404 emit_insn (gen_movsi (gen_highpart (SImode, operands[0]),
2405 GEN_INT (CONST_DOUBLE_HIGH (operands[1]))));
2406
2407 /* Slick... but this trick loses if this subreg constant part
2408 can be done in one insn. */
2409 if (CONST_DOUBLE_LOW (operands[1]) == CONST_DOUBLE_HIGH (operands[1])
2410 && !(SPARC_SETHI32_P (CONST_DOUBLE_HIGH (operands[1]))
2411 || SPARC_SIMM13_P (CONST_DOUBLE_HIGH (operands[1]))))
2412 {
2413 emit_insn (gen_movsi (gen_lowpart (SImode, operands[0]),
2414 gen_highpart (SImode, operands[0])));
2415 }
2416 else
2417 {
2418 emit_insn (gen_movsi (gen_lowpart (SImode, operands[0]),
2419 GEN_INT (CONST_DOUBLE_LOW (operands[1]))));
2420 }
2421 DONE;
2422 })
2423
2424 (define_split
2425 [(set (match_operand:DI 0 "register_operand" "")
2426 (match_operand:DI 1 "register_operand" ""))]
2427 "reload_completed
2428 && (! TARGET_V9
2429 || (! TARGET_ARCH64
2430 && ((GET_CODE (operands[0]) == REG
2431 && REGNO (operands[0]) < 32)
2432 || (GET_CODE (operands[0]) == SUBREG
2433 && GET_CODE (SUBREG_REG (operands[0])) == REG
2434 && REGNO (SUBREG_REG (operands[0])) < 32))))"
2435 [(clobber (const_int 0))]
2436 {
2437 rtx set_dest = operands[0];
2438 rtx set_src = operands[1];
2439 rtx dest1, dest2;
2440 rtx src1, src2;
2441
2442 dest1 = gen_highpart (SImode, set_dest);
2443 dest2 = gen_lowpart (SImode, set_dest);
2444 src1 = gen_highpart (SImode, set_src);
2445 src2 = gen_lowpart (SImode, set_src);
2446
2447 /* Now emit using the real source and destination we found, swapping
2448 the order if we detect overlap. */
2449 if (reg_overlap_mentioned_p (dest1, src2))
2450 {
2451 emit_insn (gen_movsi (dest2, src2));
2452 emit_insn (gen_movsi (dest1, src1));
2453 }
2454 else
2455 {
2456 emit_insn (gen_movsi (dest1, src1));
2457 emit_insn (gen_movsi (dest2, src2));
2458 }
2459 DONE;
2460 })
2461
2462 ;; Now handle the cases of memory moves from/to non-even
2463 ;; DI mode register pairs.
2464 (define_split
2465 [(set (match_operand:DI 0 "register_operand" "")
2466 (match_operand:DI 1 "memory_operand" ""))]
2467 "(! TARGET_ARCH64
2468 && reload_completed
2469 && sparc_splitdi_legitimate (operands[0], operands[1]))"
2470 [(clobber (const_int 0))]
2471 {
2472 rtx word0 = adjust_address (operands[1], SImode, 0);
2473 rtx word1 = adjust_address (operands[1], SImode, 4);
2474 rtx high_part = gen_highpart (SImode, operands[0]);
2475 rtx low_part = gen_lowpart (SImode, operands[0]);
2476
2477 if (reg_overlap_mentioned_p (high_part, word1))
2478 {
2479 emit_insn (gen_movsi (low_part, word1));
2480 emit_insn (gen_movsi (high_part, word0));
2481 }
2482 else
2483 {
2484 emit_insn (gen_movsi (high_part, word0));
2485 emit_insn (gen_movsi (low_part, word1));
2486 }
2487 DONE;
2488 })
2489
2490 (define_split
2491 [(set (match_operand:DI 0 "memory_operand" "")
2492 (match_operand:DI 1 "register_operand" ""))]
2493 "(! TARGET_ARCH64
2494 && reload_completed
2495 && sparc_splitdi_legitimate (operands[1], operands[0]))"
2496 [(clobber (const_int 0))]
2497 {
2498 emit_insn (gen_movsi (adjust_address (operands[0], SImode, 0),
2499 gen_highpart (SImode, operands[1])));
2500 emit_insn (gen_movsi (adjust_address (operands[0], SImode, 4),
2501 gen_lowpart (SImode, operands[1])));
2502 DONE;
2503 })
2504
2505 (define_split
2506 [(set (match_operand:DI 0 "memory_operand" "")
2507 (const_int 0))]
2508 "reload_completed
2509 && (! TARGET_V9
2510 || (! TARGET_ARCH64
2511 && ! mem_min_alignment (operands[0], 8)))
2512 && offsettable_memref_p (operands[0])"
2513 [(clobber (const_int 0))]
2514 {
2515 emit_insn (gen_movsi (adjust_address (operands[0], SImode, 0), const0_rtx));
2516 emit_insn (gen_movsi (adjust_address (operands[0], SImode, 4), const0_rtx));
2517 DONE;
2518 })
2519 \f
2520 ;; Floating point move insns
2521
2522 (define_insn "*movsf_insn_novis"
2523 [(set (match_operand:SF 0 "nonimmediate_operand" "=f,*r,*r,*r,*r,*r,f,m,m")
2524 (match_operand:SF 1 "input_operand" "f,G,Q,*rR,S,m,m,f,*rG"))]
2525 "(TARGET_FPU && ! TARGET_VIS)
2526 && (register_operand (operands[0], SFmode)
2527 || register_operand (operands[1], SFmode)
2528 || fp_zero_operand (operands[1], SFmode))"
2529 {
2530 if (GET_CODE (operands[1]) == CONST_DOUBLE
2531 && (which_alternative == 2
2532 || which_alternative == 3
2533 || which_alternative == 4))
2534 {
2535 REAL_VALUE_TYPE r;
2536 long i;
2537
2538 REAL_VALUE_FROM_CONST_DOUBLE (r, operands[1]);
2539 REAL_VALUE_TO_TARGET_SINGLE (r, i);
2540 operands[1] = GEN_INT (i);
2541 }
2542
2543 switch (which_alternative)
2544 {
2545 case 0:
2546 return "fmovs\t%1, %0";
2547 case 1:
2548 return "clr\t%0";
2549 case 2:
2550 return "sethi\t%%hi(%a1), %0";
2551 case 3:
2552 return "mov\t%1, %0";
2553 case 4:
2554 return "#";
2555 case 5:
2556 case 6:
2557 return "ld\t%1, %0";
2558 case 7:
2559 case 8:
2560 return "st\t%r1, %0";
2561 default:
2562 abort();
2563 }
2564 }
2565 [(set_attr "type" "fpmove,*,*,*,*,load,fpload,fpstore,store")])
2566
2567 (define_insn "*movsf_insn_vis"
2568 [(set (match_operand:SF 0 "nonimmediate_operand" "=f,f,*r,*r,*r,*r,*r,f,m,m")
2569 (match_operand:SF 1 "input_operand" "f,G,G,Q,*rR,S,m,m,f,*rG"))]
2570 "(TARGET_FPU && TARGET_VIS)
2571 && (register_operand (operands[0], SFmode)
2572 || register_operand (operands[1], SFmode)
2573 || fp_zero_operand (operands[1], SFmode))"
2574 {
2575 if (GET_CODE (operands[1]) == CONST_DOUBLE
2576 && (which_alternative == 3
2577 || which_alternative == 4
2578 || which_alternative == 5))
2579 {
2580 REAL_VALUE_TYPE r;
2581 long i;
2582
2583 REAL_VALUE_FROM_CONST_DOUBLE (r, operands[1]);
2584 REAL_VALUE_TO_TARGET_SINGLE (r, i);
2585 operands[1] = GEN_INT (i);
2586 }
2587
2588 switch (which_alternative)
2589 {
2590 case 0:
2591 return "fmovs\t%1, %0";
2592 case 1:
2593 return "fzeros\t%0";
2594 case 2:
2595 return "clr\t%0";
2596 case 3:
2597 return "sethi\t%%hi(%a1), %0";
2598 case 4:
2599 return "mov\t%1, %0";
2600 case 5:
2601 return "#";
2602 case 6:
2603 case 7:
2604 return "ld\t%1, %0";
2605 case 8:
2606 case 9:
2607 return "st\t%r1, %0";
2608 default:
2609 abort();
2610 }
2611 }
2612 [(set_attr "type" "fpmove,fpmove,*,*,*,*,load,fpload,fpstore,store")])
2613
2614 ;; Exactly the same as above, except that all `f' cases are deleted.
2615 ;; This is necessary to prevent reload from ever trying to use a `f' reg
2616 ;; when -mno-fpu.
2617
2618 (define_insn "*movsf_no_f_insn"
2619 [(set (match_operand:SF 0 "nonimmediate_operand" "=r,r,r,r,r,m")
2620 (match_operand:SF 1 "input_operand" "G,Q,rR,S,m,rG"))]
2621 "! TARGET_FPU
2622 && (register_operand (operands[0], SFmode)
2623 || register_operand (operands[1], SFmode)
2624 || fp_zero_operand (operands[1], SFmode))"
2625 {
2626 if (GET_CODE (operands[1]) == CONST_DOUBLE
2627 && (which_alternative == 1
2628 || which_alternative == 2
2629 || which_alternative == 3))
2630 {
2631 REAL_VALUE_TYPE r;
2632 long i;
2633
2634 REAL_VALUE_FROM_CONST_DOUBLE (r, operands[1]);
2635 REAL_VALUE_TO_TARGET_SINGLE (r, i);
2636 operands[1] = GEN_INT (i);
2637 }
2638
2639 switch (which_alternative)
2640 {
2641 case 0:
2642 return "clr\t%0";
2643 case 1:
2644 return "sethi\t%%hi(%a1), %0";
2645 case 2:
2646 return "mov\t%1, %0";
2647 case 3:
2648 return "#";
2649 case 4:
2650 return "ld\t%1, %0";
2651 case 5:
2652 return "st\t%r1, %0";
2653 default:
2654 abort();
2655 }
2656 }
2657 [(set_attr "type" "*,*,*,*,load,store")])
2658
2659 (define_insn "*movsf_lo_sum"
2660 [(set (match_operand:SF 0 "register_operand" "=r")
2661 (lo_sum:SF (match_operand:SF 1 "register_operand" "r")
2662 (match_operand:SF 2 "const_double_operand" "S")))]
2663 "fp_high_losum_p (operands[2])"
2664 {
2665 REAL_VALUE_TYPE r;
2666 long i;
2667
2668 REAL_VALUE_FROM_CONST_DOUBLE (r, operands[2]);
2669 REAL_VALUE_TO_TARGET_SINGLE (r, i);
2670 operands[2] = GEN_INT (i);
2671 return "or\t%1, %%lo(%a2), %0";
2672 })
2673
2674 (define_insn "*movsf_high"
2675 [(set (match_operand:SF 0 "register_operand" "=r")
2676 (high:SF (match_operand:SF 1 "const_double_operand" "S")))]
2677 "fp_high_losum_p (operands[1])"
2678 {
2679 REAL_VALUE_TYPE r;
2680 long i;
2681
2682 REAL_VALUE_FROM_CONST_DOUBLE (r, operands[1]);
2683 REAL_VALUE_TO_TARGET_SINGLE (r, i);
2684 operands[1] = GEN_INT (i);
2685 return "sethi\t%%hi(%1), %0";
2686 })
2687
2688 (define_split
2689 [(set (match_operand:SF 0 "register_operand" "")
2690 (match_operand:SF 1 "const_double_operand" ""))]
2691 "fp_high_losum_p (operands[1])
2692 && (GET_CODE (operands[0]) == REG
2693 && REGNO (operands[0]) < 32)"
2694 [(set (match_dup 0) (high:SF (match_dup 1)))
2695 (set (match_dup 0) (lo_sum:SF (match_dup 0) (match_dup 1)))])
2696
2697 (define_expand "movsf"
2698 [(set (match_operand:SF 0 "general_operand" "")
2699 (match_operand:SF 1 "general_operand" ""))]
2700 ""
2701 {
2702 /* Force SFmode constants into memory. */
2703 if (GET_CODE (operands[0]) == REG
2704 && CONSTANT_P (operands[1]))
2705 {
2706 /* emit_group_store will send such bogosity to us when it is
2707 not storing directly into memory. So fix this up to avoid
2708 crashes in output_constant_pool. */
2709 if (operands [1] == const0_rtx)
2710 operands[1] = CONST0_RTX (SFmode);
2711
2712 if (TARGET_VIS && fp_zero_operand (operands[1], SFmode))
2713 goto movsf_is_ok;
2714
2715 /* We are able to build any SF constant in integer registers
2716 with at most 2 instructions. */
2717 if (REGNO (operands[0]) < 32)
2718 goto movsf_is_ok;
2719
2720 operands[1] = validize_mem (force_const_mem (GET_MODE (operands[0]),
2721 operands[1]));
2722 }
2723
2724 /* Handle sets of MEM first. */
2725 if (GET_CODE (operands[0]) == MEM)
2726 {
2727 if (register_operand (operands[1], SFmode)
2728 || fp_zero_operand (operands[1], SFmode))
2729 goto movsf_is_ok;
2730
2731 if (! reload_in_progress)
2732 {
2733 operands[0] = validize_mem (operands[0]);
2734 operands[1] = force_reg (SFmode, operands[1]);
2735 }
2736 }
2737
2738 /* Fixup PIC cases. */
2739 if (flag_pic)
2740 {
2741 if (CONSTANT_P (operands[1])
2742 && pic_address_needs_scratch (operands[1]))
2743 operands[1] = legitimize_pic_address (operands[1], SFmode, 0);
2744
2745 if (symbolic_operand (operands[1], SFmode))
2746 {
2747 operands[1] = legitimize_pic_address (operands[1],
2748 SFmode,
2749 (reload_in_progress ?
2750 operands[0] :
2751 NULL_RTX));
2752 }
2753 }
2754
2755 movsf_is_ok:
2756 ;
2757 })
2758
2759 (define_expand "movdf"
2760 [(set (match_operand:DF 0 "general_operand" "")
2761 (match_operand:DF 1 "general_operand" ""))]
2762 ""
2763 {
2764 /* Force DFmode constants into memory. */
2765 if (GET_CODE (operands[0]) == REG
2766 && CONSTANT_P (operands[1]))
2767 {
2768 /* emit_group_store will send such bogosity to us when it is
2769 not storing directly into memory. So fix this up to avoid
2770 crashes in output_constant_pool. */
2771 if (operands [1] == const0_rtx)
2772 operands[1] = CONST0_RTX (DFmode);
2773
2774 if ((TARGET_VIS || REGNO (operands[0]) < 32)
2775 && fp_zero_operand (operands[1], DFmode))
2776 goto movdf_is_ok;
2777
2778 /* We are able to build any DF constant in integer registers. */
2779 if (REGNO (operands[0]) < 32
2780 && (reload_completed || reload_in_progress))
2781 goto movdf_is_ok;
2782
2783 operands[1] = validize_mem (force_const_mem (GET_MODE (operands[0]),
2784 operands[1]));
2785 }
2786
2787 /* Handle MEM cases first. */
2788 if (GET_CODE (operands[0]) == MEM)
2789 {
2790 if (register_operand (operands[1], DFmode)
2791 || fp_zero_operand (operands[1], DFmode))
2792 goto movdf_is_ok;
2793
2794 if (! reload_in_progress)
2795 {
2796 operands[0] = validize_mem (operands[0]);
2797 operands[1] = force_reg (DFmode, operands[1]);
2798 }
2799 }
2800
2801 /* Fixup PIC cases. */
2802 if (flag_pic)
2803 {
2804 if (CONSTANT_P (operands[1])
2805 && pic_address_needs_scratch (operands[1]))
2806 operands[1] = legitimize_pic_address (operands[1], DFmode, 0);
2807
2808 if (symbolic_operand (operands[1], DFmode))
2809 {
2810 operands[1] = legitimize_pic_address (operands[1],
2811 DFmode,
2812 (reload_in_progress ?
2813 operands[0] :
2814 NULL_RTX));
2815 }
2816 }
2817
2818 movdf_is_ok:
2819 ;
2820 })
2821
2822 ;; Be careful, fmovd does not exist when !v9.
2823 (define_insn "*movdf_insn_sp32"
2824 [(set (match_operand:DF 0 "nonimmediate_operand" "=e,W,U,T,o,e,*r,o,e,o")
2825 (match_operand:DF 1 "input_operand" "W#F,e,T,U,G,e,*rFo,*r,o#F,e"))]
2826 "TARGET_FPU
2827 && ! TARGET_V9
2828 && (register_operand (operands[0], DFmode)
2829 || register_operand (operands[1], DFmode)
2830 || fp_zero_operand (operands[1], DFmode))"
2831 "@
2832 ldd\t%1, %0
2833 std\t%1, %0
2834 ldd\t%1, %0
2835 std\t%1, %0
2836 #
2837 #
2838 #
2839 #
2840 #
2841 #"
2842 [(set_attr "type" "fpload,fpstore,load,store,*,*,*,*,*,*")
2843 (set_attr "length" "*,*,*,*,2,2,2,2,2,2")])
2844
2845 (define_insn "*movdf_no_e_insn_sp32"
2846 [(set (match_operand:DF 0 "nonimmediate_operand" "=U,T,o,r,o")
2847 (match_operand:DF 1 "input_operand" "T,U,G,ro,r"))]
2848 "! TARGET_FPU
2849 && ! TARGET_V9
2850 && ! TARGET_ARCH64
2851 && (register_operand (operands[0], DFmode)
2852 || register_operand (operands[1], DFmode)
2853 || fp_zero_operand (operands[1], DFmode))"
2854 "@
2855 ldd\t%1, %0
2856 std\t%1, %0
2857 #
2858 #
2859 #"
2860 [(set_attr "type" "load,store,*,*,*")
2861 (set_attr "length" "*,*,2,2,2")])
2862
2863 (define_insn "*movdf_no_e_insn_v9_sp32"
2864 [(set (match_operand:DF 0 "nonimmediate_operand" "=U,T,T,r,o")
2865 (match_operand:DF 1 "input_operand" "T,U,G,ro,rG"))]
2866 "! TARGET_FPU
2867 && TARGET_V9
2868 && ! TARGET_ARCH64
2869 && (register_operand (operands[0], DFmode)
2870 || register_operand (operands[1], DFmode)
2871 || fp_zero_operand (operands[1], DFmode))"
2872 "@
2873 ldd\t%1, %0
2874 std\t%1, %0
2875 stx\t%r1, %0
2876 #
2877 #"
2878 [(set_attr "type" "load,store,store,*,*")
2879 (set_attr "length" "*,*,*,2,2")])
2880
2881 ;; We have available v9 double floats but not 64-bit
2882 ;; integer registers and no VIS.
2883 (define_insn "*movdf_insn_v9only_novis"
2884 [(set (match_operand:DF 0 "nonimmediate_operand" "=e,e,T,W,U,T,f,*r,o")
2885 (match_operand:DF 1 "input_operand" "e,W#F,G,e,T,U,o#F,*roF,*rGf"))]
2886 "TARGET_FPU
2887 && TARGET_V9
2888 && ! TARGET_VIS
2889 && ! TARGET_ARCH64
2890 && (register_operand (operands[0], DFmode)
2891 || register_operand (operands[1], DFmode)
2892 || fp_zero_operand (operands[1], DFmode))"
2893 "@
2894 fmovd\t%1, %0
2895 ldd\t%1, %0
2896 stx\t%r1, %0
2897 std\t%1, %0
2898 ldd\t%1, %0
2899 std\t%1, %0
2900 #
2901 #
2902 #"
2903 [(set_attr "type" "fpmove,load,store,store,load,store,*,*,*")
2904 (set_attr "length" "*,*,*,*,*,*,2,2,2")
2905 (set_attr "fptype" "double,*,*,*,*,*,*,*,*")])
2906
2907 ;; We have available v9 double floats but not 64-bit
2908 ;; integer registers but we have VIS.
2909 (define_insn "*movdf_insn_v9only_vis"
2910 [(set (match_operand:DF 0 "nonimmediate_operand" "=e,e,e,T,W,U,T,f,*r,o")
2911 (match_operand:DF 1 "input_operand" "G,e,W#F,G,e,T,U,o#F,*roGF,*rGf"))]
2912 "TARGET_FPU
2913 && TARGET_VIS
2914 && ! TARGET_ARCH64
2915 && (register_operand (operands[0], DFmode)
2916 || register_operand (operands[1], DFmode)
2917 || fp_zero_operand (operands[1], DFmode))"
2918 "@
2919 fzero\t%0
2920 fmovd\t%1, %0
2921 ldd\t%1, %0
2922 stx\t%r1, %0
2923 std\t%1, %0
2924 ldd\t%1, %0
2925 std\t%1, %0
2926 #
2927 #
2928 #"
2929 [(set_attr "type" "fpmove,fpmove,load,store,store,load,store,*,*,*")
2930 (set_attr "length" "*,*,*,*,*,*,*,2,2,2")
2931 (set_attr "fptype" "double,double,*,*,*,*,*,*,*,*")])
2932
2933 ;; We have available both v9 double floats and 64-bit
2934 ;; integer registers. No VIS though.
2935 (define_insn "*movdf_insn_sp64_novis"
2936 [(set (match_operand:DF 0 "nonimmediate_operand" "=e,e,W,*r,*r,m,*r")
2937 (match_operand:DF 1 "input_operand" "e,W#F,e,*rG,m,*rG,F"))]
2938 "TARGET_FPU
2939 && ! TARGET_VIS
2940 && TARGET_ARCH64
2941 && (register_operand (operands[0], DFmode)
2942 || register_operand (operands[1], DFmode)
2943 || fp_zero_operand (operands[1], DFmode))"
2944 "@
2945 fmovd\t%1, %0
2946 ldd\t%1, %0
2947 std\t%1, %0
2948 mov\t%r1, %0
2949 ldx\t%1, %0
2950 stx\t%r1, %0
2951 #"
2952 [(set_attr "type" "fpmove,load,store,*,load,store,*")
2953 (set_attr "length" "*,*,*,*,*,*,2")
2954 (set_attr "fptype" "double,*,*,*,*,*,*")])
2955
2956 ;; We have available both v9 double floats and 64-bit
2957 ;; integer registers. And we have VIS.
2958 (define_insn "*movdf_insn_sp64_vis"
2959 [(set (match_operand:DF 0 "nonimmediate_operand" "=e,e,e,W,*r,*r,m,*r")
2960 (match_operand:DF 1 "input_operand" "G,e,W#F,e,*rG,m,*rG,F"))]
2961 "TARGET_FPU
2962 && TARGET_VIS
2963 && TARGET_ARCH64
2964 && (register_operand (operands[0], DFmode)
2965 || register_operand (operands[1], DFmode)
2966 || fp_zero_operand (operands[1], DFmode))"
2967 "@
2968 fzero\t%0
2969 fmovd\t%1, %0
2970 ldd\t%1, %0
2971 std\t%1, %0
2972 mov\t%r1, %0
2973 ldx\t%1, %0
2974 stx\t%r1, %0
2975 #"
2976 [(set_attr "type" "fpmove,fpmove,load,store,*,load,store,*")
2977 (set_attr "length" "*,*,*,*,*,*,*,2")
2978 (set_attr "fptype" "double,double,*,*,*,*,*,*")])
2979
2980 (define_insn "*movdf_no_e_insn_sp64"
2981 [(set (match_operand:DF 0 "nonimmediate_operand" "=r,r,m")
2982 (match_operand:DF 1 "input_operand" "r,m,rG"))]
2983 "! TARGET_FPU
2984 && TARGET_ARCH64
2985 && (register_operand (operands[0], DFmode)
2986 || register_operand (operands[1], DFmode)
2987 || fp_zero_operand (operands[1], DFmode))"
2988 "@
2989 mov\t%1, %0
2990 ldx\t%1, %0
2991 stx\t%r1, %0"
2992 [(set_attr "type" "*,load,store")])
2993
2994 (define_split
2995 [(set (match_operand:DF 0 "register_operand" "")
2996 (match_operand:DF 1 "const_double_operand" ""))]
2997 "TARGET_FPU
2998 && (GET_CODE (operands[0]) == REG
2999 && REGNO (operands[0]) < 32)
3000 && ! fp_zero_operand(operands[1], DFmode)
3001 && reload_completed"
3002 [(clobber (const_int 0))]
3003 {
3004 REAL_VALUE_TYPE r;
3005 long l[2];
3006
3007 REAL_VALUE_FROM_CONST_DOUBLE (r, operands[1]);
3008 REAL_VALUE_TO_TARGET_DOUBLE (r, l);
3009 operands[0] = gen_rtx_raw_REG (DImode, REGNO (operands[0]));
3010
3011 if (TARGET_ARCH64)
3012 {
3013 #if HOST_BITS_PER_WIDE_INT == 64
3014 HOST_WIDE_INT val;
3015
3016 val = ((HOST_WIDE_INT)(unsigned long)l[1] |
3017 ((HOST_WIDE_INT)(unsigned long)l[0] << 32));
3018 emit_insn (gen_movdi (operands[0], GEN_INT (val)));
3019 #else
3020 emit_insn (gen_movdi (operands[0],
3021 immed_double_const (l[1], l[0], DImode)));
3022 #endif
3023 }
3024 else
3025 {
3026 emit_insn (gen_movsi (gen_highpart (SImode, operands[0]),
3027 GEN_INT (l[0])));
3028
3029 /* Slick... but this trick loses if this subreg constant part
3030 can be done in one insn. */
3031 if (l[1] == l[0]
3032 && !(SPARC_SETHI32_P (l[0])
3033 || SPARC_SIMM13_P (l[0])))
3034 {
3035 emit_insn (gen_movsi (gen_lowpart (SImode, operands[0]),
3036 gen_highpart (SImode, operands[0])));
3037 }
3038 else
3039 {
3040 emit_insn (gen_movsi (gen_lowpart (SImode, operands[0]),
3041 GEN_INT (l[1])));
3042 }
3043 }
3044 DONE;
3045 })
3046
3047 ;; Ok, now the splits to handle all the multi insn and
3048 ;; mis-aligned memory address cases.
3049 ;; In these splits please take note that we must be
3050 ;; careful when V9 but not ARCH64 because the integer
3051 ;; register DFmode cases must be handled.
3052 (define_split
3053 [(set (match_operand:DF 0 "register_operand" "")
3054 (match_operand:DF 1 "register_operand" ""))]
3055 "(! TARGET_V9
3056 || (! TARGET_ARCH64
3057 && ((GET_CODE (operands[0]) == REG
3058 && REGNO (operands[0]) < 32)
3059 || (GET_CODE (operands[0]) == SUBREG
3060 && GET_CODE (SUBREG_REG (operands[0])) == REG
3061 && REGNO (SUBREG_REG (operands[0])) < 32))))
3062 && reload_completed"
3063 [(clobber (const_int 0))]
3064 {
3065 rtx set_dest = operands[0];
3066 rtx set_src = operands[1];
3067 rtx dest1, dest2;
3068 rtx src1, src2;
3069
3070 dest1 = gen_highpart (SFmode, set_dest);
3071 dest2 = gen_lowpart (SFmode, set_dest);
3072 src1 = gen_highpart (SFmode, set_src);
3073 src2 = gen_lowpart (SFmode, set_src);
3074
3075 /* Now emit using the real source and destination we found, swapping
3076 the order if we detect overlap. */
3077 if (reg_overlap_mentioned_p (dest1, src2))
3078 {
3079 emit_insn (gen_movsf (dest2, src2));
3080 emit_insn (gen_movsf (dest1, src1));
3081 }
3082 else
3083 {
3084 emit_insn (gen_movsf (dest1, src1));
3085 emit_insn (gen_movsf (dest2, src2));
3086 }
3087 DONE;
3088 })
3089
3090 (define_split
3091 [(set (match_operand:DF 0 "register_operand" "")
3092 (match_operand:DF 1 "memory_operand" ""))]
3093 "reload_completed
3094 && ! TARGET_ARCH64
3095 && (((REGNO (operands[0]) % 2) != 0)
3096 || ! mem_min_alignment (operands[1], 8))
3097 && offsettable_memref_p (operands[1])"
3098 [(clobber (const_int 0))]
3099 {
3100 rtx word0 = adjust_address (operands[1], SFmode, 0);
3101 rtx word1 = adjust_address (operands[1], SFmode, 4);
3102
3103 if (reg_overlap_mentioned_p (gen_highpart (SFmode, operands[0]), word1))
3104 {
3105 emit_insn (gen_movsf (gen_lowpart (SFmode, operands[0]),
3106 word1));
3107 emit_insn (gen_movsf (gen_highpart (SFmode, operands[0]),
3108 word0));
3109 }
3110 else
3111 {
3112 emit_insn (gen_movsf (gen_highpart (SFmode, operands[0]),
3113 word0));
3114 emit_insn (gen_movsf (gen_lowpart (SFmode, operands[0]),
3115 word1));
3116 }
3117 DONE;
3118 })
3119
3120 (define_split
3121 [(set (match_operand:DF 0 "memory_operand" "")
3122 (match_operand:DF 1 "register_operand" ""))]
3123 "reload_completed
3124 && ! TARGET_ARCH64
3125 && (((REGNO (operands[1]) % 2) != 0)
3126 || ! mem_min_alignment (operands[0], 8))
3127 && offsettable_memref_p (operands[0])"
3128 [(clobber (const_int 0))]
3129 {
3130 rtx word0 = adjust_address (operands[0], SFmode, 0);
3131 rtx word1 = adjust_address (operands[0], SFmode, 4);
3132
3133 emit_insn (gen_movsf (word0,
3134 gen_highpart (SFmode, operands[1])));
3135 emit_insn (gen_movsf (word1,
3136 gen_lowpart (SFmode, operands[1])));
3137 DONE;
3138 })
3139
3140 (define_split
3141 [(set (match_operand:DF 0 "memory_operand" "")
3142 (match_operand:DF 1 "fp_zero_operand" ""))]
3143 "reload_completed
3144 && (! TARGET_V9
3145 || (! TARGET_ARCH64
3146 && ! mem_min_alignment (operands[0], 8)))
3147 && offsettable_memref_p (operands[0])"
3148 [(clobber (const_int 0))]
3149 {
3150 rtx dest1, dest2;
3151
3152 dest1 = adjust_address (operands[0], SFmode, 0);
3153 dest2 = adjust_address (operands[0], SFmode, 4);
3154
3155 emit_insn (gen_movsf (dest1, CONST0_RTX (SFmode)));
3156 emit_insn (gen_movsf (dest2, CONST0_RTX (SFmode)));
3157 DONE;
3158 })
3159
3160 (define_split
3161 [(set (match_operand:DF 0 "register_operand" "")
3162 (match_operand:DF 1 "fp_zero_operand" ""))]
3163 "reload_completed
3164 && ! TARGET_ARCH64
3165 && ((GET_CODE (operands[0]) == REG
3166 && REGNO (operands[0]) < 32)
3167 || (GET_CODE (operands[0]) == SUBREG
3168 && GET_CODE (SUBREG_REG (operands[0])) == REG
3169 && REGNO (SUBREG_REG (operands[0])) < 32))"
3170 [(clobber (const_int 0))]
3171 {
3172 rtx set_dest = operands[0];
3173 rtx dest1, dest2;
3174
3175 dest1 = gen_highpart (SFmode, set_dest);
3176 dest2 = gen_lowpart (SFmode, set_dest);
3177 emit_insn (gen_movsf (dest1, CONST0_RTX (SFmode)));
3178 emit_insn (gen_movsf (dest2, CONST0_RTX (SFmode)));
3179 DONE;
3180 })
3181
3182 (define_expand "movtf"
3183 [(set (match_operand:TF 0 "general_operand" "")
3184 (match_operand:TF 1 "general_operand" ""))]
3185 ""
3186 {
3187 /* Force TFmode constants into memory. */
3188 if (GET_CODE (operands[0]) == REG
3189 && CONSTANT_P (operands[1]))
3190 {
3191 /* emit_group_store will send such bogosity to us when it is
3192 not storing directly into memory. So fix this up to avoid
3193 crashes in output_constant_pool. */
3194 if (operands [1] == const0_rtx)
3195 operands[1] = CONST0_RTX (TFmode);
3196
3197 if (TARGET_VIS && fp_zero_operand (operands[1], TFmode))
3198 goto movtf_is_ok;
3199
3200 operands[1] = validize_mem (force_const_mem (GET_MODE (operands[0]),
3201 operands[1]));
3202 }
3203
3204 /* Handle MEM cases first, note that only v9 guarentees
3205 full 16-byte alignment for quads. */
3206 if (GET_CODE (operands[0]) == MEM)
3207 {
3208 if (register_operand (operands[1], TFmode)
3209 || fp_zero_operand (operands[1], TFmode))
3210 goto movtf_is_ok;
3211
3212 if (! reload_in_progress)
3213 {
3214 operands[0] = validize_mem (operands[0]);
3215 operands[1] = force_reg (TFmode, operands[1]);
3216 }
3217 }
3218
3219 /* Fixup PIC cases. */
3220 if (flag_pic)
3221 {
3222 if (CONSTANT_P (operands[1])
3223 && pic_address_needs_scratch (operands[1]))
3224 operands[1] = legitimize_pic_address (operands[1], TFmode, 0);
3225
3226 if (symbolic_operand (operands[1], TFmode))
3227 {
3228 operands[1] = legitimize_pic_address (operands[1],
3229 TFmode,
3230 (reload_in_progress ?
3231 operands[0] :
3232 NULL_RTX));
3233 }
3234 }
3235
3236 movtf_is_ok:
3237 ;
3238 })
3239
3240 ;; Be careful, fmovq and {st,ld}{x,q} do not exist when !arch64 so
3241 ;; we must split them all. :-(
3242 (define_insn "*movtf_insn_sp32"
3243 [(set (match_operand:TF 0 "nonimmediate_operand" "=e,o,U,r")
3244 (match_operand:TF 1 "input_operand" "oe,GeUr,o,roG"))]
3245 "TARGET_FPU
3246 && ! TARGET_VIS
3247 && ! TARGET_ARCH64
3248 && (register_operand (operands[0], TFmode)
3249 || register_operand (operands[1], TFmode)
3250 || fp_zero_operand (operands[1], TFmode))"
3251 "#"
3252 [(set_attr "length" "4")])
3253
3254 (define_insn "*movtf_insn_vis_sp32"
3255 [(set (match_operand:TF 0 "nonimmediate_operand" "=e,o,U,r")
3256 (match_operand:TF 1 "input_operand" "Goe,GeUr,o,roG"))]
3257 "TARGET_FPU
3258 && TARGET_VIS
3259 && ! TARGET_ARCH64
3260 && (register_operand (operands[0], TFmode)
3261 || register_operand (operands[1], TFmode)
3262 || fp_zero_operand (operands[1], TFmode))"
3263 "#"
3264 [(set_attr "length" "4")])
3265
3266 ;; Exactly the same as above, except that all `e' cases are deleted.
3267 ;; This is necessary to prevent reload from ever trying to use a `e' reg
3268 ;; when -mno-fpu.
3269
3270 (define_insn "*movtf_no_e_insn_sp32"
3271 [(set (match_operand:TF 0 "nonimmediate_operand" "=o,U,o,r,o")
3272 (match_operand:TF 1 "input_operand" "G,o,U,roG,r"))]
3273 "! TARGET_FPU
3274 && ! TARGET_ARCH64
3275 && (register_operand (operands[0], TFmode)
3276 || register_operand (operands[1], TFmode)
3277 || fp_zero_operand (operands[1], TFmode))"
3278 "#"
3279 [(set_attr "length" "4")])
3280
3281 ;; Now handle the float reg cases directly when arch64,
3282 ;; hard_quad, and proper reg number alignment are all true.
3283 (define_insn "*movtf_insn_hq_sp64"
3284 [(set (match_operand:TF 0 "nonimmediate_operand" "=e,e,m,o,r")
3285 (match_operand:TF 1 "input_operand" "e,m,e,Gr,roG"))]
3286 "TARGET_FPU
3287 && ! TARGET_VIS
3288 && TARGET_ARCH64
3289 && TARGET_HARD_QUAD
3290 && (register_operand (operands[0], TFmode)
3291 || register_operand (operands[1], TFmode)
3292 || fp_zero_operand (operands[1], TFmode))"
3293 "@
3294 fmovq\t%1, %0
3295 ldq\t%1, %0
3296 stq\t%1, %0
3297 #
3298 #"
3299 [(set_attr "type" "fpmove,fpload,fpstore,*,*")
3300 (set_attr "length" "*,*,*,2,2")])
3301
3302 (define_insn "*movtf_insn_hq_vis_sp64"
3303 [(set (match_operand:TF 0 "nonimmediate_operand" "=e,e,m,eo,r,o")
3304 (match_operand:TF 1 "input_operand" "e,m,e,G,roG,r"))]
3305 "TARGET_FPU
3306 && TARGET_VIS
3307 && TARGET_ARCH64
3308 && TARGET_HARD_QUAD
3309 && (register_operand (operands[0], TFmode)
3310 || register_operand (operands[1], TFmode)
3311 || fp_zero_operand (operands[1], TFmode))"
3312 "@
3313 fmovq\t%1, %0
3314 ldq\t%1, %0
3315 stq\t%1, %0
3316 #
3317 #
3318 #"
3319 [(set_attr "type" "fpmove,fpload,fpstore,*,*,*")
3320 (set_attr "length" "*,*,*,2,2,2")])
3321
3322 ;; Now we allow the integer register cases even when
3323 ;; only arch64 is true.
3324 (define_insn "*movtf_insn_sp64"
3325 [(set (match_operand:TF 0 "nonimmediate_operand" "=e,o,r")
3326 (match_operand:TF 1 "input_operand" "oe,Ger,orG"))]
3327 "TARGET_FPU
3328 && ! TARGET_VIS
3329 && TARGET_ARCH64
3330 && ! TARGET_HARD_QUAD
3331 && (register_operand (operands[0], TFmode)
3332 || register_operand (operands[1], TFmode)
3333 || fp_zero_operand (operands[1], TFmode))"
3334 "#"
3335 [(set_attr "length" "2")])
3336
3337 (define_insn "*movtf_insn_vis_sp64"
3338 [(set (match_operand:TF 0 "nonimmediate_operand" "=e,o,r")
3339 (match_operand:TF 1 "input_operand" "Goe,Ger,orG"))]
3340 "TARGET_FPU
3341 && TARGET_VIS
3342 && TARGET_ARCH64
3343 && ! TARGET_HARD_QUAD
3344 && (register_operand (operands[0], TFmode)
3345 || register_operand (operands[1], TFmode)
3346 || fp_zero_operand (operands[1], TFmode))"
3347 "#"
3348 [(set_attr "length" "2")])
3349
3350 (define_insn "*movtf_no_e_insn_sp64"
3351 [(set (match_operand:TF 0 "nonimmediate_operand" "=r,o")
3352 (match_operand:TF 1 "input_operand" "orG,rG"))]
3353 "! TARGET_FPU
3354 && TARGET_ARCH64
3355 && (register_operand (operands[0], TFmode)
3356 || register_operand (operands[1], TFmode)
3357 || fp_zero_operand (operands[1], TFmode))"
3358 "#"
3359 [(set_attr "length" "2")])
3360
3361 ;; Now all the splits to handle multi-insn TF mode moves.
3362 (define_split
3363 [(set (match_operand:TF 0 "register_operand" "")
3364 (match_operand:TF 1 "register_operand" ""))]
3365 "reload_completed
3366 && (! TARGET_ARCH64
3367 || (TARGET_FPU
3368 && ! TARGET_HARD_QUAD)
3369 || ! fp_register_operand (operands[0], TFmode))"
3370 [(clobber (const_int 0))]
3371 {
3372 rtx set_dest = operands[0];
3373 rtx set_src = operands[1];
3374 rtx dest1, dest2;
3375 rtx src1, src2;
3376
3377 dest1 = gen_df_reg (set_dest, 0);
3378 dest2 = gen_df_reg (set_dest, 1);
3379 src1 = gen_df_reg (set_src, 0);
3380 src2 = gen_df_reg (set_src, 1);
3381
3382 /* Now emit using the real source and destination we found, swapping
3383 the order if we detect overlap. */
3384 if (reg_overlap_mentioned_p (dest1, src2))
3385 {
3386 emit_insn (gen_movdf (dest2, src2));
3387 emit_insn (gen_movdf (dest1, src1));
3388 }
3389 else
3390 {
3391 emit_insn (gen_movdf (dest1, src1));
3392 emit_insn (gen_movdf (dest2, src2));
3393 }
3394 DONE;
3395 })
3396
3397 (define_split
3398 [(set (match_operand:TF 0 "nonimmediate_operand" "")
3399 (match_operand:TF 1 "fp_zero_operand" ""))]
3400 "reload_completed"
3401 [(clobber (const_int 0))]
3402 {
3403 rtx set_dest = operands[0];
3404 rtx dest1, dest2;
3405
3406 switch (GET_CODE (set_dest))
3407 {
3408 case REG:
3409 dest1 = gen_df_reg (set_dest, 0);
3410 dest2 = gen_df_reg (set_dest, 1);
3411 break;
3412 case MEM:
3413 dest1 = adjust_address (set_dest, DFmode, 0);
3414 dest2 = adjust_address (set_dest, DFmode, 8);
3415 break;
3416 default:
3417 abort ();
3418 }
3419
3420 emit_insn (gen_movdf (dest1, CONST0_RTX (DFmode)));
3421 emit_insn (gen_movdf (dest2, CONST0_RTX (DFmode)));
3422 DONE;
3423 })
3424
3425 (define_split
3426 [(set (match_operand:TF 0 "register_operand" "")
3427 (match_operand:TF 1 "memory_operand" ""))]
3428 "(reload_completed
3429 && offsettable_memref_p (operands[1])
3430 && (! TARGET_ARCH64
3431 || ! TARGET_HARD_QUAD
3432 || ! fp_register_operand (operands[0], TFmode)))"
3433 [(clobber (const_int 0))]
3434 {
3435 rtx word0 = adjust_address (operands[1], DFmode, 0);
3436 rtx word1 = adjust_address (operands[1], DFmode, 8);
3437 rtx set_dest, dest1, dest2;
3438
3439 set_dest = operands[0];
3440
3441 dest1 = gen_df_reg (set_dest, 0);
3442 dest2 = gen_df_reg (set_dest, 1);
3443
3444 /* Now output, ordering such that we don't clobber any registers
3445 mentioned in the address. */
3446 if (reg_overlap_mentioned_p (dest1, word1))
3447
3448 {
3449 emit_insn (gen_movdf (dest2, word1));
3450 emit_insn (gen_movdf (dest1, word0));
3451 }
3452 else
3453 {
3454 emit_insn (gen_movdf (dest1, word0));
3455 emit_insn (gen_movdf (dest2, word1));
3456 }
3457 DONE;
3458 })
3459
3460 (define_split
3461 [(set (match_operand:TF 0 "memory_operand" "")
3462 (match_operand:TF 1 "register_operand" ""))]
3463 "(reload_completed
3464 && offsettable_memref_p (operands[0])
3465 && (! TARGET_ARCH64
3466 || ! TARGET_HARD_QUAD
3467 || ! fp_register_operand (operands[1], TFmode)))"
3468 [(clobber (const_int 0))]
3469 {
3470 rtx set_src = operands[1];
3471
3472 emit_insn (gen_movdf (adjust_address (operands[0], DFmode, 0),
3473 gen_df_reg (set_src, 0)));
3474 emit_insn (gen_movdf (adjust_address (operands[0], DFmode, 8),
3475 gen_df_reg (set_src, 1)));
3476 DONE;
3477 })
3478 \f
3479 ;; SPARC V9 conditional move instructions.
3480
3481 ;; We can handle larger constants here for some flavors, but for now we keep
3482 ;; it simple and only allow those constants supported by all flavors.
3483 ;; Note that emit_conditional_move canonicalizes operands 2,3 so that operand
3484 ;; 3 contains the constant if one is present, but we handle either for
3485 ;; generality (sparc.c puts a constant in operand 2).
3486
3487 (define_expand "movqicc"
3488 [(set (match_operand:QI 0 "register_operand" "")
3489 (if_then_else:QI (match_operand 1 "comparison_operator" "")
3490 (match_operand:QI 2 "arith10_operand" "")
3491 (match_operand:QI 3 "arith10_operand" "")))]
3492 "TARGET_V9"
3493 {
3494 enum rtx_code code = GET_CODE (operands[1]);
3495
3496 if (GET_MODE (sparc_compare_op0) == DImode
3497 && ! TARGET_ARCH64)
3498 FAIL;
3499
3500 if (sparc_compare_op1 == const0_rtx
3501 && GET_CODE (sparc_compare_op0) == REG
3502 && GET_MODE (sparc_compare_op0) == DImode
3503 && v9_regcmp_p (code))
3504 {
3505 operands[1] = gen_rtx_fmt_ee (code, DImode,
3506 sparc_compare_op0, sparc_compare_op1);
3507 }
3508 else
3509 {
3510 rtx cc_reg = gen_compare_reg (code,
3511 sparc_compare_op0, sparc_compare_op1);
3512 operands[1] = gen_rtx_fmt_ee (code, GET_MODE (cc_reg), cc_reg, const0_rtx);
3513 }
3514 })
3515
3516 (define_expand "movhicc"
3517 [(set (match_operand:HI 0 "register_operand" "")
3518 (if_then_else:HI (match_operand 1 "comparison_operator" "")
3519 (match_operand:HI 2 "arith10_operand" "")
3520 (match_operand:HI 3 "arith10_operand" "")))]
3521 "TARGET_V9"
3522 {
3523 enum rtx_code code = GET_CODE (operands[1]);
3524
3525 if (GET_MODE (sparc_compare_op0) == DImode
3526 && ! TARGET_ARCH64)
3527 FAIL;
3528
3529 if (sparc_compare_op1 == const0_rtx
3530 && GET_CODE (sparc_compare_op0) == REG
3531 && GET_MODE (sparc_compare_op0) == DImode
3532 && v9_regcmp_p (code))
3533 {
3534 operands[1] = gen_rtx_fmt_ee (code, DImode,
3535 sparc_compare_op0, sparc_compare_op1);
3536 }
3537 else
3538 {
3539 rtx cc_reg = gen_compare_reg (code,
3540 sparc_compare_op0, sparc_compare_op1);
3541 operands[1] = gen_rtx_fmt_ee (code, GET_MODE (cc_reg), cc_reg, const0_rtx);
3542 }
3543 })
3544
3545 (define_expand "movsicc"
3546 [(set (match_operand:SI 0 "register_operand" "")
3547 (if_then_else:SI (match_operand 1 "comparison_operator" "")
3548 (match_operand:SI 2 "arith10_operand" "")
3549 (match_operand:SI 3 "arith10_operand" "")))]
3550 "TARGET_V9"
3551 {
3552 enum rtx_code code = GET_CODE (operands[1]);
3553 enum machine_mode op0_mode = GET_MODE (sparc_compare_op0);
3554
3555 if (sparc_compare_op1 == const0_rtx
3556 && GET_CODE (sparc_compare_op0) == REG
3557 && (TARGET_ARCH64 && op0_mode == DImode && v9_regcmp_p (code)))
3558 {
3559 operands[1] = gen_rtx_fmt_ee (code, op0_mode,
3560 sparc_compare_op0, sparc_compare_op1);
3561 }
3562 else
3563 {
3564 rtx cc_reg = gen_compare_reg (code,
3565 sparc_compare_op0, sparc_compare_op1);
3566 operands[1] = gen_rtx_fmt_ee (code, GET_MODE (cc_reg),
3567 cc_reg, const0_rtx);
3568 }
3569 })
3570
3571 (define_expand "movdicc"
3572 [(set (match_operand:DI 0 "register_operand" "")
3573 (if_then_else:DI (match_operand 1 "comparison_operator" "")
3574 (match_operand:DI 2 "arith10_double_operand" "")
3575 (match_operand:DI 3 "arith10_double_operand" "")))]
3576 "TARGET_ARCH64"
3577 {
3578 enum rtx_code code = GET_CODE (operands[1]);
3579
3580 if (sparc_compare_op1 == const0_rtx
3581 && GET_CODE (sparc_compare_op0) == REG
3582 && GET_MODE (sparc_compare_op0) == DImode
3583 && v9_regcmp_p (code))
3584 {
3585 operands[1] = gen_rtx_fmt_ee (code, DImode,
3586 sparc_compare_op0, sparc_compare_op1);
3587 }
3588 else
3589 {
3590 rtx cc_reg = gen_compare_reg (code,
3591 sparc_compare_op0, sparc_compare_op1);
3592 operands[1] = gen_rtx_fmt_ee (code, GET_MODE (cc_reg),
3593 cc_reg, const0_rtx);
3594 }
3595 })
3596
3597 (define_expand "movsfcc"
3598 [(set (match_operand:SF 0 "register_operand" "")
3599 (if_then_else:SF (match_operand 1 "comparison_operator" "")
3600 (match_operand:SF 2 "register_operand" "")
3601 (match_operand:SF 3 "register_operand" "")))]
3602 "TARGET_V9 && TARGET_FPU"
3603 {
3604 enum rtx_code code = GET_CODE (operands[1]);
3605
3606 if (GET_MODE (sparc_compare_op0) == DImode
3607 && ! TARGET_ARCH64)
3608 FAIL;
3609
3610 if (sparc_compare_op1 == const0_rtx
3611 && GET_CODE (sparc_compare_op0) == REG
3612 && GET_MODE (sparc_compare_op0) == DImode
3613 && v9_regcmp_p (code))
3614 {
3615 operands[1] = gen_rtx_fmt_ee (code, DImode,
3616 sparc_compare_op0, sparc_compare_op1);
3617 }
3618 else
3619 {
3620 rtx cc_reg = gen_compare_reg (code,
3621 sparc_compare_op0, sparc_compare_op1);
3622 operands[1] = gen_rtx_fmt_ee (code, GET_MODE (cc_reg), cc_reg, const0_rtx);
3623 }
3624 })
3625
3626 (define_expand "movdfcc"
3627 [(set (match_operand:DF 0 "register_operand" "")
3628 (if_then_else:DF (match_operand 1 "comparison_operator" "")
3629 (match_operand:DF 2 "register_operand" "")
3630 (match_operand:DF 3 "register_operand" "")))]
3631 "TARGET_V9 && TARGET_FPU"
3632 {
3633 enum rtx_code code = GET_CODE (operands[1]);
3634
3635 if (GET_MODE (sparc_compare_op0) == DImode
3636 && ! TARGET_ARCH64)
3637 FAIL;
3638
3639 if (sparc_compare_op1 == const0_rtx
3640 && GET_CODE (sparc_compare_op0) == REG
3641 && GET_MODE (sparc_compare_op0) == DImode
3642 && v9_regcmp_p (code))
3643 {
3644 operands[1] = gen_rtx_fmt_ee (code, DImode,
3645 sparc_compare_op0, sparc_compare_op1);
3646 }
3647 else
3648 {
3649 rtx cc_reg = gen_compare_reg (code,
3650 sparc_compare_op0, sparc_compare_op1);
3651 operands[1] = gen_rtx_fmt_ee (code, GET_MODE (cc_reg), cc_reg, const0_rtx);
3652 }
3653 })
3654
3655 (define_expand "movtfcc"
3656 [(set (match_operand:TF 0 "register_operand" "")
3657 (if_then_else:TF (match_operand 1 "comparison_operator" "")
3658 (match_operand:TF 2 "register_operand" "")
3659 (match_operand:TF 3 "register_operand" "")))]
3660 "TARGET_V9 && TARGET_FPU"
3661 {
3662 enum rtx_code code = GET_CODE (operands[1]);
3663
3664 if (GET_MODE (sparc_compare_op0) == DImode
3665 && ! TARGET_ARCH64)
3666 FAIL;
3667
3668 if (sparc_compare_op1 == const0_rtx
3669 && GET_CODE (sparc_compare_op0) == REG
3670 && GET_MODE (sparc_compare_op0) == DImode
3671 && v9_regcmp_p (code))
3672 {
3673 operands[1] = gen_rtx_fmt_ee (code, DImode,
3674 sparc_compare_op0, sparc_compare_op1);
3675 }
3676 else
3677 {
3678 rtx cc_reg = gen_compare_reg (code,
3679 sparc_compare_op0, sparc_compare_op1);
3680 operands[1] = gen_rtx_fmt_ee (code, GET_MODE (cc_reg), cc_reg, const0_rtx);
3681 }
3682 })
3683
3684 ;; Conditional move define_insns.
3685
3686 (define_insn "*movqi_cc_sp64"
3687 [(set (match_operand:QI 0 "register_operand" "=r,r")
3688 (if_then_else:QI (match_operator 1 "comparison_operator"
3689 [(match_operand 2 "icc_or_fcc_reg_operand" "X,X")
3690 (const_int 0)])
3691 (match_operand:QI 3 "arith11_operand" "rL,0")
3692 (match_operand:QI 4 "arith11_operand" "0,rL")))]
3693 "TARGET_V9"
3694 "@
3695 mov%C1\t%x2, %3, %0
3696 mov%c1\t%x2, %4, %0"
3697 [(set_attr "type" "cmove")])
3698
3699 (define_insn "*movhi_cc_sp64"
3700 [(set (match_operand:HI 0 "register_operand" "=r,r")
3701 (if_then_else:HI (match_operator 1 "comparison_operator"
3702 [(match_operand 2 "icc_or_fcc_reg_operand" "X,X")
3703 (const_int 0)])
3704 (match_operand:HI 3 "arith11_operand" "rL,0")
3705 (match_operand:HI 4 "arith11_operand" "0,rL")))]
3706 "TARGET_V9"
3707 "@
3708 mov%C1\t%x2, %3, %0
3709 mov%c1\t%x2, %4, %0"
3710 [(set_attr "type" "cmove")])
3711
3712 (define_insn "*movsi_cc_sp64"
3713 [(set (match_operand:SI 0 "register_operand" "=r,r")
3714 (if_then_else:SI (match_operator 1 "comparison_operator"
3715 [(match_operand 2 "icc_or_fcc_reg_operand" "X,X")
3716 (const_int 0)])
3717 (match_operand:SI 3 "arith11_operand" "rL,0")
3718 (match_operand:SI 4 "arith11_operand" "0,rL")))]
3719 "TARGET_V9"
3720 "@
3721 mov%C1\t%x2, %3, %0
3722 mov%c1\t%x2, %4, %0"
3723 [(set_attr "type" "cmove")])
3724
3725 ;; ??? The constraints of operands 3,4 need work.
3726 (define_insn "*movdi_cc_sp64"
3727 [(set (match_operand:DI 0 "register_operand" "=r,r")
3728 (if_then_else:DI (match_operator 1 "comparison_operator"
3729 [(match_operand 2 "icc_or_fcc_reg_operand" "X,X")
3730 (const_int 0)])
3731 (match_operand:DI 3 "arith11_double_operand" "rLH,0")
3732 (match_operand:DI 4 "arith11_double_operand" "0,rLH")))]
3733 "TARGET_ARCH64"
3734 "@
3735 mov%C1\t%x2, %3, %0
3736 mov%c1\t%x2, %4, %0"
3737 [(set_attr "type" "cmove")])
3738
3739 (define_insn "*movdi_cc_sp64_trunc"
3740 [(set (match_operand:SI 0 "register_operand" "=r,r")
3741 (if_then_else:SI (match_operator 1 "comparison_operator"
3742 [(match_operand 2 "icc_or_fcc_reg_operand" "X,X")
3743 (const_int 0)])
3744 (match_operand:SI 3 "arith11_double_operand" "rLH,0")
3745 (match_operand:SI 4 "arith11_double_operand" "0,rLH")))]
3746 "TARGET_ARCH64"
3747 "@
3748 mov%C1\t%x2, %3, %0
3749 mov%c1\t%x2, %4, %0"
3750 [(set_attr "type" "cmove")])
3751
3752 (define_insn "*movsf_cc_sp64"
3753 [(set (match_operand:SF 0 "register_operand" "=f,f")
3754 (if_then_else:SF (match_operator 1 "comparison_operator"
3755 [(match_operand 2 "icc_or_fcc_reg_operand" "X,X")
3756 (const_int 0)])
3757 (match_operand:SF 3 "register_operand" "f,0")
3758 (match_operand:SF 4 "register_operand" "0,f")))]
3759 "TARGET_V9 && TARGET_FPU"
3760 "@
3761 fmovs%C1\t%x2, %3, %0
3762 fmovs%c1\t%x2, %4, %0"
3763 [(set_attr "type" "fpcmove")])
3764
3765 (define_insn "movdf_cc_sp64"
3766 [(set (match_operand:DF 0 "register_operand" "=e,e")
3767 (if_then_else:DF (match_operator 1 "comparison_operator"
3768 [(match_operand 2 "icc_or_fcc_reg_operand" "X,X")
3769 (const_int 0)])
3770 (match_operand:DF 3 "register_operand" "e,0")
3771 (match_operand:DF 4 "register_operand" "0,e")))]
3772 "TARGET_V9 && TARGET_FPU"
3773 "@
3774 fmovd%C1\t%x2, %3, %0
3775 fmovd%c1\t%x2, %4, %0"
3776 [(set_attr "type" "fpcmove")
3777 (set_attr "fptype" "double")])
3778
3779 (define_insn "*movtf_cc_hq_sp64"
3780 [(set (match_operand:TF 0 "register_operand" "=e,e")
3781 (if_then_else:TF (match_operator 1 "comparison_operator"
3782 [(match_operand 2 "icc_or_fcc_reg_operand" "X,X")
3783 (const_int 0)])
3784 (match_operand:TF 3 "register_operand" "e,0")
3785 (match_operand:TF 4 "register_operand" "0,e")))]
3786 "TARGET_V9 && TARGET_FPU && TARGET_HARD_QUAD"
3787 "@
3788 fmovq%C1\t%x2, %3, %0
3789 fmovq%c1\t%x2, %4, %0"
3790 [(set_attr "type" "fpcmove")])
3791
3792 (define_insn_and_split "*movtf_cc_sp64"
3793 [(set (match_operand:TF 0 "register_operand" "=e,e")
3794 (if_then_else:TF (match_operator 1 "comparison_operator"
3795 [(match_operand 2 "icc_or_fcc_reg_operand" "X,X")
3796 (const_int 0)])
3797 (match_operand:TF 3 "register_operand" "e,0")
3798 (match_operand:TF 4 "register_operand" "0,e")))]
3799 "TARGET_V9 && TARGET_FPU && !TARGET_HARD_QUAD"
3800 "#"
3801 "&& reload_completed"
3802 [(clobber (const_int 0))]
3803 {
3804 rtx set_dest = operands[0];
3805 rtx set_srca = operands[3];
3806 rtx set_srcb = operands[4];
3807 int third = rtx_equal_p (set_dest, set_srca);
3808 rtx dest1, dest2;
3809 rtx srca1, srca2, srcb1, srcb2;
3810
3811 dest1 = gen_df_reg (set_dest, 0);
3812 dest2 = gen_df_reg (set_dest, 1);
3813 srca1 = gen_df_reg (set_srca, 0);
3814 srca2 = gen_df_reg (set_srca, 1);
3815 srcb1 = gen_df_reg (set_srcb, 0);
3816 srcb2 = gen_df_reg (set_srcb, 1);
3817
3818 /* Now emit using the real source and destination we found, swapping
3819 the order if we detect overlap. */
3820 if ((third && reg_overlap_mentioned_p (dest1, srcb2))
3821 || (!third && reg_overlap_mentioned_p (dest1, srca2)))
3822 {
3823 emit_insn (gen_movdf_cc_sp64 (dest2, operands[1], operands[2], srca2, srcb2));
3824 emit_insn (gen_movdf_cc_sp64 (dest1, operands[1], operands[2], srca1, srcb1));
3825 }
3826 else
3827 {
3828 emit_insn (gen_movdf_cc_sp64 (dest1, operands[1], operands[2], srca1, srcb1));
3829 emit_insn (gen_movdf_cc_sp64 (dest2, operands[1], operands[2], srca2, srcb2));
3830 }
3831 DONE;
3832 }
3833 [(set_attr "length" "2")])
3834
3835 (define_insn "*movqi_cc_reg_sp64"
3836 [(set (match_operand:QI 0 "register_operand" "=r,r")
3837 (if_then_else:QI (match_operator 1 "v9_regcmp_op"
3838 [(match_operand:DI 2 "register_operand" "r,r")
3839 (const_int 0)])
3840 (match_operand:QI 3 "arith10_operand" "rM,0")
3841 (match_operand:QI 4 "arith10_operand" "0,rM")))]
3842 "TARGET_ARCH64"
3843 "@
3844 movr%D1\t%2, %r3, %0
3845 movr%d1\t%2, %r4, %0"
3846 [(set_attr "type" "cmove")])
3847
3848 (define_insn "*movhi_cc_reg_sp64"
3849 [(set (match_operand:HI 0 "register_operand" "=r,r")
3850 (if_then_else:HI (match_operator 1 "v9_regcmp_op"
3851 [(match_operand:DI 2 "register_operand" "r,r")
3852 (const_int 0)])
3853 (match_operand:HI 3 "arith10_operand" "rM,0")
3854 (match_operand:HI 4 "arith10_operand" "0,rM")))]
3855 "TARGET_ARCH64"
3856 "@
3857 movr%D1\t%2, %r3, %0
3858 movr%d1\t%2, %r4, %0"
3859 [(set_attr "type" "cmove")])
3860
3861 (define_insn "*movsi_cc_reg_sp64"
3862 [(set (match_operand:SI 0 "register_operand" "=r,r")
3863 (if_then_else:SI (match_operator 1 "v9_regcmp_op"
3864 [(match_operand:DI 2 "register_operand" "r,r")
3865 (const_int 0)])
3866 (match_operand:SI 3 "arith10_operand" "rM,0")
3867 (match_operand:SI 4 "arith10_operand" "0,rM")))]
3868 "TARGET_ARCH64"
3869 "@
3870 movr%D1\t%2, %r3, %0
3871 movr%d1\t%2, %r4, %0"
3872 [(set_attr "type" "cmove")])
3873
3874 ;; ??? The constraints of operands 3,4 need work.
3875 (define_insn "*movdi_cc_reg_sp64"
3876 [(set (match_operand:DI 0 "register_operand" "=r,r")
3877 (if_then_else:DI (match_operator 1 "v9_regcmp_op"
3878 [(match_operand:DI 2 "register_operand" "r,r")
3879 (const_int 0)])
3880 (match_operand:DI 3 "arith10_double_operand" "rMH,0")
3881 (match_operand:DI 4 "arith10_double_operand" "0,rMH")))]
3882 "TARGET_ARCH64"
3883 "@
3884 movr%D1\t%2, %r3, %0
3885 movr%d1\t%2, %r4, %0"
3886 [(set_attr "type" "cmove")])
3887
3888 (define_insn "*movdi_cc_reg_sp64_trunc"
3889 [(set (match_operand:SI 0 "register_operand" "=r,r")
3890 (if_then_else:SI (match_operator 1 "v9_regcmp_op"
3891 [(match_operand:DI 2 "register_operand" "r,r")
3892 (const_int 0)])
3893 (match_operand:SI 3 "arith10_double_operand" "rMH,0")
3894 (match_operand:SI 4 "arith10_double_operand" "0,rMH")))]
3895 "TARGET_ARCH64"
3896 "@
3897 movr%D1\t%2, %r3, %0
3898 movr%d1\t%2, %r4, %0"
3899 [(set_attr "type" "cmove")])
3900
3901 (define_insn "*movsf_cc_reg_sp64"
3902 [(set (match_operand:SF 0 "register_operand" "=f,f")
3903 (if_then_else:SF (match_operator 1 "v9_regcmp_op"
3904 [(match_operand:DI 2 "register_operand" "r,r")
3905 (const_int 0)])
3906 (match_operand:SF 3 "register_operand" "f,0")
3907 (match_operand:SF 4 "register_operand" "0,f")))]
3908 "TARGET_ARCH64 && TARGET_FPU"
3909 "@
3910 fmovrs%D1\t%2, %3, %0
3911 fmovrs%d1\t%2, %4, %0"
3912 [(set_attr "type" "fpcrmove")])
3913
3914 (define_insn "movdf_cc_reg_sp64"
3915 [(set (match_operand:DF 0 "register_operand" "=e,e")
3916 (if_then_else:DF (match_operator 1 "v9_regcmp_op"
3917 [(match_operand:DI 2 "register_operand" "r,r")
3918 (const_int 0)])
3919 (match_operand:DF 3 "register_operand" "e,0")
3920 (match_operand:DF 4 "register_operand" "0,e")))]
3921 "TARGET_ARCH64 && TARGET_FPU"
3922 "@
3923 fmovrd%D1\t%2, %3, %0
3924 fmovrd%d1\t%2, %4, %0"
3925 [(set_attr "type" "fpcrmove")
3926 (set_attr "fptype" "double")])
3927
3928 (define_insn "*movtf_cc_reg_hq_sp64"
3929 [(set (match_operand:TF 0 "register_operand" "=e,e")
3930 (if_then_else:TF (match_operator 1 "v9_regcmp_op"
3931 [(match_operand:DI 2 "register_operand" "r,r")
3932 (const_int 0)])
3933 (match_operand:TF 3 "register_operand" "e,0")
3934 (match_operand:TF 4 "register_operand" "0,e")))]
3935 "TARGET_ARCH64 && TARGET_FPU && TARGET_HARD_QUAD"
3936 "@
3937 fmovrq%D1\t%2, %3, %0
3938 fmovrq%d1\t%2, %4, %0"
3939 [(set_attr "type" "fpcrmove")])
3940
3941 (define_insn_and_split "*movtf_cc_reg_sp64"
3942 [(set (match_operand:TF 0 "register_operand" "=e,e")
3943 (if_then_else:TF (match_operator 1 "v9_regcmp_op"
3944 [(match_operand:DI 2 "register_operand" "r,r")
3945 (const_int 0)])
3946 (match_operand:TF 3 "register_operand" "e,0")
3947 (match_operand:TF 4 "register_operand" "0,e")))]
3948 "TARGET_ARCH64 && TARGET_FPU && ! TARGET_HARD_QUAD"
3949 "#"
3950 "&& reload_completed"
3951 [(clobber (const_int 0))]
3952 {
3953 rtx set_dest = operands[0];
3954 rtx set_srca = operands[3];
3955 rtx set_srcb = operands[4];
3956 int third = rtx_equal_p (set_dest, set_srca);
3957 rtx dest1, dest2;
3958 rtx srca1, srca2, srcb1, srcb2;
3959
3960 dest1 = gen_df_reg (set_dest, 0);
3961 dest2 = gen_df_reg (set_dest, 1);
3962 srca1 = gen_df_reg (set_srca, 0);
3963 srca2 = gen_df_reg (set_srca, 1);
3964 srcb1 = gen_df_reg (set_srcb, 0);
3965 srcb2 = gen_df_reg (set_srcb, 1);
3966
3967 /* Now emit using the real source and destination we found, swapping
3968 the order if we detect overlap. */
3969 if ((third && reg_overlap_mentioned_p (dest1, srcb2))
3970 || (!third && reg_overlap_mentioned_p (dest1, srca2)))
3971 {
3972 emit_insn (gen_movdf_cc_reg_sp64 (dest2, operands[1], operands[2], srca2, srcb2));
3973 emit_insn (gen_movdf_cc_reg_sp64 (dest1, operands[1], operands[2], srca1, srcb1));
3974 }
3975 else
3976 {
3977 emit_insn (gen_movdf_cc_reg_sp64 (dest1, operands[1], operands[2], srca1, srcb1));
3978 emit_insn (gen_movdf_cc_reg_sp64 (dest2, operands[1], operands[2], srca2, srcb2));
3979 }
3980 DONE;
3981 }
3982 [(set_attr "length" "2")])
3983
3984 \f
3985 ;;- zero extension instructions
3986
3987 ;; These patterns originally accepted general_operands, however, slightly
3988 ;; better code is generated by only accepting register_operands, and then
3989 ;; letting combine generate the ldu[hb] insns.
3990
3991 (define_expand "zero_extendhisi2"
3992 [(set (match_operand:SI 0 "register_operand" "")
3993 (zero_extend:SI (match_operand:HI 1 "register_operand" "")))]
3994 ""
3995 {
3996 rtx temp = gen_reg_rtx (SImode);
3997 rtx shift_16 = GEN_INT (16);
3998 int op1_subbyte = 0;
3999
4000 if (GET_CODE (operand1) == SUBREG)
4001 {
4002 op1_subbyte = SUBREG_BYTE (operand1);
4003 op1_subbyte /= GET_MODE_SIZE (SImode);
4004 op1_subbyte *= GET_MODE_SIZE (SImode);
4005 operand1 = XEXP (operand1, 0);
4006 }
4007
4008 emit_insn (gen_ashlsi3 (temp, gen_rtx_SUBREG (SImode, operand1, op1_subbyte),
4009 shift_16));
4010 emit_insn (gen_lshrsi3 (operand0, temp, shift_16));
4011 DONE;
4012 })
4013
4014 (define_insn "*zero_extendhisi2_insn"
4015 [(set (match_operand:SI 0 "register_operand" "=r")
4016 (zero_extend:SI (match_operand:HI 1 "memory_operand" "m")))]
4017 ""
4018 "lduh\t%1, %0"
4019 [(set_attr "type" "load")
4020 (set_attr "us3load_type" "3cycle")])
4021
4022 (define_expand "zero_extendqihi2"
4023 [(set (match_operand:HI 0 "register_operand" "")
4024 (zero_extend:HI (match_operand:QI 1 "register_operand" "")))]
4025 ""
4026 "")
4027
4028 (define_insn "*zero_extendqihi2_insn"
4029 [(set (match_operand:HI 0 "register_operand" "=r,r")
4030 (zero_extend:HI (match_operand:QI 1 "input_operand" "r,m")))]
4031 "GET_CODE (operands[1]) != CONST_INT"
4032 "@
4033 and\t%1, 0xff, %0
4034 ldub\t%1, %0"
4035 [(set_attr "type" "*,load")
4036 (set_attr "us3load_type" "*,3cycle")])
4037
4038 (define_expand "zero_extendqisi2"
4039 [(set (match_operand:SI 0 "register_operand" "")
4040 (zero_extend:SI (match_operand:QI 1 "register_operand" "")))]
4041 ""
4042 "")
4043
4044 (define_insn "*zero_extendqisi2_insn"
4045 [(set (match_operand:SI 0 "register_operand" "=r,r")
4046 (zero_extend:SI (match_operand:QI 1 "input_operand" "r,m")))]
4047 "GET_CODE (operands[1]) != CONST_INT"
4048 "@
4049 and\t%1, 0xff, %0
4050 ldub\t%1, %0"
4051 [(set_attr "type" "*,load")
4052 (set_attr "us3load_type" "*,3cycle")])
4053
4054 (define_expand "zero_extendqidi2"
4055 [(set (match_operand:DI 0 "register_operand" "")
4056 (zero_extend:DI (match_operand:QI 1 "register_operand" "")))]
4057 "TARGET_ARCH64"
4058 "")
4059
4060 (define_insn "*zero_extendqidi2_insn"
4061 [(set (match_operand:DI 0 "register_operand" "=r,r")
4062 (zero_extend:DI (match_operand:QI 1 "input_operand" "r,m")))]
4063 "TARGET_ARCH64 && GET_CODE (operands[1]) != CONST_INT"
4064 "@
4065 and\t%1, 0xff, %0
4066 ldub\t%1, %0"
4067 [(set_attr "type" "*,load")
4068 (set_attr "us3load_type" "*,3cycle")])
4069
4070 (define_expand "zero_extendhidi2"
4071 [(set (match_operand:DI 0 "register_operand" "")
4072 (zero_extend:DI (match_operand:HI 1 "register_operand" "")))]
4073 "TARGET_ARCH64"
4074 {
4075 rtx temp = gen_reg_rtx (DImode);
4076 rtx shift_48 = GEN_INT (48);
4077 int op1_subbyte = 0;
4078
4079 if (GET_CODE (operand1) == SUBREG)
4080 {
4081 op1_subbyte = SUBREG_BYTE (operand1);
4082 op1_subbyte /= GET_MODE_SIZE (DImode);
4083 op1_subbyte *= GET_MODE_SIZE (DImode);
4084 operand1 = XEXP (operand1, 0);
4085 }
4086
4087 emit_insn (gen_ashldi3 (temp, gen_rtx_SUBREG (DImode, operand1, op1_subbyte),
4088 shift_48));
4089 emit_insn (gen_lshrdi3 (operand0, temp, shift_48));
4090 DONE;
4091 })
4092
4093 (define_insn "*zero_extendhidi2_insn"
4094 [(set (match_operand:DI 0 "register_operand" "=r")
4095 (zero_extend:DI (match_operand:HI 1 "memory_operand" "m")))]
4096 "TARGET_ARCH64"
4097 "lduh\t%1, %0"
4098 [(set_attr "type" "load")
4099 (set_attr "us3load_type" "3cycle")])
4100
4101
4102 ;; ??? Write truncdisi pattern using sra?
4103
4104 (define_expand "zero_extendsidi2"
4105 [(set (match_operand:DI 0 "register_operand" "")
4106 (zero_extend:DI (match_operand:SI 1 "register_operand" "")))]
4107 ""
4108 "")
4109
4110 (define_insn "*zero_extendsidi2_insn_sp64"
4111 [(set (match_operand:DI 0 "register_operand" "=r,r")
4112 (zero_extend:DI (match_operand:SI 1 "input_operand" "r,m")))]
4113 "TARGET_ARCH64 && GET_CODE (operands[1]) != CONST_INT"
4114 "@
4115 srl\t%1, 0, %0
4116 lduw\t%1, %0"
4117 [(set_attr "type" "shift,load")])
4118
4119 (define_insn_and_split "*zero_extendsidi2_insn_sp32"
4120 [(set (match_operand:DI 0 "register_operand" "=r")
4121 (zero_extend:DI (match_operand:SI 1 "register_operand" "r")))]
4122 "! TARGET_ARCH64"
4123 "#"
4124 "&& reload_completed"
4125 [(set (match_dup 2) (match_dup 3))
4126 (set (match_dup 4) (match_dup 5))]
4127 {
4128 rtx dest1, dest2;
4129
4130 dest1 = gen_highpart (SImode, operands[0]);
4131 dest2 = gen_lowpart (SImode, operands[0]);
4132
4133 /* Swap the order in case of overlap. */
4134 if (REGNO (dest1) == REGNO (operands[1]))
4135 {
4136 operands[2] = dest2;
4137 operands[3] = operands[1];
4138 operands[4] = dest1;
4139 operands[5] = const0_rtx;
4140 }
4141 else
4142 {
4143 operands[2] = dest1;
4144 operands[3] = const0_rtx;
4145 operands[4] = dest2;
4146 operands[5] = operands[1];
4147 }
4148 }
4149 [(set_attr "length" "2")])
4150
4151 ;; Simplify comparisons of extended values.
4152
4153 (define_insn "*cmp_zero_extendqisi2"
4154 [(set (reg:CC 100)
4155 (compare:CC (zero_extend:SI (match_operand:QI 0 "register_operand" "r"))
4156 (const_int 0)))]
4157 ""
4158 "andcc\t%0, 0xff, %%g0"
4159 [(set_attr "type" "compare")])
4160
4161 (define_insn "*cmp_zero_qi"
4162 [(set (reg:CC 100)
4163 (compare:CC (match_operand:QI 0 "register_operand" "r")
4164 (const_int 0)))]
4165 ""
4166 "andcc\t%0, 0xff, %%g0"
4167 [(set_attr "type" "compare")])
4168
4169 (define_insn "*cmp_zero_extendqisi2_set"
4170 [(set (reg:CC 100)
4171 (compare:CC (zero_extend:SI (match_operand:QI 1 "register_operand" "r"))
4172 (const_int 0)))
4173 (set (match_operand:SI 0 "register_operand" "=r")
4174 (zero_extend:SI (match_dup 1)))]
4175 ""
4176 "andcc\t%1, 0xff, %0"
4177 [(set_attr "type" "compare")])
4178
4179 (define_insn "*cmp_zero_extendqisi2_andcc_set"
4180 [(set (reg:CC 100)
4181 (compare:CC (and:SI (match_operand:SI 1 "register_operand" "r")
4182 (const_int 255))
4183 (const_int 0)))
4184 (set (match_operand:SI 0 "register_operand" "=r")
4185 (zero_extend:SI (subreg:QI (match_dup 1) 0)))]
4186 ""
4187 "andcc\t%1, 0xff, %0"
4188 [(set_attr "type" "compare")])
4189
4190 (define_insn "*cmp_zero_extendqidi2"
4191 [(set (reg:CCX 100)
4192 (compare:CCX (zero_extend:DI (match_operand:QI 0 "register_operand" "r"))
4193 (const_int 0)))]
4194 "TARGET_ARCH64"
4195 "andcc\t%0, 0xff, %%g0"
4196 [(set_attr "type" "compare")])
4197
4198 (define_insn "*cmp_zero_qi_sp64"
4199 [(set (reg:CCX 100)
4200 (compare:CCX (match_operand:QI 0 "register_operand" "r")
4201 (const_int 0)))]
4202 "TARGET_ARCH64"
4203 "andcc\t%0, 0xff, %%g0"
4204 [(set_attr "type" "compare")])
4205
4206 (define_insn "*cmp_zero_extendqidi2_set"
4207 [(set (reg:CCX 100)
4208 (compare:CCX (zero_extend:DI (match_operand:QI 1 "register_operand" "r"))
4209 (const_int 0)))
4210 (set (match_operand:DI 0 "register_operand" "=r")
4211 (zero_extend:DI (match_dup 1)))]
4212 "TARGET_ARCH64"
4213 "andcc\t%1, 0xff, %0"
4214 [(set_attr "type" "compare")])
4215
4216 (define_insn "*cmp_zero_extendqidi2_andcc_set"
4217 [(set (reg:CCX 100)
4218 (compare:CCX (and:DI (match_operand:DI 1 "register_operand" "r")
4219 (const_int 255))
4220 (const_int 0)))
4221 (set (match_operand:DI 0 "register_operand" "=r")
4222 (zero_extend:DI (subreg:QI (match_dup 1) 0)))]
4223 "TARGET_ARCH64"
4224 "andcc\t%1, 0xff, %0"
4225 [(set_attr "type" "compare")])
4226
4227 ;; Similarly, handle {SI,DI}->QI mode truncation followed by a compare.
4228
4229 (define_insn "*cmp_siqi_trunc"
4230 [(set (reg:CC 100)
4231 (compare:CC (subreg:QI (match_operand:SI 0 "register_operand" "r") 3)
4232 (const_int 0)))]
4233 ""
4234 "andcc\t%0, 0xff, %%g0"
4235 [(set_attr "type" "compare")])
4236
4237 (define_insn "*cmp_siqi_trunc_set"
4238 [(set (reg:CC 100)
4239 (compare:CC (subreg:QI (match_operand:SI 1 "register_operand" "r") 3)
4240 (const_int 0)))
4241 (set (match_operand:QI 0 "register_operand" "=r")
4242 (subreg:QI (match_dup 1) 3))]
4243 ""
4244 "andcc\t%1, 0xff, %0"
4245 [(set_attr "type" "compare")])
4246
4247 (define_insn "*cmp_diqi_trunc"
4248 [(set (reg:CC 100)
4249 (compare:CC (subreg:QI (match_operand:DI 0 "register_operand" "r") 7)
4250 (const_int 0)))]
4251 "TARGET_ARCH64"
4252 "andcc\t%0, 0xff, %%g0"
4253 [(set_attr "type" "compare")])
4254
4255 (define_insn "*cmp_diqi_trunc_set"
4256 [(set (reg:CC 100)
4257 (compare:CC (subreg:QI (match_operand:DI 1 "register_operand" "r") 7)
4258 (const_int 0)))
4259 (set (match_operand:QI 0 "register_operand" "=r")
4260 (subreg:QI (match_dup 1) 7))]
4261 "TARGET_ARCH64"
4262 "andcc\t%1, 0xff, %0"
4263 [(set_attr "type" "compare")])
4264 \f
4265 ;;- sign extension instructions
4266
4267 ;; These patterns originally accepted general_operands, however, slightly
4268 ;; better code is generated by only accepting register_operands, and then
4269 ;; letting combine generate the lds[hb] insns.
4270
4271 (define_expand "extendhisi2"
4272 [(set (match_operand:SI 0 "register_operand" "")
4273 (sign_extend:SI (match_operand:HI 1 "register_operand" "")))]
4274 ""
4275 {
4276 rtx temp = gen_reg_rtx (SImode);
4277 rtx shift_16 = GEN_INT (16);
4278 int op1_subbyte = 0;
4279
4280 if (GET_CODE (operand1) == SUBREG)
4281 {
4282 op1_subbyte = SUBREG_BYTE (operand1);
4283 op1_subbyte /= GET_MODE_SIZE (SImode);
4284 op1_subbyte *= GET_MODE_SIZE (SImode);
4285 operand1 = XEXP (operand1, 0);
4286 }
4287
4288 emit_insn (gen_ashlsi3 (temp, gen_rtx_SUBREG (SImode, operand1, op1_subbyte),
4289 shift_16));
4290 emit_insn (gen_ashrsi3 (operand0, temp, shift_16));
4291 DONE;
4292 })
4293
4294 (define_insn "*sign_extendhisi2_insn"
4295 [(set (match_operand:SI 0 "register_operand" "=r")
4296 (sign_extend:SI (match_operand:HI 1 "memory_operand" "m")))]
4297 ""
4298 "ldsh\t%1, %0"
4299 [(set_attr "type" "sload")
4300 (set_attr "us3load_type" "3cycle")])
4301
4302 (define_expand "extendqihi2"
4303 [(set (match_operand:HI 0 "register_operand" "")
4304 (sign_extend:HI (match_operand:QI 1 "register_operand" "")))]
4305 ""
4306 {
4307 rtx temp = gen_reg_rtx (SImode);
4308 rtx shift_24 = GEN_INT (24);
4309 int op1_subbyte = 0;
4310 int op0_subbyte = 0;
4311
4312 if (GET_CODE (operand1) == SUBREG)
4313 {
4314 op1_subbyte = SUBREG_BYTE (operand1);
4315 op1_subbyte /= GET_MODE_SIZE (SImode);
4316 op1_subbyte *= GET_MODE_SIZE (SImode);
4317 operand1 = XEXP (operand1, 0);
4318 }
4319 if (GET_CODE (operand0) == SUBREG)
4320 {
4321 op0_subbyte = SUBREG_BYTE (operand0);
4322 op0_subbyte /= GET_MODE_SIZE (SImode);
4323 op0_subbyte *= GET_MODE_SIZE (SImode);
4324 operand0 = XEXP (operand0, 0);
4325 }
4326 emit_insn (gen_ashlsi3 (temp, gen_rtx_SUBREG (SImode, operand1, op1_subbyte),
4327 shift_24));
4328 if (GET_MODE (operand0) != SImode)
4329 operand0 = gen_rtx_SUBREG (SImode, operand0, op0_subbyte);
4330 emit_insn (gen_ashrsi3 (operand0, temp, shift_24));
4331 DONE;
4332 })
4333
4334 (define_insn "*sign_extendqihi2_insn"
4335 [(set (match_operand:HI 0 "register_operand" "=r")
4336 (sign_extend:HI (match_operand:QI 1 "memory_operand" "m")))]
4337 ""
4338 "ldsb\t%1, %0"
4339 [(set_attr "type" "sload")
4340 (set_attr "us3load_type" "3cycle")])
4341
4342 (define_expand "extendqisi2"
4343 [(set (match_operand:SI 0 "register_operand" "")
4344 (sign_extend:SI (match_operand:QI 1 "register_operand" "")))]
4345 ""
4346 {
4347 rtx temp = gen_reg_rtx (SImode);
4348 rtx shift_24 = GEN_INT (24);
4349 int op1_subbyte = 0;
4350
4351 if (GET_CODE (operand1) == SUBREG)
4352 {
4353 op1_subbyte = SUBREG_BYTE (operand1);
4354 op1_subbyte /= GET_MODE_SIZE (SImode);
4355 op1_subbyte *= GET_MODE_SIZE (SImode);
4356 operand1 = XEXP (operand1, 0);
4357 }
4358
4359 emit_insn (gen_ashlsi3 (temp, gen_rtx_SUBREG (SImode, operand1, op1_subbyte),
4360 shift_24));
4361 emit_insn (gen_ashrsi3 (operand0, temp, shift_24));
4362 DONE;
4363 })
4364
4365 (define_insn "*sign_extendqisi2_insn"
4366 [(set (match_operand:SI 0 "register_operand" "=r")
4367 (sign_extend:SI (match_operand:QI 1 "memory_operand" "m")))]
4368 ""
4369 "ldsb\t%1, %0"
4370 [(set_attr "type" "sload")
4371 (set_attr "us3load_type" "3cycle")])
4372
4373 (define_expand "extendqidi2"
4374 [(set (match_operand:DI 0 "register_operand" "")
4375 (sign_extend:DI (match_operand:QI 1 "register_operand" "")))]
4376 "TARGET_ARCH64"
4377 {
4378 rtx temp = gen_reg_rtx (DImode);
4379 rtx shift_56 = GEN_INT (56);
4380 int op1_subbyte = 0;
4381
4382 if (GET_CODE (operand1) == SUBREG)
4383 {
4384 op1_subbyte = SUBREG_BYTE (operand1);
4385 op1_subbyte /= GET_MODE_SIZE (DImode);
4386 op1_subbyte *= GET_MODE_SIZE (DImode);
4387 operand1 = XEXP (operand1, 0);
4388 }
4389
4390 emit_insn (gen_ashldi3 (temp, gen_rtx_SUBREG (DImode, operand1, op1_subbyte),
4391 shift_56));
4392 emit_insn (gen_ashrdi3 (operand0, temp, shift_56));
4393 DONE;
4394 })
4395
4396 (define_insn "*sign_extendqidi2_insn"
4397 [(set (match_operand:DI 0 "register_operand" "=r")
4398 (sign_extend:DI (match_operand:QI 1 "memory_operand" "m")))]
4399 "TARGET_ARCH64"
4400 "ldsb\t%1, %0"
4401 [(set_attr "type" "sload")
4402 (set_attr "us3load_type" "3cycle")])
4403
4404 (define_expand "extendhidi2"
4405 [(set (match_operand:DI 0 "register_operand" "")
4406 (sign_extend:DI (match_operand:HI 1 "register_operand" "")))]
4407 "TARGET_ARCH64"
4408 {
4409 rtx temp = gen_reg_rtx (DImode);
4410 rtx shift_48 = GEN_INT (48);
4411 int op1_subbyte = 0;
4412
4413 if (GET_CODE (operand1) == SUBREG)
4414 {
4415 op1_subbyte = SUBREG_BYTE (operand1);
4416 op1_subbyte /= GET_MODE_SIZE (DImode);
4417 op1_subbyte *= GET_MODE_SIZE (DImode);
4418 operand1 = XEXP (operand1, 0);
4419 }
4420
4421 emit_insn (gen_ashldi3 (temp, gen_rtx_SUBREG (DImode, operand1, op1_subbyte),
4422 shift_48));
4423 emit_insn (gen_ashrdi3 (operand0, temp, shift_48));
4424 DONE;
4425 })
4426
4427 (define_insn "*sign_extendhidi2_insn"
4428 [(set (match_operand:DI 0 "register_operand" "=r")
4429 (sign_extend:DI (match_operand:HI 1 "memory_operand" "m")))]
4430 "TARGET_ARCH64"
4431 "ldsh\t%1, %0"
4432 [(set_attr "type" "sload")
4433 (set_attr "us3load_type" "3cycle")])
4434
4435 (define_expand "extendsidi2"
4436 [(set (match_operand:DI 0 "register_operand" "")
4437 (sign_extend:DI (match_operand:SI 1 "register_operand" "")))]
4438 "TARGET_ARCH64"
4439 "")
4440
4441 (define_insn "*sign_extendsidi2_insn"
4442 [(set (match_operand:DI 0 "register_operand" "=r,r")
4443 (sign_extend:DI (match_operand:SI 1 "input_operand" "r,m")))]
4444 "TARGET_ARCH64"
4445 "@
4446 sra\t%1, 0, %0
4447 ldsw\t%1, %0"
4448 [(set_attr "type" "shift,sload")
4449 (set_attr "us3load_type" "*,3cycle")])
4450 \f
4451 ;; Special pattern for optimizing bit-field compares. This is needed
4452 ;; because combine uses this as a canonical form.
4453
4454 (define_insn "*cmp_zero_extract"
4455 [(set (reg:CC 100)
4456 (compare:CC
4457 (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
4458 (match_operand:SI 1 "small_int_or_double" "n")
4459 (match_operand:SI 2 "small_int_or_double" "n"))
4460 (const_int 0)))]
4461 "(GET_CODE (operands[2]) == CONST_INT
4462 && INTVAL (operands[2]) > 19)
4463 || (GET_CODE (operands[2]) == CONST_DOUBLE
4464 && CONST_DOUBLE_LOW (operands[2]) > 19)"
4465 {
4466 int len = (GET_CODE (operands[1]) == CONST_INT
4467 ? INTVAL (operands[1])
4468 : CONST_DOUBLE_LOW (operands[1]));
4469 int pos = 32 -
4470 (GET_CODE (operands[2]) == CONST_INT
4471 ? INTVAL (operands[2])
4472 : CONST_DOUBLE_LOW (operands[2])) - len;
4473 HOST_WIDE_INT mask = ((1 << len) - 1) << pos;
4474
4475 operands[1] = GEN_INT (mask);
4476 return "andcc\t%0, %1, %%g0";
4477 }
4478 [(set_attr "type" "compare")])
4479
4480 (define_insn "*cmp_zero_extract_sp64"
4481 [(set (reg:CCX 100)
4482 (compare:CCX
4483 (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
4484 (match_operand:SI 1 "small_int_or_double" "n")
4485 (match_operand:SI 2 "small_int_or_double" "n"))
4486 (const_int 0)))]
4487 "TARGET_ARCH64
4488 && ((GET_CODE (operands[2]) == CONST_INT
4489 && INTVAL (operands[2]) > 51)
4490 || (GET_CODE (operands[2]) == CONST_DOUBLE
4491 && CONST_DOUBLE_LOW (operands[2]) > 51))"
4492 {
4493 int len = (GET_CODE (operands[1]) == CONST_INT
4494 ? INTVAL (operands[1])
4495 : CONST_DOUBLE_LOW (operands[1]));
4496 int pos = 64 -
4497 (GET_CODE (operands[2]) == CONST_INT
4498 ? INTVAL (operands[2])
4499 : CONST_DOUBLE_LOW (operands[2])) - len;
4500 HOST_WIDE_INT mask = (((unsigned HOST_WIDE_INT) 1 << len) - 1) << pos;
4501
4502 operands[1] = GEN_INT (mask);
4503 return "andcc\t%0, %1, %%g0";
4504 }
4505 [(set_attr "type" "compare")])
4506 \f
4507 ;; Conversions between float, double and long double.
4508
4509 (define_insn "extendsfdf2"
4510 [(set (match_operand:DF 0 "register_operand" "=e")
4511 (float_extend:DF
4512 (match_operand:SF 1 "register_operand" "f")))]
4513 "TARGET_FPU"
4514 "fstod\t%1, %0"
4515 [(set_attr "type" "fp")
4516 (set_attr "fptype" "double")])
4517
4518 (define_expand "extendsftf2"
4519 [(set (match_operand:TF 0 "nonimmediate_operand" "")
4520 (float_extend:TF
4521 (match_operand:SF 1 "register_operand" "")))]
4522 "TARGET_FPU && (TARGET_HARD_QUAD || TARGET_ARCH64)"
4523 "emit_tfmode_cvt (FLOAT_EXTEND, operands); DONE;")
4524
4525 (define_insn "*extendsftf2_hq"
4526 [(set (match_operand:TF 0 "register_operand" "=e")
4527 (float_extend:TF
4528 (match_operand:SF 1 "register_operand" "f")))]
4529 "TARGET_FPU && TARGET_HARD_QUAD"
4530 "fstoq\t%1, %0"
4531 [(set_attr "type" "fp")])
4532
4533 (define_expand "extenddftf2"
4534 [(set (match_operand:TF 0 "nonimmediate_operand" "")
4535 (float_extend:TF
4536 (match_operand:DF 1 "register_operand" "")))]
4537 "TARGET_FPU && (TARGET_HARD_QUAD || TARGET_ARCH64)"
4538 "emit_tfmode_cvt (FLOAT_EXTEND, operands); DONE;")
4539
4540 (define_insn "*extenddftf2_hq"
4541 [(set (match_operand:TF 0 "register_operand" "=e")
4542 (float_extend:TF
4543 (match_operand:DF 1 "register_operand" "e")))]
4544 "TARGET_FPU && TARGET_HARD_QUAD"
4545 "fdtoq\t%1, %0"
4546 [(set_attr "type" "fp")])
4547
4548 (define_insn "truncdfsf2"
4549 [(set (match_operand:SF 0 "register_operand" "=f")
4550 (float_truncate:SF
4551 (match_operand:DF 1 "register_operand" "e")))]
4552 "TARGET_FPU"
4553 "fdtos\t%1, %0"
4554 [(set_attr "type" "fp")
4555 (set_attr "fptype" "double")])
4556
4557 (define_expand "trunctfsf2"
4558 [(set (match_operand:SF 0 "register_operand" "")
4559 (float_truncate:SF
4560 (match_operand:TF 1 "general_operand" "")))]
4561 "TARGET_FPU && (TARGET_HARD_QUAD || TARGET_ARCH64)"
4562 "emit_tfmode_cvt (FLOAT_TRUNCATE, operands); DONE;")
4563
4564 (define_insn "*trunctfsf2_hq"
4565 [(set (match_operand:SF 0 "register_operand" "=f")
4566 (float_truncate:SF
4567 (match_operand:TF 1 "register_operand" "e")))]
4568 "TARGET_FPU && TARGET_HARD_QUAD"
4569 "fqtos\t%1, %0"
4570 [(set_attr "type" "fp")])
4571
4572 (define_expand "trunctfdf2"
4573 [(set (match_operand:DF 0 "register_operand" "")
4574 (float_truncate:DF
4575 (match_operand:TF 1 "general_operand" "")))]
4576 "TARGET_FPU && (TARGET_HARD_QUAD || TARGET_ARCH64)"
4577 "emit_tfmode_cvt (FLOAT_TRUNCATE, operands); DONE;")
4578
4579 (define_insn "*trunctfdf2_hq"
4580 [(set (match_operand:DF 0 "register_operand" "=e")
4581 (float_truncate:DF
4582 (match_operand:TF 1 "register_operand" "e")))]
4583 "TARGET_FPU && TARGET_HARD_QUAD"
4584 "fqtod\t%1, %0"
4585 [(set_attr "type" "fp")])
4586 \f
4587 ;; Conversion between fixed point and floating point.
4588
4589 (define_insn "floatsisf2"
4590 [(set (match_operand:SF 0 "register_operand" "=f")
4591 (float:SF (match_operand:SI 1 "register_operand" "f")))]
4592 "TARGET_FPU"
4593 "fitos\t%1, %0"
4594 [(set_attr "type" "fp")
4595 (set_attr "fptype" "double")])
4596
4597 (define_insn "floatsidf2"
4598 [(set (match_operand:DF 0 "register_operand" "=e")
4599 (float:DF (match_operand:SI 1 "register_operand" "f")))]
4600 "TARGET_FPU"
4601 "fitod\t%1, %0"
4602 [(set_attr "type" "fp")
4603 (set_attr "fptype" "double")])
4604
4605 (define_expand "floatsitf2"
4606 [(set (match_operand:TF 0 "nonimmediate_operand" "")
4607 (float:TF (match_operand:SI 1 "register_operand" "")))]
4608 "TARGET_FPU && (TARGET_HARD_QUAD || TARGET_ARCH64)"
4609 "emit_tfmode_cvt (FLOAT, operands); DONE;")
4610
4611 (define_insn "*floatsitf2_hq"
4612 [(set (match_operand:TF 0 "register_operand" "=e")
4613 (float:TF (match_operand:SI 1 "register_operand" "f")))]
4614 "TARGET_FPU && TARGET_HARD_QUAD"
4615 "fitoq\t%1, %0"
4616 [(set_attr "type" "fp")])
4617
4618 (define_expand "floatunssitf2"
4619 [(set (match_operand:TF 0 "nonimmediate_operand" "")
4620 (unsigned_float:TF (match_operand:SI 1 "register_operand" "")))]
4621 "TARGET_FPU && TARGET_ARCH64 && ! TARGET_HARD_QUAD"
4622 "emit_tfmode_cvt (UNSIGNED_FLOAT, operands); DONE;")
4623
4624 ;; Now the same for 64 bit sources.
4625
4626 (define_insn "floatdisf2"
4627 [(set (match_operand:SF 0 "register_operand" "=f")
4628 (float:SF (match_operand:DI 1 "register_operand" "e")))]
4629 "TARGET_V9 && TARGET_FPU"
4630 "fxtos\t%1, %0"
4631 [(set_attr "type" "fp")
4632 (set_attr "fptype" "double")])
4633
4634 (define_expand "floatunsdisf2"
4635 [(use (match_operand:SF 0 "register_operand" ""))
4636 (use (match_operand:DI 1 "register_operand" ""))]
4637 "TARGET_ARCH64 && TARGET_FPU"
4638 "sparc_emit_floatunsdi (operands); DONE;")
4639
4640 (define_insn "floatdidf2"
4641 [(set (match_operand:DF 0 "register_operand" "=e")
4642 (float:DF (match_operand:DI 1 "register_operand" "e")))]
4643 "TARGET_V9 && TARGET_FPU"
4644 "fxtod\t%1, %0"
4645 [(set_attr "type" "fp")
4646 (set_attr "fptype" "double")])
4647
4648 (define_expand "floatunsdidf2"
4649 [(use (match_operand:DF 0 "register_operand" ""))
4650 (use (match_operand:DI 1 "register_operand" ""))]
4651 "TARGET_ARCH64 && TARGET_FPU"
4652 "sparc_emit_floatunsdi (operands); DONE;")
4653
4654 (define_expand "floatditf2"
4655 [(set (match_operand:TF 0 "nonimmediate_operand" "")
4656 (float:TF (match_operand:DI 1 "register_operand" "")))]
4657 "TARGET_FPU && TARGET_V9 && (TARGET_HARD_QUAD || TARGET_ARCH64)"
4658 "emit_tfmode_cvt (FLOAT, operands); DONE;")
4659
4660 (define_insn "*floatditf2_hq"
4661 [(set (match_operand:TF 0 "register_operand" "=e")
4662 (float:TF (match_operand:DI 1 "register_operand" "e")))]
4663 "TARGET_V9 && TARGET_FPU && TARGET_HARD_QUAD"
4664 "fxtoq\t%1, %0"
4665 [(set_attr "type" "fp")])
4666
4667 (define_expand "floatunsditf2"
4668 [(set (match_operand:TF 0 "nonimmediate_operand" "")
4669 (unsigned_float:TF (match_operand:DI 1 "register_operand" "")))]
4670 "TARGET_FPU && TARGET_ARCH64 && ! TARGET_HARD_QUAD"
4671 "emit_tfmode_cvt (UNSIGNED_FLOAT, operands); DONE;")
4672
4673 ;; Convert a float to an actual integer.
4674 ;; Truncation is performed as part of the conversion.
4675
4676 (define_insn "fix_truncsfsi2"
4677 [(set (match_operand:SI 0 "register_operand" "=f")
4678 (fix:SI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
4679 "TARGET_FPU"
4680 "fstoi\t%1, %0"
4681 [(set_attr "type" "fp")
4682 (set_attr "fptype" "double")])
4683
4684 (define_insn "fix_truncdfsi2"
4685 [(set (match_operand:SI 0 "register_operand" "=f")
4686 (fix:SI (fix:DF (match_operand:DF 1 "register_operand" "e"))))]
4687 "TARGET_FPU"
4688 "fdtoi\t%1, %0"
4689 [(set_attr "type" "fp")
4690 (set_attr "fptype" "double")])
4691
4692 (define_expand "fix_trunctfsi2"
4693 [(set (match_operand:SI 0 "register_operand" "")
4694 (fix:SI (match_operand:TF 1 "general_operand" "")))]
4695 "TARGET_FPU && (TARGET_HARD_QUAD || TARGET_ARCH64)"
4696 "emit_tfmode_cvt (FIX, operands); DONE;")
4697
4698 (define_insn "*fix_trunctfsi2_hq"
4699 [(set (match_operand:SI 0 "register_operand" "=f")
4700 (fix:SI (match_operand:TF 1 "register_operand" "e")))]
4701 "TARGET_FPU && TARGET_HARD_QUAD"
4702 "fqtoi\t%1, %0"
4703 [(set_attr "type" "fp")])
4704
4705 (define_expand "fixuns_trunctfsi2"
4706 [(set (match_operand:SI 0 "register_operand" "")
4707 (unsigned_fix:SI (match_operand:TF 1 "general_operand" "")))]
4708 "TARGET_FPU && TARGET_ARCH64 && ! TARGET_HARD_QUAD"
4709 "emit_tfmode_cvt (UNSIGNED_FIX, operands); DONE;")
4710
4711 ;; Now the same, for V9 targets
4712
4713 (define_insn "fix_truncsfdi2"
4714 [(set (match_operand:DI 0 "register_operand" "=e")
4715 (fix:DI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
4716 "TARGET_V9 && TARGET_FPU"
4717 "fstox\t%1, %0"
4718 [(set_attr "type" "fp")
4719 (set_attr "fptype" "double")])
4720
4721 (define_insn "fix_truncdfdi2"
4722 [(set (match_operand:DI 0 "register_operand" "=e")
4723 (fix:DI (fix:DF (match_operand:DF 1 "register_operand" "e"))))]
4724 "TARGET_V9 && TARGET_FPU"
4725 "fdtox\t%1, %0"
4726 [(set_attr "type" "fp")
4727 (set_attr "fptype" "double")])
4728
4729 (define_expand "fix_trunctfdi2"
4730 [(set (match_operand:DI 0 "register_operand" "")
4731 (fix:DI (match_operand:TF 1 "general_operand" "")))]
4732 "TARGET_V9 && TARGET_FPU && (TARGET_HARD_QUAD || TARGET_ARCH64)"
4733 "emit_tfmode_cvt (FIX, operands); DONE;")
4734
4735 (define_insn "*fix_trunctfdi2_hq"
4736 [(set (match_operand:DI 0 "register_operand" "=e")
4737 (fix:DI (match_operand:TF 1 "register_operand" "e")))]
4738 "TARGET_V9 && TARGET_FPU && TARGET_HARD_QUAD"
4739 "fqtox\t%1, %0"
4740 [(set_attr "type" "fp")])
4741
4742 (define_expand "fixuns_trunctfdi2"
4743 [(set (match_operand:DI 0 "register_operand" "")
4744 (unsigned_fix:DI (match_operand:TF 1 "general_operand" "")))]
4745 "TARGET_FPU && TARGET_ARCH64 && ! TARGET_HARD_QUAD"
4746 "emit_tfmode_cvt (UNSIGNED_FIX, operands); DONE;")
4747 \f
4748 ;;- arithmetic instructions
4749
4750 (define_expand "adddi3"
4751 [(set (match_operand:DI 0 "register_operand" "=r")
4752 (plus:DI (match_operand:DI 1 "arith_double_operand" "%r")
4753 (match_operand:DI 2 "arith_double_add_operand" "rHI")))]
4754 ""
4755 {
4756 HOST_WIDE_INT i;
4757
4758 if (! TARGET_ARCH64)
4759 {
4760 emit_insn (gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2,
4761 gen_rtx_SET (VOIDmode, operands[0],
4762 gen_rtx_PLUS (DImode, operands[1],
4763 operands[2])),
4764 gen_rtx_CLOBBER (VOIDmode,
4765 gen_rtx_REG (CCmode, SPARC_ICC_REG)))));
4766 DONE;
4767 }
4768 if (arith_double_4096_operand(operands[2], DImode))
4769 {
4770 switch (GET_CODE (operands[1]))
4771 {
4772 case CONST_INT: i = INTVAL (operands[1]); break;
4773 case CONST_DOUBLE: i = CONST_DOUBLE_LOW (operands[1]); break;
4774 default:
4775 emit_insn (gen_rtx_SET (VOIDmode, operands[0],
4776 gen_rtx_MINUS (DImode, operands[1],
4777 GEN_INT(-4096))));
4778 DONE;
4779 }
4780 emit_insn (gen_movdi (operands[0], GEN_INT (i + 4096)));
4781 DONE;
4782 }
4783 })
4784
4785 (define_insn_and_split "adddi3_insn_sp32"
4786 [(set (match_operand:DI 0 "register_operand" "=r")
4787 (plus:DI (match_operand:DI 1 "arith_double_operand" "%r")
4788 (match_operand:DI 2 "arith_double_operand" "rHI")))
4789 (clobber (reg:CC 100))]
4790 "! TARGET_ARCH64"
4791 "#"
4792 "&& reload_completed"
4793 [(parallel [(set (reg:CC_NOOV 100)
4794 (compare:CC_NOOV (plus:SI (match_dup 4)
4795 (match_dup 5))
4796 (const_int 0)))
4797 (set (match_dup 3)
4798 (plus:SI (match_dup 4) (match_dup 5)))])
4799 (set (match_dup 6)
4800 (plus:SI (plus:SI (match_dup 7)
4801 (match_dup 8))
4802 (ltu:SI (reg:CC_NOOV 100) (const_int 0))))]
4803 {
4804 operands[3] = gen_lowpart (SImode, operands[0]);
4805 operands[4] = gen_lowpart (SImode, operands[1]);
4806 operands[5] = gen_lowpart (SImode, operands[2]);
4807 operands[6] = gen_highpart (SImode, operands[0]);
4808 operands[7] = gen_highpart_mode (SImode, DImode, operands[1]);
4809 #if HOST_BITS_PER_WIDE_INT == 32
4810 if (GET_CODE (operands[2]) == CONST_INT)
4811 {
4812 if (INTVAL (operands[2]) < 0)
4813 operands[8] = constm1_rtx;
4814 else
4815 operands[8] = const0_rtx;
4816 }
4817 else
4818 #endif
4819 operands[8] = gen_highpart_mode (SImode, DImode, operands[2]);
4820 }
4821 [(set_attr "length" "2")])
4822
4823 (define_split
4824 [(set (match_operand:DI 0 "register_operand" "")
4825 (minus:DI (match_operand:DI 1 "arith_double_operand" "")
4826 (match_operand:DI 2 "arith_double_operand" "")))
4827 (clobber (reg:CC 100))]
4828 "! TARGET_ARCH64 && reload_completed"
4829 [(parallel [(set (reg:CC_NOOV 100)
4830 (compare:CC_NOOV (minus:SI (match_dup 4)
4831 (match_dup 5))
4832 (const_int 0)))
4833 (set (match_dup 3)
4834 (minus:SI (match_dup 4) (match_dup 5)))])
4835 (set (match_dup 6)
4836 (minus:SI (minus:SI (match_dup 7)
4837 (match_dup 8))
4838 (ltu:SI (reg:CC_NOOV 100) (const_int 0))))]
4839 {
4840 operands[3] = gen_lowpart (SImode, operands[0]);
4841 operands[4] = gen_lowpart (SImode, operands[1]);
4842 operands[5] = gen_lowpart (SImode, operands[2]);
4843 operands[6] = gen_highpart (SImode, operands[0]);
4844 operands[7] = gen_highpart (SImode, operands[1]);
4845 #if HOST_BITS_PER_WIDE_INT == 32
4846 if (GET_CODE (operands[2]) == CONST_INT)
4847 {
4848 if (INTVAL (operands[2]) < 0)
4849 operands[8] = constm1_rtx;
4850 else
4851 operands[8] = const0_rtx;
4852 }
4853 else
4854 #endif
4855 operands[8] = gen_highpart_mode (SImode, DImode, operands[2]);
4856 })
4857
4858 ;; LTU here means "carry set"
4859 (define_insn "addx"
4860 [(set (match_operand:SI 0 "register_operand" "=r")
4861 (plus:SI (plus:SI (match_operand:SI 1 "arith_operand" "%r")
4862 (match_operand:SI 2 "arith_operand" "rI"))
4863 (ltu:SI (reg:CC_NOOV 100) (const_int 0))))]
4864 ""
4865 "addx\t%1, %2, %0"
4866 [(set_attr "type" "ialuX")])
4867
4868 (define_insn_and_split "*addx_extend_sp32"
4869 [(set (match_operand:DI 0 "register_operand" "=r")
4870 (zero_extend:DI (plus:SI (plus:SI
4871 (match_operand:SI 1 "reg_or_0_operand" "%rJ")
4872 (match_operand:SI 2 "arith_operand" "rI"))
4873 (ltu:SI (reg:CC_NOOV 100) (const_int 0)))))]
4874 "! TARGET_ARCH64"
4875 "#"
4876 "&& reload_completed"
4877 [(set (match_dup 3) (plus:SI (plus:SI (match_dup 1) (match_dup 2))
4878 (ltu:SI (reg:CC_NOOV 100) (const_int 0))))
4879 (set (match_dup 4) (const_int 0))]
4880 "operands[3] = gen_lowpart (SImode, operands[0]);
4881 operands[4] = gen_highpart_mode (SImode, DImode, operands[1]);"
4882 [(set_attr "length" "2")])
4883
4884 (define_insn "*addx_extend_sp64"
4885 [(set (match_operand:DI 0 "register_operand" "=r")
4886 (zero_extend:DI (plus:SI (plus:SI (match_operand:SI 1 "reg_or_0_operand" "%rJ")
4887 (match_operand:SI 2 "arith_operand" "rI"))
4888 (ltu:SI (reg:CC_NOOV 100) (const_int 0)))))]
4889 "TARGET_ARCH64"
4890 "addx\t%r1, %2, %0"
4891 [(set_attr "type" "ialuX")])
4892
4893 (define_insn "subx"
4894 [(set (match_operand:SI 0 "register_operand" "=r")
4895 (minus:SI (minus:SI (match_operand:SI 1 "reg_or_0_operand" "rJ")
4896 (match_operand:SI 2 "arith_operand" "rI"))
4897 (ltu:SI (reg:CC_NOOV 100) (const_int 0))))]
4898 ""
4899 "subx\t%r1, %2, %0"
4900 [(set_attr "type" "ialuX")])
4901
4902 (define_insn "*subx_extend_sp64"
4903 [(set (match_operand:DI 0 "register_operand" "=r")
4904 (zero_extend:DI (minus:SI (minus:SI (match_operand:SI 1 "reg_or_0_operand" "rJ")
4905 (match_operand:SI 2 "arith_operand" "rI"))
4906 (ltu:SI (reg:CC_NOOV 100) (const_int 0)))))]
4907 "TARGET_ARCH64"
4908 "subx\t%r1, %2, %0"
4909 [(set_attr "type" "ialuX")])
4910
4911 (define_insn_and_split "*subx_extend"
4912 [(set (match_operand:DI 0 "register_operand" "=r")
4913 (zero_extend:DI (minus:SI (minus:SI (match_operand:SI 1 "reg_or_0_operand" "rJ")
4914 (match_operand:SI 2 "arith_operand" "rI"))
4915 (ltu:SI (reg:CC_NOOV 100) (const_int 0)))))]
4916 "! TARGET_ARCH64"
4917 "#"
4918 "&& reload_completed"
4919 [(set (match_dup 3) (minus:SI (minus:SI (match_dup 1) (match_dup 2))
4920 (ltu:SI (reg:CC_NOOV 100) (const_int 0))))
4921 (set (match_dup 4) (const_int 0))]
4922 "operands[3] = gen_lowpart (SImode, operands[0]);
4923 operands[4] = gen_highpart (SImode, operands[0]);"
4924 [(set_attr "length" "2")])
4925
4926 (define_insn_and_split ""
4927 [(set (match_operand:DI 0 "register_operand" "=r")
4928 (plus:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
4929 (match_operand:DI 2 "register_operand" "r")))
4930 (clobber (reg:CC 100))]
4931 "! TARGET_ARCH64"
4932 "#"
4933 "&& reload_completed"
4934 [(parallel [(set (reg:CC_NOOV 100)
4935 (compare:CC_NOOV (plus:SI (match_dup 3) (match_dup 1))
4936 (const_int 0)))
4937 (set (match_dup 5) (plus:SI (match_dup 3) (match_dup 1)))])
4938 (set (match_dup 6)
4939 (plus:SI (plus:SI (match_dup 4) (const_int 0))
4940 (ltu:SI (reg:CC_NOOV 100) (const_int 0))))]
4941 "operands[3] = gen_lowpart (SImode, operands[2]);
4942 operands[4] = gen_highpart (SImode, operands[2]);
4943 operands[5] = gen_lowpart (SImode, operands[0]);
4944 operands[6] = gen_highpart (SImode, operands[0]);"
4945 [(set_attr "length" "2")])
4946
4947 (define_insn "*adddi3_sp64"
4948 [(set (match_operand:DI 0 "register_operand" "=r")
4949 (plus:DI (match_operand:DI 1 "arith_double_operand" "%r")
4950 (match_operand:DI 2 "arith_double_operand" "rHI")))]
4951 "TARGET_ARCH64"
4952 "add\t%1, %2, %0")
4953
4954 (define_expand "addsi3"
4955 [(set (match_operand:SI 0 "register_operand" "=r,d")
4956 (plus:SI (match_operand:SI 1 "arith_operand" "%r,d")
4957 (match_operand:SI 2 "arith_add_operand" "rI,d")))]
4958 ""
4959 {
4960 if (arith_4096_operand(operands[2], SImode))
4961 {
4962 if (GET_CODE (operands[1]) == CONST_INT)
4963 emit_insn (gen_movsi (operands[0],
4964 GEN_INT (INTVAL (operands[1]) + 4096)));
4965 else
4966 emit_insn (gen_rtx_SET (VOIDmode, operands[0],
4967 gen_rtx_MINUS (SImode, operands[1],
4968 GEN_INT(-4096))));
4969 DONE;
4970 }
4971 })
4972
4973 (define_insn "*addsi3"
4974 [(set (match_operand:SI 0 "register_operand" "=r,d")
4975 (plus:SI (match_operand:SI 1 "arith_operand" "%r,d")
4976 (match_operand:SI 2 "arith_operand" "rI,d")))]
4977 ""
4978 "@
4979 add\t%1, %2, %0
4980 fpadd32s\t%1, %2, %0"
4981 [(set_attr "type" "*,fp")])
4982
4983 (define_insn "*cmp_cc_plus"
4984 [(set (reg:CC_NOOV 100)
4985 (compare:CC_NOOV (plus:SI (match_operand:SI 0 "arith_operand" "%r")
4986 (match_operand:SI 1 "arith_operand" "rI"))
4987 (const_int 0)))]
4988 ""
4989 "addcc\t%0, %1, %%g0"
4990 [(set_attr "type" "compare")])
4991
4992 (define_insn "*cmp_ccx_plus"
4993 [(set (reg:CCX_NOOV 100)
4994 (compare:CCX_NOOV (plus:DI (match_operand:DI 0 "arith_double_operand" "%r")
4995 (match_operand:DI 1 "arith_double_operand" "rHI"))
4996 (const_int 0)))]
4997 "TARGET_ARCH64"
4998 "addcc\t%0, %1, %%g0"
4999 [(set_attr "type" "compare")])
5000
5001 (define_insn "*cmp_cc_plus_set"
5002 [(set (reg:CC_NOOV 100)
5003 (compare:CC_NOOV (plus:SI (match_operand:SI 1 "arith_operand" "%r")
5004 (match_operand:SI 2 "arith_operand" "rI"))
5005 (const_int 0)))
5006 (set (match_operand:SI 0 "register_operand" "=r")
5007 (plus:SI (match_dup 1) (match_dup 2)))]
5008 ""
5009 "addcc\t%1, %2, %0"
5010 [(set_attr "type" "compare")])
5011
5012 (define_insn "*cmp_ccx_plus_set"
5013 [(set (reg:CCX_NOOV 100)
5014 (compare:CCX_NOOV (plus:DI (match_operand:DI 1 "arith_double_operand" "%r")
5015 (match_operand:DI 2 "arith_double_operand" "rHI"))
5016 (const_int 0)))
5017 (set (match_operand:DI 0 "register_operand" "=r")
5018 (plus:DI (match_dup 1) (match_dup 2)))]
5019 "TARGET_ARCH64"
5020 "addcc\t%1, %2, %0"
5021 [(set_attr "type" "compare")])
5022
5023 (define_expand "subdi3"
5024 [(set (match_operand:DI 0 "register_operand" "=r")
5025 (minus:DI (match_operand:DI 1 "register_operand" "r")
5026 (match_operand:DI 2 "arith_double_add_operand" "rHI")))]
5027 ""
5028 {
5029 if (! TARGET_ARCH64)
5030 {
5031 emit_insn (gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2,
5032 gen_rtx_SET (VOIDmode, operands[0],
5033 gen_rtx_MINUS (DImode, operands[1],
5034 operands[2])),
5035 gen_rtx_CLOBBER (VOIDmode,
5036 gen_rtx_REG (CCmode, SPARC_ICC_REG)))));
5037 DONE;
5038 }
5039 if (arith_double_4096_operand(operands[2], DImode))
5040 {
5041 emit_insn (gen_rtx_SET (VOIDmode, operands[0],
5042 gen_rtx_PLUS (DImode, operands[1],
5043 GEN_INT(-4096))));
5044 DONE;
5045 }
5046 })
5047
5048 (define_insn_and_split "*subdi3_sp32"
5049 [(set (match_operand:DI 0 "register_operand" "=r")
5050 (minus:DI (match_operand:DI 1 "register_operand" "r")
5051 (match_operand:DI 2 "arith_double_operand" "rHI")))
5052 (clobber (reg:CC 100))]
5053 "! TARGET_ARCH64"
5054 "#"
5055 "&& reload_completed
5056 && (GET_CODE (operands[2]) == CONST_INT
5057 || GET_CODE (operands[2]) == CONST_DOUBLE)"
5058 [(clobber (const_int 0))]
5059 {
5060 rtx highp, lowp;
5061
5062 highp = gen_highpart_mode (SImode, DImode, operands[2]);
5063 lowp = gen_lowpart (SImode, operands[2]);
5064 if ((lowp == const0_rtx)
5065 && (operands[0] == operands[1]))
5066 {
5067 emit_insn (gen_rtx_SET (VOIDmode,
5068 gen_highpart (SImode, operands[0]),
5069 gen_rtx_MINUS (SImode,
5070 gen_highpart_mode (SImode, DImode,
5071 operands[1]),
5072 highp)));
5073 }
5074 else
5075 {
5076 emit_insn (gen_cmp_minus_cc_set (gen_lowpart (SImode, operands[0]),
5077 gen_lowpart (SImode, operands[1]),
5078 lowp));
5079 emit_insn (gen_subx (gen_highpart (SImode, operands[0]),
5080 gen_highpart_mode (SImode, DImode, operands[1]),
5081 highp));
5082 }
5083 DONE;
5084 }
5085 [(set_attr "length" "2")])
5086
5087 (define_split
5088 [(set (match_operand:DI 0 "register_operand" "")
5089 (minus:DI (match_operand:DI 1 "register_operand" "")
5090 (match_operand:DI 2 "register_operand" "")))
5091 (clobber (reg:CC 100))]
5092 "! TARGET_ARCH64
5093 && reload_completed"
5094 [(clobber (const_int 0))]
5095 {
5096 emit_insn (gen_cmp_minus_cc_set (gen_lowpart (SImode, operands[0]),
5097 gen_lowpart (SImode, operands[1]),
5098 gen_lowpart (SImode, operands[2])));
5099 emit_insn (gen_subx (gen_highpart (SImode, operands[0]),
5100 gen_highpart (SImode, operands[1]),
5101 gen_highpart (SImode, operands[2])));
5102 DONE;
5103 })
5104
5105 (define_insn_and_split ""
5106 [(set (match_operand:DI 0 "register_operand" "=r")
5107 (minus:DI (match_operand:DI 1 "register_operand" "r")
5108 (zero_extend:DI (match_operand:SI 2 "register_operand" "r"))))
5109 (clobber (reg:CC 100))]
5110 "! TARGET_ARCH64"
5111 "#"
5112 "&& reload_completed"
5113 [(parallel [(set (reg:CC_NOOV 100)
5114 (compare:CC_NOOV (minus:SI (match_dup 3) (match_dup 2))
5115 (const_int 0)))
5116 (set (match_dup 5) (minus:SI (match_dup 3) (match_dup 2)))])
5117 (set (match_dup 6)
5118 (minus:SI (minus:SI (match_dup 4) (const_int 0))
5119 (ltu:SI (reg:CC_NOOV 100) (const_int 0))))]
5120 "operands[3] = gen_lowpart (SImode, operands[1]);
5121 operands[4] = gen_highpart (SImode, operands[1]);
5122 operands[5] = gen_lowpart (SImode, operands[0]);
5123 operands[6] = gen_highpart (SImode, operands[0]);"
5124 [(set_attr "length" "2")])
5125
5126 (define_insn "*subdi3_sp64"
5127 [(set (match_operand:DI 0 "register_operand" "=r")
5128 (minus:DI (match_operand:DI 1 "register_operand" "r")
5129 (match_operand:DI 2 "arith_double_operand" "rHI")))]
5130 "TARGET_ARCH64"
5131 "sub\t%1, %2, %0")
5132
5133 (define_expand "subsi3"
5134 [(set (match_operand:SI 0 "register_operand" "=r,d")
5135 (minus:SI (match_operand:SI 1 "register_operand" "r,d")
5136 (match_operand:SI 2 "arith_add_operand" "rI,d")))]
5137 ""
5138 {
5139 if (arith_4096_operand(operands[2], SImode))
5140 {
5141 emit_insn (gen_rtx_SET (VOIDmode, operands[0],
5142 gen_rtx_PLUS (SImode, operands[1],
5143 GEN_INT(-4096))));
5144 DONE;
5145 }
5146 })
5147
5148 (define_insn "*subsi3"
5149 [(set (match_operand:SI 0 "register_operand" "=r,d")
5150 (minus:SI (match_operand:SI 1 "register_operand" "r,d")
5151 (match_operand:SI 2 "arith_operand" "rI,d")))]
5152 ""
5153 "@
5154 sub\t%1, %2, %0
5155 fpsub32s\t%1, %2, %0"
5156 [(set_attr "type" "*,fp")])
5157
5158 (define_insn "*cmp_minus_cc"
5159 [(set (reg:CC_NOOV 100)
5160 (compare:CC_NOOV (minus:SI (match_operand:SI 0 "reg_or_0_operand" "rJ")
5161 (match_operand:SI 1 "arith_operand" "rI"))
5162 (const_int 0)))]
5163 ""
5164 "subcc\t%r0, %1, %%g0"
5165 [(set_attr "type" "compare")])
5166
5167 (define_insn "*cmp_minus_ccx"
5168 [(set (reg:CCX_NOOV 100)
5169 (compare:CCX_NOOV (minus:DI (match_operand:DI 0 "register_operand" "r")
5170 (match_operand:DI 1 "arith_double_operand" "rHI"))
5171 (const_int 0)))]
5172 "TARGET_ARCH64"
5173 "subcc\t%0, %1, %%g0"
5174 [(set_attr "type" "compare")])
5175
5176 (define_insn "cmp_minus_cc_set"
5177 [(set (reg:CC_NOOV 100)
5178 (compare:CC_NOOV (minus:SI (match_operand:SI 1 "reg_or_0_operand" "rJ")
5179 (match_operand:SI 2 "arith_operand" "rI"))
5180 (const_int 0)))
5181 (set (match_operand:SI 0 "register_operand" "=r")
5182 (minus:SI (match_dup 1) (match_dup 2)))]
5183 ""
5184 "subcc\t%r1, %2, %0"
5185 [(set_attr "type" "compare")])
5186
5187 (define_insn "*cmp_minus_ccx_set"
5188 [(set (reg:CCX_NOOV 100)
5189 (compare:CCX_NOOV (minus:DI (match_operand:DI 1 "register_operand" "r")
5190 (match_operand:DI 2 "arith_double_operand" "rHI"))
5191 (const_int 0)))
5192 (set (match_operand:DI 0 "register_operand" "=r")
5193 (minus:DI (match_dup 1) (match_dup 2)))]
5194 "TARGET_ARCH64"
5195 "subcc\t%1, %2, %0"
5196 [(set_attr "type" "compare")])
5197 \f
5198 ;; Integer Multiply/Divide.
5199
5200 ;; The 32 bit multiply/divide instructions are deprecated on v9, but at
5201 ;; least in UltraSPARC I, II and IIi it is a win tick-wise.
5202
5203 (define_insn "mulsi3"
5204 [(set (match_operand:SI 0 "register_operand" "=r")
5205 (mult:SI (match_operand:SI 1 "arith_operand" "%r")
5206 (match_operand:SI 2 "arith_operand" "rI")))]
5207 "TARGET_HARD_MUL"
5208 "smul\t%1, %2, %0"
5209 [(set_attr "type" "imul")])
5210
5211 (define_expand "muldi3"
5212 [(set (match_operand:DI 0 "register_operand" "=r")
5213 (mult:DI (match_operand:DI 1 "arith_double_operand" "%r")
5214 (match_operand:DI 2 "arith_double_operand" "rHI")))]
5215 "TARGET_ARCH64 || TARGET_V8PLUS"
5216 {
5217 if (TARGET_V8PLUS)
5218 {
5219 emit_insn (gen_muldi3_v8plus (operands[0], operands[1], operands[2]));
5220 DONE;
5221 }
5222 })
5223
5224 (define_insn "*muldi3_sp64"
5225 [(set (match_operand:DI 0 "register_operand" "=r")
5226 (mult:DI (match_operand:DI 1 "arith_double_operand" "%r")
5227 (match_operand:DI 2 "arith_double_operand" "rHI")))]
5228 "TARGET_ARCH64"
5229 "mulx\t%1, %2, %0"
5230 [(set_attr "type" "imul")])
5231
5232 ;; V8plus wide multiply.
5233 ;; XXX
5234 (define_insn "muldi3_v8plus"
5235 [(set (match_operand:DI 0 "register_operand" "=r,h")
5236 (mult:DI (match_operand:DI 1 "arith_double_operand" "%r,0")
5237 (match_operand:DI 2 "arith_double_operand" "rI,rI")))
5238 (clobber (match_scratch:SI 3 "=&h,X"))
5239 (clobber (match_scratch:SI 4 "=&h,X"))]
5240 "TARGET_V8PLUS"
5241 {
5242 if (sparc_check_64 (operands[1], insn) <= 0)
5243 output_asm_insn ("srl\t%L1, 0, %L1", operands);
5244 if (which_alternative == 1)
5245 output_asm_insn ("sllx\t%H1, 32, %H1", operands);
5246 if (GET_CODE (operands[2]) == CONST_INT)
5247 {
5248 if (which_alternative == 1)
5249 return "or\t%L1, %H1, %H1\n\tmulx\t%H1, %2, %L0\;srlx\t%L0, 32, %H0";
5250 else
5251 return "sllx\t%H1, 32, %3\n\tor\t%L1, %3, %3\n\tmulx\t%3, %2, %3\n\tsrlx\t%3, 32, %H0\n\tmov\t%3, %L0";
5252 }
5253 else if (rtx_equal_p (operands[1], operands[2]))
5254 {
5255 if (which_alternative == 1)
5256 return "or\t%L1, %H1, %H1\n\tmulx\t%H1, %H1, %L0\;srlx\t%L0, 32, %H0";
5257 else
5258 return "sllx\t%H1, 32, %3\n\tor\t%L1, %3, %3\n\tmulx\t%3, %3, %3\n\tsrlx\t%3, 32, %H0\n\tmov\t%3, %L0";
5259 }
5260 if (sparc_check_64 (operands[2], insn) <= 0)
5261 output_asm_insn ("srl\t%L2, 0, %L2", operands);
5262 if (which_alternative == 1)
5263 return "or\t%L1, %H1, %H1\n\tsllx\t%H2, 32, %L1\n\tor\t%L2, %L1, %L1\n\tmulx\t%H1, %L1, %L0\;srlx\t%L0, 32, %H0";
5264 else
5265 return "sllx\t%H1, 32, %3\n\tsllx\t%H2, 32, %4\n\tor\t%L1, %3, %3\n\tor\t%L2, %4, %4\n\tmulx\t%3, %4, %3\n\tsrlx\t%3, 32, %H0\n\tmov\t%3, %L0";
5266 }
5267 [(set_attr "type" "multi")
5268 (set_attr "length" "9,8")])
5269
5270 (define_insn "*cmp_mul_set"
5271 [(set (reg:CC 100)
5272 (compare:CC (mult:SI (match_operand:SI 1 "arith_operand" "%r")
5273 (match_operand:SI 2 "arith_operand" "rI"))
5274 (const_int 0)))
5275 (set (match_operand:SI 0 "register_operand" "=r")
5276 (mult:SI (match_dup 1) (match_dup 2)))]
5277 "TARGET_V8 || TARGET_SPARCLITE || TARGET_DEPRECATED_V8_INSNS"
5278 "smulcc\t%1, %2, %0"
5279 [(set_attr "type" "imul")])
5280
5281 (define_expand "mulsidi3"
5282 [(set (match_operand:DI 0 "register_operand" "")
5283 (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" ""))
5284 (sign_extend:DI (match_operand:SI 2 "arith_operand" ""))))]
5285 "TARGET_HARD_MUL"
5286 {
5287 if (CONSTANT_P (operands[2]))
5288 {
5289 if (TARGET_V8PLUS)
5290 emit_insn (gen_const_mulsidi3_v8plus (operands[0], operands[1],
5291 operands[2]));
5292 else
5293 emit_insn (gen_const_mulsidi3_sp32 (operands[0], operands[1],
5294 operands[2]));
5295 DONE;
5296 }
5297 if (TARGET_V8PLUS)
5298 {
5299 emit_insn (gen_mulsidi3_v8plus (operands[0], operands[1], operands[2]));
5300 DONE;
5301 }
5302 })
5303
5304 ;; V9 puts the 64 bit product in a 64 bit register. Only out or global
5305 ;; registers can hold 64 bit values in the V8plus environment.
5306 ;; XXX
5307 (define_insn "mulsidi3_v8plus"
5308 [(set (match_operand:DI 0 "register_operand" "=h,r")
5309 (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "r,r"))
5310 (sign_extend:DI (match_operand:SI 2 "register_operand" "r,r"))))
5311 (clobber (match_scratch:SI 3 "=X,&h"))]
5312 "TARGET_V8PLUS"
5313 "@
5314 smul\t%1, %2, %L0\n\tsrlx\t%L0, 32, %H0
5315 smul\t%1, %2, %3\n\tsrlx\t%3, 32, %H0\n\tmov\t%3, %L0"
5316 [(set_attr "type" "multi")
5317 (set_attr "length" "2,3")])
5318
5319 ;; XXX
5320 (define_insn "const_mulsidi3_v8plus"
5321 [(set (match_operand:DI 0 "register_operand" "=h,r")
5322 (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "r,r"))
5323 (match_operand:SI 2 "small_int" "I,I")))
5324 (clobber (match_scratch:SI 3 "=X,&h"))]
5325 "TARGET_V8PLUS"
5326 "@
5327 smul\t%1, %2, %L0\n\tsrlx\t%L0, 32, %H0
5328 smul\t%1, %2, %3\n\tsrlx\t%3, 32, %H0\n\tmov\t%3, %L0"
5329 [(set_attr "type" "multi")
5330 (set_attr "length" "2,3")])
5331
5332 ;; XXX
5333 (define_insn "*mulsidi3_sp32"
5334 [(set (match_operand:DI 0 "register_operand" "=r")
5335 (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "r"))
5336 (sign_extend:DI (match_operand:SI 2 "register_operand" "r"))))]
5337 "TARGET_HARD_MUL32"
5338 {
5339 return TARGET_SPARCLET
5340 ? "smuld\t%1, %2, %L0"
5341 : "smul\t%1, %2, %L0\n\trd\t%%y, %H0";
5342 }
5343 [(set (attr "type")
5344 (if_then_else (eq_attr "isa" "sparclet")
5345 (const_string "imul") (const_string "multi")))
5346 (set (attr "length")
5347 (if_then_else (eq_attr "isa" "sparclet")
5348 (const_int 1) (const_int 2)))])
5349
5350 (define_insn "*mulsidi3_sp64"
5351 [(set (match_operand:DI 0 "register_operand" "=r")
5352 (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "r"))
5353 (sign_extend:DI (match_operand:SI 2 "register_operand" "r"))))]
5354 "TARGET_DEPRECATED_V8_INSNS && TARGET_ARCH64"
5355 "smul\t%1, %2, %0"
5356 [(set_attr "type" "imul")])
5357
5358 ;; Extra pattern, because sign_extend of a constant isn't valid.
5359
5360 ;; XXX
5361 (define_insn "const_mulsidi3_sp32"
5362 [(set (match_operand:DI 0 "register_operand" "=r")
5363 (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "r"))
5364 (match_operand:SI 2 "small_int" "I")))]
5365 "TARGET_HARD_MUL32"
5366 {
5367 return TARGET_SPARCLET
5368 ? "smuld\t%1, %2, %L0"
5369 : "smul\t%1, %2, %L0\n\trd\t%%y, %H0";
5370 }
5371 [(set (attr "type")
5372 (if_then_else (eq_attr "isa" "sparclet")
5373 (const_string "imul") (const_string "multi")))
5374 (set (attr "length")
5375 (if_then_else (eq_attr "isa" "sparclet")
5376 (const_int 1) (const_int 2)))])
5377
5378 (define_insn "const_mulsidi3_sp64"
5379 [(set (match_operand:DI 0 "register_operand" "=r")
5380 (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "r"))
5381 (match_operand:SI 2 "small_int" "I")))]
5382 "TARGET_DEPRECATED_V8_INSNS && TARGET_ARCH64"
5383 "smul\t%1, %2, %0"
5384 [(set_attr "type" "imul")])
5385
5386 (define_expand "smulsi3_highpart"
5387 [(set (match_operand:SI 0 "register_operand" "")
5388 (truncate:SI
5389 (lshiftrt:DI (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" ""))
5390 (sign_extend:DI (match_operand:SI 2 "arith_operand" "")))
5391 (const_int 32))))]
5392 "TARGET_HARD_MUL && TARGET_ARCH32"
5393 {
5394 if (CONSTANT_P (operands[2]))
5395 {
5396 if (TARGET_V8PLUS)
5397 {
5398 emit_insn (gen_const_smulsi3_highpart_v8plus (operands[0],
5399 operands[1],
5400 operands[2],
5401 GEN_INT (32)));
5402 DONE;
5403 }
5404 emit_insn (gen_const_smulsi3_highpart (operands[0], operands[1], operands[2]));
5405 DONE;
5406 }
5407 if (TARGET_V8PLUS)
5408 {
5409 emit_insn (gen_smulsi3_highpart_v8plus (operands[0], operands[1],
5410 operands[2], GEN_INT (32)));
5411 DONE;
5412 }
5413 })
5414
5415 ;; XXX
5416 (define_insn "smulsi3_highpart_v8plus"
5417 [(set (match_operand:SI 0 "register_operand" "=h,r")
5418 (truncate:SI
5419 (lshiftrt:DI (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "r,r"))
5420 (sign_extend:DI (match_operand:SI 2 "register_operand" "r,r")))
5421 (match_operand:SI 3 "const_int_operand" "i,i"))))
5422 (clobber (match_scratch:SI 4 "=X,&h"))]
5423 "TARGET_V8PLUS"
5424 "@
5425 smul\t%1, %2, %0\;srlx\t%0, %3, %0
5426 smul\t%1, %2, %4\;srlx\t%4, %3, %0"
5427 [(set_attr "type" "multi")
5428 (set_attr "length" "2")])
5429
5430 ;; The combiner changes TRUNCATE in the previous pattern to SUBREG.
5431 ;; XXX
5432 (define_insn ""
5433 [(set (match_operand:SI 0 "register_operand" "=h,r")
5434 (subreg:SI
5435 (lshiftrt:DI
5436 (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "r,r"))
5437 (sign_extend:DI (match_operand:SI 2 "register_operand" "r,r")))
5438 (match_operand:SI 3 "const_int_operand" "i,i"))
5439 4))
5440 (clobber (match_scratch:SI 4 "=X,&h"))]
5441 "TARGET_V8PLUS"
5442 "@
5443 smul\t%1, %2, %0\n\tsrlx\t%0, %3, %0
5444 smul\t%1, %2, %4\n\tsrlx\t%4, %3, %0"
5445 [(set_attr "type" "multi")
5446 (set_attr "length" "2")])
5447
5448 ;; XXX
5449 (define_insn "const_smulsi3_highpart_v8plus"
5450 [(set (match_operand:SI 0 "register_operand" "=h,r")
5451 (truncate:SI
5452 (lshiftrt:DI (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "r,r"))
5453 (match_operand 2 "small_int" "i,i"))
5454 (match_operand:SI 3 "const_int_operand" "i,i"))))
5455 (clobber (match_scratch:SI 4 "=X,&h"))]
5456 "TARGET_V8PLUS"
5457 "@
5458 smul\t%1, %2, %0\n\tsrlx\t%0, %3, %0
5459 smul\t%1, %2, %4\n\tsrlx\t%4, %3, %0"
5460 [(set_attr "type" "multi")
5461 (set_attr "length" "2")])
5462
5463 ;; XXX
5464 (define_insn "*smulsi3_highpart_sp32"
5465 [(set (match_operand:SI 0 "register_operand" "=r")
5466 (truncate:SI
5467 (lshiftrt:DI (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "r"))
5468 (sign_extend:DI (match_operand:SI 2 "register_operand" "r")))
5469 (const_int 32))))]
5470 "TARGET_HARD_MUL32"
5471 "smul\t%1, %2, %%g0\n\trd\t%%y, %0"
5472 [(set_attr "type" "multi")
5473 (set_attr "length" "2")])
5474
5475 ;; XXX
5476 (define_insn "const_smulsi3_highpart"
5477 [(set (match_operand:SI 0 "register_operand" "=r")
5478 (truncate:SI
5479 (lshiftrt:DI (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "r"))
5480 (match_operand:SI 2 "register_operand" "r"))
5481 (const_int 32))))]
5482 "TARGET_HARD_MUL32"
5483 "smul\t%1, %2, %%g0\n\trd\t%%y, %0"
5484 [(set_attr "type" "multi")
5485 (set_attr "length" "2")])
5486
5487 (define_expand "umulsidi3"
5488 [(set (match_operand:DI 0 "register_operand" "")
5489 (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" ""))
5490 (zero_extend:DI (match_operand:SI 2 "uns_arith_operand" ""))))]
5491 "TARGET_HARD_MUL"
5492 {
5493 if (CONSTANT_P (operands[2]))
5494 {
5495 if (TARGET_V8PLUS)
5496 emit_insn (gen_const_umulsidi3_v8plus (operands[0], operands[1],
5497 operands[2]));
5498 else
5499 emit_insn (gen_const_umulsidi3_sp32 (operands[0], operands[1],
5500 operands[2]));
5501 DONE;
5502 }
5503 if (TARGET_V8PLUS)
5504 {
5505 emit_insn (gen_umulsidi3_v8plus (operands[0], operands[1], operands[2]));
5506 DONE;
5507 }
5508 })
5509
5510 ;; XXX
5511 (define_insn "umulsidi3_v8plus"
5512 [(set (match_operand:DI 0 "register_operand" "=h,r")
5513 (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r,r"))
5514 (zero_extend:DI (match_operand:SI 2 "register_operand" "r,r"))))
5515 (clobber (match_scratch:SI 3 "=X,&h"))]
5516 "TARGET_V8PLUS"
5517 "@
5518 umul\t%1, %2, %L0\n\tsrlx\t%L0, 32, %H0
5519 umul\t%1, %2, %3\n\tsrlx\t%3, 32, %H0\n\tmov\t%3, %L0"
5520 [(set_attr "type" "multi")
5521 (set_attr "length" "2,3")])
5522
5523 ;; XXX
5524 (define_insn "*umulsidi3_sp32"
5525 [(set (match_operand:DI 0 "register_operand" "=r")
5526 (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
5527 (zero_extend:DI (match_operand:SI 2 "register_operand" "r"))))]
5528 "TARGET_HARD_MUL32"
5529 {
5530 return TARGET_SPARCLET
5531 ? "umuld\t%1, %2, %L0"
5532 : "umul\t%1, %2, %L0\n\trd\t%%y, %H0";
5533 }
5534 [(set (attr "type")
5535 (if_then_else (eq_attr "isa" "sparclet")
5536 (const_string "imul") (const_string "multi")))
5537 (set (attr "length")
5538 (if_then_else (eq_attr "isa" "sparclet")
5539 (const_int 1) (const_int 2)))])
5540
5541 (define_insn "*umulsidi3_sp64"
5542 [(set (match_operand:DI 0 "register_operand" "=r")
5543 (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
5544 (zero_extend:DI (match_operand:SI 2 "register_operand" "r"))))]
5545 "TARGET_DEPRECATED_V8_INSNS && TARGET_ARCH64"
5546 "umul\t%1, %2, %0"
5547 [(set_attr "type" "imul")])
5548
5549 ;; Extra pattern, because sign_extend of a constant isn't valid.
5550
5551 ;; XXX
5552 (define_insn "const_umulsidi3_sp32"
5553 [(set (match_operand:DI 0 "register_operand" "=r")
5554 (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
5555 (match_operand:SI 2 "uns_small_int" "")))]
5556 "TARGET_HARD_MUL32"
5557 {
5558 return TARGET_SPARCLET
5559 ? "umuld\t%1, %2, %L0"
5560 : "umul\t%1, %2, %L0\n\trd\t%%y, %H0";
5561 }
5562 [(set (attr "type")
5563 (if_then_else (eq_attr "isa" "sparclet")
5564 (const_string "imul") (const_string "multi")))
5565 (set (attr "length")
5566 (if_then_else (eq_attr "isa" "sparclet")
5567 (const_int 1) (const_int 2)))])
5568
5569 (define_insn "const_umulsidi3_sp64"
5570 [(set (match_operand:DI 0 "register_operand" "=r")
5571 (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
5572 (match_operand:SI 2 "uns_small_int" "")))]
5573 "TARGET_DEPRECATED_V8_INSNS && TARGET_ARCH64"
5574 "umul\t%1, %2, %0"
5575 [(set_attr "type" "imul")])
5576
5577 ;; XXX
5578 (define_insn "const_umulsidi3_v8plus"
5579 [(set (match_operand:DI 0 "register_operand" "=h,r")
5580 (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r,r"))
5581 (match_operand:SI 2 "uns_small_int" "")))
5582 (clobber (match_scratch:SI 3 "=X,h"))]
5583 "TARGET_V8PLUS"
5584 "@
5585 umul\t%1, %2, %L0\n\tsrlx\t%L0, 32, %H0
5586 umul\t%1, %2, %3\n\tsrlx\t%3, 32, %H0\n\tmov\t%3, %L0"
5587 [(set_attr "type" "multi")
5588 (set_attr "length" "2,3")])
5589
5590 (define_expand "umulsi3_highpart"
5591 [(set (match_operand:SI 0 "register_operand" "")
5592 (truncate:SI
5593 (lshiftrt:DI (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" ""))
5594 (zero_extend:DI (match_operand:SI 2 "uns_arith_operand" "")))
5595 (const_int 32))))]
5596 "TARGET_HARD_MUL && TARGET_ARCH32"
5597 {
5598 if (CONSTANT_P (operands[2]))
5599 {
5600 if (TARGET_V8PLUS)
5601 {
5602 emit_insn (gen_const_umulsi3_highpart_v8plus (operands[0],
5603 operands[1],
5604 operands[2],
5605 GEN_INT (32)));
5606 DONE;
5607 }
5608 emit_insn (gen_const_umulsi3_highpart (operands[0], operands[1], operands[2]));
5609 DONE;
5610 }
5611 if (TARGET_V8PLUS)
5612 {
5613 emit_insn (gen_umulsi3_highpart_v8plus (operands[0], operands[1],
5614 operands[2], GEN_INT (32)));
5615 DONE;
5616 }
5617 })
5618
5619 ;; XXX
5620 (define_insn "umulsi3_highpart_v8plus"
5621 [(set (match_operand:SI 0 "register_operand" "=h,r")
5622 (truncate:SI
5623 (lshiftrt:DI (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r,r"))
5624 (zero_extend:DI (match_operand:SI 2 "register_operand" "r,r")))
5625 (match_operand:SI 3 "const_int_operand" "i,i"))))
5626 (clobber (match_scratch:SI 4 "=X,h"))]
5627 "TARGET_V8PLUS"
5628 "@
5629 umul\t%1, %2, %0\n\tsrlx\t%0, %3, %0
5630 umul\t%1, %2, %4\n\tsrlx\t%4, %3, %0"
5631 [(set_attr "type" "multi")
5632 (set_attr "length" "2")])
5633
5634 ;; XXX
5635 (define_insn "const_umulsi3_highpart_v8plus"
5636 [(set (match_operand:SI 0 "register_operand" "=h,r")
5637 (truncate:SI
5638 (lshiftrt:DI (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r,r"))
5639 (match_operand:SI 2 "uns_small_int" ""))
5640 (match_operand:SI 3 "const_int_operand" "i,i"))))
5641 (clobber (match_scratch:SI 4 "=X,h"))]
5642 "TARGET_V8PLUS"
5643 "@
5644 umul\t%1, %2, %0\n\tsrlx\t%0, %3, %0
5645 umul\t%1, %2, %4\n\tsrlx\t%4, %3, %0"
5646 [(set_attr "type" "multi")
5647 (set_attr "length" "2")])
5648
5649 ;; XXX
5650 (define_insn "*umulsi3_highpart_sp32"
5651 [(set (match_operand:SI 0 "register_operand" "=r")
5652 (truncate:SI
5653 (lshiftrt:DI (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
5654 (zero_extend:DI (match_operand:SI 2 "register_operand" "r")))
5655 (const_int 32))))]
5656 "TARGET_HARD_MUL32"
5657 "umul\t%1, %2, %%g0\n\trd\t%%y, %0"
5658 [(set_attr "type" "multi")
5659 (set_attr "length" "2")])
5660
5661 ;; XXX
5662 (define_insn "const_umulsi3_highpart"
5663 [(set (match_operand:SI 0 "register_operand" "=r")
5664 (truncate:SI
5665 (lshiftrt:DI (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
5666 (match_operand:SI 2 "uns_small_int" ""))
5667 (const_int 32))))]
5668 "TARGET_HARD_MUL32"
5669 "umul\t%1, %2, %%g0\n\trd\t%%y, %0"
5670 [(set_attr "type" "multi")
5671 (set_attr "length" "2")])
5672
5673 ;; The v8 architecture specifies that there must be 3 instructions between
5674 ;; a y register write and a use of it for correct results.
5675
5676 (define_expand "divsi3"
5677 [(parallel [(set (match_operand:SI 0 "register_operand" "=r,r")
5678 (div:SI (match_operand:SI 1 "register_operand" "r,r")
5679 (match_operand:SI 2 "input_operand" "rI,m")))
5680 (clobber (match_scratch:SI 3 "=&r,&r"))])]
5681 "TARGET_V8 || TARGET_DEPRECATED_V8_INSNS"
5682 {
5683 if (TARGET_ARCH64)
5684 {
5685 operands[3] = gen_reg_rtx(SImode);
5686 emit_insn (gen_ashrsi3 (operands[3], operands[1], GEN_INT (31)));
5687 emit_insn (gen_divsi3_sp64 (operands[0], operands[1], operands[2],
5688 operands[3]));
5689 DONE;
5690 }
5691 })
5692
5693 (define_insn "divsi3_sp32"
5694 [(set (match_operand:SI 0 "register_operand" "=r,r")
5695 (div:SI (match_operand:SI 1 "register_operand" "r,r")
5696 (match_operand:SI 2 "input_operand" "rI,m")))
5697 (clobber (match_scratch:SI 3 "=&r,&r"))]
5698 "(TARGET_V8 || TARGET_DEPRECATED_V8_INSNS)
5699 && TARGET_ARCH32"
5700 {
5701 if (which_alternative == 0)
5702 if (TARGET_V9)
5703 return "sra\t%1, 31, %3\n\twr\t%3, 0, %%y\n\tsdiv\t%1, %2, %0";
5704 else
5705 return "sra\t%1, 31, %3\n\twr\t%3, 0, %%y\n\tnop\n\tnop\n\tnop\n\tsdiv\t%1, %2, %0";
5706 else
5707 if (TARGET_V9)
5708 return "sra\t%1, 31, %3\n\twr\t%3, 0, %%y\n\tld\t%2, %3\n\tsdiv\t%1, %3, %0";
5709 else
5710 return "sra\t%1, 31, %3\n\twr\t%3, 0, %%y\n\tld\t%2, %3\n\tnop\n\tnop\n\tsdiv\t%1, %3, %0";
5711 }
5712 [(set_attr "type" "multi")
5713 (set (attr "length")
5714 (if_then_else (eq_attr "isa" "v9")
5715 (const_int 4) (const_int 6)))])
5716
5717 (define_insn "divsi3_sp64"
5718 [(set (match_operand:SI 0 "register_operand" "=r")
5719 (div:SI (match_operand:SI 1 "register_operand" "r")
5720 (match_operand:SI 2 "input_operand" "rI")))
5721 (use (match_operand:SI 3 "register_operand" "r"))]
5722 "TARGET_DEPRECATED_V8_INSNS && TARGET_ARCH64"
5723 "wr\t%%g0, %3, %%y\n\tsdiv\t%1, %2, %0"
5724 [(set_attr "type" "multi")
5725 (set_attr "length" "2")])
5726
5727 (define_insn "divdi3"
5728 [(set (match_operand:DI 0 "register_operand" "=r")
5729 (div:DI (match_operand:DI 1 "register_operand" "r")
5730 (match_operand:DI 2 "arith_double_operand" "rHI")))]
5731 "TARGET_ARCH64"
5732 "sdivx\t%1, %2, %0"
5733 [(set_attr "type" "idiv")])
5734
5735 (define_insn "*cmp_sdiv_cc_set"
5736 [(set (reg:CC 100)
5737 (compare:CC (div:SI (match_operand:SI 1 "register_operand" "r")
5738 (match_operand:SI 2 "arith_operand" "rI"))
5739 (const_int 0)))
5740 (set (match_operand:SI 0 "register_operand" "=r")
5741 (div:SI (match_dup 1) (match_dup 2)))
5742 (clobber (match_scratch:SI 3 "=&r"))]
5743 "TARGET_V8 || TARGET_DEPRECATED_V8_INSNS"
5744 {
5745 if (TARGET_V9)
5746 return "sra\t%1, 31, %3\n\twr\t%3, 0, %%y\n\tsdivcc\t%1, %2, %0";
5747 else
5748 return "sra\t%1, 31, %3\n\twr\t%3, 0, %%y\n\tnop\n\tnop\n\tnop\n\tsdivcc\t%1, %2, %0";
5749 }
5750 [(set_attr "type" "multi")
5751 (set (attr "length")
5752 (if_then_else (eq_attr "isa" "v9")
5753 (const_int 3) (const_int 6)))])
5754
5755 ;; XXX
5756 (define_expand "udivsi3"
5757 [(set (match_operand:SI 0 "register_operand" "")
5758 (udiv:SI (match_operand:SI 1 "reg_or_nonsymb_mem_operand" "")
5759 (match_operand:SI 2 "input_operand" "")))]
5760 "TARGET_V8 || TARGET_DEPRECATED_V8_INSNS"
5761 "")
5762
5763 (define_insn "udivsi3_sp32"
5764 [(set (match_operand:SI 0 "register_operand" "=r,&r,&r")
5765 (udiv:SI (match_operand:SI 1 "reg_or_nonsymb_mem_operand" "r,r,m")
5766 (match_operand:SI 2 "input_operand" "rI,m,r")))]
5767 "(TARGET_V8
5768 || TARGET_DEPRECATED_V8_INSNS)
5769 && TARGET_ARCH32"
5770 {
5771 output_asm_insn ("wr\t%%g0, %%g0, %%y", operands);
5772 switch (which_alternative)
5773 {
5774 default:
5775 return "nop\n\tnop\n\tnop\n\tudiv\t%1, %2, %0";
5776 case 1:
5777 return "ld\t%2, %0\n\tnop\n\tnop\n\tudiv\t%1, %0, %0";
5778 case 2:
5779 return "ld\t%1, %0\n\tnop\n\tnop\n\tudiv\t%0, %2, %0";
5780 }
5781 }
5782 [(set_attr "type" "multi")
5783 (set_attr "length" "5")])
5784
5785 (define_insn "udivsi3_sp64"
5786 [(set (match_operand:SI 0 "register_operand" "=r")
5787 (udiv:SI (match_operand:SI 1 "reg_or_nonsymb_mem_operand" "r")
5788 (match_operand:SI 2 "input_operand" "rI")))]
5789 "TARGET_DEPRECATED_V8_INSNS && TARGET_ARCH64"
5790 "wr\t%%g0, 0, %%y\n\tudiv\t%1, %2, %0"
5791 [(set_attr "type" "multi")
5792 (set_attr "length" "2")])
5793
5794 (define_insn "udivdi3"
5795 [(set (match_operand:DI 0 "register_operand" "=r")
5796 (udiv:DI (match_operand:DI 1 "register_operand" "r")
5797 (match_operand:DI 2 "arith_double_operand" "rHI")))]
5798 "TARGET_ARCH64"
5799 "udivx\t%1, %2, %0"
5800 [(set_attr "type" "idiv")])
5801
5802 (define_insn "*cmp_udiv_cc_set"
5803 [(set (reg:CC 100)
5804 (compare:CC (udiv:SI (match_operand:SI 1 "register_operand" "r")
5805 (match_operand:SI 2 "arith_operand" "rI"))
5806 (const_int 0)))
5807 (set (match_operand:SI 0 "register_operand" "=r")
5808 (udiv:SI (match_dup 1) (match_dup 2)))]
5809 "TARGET_V8
5810 || TARGET_DEPRECATED_V8_INSNS"
5811 {
5812 if (TARGET_V9)
5813 return "wr\t%%g0, %%g0, %%y\n\tudivcc\t%1, %2, %0";
5814 else
5815 return "wr\t%%g0, %%g0, %%y\n\tnop\n\tnop\n\tnop\n\tudivcc\t%1, %2, %0";
5816 }
5817 [(set_attr "type" "multi")
5818 (set (attr "length")
5819 (if_then_else (eq_attr "isa" "v9")
5820 (const_int 2) (const_int 5)))])
5821
5822 ; sparclet multiply/accumulate insns
5823
5824 (define_insn "*smacsi"
5825 [(set (match_operand:SI 0 "register_operand" "=r")
5826 (plus:SI (mult:SI (match_operand:SI 1 "register_operand" "%r")
5827 (match_operand:SI 2 "arith_operand" "rI"))
5828 (match_operand:SI 3 "register_operand" "0")))]
5829 "TARGET_SPARCLET"
5830 "smac\t%1, %2, %0"
5831 [(set_attr "type" "imul")])
5832
5833 (define_insn "*smacdi"
5834 [(set (match_operand:DI 0 "register_operand" "=r")
5835 (plus:DI (mult:DI (sign_extend:DI
5836 (match_operand:SI 1 "register_operand" "%r"))
5837 (sign_extend:DI
5838 (match_operand:SI 2 "register_operand" "r")))
5839 (match_operand:DI 3 "register_operand" "0")))]
5840 "TARGET_SPARCLET"
5841 "smacd\t%1, %2, %L0"
5842 [(set_attr "type" "imul")])
5843
5844 (define_insn "*umacdi"
5845 [(set (match_operand:DI 0 "register_operand" "=r")
5846 (plus:DI (mult:DI (zero_extend:DI
5847 (match_operand:SI 1 "register_operand" "%r"))
5848 (zero_extend:DI
5849 (match_operand:SI 2 "register_operand" "r")))
5850 (match_operand:DI 3 "register_operand" "0")))]
5851 "TARGET_SPARCLET"
5852 "umacd\t%1, %2, %L0"
5853 [(set_attr "type" "imul")])
5854 \f
5855 ;;- Boolean instructions
5856 ;; We define DImode `and' so with DImode `not' we can get
5857 ;; DImode `andn'. Other combinations are possible.
5858
5859 (define_expand "anddi3"
5860 [(set (match_operand:DI 0 "register_operand" "")
5861 (and:DI (match_operand:DI 1 "arith_double_operand" "")
5862 (match_operand:DI 2 "arith_double_operand" "")))]
5863 ""
5864 "")
5865
5866 (define_insn "*anddi3_sp32"
5867 [(set (match_operand:DI 0 "register_operand" "=r,b")
5868 (and:DI (match_operand:DI 1 "arith_double_operand" "%r,b")
5869 (match_operand:DI 2 "arith_double_operand" "rHI,b")))]
5870 "! TARGET_ARCH64"
5871 "@
5872 #
5873 fand\t%1, %2, %0"
5874 [(set_attr "type" "*,fp")
5875 (set_attr "length" "2,*")
5876 (set_attr "fptype" "double")])
5877
5878 (define_insn "*anddi3_sp64"
5879 [(set (match_operand:DI 0 "register_operand" "=r,b")
5880 (and:DI (match_operand:DI 1 "arith_double_operand" "%r,b")
5881 (match_operand:DI 2 "arith_double_operand" "rHI,b")))]
5882 "TARGET_ARCH64"
5883 "@
5884 and\t%1, %2, %0
5885 fand\t%1, %2, %0"
5886 [(set_attr "type" "*,fp")
5887 (set_attr "fptype" "double")])
5888
5889 (define_insn "andsi3"
5890 [(set (match_operand:SI 0 "register_operand" "=r,d")
5891 (and:SI (match_operand:SI 1 "arith_operand" "%r,d")
5892 (match_operand:SI 2 "arith_operand" "rI,d")))]
5893 ""
5894 "@
5895 and\t%1, %2, %0
5896 fands\t%1, %2, %0"
5897 [(set_attr "type" "*,fp")])
5898
5899 (define_split
5900 [(set (match_operand:SI 0 "register_operand" "")
5901 (and:SI (match_operand:SI 1 "register_operand" "")
5902 (match_operand:SI 2 "" "")))
5903 (clobber (match_operand:SI 3 "register_operand" ""))]
5904 "GET_CODE (operands[2]) == CONST_INT
5905 && !SMALL_INT32 (operands[2])
5906 && (INTVAL (operands[2]) & 0x3ff) == 0x3ff"
5907 [(set (match_dup 3) (match_dup 4))
5908 (set (match_dup 0) (and:SI (not:SI (match_dup 3)) (match_dup 1)))]
5909 {
5910 operands[4] = GEN_INT (~INTVAL (operands[2]));
5911 })
5912
5913 ;; Split DImode logical operations requiring two instructions.
5914 (define_split
5915 [(set (match_operand:DI 0 "register_operand" "")
5916 (match_operator:DI 1 "cc_arithop" ; AND, IOR, XOR
5917 [(match_operand:DI 2 "register_operand" "")
5918 (match_operand:DI 3 "arith_double_operand" "")]))]
5919 "! TARGET_ARCH64
5920 && reload_completed
5921 && ((GET_CODE (operands[0]) == REG
5922 && REGNO (operands[0]) < 32)
5923 || (GET_CODE (operands[0]) == SUBREG
5924 && GET_CODE (SUBREG_REG (operands[0])) == REG
5925 && REGNO (SUBREG_REG (operands[0])) < 32))"
5926 [(set (match_dup 4) (match_op_dup:SI 1 [(match_dup 6) (match_dup 8)]))
5927 (set (match_dup 5) (match_op_dup:SI 1 [(match_dup 7) (match_dup 9)]))]
5928 {
5929 operands[4] = gen_highpart (SImode, operands[0]);
5930 operands[5] = gen_lowpart (SImode, operands[0]);
5931 operands[6] = gen_highpart (SImode, operands[2]);
5932 operands[7] = gen_lowpart (SImode, operands[2]);
5933 #if HOST_BITS_PER_WIDE_INT == 32
5934 if (GET_CODE (operands[3]) == CONST_INT)
5935 {
5936 if (INTVAL (operands[3]) < 0)
5937 operands[8] = constm1_rtx;
5938 else
5939 operands[8] = const0_rtx;
5940 }
5941 else
5942 #endif
5943 operands[8] = gen_highpart_mode (SImode, DImode, operands[3]);
5944 operands[9] = gen_lowpart (SImode, operands[3]);
5945 })
5946
5947 (define_insn_and_split "*and_not_di_sp32"
5948 [(set (match_operand:DI 0 "register_operand" "=r,b")
5949 (and:DI (not:DI (match_operand:DI 1 "register_operand" "r,b"))
5950 (match_operand:DI 2 "register_operand" "r,b")))]
5951 "! TARGET_ARCH64"
5952 "@
5953 #
5954 fandnot1\t%1, %2, %0"
5955 "&& reload_completed
5956 && ((GET_CODE (operands[0]) == REG
5957 && REGNO (operands[0]) < 32)
5958 || (GET_CODE (operands[0]) == SUBREG
5959 && GET_CODE (SUBREG_REG (operands[0])) == REG
5960 && REGNO (SUBREG_REG (operands[0])) < 32))"
5961 [(set (match_dup 3) (and:SI (not:SI (match_dup 4)) (match_dup 5)))
5962 (set (match_dup 6) (and:SI (not:SI (match_dup 7)) (match_dup 8)))]
5963 "operands[3] = gen_highpart (SImode, operands[0]);
5964 operands[4] = gen_highpart (SImode, operands[1]);
5965 operands[5] = gen_highpart (SImode, operands[2]);
5966 operands[6] = gen_lowpart (SImode, operands[0]);
5967 operands[7] = gen_lowpart (SImode, operands[1]);
5968 operands[8] = gen_lowpart (SImode, operands[2]);"
5969 [(set_attr "type" "*,fp")
5970 (set_attr "length" "2,*")
5971 (set_attr "fptype" "double")])
5972
5973 (define_insn "*and_not_di_sp64"
5974 [(set (match_operand:DI 0 "register_operand" "=r,b")
5975 (and:DI (not:DI (match_operand:DI 1 "register_operand" "r,b"))
5976 (match_operand:DI 2 "register_operand" "r,b")))]
5977 "TARGET_ARCH64"
5978 "@
5979 andn\t%2, %1, %0
5980 fandnot1\t%1, %2, %0"
5981 [(set_attr "type" "*,fp")
5982 (set_attr "fptype" "double")])
5983
5984 (define_insn "*and_not_si"
5985 [(set (match_operand:SI 0 "register_operand" "=r,d")
5986 (and:SI (not:SI (match_operand:SI 1 "register_operand" "r,d"))
5987 (match_operand:SI 2 "register_operand" "r,d")))]
5988 ""
5989 "@
5990 andn\t%2, %1, %0
5991 fandnot1s\t%1, %2, %0"
5992 [(set_attr "type" "*,fp")])
5993
5994 (define_expand "iordi3"
5995 [(set (match_operand:DI 0 "register_operand" "")
5996 (ior:DI (match_operand:DI 1 "arith_double_operand" "")
5997 (match_operand:DI 2 "arith_double_operand" "")))]
5998 ""
5999 "")
6000
6001 (define_insn "*iordi3_sp32"
6002 [(set (match_operand:DI 0 "register_operand" "=r,b")
6003 (ior:DI (match_operand:DI 1 "arith_double_operand" "%r,b")
6004 (match_operand:DI 2 "arith_double_operand" "rHI,b")))]
6005 "! TARGET_ARCH64"
6006 "@
6007 #
6008 for\t%1, %2, %0"
6009 [(set_attr "type" "*,fp")
6010 (set_attr "length" "2,*")
6011 (set_attr "fptype" "double")])
6012
6013 (define_insn "*iordi3_sp64"
6014 [(set (match_operand:DI 0 "register_operand" "=r,b")
6015 (ior:DI (match_operand:DI 1 "arith_double_operand" "%r,b")
6016 (match_operand:DI 2 "arith_double_operand" "rHI,b")))]
6017 "TARGET_ARCH64"
6018 "@
6019 or\t%1, %2, %0
6020 for\t%1, %2, %0"
6021 [(set_attr "type" "*,fp")
6022 (set_attr "fptype" "double")])
6023
6024 (define_insn "iorsi3"
6025 [(set (match_operand:SI 0 "register_operand" "=r,d")
6026 (ior:SI (match_operand:SI 1 "arith_operand" "%r,d")
6027 (match_operand:SI 2 "arith_operand" "rI,d")))]
6028 ""
6029 "@
6030 or\t%1, %2, %0
6031 fors\t%1, %2, %0"
6032 [(set_attr "type" "*,fp")])
6033
6034 (define_split
6035 [(set (match_operand:SI 0 "register_operand" "")
6036 (ior:SI (match_operand:SI 1 "register_operand" "")
6037 (match_operand:SI 2 "" "")))
6038 (clobber (match_operand:SI 3 "register_operand" ""))]
6039 "GET_CODE (operands[2]) == CONST_INT
6040 && !SMALL_INT32 (operands[2])
6041 && (INTVAL (operands[2]) & 0x3ff) == 0x3ff"
6042 [(set (match_dup 3) (match_dup 4))
6043 (set (match_dup 0) (ior:SI (not:SI (match_dup 3)) (match_dup 1)))]
6044 {
6045 operands[4] = GEN_INT (~INTVAL (operands[2]));
6046 })
6047
6048 (define_insn_and_split "*or_not_di_sp32"
6049 [(set (match_operand:DI 0 "register_operand" "=r,b")
6050 (ior:DI (not:DI (match_operand:DI 1 "register_operand" "r,b"))
6051 (match_operand:DI 2 "register_operand" "r,b")))]
6052 "! TARGET_ARCH64"
6053 "@
6054 #
6055 fornot1\t%1, %2, %0"
6056 "&& reload_completed
6057 && ((GET_CODE (operands[0]) == REG
6058 && REGNO (operands[0]) < 32)
6059 || (GET_CODE (operands[0]) == SUBREG
6060 && GET_CODE (SUBREG_REG (operands[0])) == REG
6061 && REGNO (SUBREG_REG (operands[0])) < 32))"
6062 [(set (match_dup 3) (ior:SI (not:SI (match_dup 4)) (match_dup 5)))
6063 (set (match_dup 6) (ior:SI (not:SI (match_dup 7)) (match_dup 8)))]
6064 "operands[3] = gen_highpart (SImode, operands[0]);
6065 operands[4] = gen_highpart (SImode, operands[1]);
6066 operands[5] = gen_highpart (SImode, operands[2]);
6067 operands[6] = gen_lowpart (SImode, operands[0]);
6068 operands[7] = gen_lowpart (SImode, operands[1]);
6069 operands[8] = gen_lowpart (SImode, operands[2]);"
6070 [(set_attr "type" "*,fp")
6071 (set_attr "length" "2,*")
6072 (set_attr "fptype" "double")])
6073
6074 (define_insn "*or_not_di_sp64"
6075 [(set (match_operand:DI 0 "register_operand" "=r,b")
6076 (ior:DI (not:DI (match_operand:DI 1 "register_operand" "r,b"))
6077 (match_operand:DI 2 "register_operand" "r,b")))]
6078 "TARGET_ARCH64"
6079 "@
6080 orn\t%2, %1, %0
6081 fornot1\t%1, %2, %0"
6082 [(set_attr "type" "*,fp")
6083 (set_attr "fptype" "double")])
6084
6085 (define_insn "*or_not_si"
6086 [(set (match_operand:SI 0 "register_operand" "=r,d")
6087 (ior:SI (not:SI (match_operand:SI 1 "register_operand" "r,d"))
6088 (match_operand:SI 2 "register_operand" "r,d")))]
6089 ""
6090 "@
6091 orn\t%2, %1, %0
6092 fornot1s\t%1, %2, %0"
6093 [(set_attr "type" "*,fp")])
6094
6095 (define_expand "xordi3"
6096 [(set (match_operand:DI 0 "register_operand" "")
6097 (xor:DI (match_operand:DI 1 "arith_double_operand" "")
6098 (match_operand:DI 2 "arith_double_operand" "")))]
6099 ""
6100 "")
6101
6102 (define_insn "*xordi3_sp32"
6103 [(set (match_operand:DI 0 "register_operand" "=r,b")
6104 (xor:DI (match_operand:DI 1 "arith_double_operand" "%r,b")
6105 (match_operand:DI 2 "arith_double_operand" "rHI,b")))]
6106 "! TARGET_ARCH64"
6107 "@
6108 #
6109 fxor\t%1, %2, %0"
6110 [(set_attr "type" "*,fp")
6111 (set_attr "length" "2,*")
6112 (set_attr "fptype" "double")])
6113
6114 (define_insn "*xordi3_sp64"
6115 [(set (match_operand:DI 0 "register_operand" "=r,b")
6116 (xor:DI (match_operand:DI 1 "arith_double_operand" "%rJ,b")
6117 (match_operand:DI 2 "arith_double_operand" "rHI,b")))]
6118 "TARGET_ARCH64"
6119 "@
6120 xor\t%r1, %2, %0
6121 fxor\t%1, %2, %0"
6122 [(set_attr "type" "*,fp")
6123 (set_attr "fptype" "double")])
6124
6125 (define_insn "*xordi3_sp64_dbl"
6126 [(set (match_operand:DI 0 "register_operand" "=r")
6127 (xor:DI (match_operand:DI 1 "register_operand" "r")
6128 (match_operand:DI 2 "const64_operand" "")))]
6129 "(TARGET_ARCH64
6130 && HOST_BITS_PER_WIDE_INT != 64)"
6131 "xor\t%1, %2, %0")
6132
6133 (define_insn "xorsi3"
6134 [(set (match_operand:SI 0 "register_operand" "=r,d")
6135 (xor:SI (match_operand:SI 1 "arith_operand" "%rJ,d")
6136 (match_operand:SI 2 "arith_operand" "rI,d")))]
6137 ""
6138 "@
6139 xor\t%r1, %2, %0
6140 fxors\t%1, %2, %0"
6141 [(set_attr "type" "*,fp")])
6142
6143 (define_split
6144 [(set (match_operand:SI 0 "register_operand" "")
6145 (xor:SI (match_operand:SI 1 "register_operand" "")
6146 (match_operand:SI 2 "" "")))
6147 (clobber (match_operand:SI 3 "register_operand" ""))]
6148 "GET_CODE (operands[2]) == CONST_INT
6149 && !SMALL_INT32 (operands[2])
6150 && (INTVAL (operands[2]) & 0x3ff) == 0x3ff"
6151 [(set (match_dup 3) (match_dup 4))
6152 (set (match_dup 0) (not:SI (xor:SI (match_dup 3) (match_dup 1))))]
6153 {
6154 operands[4] = GEN_INT (~INTVAL (operands[2]));
6155 })
6156
6157 (define_split
6158 [(set (match_operand:SI 0 "register_operand" "")
6159 (not:SI (xor:SI (match_operand:SI 1 "register_operand" "")
6160 (match_operand:SI 2 "" ""))))
6161 (clobber (match_operand:SI 3 "register_operand" ""))]
6162 "GET_CODE (operands[2]) == CONST_INT
6163 && !SMALL_INT32 (operands[2])
6164 && (INTVAL (operands[2]) & 0x3ff) == 0x3ff"
6165 [(set (match_dup 3) (match_dup 4))
6166 (set (match_dup 0) (xor:SI (match_dup 3) (match_dup 1)))]
6167 {
6168 operands[4] = GEN_INT (~INTVAL (operands[2]));
6169 })
6170
6171 ;; xnor patterns. Note that (a ^ ~b) == (~a ^ b) == ~(a ^ b).
6172 ;; Combine now canonicalizes to the rightmost expression.
6173 (define_insn_and_split "*xor_not_di_sp32"
6174 [(set (match_operand:DI 0 "register_operand" "=r,b")
6175 (not:DI (xor:DI (match_operand:DI 1 "register_operand" "r,b")
6176 (match_operand:DI 2 "register_operand" "r,b"))))]
6177 "! TARGET_ARCH64"
6178 "@
6179 #
6180 fxnor\t%1, %2, %0"
6181 "&& reload_completed
6182 && ((GET_CODE (operands[0]) == REG
6183 && REGNO (operands[0]) < 32)
6184 || (GET_CODE (operands[0]) == SUBREG
6185 && GET_CODE (SUBREG_REG (operands[0])) == REG
6186 && REGNO (SUBREG_REG (operands[0])) < 32))"
6187 [(set (match_dup 3) (not:SI (xor:SI (match_dup 4) (match_dup 5))))
6188 (set (match_dup 6) (not:SI (xor:SI (match_dup 7) (match_dup 8))))]
6189 "operands[3] = gen_highpart (SImode, operands[0]);
6190 operands[4] = gen_highpart (SImode, operands[1]);
6191 operands[5] = gen_highpart (SImode, operands[2]);
6192 operands[6] = gen_lowpart (SImode, operands[0]);
6193 operands[7] = gen_lowpart (SImode, operands[1]);
6194 operands[8] = gen_lowpart (SImode, operands[2]);"
6195 [(set_attr "type" "*,fp")
6196 (set_attr "length" "2,*")
6197 (set_attr "fptype" "double")])
6198
6199 (define_insn "*xor_not_di_sp64"
6200 [(set (match_operand:DI 0 "register_operand" "=r,b")
6201 (not:DI (xor:DI (match_operand:DI 1 "reg_or_0_operand" "rJ,b")
6202 (match_operand:DI 2 "arith_double_operand" "rHI,b"))))]
6203 "TARGET_ARCH64"
6204 "@
6205 xnor\t%r1, %2, %0
6206 fxnor\t%1, %2, %0"
6207 [(set_attr "type" "*,fp")
6208 (set_attr "fptype" "double")])
6209
6210 (define_insn "*xor_not_si"
6211 [(set (match_operand:SI 0 "register_operand" "=r,d")
6212 (not:SI (xor:SI (match_operand:SI 1 "reg_or_0_operand" "rJ,d")
6213 (match_operand:SI 2 "arith_operand" "rI,d"))))]
6214 ""
6215 "@
6216 xnor\t%r1, %2, %0
6217 fxnors\t%1, %2, %0"
6218 [(set_attr "type" "*,fp")])
6219
6220 ;; These correspond to the above in the case where we also (or only)
6221 ;; want to set the condition code.
6222
6223 (define_insn "*cmp_cc_arith_op"
6224 [(set (reg:CC 100)
6225 (compare:CC
6226 (match_operator:SI 2 "cc_arithop"
6227 [(match_operand:SI 0 "arith_operand" "%r")
6228 (match_operand:SI 1 "arith_operand" "rI")])
6229 (const_int 0)))]
6230 ""
6231 "%A2cc\t%0, %1, %%g0"
6232 [(set_attr "type" "compare")])
6233
6234 (define_insn "*cmp_ccx_arith_op"
6235 [(set (reg:CCX 100)
6236 (compare:CCX
6237 (match_operator:DI 2 "cc_arithop"
6238 [(match_operand:DI 0 "arith_double_operand" "%r")
6239 (match_operand:DI 1 "arith_double_operand" "rHI")])
6240 (const_int 0)))]
6241 "TARGET_ARCH64"
6242 "%A2cc\t%0, %1, %%g0"
6243 [(set_attr "type" "compare")])
6244
6245 (define_insn "*cmp_cc_arith_op_set"
6246 [(set (reg:CC 100)
6247 (compare:CC
6248 (match_operator:SI 3 "cc_arithop"
6249 [(match_operand:SI 1 "arith_operand" "%r")
6250 (match_operand:SI 2 "arith_operand" "rI")])
6251 (const_int 0)))
6252 (set (match_operand:SI 0 "register_operand" "=r")
6253 (match_operator:SI 4 "cc_arithop" [(match_dup 1) (match_dup 2)]))]
6254 "GET_CODE (operands[3]) == GET_CODE (operands[4])"
6255 "%A3cc\t%1, %2, %0"
6256 [(set_attr "type" "compare")])
6257
6258 (define_insn "*cmp_ccx_arith_op_set"
6259 [(set (reg:CCX 100)
6260 (compare:CCX
6261 (match_operator:DI 3 "cc_arithop"
6262 [(match_operand:DI 1 "arith_double_operand" "%r")
6263 (match_operand:DI 2 "arith_double_operand" "rHI")])
6264 (const_int 0)))
6265 (set (match_operand:DI 0 "register_operand" "=r")
6266 (match_operator:DI 4 "cc_arithop" [(match_dup 1) (match_dup 2)]))]
6267 "TARGET_ARCH64 && GET_CODE (operands[3]) == GET_CODE (operands[4])"
6268 "%A3cc\t%1, %2, %0"
6269 [(set_attr "type" "compare")])
6270
6271 (define_insn "*cmp_cc_xor_not"
6272 [(set (reg:CC 100)
6273 (compare:CC
6274 (not:SI (xor:SI (match_operand:SI 0 "reg_or_0_operand" "%rJ")
6275 (match_operand:SI 1 "arith_operand" "rI")))
6276 (const_int 0)))]
6277 ""
6278 "xnorcc\t%r0, %1, %%g0"
6279 [(set_attr "type" "compare")])
6280
6281 (define_insn "*cmp_ccx_xor_not"
6282 [(set (reg:CCX 100)
6283 (compare:CCX
6284 (not:DI (xor:DI (match_operand:DI 0 "reg_or_0_operand" "%rJ")
6285 (match_operand:DI 1 "arith_double_operand" "rHI")))
6286 (const_int 0)))]
6287 "TARGET_ARCH64"
6288 "xnorcc\t%r0, %1, %%g0"
6289 [(set_attr "type" "compare")])
6290
6291 (define_insn "*cmp_cc_xor_not_set"
6292 [(set (reg:CC 100)
6293 (compare:CC
6294 (not:SI (xor:SI (match_operand:SI 1 "reg_or_0_operand" "%rJ")
6295 (match_operand:SI 2 "arith_operand" "rI")))
6296 (const_int 0)))
6297 (set (match_operand:SI 0 "register_operand" "=r")
6298 (not:SI (xor:SI (match_dup 1) (match_dup 2))))]
6299 ""
6300 "xnorcc\t%r1, %2, %0"
6301 [(set_attr "type" "compare")])
6302
6303 (define_insn "*cmp_ccx_xor_not_set"
6304 [(set (reg:CCX 100)
6305 (compare:CCX
6306 (not:DI (xor:DI (match_operand:DI 1 "reg_or_0_operand" "%rJ")
6307 (match_operand:DI 2 "arith_double_operand" "rHI")))
6308 (const_int 0)))
6309 (set (match_operand:DI 0 "register_operand" "=r")
6310 (not:DI (xor:DI (match_dup 1) (match_dup 2))))]
6311 "TARGET_ARCH64"
6312 "xnorcc\t%r1, %2, %0"
6313 [(set_attr "type" "compare")])
6314
6315 (define_insn "*cmp_cc_arith_op_not"
6316 [(set (reg:CC 100)
6317 (compare:CC
6318 (match_operator:SI 2 "cc_arithopn"
6319 [(not:SI (match_operand:SI 0 "arith_operand" "rI"))
6320 (match_operand:SI 1 "reg_or_0_operand" "rJ")])
6321 (const_int 0)))]
6322 ""
6323 "%B2cc\t%r1, %0, %%g0"
6324 [(set_attr "type" "compare")])
6325
6326 (define_insn "*cmp_ccx_arith_op_not"
6327 [(set (reg:CCX 100)
6328 (compare:CCX
6329 (match_operator:DI 2 "cc_arithopn"
6330 [(not:DI (match_operand:DI 0 "arith_double_operand" "rHI"))
6331 (match_operand:DI 1 "reg_or_0_operand" "rJ")])
6332 (const_int 0)))]
6333 "TARGET_ARCH64"
6334 "%B2cc\t%r1, %0, %%g0"
6335 [(set_attr "type" "compare")])
6336
6337 (define_insn "*cmp_cc_arith_op_not_set"
6338 [(set (reg:CC 100)
6339 (compare:CC
6340 (match_operator:SI 3 "cc_arithopn"
6341 [(not:SI (match_operand:SI 1 "arith_operand" "rI"))
6342 (match_operand:SI 2 "reg_or_0_operand" "rJ")])
6343 (const_int 0)))
6344 (set (match_operand:SI 0 "register_operand" "=r")
6345 (match_operator:SI 4 "cc_arithopn"
6346 [(not:SI (match_dup 1)) (match_dup 2)]))]
6347 "GET_CODE (operands[3]) == GET_CODE (operands[4])"
6348 "%B3cc\t%r2, %1, %0"
6349 [(set_attr "type" "compare")])
6350
6351 (define_insn "*cmp_ccx_arith_op_not_set"
6352 [(set (reg:CCX 100)
6353 (compare:CCX
6354 (match_operator:DI 3 "cc_arithopn"
6355 [(not:DI (match_operand:DI 1 "arith_double_operand" "rHI"))
6356 (match_operand:DI 2 "reg_or_0_operand" "rJ")])
6357 (const_int 0)))
6358 (set (match_operand:DI 0 "register_operand" "=r")
6359 (match_operator:DI 4 "cc_arithopn"
6360 [(not:DI (match_dup 1)) (match_dup 2)]))]
6361 "TARGET_ARCH64 && GET_CODE (operands[3]) == GET_CODE (operands[4])"
6362 "%B3cc\t%r2, %1, %0"
6363 [(set_attr "type" "compare")])
6364
6365 ;; We cannot use the "neg" pseudo insn because the Sun assembler
6366 ;; does not know how to make it work for constants.
6367
6368 (define_expand "negdi2"
6369 [(set (match_operand:DI 0 "register_operand" "=r")
6370 (neg:DI (match_operand:DI 1 "register_operand" "r")))]
6371 ""
6372 {
6373 if (! TARGET_ARCH64)
6374 {
6375 emit_insn (gen_rtx_PARALLEL
6376 (VOIDmode,
6377 gen_rtvec (2,
6378 gen_rtx_SET (VOIDmode, operand0,
6379 gen_rtx_NEG (DImode, operand1)),
6380 gen_rtx_CLOBBER (VOIDmode,
6381 gen_rtx_REG (CCmode,
6382 SPARC_ICC_REG)))));
6383 DONE;
6384 }
6385 })
6386
6387 (define_insn_and_split "*negdi2_sp32"
6388 [(set (match_operand:DI 0 "register_operand" "=r")
6389 (neg:DI (match_operand:DI 1 "register_operand" "r")))
6390 (clobber (reg:CC 100))]
6391 "TARGET_ARCH32"
6392 "#"
6393 "&& reload_completed"
6394 [(parallel [(set (reg:CC_NOOV 100)
6395 (compare:CC_NOOV (minus:SI (const_int 0) (match_dup 5))
6396 (const_int 0)))
6397 (set (match_dup 4) (minus:SI (const_int 0) (match_dup 5)))])
6398 (set (match_dup 2) (minus:SI (minus:SI (const_int 0) (match_dup 3))
6399 (ltu:SI (reg:CC 100) (const_int 0))))]
6400 "operands[2] = gen_highpart (SImode, operands[0]);
6401 operands[3] = gen_highpart (SImode, operands[1]);
6402 operands[4] = gen_lowpart (SImode, operands[0]);
6403 operands[5] = gen_lowpart (SImode, operands[1]);"
6404 [(set_attr "length" "2")])
6405
6406 (define_insn "*negdi2_sp64"
6407 [(set (match_operand:DI 0 "register_operand" "=r")
6408 (neg:DI (match_operand:DI 1 "register_operand" "r")))]
6409 "TARGET_ARCH64"
6410 "sub\t%%g0, %1, %0")
6411
6412 (define_insn "negsi2"
6413 [(set (match_operand:SI 0 "register_operand" "=r")
6414 (neg:SI (match_operand:SI 1 "arith_operand" "rI")))]
6415 ""
6416 "sub\t%%g0, %1, %0")
6417
6418 (define_insn "*cmp_cc_neg"
6419 [(set (reg:CC_NOOV 100)
6420 (compare:CC_NOOV (neg:SI (match_operand:SI 0 "arith_operand" "rI"))
6421 (const_int 0)))]
6422 ""
6423 "subcc\t%%g0, %0, %%g0"
6424 [(set_attr "type" "compare")])
6425
6426 (define_insn "*cmp_ccx_neg"
6427 [(set (reg:CCX_NOOV 100)
6428 (compare:CCX_NOOV (neg:DI (match_operand:DI 0 "arith_double_operand" "rHI"))
6429 (const_int 0)))]
6430 "TARGET_ARCH64"
6431 "subcc\t%%g0, %0, %%g0"
6432 [(set_attr "type" "compare")])
6433
6434 (define_insn "*cmp_cc_set_neg"
6435 [(set (reg:CC_NOOV 100)
6436 (compare:CC_NOOV (neg:SI (match_operand:SI 1 "arith_operand" "rI"))
6437 (const_int 0)))
6438 (set (match_operand:SI 0 "register_operand" "=r")
6439 (neg:SI (match_dup 1)))]
6440 ""
6441 "subcc\t%%g0, %1, %0"
6442 [(set_attr "type" "compare")])
6443
6444 (define_insn "*cmp_ccx_set_neg"
6445 [(set (reg:CCX_NOOV 100)
6446 (compare:CCX_NOOV (neg:DI (match_operand:DI 1 "arith_double_operand" "rHI"))
6447 (const_int 0)))
6448 (set (match_operand:DI 0 "register_operand" "=r")
6449 (neg:DI (match_dup 1)))]
6450 "TARGET_ARCH64"
6451 "subcc\t%%g0, %1, %0"
6452 [(set_attr "type" "compare")])
6453
6454 ;; We cannot use the "not" pseudo insn because the Sun assembler
6455 ;; does not know how to make it work for constants.
6456 (define_expand "one_cmpldi2"
6457 [(set (match_operand:DI 0 "register_operand" "")
6458 (not:DI (match_operand:DI 1 "register_operand" "")))]
6459 ""
6460 "")
6461
6462 (define_insn_and_split "*one_cmpldi2_sp32"
6463 [(set (match_operand:DI 0 "register_operand" "=r,b")
6464 (not:DI (match_operand:DI 1 "register_operand" "r,b")))]
6465 "! TARGET_ARCH64"
6466 "@
6467 #
6468 fnot1\t%1, %0"
6469 "&& reload_completed
6470 && ((GET_CODE (operands[0]) == REG
6471 && REGNO (operands[0]) < 32)
6472 || (GET_CODE (operands[0]) == SUBREG
6473 && GET_CODE (SUBREG_REG (operands[0])) == REG
6474 && REGNO (SUBREG_REG (operands[0])) < 32))"
6475 [(set (match_dup 2) (not:SI (xor:SI (match_dup 3) (const_int 0))))
6476 (set (match_dup 4) (not:SI (xor:SI (match_dup 5) (const_int 0))))]
6477 "operands[2] = gen_highpart (SImode, operands[0]);
6478 operands[3] = gen_highpart (SImode, operands[1]);
6479 operands[4] = gen_lowpart (SImode, operands[0]);
6480 operands[5] = gen_lowpart (SImode, operands[1]);"
6481 [(set_attr "type" "*,fp")
6482 (set_attr "length" "2,*")
6483 (set_attr "fptype" "double")])
6484
6485 (define_insn "*one_cmpldi2_sp64"
6486 [(set (match_operand:DI 0 "register_operand" "=r,b")
6487 (not:DI (match_operand:DI 1 "arith_double_operand" "rHI,b")))]
6488 "TARGET_ARCH64"
6489 "@
6490 xnor\t%%g0, %1, %0
6491 fnot1\t%1, %0"
6492 [(set_attr "type" "*,fp")
6493 (set_attr "fptype" "double")])
6494
6495 (define_insn "one_cmplsi2"
6496 [(set (match_operand:SI 0 "register_operand" "=r,d")
6497 (not:SI (match_operand:SI 1 "arith_operand" "rI,d")))]
6498 ""
6499 "@
6500 xnor\t%%g0, %1, %0
6501 fnot1s\t%1, %0"
6502 [(set_attr "type" "*,fp")])
6503
6504 (define_insn "*cmp_cc_not"
6505 [(set (reg:CC 100)
6506 (compare:CC (not:SI (match_operand:SI 0 "arith_operand" "rI"))
6507 (const_int 0)))]
6508 ""
6509 "xnorcc\t%%g0, %0, %%g0"
6510 [(set_attr "type" "compare")])
6511
6512 (define_insn "*cmp_ccx_not"
6513 [(set (reg:CCX 100)
6514 (compare:CCX (not:DI (match_operand:DI 0 "arith_double_operand" "rHI"))
6515 (const_int 0)))]
6516 "TARGET_ARCH64"
6517 "xnorcc\t%%g0, %0, %%g0"
6518 [(set_attr "type" "compare")])
6519
6520 (define_insn "*cmp_cc_set_not"
6521 [(set (reg:CC 100)
6522 (compare:CC (not:SI (match_operand:SI 1 "arith_operand" "rI"))
6523 (const_int 0)))
6524 (set (match_operand:SI 0 "register_operand" "=r")
6525 (not:SI (match_dup 1)))]
6526 ""
6527 "xnorcc\t%%g0, %1, %0"
6528 [(set_attr "type" "compare")])
6529
6530 (define_insn "*cmp_ccx_set_not"
6531 [(set (reg:CCX 100)
6532 (compare:CCX (not:DI (match_operand:DI 1 "arith_double_operand" "rHI"))
6533 (const_int 0)))
6534 (set (match_operand:DI 0 "register_operand" "=r")
6535 (not:DI (match_dup 1)))]
6536 "TARGET_ARCH64"
6537 "xnorcc\t%%g0, %1, %0"
6538 [(set_attr "type" "compare")])
6539
6540 (define_insn "*cmp_cc_set"
6541 [(set (match_operand:SI 0 "register_operand" "=r")
6542 (match_operand:SI 1 "register_operand" "r"))
6543 (set (reg:CC 100)
6544 (compare:CC (match_dup 1)
6545 (const_int 0)))]
6546 ""
6547 "orcc\t%1, 0, %0"
6548 [(set_attr "type" "compare")])
6549
6550 (define_insn "*cmp_ccx_set64"
6551 [(set (match_operand:DI 0 "register_operand" "=r")
6552 (match_operand:DI 1 "register_operand" "r"))
6553 (set (reg:CCX 100)
6554 (compare:CCX (match_dup 1)
6555 (const_int 0)))]
6556 "TARGET_ARCH64"
6557 "orcc\t%1, 0, %0"
6558 [(set_attr "type" "compare")])
6559 \f
6560 ;; Floating point arithmetic instructions.
6561
6562 (define_expand "addtf3"
6563 [(set (match_operand:TF 0 "nonimmediate_operand" "")
6564 (plus:TF (match_operand:TF 1 "general_operand" "")
6565 (match_operand:TF 2 "general_operand" "")))]
6566 "TARGET_FPU && (TARGET_HARD_QUAD || TARGET_ARCH64)"
6567 "emit_tfmode_binop (PLUS, operands); DONE;")
6568
6569 (define_insn "*addtf3_hq"
6570 [(set (match_operand:TF 0 "register_operand" "=e")
6571 (plus:TF (match_operand:TF 1 "register_operand" "e")
6572 (match_operand:TF 2 "register_operand" "e")))]
6573 "TARGET_FPU && TARGET_HARD_QUAD"
6574 "faddq\t%1, %2, %0"
6575 [(set_attr "type" "fp")])
6576
6577 (define_insn "adddf3"
6578 [(set (match_operand:DF 0 "register_operand" "=e")
6579 (plus:DF (match_operand:DF 1 "register_operand" "e")
6580 (match_operand:DF 2 "register_operand" "e")))]
6581 "TARGET_FPU"
6582 "faddd\t%1, %2, %0"
6583 [(set_attr "type" "fp")
6584 (set_attr "fptype" "double")])
6585
6586 (define_insn "addsf3"
6587 [(set (match_operand:SF 0 "register_operand" "=f")
6588 (plus:SF (match_operand:SF 1 "register_operand" "f")
6589 (match_operand:SF 2 "register_operand" "f")))]
6590 "TARGET_FPU"
6591 "fadds\t%1, %2, %0"
6592 [(set_attr "type" "fp")])
6593
6594 (define_expand "subtf3"
6595 [(set (match_operand:TF 0 "nonimmediate_operand" "")
6596 (minus:TF (match_operand:TF 1 "general_operand" "")
6597 (match_operand:TF 2 "general_operand" "")))]
6598 "TARGET_FPU && (TARGET_HARD_QUAD || TARGET_ARCH64)"
6599 "emit_tfmode_binop (MINUS, operands); DONE;")
6600
6601 (define_insn "*subtf3_hq"
6602 [(set (match_operand:TF 0 "register_operand" "=e")
6603 (minus:TF (match_operand:TF 1 "register_operand" "e")
6604 (match_operand:TF 2 "register_operand" "e")))]
6605 "TARGET_FPU && TARGET_HARD_QUAD"
6606 "fsubq\t%1, %2, %0"
6607 [(set_attr "type" "fp")])
6608
6609 (define_insn "subdf3"
6610 [(set (match_operand:DF 0 "register_operand" "=e")
6611 (minus:DF (match_operand:DF 1 "register_operand" "e")
6612 (match_operand:DF 2 "register_operand" "e")))]
6613 "TARGET_FPU"
6614 "fsubd\t%1, %2, %0"
6615 [(set_attr "type" "fp")
6616 (set_attr "fptype" "double")])
6617
6618 (define_insn "subsf3"
6619 [(set (match_operand:SF 0 "register_operand" "=f")
6620 (minus:SF (match_operand:SF 1 "register_operand" "f")
6621 (match_operand:SF 2 "register_operand" "f")))]
6622 "TARGET_FPU"
6623 "fsubs\t%1, %2, %0"
6624 [(set_attr "type" "fp")])
6625
6626 (define_expand "multf3"
6627 [(set (match_operand:TF 0 "nonimmediate_operand" "")
6628 (mult:TF (match_operand:TF 1 "general_operand" "")
6629 (match_operand:TF 2 "general_operand" "")))]
6630 "TARGET_FPU && (TARGET_HARD_QUAD || TARGET_ARCH64)"
6631 "emit_tfmode_binop (MULT, operands); DONE;")
6632
6633 (define_insn "*multf3_hq"
6634 [(set (match_operand:TF 0 "register_operand" "=e")
6635 (mult:TF (match_operand:TF 1 "register_operand" "e")
6636 (match_operand:TF 2 "register_operand" "e")))]
6637 "TARGET_FPU && TARGET_HARD_QUAD"
6638 "fmulq\t%1, %2, %0"
6639 [(set_attr "type" "fpmul")])
6640
6641 (define_insn "muldf3"
6642 [(set (match_operand:DF 0 "register_operand" "=e")
6643 (mult:DF (match_operand:DF 1 "register_operand" "e")
6644 (match_operand:DF 2 "register_operand" "e")))]
6645 "TARGET_FPU"
6646 "fmuld\t%1, %2, %0"
6647 [(set_attr "type" "fpmul")
6648 (set_attr "fptype" "double")])
6649
6650 (define_insn "mulsf3"
6651 [(set (match_operand:SF 0 "register_operand" "=f")
6652 (mult:SF (match_operand:SF 1 "register_operand" "f")
6653 (match_operand:SF 2 "register_operand" "f")))]
6654 "TARGET_FPU"
6655 "fmuls\t%1, %2, %0"
6656 [(set_attr "type" "fpmul")])
6657
6658 (define_insn "*muldf3_extend"
6659 [(set (match_operand:DF 0 "register_operand" "=e")
6660 (mult:DF (float_extend:DF (match_operand:SF 1 "register_operand" "f"))
6661 (float_extend:DF (match_operand:SF 2 "register_operand" "f"))))]
6662 "(TARGET_V8 || TARGET_V9) && TARGET_FPU"
6663 "fsmuld\t%1, %2, %0"
6664 [(set_attr "type" "fpmul")
6665 (set_attr "fptype" "double")])
6666
6667 (define_insn "*multf3_extend"
6668 [(set (match_operand:TF 0 "register_operand" "=e")
6669 (mult:TF (float_extend:TF (match_operand:DF 1 "register_operand" "e"))
6670 (float_extend:TF (match_operand:DF 2 "register_operand" "e"))))]
6671 "(TARGET_V8 || TARGET_V9) && TARGET_FPU && TARGET_HARD_QUAD"
6672 "fdmulq\t%1, %2, %0"
6673 [(set_attr "type" "fpmul")])
6674
6675 (define_expand "divtf3"
6676 [(set (match_operand:TF 0 "nonimmediate_operand" "")
6677 (div:TF (match_operand:TF 1 "general_operand" "")
6678 (match_operand:TF 2 "general_operand" "")))]
6679 "TARGET_FPU && (TARGET_HARD_QUAD || TARGET_ARCH64)"
6680 "emit_tfmode_binop (DIV, operands); DONE;")
6681
6682 ;; don't have timing for quad-prec. divide.
6683 (define_insn "*divtf3_hq"
6684 [(set (match_operand:TF 0 "register_operand" "=e")
6685 (div:TF (match_operand:TF 1 "register_operand" "e")
6686 (match_operand:TF 2 "register_operand" "e")))]
6687 "TARGET_FPU && TARGET_HARD_QUAD"
6688 "fdivq\t%1, %2, %0"
6689 [(set_attr "type" "fpdivd")])
6690
6691 (define_insn "divdf3"
6692 [(set (match_operand:DF 0 "register_operand" "=e")
6693 (div:DF (match_operand:DF 1 "register_operand" "e")
6694 (match_operand:DF 2 "register_operand" "e")))]
6695 "TARGET_FPU"
6696 "fdivd\t%1, %2, %0"
6697 [(set_attr "type" "fpdivd")
6698 (set_attr "fptype" "double")])
6699
6700 (define_insn "divsf3"
6701 [(set (match_operand:SF 0 "register_operand" "=f")
6702 (div:SF (match_operand:SF 1 "register_operand" "f")
6703 (match_operand:SF 2 "register_operand" "f")))]
6704 "TARGET_FPU"
6705 "fdivs\t%1, %2, %0"
6706 [(set_attr "type" "fpdivs")])
6707
6708 (define_expand "negtf2"
6709 [(set (match_operand:TF 0 "register_operand" "=e,e")
6710 (neg:TF (match_operand:TF 1 "register_operand" "0,e")))]
6711 "TARGET_FPU"
6712 "")
6713
6714 (define_insn_and_split "*negtf2_notv9"
6715 [(set (match_operand:TF 0 "register_operand" "=e,e")
6716 (neg:TF (match_operand:TF 1 "register_operand" "0,e")))]
6717 ; We don't use quad float insns here so we don't need TARGET_HARD_QUAD.
6718 "TARGET_FPU
6719 && ! TARGET_V9"
6720 "@
6721 fnegs\t%0, %0
6722 #"
6723 "&& reload_completed
6724 && sparc_absnegfloat_split_legitimate (operands[0], operands[1])"
6725 [(set (match_dup 2) (neg:SF (match_dup 3)))
6726 (set (match_dup 4) (match_dup 5))
6727 (set (match_dup 6) (match_dup 7))]
6728 "operands[2] = gen_rtx_raw_REG (SFmode, REGNO (operands[0]));
6729 operands[3] = gen_rtx_raw_REG (SFmode, REGNO (operands[1]));
6730 operands[4] = gen_rtx_raw_REG (SFmode, REGNO (operands[0]) + 1);
6731 operands[5] = gen_rtx_raw_REG (SFmode, REGNO (operands[1]) + 1);
6732 operands[6] = gen_rtx_raw_REG (DFmode, REGNO (operands[0]) + 2);
6733 operands[7] = gen_rtx_raw_REG (DFmode, REGNO (operands[1]) + 2);"
6734 [(set_attr "type" "fpmove,*")
6735 (set_attr "length" "*,2")])
6736
6737 (define_insn_and_split "*negtf2_v9"
6738 [(set (match_operand:TF 0 "register_operand" "=e,e")
6739 (neg:TF (match_operand:TF 1 "register_operand" "0,e")))]
6740 ; We don't use quad float insns here so we don't need TARGET_HARD_QUAD.
6741 "TARGET_FPU && TARGET_V9"
6742 "@
6743 fnegd\t%0, %0
6744 #"
6745 "&& reload_completed
6746 && sparc_absnegfloat_split_legitimate (operands[0], operands[1])"
6747 [(set (match_dup 2) (neg:DF (match_dup 3)))
6748 (set (match_dup 4) (match_dup 5))]
6749 "operands[2] = gen_rtx_raw_REG (DFmode, REGNO (operands[0]));
6750 operands[3] = gen_rtx_raw_REG (DFmode, REGNO (operands[1]));
6751 operands[4] = gen_rtx_raw_REG (DFmode, REGNO (operands[0]) + 2);
6752 operands[5] = gen_rtx_raw_REG (DFmode, REGNO (operands[1]) + 2);"
6753 [(set_attr "type" "fpmove,*")
6754 (set_attr "length" "*,2")
6755 (set_attr "fptype" "double")])
6756
6757 (define_expand "negdf2"
6758 [(set (match_operand:DF 0 "register_operand" "")
6759 (neg:DF (match_operand:DF 1 "register_operand" "")))]
6760 "TARGET_FPU"
6761 "")
6762
6763 (define_insn_and_split "*negdf2_notv9"
6764 [(set (match_operand:DF 0 "register_operand" "=e,e")
6765 (neg:DF (match_operand:DF 1 "register_operand" "0,e")))]
6766 "TARGET_FPU && ! TARGET_V9"
6767 "@
6768 fnegs\t%0, %0
6769 #"
6770 "&& reload_completed
6771 && sparc_absnegfloat_split_legitimate (operands[0], operands[1])"
6772 [(set (match_dup 2) (neg:SF (match_dup 3)))
6773 (set (match_dup 4) (match_dup 5))]
6774 "operands[2] = gen_rtx_raw_REG (SFmode, REGNO (operands[0]));
6775 operands[3] = gen_rtx_raw_REG (SFmode, REGNO (operands[1]));
6776 operands[4] = gen_rtx_raw_REG (SFmode, REGNO (operands[0]) + 1);
6777 operands[5] = gen_rtx_raw_REG (SFmode, REGNO (operands[1]) + 1);"
6778 [(set_attr "type" "fpmove,*")
6779 (set_attr "length" "*,2")])
6780
6781 (define_insn "*negdf2_v9"
6782 [(set (match_operand:DF 0 "register_operand" "=e")
6783 (neg:DF (match_operand:DF 1 "register_operand" "e")))]
6784 "TARGET_FPU && TARGET_V9"
6785 "fnegd\t%1, %0"
6786 [(set_attr "type" "fpmove")
6787 (set_attr "fptype" "double")])
6788
6789 (define_insn "negsf2"
6790 [(set (match_operand:SF 0 "register_operand" "=f")
6791 (neg:SF (match_operand:SF 1 "register_operand" "f")))]
6792 "TARGET_FPU"
6793 "fnegs\t%1, %0"
6794 [(set_attr "type" "fpmove")])
6795
6796 (define_expand "abstf2"
6797 [(set (match_operand:TF 0 "register_operand" "")
6798 (abs:TF (match_operand:TF 1 "register_operand" "")))]
6799 "TARGET_FPU"
6800 "")
6801
6802 (define_insn_and_split "*abstf2_notv9"
6803 [(set (match_operand:TF 0 "register_operand" "=e,e")
6804 (abs:TF (match_operand:TF 1 "register_operand" "0,e")))]
6805 ; We don't use quad float insns here so we don't need TARGET_HARD_QUAD.
6806 "TARGET_FPU && ! TARGET_V9"
6807 "@
6808 fabss\t%0, %0
6809 #"
6810 "&& reload_completed
6811 && sparc_absnegfloat_split_legitimate (operands[0], operands[1])"
6812 [(set (match_dup 2) (abs:SF (match_dup 3)))
6813 (set (match_dup 4) (match_dup 5))
6814 (set (match_dup 6) (match_dup 7))]
6815 "operands[2] = gen_rtx_raw_REG (SFmode, REGNO (operands[0]));
6816 operands[3] = gen_rtx_raw_REG (SFmode, REGNO (operands[1]));
6817 operands[4] = gen_rtx_raw_REG (SFmode, REGNO (operands[0]) + 1);
6818 operands[5] = gen_rtx_raw_REG (SFmode, REGNO (operands[1]) + 1);
6819 operands[6] = gen_rtx_raw_REG (DFmode, REGNO (operands[0]) + 2);
6820 operands[7] = gen_rtx_raw_REG (DFmode, REGNO (operands[1]) + 2);"
6821 [(set_attr "type" "fpmove,*")
6822 (set_attr "length" "*,2")])
6823
6824 (define_insn "*abstf2_hq_v9"
6825 [(set (match_operand:TF 0 "register_operand" "=e,e")
6826 (abs:TF (match_operand:TF 1 "register_operand" "0,e")))]
6827 "TARGET_FPU && TARGET_V9 && TARGET_HARD_QUAD"
6828 "@
6829 fabsd\t%0, %0
6830 fabsq\t%1, %0"
6831 [(set_attr "type" "fpmove")
6832 (set_attr "fptype" "double,*")])
6833
6834 (define_insn_and_split "*abstf2_v9"
6835 [(set (match_operand:TF 0 "register_operand" "=e,e")
6836 (abs:TF (match_operand:TF 1 "register_operand" "0,e")))]
6837 "TARGET_FPU && TARGET_V9 && !TARGET_HARD_QUAD"
6838 "@
6839 fabsd\t%0, %0
6840 #"
6841 "&& reload_completed
6842 && sparc_absnegfloat_split_legitimate (operands[0], operands[1])"
6843 [(set (match_dup 2) (abs:DF (match_dup 3)))
6844 (set (match_dup 4) (match_dup 5))]
6845 "operands[2] = gen_rtx_raw_REG (DFmode, REGNO (operands[0]));
6846 operands[3] = gen_rtx_raw_REG (DFmode, REGNO (operands[1]));
6847 operands[4] = gen_rtx_raw_REG (DFmode, REGNO (operands[0]) + 2);
6848 operands[5] = gen_rtx_raw_REG (DFmode, REGNO (operands[1]) + 2);"
6849 [(set_attr "type" "fpmove,*")
6850 (set_attr "length" "*,2")
6851 (set_attr "fptype" "double,*")])
6852
6853 (define_expand "absdf2"
6854 [(set (match_operand:DF 0 "register_operand" "")
6855 (abs:DF (match_operand:DF 1 "register_operand" "")))]
6856 "TARGET_FPU"
6857 "")
6858
6859 (define_insn_and_split "*absdf2_notv9"
6860 [(set (match_operand:DF 0 "register_operand" "=e,e")
6861 (abs:DF (match_operand:DF 1 "register_operand" "0,e")))]
6862 "TARGET_FPU && ! TARGET_V9"
6863 "@
6864 fabss\t%0, %0
6865 #"
6866 "&& reload_completed
6867 && sparc_absnegfloat_split_legitimate (operands[0], operands[1])"
6868 [(set (match_dup 2) (abs:SF (match_dup 3)))
6869 (set (match_dup 4) (match_dup 5))]
6870 "operands[2] = gen_rtx_raw_REG (SFmode, REGNO (operands[0]));
6871 operands[3] = gen_rtx_raw_REG (SFmode, REGNO (operands[1]));
6872 operands[4] = gen_rtx_raw_REG (SFmode, REGNO (operands[0]) + 1);
6873 operands[5] = gen_rtx_raw_REG (SFmode, REGNO (operands[1]) + 1);"
6874 [(set_attr "type" "fpmove,*")
6875 (set_attr "length" "*,2")])
6876
6877 (define_insn "*absdf2_v9"
6878 [(set (match_operand:DF 0 "register_operand" "=e")
6879 (abs:DF (match_operand:DF 1 "register_operand" "e")))]
6880 "TARGET_FPU && TARGET_V9"
6881 "fabsd\t%1, %0"
6882 [(set_attr "type" "fpmove")
6883 (set_attr "fptype" "double")])
6884
6885 (define_insn "abssf2"
6886 [(set (match_operand:SF 0 "register_operand" "=f")
6887 (abs:SF (match_operand:SF 1 "register_operand" "f")))]
6888 "TARGET_FPU"
6889 "fabss\t%1, %0"
6890 [(set_attr "type" "fpmove")])
6891
6892 (define_expand "sqrttf2"
6893 [(set (match_operand:TF 0 "nonimmediate_operand" "")
6894 (sqrt:TF (match_operand:TF 1 "general_operand" "")))]
6895 "TARGET_FPU && (TARGET_HARD_QUAD || TARGET_ARCH64)"
6896 "emit_tfmode_unop (SQRT, operands); DONE;")
6897
6898 (define_insn "*sqrttf2_hq"
6899 [(set (match_operand:TF 0 "register_operand" "=e")
6900 (sqrt:TF (match_operand:TF 1 "register_operand" "e")))]
6901 "TARGET_FPU && TARGET_HARD_QUAD"
6902 "fsqrtq\t%1, %0"
6903 [(set_attr "type" "fpsqrtd")])
6904
6905 (define_insn "sqrtdf2"
6906 [(set (match_operand:DF 0 "register_operand" "=e")
6907 (sqrt:DF (match_operand:DF 1 "register_operand" "e")))]
6908 "TARGET_FPU"
6909 "fsqrtd\t%1, %0"
6910 [(set_attr "type" "fpsqrtd")
6911 (set_attr "fptype" "double")])
6912
6913 (define_insn "sqrtsf2"
6914 [(set (match_operand:SF 0 "register_operand" "=f")
6915 (sqrt:SF (match_operand:SF 1 "register_operand" "f")))]
6916 "TARGET_FPU"
6917 "fsqrts\t%1, %0"
6918 [(set_attr "type" "fpsqrts")])
6919 \f
6920 ;;- arithmetic shift instructions
6921
6922 (define_insn "ashlsi3"
6923 [(set (match_operand:SI 0 "register_operand" "=r")
6924 (ashift:SI (match_operand:SI 1 "register_operand" "r")
6925 (match_operand:SI 2 "arith_operand" "rI")))]
6926 ""
6927 {
6928 if (operands[2] == const1_rtx)
6929 return "add\t%1, %1, %0";
6930 return "sll\t%1, %2, %0";
6931 }
6932 [(set (attr "type")
6933 (if_then_else (match_operand 2 "const1_operand" "")
6934 (const_string "ialu") (const_string "shift")))])
6935
6936 (define_expand "ashldi3"
6937 [(set (match_operand:DI 0 "register_operand" "=r")
6938 (ashift:DI (match_operand:DI 1 "register_operand" "r")
6939 (match_operand:SI 2 "arith_operand" "rI")))]
6940 "TARGET_ARCH64 || TARGET_V8PLUS"
6941 {
6942 if (! TARGET_ARCH64)
6943 {
6944 if (GET_CODE (operands[2]) == CONST_INT)
6945 FAIL;
6946 emit_insn (gen_ashldi3_v8plus (operands[0], operands[1], operands[2]));
6947 DONE;
6948 }
6949 })
6950
6951 (define_insn "*ashldi3_sp64"
6952 [(set (match_operand:DI 0 "register_operand" "=r")
6953 (ashift:DI (match_operand:DI 1 "register_operand" "r")
6954 (match_operand:SI 2 "arith_operand" "rI")))]
6955 "TARGET_ARCH64"
6956 {
6957 if (operands[2] == const1_rtx)
6958 return "add\t%1, %1, %0";
6959 return "sllx\t%1, %2, %0";
6960 }
6961 [(set (attr "type")
6962 (if_then_else (match_operand 2 "const1_operand" "")
6963 (const_string "ialu") (const_string "shift")))])
6964
6965 ;; XXX UGH!
6966 (define_insn "ashldi3_v8plus"
6967 [(set (match_operand:DI 0 "register_operand" "=&h,&h,r")
6968 (ashift:DI (match_operand:DI 1 "arith_operand" "rI,0,rI")
6969 (match_operand:SI 2 "arith_operand" "rI,rI,rI")))
6970 (clobber (match_scratch:SI 3 "=X,X,&h"))]
6971 "TARGET_V8PLUS"
6972 { return sparc_v8plus_shift (operands, insn, "sllx"); }
6973 [(set_attr "type" "multi")
6974 (set_attr "length" "5,5,6")])
6975
6976 ;; Optimize (1LL<<x)-1
6977 ;; XXX this also needs to be fixed to handle equal subregs
6978 ;; XXX first before we could re-enable it.
6979 ;(define_insn ""
6980 ; [(set (match_operand:DI 0 "register_operand" "=h")
6981 ; (plus:DI (ashift:DI (const_int 1)
6982 ; (match_operand:SI 1 "arith_operand" "rI"))
6983 ; (const_int -1)))]
6984 ; "0 && TARGET_V8PLUS"
6985 ;{
6986 ; if (GET_CODE (operands[1]) == REG && REGNO (operands[1]) == REGNO (operands[0]))
6987 ; return "mov\t1, %L0\;sllx\t%L0, %1, %L0\;sub\t%L0, 1, %L0\;srlx\t%L0, 32, %H0";
6988 ; return "mov\t1, %H0\;sllx\t%H0, %1, %L0\;sub\t%L0, 1, %L0\;srlx\t%L0, 32, %H0";
6989 ;}
6990 ; [(set_attr "type" "multi")
6991 ; (set_attr "length" "4")])
6992
6993 (define_insn "*cmp_cc_ashift_1"
6994 [(set (reg:CC_NOOV 100)
6995 (compare:CC_NOOV (ashift:SI (match_operand:SI 0 "register_operand" "r")
6996 (const_int 1))
6997 (const_int 0)))]
6998 ""
6999 "addcc\t%0, %0, %%g0"
7000 [(set_attr "type" "compare")])
7001
7002 (define_insn "*cmp_cc_set_ashift_1"
7003 [(set (reg:CC_NOOV 100)
7004 (compare:CC_NOOV (ashift:SI (match_operand:SI 1 "register_operand" "r")
7005 (const_int 1))
7006 (const_int 0)))
7007 (set (match_operand:SI 0 "register_operand" "=r")
7008 (ashift:SI (match_dup 1) (const_int 1)))]
7009 ""
7010 "addcc\t%1, %1, %0"
7011 [(set_attr "type" "compare")])
7012
7013 (define_insn "ashrsi3"
7014 [(set (match_operand:SI 0 "register_operand" "=r")
7015 (ashiftrt:SI (match_operand:SI 1 "register_operand" "r")
7016 (match_operand:SI 2 "arith_operand" "rI")))]
7017 ""
7018 "sra\t%1, %2, %0"
7019 [(set_attr "type" "shift")])
7020
7021 (define_insn "*ashrsi3_extend"
7022 [(set (match_operand:DI 0 "register_operand" "=r")
7023 (sign_extend:DI (ashiftrt:SI (match_operand:SI 1 "register_operand" "r")
7024 (match_operand:SI 2 "arith_operand" "r"))))]
7025 "TARGET_ARCH64"
7026 "sra\t%1, %2, %0"
7027 [(set_attr "type" "shift")])
7028
7029 ;; This handles the case as above, but with constant shift instead of
7030 ;; register. Combiner "simplifies" it for us a little bit though.
7031 (define_insn "*ashrsi3_extend2"
7032 [(set (match_operand:DI 0 "register_operand" "=r")
7033 (ashiftrt:DI (ashift:DI (subreg:DI (match_operand:SI 1 "register_operand" "r") 0)
7034 (const_int 32))
7035 (match_operand:SI 2 "small_int_or_double" "n")))]
7036 "TARGET_ARCH64
7037 && ((GET_CODE (operands[2]) == CONST_INT
7038 && INTVAL (operands[2]) >= 32 && INTVAL (operands[2]) < 64)
7039 || (GET_CODE (operands[2]) == CONST_DOUBLE
7040 && !CONST_DOUBLE_HIGH (operands[2])
7041 && CONST_DOUBLE_LOW (operands[2]) >= 32
7042 && CONST_DOUBLE_LOW (operands[2]) < 64))"
7043 {
7044 operands[2] = GEN_INT (INTVAL (operands[2]) - 32);
7045
7046 return "sra\t%1, %2, %0";
7047 }
7048 [(set_attr "type" "shift")])
7049
7050 (define_expand "ashrdi3"
7051 [(set (match_operand:DI 0 "register_operand" "=r")
7052 (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
7053 (match_operand:SI 2 "arith_operand" "rI")))]
7054 "TARGET_ARCH64 || TARGET_V8PLUS"
7055 {
7056 if (! TARGET_ARCH64)
7057 {
7058 if (GET_CODE (operands[2]) == CONST_INT)
7059 FAIL; /* prefer generic code in this case */
7060 emit_insn (gen_ashrdi3_v8plus (operands[0], operands[1], operands[2]));
7061 DONE;
7062 }
7063 })
7064
7065 (define_insn ""
7066 [(set (match_operand:DI 0 "register_operand" "=r")
7067 (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
7068 (match_operand:SI 2 "arith_operand" "rI")))]
7069 "TARGET_ARCH64"
7070 "srax\t%1, %2, %0"
7071 [(set_attr "type" "shift")])
7072
7073 ;; XXX
7074 (define_insn "ashrdi3_v8plus"
7075 [(set (match_operand:DI 0 "register_operand" "=&h,&h,r")
7076 (ashiftrt:DI (match_operand:DI 1 "arith_operand" "rI,0,rI")
7077 (match_operand:SI 2 "arith_operand" "rI,rI,rI")))
7078 (clobber (match_scratch:SI 3 "=X,X,&h"))]
7079 "TARGET_V8PLUS"
7080 { return sparc_v8plus_shift (operands, insn, "srax"); }
7081 [(set_attr "type" "multi")
7082 (set_attr "length" "5,5,6")])
7083
7084 (define_insn "lshrsi3"
7085 [(set (match_operand:SI 0 "register_operand" "=r")
7086 (lshiftrt:SI (match_operand:SI 1 "register_operand" "r")
7087 (match_operand:SI 2 "arith_operand" "rI")))]
7088 ""
7089 "srl\t%1, %2, %0"
7090 [(set_attr "type" "shift")])
7091
7092 ;; This handles the case where
7093 ;; (zero_extend:DI (lshiftrt:SI (match_operand:SI) (match_operand:SI))),
7094 ;; but combiner "simplifies" it for us.
7095 (define_insn "*lshrsi3_extend"
7096 [(set (match_operand:DI 0 "register_operand" "=r")
7097 (and:DI (subreg:DI (lshiftrt:SI (match_operand:SI 1 "register_operand" "r")
7098 (match_operand:SI 2 "arith_operand" "r")) 0)
7099 (match_operand 3 "" "")))]
7100 "TARGET_ARCH64
7101 && ((GET_CODE (operands[3]) == CONST_DOUBLE
7102 && CONST_DOUBLE_HIGH (operands[3]) == 0
7103 && CONST_DOUBLE_LOW (operands[3]) == 0xffffffff)
7104 || (HOST_BITS_PER_WIDE_INT >= 64
7105 && GET_CODE (operands[3]) == CONST_INT
7106 && (unsigned HOST_WIDE_INT) INTVAL (operands[3]) == 0xffffffff))"
7107 "srl\t%1, %2, %0"
7108 [(set_attr "type" "shift")])
7109
7110 ;; This handles the case where
7111 ;; (lshiftrt:DI (zero_extend:DI (match_operand:SI)) (const_int >=0 < 32))
7112 ;; but combiner "simplifies" it for us.
7113 (define_insn "*lshrsi3_extend2"
7114 [(set (match_operand:DI 0 "register_operand" "=r")
7115 (zero_extract:DI (subreg:DI (match_operand:SI 1 "register_operand" "r") 0)
7116 (match_operand 2 "small_int_or_double" "n")
7117 (const_int 32)))]
7118 "TARGET_ARCH64
7119 && ((GET_CODE (operands[2]) == CONST_INT
7120 && (unsigned HOST_WIDE_INT) INTVAL (operands[2]) < 32)
7121 || (GET_CODE (operands[2]) == CONST_DOUBLE
7122 && CONST_DOUBLE_HIGH (operands[2]) == 0
7123 && (unsigned HOST_WIDE_INT) CONST_DOUBLE_LOW (operands[2]) < 32))"
7124 {
7125 operands[2] = GEN_INT (32 - INTVAL (operands[2]));
7126
7127 return "srl\t%1, %2, %0";
7128 }
7129 [(set_attr "type" "shift")])
7130
7131 (define_expand "lshrdi3"
7132 [(set (match_operand:DI 0 "register_operand" "=r")
7133 (lshiftrt:DI (match_operand:DI 1 "register_operand" "r")
7134 (match_operand:SI 2 "arith_operand" "rI")))]
7135 "TARGET_ARCH64 || TARGET_V8PLUS"
7136 {
7137 if (! TARGET_ARCH64)
7138 {
7139 if (GET_CODE (operands[2]) == CONST_INT)
7140 FAIL;
7141 emit_insn (gen_lshrdi3_v8plus (operands[0], operands[1], operands[2]));
7142 DONE;
7143 }
7144 })
7145
7146 (define_insn ""
7147 [(set (match_operand:DI 0 "register_operand" "=r")
7148 (lshiftrt:DI (match_operand:DI 1 "register_operand" "r")
7149 (match_operand:SI 2 "arith_operand" "rI")))]
7150 "TARGET_ARCH64"
7151 "srlx\t%1, %2, %0"
7152 [(set_attr "type" "shift")])
7153
7154 ;; XXX
7155 (define_insn "lshrdi3_v8plus"
7156 [(set (match_operand:DI 0 "register_operand" "=&h,&h,r")
7157 (lshiftrt:DI (match_operand:DI 1 "arith_operand" "rI,0,rI")
7158 (match_operand:SI 2 "arith_operand" "rI,rI,rI")))
7159 (clobber (match_scratch:SI 3 "=X,X,&h"))]
7160 "TARGET_V8PLUS"
7161 { return sparc_v8plus_shift (operands, insn, "srlx"); }
7162 [(set_attr "type" "multi")
7163 (set_attr "length" "5,5,6")])
7164
7165 (define_insn ""
7166 [(set (match_operand:SI 0 "register_operand" "=r")
7167 (ashiftrt:SI (subreg:SI (lshiftrt:DI (match_operand:DI 1 "register_operand" "r")
7168 (const_int 32)) 4)
7169 (match_operand:SI 2 "small_int_or_double" "n")))]
7170 "TARGET_ARCH64
7171 && ((GET_CODE (operands[2]) == CONST_INT
7172 && (unsigned HOST_WIDE_INT) INTVAL (operands[2]) < 32)
7173 || (GET_CODE (operands[2]) == CONST_DOUBLE
7174 && !CONST_DOUBLE_HIGH (operands[2])
7175 && (unsigned HOST_WIDE_INT) CONST_DOUBLE_LOW (operands[2]) < 32))"
7176 {
7177 operands[2] = GEN_INT (INTVAL (operands[2]) + 32);
7178
7179 return "srax\t%1, %2, %0";
7180 }
7181 [(set_attr "type" "shift")])
7182
7183 (define_insn ""
7184 [(set (match_operand:SI 0 "register_operand" "=r")
7185 (lshiftrt:SI (subreg:SI (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
7186 (const_int 32)) 4)
7187 (match_operand:SI 2 "small_int_or_double" "n")))]
7188 "TARGET_ARCH64
7189 && ((GET_CODE (operands[2]) == CONST_INT
7190 && (unsigned HOST_WIDE_INT) INTVAL (operands[2]) < 32)
7191 || (GET_CODE (operands[2]) == CONST_DOUBLE
7192 && !CONST_DOUBLE_HIGH (operands[2])
7193 && (unsigned HOST_WIDE_INT) CONST_DOUBLE_LOW (operands[2]) < 32))"
7194 {
7195 operands[2] = GEN_INT (INTVAL (operands[2]) + 32);
7196
7197 return "srlx\t%1, %2, %0";
7198 }
7199 [(set_attr "type" "shift")])
7200
7201 (define_insn ""
7202 [(set (match_operand:SI 0 "register_operand" "=r")
7203 (ashiftrt:SI (subreg:SI (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
7204 (match_operand:SI 2 "small_int_or_double" "n")) 4)
7205 (match_operand:SI 3 "small_int_or_double" "n")))]
7206 "TARGET_ARCH64
7207 && GET_CODE (operands[2]) == CONST_INT && GET_CODE (operands[3]) == CONST_INT
7208 && (unsigned HOST_WIDE_INT) INTVAL (operands[2]) >= 32
7209 && (unsigned HOST_WIDE_INT) INTVAL (operands[3]) < 32
7210 && (unsigned HOST_WIDE_INT) (INTVAL (operands[2]) + INTVAL (operands[3])) < 64"
7211 {
7212 operands[2] = GEN_INT (INTVAL (operands[2]) + INTVAL (operands[3]));
7213
7214 return "srax\t%1, %2, %0";
7215 }
7216 [(set_attr "type" "shift")])
7217
7218 (define_insn ""
7219 [(set (match_operand:SI 0 "register_operand" "=r")
7220 (lshiftrt:SI (subreg:SI (lshiftrt:DI (match_operand:DI 1 "register_operand" "r")
7221 (match_operand:SI 2 "small_int_or_double" "n")) 4)
7222 (match_operand:SI 3 "small_int_or_double" "n")))]
7223 "TARGET_ARCH64
7224 && GET_CODE (operands[2]) == CONST_INT && GET_CODE (operands[3]) == CONST_INT
7225 && (unsigned HOST_WIDE_INT) INTVAL (operands[2]) >= 32
7226 && (unsigned HOST_WIDE_INT) INTVAL (operands[3]) < 32
7227 && (unsigned HOST_WIDE_INT) (INTVAL (operands[2]) + INTVAL (operands[3])) < 64"
7228 {
7229 operands[2] = GEN_INT (INTVAL (operands[2]) + INTVAL (operands[3]));
7230
7231 return "srlx\t%1, %2, %0";
7232 }
7233 [(set_attr "type" "shift")])
7234 \f
7235 ;; Unconditional and other jump instructions
7236 ;; On the SPARC, by setting the annul bit on an unconditional branch, the
7237 ;; following insn is never executed. This saves us a nop. Dbx does not
7238 ;; handle such branches though, so we only use them when optimizing.
7239 (define_insn "jump"
7240 [(set (pc) (label_ref (match_operand 0 "" "")))]
7241 ""
7242 {
7243 /* TurboSPARC is reported to have problems with
7244 with
7245 foo: b,a foo
7246 i.e. an empty loop with the annul bit set. The workaround is to use
7247 foo: b foo; nop
7248 instead. */
7249
7250 if (! TARGET_V9 && flag_delayed_branch
7251 && (INSN_ADDRESSES (INSN_UID (operands[0]))
7252 == INSN_ADDRESSES (INSN_UID (insn))))
7253 return "b\t%l0%#";
7254 else
7255 return TARGET_V9 ? "ba%*,pt\t%%xcc, %l0%(" : "b%*\t%l0%(";
7256 }
7257 [(set_attr "type" "uncond_branch")])
7258
7259 (define_expand "tablejump"
7260 [(parallel [(set (pc) (match_operand 0 "register_operand" "r"))
7261 (use (label_ref (match_operand 1 "" "")))])]
7262 ""
7263 {
7264 if (GET_MODE (operands[0]) != CASE_VECTOR_MODE)
7265 abort ();
7266
7267 /* In pic mode, our address differences are against the base of the
7268 table. Add that base value back in; CSE ought to be able to combine
7269 the two address loads. */
7270 if (flag_pic)
7271 {
7272 rtx tmp, tmp2;
7273 tmp = gen_rtx_LABEL_REF (Pmode, operands[1]);
7274 tmp2 = operands[0];
7275 if (CASE_VECTOR_MODE != Pmode)
7276 tmp2 = gen_rtx_SIGN_EXTEND (Pmode, tmp2);
7277 tmp = gen_rtx_PLUS (Pmode, tmp2, tmp);
7278 operands[0] = memory_address (Pmode, tmp);
7279 }
7280 })
7281
7282 (define_insn "*tablejump_sp32"
7283 [(set (pc) (match_operand:SI 0 "address_operand" "p"))
7284 (use (label_ref (match_operand 1 "" "")))]
7285 "! TARGET_ARCH64"
7286 "jmp\t%a0%#"
7287 [(set_attr "type" "uncond_branch")])
7288
7289 (define_insn "*tablejump_sp64"
7290 [(set (pc) (match_operand:DI 0 "address_operand" "p"))
7291 (use (label_ref (match_operand 1 "" "")))]
7292 "TARGET_ARCH64"
7293 "jmp\t%a0%#"
7294 [(set_attr "type" "uncond_branch")])
7295
7296 ;; This pattern recognizes the "instruction" that appears in
7297 ;; a function call that wants a structure value,
7298 ;; to inform the called function if compiled with Sun CC.
7299 ;(define_insn "*unimp_insn"
7300 ; [(match_operand:SI 0 "immediate_operand" "")]
7301 ; "GET_CODE (operands[0]) == CONST_INT && INTVAL (operands[0]) > 0"
7302 ; "unimp\t%0"
7303 ; [(set_attr "type" "marker")])
7304
7305 ;;- jump to subroutine
7306 (define_expand "call"
7307 ;; Note that this expression is not used for generating RTL.
7308 ;; All the RTL is generated explicitly below.
7309 [(call (match_operand 0 "call_operand" "")
7310 (match_operand 3 "" "i"))]
7311 ;; operands[2] is next_arg_register
7312 ;; operands[3] is struct_value_size_rtx.
7313 ""
7314 {
7315 rtx fn_rtx, nregs_rtx;
7316
7317 if (GET_MODE (operands[0]) != FUNCTION_MODE)
7318 abort ();
7319
7320 if (GET_CODE (XEXP (operands[0], 0)) == LABEL_REF)
7321 {
7322 /* This is really a PIC sequence. We want to represent
7323 it as a funny jump so its delay slots can be filled.
7324
7325 ??? But if this really *is* a CALL, will not it clobber the
7326 call-clobbered registers? We lose this if it is a JUMP_INSN.
7327 Why cannot we have delay slots filled if it were a CALL? */
7328
7329 if (! TARGET_ARCH64 && INTVAL (operands[3]) != 0)
7330 emit_jump_insn
7331 (gen_rtx_PARALLEL
7332 (VOIDmode,
7333 gen_rtvec (3,
7334 gen_rtx_SET (VOIDmode, pc_rtx, XEXP (operands[0], 0)),
7335 operands[3],
7336 gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, 15)))));
7337 else
7338 emit_jump_insn
7339 (gen_rtx_PARALLEL
7340 (VOIDmode,
7341 gen_rtvec (2,
7342 gen_rtx_SET (VOIDmode, pc_rtx, XEXP (operands[0], 0)),
7343 gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, 15)))));
7344 goto finish_call;
7345 }
7346
7347 fn_rtx = operands[0];
7348
7349 /* Count the number of parameter registers being used by this call.
7350 if that argument is NULL, it means we are using them all, which
7351 means 6 on the sparc. */
7352 #if 0
7353 if (operands[2])
7354 nregs_rtx = GEN_INT (REGNO (operands[2]) - 8);
7355 else
7356 nregs_rtx = GEN_INT (6);
7357 #else
7358 nregs_rtx = const0_rtx;
7359 #endif
7360
7361 if (! TARGET_ARCH64 && INTVAL (operands[3]) != 0)
7362 emit_call_insn
7363 (gen_rtx_PARALLEL
7364 (VOIDmode,
7365 gen_rtvec (3, gen_rtx_CALL (VOIDmode, fn_rtx, nregs_rtx),
7366 operands[3],
7367 gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, 15)))));
7368 else
7369 emit_call_insn
7370 (gen_rtx_PARALLEL
7371 (VOIDmode,
7372 gen_rtvec (2, gen_rtx_CALL (VOIDmode, fn_rtx, nregs_rtx),
7373 gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, 15)))));
7374
7375 finish_call:
7376 #if 0
7377 /* If this call wants a structure value,
7378 emit an unimp insn to let the called function know about this. */
7379 if (! TARGET_ARCH64 && INTVAL (operands[3]) > 0)
7380 {
7381 rtx insn = emit_insn (operands[3]);
7382 SCHED_GROUP_P (insn) = 1;
7383 }
7384 #endif
7385
7386 DONE;
7387 })
7388
7389 ;; We can't use the same pattern for these two insns, because then registers
7390 ;; in the address may not be properly reloaded.
7391
7392 (define_insn "*call_address_sp32"
7393 [(call (mem:SI (match_operand:SI 0 "address_operand" "p"))
7394 (match_operand 1 "" ""))
7395 (clobber (reg:SI 15))]
7396 ;;- Do not use operand 1 for most machines.
7397 "! TARGET_ARCH64"
7398 "call\t%a0, %1%#"
7399 [(set_attr "type" "call")])
7400
7401 (define_insn "*call_symbolic_sp32"
7402 [(call (mem:SI (match_operand:SI 0 "symbolic_operand" "s"))
7403 (match_operand 1 "" ""))
7404 (clobber (reg:SI 15))]
7405 ;;- Do not use operand 1 for most machines.
7406 "! TARGET_ARCH64"
7407 "call\t%a0, %1%#"
7408 [(set_attr "type" "call")])
7409
7410 (define_insn "*call_address_sp64"
7411 [(call (mem:DI (match_operand:DI 0 "address_operand" "p"))
7412 (match_operand 1 "" ""))
7413 (clobber (reg:DI 15))]
7414 ;;- Do not use operand 1 for most machines.
7415 "TARGET_ARCH64"
7416 "call\t%a0, %1%#"
7417 [(set_attr "type" "call")])
7418
7419 (define_insn "*call_symbolic_sp64"
7420 [(call (mem:DI (match_operand:DI 0 "symbolic_operand" "s"))
7421 (match_operand 1 "" ""))
7422 (clobber (reg:DI 15))]
7423 ;;- Do not use operand 1 for most machines.
7424 "TARGET_ARCH64"
7425 "call\t%a0, %1%#"
7426 [(set_attr "type" "call")])
7427
7428 ;; This is a call that wants a structure value.
7429 ;; There is no such critter for v9 (??? we may need one anyway).
7430 (define_insn "*call_address_struct_value_sp32"
7431 [(call (mem:SI (match_operand:SI 0 "address_operand" "p"))
7432 (match_operand 1 "" ""))
7433 (match_operand 2 "immediate_operand" "")
7434 (clobber (reg:SI 15))]
7435 ;;- Do not use operand 1 for most machines.
7436 "! TARGET_ARCH64 && GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) >= 0"
7437 "call\t%a0, %1\n\tnop\n\tunimp\t%2"
7438 [(set_attr "type" "call_no_delay_slot")
7439 (set_attr "length" "3")])
7440
7441 ;; This is a call that wants a structure value.
7442 ;; There is no such critter for v9 (??? we may need one anyway).
7443 (define_insn "*call_symbolic_struct_value_sp32"
7444 [(call (mem:SI (match_operand:SI 0 "symbolic_operand" "s"))
7445 (match_operand 1 "" ""))
7446 (match_operand 2 "immediate_operand" "")
7447 (clobber (reg:SI 15))]
7448 ;;- Do not use operand 1 for most machines.
7449 "! TARGET_ARCH64 && GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) >= 0"
7450 "call\t%a0, %1\n\tnop\n\tunimp\t%2"
7451 [(set_attr "type" "call_no_delay_slot")
7452 (set_attr "length" "3")])
7453
7454 ;; This is a call that may want a structure value. This is used for
7455 ;; untyped_calls.
7456 (define_insn "*call_address_untyped_struct_value_sp32"
7457 [(call (mem:SI (match_operand:SI 0 "address_operand" "p"))
7458 (match_operand 1 "" ""))
7459 (match_operand 2 "immediate_operand" "")
7460 (clobber (reg:SI 15))]
7461 ;;- Do not use operand 1 for most machines.
7462 "! TARGET_ARCH64 && GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) < 0"
7463 "call\t%a0, %1\n\tnop\n\tnop"
7464 [(set_attr "type" "call_no_delay_slot")
7465 (set_attr "length" "3")])
7466
7467 ;; This is a call that wants a structure value.
7468 (define_insn "*call_symbolic_untyped_struct_value_sp32"
7469 [(call (mem:SI (match_operand:SI 0 "symbolic_operand" "s"))
7470 (match_operand 1 "" ""))
7471 (match_operand 2 "immediate_operand" "")
7472 (clobber (reg:SI 15))]
7473 ;;- Do not use operand 1 for most machines.
7474 "! TARGET_ARCH64 && GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) < 0"
7475 "call\t%a0, %1\n\tnop\n\tnop"
7476 [(set_attr "type" "call_no_delay_slot")
7477 (set_attr "length" "3")])
7478
7479 (define_expand "call_value"
7480 ;; Note that this expression is not used for generating RTL.
7481 ;; All the RTL is generated explicitly below.
7482 [(set (match_operand 0 "register_operand" "=rf")
7483 (call (match_operand 1 "" "")
7484 (match_operand 4 "" "")))]
7485 ;; operand 2 is stack_size_rtx
7486 ;; operand 3 is next_arg_register
7487 ""
7488 {
7489 rtx fn_rtx, nregs_rtx;
7490 rtvec vec;
7491
7492 if (GET_MODE (operands[1]) != FUNCTION_MODE)
7493 abort ();
7494
7495 fn_rtx = operands[1];
7496
7497 #if 0
7498 if (operands[3])
7499 nregs_rtx = GEN_INT (REGNO (operands[3]) - 8);
7500 else
7501 nregs_rtx = GEN_INT (6);
7502 #else
7503 nregs_rtx = const0_rtx;
7504 #endif
7505
7506 vec = gen_rtvec (2,
7507 gen_rtx_SET (VOIDmode, operands[0],
7508 gen_rtx_CALL (VOIDmode, fn_rtx, nregs_rtx)),
7509 gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, 15)));
7510
7511 emit_call_insn (gen_rtx_PARALLEL (VOIDmode, vec));
7512
7513 DONE;
7514 })
7515
7516 (define_insn "*call_value_address_sp32"
7517 [(set (match_operand 0 "" "=rf")
7518 (call (mem:SI (match_operand:SI 1 "address_operand" "p"))
7519 (match_operand 2 "" "")))
7520 (clobber (reg:SI 15))]
7521 ;;- Do not use operand 2 for most machines.
7522 "! TARGET_ARCH64"
7523 "call\t%a1, %2%#"
7524 [(set_attr "type" "call")])
7525
7526 (define_insn "*call_value_symbolic_sp32"
7527 [(set (match_operand 0 "" "=rf")
7528 (call (mem:SI (match_operand:SI 1 "symbolic_operand" "s"))
7529 (match_operand 2 "" "")))
7530 (clobber (reg:SI 15))]
7531 ;;- Do not use operand 2 for most machines.
7532 "! TARGET_ARCH64"
7533 "call\t%a1, %2%#"
7534 [(set_attr "type" "call")])
7535
7536 (define_insn "*call_value_address_sp64"
7537 [(set (match_operand 0 "" "")
7538 (call (mem:DI (match_operand:DI 1 "address_operand" "p"))
7539 (match_operand 2 "" "")))
7540 (clobber (reg:DI 15))]
7541 ;;- Do not use operand 2 for most machines.
7542 "TARGET_ARCH64"
7543 "call\t%a1, %2%#"
7544 [(set_attr "type" "call")])
7545
7546 (define_insn "*call_value_symbolic_sp64"
7547 [(set (match_operand 0 "" "")
7548 (call (mem:DI (match_operand:DI 1 "symbolic_operand" "s"))
7549 (match_operand 2 "" "")))
7550 (clobber (reg:DI 15))]
7551 ;;- Do not use operand 2 for most machines.
7552 "TARGET_ARCH64"
7553 "call\t%a1, %2%#"
7554 [(set_attr "type" "call")])
7555
7556 (define_expand "untyped_call"
7557 [(parallel [(call (match_operand 0 "" "")
7558 (const_int 0))
7559 (match_operand 1 "" "")
7560 (match_operand 2 "" "")])]
7561 ""
7562 {
7563 int i;
7564
7565 /* Pass constm1 to indicate that it may expect a structure value, but
7566 we don't know what size it is. */
7567 emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, constm1_rtx));
7568
7569 for (i = 0; i < XVECLEN (operands[2], 0); i++)
7570 {
7571 rtx set = XVECEXP (operands[2], 0, i);
7572 emit_move_insn (SET_DEST (set), SET_SRC (set));
7573 }
7574
7575 /* The optimizer does not know that the call sets the function value
7576 registers we stored in the result block. We avoid problems by
7577 claiming that all hard registers are used and clobbered at this
7578 point. */
7579 emit_insn (gen_blockage ());
7580
7581 DONE;
7582 })
7583
7584 ;;- tail calls
7585 (define_expand "sibcall"
7586 [(parallel [(call (match_operand 0 "call_operand" "") (const_int 0))
7587 (return)])]
7588 ""
7589 "")
7590
7591 (define_insn "*sibcall_symbolic_sp32"
7592 [(call (mem:SI (match_operand:SI 0 "symbolic_operand" "s"))
7593 (match_operand 1 "" ""))
7594 (return)]
7595 "! TARGET_ARCH64"
7596 "* return output_sibcall(insn, operands[0]);"
7597 [(set_attr "type" "sibcall")])
7598
7599 (define_insn "*sibcall_symbolic_sp64"
7600 [(call (mem:DI (match_operand:DI 0 "symbolic_operand" "s"))
7601 (match_operand 1 "" ""))
7602 (return)]
7603 "TARGET_ARCH64"
7604 "* return output_sibcall(insn, operands[0]);"
7605 [(set_attr "type" "sibcall")])
7606
7607 (define_expand "sibcall_value"
7608 [(parallel [(set (match_operand 0 "register_operand" "=rf")
7609 (call (match_operand 1 "" "") (const_int 0)))
7610 (return)])]
7611 ""
7612 "")
7613
7614 (define_insn "*sibcall_value_symbolic_sp32"
7615 [(set (match_operand 0 "" "=rf")
7616 (call (mem:SI (match_operand:SI 1 "symbolic_operand" "s"))
7617 (match_operand 2 "" "")))
7618 (return)]
7619 "! TARGET_ARCH64"
7620 "* return output_sibcall(insn, operands[1]);"
7621 [(set_attr "type" "sibcall")])
7622
7623 (define_insn "*sibcall_value_symbolic_sp64"
7624 [(set (match_operand 0 "" "")
7625 (call (mem:DI (match_operand:DI 1 "symbolic_operand" "s"))
7626 (match_operand 2 "" "")))
7627 (return)]
7628 "TARGET_ARCH64"
7629 "* return output_sibcall(insn, operands[1]);"
7630 [(set_attr "type" "sibcall")])
7631
7632 (define_expand "sibcall_epilogue"
7633 [(const_int 0)]
7634 ""
7635 "DONE;")
7636
7637 ;; UNSPEC_VOLATILE is considered to use and clobber all hard registers and
7638 ;; all of memory. This blocks insns from being moved across this point.
7639
7640 (define_insn "blockage"
7641 [(unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)]
7642 ""
7643 ""
7644 [(set_attr "length" "0")])
7645
7646 ;; Prepare to return any type including a structure value.
7647
7648 (define_expand "untyped_return"
7649 [(match_operand:BLK 0 "memory_operand" "")
7650 (match_operand 1 "" "")]
7651 ""
7652 {
7653 rtx valreg1 = gen_rtx_REG (DImode, 24);
7654 rtx valreg2 = gen_rtx_REG (TARGET_ARCH64 ? TFmode : DFmode, 32);
7655 rtx result = operands[0];
7656
7657 if (! TARGET_ARCH64)
7658 {
7659 rtx rtnreg = gen_rtx_REG (SImode, (current_function_uses_only_leaf_regs
7660 ? 15 : 31));
7661 rtx value = gen_reg_rtx (SImode);
7662
7663 /* Fetch the instruction where we will return to and see if it's an unimp
7664 instruction (the most significant 10 bits will be zero). If so,
7665 update the return address to skip the unimp instruction. */
7666 emit_move_insn (value,
7667 gen_rtx_MEM (SImode, plus_constant (rtnreg, 8)));
7668 emit_insn (gen_lshrsi3 (value, value, GEN_INT (22)));
7669 emit_insn (gen_update_return (rtnreg, value));
7670 }
7671
7672 /* Reload the function value registers. */
7673 emit_move_insn (valreg1, adjust_address (result, DImode, 0));
7674 emit_move_insn (valreg2,
7675 adjust_address (result, TARGET_ARCH64 ? TFmode : DFmode, 8));
7676
7677 /* Put USE insns before the return. */
7678 emit_insn (gen_rtx_USE (VOIDmode, valreg1));
7679 emit_insn (gen_rtx_USE (VOIDmode, valreg2));
7680
7681 /* Construct the return. */
7682 expand_null_return ();
7683
7684 DONE;
7685 })
7686
7687 ;; This is a bit of a hack. We're incrementing a fixed register (%i7),
7688 ;; and parts of the compiler don't want to believe that the add is needed.
7689
7690 (define_insn "update_return"
7691 [(unspec:SI [(match_operand:SI 0 "register_operand" "r")
7692 (match_operand:SI 1 "register_operand" "r")] UNSPEC_UPDATE_RETURN)]
7693 "! TARGET_ARCH64"
7694 "cmp\t%1, 0\;be,a\t.+8\;add\t%0, 4, %0"
7695 [(set_attr "type" "multi")
7696 (set_attr "length" "3")])
7697 \f
7698 (define_insn "nop"
7699 [(const_int 0)]
7700 ""
7701 "nop")
7702
7703 (define_expand "indirect_jump"
7704 [(set (pc) (match_operand 0 "address_operand" "p"))]
7705 ""
7706 "")
7707
7708 (define_insn "*branch_sp32"
7709 [(set (pc) (match_operand:SI 0 "address_operand" "p"))]
7710 "! TARGET_ARCH64"
7711 "jmp\t%a0%#"
7712 [(set_attr "type" "uncond_branch")])
7713
7714 (define_insn "*branch_sp64"
7715 [(set (pc) (match_operand:DI 0 "address_operand" "p"))]
7716 "TARGET_ARCH64"
7717 "jmp\t%a0%#"
7718 [(set_attr "type" "uncond_branch")])
7719
7720 ;; ??? Doesn't work with -mflat.
7721 (define_expand "nonlocal_goto"
7722 [(match_operand:SI 0 "general_operand" "")
7723 (match_operand:SI 1 "general_operand" "")
7724 (match_operand:SI 2 "general_operand" "")
7725 (match_operand:SI 3 "" "")]
7726 ""
7727 {
7728 #if 0
7729 rtx chain = operands[0];
7730 #endif
7731 rtx lab = operands[1];
7732 rtx stack = operands[2];
7733 rtx fp = operands[3];
7734 rtx labreg;
7735
7736 /* Trap instruction to flush all the register windows. */
7737 emit_insn (gen_flush_register_windows ());
7738
7739 /* Load the fp value for the containing fn into %fp. This is needed
7740 because STACK refers to %fp. Note that virtual register instantiation
7741 fails if the virtual %fp isn't set from a register. */
7742 if (GET_CODE (fp) != REG)
7743 fp = force_reg (Pmode, fp);
7744 emit_move_insn (virtual_stack_vars_rtx, fp);
7745
7746 /* Find the containing function's current nonlocal goto handler,
7747 which will do any cleanups and then jump to the label. */
7748 labreg = gen_rtx_REG (Pmode, 8);
7749 emit_move_insn (labreg, lab);
7750
7751 /* Restore %fp from stack pointer value for containing function.
7752 The restore insn that follows will move this to %sp,
7753 and reload the appropriate value into %fp. */
7754 emit_move_insn (hard_frame_pointer_rtx, stack);
7755
7756 /* USE of frame_pointer_rtx added for consistency; not clear if
7757 really needed. */
7758 /*emit_insn (gen_rtx_USE (VOIDmode, frame_pointer_rtx));*/
7759 emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
7760
7761 #if 0
7762 /* Return, restoring reg window and jumping to goto handler. */
7763 if (TARGET_V9 && GET_CODE (chain) == CONST_INT
7764 && ! (INTVAL (chain) & ~(HOST_WIDE_INT)0xffffffff))
7765 {
7766 emit_jump_insn (gen_goto_handler_and_restore_v9 (labreg,
7767 static_chain_rtx,
7768 chain));
7769 emit_barrier ();
7770 DONE;
7771 }
7772 /* Put in the static chain register the nonlocal label address. */
7773 emit_move_insn (static_chain_rtx, chain);
7774 #endif
7775
7776 emit_insn (gen_rtx_USE (VOIDmode, static_chain_rtx));
7777 emit_jump_insn (gen_goto_handler_and_restore (labreg));
7778 emit_barrier ();
7779 DONE;
7780 })
7781
7782 ;; Special trap insn to flush register windows.
7783 (define_insn "flush_register_windows"
7784 [(unspec_volatile [(const_int 0)] UNSPECV_FLUSHW)]
7785 ""
7786 { return TARGET_V9 ? "flushw" : "ta\t3"; }
7787 [(set_attr "type" "flushw")])
7788
7789 (define_insn "goto_handler_and_restore"
7790 [(unspec_volatile [(match_operand 0 "register_operand" "=r")] UNSPECV_GOTO)]
7791 "GET_MODE (operands[0]) == Pmode"
7792 "jmp\t%0+0\n\trestore"
7793 [(set_attr "type" "multi")
7794 (set_attr "length" "2")])
7795
7796 ;;(define_insn "goto_handler_and_restore_v9"
7797 ;; [(unspec_volatile [(match_operand:SI 0 "register_operand" "=r,r")
7798 ;; (match_operand:SI 1 "register_operand" "=r,r")
7799 ;; (match_operand:SI 2 "const_int_operand" "I,n")] UNSPECV_GOTO_V9)]
7800 ;; "TARGET_V9 && ! TARGET_ARCH64"
7801 ;; "@
7802 ;; return\t%0+0\n\tmov\t%2, %Y1
7803 ;; sethi\t%%hi(%2), %1\n\treturn\t%0+0\n\tor\t%Y1, %%lo(%2), %Y1"
7804 ;; [(set_attr "type" "multi")
7805 ;; (set_attr "length" "2,3")])
7806 ;;
7807 ;;(define_insn "*goto_handler_and_restore_v9_sp64"
7808 ;; [(unspec_volatile [(match_operand:DI 0 "register_operand" "=r,r")
7809 ;; (match_operand:DI 1 "register_operand" "=r,r")
7810 ;; (match_operand:SI 2 "const_int_operand" "I,n")] UNSPECV_GOTO_V9)]
7811 ;; "TARGET_V9 && TARGET_ARCH64"
7812 ;; "@
7813 ;; return\t%0+0\n\tmov\t%2, %Y1
7814 ;; sethi\t%%hi(%2), %1\n\treturn\t%0+0\n\tor\t%Y1, %%lo(%2), %Y1"
7815 ;; [(set_attr "type" "multi")
7816 ;; (set_attr "length" "2,3")])
7817
7818 ;; For __builtin_setjmp we need to flush register windows iff the function
7819 ;; calls alloca as well, because otherwise the register window might be
7820 ;; saved after %sp adjustement and thus setjmp would crash
7821 (define_expand "builtin_setjmp_setup"
7822 [(match_operand 0 "register_operand" "r")]
7823 ""
7824 {
7825 emit_insn (gen_do_builtin_setjmp_setup ());
7826 DONE;
7827 })
7828
7829 (define_insn "do_builtin_setjmp_setup"
7830 [(unspec_volatile [(const_int 0)] UNSPECV_SETJMP)]
7831 ""
7832 {
7833 if (! current_function_calls_alloca)
7834 return "";
7835 if (! TARGET_V9 || TARGET_FLAT)
7836 return "\tta\t3\n";
7837 fputs ("\tflushw\n", asm_out_file);
7838 if (flag_pic)
7839 fprintf (asm_out_file, "\tst%c\t%%l7, [%%sp+%d]\n",
7840 TARGET_ARCH64 ? 'x' : 'w',
7841 SPARC_STACK_BIAS + 7 * UNITS_PER_WORD);
7842 fprintf (asm_out_file, "\tst%c\t%%fp, [%%sp+%d]\n",
7843 TARGET_ARCH64 ? 'x' : 'w',
7844 SPARC_STACK_BIAS + 14 * UNITS_PER_WORD);
7845 fprintf (asm_out_file, "\tst%c\t%%i7, [%%sp+%d]\n",
7846 TARGET_ARCH64 ? 'x' : 'w',
7847 SPARC_STACK_BIAS + 15 * UNITS_PER_WORD);
7848 return "";
7849 }
7850 [(set_attr "type" "multi")
7851 (set (attr "length")
7852 (cond [(eq_attr "current_function_calls_alloca" "false")
7853 (const_int 0)
7854 (eq_attr "flat" "true")
7855 (const_int 1)
7856 (eq_attr "isa" "!v9")
7857 (const_int 1)
7858 (eq_attr "pic" "true")
7859 (const_int 4)] (const_int 3)))])
7860
7861 ;; Pattern for use after a setjmp to store FP and the return register
7862 ;; into the stack area.
7863
7864 (define_expand "setjmp"
7865 [(const_int 0)]
7866 ""
7867 {
7868 if (TARGET_ARCH64)
7869 emit_insn (gen_setjmp_64 ());
7870 else
7871 emit_insn (gen_setjmp_32 ());
7872 DONE;
7873 })
7874
7875 (define_expand "setjmp_32"
7876 [(set (mem:SI (plus:SI (reg:SI 14) (const_int 56))) (match_dup 0))
7877 (set (mem:SI (plus:SI (reg:SI 14) (const_int 60))) (reg:SI 31))]
7878 ""
7879 { operands[0] = frame_pointer_rtx; })
7880
7881 (define_expand "setjmp_64"
7882 [(set (mem:DI (plus:DI (reg:DI 14) (const_int 112))) (match_dup 0))
7883 (set (mem:DI (plus:DI (reg:DI 14) (const_int 120))) (reg:DI 31))]
7884 ""
7885 { operands[0] = frame_pointer_rtx; })
7886
7887 ;; Special pattern for the FLUSH instruction.
7888
7889 ; We do SImode and DImode versions of this to quiet down genrecog's complaints
7890 ; of the define_insn otherwise missing a mode. We make "flush", aka
7891 ; gen_flush, the default one since sparc_initialize_trampoline uses
7892 ; it on SImode mem values.
7893
7894 (define_insn "flush"
7895 [(unspec_volatile [(match_operand:SI 0 "memory_operand" "m")] UNSPECV_FLUSH)]
7896 ""
7897 { return TARGET_V9 ? "flush\t%f0" : "iflush\t%f0"; }
7898 [(set_attr "type" "iflush")])
7899
7900 (define_insn "flushdi"
7901 [(unspec_volatile [(match_operand:DI 0 "memory_operand" "m")] UNSPECV_FLUSH)]
7902 ""
7903 { return TARGET_V9 ? "flush\t%f0" : "iflush\t%f0"; }
7904 [(set_attr "type" "iflush")])
7905
7906 \f
7907 ;; find first set.
7908
7909 ;; The scan instruction searches from the most significant bit while ffs
7910 ;; searches from the least significant bit. The bit index and treatment of
7911 ;; zero also differ. It takes at least 7 instructions to get the proper
7912 ;; result. Here is an obvious 8 instruction sequence.
7913
7914 ;; XXX
7915 (define_insn "ffssi2"
7916 [(set (match_operand:SI 0 "register_operand" "=&r")
7917 (ffs:SI (match_operand:SI 1 "register_operand" "r")))
7918 (clobber (match_scratch:SI 2 "=&r"))]
7919 "TARGET_SPARCLITE || TARGET_SPARCLET"
7920 {
7921 return "sub\t%%g0, %1, %0\;and\t%0, %1, %0\;scan\t%0, 0, %0\;mov\t32, %2\;sub\t%2, %0, %0\;sra\t%0, 31, %2\;and\t%2, 31, %2\;add\t%2, %0, %0";
7922 }
7923 [(set_attr "type" "multi")
7924 (set_attr "length" "8")])
7925
7926 ;; ??? This should be a define expand, so that the extra instruction have
7927 ;; a chance of being optimized away.
7928
7929 ;; Disabled because none of the UltraSPARCs implement popc. The HAL R1
7930 ;; does, but no one uses that and we don't have a switch for it.
7931 ;
7932 ;(define_insn "ffsdi2"
7933 ; [(set (match_operand:DI 0 "register_operand" "=&r")
7934 ; (ffs:DI (match_operand:DI 1 "register_operand" "r")))
7935 ; (clobber (match_scratch:DI 2 "=&r"))]
7936 ; "TARGET_ARCH64"
7937 ; "neg\t%1, %2\;xnor\t%1, %2, %2\;popc\t%2, %0\;movzr\t%1, 0, %0"
7938 ; [(set_attr "type" "multi")
7939 ; (set_attr "length" "4")])
7940
7941
7942 \f
7943 ;; Peepholes go at the end.
7944
7945 ;; Optimize consecutive loads or stores into ldd and std when possible.
7946 ;; The conditions in which we do this are very restricted and are
7947 ;; explained in the code for {registers,memory}_ok_for_ldd functions.
7948
7949 (define_peephole2
7950 [(set (match_operand:SI 0 "memory_operand" "")
7951 (const_int 0))
7952 (set (match_operand:SI 1 "memory_operand" "")
7953 (const_int 0))]
7954 "TARGET_V9
7955 && mems_ok_for_ldd_peep (operands[0], operands[1], NULL_RTX)"
7956 [(set (match_dup 0)
7957 (const_int 0))]
7958 "operands[0] = widen_memory_access (operands[0], DImode, 0);")
7959
7960 (define_peephole2
7961 [(set (match_operand:SI 0 "memory_operand" "")
7962 (const_int 0))
7963 (set (match_operand:SI 1 "memory_operand" "")
7964 (const_int 0))]
7965 "TARGET_V9
7966 && mems_ok_for_ldd_peep (operands[1], operands[0], NULL_RTX)"
7967 [(set (match_dup 1)
7968 (const_int 0))]
7969 "operands[1] = widen_memory_access (operands[1], DImode, 0);")
7970
7971 (define_peephole2
7972 [(set (match_operand:SI 0 "register_operand" "")
7973 (match_operand:SI 1 "memory_operand" ""))
7974 (set (match_operand:SI 2 "register_operand" "")
7975 (match_operand:SI 3 "memory_operand" ""))]
7976 "registers_ok_for_ldd_peep (operands[0], operands[2])
7977 && mems_ok_for_ldd_peep (operands[1], operands[3], operands[0])"
7978 [(set (match_dup 0)
7979 (match_dup 1))]
7980 "operands[1] = widen_memory_access (operands[1], DImode, 0);
7981 operands[0] = gen_rtx_REG (DImode, REGNO (operands[0]));")
7982
7983 (define_peephole2
7984 [(set (match_operand:SI 0 "memory_operand" "")
7985 (match_operand:SI 1 "register_operand" ""))
7986 (set (match_operand:SI 2 "memory_operand" "")
7987 (match_operand:SI 3 "register_operand" ""))]
7988 "registers_ok_for_ldd_peep (operands[1], operands[3])
7989 && mems_ok_for_ldd_peep (operands[0], operands[2], NULL_RTX)"
7990 [(set (match_dup 0)
7991 (match_dup 1))]
7992 "operands[0] = widen_memory_access (operands[0], DImode, 0);
7993 operands[1] = gen_rtx_REG (DImode, REGNO (operands[1]));")
7994
7995 (define_peephole2
7996 [(set (match_operand:SF 0 "register_operand" "")
7997 (match_operand:SF 1 "memory_operand" ""))
7998 (set (match_operand:SF 2 "register_operand" "")
7999 (match_operand:SF 3 "memory_operand" ""))]
8000 "registers_ok_for_ldd_peep (operands[0], operands[2])
8001 && mems_ok_for_ldd_peep (operands[1], operands[3], operands[0])"
8002 [(set (match_dup 0)
8003 (match_dup 1))]
8004 "operands[1] = widen_memory_access (operands[1], DFmode, 0);
8005 operands[0] = gen_rtx_REG (DFmode, REGNO (operands[0]));")
8006
8007 (define_peephole2
8008 [(set (match_operand:SF 0 "memory_operand" "")
8009 (match_operand:SF 1 "register_operand" ""))
8010 (set (match_operand:SF 2 "memory_operand" "")
8011 (match_operand:SF 3 "register_operand" ""))]
8012 "registers_ok_for_ldd_peep (operands[1], operands[3])
8013 && mems_ok_for_ldd_peep (operands[0], operands[2], NULL_RTX)"
8014 [(set (match_dup 0)
8015 (match_dup 1))]
8016 "operands[0] = widen_memory_access (operands[0], DFmode, 0);
8017 operands[1] = gen_rtx_REG (DFmode, REGNO (operands[1]));")
8018
8019 (define_peephole2
8020 [(set (match_operand:SI 0 "register_operand" "")
8021 (match_operand:SI 1 "memory_operand" ""))
8022 (set (match_operand:SI 2 "register_operand" "")
8023 (match_operand:SI 3 "memory_operand" ""))]
8024 "registers_ok_for_ldd_peep (operands[2], operands[0])
8025 && mems_ok_for_ldd_peep (operands[3], operands[1], operands[0])"
8026 [(set (match_dup 2)
8027 (match_dup 3))]
8028 "operands[3] = widen_memory_access (operands[3], DImode, 0);
8029 operands[2] = gen_rtx_REG (DImode, REGNO (operands[2]));")
8030
8031 (define_peephole2
8032 [(set (match_operand:SI 0 "memory_operand" "")
8033 (match_operand:SI 1 "register_operand" ""))
8034 (set (match_operand:SI 2 "memory_operand" "")
8035 (match_operand:SI 3 "register_operand" ""))]
8036 "registers_ok_for_ldd_peep (operands[3], operands[1])
8037 && mems_ok_for_ldd_peep (operands[2], operands[0], NULL_RTX)"
8038 [(set (match_dup 2)
8039 (match_dup 3))]
8040 "operands[2] = widen_memory_access (operands[2], DImode, 0);
8041 operands[3] = gen_rtx_REG (DImode, REGNO (operands[3]));
8042 ")
8043
8044 (define_peephole2
8045 [(set (match_operand:SF 0 "register_operand" "")
8046 (match_operand:SF 1 "memory_operand" ""))
8047 (set (match_operand:SF 2 "register_operand" "")
8048 (match_operand:SF 3 "memory_operand" ""))]
8049 "registers_ok_for_ldd_peep (operands[2], operands[0])
8050 && mems_ok_for_ldd_peep (operands[3], operands[1], operands[0])"
8051 [(set (match_dup 2)
8052 (match_dup 3))]
8053 "operands[3] = widen_memory_access (operands[3], DFmode, 0);
8054 operands[2] = gen_rtx_REG (DFmode, REGNO (operands[2]));")
8055
8056 (define_peephole2
8057 [(set (match_operand:SF 0 "memory_operand" "")
8058 (match_operand:SF 1 "register_operand" ""))
8059 (set (match_operand:SF 2 "memory_operand" "")
8060 (match_operand:SF 3 "register_operand" ""))]
8061 "registers_ok_for_ldd_peep (operands[3], operands[1])
8062 && mems_ok_for_ldd_peep (operands[2], operands[0], NULL_RTX)"
8063 [(set (match_dup 2)
8064 (match_dup 3))]
8065 "operands[2] = widen_memory_access (operands[2], DFmode, 0);
8066 operands[3] = gen_rtx_REG (DFmode, REGNO (operands[3]));")
8067
8068 ;; Optimize the case of following a reg-reg move with a test
8069 ;; of reg just moved. Don't allow floating point regs for operand 0 or 1.
8070 ;; This can result from a float to fix conversion.
8071
8072 (define_peephole2
8073 [(set (match_operand:SI 0 "register_operand" "")
8074 (match_operand:SI 1 "register_operand" ""))
8075 (set (reg:CC 100)
8076 (compare:CC (match_operand:SI 2 "register_operand" "")
8077 (const_int 0)))]
8078 "(rtx_equal_p (operands[2], operands[0])
8079 || rtx_equal_p (operands[2], operands[1]))
8080 && ! SPARC_FP_REG_P (REGNO (operands[0]))
8081 && ! SPARC_FP_REG_P (REGNO (operands[1]))"
8082 [(parallel [(set (match_dup 0) (match_dup 1))
8083 (set (reg:CC 100)
8084 (compare:CC (match_dup 1) (const_int 0)))])]
8085 "")
8086
8087 (define_peephole2
8088 [(set (match_operand:DI 0 "register_operand" "")
8089 (match_operand:DI 1 "register_operand" ""))
8090 (set (reg:CCX 100)
8091 (compare:CCX (match_operand:DI 2 "register_operand" "")
8092 (const_int 0)))]
8093 "TARGET_ARCH64
8094 && (rtx_equal_p (operands[2], operands[0])
8095 || rtx_equal_p (operands[2], operands[1]))
8096 && ! SPARC_FP_REG_P (REGNO (operands[0]))
8097 && ! SPARC_FP_REG_P (REGNO (operands[1]))"
8098 [(parallel [(set (match_dup 0) (match_dup 1))
8099 (set (reg:CCX 100)
8100 (compare:CCX (match_dup 1) (const_int 0)))])]
8101 "")
8102
8103 ;; Return peepholes. These are generated by sparc_nonflat_function_epilogue
8104 ;; who then immediately calls final_scan_insn.
8105
8106 (define_insn "*return_qi"
8107 [(set (match_operand:QI 0 "restore_operand" "")
8108 (match_operand:QI 1 "arith_operand" "rI"))
8109 (return)]
8110 "sparc_emitting_epilogue"
8111 {
8112 if (! TARGET_ARCH64 && current_function_returns_struct)
8113 return "jmp\t%%i7+12\n\trestore %%g0, %1, %Y0";
8114 else if (TARGET_V9 && (GET_CODE (operands[1]) == CONST_INT
8115 || IN_OR_GLOBAL_P (operands[1])))
8116 return "return\t%%i7+8\n\tmov\t%Y1, %Y0";
8117 else
8118 return "ret\n\trestore %%g0, %1, %Y0";
8119 }
8120 [(set_attr "type" "multi")
8121 (set_attr "length" "2")])
8122
8123 (define_insn "*return_hi"
8124 [(set (match_operand:HI 0 "restore_operand" "")
8125 (match_operand:HI 1 "arith_operand" "rI"))
8126 (return)]
8127 "sparc_emitting_epilogue"
8128 {
8129 if (! TARGET_ARCH64 && current_function_returns_struct)
8130 return "jmp\t%%i7+12\n\trestore %%g0, %1, %Y0";
8131 else if (TARGET_V9 && (GET_CODE (operands[1]) == CONST_INT
8132 || IN_OR_GLOBAL_P (operands[1])))
8133 return "return\t%%i7+8\n\tmov\t%Y1, %Y0";
8134 else
8135 return "ret\;restore %%g0, %1, %Y0";
8136 }
8137 [(set_attr "type" "multi")
8138 (set_attr "length" "2")])
8139
8140 (define_insn "*return_si"
8141 [(set (match_operand:SI 0 "restore_operand" "")
8142 (match_operand:SI 1 "arith_operand" "rI"))
8143 (return)]
8144 "sparc_emitting_epilogue"
8145 {
8146 if (! TARGET_ARCH64 && current_function_returns_struct)
8147 return "jmp\t%%i7+12\n\trestore %%g0, %1, %Y0";
8148 else if (TARGET_V9 && (GET_CODE (operands[1]) == CONST_INT
8149 || IN_OR_GLOBAL_P (operands[1])))
8150 return "return\t%%i7+8\n\tmov\t%Y1, %Y0";
8151 else
8152 return "ret\;restore %%g0, %1, %Y0";
8153 }
8154 [(set_attr "type" "multi")
8155 (set_attr "length" "2")])
8156
8157 (define_insn "*return_sf_no_fpu"
8158 [(set (match_operand:SF 0 "restore_operand" "=r")
8159 (match_operand:SF 1 "register_operand" "r"))
8160 (return)]
8161 "sparc_emitting_epilogue"
8162 {
8163 if (! TARGET_ARCH64 && current_function_returns_struct)
8164 return "jmp\t%%i7+12\n\trestore %%g0, %1, %Y0";
8165 else if (TARGET_V9 && IN_OR_GLOBAL_P (operands[1]))
8166 return "return\t%%i7+8\n\tmov\t%Y1, %Y0";
8167 else
8168 return "ret\;restore %%g0, %1, %Y0";
8169 }
8170 [(set_attr "type" "multi")
8171 (set_attr "length" "2")])
8172
8173 (define_insn "*return_df_no_fpu"
8174 [(set (match_operand:DF 0 "restore_operand" "=r")
8175 (match_operand:DF 1 "register_operand" "r"))
8176 (return)]
8177 "sparc_emitting_epilogue && TARGET_ARCH64"
8178 {
8179 if (IN_OR_GLOBAL_P (operands[1]))
8180 return "return\t%%i7+8\n\tmov\t%Y1, %Y0";
8181 else
8182 return "ret\;restore %%g0, %1, %Y0";
8183 }
8184 [(set_attr "type" "multi")
8185 (set_attr "length" "2")])
8186
8187 (define_insn "*return_addsi"
8188 [(set (match_operand:SI 0 "restore_operand" "")
8189 (plus:SI (match_operand:SI 1 "register_operand" "r")
8190 (match_operand:SI 2 "arith_operand" "rI")))
8191 (return)]
8192 "sparc_emitting_epilogue"
8193 {
8194 if (! TARGET_ARCH64 && current_function_returns_struct)
8195 return "jmp\t%%i7+12\n\trestore %r1, %2, %Y0";
8196 /* If operands are global or in registers, can use return */
8197 else if (TARGET_V9 && IN_OR_GLOBAL_P (operands[1])
8198 && (GET_CODE (operands[2]) == CONST_INT
8199 || IN_OR_GLOBAL_P (operands[2])))
8200 return "return\t%%i7+8\n\tadd\t%Y1, %Y2, %Y0";
8201 else
8202 return "ret\;restore %r1, %2, %Y0";
8203 }
8204 [(set_attr "type" "multi")
8205 (set_attr "length" "2")])
8206
8207 (define_insn "*return_losum_si"
8208 [(set (match_operand:SI 0 "restore_operand" "")
8209 (lo_sum:SI (match_operand:SI 1 "register_operand" "r")
8210 (match_operand:SI 2 "immediate_operand" "in")))
8211 (return)]
8212 "sparc_emitting_epilogue && ! TARGET_CM_MEDMID"
8213 {
8214 if (! TARGET_ARCH64 && current_function_returns_struct)
8215 return "jmp\t%%i7+12\n\trestore %r1, %%lo(%a2), %Y0";
8216 /* If operands are global or in registers, can use return */
8217 else if (TARGET_V9 && IN_OR_GLOBAL_P (operands[1]))
8218 return "return\t%%i7+8\n\tor\t%Y1, %%lo(%a2), %Y0";
8219 else
8220 return "ret\;restore %r1, %%lo(%a2), %Y0";
8221 }
8222 [(set_attr "type" "multi")
8223 (set_attr "length" "2")])
8224
8225 (define_insn "*return_di"
8226 [(set (match_operand:DI 0 "restore_operand" "")
8227 (match_operand:DI 1 "arith_double_operand" "rHI"))
8228 (return)]
8229 "sparc_emitting_epilogue && TARGET_ARCH64"
8230 "ret\;restore %%g0, %1, %Y0"
8231 [(set_attr "type" "multi")
8232 (set_attr "length" "2")])
8233
8234 (define_insn "*return_adddi"
8235 [(set (match_operand:DI 0 "restore_operand" "")
8236 (plus:DI (match_operand:DI 1 "arith_operand" "%r")
8237 (match_operand:DI 2 "arith_double_operand" "rHI")))
8238 (return)]
8239 "sparc_emitting_epilogue && TARGET_ARCH64"
8240 "ret\;restore %r1, %2, %Y0"
8241 [(set_attr "type" "multi")
8242 (set_attr "length" "2")])
8243
8244 (define_insn "*return_losum_di"
8245 [(set (match_operand:DI 0 "restore_operand" "")
8246 (lo_sum:DI (match_operand:DI 1 "arith_operand" "%r")
8247 (match_operand:DI 2 "immediate_operand" "in")))
8248 (return)]
8249 "sparc_emitting_epilogue && TARGET_ARCH64 && ! TARGET_CM_MEDMID"
8250 "ret\;restore %r1, %%lo(%a2), %Y0"
8251 [(set_attr "type" "multi")
8252 (set_attr "length" "2")])
8253
8254 (define_insn "*return_sf"
8255 [(set (reg:SF 32)
8256 (match_operand:SF 0 "register_operand" "f"))
8257 (return)]
8258 "sparc_emitting_epilogue"
8259 "ret\;fmovs\t%0, %%f0"
8260 [(set_attr "type" "multi")
8261 (set_attr "length" "2")])
8262
8263 ;; Now peepholes to do a call followed by a jump.
8264
8265 (define_peephole
8266 [(parallel [(set (match_operand 0 "" "")
8267 (call (mem:SI (match_operand:SI 1 "call_operand_address" "ps"))
8268 (match_operand 2 "" "")))
8269 (clobber (reg:SI 15))])
8270 (set (pc) (label_ref (match_operand 3 "" "")))]
8271 "short_branch (INSN_UID (insn), INSN_UID (operands[3]))
8272 && (USING_SJLJ_EXCEPTIONS || ! can_throw_internal (ins1))
8273 && sparc_cpu != PROCESSOR_ULTRASPARC
8274 && sparc_cpu != PROCESSOR_ULTRASPARC3"
8275 "call\t%a1, %2\n\tadd\t%%o7, (%l3-.-4), %%o7")
8276
8277 (define_peephole
8278 [(parallel [(call (mem:SI (match_operand:SI 0 "call_operand_address" "ps"))
8279 (match_operand 1 "" ""))
8280 (clobber (reg:SI 15))])
8281 (set (pc) (label_ref (match_operand 2 "" "")))]
8282 "short_branch (INSN_UID (insn), INSN_UID (operands[2]))
8283 && (USING_SJLJ_EXCEPTIONS || ! can_throw_internal (ins1))
8284 && sparc_cpu != PROCESSOR_ULTRASPARC
8285 && sparc_cpu != PROCESSOR_ULTRASPARC3"
8286 "call\t%a0, %1\n\tadd\t%%o7, (%l2-.-4), %%o7")
8287
8288 ;; ??? UltraSPARC-III note: A memory operation loading into the floating point register
8289 ;; ??? file, if it hits the prefetch cache, has a chance to dual-issue with other memory
8290 ;; ??? operations. With DFA we might be able to model this, but it requires a lot of
8291 ;; ??? state.
8292 (define_expand "prefetch"
8293 [(match_operand 0 "address_operand" "")
8294 (match_operand 1 "const_int_operand" "")
8295 (match_operand 2 "const_int_operand" "")]
8296 "TARGET_V9"
8297 {
8298 if (TARGET_ARCH64)
8299 emit_insn (gen_prefetch_64 (operands[0], operands[1], operands[2]));
8300 else
8301 emit_insn (gen_prefetch_32 (operands[0], operands[1], operands[2]));
8302 DONE;
8303 })
8304
8305 (define_insn "prefetch_64"
8306 [(prefetch (match_operand:DI 0 "address_operand" "p")
8307 (match_operand:DI 1 "const_int_operand" "n")
8308 (match_operand:DI 2 "const_int_operand" "n"))]
8309 ""
8310 {
8311 static const char * const prefetch_instr[2][2] = {
8312 {
8313 "prefetch\t[%a0], 1", /* no locality: prefetch for one read */
8314 "prefetch\t[%a0], 0", /* medium to high locality: prefetch for several reads */
8315 },
8316 {
8317 "prefetch\t[%a0], 3", /* no locality: prefetch for one write */
8318 "prefetch\t[%a0], 2", /* medium to high locality: prefetch for several writes */
8319 }
8320 };
8321 int read_or_write = INTVAL (operands[1]);
8322 int locality = INTVAL (operands[2]);
8323
8324 if (read_or_write != 0 && read_or_write != 1)
8325 abort ();
8326 if (locality < 0 || locality > 3)
8327 abort ();
8328 return prefetch_instr [read_or_write][locality == 0 ? 0 : 1];
8329 }
8330 [(set_attr "type" "load")])
8331
8332 (define_insn "prefetch_32"
8333 [(prefetch (match_operand:SI 0 "address_operand" "p")
8334 (match_operand:SI 1 "const_int_operand" "n")
8335 (match_operand:SI 2 "const_int_operand" "n"))]
8336 ""
8337 {
8338 static const char * const prefetch_instr[2][2] = {
8339 {
8340 "prefetch\t[%a0], 1", /* no locality: prefetch for one read */
8341 "prefetch\t[%a0], 0", /* medium to high locality: prefetch for several reads */
8342 },
8343 {
8344 "prefetch\t[%a0], 3", /* no locality: prefetch for one write */
8345 "prefetch\t[%a0], 2", /* medium to high locality: prefetch for several writes */
8346 }
8347 };
8348 int read_or_write = INTVAL (operands[1]);
8349 int locality = INTVAL (operands[2]);
8350
8351 if (read_or_write != 0 && read_or_write != 1)
8352 abort ();
8353 if (locality < 0 || locality > 3)
8354 abort ();
8355 return prefetch_instr [read_or_write][locality == 0 ? 0 : 1];
8356 }
8357 [(set_attr "type" "load")])
8358 \f
8359 (define_expand "prologue"
8360 [(const_int 1)]
8361 "flag_pic && current_function_uses_pic_offset_table"
8362 {
8363 load_pic_register ();
8364 DONE;
8365 })
8366
8367 ;; We need to reload %l7 for -mflat -fpic,
8368 ;; otherwise %l7 should be preserved simply
8369 ;; by loading the function's register window
8370 (define_expand "exception_receiver"
8371 [(const_int 0)]
8372 "TARGET_FLAT && flag_pic"
8373 {
8374 load_pic_register ();
8375 DONE;
8376 })
8377
8378 ;; Likewise
8379 (define_expand "builtin_setjmp_receiver"
8380 [(label_ref (match_operand 0 "" ""))]
8381 "TARGET_FLAT && flag_pic"
8382 {
8383 load_pic_register ();
8384 DONE;
8385 })
8386 \f
8387 (define_insn "trap"
8388 [(trap_if (const_int 1) (const_int 5))]
8389 ""
8390 "ta\t5"
8391 [(set_attr "type" "trap")])
8392
8393 (define_expand "conditional_trap"
8394 [(trap_if (match_operator 0 "noov_compare_op"
8395 [(match_dup 2) (match_dup 3)])
8396 (match_operand:SI 1 "arith_operand" ""))]
8397 ""
8398 "operands[2] = gen_compare_reg (GET_CODE (operands[0]),
8399 sparc_compare_op0, sparc_compare_op1);
8400 operands[3] = const0_rtx;")
8401
8402 (define_insn ""
8403 [(trap_if (match_operator 0 "noov_compare_op" [(reg:CC 100) (const_int 0)])
8404 (match_operand:SI 1 "arith_operand" "rM"))]
8405 ""
8406 "t%C0\t%1"
8407 [(set_attr "type" "trap")])
8408
8409 (define_insn ""
8410 [(trap_if (match_operator 0 "noov_compare_op" [(reg:CCX 100) (const_int 0)])
8411 (match_operand:SI 1 "arith_operand" "rM"))]
8412 "TARGET_V9"
8413 "t%C0\t%%xcc, %1"
8414 [(set_attr "type" "trap")])