]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/config/pa/pa.md
pa: Use the FMA rtx code.
[thirdparty/gcc.git] / gcc / config / pa / pa.md
1 ;;- Machine description for HP PA-RISC architecture for GCC compiler
2 ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
3 ;; 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010
4 ;; Free Software Foundation, Inc.
5 ;; Contributed by the Center for Software Science at the University
6 ;; of Utah.
7
8 ;; This file is part of GCC.
9
10 ;; GCC 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 3, or (at your option)
13 ;; any later version.
14
15 ;; GCC 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 GCC; see the file COPYING3. If not see
22 ;; <http://www.gnu.org/licenses/>.
23
24 ;; This gcc Version 2 machine description is inspired by sparc.md and
25 ;; mips.md.
26
27 ;;- See file "rtl.def" for documentation on define_insn, match_*, et. al.
28
29 ;; Uses of UNSPEC in this file:
30
31 (define_constants
32 [(UNSPEC_CFFC 0) ; canonicalize_funcptr_for_compare
33 (UNSPEC_GOTO 1) ; indirect_goto
34 (UNSPEC_DLTIND14R 2) ;
35 (UNSPEC_TP 3)
36 (UNSPEC_TLSGD 4)
37 (UNSPEC_TLSLDM 5)
38 (UNSPEC_TLSLDO 6)
39 (UNSPEC_TLSLDBASE 7)
40 (UNSPEC_TLSIE 8)
41 (UNSPEC_TLSLE 9)
42 (UNSPEC_TLSGD_PIC 10)
43 (UNSPEC_TLSLDM_PIC 11)
44 (UNSPEC_TLSIE_PIC 12)
45 ])
46
47 ;; UNSPEC_VOLATILE:
48
49 (define_constants
50 [(UNSPECV_BLOCKAGE 0) ; blockage
51 (UNSPECV_DCACHE 1) ; dcacheflush
52 (UNSPECV_ICACHE 2) ; icacheflush
53 (UNSPECV_OPC 3) ; outline_prologue_call
54 (UNSPECV_OEC 4) ; outline_epilogue_call
55 (UNSPECV_LONGJMP 5) ; builtin_longjmp
56 ])
57
58 ;; Maximum pc-relative branch offsets.
59
60 ;; These numbers are a bit smaller than the maximum allowable offsets
61 ;; so that a few instructions may be inserted before the actual branch.
62
63 (define_constants
64 [(MAX_12BIT_OFFSET 8184) ; 12-bit branch
65 (MAX_17BIT_OFFSET 262100) ; 17-bit branch
66 ])
67
68 ;; Mode and code iterators
69
70 ;; This mode iterator allows :P to be used for patterns that operate on
71 ;; pointer-sized quantities. Exactly one of the two alternatives will match.
72 (define_mode_iterator P [(SI "Pmode == SImode") (DI "Pmode == DImode")])
73
74 ;; This attribute defines the condition prefix for word and double word
75 ;; add, compare, subtract and logical instructions.
76 (define_mode_attr dwc [(SI "") (DI "*")])
77
78 ;; Insn type. Used to default other attribute values.
79
80 ;; type "unary" insns have one input operand (1) and one output operand (0)
81 ;; type "binary" insns have two input operands (1,2) and one output (0)
82
83 (define_attr "type"
84 "move,unary,binary,shift,nullshift,compare,load,store,uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,fpload,fpstore,fpalu,fpcc,fpmulsgl,fpmuldbl,fpdivsgl,fpdivdbl,fpsqrtsgl,fpsqrtdbl,multi,milli,parallel_branch,fpstore_load,store_fpload"
85 (const_string "binary"))
86
87 (define_attr "pa_combine_type"
88 "fmpy,faddsub,uncond_branch,addmove,none"
89 (const_string "none"))
90
91 ;; Processor type (for scheduling, not code generation) -- this attribute
92 ;; must exactly match the processor_type enumeration in pa.h.
93 ;;
94 ;; FIXME: Add 800 scheduling for completeness?
95
96 (define_attr "cpu" "700,7100,7100LC,7200,7300,8000" (const (symbol_ref "pa_cpu_attr")))
97
98 ;; Length (in # of bytes).
99 (define_attr "length" ""
100 (cond [(eq_attr "type" "load,fpload")
101 (if_then_else (match_operand 1 "symbolic_memory_operand" "")
102 (const_int 8) (const_int 4))
103
104 (eq_attr "type" "store,fpstore")
105 (if_then_else (match_operand 0 "symbolic_memory_operand" "")
106 (const_int 8) (const_int 4))
107
108 (eq_attr "type" "binary,shift,nullshift")
109 (if_then_else (match_operand 2 "arith_operand" "")
110 (const_int 4) (const_int 12))
111
112 (eq_attr "type" "move,unary,shift,nullshift")
113 (if_then_else (match_operand 1 "arith_operand" "")
114 (const_int 4) (const_int 8))]
115
116 (const_int 4)))
117
118 (define_asm_attributes
119 [(set_attr "length" "4")
120 (set_attr "type" "multi")])
121
122 ;; Attributes for instruction and branch scheduling
123
124 ;; For conditional branches.
125 (define_attr "in_branch_delay" "false,true"
126 (if_then_else (and (eq_attr "type" "!uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch")
127 (eq_attr "length" "4"))
128 (const_string "true")
129 (const_string "false")))
130
131 ;; Disallow instructions which use the FPU since they will tie up the FPU
132 ;; even if the instruction is nullified.
133 (define_attr "in_nullified_branch_delay" "false,true"
134 (if_then_else (and (eq_attr "type" "!uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpdivdbl,fpsqrtsgl,fpsqrtdbl,parallel_branch")
135 (eq_attr "length" "4"))
136 (const_string "true")
137 (const_string "false")))
138
139 ;; For calls and millicode calls. Allow unconditional branches in the
140 ;; delay slot.
141 (define_attr "in_call_delay" "false,true"
142 (cond [(and (eq_attr "type" "!uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch")
143 (eq_attr "length" "4"))
144 (const_string "true")
145 (eq_attr "type" "uncond_branch")
146 (if_then_else (ne (symbol_ref "TARGET_JUMP_IN_DELAY")
147 (const_int 0))
148 (const_string "true")
149 (const_string "false"))]
150 (const_string "false")))
151
152
153 ;; Call delay slot description.
154 (define_delay (eq_attr "type" "call")
155 [(eq_attr "in_call_delay" "true") (nil) (nil)])
156
157 ;; Millicode call delay slot description.
158 (define_delay (eq_attr "type" "milli")
159 [(eq_attr "in_call_delay" "true") (nil) (nil)])
160
161 ;; Return and other similar instructions.
162 (define_delay (eq_attr "type" "btable_branch,branch,parallel_branch")
163 [(eq_attr "in_branch_delay" "true") (nil) (nil)])
164
165 ;; Floating point conditional branch delay slot description.
166 (define_delay (eq_attr "type" "fbranch")
167 [(eq_attr "in_branch_delay" "true")
168 (eq_attr "in_nullified_branch_delay" "true")
169 (nil)])
170
171 ;; Integer conditional branch delay slot description.
172 ;; Nullification of conditional branches on the PA is dependent on the
173 ;; direction of the branch. Forward branches nullify true and
174 ;; backward branches nullify false. If the direction is unknown
175 ;; then nullification is not allowed.
176 (define_delay (eq_attr "type" "cbranch")
177 [(eq_attr "in_branch_delay" "true")
178 (and (eq_attr "in_nullified_branch_delay" "true")
179 (attr_flag "forward"))
180 (and (eq_attr "in_nullified_branch_delay" "true")
181 (attr_flag "backward"))])
182
183 (define_delay (and (eq_attr "type" "uncond_branch")
184 (eq (symbol_ref "following_call (insn)")
185 (const_int 0)))
186 [(eq_attr "in_branch_delay" "true") (nil) (nil)])
187
188 ;; Memory. Disregarding Cache misses, the Mustang memory times are:
189 ;; load: 2, fpload: 3
190 ;; store, fpstore: 3, no D-cache operations should be scheduled.
191
192 ;; The Timex (aka 700) has two floating-point units: ALU, and MUL/DIV/SQRT.
193 ;; Timings:
194 ;; Instruction Time Unit Minimum Distance (unit contention)
195 ;; fcpy 3 ALU 2
196 ;; fabs 3 ALU 2
197 ;; fadd 3 ALU 2
198 ;; fsub 3 ALU 2
199 ;; fcmp 3 ALU 2
200 ;; fcnv 3 ALU 2
201 ;; fmpyadd 3 ALU,MPY 2
202 ;; fmpysub 3 ALU,MPY 2
203 ;; fmpycfxt 3 ALU,MPY 2
204 ;; fmpy 3 MPY 2
205 ;; fmpyi 3 MPY 2
206 ;; fdiv,sgl 10 MPY 10
207 ;; fdiv,dbl 12 MPY 12
208 ;; fsqrt,sgl 14 MPY 14
209 ;; fsqrt,dbl 18 MPY 18
210 ;;
211 ;; We don't model fmpyadd/fmpysub properly as those instructions
212 ;; keep both the FP ALU and MPY units busy. Given that these
213 ;; processors are obsolete, I'm not going to spend the time to
214 ;; model those instructions correctly.
215
216 (define_automaton "pa700")
217 (define_cpu_unit "dummy_700,mem_700,fpalu_700,fpmpy_700" "pa700")
218
219 (define_insn_reservation "W0" 4
220 (and (eq_attr "type" "fpcc")
221 (eq_attr "cpu" "700"))
222 "fpalu_700*2")
223
224 (define_insn_reservation "W1" 3
225 (and (eq_attr "type" "fpalu")
226 (eq_attr "cpu" "700"))
227 "fpalu_700*2")
228
229 (define_insn_reservation "W2" 3
230 (and (eq_attr "type" "fpmulsgl,fpmuldbl")
231 (eq_attr "cpu" "700"))
232 "fpmpy_700*2")
233
234 (define_insn_reservation "W3" 10
235 (and (eq_attr "type" "fpdivsgl")
236 (eq_attr "cpu" "700"))
237 "fpmpy_700*10")
238
239 (define_insn_reservation "W4" 12
240 (and (eq_attr "type" "fpdivdbl")
241 (eq_attr "cpu" "700"))
242 "fpmpy_700*12")
243
244 (define_insn_reservation "W5" 14
245 (and (eq_attr "type" "fpsqrtsgl")
246 (eq_attr "cpu" "700"))
247 "fpmpy_700*14")
248
249 (define_insn_reservation "W6" 18
250 (and (eq_attr "type" "fpsqrtdbl")
251 (eq_attr "cpu" "700"))
252 "fpmpy_700*18")
253
254 (define_insn_reservation "W7" 2
255 (and (eq_attr "type" "load")
256 (eq_attr "cpu" "700"))
257 "mem_700")
258
259 (define_insn_reservation "W8" 2
260 (and (eq_attr "type" "fpload")
261 (eq_attr "cpu" "700"))
262 "mem_700")
263
264 (define_insn_reservation "W9" 3
265 (and (eq_attr "type" "store")
266 (eq_attr "cpu" "700"))
267 "mem_700*3")
268
269 (define_insn_reservation "W10" 3
270 (and (eq_attr "type" "fpstore")
271 (eq_attr "cpu" "700"))
272 "mem_700*3")
273
274 (define_insn_reservation "W11" 5
275 (and (eq_attr "type" "fpstore_load")
276 (eq_attr "cpu" "700"))
277 "mem_700*5")
278
279 (define_insn_reservation "W12" 6
280 (and (eq_attr "type" "store_fpload")
281 (eq_attr "cpu" "700"))
282 "mem_700*6")
283
284 (define_insn_reservation "W13" 1
285 (and (eq_attr "type" "!fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpdivdbl,fpsqrtsgl,fpsqrtdbl,load,fpload,store,fpstore,fpstore_load,store_fpload")
286 (eq_attr "cpu" "700"))
287 "dummy_700")
288
289 ;; We have a bypass for all computations in the FP unit which feed an
290 ;; FP store as long as the sizes are the same.
291 (define_bypass 2 "W1,W2" "W10,W11" "hppa_fpstore_bypass_p")
292 (define_bypass 9 "W3" "W10,W11" "hppa_fpstore_bypass_p")
293 (define_bypass 11 "W4" "W10,W11" "hppa_fpstore_bypass_p")
294 (define_bypass 13 "W5" "W10,W11" "hppa_fpstore_bypass_p")
295 (define_bypass 17 "W6" "W10,W11" "hppa_fpstore_bypass_p")
296
297 ;; We have an "anti-bypass" for FP loads which feed an FP store.
298 (define_bypass 4 "W8,W12" "W10,W11" "hppa_fpstore_bypass_p")
299
300 ;; Function units for the 7100 and 7150. The 7100/7150 can dual-issue
301 ;; floating point computations with non-floating point computations (fp loads
302 ;; and stores are not fp computations).
303 ;;
304 ;; Memory. Disregarding Cache misses, memory loads take two cycles; stores also
305 ;; take two cycles, during which no Dcache operations should be scheduled.
306 ;; Any special cases are handled in pa_adjust_cost. The 7100, 7150 and 7100LC
307 ;; all have the same memory characteristics if one disregards cache misses.
308 ;;
309 ;; The 7100/7150 has three floating-point units: ALU, MUL, and DIV.
310 ;; There's no value in modeling the ALU and MUL separately though
311 ;; since there can never be a functional unit conflict given the
312 ;; latency and issue rates for those units.
313 ;;
314 ;; Timings:
315 ;; Instruction Time Unit Minimum Distance (unit contention)
316 ;; fcpy 2 ALU 1
317 ;; fabs 2 ALU 1
318 ;; fadd 2 ALU 1
319 ;; fsub 2 ALU 1
320 ;; fcmp 2 ALU 1
321 ;; fcnv 2 ALU 1
322 ;; fmpyadd 2 ALU,MPY 1
323 ;; fmpysub 2 ALU,MPY 1
324 ;; fmpycfxt 2 ALU,MPY 1
325 ;; fmpy 2 MPY 1
326 ;; fmpyi 2 MPY 1
327 ;; fdiv,sgl 8 DIV 8
328 ;; fdiv,dbl 15 DIV 15
329 ;; fsqrt,sgl 8 DIV 8
330 ;; fsqrt,dbl 15 DIV 15
331
332 (define_automaton "pa7100")
333 (define_cpu_unit "i_7100, f_7100,fpmac_7100,fpdivsqrt_7100,mem_7100" "pa7100")
334
335 (define_insn_reservation "X0" 2
336 (and (eq_attr "type" "fpcc,fpalu,fpmulsgl,fpmuldbl")
337 (eq_attr "cpu" "7100"))
338 "f_7100,fpmac_7100")
339
340 (define_insn_reservation "X1" 8
341 (and (eq_attr "type" "fpdivsgl,fpsqrtsgl")
342 (eq_attr "cpu" "7100"))
343 "f_7100+fpdivsqrt_7100,fpdivsqrt_7100*7")
344
345 (define_insn_reservation "X2" 15
346 (and (eq_attr "type" "fpdivdbl,fpsqrtdbl")
347 (eq_attr "cpu" "7100"))
348 "f_7100+fpdivsqrt_7100,fpdivsqrt_7100*14")
349
350 (define_insn_reservation "X3" 2
351 (and (eq_attr "type" "load")
352 (eq_attr "cpu" "7100"))
353 "i_7100+mem_7100")
354
355 (define_insn_reservation "X4" 2
356 (and (eq_attr "type" "fpload")
357 (eq_attr "cpu" "7100"))
358 "i_7100+mem_7100")
359
360 (define_insn_reservation "X5" 2
361 (and (eq_attr "type" "store")
362 (eq_attr "cpu" "7100"))
363 "i_7100+mem_7100,mem_7100")
364
365 (define_insn_reservation "X6" 2
366 (and (eq_attr "type" "fpstore")
367 (eq_attr "cpu" "7100"))
368 "i_7100+mem_7100,mem_7100")
369
370 (define_insn_reservation "X7" 4
371 (and (eq_attr "type" "fpstore_load")
372 (eq_attr "cpu" "7100"))
373 "i_7100+mem_7100,mem_7100*3")
374
375 (define_insn_reservation "X8" 4
376 (and (eq_attr "type" "store_fpload")
377 (eq_attr "cpu" "7100"))
378 "i_7100+mem_7100,mem_7100*3")
379
380 (define_insn_reservation "X9" 1
381 (and (eq_attr "type" "!fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpsqrtsgl,fpdivdbl,fpsqrtdbl,load,fpload,store,fpstore,fpstore_load,store_fpload")
382 (eq_attr "cpu" "7100"))
383 "i_7100")
384
385 ;; We have a bypass for all computations in the FP unit which feed an
386 ;; FP store as long as the sizes are the same.
387 (define_bypass 1 "X0" "X6,X7" "hppa_fpstore_bypass_p")
388 (define_bypass 7 "X1" "X6,X7" "hppa_fpstore_bypass_p")
389 (define_bypass 14 "X2" "X6,X7" "hppa_fpstore_bypass_p")
390
391 ;; We have an "anti-bypass" for FP loads which feed an FP store.
392 (define_bypass 3 "X4,X8" "X6,X7" "hppa_fpstore_bypass_p")
393
394 ;; The 7100LC has three floating-point units: ALU, MUL, and DIV.
395 ;; There's no value in modeling the ALU and MUL separately though
396 ;; since there can never be a functional unit conflict that
397 ;; can be avoided given the latency, issue rates and mandatory
398 ;; one cycle cpu-wide lock for a double precision fp multiply.
399 ;;
400 ;; Timings:
401 ;; Instruction Time Unit Minimum Distance (unit contention)
402 ;; fcpy 2 ALU 1
403 ;; fabs 2 ALU 1
404 ;; fadd 2 ALU 1
405 ;; fsub 2 ALU 1
406 ;; fcmp 2 ALU 1
407 ;; fcnv 2 ALU 1
408 ;; fmpyadd,sgl 2 ALU,MPY 1
409 ;; fmpyadd,dbl 3 ALU,MPY 2
410 ;; fmpysub,sgl 2 ALU,MPY 1
411 ;; fmpysub,dbl 3 ALU,MPY 2
412 ;; fmpycfxt,sgl 2 ALU,MPY 1
413 ;; fmpycfxt,dbl 3 ALU,MPY 2
414 ;; fmpy,sgl 2 MPY 1
415 ;; fmpy,dbl 3 MPY 2
416 ;; fmpyi 3 MPY 2
417 ;; fdiv,sgl 8 DIV 8
418 ;; fdiv,dbl 15 DIV 15
419 ;; fsqrt,sgl 8 DIV 8
420 ;; fsqrt,dbl 15 DIV 15
421 ;;
422 ;; The PA7200 is just like the PA7100LC except that there is
423 ;; no store-store penalty.
424 ;;
425 ;; The PA7300 is just like the PA7200 except that there is
426 ;; no store-load penalty.
427 ;;
428 ;; Note there are some aspects of the 7100LC we are not modeling
429 ;; at the moment. I'll be reviewing the 7100LC scheduling info
430 ;; shortly and updating this description.
431 ;;
432 ;; load-load pairs
433 ;; store-store pairs
434 ;; other issue modeling
435
436 (define_automaton "pa7100lc")
437 (define_cpu_unit "i0_7100lc, i1_7100lc, f_7100lc" "pa7100lc")
438 (define_cpu_unit "fpmac_7100lc" "pa7100lc")
439 (define_cpu_unit "mem_7100lc" "pa7100lc")
440
441 ;; Double precision multiplies lock the entire CPU for one
442 ;; cycle. There is no way to avoid this lock and trying to
443 ;; schedule around the lock is pointless and thus there is no
444 ;; value in trying to model this lock.
445 ;;
446 ;; Not modeling the lock allows us to treat fp multiplies just
447 ;; like any other FP alu instruction. It allows for a smaller
448 ;; DFA and may reduce register pressure.
449 (define_insn_reservation "Y0" 2
450 (and (eq_attr "type" "fpcc,fpalu,fpmulsgl,fpmuldbl")
451 (eq_attr "cpu" "7100LC,7200,7300"))
452 "f_7100lc,fpmac_7100lc")
453
454 ;; fp division and sqrt instructions lock the entire CPU for
455 ;; 7 cycles (single precision) or 14 cycles (double precision).
456 ;; There is no way to avoid this lock and trying to schedule
457 ;; around the lock is pointless and thus there is no value in
458 ;; trying to model this lock. Not modeling the lock allows
459 ;; for a smaller DFA and may reduce register pressure.
460 (define_insn_reservation "Y1" 1
461 (and (eq_attr "type" "fpdivsgl,fpsqrtsgl,fpdivdbl,fpsqrtdbl")
462 (eq_attr "cpu" "7100LC,7200,7300"))
463 "f_7100lc")
464
465 (define_insn_reservation "Y2" 2
466 (and (eq_attr "type" "load")
467 (eq_attr "cpu" "7100LC,7200,7300"))
468 "i1_7100lc+mem_7100lc")
469
470 (define_insn_reservation "Y3" 2
471 (and (eq_attr "type" "fpload")
472 (eq_attr "cpu" "7100LC,7200,7300"))
473 "i1_7100lc+mem_7100lc")
474
475 (define_insn_reservation "Y4" 2
476 (and (eq_attr "type" "store")
477 (eq_attr "cpu" "7100LC"))
478 "i1_7100lc+mem_7100lc,mem_7100lc")
479
480 (define_insn_reservation "Y5" 2
481 (and (eq_attr "type" "fpstore")
482 (eq_attr "cpu" "7100LC"))
483 "i1_7100lc+mem_7100lc,mem_7100lc")
484
485 (define_insn_reservation "Y6" 4
486 (and (eq_attr "type" "fpstore_load")
487 (eq_attr "cpu" "7100LC"))
488 "i1_7100lc+mem_7100lc,mem_7100lc*3")
489
490 (define_insn_reservation "Y7" 4
491 (and (eq_attr "type" "store_fpload")
492 (eq_attr "cpu" "7100LC"))
493 "i1_7100lc+mem_7100lc,mem_7100lc*3")
494
495 (define_insn_reservation "Y8" 1
496 (and (eq_attr "type" "shift,nullshift")
497 (eq_attr "cpu" "7100LC,7200,7300"))
498 "i1_7100lc")
499
500 (define_insn_reservation "Y9" 1
501 (and (eq_attr "type" "!fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpsqrtsgl,fpdivdbl,fpsqrtdbl,load,fpload,store,fpstore,shift,nullshift")
502 (eq_attr "cpu" "7100LC,7200,7300"))
503 "(i0_7100lc|i1_7100lc)")
504
505 ;; The 7200 has a store-load penalty
506 (define_insn_reservation "Y10" 2
507 (and (eq_attr "type" "store")
508 (eq_attr "cpu" "7200"))
509 "i1_7100lc,mem_7100lc")
510
511 (define_insn_reservation "Y11" 2
512 (and (eq_attr "type" "fpstore")
513 (eq_attr "cpu" "7200"))
514 "i1_7100lc,mem_7100lc")
515
516 (define_insn_reservation "Y12" 4
517 (and (eq_attr "type" "fpstore_load")
518 (eq_attr "cpu" "7200"))
519 "i1_7100lc,mem_7100lc,i1_7100lc+mem_7100lc")
520
521 (define_insn_reservation "Y13" 4
522 (and (eq_attr "type" "store_fpload")
523 (eq_attr "cpu" "7200"))
524 "i1_7100lc,mem_7100lc,i1_7100lc+mem_7100lc")
525
526 ;; The 7300 has no penalty for store-store or store-load
527 (define_insn_reservation "Y14" 2
528 (and (eq_attr "type" "store")
529 (eq_attr "cpu" "7300"))
530 "i1_7100lc")
531
532 (define_insn_reservation "Y15" 2
533 (and (eq_attr "type" "fpstore")
534 (eq_attr "cpu" "7300"))
535 "i1_7100lc")
536
537 (define_insn_reservation "Y16" 4
538 (and (eq_attr "type" "fpstore_load")
539 (eq_attr "cpu" "7300"))
540 "i1_7100lc,i1_7100lc+mem_7100lc")
541
542 (define_insn_reservation "Y17" 4
543 (and (eq_attr "type" "store_fpload")
544 (eq_attr "cpu" "7300"))
545 "i1_7100lc,i1_7100lc+mem_7100lc")
546
547 ;; We have an "anti-bypass" for FP loads which feed an FP store.
548 (define_bypass 3 "Y3,Y7,Y13,Y17" "Y5,Y6,Y11,Y12,Y15,Y16" "hppa_fpstore_bypass_p")
549
550 ;; Scheduling for the PA8000 is somewhat different than scheduling for a
551 ;; traditional architecture.
552 ;;
553 ;; The PA8000 has a large (56) entry reorder buffer that is split between
554 ;; memory and non-memory operations.
555 ;;
556 ;; The PA8000 can issue two memory and two non-memory operations per cycle to
557 ;; the function units, with the exception of branches and multi-output
558 ;; instructions. The PA8000 can retire two non-memory operations per cycle
559 ;; and two memory operations per cycle, only one of which may be a store.
560 ;;
561 ;; Given the large reorder buffer, the processor can hide most latencies.
562 ;; According to HP, they've got the best results by scheduling for retirement
563 ;; bandwidth with limited latency scheduling for floating point operations.
564 ;; Latency for integer operations and memory references is ignored.
565 ;;
566 ;;
567 ;; We claim floating point operations have a 2 cycle latency and are
568 ;; fully pipelined, except for div and sqrt which are not pipelined and
569 ;; take from 17 to 31 cycles to complete.
570 ;;
571 ;; It's worth noting that there is no way to saturate all the functional
572 ;; units on the PA8000 as there is not enough issue bandwidth.
573
574 (define_automaton "pa8000")
575 (define_cpu_unit "inm0_8000, inm1_8000, im0_8000, im1_8000" "pa8000")
576 (define_cpu_unit "rnm0_8000, rnm1_8000, rm0_8000, rm1_8000" "pa8000")
577 (define_cpu_unit "store_8000" "pa8000")
578 (define_cpu_unit "f0_8000, f1_8000" "pa8000")
579 (define_cpu_unit "fdivsqrt0_8000, fdivsqrt1_8000" "pa8000")
580 (define_reservation "inm_8000" "inm0_8000 | inm1_8000")
581 (define_reservation "im_8000" "im0_8000 | im1_8000")
582 (define_reservation "rnm_8000" "rnm0_8000 | rnm1_8000")
583 (define_reservation "rm_8000" "rm0_8000 | rm1_8000")
584 (define_reservation "f_8000" "f0_8000 | f1_8000")
585 (define_reservation "fdivsqrt_8000" "fdivsqrt0_8000 | fdivsqrt1_8000")
586
587 ;; We can issue any two memops per cycle, but we can only retire
588 ;; one memory store per cycle. We assume that the reorder buffer
589 ;; will hide any memory latencies per HP's recommendation.
590 (define_insn_reservation "Z0" 0
591 (and
592 (eq_attr "type" "load,fpload")
593 (eq_attr "cpu" "8000"))
594 "im_8000,rm_8000")
595
596 (define_insn_reservation "Z1" 0
597 (and
598 (eq_attr "type" "store,fpstore")
599 (eq_attr "cpu" "8000"))
600 "im_8000,rm_8000+store_8000")
601
602 (define_insn_reservation "Z2" 0
603 (and (eq_attr "type" "fpstore_load,store_fpload")
604 (eq_attr "cpu" "8000"))
605 "im_8000,rm_8000+store_8000,im_8000,rm_8000")
606
607 ;; We can issue and retire two non-memory operations per cycle with
608 ;; a few exceptions (branches). This group catches those we want
609 ;; to assume have zero latency.
610 (define_insn_reservation "Z3" 0
611 (and
612 (eq_attr "type" "!load,fpload,store,fpstore,uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch,fpcc,fpalu,fpmulsgl,fpmuldbl,fpsqrtsgl,fpsqrtdbl,fpdivsgl,fpdivdbl,fpstore_load,store_fpload")
613 (eq_attr "cpu" "8000"))
614 "inm_8000,rnm_8000")
615
616 ;; Branches use both slots in the non-memory issue and
617 ;; retirement unit.
618 (define_insn_reservation "Z4" 0
619 (and
620 (eq_attr "type" "uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch")
621 (eq_attr "cpu" "8000"))
622 "inm0_8000+inm1_8000,rnm0_8000+rnm1_8000")
623
624 ;; We partial latency schedule the floating point units.
625 ;; They can issue/retire two at a time in the non-memory
626 ;; units. We fix their latency at 2 cycles and they
627 ;; are fully pipelined.
628 (define_insn_reservation "Z5" 1
629 (and
630 (eq_attr "type" "fpcc,fpalu,fpmulsgl,fpmuldbl")
631 (eq_attr "cpu" "8000"))
632 "inm_8000,f_8000,rnm_8000")
633
634 ;; The fdivsqrt units are not pipelined and have a very long latency.
635 ;; To keep the DFA from exploding, we do not show all the
636 ;; reservations for the divsqrt unit.
637 (define_insn_reservation "Z6" 17
638 (and
639 (eq_attr "type" "fpdivsgl,fpsqrtsgl")
640 (eq_attr "cpu" "8000"))
641 "inm_8000,fdivsqrt_8000*6,rnm_8000")
642
643 (define_insn_reservation "Z7" 31
644 (and
645 (eq_attr "type" "fpdivdbl,fpsqrtdbl")
646 (eq_attr "cpu" "8000"))
647 "inm_8000,fdivsqrt_8000*6,rnm_8000")
648
649 ;; Operand and operator predicates and constraints
650
651 (include "predicates.md")
652 (include "constraints.md")
653 \f
654 ;; Compare instructions.
655 ;; This controls RTL generation and register allocation.
656
657 (define_insn ""
658 [(set (reg:CCFP 0)
659 (match_operator:CCFP 2 "comparison_operator"
660 [(match_operand:SF 0 "reg_or_0_operand" "fG")
661 (match_operand:SF 1 "reg_or_0_operand" "fG")]))]
662 "! TARGET_SOFT_FLOAT"
663 "fcmp,sgl,%Y2 %f0,%f1"
664 [(set_attr "length" "4")
665 (set_attr "type" "fpcc")])
666
667 (define_insn ""
668 [(set (reg:CCFP 0)
669 (match_operator:CCFP 2 "comparison_operator"
670 [(match_operand:DF 0 "reg_or_0_operand" "fG")
671 (match_operand:DF 1 "reg_or_0_operand" "fG")]))]
672 "! TARGET_SOFT_FLOAT"
673 "fcmp,dbl,%Y2 %f0,%f1"
674 [(set_attr "length" "4")
675 (set_attr "type" "fpcc")])
676
677 ;; Provide a means to emit the movccfp0 and movccfp1 optimization
678 ;; placeholders. This is necessary in rare situations when a
679 ;; placeholder is re-emitted (see PR 8705).
680
681 (define_expand "movccfp"
682 [(set (reg:CCFP 0)
683 (match_operand 0 "const_int_operand" ""))]
684 "! TARGET_SOFT_FLOAT"
685 "
686 {
687 if ((unsigned HOST_WIDE_INT) INTVAL (operands[0]) > 1)
688 FAIL;
689 }")
690
691 ;; The following patterns are optimization placeholders. In almost
692 ;; all cases, the user of the condition code will be simplified and the
693 ;; original condition code setting insn should be eliminated.
694
695 (define_insn "*movccfp0"
696 [(set (reg:CCFP 0)
697 (const_int 0))]
698 "! TARGET_SOFT_FLOAT"
699 "fcmp,dbl,= %%fr0,%%fr0"
700 [(set_attr "length" "4")
701 (set_attr "type" "fpcc")])
702
703 (define_insn "*movccfp1"
704 [(set (reg:CCFP 0)
705 (const_int 1))]
706 "! TARGET_SOFT_FLOAT"
707 "fcmp,dbl,!= %%fr0,%%fr0"
708 [(set_attr "length" "4")
709 (set_attr "type" "fpcc")])
710
711 ;; scc insns.
712
713 (define_expand "cstoresi4"
714 [(set (match_operand:SI 0 "register_operand")
715 (match_operator:SI 1 "ordered_comparison_operator"
716 [(match_operand:SI 2 "reg_or_0_operand" "")
717 (match_operand:SI 3 "arith5_operand" "")]))]
718 "!TARGET_64BIT"
719 "")
720
721 ;; Instruction canonicalization puts immediate operands second, which
722 ;; is the reverse of what we want.
723
724 (define_insn "scc"
725 [(set (match_operand:SI 0 "register_operand" "=r")
726 (match_operator:SI 3 "comparison_operator"
727 [(match_operand:SI 1 "register_operand" "r")
728 (match_operand:SI 2 "arith11_operand" "rI")]))]
729 ""
730 "{com%I2clr|cmp%I2clr},%B3 %2,%1,%0\;ldi 1,%0"
731 [(set_attr "type" "binary")
732 (set_attr "length" "8")])
733
734 (define_insn ""
735 [(set (match_operand:DI 0 "register_operand" "=r")
736 (match_operator:DI 3 "comparison_operator"
737 [(match_operand:DI 1 "register_operand" "r")
738 (match_operand:DI 2 "arith11_operand" "rI")]))]
739 "TARGET_64BIT"
740 "cmp%I2clr,*%B3 %2,%1,%0\;ldi 1,%0"
741 [(set_attr "type" "binary")
742 (set_attr "length" "8")])
743
744 (define_insn "iorscc"
745 [(set (match_operand:SI 0 "register_operand" "=r")
746 (ior:SI (match_operator:SI 3 "comparison_operator"
747 [(match_operand:SI 1 "register_operand" "r")
748 (match_operand:SI 2 "arith11_operand" "rI")])
749 (match_operator:SI 6 "comparison_operator"
750 [(match_operand:SI 4 "register_operand" "r")
751 (match_operand:SI 5 "arith11_operand" "rI")])))]
752 ""
753 "{com%I2clr|cmp%I2clr},%S3 %2,%1,%%r0\;{com%I5clr|cmp%I5clr},%B6 %5,%4,%0\;ldi 1,%0"
754 [(set_attr "type" "binary")
755 (set_attr "length" "12")])
756
757 (define_insn ""
758 [(set (match_operand:DI 0 "register_operand" "=r")
759 (ior:DI (match_operator:DI 3 "comparison_operator"
760 [(match_operand:DI 1 "register_operand" "r")
761 (match_operand:DI 2 "arith11_operand" "rI")])
762 (match_operator:DI 6 "comparison_operator"
763 [(match_operand:DI 4 "register_operand" "r")
764 (match_operand:DI 5 "arith11_operand" "rI")])))]
765 "TARGET_64BIT"
766 "cmp%I2clr,*%S3 %2,%1,%%r0\;cmp%I5clr,*%B6 %5,%4,%0\;ldi 1,%0"
767 [(set_attr "type" "binary")
768 (set_attr "length" "12")])
769
770 ;; Combiner patterns for common operations performed with the output
771 ;; from an scc insn (negscc and incscc).
772 (define_insn "negscc"
773 [(set (match_operand:SI 0 "register_operand" "=r")
774 (neg:SI (match_operator:SI 3 "comparison_operator"
775 [(match_operand:SI 1 "register_operand" "r")
776 (match_operand:SI 2 "arith11_operand" "rI")])))]
777 ""
778 "{com%I2clr|cmp%I2clr},%B3 %2,%1,%0\;ldi -1,%0"
779 [(set_attr "type" "binary")
780 (set_attr "length" "8")])
781
782 (define_insn ""
783 [(set (match_operand:DI 0 "register_operand" "=r")
784 (neg:DI (match_operator:DI 3 "comparison_operator"
785 [(match_operand:DI 1 "register_operand" "r")
786 (match_operand:DI 2 "arith11_operand" "rI")])))]
787 "TARGET_64BIT"
788 "cmp%I2clr,*%B3 %2,%1,%0\;ldi -1,%0"
789 [(set_attr "type" "binary")
790 (set_attr "length" "8")])
791
792 ;; Patterns for adding/subtracting the result of a boolean expression from
793 ;; a register. First we have special patterns that make use of the carry
794 ;; bit, and output only two instructions. For the cases we can't in
795 ;; general do in two instructions, the incscc pattern at the end outputs
796 ;; two or three instructions.
797
798 (define_insn ""
799 [(set (match_operand:SI 0 "register_operand" "=r")
800 (plus:SI (leu:SI (match_operand:SI 2 "register_operand" "r")
801 (match_operand:SI 3 "arith11_operand" "rI"))
802 (match_operand:SI 1 "register_operand" "r")))]
803 ""
804 "sub%I3 %3,%2,%%r0\;{addc|add,c} %%r0,%1,%0"
805 [(set_attr "type" "binary")
806 (set_attr "length" "8")])
807
808 (define_insn ""
809 [(set (match_operand:DI 0 "register_operand" "=r")
810 (plus:DI (leu:DI (match_operand:DI 2 "register_operand" "r")
811 (match_operand:DI 3 "arith11_operand" "rI"))
812 (match_operand:DI 1 "register_operand" "r")))]
813 "TARGET_64BIT"
814 "sub%I3 %3,%2,%%r0\;add,dc %%r0,%1,%0"
815 [(set_attr "type" "binary")
816 (set_attr "length" "8")])
817
818 ; This need only accept registers for op3, since canonicalization
819 ; replaces geu with gtu when op3 is an integer.
820 (define_insn ""
821 [(set (match_operand:SI 0 "register_operand" "=r")
822 (plus:SI (geu:SI (match_operand:SI 2 "register_operand" "r")
823 (match_operand:SI 3 "register_operand" "r"))
824 (match_operand:SI 1 "register_operand" "r")))]
825 ""
826 "sub %2,%3,%%r0\;{addc|add,c} %%r0,%1,%0"
827 [(set_attr "type" "binary")
828 (set_attr "length" "8")])
829
830 (define_insn ""
831 [(set (match_operand:DI 0 "register_operand" "=r")
832 (plus:DI (geu:DI (match_operand:DI 2 "register_operand" "r")
833 (match_operand:DI 3 "register_operand" "r"))
834 (match_operand:DI 1 "register_operand" "r")))]
835 "TARGET_64BIT"
836 "sub %2,%3,%%r0\;add,dc %%r0,%1,%0"
837 [(set_attr "type" "binary")
838 (set_attr "length" "8")])
839
840 ; Match only integers for op3 here. This is used as canonical form of the
841 ; geu pattern when op3 is an integer. Don't match registers since we can't
842 ; make better code than the general incscc pattern.
843 (define_insn ""
844 [(set (match_operand:SI 0 "register_operand" "=r")
845 (plus:SI (gtu:SI (match_operand:SI 2 "register_operand" "r")
846 (match_operand:SI 3 "int11_operand" "I"))
847 (match_operand:SI 1 "register_operand" "r")))]
848 ""
849 "addi %k3,%2,%%r0\;{addc|add,c} %%r0,%1,%0"
850 [(set_attr "type" "binary")
851 (set_attr "length" "8")])
852
853 (define_insn ""
854 [(set (match_operand:DI 0 "register_operand" "=r")
855 (plus:DI (gtu:DI (match_operand:DI 2 "register_operand" "r")
856 (match_operand:DI 3 "int11_operand" "I"))
857 (match_operand:DI 1 "register_operand" "r")))]
858 "TARGET_64BIT"
859 "addi %k3,%2,%%r0\;add,dc %%r0,%1,%0"
860 [(set_attr "type" "binary")
861 (set_attr "length" "8")])
862
863 (define_insn "incscc"
864 [(set (match_operand:SI 0 "register_operand" "=r,r")
865 (plus:SI (match_operator:SI 4 "comparison_operator"
866 [(match_operand:SI 2 "register_operand" "r,r")
867 (match_operand:SI 3 "arith11_operand" "rI,rI")])
868 (match_operand:SI 1 "register_operand" "0,?r")))]
869 ""
870 "@
871 {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi 1,%0,%0
872 {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi,tr 1,%1,%0\;copy %1,%0"
873 [(set_attr "type" "binary,binary")
874 (set_attr "length" "8,12")])
875
876 (define_insn ""
877 [(set (match_operand:DI 0 "register_operand" "=r,r")
878 (plus:DI (match_operator:DI 4 "comparison_operator"
879 [(match_operand:DI 2 "register_operand" "r,r")
880 (match_operand:DI 3 "arith11_operand" "rI,rI")])
881 (match_operand:DI 1 "register_operand" "0,?r")))]
882 "TARGET_64BIT"
883 "@
884 cmp%I3clr,*%B4 %3,%2,%%r0\;addi 1,%0,%0
885 cmp%I3clr,*%B4 %3,%2,%%r0\;addi,tr 1,%1,%0\;copy %1,%0"
886 [(set_attr "type" "binary,binary")
887 (set_attr "length" "8,12")])
888
889 (define_insn ""
890 [(set (match_operand:SI 0 "register_operand" "=r")
891 (minus:SI (match_operand:SI 1 "register_operand" "r")
892 (gtu:SI (match_operand:SI 2 "register_operand" "r")
893 (match_operand:SI 3 "arith11_operand" "rI"))))]
894 ""
895 "sub%I3 %3,%2,%%r0\;{subb|sub,b} %1,%%r0,%0"
896 [(set_attr "type" "binary")
897 (set_attr "length" "8")])
898
899 (define_insn ""
900 [(set (match_operand:DI 0 "register_operand" "=r")
901 (minus:DI (match_operand:DI 1 "register_operand" "r")
902 (gtu:DI (match_operand:DI 2 "register_operand" "r")
903 (match_operand:DI 3 "arith11_operand" "rI"))))]
904 "TARGET_64BIT"
905 "sub%I3 %3,%2,%%r0\;sub,db %1,%%r0,%0"
906 [(set_attr "type" "binary")
907 (set_attr "length" "8")])
908
909 (define_insn ""
910 [(set (match_operand:SI 0 "register_operand" "=r")
911 (minus:SI (minus:SI (match_operand:SI 1 "register_operand" "r")
912 (gtu:SI (match_operand:SI 2 "register_operand" "r")
913 (match_operand:SI 3 "arith11_operand" "rI")))
914 (match_operand:SI 4 "register_operand" "r")))]
915 ""
916 "sub%I3 %3,%2,%%r0\;{subb|sub,b} %1,%4,%0"
917 [(set_attr "type" "binary")
918 (set_attr "length" "8")])
919
920 (define_insn ""
921 [(set (match_operand:DI 0 "register_operand" "=r")
922 (minus:DI (minus:DI (match_operand:DI 1 "register_operand" "r")
923 (gtu:DI (match_operand:DI 2 "register_operand" "r")
924 (match_operand:DI 3 "arith11_operand" "rI")))
925 (match_operand:DI 4 "register_operand" "r")))]
926 "TARGET_64BIT"
927 "sub%I3 %3,%2,%%r0\;sub,db %1,%4,%0"
928 [(set_attr "type" "binary")
929 (set_attr "length" "8")])
930
931 ; This need only accept registers for op3, since canonicalization
932 ; replaces ltu with leu when op3 is an integer.
933 (define_insn ""
934 [(set (match_operand:SI 0 "register_operand" "=r")
935 (minus:SI (match_operand:SI 1 "register_operand" "r")
936 (ltu:SI (match_operand:SI 2 "register_operand" "r")
937 (match_operand:SI 3 "register_operand" "r"))))]
938 ""
939 "sub %2,%3,%%r0\;{subb|sub,b} %1,%%r0,%0"
940 [(set_attr "type" "binary")
941 (set_attr "length" "8")])
942
943 (define_insn ""
944 [(set (match_operand:DI 0 "register_operand" "=r")
945 (minus:DI (match_operand:DI 1 "register_operand" "r")
946 (ltu:DI (match_operand:DI 2 "register_operand" "r")
947 (match_operand:DI 3 "register_operand" "r"))))]
948 "TARGET_64BIT"
949 "sub %2,%3,%%r0\;sub,db %1,%%r0,%0"
950 [(set_attr "type" "binary")
951 (set_attr "length" "8")])
952
953 (define_insn ""
954 [(set (match_operand:SI 0 "register_operand" "=r")
955 (minus:SI (minus:SI (match_operand:SI 1 "register_operand" "r")
956 (ltu:SI (match_operand:SI 2 "register_operand" "r")
957 (match_operand:SI 3 "register_operand" "r")))
958 (match_operand:SI 4 "register_operand" "r")))]
959 ""
960 "sub %2,%3,%%r0\;{subb|sub,b} %1,%4,%0"
961 [(set_attr "type" "binary")
962 (set_attr "length" "8")])
963
964 (define_insn ""
965 [(set (match_operand:DI 0 "register_operand" "=r")
966 (minus:DI (minus:DI (match_operand:DI 1 "register_operand" "r")
967 (ltu:DI (match_operand:DI 2 "register_operand" "r")
968 (match_operand:DI 3 "register_operand" "r")))
969 (match_operand:DI 4 "register_operand" "r")))]
970 "TARGET_64BIT"
971 "sub %2,%3,%%r0\;sub,db %1,%4,%0"
972 [(set_attr "type" "binary")
973 (set_attr "length" "8")])
974
975 ; Match only integers for op3 here. This is used as canonical form of the
976 ; ltu pattern when op3 is an integer. Don't match registers since we can't
977 ; make better code than the general incscc pattern.
978 (define_insn ""
979 [(set (match_operand:SI 0 "register_operand" "=r")
980 (minus:SI (match_operand:SI 1 "register_operand" "r")
981 (leu:SI (match_operand:SI 2 "register_operand" "r")
982 (match_operand:SI 3 "int11_operand" "I"))))]
983 ""
984 "addi %k3,%2,%%r0\;{subb|sub,b} %1,%%r0,%0"
985 [(set_attr "type" "binary")
986 (set_attr "length" "8")])
987
988 (define_insn ""
989 [(set (match_operand:DI 0 "register_operand" "=r")
990 (minus:DI (match_operand:DI 1 "register_operand" "r")
991 (leu:DI (match_operand:DI 2 "register_operand" "r")
992 (match_operand:DI 3 "int11_operand" "I"))))]
993 "TARGET_64BIT"
994 "addi %k3,%2,%%r0\;sub,db %1,%%r0,%0"
995 [(set_attr "type" "binary")
996 (set_attr "length" "8")])
997
998 (define_insn ""
999 [(set (match_operand:SI 0 "register_operand" "=r")
1000 (minus:SI (minus:SI (match_operand:SI 1 "register_operand" "r")
1001 (leu:SI (match_operand:SI 2 "register_operand" "r")
1002 (match_operand:SI 3 "int11_operand" "I")))
1003 (match_operand:SI 4 "register_operand" "r")))]
1004 ""
1005 "addi %k3,%2,%%r0\;{subb|sub,b} %1,%4,%0"
1006 [(set_attr "type" "binary")
1007 (set_attr "length" "8")])
1008
1009 (define_insn ""
1010 [(set (match_operand:DI 0 "register_operand" "=r")
1011 (minus:DI (minus:DI (match_operand:DI 1 "register_operand" "r")
1012 (leu:DI (match_operand:DI 2 "register_operand" "r")
1013 (match_operand:DI 3 "int11_operand" "I")))
1014 (match_operand:DI 4 "register_operand" "r")))]
1015 "TARGET_64BIT"
1016 "addi %k3,%2,%%r0\;sub,db %1,%4,%0"
1017 [(set_attr "type" "binary")
1018 (set_attr "length" "8")])
1019
1020 (define_insn "decscc"
1021 [(set (match_operand:SI 0 "register_operand" "=r,r")
1022 (minus:SI (match_operand:SI 1 "register_operand" "0,?r")
1023 (match_operator:SI 4 "comparison_operator"
1024 [(match_operand:SI 2 "register_operand" "r,r")
1025 (match_operand:SI 3 "arith11_operand" "rI,rI")])))]
1026 ""
1027 "@
1028 {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi -1,%0,%0
1029 {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi,tr -1,%1,%0\;copy %1,%0"
1030 [(set_attr "type" "binary,binary")
1031 (set_attr "length" "8,12")])
1032
1033 (define_insn ""
1034 [(set (match_operand:DI 0 "register_operand" "=r,r")
1035 (minus:DI (match_operand:DI 1 "register_operand" "0,?r")
1036 (match_operator:DI 4 "comparison_operator"
1037 [(match_operand:DI 2 "register_operand" "r,r")
1038 (match_operand:DI 3 "arith11_operand" "rI,rI")])))]
1039 "TARGET_64BIT"
1040 "@
1041 cmp%I3clr,*%B4 %3,%2,%%r0\;addi -1,%0,%0
1042 cmp%I3clr,*%B4 %3,%2,%%r0\;addi,tr -1,%1,%0\;copy %1,%0"
1043 [(set_attr "type" "binary,binary")
1044 (set_attr "length" "8,12")])
1045
1046 ; Patterns for max and min. (There is no need for an earlyclobber in the
1047 ; last alternative since the middle alternative will match if op0 == op1.)
1048
1049 (define_insn "sminsi3"
1050 [(set (match_operand:SI 0 "register_operand" "=r,r,r")
1051 (smin:SI (match_operand:SI 1 "register_operand" "%0,0,r")
1052 (match_operand:SI 2 "arith11_operand" "r,I,M")))]
1053 ""
1054 "@
1055 {comclr|cmpclr},> %2,%0,%%r0\;copy %2,%0
1056 {comiclr|cmpiclr},> %2,%0,%%r0\;ldi %2,%0
1057 {comclr|cmpclr},> %1,%r2,%0\;copy %1,%0"
1058 [(set_attr "type" "multi,multi,multi")
1059 (set_attr "length" "8,8,8")])
1060
1061 (define_insn "smindi3"
1062 [(set (match_operand:DI 0 "register_operand" "=r,r,r")
1063 (smin:DI (match_operand:DI 1 "register_operand" "%0,0,r")
1064 (match_operand:DI 2 "arith11_operand" "r,I,M")))]
1065 "TARGET_64BIT"
1066 "@
1067 cmpclr,*> %2,%0,%%r0\;copy %2,%0
1068 cmpiclr,*> %2,%0,%%r0\;ldi %2,%0
1069 cmpclr,*> %1,%r2,%0\;copy %1,%0"
1070 [(set_attr "type" "multi,multi,multi")
1071 (set_attr "length" "8,8,8")])
1072
1073 (define_insn "uminsi3"
1074 [(set (match_operand:SI 0 "register_operand" "=r,r")
1075 (umin:SI (match_operand:SI 1 "register_operand" "%0,0")
1076 (match_operand:SI 2 "arith11_operand" "r,I")))]
1077 ""
1078 "@
1079 {comclr|cmpclr},>> %2,%0,%%r0\;copy %2,%0
1080 {comiclr|cmpiclr},>> %2,%0,%%r0\;ldi %2,%0"
1081 [(set_attr "type" "multi,multi")
1082 (set_attr "length" "8,8")])
1083
1084 (define_insn "umindi3"
1085 [(set (match_operand:DI 0 "register_operand" "=r,r")
1086 (umin:DI (match_operand:DI 1 "register_operand" "%0,0")
1087 (match_operand:DI 2 "arith11_operand" "r,I")))]
1088 "TARGET_64BIT"
1089 "@
1090 cmpclr,*>> %2,%0,%%r0\;copy %2,%0
1091 cmpiclr,*>> %2,%0,%%r0\;ldi %2,%0"
1092 [(set_attr "type" "multi,multi")
1093 (set_attr "length" "8,8")])
1094
1095 (define_insn "smaxsi3"
1096 [(set (match_operand:SI 0 "register_operand" "=r,r,r")
1097 (smax:SI (match_operand:SI 1 "register_operand" "%0,0,r")
1098 (match_operand:SI 2 "arith11_operand" "r,I,M")))]
1099 ""
1100 "@
1101 {comclr|cmpclr},< %2,%0,%%r0\;copy %2,%0
1102 {comiclr|cmpiclr},< %2,%0,%%r0\;ldi %2,%0
1103 {comclr|cmpclr},< %1,%r2,%0\;copy %1,%0"
1104 [(set_attr "type" "multi,multi,multi")
1105 (set_attr "length" "8,8,8")])
1106
1107 (define_insn "smaxdi3"
1108 [(set (match_operand:DI 0 "register_operand" "=r,r,r")
1109 (smax:DI (match_operand:DI 1 "register_operand" "%0,0,r")
1110 (match_operand:DI 2 "arith11_operand" "r,I,M")))]
1111 "TARGET_64BIT"
1112 "@
1113 cmpclr,*< %2,%0,%%r0\;copy %2,%0
1114 cmpiclr,*< %2,%0,%%r0\;ldi %2,%0
1115 cmpclr,*< %1,%r2,%0\;copy %1,%0"
1116 [(set_attr "type" "multi,multi,multi")
1117 (set_attr "length" "8,8,8")])
1118
1119 (define_insn "umaxsi3"
1120 [(set (match_operand:SI 0 "register_operand" "=r,r")
1121 (umax:SI (match_operand:SI 1 "register_operand" "%0,0")
1122 (match_operand:SI 2 "arith11_operand" "r,I")))]
1123 ""
1124 "@
1125 {comclr|cmpclr},<< %2,%0,%%r0\;copy %2,%0
1126 {comiclr|cmpiclr},<< %2,%0,%%r0\;ldi %2,%0"
1127 [(set_attr "type" "multi,multi")
1128 (set_attr "length" "8,8")])
1129
1130 (define_insn "umaxdi3"
1131 [(set (match_operand:DI 0 "register_operand" "=r,r")
1132 (umax:DI (match_operand:DI 1 "register_operand" "%0,0")
1133 (match_operand:DI 2 "arith11_operand" "r,I")))]
1134 "TARGET_64BIT"
1135 "@
1136 cmpclr,*<< %2,%0,%%r0\;copy %2,%0
1137 cmpiclr,*<< %2,%0,%%r0\;ldi %2,%0"
1138 [(set_attr "type" "multi,multi")
1139 (set_attr "length" "8,8")])
1140
1141 (define_insn "abssi2"
1142 [(set (match_operand:SI 0 "register_operand" "=r")
1143 (abs:SI (match_operand:SI 1 "register_operand" "r")))]
1144 ""
1145 "or,>= %%r0,%1,%0\;subi 0,%0,%0"
1146 [(set_attr "type" "multi")
1147 (set_attr "length" "8")])
1148
1149 (define_insn "absdi2"
1150 [(set (match_operand:DI 0 "register_operand" "=r")
1151 (abs:DI (match_operand:DI 1 "register_operand" "r")))]
1152 "TARGET_64BIT"
1153 "or,*>= %%r0,%1,%0\;subi 0,%0,%0"
1154 [(set_attr "type" "multi")
1155 (set_attr "length" "8")])
1156
1157 ;;; Experimental conditional move patterns
1158
1159 (define_expand "movsicc"
1160 [(set (match_operand:SI 0 "register_operand" "")
1161 (if_then_else:SI
1162 (match_operand 1 "comparison_operator" "")
1163 (match_operand:SI 2 "reg_or_cint_move_operand" "")
1164 (match_operand:SI 3 "reg_or_cint_move_operand" "")))]
1165 ""
1166 "
1167 {
1168 if (GET_MODE (XEXP (operands[1], 0)) != SImode
1169 || GET_MODE (XEXP (operands[1], 0)) != GET_MODE (XEXP (operands[1], 1)))
1170 FAIL;
1171 }")
1172
1173 ;; We used to accept any register for op1.
1174 ;;
1175 ;; However, it loses sometimes because the compiler will end up using
1176 ;; different registers for op0 and op1 in some critical cases. local-alloc
1177 ;; will not tie op0 and op1 because op0 is used in multiple basic blocks.
1178 ;;
1179 ;; If/when global register allocation supports tying we should allow any
1180 ;; register for op1 again.
1181 (define_insn ""
1182 [(set (match_operand:SI 0 "register_operand" "=r,r,r,r")
1183 (if_then_else:SI
1184 (match_operator 2 "comparison_operator"
1185 [(match_operand:SI 3 "register_operand" "r,r,r,r")
1186 (match_operand:SI 4 "arith11_operand" "rI,rI,rI,rI")])
1187 (match_operand:SI 1 "reg_or_cint_move_operand" "0,J,N,K")
1188 (const_int 0)))]
1189 ""
1190 "@
1191 {com%I4clr|cmp%I4clr},%S2 %4,%3,%%r0\;ldi 0,%0
1192 {com%I4clr|cmp%I4clr},%B2 %4,%3,%0\;ldi %1,%0
1193 {com%I4clr|cmp%I4clr},%B2 %4,%3,%0\;ldil L'%1,%0
1194 {com%I4clr|cmp%I4clr},%B2 %4,%3,%0\;{zdepi|depwi,z} %Z1,%0"
1195 [(set_attr "type" "multi,multi,multi,nullshift")
1196 (set_attr "length" "8,8,8,8")])
1197
1198 (define_insn ""
1199 [(set (match_operand:SI 0 "register_operand" "=r,r,r,r,r,r,r,r")
1200 (if_then_else:SI
1201 (match_operator 5 "comparison_operator"
1202 [(match_operand:SI 3 "register_operand" "r,r,r,r,r,r,r,r")
1203 (match_operand:SI 4 "arith11_operand" "rI,rI,rI,rI,rI,rI,rI,rI")])
1204 (match_operand:SI 1 "reg_or_cint_move_operand" "0,0,0,0,r,J,N,K")
1205 (match_operand:SI 2 "reg_or_cint_move_operand" "r,J,N,K,0,0,0,0")))]
1206 ""
1207 "@
1208 {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;copy %2,%0
1209 {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;ldi %2,%0
1210 {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;ldil L'%2,%0
1211 {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;{zdepi|depwi,z} %Z2,%0
1212 {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;copy %1,%0
1213 {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;ldi %1,%0
1214 {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;ldil L'%1,%0
1215 {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;{zdepi|depwi,z} %Z1,%0"
1216 [(set_attr "type" "multi,multi,multi,nullshift,multi,multi,multi,nullshift")
1217 (set_attr "length" "8,8,8,8,8,8,8,8")])
1218
1219 (define_expand "movdicc"
1220 [(set (match_operand:DI 0 "register_operand" "")
1221 (if_then_else:DI
1222 (match_operand 1 "comparison_operator" "")
1223 (match_operand:DI 2 "reg_or_cint_move_operand" "")
1224 (match_operand:DI 3 "reg_or_cint_move_operand" "")))]
1225 "TARGET_64BIT"
1226 "
1227 {
1228 if (GET_MODE (XEXP (operands[1], 0)) != DImode
1229 || GET_MODE (XEXP (operands[1], 0)) != GET_MODE (XEXP (operands[1], 1)))
1230 FAIL;
1231 }")
1232
1233 ; We need the first constraint alternative in order to avoid
1234 ; earlyclobbers on all other alternatives.
1235 (define_insn ""
1236 [(set (match_operand:DI 0 "register_operand" "=r,r,r,r,r")
1237 (if_then_else:DI
1238 (match_operator 2 "comparison_operator"
1239 [(match_operand:DI 3 "register_operand" "r,r,r,r,r")
1240 (match_operand:DI 4 "arith11_operand" "rI,rI,rI,rI,rI")])
1241 (match_operand:DI 1 "reg_or_cint_move_operand" "0,r,J,N,K")
1242 (const_int 0)))]
1243 "TARGET_64BIT"
1244 "@
1245 cmp%I4clr,*%S2 %4,%3,%%r0\;ldi 0,%0
1246 cmp%I4clr,*%B2 %4,%3,%0\;copy %1,%0
1247 cmp%I4clr,*%B2 %4,%3,%0\;ldi %1,%0
1248 cmp%I4clr,*%B2 %4,%3,%0\;ldil L'%1,%0
1249 cmp%I4clr,*%B2 %4,%3,%0\;depdi,z %z1,%0"
1250 [(set_attr "type" "multi,multi,multi,multi,nullshift")
1251 (set_attr "length" "8,8,8,8,8")])
1252
1253 (define_insn ""
1254 [(set (match_operand:DI 0 "register_operand" "=r,r,r,r,r,r,r,r")
1255 (if_then_else:DI
1256 (match_operator 5 "comparison_operator"
1257 [(match_operand:DI 3 "register_operand" "r,r,r,r,r,r,r,r")
1258 (match_operand:DI 4 "arith11_operand" "rI,rI,rI,rI,rI,rI,rI,rI")])
1259 (match_operand:DI 1 "reg_or_cint_move_operand" "0,0,0,0,r,J,N,K")
1260 (match_operand:DI 2 "reg_or_cint_move_operand" "r,J,N,K,0,0,0,0")))]
1261 "TARGET_64BIT"
1262 "@
1263 cmp%I4clr,*%S5 %4,%3,%%r0\;copy %2,%0
1264 cmp%I4clr,*%S5 %4,%3,%%r0\;ldi %2,%0
1265 cmp%I4clr,*%S5 %4,%3,%%r0\;ldil L'%2,%0
1266 cmp%I4clr,*%S5 %4,%3,%%r0\;depdi,z %z2,%0
1267 cmp%I4clr,*%B5 %4,%3,%%r0\;copy %1,%0
1268 cmp%I4clr,*%B5 %4,%3,%%r0\;ldi %1,%0
1269 cmp%I4clr,*%B5 %4,%3,%%r0\;ldil L'%1,%0
1270 cmp%I4clr,*%B5 %4,%3,%%r0\;depdi,z %z1,%0"
1271 [(set_attr "type" "multi,multi,multi,nullshift,multi,multi,multi,nullshift")
1272 (set_attr "length" "8,8,8,8,8,8,8,8")])
1273
1274 ;; Conditional Branches
1275
1276 (define_expand "cbranchdi4"
1277 [(set (pc)
1278 (if_then_else (match_operator 0 "ordered_comparison_operator"
1279 [(match_operand:DI 1 "reg_or_0_operand" "")
1280 (match_operand:DI 2 "register_operand" "")])
1281 (label_ref (match_operand 3 "" ""))
1282 (pc)))]
1283 "TARGET_64BIT"
1284 "")
1285
1286 (define_expand "cbranchsi4"
1287 [(set (pc)
1288 (if_then_else (match_operator 0 "ordered_comparison_operator"
1289 [(match_operand:SI 1 "reg_or_0_operand" "")
1290 (match_operand:SI 2 "arith5_operand" "")])
1291 (label_ref (match_operand 3 "" ""))
1292 (pc)))]
1293 ""
1294 "")
1295
1296 (define_expand "cbranchsf4"
1297 [(set (pc)
1298 (if_then_else (match_operator 0 "comparison_operator"
1299 [(match_operand:SF 1 "reg_or_0_operand" "")
1300 (match_operand:SF 2 "reg_or_0_operand" "")])
1301 (label_ref (match_operand 3 "" ""))
1302 (pc)))]
1303 ""
1304 "
1305 {
1306 emit_bcond_fp (operands);
1307 DONE;
1308 }")
1309
1310
1311 (define_expand "cbranchdf4"
1312 [(set (pc)
1313 (if_then_else (match_operator 0 "comparison_operator"
1314 [(match_operand:DF 1 "reg_or_0_operand" "")
1315 (match_operand:DF 2 "reg_or_0_operand" "")])
1316 (label_ref (match_operand 3 "" ""))
1317 (pc)))]
1318 ""
1319 "
1320 {
1321 emit_bcond_fp (operands);
1322 DONE;
1323 }")
1324
1325 ;; Match the branch patterns.
1326
1327
1328 ;; Note a long backward conditional branch with an annulled delay slot
1329 ;; has a length of 12.
1330 (define_insn ""
1331 [(set (pc)
1332 (if_then_else
1333 (match_operator 3 "comparison_operator"
1334 [(match_operand:SI 1 "reg_or_0_operand" "rM")
1335 (match_operand:SI 2 "arith5_operand" "rL")])
1336 (label_ref (match_operand 0 "" ""))
1337 (pc)))]
1338 ""
1339 "*
1340 {
1341 return output_cbranch (operands, 0, insn);
1342 }"
1343 [(set_attr "type" "cbranch")
1344 (set (attr "length")
1345 (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1346 (const_int MAX_12BIT_OFFSET))
1347 (const_int 4)
1348 (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1349 (const_int MAX_17BIT_OFFSET))
1350 (const_int 8)
1351 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1352 (const_int 24)
1353 (eq (symbol_ref "flag_pic") (const_int 0))
1354 (const_int 20)]
1355 (const_int 28)))])
1356
1357 ;; Match the negated branch.
1358
1359 (define_insn ""
1360 [(set (pc)
1361 (if_then_else
1362 (match_operator 3 "comparison_operator"
1363 [(match_operand:SI 1 "reg_or_0_operand" "rM")
1364 (match_operand:SI 2 "arith5_operand" "rL")])
1365 (pc)
1366 (label_ref (match_operand 0 "" ""))))]
1367 ""
1368 "*
1369 {
1370 return output_cbranch (operands, 1, insn);
1371 }"
1372 [(set_attr "type" "cbranch")
1373 (set (attr "length")
1374 (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1375 (const_int MAX_12BIT_OFFSET))
1376 (const_int 4)
1377 (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1378 (const_int MAX_17BIT_OFFSET))
1379 (const_int 8)
1380 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1381 (const_int 24)
1382 (eq (symbol_ref "flag_pic") (const_int 0))
1383 (const_int 20)]
1384 (const_int 28)))])
1385
1386 (define_insn ""
1387 [(set (pc)
1388 (if_then_else
1389 (match_operator 3 "comparison_operator"
1390 [(match_operand:DI 1 "reg_or_0_operand" "rM")
1391 (match_operand:DI 2 "reg_or_0_operand" "rM")])
1392 (label_ref (match_operand 0 "" ""))
1393 (pc)))]
1394 "TARGET_64BIT"
1395 "*
1396 {
1397 return output_cbranch (operands, 0, insn);
1398 }"
1399 [(set_attr "type" "cbranch")
1400 (set (attr "length")
1401 (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1402 (const_int MAX_12BIT_OFFSET))
1403 (const_int 4)
1404 (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1405 (const_int MAX_17BIT_OFFSET))
1406 (const_int 8)
1407 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1408 (const_int 24)
1409 (eq (symbol_ref "flag_pic") (const_int 0))
1410 (const_int 20)]
1411 (const_int 28)))])
1412
1413 ;; Match the negated branch.
1414
1415 (define_insn ""
1416 [(set (pc)
1417 (if_then_else
1418 (match_operator 3 "comparison_operator"
1419 [(match_operand:DI 1 "reg_or_0_operand" "rM")
1420 (match_operand:DI 2 "reg_or_0_operand" "rM")])
1421 (pc)
1422 (label_ref (match_operand 0 "" ""))))]
1423 "TARGET_64BIT"
1424 "*
1425 {
1426 return output_cbranch (operands, 1, insn);
1427 }"
1428 [(set_attr "type" "cbranch")
1429 (set (attr "length")
1430 (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1431 (const_int MAX_12BIT_OFFSET))
1432 (const_int 4)
1433 (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1434 (const_int MAX_17BIT_OFFSET))
1435 (const_int 8)
1436 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1437 (const_int 24)
1438 (eq (symbol_ref "flag_pic") (const_int 0))
1439 (const_int 20)]
1440 (const_int 28)))])
1441 (define_insn ""
1442 [(set (pc)
1443 (if_then_else
1444 (match_operator 3 "cmpib_comparison_operator"
1445 [(match_operand:DI 1 "reg_or_0_operand" "rM")
1446 (match_operand:DI 2 "arith5_operand" "rL")])
1447 (label_ref (match_operand 0 "" ""))
1448 (pc)))]
1449 "TARGET_64BIT"
1450 "*
1451 {
1452 return output_cbranch (operands, 0, insn);
1453 }"
1454 [(set_attr "type" "cbranch")
1455 (set (attr "length")
1456 (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1457 (const_int MAX_12BIT_OFFSET))
1458 (const_int 4)
1459 (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1460 (const_int MAX_17BIT_OFFSET))
1461 (const_int 8)
1462 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1463 (const_int 24)
1464 (eq (symbol_ref "flag_pic") (const_int 0))
1465 (const_int 20)]
1466 (const_int 28)))])
1467
1468 ;; Match the negated branch.
1469
1470 (define_insn ""
1471 [(set (pc)
1472 (if_then_else
1473 (match_operator 3 "cmpib_comparison_operator"
1474 [(match_operand:DI 1 "reg_or_0_operand" "rM")
1475 (match_operand:DI 2 "arith5_operand" "rL")])
1476 (pc)
1477 (label_ref (match_operand 0 "" ""))))]
1478 "TARGET_64BIT"
1479 "*
1480 {
1481 return output_cbranch (operands, 1, insn);
1482 }"
1483 [(set_attr "type" "cbranch")
1484 (set (attr "length")
1485 (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1486 (const_int MAX_12BIT_OFFSET))
1487 (const_int 4)
1488 (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1489 (const_int MAX_17BIT_OFFSET))
1490 (const_int 8)
1491 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1492 (const_int 24)
1493 (eq (symbol_ref "flag_pic") (const_int 0))
1494 (const_int 20)]
1495 (const_int 28)))])
1496
1497 ;; Branch on Bit patterns.
1498 (define_insn ""
1499 [(set (pc)
1500 (if_then_else
1501 (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1502 (const_int 1)
1503 (match_operand:SI 1 "uint5_operand" ""))
1504 (const_int 0))
1505 (label_ref (match_operand 2 "" ""))
1506 (pc)))]
1507 ""
1508 "*
1509 {
1510 return output_bb (operands, 0, insn, 0);
1511 }"
1512 [(set_attr "type" "cbranch")
1513 (set (attr "length")
1514 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1515 (const_int MAX_12BIT_OFFSET))
1516 (const_int 4)
1517 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1518 (const_int MAX_17BIT_OFFSET))
1519 (const_int 8)
1520 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1521 (const_int 24)
1522 (eq (symbol_ref "flag_pic") (const_int 0))
1523 (const_int 20)]
1524 (const_int 28)))])
1525
1526 (define_insn ""
1527 [(set (pc)
1528 (if_then_else
1529 (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1530 (const_int 1)
1531 (match_operand:DI 1 "uint32_operand" ""))
1532 (const_int 0))
1533 (label_ref (match_operand 2 "" ""))
1534 (pc)))]
1535 "TARGET_64BIT"
1536 "*
1537 {
1538 return output_bb (operands, 0, insn, 0);
1539 }"
1540 [(set_attr "type" "cbranch")
1541 (set (attr "length")
1542 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1543 (const_int MAX_12BIT_OFFSET))
1544 (const_int 4)
1545 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1546 (const_int MAX_17BIT_OFFSET))
1547 (const_int 8)
1548 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1549 (const_int 24)
1550 (eq (symbol_ref "flag_pic") (const_int 0))
1551 (const_int 20)]
1552 (const_int 28)))])
1553
1554 (define_insn ""
1555 [(set (pc)
1556 (if_then_else
1557 (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1558 (const_int 1)
1559 (match_operand:SI 1 "uint5_operand" ""))
1560 (const_int 0))
1561 (pc)
1562 (label_ref (match_operand 2 "" ""))))]
1563 ""
1564 "*
1565 {
1566 return output_bb (operands, 1, insn, 0);
1567 }"
1568 [(set_attr "type" "cbranch")
1569 (set (attr "length")
1570 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1571 (const_int MAX_12BIT_OFFSET))
1572 (const_int 4)
1573 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1574 (const_int MAX_17BIT_OFFSET))
1575 (const_int 8)
1576 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1577 (const_int 24)
1578 (eq (symbol_ref "flag_pic") (const_int 0))
1579 (const_int 20)]
1580 (const_int 28)))])
1581
1582 (define_insn ""
1583 [(set (pc)
1584 (if_then_else
1585 (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1586 (const_int 1)
1587 (match_operand:DI 1 "uint32_operand" ""))
1588 (const_int 0))
1589 (pc)
1590 (label_ref (match_operand 2 "" ""))))]
1591 "TARGET_64BIT"
1592 "*
1593 {
1594 return output_bb (operands, 1, insn, 0);
1595 }"
1596 [(set_attr "type" "cbranch")
1597 (set (attr "length")
1598 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1599 (const_int MAX_12BIT_OFFSET))
1600 (const_int 4)
1601 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1602 (const_int MAX_17BIT_OFFSET))
1603 (const_int 8)
1604 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1605 (const_int 24)
1606 (eq (symbol_ref "flag_pic") (const_int 0))
1607 (const_int 20)]
1608 (const_int 28)))])
1609
1610 (define_insn ""
1611 [(set (pc)
1612 (if_then_else
1613 (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1614 (const_int 1)
1615 (match_operand:SI 1 "uint5_operand" ""))
1616 (const_int 0))
1617 (label_ref (match_operand 2 "" ""))
1618 (pc)))]
1619 ""
1620 "*
1621 {
1622 return output_bb (operands, 0, insn, 1);
1623 }"
1624 [(set_attr "type" "cbranch")
1625 (set (attr "length")
1626 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1627 (const_int MAX_12BIT_OFFSET))
1628 (const_int 4)
1629 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1630 (const_int MAX_17BIT_OFFSET))
1631 (const_int 8)
1632 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1633 (const_int 24)
1634 (eq (symbol_ref "flag_pic") (const_int 0))
1635 (const_int 20)]
1636 (const_int 28)))])
1637
1638 (define_insn ""
1639 [(set (pc)
1640 (if_then_else
1641 (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1642 (const_int 1)
1643 (match_operand:DI 1 "uint32_operand" ""))
1644 (const_int 0))
1645 (label_ref (match_operand 2 "" ""))
1646 (pc)))]
1647 "TARGET_64BIT"
1648 "*
1649 {
1650 return output_bb (operands, 0, insn, 1);
1651 }"
1652 [(set_attr "type" "cbranch")
1653 (set (attr "length")
1654 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1655 (const_int MAX_12BIT_OFFSET))
1656 (const_int 4)
1657 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1658 (const_int MAX_17BIT_OFFSET))
1659 (const_int 8)
1660 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1661 (const_int 24)
1662 (eq (symbol_ref "flag_pic") (const_int 0))
1663 (const_int 20)]
1664 (const_int 28)))])
1665
1666 (define_insn ""
1667 [(set (pc)
1668 (if_then_else
1669 (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1670 (const_int 1)
1671 (match_operand:SI 1 "uint5_operand" ""))
1672 (const_int 0))
1673 (pc)
1674 (label_ref (match_operand 2 "" ""))))]
1675 ""
1676 "*
1677 {
1678 return output_bb (operands, 1, insn, 1);
1679 }"
1680 [(set_attr "type" "cbranch")
1681 (set (attr "length")
1682 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1683 (const_int MAX_12BIT_OFFSET))
1684 (const_int 4)
1685 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1686 (const_int MAX_17BIT_OFFSET))
1687 (const_int 8)
1688 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1689 (const_int 24)
1690 (eq (symbol_ref "flag_pic") (const_int 0))
1691 (const_int 20)]
1692 (const_int 28)))])
1693
1694 (define_insn ""
1695 [(set (pc)
1696 (if_then_else
1697 (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1698 (const_int 1)
1699 (match_operand:DI 1 "uint32_operand" ""))
1700 (const_int 0))
1701 (pc)
1702 (label_ref (match_operand 2 "" ""))))]
1703 "TARGET_64BIT"
1704 "*
1705 {
1706 return output_bb (operands, 1, insn, 1);
1707 }"
1708 [(set_attr "type" "cbranch")
1709 (set (attr "length")
1710 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1711 (const_int MAX_12BIT_OFFSET))
1712 (const_int 4)
1713 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1714 (const_int MAX_17BIT_OFFSET))
1715 (const_int 8)
1716 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1717 (const_int 24)
1718 (eq (symbol_ref "flag_pic") (const_int 0))
1719 (const_int 20)]
1720 (const_int 28)))])
1721
1722 ;; Branch on Variable Bit patterns.
1723 (define_insn ""
1724 [(set (pc)
1725 (if_then_else
1726 (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1727 (const_int 1)
1728 (match_operand:SI 1 "register_operand" "q"))
1729 (const_int 0))
1730 (label_ref (match_operand 2 "" ""))
1731 (pc)))]
1732 ""
1733 "*
1734 {
1735 return output_bvb (operands, 0, insn, 0);
1736 }"
1737 [(set_attr "type" "cbranch")
1738 (set (attr "length")
1739 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1740 (const_int MAX_12BIT_OFFSET))
1741 (const_int 4)
1742 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1743 (const_int MAX_17BIT_OFFSET))
1744 (const_int 8)
1745 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1746 (const_int 24)
1747 (eq (symbol_ref "flag_pic") (const_int 0))
1748 (const_int 20)]
1749 (const_int 28)))])
1750
1751 (define_insn ""
1752 [(set (pc)
1753 (if_then_else
1754 (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1755 (const_int 1)
1756 (match_operand:DI 1 "register_operand" "q"))
1757 (const_int 0))
1758 (label_ref (match_operand 2 "" ""))
1759 (pc)))]
1760 "TARGET_64BIT"
1761 "*
1762 {
1763 return output_bvb (operands, 0, insn, 0);
1764 }"
1765 [(set_attr "type" "cbranch")
1766 (set (attr "length")
1767 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1768 (const_int MAX_12BIT_OFFSET))
1769 (const_int 4)
1770 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1771 (const_int MAX_17BIT_OFFSET))
1772 (const_int 8)
1773 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1774 (const_int 24)
1775 (eq (symbol_ref "flag_pic") (const_int 0))
1776 (const_int 20)]
1777 (const_int 28)))])
1778
1779 (define_insn ""
1780 [(set (pc)
1781 (if_then_else
1782 (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1783 (const_int 1)
1784 (match_operand:SI 1 "register_operand" "q"))
1785 (const_int 0))
1786 (pc)
1787 (label_ref (match_operand 2 "" ""))))]
1788 ""
1789 "*
1790 {
1791 return output_bvb (operands, 1, insn, 0);
1792 }"
1793 [(set_attr "type" "cbranch")
1794 (set (attr "length")
1795 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1796 (const_int MAX_12BIT_OFFSET))
1797 (const_int 4)
1798 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1799 (const_int MAX_17BIT_OFFSET))
1800 (const_int 8)
1801 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1802 (const_int 24)
1803 (eq (symbol_ref "flag_pic") (const_int 0))
1804 (const_int 20)]
1805 (const_int 28)))])
1806
1807 (define_insn ""
1808 [(set (pc)
1809 (if_then_else
1810 (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1811 (const_int 1)
1812 (match_operand:DI 1 "register_operand" "q"))
1813 (const_int 0))
1814 (pc)
1815 (label_ref (match_operand 2 "" ""))))]
1816 "TARGET_64BIT"
1817 "*
1818 {
1819 return output_bvb (operands, 1, insn, 0);
1820 }"
1821 [(set_attr "type" "cbranch")
1822 (set (attr "length")
1823 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1824 (const_int MAX_12BIT_OFFSET))
1825 (const_int 4)
1826 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1827 (const_int MAX_17BIT_OFFSET))
1828 (const_int 8)
1829 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1830 (const_int 24)
1831 (eq (symbol_ref "flag_pic") (const_int 0))
1832 (const_int 20)]
1833 (const_int 28)))])
1834
1835 (define_insn ""
1836 [(set (pc)
1837 (if_then_else
1838 (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1839 (const_int 1)
1840 (match_operand:SI 1 "register_operand" "q"))
1841 (const_int 0))
1842 (label_ref (match_operand 2 "" ""))
1843 (pc)))]
1844 ""
1845 "*
1846 {
1847 return output_bvb (operands, 0, insn, 1);
1848 }"
1849 [(set_attr "type" "cbranch")
1850 (set (attr "length")
1851 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1852 (const_int MAX_12BIT_OFFSET))
1853 (const_int 4)
1854 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1855 (const_int MAX_17BIT_OFFSET))
1856 (const_int 8)
1857 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1858 (const_int 24)
1859 (eq (symbol_ref "flag_pic") (const_int 0))
1860 (const_int 20)]
1861 (const_int 28)))])
1862
1863 (define_insn ""
1864 [(set (pc)
1865 (if_then_else
1866 (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1867 (const_int 1)
1868 (match_operand:DI 1 "register_operand" "q"))
1869 (const_int 0))
1870 (label_ref (match_operand 2 "" ""))
1871 (pc)))]
1872 "TARGET_64BIT"
1873 "*
1874 {
1875 return output_bvb (operands, 0, insn, 1);
1876 }"
1877 [(set_attr "type" "cbranch")
1878 (set (attr "length")
1879 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1880 (const_int MAX_12BIT_OFFSET))
1881 (const_int 4)
1882 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1883 (const_int MAX_17BIT_OFFSET))
1884 (const_int 8)
1885 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1886 (const_int 24)
1887 (eq (symbol_ref "flag_pic") (const_int 0))
1888 (const_int 20)]
1889 (const_int 28)))])
1890
1891 (define_insn ""
1892 [(set (pc)
1893 (if_then_else
1894 (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1895 (const_int 1)
1896 (match_operand:SI 1 "register_operand" "q"))
1897 (const_int 0))
1898 (pc)
1899 (label_ref (match_operand 2 "" ""))))]
1900 ""
1901 "*
1902 {
1903 return output_bvb (operands, 1, insn, 1);
1904 }"
1905 [(set_attr "type" "cbranch")
1906 (set (attr "length")
1907 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1908 (const_int MAX_12BIT_OFFSET))
1909 (const_int 4)
1910 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1911 (const_int MAX_17BIT_OFFSET))
1912 (const_int 8)
1913 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1914 (const_int 24)
1915 (eq (symbol_ref "flag_pic") (const_int 0))
1916 (const_int 20)]
1917 (const_int 28)))])
1918
1919 (define_insn ""
1920 [(set (pc)
1921 (if_then_else
1922 (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1923 (const_int 1)
1924 (match_operand:DI 1 "register_operand" "q"))
1925 (const_int 0))
1926 (pc)
1927 (label_ref (match_operand 2 "" ""))))]
1928 "TARGET_64BIT"
1929 "*
1930 {
1931 return output_bvb (operands, 1, insn, 1);
1932 }"
1933 [(set_attr "type" "cbranch")
1934 (set (attr "length")
1935 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1936 (const_int MAX_12BIT_OFFSET))
1937 (const_int 4)
1938 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1939 (const_int MAX_17BIT_OFFSET))
1940 (const_int 8)
1941 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1942 (const_int 24)
1943 (eq (symbol_ref "flag_pic") (const_int 0))
1944 (const_int 20)]
1945 (const_int 28)))])
1946
1947 ;; Floating point branches
1948
1949 ;; ??? Nullification is handled differently from other branches.
1950 ;; If nullification is specified, the delay slot is nullified on any
1951 ;; taken branch regardless of branch direction.
1952 (define_insn ""
1953 [(set (pc) (if_then_else (ne (reg:CCFP 0) (const_int 0))
1954 (label_ref (match_operand 0 "" ""))
1955 (pc)))]
1956 "!TARGET_SOFT_FLOAT"
1957 "*
1958 {
1959 int length = get_attr_length (insn);
1960 rtx xoperands[1];
1961 int nullify, xdelay;
1962
1963 if (length < 16)
1964 return \"ftest\;b%* %l0\";
1965
1966 if (dbr_sequence_length () == 0 || INSN_ANNULLED_BRANCH_P (insn))
1967 {
1968 nullify = 1;
1969 xdelay = 0;
1970 xoperands[0] = GEN_INT (length - 8);
1971 }
1972 else
1973 {
1974 nullify = 0;
1975 xdelay = 1;
1976 xoperands[0] = GEN_INT (length - 4);
1977 }
1978
1979 if (nullify)
1980 output_asm_insn (\"ftest\;add,tr %%r0,%%r0,%%r0\;b,n .+%0\", xoperands);
1981 else
1982 output_asm_insn (\"ftest\;add,tr %%r0,%%r0,%%r0\;b .+%0\", xoperands);
1983 return output_lbranch (operands[0], insn, xdelay);
1984 }"
1985 [(set_attr "type" "fbranch")
1986 (set (attr "length")
1987 (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1988 (const_int MAX_17BIT_OFFSET))
1989 (const_int 8)
1990 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1991 (const_int 32)
1992 (eq (symbol_ref "flag_pic") (const_int 0))
1993 (const_int 28)]
1994 (const_int 36)))])
1995
1996 (define_insn ""
1997 [(set (pc) (if_then_else (ne (reg:CCFP 0) (const_int 0))
1998 (pc)
1999 (label_ref (match_operand 0 "" ""))))]
2000 "!TARGET_SOFT_FLOAT"
2001 "*
2002 {
2003 int length = get_attr_length (insn);
2004 rtx xoperands[1];
2005 int nullify, xdelay;
2006
2007 if (length < 16)
2008 return \"ftest\;add,tr %%r0,%%r0,%%r0\;b%* %0\";
2009
2010 if (dbr_sequence_length () == 0 || INSN_ANNULLED_BRANCH_P (insn))
2011 {
2012 nullify = 1;
2013 xdelay = 0;
2014 xoperands[0] = GEN_INT (length - 4);
2015 }
2016 else
2017 {
2018 nullify = 0;
2019 xdelay = 1;
2020 xoperands[0] = GEN_INT (length);
2021 }
2022
2023 if (nullify)
2024 output_asm_insn (\"ftest\;b,n .+%0\", xoperands);
2025 else
2026 output_asm_insn (\"ftest\;b .+%0\", xoperands);
2027 return output_lbranch (operands[0], insn, xdelay);
2028 }"
2029 [(set_attr "type" "fbranch")
2030 (set (attr "length")
2031 (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
2032 (const_int MAX_17BIT_OFFSET))
2033 (const_int 12)
2034 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2035 (const_int 28)
2036 (eq (symbol_ref "flag_pic") (const_int 0))
2037 (const_int 24)]
2038 (const_int 32)))])
2039
2040 ;; Move instructions
2041
2042 (define_expand "movsi"
2043 [(set (match_operand:SI 0 "general_operand" "")
2044 (match_operand:SI 1 "general_operand" ""))]
2045 ""
2046 "
2047 {
2048 if (emit_move_sequence (operands, SImode, 0))
2049 DONE;
2050 }")
2051
2052 ;; Handle SImode input reloads requiring %r1 as a scratch register.
2053 (define_expand "reload_insi_r1"
2054 [(set (match_operand:SI 0 "register_operand" "=Z")
2055 (match_operand:SI 1 "non_hard_reg_operand" ""))
2056 (clobber (match_operand:SI 2 "register_operand" "=&a"))]
2057 ""
2058 "
2059 {
2060 if (emit_move_sequence (operands, SImode, operands[2]))
2061 DONE;
2062
2063 /* We don't want the clobber emitted, so handle this ourselves. */
2064 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2065 DONE;
2066 }")
2067
2068 ;; Handle SImode input reloads requiring a general register as a
2069 ;; scratch register.
2070 (define_expand "reload_insi"
2071 [(set (match_operand:SI 0 "register_operand" "=Z")
2072 (match_operand:SI 1 "non_hard_reg_operand" ""))
2073 (clobber (match_operand:SI 2 "register_operand" "=&r"))]
2074 ""
2075 "
2076 {
2077 if (emit_move_sequence (operands, SImode, operands[2]))
2078 DONE;
2079
2080 /* We don't want the clobber emitted, so handle this ourselves. */
2081 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2082 DONE;
2083 }")
2084
2085 ;; Handle SImode output reloads requiring a general register as a
2086 ;; scratch register.
2087 (define_expand "reload_outsi"
2088 [(set (match_operand:SI 0 "non_hard_reg_operand" "")
2089 (match_operand:SI 1 "register_operand" "Z"))
2090 (clobber (match_operand:SI 2 "register_operand" "=&r"))]
2091 ""
2092 "
2093 {
2094 if (emit_move_sequence (operands, SImode, operands[2]))
2095 DONE;
2096
2097 /* We don't want the clobber emitted, so handle this ourselves. */
2098 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2099 DONE;
2100 }")
2101
2102 (define_insn ""
2103 [(set (match_operand:SI 0 "move_dest_operand"
2104 "=r,r,r,r,r,r,Q,!*q,!r,!*f,*f,T,?r,?*f")
2105 (match_operand:SI 1 "move_src_operand"
2106 "A,r,J,N,K,RQ,rM,!rM,!*q,!*fM,RT,*f,*f,r"))]
2107 "(register_operand (operands[0], SImode)
2108 || reg_or_0_operand (operands[1], SImode))
2109 && !TARGET_SOFT_FLOAT
2110 && !TARGET_64BIT"
2111 "@
2112 ldw RT'%A1,%0
2113 copy %1,%0
2114 ldi %1,%0
2115 ldil L'%1,%0
2116 {zdepi|depwi,z} %Z1,%0
2117 ldw%M1 %1,%0
2118 stw%M0 %r1,%0
2119 mtsar %r1
2120 {mfctl|mfctl,w} %%sar,%0
2121 fcpy,sgl %f1,%0
2122 fldw%F1 %1,%0
2123 fstw%F0 %1,%0
2124 {fstws|fstw} %1,-16(%%sp)\n\t{ldws|ldw} -16(%%sp),%0
2125 {stws|stw} %1,-16(%%sp)\n\t{fldws|fldw} -16(%%sp),%0"
2126 [(set_attr "type" "load,move,move,move,shift,load,store,move,move,fpalu,fpload,fpstore,fpstore_load,store_fpload")
2127 (set_attr "pa_combine_type" "addmove")
2128 (set_attr "length" "4,4,4,4,4,4,4,4,4,4,4,4,8,8")])
2129
2130 (define_insn ""
2131 [(set (match_operand:SI 0 "move_dest_operand"
2132 "=r,r,r,r,r,r,Q,!*q,!r,!*f,*f,T")
2133 (match_operand:SI 1 "move_src_operand"
2134 "A,r,J,N,K,RQ,rM,!rM,!*q,!*fM,RT,*f"))]
2135 "(register_operand (operands[0], SImode)
2136 || reg_or_0_operand (operands[1], SImode))
2137 && !TARGET_SOFT_FLOAT
2138 && TARGET_64BIT"
2139 "@
2140 ldw RT'%A1,%0
2141 copy %1,%0
2142 ldi %1,%0
2143 ldil L'%1,%0
2144 {zdepi|depwi,z} %Z1,%0
2145 ldw%M1 %1,%0
2146 stw%M0 %r1,%0
2147 mtsar %r1
2148 {mfctl|mfctl,w} %%sar,%0
2149 fcpy,sgl %f1,%0
2150 fldw%F1 %1,%0
2151 fstw%F0 %1,%0"
2152 [(set_attr "type" "load,move,move,move,shift,load,store,move,move,fpalu,fpload,fpstore")
2153 (set_attr "pa_combine_type" "addmove")
2154 (set_attr "length" "4,4,4,4,4,4,4,4,4,4,4,4")])
2155
2156 (define_insn ""
2157 [(set (match_operand:SI 0 "indexed_memory_operand" "=R")
2158 (match_operand:SI 1 "register_operand" "f"))]
2159 "!TARGET_SOFT_FLOAT
2160 && !TARGET_DISABLE_INDEXING
2161 && reload_completed"
2162 "fstw%F0 %1,%0"
2163 [(set_attr "type" "fpstore")
2164 (set_attr "pa_combine_type" "addmove")
2165 (set_attr "length" "4")])
2166
2167 ; Rewrite RTL using an indexed store. This will allow the insn that
2168 ; computes the address to be deleted if the register it sets is dead.
2169 (define_peephole2
2170 [(set (match_operand:SI 0 "register_operand" "")
2171 (plus:SI (mult:SI (match_operand:SI 1 "register_operand" "")
2172 (const_int 4))
2173 (match_operand:SI 2 "register_operand" "")))
2174 (set (mem:SI (match_dup 0))
2175 (match_operand:SI 3 "register_operand" ""))]
2176 "!TARGET_SOFT_FLOAT
2177 && !TARGET_DISABLE_INDEXING
2178 && REG_OK_FOR_BASE_P (operands[2])
2179 && FP_REGNO_P (REGNO (operands[3]))"
2180 [(set (mem:SI (plus:SI (mult:SI (match_dup 1) (const_int 4)) (match_dup 2)))
2181 (match_dup 3))
2182 (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 4))
2183 (match_dup 2)))]
2184 "")
2185
2186 (define_peephole2
2187 [(set (match_operand:SI 0 "register_operand" "")
2188 (plus:SI (match_operand:SI 2 "register_operand" "")
2189 (mult:SI (match_operand:SI 1 "register_operand" "")
2190 (const_int 4))))
2191 (set (mem:SI (match_dup 0))
2192 (match_operand:SI 3 "register_operand" ""))]
2193 "!TARGET_SOFT_FLOAT
2194 && !TARGET_DISABLE_INDEXING
2195 && REG_OK_FOR_BASE_P (operands[2])
2196 && FP_REGNO_P (REGNO (operands[3]))"
2197 [(set (mem:SI (plus:SI (mult:SI (match_dup 1) (const_int 4)) (match_dup 2)))
2198 (match_dup 3))
2199 (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 4))
2200 (match_dup 2)))]
2201 "")
2202
2203 (define_peephole2
2204 [(set (match_operand:DI 0 "register_operand" "")
2205 (plus:DI (mult:DI (match_operand:DI 1 "register_operand" "")
2206 (const_int 4))
2207 (match_operand:DI 2 "register_operand" "")))
2208 (set (mem:SI (match_dup 0))
2209 (match_operand:SI 3 "register_operand" ""))]
2210 "!TARGET_SOFT_FLOAT
2211 && !TARGET_DISABLE_INDEXING
2212 && TARGET_64BIT
2213 && REG_OK_FOR_BASE_P (operands[2])
2214 && FP_REGNO_P (REGNO (operands[3]))"
2215 [(set (mem:SI (plus:DI (mult:DI (match_dup 1) (const_int 4)) (match_dup 2)))
2216 (match_dup 3))
2217 (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 4))
2218 (match_dup 2)))]
2219 "")
2220
2221 (define_peephole2
2222 [(set (match_operand:DI 0 "register_operand" "")
2223 (plus:DI (match_operand:DI 2 "register_operand" "")
2224 (mult:DI (match_operand:DI 1 "register_operand" "")
2225 (const_int 4))))
2226 (set (mem:SI (match_dup 0))
2227 (match_operand:SI 3 "register_operand" ""))]
2228 "!TARGET_SOFT_FLOAT
2229 && !TARGET_DISABLE_INDEXING
2230 && TARGET_64BIT
2231 && REG_OK_FOR_BASE_P (operands[2])
2232 && FP_REGNO_P (REGNO (operands[3]))"
2233 [(set (mem:SI (plus:DI (mult:DI (match_dup 1) (const_int 4)) (match_dup 2)))
2234 (match_dup 3))
2235 (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 4))
2236 (match_dup 2)))]
2237 "")
2238
2239 (define_peephole2
2240 [(set (match_operand:SI 0 "register_operand" "")
2241 (plus:SI (match_operand:SI 1 "register_operand" "")
2242 (match_operand:SI 2 "register_operand" "")))
2243 (set (mem:SI (match_dup 0))
2244 (match_operand:SI 3 "register_operand" ""))]
2245 "!TARGET_SOFT_FLOAT
2246 && !TARGET_DISABLE_INDEXING
2247 && TARGET_NO_SPACE_REGS
2248 && REG_OK_FOR_INDEX_P (operands[1])
2249 && REG_OK_FOR_BASE_P (operands[2])
2250 && FP_REGNO_P (REGNO (operands[3]))"
2251 [(set (mem:SI (plus:SI (match_dup 1) (match_dup 2)))
2252 (match_dup 3))
2253 (set (match_dup 0) (plus:SI (match_dup 1) (match_dup 2)))]
2254 "")
2255
2256 (define_peephole2
2257 [(set (match_operand:SI 0 "register_operand" "")
2258 (plus:SI (match_operand:SI 1 "register_operand" "")
2259 (match_operand:SI 2 "register_operand" "")))
2260 (set (mem:SI (match_dup 0))
2261 (match_operand:SI 3 "register_operand" ""))]
2262 "!TARGET_SOFT_FLOAT
2263 && !TARGET_DISABLE_INDEXING
2264 && TARGET_NO_SPACE_REGS
2265 && REG_OK_FOR_BASE_P (operands[1])
2266 && REG_OK_FOR_INDEX_P (operands[2])
2267 && FP_REGNO_P (REGNO (operands[3]))"
2268 [(set (mem:SI (plus:SI (match_dup 2) (match_dup 1)))
2269 (match_dup 3))
2270 (set (match_dup 0) (plus:SI (match_dup 2) (match_dup 1)))]
2271 "")
2272
2273 (define_peephole2
2274 [(set (match_operand:DI 0 "register_operand" "")
2275 (plus:DI (match_operand:DI 1 "register_operand" "")
2276 (match_operand:DI 2 "register_operand" "")))
2277 (set (mem:SI (match_dup 0))
2278 (match_operand:SI 3 "register_operand" ""))]
2279 "!TARGET_SOFT_FLOAT
2280 && !TARGET_DISABLE_INDEXING
2281 && TARGET_64BIT
2282 && TARGET_NO_SPACE_REGS
2283 && REG_OK_FOR_INDEX_P (operands[1])
2284 && REG_OK_FOR_BASE_P (operands[2])
2285 && FP_REGNO_P (REGNO (operands[3]))"
2286 [(set (mem:SI (plus:DI (match_dup 1) (match_dup 2)))
2287 (match_dup 3))
2288 (set (match_dup 0) (plus:DI (match_dup 1) (match_dup 2)))]
2289 "")
2290
2291 (define_peephole2
2292 [(set (match_operand:DI 0 "register_operand" "")
2293 (plus:DI (match_operand:DI 1 "register_operand" "")
2294 (match_operand:DI 2 "register_operand" "")))
2295 (set (mem:SI (match_dup 0))
2296 (match_operand:SI 3 "register_operand" ""))]
2297 "!TARGET_SOFT_FLOAT
2298 && !TARGET_DISABLE_INDEXING
2299 && TARGET_64BIT
2300 && TARGET_NO_SPACE_REGS
2301 && REG_OK_FOR_BASE_P (operands[1])
2302 && REG_OK_FOR_INDEX_P (operands[2])
2303 && FP_REGNO_P (REGNO (operands[3]))"
2304 [(set (mem:SI (plus:DI (match_dup 2) (match_dup 1)))
2305 (match_dup 3))
2306 (set (match_dup 0) (plus:DI (match_dup 2) (match_dup 1)))]
2307 "")
2308
2309 (define_insn ""
2310 [(set (match_operand:SI 0 "move_dest_operand"
2311 "=r,r,r,r,r,r,Q,!*q,!r")
2312 (match_operand:SI 1 "move_src_operand"
2313 "A,r,J,N,K,RQ,rM,!rM,!*q"))]
2314 "(register_operand (operands[0], SImode)
2315 || reg_or_0_operand (operands[1], SImode))
2316 && TARGET_SOFT_FLOAT"
2317 "@
2318 ldw RT'%A1,%0
2319 copy %1,%0
2320 ldi %1,%0
2321 ldil L'%1,%0
2322 {zdepi|depwi,z} %Z1,%0
2323 ldw%M1 %1,%0
2324 stw%M0 %r1,%0
2325 mtsar %r1
2326 {mfctl|mfctl,w} %%sar,%0"
2327 [(set_attr "type" "load,move,move,move,move,load,store,move,move")
2328 (set_attr "pa_combine_type" "addmove")
2329 (set_attr "length" "4,4,4,4,4,4,4,4,4")])
2330
2331 ;; Load or store with base-register modification.
2332 (define_insn ""
2333 [(set (match_operand:SI 0 "register_operand" "=r")
2334 (mem:SI (plus:DI (match_operand:DI 1 "register_operand" "+r")
2335 (match_operand:DI 2 "int5_operand" "L"))))
2336 (set (match_dup 1)
2337 (plus:DI (match_dup 1) (match_dup 2)))]
2338 "TARGET_64BIT"
2339 "ldw,mb %2(%1),%0"
2340 [(set_attr "type" "load")
2341 (set_attr "length" "4")])
2342
2343 ; And a zero extended variant.
2344 (define_insn ""
2345 [(set (match_operand:DI 0 "register_operand" "=r")
2346 (zero_extend:DI (mem:SI
2347 (plus:DI
2348 (match_operand:DI 1 "register_operand" "+r")
2349 (match_operand:DI 2 "int5_operand" "L")))))
2350 (set (match_dup 1)
2351 (plus:DI (match_dup 1) (match_dup 2)))]
2352 "TARGET_64BIT"
2353 "ldw,mb %2(%1),%0"
2354 [(set_attr "type" "load")
2355 (set_attr "length" "4")])
2356
2357 (define_expand "pre_load"
2358 [(parallel [(set (match_operand:SI 0 "register_operand" "")
2359 (mem (plus (match_operand 1 "register_operand" "")
2360 (match_operand 2 "pre_cint_operand" ""))))
2361 (set (match_dup 1)
2362 (plus (match_dup 1) (match_dup 2)))])]
2363 ""
2364 "
2365 {
2366 if (TARGET_64BIT)
2367 {
2368 emit_insn (gen_pre_ldd (operands[0], operands[1], operands[2]));
2369 DONE;
2370 }
2371 emit_insn (gen_pre_ldw (operands[0], operands[1], operands[2]));
2372 DONE;
2373 }")
2374
2375 (define_insn "pre_ldw"
2376 [(set (match_operand:SI 0 "register_operand" "=r")
2377 (mem:SI (plus:SI (match_operand:SI 1 "register_operand" "+r")
2378 (match_operand:SI 2 "pre_cint_operand" ""))))
2379 (set (match_dup 1)
2380 (plus:SI (match_dup 1) (match_dup 2)))]
2381 ""
2382 "*
2383 {
2384 if (INTVAL (operands[2]) < 0)
2385 return \"{ldwm|ldw,mb} %2(%1),%0\";
2386 return \"{ldws|ldw},mb %2(%1),%0\";
2387 }"
2388 [(set_attr "type" "load")
2389 (set_attr "length" "4")])
2390
2391 (define_insn "pre_ldd"
2392 [(set (match_operand:DI 0 "register_operand" "=r")
2393 (mem:DI (plus:DI (match_operand:DI 1 "register_operand" "+r")
2394 (match_operand:DI 2 "pre_cint_operand" ""))))
2395 (set (match_dup 1)
2396 (plus:DI (match_dup 1) (match_dup 2)))]
2397 "TARGET_64BIT"
2398 "ldd,mb %2(%1),%0"
2399 [(set_attr "type" "load")
2400 (set_attr "length" "4")])
2401
2402 (define_insn ""
2403 [(set (mem:SI (plus:SI (match_operand:SI 0 "register_operand" "+r")
2404 (match_operand:SI 1 "pre_cint_operand" "")))
2405 (match_operand:SI 2 "reg_or_0_operand" "rM"))
2406 (set (match_dup 0)
2407 (plus:SI (match_dup 0) (match_dup 1)))]
2408 ""
2409 "*
2410 {
2411 if (INTVAL (operands[1]) < 0)
2412 return \"{stwm|stw,mb} %r2,%1(%0)\";
2413 return \"{stws|stw},mb %r2,%1(%0)\";
2414 }"
2415 [(set_attr "type" "store")
2416 (set_attr "length" "4")])
2417
2418 (define_insn ""
2419 [(set (match_operand:SI 0 "register_operand" "=r")
2420 (mem:SI (match_operand:SI 1 "register_operand" "+r")))
2421 (set (match_dup 1)
2422 (plus:SI (match_dup 1)
2423 (match_operand:SI 2 "post_cint_operand" "")))]
2424 ""
2425 "*
2426 {
2427 if (INTVAL (operands[2]) > 0)
2428 return \"{ldwm|ldw,ma} %2(%1),%0\";
2429 return \"{ldws|ldw},ma %2(%1),%0\";
2430 }"
2431 [(set_attr "type" "load")
2432 (set_attr "length" "4")])
2433
2434 (define_expand "post_store"
2435 [(parallel [(set (mem (match_operand 0 "register_operand" ""))
2436 (match_operand 1 "reg_or_0_operand" ""))
2437 (set (match_dup 0)
2438 (plus (match_dup 0)
2439 (match_operand 2 "post_cint_operand" "")))])]
2440 ""
2441 "
2442 {
2443 if (TARGET_64BIT)
2444 {
2445 emit_insn (gen_post_std (operands[0], operands[1], operands[2]));
2446 DONE;
2447 }
2448 emit_insn (gen_post_stw (operands[0], operands[1], operands[2]));
2449 DONE;
2450 }")
2451
2452 (define_insn "post_stw"
2453 [(set (mem:SI (match_operand:SI 0 "register_operand" "+r"))
2454 (match_operand:SI 1 "reg_or_0_operand" "rM"))
2455 (set (match_dup 0)
2456 (plus:SI (match_dup 0)
2457 (match_operand:SI 2 "post_cint_operand" "")))]
2458 ""
2459 "*
2460 {
2461 if (INTVAL (operands[2]) > 0)
2462 return \"{stwm|stw,ma} %r1,%2(%0)\";
2463 return \"{stws|stw},ma %r1,%2(%0)\";
2464 }"
2465 [(set_attr "type" "store")
2466 (set_attr "length" "4")])
2467
2468 (define_insn "post_std"
2469 [(set (mem:DI (match_operand:DI 0 "register_operand" "+r"))
2470 (match_operand:DI 1 "reg_or_0_operand" "rM"))
2471 (set (match_dup 0)
2472 (plus:DI (match_dup 0)
2473 (match_operand:DI 2 "post_cint_operand" "")))]
2474 "TARGET_64BIT"
2475 "std,ma %r1,%2(%0)"
2476 [(set_attr "type" "store")
2477 (set_attr "length" "4")])
2478
2479 ;; For loading the address of a label while generating PIC code.
2480 ;; Note since this pattern can be created at reload time (via movsi), all
2481 ;; the same rules for movsi apply here. (no new pseudos, no temporaries).
2482 (define_insn ""
2483 [(set (match_operand 0 "pmode_register_operand" "=a")
2484 (match_operand 1 "pic_label_operand" ""))]
2485 "TARGET_PA_20"
2486 "*
2487 {
2488 rtx xoperands[3];
2489
2490 xoperands[0] = operands[0];
2491 xoperands[1] = operands[1];
2492 xoperands[2] = gen_label_rtx ();
2493
2494 (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
2495 CODE_LABEL_NUMBER (xoperands[2]));
2496 output_asm_insn (\"mfia %0\", xoperands);
2497
2498 /* If we're trying to load the address of a label that happens to be
2499 close, then we can use a shorter sequence. */
2500 if (GET_CODE (operands[1]) == LABEL_REF
2501 && !LABEL_REF_NONLOCAL_P (operands[1])
2502 && INSN_ADDRESSES_SET_P ()
2503 && abs (INSN_ADDRESSES (INSN_UID (XEXP (operands[1], 0)))
2504 - INSN_ADDRESSES (INSN_UID (insn))) < 8100)
2505 output_asm_insn (\"ldo %1-%2(%0),%0\", xoperands);
2506 else
2507 {
2508 output_asm_insn (\"addil L%%%1-%2,%0\", xoperands);
2509 output_asm_insn (\"ldo R%%%1-%2(%0),%0\", xoperands);
2510 }
2511 return \"\";
2512 }"
2513 [(set_attr "type" "multi")
2514 (set_attr "length" "12")]) ; 8 or 12
2515
2516 (define_insn ""
2517 [(set (match_operand 0 "pmode_register_operand" "=a")
2518 (match_operand 1 "pic_label_operand" ""))]
2519 "!TARGET_PA_20"
2520 "*
2521 {
2522 rtx xoperands[3];
2523
2524 xoperands[0] = operands[0];
2525 xoperands[1] = operands[1];
2526 xoperands[2] = gen_label_rtx ();
2527
2528 output_asm_insn (\"bl .+8,%0\", xoperands);
2529 output_asm_insn (\"depi 0,31,2,%0\", xoperands);
2530 (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
2531 CODE_LABEL_NUMBER (xoperands[2]));
2532
2533 /* If we're trying to load the address of a label that happens to be
2534 close, then we can use a shorter sequence. */
2535 if (GET_CODE (operands[1]) == LABEL_REF
2536 && !LABEL_REF_NONLOCAL_P (operands[1])
2537 && INSN_ADDRESSES_SET_P ()
2538 && abs (INSN_ADDRESSES (INSN_UID (XEXP (operands[1], 0)))
2539 - INSN_ADDRESSES (INSN_UID (insn))) < 8100)
2540 output_asm_insn (\"ldo %1-%2(%0),%0\", xoperands);
2541 else
2542 {
2543 output_asm_insn (\"addil L%%%1-%2,%0\", xoperands);
2544 output_asm_insn (\"ldo R%%%1-%2(%0),%0\", xoperands);
2545 }
2546 return \"\";
2547 }"
2548 [(set_attr "type" "multi")
2549 (set_attr "length" "16")]) ; 12 or 16
2550
2551 (define_insn ""
2552 [(set (match_operand:SI 0 "register_operand" "=a")
2553 (plus:SI (match_operand:SI 1 "register_operand" "r")
2554 (high:SI (match_operand 2 "" ""))))]
2555 "symbolic_operand (operands[2], Pmode)
2556 && ! function_label_operand (operands[2], Pmode)
2557 && flag_pic"
2558 "addil LT'%G2,%1"
2559 [(set_attr "type" "binary")
2560 (set_attr "length" "4")])
2561
2562 (define_insn ""
2563 [(set (match_operand:DI 0 "register_operand" "=a")
2564 (plus:DI (match_operand:DI 1 "register_operand" "r")
2565 (high:DI (match_operand 2 "" ""))))]
2566 "symbolic_operand (operands[2], Pmode)
2567 && ! function_label_operand (operands[2], Pmode)
2568 && TARGET_64BIT
2569 && flag_pic"
2570 "addil LT'%G2,%1"
2571 [(set_attr "type" "binary")
2572 (set_attr "length" "4")])
2573
2574 ;; Always use addil rather than ldil;add sequences. This allows the
2575 ;; HP linker to eliminate the dp relocation if the symbolic operand
2576 ;; lives in the TEXT space.
2577 (define_insn ""
2578 [(set (match_operand:SI 0 "register_operand" "=a")
2579 (high:SI (match_operand 1 "" "")))]
2580 "symbolic_operand (operands[1], Pmode)
2581 && ! function_label_operand (operands[1], Pmode)
2582 && ! read_only_operand (operands[1], Pmode)
2583 && ! flag_pic"
2584 "*
2585 {
2586 if (TARGET_LONG_LOAD_STORE)
2587 return \"addil NLR'%H1,%%r27\;ldo N'%H1(%%r1),%%r1\";
2588 else
2589 return \"addil LR'%H1,%%r27\";
2590 }"
2591 [(set_attr "type" "binary")
2592 (set (attr "length")
2593 (if_then_else (eq (symbol_ref "TARGET_LONG_LOAD_STORE") (const_int 0))
2594 (const_int 4)
2595 (const_int 8)))])
2596
2597
2598 ;; This is for use in the prologue/epilogue code. We need it
2599 ;; to add large constants to a stack pointer or frame pointer.
2600 ;; Because of the additional %r1 pressure, we probably do not
2601 ;; want to use this in general code, so make it available
2602 ;; only after reload.
2603 (define_insn ""
2604 [(set (match_operand:SI 0 "register_operand" "=!a,*r")
2605 (plus:SI (match_operand:SI 1 "register_operand" "r,r")
2606 (high:SI (match_operand 2 "const_int_operand" ""))))]
2607 "reload_completed"
2608 "@
2609 addil L'%G2,%1
2610 ldil L'%G2,%0\;{addl|add,l} %0,%1,%0"
2611 [(set_attr "type" "binary,binary")
2612 (set_attr "length" "4,8")])
2613
2614 (define_insn ""
2615 [(set (match_operand:DI 0 "register_operand" "=!a,*r")
2616 (plus:DI (match_operand:DI 1 "register_operand" "r,r")
2617 (high:DI (match_operand 2 "const_int_operand" ""))))]
2618 "reload_completed && TARGET_64BIT"
2619 "@
2620 addil L'%G2,%1
2621 ldil L'%G2,%0\;{addl|add,l} %0,%1,%0"
2622 [(set_attr "type" "binary,binary")
2623 (set_attr "length" "4,8")])
2624
2625 (define_insn ""
2626 [(set (match_operand:SI 0 "register_operand" "=r")
2627 (high:SI (match_operand 1 "" "")))]
2628 "(!flag_pic || !symbolic_operand (operands[1], Pmode))
2629 && !is_function_label_plus_const (operands[1])"
2630 "*
2631 {
2632 if (symbolic_operand (operands[1], Pmode))
2633 return \"ldil LR'%H1,%0\";
2634 else
2635 return \"ldil L'%G1,%0\";
2636 }"
2637 [(set_attr "type" "move")
2638 (set_attr "length" "4")])
2639
2640 (define_insn ""
2641 [(set (match_operand:DI 0 "register_operand" "=r")
2642 (high:DI (match_operand 1 "const_int_operand" "")))]
2643 "TARGET_64BIT"
2644 "ldil L'%G1,%0";
2645 [(set_attr "type" "move")
2646 (set_attr "length" "4")])
2647
2648 (define_insn ""
2649 [(set (match_operand:DI 0 "register_operand" "=r")
2650 (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
2651 (match_operand:DI 2 "const_int_operand" "i")))]
2652 "TARGET_64BIT"
2653 "ldo R'%G2(%1),%0";
2654 [(set_attr "type" "move")
2655 (set_attr "length" "4")])
2656
2657 (define_insn ""
2658 [(set (match_operand:SI 0 "register_operand" "=r")
2659 (lo_sum:SI (match_operand:SI 1 "register_operand" "r")
2660 (match_operand:SI 2 "immediate_operand" "i")))]
2661 "!is_function_label_plus_const (operands[2])"
2662 "*
2663 {
2664 gcc_assert (!flag_pic || !symbolic_operand (operands[2], Pmode));
2665
2666 if (symbolic_operand (operands[2], Pmode))
2667 return \"ldo RR'%G2(%1),%0\";
2668 else
2669 return \"ldo R'%G2(%1),%0\";
2670 }"
2671 [(set_attr "type" "move")
2672 (set_attr "length" "4")])
2673
2674 ;; Now that a symbolic_address plus a constant is broken up early
2675 ;; in the compilation phase (for better CSE) we need a special
2676 ;; combiner pattern to load the symbolic address plus the constant
2677 ;; in only 2 instructions. (For cases where the symbolic address
2678 ;; was not a common subexpression.)
2679 (define_split
2680 [(set (match_operand:SI 0 "register_operand" "")
2681 (match_operand:SI 1 "symbolic_operand" ""))
2682 (clobber (match_operand:SI 2 "register_operand" ""))]
2683 "! (flag_pic && pic_label_operand (operands[1], SImode))"
2684 [(set (match_dup 2) (high:SI (match_dup 1)))
2685 (set (match_dup 0) (lo_sum:SI (match_dup 2) (match_dup 1)))]
2686 "")
2687
2688 ;; hppa_legitimize_address goes to a great deal of trouble to
2689 ;; create addresses which use indexing. In some cases, this
2690 ;; is a lose because there isn't any store instructions which
2691 ;; allow indexed addresses (with integer register source).
2692 ;;
2693 ;; These define_splits try to turn a 3 insn store into
2694 ;; a 2 insn store with some creative RTL rewriting.
2695 (define_split
2696 [(set (mem:SI (plus:SI (mult:SI (match_operand:SI 0 "register_operand" "")
2697 (match_operand:SI 1 "shadd_operand" ""))
2698 (plus:SI (match_operand:SI 2 "register_operand" "")
2699 (match_operand:SI 3 "const_int_operand" ""))))
2700 (match_operand:SI 4 "register_operand" ""))
2701 (clobber (match_operand:SI 5 "register_operand" ""))]
2702 ""
2703 [(set (match_dup 5) (plus:SI (mult:SI (match_dup 0) (match_dup 1))
2704 (match_dup 2)))
2705 (set (mem:SI (plus:SI (match_dup 5) (match_dup 3))) (match_dup 4))]
2706 "")
2707
2708 (define_split
2709 [(set (mem:HI (plus:SI (mult:SI (match_operand:SI 0 "register_operand" "")
2710 (match_operand:SI 1 "shadd_operand" ""))
2711 (plus:SI (match_operand:SI 2 "register_operand" "")
2712 (match_operand:SI 3 "const_int_operand" ""))))
2713 (match_operand:HI 4 "register_operand" ""))
2714 (clobber (match_operand:SI 5 "register_operand" ""))]
2715 ""
2716 [(set (match_dup 5) (plus:SI (mult:SI (match_dup 0) (match_dup 1))
2717 (match_dup 2)))
2718 (set (mem:HI (plus:SI (match_dup 5) (match_dup 3))) (match_dup 4))]
2719 "")
2720
2721 (define_split
2722 [(set (mem:QI (plus:SI (mult:SI (match_operand:SI 0 "register_operand" "")
2723 (match_operand:SI 1 "shadd_operand" ""))
2724 (plus:SI (match_operand:SI 2 "register_operand" "")
2725 (match_operand:SI 3 "const_int_operand" ""))))
2726 (match_operand:QI 4 "register_operand" ""))
2727 (clobber (match_operand:SI 5 "register_operand" ""))]
2728 ""
2729 [(set (match_dup 5) (plus:SI (mult:SI (match_dup 0) (match_dup 1))
2730 (match_dup 2)))
2731 (set (mem:QI (plus:SI (match_dup 5) (match_dup 3))) (match_dup 4))]
2732 "")
2733
2734 (define_expand "movhi"
2735 [(set (match_operand:HI 0 "general_operand" "")
2736 (match_operand:HI 1 "general_operand" ""))]
2737 ""
2738 "
2739 {
2740 if (emit_move_sequence (operands, HImode, 0))
2741 DONE;
2742 }")
2743
2744 ;; Handle HImode input reloads requiring a general register as a
2745 ;; scratch register.
2746 (define_expand "reload_inhi"
2747 [(set (match_operand:HI 0 "register_operand" "=Z")
2748 (match_operand:HI 1 "non_hard_reg_operand" ""))
2749 (clobber (match_operand:HI 2 "register_operand" "=&r"))]
2750 ""
2751 "
2752 {
2753 if (emit_move_sequence (operands, HImode, operands[2]))
2754 DONE;
2755
2756 /* We don't want the clobber emitted, so handle this ourselves. */
2757 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2758 DONE;
2759 }")
2760
2761 ;; Handle HImode output reloads requiring a general register as a
2762 ;; scratch register.
2763 (define_expand "reload_outhi"
2764 [(set (match_operand:HI 0 "non_hard_reg_operand" "")
2765 (match_operand:HI 1 "register_operand" "Z"))
2766 (clobber (match_operand:HI 2 "register_operand" "=&r"))]
2767 ""
2768 "
2769 {
2770 if (emit_move_sequence (operands, HImode, operands[2]))
2771 DONE;
2772
2773 /* We don't want the clobber emitted, so handle this ourselves. */
2774 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2775 DONE;
2776 }")
2777
2778 (define_insn ""
2779 [(set (match_operand:HI 0 "move_dest_operand"
2780 "=r,r,r,r,r,Q,!*q,!r")
2781 (match_operand:HI 1 "move_src_operand"
2782 "r,J,N,K,RQ,rM,!rM,!*q"))]
2783 "(register_operand (operands[0], HImode)
2784 || reg_or_0_operand (operands[1], HImode))"
2785 "@
2786 copy %1,%0
2787 ldi %1,%0
2788 ldil L'%1,%0
2789 {zdepi|depwi,z} %Z1,%0
2790 ldh%M1 %1,%0
2791 sth%M0 %r1,%0
2792 mtsar %r1
2793 {mfctl|mfctl,w} %sar,%0"
2794 [(set_attr "type" "move,move,move,shift,load,store,move,move")
2795 (set_attr "pa_combine_type" "addmove")
2796 (set_attr "length" "4,4,4,4,4,4,4,4")])
2797
2798 (define_insn ""
2799 [(set (match_operand:HI 0 "register_operand" "=r")
2800 (mem:HI (plus:SI (match_operand:SI 1 "register_operand" "+r")
2801 (match_operand:SI 2 "int5_operand" "L"))))
2802 (set (match_dup 1)
2803 (plus:SI (match_dup 1) (match_dup 2)))]
2804 ""
2805 "{ldhs|ldh},mb %2(%1),%0"
2806 [(set_attr "type" "load")
2807 (set_attr "length" "4")])
2808
2809 (define_insn ""
2810 [(set (match_operand:HI 0 "register_operand" "=r")
2811 (mem:HI (plus:DI (match_operand:DI 1 "register_operand" "+r")
2812 (match_operand:DI 2 "int5_operand" "L"))))
2813 (set (match_dup 1)
2814 (plus:DI (match_dup 1) (match_dup 2)))]
2815 "TARGET_64BIT"
2816 "ldh,mb %2(%1),%0"
2817 [(set_attr "type" "load")
2818 (set_attr "length" "4")])
2819
2820 ; And a zero extended variant.
2821 (define_insn ""
2822 [(set (match_operand:DI 0 "register_operand" "=r")
2823 (zero_extend:DI (mem:HI
2824 (plus:DI
2825 (match_operand:DI 1 "register_operand" "+r")
2826 (match_operand:DI 2 "int5_operand" "L")))))
2827 (set (match_dup 1)
2828 (plus:DI (match_dup 1) (match_dup 2)))]
2829 "TARGET_64BIT"
2830 "ldh,mb %2(%1),%0"
2831 [(set_attr "type" "load")
2832 (set_attr "length" "4")])
2833
2834 (define_insn ""
2835 [(set (match_operand:SI 0 "register_operand" "=r")
2836 (zero_extend:SI (mem:HI
2837 (plus:SI
2838 (match_operand:SI 1 "register_operand" "+r")
2839 (match_operand:SI 2 "int5_operand" "L")))))
2840 (set (match_dup 1)
2841 (plus:SI (match_dup 1) (match_dup 2)))]
2842 ""
2843 "{ldhs|ldh},mb %2(%1),%0"
2844 [(set_attr "type" "load")
2845 (set_attr "length" "4")])
2846
2847 (define_insn ""
2848 [(set (match_operand:SI 0 "register_operand" "=r")
2849 (zero_extend:SI (mem:HI
2850 (plus:DI
2851 (match_operand:DI 1 "register_operand" "+r")
2852 (match_operand:DI 2 "int5_operand" "L")))))
2853 (set (match_dup 1)
2854 (plus:DI (match_dup 1) (match_dup 2)))]
2855 "TARGET_64BIT"
2856 "ldh,mb %2(%1),%0"
2857 [(set_attr "type" "load")
2858 (set_attr "length" "4")])
2859
2860 (define_insn ""
2861 [(set (mem:HI (plus:SI (match_operand:SI 0 "register_operand" "+r")
2862 (match_operand:SI 1 "int5_operand" "L")))
2863 (match_operand:HI 2 "reg_or_0_operand" "rM"))
2864 (set (match_dup 0)
2865 (plus:SI (match_dup 0) (match_dup 1)))]
2866 ""
2867 "{sths|sth},mb %r2,%1(%0)"
2868 [(set_attr "type" "store")
2869 (set_attr "length" "4")])
2870
2871 (define_insn ""
2872 [(set (mem:HI (plus:DI (match_operand:DI 0 "register_operand" "+r")
2873 (match_operand:DI 1 "int5_operand" "L")))
2874 (match_operand:HI 2 "reg_or_0_operand" "rM"))
2875 (set (match_dup 0)
2876 (plus:DI (match_dup 0) (match_dup 1)))]
2877 "TARGET_64BIT"
2878 "sth,mb %r2,%1(%0)"
2879 [(set_attr "type" "store")
2880 (set_attr "length" "4")])
2881
2882 (define_insn ""
2883 [(set (match_operand:HI 0 "register_operand" "=r")
2884 (plus:HI (match_operand:HI 1 "register_operand" "r")
2885 (match_operand 2 "const_int_operand" "J")))]
2886 ""
2887 "ldo %2(%1),%0"
2888 [(set_attr "type" "binary")
2889 (set_attr "pa_combine_type" "addmove")
2890 (set_attr "length" "4")])
2891
2892 (define_expand "movqi"
2893 [(set (match_operand:QI 0 "general_operand" "")
2894 (match_operand:QI 1 "general_operand" ""))]
2895 ""
2896 "
2897 {
2898 if (emit_move_sequence (operands, QImode, 0))
2899 DONE;
2900 }")
2901
2902 ;; Handle QImode input reloads requiring a general register as a
2903 ;; scratch register.
2904 (define_expand "reload_inqi"
2905 [(set (match_operand:QI 0 "register_operand" "=Z")
2906 (match_operand:QI 1 "non_hard_reg_operand" ""))
2907 (clobber (match_operand:QI 2 "register_operand" "=&r"))]
2908 ""
2909 "
2910 {
2911 if (emit_move_sequence (operands, QImode, operands[2]))
2912 DONE;
2913
2914 /* We don't want the clobber emitted, so handle this ourselves. */
2915 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2916 DONE;
2917 }")
2918
2919 ;; Handle QImode output reloads requiring a general register as a
2920 ;; scratch register.
2921 (define_expand "reload_outqi"
2922 [(set (match_operand:QI 0 "non_hard_reg_operand" "")
2923 (match_operand:QI 1 "register_operand" "Z"))
2924 (clobber (match_operand:QI 2 "register_operand" "=&r"))]
2925 ""
2926 "
2927 {
2928 if (emit_move_sequence (operands, QImode, operands[2]))
2929 DONE;
2930
2931 /* We don't want the clobber emitted, so handle this ourselves. */
2932 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2933 DONE;
2934 }")
2935
2936 (define_insn ""
2937 [(set (match_operand:QI 0 "move_dest_operand"
2938 "=r,r,r,r,r,Q,!*q,!r")
2939 (match_operand:QI 1 "move_src_operand"
2940 "r,J,N,K,RQ,rM,!rM,!*q"))]
2941 "(register_operand (operands[0], QImode)
2942 || reg_or_0_operand (operands[1], QImode))"
2943 "@
2944 copy %1,%0
2945 ldi %1,%0
2946 ldil L'%1,%0
2947 {zdepi|depwi,z} %Z1,%0
2948 ldb%M1 %1,%0
2949 stb%M0 %r1,%0
2950 mtsar %r1
2951 {mfctl|mfctl,w} %%sar,%0"
2952 [(set_attr "type" "move,move,move,shift,load,store,move,move")
2953 (set_attr "pa_combine_type" "addmove")
2954 (set_attr "length" "4,4,4,4,4,4,4,4")])
2955
2956 (define_insn ""
2957 [(set (match_operand:QI 0 "register_operand" "=r")
2958 (mem:QI (plus:SI (match_operand:SI 1 "register_operand" "+r")
2959 (match_operand:SI 2 "int5_operand" "L"))))
2960 (set (match_dup 1) (plus:SI (match_dup 1) (match_dup 2)))]
2961 ""
2962 "{ldbs|ldb},mb %2(%1),%0"
2963 [(set_attr "type" "load")
2964 (set_attr "length" "4")])
2965
2966 (define_insn ""
2967 [(set (match_operand:QI 0 "register_operand" "=r")
2968 (mem:QI (plus:DI (match_operand:DI 1 "register_operand" "+r")
2969 (match_operand:DI 2 "int5_operand" "L"))))
2970 (set (match_dup 1) (plus:DI (match_dup 1) (match_dup 2)))]
2971 "TARGET_64BIT"
2972 "ldb,mb %2(%1),%0"
2973 [(set_attr "type" "load")
2974 (set_attr "length" "4")])
2975
2976 ; Now the same thing with zero extensions.
2977 (define_insn ""
2978 [(set (match_operand:DI 0 "register_operand" "=r")
2979 (zero_extend:DI (mem:QI (plus:DI
2980 (match_operand:DI 1 "register_operand" "+r")
2981 (match_operand:DI 2 "int5_operand" "L")))))
2982 (set (match_dup 1) (plus:DI (match_dup 1) (match_dup 2)))]
2983 "TARGET_64BIT"
2984 "ldb,mb %2(%1),%0"
2985 [(set_attr "type" "load")
2986 (set_attr "length" "4")])
2987
2988 (define_insn ""
2989 [(set (match_operand:SI 0 "register_operand" "=r")
2990 (zero_extend:SI (mem:QI (plus:SI
2991 (match_operand:SI 1 "register_operand" "+r")
2992 (match_operand:SI 2 "int5_operand" "L")))))
2993 (set (match_dup 1) (plus:SI (match_dup 1) (match_dup 2)))]
2994 ""
2995 "{ldbs|ldb},mb %2(%1),%0"
2996 [(set_attr "type" "load")
2997 (set_attr "length" "4")])
2998
2999 (define_insn ""
3000 [(set (match_operand:SI 0 "register_operand" "=r")
3001 (zero_extend:SI (mem:QI (plus:DI
3002 (match_operand:DI 1 "register_operand" "+r")
3003 (match_operand:DI 2 "int5_operand" "L")))))
3004 (set (match_dup 1) (plus:DI (match_dup 1) (match_dup 2)))]
3005 "TARGET_64BIT"
3006 "ldb,mb %2(%1),%0"
3007 [(set_attr "type" "load")
3008 (set_attr "length" "4")])
3009
3010 (define_insn ""
3011 [(set (match_operand:HI 0 "register_operand" "=r")
3012 (zero_extend:HI (mem:QI (plus:SI
3013 (match_operand:SI 1 "register_operand" "+r")
3014 (match_operand:SI 2 "int5_operand" "L")))))
3015 (set (match_dup 1) (plus:SI (match_dup 1) (match_dup 2)))]
3016 ""
3017 "{ldbs|ldb},mb %2(%1),%0"
3018 [(set_attr "type" "load")
3019 (set_attr "length" "4")])
3020
3021 (define_insn ""
3022 [(set (match_operand:HI 0 "register_operand" "=r")
3023 (zero_extend:HI (mem:QI (plus:DI
3024 (match_operand:DI 1 "register_operand" "+r")
3025 (match_operand:DI 2 "int5_operand" "L")))))
3026 (set (match_dup 1) (plus:DI (match_dup 1) (match_dup 2)))]
3027 "TARGET_64BIT"
3028 "ldb,mb %2(%1),%0"
3029 [(set_attr "type" "load")
3030 (set_attr "length" "4")])
3031
3032 (define_insn ""
3033 [(set (mem:QI (plus:SI (match_operand:SI 0 "register_operand" "+r")
3034 (match_operand:SI 1 "int5_operand" "L")))
3035 (match_operand:QI 2 "reg_or_0_operand" "rM"))
3036 (set (match_dup 0)
3037 (plus:SI (match_dup 0) (match_dup 1)))]
3038 ""
3039 "{stbs|stb},mb %r2,%1(%0)"
3040 [(set_attr "type" "store")
3041 (set_attr "length" "4")])
3042
3043 (define_insn ""
3044 [(set (mem:QI (plus:DI (match_operand:DI 0 "register_operand" "+r")
3045 (match_operand:DI 1 "int5_operand" "L")))
3046 (match_operand:QI 2 "reg_or_0_operand" "rM"))
3047 (set (match_dup 0)
3048 (plus:DI (match_dup 0) (match_dup 1)))]
3049 "TARGET_64BIT"
3050 "stb,mb %r2,%1(%0)"
3051 [(set_attr "type" "store")
3052 (set_attr "length" "4")])
3053
3054 ;; The definition of this insn does not really explain what it does,
3055 ;; but it should suffice that anything generated as this insn will be
3056 ;; recognized as a movmemsi operation, and that it will not successfully
3057 ;; combine with anything.
3058 (define_expand "movmemsi"
3059 [(parallel [(set (match_operand:BLK 0 "" "")
3060 (match_operand:BLK 1 "" ""))
3061 (clobber (match_dup 4))
3062 (clobber (match_dup 5))
3063 (clobber (match_dup 6))
3064 (clobber (match_dup 7))
3065 (clobber (match_dup 8))
3066 (use (match_operand:SI 2 "arith_operand" ""))
3067 (use (match_operand:SI 3 "const_int_operand" ""))])]
3068 "!TARGET_64BIT && optimize > 0"
3069 "
3070 {
3071 int size, align;
3072
3073 /* HP provides very fast block move library routine for the PA;
3074 this routine includes:
3075
3076 4x4 byte at a time block moves,
3077 1x4 byte at a time with alignment checked at runtime with
3078 attempts to align the source and destination as needed
3079 1x1 byte loop
3080
3081 With that in mind, here's the heuristics to try and guess when
3082 the inlined block move will be better than the library block
3083 move:
3084
3085 If the size isn't constant, then always use the library routines.
3086
3087 If the size is large in respect to the known alignment, then use
3088 the library routines.
3089
3090 If the size is small in respect to the known alignment, then open
3091 code the copy (since that will lead to better scheduling).
3092
3093 Else use the block move pattern. */
3094
3095 /* Undetermined size, use the library routine. */
3096 if (GET_CODE (operands[2]) != CONST_INT)
3097 FAIL;
3098
3099 size = INTVAL (operands[2]);
3100 align = INTVAL (operands[3]);
3101 align = align > 4 ? 4 : (align ? align : 1);
3102
3103 /* If size/alignment is large, then use the library routines. */
3104 if (size / align > 16)
3105 FAIL;
3106
3107 /* This does happen, but not often enough to worry much about. */
3108 if (size / align < MOVE_RATIO (optimize_insn_for_speed_p ()))
3109 FAIL;
3110
3111 /* Fall through means we're going to use our block move pattern. */
3112 operands[0]
3113 = replace_equiv_address (operands[0],
3114 copy_to_mode_reg (SImode, XEXP (operands[0], 0)));
3115 operands[1]
3116 = replace_equiv_address (operands[1],
3117 copy_to_mode_reg (SImode, XEXP (operands[1], 0)));
3118 operands[4] = gen_reg_rtx (SImode);
3119 operands[5] = gen_reg_rtx (SImode);
3120 operands[6] = gen_reg_rtx (SImode);
3121 operands[7] = gen_reg_rtx (SImode);
3122 operands[8] = gen_reg_rtx (SImode);
3123 }")
3124
3125 ;; The operand constraints are written like this to support both compile-time
3126 ;; and run-time determined byte counts. The expander and output_block_move
3127 ;; only support compile-time determined counts at this time.
3128 ;;
3129 ;; If the count is run-time determined, the register with the byte count
3130 ;; is clobbered by the copying code, and therefore it is forced to operand 2.
3131 ;;
3132 ;; We used to clobber operands 0 and 1. However, a change to regrename.c
3133 ;; broke this semantic for pseudo registers. We can't use match_scratch
3134 ;; as this requires two registers in the class R1_REGS when the MEMs for
3135 ;; operands 0 and 1 are both equivalent to symbolic MEMs. Thus, we are
3136 ;; forced to internally copy operands 0 and 1 to operands 7 and 8,
3137 ;; respectively. We then split or peephole optimize after reload.
3138 (define_insn "movmemsi_prereload"
3139 [(set (mem:BLK (match_operand:SI 0 "register_operand" "r,r"))
3140 (mem:BLK (match_operand:SI 1 "register_operand" "r,r")))
3141 (clobber (match_operand:SI 2 "register_operand" "=&r,&r")) ;loop cnt/tmp
3142 (clobber (match_operand:SI 3 "register_operand" "=&r,&r")) ;item tmp1
3143 (clobber (match_operand:SI 6 "register_operand" "=&r,&r")) ;item tmp2
3144 (clobber (match_operand:SI 7 "register_operand" "=&r,&r")) ;item tmp3
3145 (clobber (match_operand:SI 8 "register_operand" "=&r,&r")) ;item tmp4
3146 (use (match_operand:SI 4 "arith_operand" "J,2")) ;byte count
3147 (use (match_operand:SI 5 "const_int_operand" "n,n"))] ;alignment
3148 "!TARGET_64BIT"
3149 "#"
3150 [(set_attr "type" "multi,multi")])
3151
3152 (define_split
3153 [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3154 (match_operand:BLK 1 "memory_operand" ""))
3155 (clobber (match_operand:SI 2 "register_operand" ""))
3156 (clobber (match_operand:SI 3 "register_operand" ""))
3157 (clobber (match_operand:SI 6 "register_operand" ""))
3158 (clobber (match_operand:SI 7 "register_operand" ""))
3159 (clobber (match_operand:SI 8 "register_operand" ""))
3160 (use (match_operand:SI 4 "arith_operand" ""))
3161 (use (match_operand:SI 5 "const_int_operand" ""))])]
3162 "!TARGET_64BIT && reload_completed && !flag_peephole2
3163 && GET_CODE (operands[0]) == MEM
3164 && register_operand (XEXP (operands[0], 0), SImode)
3165 && GET_CODE (operands[1]) == MEM
3166 && register_operand (XEXP (operands[1], 0), SImode)"
3167 [(set (match_dup 7) (match_dup 9))
3168 (set (match_dup 8) (match_dup 10))
3169 (parallel [(set (match_dup 0) (match_dup 1))
3170 (clobber (match_dup 2))
3171 (clobber (match_dup 3))
3172 (clobber (match_dup 6))
3173 (clobber (match_dup 7))
3174 (clobber (match_dup 8))
3175 (use (match_dup 4))
3176 (use (match_dup 5))
3177 (const_int 0)])]
3178 "
3179 {
3180 operands[9] = XEXP (operands[0], 0);
3181 operands[10] = XEXP (operands[1], 0);
3182 operands[0] = replace_equiv_address (operands[0], operands[7]);
3183 operands[1] = replace_equiv_address (operands[1], operands[8]);
3184 }")
3185
3186 (define_peephole2
3187 [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3188 (match_operand:BLK 1 "memory_operand" ""))
3189 (clobber (match_operand:SI 2 "register_operand" ""))
3190 (clobber (match_operand:SI 3 "register_operand" ""))
3191 (clobber (match_operand:SI 6 "register_operand" ""))
3192 (clobber (match_operand:SI 7 "register_operand" ""))
3193 (clobber (match_operand:SI 8 "register_operand" ""))
3194 (use (match_operand:SI 4 "arith_operand" ""))
3195 (use (match_operand:SI 5 "const_int_operand" ""))])]
3196 "!TARGET_64BIT
3197 && GET_CODE (operands[0]) == MEM
3198 && register_operand (XEXP (operands[0], 0), SImode)
3199 && GET_CODE (operands[1]) == MEM
3200 && register_operand (XEXP (operands[1], 0), SImode)"
3201 [(parallel [(set (match_dup 0) (match_dup 1))
3202 (clobber (match_dup 2))
3203 (clobber (match_dup 3))
3204 (clobber (match_dup 6))
3205 (clobber (match_dup 7))
3206 (clobber (match_dup 8))
3207 (use (match_dup 4))
3208 (use (match_dup 5))
3209 (const_int 0)])]
3210 "
3211 {
3212 rtx addr = XEXP (operands[0], 0);
3213 if (dead_or_set_p (curr_insn, addr))
3214 operands[7] = addr;
3215 else
3216 {
3217 emit_insn (gen_rtx_SET (VOIDmode, operands[7], addr));
3218 operands[0] = replace_equiv_address (operands[0], operands[7]);
3219 }
3220
3221 addr = XEXP (operands[1], 0);
3222 if (dead_or_set_p (curr_insn, addr))
3223 operands[8] = addr;
3224 else
3225 {
3226 emit_insn (gen_rtx_SET (VOIDmode, operands[8], addr));
3227 operands[1] = replace_equiv_address (operands[1], operands[8]);
3228 }
3229 }")
3230
3231 (define_insn "movmemsi_postreload"
3232 [(set (mem:BLK (match_operand:SI 0 "register_operand" "+r,r"))
3233 (mem:BLK (match_operand:SI 1 "register_operand" "+r,r")))
3234 (clobber (match_operand:SI 2 "register_operand" "=&r,&r")) ;loop cnt/tmp
3235 (clobber (match_operand:SI 3 "register_operand" "=&r,&r")) ;item tmp1
3236 (clobber (match_operand:SI 6 "register_operand" "=&r,&r")) ;item tmp2
3237 (clobber (match_dup 0))
3238 (clobber (match_dup 1))
3239 (use (match_operand:SI 4 "arith_operand" "J,2")) ;byte count
3240 (use (match_operand:SI 5 "const_int_operand" "n,n")) ;alignment
3241 (const_int 0)]
3242 "!TARGET_64BIT && reload_completed"
3243 "* return output_block_move (operands, !which_alternative);"
3244 [(set_attr "type" "multi,multi")])
3245
3246 (define_expand "movmemdi"
3247 [(parallel [(set (match_operand:BLK 0 "" "")
3248 (match_operand:BLK 1 "" ""))
3249 (clobber (match_dup 4))
3250 (clobber (match_dup 5))
3251 (clobber (match_dup 6))
3252 (clobber (match_dup 7))
3253 (clobber (match_dup 8))
3254 (use (match_operand:DI 2 "arith_operand" ""))
3255 (use (match_operand:DI 3 "const_int_operand" ""))])]
3256 "TARGET_64BIT && optimize > 0"
3257 "
3258 {
3259 int size, align;
3260
3261 /* HP provides very fast block move library routine for the PA;
3262 this routine includes:
3263
3264 4x4 byte at a time block moves,
3265 1x4 byte at a time with alignment checked at runtime with
3266 attempts to align the source and destination as needed
3267 1x1 byte loop
3268
3269 With that in mind, here's the heuristics to try and guess when
3270 the inlined block move will be better than the library block
3271 move:
3272
3273 If the size isn't constant, then always use the library routines.
3274
3275 If the size is large in respect to the known alignment, then use
3276 the library routines.
3277
3278 If the size is small in respect to the known alignment, then open
3279 code the copy (since that will lead to better scheduling).
3280
3281 Else use the block move pattern. */
3282
3283 /* Undetermined size, use the library routine. */
3284 if (GET_CODE (operands[2]) != CONST_INT)
3285 FAIL;
3286
3287 size = INTVAL (operands[2]);
3288 align = INTVAL (operands[3]);
3289 align = align > 8 ? 8 : (align ? align : 1);
3290
3291 /* If size/alignment is large, then use the library routines. */
3292 if (size / align > 16)
3293 FAIL;
3294
3295 /* This does happen, but not often enough to worry much about. */
3296 if (size / align < MOVE_RATIO (optimize_insn_for_speed_p ()))
3297 FAIL;
3298
3299 /* Fall through means we're going to use our block move pattern. */
3300 operands[0]
3301 = replace_equiv_address (operands[0],
3302 copy_to_mode_reg (DImode, XEXP (operands[0], 0)));
3303 operands[1]
3304 = replace_equiv_address (operands[1],
3305 copy_to_mode_reg (DImode, XEXP (operands[1], 0)));
3306 operands[4] = gen_reg_rtx (DImode);
3307 operands[5] = gen_reg_rtx (DImode);
3308 operands[6] = gen_reg_rtx (DImode);
3309 operands[7] = gen_reg_rtx (DImode);
3310 operands[8] = gen_reg_rtx (DImode);
3311 }")
3312
3313 ;; The operand constraints are written like this to support both compile-time
3314 ;; and run-time determined byte counts. The expander and output_block_move
3315 ;; only support compile-time determined counts at this time.
3316 ;;
3317 ;; If the count is run-time determined, the register with the byte count
3318 ;; is clobbered by the copying code, and therefore it is forced to operand 2.
3319 ;;
3320 ;; We used to clobber operands 0 and 1. However, a change to regrename.c
3321 ;; broke this semantic for pseudo registers. We can't use match_scratch
3322 ;; as this requires two registers in the class R1_REGS when the MEMs for
3323 ;; operands 0 and 1 are both equivalent to symbolic MEMs. Thus, we are
3324 ;; forced to internally copy operands 0 and 1 to operands 7 and 8,
3325 ;; respectively. We then split or peephole optimize after reload.
3326 (define_insn "movmemdi_prereload"
3327 [(set (mem:BLK (match_operand:DI 0 "register_operand" "r,r"))
3328 (mem:BLK (match_operand:DI 1 "register_operand" "r,r")))
3329 (clobber (match_operand:DI 2 "register_operand" "=&r,&r")) ;loop cnt/tmp
3330 (clobber (match_operand:DI 3 "register_operand" "=&r,&r")) ;item tmp1
3331 (clobber (match_operand:DI 6 "register_operand" "=&r,&r")) ;item tmp2
3332 (clobber (match_operand:DI 7 "register_operand" "=&r,&r")) ;item tmp3
3333 (clobber (match_operand:DI 8 "register_operand" "=&r,&r")) ;item tmp4
3334 (use (match_operand:DI 4 "arith_operand" "J,2")) ;byte count
3335 (use (match_operand:DI 5 "const_int_operand" "n,n"))] ;alignment
3336 "TARGET_64BIT"
3337 "#"
3338 [(set_attr "type" "multi,multi")])
3339
3340 (define_split
3341 [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3342 (match_operand:BLK 1 "memory_operand" ""))
3343 (clobber (match_operand:DI 2 "register_operand" ""))
3344 (clobber (match_operand:DI 3 "register_operand" ""))
3345 (clobber (match_operand:DI 6 "register_operand" ""))
3346 (clobber (match_operand:DI 7 "register_operand" ""))
3347 (clobber (match_operand:DI 8 "register_operand" ""))
3348 (use (match_operand:DI 4 "arith_operand" ""))
3349 (use (match_operand:DI 5 "const_int_operand" ""))])]
3350 "TARGET_64BIT && reload_completed && !flag_peephole2
3351 && GET_CODE (operands[0]) == MEM
3352 && register_operand (XEXP (operands[0], 0), DImode)
3353 && GET_CODE (operands[1]) == MEM
3354 && register_operand (XEXP (operands[1], 0), DImode)"
3355 [(set (match_dup 7) (match_dup 9))
3356 (set (match_dup 8) (match_dup 10))
3357 (parallel [(set (match_dup 0) (match_dup 1))
3358 (clobber (match_dup 2))
3359 (clobber (match_dup 3))
3360 (clobber (match_dup 6))
3361 (clobber (match_dup 7))
3362 (clobber (match_dup 8))
3363 (use (match_dup 4))
3364 (use (match_dup 5))
3365 (const_int 0)])]
3366 "
3367 {
3368 operands[9] = XEXP (operands[0], 0);
3369 operands[10] = XEXP (operands[1], 0);
3370 operands[0] = replace_equiv_address (operands[0], operands[7]);
3371 operands[1] = replace_equiv_address (operands[1], operands[8]);
3372 }")
3373
3374 (define_peephole2
3375 [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3376 (match_operand:BLK 1 "memory_operand" ""))
3377 (clobber (match_operand:DI 2 "register_operand" ""))
3378 (clobber (match_operand:DI 3 "register_operand" ""))
3379 (clobber (match_operand:DI 6 "register_operand" ""))
3380 (clobber (match_operand:DI 7 "register_operand" ""))
3381 (clobber (match_operand:DI 8 "register_operand" ""))
3382 (use (match_operand:DI 4 "arith_operand" ""))
3383 (use (match_operand:DI 5 "const_int_operand" ""))])]
3384 "TARGET_64BIT
3385 && GET_CODE (operands[0]) == MEM
3386 && register_operand (XEXP (operands[0], 0), DImode)
3387 && GET_CODE (operands[1]) == MEM
3388 && register_operand (XEXP (operands[1], 0), DImode)"
3389 [(parallel [(set (match_dup 0) (match_dup 1))
3390 (clobber (match_dup 2))
3391 (clobber (match_dup 3))
3392 (clobber (match_dup 6))
3393 (clobber (match_dup 7))
3394 (clobber (match_dup 8))
3395 (use (match_dup 4))
3396 (use (match_dup 5))
3397 (const_int 0)])]
3398 "
3399 {
3400 rtx addr = XEXP (operands[0], 0);
3401 if (dead_or_set_p (curr_insn, addr))
3402 operands[7] = addr;
3403 else
3404 {
3405 emit_insn (gen_rtx_SET (VOIDmode, operands[7], addr));
3406 operands[0] = replace_equiv_address (operands[0], operands[7]);
3407 }
3408
3409 addr = XEXP (operands[1], 0);
3410 if (dead_or_set_p (curr_insn, addr))
3411 operands[8] = addr;
3412 else
3413 {
3414 emit_insn (gen_rtx_SET (VOIDmode, operands[8], addr));
3415 operands[1] = replace_equiv_address (operands[1], operands[8]);
3416 }
3417 }")
3418
3419 (define_insn "movmemdi_postreload"
3420 [(set (mem:BLK (match_operand:DI 0 "register_operand" "+r,r"))
3421 (mem:BLK (match_operand:DI 1 "register_operand" "+r,r")))
3422 (clobber (match_operand:DI 2 "register_operand" "=&r,&r")) ;loop cnt/tmp
3423 (clobber (match_operand:DI 3 "register_operand" "=&r,&r")) ;item tmp1
3424 (clobber (match_operand:DI 6 "register_operand" "=&r,&r")) ;item tmp2
3425 (clobber (match_dup 0))
3426 (clobber (match_dup 1))
3427 (use (match_operand:DI 4 "arith_operand" "J,2")) ;byte count
3428 (use (match_operand:DI 5 "const_int_operand" "n,n")) ;alignment
3429 (const_int 0)]
3430 "TARGET_64BIT && reload_completed"
3431 "* return output_block_move (operands, !which_alternative);"
3432 [(set_attr "type" "multi,multi")])
3433
3434 (define_expand "setmemsi"
3435 [(parallel [(set (match_operand:BLK 0 "" "")
3436 (match_operand 2 "const_int_operand" ""))
3437 (clobber (match_dup 4))
3438 (clobber (match_dup 5))
3439 (use (match_operand:SI 1 "arith_operand" ""))
3440 (use (match_operand:SI 3 "const_int_operand" ""))])]
3441 "!TARGET_64BIT && optimize > 0"
3442 "
3443 {
3444 int size, align;
3445
3446 /* If value to set is not zero, use the library routine. */
3447 if (operands[2] != const0_rtx)
3448 FAIL;
3449
3450 /* Undetermined size, use the library routine. */
3451 if (GET_CODE (operands[1]) != CONST_INT)
3452 FAIL;
3453
3454 size = INTVAL (operands[1]);
3455 align = INTVAL (operands[3]);
3456 align = align > 4 ? 4 : align;
3457
3458 /* If size/alignment is large, then use the library routines. */
3459 if (size / align > 16)
3460 FAIL;
3461
3462 /* This does happen, but not often enough to worry much about. */
3463 if (size / align < MOVE_RATIO (optimize_insn_for_speed_p ()))
3464 FAIL;
3465
3466 /* Fall through means we're going to use our block clear pattern. */
3467 operands[0]
3468 = replace_equiv_address (operands[0],
3469 copy_to_mode_reg (SImode, XEXP (operands[0], 0)));
3470 operands[4] = gen_reg_rtx (SImode);
3471 operands[5] = gen_reg_rtx (SImode);
3472 }")
3473
3474 (define_insn "clrmemsi_prereload"
3475 [(set (mem:BLK (match_operand:SI 0 "register_operand" "r,r"))
3476 (const_int 0))
3477 (clobber (match_operand:SI 1 "register_operand" "=&r,&r")) ;loop cnt/tmp
3478 (clobber (match_operand:SI 4 "register_operand" "=&r,&r")) ;tmp1
3479 (use (match_operand:SI 2 "arith_operand" "J,1")) ;byte count
3480 (use (match_operand:SI 3 "const_int_operand" "n,n"))] ;alignment
3481 "!TARGET_64BIT"
3482 "#"
3483 [(set_attr "type" "multi,multi")])
3484
3485 (define_split
3486 [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3487 (const_int 0))
3488 (clobber (match_operand:SI 1 "register_operand" ""))
3489 (clobber (match_operand:SI 4 "register_operand" ""))
3490 (use (match_operand:SI 2 "arith_operand" ""))
3491 (use (match_operand:SI 3 "const_int_operand" ""))])]
3492 "!TARGET_64BIT && reload_completed && !flag_peephole2
3493 && GET_CODE (operands[0]) == MEM
3494 && register_operand (XEXP (operands[0], 0), SImode)"
3495 [(set (match_dup 4) (match_dup 5))
3496 (parallel [(set (match_dup 0) (const_int 0))
3497 (clobber (match_dup 1))
3498 (clobber (match_dup 4))
3499 (use (match_dup 2))
3500 (use (match_dup 3))
3501 (const_int 0)])]
3502 "
3503 {
3504 operands[5] = XEXP (operands[0], 0);
3505 operands[0] = replace_equiv_address (operands[0], operands[4]);
3506 }")
3507
3508 (define_peephole2
3509 [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3510 (const_int 0))
3511 (clobber (match_operand:SI 1 "register_operand" ""))
3512 (clobber (match_operand:SI 4 "register_operand" ""))
3513 (use (match_operand:SI 2 "arith_operand" ""))
3514 (use (match_operand:SI 3 "const_int_operand" ""))])]
3515 "!TARGET_64BIT
3516 && GET_CODE (operands[0]) == MEM
3517 && register_operand (XEXP (operands[0], 0), SImode)"
3518 [(parallel [(set (match_dup 0) (const_int 0))
3519 (clobber (match_dup 1))
3520 (clobber (match_dup 4))
3521 (use (match_dup 2))
3522 (use (match_dup 3))
3523 (const_int 0)])]
3524 "
3525 {
3526 rtx addr = XEXP (operands[0], 0);
3527 if (dead_or_set_p (curr_insn, addr))
3528 operands[4] = addr;
3529 else
3530 {
3531 emit_insn (gen_rtx_SET (VOIDmode, operands[4], addr));
3532 operands[0] = replace_equiv_address (operands[0], operands[4]);
3533 }
3534 }")
3535
3536 (define_insn "clrmemsi_postreload"
3537 [(set (mem:BLK (match_operand:SI 0 "register_operand" "+r,r"))
3538 (const_int 0))
3539 (clobber (match_operand:SI 1 "register_operand" "=&r,&r")) ;loop cnt/tmp
3540 (clobber (match_dup 0))
3541 (use (match_operand:SI 2 "arith_operand" "J,1")) ;byte count
3542 (use (match_operand:SI 3 "const_int_operand" "n,n")) ;alignment
3543 (const_int 0)]
3544 "!TARGET_64BIT && reload_completed"
3545 "* return output_block_clear (operands, !which_alternative);"
3546 [(set_attr "type" "multi,multi")])
3547
3548 (define_expand "setmemdi"
3549 [(parallel [(set (match_operand:BLK 0 "" "")
3550 (match_operand 2 "const_int_operand" ""))
3551 (clobber (match_dup 4))
3552 (clobber (match_dup 5))
3553 (use (match_operand:DI 1 "arith_operand" ""))
3554 (use (match_operand:DI 3 "const_int_operand" ""))])]
3555 "TARGET_64BIT && optimize > 0"
3556 "
3557 {
3558 int size, align;
3559
3560 /* If value to set is not zero, use the library routine. */
3561 if (operands[2] != const0_rtx)
3562 FAIL;
3563
3564 /* Undetermined size, use the library routine. */
3565 if (GET_CODE (operands[1]) != CONST_INT)
3566 FAIL;
3567
3568 size = INTVAL (operands[1]);
3569 align = INTVAL (operands[3]);
3570 align = align > 8 ? 8 : align;
3571
3572 /* If size/alignment is large, then use the library routines. */
3573 if (size / align > 16)
3574 FAIL;
3575
3576 /* This does happen, but not often enough to worry much about. */
3577 if (size / align < MOVE_RATIO (optimize_insn_for_speed_p ()))
3578 FAIL;
3579
3580 /* Fall through means we're going to use our block clear pattern. */
3581 operands[0]
3582 = replace_equiv_address (operands[0],
3583 copy_to_mode_reg (DImode, XEXP (operands[0], 0)));
3584 operands[4] = gen_reg_rtx (DImode);
3585 operands[5] = gen_reg_rtx (DImode);
3586 }")
3587
3588 (define_insn "clrmemdi_prereload"
3589 [(set (mem:BLK (match_operand:DI 0 "register_operand" "r,r"))
3590 (const_int 0))
3591 (clobber (match_operand:DI 1 "register_operand" "=&r,&r")) ;loop cnt/tmp
3592 (clobber (match_operand:DI 4 "register_operand" "=&r,&r")) ;item tmp1
3593 (use (match_operand:DI 2 "arith_operand" "J,1")) ;byte count
3594 (use (match_operand:DI 3 "const_int_operand" "n,n"))] ;alignment
3595 "TARGET_64BIT"
3596 "#"
3597 [(set_attr "type" "multi,multi")])
3598
3599 (define_split
3600 [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3601 (const_int 0))
3602 (clobber (match_operand:DI 1 "register_operand" ""))
3603 (clobber (match_operand:DI 4 "register_operand" ""))
3604 (use (match_operand:DI 2 "arith_operand" ""))
3605 (use (match_operand:DI 3 "const_int_operand" ""))])]
3606 "TARGET_64BIT && reload_completed && !flag_peephole2
3607 && GET_CODE (operands[0]) == MEM
3608 && register_operand (XEXP (operands[0], 0), DImode)"
3609 [(set (match_dup 4) (match_dup 5))
3610 (parallel [(set (match_dup 0) (const_int 0))
3611 (clobber (match_dup 1))
3612 (clobber (match_dup 4))
3613 (use (match_dup 2))
3614 (use (match_dup 3))
3615 (const_int 0)])]
3616 "
3617 {
3618 operands[5] = XEXP (operands[0], 0);
3619 operands[0] = replace_equiv_address (operands[0], operands[4]);
3620 }")
3621
3622 (define_peephole2
3623 [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3624 (const_int 0))
3625 (clobber (match_operand:DI 1 "register_operand" ""))
3626 (clobber (match_operand:DI 4 "register_operand" ""))
3627 (use (match_operand:DI 2 "arith_operand" ""))
3628 (use (match_operand:DI 3 "const_int_operand" ""))])]
3629 "TARGET_64BIT
3630 && GET_CODE (operands[0]) == MEM
3631 && register_operand (XEXP (operands[0], 0), DImode)"
3632 [(parallel [(set (match_dup 0) (const_int 0))
3633 (clobber (match_dup 1))
3634 (clobber (match_dup 4))
3635 (use (match_dup 2))
3636 (use (match_dup 3))
3637 (const_int 0)])]
3638 "
3639 {
3640 rtx addr = XEXP (operands[0], 0);
3641 if (dead_or_set_p (curr_insn, addr))
3642 operands[4] = addr;
3643 else
3644 {
3645 emit_insn (gen_rtx_SET (VOIDmode, operands[4], addr));
3646 operands[0] = replace_equiv_address (operands[0], operands[4]);
3647 }
3648 }")
3649
3650 (define_insn "clrmemdi_postreload"
3651 [(set (mem:BLK (match_operand:DI 0 "register_operand" "+r,r"))
3652 (const_int 0))
3653 (clobber (match_operand:DI 1 "register_operand" "=&r,&r")) ;loop cnt/tmp
3654 (clobber (match_dup 0))
3655 (use (match_operand:DI 2 "arith_operand" "J,1")) ;byte count
3656 (use (match_operand:DI 3 "const_int_operand" "n,n")) ;alignment
3657 (const_int 0)]
3658 "TARGET_64BIT && reload_completed"
3659 "* return output_block_clear (operands, !which_alternative);"
3660 [(set_attr "type" "multi,multi")])
3661 \f
3662 ;; Floating point move insns
3663
3664 ;; This pattern forces (set (reg:DF ...) (const_double ...))
3665 ;; to be reloaded by putting the constant into memory when
3666 ;; reg is a floating point register.
3667 ;;
3668 ;; For integer registers we use ldil;ldo to set the appropriate
3669 ;; value.
3670 ;;
3671 ;; This must come before the movdf pattern, and it must be present
3672 ;; to handle obscure reloading cases.
3673 (define_insn ""
3674 [(set (match_operand:DF 0 "register_operand" "=?r,f")
3675 (match_operand:DF 1 "" "?F,m"))]
3676 "GET_CODE (operands[1]) == CONST_DOUBLE
3677 && operands[1] != CONST0_RTX (DFmode)
3678 && !TARGET_64BIT
3679 && !TARGET_SOFT_FLOAT"
3680 "* return (which_alternative == 0 ? output_move_double (operands)
3681 : \"fldd%F1 %1,%0\");"
3682 [(set_attr "type" "move,fpload")
3683 (set_attr "length" "16,4")])
3684
3685 (define_expand "movdf"
3686 [(set (match_operand:DF 0 "general_operand" "")
3687 (match_operand:DF 1 "general_operand" ""))]
3688 ""
3689 "
3690 {
3691 if (GET_CODE (operands[1]) == CONST_DOUBLE
3692 && operands[1] != CONST0_RTX (DFmode))
3693 {
3694 /* Reject CONST_DOUBLE loads to all hard registers when
3695 generating 64-bit code and to floating point registers
3696 when generating 32-bit code. */
3697 if (REG_P (operands[0])
3698 && HARD_REGISTER_P (operands[0])
3699 && (TARGET_64BIT || REGNO (operands[0]) >= 32))
3700 FAIL;
3701
3702 if (TARGET_64BIT)
3703 operands[1] = force_const_mem (DFmode, operands[1]);
3704 }
3705
3706 if (emit_move_sequence (operands, DFmode, 0))
3707 DONE;
3708 }")
3709
3710 ;; Handle DFmode input reloads requiring a general register as a
3711 ;; scratch register.
3712 (define_expand "reload_indf"
3713 [(set (match_operand:DF 0 "register_operand" "=Z")
3714 (match_operand:DF 1 "non_hard_reg_operand" ""))
3715 (clobber (match_operand:DF 2 "register_operand" "=&r"))]
3716 ""
3717 "
3718 {
3719 if (emit_move_sequence (operands, DFmode, operands[2]))
3720 DONE;
3721
3722 /* We don't want the clobber emitted, so handle this ourselves. */
3723 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
3724 DONE;
3725 }")
3726
3727 ;; Handle DFmode output reloads requiring a general register as a
3728 ;; scratch register.
3729 (define_expand "reload_outdf"
3730 [(set (match_operand:DF 0 "non_hard_reg_operand" "")
3731 (match_operand:DF 1 "register_operand" "Z"))
3732 (clobber (match_operand:DF 2 "register_operand" "=&r"))]
3733 ""
3734 "
3735 {
3736 if (emit_move_sequence (operands, DFmode, operands[2]))
3737 DONE;
3738
3739 /* We don't want the clobber emitted, so handle this ourselves. */
3740 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
3741 DONE;
3742 }")
3743
3744 (define_insn ""
3745 [(set (match_operand:DF 0 "move_dest_operand"
3746 "=f,*r,Q,?o,?Q,f,*r,*r,?*r,?f")
3747 (match_operand:DF 1 "reg_or_0_or_nonsymb_mem_operand"
3748 "fG,*rG,f,*r,*r,RQ,o,RQ,f,*r"))]
3749 "(register_operand (operands[0], DFmode)
3750 || reg_or_0_operand (operands[1], DFmode))
3751 && !(GET_CODE (operands[1]) == CONST_DOUBLE
3752 && GET_CODE (operands[0]) == MEM)
3753 && !TARGET_64BIT
3754 && !TARGET_SOFT_FLOAT"
3755 "*
3756 {
3757 if ((FP_REG_P (operands[0]) || FP_REG_P (operands[1])
3758 || operands[1] == CONST0_RTX (DFmode))
3759 && !(REG_P (operands[0]) && REG_P (operands[1])
3760 && FP_REG_P (operands[0]) ^ FP_REG_P (operands[1])))
3761 return output_fp_move_double (operands);
3762 return output_move_double (operands);
3763 }"
3764 [(set_attr "type" "fpalu,move,fpstore,store,store,fpload,load,load,fpstore_load,store_fpload")
3765 (set_attr "length" "4,8,4,8,16,4,8,16,12,12")])
3766
3767 (define_insn ""
3768 [(set (match_operand:DF 0 "indexed_memory_operand" "=R")
3769 (match_operand:DF 1 "reg_or_0_operand" "f"))]
3770 "!TARGET_SOFT_FLOAT
3771 && !TARGET_DISABLE_INDEXING
3772 && reload_completed"
3773 "fstd%F0 %1,%0"
3774 [(set_attr "type" "fpstore")
3775 (set_attr "pa_combine_type" "addmove")
3776 (set_attr "length" "4")])
3777
3778 (define_peephole2
3779 [(set (match_operand:SI 0 "register_operand" "")
3780 (plus:SI (mult:SI (match_operand:SI 1 "register_operand" "")
3781 (const_int 8))
3782 (match_operand:SI 2 "register_operand" "")))
3783 (set (mem:DF (match_dup 0))
3784 (match_operand:DF 3 "register_operand" ""))]
3785 "!TARGET_SOFT_FLOAT
3786 && !TARGET_DISABLE_INDEXING
3787 && REG_OK_FOR_BASE_P (operands[2])
3788 && FP_REGNO_P (REGNO (operands[3]))"
3789 [(set (mem:DF (plus:SI (mult:SI (match_dup 1) (const_int 8)) (match_dup 2)))
3790 (match_dup 3))
3791 (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 8))
3792 (match_dup 2)))]
3793 "")
3794
3795 (define_peephole2
3796 [(set (match_operand:SI 0 "register_operand" "")
3797 (plus:SI (match_operand:SI 2 "register_operand" "")
3798 (mult:SI (match_operand:SI 1 "register_operand" "")
3799 (const_int 8))))
3800 (set (mem:DF (match_dup 0))
3801 (match_operand:DF 3 "register_operand" ""))]
3802 "!TARGET_SOFT_FLOAT
3803 && !TARGET_DISABLE_INDEXING
3804 && REG_OK_FOR_BASE_P (operands[2])
3805 && FP_REGNO_P (REGNO (operands[3]))"
3806 [(set (mem:DF (plus:SI (mult:SI (match_dup 1) (const_int 8)) (match_dup 2)))
3807 (match_dup 3))
3808 (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 8))
3809 (match_dup 2)))]
3810 "")
3811
3812 (define_peephole2
3813 [(set (match_operand:DI 0 "register_operand" "")
3814 (plus:DI (mult:DI (match_operand:DI 1 "register_operand" "")
3815 (const_int 8))
3816 (match_operand:DI 2 "register_operand" "")))
3817 (set (mem:DF (match_dup 0))
3818 (match_operand:DF 3 "register_operand" ""))]
3819 "!TARGET_SOFT_FLOAT
3820 && !TARGET_DISABLE_INDEXING
3821 && TARGET_64BIT
3822 && REG_OK_FOR_BASE_P (operands[2])
3823 && FP_REGNO_P (REGNO (operands[3]))"
3824 [(set (mem:DF (plus:DI (mult:DI (match_dup 1) (const_int 8)) (match_dup 2)))
3825 (match_dup 3))
3826 (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 8))
3827 (match_dup 2)))]
3828 "")
3829
3830 (define_peephole2
3831 [(set (match_operand:DI 0 "register_operand" "")
3832 (plus:DI (match_operand:DI 2 "register_operand" "")
3833 (mult:DI (match_operand:DI 1 "register_operand" "")
3834 (const_int 8))))
3835 (set (mem:DF (match_dup 0))
3836 (match_operand:DF 3 "register_operand" ""))]
3837 "!TARGET_SOFT_FLOAT
3838 && !TARGET_DISABLE_INDEXING
3839 && TARGET_64BIT
3840 && REG_OK_FOR_BASE_P (operands[2])
3841 && FP_REGNO_P (REGNO (operands[3]))"
3842 [(set (mem:DF (plus:DI (mult:DI (match_dup 1) (const_int 8)) (match_dup 2)))
3843 (match_dup 3))
3844 (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 8))
3845 (match_dup 2)))]
3846 "")
3847
3848 (define_peephole2
3849 [(set (match_operand:SI 0 "register_operand" "")
3850 (plus:SI (match_operand:SI 1 "register_operand" "")
3851 (match_operand:SI 2 "register_operand" "")))
3852 (set (mem:DF (match_dup 0))
3853 (match_operand:DF 3 "register_operand" ""))]
3854 "!TARGET_SOFT_FLOAT
3855 && !TARGET_DISABLE_INDEXING
3856 && TARGET_NO_SPACE_REGS
3857 && REG_OK_FOR_INDEX_P (operands[1])
3858 && REG_OK_FOR_BASE_P (operands[2])
3859 && FP_REGNO_P (REGNO (operands[3]))"
3860 [(set (mem:DF (plus:SI (match_dup 1) (match_dup 2)))
3861 (match_dup 3))
3862 (set (match_dup 0) (plus:SI (match_dup 1) (match_dup 2)))]
3863 "")
3864
3865 (define_peephole2
3866 [(set (match_operand:SI 0 "register_operand" "")
3867 (plus:SI (match_operand:SI 1 "register_operand" "")
3868 (match_operand:SI 2 "register_operand" "")))
3869 (set (mem:DF (match_dup 0))
3870 (match_operand:DF 3 "register_operand" ""))]
3871 "!TARGET_SOFT_FLOAT
3872 && !TARGET_DISABLE_INDEXING
3873 && TARGET_NO_SPACE_REGS
3874 && REG_OK_FOR_BASE_P (operands[1])
3875 && REG_OK_FOR_INDEX_P (operands[2])
3876 && FP_REGNO_P (REGNO (operands[3]))"
3877 [(set (mem:DF (plus:SI (match_dup 2) (match_dup 1)))
3878 (match_dup 3))
3879 (set (match_dup 0) (plus:SI (match_dup 2) (match_dup 1)))]
3880 "")
3881
3882 (define_peephole2
3883 [(set (match_operand:DI 0 "register_operand" "")
3884 (plus:DI (match_operand:DI 1 "register_operand" "")
3885 (match_operand:DI 2 "register_operand" "")))
3886 (set (mem:DF (match_dup 0))
3887 (match_operand:DF 3 "register_operand" ""))]
3888 "!TARGET_SOFT_FLOAT
3889 && !TARGET_DISABLE_INDEXING
3890 && TARGET_64BIT
3891 && TARGET_NO_SPACE_REGS
3892 && REG_OK_FOR_INDEX_P (operands[1])
3893 && REG_OK_FOR_BASE_P (operands[2])
3894 && FP_REGNO_P (REGNO (operands[3]))"
3895 [(set (mem:DF (plus:DI (match_dup 1) (match_dup 2)))
3896 (match_dup 3))
3897 (set (match_dup 0) (plus:DI (match_dup 1) (match_dup 2)))]
3898 "")
3899
3900 (define_peephole2
3901 [(set (match_operand:DI 0 "register_operand" "")
3902 (plus:DI (match_operand:DI 1 "register_operand" "")
3903 (match_operand:DI 2 "register_operand" "")))
3904 (set (mem:DF (match_dup 0))
3905 (match_operand:DF 3 "register_operand" ""))]
3906 "!TARGET_SOFT_FLOAT
3907 && !TARGET_DISABLE_INDEXING
3908 && TARGET_64BIT
3909 && TARGET_NO_SPACE_REGS
3910 && REG_OK_FOR_BASE_P (operands[1])
3911 && REG_OK_FOR_INDEX_P (operands[2])
3912 && FP_REGNO_P (REGNO (operands[3]))"
3913 [(set (mem:DF (plus:DI (match_dup 2) (match_dup 1)))
3914 (match_dup 3))
3915 (set (match_dup 0) (plus:DI (match_dup 2) (match_dup 1)))]
3916 "")
3917
3918 (define_insn ""
3919 [(set (match_operand:DF 0 "move_dest_operand"
3920 "=r,?o,?Q,r,r")
3921 (match_operand:DF 1 "reg_or_0_or_nonsymb_mem_operand"
3922 "rG,r,r,o,RQ"))]
3923 "(register_operand (operands[0], DFmode)
3924 || reg_or_0_operand (operands[1], DFmode))
3925 && !TARGET_64BIT
3926 && TARGET_SOFT_FLOAT"
3927 "*
3928 {
3929 return output_move_double (operands);
3930 }"
3931 [(set_attr "type" "move,store,store,load,load")
3932 (set_attr "length" "8,8,16,8,16")])
3933
3934 (define_insn ""
3935 [(set (match_operand:DF 0 "move_dest_operand"
3936 "=!*r,*r,*r,*r,*r,Q,f,f,T")
3937 (match_operand:DF 1 "move_src_operand"
3938 "!*r,J,N,K,RQ,*rG,fG,RT,f"))]
3939 "(register_operand (operands[0], DFmode)
3940 || reg_or_0_operand (operands[1], DFmode))
3941 && !TARGET_SOFT_FLOAT && TARGET_64BIT"
3942 "@
3943 copy %1,%0
3944 ldi %1,%0
3945 ldil L'%1,%0
3946 depdi,z %z1,%0
3947 ldd%M1 %1,%0
3948 std%M0 %r1,%0
3949 fcpy,dbl %f1,%0
3950 fldd%F1 %1,%0
3951 fstd%F0 %1,%0"
3952 [(set_attr "type" "move,move,move,shift,load,store,fpalu,fpload,fpstore")
3953 (set_attr "pa_combine_type" "addmove")
3954 (set_attr "length" "4,4,4,4,4,4,4,4,4")])
3955
3956 \f
3957 (define_expand "movdi"
3958 [(set (match_operand:DI 0 "general_operand" "")
3959 (match_operand:DI 1 "general_operand" ""))]
3960 ""
3961 "
3962 {
3963 /* Except for zero, we don't support loading a CONST_INT directly
3964 to a hard floating-point register since a scratch register is
3965 needed for the operation. While the operation could be handled
3966 before register allocation, the simplest solution is to fail. */
3967 if (TARGET_64BIT
3968 && GET_CODE (operands[1]) == CONST_INT
3969 && operands[1] != CONST0_RTX (DImode)
3970 && REG_P (operands[0])
3971 && HARD_REGISTER_P (operands[0])
3972 && REGNO (operands[0]) >= 32)
3973 FAIL;
3974
3975 if (emit_move_sequence (operands, DImode, 0))
3976 DONE;
3977 }")
3978
3979 ;; Handle DImode input reloads requiring %r1 as a scratch register.
3980 (define_expand "reload_indi_r1"
3981 [(set (match_operand:DI 0 "register_operand" "=Z")
3982 (match_operand:DI 1 "non_hard_reg_operand" ""))
3983 (clobber (match_operand:SI 2 "register_operand" "=&a"))]
3984 ""
3985 "
3986 {
3987 if (emit_move_sequence (operands, DImode, operands[2]))
3988 DONE;
3989
3990 /* We don't want the clobber emitted, so handle this ourselves. */
3991 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
3992 DONE;
3993 }")
3994
3995 ;; Handle DImode input reloads requiring a general register as a
3996 ;; scratch register.
3997 (define_expand "reload_indi"
3998 [(set (match_operand:DI 0 "register_operand" "=Z")
3999 (match_operand:DI 1 "non_hard_reg_operand" ""))
4000 (clobber (match_operand:SI 2 "register_operand" "=&r"))]
4001 ""
4002 "
4003 {
4004 if (emit_move_sequence (operands, DImode, operands[2]))
4005 DONE;
4006
4007 /* We don't want the clobber emitted, so handle this ourselves. */
4008 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4009 DONE;
4010 }")
4011
4012 ;; Handle DImode output reloads requiring a general register as a
4013 ;; scratch register.
4014 (define_expand "reload_outdi"
4015 [(set (match_operand:DI 0 "non_hard_reg_operand" "")
4016 (match_operand:DI 1 "register_operand" "Z"))
4017 (clobber (match_operand:SI 2 "register_operand" "=&r"))]
4018 ""
4019 "
4020 {
4021 if (emit_move_sequence (operands, DImode, operands[2]))
4022 DONE;
4023
4024 /* We don't want the clobber emitted, so handle this ourselves. */
4025 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4026 DONE;
4027 }")
4028
4029 (define_insn ""
4030 [(set (match_operand:DI 0 "register_operand" "=r")
4031 (high:DI (match_operand 1 "" "")))]
4032 "!TARGET_64BIT"
4033 "*
4034 {
4035 rtx op0 = operands[0];
4036 rtx op1 = operands[1];
4037
4038 switch (GET_CODE (op1))
4039 {
4040 case CONST_INT:
4041 #if HOST_BITS_PER_WIDE_INT <= 32
4042 operands[0] = operand_subword (op0, 1, 0, DImode);
4043 output_asm_insn (\"ldil L'%1,%0\", operands);
4044
4045 operands[0] = operand_subword (op0, 0, 0, DImode);
4046 if (INTVAL (op1) < 0)
4047 output_asm_insn (\"ldi -1,%0\", operands);
4048 else
4049 output_asm_insn (\"ldi 0,%0\", operands);
4050 #else
4051 operands[0] = operand_subword (op0, 1, 0, DImode);
4052 operands[1] = GEN_INT (INTVAL (op1) & 0xffffffff);
4053 output_asm_insn (\"ldil L'%1,%0\", operands);
4054
4055 operands[0] = operand_subword (op0, 0, 0, DImode);
4056 operands[1] = GEN_INT (INTVAL (op1) >> 32);
4057 output_asm_insn (singlemove_string (operands), operands);
4058 #endif
4059 break;
4060
4061 case CONST_DOUBLE:
4062 operands[0] = operand_subword (op0, 1, 0, DImode);
4063 operands[1] = GEN_INT (CONST_DOUBLE_LOW (op1));
4064 output_asm_insn (\"ldil L'%1,%0\", operands);
4065
4066 operands[0] = operand_subword (op0, 0, 0, DImode);
4067 operands[1] = GEN_INT (CONST_DOUBLE_HIGH (op1));
4068 output_asm_insn (singlemove_string (operands), operands);
4069 break;
4070
4071 default:
4072 gcc_unreachable ();
4073 }
4074 return \"\";
4075 }"
4076 [(set_attr "type" "move")
4077 (set_attr "length" "12")])
4078
4079 (define_insn ""
4080 [(set (match_operand:DI 0 "move_dest_operand"
4081 "=r,o,Q,r,r,r,*f,*f,T,?r,?*f")
4082 (match_operand:DI 1 "general_operand"
4083 "rM,r,r,o*R,Q,i,*fM,RT,*f,*f,r"))]
4084 "(register_operand (operands[0], DImode)
4085 || reg_or_0_operand (operands[1], DImode))
4086 && !TARGET_64BIT
4087 && !TARGET_SOFT_FLOAT"
4088 "*
4089 {
4090 if ((FP_REG_P (operands[0]) || FP_REG_P (operands[1])
4091 || operands[1] == CONST0_RTX (DFmode))
4092 && !(REG_P (operands[0]) && REG_P (operands[1])
4093 && FP_REG_P (operands[0]) ^ FP_REG_P (operands[1])))
4094 return output_fp_move_double (operands);
4095 return output_move_double (operands);
4096 }"
4097 [(set_attr "type"
4098 "move,store,store,load,load,multi,fpalu,fpload,fpstore,fpstore_load,store_fpload")
4099 (set_attr "length" "8,8,16,8,16,16,4,4,4,12,12")])
4100
4101 (define_insn ""
4102 [(set (match_operand:DI 0 "move_dest_operand"
4103 "=r,r,r,r,r,r,Q,!*q,!r,!*f,*f,T")
4104 (match_operand:DI 1 "move_src_operand"
4105 "A,r,J,N,K,RQ,rM,!rM,!*q,!*fM,RT,*f"))]
4106 "(register_operand (operands[0], DImode)
4107 || reg_or_0_operand (operands[1], DImode))
4108 && !TARGET_SOFT_FLOAT && TARGET_64BIT"
4109 "@
4110 ldd RT'%A1,%0
4111 copy %1,%0
4112 ldi %1,%0
4113 ldil L'%1,%0
4114 depdi,z %z1,%0
4115 ldd%M1 %1,%0
4116 std%M0 %r1,%0
4117 mtsar %r1
4118 {mfctl|mfctl,w} %%sar,%0
4119 fcpy,dbl %f1,%0
4120 fldd%F1 %1,%0
4121 fstd%F0 %1,%0"
4122 [(set_attr "type" "load,move,move,move,shift,load,store,move,move,fpalu,fpload,fpstore")
4123 (set_attr "pa_combine_type" "addmove")
4124 (set_attr "length" "4,4,4,4,4,4,4,4,4,4,4,4")])
4125
4126 (define_insn ""
4127 [(set (match_operand:DI 0 "indexed_memory_operand" "=R")
4128 (match_operand:DI 1 "register_operand" "f"))]
4129 "!TARGET_SOFT_FLOAT
4130 && TARGET_64BIT
4131 && !TARGET_DISABLE_INDEXING
4132 && reload_completed"
4133 "fstd%F0 %1,%0"
4134 [(set_attr "type" "fpstore")
4135 (set_attr "pa_combine_type" "addmove")
4136 (set_attr "length" "4")])
4137
4138 (define_peephole2
4139 [(set (match_operand:DI 0 "register_operand" "")
4140 (plus:DI (mult:DI (match_operand:DI 1 "register_operand" "")
4141 (const_int 8))
4142 (match_operand:DI 2 "register_operand" "")))
4143 (set (mem:DI (match_dup 0))
4144 (match_operand:DI 3 "register_operand" ""))]
4145 "!TARGET_SOFT_FLOAT
4146 && !TARGET_DISABLE_INDEXING
4147 && TARGET_64BIT
4148 && REG_OK_FOR_BASE_P (operands[2])
4149 && FP_REGNO_P (REGNO (operands[3]))"
4150 [(set (mem:DI (plus:DI (mult:DI (match_dup 1) (const_int 8)) (match_dup 2)))
4151 (match_dup 3))
4152 (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 8))
4153 (match_dup 2)))]
4154 "")
4155
4156 (define_peephole2
4157 [(set (match_operand:DI 0 "register_operand" "")
4158 (plus:DI (match_operand:DI 2 "register_operand" "")
4159 (mult:DI (match_operand:DI 1 "register_operand" "")
4160 (const_int 8))))
4161 (set (mem:DI (match_dup 0))
4162 (match_operand:DI 3 "register_operand" ""))]
4163 "!TARGET_SOFT_FLOAT
4164 && !TARGET_DISABLE_INDEXING
4165 && TARGET_64BIT
4166 && REG_OK_FOR_BASE_P (operands[2])
4167 && FP_REGNO_P (REGNO (operands[3]))"
4168 [(set (mem:DI (plus:DI (mult:DI (match_dup 1) (const_int 8)) (match_dup 2)))
4169 (match_dup 3))
4170 (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 8))
4171 (match_dup 2)))]
4172 "")
4173
4174 (define_peephole2
4175 [(set (match_operand:DI 0 "register_operand" "")
4176 (plus:DI (match_operand:DI 1 "register_operand" "")
4177 (match_operand:DI 2 "register_operand" "")))
4178 (set (mem:DI (match_dup 0))
4179 (match_operand:DI 3 "register_operand" ""))]
4180 "!TARGET_SOFT_FLOAT
4181 && !TARGET_DISABLE_INDEXING
4182 && TARGET_64BIT
4183 && TARGET_NO_SPACE_REGS
4184 && REG_OK_FOR_INDEX_P (operands[1])
4185 && REG_OK_FOR_BASE_P (operands[2])
4186 && FP_REGNO_P (REGNO (operands[3]))"
4187 [(set (mem:DI (plus:DI (match_dup 1) (match_dup 2)))
4188 (match_dup 3))
4189 (set (match_dup 0) (plus:DI (match_dup 1) (match_dup 2)))]
4190 "")
4191
4192 (define_peephole2
4193 [(set (match_operand:DI 0 "register_operand" "")
4194 (plus:DI (match_operand:DI 1 "register_operand" "")
4195 (match_operand:DI 2 "register_operand" "")))
4196 (set (mem:DI (match_dup 0))
4197 (match_operand:DI 3 "register_operand" ""))]
4198 "!TARGET_SOFT_FLOAT
4199 && !TARGET_DISABLE_INDEXING
4200 && TARGET_64BIT
4201 && TARGET_NO_SPACE_REGS
4202 && REG_OK_FOR_BASE_P (operands[1])
4203 && REG_OK_FOR_INDEX_P (operands[2])
4204 && FP_REGNO_P (REGNO (operands[3]))"
4205 [(set (mem:DI (plus:DI (match_dup 2) (match_dup 1)))
4206 (match_dup 3))
4207 (set (match_dup 0) (plus:DI (match_dup 2) (match_dup 1)))]
4208 "")
4209
4210 (define_insn ""
4211 [(set (match_operand:DI 0 "move_dest_operand"
4212 "=r,o,Q,r,r,r")
4213 (match_operand:DI 1 "general_operand"
4214 "rM,r,r,o,Q,i"))]
4215 "(register_operand (operands[0], DImode)
4216 || reg_or_0_operand (operands[1], DImode))
4217 && !TARGET_64BIT
4218 && TARGET_SOFT_FLOAT"
4219 "*
4220 {
4221 return output_move_double (operands);
4222 }"
4223 [(set_attr "type" "move,store,store,load,load,multi")
4224 (set_attr "length" "8,8,16,8,16,16")])
4225
4226 (define_insn ""
4227 [(set (match_operand:DI 0 "register_operand" "=r,&r")
4228 (lo_sum:DI (match_operand:DI 1 "register_operand" "0,r")
4229 (match_operand:DI 2 "immediate_operand" "i,i")))]
4230 "!TARGET_64BIT"
4231 "*
4232 {
4233 /* Don't output a 64-bit constant, since we can't trust the assembler to
4234 handle it correctly. */
4235 if (GET_CODE (operands[2]) == CONST_DOUBLE)
4236 operands[2] = GEN_INT (CONST_DOUBLE_LOW (operands[2]));
4237 else if (HOST_BITS_PER_WIDE_INT > 32
4238 && GET_CODE (operands[2]) == CONST_INT)
4239 operands[2] = GEN_INT (INTVAL (operands[2]) & 0xffffffff);
4240 if (which_alternative == 1)
4241 output_asm_insn (\"copy %1,%0\", operands);
4242 return \"ldo R'%G2(%R1),%R0\";
4243 }"
4244 [(set_attr "type" "move,move")
4245 (set_attr "length" "4,8")])
4246
4247 ;; This pattern forces (set (reg:SF ...) (const_double ...))
4248 ;; to be reloaded by putting the constant into memory when
4249 ;; reg is a floating point register.
4250 ;;
4251 ;; For integer registers we use ldil;ldo to set the appropriate
4252 ;; value.
4253 ;;
4254 ;; This must come before the movsf pattern, and it must be present
4255 ;; to handle obscure reloading cases.
4256 (define_insn ""
4257 [(set (match_operand:SF 0 "register_operand" "=?r,f")
4258 (match_operand:SF 1 "" "?F,m"))]
4259 "GET_CODE (operands[1]) == CONST_DOUBLE
4260 && operands[1] != CONST0_RTX (SFmode)
4261 && ! TARGET_SOFT_FLOAT"
4262 "* return (which_alternative == 0 ? singlemove_string (operands)
4263 : \" fldw%F1 %1,%0\");"
4264 [(set_attr "type" "move,fpload")
4265 (set_attr "length" "8,4")])
4266
4267 (define_expand "movsf"
4268 [(set (match_operand:SF 0 "general_operand" "")
4269 (match_operand:SF 1 "general_operand" ""))]
4270 ""
4271 "
4272 {
4273 /* Reject CONST_DOUBLE loads to floating point registers. */
4274 if (GET_CODE (operands[1]) == CONST_DOUBLE
4275 && operands[1] != CONST0_RTX (SFmode)
4276 && REG_P (operands[0])
4277 && HARD_REGISTER_P (operands[0])
4278 && REGNO (operands[0]) >= 32)
4279 FAIL;
4280
4281 if (emit_move_sequence (operands, SFmode, 0))
4282 DONE;
4283 }")
4284
4285 ;; Handle SFmode input reloads requiring a general register as a
4286 ;; scratch register.
4287 (define_expand "reload_insf"
4288 [(set (match_operand:SF 0 "register_operand" "=Z")
4289 (match_operand:SF 1 "non_hard_reg_operand" ""))
4290 (clobber (match_operand:SF 2 "register_operand" "=&r"))]
4291 ""
4292 "
4293 {
4294 if (emit_move_sequence (operands, SFmode, operands[2]))
4295 DONE;
4296
4297 /* We don't want the clobber emitted, so handle this ourselves. */
4298 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4299 DONE;
4300 }")
4301
4302 ;; Handle SFmode output reloads requiring a general register as a
4303 ;; scratch register.
4304 (define_expand "reload_outsf"
4305 [(set (match_operand:SF 0 "non_hard_reg_operand" "")
4306 (match_operand:SF 1 "register_operand" "Z"))
4307 (clobber (match_operand:SF 2 "register_operand" "=&r"))]
4308 ""
4309 "
4310 {
4311 if (emit_move_sequence (operands, SFmode, operands[2]))
4312 DONE;
4313
4314 /* We don't want the clobber emitted, so handle this ourselves. */
4315 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4316 DONE;
4317 }")
4318
4319 (define_insn ""
4320 [(set (match_operand:SF 0 "move_dest_operand"
4321 "=f,!*r,f,*r,Q,Q,?*r,?f")
4322 (match_operand:SF 1 "reg_or_0_or_nonsymb_mem_operand"
4323 "fG,!*rG,RQ,RQ,f,*rG,f,*r"))]
4324 "(register_operand (operands[0], SFmode)
4325 || reg_or_0_operand (operands[1], SFmode))
4326 && !TARGET_SOFT_FLOAT
4327 && !TARGET_64BIT"
4328 "@
4329 fcpy,sgl %f1,%0
4330 copy %r1,%0
4331 fldw%F1 %1,%0
4332 ldw%M1 %1,%0
4333 fstw%F0 %1,%0
4334 stw%M0 %r1,%0
4335 {fstws|fstw} %1,-16(%%sp)\n\t{ldws|ldw} -16(%%sp),%0
4336 {stws|stw} %1,-16(%%sp)\n\t{fldws|fldw} -16(%%sp),%0"
4337 [(set_attr "type" "fpalu,move,fpload,load,fpstore,store,fpstore_load,store_fpload")
4338 (set_attr "pa_combine_type" "addmove")
4339 (set_attr "length" "4,4,4,4,4,4,8,8")])
4340
4341 (define_insn ""
4342 [(set (match_operand:SF 0 "move_dest_operand"
4343 "=f,!*r,f,*r,Q,Q")
4344 (match_operand:SF 1 "reg_or_0_or_nonsymb_mem_operand"
4345 "fG,!*rG,RQ,RQ,f,*rG"))]
4346 "(register_operand (operands[0], SFmode)
4347 || reg_or_0_operand (operands[1], SFmode))
4348 && !TARGET_SOFT_FLOAT
4349 && TARGET_64BIT"
4350 "@
4351 fcpy,sgl %f1,%0
4352 copy %r1,%0
4353 fldw%F1 %1,%0
4354 ldw%M1 %1,%0
4355 fstw%F0 %1,%0
4356 stw%M0 %r1,%0"
4357 [(set_attr "type" "fpalu,move,fpload,load,fpstore,store")
4358 (set_attr "pa_combine_type" "addmove")
4359 (set_attr "length" "4,4,4,4,4,4")])
4360
4361 (define_insn ""
4362 [(set (match_operand:SF 0 "indexed_memory_operand" "=R")
4363 (match_operand:SF 1 "register_operand" "f"))]
4364 "!TARGET_SOFT_FLOAT
4365 && !TARGET_DISABLE_INDEXING
4366 && reload_completed"
4367 "fstw%F0 %1,%0"
4368 [(set_attr "type" "fpstore")
4369 (set_attr "pa_combine_type" "addmove")
4370 (set_attr "length" "4")])
4371
4372 (define_peephole2
4373 [(set (match_operand:SI 0 "register_operand" "")
4374 (plus:SI (mult:SI (match_operand:SI 1 "register_operand" "")
4375 (const_int 4))
4376 (match_operand:SI 2 "register_operand" "")))
4377 (set (mem:SF (match_dup 0))
4378 (match_operand:SF 3 "register_operand" ""))]
4379 "!TARGET_SOFT_FLOAT
4380 && !TARGET_DISABLE_INDEXING
4381 && REG_OK_FOR_BASE_P (operands[2])
4382 && FP_REGNO_P (REGNO (operands[3]))"
4383 [(set (mem:SF (plus:SI (mult:SI (match_dup 1) (const_int 4)) (match_dup 2)))
4384 (match_dup 3))
4385 (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 4))
4386 (match_dup 2)))]
4387 "")
4388
4389 (define_peephole2
4390 [(set (match_operand:SI 0 "register_operand" "")
4391 (plus:SI (match_operand:SI 2 "register_operand" "")
4392 (mult:SI (match_operand:SI 1 "register_operand" "")
4393 (const_int 4))))
4394 (set (mem:SF (match_dup 0))
4395 (match_operand:SF 3 "register_operand" ""))]
4396 "!TARGET_SOFT_FLOAT
4397 && !TARGET_DISABLE_INDEXING
4398 && REG_OK_FOR_BASE_P (operands[2])
4399 && FP_REGNO_P (REGNO (operands[3]))"
4400 [(set (mem:SF (plus:SI (mult:SI (match_dup 1) (const_int 4)) (match_dup 2)))
4401 (match_dup 3))
4402 (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 4))
4403 (match_dup 2)))]
4404 "")
4405
4406 (define_peephole2
4407 [(set (match_operand:DI 0 "register_operand" "")
4408 (plus:DI (mult:DI (match_operand:DI 1 "register_operand" "")
4409 (const_int 4))
4410 (match_operand:DI 2 "register_operand" "")))
4411 (set (mem:SF (match_dup 0))
4412 (match_operand:SF 3 "register_operand" ""))]
4413 "!TARGET_SOFT_FLOAT
4414 && !TARGET_DISABLE_INDEXING
4415 && TARGET_64BIT
4416 && REG_OK_FOR_BASE_P (operands[2])
4417 && FP_REGNO_P (REGNO (operands[3]))"
4418 [(set (mem:SF (plus:DI (mult:DI (match_dup 1) (const_int 4)) (match_dup 2)))
4419 (match_dup 3))
4420 (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 4))
4421 (match_dup 2)))]
4422 "")
4423
4424 (define_peephole2
4425 [(set (match_operand:DI 0 "register_operand" "")
4426 (plus:DI (match_operand:DI 2 "register_operand" "")
4427 (mult:DI (match_operand:DI 1 "register_operand" "")
4428 (const_int 4))))
4429 (set (mem:SF (match_dup 0))
4430 (match_operand:SF 3 "register_operand" ""))]
4431 "!TARGET_SOFT_FLOAT
4432 && !TARGET_DISABLE_INDEXING
4433 && TARGET_64BIT
4434 && REG_OK_FOR_BASE_P (operands[2])
4435 && FP_REGNO_P (REGNO (operands[3]))"
4436 [(set (mem:SF (plus:DI (mult:DI (match_dup 1) (const_int 4)) (match_dup 2)))
4437 (match_dup 3))
4438 (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 4))
4439 (match_dup 2)))]
4440 "")
4441
4442 (define_peephole2
4443 [(set (match_operand:SI 0 "register_operand" "")
4444 (plus:SI (match_operand:SI 1 "register_operand" "")
4445 (match_operand:SI 2 "register_operand" "")))
4446 (set (mem:SF (match_dup 0))
4447 (match_operand:SF 3 "register_operand" ""))]
4448 "!TARGET_SOFT_FLOAT
4449 && !TARGET_DISABLE_INDEXING
4450 && TARGET_NO_SPACE_REGS
4451 && REG_OK_FOR_INDEX_P (operands[1])
4452 && REG_OK_FOR_BASE_P (operands[2])
4453 && FP_REGNO_P (REGNO (operands[3]))"
4454 [(set (mem:SF (plus:SI (match_dup 1) (match_dup 2)))
4455 (match_dup 3))
4456 (set (match_dup 0) (plus:SI (match_dup 1) (match_dup 2)))]
4457 "")
4458
4459 (define_peephole2
4460 [(set (match_operand:SI 0 "register_operand" "")
4461 (plus:SI (match_operand:SI 1 "register_operand" "")
4462 (match_operand:SI 2 "register_operand" "")))
4463 (set (mem:SF (match_dup 0))
4464 (match_operand:SF 3 "register_operand" ""))]
4465 "!TARGET_SOFT_FLOAT
4466 && !TARGET_DISABLE_INDEXING
4467 && TARGET_NO_SPACE_REGS
4468 && REG_OK_FOR_BASE_P (operands[1])
4469 && REG_OK_FOR_INDEX_P (operands[2])
4470 && FP_REGNO_P (REGNO (operands[3]))"
4471 [(set (mem:SF (plus:SI (match_dup 2) (match_dup 1)))
4472 (match_dup 3))
4473 (set (match_dup 0) (plus:SI (match_dup 2) (match_dup 1)))]
4474 "")
4475
4476 (define_peephole2
4477 [(set (match_operand:DI 0 "register_operand" "")
4478 (plus:DI (match_operand:DI 1 "register_operand" "")
4479 (match_operand:DI 2 "register_operand" "")))
4480 (set (mem:SF (match_dup 0))
4481 (match_operand:SF 3 "register_operand" ""))]
4482 "!TARGET_SOFT_FLOAT
4483 && !TARGET_DISABLE_INDEXING
4484 && TARGET_64BIT
4485 && TARGET_NO_SPACE_REGS
4486 && REG_OK_FOR_INDEX_P (operands[1])
4487 && REG_OK_FOR_BASE_P (operands[2])
4488 && FP_REGNO_P (REGNO (operands[3]))"
4489 [(set (mem:SF (plus:DI (match_dup 1) (match_dup 2)))
4490 (match_dup 3))
4491 (set (match_dup 0) (plus:DI (match_dup 1) (match_dup 2)))]
4492 "")
4493
4494 (define_peephole2
4495 [(set (match_operand:DI 0 "register_operand" "")
4496 (plus:DI (match_operand:DI 1 "register_operand" "")
4497 (match_operand:DI 2 "register_operand" "")))
4498 (set (mem:SF (match_dup 0))
4499 (match_operand:SF 3 "register_operand" ""))]
4500 "!TARGET_SOFT_FLOAT
4501 && !TARGET_DISABLE_INDEXING
4502 && TARGET_64BIT
4503 && TARGET_NO_SPACE_REGS
4504 && REG_OK_FOR_BASE_P (operands[1])
4505 && REG_OK_FOR_INDEX_P (operands[2])
4506 && FP_REGNO_P (REGNO (operands[3]))"
4507 [(set (mem:SF (plus:DI (match_dup 2) (match_dup 1)))
4508 (match_dup 3))
4509 (set (match_dup 0) (plus:DI (match_dup 2) (match_dup 1)))]
4510 "")
4511
4512 (define_insn ""
4513 [(set (match_operand:SF 0 "move_dest_operand"
4514 "=r,r,Q")
4515 (match_operand:SF 1 "reg_or_0_or_nonsymb_mem_operand"
4516 "rG,RQ,rG"))]
4517 "(register_operand (operands[0], SFmode)
4518 || reg_or_0_operand (operands[1], SFmode))
4519 && TARGET_SOFT_FLOAT"
4520 "@
4521 copy %r1,%0
4522 ldw%M1 %1,%0
4523 stw%M0 %r1,%0"
4524 [(set_attr "type" "move,load,store")
4525 (set_attr "pa_combine_type" "addmove")
4526 (set_attr "length" "4,4,4")])
4527
4528 \f
4529
4530 ;;- zero extension instructions
4531 ;; We have define_expand for zero extension patterns to make sure the
4532 ;; operands get loaded into registers. The define_insns accept
4533 ;; memory operands. This gives us better overall code than just
4534 ;; having a pattern that does or does not accept memory operands.
4535
4536 (define_expand "zero_extendqihi2"
4537 [(set (match_operand:HI 0 "register_operand" "")
4538 (zero_extend:HI
4539 (match_operand:QI 1 "register_operand" "")))]
4540 ""
4541 "")
4542
4543 (define_insn ""
4544 [(set (match_operand:HI 0 "register_operand" "=r,r")
4545 (zero_extend:HI
4546 (match_operand:QI 1 "move_src_operand" "r,RQ")))]
4547 "GET_CODE (operands[1]) != CONST_INT"
4548 "@
4549 {extru|extrw,u} %1,31,8,%0
4550 ldb%M1 %1,%0"
4551 [(set_attr "type" "shift,load")
4552 (set_attr "length" "4,4")])
4553
4554 (define_expand "zero_extendqisi2"
4555 [(set (match_operand:SI 0 "register_operand" "")
4556 (zero_extend:SI
4557 (match_operand:QI 1 "register_operand" "")))]
4558 ""
4559 "")
4560
4561 (define_insn ""
4562 [(set (match_operand:SI 0 "register_operand" "=r,r")
4563 (zero_extend:SI
4564 (match_operand:QI 1 "move_src_operand" "r,RQ")))]
4565 "GET_CODE (operands[1]) != CONST_INT"
4566 "@
4567 {extru|extrw,u} %1,31,8,%0
4568 ldb%M1 %1,%0"
4569 [(set_attr "type" "shift,load")
4570 (set_attr "length" "4,4")])
4571
4572 (define_expand "zero_extendhisi2"
4573 [(set (match_operand:SI 0 "register_operand" "")
4574 (zero_extend:SI
4575 (match_operand:HI 1 "register_operand" "")))]
4576 ""
4577 "")
4578
4579 (define_insn ""
4580 [(set (match_operand:SI 0 "register_operand" "=r,r")
4581 (zero_extend:SI
4582 (match_operand:HI 1 "move_src_operand" "r,RQ")))]
4583 "GET_CODE (operands[1]) != CONST_INT"
4584 "@
4585 {extru|extrw,u} %1,31,16,%0
4586 ldh%M1 %1,%0"
4587 [(set_attr "type" "shift,load")
4588 (set_attr "length" "4,4")])
4589
4590 (define_expand "zero_extendqidi2"
4591 [(set (match_operand:DI 0 "register_operand" "")
4592 (zero_extend:DI
4593 (match_operand:QI 1 "register_operand" "")))]
4594 "TARGET_64BIT"
4595 "")
4596
4597 (define_insn ""
4598 [(set (match_operand:DI 0 "register_operand" "=r,r")
4599 (zero_extend:DI
4600 (match_operand:QI 1 "move_src_operand" "r,RQ")))]
4601 "TARGET_64BIT && GET_CODE (operands[1]) != CONST_INT"
4602 "@
4603 extrd,u %1,63,8,%0
4604 ldb%M1 %1,%0"
4605 [(set_attr "type" "shift,load")
4606 (set_attr "length" "4,4")])
4607
4608 (define_expand "zero_extendhidi2"
4609 [(set (match_operand:DI 0 "register_operand" "")
4610 (zero_extend:DI
4611 (match_operand:HI 1 "register_operand" "")))]
4612 "TARGET_64BIT"
4613 "")
4614
4615 (define_insn ""
4616 [(set (match_operand:DI 0 "register_operand" "=r,r")
4617 (zero_extend:DI
4618 (match_operand:HI 1 "move_src_operand" "r,RQ")))]
4619 "TARGET_64BIT && GET_CODE (operands[1]) != CONST_INT"
4620 "@
4621 extrd,u %1,63,16,%0
4622 ldh%M1 %1,%0"
4623 [(set_attr "type" "shift,load")
4624 (set_attr "length" "4,4")])
4625
4626 (define_expand "zero_extendsidi2"
4627 [(set (match_operand:DI 0 "register_operand" "")
4628 (zero_extend:DI
4629 (match_operand:SI 1 "register_operand" "")))]
4630 "TARGET_64BIT"
4631 "")
4632
4633 (define_insn ""
4634 [(set (match_operand:DI 0 "register_operand" "=r,r")
4635 (zero_extend:DI
4636 (match_operand:SI 1 "move_src_operand" "r,RQ")))]
4637 "TARGET_64BIT && GET_CODE (operands[1]) != CONST_INT"
4638 "@
4639 extrd,u %1,63,32,%0
4640 ldw%M1 %1,%0"
4641 [(set_attr "type" "shift,load")
4642 (set_attr "length" "4,4")])
4643
4644 ;;- sign extension instructions
4645
4646 (define_insn "extendhisi2"
4647 [(set (match_operand:SI 0 "register_operand" "=r")
4648 (sign_extend:SI (match_operand:HI 1 "register_operand" "r")))]
4649 ""
4650 "{extrs|extrw,s} %1,31,16,%0"
4651 [(set_attr "type" "shift")
4652 (set_attr "length" "4")])
4653
4654 (define_insn "extendqihi2"
4655 [(set (match_operand:HI 0 "register_operand" "=r")
4656 (sign_extend:HI (match_operand:QI 1 "register_operand" "r")))]
4657 ""
4658 "{extrs|extrw,s} %1,31,8,%0"
4659 [(set_attr "type" "shift")
4660 (set_attr "length" "4")])
4661
4662 (define_insn "extendqisi2"
4663 [(set (match_operand:SI 0 "register_operand" "=r")
4664 (sign_extend:SI (match_operand:QI 1 "register_operand" "r")))]
4665 ""
4666 "{extrs|extrw,s} %1,31,8,%0"
4667 [(set_attr "type" "shift")
4668 (set_attr "length" "4")])
4669
4670 (define_insn "extendqidi2"
4671 [(set (match_operand:DI 0 "register_operand" "=r")
4672 (sign_extend:DI (match_operand:QI 1 "register_operand" "r")))]
4673 "TARGET_64BIT"
4674 "extrd,s %1,63,8,%0"
4675 [(set_attr "type" "shift")
4676 (set_attr "length" "4")])
4677
4678 (define_insn "extendhidi2"
4679 [(set (match_operand:DI 0 "register_operand" "=r")
4680 (sign_extend:DI (match_operand:HI 1 "register_operand" "r")))]
4681 "TARGET_64BIT"
4682 "extrd,s %1,63,16,%0"
4683 [(set_attr "type" "shift")
4684 (set_attr "length" "4")])
4685
4686 (define_insn "extendsidi2"
4687 [(set (match_operand:DI 0 "register_operand" "=r")
4688 (sign_extend:DI (match_operand:SI 1 "register_operand" "r")))]
4689 "TARGET_64BIT"
4690 "extrd,s %1,63,32,%0"
4691 [(set_attr "type" "shift")
4692 (set_attr "length" "4")])
4693
4694 \f
4695 ;; Conversions between float and double.
4696
4697 (define_insn "extendsfdf2"
4698 [(set (match_operand:DF 0 "register_operand" "=f")
4699 (float_extend:DF
4700 (match_operand:SF 1 "register_operand" "f")))]
4701 "! TARGET_SOFT_FLOAT"
4702 "{fcnvff|fcnv},sgl,dbl %1,%0"
4703 [(set_attr "type" "fpalu")
4704 (set_attr "length" "4")])
4705
4706 (define_insn "truncdfsf2"
4707 [(set (match_operand:SF 0 "register_operand" "=f")
4708 (float_truncate:SF
4709 (match_operand:DF 1 "register_operand" "f")))]
4710 "! TARGET_SOFT_FLOAT"
4711 "{fcnvff|fcnv},dbl,sgl %1,%0"
4712 [(set_attr "type" "fpalu")
4713 (set_attr "length" "4")])
4714
4715 ;; Conversion between fixed point and floating point.
4716 ;; Note that among the fix-to-float insns
4717 ;; the ones that start with SImode come first.
4718 ;; That is so that an operand that is a CONST_INT
4719 ;; (and therefore lacks a specific machine mode).
4720 ;; will be recognized as SImode (which is always valid)
4721 ;; rather than as QImode or HImode.
4722
4723 ;; This pattern forces (set (reg:SF ...) (float:SF (const_int ...)))
4724 ;; to be reloaded by putting the constant into memory.
4725 ;; It must come before the more general floatsisf2 pattern.
4726 (define_insn ""
4727 [(set (match_operand:SF 0 "register_operand" "=f")
4728 (float:SF (match_operand:SI 1 "const_int_operand" "m")))]
4729 "! TARGET_SOFT_FLOAT"
4730 "fldw%F1 %1,%0\;{fcnvxf,sgl,sgl|fcnv,w,sgl} %0,%0"
4731 [(set_attr "type" "fpalu")
4732 (set_attr "length" "8")])
4733
4734 (define_insn "floatsisf2"
4735 [(set (match_operand:SF 0 "register_operand" "=f")
4736 (float:SF (match_operand:SI 1 "register_operand" "f")))]
4737 "! TARGET_SOFT_FLOAT"
4738 "{fcnvxf,sgl,sgl|fcnv,w,sgl} %1,%0"
4739 [(set_attr "type" "fpalu")
4740 (set_attr "length" "4")])
4741
4742 ;; This pattern forces (set (reg:DF ...) (float:DF (const_int ...)))
4743 ;; to be reloaded by putting the constant into memory.
4744 ;; It must come before the more general floatsidf2 pattern.
4745 (define_insn ""
4746 [(set (match_operand:DF 0 "register_operand" "=f")
4747 (float:DF (match_operand:SI 1 "const_int_operand" "m")))]
4748 "! TARGET_SOFT_FLOAT"
4749 "fldw%F1 %1,%0\;{fcnvxf,sgl,dbl|fcnv,w,dbl} %0,%0"
4750 [(set_attr "type" "fpalu")
4751 (set_attr "length" "8")])
4752
4753 (define_insn "floatsidf2"
4754 [(set (match_operand:DF 0 "register_operand" "=f")
4755 (float:DF (match_operand:SI 1 "register_operand" "f")))]
4756 "! TARGET_SOFT_FLOAT"
4757 "{fcnvxf,sgl,dbl|fcnv,w,dbl} %1,%0"
4758 [(set_attr "type" "fpalu")
4759 (set_attr "length" "4")])
4760
4761 (define_expand "floatunssisf2"
4762 [(set (subreg:SI (match_dup 2) 4)
4763 (match_operand:SI 1 "register_operand" ""))
4764 (set (subreg:SI (match_dup 2) 0)
4765 (const_int 0))
4766 (set (match_operand:SF 0 "register_operand" "")
4767 (float:SF (match_dup 2)))]
4768 "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
4769 "
4770 {
4771 if (TARGET_PA_20)
4772 {
4773 emit_insn (gen_floatunssisf2_pa20 (operands[0], operands[1]));
4774 DONE;
4775 }
4776 operands[2] = gen_reg_rtx (DImode);
4777 }")
4778
4779 (define_expand "floatunssidf2"
4780 [(set (subreg:SI (match_dup 2) 4)
4781 (match_operand:SI 1 "register_operand" ""))
4782 (set (subreg:SI (match_dup 2) 0)
4783 (const_int 0))
4784 (set (match_operand:DF 0 "register_operand" "")
4785 (float:DF (match_dup 2)))]
4786 "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
4787 "
4788 {
4789 if (TARGET_PA_20)
4790 {
4791 emit_insn (gen_floatunssidf2_pa20 (operands[0], operands[1]));
4792 DONE;
4793 }
4794 operands[2] = gen_reg_rtx (DImode);
4795 }")
4796
4797 (define_insn "floatdisf2"
4798 [(set (match_operand:SF 0 "register_operand" "=f")
4799 (float:SF (match_operand:DI 1 "register_operand" "f")))]
4800 "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
4801 "{fcnvxf,dbl,sgl|fcnv,dw,sgl} %1,%0"
4802 [(set_attr "type" "fpalu")
4803 (set_attr "length" "4")])
4804
4805 (define_insn "floatdidf2"
4806 [(set (match_operand:DF 0 "register_operand" "=f")
4807 (float:DF (match_operand:DI 1 "register_operand" "f")))]
4808 "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
4809 "{fcnvxf,dbl,dbl|fcnv,dw,dbl} %1,%0"
4810 [(set_attr "type" "fpalu")
4811 (set_attr "length" "4")])
4812
4813 ;; Convert a float to an actual integer.
4814 ;; Truncation is performed as part of the conversion.
4815
4816 (define_insn "fix_truncsfsi2"
4817 [(set (match_operand:SI 0 "register_operand" "=f")
4818 (fix:SI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
4819 "! TARGET_SOFT_FLOAT"
4820 "{fcnvfxt,sgl,sgl|fcnv,t,sgl,w} %1,%0"
4821 [(set_attr "type" "fpalu")
4822 (set_attr "length" "4")])
4823
4824 (define_insn "fix_truncdfsi2"
4825 [(set (match_operand:SI 0 "register_operand" "=f")
4826 (fix:SI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
4827 "! TARGET_SOFT_FLOAT"
4828 "{fcnvfxt,dbl,sgl|fcnv,t,dbl,w} %1,%0"
4829 [(set_attr "type" "fpalu")
4830 (set_attr "length" "4")])
4831
4832 (define_insn "fix_truncsfdi2"
4833 [(set (match_operand:DI 0 "register_operand" "=f")
4834 (fix:DI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
4835 "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
4836 "{fcnvfxt,sgl,dbl|fcnv,t,sgl,dw} %1,%0"
4837 [(set_attr "type" "fpalu")
4838 (set_attr "length" "4")])
4839
4840 (define_insn "fix_truncdfdi2"
4841 [(set (match_operand:DI 0 "register_operand" "=f")
4842 (fix:DI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
4843 "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
4844 "{fcnvfxt,dbl,dbl|fcnv,t,dbl,dw} %1,%0"
4845 [(set_attr "type" "fpalu")
4846 (set_attr "length" "4")])
4847
4848 (define_insn "floatunssidf2_pa20"
4849 [(set (match_operand:DF 0 "register_operand" "=f")
4850 (unsigned_float:DF (match_operand:SI 1 "register_operand" "f")))]
4851 "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4852 "fcnv,uw,dbl %1,%0"
4853 [(set_attr "type" "fpalu")
4854 (set_attr "length" "4")])
4855
4856 (define_insn "floatunssisf2_pa20"
4857 [(set (match_operand:SF 0 "register_operand" "=f")
4858 (unsigned_float:SF (match_operand:SI 1 "register_operand" "f")))]
4859 "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4860 "fcnv,uw,sgl %1,%0"
4861 [(set_attr "type" "fpalu")
4862 (set_attr "length" "4")])
4863
4864 (define_insn "floatunsdisf2"
4865 [(set (match_operand:SF 0 "register_operand" "=f")
4866 (unsigned_float:SF (match_operand:DI 1 "register_operand" "f")))]
4867 "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4868 "fcnv,udw,sgl %1,%0"
4869 [(set_attr "type" "fpalu")
4870 (set_attr "length" "4")])
4871
4872 (define_insn "floatunsdidf2"
4873 [(set (match_operand:DF 0 "register_operand" "=f")
4874 (unsigned_float:DF (match_operand:DI 1 "register_operand" "f")))]
4875 "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4876 "fcnv,udw,dbl %1,%0"
4877 [(set_attr "type" "fpalu")
4878 (set_attr "length" "4")])
4879
4880 (define_insn "fixuns_truncsfsi2"
4881 [(set (match_operand:SI 0 "register_operand" "=f")
4882 (unsigned_fix:SI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
4883 "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4884 "fcnv,t,sgl,uw %1,%0"
4885 [(set_attr "type" "fpalu")
4886 (set_attr "length" "4")])
4887
4888 (define_insn "fixuns_truncdfsi2"
4889 [(set (match_operand:SI 0 "register_operand" "=f")
4890 (unsigned_fix:SI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
4891 "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4892 "fcnv,t,dbl,uw %1,%0"
4893 [(set_attr "type" "fpalu")
4894 (set_attr "length" "4")])
4895
4896 (define_insn "fixuns_truncsfdi2"
4897 [(set (match_operand:DI 0 "register_operand" "=f")
4898 (unsigned_fix:DI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
4899 "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4900 "fcnv,t,sgl,udw %1,%0"
4901 [(set_attr "type" "fpalu")
4902 (set_attr "length" "4")])
4903
4904 (define_insn "fixuns_truncdfdi2"
4905 [(set (match_operand:DI 0 "register_operand" "=f")
4906 (unsigned_fix:DI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
4907 "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4908 "fcnv,t,dbl,udw %1,%0"
4909 [(set_attr "type" "fpalu")
4910 (set_attr "length" "4")])
4911 \f
4912 ;;- arithmetic instructions
4913
4914 (define_expand "adddi3"
4915 [(set (match_operand:DI 0 "register_operand" "")
4916 (plus:DI (match_operand:DI 1 "register_operand" "")
4917 (match_operand:DI 2 "adddi3_operand" "")))]
4918 ""
4919 "")
4920
4921 (define_insn ""
4922 [(set (match_operand:DI 0 "register_operand" "=r")
4923 (plus:DI (match_operand:DI 1 "register_operand" "%r")
4924 (match_operand:DI 2 "arith11_operand" "rI")))]
4925 "!TARGET_64BIT"
4926 "*
4927 {
4928 if (GET_CODE (operands[2]) == CONST_INT)
4929 {
4930 if (INTVAL (operands[2]) >= 0)
4931 return \"addi %2,%R1,%R0\;{addc|add,c} %1,%%r0,%0\";
4932 else
4933 return \"addi %2,%R1,%R0\;{subb|sub,b} %1,%%r0,%0\";
4934 }
4935 else
4936 return \"add %R2,%R1,%R0\;{addc|add,c} %2,%1,%0\";
4937 }"
4938 [(set_attr "type" "binary")
4939 (set_attr "length" "8")])
4940
4941 (define_insn ""
4942 [(set (match_operand:DI 0 "register_operand" "=r,r")
4943 (plus:DI (match_operand:DI 1 "register_operand" "%r,r")
4944 (match_operand:DI 2 "arith_operand" "r,J")))]
4945 "TARGET_64BIT"
4946 "@
4947 add,l %1,%2,%0
4948 ldo %2(%1),%0"
4949 [(set_attr "type" "binary,binary")
4950 (set_attr "pa_combine_type" "addmove")
4951 (set_attr "length" "4,4")])
4952
4953 (define_insn ""
4954 [(set (match_operand:DI 0 "register_operand" "=r")
4955 (plus:DI (not:DI (match_operand:DI 1 "register_operand" "r"))
4956 (match_operand:DI 2 "register_operand" "r")))]
4957 "TARGET_64BIT"
4958 "uaddcm %2,%1,%0"
4959 [(set_attr "type" "binary")
4960 (set_attr "length" "4")])
4961
4962 (define_insn ""
4963 [(set (match_operand:SI 0 "register_operand" "=r")
4964 (plus:SI (not:SI (match_operand:SI 1 "register_operand" "r"))
4965 (match_operand:SI 2 "register_operand" "r")))]
4966 ""
4967 "uaddcm %2,%1,%0"
4968 [(set_attr "type" "binary")
4969 (set_attr "length" "4")])
4970
4971 (define_expand "addvdi3"
4972 [(parallel [(set (match_operand:DI 0 "register_operand" "")
4973 (plus:DI (match_operand:DI 1 "reg_or_0_operand" "")
4974 (match_operand:DI 2 "arith11_operand" "")))
4975 (trap_if (ne (plus:TI (sign_extend:TI (match_dup 1))
4976 (sign_extend:TI (match_dup 2)))
4977 (sign_extend:TI (plus:DI (match_dup 1)
4978 (match_dup 2))))
4979 (const_int 0))])]
4980 ""
4981 "")
4982
4983 (define_insn ""
4984 [(set (match_operand:DI 0 "register_operand" "=r,r")
4985 (plus:DI (match_operand:DI 1 "reg_or_0_operand" "%rM,rM")
4986 (match_operand:DI 2 "arith11_operand" "r,I")))
4987 (trap_if (ne (plus:TI (sign_extend:TI (match_dup 1))
4988 (sign_extend:TI (match_dup 2)))
4989 (sign_extend:TI (plus:DI (match_dup 1)
4990 (match_dup 2))))
4991 (const_int 0))]
4992 "TARGET_64BIT"
4993 "@
4994 add,tsv,* %2,%1,%0
4995 addi,tsv,* %2,%1,%0"
4996 [(set_attr "type" "binary,binary")
4997 (set_attr "length" "4,4")])
4998
4999 (define_insn ""
5000 [(set (match_operand:DI 0 "register_operand" "=r")
5001 (plus:DI (match_operand:DI 1 "reg_or_0_operand" "%rM")
5002 (match_operand:DI 2 "arith11_operand" "rI")))
5003 (trap_if (ne (plus:TI (sign_extend:TI (match_dup 1))
5004 (sign_extend:TI (match_dup 2)))
5005 (sign_extend:TI (plus:DI (match_dup 1)
5006 (match_dup 2))))
5007 (const_int 0))]
5008 "!TARGET_64BIT"
5009 "*
5010 {
5011 if (GET_CODE (operands[2]) == CONST_INT)
5012 {
5013 if (INTVAL (operands[2]) >= 0)
5014 return \"addi %2,%R1,%R0\;{addco|add,c,tsv} %1,%%r0,%0\";
5015 else
5016 return \"addi %2,%R1,%R0\;{subbo|sub,b,tsv} %1,%%r0,%0\";
5017 }
5018 else
5019 return \"add %R2,%R1,%R0\;{addco|add,c,tsv} %2,%1,%0\";
5020 }"
5021 [(set_attr "type" "binary")
5022 (set_attr "length" "8")])
5023
5024 ;; define_splits to optimize cases of adding a constant integer
5025 ;; to a register when the constant does not fit in 14 bits. */
5026 (define_split
5027 [(set (match_operand:SI 0 "register_operand" "")
5028 (plus:SI (match_operand:SI 1 "register_operand" "")
5029 (match_operand:SI 2 "const_int_operand" "")))
5030 (clobber (match_operand:SI 4 "register_operand" ""))]
5031 "! cint_ok_for_move (INTVAL (operands[2]))
5032 && VAL_14_BITS_P (INTVAL (operands[2]) >> 1)"
5033 [(set (match_dup 4) (plus:SI (match_dup 1) (match_dup 2)))
5034 (set (match_dup 0) (plus:SI (match_dup 4) (match_dup 3)))]
5035 "
5036 {
5037 int val = INTVAL (operands[2]);
5038 int low = (val < 0) ? -0x2000 : 0x1fff;
5039 int rest = val - low;
5040
5041 operands[2] = GEN_INT (rest);
5042 operands[3] = GEN_INT (low);
5043 }")
5044
5045 (define_split
5046 [(set (match_operand:SI 0 "register_operand" "")
5047 (plus:SI (match_operand:SI 1 "register_operand" "")
5048 (match_operand:SI 2 "const_int_operand" "")))
5049 (clobber (match_operand:SI 4 "register_operand" ""))]
5050 "! cint_ok_for_move (INTVAL (operands[2]))"
5051 [(set (match_dup 4) (match_dup 2))
5052 (set (match_dup 0) (plus:SI (mult:SI (match_dup 4) (match_dup 3))
5053 (match_dup 1)))]
5054 "
5055 {
5056 HOST_WIDE_INT intval = INTVAL (operands[2]);
5057
5058 /* Try dividing the constant by 2, then 4, and finally 8 to see
5059 if we can get a constant which can be loaded into a register
5060 in a single instruction (cint_ok_for_move).
5061
5062 If that fails, try to negate the constant and subtract it
5063 from our input operand. */
5064 if (intval % 2 == 0 && cint_ok_for_move (intval / 2))
5065 {
5066 operands[2] = GEN_INT (intval / 2);
5067 operands[3] = const2_rtx;
5068 }
5069 else if (intval % 4 == 0 && cint_ok_for_move (intval / 4))
5070 {
5071 operands[2] = GEN_INT (intval / 4);
5072 operands[3] = GEN_INT (4);
5073 }
5074 else if (intval % 8 == 0 && cint_ok_for_move (intval / 8))
5075 {
5076 operands[2] = GEN_INT (intval / 8);
5077 operands[3] = GEN_INT (8);
5078 }
5079 else if (cint_ok_for_move (-intval))
5080 {
5081 emit_insn (gen_rtx_SET (VOIDmode, operands[4], GEN_INT (-intval)));
5082 emit_insn (gen_subsi3 (operands[0], operands[1], operands[4]));
5083 DONE;
5084 }
5085 else
5086 FAIL;
5087 }")
5088
5089 (define_insn "addsi3"
5090 [(set (match_operand:SI 0 "register_operand" "=r,r")
5091 (plus:SI (match_operand:SI 1 "register_operand" "%r,r")
5092 (match_operand:SI 2 "arith_operand" "r,J")))]
5093 ""
5094 "@
5095 {addl|add,l} %1,%2,%0
5096 ldo %2(%1),%0"
5097 [(set_attr "type" "binary,binary")
5098 (set_attr "pa_combine_type" "addmove")
5099 (set_attr "length" "4,4")])
5100
5101 (define_insn "addvsi3"
5102 [(set (match_operand:SI 0 "register_operand" "=r,r")
5103 (plus:SI (match_operand:SI 1 "reg_or_0_operand" "%rM,rM")
5104 (match_operand:SI 2 "arith11_operand" "r,I")))
5105 (trap_if (ne (plus:DI (sign_extend:DI (match_dup 1))
5106 (sign_extend:DI (match_dup 2)))
5107 (sign_extend:DI (plus:SI (match_dup 1)
5108 (match_dup 2))))
5109 (const_int 0))]
5110 ""
5111 "@
5112 {addo|add,tsv} %2,%1,%0
5113 {addio|addi,tsv} %2,%1,%0"
5114 [(set_attr "type" "binary,binary")
5115 (set_attr "length" "4,4")])
5116
5117 (define_expand "subdi3"
5118 [(set (match_operand:DI 0 "register_operand" "")
5119 (minus:DI (match_operand:DI 1 "arith11_operand" "")
5120 (match_operand:DI 2 "reg_or_0_operand" "")))]
5121 ""
5122 "")
5123
5124 (define_insn ""
5125 [(set (match_operand:DI 0 "register_operand" "=r,r,!q")
5126 (minus:DI (match_operand:DI 1 "arith11_operand" "r,I,!U")
5127 (match_operand:DI 2 "reg_or_0_operand" "rM,rM,!rM")))]
5128 "TARGET_64BIT"
5129 "@
5130 sub %1,%2,%0
5131 subi %1,%2,%0
5132 mtsarcm %2"
5133 [(set_attr "type" "binary,binary,move")
5134 (set_attr "length" "4,4,4")])
5135
5136 (define_insn ""
5137 [(set (match_operand:DI 0 "register_operand" "=r,&r")
5138 (minus:DI (match_operand:DI 1 "arith11_operand" "r,I")
5139 (match_operand:DI 2 "reg_or_0_operand" "rM,rM")))]
5140 "!TARGET_64BIT"
5141 "*
5142 {
5143 if (GET_CODE (operands[1]) == CONST_INT)
5144 {
5145 if (INTVAL (operands[1]) >= 0)
5146 return \"subi %1,%R2,%R0\;{subb|sub,b} %%r0,%2,%0\";
5147 else
5148 return \"ldi -1,%0\;subi %1,%R2,%R0\;{subb|sub,b} %0,%2,%0\";
5149 }
5150 else
5151 return \"sub %R1,%R2,%R0\;{subb|sub,b} %1,%2,%0\";
5152 }"
5153 [(set_attr "type" "binary")
5154 (set (attr "length")
5155 (if_then_else (eq_attr "alternative" "0")
5156 (const_int 8)
5157 (if_then_else (ge (symbol_ref "INTVAL (operands[1])")
5158 (const_int 0))
5159 (const_int 8)
5160 (const_int 12))))])
5161
5162 (define_expand "subvdi3"
5163 [(parallel [(set (match_operand:DI 0 "register_operand" "")
5164 (minus:DI (match_operand:DI 1 "arith11_operand" "")
5165 (match_operand:DI 2 "reg_or_0_operand" "")))
5166 (trap_if (ne (minus:TI (sign_extend:TI (match_dup 1))
5167 (sign_extend:TI (match_dup 2)))
5168 (sign_extend:TI (minus:DI (match_dup 1)
5169 (match_dup 2))))
5170 (const_int 0))])]
5171 ""
5172 "")
5173
5174 (define_insn ""
5175 [(set (match_operand:DI 0 "register_operand" "=r,r")
5176 (minus:DI (match_operand:DI 1 "arith11_operand" "r,I")
5177 (match_operand:DI 2 "reg_or_0_operand" "rM,rM")))
5178 (trap_if (ne (minus:TI (sign_extend:TI (match_dup 1))
5179 (sign_extend:TI (match_dup 2)))
5180 (sign_extend:TI (minus:DI (match_dup 1)
5181 (match_dup 2))))
5182 (const_int 0))]
5183 "TARGET_64BIT"
5184 "@
5185 {subo|sub,tsv} %1,%2,%0
5186 {subio|subi,tsv} %1,%2,%0"
5187 [(set_attr "type" "binary,binary")
5188 (set_attr "length" "4,4")])
5189
5190 (define_insn ""
5191 [(set (match_operand:DI 0 "register_operand" "=r,&r")
5192 (minus:DI (match_operand:DI 1 "arith11_operand" "r,I")
5193 (match_operand:DI 2 "reg_or_0_operand" "rM,rM")))
5194 (trap_if (ne (minus:TI (sign_extend:TI (match_dup 1))
5195 (sign_extend:TI (match_dup 2)))
5196 (sign_extend:TI (minus:DI (match_dup 1)
5197 (match_dup 2))))
5198 (const_int 0))]
5199 "!TARGET_64BIT"
5200 "*
5201 {
5202 if (GET_CODE (operands[1]) == CONST_INT)
5203 {
5204 if (INTVAL (operands[1]) >= 0)
5205 return \"subi %1,%R2,%R0\;{subbo|sub,b,tsv} %%r0,%2,%0\";
5206 else
5207 return \"ldi -1,%0\;subi %1,%R2,%R0\;{subbo|sub,b,tsv} %0,%2,%0\";
5208 }
5209 else
5210 return \"sub %R1,%R2,%R0\;{subbo|sub,b,tsv} %1,%2,%0\";
5211 }"
5212 [(set_attr "type" "binary,binary")
5213 (set (attr "length")
5214 (if_then_else (eq_attr "alternative" "0")
5215 (const_int 8)
5216 (if_then_else (ge (symbol_ref "INTVAL (operands[1])")
5217 (const_int 0))
5218 (const_int 8)
5219 (const_int 12))))])
5220
5221 (define_expand "subsi3"
5222 [(set (match_operand:SI 0 "register_operand" "")
5223 (minus:SI (match_operand:SI 1 "arith11_operand" "")
5224 (match_operand:SI 2 "register_operand" "")))]
5225 ""
5226 "")
5227
5228 (define_insn ""
5229 [(set (match_operand:SI 0 "register_operand" "=r,r")
5230 (minus:SI (match_operand:SI 1 "arith11_operand" "r,I")
5231 (match_operand:SI 2 "register_operand" "r,r")))]
5232 "!TARGET_PA_20"
5233 "@
5234 sub %1,%2,%0
5235 subi %1,%2,%0"
5236 [(set_attr "type" "binary,binary")
5237 (set_attr "length" "4,4")])
5238
5239 (define_insn ""
5240 [(set (match_operand:SI 0 "register_operand" "=r,r,!q")
5241 (minus:SI (match_operand:SI 1 "arith11_operand" "r,I,!S")
5242 (match_operand:SI 2 "register_operand" "r,r,!r")))]
5243 "TARGET_PA_20"
5244 "@
5245 sub %1,%2,%0
5246 subi %1,%2,%0
5247 mtsarcm %2"
5248 [(set_attr "type" "binary,binary,move")
5249 (set_attr "length" "4,4,4")])
5250
5251 (define_insn "subvsi3"
5252 [(set (match_operand:SI 0 "register_operand" "=r,r")
5253 (minus:SI (match_operand:SI 1 "arith11_operand" "rM,I")
5254 (match_operand:SI 2 "reg_or_0_operand" "rM,rM")))
5255 (trap_if (ne (minus:DI (sign_extend:DI (match_dup 1))
5256 (sign_extend:DI (match_dup 2)))
5257 (sign_extend:DI (minus:SI (match_dup 1)
5258 (match_dup 2))))
5259 (const_int 0))]
5260 ""
5261 "@
5262 {subo|sub,tsv} %1,%2,%0
5263 {subio|subi,tsv} %1,%2,%0"
5264 [(set_attr "type" "binary,binary")
5265 (set_attr "length" "4,4")])
5266
5267 ;; Clobbering a "register_operand" instead of a match_scratch
5268 ;; in operand3 of millicode calls avoids spilling %r1 and
5269 ;; produces better code.
5270
5271 ;; The mulsi3 insns set up registers for the millicode call.
5272 (define_expand "mulsi3"
5273 [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5274 (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5275 (parallel [(set (reg:SI 29) (mult:SI (reg:SI 26) (reg:SI 25)))
5276 (clobber (match_dup 3))
5277 (clobber (reg:SI 26))
5278 (clobber (reg:SI 25))
5279 (clobber (match_dup 4))])
5280 (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5281 ""
5282 "
5283 {
5284 operands[4] = gen_rtx_REG (SImode, TARGET_64BIT ? 2 : 31);
5285 if (TARGET_PA_11 && !TARGET_DISABLE_FPREGS && !TARGET_SOFT_FLOAT)
5286 {
5287 rtx scratch = gen_reg_rtx (DImode);
5288 operands[1] = force_reg (SImode, operands[1]);
5289 operands[2] = force_reg (SImode, operands[2]);
5290 emit_insn (gen_umulsidi3 (scratch, operands[1], operands[2]));
5291 emit_insn (gen_movsi (operands[0],
5292 gen_rtx_SUBREG (SImode, scratch,
5293 GET_MODE_SIZE (SImode))));
5294 DONE;
5295 }
5296 operands[3] = gen_reg_rtx (SImode);
5297 }")
5298
5299 (define_insn "umulsidi3"
5300 [(set (match_operand:DI 0 "nonimmediate_operand" "=f")
5301 (mult:DI (zero_extend:DI (match_operand:SI 1 "nonimmediate_operand" "f"))
5302 (zero_extend:DI (match_operand:SI 2 "nonimmediate_operand" "f"))))]
5303 "TARGET_PA_11 && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT"
5304 "xmpyu %1,%2,%0"
5305 [(set_attr "type" "fpmuldbl")
5306 (set_attr "length" "4")])
5307
5308 (define_insn ""
5309 [(set (match_operand:DI 0 "nonimmediate_operand" "=f")
5310 (mult:DI (zero_extend:DI (match_operand:SI 1 "nonimmediate_operand" "f"))
5311 (match_operand:DI 2 "uint32_operand" "f")))]
5312 "TARGET_PA_11 && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT && !TARGET_64BIT"
5313 "xmpyu %1,%R2,%0"
5314 [(set_attr "type" "fpmuldbl")
5315 (set_attr "length" "4")])
5316
5317 (define_insn ""
5318 [(set (match_operand:DI 0 "nonimmediate_operand" "=f")
5319 (mult:DI (zero_extend:DI (match_operand:SI 1 "nonimmediate_operand" "f"))
5320 (match_operand:DI 2 "uint32_operand" "f")))]
5321 "TARGET_PA_11 && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT && TARGET_64BIT"
5322 "xmpyu %1,%2R,%0"
5323 [(set_attr "type" "fpmuldbl")
5324 (set_attr "length" "4")])
5325
5326 (define_insn ""
5327 [(set (reg:SI 29) (mult:SI (reg:SI 26) (reg:SI 25)))
5328 (clobber (match_operand:SI 0 "register_operand" "=a"))
5329 (clobber (reg:SI 26))
5330 (clobber (reg:SI 25))
5331 (clobber (reg:SI 31))]
5332 "!TARGET_64BIT"
5333 "* return output_mul_insn (0, insn);"
5334 [(set_attr "type" "milli")
5335 (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5336
5337 (define_insn ""
5338 [(set (reg:SI 29) (mult:SI (reg:SI 26) (reg:SI 25)))
5339 (clobber (match_operand:SI 0 "register_operand" "=a"))
5340 (clobber (reg:SI 26))
5341 (clobber (reg:SI 25))
5342 (clobber (reg:SI 2))]
5343 "TARGET_64BIT"
5344 "* return output_mul_insn (0, insn);"
5345 [(set_attr "type" "milli")
5346 (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5347
5348 (define_expand "muldi3"
5349 [(set (match_operand:DI 0 "register_operand" "")
5350 (mult:DI (match_operand:DI 1 "register_operand" "")
5351 (match_operand:DI 2 "register_operand" "")))]
5352 "TARGET_64BIT && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT"
5353 "
5354 {
5355 rtx low_product = gen_reg_rtx (DImode);
5356 rtx cross_product1 = gen_reg_rtx (DImode);
5357 rtx cross_product2 = gen_reg_rtx (DImode);
5358 rtx cross_scratch = gen_reg_rtx (DImode);
5359 rtx cross_product = gen_reg_rtx (DImode);
5360 rtx op1l, op1r, op2l, op2r;
5361 rtx op1shifted, op2shifted;
5362
5363 op1shifted = gen_reg_rtx (DImode);
5364 op2shifted = gen_reg_rtx (DImode);
5365 op1l = gen_reg_rtx (SImode);
5366 op1r = gen_reg_rtx (SImode);
5367 op2l = gen_reg_rtx (SImode);
5368 op2r = gen_reg_rtx (SImode);
5369
5370 emit_move_insn (op1shifted, gen_rtx_LSHIFTRT (DImode, operands[1],
5371 GEN_INT (32)));
5372 emit_move_insn (op2shifted, gen_rtx_LSHIFTRT (DImode, operands[2],
5373 GEN_INT (32)));
5374 op1r = force_reg (SImode, gen_rtx_SUBREG (SImode, operands[1], 4));
5375 op2r = force_reg (SImode, gen_rtx_SUBREG (SImode, operands[2], 4));
5376 op1l = force_reg (SImode, gen_rtx_SUBREG (SImode, op1shifted, 4));
5377 op2l = force_reg (SImode, gen_rtx_SUBREG (SImode, op2shifted, 4));
5378
5379 /* Emit multiplies for the cross products. */
5380 emit_insn (gen_umulsidi3 (cross_product1, op2r, op1l));
5381 emit_insn (gen_umulsidi3 (cross_product2, op2l, op1r));
5382
5383 /* Emit a multiply for the low sub-word. */
5384 emit_insn (gen_umulsidi3 (low_product, copy_rtx (op2r), copy_rtx (op1r)));
5385
5386 /* Sum the cross products and shift them into proper position. */
5387 emit_insn (gen_adddi3 (cross_scratch, cross_product1, cross_product2));
5388 emit_insn (gen_ashldi3 (cross_product, cross_scratch, GEN_INT (32)));
5389
5390 /* Add the cross product to the low product and store the result
5391 into the output operand . */
5392 emit_insn (gen_adddi3 (operands[0], cross_product, low_product));
5393 DONE;
5394 }")
5395
5396 ;;; Division and mod.
5397 (define_expand "divsi3"
5398 [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5399 (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5400 (parallel [(set (reg:SI 29) (div:SI (reg:SI 26) (reg:SI 25)))
5401 (clobber (match_dup 3))
5402 (clobber (match_dup 4))
5403 (clobber (reg:SI 26))
5404 (clobber (reg:SI 25))
5405 (clobber (match_dup 5))])
5406 (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5407 ""
5408 "
5409 {
5410 operands[3] = gen_reg_rtx (SImode);
5411 if (TARGET_64BIT)
5412 {
5413 operands[5] = gen_rtx_REG (SImode, 2);
5414 operands[4] = operands[5];
5415 }
5416 else
5417 {
5418 operands[5] = gen_rtx_REG (SImode, 31);
5419 operands[4] = gen_reg_rtx (SImode);
5420 }
5421 if (GET_CODE (operands[2]) == CONST_INT && emit_hpdiv_const (operands, 0))
5422 DONE;
5423 }")
5424
5425 (define_insn ""
5426 [(set (reg:SI 29)
5427 (div:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
5428 (clobber (match_operand:SI 1 "register_operand" "=a"))
5429 (clobber (match_operand:SI 2 "register_operand" "=&r"))
5430 (clobber (reg:SI 26))
5431 (clobber (reg:SI 25))
5432 (clobber (reg:SI 31))]
5433 "!TARGET_64BIT"
5434 "*
5435 return output_div_insn (operands, 0, insn);"
5436 [(set_attr "type" "milli")
5437 (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5438
5439 (define_insn ""
5440 [(set (reg:SI 29)
5441 (div:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
5442 (clobber (match_operand:SI 1 "register_operand" "=a"))
5443 (clobber (match_operand:SI 2 "register_operand" "=&r"))
5444 (clobber (reg:SI 26))
5445 (clobber (reg:SI 25))
5446 (clobber (reg:SI 2))]
5447 "TARGET_64BIT"
5448 "*
5449 return output_div_insn (operands, 0, insn);"
5450 [(set_attr "type" "milli")
5451 (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5452
5453 (define_expand "udivsi3"
5454 [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5455 (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5456 (parallel [(set (reg:SI 29) (udiv:SI (reg:SI 26) (reg:SI 25)))
5457 (clobber (match_dup 3))
5458 (clobber (match_dup 4))
5459 (clobber (reg:SI 26))
5460 (clobber (reg:SI 25))
5461 (clobber (match_dup 5))])
5462 (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5463 ""
5464 "
5465 {
5466 operands[3] = gen_reg_rtx (SImode);
5467
5468 if (TARGET_64BIT)
5469 {
5470 operands[5] = gen_rtx_REG (SImode, 2);
5471 operands[4] = operands[5];
5472 }
5473 else
5474 {
5475 operands[5] = gen_rtx_REG (SImode, 31);
5476 operands[4] = gen_reg_rtx (SImode);
5477 }
5478 if (GET_CODE (operands[2]) == CONST_INT && emit_hpdiv_const (operands, 1))
5479 DONE;
5480 }")
5481
5482 (define_insn ""
5483 [(set (reg:SI 29)
5484 (udiv:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
5485 (clobber (match_operand:SI 1 "register_operand" "=a"))
5486 (clobber (match_operand:SI 2 "register_operand" "=&r"))
5487 (clobber (reg:SI 26))
5488 (clobber (reg:SI 25))
5489 (clobber (reg:SI 31))]
5490 "!TARGET_64BIT"
5491 "*
5492 return output_div_insn (operands, 1, insn);"
5493 [(set_attr "type" "milli")
5494 (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5495
5496 (define_insn ""
5497 [(set (reg:SI 29)
5498 (udiv:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
5499 (clobber (match_operand:SI 1 "register_operand" "=a"))
5500 (clobber (match_operand:SI 2 "register_operand" "=&r"))
5501 (clobber (reg:SI 26))
5502 (clobber (reg:SI 25))
5503 (clobber (reg:SI 2))]
5504 "TARGET_64BIT"
5505 "*
5506 return output_div_insn (operands, 1, insn);"
5507 [(set_attr "type" "milli")
5508 (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5509
5510 (define_expand "modsi3"
5511 [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5512 (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5513 (parallel [(set (reg:SI 29) (mod:SI (reg:SI 26) (reg:SI 25)))
5514 (clobber (match_dup 3))
5515 (clobber (match_dup 4))
5516 (clobber (reg:SI 26))
5517 (clobber (reg:SI 25))
5518 (clobber (match_dup 5))])
5519 (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5520 ""
5521 "
5522 {
5523 if (TARGET_64BIT)
5524 {
5525 operands[5] = gen_rtx_REG (SImode, 2);
5526 operands[4] = operands[5];
5527 }
5528 else
5529 {
5530 operands[5] = gen_rtx_REG (SImode, 31);
5531 operands[4] = gen_reg_rtx (SImode);
5532 }
5533 operands[3] = gen_reg_rtx (SImode);
5534 }")
5535
5536 (define_insn ""
5537 [(set (reg:SI 29) (mod:SI (reg:SI 26) (reg:SI 25)))
5538 (clobber (match_operand:SI 0 "register_operand" "=a"))
5539 (clobber (match_operand:SI 1 "register_operand" "=&r"))
5540 (clobber (reg:SI 26))
5541 (clobber (reg:SI 25))
5542 (clobber (reg:SI 31))]
5543 "!TARGET_64BIT"
5544 "*
5545 return output_mod_insn (0, insn);"
5546 [(set_attr "type" "milli")
5547 (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5548
5549 (define_insn ""
5550 [(set (reg:SI 29) (mod:SI (reg:SI 26) (reg:SI 25)))
5551 (clobber (match_operand:SI 0 "register_operand" "=a"))
5552 (clobber (match_operand:SI 1 "register_operand" "=&r"))
5553 (clobber (reg:SI 26))
5554 (clobber (reg:SI 25))
5555 (clobber (reg:SI 2))]
5556 "TARGET_64BIT"
5557 "*
5558 return output_mod_insn (0, insn);"
5559 [(set_attr "type" "milli")
5560 (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5561
5562 (define_expand "umodsi3"
5563 [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5564 (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5565 (parallel [(set (reg:SI 29) (umod:SI (reg:SI 26) (reg:SI 25)))
5566 (clobber (match_dup 3))
5567 (clobber (match_dup 4))
5568 (clobber (reg:SI 26))
5569 (clobber (reg:SI 25))
5570 (clobber (match_dup 5))])
5571 (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5572 ""
5573 "
5574 {
5575 if (TARGET_64BIT)
5576 {
5577 operands[5] = gen_rtx_REG (SImode, 2);
5578 operands[4] = operands[5];
5579 }
5580 else
5581 {
5582 operands[5] = gen_rtx_REG (SImode, 31);
5583 operands[4] = gen_reg_rtx (SImode);
5584 }
5585 operands[3] = gen_reg_rtx (SImode);
5586 }")
5587
5588 (define_insn ""
5589 [(set (reg:SI 29) (umod:SI (reg:SI 26) (reg:SI 25)))
5590 (clobber (match_operand:SI 0 "register_operand" "=a"))
5591 (clobber (match_operand:SI 1 "register_operand" "=&r"))
5592 (clobber (reg:SI 26))
5593 (clobber (reg:SI 25))
5594 (clobber (reg:SI 31))]
5595 "!TARGET_64BIT"
5596 "*
5597 return output_mod_insn (1, insn);"
5598 [(set_attr "type" "milli")
5599 (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5600
5601 (define_insn ""
5602 [(set (reg:SI 29) (umod:SI (reg:SI 26) (reg:SI 25)))
5603 (clobber (match_operand:SI 0 "register_operand" "=a"))
5604 (clobber (match_operand:SI 1 "register_operand" "=&r"))
5605 (clobber (reg:SI 26))
5606 (clobber (reg:SI 25))
5607 (clobber (reg:SI 2))]
5608 "TARGET_64BIT"
5609 "*
5610 return output_mod_insn (1, insn);"
5611 [(set_attr "type" "milli")
5612 (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5613
5614 ;;- and instructions
5615 ;; We define DImode `and` so with DImode `not` we can get
5616 ;; DImode `andn`. Other combinations are possible.
5617
5618 (define_expand "anddi3"
5619 [(set (match_operand:DI 0 "register_operand" "")
5620 (and:DI (match_operand:DI 1 "register_operand" "")
5621 (match_operand:DI 2 "and_operand" "")))]
5622 ""
5623 "
5624 {
5625 /* Both operands must be register operands. */
5626 if (!TARGET_64BIT && !register_operand (operands[2], DImode))
5627 FAIL;
5628 }")
5629
5630 (define_insn ""
5631 [(set (match_operand:DI 0 "register_operand" "=r")
5632 (and:DI (match_operand:DI 1 "register_operand" "%r")
5633 (match_operand:DI 2 "register_operand" "r")))]
5634 "!TARGET_64BIT"
5635 "and %1,%2,%0\;and %R1,%R2,%R0"
5636 [(set_attr "type" "binary")
5637 (set_attr "length" "8")])
5638
5639 (define_insn ""
5640 [(set (match_operand:DI 0 "register_operand" "=r,r")
5641 (and:DI (match_operand:DI 1 "register_operand" "%?r,0")
5642 (match_operand:DI 2 "and_operand" "rO,P")))]
5643 "TARGET_64BIT"
5644 "* return output_64bit_and (operands); "
5645 [(set_attr "type" "binary")
5646 (set_attr "length" "4")])
5647
5648 ; The ? for op1 makes reload prefer zdepi instead of loading a huge
5649 ; constant with ldil;ldo.
5650 (define_insn "andsi3"
5651 [(set (match_operand:SI 0 "register_operand" "=r,r")
5652 (and:SI (match_operand:SI 1 "register_operand" "%?r,0")
5653 (match_operand:SI 2 "and_operand" "rO,P")))]
5654 ""
5655 "* return output_and (operands); "
5656 [(set_attr "type" "binary,shift")
5657 (set_attr "length" "4,4")])
5658
5659 (define_insn ""
5660 [(set (match_operand:DI 0 "register_operand" "=r")
5661 (and:DI (not:DI (match_operand:DI 1 "register_operand" "r"))
5662 (match_operand:DI 2 "register_operand" "r")))]
5663 "!TARGET_64BIT"
5664 "andcm %2,%1,%0\;andcm %R2,%R1,%R0"
5665 [(set_attr "type" "binary")
5666 (set_attr "length" "8")])
5667
5668 (define_insn ""
5669 [(set (match_operand:DI 0 "register_operand" "=r")
5670 (and:DI (not:DI (match_operand:DI 1 "register_operand" "r"))
5671 (match_operand:DI 2 "register_operand" "r")))]
5672 "TARGET_64BIT"
5673 "andcm %2,%1,%0"
5674 [(set_attr "type" "binary")
5675 (set_attr "length" "4")])
5676
5677 (define_insn ""
5678 [(set (match_operand:SI 0 "register_operand" "=r")
5679 (and:SI (not:SI (match_operand:SI 1 "register_operand" "r"))
5680 (match_operand:SI 2 "register_operand" "r")))]
5681 ""
5682 "andcm %2,%1,%0"
5683 [(set_attr "type" "binary")
5684 (set_attr "length" "4")])
5685
5686 (define_expand "iordi3"
5687 [(set (match_operand:DI 0 "register_operand" "")
5688 (ior:DI (match_operand:DI 1 "register_operand" "")
5689 (match_operand:DI 2 "ior_operand" "")))]
5690 ""
5691 "
5692 {
5693 /* Both operands must be register operands. */
5694 if (!TARGET_64BIT && !register_operand (operands[2], DImode))
5695 FAIL;
5696 }")
5697
5698 (define_insn ""
5699 [(set (match_operand:DI 0 "register_operand" "=r")
5700 (ior:DI (match_operand:DI 1 "register_operand" "%r")
5701 (match_operand:DI 2 "register_operand" "r")))]
5702 "!TARGET_64BIT"
5703 "or %1,%2,%0\;or %R1,%R2,%R0"
5704 [(set_attr "type" "binary")
5705 (set_attr "length" "8")])
5706
5707 (define_insn ""
5708 [(set (match_operand:DI 0 "register_operand" "=r,r")
5709 (ior:DI (match_operand:DI 1 "register_operand" "0,0")
5710 (match_operand:DI 2 "ior_operand" "M,i")))]
5711 "TARGET_64BIT"
5712 "* return output_64bit_ior (operands); "
5713 [(set_attr "type" "binary,shift")
5714 (set_attr "length" "4,4")])
5715
5716 (define_insn ""
5717 [(set (match_operand:DI 0 "register_operand" "=r")
5718 (ior:DI (match_operand:DI 1 "register_operand" "%r")
5719 (match_operand:DI 2 "register_operand" "r")))]
5720 "TARGET_64BIT"
5721 "or %1,%2,%0"
5722 [(set_attr "type" "binary")
5723 (set_attr "length" "4")])
5724
5725 ;; Need a define_expand because we've run out of CONST_OK... characters.
5726 (define_expand "iorsi3"
5727 [(set (match_operand:SI 0 "register_operand" "")
5728 (ior:SI (match_operand:SI 1 "register_operand" "")
5729 (match_operand:SI 2 "arith32_operand" "")))]
5730 ""
5731 "
5732 {
5733 if (! (ior_operand (operands[2], SImode)
5734 || register_operand (operands[2], SImode)))
5735 operands[2] = force_reg (SImode, operands[2]);
5736 }")
5737
5738 (define_insn ""
5739 [(set (match_operand:SI 0 "register_operand" "=r,r")
5740 (ior:SI (match_operand:SI 1 "register_operand" "0,0")
5741 (match_operand:SI 2 "ior_operand" "M,i")))]
5742 ""
5743 "* return output_ior (operands); "
5744 [(set_attr "type" "binary,shift")
5745 (set_attr "length" "4,4")])
5746
5747 (define_insn ""
5748 [(set (match_operand:SI 0 "register_operand" "=r")
5749 (ior:SI (match_operand:SI 1 "register_operand" "%r")
5750 (match_operand:SI 2 "register_operand" "r")))]
5751 ""
5752 "or %1,%2,%0"
5753 [(set_attr "type" "binary")
5754 (set_attr "length" "4")])
5755
5756 (define_expand "xordi3"
5757 [(set (match_operand:DI 0 "register_operand" "")
5758 (xor:DI (match_operand:DI 1 "register_operand" "")
5759 (match_operand:DI 2 "register_operand" "")))]
5760 ""
5761 "
5762 {
5763 }")
5764
5765 (define_insn ""
5766 [(set (match_operand:DI 0 "register_operand" "=r")
5767 (xor:DI (match_operand:DI 1 "register_operand" "%r")
5768 (match_operand:DI 2 "register_operand" "r")))]
5769 "!TARGET_64BIT"
5770 "xor %1,%2,%0\;xor %R1,%R2,%R0"
5771 [(set_attr "type" "binary")
5772 (set_attr "length" "8")])
5773
5774 (define_insn ""
5775 [(set (match_operand:DI 0 "register_operand" "=r")
5776 (xor:DI (match_operand:DI 1 "register_operand" "%r")
5777 (match_operand:DI 2 "register_operand" "r")))]
5778 "TARGET_64BIT"
5779 "xor %1,%2,%0"
5780 [(set_attr "type" "binary")
5781 (set_attr "length" "4")])
5782
5783 (define_insn "xorsi3"
5784 [(set (match_operand:SI 0 "register_operand" "=r")
5785 (xor:SI (match_operand:SI 1 "register_operand" "%r")
5786 (match_operand:SI 2 "register_operand" "r")))]
5787 ""
5788 "xor %1,%2,%0"
5789 [(set_attr "type" "binary")
5790 (set_attr "length" "4")])
5791
5792 (define_expand "negdi2"
5793 [(set (match_operand:DI 0 "register_operand" "")
5794 (neg:DI (match_operand:DI 1 "register_operand" "")))]
5795 ""
5796 "")
5797
5798 (define_insn ""
5799 [(set (match_operand:DI 0 "register_operand" "=r")
5800 (neg:DI (match_operand:DI 1 "register_operand" "r")))]
5801 "!TARGET_64BIT"
5802 "sub %%r0,%R1,%R0\;{subb|sub,b} %%r0,%1,%0"
5803 [(set_attr "type" "unary")
5804 (set_attr "length" "8")])
5805
5806 (define_insn ""
5807 [(set (match_operand:DI 0 "register_operand" "=r")
5808 (neg:DI (match_operand:DI 1 "register_operand" "r")))]
5809 "TARGET_64BIT"
5810 "sub %%r0,%1,%0"
5811 [(set_attr "type" "unary")
5812 (set_attr "length" "4")])
5813
5814 (define_expand "negvdi2"
5815 [(parallel [(set (match_operand:DI 0 "register_operand" "")
5816 (neg:DI (match_operand:DI 1 "register_operand" "")))
5817 (trap_if (ne (neg:TI (sign_extend:TI (match_dup 1)))
5818 (sign_extend:TI (neg:DI (match_dup 1))))
5819 (const_int 0))])]
5820 ""
5821 "")
5822
5823 (define_insn ""
5824 [(set (match_operand:DI 0 "register_operand" "=r")
5825 (neg:DI (match_operand:DI 1 "register_operand" "r")))
5826 (trap_if (ne (neg:TI (sign_extend:TI (match_dup 1)))
5827 (sign_extend:TI (neg:DI (match_dup 1))))
5828 (const_int 0))]
5829 "!TARGET_64BIT"
5830 "sub %%r0,%R1,%R0\;{subbo|sub,b,tsv} %%r0,%1,%0"
5831 [(set_attr "type" "unary")
5832 (set_attr "length" "8")])
5833
5834 (define_insn ""
5835 [(set (match_operand:DI 0 "register_operand" "=r")
5836 (neg:DI (match_operand:DI 1 "register_operand" "r")))
5837 (trap_if (ne (neg:TI (sign_extend:TI (match_dup 1)))
5838 (sign_extend:TI (neg:DI (match_dup 1))))
5839 (const_int 0))]
5840 "TARGET_64BIT"
5841 "sub,tsv %%r0,%1,%0"
5842 [(set_attr "type" "unary")
5843 (set_attr "length" "4")])
5844
5845 (define_insn "negsi2"
5846 [(set (match_operand:SI 0 "register_operand" "=r")
5847 (neg:SI (match_operand:SI 1 "register_operand" "r")))]
5848 ""
5849 "sub %%r0,%1,%0"
5850 [(set_attr "type" "unary")
5851 (set_attr "length" "4")])
5852
5853 (define_insn "negvsi2"
5854 [(set (match_operand:SI 0 "register_operand" "=r")
5855 (neg:SI (match_operand:SI 1 "register_operand" "r")))
5856 (trap_if (ne (neg:DI (sign_extend:DI (match_dup 1)))
5857 (sign_extend:DI (neg:SI (match_dup 1))))
5858 (const_int 0))]
5859 ""
5860 "{subo|sub,tsv} %%r0,%1,%0"
5861 [(set_attr "type" "unary")
5862 (set_attr "length" "4")])
5863
5864 (define_expand "one_cmpldi2"
5865 [(set (match_operand:DI 0 "register_operand" "")
5866 (not:DI (match_operand:DI 1 "register_operand" "")))]
5867 ""
5868 "
5869 {
5870 }")
5871
5872 (define_insn ""
5873 [(set (match_operand:DI 0 "register_operand" "=r")
5874 (not:DI (match_operand:DI 1 "register_operand" "r")))]
5875 "!TARGET_64BIT"
5876 "uaddcm %%r0,%1,%0\;uaddcm %%r0,%R1,%R0"
5877 [(set_attr "type" "unary")
5878 (set_attr "length" "8")])
5879
5880 (define_insn ""
5881 [(set (match_operand:DI 0 "register_operand" "=r")
5882 (not:DI (match_operand:DI 1 "register_operand" "r")))]
5883 "TARGET_64BIT"
5884 "uaddcm %%r0,%1,%0"
5885 [(set_attr "type" "unary")
5886 (set_attr "length" "4")])
5887
5888 (define_insn "one_cmplsi2"
5889 [(set (match_operand:SI 0 "register_operand" "=r")
5890 (not:SI (match_operand:SI 1 "register_operand" "r")))]
5891 ""
5892 "uaddcm %%r0,%1,%0"
5893 [(set_attr "type" "unary")
5894 (set_attr "length" "4")])
5895 \f
5896 ;; Floating point arithmetic instructions.
5897
5898 (define_insn "adddf3"
5899 [(set (match_operand:DF 0 "register_operand" "=f")
5900 (plus:DF (match_operand:DF 1 "register_operand" "f")
5901 (match_operand:DF 2 "register_operand" "f")))]
5902 "! TARGET_SOFT_FLOAT"
5903 "fadd,dbl %1,%2,%0"
5904 [(set_attr "type" "fpalu")
5905 (set_attr "pa_combine_type" "faddsub")
5906 (set_attr "length" "4")])
5907
5908 (define_insn "addsf3"
5909 [(set (match_operand:SF 0 "register_operand" "=f")
5910 (plus:SF (match_operand:SF 1 "register_operand" "f")
5911 (match_operand:SF 2 "register_operand" "f")))]
5912 "! TARGET_SOFT_FLOAT"
5913 "fadd,sgl %1,%2,%0"
5914 [(set_attr "type" "fpalu")
5915 (set_attr "pa_combine_type" "faddsub")
5916 (set_attr "length" "4")])
5917
5918 (define_insn "subdf3"
5919 [(set (match_operand:DF 0 "register_operand" "=f")
5920 (minus:DF (match_operand:DF 1 "register_operand" "f")
5921 (match_operand:DF 2 "register_operand" "f")))]
5922 "! TARGET_SOFT_FLOAT"
5923 "fsub,dbl %1,%2,%0"
5924 [(set_attr "type" "fpalu")
5925 (set_attr "pa_combine_type" "faddsub")
5926 (set_attr "length" "4")])
5927
5928 (define_insn "subsf3"
5929 [(set (match_operand:SF 0 "register_operand" "=f")
5930 (minus:SF (match_operand:SF 1 "register_operand" "f")
5931 (match_operand:SF 2 "register_operand" "f")))]
5932 "! TARGET_SOFT_FLOAT"
5933 "fsub,sgl %1,%2,%0"
5934 [(set_attr "type" "fpalu")
5935 (set_attr "pa_combine_type" "faddsub")
5936 (set_attr "length" "4")])
5937
5938 (define_insn "muldf3"
5939 [(set (match_operand:DF 0 "register_operand" "=f")
5940 (mult:DF (match_operand:DF 1 "register_operand" "f")
5941 (match_operand:DF 2 "register_operand" "f")))]
5942 "! TARGET_SOFT_FLOAT"
5943 "fmpy,dbl %1,%2,%0"
5944 [(set_attr "type" "fpmuldbl")
5945 (set_attr "pa_combine_type" "fmpy")
5946 (set_attr "length" "4")])
5947
5948 (define_insn "mulsf3"
5949 [(set (match_operand:SF 0 "register_operand" "=f")
5950 (mult:SF (match_operand:SF 1 "register_operand" "f")
5951 (match_operand:SF 2 "register_operand" "f")))]
5952 "! TARGET_SOFT_FLOAT"
5953 "fmpy,sgl %1,%2,%0"
5954 [(set_attr "type" "fpmulsgl")
5955 (set_attr "pa_combine_type" "fmpy")
5956 (set_attr "length" "4")])
5957
5958 (define_insn "divdf3"
5959 [(set (match_operand:DF 0 "register_operand" "=f")
5960 (div:DF (match_operand:DF 1 "register_operand" "f")
5961 (match_operand:DF 2 "register_operand" "f")))]
5962 "! TARGET_SOFT_FLOAT"
5963 "fdiv,dbl %1,%2,%0"
5964 [(set_attr "type" "fpdivdbl")
5965 (set_attr "length" "4")])
5966
5967 (define_insn "divsf3"
5968 [(set (match_operand:SF 0 "register_operand" "=f")
5969 (div:SF (match_operand:SF 1 "register_operand" "f")
5970 (match_operand:SF 2 "register_operand" "f")))]
5971 "! TARGET_SOFT_FLOAT"
5972 "fdiv,sgl %1,%2,%0"
5973 [(set_attr "type" "fpdivsgl")
5974 (set_attr "length" "4")])
5975
5976 ;; Processors prior to PA 2.0 don't have a fneg instruction. Fast
5977 ;; negation can be done by subtracting from plus zero. However, this
5978 ;; violates the IEEE standard when negating plus and minus zero.
5979 ;; The slow path toggles the sign bit in the general registers.
5980 (define_expand "negdf2"
5981 [(set (match_operand:DF 0 "register_operand" "")
5982 (neg:DF (match_operand:DF 1 "register_operand" "")))]
5983 "!TARGET_SOFT_FLOAT"
5984 {
5985 if (TARGET_PA_20 || flag_unsafe_math_optimizations)
5986 emit_insn (gen_negdf2_fast (operands[0], operands[1]));
5987 else
5988 emit_insn (gen_negdf2_slow (operands[0], operands[1]));
5989 DONE;
5990 })
5991
5992 (define_insn "negdf2_slow"
5993 [(set (match_operand:DF 0 "register_operand" "=r")
5994 (neg:DF (match_operand:DF 1 "register_operand" "r")))]
5995 "!TARGET_SOFT_FLOAT && !TARGET_PA_20"
5996 "*
5997 {
5998 if (rtx_equal_p (operands[0], operands[1]))
5999 return \"and,< %1,%1,%0\;depi,tr 1,0,1,%0\;depi 0,0,1,%0\";
6000 else
6001 return \"and,< %1,%1,%0\;depi,tr 1,0,1,%0\;depi 0,0,1,%0\;copy %R1,%R0\";
6002 }"
6003 [(set_attr "type" "multi")
6004 (set (attr "length")
6005 (if_then_else (ne (symbol_ref "rtx_equal_p (operands[0], operands[1])")
6006 (const_int 0))
6007 (const_int 12)
6008 (const_int 16)))])
6009
6010 (define_insn "negdf2_fast"
6011 [(set (match_operand:DF 0 "register_operand" "=f")
6012 (neg:DF (match_operand:DF 1 "register_operand" "f")))]
6013 "!TARGET_SOFT_FLOAT"
6014 "*
6015 {
6016 if (TARGET_PA_20)
6017 return \"fneg,dbl %1,%0\";
6018 else
6019 return \"fsub,dbl %%fr0,%1,%0\";
6020 }"
6021 [(set_attr "type" "fpalu")
6022 (set_attr "length" "4")])
6023
6024 (define_expand "negsf2"
6025 [(set (match_operand:SF 0 "register_operand" "")
6026 (neg:SF (match_operand:SF 1 "register_operand" "")))]
6027 "!TARGET_SOFT_FLOAT"
6028 {
6029 if (TARGET_PA_20 || flag_unsafe_math_optimizations)
6030 emit_insn (gen_negsf2_fast (operands[0], operands[1]));
6031 else
6032 emit_insn (gen_negsf2_slow (operands[0], operands[1]));
6033 DONE;
6034 })
6035
6036 (define_insn "negsf2_slow"
6037 [(set (match_operand:SF 0 "register_operand" "=r")
6038 (neg:SF (match_operand:SF 1 "register_operand" "r")))]
6039 "!TARGET_SOFT_FLOAT && !TARGET_PA_20"
6040 "and,< %1,%1,%0\;depi,tr 1,0,1,%0\;depi 0,0,1,%0"
6041 [(set_attr "type" "multi")
6042 (set_attr "length" "12")])
6043
6044 (define_insn "negsf2_fast"
6045 [(set (match_operand:SF 0 "register_operand" "=f")
6046 (neg:SF (match_operand:SF 1 "register_operand" "f")))]
6047 "!TARGET_SOFT_FLOAT"
6048 "*
6049 {
6050 if (TARGET_PA_20)
6051 return \"fneg,sgl %1,%0\";
6052 else
6053 return \"fsub,sgl %%fr0,%1,%0\";
6054 }"
6055 [(set_attr "type" "fpalu")
6056 (set_attr "length" "4")])
6057
6058 (define_insn "absdf2"
6059 [(set (match_operand:DF 0 "register_operand" "=f")
6060 (abs:DF (match_operand:DF 1 "register_operand" "f")))]
6061 "! TARGET_SOFT_FLOAT"
6062 "fabs,dbl %1,%0"
6063 [(set_attr "type" "fpalu")
6064 (set_attr "length" "4")])
6065
6066 (define_insn "abssf2"
6067 [(set (match_operand:SF 0 "register_operand" "=f")
6068 (abs:SF (match_operand:SF 1 "register_operand" "f")))]
6069 "! TARGET_SOFT_FLOAT"
6070 "fabs,sgl %1,%0"
6071 [(set_attr "type" "fpalu")
6072 (set_attr "length" "4")])
6073
6074 (define_insn "sqrtdf2"
6075 [(set (match_operand:DF 0 "register_operand" "=f")
6076 (sqrt:DF (match_operand:DF 1 "register_operand" "f")))]
6077 "! TARGET_SOFT_FLOAT"
6078 "fsqrt,dbl %1,%0"
6079 [(set_attr "type" "fpsqrtdbl")
6080 (set_attr "length" "4")])
6081
6082 (define_insn "sqrtsf2"
6083 [(set (match_operand:SF 0 "register_operand" "=f")
6084 (sqrt:SF (match_operand:SF 1 "register_operand" "f")))]
6085 "! TARGET_SOFT_FLOAT"
6086 "fsqrt,sgl %1,%0"
6087 [(set_attr "type" "fpsqrtsgl")
6088 (set_attr "length" "4")])
6089
6090 ;; PA 2.0 floating point instructions
6091
6092 ; fmpyfadd patterns
6093 (define_insn "fmadf4"
6094 [(set (match_operand:DF 0 "register_operand" "=f")
6095 (fma:DF (match_operand:DF 1 "register_operand" "f")
6096 (match_operand:DF 2 "register_operand" "f")
6097 (match_operand:DF 3 "register_operand" "f")))]
6098 "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6099 "fmpyfadd,dbl %1,%2,%3,%0"
6100 [(set_attr "type" "fpmuldbl")
6101 (set_attr "length" "4")])
6102
6103 (define_insn "fmasf4"
6104 [(set (match_operand:SF 0 "register_operand" "=f")
6105 (fma:SF (match_operand:SF 1 "register_operand" "f")
6106 (match_operand:SF 2 "register_operand" "f")
6107 (match_operand:SF 3 "register_operand" "f")))]
6108 "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6109 "fmpyfadd,sgl %1,%2,%3,%0"
6110 [(set_attr "type" "fpmulsgl")
6111 (set_attr "length" "4")])
6112
6113 ; fmpynfadd patterns
6114 (define_insn "fnmadf4"
6115 [(set (match_operand:DF 0 "register_operand" "=f")
6116 (fma:DF (neg:DF (match_operand:DF 1 "register_operand" "f"))
6117 (match_operand:DF 2 "register_operand" "f")
6118 (match_operand:DF 3 "register_operand" "f")))]
6119 "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6120 "fmpynfadd,dbl %1,%2,%3,%0"
6121 [(set_attr "type" "fpmuldbl")
6122 (set_attr "length" "4")])
6123
6124 (define_insn "fnmasf4"
6125 [(set (match_operand:SF 0 "register_operand" "=f")
6126 (fma:SF (neg:SF (match_operand:SF 1 "register_operand" "f"))
6127 (match_operand:SF 2 "register_operand" "f")
6128 (match_operand:SF 3 "register_operand" "f")))]
6129 "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6130 "fmpynfadd,sgl %1,%2,%3,%0"
6131 [(set_attr "type" "fpmulsgl")
6132 (set_attr "length" "4")])
6133
6134 ; fnegabs patterns
6135 (define_insn ""
6136 [(set (match_operand:DF 0 "register_operand" "=f")
6137 (neg:DF (abs:DF (match_operand:DF 1 "register_operand" "f"))))]
6138 "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6139 "fnegabs,dbl %1,%0"
6140 [(set_attr "type" "fpalu")
6141 (set_attr "length" "4")])
6142
6143 (define_insn ""
6144 [(set (match_operand:SF 0 "register_operand" "=f")
6145 (neg:SF (abs:SF (match_operand:SF 1 "register_operand" "f"))))]
6146 "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6147 "fnegabs,sgl %1,%0"
6148 [(set_attr "type" "fpalu")
6149 (set_attr "length" "4")])
6150
6151 ;; Negating a multiply can be faked by adding zero in a fused multiply-add
6152 ;; instruction.
6153 ;; ??? Only if we add -0.0 or can ignore the sign of zero.
6154 (define_insn ""
6155 [(set (match_operand:DF 0 "register_operand" "=f")
6156 (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
6157 (match_operand:DF 2 "register_operand" "f"))))]
6158 "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6159 "fmpynfadd,dbl %1,%2,%%fr0,%0"
6160 [(set_attr "type" "fpmuldbl")
6161 (set_attr "length" "4")])
6162
6163 (define_insn ""
6164 [(set (match_operand:SF 0 "register_operand" "=f")
6165 (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
6166 (match_operand:SF 2 "register_operand" "f"))))]
6167 "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6168 "fmpynfadd,sgl %1,%2,%%fr0,%0"
6169 [(set_attr "type" "fpmuldbl")
6170 (set_attr "length" "4")])
6171
6172 (define_insn ""
6173 [(set (match_operand:DF 0 "register_operand" "=f")
6174 (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
6175 (match_operand:DF 2 "register_operand" "f"))))
6176 (set (match_operand:DF 3 "register_operand" "=&f")
6177 (mult:DF (match_dup 1) (match_dup 2)))]
6178 "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6179 && ! (reg_overlap_mentioned_p (operands[3], operands[1])
6180 || reg_overlap_mentioned_p (operands[3], operands[2])))"
6181 "#"
6182 [(set_attr "type" "fpmuldbl")
6183 (set_attr "length" "8")])
6184
6185 (define_split
6186 [(set (match_operand:DF 0 "register_operand" "")
6187 (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "")
6188 (match_operand:DF 2 "register_operand" ""))))
6189 (set (match_operand:DF 3 "register_operand" "")
6190 (mult:DF (match_dup 1) (match_dup 2)))]
6191 "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6192 [(set (match_dup 3) (mult:DF (match_dup 1) (match_dup 2)))
6193 (set (match_dup 0) (neg:DF (mult:DF (match_dup 1) (match_dup 2))))]
6194 "")
6195
6196 (define_insn ""
6197 [(set (match_operand:SF 0 "register_operand" "=f")
6198 (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
6199 (match_operand:SF 2 "register_operand" "f"))))
6200 (set (match_operand:SF 3 "register_operand" "=&f")
6201 (mult:SF (match_dup 1) (match_dup 2)))]
6202 "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6203 && ! (reg_overlap_mentioned_p (operands[3], operands[1])
6204 || reg_overlap_mentioned_p (operands[3], operands[2])))"
6205 "#"
6206 [(set_attr "type" "fpmuldbl")
6207 (set_attr "length" "8")])
6208
6209 (define_split
6210 [(set (match_operand:SF 0 "register_operand" "")
6211 (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "")
6212 (match_operand:SF 2 "register_operand" ""))))
6213 (set (match_operand:SF 3 "register_operand" "")
6214 (mult:SF (match_dup 1) (match_dup 2)))]
6215 "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6216 [(set (match_dup 3) (mult:SF (match_dup 1) (match_dup 2)))
6217 (set (match_dup 0) (neg:SF (mult:SF (match_dup 1) (match_dup 2))))]
6218 "")
6219
6220 (define_insn ""
6221 [(set (match_operand:DF 0 "register_operand" "=f")
6222 (neg:DF (abs:DF (match_operand:DF 1 "register_operand" "f"))))
6223 (set (match_operand:DF 2 "register_operand" "=&f") (abs:DF (match_dup 1)))]
6224 "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6225 && ! reg_overlap_mentioned_p (operands[2], operands[1]))"
6226 "#"
6227 [(set_attr "type" "fpalu")
6228 (set_attr "length" "8")])
6229
6230 (define_split
6231 [(set (match_operand:DF 0 "register_operand" "")
6232 (neg:DF (abs:DF (match_operand:DF 1 "register_operand" ""))))
6233 (set (match_operand:DF 2 "register_operand" "") (abs:DF (match_dup 1)))]
6234 "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6235 [(set (match_dup 2) (abs:DF (match_dup 1)))
6236 (set (match_dup 0) (neg:DF (abs:DF (match_dup 1))))]
6237 "")
6238
6239 (define_insn ""
6240 [(set (match_operand:SF 0 "register_operand" "=f")
6241 (neg:SF (abs:SF (match_operand:SF 1 "register_operand" "f"))))
6242 (set (match_operand:SF 2 "register_operand" "=&f") (abs:SF (match_dup 1)))]
6243 "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6244 && ! reg_overlap_mentioned_p (operands[2], operands[1]))"
6245 "#"
6246 [(set_attr "type" "fpalu")
6247 (set_attr "length" "8")])
6248
6249 (define_split
6250 [(set (match_operand:SF 0 "register_operand" "")
6251 (neg:SF (abs:SF (match_operand:SF 1 "register_operand" ""))))
6252 (set (match_operand:SF 2 "register_operand" "") (abs:SF (match_dup 1)))]
6253 "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6254 [(set (match_dup 2) (abs:SF (match_dup 1)))
6255 (set (match_dup 0) (neg:SF (abs:SF (match_dup 1))))]
6256 "")
6257 \f
6258 ;;- Shift instructions
6259
6260 ;; Optimized special case of shifting.
6261
6262 (define_insn ""
6263 [(set (match_operand:SI 0 "register_operand" "=r")
6264 (lshiftrt:SI (match_operand:SI 1 "memory_operand" "m")
6265 (const_int 24)))]
6266 ""
6267 "ldb%M1 %1,%0"
6268 [(set_attr "type" "load")
6269 (set_attr "length" "4")])
6270
6271 (define_insn ""
6272 [(set (match_operand:SI 0 "register_operand" "=r")
6273 (lshiftrt:SI (match_operand:SI 1 "memory_operand" "m")
6274 (const_int 16)))]
6275 ""
6276 "ldh%M1 %1,%0"
6277 [(set_attr "type" "load")
6278 (set_attr "length" "4")])
6279
6280 (define_insn ""
6281 [(set (match_operand:SI 0 "register_operand" "=r")
6282 (plus:SI (mult:SI (match_operand:SI 2 "register_operand" "r")
6283 (match_operand:SI 3 "shadd_operand" ""))
6284 (match_operand:SI 1 "register_operand" "r")))]
6285 ""
6286 "{sh%O3addl %2,%1,%0|shladd,l %2,%O3,%1,%0} "
6287 [(set_attr "type" "binary")
6288 (set_attr "length" "4")])
6289
6290 (define_insn ""
6291 [(set (match_operand:DI 0 "register_operand" "=r")
6292 (plus:DI (mult:DI (match_operand:DI 2 "register_operand" "r")
6293 (match_operand:DI 3 "shadd_operand" ""))
6294 (match_operand:DI 1 "register_operand" "r")))]
6295 "TARGET_64BIT"
6296 "shladd,l %2,%O3,%1,%0"
6297 [(set_attr "type" "binary")
6298 (set_attr "length" "4")])
6299
6300 (define_expand "ashlsi3"
6301 [(set (match_operand:SI 0 "register_operand" "")
6302 (ashift:SI (match_operand:SI 1 "lhs_lshift_operand" "")
6303 (match_operand:SI 2 "arith32_operand" "")))]
6304 ""
6305 "
6306 {
6307 if (GET_CODE (operands[2]) != CONST_INT)
6308 {
6309 rtx temp = gen_reg_rtx (SImode);
6310 emit_insn (gen_subsi3 (temp, GEN_INT (31), operands[2]));
6311 if (GET_CODE (operands[1]) == CONST_INT)
6312 emit_insn (gen_zvdep_imm32 (operands[0], operands[1], temp));
6313 else
6314 emit_insn (gen_zvdep32 (operands[0], operands[1], temp));
6315 DONE;
6316 }
6317 /* Make sure both inputs are not constants,
6318 there are no patterns for that. */
6319 operands[1] = force_reg (SImode, operands[1]);
6320 }")
6321
6322 (define_insn ""
6323 [(set (match_operand:SI 0 "register_operand" "=r")
6324 (ashift:SI (match_operand:SI 1 "register_operand" "r")
6325 (match_operand:SI 2 "const_int_operand" "n")))]
6326 ""
6327 "{zdep|depw,z} %1,%P2,%L2,%0"
6328 [(set_attr "type" "shift")
6329 (set_attr "length" "4")])
6330
6331 ; Match cases of op1 a CONST_INT here that zvdep_imm32 doesn't handle.
6332 ; Doing it like this makes slightly better code since reload can
6333 ; replace a register with a known value in range -16..15 with a
6334 ; constant. Ideally, we would like to merge zvdep32 and zvdep_imm32,
6335 ; but since we have no more CONST_OK... characters, that is not
6336 ; possible.
6337 (define_insn "zvdep32"
6338 [(set (match_operand:SI 0 "register_operand" "=r,r")
6339 (ashift:SI (match_operand:SI 1 "arith5_operand" "r,L")
6340 (minus:SI (const_int 31)
6341 (match_operand:SI 2 "register_operand" "q,q"))))]
6342 ""
6343 "@
6344 {zvdep %1,32,%0|depw,z %1,%%sar,32,%0}
6345 {zvdepi %1,32,%0|depwi,z %1,%%sar,32,%0}"
6346 [(set_attr "type" "shift,shift")
6347 (set_attr "length" "4,4")])
6348
6349 (define_insn "zvdep_imm32"
6350 [(set (match_operand:SI 0 "register_operand" "=r")
6351 (ashift:SI (match_operand:SI 1 "lhs_lshift_cint_operand" "")
6352 (minus:SI (const_int 31)
6353 (match_operand:SI 2 "register_operand" "q"))))]
6354 ""
6355 "*
6356 {
6357 int x = INTVAL (operands[1]);
6358 operands[2] = GEN_INT (4 + exact_log2 ((x >> 4) + 1));
6359 operands[1] = GEN_INT ((x & 0xf) - 0x10);
6360 return \"{zvdepi %1,%2,%0|depwi,z %1,%%sar,%2,%0}\";
6361 }"
6362 [(set_attr "type" "shift")
6363 (set_attr "length" "4")])
6364
6365 (define_insn "vdepi_ior"
6366 [(set (match_operand:SI 0 "register_operand" "=r")
6367 (ior:SI (ashift:SI (match_operand:SI 1 "const_int_operand" "")
6368 (minus:SI (const_int 31)
6369 (match_operand:SI 2 "register_operand" "q")))
6370 (match_operand:SI 3 "register_operand" "0")))]
6371 ; accept ...0001...1, can this be generalized?
6372 "exact_log2 (INTVAL (operands[1]) + 1) > 0"
6373 "*
6374 {
6375 int x = INTVAL (operands[1]);
6376 operands[2] = GEN_INT (exact_log2 (x + 1));
6377 return \"{vdepi -1,%2,%0|depwi -1,%%sar,%2,%0}\";
6378 }"
6379 [(set_attr "type" "shift")
6380 (set_attr "length" "4")])
6381
6382 (define_insn "vdepi_and"
6383 [(set (match_operand:SI 0 "register_operand" "=r")
6384 (and:SI (rotate:SI (match_operand:SI 1 "const_int_operand" "")
6385 (minus:SI (const_int 31)
6386 (match_operand:SI 2 "register_operand" "q")))
6387 (match_operand:SI 3 "register_operand" "0")))]
6388 ; this can be generalized...!
6389 "INTVAL (operands[1]) == -2"
6390 "*
6391 {
6392 int x = INTVAL (operands[1]);
6393 operands[2] = GEN_INT (exact_log2 ((~x) + 1));
6394 return \"{vdepi 0,%2,%0|depwi 0,%%sar,%2,%0}\";
6395 }"
6396 [(set_attr "type" "shift")
6397 (set_attr "length" "4")])
6398
6399 (define_expand "ashldi3"
6400 [(set (match_operand:DI 0 "register_operand" "")
6401 (ashift:DI (match_operand:DI 1 "lhs_lshift_operand" "")
6402 (match_operand:DI 2 "arith32_operand" "")))]
6403 "TARGET_64BIT"
6404 "
6405 {
6406 if (GET_CODE (operands[2]) != CONST_INT)
6407 {
6408 rtx temp = gen_reg_rtx (DImode);
6409 emit_insn (gen_subdi3 (temp, GEN_INT (63), operands[2]));
6410 if (GET_CODE (operands[1]) == CONST_INT)
6411 emit_insn (gen_zvdep_imm64 (operands[0], operands[1], temp));
6412 else
6413 emit_insn (gen_zvdep64 (operands[0], operands[1], temp));
6414 DONE;
6415 }
6416 /* Make sure both inputs are not constants,
6417 there are no patterns for that. */
6418 operands[1] = force_reg (DImode, operands[1]);
6419 }")
6420
6421 (define_insn ""
6422 [(set (match_operand:DI 0 "register_operand" "=r")
6423 (ashift:DI (match_operand:DI 1 "register_operand" "r")
6424 (match_operand:DI 2 "const_int_operand" "n")))]
6425 "TARGET_64BIT"
6426 "depd,z %1,%p2,%Q2,%0"
6427 [(set_attr "type" "shift")
6428 (set_attr "length" "4")])
6429
6430 ; Match cases of op1 a CONST_INT here that zvdep_imm64 doesn't handle.
6431 ; Doing it like this makes slightly better code since reload can
6432 ; replace a register with a known value in range -16..15 with a
6433 ; constant. Ideally, we would like to merge zvdep64 and zvdep_imm64,
6434 ; but since we have no more CONST_OK... characters, that is not
6435 ; possible.
6436 (define_insn "zvdep64"
6437 [(set (match_operand:DI 0 "register_operand" "=r,r")
6438 (ashift:DI (match_operand:DI 1 "arith5_operand" "r,L")
6439 (minus:DI (const_int 63)
6440 (match_operand:DI 2 "register_operand" "q,q"))))]
6441 "TARGET_64BIT"
6442 "@
6443 depd,z %1,%%sar,64,%0
6444 depdi,z %1,%%sar,64,%0"
6445 [(set_attr "type" "shift,shift")
6446 (set_attr "length" "4,4")])
6447
6448 (define_insn "zvdep_imm64"
6449 [(set (match_operand:DI 0 "register_operand" "=r")
6450 (ashift:DI (match_operand:DI 1 "lhs_lshift_cint_operand" "")
6451 (minus:DI (const_int 63)
6452 (match_operand:DI 2 "register_operand" "q"))))]
6453 "TARGET_64BIT"
6454 "*
6455 {
6456 int x = INTVAL (operands[1]);
6457 operands[2] = GEN_INT (4 + exact_log2 ((x >> 4) + 1));
6458 operands[1] = GEN_INT ((x & 0x1f) - 0x20);
6459 return \"depdi,z %1,%%sar,%2,%0\";
6460 }"
6461 [(set_attr "type" "shift")
6462 (set_attr "length" "4")])
6463
6464 (define_insn ""
6465 [(set (match_operand:DI 0 "register_operand" "=r")
6466 (ior:DI (ashift:DI (match_operand:DI 1 "const_int_operand" "")
6467 (minus:DI (const_int 63)
6468 (match_operand:DI 2 "register_operand" "q")))
6469 (match_operand:DI 3 "register_operand" "0")))]
6470 ; accept ...0001...1, can this be generalized?
6471 "TARGET_64BIT && exact_log2 (INTVAL (operands[1]) + 1) > 0"
6472 "*
6473 {
6474 int x = INTVAL (operands[1]);
6475 operands[2] = GEN_INT (exact_log2 (x + 1));
6476 return \"depdi -1,%%sar,%2,%0\";
6477 }"
6478 [(set_attr "type" "shift")
6479 (set_attr "length" "4")])
6480
6481 (define_insn ""
6482 [(set (match_operand:DI 0 "register_operand" "=r")
6483 (and:DI (rotate:DI (match_operand:DI 1 "const_int_operand" "")
6484 (minus:DI (const_int 63)
6485 (match_operand:DI 2 "register_operand" "q")))
6486 (match_operand:DI 3 "register_operand" "0")))]
6487 ; this can be generalized...!
6488 "TARGET_64BIT && INTVAL (operands[1]) == -2"
6489 "*
6490 {
6491 int x = INTVAL (operands[1]);
6492 operands[2] = GEN_INT (exact_log2 ((~x) + 1));
6493 return \"depdi 0,%%sar,%2,%0\";
6494 }"
6495 [(set_attr "type" "shift")
6496 (set_attr "length" "4")])
6497
6498 (define_expand "ashrsi3"
6499 [(set (match_operand:SI 0 "register_operand" "")
6500 (ashiftrt:SI (match_operand:SI 1 "register_operand" "")
6501 (match_operand:SI 2 "arith32_operand" "")))]
6502 ""
6503 "
6504 {
6505 if (GET_CODE (operands[2]) != CONST_INT)
6506 {
6507 rtx temp = gen_reg_rtx (SImode);
6508 emit_insn (gen_subsi3 (temp, GEN_INT (31), operands[2]));
6509 emit_insn (gen_vextrs32 (operands[0], operands[1], temp));
6510 DONE;
6511 }
6512 }")
6513
6514 (define_insn ""
6515 [(set (match_operand:SI 0 "register_operand" "=r")
6516 (ashiftrt:SI (match_operand:SI 1 "register_operand" "r")
6517 (match_operand:SI 2 "const_int_operand" "n")))]
6518 ""
6519 "{extrs|extrw,s} %1,%P2,%L2,%0"
6520 [(set_attr "type" "shift")
6521 (set_attr "length" "4")])
6522
6523 (define_insn "vextrs32"
6524 [(set (match_operand:SI 0 "register_operand" "=r")
6525 (ashiftrt:SI (match_operand:SI 1 "register_operand" "r")
6526 (minus:SI (const_int 31)
6527 (match_operand:SI 2 "register_operand" "q"))))]
6528 ""
6529 "{vextrs %1,32,%0|extrw,s %1,%%sar,32,%0}"
6530 [(set_attr "type" "shift")
6531 (set_attr "length" "4")])
6532
6533 (define_expand "ashrdi3"
6534 [(set (match_operand:DI 0 "register_operand" "")
6535 (ashiftrt:DI (match_operand:DI 1 "register_operand" "")
6536 (match_operand:DI 2 "arith32_operand" "")))]
6537 "TARGET_64BIT"
6538 "
6539 {
6540 if (GET_CODE (operands[2]) != CONST_INT)
6541 {
6542 rtx temp = gen_reg_rtx (DImode);
6543 emit_insn (gen_subdi3 (temp, GEN_INT (63), operands[2]));
6544 emit_insn (gen_vextrs64 (operands[0], operands[1], temp));
6545 DONE;
6546 }
6547 }")
6548
6549 (define_insn ""
6550 [(set (match_operand:DI 0 "register_operand" "=r")
6551 (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
6552 (match_operand:DI 2 "const_int_operand" "n")))]
6553 "TARGET_64BIT"
6554 "extrd,s %1,%p2,%Q2,%0"
6555 [(set_attr "type" "shift")
6556 (set_attr "length" "4")])
6557
6558 (define_insn "vextrs64"
6559 [(set (match_operand:DI 0 "register_operand" "=r")
6560 (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
6561 (minus:DI (const_int 63)
6562 (match_operand:DI 2 "register_operand" "q"))))]
6563 "TARGET_64BIT"
6564 "extrd,s %1,%%sar,64,%0"
6565 [(set_attr "type" "shift")
6566 (set_attr "length" "4")])
6567
6568 (define_insn "lshrsi3"
6569 [(set (match_operand:SI 0 "register_operand" "=r,r")
6570 (lshiftrt:SI (match_operand:SI 1 "register_operand" "r,r")
6571 (match_operand:SI 2 "arith32_operand" "q,n")))]
6572 ""
6573 "@
6574 {vshd %%r0,%1,%0|shrpw %%r0,%1,%%sar,%0}
6575 {extru|extrw,u} %1,%P2,%L2,%0"
6576 [(set_attr "type" "shift")
6577 (set_attr "length" "4")])
6578
6579 (define_insn "lshrdi3"
6580 [(set (match_operand:DI 0 "register_operand" "=r,r")
6581 (lshiftrt:DI (match_operand:DI 1 "register_operand" "r,r")
6582 (match_operand:DI 2 "arith32_operand" "q,n")))]
6583 "TARGET_64BIT"
6584 "@
6585 shrpd %%r0,%1,%%sar,%0
6586 extrd,u %1,%p2,%Q2,%0"
6587 [(set_attr "type" "shift")
6588 (set_attr "length" "4")])
6589
6590 (define_insn "rotrsi3"
6591 [(set (match_operand:SI 0 "register_operand" "=r,r")
6592 (rotatert:SI (match_operand:SI 1 "register_operand" "r,r")
6593 (match_operand:SI 2 "arith32_operand" "q,n")))]
6594 ""
6595 "*
6596 {
6597 if (GET_CODE (operands[2]) == CONST_INT)
6598 {
6599 operands[2] = GEN_INT (INTVAL (operands[2]) & 31);
6600 return \"{shd|shrpw} %1,%1,%2,%0\";
6601 }
6602 else
6603 return \"{vshd %1,%1,%0|shrpw %1,%1,%%sar,%0}\";
6604 }"
6605 [(set_attr "type" "shift")
6606 (set_attr "length" "4")])
6607
6608 (define_expand "rotlsi3"
6609 [(set (match_operand:SI 0 "register_operand" "")
6610 (rotate:SI (match_operand:SI 1 "register_operand" "")
6611 (match_operand:SI 2 "arith32_operand" "")))]
6612 ""
6613 "
6614 {
6615 if (GET_CODE (operands[2]) != CONST_INT)
6616 {
6617 rtx temp = gen_reg_rtx (SImode);
6618 emit_insn (gen_subsi3 (temp, GEN_INT (32), operands[2]));
6619 emit_insn (gen_rotrsi3 (operands[0], operands[1], temp));
6620 DONE;
6621 }
6622 /* Else expand normally. */
6623 }")
6624
6625 (define_insn ""
6626 [(set (match_operand:SI 0 "register_operand" "=r")
6627 (rotate:SI (match_operand:SI 1 "register_operand" "r")
6628 (match_operand:SI 2 "const_int_operand" "n")))]
6629 ""
6630 "*
6631 {
6632 operands[2] = GEN_INT ((32 - INTVAL (operands[2])) & 31);
6633 return \"{shd|shrpw} %1,%1,%2,%0\";
6634 }"
6635 [(set_attr "type" "shift")
6636 (set_attr "length" "4")])
6637
6638 (define_insn ""
6639 [(set (match_operand:SI 0 "register_operand" "=r")
6640 (match_operator:SI 5 "plus_xor_ior_operator"
6641 [(ashift:SI (match_operand:SI 1 "register_operand" "r")
6642 (match_operand:SI 3 "const_int_operand" "n"))
6643 (lshiftrt:SI (match_operand:SI 2 "register_operand" "r")
6644 (match_operand:SI 4 "const_int_operand" "n"))]))]
6645 "INTVAL (operands[3]) + INTVAL (operands[4]) == 32"
6646 "{shd|shrpw} %1,%2,%4,%0"
6647 [(set_attr "type" "shift")
6648 (set_attr "length" "4")])
6649
6650 (define_insn ""
6651 [(set (match_operand:SI 0 "register_operand" "=r")
6652 (match_operator:SI 5 "plus_xor_ior_operator"
6653 [(lshiftrt:SI (match_operand:SI 2 "register_operand" "r")
6654 (match_operand:SI 4 "const_int_operand" "n"))
6655 (ashift:SI (match_operand:SI 1 "register_operand" "r")
6656 (match_operand:SI 3 "const_int_operand" "n"))]))]
6657 "INTVAL (operands[3]) + INTVAL (operands[4]) == 32"
6658 "{shd|shrpw} %1,%2,%4,%0"
6659 [(set_attr "type" "shift")
6660 (set_attr "length" "4")])
6661
6662 (define_insn ""
6663 [(set (match_operand:SI 0 "register_operand" "=r")
6664 (and:SI (ashift:SI (match_operand:SI 1 "register_operand" "r")
6665 (match_operand:SI 2 "const_int_operand" ""))
6666 (match_operand:SI 3 "const_int_operand" "")))]
6667 "exact_log2 (1 + (INTVAL (operands[3]) >> (INTVAL (operands[2]) & 31))) > 0"
6668 "*
6669 {
6670 int cnt = INTVAL (operands[2]) & 31;
6671 operands[3] = GEN_INT (exact_log2 (1 + (INTVAL (operands[3]) >> cnt)));
6672 operands[2] = GEN_INT (31 - cnt);
6673 return \"{zdep|depw,z} %1,%2,%3,%0\";
6674 }"
6675 [(set_attr "type" "shift")
6676 (set_attr "length" "4")])
6677 \f
6678 ;; Unconditional and other jump instructions.
6679
6680 ;; This is used for most returns.
6681 (define_insn "return_internal"
6682 [(return)
6683 (use (reg:SI 2))]
6684 ""
6685 "*
6686 {
6687 if (TARGET_PA_20)
6688 return \"bve%* (%%r2)\";
6689 return \"bv%* %%r0(%%r2)\";
6690 }"
6691 [(set_attr "type" "branch")
6692 (set_attr "length" "4")])
6693
6694 ;; This is used for eh returns which bypass the return stub.
6695 (define_insn "return_external_pic"
6696 [(return)
6697 (clobber (reg:SI 1))
6698 (use (reg:SI 2))]
6699 "!TARGET_NO_SPACE_REGS
6700 && !TARGET_PA_20
6701 && flag_pic && crtl->calls_eh_return"
6702 "ldsid (%%sr0,%%r2),%%r1\;mtsp %%r1,%%sr0\;be%* 0(%%sr0,%%r2)"
6703 [(set_attr "type" "branch")
6704 (set_attr "length" "12")])
6705
6706 (define_expand "prologue"
6707 [(const_int 0)]
6708 ""
6709 "hppa_expand_prologue ();DONE;")
6710
6711 (define_expand "sibcall_epilogue"
6712 [(return)]
6713 ""
6714 "
6715 {
6716 hppa_expand_epilogue ();
6717 DONE;
6718 }")
6719
6720 (define_expand "epilogue"
6721 [(return)]
6722 ""
6723 "
6724 {
6725 rtx x;
6726
6727 /* Try to use the trivial return first. Else use the full epilogue. */
6728 if (reload_completed
6729 && !frame_pointer_needed
6730 && !df_regs_ever_live_p (2)
6731 && (compute_frame_size (get_frame_size (), 0) ? 0 : 1))
6732 x = gen_return_internal ();
6733 else
6734 {
6735 hppa_expand_epilogue ();
6736
6737 /* EH returns bypass the normal return stub. Thus, we must do an
6738 interspace branch to return from functions that call eh_return.
6739 This is only a problem for returns from shared code on ports
6740 using space registers. */
6741 if (!TARGET_NO_SPACE_REGS
6742 && !TARGET_PA_20
6743 && flag_pic && crtl->calls_eh_return)
6744 x = gen_return_external_pic ();
6745 else
6746 x = gen_return_internal ();
6747 }
6748 emit_jump_insn (x);
6749 DONE;
6750 }")
6751
6752 ; Used by hppa_profile_hook to load the starting address of the current
6753 ; function; operand 1 contains the address of the label in operand 3
6754 (define_insn "load_offset_label_address"
6755 [(set (match_operand:SI 0 "register_operand" "=r")
6756 (plus:SI (match_operand:SI 1 "register_operand" "r")
6757 (minus:SI (match_operand:SI 2 "" "")
6758 (label_ref:SI (match_operand 3 "" "")))))]
6759 ""
6760 "ldo %2-%l3(%1),%0"
6761 [(set_attr "type" "multi")
6762 (set_attr "length" "4")])
6763
6764 ; Output a code label and load its address.
6765 (define_insn "lcla1"
6766 [(set (match_operand:SI 0 "register_operand" "=r")
6767 (label_ref:SI (match_operand 1 "" "")))
6768 (const_int 0)]
6769 "!TARGET_PA_20"
6770 "*
6771 {
6772 output_asm_insn (\"bl .+8,%0\;depi 0,31,2,%0\", operands);
6773 (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
6774 CODE_LABEL_NUMBER (operands[1]));
6775 return \"\";
6776 }"
6777 [(set_attr "type" "multi")
6778 (set_attr "length" "8")])
6779
6780 (define_insn "lcla2"
6781 [(set (match_operand:SI 0 "register_operand" "=r")
6782 (label_ref:SI (match_operand 1 "" "")))
6783 (const_int 0)]
6784 "TARGET_PA_20"
6785 "*
6786 {
6787 (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
6788 CODE_LABEL_NUMBER (operands[1]));
6789 return \"mfia %0\";
6790 }"
6791 [(set_attr "type" "move")
6792 (set_attr "length" "4")])
6793
6794 (define_insn "blockage"
6795 [(unspec_volatile [(const_int 2)] UNSPECV_BLOCKAGE)]
6796 ""
6797 ""
6798 [(set_attr "length" "0")])
6799
6800 (define_insn "jump"
6801 [(set (pc) (label_ref (match_operand 0 "" "")))]
6802 ""
6803 "*
6804 {
6805 /* An unconditional branch which can reach its target. */
6806 if (get_attr_length (insn) < 16)
6807 return \"b%* %l0\";
6808
6809 return output_lbranch (operands[0], insn, 1);
6810 }"
6811 [(set_attr "type" "uncond_branch")
6812 (set_attr "pa_combine_type" "uncond_branch")
6813 (set (attr "length")
6814 (cond [(eq (symbol_ref "jump_in_call_delay (insn)") (const_int 1))
6815 (if_then_else (lt (abs (minus (match_dup 0)
6816 (plus (pc) (const_int 8))))
6817 (const_int MAX_12BIT_OFFSET))
6818 (const_int 4)
6819 (const_int 8))
6820 (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
6821 (const_int MAX_17BIT_OFFSET))
6822 (const_int 4)
6823 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
6824 (const_int 20)
6825 (eq (symbol_ref "flag_pic") (const_int 0))
6826 (const_int 16)]
6827 (const_int 24)))])
6828
6829 ;;; Hope this is only within a function...
6830 (define_insn "indirect_jump"
6831 [(set (pc) (match_operand 0 "register_operand" "r"))]
6832 "GET_MODE (operands[0]) == word_mode"
6833 "bv%* %%r0(%0)"
6834 [(set_attr "type" "branch")
6835 (set_attr "length" "4")])
6836
6837 ;;; An indirect jump can be optimized to a direct jump. GAS for the
6838 ;;; SOM target doesn't allow branching to a label inside a function.
6839 ;;; We also don't correctly compute branch distances for labels
6840 ;;; outside the current function. Thus, we use an indirect jump can't
6841 ;;; be optimized to a direct jump for all targets. We assume that
6842 ;;; the branch target is in the same space (i.e., nested function
6843 ;;; jumping to a label in an outer function in the same translation
6844 ;;; unit).
6845 (define_expand "nonlocal_goto"
6846 [(use (match_operand 0 "general_operand" ""))
6847 (use (match_operand 1 "general_operand" ""))
6848 (use (match_operand 2 "general_operand" ""))
6849 (use (match_operand 3 "general_operand" ""))]
6850 ""
6851 {
6852 rtx lab = operands[1];
6853 rtx stack = operands[2];
6854 rtx fp = operands[3];
6855
6856 lab = copy_to_reg (lab);
6857
6858 emit_clobber (gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (VOIDmode)));
6859 emit_clobber (gen_rtx_MEM (BLKmode, hard_frame_pointer_rtx));
6860
6861 /* Restore the frame pointer. The virtual_stack_vars_rtx is saved
6862 instead of the hard_frame_pointer_rtx in the save area. As a
6863 result, an extra instruction is needed to adjust for the offset
6864 of the virtual stack variables and the hard frame pointer. */
6865 if (GET_CODE (fp) != REG)
6866 fp = force_reg (Pmode, fp);
6867 emit_move_insn (hard_frame_pointer_rtx, plus_constant (fp, -8));
6868
6869 emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX);
6870
6871 emit_use (hard_frame_pointer_rtx);
6872 emit_use (stack_pointer_rtx);
6873
6874 /* Nonlocal goto jumps are only used between functions in the same
6875 translation unit. Thus, we can avoid the extra overhead of an
6876 interspace jump. */
6877 emit_jump_insn (gen_indirect_goto (lab));
6878 emit_barrier ();
6879 DONE;
6880 })
6881
6882 (define_insn "indirect_goto"
6883 [(unspec [(match_operand 0 "register_operand" "=r")] UNSPEC_GOTO)]
6884 "GET_MODE (operands[0]) == word_mode"
6885 "bv%* %%r0(%0)"
6886 [(set_attr "type" "branch")
6887 (set_attr "length" "4")])
6888
6889 ;;; This jump is used in branch tables where the insn length is fixed.
6890 ;;; The length of this insn is adjusted if the delay slot is not filled.
6891 (define_insn "short_jump"
6892 [(set (pc) (label_ref (match_operand 0 "" "")))
6893 (const_int 0)]
6894 ""
6895 "b%* %l0%#"
6896 [(set_attr "type" "btable_branch")
6897 (set_attr "length" "4")])
6898
6899 ;; Subroutines of "casesi".
6900 ;; operand 0 is index
6901 ;; operand 1 is the minimum bound
6902 ;; operand 2 is the maximum bound - minimum bound + 1
6903 ;; operand 3 is CODE_LABEL for the table;
6904 ;; operand 4 is the CODE_LABEL to go to if index out of range.
6905
6906 (define_expand "casesi"
6907 [(match_operand:SI 0 "general_operand" "")
6908 (match_operand:SI 1 "const_int_operand" "")
6909 (match_operand:SI 2 "const_int_operand" "")
6910 (match_operand 3 "" "")
6911 (match_operand 4 "" "")]
6912 ""
6913 "
6914 {
6915 if (GET_CODE (operands[0]) != REG)
6916 operands[0] = force_reg (SImode, operands[0]);
6917
6918 if (operands[1] != const0_rtx)
6919 {
6920 rtx index = gen_reg_rtx (SImode);
6921
6922 operands[1] = GEN_INT (-INTVAL (operands[1]));
6923 if (!INT_14_BITS (operands[1]))
6924 operands[1] = force_reg (SImode, operands[1]);
6925 emit_insn (gen_addsi3 (index, operands[0], operands[1]));
6926 operands[0] = index;
6927 }
6928
6929 if (!INT_5_BITS (operands[2]))
6930 operands[2] = force_reg (SImode, operands[2]);
6931
6932 /* This branch prevents us finding an insn for the delay slot of the
6933 following vectored branch. It might be possible to use the delay
6934 slot if an index value of -1 was used to transfer to the out-of-range
6935 label. In order to do this, we would have to output the -1 vector
6936 element after the delay insn. The casesi output code would have to
6937 check if the casesi insn is in a delay branch sequence and output
6938 the delay insn if one is found. If this was done, then it might
6939 then be worthwhile to split the casesi patterns to improve scheduling.
6940 However, it's not clear that all this extra complexity is worth
6941 the effort. */
6942 {
6943 rtx test = gen_rtx_GTU (VOIDmode, operands[0], operands[2]);
6944 emit_jump_insn (gen_cbranchsi4 (test, operands[0], operands[2], operands[4]));
6945 }
6946
6947 /* In 64bit mode we must make sure to wipe the upper bits of the register
6948 just in case the addition overflowed or we had random bits in the
6949 high part of the register. */
6950 if (TARGET_64BIT)
6951 {
6952 rtx index = gen_reg_rtx (DImode);
6953
6954 emit_insn (gen_extendsidi2 (index, operands[0]));
6955 operands[0] = index;
6956 }
6957
6958 if (TARGET_BIG_SWITCH)
6959 {
6960 if (TARGET_64BIT)
6961 emit_jump_insn (gen_casesi64p (operands[0], operands[3]));
6962 else if (flag_pic)
6963 emit_jump_insn (gen_casesi32p (operands[0], operands[3]));
6964 else
6965 emit_jump_insn (gen_casesi32 (operands[0], operands[3]));
6966 }
6967 else
6968 emit_jump_insn (gen_casesi0 (operands[0], operands[3]));
6969 DONE;
6970 }")
6971
6972 ;;; The rtl for this pattern doesn't accurately describe what the insn
6973 ;;; actually does, particularly when case-vector elements are exploded
6974 ;;; in pa_reorg. However, the initial SET in these patterns must show
6975 ;;; the connection of the insn to the following jump table.
6976 (define_insn "casesi0"
6977 [(set (pc) (mem:SI (plus:SI
6978 (mult:SI (match_operand:SI 0 "register_operand" "r")
6979 (const_int 4))
6980 (label_ref (match_operand 1 "" "")))))]
6981 ""
6982 "blr,n %0,%%r0\;nop"
6983 [(set_attr "type" "multi")
6984 (set_attr "length" "8")])
6985
6986 ;;; 32-bit code, absolute branch table.
6987 (define_insn "casesi32"
6988 [(set (pc) (mem:SI (plus:SI
6989 (mult:SI (match_operand:SI 0 "register_operand" "r")
6990 (const_int 4))
6991 (label_ref (match_operand 1 "" "")))))
6992 (clobber (match_scratch:SI 2 "=&r"))]
6993 "!flag_pic"
6994 "ldil L'%l1,%2\;ldo R'%l1(%2),%2\;{ldwx|ldw},s %0(%2),%2\;bv,n %%r0(%2)"
6995 [(set_attr "type" "multi")
6996 (set_attr "length" "16")])
6997
6998 ;;; 32-bit code, relative branch table.
6999 (define_insn "casesi32p"
7000 [(set (pc) (mem:SI (plus:SI
7001 (mult:SI (match_operand:SI 0 "register_operand" "r")
7002 (const_int 4))
7003 (label_ref (match_operand 1 "" "")))))
7004 (clobber (match_scratch:SI 2 "=&r"))
7005 (clobber (match_scratch:SI 3 "=&r"))]
7006 "flag_pic"
7007 "{bl .+8,%2\;depi 0,31,2,%2|mfia %2}\;ldo {%l1-.|%l1+4-.}(%2),%2\;\
7008 {ldwx|ldw},s %0(%2),%3\;{addl|add,l} %2,%3,%3\;bv,n %%r0(%3)"
7009 [(set_attr "type" "multi")
7010 (set (attr "length")
7011 (if_then_else (ne (symbol_ref "TARGET_PA_20") (const_int 0))
7012 (const_int 20)
7013 (const_int 24)))])
7014
7015 ;;; 64-bit code, 32-bit relative branch table.
7016 (define_insn "casesi64p"
7017 [(set (pc) (mem:DI (plus:DI
7018 (mult:DI (match_operand:DI 0 "register_operand" "r")
7019 (const_int 8))
7020 (label_ref (match_operand 1 "" "")))))
7021 (clobber (match_scratch:DI 2 "=&r"))
7022 (clobber (match_scratch:DI 3 "=&r"))]
7023 ""
7024 "mfia %2\;ldo %l1+4-.(%2),%2\;ldw,s %0(%2),%3\;extrd,s %3,63,32,%3\;\
7025 add,l %2,%3,%3\;bv,n %%r0(%3)"
7026 [(set_attr "type" "multi")
7027 (set_attr "length" "24")])
7028
7029
7030 ;; Call patterns.
7031 ;;- jump to subroutine
7032
7033 (define_expand "call"
7034 [(parallel [(call (match_operand:SI 0 "" "")
7035 (match_operand 1 "" ""))
7036 (clobber (reg:SI 2))])]
7037 ""
7038 "
7039 {
7040 rtx op;
7041 rtx nb = operands[1];
7042
7043 if (TARGET_PORTABLE_RUNTIME)
7044 op = force_reg (SImode, XEXP (operands[0], 0));
7045 else
7046 op = XEXP (operands[0], 0);
7047
7048 if (TARGET_64BIT)
7049 {
7050 if (!virtuals_instantiated)
7051 emit_move_insn (arg_pointer_rtx,
7052 gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
7053 GEN_INT (64)));
7054 else
7055 {
7056 /* The loop pass can generate new libcalls after the virtual
7057 registers are instantiated when fpregs are disabled because
7058 the only method that we have for doing DImode multiplication
7059 is with a libcall. This could be trouble if we haven't
7060 allocated enough space for the outgoing arguments. */
7061 gcc_assert (INTVAL (nb) <= crtl->outgoing_args_size);
7062
7063 emit_move_insn (arg_pointer_rtx,
7064 gen_rtx_PLUS (word_mode, stack_pointer_rtx,
7065 GEN_INT (STACK_POINTER_OFFSET + 64)));
7066 }
7067 }
7068
7069 /* Use two different patterns for calls to explicitly named functions
7070 and calls through function pointers. This is necessary as these two
7071 types of calls use different calling conventions, and CSE might try
7072 to change the named call into an indirect call in some cases (using
7073 two patterns keeps CSE from performing this optimization).
7074
7075 We now use even more call patterns as there was a subtle bug in
7076 attempting to restore the pic register after a call using a simple
7077 move insn. During reload, a instruction involving a pseudo register
7078 with no explicit dependence on the PIC register can be converted
7079 to an equivalent load from memory using the PIC register. If we
7080 emit a simple move to restore the PIC register in the initial rtl
7081 generation, then it can potentially be repositioned during scheduling.
7082 and an instruction that eventually uses the PIC register may end up
7083 between the call and the PIC register restore.
7084
7085 This only worked because there is a post call group of instructions
7086 that are scheduled with the call. These instructions are included
7087 in the same basic block as the call. However, calls can throw in
7088 C++ code and a basic block has to terminate at the call if the call
7089 can throw. This results in the PIC register restore being scheduled
7090 independently from the call. So, we now hide the save and restore
7091 of the PIC register in the call pattern until after reload. Then,
7092 we split the moves out. A small side benefit is that we now don't
7093 need to have a use of the PIC register in the return pattern and
7094 the final save/restore operation is not needed.
7095
7096 I elected to just use register %r4 in the PIC patterns instead
7097 of trying to force hppa_pic_save_rtx () to a callee saved register.
7098 This might have required a new register class and constraint. It
7099 was also simpler to just handle the restore from a register than a
7100 generic pseudo. */
7101 if (TARGET_64BIT)
7102 {
7103 rtx r4 = gen_rtx_REG (word_mode, 4);
7104 if (GET_CODE (op) == SYMBOL_REF)
7105 emit_call_insn (gen_call_symref_64bit (op, nb, r4));
7106 else
7107 {
7108 op = force_reg (word_mode, op);
7109 emit_call_insn (gen_call_reg_64bit (op, nb, r4));
7110 }
7111 }
7112 else
7113 {
7114 if (GET_CODE (op) == SYMBOL_REF)
7115 {
7116 if (flag_pic)
7117 {
7118 rtx r4 = gen_rtx_REG (word_mode, 4);
7119 emit_call_insn (gen_call_symref_pic (op, nb, r4));
7120 }
7121 else
7122 emit_call_insn (gen_call_symref (op, nb));
7123 }
7124 else
7125 {
7126 rtx tmpreg = gen_rtx_REG (word_mode, 22);
7127 emit_move_insn (tmpreg, force_reg (word_mode, op));
7128 if (flag_pic)
7129 {
7130 rtx r4 = gen_rtx_REG (word_mode, 4);
7131 emit_call_insn (gen_call_reg_pic (nb, r4));
7132 }
7133 else
7134 emit_call_insn (gen_call_reg (nb));
7135 }
7136 }
7137
7138 DONE;
7139 }")
7140
7141 ;; We use function calls to set the attribute length of calls and millicode
7142 ;; calls. This is necessary because of the large variety of call sequences.
7143 ;; Implementing the calculation in rtl is difficult as well as ugly. As
7144 ;; we need the same calculation in several places, maintenance becomes a
7145 ;; nightmare.
7146 ;;
7147 ;; However, this has a subtle impact on branch shortening. When the
7148 ;; expression used to set the length attribute of an instruction depends
7149 ;; on a relative address (e.g., pc or a branch address), genattrtab
7150 ;; notes that the insn's length is variable, and attempts to determine a
7151 ;; worst-case default length and code to compute an insn's current length.
7152
7153 ;; The use of a function call hides the variable dependence of our calls
7154 ;; and millicode calls. The result is genattrtab doesn't treat the operation
7155 ;; as variable and it only generates code for the default case using our
7156 ;; function call. Because of this, calls and millicode calls have a fixed
7157 ;; length in the branch shortening pass, and some branches will use a longer
7158 ;; code sequence than necessary. However, the length of any given call
7159 ;; will still reflect its final code location and it may be shorter than
7160 ;; the initial length estimate.
7161
7162 ;; It's possible to trick genattrtab by adding an expression involving `pc'
7163 ;; in the set. However, when genattrtab hits a function call in its attempt
7164 ;; to compute the default length, it marks the result as unknown and sets
7165 ;; the default result to MAX_INT ;-( One possible fix that would allow
7166 ;; calls to participate in branch shortening would be to make the call to
7167 ;; insn_default_length a target option. Then, we could massage unknown
7168 ;; results. Another fix might be to change genattrtab so that it just does
7169 ;; the call in the variable case as it already does for the fixed case.
7170
7171 (define_insn "call_symref"
7172 [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7173 (match_operand 1 "" "i"))
7174 (clobber (reg:SI 1))
7175 (clobber (reg:SI 2))
7176 (use (const_int 0))]
7177 "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7178 "*
7179 {
7180 output_arg_descriptor (insn);
7181 return output_call (insn, operands[0], 0);
7182 }"
7183 [(set_attr "type" "call")
7184 (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
7185
7186 (define_insn "call_symref_pic"
7187 [(set (match_operand:SI 2 "register_operand" "=&r") (reg:SI 19))
7188 (call (mem:SI (match_operand 0 "call_operand_address" ""))
7189 (match_operand 1 "" "i"))
7190 (clobber (reg:SI 1))
7191 (clobber (reg:SI 2))
7192 (use (match_dup 2))
7193 (use (reg:SI 19))
7194 (use (const_int 0))]
7195 "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7196 "#")
7197
7198 ;; Split out the PIC register save and restore after reload. As the
7199 ;; split is done after reload, there are some situations in which we
7200 ;; unnecessarily save and restore %r4. This happens when there is a
7201 ;; single call and the PIC register is not used after the call.
7202 ;;
7203 ;; The split has to be done since call_from_call_insn () can't handle
7204 ;; the pattern as is. Noreturn calls are special because they have to
7205 ;; terminate the basic block. The split has to contain more than one
7206 ;; insn.
7207 (define_split
7208 [(parallel [(set (match_operand:SI 2 "register_operand" "") (reg:SI 19))
7209 (call (mem:SI (match_operand 0 "call_operand_address" ""))
7210 (match_operand 1 "" ""))
7211 (clobber (reg:SI 1))
7212 (clobber (reg:SI 2))
7213 (use (match_dup 2))
7214 (use (reg:SI 19))
7215 (use (const_int 0))])]
7216 "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT && reload_completed
7217 && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7218 [(set (match_dup 2) (reg:SI 19))
7219 (parallel [(call (mem:SI (match_dup 0))
7220 (match_dup 1))
7221 (clobber (reg:SI 1))
7222 (clobber (reg:SI 2))
7223 (use (reg:SI 19))
7224 (use (const_int 0))])]
7225 "")
7226
7227 (define_split
7228 [(parallel [(set (match_operand:SI 2 "register_operand" "") (reg:SI 19))
7229 (call (mem:SI (match_operand 0 "call_operand_address" ""))
7230 (match_operand 1 "" ""))
7231 (clobber (reg:SI 1))
7232 (clobber (reg:SI 2))
7233 (use (match_dup 2))
7234 (use (reg:SI 19))
7235 (use (const_int 0))])]
7236 "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT && reload_completed"
7237 [(set (match_dup 2) (reg:SI 19))
7238 (parallel [(call (mem:SI (match_dup 0))
7239 (match_dup 1))
7240 (clobber (reg:SI 1))
7241 (clobber (reg:SI 2))
7242 (use (reg:SI 19))
7243 (use (const_int 0))])
7244 (set (reg:SI 19) (match_dup 2))]
7245 "")
7246
7247 (define_insn "*call_symref_pic_post_reload"
7248 [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7249 (match_operand 1 "" "i"))
7250 (clobber (reg:SI 1))
7251 (clobber (reg:SI 2))
7252 (use (reg:SI 19))
7253 (use (const_int 0))]
7254 "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7255 "*
7256 {
7257 output_arg_descriptor (insn);
7258 return output_call (insn, operands[0], 0);
7259 }"
7260 [(set_attr "type" "call")
7261 (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
7262
7263 ;; This pattern is split if it is necessary to save and restore the
7264 ;; PIC register.
7265 (define_insn "call_symref_64bit"
7266 [(set (match_operand:DI 2 "register_operand" "=&r") (reg:DI 27))
7267 (call (mem:SI (match_operand 0 "call_operand_address" ""))
7268 (match_operand 1 "" "i"))
7269 (clobber (reg:DI 1))
7270 (clobber (reg:DI 2))
7271 (use (match_dup 2))
7272 (use (reg:DI 27))
7273 (use (reg:DI 29))
7274 (use (const_int 0))]
7275 "TARGET_64BIT"
7276 "#")
7277
7278 ;; Split out the PIC register save and restore after reload. As the
7279 ;; split is done after reload, there are some situations in which we
7280 ;; unnecessarily save and restore %r4. This happens when there is a
7281 ;; single call and the PIC register is not used after the call.
7282 ;;
7283 ;; The split has to be done since call_from_call_insn () can't handle
7284 ;; the pattern as is. Noreturn calls are special because they have to
7285 ;; terminate the basic block. The split has to contain more than one
7286 ;; insn.
7287 (define_split
7288 [(parallel [(set (match_operand:DI 2 "register_operand" "") (reg:DI 27))
7289 (call (mem:SI (match_operand 0 "call_operand_address" ""))
7290 (match_operand 1 "" ""))
7291 (clobber (reg:DI 1))
7292 (clobber (reg:DI 2))
7293 (use (match_dup 2))
7294 (use (reg:DI 27))
7295 (use (reg:DI 29))
7296 (use (const_int 0))])]
7297 "TARGET_64BIT && reload_completed
7298 && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7299 [(set (match_dup 2) (reg:DI 27))
7300 (parallel [(call (mem:SI (match_dup 0))
7301 (match_dup 1))
7302 (clobber (reg:DI 1))
7303 (clobber (reg:DI 2))
7304 (use (reg:DI 27))
7305 (use (reg:DI 29))
7306 (use (const_int 0))])]
7307 "")
7308
7309 (define_split
7310 [(parallel [(set (match_operand:DI 2 "register_operand" "") (reg:DI 27))
7311 (call (mem:SI (match_operand 0 "call_operand_address" ""))
7312 (match_operand 1 "" ""))
7313 (clobber (reg:DI 1))
7314 (clobber (reg:DI 2))
7315 (use (match_dup 2))
7316 (use (reg:DI 27))
7317 (use (reg:DI 29))
7318 (use (const_int 0))])]
7319 "TARGET_64BIT && reload_completed"
7320 [(set (match_dup 2) (reg:DI 27))
7321 (parallel [(call (mem:SI (match_dup 0))
7322 (match_dup 1))
7323 (clobber (reg:DI 1))
7324 (clobber (reg:DI 2))
7325 (use (reg:DI 27))
7326 (use (reg:DI 29))
7327 (use (const_int 0))])
7328 (set (reg:DI 27) (match_dup 2))]
7329 "")
7330
7331 (define_insn "*call_symref_64bit_post_reload"
7332 [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7333 (match_operand 1 "" "i"))
7334 (clobber (reg:DI 1))
7335 (clobber (reg:DI 2))
7336 (use (reg:DI 27))
7337 (use (reg:DI 29))
7338 (use (const_int 0))]
7339 "TARGET_64BIT"
7340 "*
7341 {
7342 output_arg_descriptor (insn);
7343 return output_call (insn, operands[0], 0);
7344 }"
7345 [(set_attr "type" "call")
7346 (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
7347
7348 (define_insn "call_reg"
7349 [(call (mem:SI (reg:SI 22))
7350 (match_operand 0 "" "i"))
7351 (clobber (reg:SI 1))
7352 (clobber (reg:SI 2))
7353 (use (const_int 1))]
7354 "!TARGET_64BIT"
7355 "*
7356 {
7357 return output_indirect_call (insn, gen_rtx_REG (word_mode, 22));
7358 }"
7359 [(set_attr "type" "dyncall")
7360 (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
7361
7362 ;; This pattern is split if it is necessary to save and restore the
7363 ;; PIC register.
7364 (define_insn "call_reg_pic"
7365 [(set (match_operand:SI 1 "register_operand" "=&r") (reg:SI 19))
7366 (call (mem:SI (reg:SI 22))
7367 (match_operand 0 "" "i"))
7368 (clobber (reg:SI 1))
7369 (clobber (reg:SI 2))
7370 (use (match_dup 1))
7371 (use (reg:SI 19))
7372 (use (const_int 1))]
7373 "!TARGET_64BIT"
7374 "#")
7375
7376 ;; Split out the PIC register save and restore after reload. As the
7377 ;; split is done after reload, there are some situations in which we
7378 ;; unnecessarily save and restore %r4. This happens when there is a
7379 ;; single call and the PIC register is not used after the call.
7380 ;;
7381 ;; The split has to be done since call_from_call_insn () can't handle
7382 ;; the pattern as is. Noreturn calls are special because they have to
7383 ;; terminate the basic block. The split has to contain more than one
7384 ;; insn.
7385 (define_split
7386 [(parallel [(set (match_operand:SI 1 "register_operand" "") (reg:SI 19))
7387 (call (mem:SI (reg:SI 22))
7388 (match_operand 0 "" ""))
7389 (clobber (reg:SI 1))
7390 (clobber (reg:SI 2))
7391 (use (match_dup 1))
7392 (use (reg:SI 19))
7393 (use (const_int 1))])]
7394 "!TARGET_64BIT && reload_completed
7395 && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7396 [(set (match_dup 1) (reg:SI 19))
7397 (parallel [(call (mem:SI (reg:SI 22))
7398 (match_dup 0))
7399 (clobber (reg:SI 1))
7400 (clobber (reg:SI 2))
7401 (use (reg:SI 19))
7402 (use (const_int 1))])]
7403 "")
7404
7405 (define_split
7406 [(parallel [(set (match_operand:SI 1 "register_operand" "") (reg:SI 19))
7407 (call (mem:SI (reg:SI 22))
7408 (match_operand 0 "" ""))
7409 (clobber (reg:SI 1))
7410 (clobber (reg:SI 2))
7411 (use (match_dup 1))
7412 (use (reg:SI 19))
7413 (use (const_int 1))])]
7414 "!TARGET_64BIT && reload_completed"
7415 [(set (match_dup 1) (reg:SI 19))
7416 (parallel [(call (mem:SI (reg:SI 22))
7417 (match_dup 0))
7418 (clobber (reg:SI 1))
7419 (clobber (reg:SI 2))
7420 (use (reg:SI 19))
7421 (use (const_int 1))])
7422 (set (reg:SI 19) (match_dup 1))]
7423 "")
7424
7425 (define_insn "*call_reg_pic_post_reload"
7426 [(call (mem:SI (reg:SI 22))
7427 (match_operand 0 "" "i"))
7428 (clobber (reg:SI 1))
7429 (clobber (reg:SI 2))
7430 (use (reg:SI 19))
7431 (use (const_int 1))]
7432 "!TARGET_64BIT"
7433 "*
7434 {
7435 return output_indirect_call (insn, gen_rtx_REG (word_mode, 22));
7436 }"
7437 [(set_attr "type" "dyncall")
7438 (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
7439
7440 ;; This pattern is split if it is necessary to save and restore the
7441 ;; PIC register.
7442 (define_insn "call_reg_64bit"
7443 [(set (match_operand:DI 2 "register_operand" "=&r") (reg:DI 27))
7444 (call (mem:SI (match_operand:DI 0 "register_operand" "r"))
7445 (match_operand 1 "" "i"))
7446 (clobber (reg:DI 1))
7447 (clobber (reg:DI 2))
7448 (use (match_dup 2))
7449 (use (reg:DI 27))
7450 (use (reg:DI 29))
7451 (use (const_int 1))]
7452 "TARGET_64BIT"
7453 "#")
7454
7455 ;; Split out the PIC register save and restore after reload. As the
7456 ;; split is done after reload, there are some situations in which we
7457 ;; unnecessarily save and restore %r4. This happens when there is a
7458 ;; single call and the PIC register is not used after the call.
7459 ;;
7460 ;; The split has to be done since call_from_call_insn () can't handle
7461 ;; the pattern as is. Noreturn calls are special because they have to
7462 ;; terminate the basic block. The split has to contain more than one
7463 ;; insn.
7464 (define_split
7465 [(parallel [(set (match_operand:DI 2 "register_operand" "") (reg:DI 27))
7466 (call (mem:SI (match_operand 0 "register_operand" ""))
7467 (match_operand 1 "" ""))
7468 (clobber (reg:DI 1))
7469 (clobber (reg:DI 2))
7470 (use (match_dup 2))
7471 (use (reg:DI 27))
7472 (use (reg:DI 29))
7473 (use (const_int 1))])]
7474 "TARGET_64BIT && reload_completed
7475 && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7476 [(set (match_dup 2) (reg:DI 27))
7477 (parallel [(call (mem:SI (match_dup 0))
7478 (match_dup 1))
7479 (clobber (reg:DI 1))
7480 (clobber (reg:DI 2))
7481 (use (reg:DI 27))
7482 (use (reg:DI 29))
7483 (use (const_int 1))])]
7484 "")
7485
7486 (define_split
7487 [(parallel [(set (match_operand:DI 2 "register_operand" "") (reg:DI 27))
7488 (call (mem:SI (match_operand 0 "register_operand" ""))
7489 (match_operand 1 "" ""))
7490 (clobber (reg:DI 1))
7491 (clobber (reg:DI 2))
7492 (use (match_dup 2))
7493 (use (reg:DI 27))
7494 (use (reg:DI 29))
7495 (use (const_int 1))])]
7496 "TARGET_64BIT && reload_completed"
7497 [(set (match_dup 2) (reg:DI 27))
7498 (parallel [(call (mem:SI (match_dup 0))
7499 (match_dup 1))
7500 (clobber (reg:DI 1))
7501 (clobber (reg:DI 2))
7502 (use (reg:DI 27))
7503 (use (reg:DI 29))
7504 (use (const_int 1))])
7505 (set (reg:DI 27) (match_dup 2))]
7506 "")
7507
7508 (define_insn "*call_reg_64bit_post_reload"
7509 [(call (mem:SI (match_operand:DI 0 "register_operand" "r"))
7510 (match_operand 1 "" "i"))
7511 (clobber (reg:DI 1))
7512 (clobber (reg:DI 2))
7513 (use (reg:DI 27))
7514 (use (reg:DI 29))
7515 (use (const_int 1))]
7516 "TARGET_64BIT"
7517 "*
7518 {
7519 return output_indirect_call (insn, operands[0]);
7520 }"
7521 [(set_attr "type" "dyncall")
7522 (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
7523
7524 (define_expand "call_value"
7525 [(parallel [(set (match_operand 0 "" "")
7526 (call (match_operand:SI 1 "" "")
7527 (match_operand 2 "" "")))
7528 (clobber (reg:SI 2))])]
7529 ""
7530 "
7531 {
7532 rtx op;
7533 rtx dst = operands[0];
7534 rtx nb = operands[2];
7535
7536 if (TARGET_PORTABLE_RUNTIME)
7537 op = force_reg (SImode, XEXP (operands[1], 0));
7538 else
7539 op = XEXP (operands[1], 0);
7540
7541 if (TARGET_64BIT)
7542 {
7543 if (!virtuals_instantiated)
7544 emit_move_insn (arg_pointer_rtx,
7545 gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
7546 GEN_INT (64)));
7547 else
7548 {
7549 /* The loop pass can generate new libcalls after the virtual
7550 registers are instantiated when fpregs are disabled because
7551 the only method that we have for doing DImode multiplication
7552 is with a libcall. This could be trouble if we haven't
7553 allocated enough space for the outgoing arguments. */
7554 gcc_assert (INTVAL (nb) <= crtl->outgoing_args_size);
7555
7556 emit_move_insn (arg_pointer_rtx,
7557 gen_rtx_PLUS (word_mode, stack_pointer_rtx,
7558 GEN_INT (STACK_POINTER_OFFSET + 64)));
7559 }
7560 }
7561
7562 /* Use two different patterns for calls to explicitly named functions
7563 and calls through function pointers. This is necessary as these two
7564 types of calls use different calling conventions, and CSE might try
7565 to change the named call into an indirect call in some cases (using
7566 two patterns keeps CSE from performing this optimization).
7567
7568 We now use even more call patterns as there was a subtle bug in
7569 attempting to restore the pic register after a call using a simple
7570 move insn. During reload, a instruction involving a pseudo register
7571 with no explicit dependence on the PIC register can be converted
7572 to an equivalent load from memory using the PIC register. If we
7573 emit a simple move to restore the PIC register in the initial rtl
7574 generation, then it can potentially be repositioned during scheduling.
7575 and an instruction that eventually uses the PIC register may end up
7576 between the call and the PIC register restore.
7577
7578 This only worked because there is a post call group of instructions
7579 that are scheduled with the call. These instructions are included
7580 in the same basic block as the call. However, calls can throw in
7581 C++ code and a basic block has to terminate at the call if the call
7582 can throw. This results in the PIC register restore being scheduled
7583 independently from the call. So, we now hide the save and restore
7584 of the PIC register in the call pattern until after reload. Then,
7585 we split the moves out. A small side benefit is that we now don't
7586 need to have a use of the PIC register in the return pattern and
7587 the final save/restore operation is not needed.
7588
7589 I elected to just use register %r4 in the PIC patterns instead
7590 of trying to force hppa_pic_save_rtx () to a callee saved register.
7591 This might have required a new register class and constraint. It
7592 was also simpler to just handle the restore from a register than a
7593 generic pseudo. */
7594 if (TARGET_64BIT)
7595 {
7596 rtx r4 = gen_rtx_REG (word_mode, 4);
7597 if (GET_CODE (op) == SYMBOL_REF)
7598 emit_call_insn (gen_call_val_symref_64bit (dst, op, nb, r4));
7599 else
7600 {
7601 op = force_reg (word_mode, op);
7602 emit_call_insn (gen_call_val_reg_64bit (dst, op, nb, r4));
7603 }
7604 }
7605 else
7606 {
7607 if (GET_CODE (op) == SYMBOL_REF)
7608 {
7609 if (flag_pic)
7610 {
7611 rtx r4 = gen_rtx_REG (word_mode, 4);
7612 emit_call_insn (gen_call_val_symref_pic (dst, op, nb, r4));
7613 }
7614 else
7615 emit_call_insn (gen_call_val_symref (dst, op, nb));
7616 }
7617 else
7618 {
7619 rtx tmpreg = gen_rtx_REG (word_mode, 22);
7620 emit_move_insn (tmpreg, force_reg (word_mode, op));
7621 if (flag_pic)
7622 {
7623 rtx r4 = gen_rtx_REG (word_mode, 4);
7624 emit_call_insn (gen_call_val_reg_pic (dst, nb, r4));
7625 }
7626 else
7627 emit_call_insn (gen_call_val_reg (dst, nb));
7628 }
7629 }
7630
7631 DONE;
7632 }")
7633
7634 (define_insn "call_val_symref"
7635 [(set (match_operand 0 "" "")
7636 (call (mem:SI (match_operand 1 "call_operand_address" ""))
7637 (match_operand 2 "" "i")))
7638 (clobber (reg:SI 1))
7639 (clobber (reg:SI 2))
7640 (use (const_int 0))]
7641 "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7642 "*
7643 {
7644 output_arg_descriptor (insn);
7645 return output_call (insn, operands[1], 0);
7646 }"
7647 [(set_attr "type" "call")
7648 (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
7649
7650 (define_insn "call_val_symref_pic"
7651 [(set (match_operand:SI 3 "register_operand" "=&r") (reg:SI 19))
7652 (set (match_operand 0 "" "")
7653 (call (mem:SI (match_operand 1 "call_operand_address" ""))
7654 (match_operand 2 "" "i")))
7655 (clobber (reg:SI 1))
7656 (clobber (reg:SI 2))
7657 (use (match_dup 3))
7658 (use (reg:SI 19))
7659 (use (const_int 0))]
7660 "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7661 "#")
7662
7663 ;; Split out the PIC register save and restore after reload. As the
7664 ;; split is done after reload, there are some situations in which we
7665 ;; unnecessarily save and restore %r4. This happens when there is a
7666 ;; single call and the PIC register is not used after the call.
7667 ;;
7668 ;; The split has to be done since call_from_call_insn () can't handle
7669 ;; the pattern as is. Noreturn calls are special because they have to
7670 ;; terminate the basic block. The split has to contain more than one
7671 ;; insn.
7672 (define_split
7673 [(parallel [(set (match_operand:SI 3 "register_operand" "") (reg:SI 19))
7674 (set (match_operand 0 "" "")
7675 (call (mem:SI (match_operand 1 "call_operand_address" ""))
7676 (match_operand 2 "" "")))
7677 (clobber (reg:SI 1))
7678 (clobber (reg:SI 2))
7679 (use (match_dup 3))
7680 (use (reg:SI 19))
7681 (use (const_int 0))])]
7682 "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT && reload_completed
7683 && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7684 [(set (match_dup 3) (reg:SI 19))
7685 (parallel [(set (match_dup 0)
7686 (call (mem:SI (match_dup 1))
7687 (match_dup 2)))
7688 (clobber (reg:SI 1))
7689 (clobber (reg:SI 2))
7690 (use (reg:SI 19))
7691 (use (const_int 0))])]
7692 "")
7693
7694 (define_split
7695 [(parallel [(set (match_operand:SI 3 "register_operand" "") (reg:SI 19))
7696 (set (match_operand 0 "" "")
7697 (call (mem:SI (match_operand 1 "call_operand_address" ""))
7698 (match_operand 2 "" "")))
7699 (clobber (reg:SI 1))
7700 (clobber (reg:SI 2))
7701 (use (match_dup 3))
7702 (use (reg:SI 19))
7703 (use (const_int 0))])]
7704 "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT && reload_completed"
7705 [(set (match_dup 3) (reg:SI 19))
7706 (parallel [(set (match_dup 0)
7707 (call (mem:SI (match_dup 1))
7708 (match_dup 2)))
7709 (clobber (reg:SI 1))
7710 (clobber (reg:SI 2))
7711 (use (reg:SI 19))
7712 (use (const_int 0))])
7713 (set (reg:SI 19) (match_dup 3))]
7714 "")
7715
7716 (define_insn "*call_val_symref_pic_post_reload"
7717 [(set (match_operand 0 "" "")
7718 (call (mem:SI (match_operand 1 "call_operand_address" ""))
7719 (match_operand 2 "" "i")))
7720 (clobber (reg:SI 1))
7721 (clobber (reg:SI 2))
7722 (use (reg:SI 19))
7723 (use (const_int 0))]
7724 "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7725 "*
7726 {
7727 output_arg_descriptor (insn);
7728 return output_call (insn, operands[1], 0);
7729 }"
7730 [(set_attr "type" "call")
7731 (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
7732
7733 ;; This pattern is split if it is necessary to save and restore the
7734 ;; PIC register.
7735 (define_insn "call_val_symref_64bit"
7736 [(set (match_operand:DI 3 "register_operand" "=&r") (reg:DI 27))
7737 (set (match_operand 0 "" "")
7738 (call (mem:SI (match_operand 1 "call_operand_address" ""))
7739 (match_operand 2 "" "i")))
7740 (clobber (reg:DI 1))
7741 (clobber (reg:DI 2))
7742 (use (match_dup 3))
7743 (use (reg:DI 27))
7744 (use (reg:DI 29))
7745 (use (const_int 0))]
7746 "TARGET_64BIT"
7747 "#")
7748
7749 ;; Split out the PIC register save and restore after reload. As the
7750 ;; split is done after reload, there are some situations in which we
7751 ;; unnecessarily save and restore %r4. This happens when there is a
7752 ;; single call and the PIC register is not used after the call.
7753 ;;
7754 ;; The split has to be done since call_from_call_insn () can't handle
7755 ;; the pattern as is. Noreturn calls are special because they have to
7756 ;; terminate the basic block. The split has to contain more than one
7757 ;; insn.
7758 (define_split
7759 [(parallel [(set (match_operand:DI 3 "register_operand" "") (reg:DI 27))
7760 (set (match_operand 0 "" "")
7761 (call (mem:SI (match_operand 1 "call_operand_address" ""))
7762 (match_operand 2 "" "")))
7763 (clobber (reg:DI 1))
7764 (clobber (reg:DI 2))
7765 (use (match_dup 3))
7766 (use (reg:DI 27))
7767 (use (reg:DI 29))
7768 (use (const_int 0))])]
7769 "TARGET_64BIT && reload_completed
7770 && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7771 [(set (match_dup 3) (reg:DI 27))
7772 (parallel [(set (match_dup 0)
7773 (call (mem:SI (match_dup 1))
7774 (match_dup 2)))
7775 (clobber (reg:DI 1))
7776 (clobber (reg:DI 2))
7777 (use (reg:DI 27))
7778 (use (reg:DI 29))
7779 (use (const_int 0))])]
7780 "")
7781
7782 (define_split
7783 [(parallel [(set (match_operand:DI 3 "register_operand" "") (reg:DI 27))
7784 (set (match_operand 0 "" "")
7785 (call (mem:SI (match_operand 1 "call_operand_address" ""))
7786 (match_operand 2 "" "")))
7787 (clobber (reg:DI 1))
7788 (clobber (reg:DI 2))
7789 (use (match_dup 3))
7790 (use (reg:DI 27))
7791 (use (reg:DI 29))
7792 (use (const_int 0))])]
7793 "TARGET_64BIT && reload_completed"
7794 [(set (match_dup 3) (reg:DI 27))
7795 (parallel [(set (match_dup 0)
7796 (call (mem:SI (match_dup 1))
7797 (match_dup 2)))
7798 (clobber (reg:DI 1))
7799 (clobber (reg:DI 2))
7800 (use (reg:DI 27))
7801 (use (reg:DI 29))
7802 (use (const_int 0))])
7803 (set (reg:DI 27) (match_dup 3))]
7804 "")
7805
7806 (define_insn "*call_val_symref_64bit_post_reload"
7807 [(set (match_operand 0 "" "")
7808 (call (mem:SI (match_operand 1 "call_operand_address" ""))
7809 (match_operand 2 "" "i")))
7810 (clobber (reg:DI 1))
7811 (clobber (reg:DI 2))
7812 (use (reg:DI 27))
7813 (use (reg:DI 29))
7814 (use (const_int 0))]
7815 "TARGET_64BIT"
7816 "*
7817 {
7818 output_arg_descriptor (insn);
7819 return output_call (insn, operands[1], 0);
7820 }"
7821 [(set_attr "type" "call")
7822 (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
7823
7824 (define_insn "call_val_reg"
7825 [(set (match_operand 0 "" "")
7826 (call (mem:SI (reg:SI 22))
7827 (match_operand 1 "" "i")))
7828 (clobber (reg:SI 1))
7829 (clobber (reg:SI 2))
7830 (use (const_int 1))]
7831 "!TARGET_64BIT"
7832 "*
7833 {
7834 return output_indirect_call (insn, gen_rtx_REG (word_mode, 22));
7835 }"
7836 [(set_attr "type" "dyncall")
7837 (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
7838
7839 ;; This pattern is split if it is necessary to save and restore the
7840 ;; PIC register.
7841 (define_insn "call_val_reg_pic"
7842 [(set (match_operand:SI 2 "register_operand" "=&r") (reg:SI 19))
7843 (set (match_operand 0 "" "")
7844 (call (mem:SI (reg:SI 22))
7845 (match_operand 1 "" "i")))
7846 (clobber (reg:SI 1))
7847 (clobber (reg:SI 2))
7848 (use (match_dup 2))
7849 (use (reg:SI 19))
7850 (use (const_int 1))]
7851 "!TARGET_64BIT"
7852 "#")
7853
7854 ;; Split out the PIC register save and restore after reload. As the
7855 ;; split is done after reload, there are some situations in which we
7856 ;; unnecessarily save and restore %r4. This happens when there is a
7857 ;; single call and the PIC register is not used after the call.
7858 ;;
7859 ;; The split has to be done since call_from_call_insn () can't handle
7860 ;; the pattern as is. Noreturn calls are special because they have to
7861 ;; terminate the basic block. The split has to contain more than one
7862 ;; insn.
7863 (define_split
7864 [(parallel [(set (match_operand:SI 2 "register_operand" "") (reg:SI 19))
7865 (set (match_operand 0 "" "")
7866 (call (mem:SI (reg:SI 22))
7867 (match_operand 1 "" "")))
7868 (clobber (reg:SI 1))
7869 (clobber (reg:SI 2))
7870 (use (match_dup 2))
7871 (use (reg:SI 19))
7872 (use (const_int 1))])]
7873 "!TARGET_64BIT && reload_completed
7874 && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7875 [(set (match_dup 2) (reg:SI 19))
7876 (parallel [(set (match_dup 0)
7877 (call (mem:SI (reg:SI 22))
7878 (match_dup 1)))
7879 (clobber (reg:SI 1))
7880 (clobber (reg:SI 2))
7881 (use (reg:SI 19))
7882 (use (const_int 1))])]
7883 "")
7884
7885 (define_split
7886 [(parallel [(set (match_operand:SI 2 "register_operand" "") (reg:SI 19))
7887 (set (match_operand 0 "" "")
7888 (call (mem:SI (reg:SI 22))
7889 (match_operand 1 "" "")))
7890 (clobber (reg:SI 1))
7891 (clobber (reg:SI 2))
7892 (use (match_dup 2))
7893 (use (reg:SI 19))
7894 (use (const_int 1))])]
7895 "!TARGET_64BIT && reload_completed"
7896 [(set (match_dup 2) (reg:SI 19))
7897 (parallel [(set (match_dup 0)
7898 (call (mem:SI (reg:SI 22))
7899 (match_dup 1)))
7900 (clobber (reg:SI 1))
7901 (clobber (reg:SI 2))
7902 (use (reg:SI 19))
7903 (use (const_int 1))])
7904 (set (reg:SI 19) (match_dup 2))]
7905 "")
7906
7907 (define_insn "*call_val_reg_pic_post_reload"
7908 [(set (match_operand 0 "" "")
7909 (call (mem:SI (reg:SI 22))
7910 (match_operand 1 "" "i")))
7911 (clobber (reg:SI 1))
7912 (clobber (reg:SI 2))
7913 (use (reg:SI 19))
7914 (use (const_int 1))]
7915 "!TARGET_64BIT"
7916 "*
7917 {
7918 return output_indirect_call (insn, gen_rtx_REG (word_mode, 22));
7919 }"
7920 [(set_attr "type" "dyncall")
7921 (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
7922
7923 ;; This pattern is split if it is necessary to save and restore the
7924 ;; PIC register.
7925 (define_insn "call_val_reg_64bit"
7926 [(set (match_operand:DI 3 "register_operand" "=&r") (reg:DI 27))
7927 (set (match_operand 0 "" "")
7928 (call (mem:SI (match_operand:DI 1 "register_operand" "r"))
7929 (match_operand 2 "" "i")))
7930 (clobber (reg:DI 1))
7931 (clobber (reg:DI 2))
7932 (use (match_dup 3))
7933 (use (reg:DI 27))
7934 (use (reg:DI 29))
7935 (use (const_int 1))]
7936 "TARGET_64BIT"
7937 "#")
7938
7939 ;; Split out the PIC register save and restore after reload. As the
7940 ;; split is done after reload, there are some situations in which we
7941 ;; unnecessarily save and restore %r4. This happens when there is a
7942 ;; single call and the PIC register is not used after the call.
7943 ;;
7944 ;; The split has to be done since call_from_call_insn () can't handle
7945 ;; the pattern as is. Noreturn calls are special because they have to
7946 ;; terminate the basic block. The split has to contain more than one
7947 ;; insn.
7948 (define_split
7949 [(parallel [(set (match_operand:DI 3 "register_operand" "") (reg:DI 27))
7950 (set (match_operand 0 "" "")
7951 (call (mem:SI (match_operand:DI 1 "register_operand" ""))
7952 (match_operand 2 "" "")))
7953 (clobber (reg:DI 1))
7954 (clobber (reg:DI 2))
7955 (use (match_dup 3))
7956 (use (reg:DI 27))
7957 (use (reg:DI 29))
7958 (use (const_int 1))])]
7959 "TARGET_64BIT && reload_completed
7960 && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7961 [(set (match_dup 3) (reg:DI 27))
7962 (parallel [(set (match_dup 0)
7963 (call (mem:SI (match_dup 1))
7964 (match_dup 2)))
7965 (clobber (reg:DI 1))
7966 (clobber (reg:DI 2))
7967 (use (reg:DI 27))
7968 (use (reg:DI 29))
7969 (use (const_int 1))])]
7970 "")
7971
7972 (define_split
7973 [(parallel [(set (match_operand:DI 3 "register_operand" "") (reg:DI 27))
7974 (set (match_operand 0 "" "")
7975 (call (mem:SI (match_operand:DI 1 "register_operand" ""))
7976 (match_operand 2 "" "")))
7977 (clobber (reg:DI 1))
7978 (clobber (reg:DI 2))
7979 (use (match_dup 3))
7980 (use (reg:DI 27))
7981 (use (reg:DI 29))
7982 (use (const_int 1))])]
7983 "TARGET_64BIT && reload_completed"
7984 [(set (match_dup 3) (reg:DI 27))
7985 (parallel [(set (match_dup 0)
7986 (call (mem:SI (match_dup 1))
7987 (match_dup 2)))
7988 (clobber (reg:DI 1))
7989 (clobber (reg:DI 2))
7990 (use (reg:DI 27))
7991 (use (reg:DI 29))
7992 (use (const_int 1))])
7993 (set (reg:DI 27) (match_dup 3))]
7994 "")
7995
7996 (define_insn "*call_val_reg_64bit_post_reload"
7997 [(set (match_operand 0 "" "")
7998 (call (mem:SI (match_operand:DI 1 "register_operand" "r"))
7999 (match_operand 2 "" "i")))
8000 (clobber (reg:DI 1))
8001 (clobber (reg:DI 2))
8002 (use (reg:DI 27))
8003 (use (reg:DI 29))
8004 (use (const_int 1))]
8005 "TARGET_64BIT"
8006 "*
8007 {
8008 return output_indirect_call (insn, operands[1]);
8009 }"
8010 [(set_attr "type" "dyncall")
8011 (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
8012
8013 ;; Call subroutine returning any type.
8014
8015 (define_expand "untyped_call"
8016 [(parallel [(call (match_operand 0 "" "")
8017 (const_int 0))
8018 (match_operand 1 "" "")
8019 (match_operand 2 "" "")])]
8020 ""
8021 "
8022 {
8023 int i;
8024
8025 emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, const0_rtx));
8026
8027 for (i = 0; i < XVECLEN (operands[2], 0); i++)
8028 {
8029 rtx set = XVECEXP (operands[2], 0, i);
8030 emit_move_insn (SET_DEST (set), SET_SRC (set));
8031 }
8032
8033 /* The optimizer does not know that the call sets the function value
8034 registers we stored in the result block. We avoid problems by
8035 claiming that all hard registers are used and clobbered at this
8036 point. */
8037 emit_insn (gen_blockage ());
8038
8039 DONE;
8040 }")
8041
8042 (define_expand "sibcall"
8043 [(call (match_operand:SI 0 "" "")
8044 (match_operand 1 "" ""))]
8045 "!TARGET_PORTABLE_RUNTIME"
8046 "
8047 {
8048 rtx op, call_insn;
8049 rtx nb = operands[1];
8050
8051 op = XEXP (operands[0], 0);
8052
8053 if (TARGET_64BIT)
8054 {
8055 if (!virtuals_instantiated)
8056 emit_move_insn (arg_pointer_rtx,
8057 gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
8058 GEN_INT (64)));
8059 else
8060 {
8061 /* The loop pass can generate new libcalls after the virtual
8062 registers are instantiated when fpregs are disabled because
8063 the only method that we have for doing DImode multiplication
8064 is with a libcall. This could be trouble if we haven't
8065 allocated enough space for the outgoing arguments. */
8066 gcc_assert (INTVAL (nb) <= crtl->outgoing_args_size);
8067
8068 emit_move_insn (arg_pointer_rtx,
8069 gen_rtx_PLUS (word_mode, stack_pointer_rtx,
8070 GEN_INT (STACK_POINTER_OFFSET + 64)));
8071 }
8072 }
8073
8074 /* Indirect sibling calls are not allowed. */
8075 if (TARGET_64BIT)
8076 call_insn = gen_sibcall_internal_symref_64bit (op, operands[1]);
8077 else
8078 call_insn = gen_sibcall_internal_symref (op, operands[1]);
8079
8080 call_insn = emit_call_insn (call_insn);
8081
8082 if (TARGET_64BIT)
8083 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), arg_pointer_rtx);
8084
8085 /* We don't have to restore the PIC register. */
8086 if (flag_pic)
8087 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), pic_offset_table_rtx);
8088
8089 DONE;
8090 }")
8091
8092 (define_insn "sibcall_internal_symref"
8093 [(call (mem:SI (match_operand 0 "call_operand_address" ""))
8094 (match_operand 1 "" "i"))
8095 (clobber (reg:SI 1))
8096 (use (reg:SI 2))
8097 (use (const_int 0))]
8098 "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
8099 "*
8100 {
8101 output_arg_descriptor (insn);
8102 return output_call (insn, operands[0], 1);
8103 }"
8104 [(set_attr "type" "call")
8105 (set (attr "length") (symbol_ref "attr_length_call (insn, 1)"))])
8106
8107 (define_insn "sibcall_internal_symref_64bit"
8108 [(call (mem:SI (match_operand 0 "call_operand_address" ""))
8109 (match_operand 1 "" "i"))
8110 (clobber (reg:DI 1))
8111 (use (reg:DI 2))
8112 (use (const_int 0))]
8113 "TARGET_64BIT"
8114 "*
8115 {
8116 output_arg_descriptor (insn);
8117 return output_call (insn, operands[0], 1);
8118 }"
8119 [(set_attr "type" "call")
8120 (set (attr "length") (symbol_ref "attr_length_call (insn, 1)"))])
8121
8122 (define_expand "sibcall_value"
8123 [(set (match_operand 0 "" "")
8124 (call (match_operand:SI 1 "" "")
8125 (match_operand 2 "" "")))]
8126 "!TARGET_PORTABLE_RUNTIME"
8127 "
8128 {
8129 rtx op, call_insn;
8130 rtx nb = operands[1];
8131
8132 op = XEXP (operands[1], 0);
8133
8134 if (TARGET_64BIT)
8135 {
8136 if (!virtuals_instantiated)
8137 emit_move_insn (arg_pointer_rtx,
8138 gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
8139 GEN_INT (64)));
8140 else
8141 {
8142 /* The loop pass can generate new libcalls after the virtual
8143 registers are instantiated when fpregs are disabled because
8144 the only method that we have for doing DImode multiplication
8145 is with a libcall. This could be trouble if we haven't
8146 allocated enough space for the outgoing arguments. */
8147 gcc_assert (INTVAL (nb) <= crtl->outgoing_args_size);
8148
8149 emit_move_insn (arg_pointer_rtx,
8150 gen_rtx_PLUS (word_mode, stack_pointer_rtx,
8151 GEN_INT (STACK_POINTER_OFFSET + 64)));
8152 }
8153 }
8154
8155 /* Indirect sibling calls are not allowed. */
8156 if (TARGET_64BIT)
8157 call_insn
8158 = gen_sibcall_value_internal_symref_64bit (operands[0], op, operands[2]);
8159 else
8160 call_insn
8161 = gen_sibcall_value_internal_symref (operands[0], op, operands[2]);
8162
8163 call_insn = emit_call_insn (call_insn);
8164
8165 if (TARGET_64BIT)
8166 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), arg_pointer_rtx);
8167
8168 /* We don't have to restore the PIC register. */
8169 if (flag_pic)
8170 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), pic_offset_table_rtx);
8171
8172 DONE;
8173 }")
8174
8175 (define_insn "sibcall_value_internal_symref"
8176 [(set (match_operand 0 "" "")
8177 (call (mem:SI (match_operand 1 "call_operand_address" ""))
8178 (match_operand 2 "" "i")))
8179 (clobber (reg:SI 1))
8180 (use (reg:SI 2))
8181 (use (const_int 0))]
8182 "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
8183 "*
8184 {
8185 output_arg_descriptor (insn);
8186 return output_call (insn, operands[1], 1);
8187 }"
8188 [(set_attr "type" "call")
8189 (set (attr "length") (symbol_ref "attr_length_call (insn, 1)"))])
8190
8191 (define_insn "sibcall_value_internal_symref_64bit"
8192 [(set (match_operand 0 "" "")
8193 (call (mem:SI (match_operand 1 "call_operand_address" ""))
8194 (match_operand 2 "" "i")))
8195 (clobber (reg:DI 1))
8196 (use (reg:DI 2))
8197 (use (const_int 0))]
8198 "TARGET_64BIT"
8199 "*
8200 {
8201 output_arg_descriptor (insn);
8202 return output_call (insn, operands[1], 1);
8203 }"
8204 [(set_attr "type" "call")
8205 (set (attr "length") (symbol_ref "attr_length_call (insn, 1)"))])
8206
8207 (define_insn "nop"
8208 [(const_int 0)]
8209 ""
8210 "nop"
8211 [(set_attr "type" "move")
8212 (set_attr "length" "4")])
8213
8214 ;; These are just placeholders so we know where branch tables
8215 ;; begin and end.
8216 (define_insn "begin_brtab"
8217 [(const_int 1)]
8218 ""
8219 "*
8220 {
8221 /* Only GAS actually supports this pseudo-op. */
8222 if (TARGET_GAS)
8223 return \".begin_brtab\";
8224 else
8225 return \"\";
8226 }"
8227 [(set_attr "type" "move")
8228 (set_attr "length" "0")])
8229
8230 (define_insn "end_brtab"
8231 [(const_int 2)]
8232 ""
8233 "*
8234 {
8235 /* Only GAS actually supports this pseudo-op. */
8236 if (TARGET_GAS)
8237 return \".end_brtab\";
8238 else
8239 return \"\";
8240 }"
8241 [(set_attr "type" "move")
8242 (set_attr "length" "0")])
8243
8244 ;;; EH does longjmp's from and within the data section. Thus,
8245 ;;; an interspace branch is required for the longjmp implementation.
8246 ;;; Registers r1 and r2 are used as scratch registers for the jump
8247 ;;; when necessary.
8248 (define_expand "interspace_jump"
8249 [(parallel
8250 [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8251 (clobber (match_dup 1))])]
8252 ""
8253 "
8254 {
8255 operands[1] = gen_rtx_REG (word_mode, 2);
8256 }")
8257
8258 (define_insn ""
8259 [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8260 (clobber (reg:SI 2))]
8261 "TARGET_PA_20 && !TARGET_64BIT"
8262 "bve%* (%0)"
8263 [(set_attr "type" "branch")
8264 (set_attr "length" "4")])
8265
8266 (define_insn ""
8267 [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8268 (clobber (reg:SI 2))]
8269 "TARGET_NO_SPACE_REGS && !TARGET_64BIT"
8270 "be%* 0(%%sr4,%0)"
8271 [(set_attr "type" "branch")
8272 (set_attr "length" "4")])
8273
8274 (define_insn ""
8275 [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8276 (clobber (reg:SI 2))]
8277 "!TARGET_64BIT"
8278 "ldsid (%%sr0,%0),%%r2\;mtsp %%r2,%%sr0\;be%* 0(%%sr0,%0)"
8279 [(set_attr "type" "branch")
8280 (set_attr "length" "12")])
8281
8282 (define_insn ""
8283 [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8284 (clobber (reg:DI 2))]
8285 "TARGET_64BIT"
8286 "bve%* (%0)"
8287 [(set_attr "type" "branch")
8288 (set_attr "length" "4")])
8289
8290 (define_expand "builtin_longjmp"
8291 [(unspec_volatile [(match_operand 0 "register_operand" "r")] UNSPECV_LONGJMP)]
8292 ""
8293 "
8294 {
8295 /* The elements of the buffer are, in order: */
8296 rtx fp = gen_rtx_MEM (Pmode, operands[0]);
8297 rtx lab = gen_rtx_MEM (Pmode, plus_constant (operands[0],
8298 POINTER_SIZE / BITS_PER_UNIT));
8299 rtx stack = gen_rtx_MEM (Pmode, plus_constant (operands[0],
8300 (POINTER_SIZE * 2) / BITS_PER_UNIT));
8301 rtx pv = gen_rtx_REG (Pmode, 1);
8302
8303 emit_clobber (gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (VOIDmode)));
8304 emit_clobber (gen_rtx_MEM (BLKmode, hard_frame_pointer_rtx));
8305
8306 /* Restore the frame pointer. The virtual_stack_vars_rtx is saved
8307 instead of the hard_frame_pointer_rtx in the save area. We need
8308 to adjust for the offset between these two values. */
8309 if (GET_CODE (fp) != REG)
8310 fp = force_reg (Pmode, fp);
8311 emit_move_insn (hard_frame_pointer_rtx, plus_constant (fp, -8));
8312
8313 /* This bit is the same as expand_builtin_longjmp. */
8314 emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX);
8315 emit_use (hard_frame_pointer_rtx);
8316 emit_use (stack_pointer_rtx);
8317
8318 /* Load the label we are jumping through into r1 so that we know
8319 where to look for it when we get back to setjmp's function for
8320 restoring the gp. */
8321 emit_move_insn (pv, lab);
8322
8323 /* Prevent the insns above from being scheduled into the delay slot
8324 of the interspace jump because the space register could change. */
8325 emit_insn (gen_blockage ());
8326
8327 emit_jump_insn (gen_interspace_jump (pv));
8328 emit_barrier ();
8329 DONE;
8330 }")
8331
8332 ;;; Operands 2 and 3 are assumed to be CONST_INTs.
8333 (define_expand "extzv"
8334 [(set (match_operand 0 "register_operand" "")
8335 (zero_extract (match_operand 1 "register_operand" "")
8336 (match_operand 2 "uint32_operand" "")
8337 (match_operand 3 "uint32_operand" "")))]
8338 ""
8339 "
8340 {
8341 HOST_WIDE_INT len = INTVAL (operands[2]);
8342 HOST_WIDE_INT pos = INTVAL (operands[3]);
8343
8344 /* PA extraction insns don't support zero length bitfields or fields
8345 extending beyond the left or right-most bits. Also, we reject lengths
8346 equal to a word as they are better handled by the move patterns. */
8347 if (len <= 0 || len >= BITS_PER_WORD || pos < 0 || pos + len > BITS_PER_WORD)
8348 FAIL;
8349
8350 /* From mips.md: extract_bit_field doesn't verify that our source
8351 matches the predicate, so check it again here. */
8352 if (!register_operand (operands[1], VOIDmode))
8353 FAIL;
8354
8355 if (TARGET_64BIT)
8356 emit_insn (gen_extzv_64 (operands[0], operands[1],
8357 operands[2], operands[3]));
8358 else
8359 emit_insn (gen_extzv_32 (operands[0], operands[1],
8360 operands[2], operands[3]));
8361 DONE;
8362 }")
8363
8364 (define_insn "extzv_32"
8365 [(set (match_operand:SI 0 "register_operand" "=r")
8366 (zero_extract:SI (match_operand:SI 1 "register_operand" "r")
8367 (match_operand:SI 2 "uint5_operand" "")
8368 (match_operand:SI 3 "uint5_operand" "")))]
8369 ""
8370 "{extru|extrw,u} %1,%3+%2-1,%2,%0"
8371 [(set_attr "type" "shift")
8372 (set_attr "length" "4")])
8373
8374 (define_insn ""
8375 [(set (match_operand:SI 0 "register_operand" "=r")
8376 (zero_extract:SI (match_operand:SI 1 "register_operand" "r")
8377 (const_int 1)
8378 (match_operand:SI 2 "register_operand" "q")))]
8379 ""
8380 "{vextru %1,1,%0|extrw,u %1,%%sar,1,%0}"
8381 [(set_attr "type" "shift")
8382 (set_attr "length" "4")])
8383
8384 (define_insn "extzv_64"
8385 [(set (match_operand:DI 0 "register_operand" "=r")
8386 (zero_extract:DI (match_operand:DI 1 "register_operand" "r")
8387 (match_operand:DI 2 "uint32_operand" "")
8388 (match_operand:DI 3 "uint32_operand" "")))]
8389 "TARGET_64BIT"
8390 "extrd,u %1,%3+%2-1,%2,%0"
8391 [(set_attr "type" "shift")
8392 (set_attr "length" "4")])
8393
8394 (define_insn ""
8395 [(set (match_operand:DI 0 "register_operand" "=r")
8396 (zero_extract:DI (match_operand:DI 1 "register_operand" "r")
8397 (const_int 1)
8398 (match_operand:DI 2 "register_operand" "q")))]
8399 "TARGET_64BIT"
8400 "extrd,u %1,%%sar,1,%0"
8401 [(set_attr "type" "shift")
8402 (set_attr "length" "4")])
8403
8404 ;;; Operands 2 and 3 are assumed to be CONST_INTs.
8405 (define_expand "extv"
8406 [(set (match_operand 0 "register_operand" "")
8407 (sign_extract (match_operand 1 "register_operand" "")
8408 (match_operand 2 "uint32_operand" "")
8409 (match_operand 3 "uint32_operand" "")))]
8410 ""
8411 "
8412 {
8413 HOST_WIDE_INT len = INTVAL (operands[2]);
8414 HOST_WIDE_INT pos = INTVAL (operands[3]);
8415
8416 /* PA extraction insns don't support zero length bitfields or fields
8417 extending beyond the left or right-most bits. Also, we reject lengths
8418 equal to a word as they are better handled by the move patterns. */
8419 if (len <= 0 || len >= BITS_PER_WORD || pos < 0 || pos + len > BITS_PER_WORD)
8420 FAIL;
8421
8422 /* From mips.md: extract_bit_field doesn't verify that our source
8423 matches the predicate, so check it again here. */
8424 if (!register_operand (operands[1], VOIDmode))
8425 FAIL;
8426
8427 if (TARGET_64BIT)
8428 emit_insn (gen_extv_64 (operands[0], operands[1],
8429 operands[2], operands[3]));
8430 else
8431 emit_insn (gen_extv_32 (operands[0], operands[1],
8432 operands[2], operands[3]));
8433 DONE;
8434 }")
8435
8436 (define_insn "extv_32"
8437 [(set (match_operand:SI 0 "register_operand" "=r")
8438 (sign_extract:SI (match_operand:SI 1 "register_operand" "r")
8439 (match_operand:SI 2 "uint5_operand" "")
8440 (match_operand:SI 3 "uint5_operand" "")))]
8441 ""
8442 "{extrs|extrw,s} %1,%3+%2-1,%2,%0"
8443 [(set_attr "type" "shift")
8444 (set_attr "length" "4")])
8445
8446 (define_insn ""
8447 [(set (match_operand:SI 0 "register_operand" "=r")
8448 (sign_extract:SI (match_operand:SI 1 "register_operand" "r")
8449 (const_int 1)
8450 (match_operand:SI 2 "register_operand" "q")))]
8451 "!TARGET_64BIT"
8452 "{vextrs %1,1,%0|extrw,s %1,%%sar,1,%0}"
8453 [(set_attr "type" "shift")
8454 (set_attr "length" "4")])
8455
8456 (define_insn "extv_64"
8457 [(set (match_operand:DI 0 "register_operand" "=r")
8458 (sign_extract:DI (match_operand:DI 1 "register_operand" "r")
8459 (match_operand:DI 2 "uint32_operand" "")
8460 (match_operand:DI 3 "uint32_operand" "")))]
8461 "TARGET_64BIT"
8462 "extrd,s %1,%3+%2-1,%2,%0"
8463 [(set_attr "type" "shift")
8464 (set_attr "length" "4")])
8465
8466 (define_insn ""
8467 [(set (match_operand:DI 0 "register_operand" "=r")
8468 (sign_extract:DI (match_operand:DI 1 "register_operand" "r")
8469 (const_int 1)
8470 (match_operand:DI 2 "register_operand" "q")))]
8471 "TARGET_64BIT"
8472 "extrd,s %1,%%sar,1,%0"
8473 [(set_attr "type" "shift")
8474 (set_attr "length" "4")])
8475
8476 ;;; Operands 1 and 2 are assumed to be CONST_INTs.
8477 (define_expand "insv"
8478 [(set (zero_extract (match_operand 0 "register_operand" "")
8479 (match_operand 1 "uint32_operand" "")
8480 (match_operand 2 "uint32_operand" ""))
8481 (match_operand 3 "arith5_operand" ""))]
8482 ""
8483 "
8484 {
8485 HOST_WIDE_INT len = INTVAL (operands[1]);
8486 HOST_WIDE_INT pos = INTVAL (operands[2]);
8487
8488 /* PA insertion insns don't support zero length bitfields or fields
8489 extending beyond the left or right-most bits. Also, we reject lengths
8490 equal to a word as they are better handled by the move patterns. */
8491 if (len <= 0 || len >= BITS_PER_WORD || pos < 0 || pos + len > BITS_PER_WORD)
8492 FAIL;
8493
8494 /* From mips.md: insert_bit_field doesn't verify that our destination
8495 matches the predicate, so check it again here. */
8496 if (!register_operand (operands[0], VOIDmode))
8497 FAIL;
8498
8499 if (TARGET_64BIT)
8500 emit_insn (gen_insv_64 (operands[0], operands[1],
8501 operands[2], operands[3]));
8502 else
8503 emit_insn (gen_insv_32 (operands[0], operands[1],
8504 operands[2], operands[3]));
8505 DONE;
8506 }")
8507
8508 (define_insn "insv_32"
8509 [(set (zero_extract:SI (match_operand:SI 0 "register_operand" "+r,r")
8510 (match_operand:SI 1 "uint5_operand" "")
8511 (match_operand:SI 2 "uint5_operand" ""))
8512 (match_operand:SI 3 "arith5_operand" "r,L"))]
8513 ""
8514 "@
8515 {dep|depw} %3,%2+%1-1,%1,%0
8516 {depi|depwi} %3,%2+%1-1,%1,%0"
8517 [(set_attr "type" "shift,shift")
8518 (set_attr "length" "4,4")])
8519
8520 ;; Optimize insertion of const_int values of type 1...1xxxx.
8521 (define_insn ""
8522 [(set (zero_extract:SI (match_operand:SI 0 "register_operand" "+r")
8523 (match_operand:SI 1 "uint5_operand" "")
8524 (match_operand:SI 2 "uint5_operand" ""))
8525 (match_operand:SI 3 "const_int_operand" ""))]
8526 "(INTVAL (operands[3]) & 0x10) != 0 &&
8527 (~INTVAL (operands[3]) & ((1L << INTVAL (operands[1])) - 1) & ~0xf) == 0"
8528 "*
8529 {
8530 operands[3] = GEN_INT ((INTVAL (operands[3]) & 0xf) - 0x10);
8531 return \"{depi|depwi} %3,%2+%1-1,%1,%0\";
8532 }"
8533 [(set_attr "type" "shift")
8534 (set_attr "length" "4")])
8535
8536 (define_insn "insv_64"
8537 [(set (zero_extract:DI (match_operand:DI 0 "register_operand" "+r,r")
8538 (match_operand:DI 1 "uint32_operand" "")
8539 (match_operand:DI 2 "uint32_operand" ""))
8540 (match_operand:DI 3 "arith32_operand" "r,L"))]
8541 "TARGET_64BIT"
8542 "@
8543 depd %3,%2+%1-1,%1,%0
8544 depdi %3,%2+%1-1,%1,%0"
8545 [(set_attr "type" "shift,shift")
8546 (set_attr "length" "4,4")])
8547
8548 ;; Optimize insertion of const_int values of type 1...1xxxx.
8549 (define_insn ""
8550 [(set (zero_extract:DI (match_operand:DI 0 "register_operand" "+r")
8551 (match_operand:DI 1 "uint32_operand" "")
8552 (match_operand:DI 2 "uint32_operand" ""))
8553 (match_operand:DI 3 "const_int_operand" ""))]
8554 "(INTVAL (operands[3]) & 0x10) != 0
8555 && TARGET_64BIT
8556 && (~INTVAL (operands[3]) & ((1L << INTVAL (operands[1])) - 1) & ~0xf) == 0"
8557 "*
8558 {
8559 operands[3] = GEN_INT ((INTVAL (operands[3]) & 0xf) - 0x10);
8560 return \"depdi %3,%2+%1-1,%1,%0\";
8561 }"
8562 [(set_attr "type" "shift")
8563 (set_attr "length" "4")])
8564
8565 (define_insn ""
8566 [(set (match_operand:DI 0 "register_operand" "=r")
8567 (ashift:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
8568 (const_int 32)))]
8569 "TARGET_64BIT"
8570 "depd,z %1,31,32,%0"
8571 [(set_attr "type" "shift")
8572 (set_attr "length" "4")])
8573
8574 ;; This insn is used for some loop tests, typically loops reversed when
8575 ;; strength reduction is used. It is actually created when the instruction
8576 ;; combination phase combines the special loop test. Since this insn
8577 ;; is both a jump insn and has an output, it must deal with its own
8578 ;; reloads, hence the `m' constraints. The `!' constraints direct reload
8579 ;; to not choose the register alternatives in the event a reload is needed.
8580 (define_insn "decrement_and_branch_until_zero"
8581 [(set (pc)
8582 (if_then_else
8583 (match_operator 2 "comparison_operator"
8584 [(plus:SI
8585 (match_operand:SI 0 "reg_before_reload_operand" "+!r,!*f,*m")
8586 (match_operand:SI 1 "int5_operand" "L,L,L"))
8587 (const_int 0)])
8588 (label_ref (match_operand 3 "" ""))
8589 (pc)))
8590 (set (match_dup 0)
8591 (plus:SI (match_dup 0) (match_dup 1)))
8592 (clobber (match_scratch:SI 4 "=X,r,r"))]
8593 ""
8594 "* return output_dbra (operands, insn, which_alternative); "
8595 ;; Do not expect to understand this the first time through.
8596 [(set_attr "type" "cbranch,multi,multi")
8597 (set (attr "length")
8598 (if_then_else (eq_attr "alternative" "0")
8599 ;; Loop counter in register case
8600 ;; Short branch has length of 4
8601 ;; Long branch has length of 8, 20, 24 or 28
8602 (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8603 (const_int MAX_12BIT_OFFSET))
8604 (const_int 4)
8605 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8606 (const_int MAX_17BIT_OFFSET))
8607 (const_int 8)
8608 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8609 (const_int 24)
8610 (eq (symbol_ref "flag_pic") (const_int 0))
8611 (const_int 20)]
8612 (const_int 28))
8613
8614 ;; Loop counter in FP reg case.
8615 ;; Extra goo to deal with additional reload insns.
8616 (if_then_else (eq_attr "alternative" "1")
8617 (if_then_else (lt (match_dup 3) (pc))
8618 (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 24))))
8619 (const_int MAX_12BIT_OFFSET))
8620 (const_int 24)
8621 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 24))))
8622 (const_int MAX_17BIT_OFFSET))
8623 (const_int 28)
8624 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8625 (const_int 44)
8626 (eq (symbol_ref "flag_pic") (const_int 0))
8627 (const_int 40)]
8628 (const_int 48))
8629 (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8630 (const_int MAX_12BIT_OFFSET))
8631 (const_int 24)
8632 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8633 (const_int MAX_17BIT_OFFSET))
8634 (const_int 28)
8635 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8636 (const_int 44)
8637 (eq (symbol_ref "flag_pic") (const_int 0))
8638 (const_int 40)]
8639 (const_int 48)))
8640
8641 ;; Loop counter in memory case.
8642 ;; Extra goo to deal with additional reload insns.
8643 (if_then_else (lt (match_dup 3) (pc))
8644 (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
8645 (const_int MAX_12BIT_OFFSET))
8646 (const_int 12)
8647 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
8648 (const_int MAX_17BIT_OFFSET))
8649 (const_int 16)
8650 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8651 (const_int 32)
8652 (eq (symbol_ref "flag_pic") (const_int 0))
8653 (const_int 28)]
8654 (const_int 36))
8655 (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8656 (const_int MAX_12BIT_OFFSET))
8657 (const_int 12)
8658 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8659 (const_int MAX_17BIT_OFFSET))
8660 (const_int 16)
8661 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8662 (const_int 32)
8663 (eq (symbol_ref "flag_pic") (const_int 0))
8664 (const_int 28)]
8665 (const_int 36))))))])
8666
8667 (define_insn ""
8668 [(set (pc)
8669 (if_then_else
8670 (match_operator 2 "movb_comparison_operator"
8671 [(match_operand:SI 1 "register_operand" "r,r,r,r") (const_int 0)])
8672 (label_ref (match_operand 3 "" ""))
8673 (pc)))
8674 (set (match_operand:SI 0 "reg_before_reload_operand" "=!r,!*f,*m,!*q")
8675 (match_dup 1))]
8676 ""
8677 "* return output_movb (operands, insn, which_alternative, 0); "
8678 ;; Do not expect to understand this the first time through.
8679 [(set_attr "type" "cbranch,multi,multi,multi")
8680 (set (attr "length")
8681 (if_then_else (eq_attr "alternative" "0")
8682 ;; Loop counter in register case
8683 ;; Short branch has length of 4
8684 ;; Long branch has length of 8, 20, 24 or 28
8685 (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8686 (const_int MAX_12BIT_OFFSET))
8687 (const_int 4)
8688 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8689 (const_int MAX_17BIT_OFFSET))
8690 (const_int 8)
8691 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8692 (const_int 24)
8693 (eq (symbol_ref "flag_pic") (const_int 0))
8694 (const_int 20)]
8695 (const_int 28))
8696
8697 ;; Loop counter in FP reg case.
8698 ;; Extra goo to deal with additional reload insns.
8699 (if_then_else (eq_attr "alternative" "1")
8700 (if_then_else (lt (match_dup 3) (pc))
8701 (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
8702 (const_int MAX_12BIT_OFFSET))
8703 (const_int 12)
8704 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
8705 (const_int MAX_17BIT_OFFSET))
8706 (const_int 16)
8707 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8708 (const_int 32)
8709 (eq (symbol_ref "flag_pic") (const_int 0))
8710 (const_int 28)]
8711 (const_int 36))
8712 (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8713 (const_int MAX_12BIT_OFFSET))
8714 (const_int 12)
8715 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8716 (const_int MAX_17BIT_OFFSET))
8717 (const_int 16)
8718 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8719 (const_int 32)
8720 (eq (symbol_ref "flag_pic") (const_int 0))
8721 (const_int 28)]
8722 (const_int 36)))
8723
8724 ;; Loop counter in memory or sar case.
8725 ;; Extra goo to deal with additional reload insns.
8726 (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8727 (const_int MAX_12BIT_OFFSET))
8728 (const_int 8)
8729 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8730 (const_int MAX_17BIT_OFFSET))
8731 (const_int 12)
8732 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8733 (const_int 28)
8734 (eq (symbol_ref "flag_pic") (const_int 0))
8735 (const_int 24)]
8736 (const_int 32)))))])
8737
8738 ;; Handle negated branch.
8739 (define_insn ""
8740 [(set (pc)
8741 (if_then_else
8742 (match_operator 2 "movb_comparison_operator"
8743 [(match_operand:SI 1 "register_operand" "r,r,r,r") (const_int 0)])
8744 (pc)
8745 (label_ref (match_operand 3 "" ""))))
8746 (set (match_operand:SI 0 "reg_before_reload_operand" "=!r,!*f,*m,!*q")
8747 (match_dup 1))]
8748 ""
8749 "* return output_movb (operands, insn, which_alternative, 1); "
8750 ;; Do not expect to understand this the first time through.
8751 [(set_attr "type" "cbranch,multi,multi,multi")
8752 (set (attr "length")
8753 (if_then_else (eq_attr "alternative" "0")
8754 ;; Loop counter in register case
8755 ;; Short branch has length of 4
8756 ;; Long branch has length of 8
8757 (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8758 (const_int MAX_12BIT_OFFSET))
8759 (const_int 4)
8760 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8761 (const_int MAX_17BIT_OFFSET))
8762 (const_int 8)
8763 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8764 (const_int 24)
8765 (eq (symbol_ref "flag_pic") (const_int 0))
8766 (const_int 20)]
8767 (const_int 28))
8768
8769 ;; Loop counter in FP reg case.
8770 ;; Extra goo to deal with additional reload insns.
8771 (if_then_else (eq_attr "alternative" "1")
8772 (if_then_else (lt (match_dup 3) (pc))
8773 (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
8774 (const_int MAX_12BIT_OFFSET))
8775 (const_int 12)
8776 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
8777 (const_int MAX_17BIT_OFFSET))
8778 (const_int 16)
8779 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8780 (const_int 32)
8781 (eq (symbol_ref "flag_pic") (const_int 0))
8782 (const_int 28)]
8783 (const_int 36))
8784 (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8785 (const_int MAX_12BIT_OFFSET))
8786 (const_int 12)
8787 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8788 (const_int MAX_17BIT_OFFSET))
8789 (const_int 16)
8790 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8791 (const_int 32)
8792 (eq (symbol_ref "flag_pic") (const_int 0))
8793 (const_int 28)]
8794 (const_int 36)))
8795
8796 ;; Loop counter in memory or SAR case.
8797 ;; Extra goo to deal with additional reload insns.
8798 (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8799 (const_int MAX_12BIT_OFFSET))
8800 (const_int 8)
8801 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8802 (const_int MAX_17BIT_OFFSET))
8803 (const_int 12)
8804 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8805 (const_int 28)
8806 (eq (symbol_ref "flag_pic") (const_int 0))
8807 (const_int 24)]
8808 (const_int 32)))))])
8809
8810 (define_insn ""
8811 [(set (pc) (label_ref (match_operand 3 "" "" )))
8812 (set (match_operand:SI 0 "ireg_operand" "=r")
8813 (plus:SI (match_operand:SI 1 "ireg_operand" "r")
8814 (match_operand:SI 2 "ireg_or_int5_operand" "rL")))]
8815 "(reload_completed && operands[0] == operands[1]) || operands[0] == operands[2]"
8816 "*
8817 {
8818 return output_parallel_addb (operands, insn);
8819 }"
8820 [(set_attr "type" "parallel_branch")
8821 (set (attr "length")
8822 (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8823 (const_int MAX_12BIT_OFFSET))
8824 (const_int 4)
8825 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8826 (const_int MAX_17BIT_OFFSET))
8827 (const_int 8)
8828 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8829 (const_int 24)
8830 (eq (symbol_ref "flag_pic") (const_int 0))
8831 (const_int 20)]
8832 (const_int 28)))])
8833
8834 (define_insn ""
8835 [(set (pc) (label_ref (match_operand 2 "" "" )))
8836 (set (match_operand:SF 0 "ireg_operand" "=r")
8837 (match_operand:SF 1 "ireg_or_int5_operand" "rL"))]
8838 "reload_completed"
8839 "*
8840 {
8841 return output_parallel_movb (operands, insn);
8842 }"
8843 [(set_attr "type" "parallel_branch")
8844 (set (attr "length")
8845 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
8846 (const_int MAX_12BIT_OFFSET))
8847 (const_int 4)
8848 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
8849 (const_int MAX_17BIT_OFFSET))
8850 (const_int 8)
8851 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8852 (const_int 24)
8853 (eq (symbol_ref "flag_pic") (const_int 0))
8854 (const_int 20)]
8855 (const_int 28)))])
8856
8857 (define_insn ""
8858 [(set (pc) (label_ref (match_operand 2 "" "" )))
8859 (set (match_operand:SI 0 "ireg_operand" "=r")
8860 (match_operand:SI 1 "ireg_or_int5_operand" "rL"))]
8861 "reload_completed"
8862 "*
8863 {
8864 return output_parallel_movb (operands, insn);
8865 }"
8866 [(set_attr "type" "parallel_branch")
8867 (set (attr "length")
8868 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
8869 (const_int MAX_12BIT_OFFSET))
8870 (const_int 4)
8871 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
8872 (const_int MAX_17BIT_OFFSET))
8873 (const_int 8)
8874 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8875 (const_int 24)
8876 (eq (symbol_ref "flag_pic") (const_int 0))
8877 (const_int 20)]
8878 (const_int 28)))])
8879
8880 (define_insn ""
8881 [(set (pc) (label_ref (match_operand 2 "" "" )))
8882 (set (match_operand:HI 0 "ireg_operand" "=r")
8883 (match_operand:HI 1 "ireg_or_int5_operand" "rL"))]
8884 "reload_completed"
8885 "*
8886 {
8887 return output_parallel_movb (operands, insn);
8888 }"
8889 [(set_attr "type" "parallel_branch")
8890 (set (attr "length")
8891 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
8892 (const_int MAX_12BIT_OFFSET))
8893 (const_int 4)
8894 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
8895 (const_int MAX_17BIT_OFFSET))
8896 (const_int 8)
8897 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8898 (const_int 24)
8899 (eq (symbol_ref "flag_pic") (const_int 0))
8900 (const_int 20)]
8901 (const_int 28)))])
8902
8903 (define_insn ""
8904 [(set (pc) (label_ref (match_operand 2 "" "" )))
8905 (set (match_operand:QI 0 "ireg_operand" "=r")
8906 (match_operand:QI 1 "ireg_or_int5_operand" "rL"))]
8907 "reload_completed"
8908 "*
8909 {
8910 return output_parallel_movb (operands, insn);
8911 }"
8912 [(set_attr "type" "parallel_branch")
8913 (set (attr "length")
8914 (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
8915 (const_int MAX_12BIT_OFFSET))
8916 (const_int 4)
8917 (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
8918 (const_int MAX_17BIT_OFFSET))
8919 (const_int 8)
8920 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8921 (const_int 24)
8922 (eq (symbol_ref "flag_pic") (const_int 0))
8923 (const_int 20)]
8924 (const_int 28)))])
8925
8926 (define_insn ""
8927 [(set (match_operand 0 "register_operand" "=f")
8928 (mult (match_operand 1 "register_operand" "f")
8929 (match_operand 2 "register_operand" "f")))
8930 (set (match_operand 3 "register_operand" "+f")
8931 (plus (match_operand 4 "register_operand" "f")
8932 (match_operand 5 "register_operand" "f")))]
8933 "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
8934 && reload_completed && fmpyaddoperands (operands)"
8935 "*
8936 {
8937 if (GET_MODE (operands[0]) == DFmode)
8938 {
8939 if (rtx_equal_p (operands[3], operands[5]))
8940 return \"fmpyadd,dbl %1,%2,%0,%4,%3\";
8941 else
8942 return \"fmpyadd,dbl %1,%2,%0,%5,%3\";
8943 }
8944 else
8945 {
8946 if (rtx_equal_p (operands[3], operands[5]))
8947 return \"fmpyadd,sgl %1,%2,%0,%4,%3\";
8948 else
8949 return \"fmpyadd,sgl %1,%2,%0,%5,%3\";
8950 }
8951 }"
8952 [(set_attr "type" "fpalu")
8953 (set_attr "length" "4")])
8954
8955 (define_insn ""
8956 [(set (match_operand 3 "register_operand" "+f")
8957 (plus (match_operand 4 "register_operand" "f")
8958 (match_operand 5 "register_operand" "f")))
8959 (set (match_operand 0 "register_operand" "=f")
8960 (mult (match_operand 1 "register_operand" "f")
8961 (match_operand 2 "register_operand" "f")))]
8962 "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
8963 && reload_completed && fmpyaddoperands (operands)"
8964 "*
8965 {
8966 if (GET_MODE (operands[0]) == DFmode)
8967 {
8968 if (rtx_equal_p (operands[3], operands[5]))
8969 return \"fmpyadd,dbl %1,%2,%0,%4,%3\";
8970 else
8971 return \"fmpyadd,dbl %1,%2,%0,%5,%3\";
8972 }
8973 else
8974 {
8975 if (rtx_equal_p (operands[3], operands[5]))
8976 return \"fmpyadd,sgl %1,%2,%0,%4,%3\";
8977 else
8978 return \"fmpyadd,sgl %1,%2,%0,%5,%3\";
8979 }
8980 }"
8981 [(set_attr "type" "fpalu")
8982 (set_attr "length" "4")])
8983
8984 (define_insn ""
8985 [(set (match_operand 0 "register_operand" "=f")
8986 (mult (match_operand 1 "register_operand" "f")
8987 (match_operand 2 "register_operand" "f")))
8988 (set (match_operand 3 "register_operand" "+f")
8989 (minus (match_operand 4 "register_operand" "f")
8990 (match_operand 5 "register_operand" "f")))]
8991 "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
8992 && reload_completed && fmpysuboperands (operands)"
8993 "*
8994 {
8995 if (GET_MODE (operands[0]) == DFmode)
8996 return \"fmpysub,dbl %1,%2,%0,%5,%3\";
8997 else
8998 return \"fmpysub,sgl %1,%2,%0,%5,%3\";
8999 }"
9000 [(set_attr "type" "fpalu")
9001 (set_attr "length" "4")])
9002
9003 (define_insn ""
9004 [(set (match_operand 3 "register_operand" "+f")
9005 (minus (match_operand 4 "register_operand" "f")
9006 (match_operand 5 "register_operand" "f")))
9007 (set (match_operand 0 "register_operand" "=f")
9008 (mult (match_operand 1 "register_operand" "f")
9009 (match_operand 2 "register_operand" "f")))]
9010 "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
9011 && reload_completed && fmpysuboperands (operands)"
9012 "*
9013 {
9014 if (GET_MODE (operands[0]) == DFmode)
9015 return \"fmpysub,dbl %1,%2,%0,%5,%3\";
9016 else
9017 return \"fmpysub,sgl %1,%2,%0,%5,%3\";
9018 }"
9019 [(set_attr "type" "fpalu")
9020 (set_attr "length" "4")])
9021
9022 ;; The following two patterns are used by the trampoline code for nested
9023 ;; functions. They flush the I and D cache lines from the start address
9024 ;; (operand0) to the end address (operand1). No lines are flushed if the
9025 ;; end address is less than the start address (unsigned).
9026 ;;
9027 ;; Because the range of memory flushed is variable and the size of a MEM
9028 ;; can only be a CONST_INT, the patterns specify that they perform an
9029 ;; unspecified volatile operation on all memory.
9030 ;;
9031 ;; The address range for an icache flush must lie within a single
9032 ;; space on targets with non-equivalent space registers.
9033 ;;
9034 ;; Operand 0 contains the start address.
9035 ;; Operand 1 contains the end address.
9036 ;; Operand 2 contains the line length to use.
9037 (define_insn "dcacheflush<P:mode>"
9038 [(const_int 1)
9039 (unspec_volatile [(mem:BLK (scratch))] UNSPECV_DCACHE)
9040 (use (match_operand 0 "pmode_register_operand" "r"))
9041 (use (match_operand 1 "pmode_register_operand" "r"))
9042 (use (match_operand 2 "pmode_register_operand" "r"))
9043 (clobber (match_scratch:P 3 "=&0"))]
9044 ""
9045 "cmpb,<dwc><<=,n %3,%1,.\;fdc,m %2(%3)\;sync"
9046 [(set_attr "type" "multi")
9047 (set_attr "length" "12")])
9048
9049 (define_insn "icacheflush<P:mode>"
9050 [(const_int 2)
9051 (unspec_volatile [(mem:BLK (scratch))] UNSPECV_ICACHE)
9052 (use (match_operand 0 "pmode_register_operand" "r"))
9053 (use (match_operand 1 "pmode_register_operand" "r"))
9054 (use (match_operand 2 "pmode_register_operand" "r"))
9055 (clobber (match_operand 3 "pmode_register_operand" "=&r"))
9056 (clobber (match_operand 4 "pmode_register_operand" "=&r"))
9057 (clobber (match_scratch:P 5 "=&0"))]
9058 ""
9059 "mfsp %%sr0,%4\;ldsid (%5),%3\;mtsp %3,%%sr0\;cmpb,<dwc><<=,n %5,%1,.\;fic,m %2(%%sr0,%5)\;sync\;mtsp %4,%%sr0\;nop\;nop\;nop\;nop\;nop\;nop"
9060 [(set_attr "type" "multi")
9061 (set_attr "length" "52")])
9062
9063 ;; An out-of-line prologue.
9064 (define_insn "outline_prologue_call"
9065 [(unspec_volatile [(const_int 0)] UNSPECV_OPC)
9066 (clobber (reg:SI 31))
9067 (clobber (reg:SI 22))
9068 (clobber (reg:SI 21))
9069 (clobber (reg:SI 20))
9070 (clobber (reg:SI 19))
9071 (clobber (reg:SI 1))]
9072 ""
9073 "*
9074 {
9075
9076 /* We need two different versions depending on whether or not we
9077 need a frame pointer. Also note that we return to the instruction
9078 immediately after the branch rather than two instructions after the
9079 break as normally is the case. */
9080 if (frame_pointer_needed)
9081 {
9082 /* Must import the magic millicode routine(s). */
9083 output_asm_insn (\".IMPORT __outline_prologue_fp,MILLICODE\", NULL);
9084
9085 if (TARGET_PORTABLE_RUNTIME)
9086 {
9087 output_asm_insn (\"ldil L'__outline_prologue_fp,%%r31\", NULL);
9088 output_asm_insn (\"ble,n R'__outline_prologue_fp(%%sr0,%%r31)\",
9089 NULL);
9090 }
9091 else
9092 output_asm_insn (\"{bl|b,l},n __outline_prologue_fp,%%r31\", NULL);
9093 }
9094 else
9095 {
9096 /* Must import the magic millicode routine(s). */
9097 output_asm_insn (\".IMPORT __outline_prologue,MILLICODE\", NULL);
9098
9099 if (TARGET_PORTABLE_RUNTIME)
9100 {
9101 output_asm_insn (\"ldil L'__outline_prologue,%%r31\", NULL);
9102 output_asm_insn (\"ble,n R'__outline_prologue(%%sr0,%%r31)\", NULL);
9103 }
9104 else
9105 output_asm_insn (\"{bl|b,l},n __outline_prologue,%%r31\", NULL);
9106 }
9107 return \"\";
9108 }"
9109 [(set_attr "type" "multi")
9110 (set_attr "length" "8")])
9111
9112 ;; An out-of-line epilogue.
9113 (define_insn "outline_epilogue_call"
9114 [(unspec_volatile [(const_int 1)] UNSPECV_OEC)
9115 (use (reg:SI 29))
9116 (use (reg:SI 28))
9117 (clobber (reg:SI 31))
9118 (clobber (reg:SI 22))
9119 (clobber (reg:SI 21))
9120 (clobber (reg:SI 20))
9121 (clobber (reg:SI 19))
9122 (clobber (reg:SI 2))
9123 (clobber (reg:SI 1))]
9124 ""
9125 "*
9126 {
9127
9128 /* We need two different versions depending on whether or not we
9129 need a frame pointer. Also note that we return to the instruction
9130 immediately after the branch rather than two instructions after the
9131 break as normally is the case. */
9132 if (frame_pointer_needed)
9133 {
9134 /* Must import the magic millicode routine. */
9135 output_asm_insn (\".IMPORT __outline_epilogue_fp,MILLICODE\", NULL);
9136
9137 /* The out-of-line prologue will make sure we return to the right
9138 instruction. */
9139 if (TARGET_PORTABLE_RUNTIME)
9140 {
9141 output_asm_insn (\"ldil L'__outline_epilogue_fp,%%r31\", NULL);
9142 output_asm_insn (\"ble,n R'__outline_epilogue_fp(%%sr0,%%r31)\",
9143 NULL);
9144 }
9145 else
9146 output_asm_insn (\"{bl|b,l},n __outline_epilogue_fp,%%r31\", NULL);
9147 }
9148 else
9149 {
9150 /* Must import the magic millicode routine. */
9151 output_asm_insn (\".IMPORT __outline_epilogue,MILLICODE\", NULL);
9152
9153 /* The out-of-line prologue will make sure we return to the right
9154 instruction. */
9155 if (TARGET_PORTABLE_RUNTIME)
9156 {
9157 output_asm_insn (\"ldil L'__outline_epilogue,%%r31\", NULL);
9158 output_asm_insn (\"ble,n R'__outline_epilogue(%%sr0,%%r31)\", NULL);
9159 }
9160 else
9161 output_asm_insn (\"{bl|b,l},n __outline_epilogue,%%r31\", NULL);
9162 }
9163 return \"\";
9164 }"
9165 [(set_attr "type" "multi")
9166 (set_attr "length" "8")])
9167
9168 ;; Given a function pointer, canonicalize it so it can be
9169 ;; reliably compared to another function pointer. */
9170 (define_expand "canonicalize_funcptr_for_compare"
9171 [(set (reg:SI 26) (match_operand:SI 1 "register_operand" ""))
9172 (parallel [(set (reg:SI 29) (unspec:SI [(reg:SI 26)] UNSPEC_CFFC))
9173 (clobber (match_dup 2))
9174 (clobber (reg:SI 26))
9175 (clobber (reg:SI 22))
9176 (clobber (reg:SI 31))])
9177 (set (match_operand:SI 0 "register_operand" "")
9178 (reg:SI 29))]
9179 "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
9180 "
9181 {
9182 if (TARGET_ELF32)
9183 {
9184 rtx canonicalize_funcptr_for_compare_libfunc
9185 = init_one_libfunc (CANONICALIZE_FUNCPTR_FOR_COMPARE_LIBCALL);
9186
9187 emit_library_call_value (canonicalize_funcptr_for_compare_libfunc,
9188 operands[0], LCT_NORMAL, Pmode,
9189 1, operands[1], Pmode);
9190 DONE;
9191 }
9192
9193 operands[2] = gen_reg_rtx (SImode);
9194 if (GET_CODE (operands[1]) != REG)
9195 {
9196 rtx tmp = gen_reg_rtx (Pmode);
9197 emit_move_insn (tmp, operands[1]);
9198 operands[1] = tmp;
9199 }
9200 }")
9201
9202 (define_insn "*$$sh_func_adrs"
9203 [(set (reg:SI 29) (unspec:SI [(reg:SI 26)] UNSPEC_CFFC))
9204 (clobber (match_operand:SI 0 "register_operand" "=a"))
9205 (clobber (reg:SI 26))
9206 (clobber (reg:SI 22))
9207 (clobber (reg:SI 31))]
9208 "!TARGET_64BIT"
9209 "*
9210 {
9211 int length = get_attr_length (insn);
9212 rtx xoperands[2];
9213
9214 xoperands[0] = GEN_INT (length - 8);
9215 xoperands[1] = GEN_INT (length - 16);
9216
9217 /* Must import the magic millicode routine. */
9218 output_asm_insn (\".IMPORT $$sh_func_adrs,MILLICODE\", NULL);
9219
9220 /* This is absolutely amazing.
9221
9222 First, copy our input parameter into %r29 just in case we don't
9223 need to call $$sh_func_adrs. */
9224 output_asm_insn (\"copy %%r26,%%r29\", NULL);
9225 output_asm_insn (\"{extru|extrw,u} %%r26,31,2,%%r31\", NULL);
9226
9227 /* Next, examine the low two bits in %r26, if they aren't 0x2, then
9228 we use %r26 unchanged. */
9229 output_asm_insn (\"{comib|cmpib},<>,n 2,%%r31,.+%0\", xoperands);
9230 output_asm_insn (\"ldi 4096,%%r31\", NULL);
9231
9232 /* Next, compare %r26 with 4096, if %r26 is less than or equal to
9233 4096, then again we use %r26 unchanged. */
9234 output_asm_insn (\"{comb|cmpb},<<,n %%r26,%%r31,.+%1\", xoperands);
9235
9236 /* Finally, call $$sh_func_adrs to extract the function's real add24. */
9237 return output_millicode_call (insn,
9238 gen_rtx_SYMBOL_REF (SImode,
9239 \"$$sh_func_adrs\"));
9240 }"
9241 [(set_attr "type" "multi")
9242 (set (attr "length")
9243 (plus (symbol_ref "attr_length_millicode_call (insn)")
9244 (const_int 20)))])
9245
9246 ;; On the PA, the PIC register is call clobbered, so it must
9247 ;; be saved & restored around calls by the caller. If the call
9248 ;; doesn't return normally (nonlocal goto, or an exception is
9249 ;; thrown), then the code at the exception handler label must
9250 ;; restore the PIC register.
9251 (define_expand "exception_receiver"
9252 [(const_int 4)]
9253 "flag_pic"
9254 "
9255 {
9256 /* On the 64-bit port, we need a blockage because there is
9257 confusion regarding the dependence of the restore on the
9258 frame pointer. As a result, the frame pointer and pic
9259 register restores sometimes are interchanged erroneously. */
9260 if (TARGET_64BIT)
9261 emit_insn (gen_blockage ());
9262 /* Restore the PIC register using hppa_pic_save_rtx (). The
9263 PIC register is not saved in the frame in 64-bit ABI. */
9264 emit_move_insn (pic_offset_table_rtx, hppa_pic_save_rtx ());
9265 emit_insn (gen_blockage ());
9266 DONE;
9267 }")
9268
9269 (define_expand "builtin_setjmp_receiver"
9270 [(label_ref (match_operand 0 "" ""))]
9271 "flag_pic"
9272 "
9273 {
9274 if (TARGET_64BIT)
9275 emit_insn (gen_blockage ());
9276 /* Restore the PIC register. Hopefully, this will always be from
9277 a stack slot. The only registers that are valid after a
9278 builtin_longjmp are the stack and frame pointers. */
9279 emit_move_insn (pic_offset_table_rtx, hppa_pic_save_rtx ());
9280 emit_insn (gen_blockage ());
9281 DONE;
9282 }")
9283
9284 ;; Allocate new stack space and update the saved stack pointer in the
9285 ;; frame marker. The HP C compilers also copy additional words in the
9286 ;; frame marker. The 64-bit compiler copies words at -48, -32 and -24.
9287 ;; The 32-bit compiler copies the word at -16 (Static Link). We
9288 ;; currently don't copy these values.
9289 ;;
9290 ;; Since the copy of the frame marker can't be done atomically, I
9291 ;; suspect that using it for unwind purposes may be somewhat unreliable.
9292 ;; The HP compilers appear to raise the stack and copy the frame
9293 ;; marker in a strict instruction sequence. This suggests that the
9294 ;; unwind library may check for an alloca sequence when ALLOCA_FRAME
9295 ;; is set in the callinfo data. We currently don't set ALLOCA_FRAME
9296 ;; as GAS doesn't support it, or try to keep the instructions emitted
9297 ;; here in strict sequence.
9298 (define_expand "allocate_stack"
9299 [(match_operand 0 "" "")
9300 (match_operand 1 "" "")]
9301 ""
9302 "
9303 {
9304 rtx addr;
9305
9306 /* Since the stack grows upward, we need to store virtual_stack_dynamic_rtx
9307 in operand 0 before adjusting the stack. */
9308 emit_move_insn (operands[0], virtual_stack_dynamic_rtx);
9309 anti_adjust_stack (operands[1]);
9310 if (TARGET_HPUX_UNWIND_LIBRARY)
9311 {
9312 addr = gen_rtx_PLUS (word_mode, stack_pointer_rtx,
9313 GEN_INT (TARGET_64BIT ? -8 : -4));
9314 emit_move_insn (gen_rtx_MEM (word_mode, addr), hard_frame_pointer_rtx);
9315 }
9316 if (!TARGET_64BIT && flag_pic)
9317 {
9318 rtx addr = gen_rtx_PLUS (word_mode, stack_pointer_rtx, GEN_INT (-32));
9319 emit_move_insn (gen_rtx_MEM (word_mode, addr), pic_offset_table_rtx);
9320 }
9321 DONE;
9322 }")
9323
9324 (define_expand "prefetch"
9325 [(match_operand 0 "address_operand" "")
9326 (match_operand 1 "const_int_operand" "")
9327 (match_operand 2 "const_int_operand" "")]
9328 "TARGET_PA_20"
9329 {
9330 operands[0] = copy_addr_to_reg (operands[0]);
9331 emit_insn (gen_prefetch_20 (operands[0], operands[1], operands[2]));
9332 DONE;
9333 })
9334
9335 (define_insn "prefetch_20"
9336 [(prefetch (match_operand 0 "pmode_register_operand" "r")
9337 (match_operand:SI 1 "const_int_operand" "n")
9338 (match_operand:SI 2 "const_int_operand" "n"))]
9339 "TARGET_PA_20"
9340 {
9341 /* The SL cache-control completer indicates good spatial locality but
9342 poor temporal locality. The ldw instruction with a target of general
9343 register 0 prefetches a cache line for a read. The ldd instruction
9344 prefetches a cache line for a write. */
9345 static const char * const instr[2][2] = {
9346 {
9347 "ldw,sl 0(%0),%%r0",
9348 "ldd,sl 0(%0),%%r0"
9349 },
9350 {
9351 "ldw 0(%0),%%r0",
9352 "ldd 0(%0),%%r0"
9353 }
9354 };
9355 int read_or_write = INTVAL (operands[1]) == 0 ? 0 : 1;
9356 int locality = INTVAL (operands[2]) == 0 ? 0 : 1;
9357
9358 return instr [locality][read_or_write];
9359 }
9360 [(set_attr "type" "load")
9361 (set_attr "length" "4")])
9362
9363 ;; TLS Support
9364 (define_insn "tgd_load"
9365 [(set (match_operand:SI 0 "register_operand" "=r")
9366 (unspec:SI [(match_operand 1 "tgd_symbolic_operand" "")] UNSPEC_TLSGD))
9367 (clobber (reg:SI 1))
9368 (use (reg:SI 27))]
9369 ""
9370 "*
9371 {
9372 return \"addil LR'%1-$tls_gdidx$,%%r27\;ldo RR'%1-$tls_gdidx$(%%r1),%0\";
9373 }"
9374 [(set_attr "type" "multi")
9375 (set_attr "length" "8")])
9376
9377 (define_insn "tgd_load_pic"
9378 [(set (match_operand:SI 0 "register_operand" "=r")
9379 (unspec:SI [(match_operand 1 "tgd_symbolic_operand" "")] UNSPEC_TLSGD_PIC))
9380 (clobber (reg:SI 1))
9381 (use (reg:SI 19))]
9382 ""
9383 "*
9384 {
9385 return \"addil LT'%1-$tls_gdidx$,%%r19\;ldo RT'%1-$tls_gdidx$(%%r1),%0\";
9386 }"
9387 [(set_attr "type" "multi")
9388 (set_attr "length" "8")])
9389
9390 (define_insn "tld_load"
9391 [(set (match_operand:SI 0 "register_operand" "=r")
9392 (unspec:SI [(match_operand 1 "tld_symbolic_operand" "")] UNSPEC_TLSLDM))
9393 (clobber (reg:SI 1))
9394 (use (reg:SI 27))]
9395 ""
9396 "*
9397 {
9398 return \"addil LR'%1-$tls_ldidx$,%%r27\;ldo RR'%1-$tls_ldidx$(%%r1),%0\";
9399 }"
9400 [(set_attr "type" "multi")
9401 (set_attr "length" "8")])
9402
9403 (define_insn "tld_load_pic"
9404 [(set (match_operand:SI 0 "register_operand" "=r")
9405 (unspec:SI [(match_operand 1 "tld_symbolic_operand" "")] UNSPEC_TLSLDM_PIC))
9406 (clobber (reg:SI 1))
9407 (use (reg:SI 19))]
9408 ""
9409 "*
9410 {
9411 return \"addil LT'%1-$tls_ldidx$,%%r19\;ldo RT'%1-$tls_ldidx$(%%r1),%0\";
9412 }"
9413 [(set_attr "type" "multi")
9414 (set_attr "length" "8")])
9415
9416 (define_insn "tld_offset_load"
9417 [(set (match_operand:SI 0 "register_operand" "=r")
9418 (plus:SI (unspec:SI [(match_operand 1 "tld_symbolic_operand" "")]
9419 UNSPEC_TLSLDO)
9420 (match_operand:SI 2 "register_operand" "r")))
9421 (clobber (reg:SI 1))]
9422 ""
9423 "*
9424 {
9425 return \"addil LR'%1-$tls_dtpoff$,%2\;ldo RR'%1-$tls_dtpoff$(%%r1),%0\";
9426 }"
9427 [(set_attr "type" "multi")
9428 (set_attr "length" "8")])
9429
9430 (define_insn "tp_load"
9431 [(set (match_operand:SI 0 "register_operand" "=r")
9432 (unspec:SI [(const_int 0)] UNSPEC_TP))]
9433 ""
9434 "mfctl %%cr27,%0"
9435 [(set_attr "type" "multi")
9436 (set_attr "length" "4")])
9437
9438 (define_insn "tie_load"
9439 [(set (match_operand:SI 0 "register_operand" "=r")
9440 (unspec:SI [(match_operand 1 "tie_symbolic_operand" "")] UNSPEC_TLSIE))
9441 (clobber (reg:SI 1))
9442 (use (reg:SI 27))]
9443 ""
9444 "*
9445 {
9446 return \"addil LR'%1-$tls_ieoff$,%%r27\;ldw RR'%1-$tls_ieoff$(%%r1),%0\";
9447 }"
9448 [(set_attr "type" "multi")
9449 (set_attr "length" "8")])
9450
9451 (define_insn "tie_load_pic"
9452 [(set (match_operand:SI 0 "register_operand" "=r")
9453 (unspec:SI [(match_operand 1 "tie_symbolic_operand" "")] UNSPEC_TLSIE_PIC))
9454 (clobber (reg:SI 1))
9455 (use (reg:SI 19))]
9456 ""
9457 "*
9458 {
9459 return \"addil LT'%1-$tls_ieoff$,%%r19\;ldw RT'%1-$tls_ieoff$(%%r1),%0\";
9460 }"
9461 [(set_attr "type" "multi")
9462 (set_attr "length" "8")])
9463
9464 (define_insn "tle_load"
9465 [(set (match_operand:SI 0 "register_operand" "=r")
9466 (plus:SI (unspec:SI [(match_operand 1 "tle_symbolic_operand" "")]
9467 UNSPEC_TLSLE)
9468 (match_operand:SI 2 "register_operand" "r")))
9469 (clobber (reg:SI 1))]
9470 ""
9471 "addil LR'%1-$tls_leoff$,%2\;ldo RR'%1-$tls_leoff$(%%r1),%0"
9472 [(set_attr "type" "multi")
9473 (set_attr "length" "8")])