OSDN Git Service

* pa.md (MAX_12BIT_OFFSET, MAX_17BIT_OFFSET): Define and use new
[pf3gnuchains/gcc-fork.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 Free Software Foundation, Inc.
4 ;;   Contributed by the Center for Software Science at the University
5 ;;   of Utah.
6
7 ;; This file is part of GCC.
8
9 ;; GCC is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; GCC is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GCC; see the file COPYING.  If not, write to
21 ;; the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 ;; Boston, MA 02110-1301, USA.
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   ])
43
44 ;; UNSPEC_VOLATILE:
45
46 (define_constants
47   [(UNSPECV_BLOCKAGE    0)      ; blockage
48    (UNSPECV_DCACHE      1)      ; dcacheflush
49    (UNSPECV_ICACHE      2)      ; icacheflush
50    (UNSPECV_OPC         3)      ; outline_prologue_call
51    (UNSPECV_OEC         4)      ; outline_epilogue_call
52    (UNSPECV_LONGJMP     5)      ; builtin_longjmp
53   ])
54
55 ;; Maximum pc-relative branch offsets.
56
57 ;; These numbers are a bit smaller than the maximum allowable offsets
58 ;; so that a few instructions may be inserted before the actual branch.
59
60 (define_constants
61   [(MAX_12BIT_OFFSET     8184)  ; 12-bit branch
62    (MAX_17BIT_OFFSET   262100)  ; 17-bit branch
63   ])
64
65 ;; Insn type.  Used to default other attribute values.
66
67 ;; type "unary" insns have one input operand (1) and one output operand (0)
68 ;; type "binary" insns have two input operands (1,2) and one output (0)
69
70 (define_attr "type"
71   "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"
72   (const_string "binary"))
73
74 (define_attr "pa_combine_type"
75   "fmpy,faddsub,uncond_branch,addmove,none"
76   (const_string "none"))
77
78 ;; Processor type (for scheduling, not code generation) -- this attribute
79 ;; must exactly match the processor_type enumeration in pa.h.
80 ;;
81 ;; FIXME: Add 800 scheduling for completeness?
82
83 (define_attr "cpu" "700,7100,7100LC,7200,7300,8000" (const (symbol_ref "pa_cpu_attr")))
84
85 ;; Length (in # of bytes).
86 (define_attr "length" ""
87   (cond [(eq_attr "type" "load,fpload")
88          (if_then_else (match_operand 1 "symbolic_memory_operand" "")
89                        (const_int 8) (const_int 4))
90
91          (eq_attr "type" "store,fpstore")
92          (if_then_else (match_operand 0 "symbolic_memory_operand" "")
93                        (const_int 8) (const_int 4))
94
95          (eq_attr "type" "binary,shift,nullshift")
96          (if_then_else (match_operand 2 "arith_operand" "")
97                        (const_int 4) (const_int 12))
98
99          (eq_attr "type" "move,unary,shift,nullshift")
100          (if_then_else (match_operand 1 "arith_operand" "")
101                        (const_int 4) (const_int 8))]
102
103         (const_int 4)))
104
105 (define_asm_attributes
106   [(set_attr "length" "4")
107    (set_attr "type" "multi")])
108
109 ;; Attributes for instruction and branch scheduling
110
111 ;; For conditional branches.
112 (define_attr "in_branch_delay" "false,true"
113   (if_then_else (and (eq_attr "type" "!uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch")
114                      (eq_attr "length" "4"))
115                 (const_string "true")
116                 (const_string "false")))
117
118 ;; Disallow instructions which use the FPU since they will tie up the FPU
119 ;; even if the instruction is nullified.
120 (define_attr "in_nullified_branch_delay" "false,true"
121   (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")
122                      (eq_attr "length" "4"))
123                 (const_string "true")
124                 (const_string "false")))
125
126 ;; For calls and millicode calls.  Allow unconditional branches in the
127 ;; delay slot.
128 (define_attr "in_call_delay" "false,true"
129   (cond [(and (eq_attr "type" "!uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch")
130               (eq_attr "length" "4"))
131            (const_string "true")
132          (eq_attr "type" "uncond_branch")
133            (if_then_else (ne (symbol_ref "TARGET_JUMP_IN_DELAY")
134                              (const_int 0))
135                          (const_string "true")
136                          (const_string "false"))]
137         (const_string "false")))
138
139
140 ;; Call delay slot description.
141 (define_delay (eq_attr "type" "call")
142   [(eq_attr "in_call_delay" "true") (nil) (nil)])
143
144 ;; Millicode call delay slot description.
145 (define_delay (eq_attr "type" "milli")
146   [(eq_attr "in_call_delay" "true") (nil) (nil)])
147
148 ;; Return and other similar instructions.
149 (define_delay (eq_attr "type" "btable_branch,branch,parallel_branch")
150   [(eq_attr "in_branch_delay" "true") (nil) (nil)])
151
152 ;; Floating point conditional branch delay slot description.
153 (define_delay (eq_attr "type" "fbranch")
154   [(eq_attr "in_branch_delay" "true")
155    (eq_attr "in_nullified_branch_delay" "true")
156    (nil)])
157
158 ;; Integer conditional branch delay slot description.
159 ;; Nullification of conditional branches on the PA is dependent on the
160 ;; direction of the branch.  Forward branches nullify true and
161 ;; backward branches nullify false.  If the direction is unknown
162 ;; then nullification is not allowed.
163 (define_delay (eq_attr "type" "cbranch")
164   [(eq_attr "in_branch_delay" "true")
165    (and (eq_attr "in_nullified_branch_delay" "true")
166         (attr_flag "forward"))
167    (and (eq_attr "in_nullified_branch_delay" "true")
168         (attr_flag "backward"))])
169
170 (define_delay (and (eq_attr "type" "uncond_branch")
171                    (eq (symbol_ref "following_call (insn)")
172                        (const_int 0)))
173   [(eq_attr "in_branch_delay" "true") (nil) (nil)])
174
175 ;; Memory. Disregarding Cache misses, the Mustang memory times are:
176 ;; load: 2, fpload: 3
177 ;; store, fpstore: 3, no D-cache operations should be scheduled.
178
179 ;; The Timex (aka 700) has two floating-point units: ALU, and MUL/DIV/SQRT.
180 ;; Timings:
181 ;; Instruction  Time    Unit    Minimum Distance (unit contention)
182 ;; fcpy         3       ALU     2
183 ;; fabs         3       ALU     2
184 ;; fadd         3       ALU     2
185 ;; fsub         3       ALU     2
186 ;; fcmp         3       ALU     2
187 ;; fcnv         3       ALU     2
188 ;; fmpyadd      3       ALU,MPY 2
189 ;; fmpysub      3       ALU,MPY 2
190 ;; fmpycfxt     3       ALU,MPY 2
191 ;; fmpy         3       MPY     2
192 ;; fmpyi        3       MPY     2
193 ;; fdiv,sgl     10      MPY     10
194 ;; fdiv,dbl     12      MPY     12
195 ;; fsqrt,sgl    14      MPY     14
196 ;; fsqrt,dbl    18      MPY     18
197 ;;
198 ;; We don't model fmpyadd/fmpysub properly as those instructions
199 ;; keep both the FP ALU and MPY units busy.  Given that these
200 ;; processors are obsolete, I'm not going to spend the time to
201 ;; model those instructions correctly.
202
203 (define_automaton "pa700")
204 (define_cpu_unit "dummy_700,mem_700,fpalu_700,fpmpy_700" "pa700")
205
206 (define_insn_reservation "W0" 4
207   (and (eq_attr "type" "fpcc")
208        (eq_attr "cpu" "700"))
209   "fpalu_700*2")
210
211 (define_insn_reservation "W1" 3
212   (and (eq_attr "type" "fpalu")
213        (eq_attr "cpu" "700"))
214   "fpalu_700*2")
215
216 (define_insn_reservation "W2" 3
217   (and (eq_attr "type" "fpmulsgl,fpmuldbl")
218        (eq_attr "cpu" "700"))
219   "fpmpy_700*2")
220
221 (define_insn_reservation "W3" 10
222   (and (eq_attr "type" "fpdivsgl")
223        (eq_attr "cpu" "700"))
224   "fpmpy_700*10")
225
226 (define_insn_reservation "W4" 12
227   (and (eq_attr "type" "fpdivdbl")
228        (eq_attr "cpu" "700"))
229   "fpmpy_700*12")
230
231 (define_insn_reservation "W5" 14
232   (and (eq_attr "type" "fpsqrtsgl")
233        (eq_attr "cpu" "700"))
234   "fpmpy_700*14")
235
236 (define_insn_reservation "W6" 18
237   (and (eq_attr "type" "fpsqrtdbl")
238        (eq_attr "cpu" "700"))
239   "fpmpy_700*18")
240
241 (define_insn_reservation "W7" 2
242   (and (eq_attr "type" "load")
243        (eq_attr "cpu" "700"))
244   "mem_700")
245
246 (define_insn_reservation "W8" 2
247   (and (eq_attr "type" "fpload")
248        (eq_attr "cpu" "700"))
249   "mem_700")
250
251 (define_insn_reservation "W9" 3
252   (and (eq_attr "type" "store")
253        (eq_attr "cpu" "700"))
254   "mem_700*3")
255
256 (define_insn_reservation "W10" 3
257   (and (eq_attr "type" "fpstore")
258        (eq_attr "cpu" "700"))
259   "mem_700*3")
260
261 (define_insn_reservation "W11" 1
262   (and (eq_attr "type" "!fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpdivdbl,fpsqrtsgl,fpsqrtdbl,load,fpload,store,fpstore")
263        (eq_attr "cpu" "700"))
264   "dummy_700")
265
266 ;; We have a bypass for all computations in the FP unit which feed an
267 ;; FP store as long as the sizes are the same.
268 (define_bypass 2 "W1,W2" "W10" "hppa_fpstore_bypass_p")
269 (define_bypass 9 "W3" "W10" "hppa_fpstore_bypass_p")
270 (define_bypass 11 "W4" "W10" "hppa_fpstore_bypass_p")
271 (define_bypass 13 "W5" "W10" "hppa_fpstore_bypass_p")
272 (define_bypass 17 "W6" "W10" "hppa_fpstore_bypass_p")
273
274 ;; We have an "anti-bypass" for FP loads which feed an FP store.
275 (define_bypass 4 "W8" "W10" "hppa_fpstore_bypass_p")
276
277 ;; Function units for the 7100 and 7150.  The 7100/7150 can dual-issue
278 ;; floating point computations with non-floating point computations (fp loads
279 ;; and stores are not fp computations).
280 ;;
281 ;; Memory. Disregarding Cache misses, memory loads take two cycles; stores also
282 ;; take two cycles, during which no Dcache operations should be scheduled.
283 ;; Any special cases are handled in pa_adjust_cost.  The 7100, 7150 and 7100LC
284 ;; all have the same memory characteristics if one disregards cache misses.
285 ;;
286 ;; The 7100/7150 has three floating-point units: ALU, MUL, and DIV.
287 ;; There's no value in modeling the ALU and MUL separately though
288 ;; since there can never be a functional unit conflict given the
289 ;; latency and issue rates for those units.
290 ;;
291 ;; Timings:
292 ;; Instruction  Time    Unit    Minimum Distance (unit contention)
293 ;; fcpy         2       ALU     1
294 ;; fabs         2       ALU     1
295 ;; fadd         2       ALU     1
296 ;; fsub         2       ALU     1
297 ;; fcmp         2       ALU     1
298 ;; fcnv         2       ALU     1
299 ;; fmpyadd      2       ALU,MPY 1
300 ;; fmpysub      2       ALU,MPY 1
301 ;; fmpycfxt     2       ALU,MPY 1
302 ;; fmpy         2       MPY     1
303 ;; fmpyi        2       MPY     1
304 ;; fdiv,sgl     8       DIV     8
305 ;; fdiv,dbl     15      DIV     15
306 ;; fsqrt,sgl    8       DIV     8
307 ;; fsqrt,dbl    15      DIV     15
308
309 (define_automaton "pa7100")
310 (define_cpu_unit "i_7100, f_7100,fpmac_7100,fpdivsqrt_7100,mem_7100" "pa7100")
311
312 (define_insn_reservation "X0" 2
313   (and (eq_attr "type" "fpcc,fpalu,fpmulsgl,fpmuldbl")
314        (eq_attr "cpu" "7100"))
315   "f_7100,fpmac_7100")
316
317 (define_insn_reservation "X1" 8
318   (and (eq_attr "type" "fpdivsgl,fpsqrtsgl")
319        (eq_attr "cpu" "7100"))
320   "f_7100+fpdivsqrt_7100,fpdivsqrt_7100*7")
321
322 (define_insn_reservation "X2" 15
323   (and (eq_attr "type" "fpdivdbl,fpsqrtdbl")
324        (eq_attr "cpu" "7100"))
325   "f_7100+fpdivsqrt_7100,fpdivsqrt_7100*14")
326
327 (define_insn_reservation "X3" 2
328   (and (eq_attr "type" "load")
329        (eq_attr "cpu" "7100"))
330   "i_7100+mem_7100")
331
332 (define_insn_reservation "X4" 2
333   (and (eq_attr "type" "fpload")
334        (eq_attr "cpu" "7100"))
335   "i_7100+mem_7100")
336
337 (define_insn_reservation "X5" 2
338   (and (eq_attr "type" "store")
339        (eq_attr "cpu" "7100"))
340   "i_7100+mem_7100,mem_7100")
341
342 (define_insn_reservation "X6" 2
343   (and (eq_attr "type" "fpstore")
344        (eq_attr "cpu" "7100"))
345   "i_7100+mem_7100,mem_7100")
346
347 (define_insn_reservation "X7" 1
348   (and (eq_attr "type" "!fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpsqrtsgl,fpdivdbl,fpsqrtdbl,load,fpload,store,fpstore")
349        (eq_attr "cpu" "7100"))
350   "i_7100")
351
352 ;; We have a bypass for all computations in the FP unit which feed an
353 ;; FP store as long as the sizes are the same.
354 (define_bypass 1 "X0" "X6" "hppa_fpstore_bypass_p")
355 (define_bypass 7 "X1" "X6" "hppa_fpstore_bypass_p")
356 (define_bypass 14 "X2" "X6" "hppa_fpstore_bypass_p")
357
358 ;; We have an "anti-bypass" for FP loads which feed an FP store.
359 (define_bypass 3 "X4" "X6" "hppa_fpstore_bypass_p")
360
361 ;; The 7100LC has three floating-point units: ALU, MUL, and DIV.
362 ;; There's no value in modeling the ALU and MUL separately though
363 ;; since there can never be a functional unit conflict that
364 ;; can be avoided given the latency, issue rates and mandatory
365 ;; one cycle cpu-wide lock for a double precision fp multiply.
366 ;;
367 ;; Timings:
368 ;; Instruction  Time    Unit    Minimum Distance (unit contention)
369 ;; fcpy         2       ALU     1
370 ;; fabs         2       ALU     1
371 ;; fadd         2       ALU     1
372 ;; fsub         2       ALU     1
373 ;; fcmp         2       ALU     1
374 ;; fcnv         2       ALU     1
375 ;; fmpyadd,sgl  2       ALU,MPY 1
376 ;; fmpyadd,dbl  3       ALU,MPY 2
377 ;; fmpysub,sgl  2       ALU,MPY 1
378 ;; fmpysub,dbl  3       ALU,MPY 2
379 ;; fmpycfxt,sgl 2       ALU,MPY 1
380 ;; fmpycfxt,dbl 3       ALU,MPY 2
381 ;; fmpy,sgl     2       MPY     1
382 ;; fmpy,dbl     3       MPY     2
383 ;; fmpyi        3       MPY     2
384 ;; fdiv,sgl     8       DIV     8
385 ;; fdiv,dbl     15      DIV     15
386 ;; fsqrt,sgl    8       DIV     8
387 ;; fsqrt,dbl    15      DIV     15
388 ;;
389 ;; The PA7200 is just like the PA7100LC except that there is
390 ;; no store-store penalty.
391 ;;
392 ;; The PA7300 is just like the PA7200 except that there is
393 ;; no store-load penalty.
394 ;;
395 ;; Note there are some aspects of the 7100LC we are not modeling
396 ;; at the moment.  I'll be reviewing the 7100LC scheduling info
397 ;; shortly and updating this description.
398 ;;
399 ;;   load-load pairs
400 ;;   store-store pairs
401 ;;   other issue modeling
402
403 (define_automaton "pa7100lc")
404 (define_cpu_unit "i0_7100lc, i1_7100lc, f_7100lc" "pa7100lc")
405 (define_cpu_unit "fpmac_7100lc" "pa7100lc")
406 (define_cpu_unit "mem_7100lc" "pa7100lc")
407
408 ;; Double precision multiplies lock the entire CPU for one
409 ;; cycle.  There is no way to avoid this lock and trying to
410 ;; schedule around the lock is pointless and thus there is no
411 ;; value in trying to model this lock.
412 ;;
413 ;; Not modeling the lock allows us to treat fp multiplies just
414 ;; like any other FP alu instruction.  It allows for a smaller
415 ;; DFA and may reduce register pressure.
416 (define_insn_reservation "Y0" 2
417   (and (eq_attr "type" "fpcc,fpalu,fpmulsgl,fpmuldbl")
418        (eq_attr "cpu" "7100LC,7200,7300"))
419   "f_7100lc,fpmac_7100lc")
420
421 ;; fp division and sqrt instructions lock the entire CPU for
422 ;; 7 cycles (single precision) or 14 cycles (double precision).
423 ;; There is no way to avoid this lock and trying to schedule
424 ;; around the lock is pointless and thus there is no value in
425 ;; trying to model this lock.  Not modeling the lock allows
426 ;; for a smaller DFA and may reduce register pressure.
427 (define_insn_reservation "Y1" 1
428   (and (eq_attr "type" "fpdivsgl,fpsqrtsgl,fpdivdbl,fpsqrtdbl")
429        (eq_attr "cpu" "7100LC,7200,7300"))
430   "f_7100lc")
431
432 (define_insn_reservation "Y2" 2
433   (and (eq_attr "type" "load")
434        (eq_attr "cpu" "7100LC,7200,7300"))
435   "i1_7100lc+mem_7100lc")
436
437 (define_insn_reservation "Y3" 2
438   (and (eq_attr "type" "fpload")
439        (eq_attr "cpu" "7100LC,7200,7300"))
440   "i1_7100lc+mem_7100lc")
441
442 (define_insn_reservation "Y4" 2
443   (and (eq_attr "type" "store")
444        (eq_attr "cpu" "7100LC"))
445   "i1_7100lc+mem_7100lc,mem_7100lc")
446
447 (define_insn_reservation "Y5" 2
448   (and (eq_attr "type" "fpstore")
449        (eq_attr "cpu" "7100LC"))
450   "i1_7100lc+mem_7100lc,mem_7100lc")
451
452 (define_insn_reservation "Y6" 1
453   (and (eq_attr "type" "shift,nullshift")
454        (eq_attr "cpu" "7100LC,7200,7300"))
455   "i1_7100lc")
456
457 (define_insn_reservation "Y7" 1
458   (and (eq_attr "type" "!fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpsqrtsgl,fpdivdbl,fpsqrtdbl,load,fpload,store,fpstore,shift,nullshift")
459        (eq_attr "cpu" "7100LC,7200,7300"))
460   "(i0_7100lc|i1_7100lc)")
461
462 ;; The 7200 has a store-load penalty
463 (define_insn_reservation "Y8" 2
464   (and (eq_attr "type" "store")
465        (eq_attr "cpu" "7200"))
466   "i1_7100lc,mem_7100lc")
467
468 (define_insn_reservation "Y9" 2
469   (and (eq_attr "type" "fpstore")
470        (eq_attr "cpu" "7200"))
471   "i1_7100lc,mem_7100lc")
472
473 ;; The 7300 has no penalty for store-store or store-load
474 (define_insn_reservation "Y10" 2
475   (and (eq_attr "type" "store")
476        (eq_attr "cpu" "7300"))
477   "i1_7100lc")
478
479 (define_insn_reservation "Y11" 2
480   (and (eq_attr "type" "fpstore")
481        (eq_attr "cpu" "7300"))
482   "i1_7100lc")
483
484 ;; We have an "anti-bypass" for FP loads which feed an FP store.
485 (define_bypass 3 "Y3" "Y5,Y9,Y11" "hppa_fpstore_bypass_p")
486
487 ;; Scheduling for the PA8000 is somewhat different than scheduling for a
488 ;; traditional architecture.
489 ;;
490 ;; The PA8000 has a large (56) entry reorder buffer that is split between
491 ;; memory and non-memory operations.
492 ;;
493 ;; The PA8000 can issue two memory and two non-memory operations per cycle to
494 ;; the function units, with the exception of branches and multi-output
495 ;; instructions.  The PA8000 can retire two non-memory operations per cycle
496 ;; and two memory operations per cycle, only one of which may be a store.
497 ;;
498 ;; Given the large reorder buffer, the processor can hide most latencies.
499 ;; According to HP, they've got the best results by scheduling for retirement
500 ;; bandwidth with limited latency scheduling for floating point operations.
501 ;; Latency for integer operations and memory references is ignored.
502 ;;
503 ;;
504 ;; We claim floating point operations have a 2 cycle latency and are
505 ;; fully pipelined, except for div and sqrt which are not pipelined and
506 ;; take from 17 to 31 cycles to complete.
507 ;;
508 ;; It's worth noting that there is no way to saturate all the functional
509 ;; units on the PA8000 as there is not enough issue bandwidth.
510
511 (define_automaton "pa8000")
512 (define_cpu_unit "inm0_8000, inm1_8000, im0_8000, im1_8000" "pa8000")
513 (define_cpu_unit "rnm0_8000, rnm1_8000, rm0_8000, rm1_8000" "pa8000")
514 (define_cpu_unit "store_8000" "pa8000")
515 (define_cpu_unit "f0_8000, f1_8000" "pa8000")
516 (define_cpu_unit "fdivsqrt0_8000, fdivsqrt1_8000" "pa8000")
517 (define_reservation "inm_8000" "inm0_8000 | inm1_8000")
518 (define_reservation "im_8000" "im0_8000 | im1_8000")
519 (define_reservation "rnm_8000" "rnm0_8000 | rnm1_8000")
520 (define_reservation "rm_8000" "rm0_8000 | rm1_8000")
521 (define_reservation "f_8000" "f0_8000 | f1_8000")
522 (define_reservation "fdivsqrt_8000" "fdivsqrt0_8000 | fdivsqrt1_8000")
523
524 ;; We can issue any two memops per cycle, but we can only retire
525 ;; one memory store per cycle.  We assume that the reorder buffer
526 ;; will hide any memory latencies per HP's recommendation.
527 (define_insn_reservation "Z0" 0
528   (and
529     (eq_attr "type" "load,fpload")
530     (eq_attr "cpu" "8000"))
531   "im_8000,rm_8000")
532
533 (define_insn_reservation "Z1" 0
534   (and
535     (eq_attr "type" "store,fpstore")
536     (eq_attr "cpu" "8000"))
537   "im_8000,rm_8000+store_8000")
538
539 ;; We can issue and retire two non-memory operations per cycle with
540 ;; a few exceptions (branches).  This group catches those we want
541 ;; to assume have zero latency.
542 (define_insn_reservation "Z2" 0
543   (and
544     (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")
545     (eq_attr "cpu" "8000"))
546   "inm_8000,rnm_8000")
547
548 ;; Branches use both slots in the non-memory issue and
549 ;; retirement unit.
550 (define_insn_reservation "Z3" 0
551   (and
552     (eq_attr "type" "uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch")
553     (eq_attr "cpu" "8000"))
554   "inm0_8000+inm1_8000,rnm0_8000+rnm1_8000")
555
556 ;; We partial latency schedule the floating point units.
557 ;; They can issue/retire two at a time in the non-memory
558 ;; units.  We fix their latency at 2 cycles and they
559 ;; are fully pipelined.
560 (define_insn_reservation "Z4" 1
561  (and
562    (eq_attr "type" "fpcc,fpalu,fpmulsgl,fpmuldbl")
563    (eq_attr "cpu" "8000"))
564  "inm_8000,f_8000,rnm_8000")
565
566 ;; The fdivsqrt units are not pipelined and have a very long latency.  
567 ;; To keep the DFA from exploding, we do not show all the
568 ;; reservations for the divsqrt unit.
569 (define_insn_reservation "Z5" 17
570  (and
571    (eq_attr "type" "fpdivsgl,fpsqrtsgl")
572    (eq_attr "cpu" "8000"))
573  "inm_8000,fdivsqrt_8000*6,rnm_8000")
574
575 (define_insn_reservation "Z6" 31
576  (and
577    (eq_attr "type" "fpdivdbl,fpsqrtdbl")
578    (eq_attr "cpu" "8000"))
579  "inm_8000,fdivsqrt_8000*6,rnm_8000")
580
581 (include "predicates.md")
582 \f
583 ;; Compare instructions.
584 ;; This controls RTL generation and register allocation.
585
586 ;; We generate RTL for comparisons and branches by having the cmpxx
587 ;; patterns store away the operands.  Then, the scc and bcc patterns
588 ;; emit RTL for both the compare and the branch.
589 ;;
590
591 (define_expand "cmpdi"
592   [(set (reg:CC 0)
593         (compare:CC (match_operand:DI 0 "reg_or_0_operand" "")
594                     (match_operand:DI 1 "register_operand" "")))]
595   "TARGET_64BIT"
596
597   "
598 {
599  hppa_compare_op0 = operands[0];
600  hppa_compare_op1 = operands[1];
601  hppa_branch_type = CMP_SI;
602  DONE;
603 }")
604
605 (define_expand "cmpsi"
606   [(set (reg:CC 0)
607         (compare:CC (match_operand:SI 0 "reg_or_0_operand" "")
608                     (match_operand:SI 1 "arith5_operand" "")))]
609   ""
610   "
611 {
612  hppa_compare_op0 = operands[0];
613  hppa_compare_op1 = operands[1];
614  hppa_branch_type = CMP_SI;
615  DONE;
616 }")
617
618 (define_expand "cmpsf"
619   [(set (reg:CCFP 0)
620         (compare:CCFP (match_operand:SF 0 "reg_or_0_operand" "")
621                       (match_operand:SF 1 "reg_or_0_operand" "")))]
622   "! TARGET_SOFT_FLOAT"
623   "
624 {
625   hppa_compare_op0 = operands[0];
626   hppa_compare_op1 = operands[1];
627   hppa_branch_type = CMP_SF;
628   DONE;
629 }")
630
631 (define_expand "cmpdf"
632   [(set (reg:CCFP 0)
633       (compare:CCFP (match_operand:DF 0 "reg_or_0_operand" "")
634                     (match_operand:DF 1 "reg_or_0_operand" "")))]
635   "! TARGET_SOFT_FLOAT"
636   "
637 {
638   hppa_compare_op0 = operands[0];
639   hppa_compare_op1 = operands[1];
640   hppa_branch_type = CMP_DF;
641   DONE;
642 }")
643
644 (define_insn ""
645   [(set (reg:CCFP 0)
646         (match_operator:CCFP 2 "comparison_operator"
647                              [(match_operand:SF 0 "reg_or_0_operand" "fG")
648                               (match_operand:SF 1 "reg_or_0_operand" "fG")]))]
649   "! TARGET_SOFT_FLOAT"
650   "fcmp,sgl,%Y2 %f0,%f1"
651   [(set_attr "length" "4")
652    (set_attr "type" "fpcc")])
653
654 (define_insn ""
655   [(set (reg:CCFP 0)
656         (match_operator:CCFP 2 "comparison_operator"
657                              [(match_operand:DF 0 "reg_or_0_operand" "fG")
658                               (match_operand:DF 1 "reg_or_0_operand" "fG")]))]
659   "! TARGET_SOFT_FLOAT"
660   "fcmp,dbl,%Y2 %f0,%f1"
661   [(set_attr "length" "4")
662    (set_attr "type" "fpcc")])
663
664 ;; Provide a means to emit the movccfp0 and movccfp1 optimization
665 ;; placeholders.  This is necessary in rare situations when a
666 ;; placeholder is re-emitted (see PR 8705).
667
668 (define_expand "movccfp"
669   [(set (reg:CCFP 0)
670         (match_operand 0 "const_int_operand" ""))]
671   "! TARGET_SOFT_FLOAT"
672   "
673 {
674   if ((unsigned HOST_WIDE_INT) INTVAL (operands[0]) > 1)
675     FAIL;
676 }")
677
678 ;; The following patterns are optimization placeholders.  In almost
679 ;; all cases, the user of the condition code will be simplified and the
680 ;; original condition code setting insn should be eliminated.
681
682 (define_insn "*movccfp0"
683   [(set (reg:CCFP 0)
684         (const_int 0))]
685   "! TARGET_SOFT_FLOAT"
686   "fcmp,dbl,= %%fr0,%%fr0"
687   [(set_attr "length" "4")
688    (set_attr "type" "fpcc")])
689
690 (define_insn "*movccfp1"
691   [(set (reg:CCFP 0)
692         (const_int 1))]
693   "! TARGET_SOFT_FLOAT"
694   "fcmp,dbl,!= %%fr0,%%fr0"
695   [(set_attr "length" "4")
696    (set_attr "type" "fpcc")])
697
698 ;; scc insns.
699
700 (define_expand "seq"
701   [(set (match_operand:SI 0 "register_operand" "")
702         (eq:SI (match_dup 1)
703                (match_dup 2)))]
704   "!TARGET_64BIT"
705   "
706 {
707   /* fp scc patterns rarely match, and are not a win on the PA.  */
708   if (hppa_branch_type != CMP_SI)
709     FAIL;
710   /* set up operands from compare.  */
711   operands[1] = hppa_compare_op0;
712   operands[2] = hppa_compare_op1;
713   /* fall through and generate default code */
714 }")
715
716 (define_expand "sne"
717   [(set (match_operand:SI 0 "register_operand" "")
718         (ne:SI (match_dup 1)
719                (match_dup 2)))]
720   "!TARGET_64BIT"
721   "
722 {
723   /* fp scc patterns rarely match, and are not a win on the PA.  */
724   if (hppa_branch_type != CMP_SI)
725     FAIL;
726   operands[1] = hppa_compare_op0;
727   operands[2] = hppa_compare_op1;
728 }")
729
730 (define_expand "slt"
731   [(set (match_operand:SI 0 "register_operand" "")
732         (lt:SI (match_dup 1)
733                (match_dup 2)))]
734   "!TARGET_64BIT"
735   "
736 {
737   /* fp scc patterns rarely match, and are not a win on the PA.  */
738   if (hppa_branch_type != CMP_SI)
739     FAIL;
740   operands[1] = hppa_compare_op0;
741   operands[2] = hppa_compare_op1;
742 }")
743
744 (define_expand "sgt"
745   [(set (match_operand:SI 0 "register_operand" "")
746         (gt:SI (match_dup 1)
747                (match_dup 2)))]
748   "!TARGET_64BIT"
749   "
750 {
751   /* fp scc patterns rarely match, and are not a win on the PA.  */
752   if (hppa_branch_type != CMP_SI)
753     FAIL;
754   operands[1] = hppa_compare_op0;
755   operands[2] = hppa_compare_op1;
756 }")
757
758 (define_expand "sle"
759   [(set (match_operand:SI 0 "register_operand" "")
760         (le:SI (match_dup 1)
761                (match_dup 2)))]
762   "!TARGET_64BIT"
763   "
764 {
765   /* fp scc patterns rarely match, and are not a win on the PA.  */
766   if (hppa_branch_type != CMP_SI)
767     FAIL;
768   operands[1] = hppa_compare_op0;
769   operands[2] = hppa_compare_op1;
770 }")
771
772 (define_expand "sge"
773   [(set (match_operand:SI 0 "register_operand" "")
774         (ge:SI (match_dup 1)
775                (match_dup 2)))]
776   "!TARGET_64BIT"
777   "
778 {
779   /* fp scc patterns rarely match, and are not a win on the PA.  */
780   if (hppa_branch_type != CMP_SI)
781     FAIL;
782   operands[1] = hppa_compare_op0;
783   operands[2] = hppa_compare_op1;
784 }")
785
786 (define_expand "sltu"
787   [(set (match_operand:SI 0 "register_operand" "")
788         (ltu:SI (match_dup 1)
789                 (match_dup 2)))]
790   "!TARGET_64BIT"
791   "
792 {
793   if (hppa_branch_type != CMP_SI)
794     FAIL;
795   operands[1] = hppa_compare_op0;
796   operands[2] = hppa_compare_op1;
797 }")
798
799 (define_expand "sgtu"
800   [(set (match_operand:SI 0 "register_operand" "")
801         (gtu:SI (match_dup 1)
802                 (match_dup 2)))]
803   "!TARGET_64BIT"
804   "
805 {
806   if (hppa_branch_type != CMP_SI)
807     FAIL;
808   operands[1] = hppa_compare_op0;
809   operands[2] = hppa_compare_op1;
810 }")
811
812 (define_expand "sleu"
813   [(set (match_operand:SI 0 "register_operand" "")
814         (leu:SI (match_dup 1)
815                 (match_dup 2)))]
816   "!TARGET_64BIT"
817   "
818 {
819   if (hppa_branch_type != CMP_SI)
820     FAIL;
821   operands[1] = hppa_compare_op0;
822   operands[2] = hppa_compare_op1;
823 }")
824
825 (define_expand "sgeu"
826   [(set (match_operand:SI 0 "register_operand" "")
827         (geu:SI (match_dup 1)
828                 (match_dup 2)))]
829   "!TARGET_64BIT"
830   "
831 {
832   if (hppa_branch_type != CMP_SI)
833     FAIL;
834   operands[1] = hppa_compare_op0;
835   operands[2] = hppa_compare_op1;
836 }")
837
838 ;; Instruction canonicalization puts immediate operands second, which
839 ;; is the reverse of what we want.
840
841 (define_insn "scc"
842   [(set (match_operand:SI 0 "register_operand" "=r")
843         (match_operator:SI 3 "comparison_operator"
844                            [(match_operand:SI 1 "register_operand" "r")
845                             (match_operand:SI 2 "arith11_operand" "rI")]))]
846   ""
847   "{com%I2clr|cmp%I2clr},%B3 %2,%1,%0\;ldi 1,%0"
848   [(set_attr "type" "binary")
849    (set_attr "length" "8")])
850
851 (define_insn ""
852   [(set (match_operand:DI 0 "register_operand" "=r")
853         (match_operator:DI 3 "comparison_operator"
854                            [(match_operand:DI 1 "register_operand" "r")
855                             (match_operand:DI 2 "arith11_operand" "rI")]))]
856   "TARGET_64BIT"
857   "cmp%I2clr,*%B3 %2,%1,%0\;ldi 1,%0"
858   [(set_attr "type" "binary")
859    (set_attr "length" "8")])
860
861 (define_insn "iorscc"
862   [(set (match_operand:SI 0 "register_operand" "=r")
863         (ior:SI (match_operator:SI 3 "comparison_operator"
864                                    [(match_operand:SI 1 "register_operand" "r")
865                                     (match_operand:SI 2 "arith11_operand" "rI")])
866                 (match_operator:SI 6 "comparison_operator"
867                                    [(match_operand:SI 4 "register_operand" "r")
868                                     (match_operand:SI 5 "arith11_operand" "rI")])))]
869   ""
870   "{com%I2clr|cmp%I2clr},%S3 %2,%1,%%r0\;{com%I5clr|cmp%I5clr},%B6 %5,%4,%0\;ldi 1,%0"
871   [(set_attr "type" "binary")
872    (set_attr "length" "12")])
873
874 (define_insn ""
875   [(set (match_operand:DI 0 "register_operand" "=r")
876         (ior:DI (match_operator:DI 3 "comparison_operator"
877                                    [(match_operand:DI 1 "register_operand" "r")
878                                     (match_operand:DI 2 "arith11_operand" "rI")])
879                 (match_operator:DI 6 "comparison_operator"
880                                    [(match_operand:DI 4 "register_operand" "r")
881                                     (match_operand:DI 5 "arith11_operand" "rI")])))]
882   "TARGET_64BIT"
883   "cmp%I2clr,*%S3 %2,%1,%%r0\;cmp%I5clr,*%B6 %5,%4,%0\;ldi 1,%0"
884   [(set_attr "type" "binary")
885    (set_attr "length" "12")])
886
887 ;; Combiner patterns for common operations performed with the output
888 ;; from an scc insn (negscc and incscc).
889 (define_insn "negscc"
890   [(set (match_operand:SI 0 "register_operand" "=r")
891         (neg:SI (match_operator:SI 3 "comparison_operator"
892                [(match_operand:SI 1 "register_operand" "r")
893                 (match_operand:SI 2 "arith11_operand" "rI")])))]
894   ""
895   "{com%I2clr|cmp%I2clr},%B3 %2,%1,%0\;ldi -1,%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         (neg:DI (match_operator:DI 3 "comparison_operator"
902                [(match_operand:DI 1 "register_operand" "r")
903                 (match_operand:DI 2 "arith11_operand" "rI")])))]
904   "TARGET_64BIT"
905   "cmp%I2clr,*%B3 %2,%1,%0\;ldi -1,%0"
906   [(set_attr "type" "binary")
907    (set_attr "length" "8")])
908
909 ;; Patterns for adding/subtracting the result of a boolean expression from
910 ;; a register.  First we have special patterns that make use of the carry
911 ;; bit, and output only two instructions.  For the cases we can't in
912 ;; general do in two instructions, the incscc pattern at the end outputs
913 ;; two or three instructions.
914
915 (define_insn ""
916   [(set (match_operand:SI 0 "register_operand" "=r")
917         (plus:SI (leu:SI (match_operand:SI 2 "register_operand" "r")
918                          (match_operand:SI 3 "arith11_operand" "rI"))
919                  (match_operand:SI 1 "register_operand" "r")))]
920   ""
921   "sub%I3 %3,%2,%%r0\;{addc|add,c} %%r0,%1,%0"
922   [(set_attr "type" "binary")
923    (set_attr "length" "8")])
924
925 (define_insn ""
926   [(set (match_operand:DI 0 "register_operand" "=r")
927         (plus:DI (leu:DI (match_operand:DI 2 "register_operand" "r")
928                          (match_operand:DI 3 "arith11_operand" "rI"))
929                  (match_operand:DI 1 "register_operand" "r")))]
930   "TARGET_64BIT"
931   "sub%I3 %3,%2,%%r0\;add,dc %%r0,%1,%0"
932   [(set_attr "type" "binary")
933    (set_attr "length" "8")])
934
935 ; This need only accept registers for op3, since canonicalization
936 ; replaces geu with gtu when op3 is an integer.
937 (define_insn ""
938   [(set (match_operand:SI 0 "register_operand" "=r")
939         (plus:SI (geu:SI (match_operand:SI 2 "register_operand" "r")
940                          (match_operand:SI 3 "register_operand" "r"))
941                  (match_operand:SI 1 "register_operand" "r")))]
942   ""
943   "sub %2,%3,%%r0\;{addc|add,c} %%r0,%1,%0"
944   [(set_attr "type" "binary")
945    (set_attr "length" "8")])
946
947 (define_insn ""
948   [(set (match_operand:DI 0 "register_operand" "=r")
949         (plus:DI (geu:DI (match_operand:DI 2 "register_operand" "r")
950                          (match_operand:DI 3 "register_operand" "r"))
951                  (match_operand:DI 1 "register_operand" "r")))]
952   "TARGET_64BIT"
953   "sub %2,%3,%%r0\;add,dc %%r0,%1,%0"
954   [(set_attr "type" "binary")
955    (set_attr "length" "8")])
956
957 ; Match only integers for op3 here.  This is used as canonical form of the
958 ; geu pattern when op3 is an integer.  Don't match registers since we can't
959 ; make better code than the general incscc pattern.
960 (define_insn ""
961   [(set (match_operand:SI 0 "register_operand" "=r")
962         (plus:SI (gtu:SI (match_operand:SI 2 "register_operand" "r")
963                          (match_operand:SI 3 "int11_operand" "I"))
964                  (match_operand:SI 1 "register_operand" "r")))]
965   ""
966   "addi %k3,%2,%%r0\;{addc|add,c} %%r0,%1,%0"
967   [(set_attr "type" "binary")
968    (set_attr "length" "8")])
969
970 (define_insn ""
971   [(set (match_operand:DI 0 "register_operand" "=r")
972         (plus:DI (gtu:DI (match_operand:DI 2 "register_operand" "r")
973                          (match_operand:DI 3 "int11_operand" "I"))
974                  (match_operand:DI 1 "register_operand" "r")))]
975   "TARGET_64BIT"
976   "addi %k3,%2,%%r0\;add,dc %%r0,%1,%0"
977   [(set_attr "type" "binary")
978    (set_attr "length" "8")])
979
980 (define_insn "incscc"
981   [(set (match_operand:SI 0 "register_operand" "=r,r")
982         (plus:SI (match_operator:SI 4 "comparison_operator"
983                     [(match_operand:SI 2 "register_operand" "r,r")
984                      (match_operand:SI 3 "arith11_operand" "rI,rI")])
985                  (match_operand:SI 1 "register_operand" "0,?r")))]
986   ""
987   "@
988    {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi 1,%0,%0
989    {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi,tr 1,%1,%0\;copy %1,%0"
990   [(set_attr "type" "binary,binary")
991    (set_attr "length" "8,12")])
992
993 (define_insn ""
994   [(set (match_operand:DI 0 "register_operand" "=r,r")
995         (plus:DI (match_operator:DI 4 "comparison_operator"
996                     [(match_operand:DI 2 "register_operand" "r,r")
997                      (match_operand:DI 3 "arith11_operand" "rI,rI")])
998                  (match_operand:DI 1 "register_operand" "0,?r")))]
999   "TARGET_64BIT"
1000   "@
1001    cmp%I3clr,*%B4 %3,%2,%%r0\;addi 1,%0,%0
1002    cmp%I3clr,*%B4 %3,%2,%%r0\;addi,tr 1,%1,%0\;copy %1,%0"
1003   [(set_attr "type" "binary,binary")
1004    (set_attr "length" "8,12")])
1005
1006 (define_insn ""
1007   [(set (match_operand:SI 0 "register_operand" "=r")
1008         (minus:SI (match_operand:SI 1 "register_operand" "r")
1009                   (gtu:SI (match_operand:SI 2 "register_operand" "r")
1010                           (match_operand:SI 3 "arith11_operand" "rI"))))]
1011   ""
1012   "sub%I3 %3,%2,%%r0\;{subb|sub,b} %1,%%r0,%0"
1013   [(set_attr "type" "binary")
1014    (set_attr "length" "8")])
1015
1016 (define_insn ""
1017   [(set (match_operand:DI 0 "register_operand" "=r")
1018         (minus:DI (match_operand:DI 1 "register_operand" "r")
1019                   (gtu:DI (match_operand:DI 2 "register_operand" "r")
1020                           (match_operand:DI 3 "arith11_operand" "rI"))))]
1021   "TARGET_64BIT"
1022   "sub%I3 %3,%2,%%r0\;sub,db %1,%%r0,%0"
1023   [(set_attr "type" "binary")
1024    (set_attr "length" "8")])
1025
1026 (define_insn ""
1027   [(set (match_operand:SI 0 "register_operand" "=r")
1028         (minus:SI (minus:SI (match_operand:SI 1 "register_operand" "r")
1029                             (gtu:SI (match_operand:SI 2 "register_operand" "r")
1030                                     (match_operand:SI 3 "arith11_operand" "rI")))
1031                   (match_operand:SI 4 "register_operand" "r")))]
1032   ""
1033   "sub%I3 %3,%2,%%r0\;{subb|sub,b} %1,%4,%0"
1034   [(set_attr "type" "binary")
1035    (set_attr "length" "8")])
1036
1037 (define_insn ""
1038   [(set (match_operand:DI 0 "register_operand" "=r")
1039         (minus:DI (minus:DI (match_operand:DI 1 "register_operand" "r")
1040                             (gtu:DI (match_operand:DI 2 "register_operand" "r")
1041                                     (match_operand:DI 3 "arith11_operand" "rI")))
1042                   (match_operand:DI 4 "register_operand" "r")))]
1043   "TARGET_64BIT"
1044   "sub%I3 %3,%2,%%r0\;sub,db %1,%4,%0"
1045   [(set_attr "type" "binary")
1046    (set_attr "length" "8")])
1047
1048 ; This need only accept registers for op3, since canonicalization
1049 ; replaces ltu with leu when op3 is an integer.
1050 (define_insn ""
1051   [(set (match_operand:SI 0 "register_operand" "=r")
1052         (minus:SI (match_operand:SI 1 "register_operand" "r")
1053                   (ltu:SI (match_operand:SI 2 "register_operand" "r")
1054                           (match_operand:SI 3 "register_operand" "r"))))]
1055   ""
1056   "sub %2,%3,%%r0\;{subb|sub,b} %1,%%r0,%0"
1057   [(set_attr "type" "binary")
1058    (set_attr "length" "8")])
1059
1060 (define_insn ""
1061   [(set (match_operand:DI 0 "register_operand" "=r")
1062         (minus:DI (match_operand:DI 1 "register_operand" "r")
1063                   (ltu:DI (match_operand:DI 2 "register_operand" "r")
1064                           (match_operand:DI 3 "register_operand" "r"))))]
1065   "TARGET_64BIT"
1066   "sub %2,%3,%%r0\;sub,db %1,%%r0,%0"
1067   [(set_attr "type" "binary")
1068    (set_attr "length" "8")])
1069
1070 (define_insn ""
1071   [(set (match_operand:SI 0 "register_operand" "=r")
1072         (minus:SI (minus:SI (match_operand:SI 1 "register_operand" "r")
1073                             (ltu:SI (match_operand:SI 2 "register_operand" "r")
1074                                     (match_operand:SI 3 "register_operand" "r")))
1075                   (match_operand:SI 4 "register_operand" "r")))]
1076   ""
1077   "sub %2,%3,%%r0\;{subb|sub,b} %1,%4,%0"
1078   [(set_attr "type" "binary")
1079    (set_attr "length" "8")])
1080
1081 (define_insn ""
1082   [(set (match_operand:DI 0 "register_operand" "=r")
1083         (minus:DI (minus:DI (match_operand:DI 1 "register_operand" "r")
1084                             (ltu:DI (match_operand:DI 2 "register_operand" "r")
1085                                     (match_operand:DI 3 "register_operand" "r")))
1086                   (match_operand:DI 4 "register_operand" "r")))]
1087   "TARGET_64BIT"
1088   "sub %2,%3,%%r0\;sub,db %1,%4,%0"
1089   [(set_attr "type" "binary")
1090    (set_attr "length" "8")])
1091
1092 ; Match only integers for op3 here.  This is used as canonical form of the
1093 ; ltu pattern when op3 is an integer.  Don't match registers since we can't
1094 ; make better code than the general incscc pattern.
1095 (define_insn ""
1096   [(set (match_operand:SI 0 "register_operand" "=r")
1097         (minus:SI (match_operand:SI 1 "register_operand" "r")
1098                   (leu:SI (match_operand:SI 2 "register_operand" "r")
1099                           (match_operand:SI 3 "int11_operand" "I"))))]
1100   ""
1101   "addi %k3,%2,%%r0\;{subb|sub,b} %1,%%r0,%0"
1102   [(set_attr "type" "binary")
1103    (set_attr "length" "8")])
1104
1105 (define_insn ""
1106   [(set (match_operand:DI 0 "register_operand" "=r")
1107         (minus:DI (match_operand:DI 1 "register_operand" "r")
1108                   (leu:DI (match_operand:DI 2 "register_operand" "r")
1109                           (match_operand:DI 3 "int11_operand" "I"))))]
1110   "TARGET_64BIT"
1111   "addi %k3,%2,%%r0\;sub,db %1,%%r0,%0"
1112   [(set_attr "type" "binary")
1113    (set_attr "length" "8")])
1114
1115 (define_insn ""
1116   [(set (match_operand:SI 0 "register_operand" "=r")
1117         (minus:SI (minus:SI (match_operand:SI 1 "register_operand" "r")
1118                             (leu:SI (match_operand:SI 2 "register_operand" "r")
1119                                     (match_operand:SI 3 "int11_operand" "I")))
1120                   (match_operand:SI 4 "register_operand" "r")))]
1121   ""
1122   "addi %k3,%2,%%r0\;{subb|sub,b} %1,%4,%0"
1123   [(set_attr "type" "binary")
1124    (set_attr "length" "8")])
1125
1126 (define_insn ""
1127   [(set (match_operand:DI 0 "register_operand" "=r")
1128         (minus:DI (minus:DI (match_operand:DI 1 "register_operand" "r")
1129                             (leu:DI (match_operand:DI 2 "register_operand" "r")
1130                                     (match_operand:DI 3 "int11_operand" "I")))
1131                   (match_operand:DI 4 "register_operand" "r")))]
1132   "TARGET_64BIT"
1133   "addi %k3,%2,%%r0\;sub,db %1,%4,%0"
1134   [(set_attr "type" "binary")
1135    (set_attr "length" "8")])
1136
1137 (define_insn "decscc"
1138   [(set (match_operand:SI 0 "register_operand" "=r,r")
1139         (minus:SI (match_operand:SI 1 "register_operand" "0,?r")
1140                   (match_operator:SI 4 "comparison_operator"
1141                      [(match_operand:SI 2 "register_operand" "r,r")
1142                       (match_operand:SI 3 "arith11_operand" "rI,rI")])))]
1143   ""
1144   "@
1145    {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi -1,%0,%0
1146    {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi,tr -1,%1,%0\;copy %1,%0"
1147   [(set_attr "type" "binary,binary")
1148    (set_attr "length" "8,12")])
1149
1150 (define_insn ""
1151   [(set (match_operand:DI 0 "register_operand" "=r,r")
1152         (minus:DI (match_operand:DI 1 "register_operand" "0,?r")
1153                   (match_operator:DI 4 "comparison_operator"
1154                      [(match_operand:DI 2 "register_operand" "r,r")
1155                       (match_operand:DI 3 "arith11_operand" "rI,rI")])))]
1156   "TARGET_64BIT"
1157   "@
1158    cmp%I3clr,*%B4 %3,%2,%%r0\;addi -1,%0,%0
1159    cmp%I3clr,*%B4 %3,%2,%%r0\;addi,tr -1,%1,%0\;copy %1,%0"
1160   [(set_attr "type" "binary,binary")
1161    (set_attr "length" "8,12")])
1162
1163 ; Patterns for max and min.  (There is no need for an earlyclobber in the
1164 ; last alternative since the middle alternative will match if op0 == op1.)
1165
1166 (define_insn "sminsi3"
1167   [(set (match_operand:SI 0 "register_operand" "=r,r,r")
1168         (smin:SI (match_operand:SI 1 "register_operand" "%0,0,r")
1169                  (match_operand:SI 2 "arith11_operand" "r,I,M")))]
1170   ""
1171   "@
1172   {comclr|cmpclr},> %2,%0,%%r0\;copy %2,%0
1173   {comiclr|cmpiclr},> %2,%0,%%r0\;ldi %2,%0
1174   {comclr|cmpclr},> %1,%r2,%0\;copy %1,%0"
1175 [(set_attr "type" "multi,multi,multi")
1176  (set_attr "length" "8,8,8")])
1177
1178 (define_insn "smindi3"
1179   [(set (match_operand:DI 0 "register_operand" "=r,r,r")
1180         (smin:DI (match_operand:DI 1 "register_operand" "%0,0,r")
1181                  (match_operand:DI 2 "arith11_operand" "r,I,M")))]
1182   "TARGET_64BIT"
1183   "@
1184   cmpclr,*> %2,%0,%%r0\;copy %2,%0
1185   cmpiclr,*> %2,%0,%%r0\;ldi %2,%0
1186   cmpclr,*> %1,%r2,%0\;copy %1,%0"
1187 [(set_attr "type" "multi,multi,multi")
1188  (set_attr "length" "8,8,8")])
1189
1190 (define_insn "uminsi3"
1191   [(set (match_operand:SI 0 "register_operand" "=r,r")
1192         (umin:SI (match_operand:SI 1 "register_operand" "%0,0")
1193                  (match_operand:SI 2 "arith11_operand" "r,I")))]
1194   ""
1195   "@
1196   {comclr|cmpclr},>> %2,%0,%%r0\;copy %2,%0
1197   {comiclr|cmpiclr},>> %2,%0,%%r0\;ldi %2,%0"
1198 [(set_attr "type" "multi,multi")
1199  (set_attr "length" "8,8")])
1200
1201 (define_insn "umindi3"
1202   [(set (match_operand:DI 0 "register_operand" "=r,r")
1203         (umin:DI (match_operand:DI 1 "register_operand" "%0,0")
1204                  (match_operand:DI 2 "arith11_operand" "r,I")))]
1205   "TARGET_64BIT"
1206   "@
1207   cmpclr,*>> %2,%0,%%r0\;copy %2,%0
1208   cmpiclr,*>> %2,%0,%%r0\;ldi %2,%0"
1209 [(set_attr "type" "multi,multi")
1210  (set_attr "length" "8,8")])
1211
1212 (define_insn "smaxsi3"
1213   [(set (match_operand:SI 0 "register_operand" "=r,r,r")
1214         (smax:SI (match_operand:SI 1 "register_operand" "%0,0,r")
1215                  (match_operand:SI 2 "arith11_operand" "r,I,M")))]
1216   ""
1217   "@
1218   {comclr|cmpclr},< %2,%0,%%r0\;copy %2,%0
1219   {comiclr|cmpiclr},< %2,%0,%%r0\;ldi %2,%0
1220   {comclr|cmpclr},< %1,%r2,%0\;copy %1,%0"
1221 [(set_attr "type" "multi,multi,multi")
1222  (set_attr "length" "8,8,8")])
1223
1224 (define_insn "smaxdi3"
1225   [(set (match_operand:DI 0 "register_operand" "=r,r,r")
1226         (smax:DI (match_operand:DI 1 "register_operand" "%0,0,r")
1227                  (match_operand:DI 2 "arith11_operand" "r,I,M")))]
1228   "TARGET_64BIT"
1229   "@
1230   cmpclr,*< %2,%0,%%r0\;copy %2,%0
1231   cmpiclr,*< %2,%0,%%r0\;ldi %2,%0
1232   cmpclr,*< %1,%r2,%0\;copy %1,%0"
1233 [(set_attr "type" "multi,multi,multi")
1234  (set_attr "length" "8,8,8")])
1235
1236 (define_insn "umaxsi3"
1237   [(set (match_operand:SI 0 "register_operand" "=r,r")
1238         (umax:SI (match_operand:SI 1 "register_operand" "%0,0")
1239                  (match_operand:SI 2 "arith11_operand" "r,I")))]
1240   ""
1241   "@
1242   {comclr|cmpclr},<< %2,%0,%%r0\;copy %2,%0
1243   {comiclr|cmpiclr},<< %2,%0,%%r0\;ldi %2,%0"
1244 [(set_attr "type" "multi,multi")
1245  (set_attr "length" "8,8")])
1246
1247 (define_insn "umaxdi3"
1248   [(set (match_operand:DI 0 "register_operand" "=r,r")
1249         (umax:DI (match_operand:DI 1 "register_operand" "%0,0")
1250                  (match_operand:DI 2 "arith11_operand" "r,I")))]
1251   "TARGET_64BIT"
1252   "@
1253   cmpclr,*<< %2,%0,%%r0\;copy %2,%0
1254   cmpiclr,*<< %2,%0,%%r0\;ldi %2,%0"
1255 [(set_attr "type" "multi,multi")
1256  (set_attr "length" "8,8")])
1257
1258 (define_insn "abssi2"
1259   [(set (match_operand:SI 0 "register_operand" "=r")
1260         (abs:SI (match_operand:SI 1 "register_operand" "r")))]
1261   ""
1262   "or,>= %%r0,%1,%0\;subi 0,%0,%0"
1263   [(set_attr "type" "multi")
1264    (set_attr "length" "8")])
1265
1266 (define_insn "absdi2"
1267   [(set (match_operand:DI 0 "register_operand" "=r")
1268         (abs:DI (match_operand:DI 1 "register_operand" "r")))]
1269   "TARGET_64BIT"
1270   "or,*>= %%r0,%1,%0\;subi 0,%0,%0"
1271   [(set_attr "type" "multi")
1272    (set_attr "length" "8")])
1273
1274 ;;; Experimental conditional move patterns
1275
1276 (define_expand "movsicc"
1277   [(set (match_operand:SI 0 "register_operand" "")
1278         (if_then_else:SI
1279          (match_operator 1 "comparison_operator"
1280             [(match_dup 4)
1281              (match_dup 5)])
1282          (match_operand:SI 2 "reg_or_cint_move_operand" "")
1283          (match_operand:SI 3 "reg_or_cint_move_operand" "")))]
1284   ""
1285   "
1286 {
1287   enum rtx_code code = GET_CODE (operands[1]);
1288
1289   if (hppa_branch_type != CMP_SI)
1290     FAIL;
1291
1292   if (GET_MODE (hppa_compare_op0) != GET_MODE (hppa_compare_op1)
1293       || GET_MODE (hppa_compare_op0) != GET_MODE (operands[0]))
1294     FAIL;
1295
1296   /* operands[1] is currently the result of compare_from_rtx.  We want to
1297      emit a compare of the original operands.  */
1298   operands[1] = gen_rtx_fmt_ee (code, SImode, hppa_compare_op0, hppa_compare_op1);
1299   operands[4] = hppa_compare_op0;
1300   operands[5] = hppa_compare_op1;
1301 }")
1302
1303 ;; We used to accept any register for op1.
1304 ;;
1305 ;; However, it loses sometimes because the compiler will end up using
1306 ;; different registers for op0 and op1 in some critical cases.  local-alloc
1307 ;; will  not tie op0 and op1 because op0 is used in multiple basic blocks.
1308 ;;
1309 ;; If/when global register allocation supports tying we should allow any
1310 ;; register for op1 again.
1311 (define_insn ""
1312   [(set (match_operand:SI 0 "register_operand" "=r,r,r,r")
1313         (if_then_else:SI
1314          (match_operator 2 "comparison_operator"
1315             [(match_operand:SI 3 "register_operand" "r,r,r,r")
1316              (match_operand:SI 4 "arith11_operand" "rI,rI,rI,rI")])
1317          (match_operand:SI 1 "reg_or_cint_move_operand" "0,J,N,K")
1318          (const_int 0)))]
1319   ""
1320   "@
1321    {com%I4clr|cmp%I4clr},%S2 %4,%3,%%r0\;ldi 0,%0
1322    {com%I4clr|cmp%I4clr},%B2 %4,%3,%0\;ldi %1,%0
1323    {com%I4clr|cmp%I4clr},%B2 %4,%3,%0\;ldil L'%1,%0
1324    {com%I4clr|cmp%I4clr},%B2 %4,%3,%0\;{zdepi|depwi,z} %Z1,%0"
1325   [(set_attr "type" "multi,multi,multi,nullshift")
1326    (set_attr "length" "8,8,8,8")])
1327
1328 (define_insn ""
1329   [(set (match_operand:SI 0 "register_operand" "=r,r,r,r,r,r,r,r")
1330         (if_then_else:SI
1331          (match_operator 5 "comparison_operator"
1332             [(match_operand:SI 3 "register_operand" "r,r,r,r,r,r,r,r")
1333              (match_operand:SI 4 "arith11_operand" "rI,rI,rI,rI,rI,rI,rI,rI")])
1334          (match_operand:SI 1 "reg_or_cint_move_operand" "0,0,0,0,r,J,N,K")
1335          (match_operand:SI 2 "reg_or_cint_move_operand" "r,J,N,K,0,0,0,0")))]
1336   ""
1337   "@
1338    {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;copy %2,%0
1339    {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;ldi %2,%0
1340    {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;ldil L'%2,%0
1341    {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;{zdepi|depwi,z} %Z2,%0
1342    {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;copy %1,%0
1343    {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;ldi %1,%0
1344    {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;ldil L'%1,%0
1345    {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;{zdepi|depwi,z} %Z1,%0"
1346   [(set_attr "type" "multi,multi,multi,nullshift,multi,multi,multi,nullshift")
1347    (set_attr "length" "8,8,8,8,8,8,8,8")])
1348
1349 (define_expand "movdicc"
1350   [(set (match_operand:DI 0 "register_operand" "")
1351         (if_then_else:DI
1352          (match_operator 1 "comparison_operator"
1353             [(match_dup 4)
1354              (match_dup 5)])
1355          (match_operand:DI 2 "reg_or_cint_move_operand" "")
1356          (match_operand:DI 3 "reg_or_cint_move_operand" "")))]
1357   "TARGET_64BIT"
1358   "
1359 {
1360   enum rtx_code code = GET_CODE (operands[1]);
1361
1362   if (hppa_branch_type != CMP_SI)
1363     FAIL;
1364
1365   if (GET_MODE (hppa_compare_op0) != GET_MODE (hppa_compare_op1)
1366       || GET_MODE (hppa_compare_op0) != GET_MODE (operands[0]))
1367     FAIL;
1368
1369   /* operands[1] is currently the result of compare_from_rtx.  We want to
1370      emit a compare of the original operands.  */
1371   operands[1] = gen_rtx_fmt_ee (code, DImode, hppa_compare_op0, hppa_compare_op1);
1372   operands[4] = hppa_compare_op0;
1373   operands[5] = hppa_compare_op1;
1374 }")
1375
1376 ; We need the first constraint alternative in order to avoid
1377 ; earlyclobbers on all other alternatives.
1378 (define_insn ""
1379   [(set (match_operand:DI 0 "register_operand" "=r,r,r,r,r")
1380         (if_then_else:DI
1381          (match_operator 2 "comparison_operator"
1382             [(match_operand:DI 3 "register_operand" "r,r,r,r,r")
1383              (match_operand:DI 4 "arith11_operand" "rI,rI,rI,rI,rI")])
1384          (match_operand:DI 1 "reg_or_cint_move_operand" "0,r,J,N,K")
1385          (const_int 0)))]
1386   "TARGET_64BIT"
1387   "@
1388    cmp%I4clr,*%S2 %4,%3,%%r0\;ldi 0,%0
1389    cmp%I4clr,*%B2 %4,%3,%0\;copy %1,%0
1390    cmp%I4clr,*%B2 %4,%3,%0\;ldi %1,%0
1391    cmp%I4clr,*%B2 %4,%3,%0\;ldil L'%1,%0
1392    cmp%I4clr,*%B2 %4,%3,%0\;depdi,z %z1,%0"
1393   [(set_attr "type" "multi,multi,multi,multi,nullshift")
1394    (set_attr "length" "8,8,8,8,8")])
1395
1396 (define_insn ""
1397   [(set (match_operand:DI 0 "register_operand" "=r,r,r,r,r,r,r,r")
1398         (if_then_else:DI
1399          (match_operator 5 "comparison_operator"
1400             [(match_operand:DI 3 "register_operand" "r,r,r,r,r,r,r,r")
1401              (match_operand:DI 4 "arith11_operand" "rI,rI,rI,rI,rI,rI,rI,rI")])
1402          (match_operand:DI 1 "reg_or_cint_move_operand" "0,0,0,0,r,J,N,K")
1403          (match_operand:DI 2 "reg_or_cint_move_operand" "r,J,N,K,0,0,0,0")))]
1404   "TARGET_64BIT"
1405   "@
1406    cmp%I4clr,*%S5 %4,%3,%%r0\;copy %2,%0
1407    cmp%I4clr,*%S5 %4,%3,%%r0\;ldi %2,%0
1408    cmp%I4clr,*%S5 %4,%3,%%r0\;ldil L'%2,%0
1409    cmp%I4clr,*%S5 %4,%3,%%r0\;depdi,z %z2,%0
1410    cmp%I4clr,*%B5 %4,%3,%%r0\;copy %1,%0
1411    cmp%I4clr,*%B5 %4,%3,%%r0\;ldi %1,%0
1412    cmp%I4clr,*%B5 %4,%3,%%r0\;ldil L'%1,%0
1413    cmp%I4clr,*%B5 %4,%3,%%r0\;depdi,z %z1,%0"
1414   [(set_attr "type" "multi,multi,multi,nullshift,multi,multi,multi,nullshift")
1415    (set_attr "length" "8,8,8,8,8,8,8,8")])
1416
1417 ;; Conditional Branches
1418
1419 (define_expand "beq"
1420   [(set (pc)
1421         (if_then_else (eq (match_dup 1) (match_dup 2))
1422                       (label_ref (match_operand 0 "" ""))
1423                       (pc)))]
1424   ""
1425   "
1426 {
1427   if (hppa_branch_type != CMP_SI)
1428     {
1429       emit_insn (gen_cmp_fp (EQ, hppa_compare_op0, hppa_compare_op1));
1430       emit_bcond_fp (NE, operands[0]);
1431       DONE;
1432     }
1433   /* set up operands from compare.  */
1434   operands[1] = hppa_compare_op0;
1435   operands[2] = hppa_compare_op1;
1436   /* fall through and generate default code */
1437 }")
1438
1439 (define_expand "bne"
1440   [(set (pc)
1441         (if_then_else (ne (match_dup 1) (match_dup 2))
1442                       (label_ref (match_operand 0 "" ""))
1443                       (pc)))]
1444   ""
1445   "
1446 {
1447   if (hppa_branch_type != CMP_SI)
1448     {
1449       emit_insn (gen_cmp_fp (NE, hppa_compare_op0, hppa_compare_op1));
1450       emit_bcond_fp (NE, operands[0]);
1451       DONE;
1452     }
1453   operands[1] = hppa_compare_op0;
1454   operands[2] = hppa_compare_op1;
1455 }")
1456
1457 (define_expand "bgt"
1458   [(set (pc)
1459         (if_then_else (gt (match_dup 1) (match_dup 2))
1460                       (label_ref (match_operand 0 "" ""))
1461                       (pc)))]
1462   ""
1463   "
1464 {
1465   if (hppa_branch_type != CMP_SI)
1466     {
1467       emit_insn (gen_cmp_fp (GT, hppa_compare_op0, hppa_compare_op1));
1468       emit_bcond_fp (NE, operands[0]);
1469       DONE;
1470     }
1471   operands[1] = hppa_compare_op0;
1472   operands[2] = hppa_compare_op1;
1473 }")
1474
1475 (define_expand "blt"
1476   [(set (pc)
1477         (if_then_else (lt (match_dup 1) (match_dup 2))
1478                       (label_ref (match_operand 0 "" ""))
1479                       (pc)))]
1480   ""
1481   "
1482 {
1483   if (hppa_branch_type != CMP_SI)
1484     {
1485       emit_insn (gen_cmp_fp (LT, hppa_compare_op0, hppa_compare_op1));
1486       emit_bcond_fp (NE, operands[0]);
1487       DONE;
1488     }
1489   operands[1] = hppa_compare_op0;
1490   operands[2] = hppa_compare_op1;
1491 }")
1492
1493 (define_expand "bge"
1494   [(set (pc)
1495         (if_then_else (ge (match_dup 1) (match_dup 2))
1496                       (label_ref (match_operand 0 "" ""))
1497                       (pc)))]
1498   ""
1499   "
1500 {
1501   if (hppa_branch_type != CMP_SI)
1502     {
1503       emit_insn (gen_cmp_fp (GE, hppa_compare_op0, hppa_compare_op1));
1504       emit_bcond_fp (NE, operands[0]);
1505       DONE;
1506     }
1507   operands[1] = hppa_compare_op0;
1508   operands[2] = hppa_compare_op1;
1509 }")
1510
1511 (define_expand "ble"
1512   [(set (pc)
1513         (if_then_else (le (match_dup 1) (match_dup 2))
1514                       (label_ref (match_operand 0 "" ""))
1515                       (pc)))]
1516   ""
1517   "
1518 {
1519   if (hppa_branch_type != CMP_SI)
1520     {
1521       emit_insn (gen_cmp_fp (LE, hppa_compare_op0, hppa_compare_op1));
1522       emit_bcond_fp (NE, operands[0]);
1523       DONE;
1524     }
1525   operands[1] = hppa_compare_op0;
1526   operands[2] = hppa_compare_op1;
1527 }")
1528
1529 (define_expand "bgtu"
1530   [(set (pc)
1531         (if_then_else (gtu (match_dup 1) (match_dup 2))
1532                       (label_ref (match_operand 0 "" ""))
1533                       (pc)))]
1534   ""
1535   "
1536 {
1537   if (hppa_branch_type != CMP_SI)
1538     FAIL;
1539   operands[1] = hppa_compare_op0;
1540   operands[2] = hppa_compare_op1;
1541 }")
1542
1543 (define_expand "bltu"
1544   [(set (pc)
1545         (if_then_else (ltu (match_dup 1) (match_dup 2))
1546                       (label_ref (match_operand 0 "" ""))
1547                       (pc)))]
1548   ""
1549   "
1550 {
1551   if (hppa_branch_type != CMP_SI)
1552     FAIL;
1553   operands[1] = hppa_compare_op0;
1554   operands[2] = hppa_compare_op1;
1555 }")
1556
1557 (define_expand "bgeu"
1558   [(set (pc)
1559         (if_then_else (geu (match_dup 1) (match_dup 2))
1560                       (label_ref (match_operand 0 "" ""))
1561                       (pc)))]
1562   ""
1563   "
1564 {
1565   if (hppa_branch_type != CMP_SI)
1566     FAIL;
1567   operands[1] = hppa_compare_op0;
1568   operands[2] = hppa_compare_op1;
1569 }")
1570
1571 (define_expand "bleu"
1572   [(set (pc)
1573         (if_then_else (leu (match_dup 1) (match_dup 2))
1574                       (label_ref (match_operand 0 "" ""))
1575                       (pc)))]
1576   ""
1577   "
1578 {
1579   if (hppa_branch_type != CMP_SI)
1580     FAIL;
1581   operands[1] = hppa_compare_op0;
1582   operands[2] = hppa_compare_op1;
1583 }")
1584
1585 (define_expand "bltgt"
1586   [(set (pc)
1587         (if_then_else (ltgt (match_dup 1) (match_dup 2))
1588                       (label_ref (match_operand 0 "" ""))
1589                       (pc)))]
1590   ""
1591   "
1592 {
1593   if (hppa_branch_type == CMP_SI)
1594     FAIL;
1595   emit_insn (gen_cmp_fp (LTGT, hppa_compare_op0, hppa_compare_op1));
1596   emit_bcond_fp (NE, operands[0]);
1597   DONE;
1598 }")
1599
1600 (define_expand "bunle"
1601   [(set (pc)
1602         (if_then_else (unle (match_dup 1) (match_dup 2))
1603                       (label_ref (match_operand 0 "" ""))
1604                       (pc)))]
1605   ""
1606   "
1607 {
1608   if (hppa_branch_type == CMP_SI)
1609     FAIL;
1610   emit_insn (gen_cmp_fp (UNLE, hppa_compare_op0, hppa_compare_op1));
1611   emit_bcond_fp (NE, operands[0]);
1612   DONE;
1613 }")
1614
1615 (define_expand "bunlt"
1616   [(set (pc)
1617         (if_then_else (unlt (match_dup 1) (match_dup 2))
1618                       (label_ref (match_operand 0 "" ""))
1619                       (pc)))]
1620   ""
1621   "
1622 {
1623   if (hppa_branch_type == CMP_SI)
1624     FAIL;
1625   emit_insn (gen_cmp_fp (UNLT, hppa_compare_op0, hppa_compare_op1));
1626   emit_bcond_fp (NE, operands[0]);
1627   DONE;
1628 }")
1629
1630 (define_expand "bunge"
1631   [(set (pc)
1632         (if_then_else (unge (match_dup 1) (match_dup 2))
1633                       (label_ref (match_operand 0 "" ""))
1634                       (pc)))]
1635   ""
1636   "
1637 {
1638   if (hppa_branch_type == CMP_SI)
1639     FAIL;
1640   emit_insn (gen_cmp_fp (UNGE, hppa_compare_op0, hppa_compare_op1));
1641   emit_bcond_fp (NE, operands[0]);
1642   DONE;
1643 }")
1644
1645 (define_expand "bungt"
1646   [(set (pc)
1647         (if_then_else (ungt (match_dup 1) (match_dup 2))
1648                       (label_ref (match_operand 0 "" ""))
1649                       (pc)))]
1650   ""
1651   "
1652 {
1653   if (hppa_branch_type == CMP_SI)
1654     FAIL;
1655   emit_insn (gen_cmp_fp (UNGT, hppa_compare_op0, hppa_compare_op1));
1656   emit_bcond_fp (NE, operands[0]);
1657   DONE;
1658 }")
1659
1660 (define_expand "buneq"
1661   [(set (pc)
1662         (if_then_else (uneq (match_dup 1) (match_dup 2))
1663                       (label_ref (match_operand 0 "" ""))
1664                       (pc)))]
1665   ""
1666   "
1667 {
1668   if (hppa_branch_type == CMP_SI)
1669     FAIL;
1670   emit_insn (gen_cmp_fp (UNEQ, hppa_compare_op0, hppa_compare_op1));
1671   emit_bcond_fp (NE, operands[0]);
1672   DONE;
1673 }")
1674
1675 (define_expand "bunordered"
1676   [(set (pc)
1677         (if_then_else (unordered (match_dup 1) (match_dup 2))
1678                       (label_ref (match_operand 0 "" ""))
1679                       (pc)))]
1680   ""
1681   "
1682 {
1683   if (hppa_branch_type == CMP_SI)
1684     FAIL;
1685   emit_insn (gen_cmp_fp (UNORDERED, hppa_compare_op0, hppa_compare_op1));
1686   emit_bcond_fp (NE, operands[0]);
1687   DONE;
1688 }")
1689
1690 (define_expand "bordered"
1691   [(set (pc)
1692         (if_then_else (ordered (match_dup 1) (match_dup 2))
1693                       (label_ref (match_operand 0 "" ""))
1694                       (pc)))]
1695   ""
1696   "
1697 {
1698   if (hppa_branch_type == CMP_SI)
1699     FAIL;
1700   emit_insn (gen_cmp_fp (ORDERED, hppa_compare_op0, hppa_compare_op1));
1701   emit_bcond_fp (NE, operands[0]);
1702   DONE;
1703 }")
1704
1705 ;; Match the branch patterns.
1706
1707
1708 ;; Note a long backward conditional branch with an annulled delay slot
1709 ;; has a length of 12.
1710 (define_insn ""
1711   [(set (pc)
1712         (if_then_else
1713          (match_operator 3 "comparison_operator"
1714                          [(match_operand:SI 1 "reg_or_0_operand" "rM")
1715                           (match_operand:SI 2 "arith5_operand" "rL")])
1716          (label_ref (match_operand 0 "" ""))
1717          (pc)))]
1718   ""
1719   "*
1720 {
1721   return output_cbranch (operands, 0, insn);
1722 }"
1723 [(set_attr "type" "cbranch")
1724  (set (attr "length")
1725     (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1726                (const_int MAX_12BIT_OFFSET))
1727            (const_int 4)
1728            (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1729                (const_int MAX_17BIT_OFFSET))
1730            (const_int 8)
1731            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1732            (const_int 24)
1733            (eq (symbol_ref "flag_pic") (const_int 0))
1734            (const_int 20)]
1735           (const_int 28)))])
1736
1737 ;; Match the negated branch.
1738
1739 (define_insn ""
1740   [(set (pc)
1741         (if_then_else
1742          (match_operator 3 "comparison_operator"
1743                          [(match_operand:SI 1 "reg_or_0_operand" "rM")
1744                           (match_operand:SI 2 "arith5_operand" "rL")])
1745          (pc)
1746          (label_ref (match_operand 0 "" ""))))]
1747   ""
1748   "*
1749 {
1750   return output_cbranch (operands, 1, insn);
1751 }"
1752 [(set_attr "type" "cbranch")
1753  (set (attr "length")
1754     (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1755                (const_int MAX_12BIT_OFFSET))
1756            (const_int 4)
1757            (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1758                (const_int MAX_17BIT_OFFSET))
1759            (const_int 8)
1760            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1761            (const_int 24)
1762            (eq (symbol_ref "flag_pic") (const_int 0))
1763            (const_int 20)]
1764           (const_int 28)))])
1765
1766 (define_insn ""
1767   [(set (pc)
1768         (if_then_else
1769          (match_operator 3 "comparison_operator"
1770                          [(match_operand:DI 1 "reg_or_0_operand" "rM")
1771                           (match_operand:DI 2 "reg_or_0_operand" "rM")])
1772          (label_ref (match_operand 0 "" ""))
1773          (pc)))]
1774   "TARGET_64BIT"
1775   "*
1776 {
1777   return output_cbranch (operands, 0, insn);
1778 }"
1779 [(set_attr "type" "cbranch")
1780  (set (attr "length")
1781     (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1782                (const_int MAX_12BIT_OFFSET))
1783            (const_int 4)
1784            (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1785                (const_int MAX_17BIT_OFFSET))
1786            (const_int 8)
1787            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1788            (const_int 24)
1789            (eq (symbol_ref "flag_pic") (const_int 0))
1790            (const_int 20)]
1791           (const_int 28)))])
1792
1793 ;; Match the negated branch.
1794
1795 (define_insn ""
1796   [(set (pc)
1797         (if_then_else
1798          (match_operator 3 "comparison_operator"
1799                          [(match_operand:DI 1 "reg_or_0_operand" "rM")
1800                           (match_operand:DI 2 "reg_or_0_operand" "rM")])
1801          (pc)
1802          (label_ref (match_operand 0 "" ""))))]
1803   "TARGET_64BIT"
1804   "*
1805 {
1806   return output_cbranch (operands, 1, insn);
1807 }"
1808 [(set_attr "type" "cbranch")
1809  (set (attr "length")
1810     (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1811                (const_int MAX_12BIT_OFFSET))
1812            (const_int 4)
1813            (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1814                (const_int MAX_17BIT_OFFSET))
1815            (const_int 8)
1816            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1817            (const_int 24)
1818            (eq (symbol_ref "flag_pic") (const_int 0))
1819            (const_int 20)]
1820           (const_int 28)))])
1821 (define_insn ""
1822   [(set (pc)
1823         (if_then_else
1824          (match_operator 3 "cmpib_comparison_operator"
1825                          [(match_operand:DI 1 "reg_or_0_operand" "rM")
1826                           (match_operand:DI 2 "arith5_operand" "rL")])
1827          (label_ref (match_operand 0 "" ""))
1828          (pc)))]
1829   "TARGET_64BIT"
1830   "*
1831 {
1832   return output_cbranch (operands, 0, insn);
1833 }"
1834 [(set_attr "type" "cbranch")
1835  (set (attr "length")
1836     (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1837                (const_int MAX_12BIT_OFFSET))
1838            (const_int 4)
1839            (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1840                (const_int MAX_17BIT_OFFSET))
1841            (const_int 8)
1842            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1843            (const_int 24)
1844            (eq (symbol_ref "flag_pic") (const_int 0))
1845            (const_int 20)]
1846           (const_int 28)))])
1847
1848 ;; Match the negated branch.
1849
1850 (define_insn ""
1851   [(set (pc)
1852         (if_then_else
1853          (match_operator 3 "cmpib_comparison_operator"
1854                          [(match_operand:DI 1 "reg_or_0_operand" "rM")
1855                           (match_operand:DI 2 "arith5_operand" "rL")])
1856          (pc)
1857          (label_ref (match_operand 0 "" ""))))]
1858   "TARGET_64BIT"
1859   "*
1860 {
1861   return output_cbranch (operands, 1, insn);
1862 }"
1863 [(set_attr "type" "cbranch")
1864  (set (attr "length")
1865     (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1866                (const_int MAX_12BIT_OFFSET))
1867            (const_int 4)
1868            (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1869                (const_int MAX_17BIT_OFFSET))
1870            (const_int 8)
1871            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1872            (const_int 24)
1873            (eq (symbol_ref "flag_pic") (const_int 0))
1874            (const_int 20)]
1875           (const_int 28)))])
1876
1877 ;; Branch on Bit patterns.
1878 (define_insn ""
1879   [(set (pc)
1880         (if_then_else
1881          (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1882                               (const_int 1)
1883                               (match_operand:SI 1 "uint5_operand" ""))
1884              (const_int 0))
1885          (label_ref (match_operand 2 "" ""))
1886          (pc)))]
1887   ""
1888   "*
1889 {
1890   return output_bb (operands, 0, insn, 0);
1891 }"
1892 [(set_attr "type" "cbranch")
1893  (set (attr "length")
1894     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1895                (const_int MAX_12BIT_OFFSET))
1896            (const_int 4)
1897            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1898                (const_int MAX_17BIT_OFFSET))
1899            (const_int 8)
1900            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1901            (const_int 28)
1902            (eq (symbol_ref "flag_pic") (const_int 0))
1903            (const_int 24)]
1904           (const_int 32)))])
1905
1906 (define_insn ""
1907   [(set (pc)
1908         (if_then_else
1909          (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1910                               (const_int 1)
1911                               (match_operand:DI 1 "uint32_operand" ""))
1912              (const_int 0))
1913          (label_ref (match_operand 2 "" ""))
1914          (pc)))]
1915   "TARGET_64BIT"
1916   "*
1917 {
1918   return output_bb (operands, 0, insn, 0);
1919 }"
1920 [(set_attr "type" "cbranch")
1921  (set (attr "length")
1922     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1923                (const_int MAX_12BIT_OFFSET))
1924            (const_int 4)
1925            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1926                (const_int MAX_17BIT_OFFSET))
1927            (const_int 8)
1928            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1929            (const_int 28)
1930            (eq (symbol_ref "flag_pic") (const_int 0))
1931            (const_int 24)]
1932           (const_int 32)))])
1933
1934 (define_insn ""
1935   [(set (pc)
1936         (if_then_else
1937          (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1938                               (const_int 1)
1939                               (match_operand:SI 1 "uint5_operand" ""))
1940              (const_int 0))
1941          (pc)
1942          (label_ref (match_operand 2 "" ""))))]
1943   ""
1944   "*
1945 {
1946   return output_bb (operands, 1, insn, 0);
1947 }"
1948 [(set_attr "type" "cbranch")
1949  (set (attr "length")
1950     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1951                (const_int MAX_12BIT_OFFSET))
1952            (const_int 4)
1953            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1954                (const_int MAX_17BIT_OFFSET))
1955            (const_int 8)
1956            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1957            (const_int 28)
1958            (eq (symbol_ref "flag_pic") (const_int 0))
1959            (const_int 24)]
1960           (const_int 32)))])
1961
1962 (define_insn ""
1963   [(set (pc)
1964         (if_then_else
1965          (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1966                               (const_int 1)
1967                               (match_operand:DI 1 "uint32_operand" ""))
1968              (const_int 0))
1969          (pc)
1970          (label_ref (match_operand 2 "" ""))))]
1971   "TARGET_64BIT"
1972   "*
1973 {
1974   return output_bb (operands, 1, insn, 0);
1975 }"
1976 [(set_attr "type" "cbranch")
1977  (set (attr "length")
1978     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1979                (const_int MAX_12BIT_OFFSET))
1980            (const_int 4)
1981            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1982                (const_int MAX_17BIT_OFFSET))
1983            (const_int 8)
1984            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1985            (const_int 28)
1986            (eq (symbol_ref "flag_pic") (const_int 0))
1987            (const_int 24)]
1988           (const_int 32)))])
1989
1990 (define_insn ""
1991   [(set (pc)
1992         (if_then_else
1993          (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1994                               (const_int 1)
1995                               (match_operand:SI 1 "uint5_operand" ""))
1996              (const_int 0))
1997          (label_ref (match_operand 2 "" ""))
1998          (pc)))]
1999   ""
2000   "*
2001 {
2002   return output_bb (operands, 0, insn, 1);
2003 }"
2004 [(set_attr "type" "cbranch")
2005  (set (attr "length")
2006     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2007                (const_int MAX_12BIT_OFFSET))
2008            (const_int 4)
2009            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2010                (const_int MAX_17BIT_OFFSET))
2011            (const_int 8)
2012            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2013            (const_int 28)
2014            (eq (symbol_ref "flag_pic") (const_int 0))
2015            (const_int 24)]
2016           (const_int 32)))])
2017
2018 (define_insn ""
2019   [(set (pc)
2020         (if_then_else
2021          (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
2022                               (const_int 1)
2023                               (match_operand:DI 1 "uint32_operand" ""))
2024              (const_int 0))
2025          (label_ref (match_operand 2 "" ""))
2026          (pc)))]
2027   "TARGET_64BIT"
2028   "*
2029 {
2030   return output_bb (operands, 0, insn, 1);
2031 }"
2032 [(set_attr "type" "cbranch")
2033  (set (attr "length")
2034     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2035                (const_int MAX_12BIT_OFFSET))
2036            (const_int 4)
2037            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2038                (const_int MAX_17BIT_OFFSET))
2039            (const_int 8)
2040            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2041            (const_int 28)
2042            (eq (symbol_ref "flag_pic") (const_int 0))
2043            (const_int 24)]
2044           (const_int 32)))])
2045
2046 (define_insn ""
2047   [(set (pc)
2048         (if_then_else
2049          (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
2050                               (const_int 1)
2051                               (match_operand:SI 1 "uint5_operand" ""))
2052              (const_int 0))
2053          (pc)
2054          (label_ref (match_operand 2 "" ""))))]
2055   ""
2056   "*
2057 {
2058   return output_bb (operands, 1, insn, 1);
2059 }"
2060 [(set_attr "type" "cbranch")
2061  (set (attr "length")
2062     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2063                (const_int MAX_12BIT_OFFSET))
2064            (const_int 4)
2065            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2066                (const_int MAX_17BIT_OFFSET))
2067            (const_int 8)
2068            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2069            (const_int 28)
2070            (eq (symbol_ref "flag_pic") (const_int 0))
2071            (const_int 24)]
2072           (const_int 32)))])
2073
2074 (define_insn ""
2075   [(set (pc)
2076         (if_then_else
2077          (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
2078                               (const_int 1)
2079                               (match_operand:DI 1 "uint32_operand" ""))
2080              (const_int 0))
2081          (pc)
2082          (label_ref (match_operand 2 "" ""))))]
2083   "TARGET_64BIT"
2084   "*
2085 {
2086   return output_bb (operands, 1, insn, 1);
2087 }"
2088 [(set_attr "type" "cbranch")
2089  (set (attr "length")
2090     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2091                (const_int MAX_12BIT_OFFSET))
2092            (const_int 4)
2093            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2094                (const_int MAX_17BIT_OFFSET))
2095            (const_int 8)
2096            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2097            (const_int 28)
2098            (eq (symbol_ref "flag_pic") (const_int 0))
2099            (const_int 24)]
2100           (const_int 32)))])
2101
2102 ;; Branch on Variable Bit patterns.
2103 (define_insn ""
2104   [(set (pc)
2105         (if_then_else
2106          (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
2107                               (const_int 1)
2108                               (match_operand:SI 1 "register_operand" "q"))
2109              (const_int 0))
2110          (label_ref (match_operand 2 "" ""))
2111          (pc)))]
2112   ""
2113   "*
2114 {
2115   return output_bvb (operands, 0, insn, 0);
2116 }"
2117 [(set_attr "type" "cbranch")
2118  (set (attr "length")
2119     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2120                (const_int MAX_12BIT_OFFSET))
2121            (const_int 4)
2122            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2123                (const_int MAX_17BIT_OFFSET))
2124            (const_int 8)
2125            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2126            (const_int 28)
2127            (eq (symbol_ref "flag_pic") (const_int 0))
2128            (const_int 24)]
2129           (const_int 32)))])
2130
2131 (define_insn ""
2132   [(set (pc)
2133         (if_then_else
2134          (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
2135                               (const_int 1)
2136                               (match_operand:DI 1 "register_operand" "q"))
2137              (const_int 0))
2138          (label_ref (match_operand 2 "" ""))
2139          (pc)))]
2140   "TARGET_64BIT"
2141   "*
2142 {
2143   return output_bvb (operands, 0, insn, 0);
2144 }"
2145 [(set_attr "type" "cbranch")
2146  (set (attr "length")
2147     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2148                (const_int MAX_12BIT_OFFSET))
2149            (const_int 4)
2150            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2151                (const_int MAX_17BIT_OFFSET))
2152            (const_int 8)
2153            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2154            (const_int 28)
2155            (eq (symbol_ref "flag_pic") (const_int 0))
2156            (const_int 24)]
2157           (const_int 32)))])
2158
2159 (define_insn ""
2160   [(set (pc)
2161         (if_then_else
2162          (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
2163                               (const_int 1)
2164                               (match_operand:SI 1 "register_operand" "q"))
2165              (const_int 0))
2166          (pc)
2167          (label_ref (match_operand 2 "" ""))))]
2168   ""
2169   "*
2170 {
2171   return output_bvb (operands, 1, insn, 0);
2172 }"
2173 [(set_attr "type" "cbranch")
2174  (set (attr "length")
2175     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2176                (const_int MAX_12BIT_OFFSET))
2177            (const_int 4)
2178            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2179                (const_int MAX_17BIT_OFFSET))
2180            (const_int 8)
2181            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2182            (const_int 28)
2183            (eq (symbol_ref "flag_pic") (const_int 0))
2184            (const_int 24)]
2185           (const_int 32)))])
2186
2187 (define_insn ""
2188   [(set (pc)
2189         (if_then_else
2190          (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
2191                               (const_int 1)
2192                               (match_operand:DI 1 "register_operand" "q"))
2193              (const_int 0))
2194          (pc)
2195          (label_ref (match_operand 2 "" ""))))]
2196   "TARGET_64BIT"
2197   "*
2198 {
2199   return output_bvb (operands, 1, insn, 0);
2200 }"
2201 [(set_attr "type" "cbranch")
2202  (set (attr "length")
2203     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2204                (const_int MAX_12BIT_OFFSET))
2205            (const_int 4)
2206            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2207                (const_int MAX_17BIT_OFFSET))
2208            (const_int 8)
2209            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2210            (const_int 28)
2211            (eq (symbol_ref "flag_pic") (const_int 0))
2212            (const_int 24)]
2213           (const_int 32)))])
2214
2215 (define_insn ""
2216   [(set (pc)
2217         (if_then_else
2218          (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
2219                               (const_int 1)
2220                               (match_operand:SI 1 "register_operand" "q"))
2221              (const_int 0))
2222          (label_ref (match_operand 2 "" ""))
2223          (pc)))]
2224   ""
2225   "*
2226 {
2227   return output_bvb (operands, 0, insn, 1);
2228 }"
2229 [(set_attr "type" "cbranch")
2230  (set (attr "length")
2231     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2232                (const_int MAX_12BIT_OFFSET))
2233            (const_int 4)
2234            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2235                (const_int MAX_17BIT_OFFSET))
2236            (const_int 8)
2237            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2238            (const_int 28)
2239            (eq (symbol_ref "flag_pic") (const_int 0))
2240            (const_int 24)]
2241           (const_int 32)))])
2242
2243 (define_insn ""
2244   [(set (pc)
2245         (if_then_else
2246          (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
2247                               (const_int 1)
2248                               (match_operand:DI 1 "register_operand" "q"))
2249              (const_int 0))
2250          (label_ref (match_operand 2 "" ""))
2251          (pc)))]
2252   "TARGET_64BIT"
2253   "*
2254 {
2255   return output_bvb (operands, 0, insn, 1);
2256 }"
2257 [(set_attr "type" "cbranch")
2258  (set (attr "length")
2259     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2260                (const_int MAX_12BIT_OFFSET))
2261            (const_int 4)
2262            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2263                (const_int MAX_17BIT_OFFSET))
2264            (const_int 8)
2265            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2266            (const_int 28)
2267            (eq (symbol_ref "flag_pic") (const_int 0))
2268            (const_int 24)]
2269           (const_int 32)))])
2270
2271 (define_insn ""
2272   [(set (pc)
2273         (if_then_else
2274          (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
2275                               (const_int 1)
2276                               (match_operand:SI 1 "register_operand" "q"))
2277              (const_int 0))
2278          (pc)
2279          (label_ref (match_operand 2 "" ""))))]
2280   ""
2281   "*
2282 {
2283   return output_bvb (operands, 1, insn, 1);
2284 }"
2285 [(set_attr "type" "cbranch")
2286  (set (attr "length")
2287     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2288                (const_int MAX_12BIT_OFFSET))
2289            (const_int 4)
2290            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2291                (const_int MAX_17BIT_OFFSET))
2292            (const_int 8)
2293            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2294            (const_int 28)
2295            (eq (symbol_ref "flag_pic") (const_int 0))
2296            (const_int 24)]
2297           (const_int 32)))])
2298
2299 (define_insn ""
2300   [(set (pc)
2301         (if_then_else
2302          (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
2303                               (const_int 1)
2304                               (match_operand:DI 1 "register_operand" "q"))
2305              (const_int 0))
2306          (pc)
2307          (label_ref (match_operand 2 "" ""))))]
2308   "TARGET_64BIT"
2309   "*
2310 {
2311   return output_bvb (operands, 1, insn, 1);
2312 }"
2313 [(set_attr "type" "cbranch")
2314  (set (attr "length")
2315     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2316                (const_int MAX_12BIT_OFFSET))
2317            (const_int 4)
2318            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2319                (const_int MAX_17BIT_OFFSET))
2320            (const_int 8)
2321            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2322            (const_int 28)
2323            (eq (symbol_ref "flag_pic") (const_int 0))
2324            (const_int 24)]
2325           (const_int 32)))])
2326
2327 ;; Floating point branches
2328
2329 ;; ??? Nullification is handled differently from other branches.
2330 ;; If nullification is specified, the delay slot is nullified on any
2331 ;; taken branch regardless of branch direction.
2332 (define_insn ""
2333   [(set (pc) (if_then_else (ne (reg:CCFP 0) (const_int 0))
2334                            (label_ref (match_operand 0 "" ""))
2335                            (pc)))]
2336   "!TARGET_SOFT_FLOAT"
2337   "*
2338 {
2339   int length = get_attr_length (insn);
2340   rtx xoperands[1];
2341   int nullify, xdelay;
2342
2343   if (length < 16)
2344     return \"ftest\;b%* %l0\";
2345
2346   if (dbr_sequence_length () == 0 || INSN_ANNULLED_BRANCH_P (insn))
2347     {
2348       nullify = 1;
2349       xdelay = 0;
2350       xoperands[0] = GEN_INT (length - 8);
2351     }
2352   else
2353     {
2354       nullify = 0;
2355       xdelay = 1;
2356       xoperands[0] = GEN_INT (length - 4);
2357     }
2358
2359   if (nullify)
2360     output_asm_insn (\"ftest\;add,tr %%r0,%%r0,%%r0\;b,n .+%0\", xoperands);
2361   else
2362     output_asm_insn (\"ftest\;add,tr %%r0,%%r0,%%r0\;b .+%0\", xoperands);
2363   return output_lbranch (operands[0], insn, xdelay);
2364 }"
2365 [(set_attr "type" "fbranch")
2366  (set (attr "length")
2367     (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
2368                (const_int MAX_17BIT_OFFSET))
2369            (const_int 8)
2370            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2371            (const_int 32)
2372            (eq (symbol_ref "flag_pic") (const_int 0))
2373            (const_int 28)]
2374           (const_int 36)))])
2375
2376 (define_insn ""
2377   [(set (pc) (if_then_else (ne (reg:CCFP 0) (const_int 0))
2378                            (pc)
2379                            (label_ref (match_operand 0 "" ""))))]
2380   "!TARGET_SOFT_FLOAT"
2381   "*
2382 {
2383   int length = get_attr_length (insn);
2384   rtx xoperands[1];
2385   int nullify, xdelay;
2386
2387   if (length < 16)
2388     return \"ftest\;add,tr %%r0,%%r0,%%r0\;b%* %0\";
2389
2390   if (dbr_sequence_length () == 0 || INSN_ANNULLED_BRANCH_P (insn))
2391     {
2392       nullify = 1;
2393       xdelay = 0;
2394       xoperands[0] = GEN_INT (length - 4);
2395     }
2396   else
2397     {
2398       nullify = 0;
2399       xdelay = 1;
2400       xoperands[0] = GEN_INT (length);
2401     }
2402
2403   if (nullify)
2404     output_asm_insn (\"ftest\;b,n .+%0\", xoperands);
2405   else
2406     output_asm_insn (\"ftest\;b .+%0\", xoperands);
2407   return output_lbranch (operands[0], insn, xdelay);
2408 }"
2409 [(set_attr "type" "fbranch")
2410  (set (attr "length")
2411     (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
2412                (const_int MAX_17BIT_OFFSET))
2413            (const_int 12)
2414            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2415            (const_int 28)
2416            (eq (symbol_ref "flag_pic") (const_int 0))
2417            (const_int 24)]
2418           (const_int 32)))])
2419
2420 ;; Move instructions
2421
2422 (define_expand "movsi"
2423   [(set (match_operand:SI 0 "general_operand" "")
2424         (match_operand:SI 1 "general_operand" ""))]
2425   ""
2426   "
2427 {
2428   if (emit_move_sequence (operands, SImode, 0))
2429     DONE;
2430 }")
2431
2432 ;; Handle SImode input reloads requiring %r1 as a scratch register.
2433 (define_expand "reload_insi_r1"
2434   [(set (match_operand:SI 0 "register_operand" "=Z")
2435         (match_operand:SI 1 "non_hard_reg_operand" ""))
2436    (clobber (match_operand:SI 2 "register_operand" "=&a"))]
2437   ""
2438   "
2439 {
2440   if (emit_move_sequence (operands, SImode, operands[2]))
2441     DONE;
2442
2443   /* We don't want the clobber emitted, so handle this ourselves.  */
2444   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2445   DONE;
2446 }")
2447
2448 ;; Handle SImode input reloads requiring a general register as a
2449 ;; scratch register.
2450 (define_expand "reload_insi"
2451   [(set (match_operand:SI 0 "register_operand" "=Z")
2452         (match_operand:SI 1 "non_hard_reg_operand" ""))
2453    (clobber (match_operand:SI 2 "register_operand" "=&r"))]
2454   ""
2455   "
2456 {
2457   if (emit_move_sequence (operands, SImode, operands[2]))
2458     DONE;
2459
2460   /* We don't want the clobber emitted, so handle this ourselves.  */
2461   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2462   DONE;
2463 }")
2464
2465 ;; Handle SImode output reloads requiring a general register as a
2466 ;; scratch register.
2467 (define_expand "reload_outsi"
2468   [(set (match_operand:SI 0 "non_hard_reg_operand" "")
2469         (match_operand:SI 1  "register_operand" "Z"))
2470    (clobber (match_operand:SI 2 "register_operand" "=&r"))]
2471   ""
2472   "
2473 {
2474   if (emit_move_sequence (operands, SImode, operands[2]))
2475     DONE;
2476
2477   /* We don't want the clobber emitted, so handle this ourselves.  */
2478   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2479   DONE;
2480 }")
2481
2482 (define_insn ""
2483   [(set (match_operand:SI 0 "move_dest_operand"
2484                           "=r,r,r,r,r,r,Q,!*q,!r,!*f,*f,T,!r,!f")
2485         (match_operand:SI 1 "move_src_operand"
2486                           "A,r,J,N,K,RQ,rM,!rM,!*q,!*fM,RT,*f,!f,!r"))]
2487   "(register_operand (operands[0], SImode)
2488     || reg_or_0_operand (operands[1], SImode))
2489    && !TARGET_SOFT_FLOAT
2490    && !TARGET_64BIT"
2491   "@
2492    ldw RT'%A1,%0
2493    copy %1,%0
2494    ldi %1,%0
2495    ldil L'%1,%0
2496    {zdepi|depwi,z} %Z1,%0
2497    ldw%M1 %1,%0
2498    stw%M0 %r1,%0
2499    mtsar %r1
2500    {mfctl|mfctl,w} %%sar,%0
2501    fcpy,sgl %f1,%0
2502    fldw%F1 %1,%0
2503    fstw%F0 %1,%0
2504    {fstws|fstw} %1,-16(%%sp)\n\t{ldws|ldw} -16(%%sp),%0
2505    {stws|stw} %1,-16(%%sp)\n\t{fldws|fldw} -16(%%sp),%0"
2506   [(set_attr "type" "load,move,move,move,shift,load,store,move,move,fpalu,fpload,fpstore,move,move")
2507    (set_attr "pa_combine_type" "addmove")
2508    (set_attr "length" "4,4,4,4,4,4,4,4,4,4,4,4,8,8")])
2509
2510 (define_insn ""
2511   [(set (match_operand:SI 0 "move_dest_operand"
2512                           "=r,r,r,r,r,r,Q,!*q,!r,!*f,*f,T")
2513         (match_operand:SI 1 "move_src_operand"
2514                           "A,r,J,N,K,RQ,rM,!rM,!*q,!*fM,RT,*f"))]
2515   "(register_operand (operands[0], SImode)
2516     || reg_or_0_operand (operands[1], SImode))
2517    && !TARGET_SOFT_FLOAT
2518    && TARGET_64BIT"
2519   "@
2520    ldw RT'%A1,%0
2521    copy %1,%0
2522    ldi %1,%0
2523    ldil L'%1,%0
2524    {zdepi|depwi,z} %Z1,%0
2525    ldw%M1 %1,%0
2526    stw%M0 %r1,%0
2527    mtsar %r1
2528    {mfctl|mfctl,w} %%sar,%0
2529    fcpy,sgl %f1,%0
2530    fldw%F1 %1,%0
2531    fstw%F0 %1,%0"
2532   [(set_attr "type" "load,move,move,move,shift,load,store,move,move,fpalu,fpload,fpstore")
2533    (set_attr "pa_combine_type" "addmove")
2534    (set_attr "length" "4,4,4,4,4,4,4,4,4,4,4,4")])
2535
2536 (define_insn ""
2537   [(set (match_operand:SI 0 "indexed_memory_operand" "=R")
2538         (match_operand:SI 1 "register_operand" "f"))]
2539   "!TARGET_SOFT_FLOAT
2540    && !TARGET_DISABLE_INDEXING
2541    && reload_completed"
2542   "fstw%F0 %1,%0"
2543   [(set_attr "type" "fpstore")
2544    (set_attr "pa_combine_type" "addmove")
2545    (set_attr "length" "4")])
2546
2547 ; Rewrite RTL using an indexed store.  This will allow the insn that
2548 ; computes the address to be deleted if the register it sets is dead.
2549 (define_peephole2
2550   [(set (match_operand:SI 0 "register_operand" "")
2551         (plus:SI (mult:SI (match_operand:SI 1 "register_operand" "")
2552                           (const_int 4))
2553                  (match_operand:SI 2 "register_operand" "")))
2554    (set (mem:SI (match_dup 0))
2555         (match_operand:SI 3 "register_operand" ""))]
2556   "!TARGET_SOFT_FLOAT
2557    && !TARGET_DISABLE_INDEXING
2558    && REG_OK_FOR_BASE_P (operands[2])
2559    && FP_REGNO_P (REGNO (operands[3]))"
2560   [(set (mem:SI (plus:SI (mult:SI (match_dup 1) (const_int 4)) (match_dup 2)))
2561         (match_dup 3))
2562    (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 4))
2563                                (match_dup 2)))]
2564   "")
2565
2566 (define_peephole2
2567   [(set (match_operand:SI 0 "register_operand" "")
2568         (plus:SI (match_operand:SI 2 "register_operand" "")
2569                  (mult:SI (match_operand:SI 1 "register_operand" "")
2570                           (const_int 4))))
2571    (set (mem:SI (match_dup 0))
2572         (match_operand:SI 3 "register_operand" ""))]
2573   "!TARGET_SOFT_FLOAT
2574    && !TARGET_DISABLE_INDEXING
2575    && REG_OK_FOR_BASE_P (operands[2])
2576    && FP_REGNO_P (REGNO (operands[3]))"
2577   [(set (mem:SI (plus:SI (mult:SI (match_dup 1) (const_int 4)) (match_dup 2)))
2578         (match_dup 3))
2579    (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 4))
2580                                (match_dup 2)))]
2581   "")
2582
2583 (define_peephole2
2584   [(set (match_operand:DI 0 "register_operand" "")
2585         (plus:DI (mult:DI (match_operand:DI 1 "register_operand" "")
2586                           (const_int 4))
2587                  (match_operand:DI 2 "register_operand" "")))
2588    (set (mem:SI (match_dup 0))
2589         (match_operand:SI 3 "register_operand" ""))]
2590   "!TARGET_SOFT_FLOAT
2591    && !TARGET_DISABLE_INDEXING
2592    && TARGET_64BIT
2593    && REG_OK_FOR_BASE_P (operands[2])
2594    && FP_REGNO_P (REGNO (operands[3]))"
2595   [(set (mem:SI (plus:DI (mult:DI (match_dup 1) (const_int 4)) (match_dup 2)))
2596         (match_dup 3))
2597    (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 4))
2598                                (match_dup 2)))]
2599   "")
2600
2601 (define_peephole2
2602   [(set (match_operand:DI 0 "register_operand" "")
2603         (plus:DI (match_operand:DI 2 "register_operand" "")
2604                  (mult:DI (match_operand:DI 1 "register_operand" "")
2605                           (const_int 4))))
2606    (set (mem:SI (match_dup 0))
2607         (match_operand:SI 3 "register_operand" ""))]
2608   "!TARGET_SOFT_FLOAT
2609    && !TARGET_DISABLE_INDEXING
2610    && TARGET_64BIT
2611    && REG_OK_FOR_BASE_P (operands[2])
2612    && FP_REGNO_P (REGNO (operands[3]))"
2613   [(set (mem:SI (plus:DI (mult:DI (match_dup 1) (const_int 4)) (match_dup 2)))
2614         (match_dup 3))
2615    (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 4))
2616                                (match_dup 2)))]
2617   "")
2618
2619 (define_peephole2
2620   [(set (match_operand:SI 0 "register_operand" "")
2621         (plus:SI (match_operand:SI 1 "register_operand" "")
2622                  (match_operand:SI 2 "register_operand" "")))
2623    (set (mem:SI (match_dup 0))
2624         (match_operand:SI 3 "register_operand" ""))]
2625   "!TARGET_SOFT_FLOAT
2626    && !TARGET_DISABLE_INDEXING
2627    && TARGET_NO_SPACE_REGS
2628    && REG_OK_FOR_INDEX_P (operands[1])
2629    && REG_OK_FOR_BASE_P (operands[2])
2630    && FP_REGNO_P (REGNO (operands[3]))"
2631   [(set (mem:SI (plus:SI (match_dup 1) (match_dup 2)))
2632         (match_dup 3))
2633    (set (match_dup 0) (plus:SI (match_dup 1) (match_dup 2)))]
2634   "")
2635
2636 (define_peephole2
2637   [(set (match_operand:SI 0 "register_operand" "")
2638         (plus:SI (match_operand:SI 1 "register_operand" "")
2639                  (match_operand:SI 2 "register_operand" "")))
2640    (set (mem:SI (match_dup 0))
2641         (match_operand:SI 3 "register_operand" ""))]
2642   "!TARGET_SOFT_FLOAT
2643    && !TARGET_DISABLE_INDEXING
2644    && TARGET_NO_SPACE_REGS
2645    && REG_OK_FOR_BASE_P (operands[1])
2646    && REG_OK_FOR_INDEX_P (operands[2])
2647    && FP_REGNO_P (REGNO (operands[3]))"
2648   [(set (mem:SI (plus:SI (match_dup 2) (match_dup 1)))
2649         (match_dup 3))
2650    (set (match_dup 0) (plus:SI (match_dup 2) (match_dup 1)))]
2651   "")
2652
2653 (define_peephole2
2654   [(set (match_operand:DI 0 "register_operand" "")
2655         (plus:DI (match_operand:DI 1 "register_operand" "")
2656                  (match_operand:DI 2 "register_operand" "")))
2657    (set (mem:SI (match_dup 0))
2658         (match_operand:SI 3 "register_operand" ""))]
2659   "!TARGET_SOFT_FLOAT
2660    && !TARGET_DISABLE_INDEXING
2661    && TARGET_64BIT
2662    && TARGET_NO_SPACE_REGS
2663    && REG_OK_FOR_INDEX_P (operands[1])
2664    && REG_OK_FOR_BASE_P (operands[2])
2665    && FP_REGNO_P (REGNO (operands[3]))"
2666   [(set (mem:SI (plus:DI (match_dup 1) (match_dup 2)))
2667         (match_dup 3))
2668    (set (match_dup 0) (plus:DI (match_dup 1) (match_dup 2)))]
2669   "")
2670
2671 (define_peephole2
2672   [(set (match_operand:DI 0 "register_operand" "")
2673         (plus:DI (match_operand:DI 1 "register_operand" "")
2674                  (match_operand:DI 2 "register_operand" "")))
2675    (set (mem:SI (match_dup 0))
2676         (match_operand:SI 3 "register_operand" ""))]
2677   "!TARGET_SOFT_FLOAT
2678    && !TARGET_DISABLE_INDEXING
2679    && TARGET_64BIT
2680    && TARGET_NO_SPACE_REGS
2681    && REG_OK_FOR_BASE_P (operands[1])
2682    && REG_OK_FOR_INDEX_P (operands[2])
2683    && FP_REGNO_P (REGNO (operands[3]))"
2684   [(set (mem:SI (plus:DI (match_dup 2) (match_dup 1)))
2685         (match_dup 3))
2686    (set (match_dup 0) (plus:DI (match_dup 2) (match_dup 1)))]
2687   "")
2688
2689 (define_insn ""
2690   [(set (match_operand:SI 0 "move_dest_operand"
2691                           "=r,r,r,r,r,r,Q,!*q,!r")
2692         (match_operand:SI 1 "move_src_operand"
2693                           "A,r,J,N,K,RQ,rM,!rM,!*q"))]
2694   "(register_operand (operands[0], SImode)
2695     || reg_or_0_operand (operands[1], SImode))
2696    && TARGET_SOFT_FLOAT"
2697   "@
2698    ldw RT'%A1,%0
2699    copy %1,%0
2700    ldi %1,%0
2701    ldil L'%1,%0
2702    {zdepi|depwi,z} %Z1,%0
2703    ldw%M1 %1,%0
2704    stw%M0 %r1,%0
2705    mtsar %r1
2706    {mfctl|mfctl,w} %%sar,%0"
2707   [(set_attr "type" "load,move,move,move,move,load,store,move,move")
2708    (set_attr "pa_combine_type" "addmove")
2709    (set_attr "length" "4,4,4,4,4,4,4,4,4")])
2710
2711 ;; Load or store with base-register modification.
2712 (define_insn ""
2713   [(set (match_operand:SI 0 "register_operand" "=r")
2714         (mem:SI (plus:DI (match_operand:DI 1 "register_operand" "+r")
2715                          (match_operand:DI 2 "int5_operand" "L"))))
2716    (set (match_dup 1)
2717         (plus:DI (match_dup 1) (match_dup 2)))]
2718   "TARGET_64BIT"
2719   "ldw,mb %2(%1),%0"
2720   [(set_attr "type" "load")
2721    (set_attr "length" "4")])
2722
2723 ; And a zero extended variant.
2724 (define_insn ""
2725   [(set (match_operand:DI 0 "register_operand" "=r")
2726         (zero_extend:DI (mem:SI
2727                           (plus:DI
2728                             (match_operand:DI 1 "register_operand" "+r")
2729                             (match_operand:DI 2 "int5_operand" "L")))))
2730    (set (match_dup 1)
2731         (plus:DI (match_dup 1) (match_dup 2)))]
2732   "TARGET_64BIT"
2733   "ldw,mb %2(%1),%0"
2734   [(set_attr "type" "load")
2735    (set_attr "length" "4")])
2736
2737 (define_expand "pre_load"
2738   [(parallel [(set (match_operand:SI 0 "register_operand" "")
2739               (mem (plus (match_operand 1 "register_operand" "")
2740                                (match_operand 2 "pre_cint_operand" ""))))
2741               (set (match_dup 1)
2742                    (plus (match_dup 1) (match_dup 2)))])]
2743   ""
2744   "
2745 {
2746   if (TARGET_64BIT)
2747     {
2748       emit_insn (gen_pre_ldd (operands[0], operands[1], operands[2]));
2749       DONE;
2750     }
2751   emit_insn (gen_pre_ldw (operands[0], operands[1], operands[2]));
2752   DONE;
2753 }")
2754
2755 (define_insn "pre_ldw"
2756   [(set (match_operand:SI 0 "register_operand" "=r")
2757         (mem:SI (plus:SI (match_operand:SI 1 "register_operand" "+r")
2758                          (match_operand:SI 2 "pre_cint_operand" ""))))
2759    (set (match_dup 1)
2760         (plus:SI (match_dup 1) (match_dup 2)))]
2761   ""
2762   "*
2763 {
2764   if (INTVAL (operands[2]) < 0)
2765     return \"{ldwm|ldw,mb} %2(%1),%0\";
2766   return \"{ldws|ldw},mb %2(%1),%0\";
2767 }"
2768   [(set_attr "type" "load")
2769    (set_attr "length" "4")])
2770
2771 (define_insn "pre_ldd"
2772   [(set (match_operand:DI 0 "register_operand" "=r")
2773         (mem:DI (plus:DI (match_operand:DI 1 "register_operand" "+r")
2774                          (match_operand:DI 2 "pre_cint_operand" ""))))
2775    (set (match_dup 1)
2776         (plus:DI (match_dup 1) (match_dup 2)))]
2777   "TARGET_64BIT"
2778   "ldd,mb %2(%1),%0"
2779   [(set_attr "type" "load")
2780    (set_attr "length" "4")])
2781
2782 (define_insn ""
2783   [(set (mem:SI (plus:SI (match_operand:SI 0 "register_operand" "+r")
2784                          (match_operand:SI 1 "pre_cint_operand" "")))
2785         (match_operand:SI 2 "reg_or_0_operand" "rM"))
2786    (set (match_dup 0)
2787         (plus:SI (match_dup 0) (match_dup 1)))]
2788   ""
2789   "*
2790 {
2791   if (INTVAL (operands[1]) < 0)
2792     return \"{stwm|stw,mb} %r2,%1(%0)\";
2793   return \"{stws|stw},mb %r2,%1(%0)\";
2794 }"
2795   [(set_attr "type" "store")
2796    (set_attr "length" "4")])
2797
2798 (define_insn ""
2799   [(set (match_operand:SI 0 "register_operand" "=r")
2800         (mem:SI (match_operand:SI 1 "register_operand" "+r")))
2801    (set (match_dup 1)
2802         (plus:SI (match_dup 1)
2803                  (match_operand:SI 2 "post_cint_operand" "")))]
2804   ""
2805   "*
2806 {
2807   if (INTVAL (operands[2]) > 0)
2808     return \"{ldwm|ldw,ma} %2(%1),%0\";
2809   return \"{ldws|ldw},ma %2(%1),%0\";
2810 }"
2811   [(set_attr "type" "load")
2812    (set_attr "length" "4")])
2813
2814 (define_expand "post_store"
2815   [(parallel [(set (mem (match_operand 0 "register_operand" ""))
2816                    (match_operand 1 "reg_or_0_operand" ""))
2817               (set (match_dup 0)
2818                    (plus (match_dup 0)
2819                          (match_operand 2 "post_cint_operand" "")))])]
2820   ""
2821   "
2822 {
2823   if (TARGET_64BIT)
2824     {
2825       emit_insn (gen_post_std (operands[0], operands[1], operands[2]));
2826       DONE;
2827     }
2828   emit_insn (gen_post_stw (operands[0], operands[1], operands[2]));
2829   DONE;
2830 }")
2831
2832 (define_insn "post_stw"
2833   [(set (mem:SI (match_operand:SI 0 "register_operand" "+r"))
2834         (match_operand:SI 1 "reg_or_0_operand" "rM"))
2835    (set (match_dup 0)
2836         (plus:SI (match_dup 0)
2837                  (match_operand:SI 2 "post_cint_operand" "")))]
2838   ""
2839   "*
2840 {
2841   if (INTVAL (operands[2]) > 0)
2842     return \"{stwm|stw,ma} %r1,%2(%0)\";
2843   return \"{stws|stw},ma %r1,%2(%0)\";
2844 }"
2845   [(set_attr "type" "store")
2846    (set_attr "length" "4")])
2847
2848 (define_insn "post_std"
2849   [(set (mem:DI (match_operand:DI 0 "register_operand" "+r"))
2850         (match_operand:DI 1 "reg_or_0_operand" "rM"))
2851    (set (match_dup 0)
2852         (plus:DI (match_dup 0)
2853                  (match_operand:DI 2 "post_cint_operand" "")))]
2854   "TARGET_64BIT"
2855   "std,ma %r1,%2(%0)"
2856   [(set_attr "type" "store")
2857    (set_attr "length" "4")])
2858
2859 ;; For loading the address of a label while generating PIC code.
2860 ;; Note since this pattern can be created at reload time (via movsi), all
2861 ;; the same rules for movsi apply here.  (no new pseudos, no temporaries).
2862 (define_insn ""
2863   [(set (match_operand 0 "pmode_register_operand" "=a")
2864         (match_operand 1 "pic_label_operand" ""))]
2865   "TARGET_PA_20"
2866   "*
2867 {
2868   rtx xoperands[3];
2869
2870   xoperands[0] = operands[0];
2871   xoperands[1] = operands[1];
2872   xoperands[2] = gen_label_rtx ();
2873
2874   (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
2875                                      CODE_LABEL_NUMBER (xoperands[2]));
2876   output_asm_insn (\"mfia %0\", xoperands);
2877
2878   /* If we're trying to load the address of a label that happens to be
2879      close, then we can use a shorter sequence.  */
2880   if (GET_CODE (operands[1]) == LABEL_REF
2881       && !LABEL_REF_NONLOCAL_P (operands[1])
2882       && INSN_ADDRESSES_SET_P ()
2883       && abs (INSN_ADDRESSES (INSN_UID (XEXP (operands[1], 0)))
2884                 - INSN_ADDRESSES (INSN_UID (insn))) < 8100)
2885     output_asm_insn (\"ldo %1-%2(%0),%0\", xoperands);
2886   else
2887     {
2888       output_asm_insn (\"addil L%%%1-%2,%0\", xoperands);
2889       output_asm_insn (\"ldo R%%%1-%2(%0),%0\", xoperands);
2890     }
2891   return \"\";
2892 }"
2893   [(set_attr "type" "multi")
2894    (set_attr "length" "12")])           ; 8 or 12
2895
2896 (define_insn ""
2897   [(set (match_operand 0 "pmode_register_operand" "=a")
2898         (match_operand 1 "pic_label_operand" ""))]
2899   "!TARGET_PA_20"
2900   "*
2901 {
2902   rtx xoperands[3];
2903
2904   xoperands[0] = operands[0];
2905   xoperands[1] = operands[1];
2906   xoperands[2] = gen_label_rtx ();
2907
2908   output_asm_insn (\"bl .+8,%0\", xoperands);
2909   output_asm_insn (\"depi 0,31,2,%0\", xoperands);
2910   (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
2911                                      CODE_LABEL_NUMBER (xoperands[2]));
2912
2913   /* If we're trying to load the address of a label that happens to be
2914      close, then we can use a shorter sequence.  */
2915   if (GET_CODE (operands[1]) == LABEL_REF
2916       && !LABEL_REF_NONLOCAL_P (operands[1])
2917       && INSN_ADDRESSES_SET_P ()
2918       && abs (INSN_ADDRESSES (INSN_UID (XEXP (operands[1], 0)))
2919                 - INSN_ADDRESSES (INSN_UID (insn))) < 8100)
2920     output_asm_insn (\"ldo %1-%2(%0),%0\", xoperands);
2921   else
2922     {
2923       output_asm_insn (\"addil L%%%1-%2,%0\", xoperands);
2924       output_asm_insn (\"ldo R%%%1-%2(%0),%0\", xoperands);
2925     }
2926   return \"\";
2927 }"
2928   [(set_attr "type" "multi")
2929    (set_attr "length" "16")])           ; 12 or 16
2930
2931 (define_insn ""
2932   [(set (match_operand:SI 0 "register_operand" "=a")
2933         (plus:SI (match_operand:SI 1 "register_operand" "r")
2934                  (high:SI (match_operand 2 "" ""))))]
2935   "symbolic_operand (operands[2], Pmode)
2936    && ! function_label_operand (operands[2], Pmode)
2937    && flag_pic"
2938   "addil LT'%G2,%1"
2939   [(set_attr "type" "binary")
2940    (set_attr "length" "4")])
2941
2942 (define_insn ""
2943   [(set (match_operand:DI 0 "register_operand" "=a")
2944         (plus:DI (match_operand:DI 1 "register_operand" "r")
2945                  (high:DI (match_operand 2 "" ""))))]
2946   "symbolic_operand (operands[2], Pmode)
2947    && ! function_label_operand (operands[2], Pmode)
2948    && TARGET_64BIT
2949    && flag_pic"
2950   "addil LT'%G2,%1"
2951   [(set_attr "type" "binary")
2952    (set_attr "length" "4")])
2953
2954 ;; Always use addil rather than ldil;add sequences.  This allows the
2955 ;; HP linker to eliminate the dp relocation if the symbolic operand
2956 ;; lives in the TEXT space.
2957 (define_insn ""
2958   [(set (match_operand:SI 0 "register_operand" "=a")
2959         (high:SI (match_operand 1 "" "")))]
2960   "symbolic_operand (operands[1], Pmode)
2961    && ! function_label_operand (operands[1], Pmode)
2962    && ! read_only_operand (operands[1], Pmode)
2963    && ! flag_pic"
2964   "*
2965 {
2966   if (TARGET_LONG_LOAD_STORE)
2967     return \"addil NLR'%H1,%%r27\;ldo N'%H1(%%r1),%%r1\";
2968   else
2969     return \"addil LR'%H1,%%r27\";
2970 }"
2971   [(set_attr "type" "binary")
2972    (set (attr "length")
2973       (if_then_else (eq (symbol_ref "TARGET_LONG_LOAD_STORE") (const_int 0))
2974                     (const_int 4)
2975                     (const_int 8)))])
2976
2977
2978 ;; This is for use in the prologue/epilogue code.  We need it
2979 ;; to add large constants to a stack pointer or frame pointer.
2980 ;; Because of the additional %r1 pressure, we probably do not
2981 ;; want to use this in general code, so make it available
2982 ;; only after reload.
2983 (define_insn ""
2984   [(set (match_operand:SI 0 "register_operand" "=!a,*r")
2985         (plus:SI (match_operand:SI 1 "register_operand" "r,r")
2986                  (high:SI (match_operand 2 "const_int_operand" ""))))]
2987   "reload_completed"
2988   "@
2989    addil L'%G2,%1
2990    ldil L'%G2,%0\;{addl|add,l} %0,%1,%0"
2991   [(set_attr "type" "binary,binary")
2992    (set_attr "length" "4,8")])
2993
2994 (define_insn ""
2995   [(set (match_operand:DI 0 "register_operand" "=!a,*r")
2996         (plus:DI (match_operand:DI 1 "register_operand" "r,r")
2997                  (high:DI (match_operand 2 "const_int_operand" ""))))]
2998   "reload_completed && TARGET_64BIT"
2999   "@
3000    addil L'%G2,%1
3001    ldil L'%G2,%0\;{addl|add,l} %0,%1,%0"
3002   [(set_attr "type" "binary,binary")
3003    (set_attr "length" "4,8")])
3004
3005 (define_insn ""
3006   [(set (match_operand:SI 0 "register_operand" "=r")
3007         (high:SI (match_operand 1 "" "")))]
3008   "(!flag_pic || !symbolic_operand (operands[1], Pmode))
3009     && !is_function_label_plus_const (operands[1])"
3010   "*
3011 {
3012   if (symbolic_operand (operands[1], Pmode))
3013     return \"ldil LR'%H1,%0\";
3014   else
3015     return \"ldil L'%G1,%0\";
3016 }"
3017   [(set_attr "type" "move")
3018    (set_attr "length" "4")])
3019
3020 (define_insn ""
3021   [(set (match_operand:DI 0 "register_operand" "=r")
3022         (high:DI (match_operand 1 "const_int_operand" "")))]
3023   "TARGET_64BIT"
3024   "ldil L'%G1,%0";
3025   [(set_attr "type" "move")
3026    (set_attr "length" "4")])
3027
3028 (define_insn ""
3029   [(set (match_operand:DI 0 "register_operand" "=r")
3030         (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
3031                    (match_operand:DI 2 "const_int_operand" "i")))]
3032   "TARGET_64BIT"
3033   "ldo R'%G2(%1),%0";
3034   [(set_attr "type" "move")
3035    (set_attr "length" "4")])
3036
3037 (define_insn ""
3038   [(set (match_operand:SI 0 "register_operand" "=r")
3039         (lo_sum:SI (match_operand:SI 1 "register_operand" "r")
3040                    (match_operand:SI 2 "immediate_operand" "i")))]
3041   "!is_function_label_plus_const (operands[2])"
3042   "*
3043 {
3044   gcc_assert (!flag_pic || !symbolic_operand (operands[2], Pmode));
3045   
3046   if (symbolic_operand (operands[2], Pmode))
3047     return \"ldo RR'%G2(%1),%0\";
3048   else
3049     return \"ldo R'%G2(%1),%0\";
3050 }"
3051   [(set_attr "type" "move")
3052    (set_attr "length" "4")])
3053
3054 ;; Now that a symbolic_address plus a constant is broken up early
3055 ;; in the compilation phase (for better CSE) we need a special
3056 ;; combiner pattern to load the symbolic address plus the constant
3057 ;; in only 2 instructions. (For cases where the symbolic address
3058 ;; was not a common subexpression.)
3059 (define_split
3060   [(set (match_operand:SI 0 "register_operand" "")
3061         (match_operand:SI 1 "symbolic_operand" ""))
3062    (clobber (match_operand:SI 2 "register_operand" ""))]
3063   "! (flag_pic && pic_label_operand (operands[1], SImode))"
3064   [(set (match_dup 2) (high:SI (match_dup 1)))
3065    (set (match_dup 0) (lo_sum:SI (match_dup 2) (match_dup 1)))]
3066   "")
3067
3068 ;; hppa_legitimize_address goes to a great deal of trouble to
3069 ;; create addresses which use indexing.  In some cases, this
3070 ;; is a lose because there isn't any store instructions which
3071 ;; allow indexed addresses (with integer register source).
3072 ;;
3073 ;; These define_splits try to turn a 3 insn store into
3074 ;; a 2 insn store with some creative RTL rewriting.
3075 (define_split
3076   [(set (mem:SI (plus:SI (mult:SI (match_operand:SI 0 "register_operand" "")
3077                                (match_operand:SI 1 "shadd_operand" ""))
3078                    (plus:SI (match_operand:SI 2 "register_operand" "")
3079                             (match_operand:SI 3 "const_int_operand" ""))))
3080         (match_operand:SI 4 "register_operand" ""))
3081    (clobber (match_operand:SI 5 "register_operand" ""))]
3082   ""
3083   [(set (match_dup 5) (plus:SI (mult:SI (match_dup 0) (match_dup 1))
3084                                (match_dup 2)))
3085    (set (mem:SI (plus:SI (match_dup 5) (match_dup 3))) (match_dup 4))]
3086   "")
3087
3088 (define_split
3089   [(set (mem:HI (plus:SI (mult:SI (match_operand:SI 0 "register_operand" "")
3090                                (match_operand:SI 1 "shadd_operand" ""))
3091                    (plus:SI (match_operand:SI 2 "register_operand" "")
3092                             (match_operand:SI 3 "const_int_operand" ""))))
3093         (match_operand:HI 4 "register_operand" ""))
3094    (clobber (match_operand:SI 5 "register_operand" ""))]
3095   ""
3096   [(set (match_dup 5) (plus:SI (mult:SI (match_dup 0) (match_dup 1))
3097                                (match_dup 2)))
3098    (set (mem:HI (plus:SI (match_dup 5) (match_dup 3))) (match_dup 4))]
3099   "")
3100
3101 (define_split
3102   [(set (mem:QI (plus:SI (mult:SI (match_operand:SI 0 "register_operand" "")
3103                                (match_operand:SI 1 "shadd_operand" ""))
3104                    (plus:SI (match_operand:SI 2 "register_operand" "")
3105                             (match_operand:SI 3 "const_int_operand" ""))))
3106         (match_operand:QI 4 "register_operand" ""))
3107    (clobber (match_operand:SI 5 "register_operand" ""))]
3108   ""
3109   [(set (match_dup 5) (plus:SI (mult:SI (match_dup 0) (match_dup 1))
3110                                (match_dup 2)))
3111    (set (mem:QI (plus:SI (match_dup 5) (match_dup 3))) (match_dup 4))]
3112   "")
3113
3114 (define_expand "movhi"
3115   [(set (match_operand:HI 0 "general_operand" "")
3116         (match_operand:HI 1 "general_operand" ""))]
3117   ""
3118   "
3119 {
3120   if (emit_move_sequence (operands, HImode, 0))
3121     DONE;
3122 }")
3123
3124 (define_insn ""
3125   [(set (match_operand:HI 0 "move_dest_operand"
3126                           "=r,r,r,r,r,Q,!*q,!r,!*f,!r,!f")
3127         (match_operand:HI 1 "move_src_operand"
3128                           "r,J,N,K,RQ,rM,!rM,!*q,!*fM,!f,!r"))]
3129   "(register_operand (operands[0], HImode)
3130     || reg_or_0_operand (operands[1], HImode))
3131    && !TARGET_SOFT_FLOAT
3132    && !TARGET_64BIT"
3133   "@
3134    copy %1,%0
3135    ldi %1,%0
3136    ldil L'%1,%0
3137    {zdepi|depwi,z} %Z1,%0
3138    ldh%M1 %1,%0
3139    sth%M0 %r1,%0
3140    mtsar %r1
3141    {mfctl|mfctl,w} %sar,%0
3142    fcpy,sgl %f1,%0
3143    {fstws|fstw} %1,-16(%%sp)\n\t{ldws|ldw} -16(%%sp),%0
3144    {stws|stw} %1,-16(%%sp)\n\t{fldws|fldw} -16(%%sp),%0"
3145   [(set_attr "type" "move,move,move,shift,load,store,move,move,move,move,move")
3146    (set_attr "pa_combine_type" "addmove")
3147    (set_attr "length" "4,4,4,4,4,4,4,4,4,8,8")])
3148
3149 (define_insn ""
3150   [(set (match_operand:HI 0 "move_dest_operand"
3151                           "=r,r,r,r,r,Q,!*q,!r,!*f")
3152         (match_operand:HI 1 "move_src_operand"
3153                           "r,J,N,K,RQ,rM,!rM,!*q,!*fM"))]
3154   "(register_operand (operands[0], HImode)
3155     || reg_or_0_operand (operands[1], HImode))
3156    && !TARGET_SOFT_FLOAT
3157    && TARGET_64BIT"
3158   "@
3159    copy %1,%0
3160    ldi %1,%0
3161    ldil L'%1,%0
3162    {zdepi|depwi,z} %Z1,%0
3163    ldh%M1 %1,%0
3164    sth%M0 %r1,%0
3165    mtsar %r1
3166    {mfctl|mfctl,w} %sar,%0
3167    fcpy,sgl %f1,%0"
3168   [(set_attr "type" "move,move,move,shift,load,store,move,move,move")
3169    (set_attr "pa_combine_type" "addmove")
3170    (set_attr "length" "4,4,4,4,4,4,4,4,4")])
3171
3172 (define_insn ""
3173   [(set (match_operand:HI 0 "move_dest_operand"
3174                           "=r,r,r,r,r,Q,!*q,!r")
3175         (match_operand:HI 1 "move_src_operand"
3176                           "r,J,N,K,RQ,rM,!rM,!*q"))]
3177   "(register_operand (operands[0], HImode)
3178     || reg_or_0_operand (operands[1], HImode))
3179    && TARGET_SOFT_FLOAT"
3180   "@
3181    copy %1,%0
3182    ldi %1,%0
3183    ldil L'%1,%0
3184    {zdepi|depwi,z} %Z1,%0
3185    ldh%M1 %1,%0
3186    sth%M0 %r1,%0
3187    mtsar %r1
3188    {mfctl|mfctl,w} %sar,%0"
3189   [(set_attr "type" "move,move,move,shift,load,store,move,move")
3190    (set_attr "pa_combine_type" "addmove")
3191    (set_attr "length" "4,4,4,4,4,4,4,4")])
3192
3193 (define_insn ""
3194   [(set (match_operand:HI 0 "register_operand" "=r")
3195         (mem:HI (plus:SI (match_operand:SI 1 "register_operand" "+r")
3196                          (match_operand:SI 2 "int5_operand" "L"))))
3197    (set (match_dup 1)
3198         (plus:SI (match_dup 1) (match_dup 2)))]
3199   ""
3200   "{ldhs|ldh},mb %2(%1),%0"
3201   [(set_attr "type" "load")
3202    (set_attr "length" "4")])
3203
3204 (define_insn ""
3205   [(set (match_operand:HI 0 "register_operand" "=r")
3206         (mem:HI (plus:DI (match_operand:DI 1 "register_operand" "+r")
3207                          (match_operand:DI 2 "int5_operand" "L"))))
3208    (set (match_dup 1)
3209         (plus:DI (match_dup 1) (match_dup 2)))]
3210   "TARGET_64BIT"
3211   "ldh,mb %2(%1),%0"
3212   [(set_attr "type" "load")
3213    (set_attr "length" "4")])
3214
3215 ; And a zero extended variant.
3216 (define_insn ""
3217   [(set (match_operand:DI 0 "register_operand" "=r")
3218         (zero_extend:DI (mem:HI
3219                           (plus:DI
3220                             (match_operand:DI 1 "register_operand" "+r")
3221                             (match_operand:DI 2 "int5_operand" "L")))))
3222    (set (match_dup 1)
3223         (plus:DI (match_dup 1) (match_dup 2)))]
3224   "TARGET_64BIT"
3225   "ldh,mb %2(%1),%0"
3226   [(set_attr "type" "load")
3227    (set_attr "length" "4")])
3228
3229 (define_insn ""
3230   [(set (match_operand:SI 0 "register_operand" "=r")
3231         (zero_extend:SI (mem:HI
3232                           (plus:SI
3233                             (match_operand:SI 1 "register_operand" "+r")
3234                             (match_operand:SI 2 "int5_operand" "L")))))
3235    (set (match_dup 1)
3236         (plus:SI (match_dup 1) (match_dup 2)))]
3237   ""
3238   "{ldhs|ldh},mb %2(%1),%0"
3239   [(set_attr "type" "load")
3240    (set_attr "length" "4")])
3241
3242 (define_insn ""
3243   [(set (match_operand:SI 0 "register_operand" "=r")
3244         (zero_extend:SI (mem:HI
3245                           (plus:DI
3246                             (match_operand:DI 1 "register_operand" "+r")
3247                             (match_operand:DI 2 "int5_operand" "L")))))
3248    (set (match_dup 1)
3249         (plus:DI (match_dup 1) (match_dup 2)))]
3250   "TARGET_64BIT"
3251   "ldh,mb %2(%1),%0"
3252   [(set_attr "type" "load")
3253    (set_attr "length" "4")])
3254
3255 (define_insn ""
3256   [(set (mem:HI (plus:SI (match_operand:SI 0 "register_operand" "+r")
3257                          (match_operand:SI 1 "int5_operand" "L")))
3258         (match_operand:HI 2 "reg_or_0_operand" "rM"))
3259    (set (match_dup 0)
3260         (plus:SI (match_dup 0) (match_dup 1)))]
3261   ""
3262   "{sths|sth},mb %r2,%1(%0)"
3263   [(set_attr "type" "store")
3264    (set_attr "length" "4")])
3265
3266 (define_insn ""
3267   [(set (mem:HI (plus:DI (match_operand:DI 0 "register_operand" "+r")
3268                          (match_operand:DI 1 "int5_operand" "L")))
3269         (match_operand:HI 2 "reg_or_0_operand" "rM"))
3270    (set (match_dup 0)
3271         (plus:DI (match_dup 0) (match_dup 1)))]
3272   "TARGET_64BIT"
3273   "sth,mb %r2,%1(%0)"
3274   [(set_attr "type" "store")
3275    (set_attr "length" "4")])
3276
3277 (define_insn ""
3278   [(set (match_operand:HI 0 "register_operand" "=r")
3279         (plus:HI (match_operand:HI 1 "register_operand" "r")
3280                  (match_operand 2 "const_int_operand" "J")))]
3281   ""
3282   "ldo %2(%1),%0"
3283   [(set_attr "type" "binary")
3284    (set_attr "pa_combine_type" "addmove")
3285    (set_attr "length" "4")])
3286
3287 (define_expand "movqi"
3288   [(set (match_operand:QI 0 "general_operand" "")
3289         (match_operand:QI 1 "general_operand" ""))]
3290   ""
3291   "
3292 {
3293   if (emit_move_sequence (operands, QImode, 0))
3294     DONE;
3295 }")
3296
3297 (define_insn ""
3298   [(set (match_operand:QI 0 "move_dest_operand"
3299                           "=r,r,r,r,r,Q,!*q,!r,!*f,!r,!f")
3300         (match_operand:QI 1 "move_src_operand"
3301                           "r,J,N,K,RQ,rM,!rM,!*q,!*fM,!f,!r"))]
3302   "(register_operand (operands[0], QImode)
3303     || reg_or_0_operand (operands[1], QImode))
3304    && !TARGET_SOFT_FLOAT
3305    && !TARGET_64BIT"
3306   "@
3307    copy %1,%0
3308    ldi %1,%0
3309    ldil L'%1,%0
3310    {zdepi|depwi,z} %Z1,%0
3311    ldb%M1 %1,%0
3312    stb%M0 %r1,%0
3313    mtsar %r1
3314    {mfctl|mfctl,w} %%sar,%0
3315    fcpy,sgl %f1,%0
3316    {fstws|fstw} %1,-16(%%sp)\n\t{ldws|ldw} -16(%%sp),%0
3317    {stws|stw} %1,-16(%%sp)\n\t{fldws|fldw} -16(%%sp),%0"
3318   [(set_attr "type" "move,move,move,shift,load,store,move,move,move,move,move")
3319    (set_attr "pa_combine_type" "addmove")
3320    (set_attr "length" "4,4,4,4,4,4,4,4,4,8,8")])
3321
3322 (define_insn ""
3323   [(set (match_operand:QI 0 "move_dest_operand"
3324                           "=r,r,r,r,r,Q,!*q,!r,!*f")
3325         (match_operand:QI 1 "move_src_operand"
3326                           "r,J,N,K,RQ,rM,!rM,!*q,!*fM"))]
3327   "(register_operand (operands[0], QImode)
3328     || reg_or_0_operand (operands[1], QImode))
3329    && !TARGET_SOFT_FLOAT
3330    && TARGET_64BIT"
3331   "@
3332    copy %1,%0
3333    ldi %1,%0
3334    ldil L'%1,%0
3335    {zdepi|depwi,z} %Z1,%0
3336    ldb%M1 %1,%0
3337    stb%M0 %r1,%0
3338    mtsar %r1
3339    {mfctl|mfctl,w} %%sar,%0
3340    fcpy,sgl %f1,%0"
3341   [(set_attr "type" "move,move,move,shift,load,store,move,move,move")
3342    (set_attr "pa_combine_type" "addmove")
3343    (set_attr "length" "4,4,4,4,4,4,4,4,4")])
3344
3345 (define_insn ""
3346   [(set (match_operand:QI 0 "move_dest_operand"
3347                           "=r,r,r,r,r,Q,!*q,!r")
3348         (match_operand:QI 1 "move_src_operand"
3349                           "r,J,N,K,RQ,rM,!rM,!*q"))]
3350   "(register_operand (operands[0], QImode)
3351     || reg_or_0_operand (operands[1], QImode))
3352    && TARGET_SOFT_FLOAT"
3353   "@
3354    copy %1,%0
3355    ldi %1,%0
3356    ldil L'%1,%0
3357    {zdepi|depwi,z} %Z1,%0
3358    ldb%M1 %1,%0
3359    stb%M0 %r1,%0
3360    mtsar %r1
3361    {mfctl|mfctl,w} %%sar,%0"
3362   [(set_attr "type" "move,move,move,shift,load,store,move,move")
3363    (set_attr "pa_combine_type" "addmove")
3364    (set_attr "length" "4,4,4,4,4,4,4,4")])
3365
3366 (define_insn ""
3367   [(set (match_operand:QI 0 "register_operand" "=r")
3368         (mem:QI (plus:SI (match_operand:SI 1 "register_operand" "+r")
3369                          (match_operand:SI 2 "int5_operand" "L"))))
3370    (set (match_dup 1) (plus:SI (match_dup 1) (match_dup 2)))]
3371   ""
3372   "{ldbs|ldb},mb %2(%1),%0"
3373   [(set_attr "type" "load")
3374    (set_attr "length" "4")])
3375
3376 (define_insn ""
3377   [(set (match_operand:QI 0 "register_operand" "=r")
3378         (mem:QI (plus:DI (match_operand:DI 1 "register_operand" "+r")
3379                          (match_operand:DI 2 "int5_operand" "L"))))
3380    (set (match_dup 1) (plus:DI (match_dup 1) (match_dup 2)))]
3381   "TARGET_64BIT"
3382   "ldb,mb %2(%1),%0"
3383   [(set_attr "type" "load")
3384    (set_attr "length" "4")])
3385
3386 ; Now the same thing with zero extensions.
3387 (define_insn ""
3388   [(set (match_operand:DI 0 "register_operand" "=r")
3389         (zero_extend:DI (mem:QI (plus:DI
3390                                   (match_operand:DI 1 "register_operand" "+r")
3391                                   (match_operand:DI 2 "int5_operand" "L")))))
3392    (set (match_dup 1) (plus:DI (match_dup 1) (match_dup 2)))]
3393   "TARGET_64BIT"
3394   "ldb,mb %2(%1),%0"
3395   [(set_attr "type" "load")
3396    (set_attr "length" "4")])
3397
3398 (define_insn ""
3399   [(set (match_operand:SI 0 "register_operand" "=r")
3400         (zero_extend:SI (mem:QI (plus:SI
3401                                   (match_operand:SI 1 "register_operand" "+r")
3402                                   (match_operand:SI 2 "int5_operand" "L")))))
3403    (set (match_dup 1) (plus:SI (match_dup 1) (match_dup 2)))]
3404   ""
3405   "{ldbs|ldb},mb %2(%1),%0"
3406   [(set_attr "type" "load")
3407    (set_attr "length" "4")])
3408
3409 (define_insn ""
3410   [(set (match_operand:SI 0 "register_operand" "=r")
3411         (zero_extend:SI (mem:QI (plus:DI
3412                                   (match_operand:DI 1 "register_operand" "+r")
3413                                   (match_operand:DI 2 "int5_operand" "L")))))
3414    (set (match_dup 1) (plus:DI (match_dup 1) (match_dup 2)))]
3415   "TARGET_64BIT"
3416   "ldb,mb %2(%1),%0"
3417   [(set_attr "type" "load")
3418    (set_attr "length" "4")])
3419
3420 (define_insn ""
3421   [(set (match_operand:HI 0 "register_operand" "=r")
3422         (zero_extend:HI (mem:QI (plus:SI
3423                                   (match_operand:SI 1 "register_operand" "+r")
3424                                   (match_operand:SI 2 "int5_operand" "L")))))
3425    (set (match_dup 1) (plus:SI (match_dup 1) (match_dup 2)))]
3426   ""
3427   "{ldbs|ldb},mb %2(%1),%0"
3428   [(set_attr "type" "load")
3429    (set_attr "length" "4")])
3430
3431 (define_insn ""
3432   [(set (match_operand:HI 0 "register_operand" "=r")
3433         (zero_extend:HI (mem:QI (plus:DI
3434                                   (match_operand:DI 1 "register_operand" "+r")
3435                                   (match_operand:DI 2 "int5_operand" "L")))))
3436    (set (match_dup 1) (plus:DI (match_dup 1) (match_dup 2)))]
3437   "TARGET_64BIT"
3438   "ldb,mb %2(%1),%0"
3439   [(set_attr "type" "load")
3440    (set_attr "length" "4")])
3441
3442 (define_insn ""
3443   [(set (mem:QI (plus:SI (match_operand:SI 0 "register_operand" "+r")
3444                          (match_operand:SI 1 "int5_operand" "L")))
3445         (match_operand:QI 2 "reg_or_0_operand" "rM"))
3446    (set (match_dup 0)
3447         (plus:SI (match_dup 0) (match_dup 1)))]
3448   ""
3449   "{stbs|stb},mb %r2,%1(%0)"
3450   [(set_attr "type" "store")
3451    (set_attr "length" "4")])
3452
3453 (define_insn ""
3454   [(set (mem:QI (plus:DI (match_operand:DI 0 "register_operand" "+r")
3455                          (match_operand:DI 1 "int5_operand" "L")))
3456         (match_operand:QI 2 "reg_or_0_operand" "rM"))
3457    (set (match_dup 0)
3458         (plus:DI (match_dup 0) (match_dup 1)))]
3459   "TARGET_64BIT"
3460   "stb,mb %r2,%1(%0)"
3461   [(set_attr "type" "store")
3462    (set_attr "length" "4")])
3463
3464 ;; The definition of this insn does not really explain what it does,
3465 ;; but it should suffice that anything generated as this insn will be
3466 ;; recognized as a movmemsi operation, and that it will not successfully
3467 ;; combine with anything.
3468 (define_expand "movmemsi"
3469   [(parallel [(set (match_operand:BLK 0 "" "")
3470                    (match_operand:BLK 1 "" ""))
3471               (clobber (match_dup 4))
3472               (clobber (match_dup 5))
3473               (clobber (match_dup 6))
3474               (clobber (match_dup 7))
3475               (clobber (match_dup 8))
3476               (use (match_operand:SI 2 "arith_operand" ""))
3477               (use (match_operand:SI 3 "const_int_operand" ""))])]
3478   "!TARGET_64BIT && optimize > 0"
3479   "
3480 {
3481   int size, align;
3482
3483   /* HP provides very fast block move library routine for the PA;
3484      this routine includes:
3485
3486         4x4 byte at a time block moves,
3487         1x4 byte at a time with alignment checked at runtime with
3488             attempts to align the source and destination as needed
3489         1x1 byte loop
3490
3491      With that in mind, here's the heuristics to try and guess when
3492      the inlined block move will be better than the library block
3493      move:
3494
3495         If the size isn't constant, then always use the library routines.
3496
3497         If the size is large in respect to the known alignment, then use
3498         the library routines.
3499
3500         If the size is small in respect to the known alignment, then open
3501         code the copy (since that will lead to better scheduling).
3502
3503         Else use the block move pattern.   */
3504
3505   /* Undetermined size, use the library routine.  */
3506   if (GET_CODE (operands[2]) != CONST_INT)
3507     FAIL;
3508
3509   size = INTVAL (operands[2]);
3510   align = INTVAL (operands[3]);
3511   align = align > 4 ? 4 : align;
3512
3513   /* If size/alignment is large, then use the library routines.  */
3514   if (size / align > 16)
3515     FAIL;
3516
3517   /* This does happen, but not often enough to worry much about.  */
3518   if (size / align < MOVE_RATIO)
3519     FAIL;
3520   
3521   /* Fall through means we're going to use our block move pattern.  */
3522   operands[0]
3523     = replace_equiv_address (operands[0],
3524                              copy_to_mode_reg (SImode, XEXP (operands[0], 0)));
3525   operands[1]
3526     = replace_equiv_address (operands[1],
3527                              copy_to_mode_reg (SImode, XEXP (operands[1], 0)));
3528   operands[4] = gen_reg_rtx (SImode);
3529   operands[5] = gen_reg_rtx (SImode);
3530   operands[6] = gen_reg_rtx (SImode);
3531   operands[7] = gen_reg_rtx (SImode);
3532   operands[8] = gen_reg_rtx (SImode);
3533 }")
3534
3535 ;; The operand constraints are written like this to support both compile-time
3536 ;; and run-time determined byte counts.  The expander and output_block_move
3537 ;; only support compile-time determined counts at this time.
3538 ;;
3539 ;; If the count is run-time determined, the register with the byte count
3540 ;; is clobbered by the copying code, and therefore it is forced to operand 2.
3541 ;;
3542 ;; We used to clobber operands 0 and 1.  However, a change to regrename.c
3543 ;; broke this semantic for pseudo registers.  We can't use match_scratch
3544 ;; as this requires two registers in the class R1_REGS when the MEMs for
3545 ;; operands 0 and 1 are both equivalent to symbolic MEMs.  Thus, we are
3546 ;; forced to internally copy operands 0 and 1 to operands 7 and 8,
3547 ;; respectively.  We then split or peephole optimize after reload.
3548 (define_insn "movmemsi_prereload"
3549   [(set (mem:BLK (match_operand:SI 0 "register_operand" "r,r"))
3550         (mem:BLK (match_operand:SI 1 "register_operand" "r,r")))
3551    (clobber (match_operand:SI 2 "register_operand" "=&r,&r"))   ;loop cnt/tmp
3552    (clobber (match_operand:SI 3 "register_operand" "=&r,&r"))   ;item tmp1
3553    (clobber (match_operand:SI 6 "register_operand" "=&r,&r"))   ;item tmp2
3554    (clobber (match_operand:SI 7 "register_operand" "=&r,&r"))   ;item tmp3
3555    (clobber (match_operand:SI 8 "register_operand" "=&r,&r"))   ;item tmp4
3556    (use (match_operand:SI 4 "arith_operand" "J,2"))      ;byte count
3557    (use (match_operand:SI 5 "const_int_operand" "n,n"))] ;alignment
3558   "!TARGET_64BIT"
3559   "#"
3560   [(set_attr "type" "multi,multi")])
3561
3562 (define_split
3563   [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3564                    (match_operand:BLK 1 "memory_operand" ""))
3565               (clobber (match_operand:SI 2 "register_operand" ""))
3566               (clobber (match_operand:SI 3 "register_operand" ""))
3567               (clobber (match_operand:SI 6 "register_operand" ""))
3568               (clobber (match_operand:SI 7 "register_operand" ""))
3569               (clobber (match_operand:SI 8 "register_operand" ""))
3570               (use (match_operand:SI 4 "arith_operand" ""))
3571               (use (match_operand:SI 5 "const_int_operand" ""))])]
3572   "!TARGET_64BIT && reload_completed && !flag_peephole2
3573    && GET_CODE (operands[0]) == MEM
3574    && register_operand (XEXP (operands[0], 0), SImode)
3575    && GET_CODE (operands[1]) == MEM
3576    && register_operand (XEXP (operands[1], 0), SImode)"
3577   [(set (match_dup 7) (match_dup 9))
3578    (set (match_dup 8) (match_dup 10))
3579    (parallel [(set (match_dup 0) (match_dup 1))
3580               (clobber (match_dup 2))
3581               (clobber (match_dup 3))
3582               (clobber (match_dup 6))
3583               (clobber (match_dup 7))
3584               (clobber (match_dup 8))
3585               (use (match_dup 4))
3586               (use (match_dup 5))
3587               (const_int 0)])]
3588   "
3589 {
3590   operands[9] = XEXP (operands[0], 0);
3591   operands[10] = XEXP (operands[1], 0);
3592   operands[0] = replace_equiv_address (operands[0], operands[7]);
3593   operands[1] = replace_equiv_address (operands[1], operands[8]);
3594 }")
3595
3596 (define_peephole2
3597   [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3598                    (match_operand:BLK 1 "memory_operand" ""))
3599               (clobber (match_operand:SI 2 "register_operand" ""))
3600               (clobber (match_operand:SI 3 "register_operand" ""))
3601               (clobber (match_operand:SI 6 "register_operand" ""))
3602               (clobber (match_operand:SI 7 "register_operand" ""))
3603               (clobber (match_operand:SI 8 "register_operand" ""))
3604               (use (match_operand:SI 4 "arith_operand" ""))
3605               (use (match_operand:SI 5 "const_int_operand" ""))])]
3606   "!TARGET_64BIT
3607    && GET_CODE (operands[0]) == MEM
3608    && register_operand (XEXP (operands[0], 0), SImode)
3609    && GET_CODE (operands[1]) == MEM
3610    && register_operand (XEXP (operands[1], 0), SImode)"
3611   [(parallel [(set (match_dup 0) (match_dup 1))
3612               (clobber (match_dup 2))
3613               (clobber (match_dup 3))
3614               (clobber (match_dup 6))
3615               (clobber (match_dup 7))
3616               (clobber (match_dup 8))
3617               (use (match_dup 4))
3618               (use (match_dup 5))
3619               (const_int 0)])]
3620   "
3621 {
3622   rtx addr = XEXP (operands[0], 0);
3623   if (dead_or_set_p (curr_insn, addr))
3624     operands[7] = addr;
3625   else
3626     {
3627       emit_insn (gen_rtx_SET (VOIDmode, operands[7], addr));
3628       operands[0] = replace_equiv_address (operands[0], operands[7]);
3629     }
3630
3631   addr = XEXP (operands[1], 0);
3632   if (dead_or_set_p (curr_insn, addr))
3633     operands[8] = addr;
3634   else
3635     {
3636       emit_insn (gen_rtx_SET (VOIDmode, operands[8], addr));
3637       operands[1] = replace_equiv_address (operands[1], operands[8]);
3638     }
3639 }")
3640
3641 (define_insn "movmemsi_postreload"
3642   [(set (mem:BLK (match_operand:SI 0 "register_operand" "+r,r"))
3643         (mem:BLK (match_operand:SI 1 "register_operand" "+r,r")))
3644    (clobber (match_operand:SI 2 "register_operand" "=&r,&r"))   ;loop cnt/tmp
3645    (clobber (match_operand:SI 3 "register_operand" "=&r,&r"))   ;item tmp1
3646    (clobber (match_operand:SI 6 "register_operand" "=&r,&r"))   ;item tmp2
3647    (clobber (match_dup 0))
3648    (clobber (match_dup 1))
3649    (use (match_operand:SI 4 "arith_operand" "J,2"))      ;byte count
3650    (use (match_operand:SI 5 "const_int_operand" "n,n"))  ;alignment
3651    (const_int 0)]
3652   "!TARGET_64BIT && reload_completed"
3653   "* return output_block_move (operands, !which_alternative);"
3654   [(set_attr "type" "multi,multi")])
3655
3656 (define_expand "movmemdi"
3657   [(parallel [(set (match_operand:BLK 0 "" "")
3658                    (match_operand:BLK 1 "" ""))
3659               (clobber (match_dup 4))
3660               (clobber (match_dup 5))
3661               (clobber (match_dup 6))
3662               (clobber (match_dup 7))
3663               (clobber (match_dup 8))
3664               (use (match_operand:DI 2 "arith_operand" ""))
3665               (use (match_operand:DI 3 "const_int_operand" ""))])]
3666   "TARGET_64BIT && optimize > 0"
3667   "
3668 {
3669   int size, align;
3670
3671   /* HP provides very fast block move library routine for the PA;
3672      this routine includes:
3673
3674         4x4 byte at a time block moves,
3675         1x4 byte at a time with alignment checked at runtime with
3676             attempts to align the source and destination as needed
3677         1x1 byte loop
3678
3679      With that in mind, here's the heuristics to try and guess when
3680      the inlined block move will be better than the library block
3681      move:
3682
3683         If the size isn't constant, then always use the library routines.
3684
3685         If the size is large in respect to the known alignment, then use
3686         the library routines.
3687
3688         If the size is small in respect to the known alignment, then open
3689         code the copy (since that will lead to better scheduling).
3690
3691         Else use the block move pattern.   */
3692
3693   /* Undetermined size, use the library routine.  */
3694   if (GET_CODE (operands[2]) != CONST_INT)
3695     FAIL;
3696
3697   size = INTVAL (operands[2]);
3698   align = INTVAL (operands[3]);
3699   align = align > 8 ? 8 : align;
3700
3701   /* If size/alignment is large, then use the library routines.  */
3702   if (size / align > 16)
3703     FAIL;
3704
3705   /* This does happen, but not often enough to worry much about.  */
3706   if (size / align < MOVE_RATIO)
3707     FAIL;
3708   
3709   /* Fall through means we're going to use our block move pattern.  */
3710   operands[0]
3711     = replace_equiv_address (operands[0],
3712                              copy_to_mode_reg (DImode, XEXP (operands[0], 0)));
3713   operands[1]
3714     = replace_equiv_address (operands[1],
3715                              copy_to_mode_reg (DImode, XEXP (operands[1], 0)));
3716   operands[4] = gen_reg_rtx (DImode);
3717   operands[5] = gen_reg_rtx (DImode);
3718   operands[6] = gen_reg_rtx (DImode);
3719   operands[7] = gen_reg_rtx (DImode);
3720   operands[8] = gen_reg_rtx (DImode);
3721 }")
3722
3723 ;; The operand constraints are written like this to support both compile-time
3724 ;; and run-time determined byte counts.  The expander and output_block_move
3725 ;; only support compile-time determined counts at this time.
3726 ;;
3727 ;; If the count is run-time determined, the register with the byte count
3728 ;; is clobbered by the copying code, and therefore it is forced to operand 2.
3729 ;;
3730 ;; We used to clobber operands 0 and 1.  However, a change to regrename.c
3731 ;; broke this semantic for pseudo registers.  We can't use match_scratch
3732 ;; as this requires two registers in the class R1_REGS when the MEMs for
3733 ;; operands 0 and 1 are both equivalent to symbolic MEMs.  Thus, we are
3734 ;; forced to internally copy operands 0 and 1 to operands 7 and 8,
3735 ;; respectively.  We then split or peephole optimize after reload.
3736 (define_insn "movmemdi_prereload"
3737   [(set (mem:BLK (match_operand:DI 0 "register_operand" "r,r"))
3738         (mem:BLK (match_operand:DI 1 "register_operand" "r,r")))
3739    (clobber (match_operand:DI 2 "register_operand" "=&r,&r"))   ;loop cnt/tmp
3740    (clobber (match_operand:DI 3 "register_operand" "=&r,&r"))   ;item tmp1
3741    (clobber (match_operand:DI 6 "register_operand" "=&r,&r"))   ;item tmp2
3742    (clobber (match_operand:DI 7 "register_operand" "=&r,&r"))   ;item tmp3
3743    (clobber (match_operand:DI 8 "register_operand" "=&r,&r"))   ;item tmp4
3744    (use (match_operand:DI 4 "arith_operand" "J,2"))      ;byte count
3745    (use (match_operand:DI 5 "const_int_operand" "n,n"))] ;alignment
3746   "TARGET_64BIT"
3747   "#"
3748   [(set_attr "type" "multi,multi")])
3749
3750 (define_split
3751   [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3752                    (match_operand:BLK 1 "memory_operand" ""))
3753               (clobber (match_operand:DI 2 "register_operand" ""))
3754               (clobber (match_operand:DI 3 "register_operand" ""))
3755               (clobber (match_operand:DI 6 "register_operand" ""))
3756               (clobber (match_operand:DI 7 "register_operand" ""))
3757               (clobber (match_operand:DI 8 "register_operand" ""))
3758               (use (match_operand:DI 4 "arith_operand" ""))
3759               (use (match_operand:DI 5 "const_int_operand" ""))])]
3760   "TARGET_64BIT && reload_completed && !flag_peephole2
3761    && GET_CODE (operands[0]) == MEM
3762    && register_operand (XEXP (operands[0], 0), DImode)
3763    && GET_CODE (operands[1]) == MEM
3764    && register_operand (XEXP (operands[1], 0), DImode)"
3765   [(set (match_dup 7) (match_dup 9))
3766    (set (match_dup 8) (match_dup 10))
3767    (parallel [(set (match_dup 0) (match_dup 1))
3768               (clobber (match_dup 2))
3769               (clobber (match_dup 3))
3770               (clobber (match_dup 6))
3771               (clobber (match_dup 7))
3772               (clobber (match_dup 8))
3773               (use (match_dup 4))
3774               (use (match_dup 5))
3775               (const_int 0)])]
3776   "
3777 {
3778   operands[9] = XEXP (operands[0], 0);
3779   operands[10] = XEXP (operands[1], 0);
3780   operands[0] = replace_equiv_address (operands[0], operands[7]);
3781   operands[1] = replace_equiv_address (operands[1], operands[8]);
3782 }")
3783
3784 (define_peephole2
3785   [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3786                    (match_operand:BLK 1 "memory_operand" ""))
3787               (clobber (match_operand:DI 2 "register_operand" ""))
3788               (clobber (match_operand:DI 3 "register_operand" ""))
3789               (clobber (match_operand:DI 6 "register_operand" ""))
3790               (clobber (match_operand:DI 7 "register_operand" ""))
3791               (clobber (match_operand:DI 8 "register_operand" ""))
3792               (use (match_operand:DI 4 "arith_operand" ""))
3793               (use (match_operand:DI 5 "const_int_operand" ""))])]
3794   "TARGET_64BIT
3795    && GET_CODE (operands[0]) == MEM
3796    && register_operand (XEXP (operands[0], 0), DImode)
3797    && GET_CODE (operands[1]) == MEM
3798    && register_operand (XEXP (operands[1], 0), DImode)"
3799   [(parallel [(set (match_dup 0) (match_dup 1))
3800               (clobber (match_dup 2))
3801               (clobber (match_dup 3))
3802               (clobber (match_dup 6))
3803               (clobber (match_dup 7))
3804               (clobber (match_dup 8))
3805               (use (match_dup 4))
3806               (use (match_dup 5))
3807               (const_int 0)])]
3808   "
3809 {
3810   rtx addr = XEXP (operands[0], 0);
3811   if (dead_or_set_p (curr_insn, addr))
3812     operands[7] = addr;
3813   else
3814     {
3815       emit_insn (gen_rtx_SET (VOIDmode, operands[7], addr));
3816       operands[0] = replace_equiv_address (operands[0], operands[7]);
3817     }
3818
3819   addr = XEXP (operands[1], 0);
3820   if (dead_or_set_p (curr_insn, addr))
3821     operands[8] = addr;
3822   else
3823     {
3824       emit_insn (gen_rtx_SET (VOIDmode, operands[8], addr));
3825       operands[1] = replace_equiv_address (operands[1], operands[8]);
3826     }
3827 }")
3828
3829 (define_insn "movmemdi_postreload"
3830   [(set (mem:BLK (match_operand:DI 0 "register_operand" "+r,r"))
3831         (mem:BLK (match_operand:DI 1 "register_operand" "+r,r")))
3832    (clobber (match_operand:DI 2 "register_operand" "=&r,&r"))   ;loop cnt/tmp
3833    (clobber (match_operand:DI 3 "register_operand" "=&r,&r"))   ;item tmp1
3834    (clobber (match_operand:DI 6 "register_operand" "=&r,&r"))   ;item tmp2
3835    (clobber (match_dup 0))
3836    (clobber (match_dup 1))
3837    (use (match_operand:DI 4 "arith_operand" "J,2"))      ;byte count
3838    (use (match_operand:DI 5 "const_int_operand" "n,n"))  ;alignment
3839    (const_int 0)]
3840   "TARGET_64BIT && reload_completed"
3841   "* return output_block_move (operands, !which_alternative);"
3842   [(set_attr "type" "multi,multi")])
3843
3844 (define_expand "setmemsi"
3845   [(parallel [(set (match_operand:BLK 0 "" "")
3846                    (match_operand 2 "const_int_operand" ""))
3847               (clobber (match_dup 4))
3848               (clobber (match_dup 5))
3849               (use (match_operand:SI 1 "arith_operand" ""))
3850               (use (match_operand:SI 3 "const_int_operand" ""))])]
3851   "!TARGET_64BIT && optimize > 0"
3852   "
3853 {
3854   int size, align;
3855
3856   /* If value to set is not zero, use the library routine.  */
3857   if (operands[2] != const0_rtx)
3858     FAIL;
3859
3860   /* Undetermined size, use the library routine.  */
3861   if (GET_CODE (operands[1]) != CONST_INT)
3862     FAIL;
3863
3864   size = INTVAL (operands[1]);
3865   align = INTVAL (operands[3]);
3866   align = align > 4 ? 4 : align;
3867
3868   /* If size/alignment is large, then use the library routines.  */
3869   if (size / align > 16)
3870     FAIL;
3871
3872   /* This does happen, but not often enough to worry much about.  */
3873   if (size / align < MOVE_RATIO)
3874     FAIL;
3875   
3876   /* Fall through means we're going to use our block clear pattern.  */
3877   operands[0]
3878     = replace_equiv_address (operands[0],
3879                              copy_to_mode_reg (SImode, XEXP (operands[0], 0)));
3880   operands[4] = gen_reg_rtx (SImode);
3881   operands[5] = gen_reg_rtx (SImode);
3882 }")
3883
3884 (define_insn "clrmemsi_prereload"
3885   [(set (mem:BLK (match_operand:SI 0 "register_operand" "r,r"))
3886         (const_int 0))
3887    (clobber (match_operand:SI 1 "register_operand" "=&r,&r"))   ;loop cnt/tmp
3888    (clobber (match_operand:SI 4 "register_operand" "=&r,&r"))   ;tmp1
3889    (use (match_operand:SI 2 "arith_operand" "J,1"))      ;byte count
3890    (use (match_operand:SI 3 "const_int_operand" "n,n"))] ;alignment
3891   "!TARGET_64BIT"
3892   "#"
3893   [(set_attr "type" "multi,multi")])
3894
3895 (define_split
3896   [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3897                    (const_int 0))
3898               (clobber (match_operand:SI 1 "register_operand" ""))
3899               (clobber (match_operand:SI 4 "register_operand" ""))
3900               (use (match_operand:SI 2 "arith_operand" ""))
3901               (use (match_operand:SI 3 "const_int_operand" ""))])]
3902   "!TARGET_64BIT && reload_completed && !flag_peephole2
3903    && GET_CODE (operands[0]) == MEM
3904    && register_operand (XEXP (operands[0], 0), SImode)"
3905   [(set (match_dup 4) (match_dup 5))
3906    (parallel [(set (match_dup 0) (const_int 0))
3907               (clobber (match_dup 1))
3908               (clobber (match_dup 4))
3909               (use (match_dup 2))
3910               (use (match_dup 3))
3911               (const_int 0)])]
3912   "
3913 {
3914   operands[5] = XEXP (operands[0], 0);
3915   operands[0] = replace_equiv_address (operands[0], operands[4]);
3916 }")
3917
3918 (define_peephole2
3919   [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3920                    (const_int 0))
3921               (clobber (match_operand:SI 1 "register_operand" ""))
3922               (clobber (match_operand:SI 4 "register_operand" ""))
3923               (use (match_operand:SI 2 "arith_operand" ""))
3924               (use (match_operand:SI 3 "const_int_operand" ""))])]
3925   "!TARGET_64BIT
3926    && GET_CODE (operands[0]) == MEM
3927    && register_operand (XEXP (operands[0], 0), SImode)"
3928   [(parallel [(set (match_dup 0) (const_int 0))
3929               (clobber (match_dup 1))
3930               (clobber (match_dup 4))
3931               (use (match_dup 2))
3932               (use (match_dup 3))
3933               (const_int 0)])]
3934   "
3935 {
3936   rtx addr = XEXP (operands[0], 0);
3937   if (dead_or_set_p (curr_insn, addr))
3938     operands[4] = addr;
3939   else
3940     {
3941       emit_insn (gen_rtx_SET (VOIDmode, operands[4], addr));
3942       operands[0] = replace_equiv_address (operands[0], operands[4]);
3943     }
3944 }")
3945
3946 (define_insn "clrmemsi_postreload"
3947   [(set (mem:BLK (match_operand:SI 0 "register_operand" "+r,r"))
3948         (const_int 0))
3949    (clobber (match_operand:SI 1 "register_operand" "=&r,&r"))   ;loop cnt/tmp
3950    (clobber (match_dup 0))
3951    (use (match_operand:SI 2 "arith_operand" "J,1"))      ;byte count
3952    (use (match_operand:SI 3 "const_int_operand" "n,n"))  ;alignment
3953    (const_int 0)]
3954   "!TARGET_64BIT && reload_completed"
3955   "* return output_block_clear (operands, !which_alternative);"
3956   [(set_attr "type" "multi,multi")])
3957
3958 (define_expand "setmemdi"
3959   [(parallel [(set (match_operand:BLK 0 "" "")
3960                    (match_operand 2 "const_int_operand" ""))
3961               (clobber (match_dup 4))
3962               (clobber (match_dup 5))
3963               (use (match_operand:DI 1 "arith_operand" ""))
3964               (use (match_operand:DI 3 "const_int_operand" ""))])]
3965   "TARGET_64BIT && optimize > 0"
3966   "
3967 {
3968   int size, align;
3969
3970   /* If value to set is not zero, use the library routine.  */
3971   if (operands[2] != const0_rtx)
3972     FAIL;
3973
3974   /* Undetermined size, use the library routine.  */
3975   if (GET_CODE (operands[1]) != CONST_INT)
3976     FAIL;
3977
3978   size = INTVAL (operands[1]);
3979   align = INTVAL (operands[3]);
3980   align = align > 8 ? 8 : align;
3981
3982   /* If size/alignment is large, then use the library routines.  */
3983   if (size / align > 16)
3984     FAIL;
3985
3986   /* This does happen, but not often enough to worry much about.  */
3987   if (size / align < MOVE_RATIO)
3988     FAIL;
3989   
3990   /* Fall through means we're going to use our block clear pattern.  */
3991   operands[0]
3992     = replace_equiv_address (operands[0],
3993                              copy_to_mode_reg (DImode, XEXP (operands[0], 0)));
3994   operands[4] = gen_reg_rtx (DImode);
3995   operands[5] = gen_reg_rtx (DImode);
3996 }")
3997
3998 (define_insn "clrmemdi_prereload"
3999   [(set (mem:BLK (match_operand:DI 0 "register_operand" "r,r"))
4000         (const_int 0))
4001    (clobber (match_operand:DI 1 "register_operand" "=&r,&r"))   ;loop cnt/tmp
4002    (clobber (match_operand:DI 4 "register_operand" "=&r,&r"))   ;item tmp1
4003    (use (match_operand:DI 2 "arith_operand" "J,1"))      ;byte count
4004    (use (match_operand:DI 3 "const_int_operand" "n,n"))] ;alignment
4005   "TARGET_64BIT"
4006   "#"
4007   [(set_attr "type" "multi,multi")])
4008
4009 (define_split
4010   [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
4011                    (const_int 0))
4012               (clobber (match_operand:DI 1 "register_operand" ""))
4013               (clobber (match_operand:DI 4 "register_operand" ""))
4014               (use (match_operand:DI 2 "arith_operand" ""))
4015               (use (match_operand:DI 3 "const_int_operand" ""))])]
4016   "TARGET_64BIT && reload_completed && !flag_peephole2
4017    && GET_CODE (operands[0]) == MEM
4018    && register_operand (XEXP (operands[0], 0), DImode)"
4019   [(set (match_dup 4) (match_dup 5))
4020    (parallel [(set (match_dup 0) (const_int 0))
4021               (clobber (match_dup 1))
4022               (clobber (match_dup 4))
4023               (use (match_dup 2))
4024               (use (match_dup 3))
4025               (const_int 0)])]
4026   "
4027 {
4028   operands[5] = XEXP (operands[0], 0);
4029   operands[0] = replace_equiv_address (operands[0], operands[4]);
4030 }")
4031
4032 (define_peephole2
4033   [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
4034                    (const_int 0))
4035               (clobber (match_operand:DI 1 "register_operand" ""))
4036               (clobber (match_operand:DI 4 "register_operand" ""))
4037               (use (match_operand:DI 2 "arith_operand" ""))
4038               (use (match_operand:DI 3 "const_int_operand" ""))])]
4039   "TARGET_64BIT
4040    && GET_CODE (operands[0]) == MEM
4041    && register_operand (XEXP (operands[0], 0), DImode)"
4042   [(parallel [(set (match_dup 0) (const_int 0))
4043               (clobber (match_dup 1))
4044               (clobber (match_dup 4))
4045               (use (match_dup 2))
4046               (use (match_dup 3))
4047               (const_int 0)])]
4048   "
4049 {  
4050   rtx addr = XEXP (operands[0], 0);
4051   if (dead_or_set_p (curr_insn, addr))
4052     operands[4] = addr;
4053   else
4054     {
4055       emit_insn (gen_rtx_SET (VOIDmode, operands[4], addr));
4056       operands[0] = replace_equiv_address (operands[0], operands[4]);
4057     }
4058 }")
4059
4060 (define_insn "clrmemdi_postreload"
4061   [(set (mem:BLK (match_operand:DI 0 "register_operand" "+r,r"))
4062         (const_int 0))
4063    (clobber (match_operand:DI 1 "register_operand" "=&r,&r"))   ;loop cnt/tmp
4064    (clobber (match_dup 0))
4065    (use (match_operand:DI 2 "arith_operand" "J,1"))      ;byte count
4066    (use (match_operand:DI 3 "const_int_operand" "n,n"))  ;alignment
4067    (const_int 0)]
4068   "TARGET_64BIT && reload_completed"
4069   "* return output_block_clear (operands, !which_alternative);"
4070   [(set_attr "type" "multi,multi")])
4071 \f
4072 ;; Floating point move insns
4073
4074 ;; This pattern forces (set (reg:DF ...) (const_double ...))
4075 ;; to be reloaded by putting the constant into memory when
4076 ;; reg is a floating point register.
4077 ;;
4078 ;; For integer registers we use ldil;ldo to set the appropriate
4079 ;; value.
4080 ;;
4081 ;; This must come before the movdf pattern, and it must be present
4082 ;; to handle obscure reloading cases.
4083 (define_insn ""
4084   [(set (match_operand:DF 0 "register_operand" "=?r,f")
4085         (match_operand:DF 1 "" "?F,m"))]
4086   "GET_CODE (operands[1]) == CONST_DOUBLE
4087    && operands[1] != CONST0_RTX (DFmode)
4088    && !TARGET_64BIT
4089    && !TARGET_SOFT_FLOAT"
4090   "* return (which_alternative == 0 ? output_move_double (operands)
4091                                     : \"fldd%F1 %1,%0\");"
4092   [(set_attr "type" "move,fpload")
4093    (set_attr "length" "16,4")])
4094
4095 (define_expand "movdf"
4096   [(set (match_operand:DF 0 "general_operand" "")
4097         (match_operand:DF 1 "general_operand" ""))]
4098   ""
4099   "
4100 {
4101   if (GET_CODE (operands[1]) == CONST_DOUBLE && TARGET_64BIT)
4102     operands[1] = force_const_mem (DFmode, operands[1]);
4103
4104   if (emit_move_sequence (operands, DFmode, 0))
4105     DONE;
4106 }")
4107
4108 ;; Handle DFmode input reloads requiring a general register as a
4109 ;; scratch register.
4110 (define_expand "reload_indf"
4111   [(set (match_operand:DF 0 "register_operand" "=Z")
4112         (match_operand:DF 1 "non_hard_reg_operand" ""))
4113    (clobber (match_operand:DF 2 "register_operand" "=&r"))]
4114   ""
4115   "
4116 {
4117   if (emit_move_sequence (operands, DFmode, operands[2]))
4118     DONE;
4119
4120   /* We don't want the clobber emitted, so handle this ourselves.  */
4121   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4122   DONE;
4123 }")
4124
4125 ;; Handle DFmode output reloads requiring a general register as a
4126 ;; scratch register.
4127 (define_expand "reload_outdf" 
4128  [(set (match_operand:DF 0 "non_hard_reg_operand" "")
4129         (match_operand:DF 1  "register_operand" "Z"))
4130    (clobber (match_operand:DF 2 "register_operand" "=&r"))]
4131   ""
4132   "
4133 {
4134   if (emit_move_sequence (operands, DFmode, operands[2]))
4135     DONE;
4136
4137   /* We don't want the clobber emitted, so handle this ourselves.  */
4138   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4139   DONE;
4140 }")
4141
4142 (define_insn ""
4143   [(set (match_operand:DF 0 "move_dest_operand"
4144                           "=f,*r,Q,?o,?Q,f,*r,*r,!r,!f")
4145         (match_operand:DF 1 "reg_or_0_or_nonsymb_mem_operand"
4146                           "fG,*rG,f,*r,*r,RQ,o,RQ,!f,!r"))]
4147   "(register_operand (operands[0], DFmode)
4148     || reg_or_0_operand (operands[1], DFmode))
4149    && !(GET_CODE (operands[1]) == CONST_DOUBLE
4150         && GET_CODE (operands[0]) == MEM)
4151    && !TARGET_64BIT
4152    && !TARGET_SOFT_FLOAT"
4153   "*
4154 {
4155   if ((FP_REG_P (operands[0]) || FP_REG_P (operands[1])
4156        || operands[1] == CONST0_RTX (DFmode))
4157       && !(REG_P (operands[0]) && REG_P (operands[1])
4158            && FP_REG_P (operands[0]) ^ FP_REG_P (operands[1])))
4159     return output_fp_move_double (operands);
4160   return output_move_double (operands);
4161 }"
4162   [(set_attr "type" "fpalu,move,fpstore,store,store,fpload,load,load,move,move")
4163    (set_attr "length" "4,8,4,8,16,4,8,16,12,12")])
4164
4165 (define_insn ""
4166   [(set (match_operand:DF 0 "indexed_memory_operand" "=R")
4167         (match_operand:DF 1 "reg_or_0_operand" "f"))]
4168   "!TARGET_SOFT_FLOAT
4169    && !TARGET_DISABLE_INDEXING
4170    && reload_completed"
4171   "fstd%F0 %1,%0"
4172   [(set_attr "type" "fpstore")
4173    (set_attr "pa_combine_type" "addmove")
4174    (set_attr "length" "4")])
4175
4176 (define_peephole2
4177   [(set (match_operand:SI 0 "register_operand" "")
4178         (plus:SI (mult:SI (match_operand:SI 1 "register_operand" "")
4179                           (const_int 8))
4180                  (match_operand:SI 2 "register_operand" "")))
4181    (set (mem:DF (match_dup 0))
4182         (match_operand:DF 3 "register_operand" ""))]
4183   "!TARGET_SOFT_FLOAT
4184    && !TARGET_DISABLE_INDEXING
4185    && REG_OK_FOR_BASE_P (operands[2])
4186    && FP_REGNO_P (REGNO (operands[3]))"
4187   [(set (mem:DF (plus:SI (mult:SI (match_dup 1) (const_int 8)) (match_dup 2)))
4188         (match_dup 3))
4189    (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 8))
4190                                (match_dup 2)))]
4191   "")
4192
4193 (define_peephole2
4194   [(set (match_operand:SI 0 "register_operand" "")
4195         (plus:SI (match_operand:SI 2 "register_operand" "")
4196                  (mult:SI (match_operand:SI 1 "register_operand" "")
4197                           (const_int 8))))
4198    (set (mem:DF (match_dup 0))
4199         (match_operand:DF 3 "register_operand" ""))]
4200   "!TARGET_SOFT_FLOAT
4201    && !TARGET_DISABLE_INDEXING
4202    && REG_OK_FOR_BASE_P (operands[2])
4203    && FP_REGNO_P (REGNO (operands[3]))"
4204   [(set (mem:DF (plus:SI (mult:SI (match_dup 1) (const_int 8)) (match_dup 2)))
4205         (match_dup 3))
4206    (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 8))
4207                                (match_dup 2)))]
4208   "")
4209
4210 (define_peephole2
4211   [(set (match_operand:DI 0 "register_operand" "")
4212         (plus:DI (mult:DI (match_operand:DI 1 "register_operand" "")
4213                           (const_int 8))
4214                  (match_operand:DI 2 "register_operand" "")))
4215    (set (mem:DF (match_dup 0))
4216         (match_operand:DF 3 "register_operand" ""))]
4217   "!TARGET_SOFT_FLOAT
4218    && !TARGET_DISABLE_INDEXING
4219    && TARGET_64BIT
4220    && REG_OK_FOR_BASE_P (operands[2])
4221    && FP_REGNO_P (REGNO (operands[3]))"
4222   [(set (mem:DF (plus:DI (mult:DI (match_dup 1) (const_int 8)) (match_dup 2)))
4223         (match_dup 3))
4224    (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 8))
4225                                (match_dup 2)))]
4226   "")
4227
4228 (define_peephole2
4229   [(set (match_operand:DI 0 "register_operand" "")
4230         (plus:DI (match_operand:DI 2 "register_operand" "")
4231                  (mult:DI (match_operand:DI 1 "register_operand" "")
4232                           (const_int 8))))
4233    (set (mem:DF (match_dup 0))
4234         (match_operand:DF 3 "register_operand" ""))]
4235   "!TARGET_SOFT_FLOAT
4236    && !TARGET_DISABLE_INDEXING
4237    && TARGET_64BIT
4238    && REG_OK_FOR_BASE_P (operands[2])
4239    && FP_REGNO_P (REGNO (operands[3]))"
4240   [(set (mem:DF (plus:DI (mult:DI (match_dup 1) (const_int 8)) (match_dup 2)))
4241         (match_dup 3))
4242    (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 8))
4243                                (match_dup 2)))]
4244   "")
4245
4246 (define_peephole2
4247   [(set (match_operand:SI 0 "register_operand" "")
4248         (plus:SI (match_operand:SI 1 "register_operand" "")
4249                  (match_operand:SI 2 "register_operand" "")))
4250    (set (mem:DF (match_dup 0))
4251         (match_operand:DF 3 "register_operand" ""))]
4252   "!TARGET_SOFT_FLOAT
4253    && !TARGET_DISABLE_INDEXING
4254    && TARGET_NO_SPACE_REGS
4255    && REG_OK_FOR_INDEX_P (operands[1])
4256    && REG_OK_FOR_BASE_P (operands[2])
4257    && FP_REGNO_P (REGNO (operands[3]))"
4258   [(set (mem:DF (plus:SI (match_dup 1) (match_dup 2)))
4259         (match_dup 3))
4260    (set (match_dup 0) (plus:SI (match_dup 1) (match_dup 2)))]
4261   "")
4262
4263 (define_peephole2
4264   [(set (match_operand:SI 0 "register_operand" "")
4265         (plus:SI (match_operand:SI 1 "register_operand" "")
4266                  (match_operand:SI 2 "register_operand" "")))
4267    (set (mem:DF (match_dup 0))
4268         (match_operand:DF 3 "register_operand" ""))]
4269   "!TARGET_SOFT_FLOAT
4270    && !TARGET_DISABLE_INDEXING
4271    && TARGET_NO_SPACE_REGS
4272    && REG_OK_FOR_BASE_P (operands[1])
4273    && REG_OK_FOR_INDEX_P (operands[2])
4274    && FP_REGNO_P (REGNO (operands[3]))"
4275   [(set (mem:DF (plus:SI (match_dup 2) (match_dup 1)))
4276         (match_dup 3))
4277    (set (match_dup 0) (plus:SI (match_dup 2) (match_dup 1)))]
4278   "")
4279
4280 (define_peephole2
4281   [(set (match_operand:DI 0 "register_operand" "")
4282         (plus:DI (match_operand:DI 1 "register_operand" "")
4283                  (match_operand:DI 2 "register_operand" "")))
4284    (set (mem:DF (match_dup 0))
4285         (match_operand:DF 3 "register_operand" ""))]
4286   "!TARGET_SOFT_FLOAT
4287    && !TARGET_DISABLE_INDEXING
4288    && TARGET_64BIT
4289    && TARGET_NO_SPACE_REGS
4290    && REG_OK_FOR_INDEX_P (operands[1])
4291    && REG_OK_FOR_BASE_P (operands[2])
4292    && FP_REGNO_P (REGNO (operands[3]))"
4293   [(set (mem:DF (plus:DI (match_dup 1) (match_dup 2)))
4294         (match_dup 3))
4295    (set (match_dup 0) (plus:DI (match_dup 1) (match_dup 2)))]
4296   "")
4297
4298 (define_peephole2
4299   [(set (match_operand:DI 0 "register_operand" "")
4300         (plus:DI (match_operand:DI 1 "register_operand" "")
4301                  (match_operand:DI 2 "register_operand" "")))
4302    (set (mem:DF (match_dup 0))
4303         (match_operand:DF 3 "register_operand" ""))]
4304   "!TARGET_SOFT_FLOAT
4305    && !TARGET_DISABLE_INDEXING
4306    && TARGET_64BIT
4307    && TARGET_NO_SPACE_REGS
4308    && REG_OK_FOR_BASE_P (operands[1])
4309    && REG_OK_FOR_INDEX_P (operands[2])
4310    && FP_REGNO_P (REGNO (operands[3]))"
4311   [(set (mem:DF (plus:DI (match_dup 2) (match_dup 1)))
4312         (match_dup 3))
4313    (set (match_dup 0) (plus:DI (match_dup 2) (match_dup 1)))]
4314   "")
4315
4316 (define_insn ""
4317   [(set (match_operand:DF 0 "move_dest_operand"
4318                           "=r,?o,?Q,r,r,!r,!f")
4319         (match_operand:DF 1 "reg_or_0_or_nonsymb_mem_operand"
4320                           "rG,r,r,o,RQ,!f,!r"))]
4321   "(register_operand (operands[0], DFmode)
4322     || reg_or_0_operand (operands[1], DFmode))
4323    && !TARGET_64BIT
4324    && TARGET_SOFT_FLOAT"
4325   "*
4326 {
4327   return output_move_double (operands);
4328 }"
4329   [(set_attr "type" "move,store,store,load,load,move,move")
4330    (set_attr "length" "8,8,16,8,16,12,12")])
4331
4332 (define_insn ""
4333   [(set (match_operand:DF 0 "move_dest_operand"
4334                           "=!*r,*r,*r,*r,*r,Q,f,f,T")
4335         (match_operand:DF 1 "move_src_operand"
4336                           "!*r,J,N,K,RQ,*rM,fM,RT,f"))]
4337   "(register_operand (operands[0], DFmode)
4338     || reg_or_0_operand (operands[1], DFmode))
4339    && !TARGET_SOFT_FLOAT && TARGET_64BIT"
4340   "@
4341    copy %1,%0
4342    ldi %1,%0
4343    ldil L'%1,%0
4344    depdi,z %z1,%0
4345    ldd%M1 %1,%0
4346    std%M0 %r1,%0
4347    fcpy,dbl %f1,%0
4348    fldd%F1 %1,%0
4349    fstd%F0 %1,%0"
4350   [(set_attr "type" "move,move,move,shift,load,store,fpalu,fpload,fpstore")
4351    (set_attr "pa_combine_type" "addmove")
4352    (set_attr "length" "4,4,4,4,4,4,4,4,4")])
4353
4354 \f
4355 (define_expand "movdi"
4356   [(set (match_operand:DI 0 "general_operand" "")
4357         (match_operand:DI 1 "general_operand" ""))]
4358   ""
4359   "
4360 {
4361   if (GET_CODE (operands[1]) == CONST_DOUBLE && TARGET_64BIT)
4362     operands[1] = force_const_mem (DImode, operands[1]);
4363
4364   if (emit_move_sequence (operands, DImode, 0))
4365     DONE;
4366 }")
4367
4368 ;; Handle DImode input reloads requiring %r1 as a scratch register.
4369 (define_expand "reload_indi_r1"
4370   [(set (match_operand:DI 0 "register_operand" "=Z")
4371         (match_operand:DI 1 "non_hard_reg_operand" ""))
4372    (clobber (match_operand:SI 2 "register_operand" "=&a"))]
4373   ""
4374   "
4375 {
4376   if (emit_move_sequence (operands, DImode, operands[2]))
4377     DONE;
4378
4379   /* We don't want the clobber emitted, so handle this ourselves.  */
4380   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4381   DONE;
4382 }")
4383
4384 ;; Handle DImode input reloads requiring a general register as a
4385 ;; scratch register.
4386 (define_expand "reload_indi"
4387   [(set (match_operand:DI 0 "register_operand" "=Z")
4388         (match_operand:DI 1 "non_hard_reg_operand" ""))
4389    (clobber (match_operand:SI 2 "register_operand" "=&r"))]
4390   ""
4391   "
4392 {
4393   if (emit_move_sequence (operands, DImode, operands[2]))
4394     DONE;
4395
4396   /* We don't want the clobber emitted, so handle this ourselves.  */
4397   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4398   DONE;
4399 }")
4400
4401 ;; Handle DImode output reloads requiring a general register as a
4402 ;; scratch register.
4403 (define_expand "reload_outdi"
4404   [(set (match_operand:DI 0 "non_hard_reg_operand" "")
4405         (match_operand:DI 1 "register_operand" "Z"))
4406    (clobber (match_operand:SI 2 "register_operand" "=&r"))]
4407   ""
4408   "
4409 {
4410   if (emit_move_sequence (operands, DImode, operands[2]))
4411     DONE;
4412
4413   /* We don't want the clobber emitted, so handle this ourselves.  */
4414   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4415   DONE;
4416 }")
4417
4418 (define_insn ""
4419   [(set (match_operand:DI 0 "register_operand" "=r")
4420         (high:DI (match_operand 1 "" "")))]
4421   "!TARGET_64BIT"
4422   "*
4423 {
4424   rtx op0 = operands[0];
4425   rtx op1 = operands[1];
4426
4427   switch (GET_CODE (op1))
4428     {
4429     case CONST_INT:
4430       operands[0] = operand_subword (op0, 1, 0, DImode);
4431       output_asm_insn (\"ldil L'%1,%0\", operands);
4432
4433       operands[0] = operand_subword (op0, 0, 0, DImode);
4434       if (INTVAL (op1) < 0)
4435         output_asm_insn (\"ldi -1,%0\", operands);
4436       else
4437         output_asm_insn (\"ldi 0,%0\", operands);
4438       break;
4439
4440     case CONST_DOUBLE:
4441       operands[0] = operand_subword (op0, 1, 0, DImode);
4442       operands[1] = GEN_INT (CONST_DOUBLE_LOW (op1));
4443       output_asm_insn (\"ldil L'%1,%0\", operands);
4444
4445       operands[0] = operand_subword (op0, 0, 0, DImode);
4446       operands[1] = GEN_INT (CONST_DOUBLE_HIGH (op1));
4447       output_asm_insn (singlemove_string (operands), operands);
4448       break;
4449
4450     default:
4451       gcc_unreachable ();
4452     }
4453   return \"\";
4454 }"
4455   [(set_attr "type" "move")
4456    (set_attr "length" "8")])
4457
4458 (define_insn ""
4459   [(set (match_operand:DI 0 "move_dest_operand"
4460                           "=r,o,Q,r,r,r,*f,*f,T,!r,!f")
4461         (match_operand:DI 1 "general_operand"
4462                           "rM,r,r,o*R,Q,i,*fM,RT,*f,!f,!r"))]
4463   "(register_operand (operands[0], DImode)
4464     || reg_or_0_operand (operands[1], DImode))
4465    && !TARGET_64BIT
4466    && !TARGET_SOFT_FLOAT"
4467   "*
4468 {
4469   if ((FP_REG_P (operands[0]) || FP_REG_P (operands[1])
4470        || operands[1] == CONST0_RTX (DFmode))
4471       && !(REG_P (operands[0]) && REG_P (operands[1])
4472            && FP_REG_P (operands[0]) ^ FP_REG_P (operands[1])))
4473     return output_fp_move_double (operands);
4474   return output_move_double (operands);
4475 }"
4476   [(set_attr "type"
4477     "move,store,store,load,load,multi,fpalu,fpload,fpstore,move,move")
4478    (set_attr "length" "8,8,16,8,16,16,4,4,4,12,12")])
4479
4480 (define_insn ""
4481   [(set (match_operand:DI 0 "move_dest_operand"
4482                           "=r,r,r,r,r,r,Q,!*q,!r,!*f,*f,T")
4483         (match_operand:DI 1 "move_src_operand"
4484                           "A,r,J,N,K,RQ,rM,!rM,!*q,!*fM,RT,*f"))]
4485   "(register_operand (operands[0], DImode)
4486     || reg_or_0_operand (operands[1], DImode))
4487    && !TARGET_SOFT_FLOAT && TARGET_64BIT"
4488   "@
4489    ldd RT'%A1,%0
4490    copy %1,%0
4491    ldi %1,%0
4492    ldil L'%1,%0
4493    depdi,z %z1,%0
4494    ldd%M1 %1,%0
4495    std%M0 %r1,%0
4496    mtsar %r1
4497    {mfctl|mfctl,w} %%sar,%0
4498    fcpy,dbl %f1,%0
4499    fldd%F1 %1,%0
4500    fstd%F0 %1,%0"
4501   [(set_attr "type" "load,move,move,move,shift,load,store,move,move,fpalu,fpload,fpstore")
4502    (set_attr "pa_combine_type" "addmove")
4503    (set_attr "length" "4,4,4,4,4,4,4,4,4,4,4,4")])
4504
4505 (define_insn ""
4506   [(set (match_operand:DI 0 "indexed_memory_operand" "=R")
4507         (match_operand:DI 1 "register_operand" "f"))]
4508   "!TARGET_SOFT_FLOAT
4509    && TARGET_64BIT
4510    && !TARGET_DISABLE_INDEXING
4511    && reload_completed"
4512   "fstd%F0 %1,%0"
4513   [(set_attr "type" "fpstore")
4514    (set_attr "pa_combine_type" "addmove")
4515    (set_attr "length" "4")])
4516
4517 (define_peephole2
4518   [(set (match_operand:DI 0 "register_operand" "")
4519         (plus:DI (mult:DI (match_operand:DI 1 "register_operand" "")
4520                           (const_int 8))
4521                  (match_operand:DI 2 "register_operand" "")))
4522    (set (mem:DI (match_dup 0))
4523         (match_operand:DI 3 "register_operand" ""))]
4524   "!TARGET_SOFT_FLOAT
4525    && !TARGET_DISABLE_INDEXING
4526    && TARGET_64BIT
4527    && REG_OK_FOR_BASE_P (operands[2])
4528    && FP_REGNO_P (REGNO (operands[3]))"
4529   [(set (mem:DI (plus:DI (mult:DI (match_dup 1) (const_int 8)) (match_dup 2)))
4530         (match_dup 3))
4531    (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 8))
4532                                (match_dup 2)))]
4533   "")
4534
4535 (define_peephole2
4536   [(set (match_operand:DI 0 "register_operand" "")
4537         (plus:DI (match_operand:DI 2 "register_operand" "")
4538                  (mult:DI (match_operand:DI 1 "register_operand" "")
4539                           (const_int 8))))
4540    (set (mem:DI (match_dup 0))
4541         (match_operand:DI 3 "register_operand" ""))]
4542   "!TARGET_SOFT_FLOAT
4543    && !TARGET_DISABLE_INDEXING
4544    && TARGET_64BIT
4545    && REG_OK_FOR_BASE_P (operands[2])
4546    && FP_REGNO_P (REGNO (operands[3]))"
4547   [(set (mem:DI (plus:DI (mult:DI (match_dup 1) (const_int 8)) (match_dup 2)))
4548         (match_dup 3))
4549    (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 8))
4550                                (match_dup 2)))]
4551   "")
4552
4553 (define_peephole2
4554   [(set (match_operand:DI 0 "register_operand" "")
4555         (plus:DI (match_operand:DI 1 "register_operand" "")
4556                  (match_operand:DI 2 "register_operand" "")))
4557    (set (mem:DI (match_dup 0))
4558         (match_operand:DI 3 "register_operand" ""))]
4559   "!TARGET_SOFT_FLOAT
4560    && !TARGET_DISABLE_INDEXING
4561    && TARGET_64BIT
4562    && TARGET_NO_SPACE_REGS
4563    && REG_OK_FOR_INDEX_P (operands[1])
4564    && REG_OK_FOR_BASE_P (operands[2])
4565    && FP_REGNO_P (REGNO (operands[3]))"
4566   [(set (mem:DI (plus:DI (match_dup 1) (match_dup 2)))
4567         (match_dup 3))
4568    (set (match_dup 0) (plus:DI (match_dup 1) (match_dup 2)))]
4569   "")
4570
4571 (define_peephole2
4572   [(set (match_operand:DI 0 "register_operand" "")
4573         (plus:DI (match_operand:DI 1 "register_operand" "")
4574                  (match_operand:DI 2 "register_operand" "")))
4575    (set (mem:DI (match_dup 0))
4576         (match_operand:DI 3 "register_operand" ""))]
4577   "!TARGET_SOFT_FLOAT
4578    && !TARGET_DISABLE_INDEXING
4579    && TARGET_64BIT
4580    && TARGET_NO_SPACE_REGS
4581    && REG_OK_FOR_BASE_P (operands[1])
4582    && REG_OK_FOR_INDEX_P (operands[2])
4583    && FP_REGNO_P (REGNO (operands[3]))"
4584   [(set (mem:DI (plus:DI (match_dup 2) (match_dup 1)))
4585         (match_dup 3))
4586    (set (match_dup 0) (plus:DI (match_dup 2) (match_dup 1)))]
4587   "")
4588
4589 (define_insn ""
4590   [(set (match_operand:DI 0 "move_dest_operand"
4591                           "=r,o,Q,r,r,r")
4592         (match_operand:DI 1 "general_operand"
4593                           "rM,r,r,o,Q,i"))]
4594   "(register_operand (operands[0], DImode)
4595     || reg_or_0_operand (operands[1], DImode))
4596    && !TARGET_64BIT
4597    && TARGET_SOFT_FLOAT"
4598   "*
4599 {
4600   return output_move_double (operands);
4601 }"
4602   [(set_attr "type" "move,store,store,load,load,multi")
4603    (set_attr "length" "8,8,16,8,16,16")])
4604
4605 (define_insn ""
4606   [(set (match_operand:DI 0 "register_operand" "=r,&r")
4607         (lo_sum:DI (match_operand:DI 1 "register_operand" "0,r")
4608                    (match_operand:DI 2 "immediate_operand" "i,i")))]
4609   "!TARGET_64BIT"
4610   "*
4611 {
4612   /* Don't output a 64 bit constant, since we can't trust the assembler to
4613      handle it correctly.  */
4614   if (GET_CODE (operands[2]) == CONST_DOUBLE)
4615     operands[2] = GEN_INT (CONST_DOUBLE_LOW (operands[2]));
4616   if (which_alternative == 1)
4617     output_asm_insn (\"copy %1,%0\", operands);
4618   return \"ldo R'%G2(%R1),%R0\";
4619 }"
4620   [(set_attr "type" "move,move")
4621    (set_attr "length" "4,8")])
4622
4623 ;; This pattern forces (set (reg:SF ...) (const_double ...))
4624 ;; to be reloaded by putting the constant into memory when
4625 ;; reg is a floating point register.
4626 ;;
4627 ;; For integer registers we use ldil;ldo to set the appropriate
4628 ;; value.
4629 ;;
4630 ;; This must come before the movsf pattern, and it must be present
4631 ;; to handle obscure reloading cases.
4632 (define_insn ""
4633   [(set (match_operand:SF 0 "register_operand" "=?r,f")
4634         (match_operand:SF 1 "" "?F,m"))]
4635   "GET_CODE (operands[1]) == CONST_DOUBLE
4636    && operands[1] != CONST0_RTX (SFmode)
4637    && ! TARGET_SOFT_FLOAT"
4638   "* return (which_alternative == 0 ? singlemove_string (operands)
4639                                     : \" fldw%F1 %1,%0\");"
4640   [(set_attr "type" "move,fpload")
4641    (set_attr "length" "8,4")])
4642
4643 (define_expand "movsf"
4644   [(set (match_operand:SF 0 "general_operand" "")
4645         (match_operand:SF 1 "general_operand" ""))]
4646   ""
4647   "
4648 {
4649   if (emit_move_sequence (operands, SFmode, 0))
4650     DONE;
4651 }")
4652
4653 ;; Handle SFmode input reloads requiring a general register as a
4654 ;; scratch register.
4655 (define_expand "reload_insf"
4656   [(set (match_operand:SF 0 "register_operand" "=Z")
4657         (match_operand:SF 1 "non_hard_reg_operand" ""))
4658    (clobber (match_operand:SF 2 "register_operand" "=&r"))]
4659   ""
4660   "
4661 {
4662   if (emit_move_sequence (operands, SFmode, operands[2]))
4663     DONE;
4664
4665   /* We don't want the clobber emitted, so handle this ourselves.  */
4666   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4667   DONE;
4668 }")
4669
4670 ;; Handle SFmode output reloads requiring a general register as a
4671 ;; scratch register.
4672 (define_expand "reload_outsf"
4673   [(set (match_operand:SF 0 "non_hard_reg_operand" "")
4674         (match_operand:SF 1  "register_operand" "Z"))
4675    (clobber (match_operand:SF 2 "register_operand" "=&r"))]
4676   ""
4677   "
4678 {
4679   if (emit_move_sequence (operands, SFmode, operands[2]))
4680     DONE;
4681
4682   /* We don't want the clobber emitted, so handle this ourselves.  */
4683   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4684   DONE;
4685 }")
4686
4687 (define_insn ""
4688   [(set (match_operand:SF 0 "move_dest_operand"
4689                           "=f,!*r,f,*r,Q,Q,!r,!f")
4690         (match_operand:SF 1 "reg_or_0_or_nonsymb_mem_operand"
4691                           "fG,!*rG,RQ,RQ,f,*rG,!f,!r"))]
4692   "(register_operand (operands[0], SFmode)
4693     || reg_or_0_operand (operands[1], SFmode))
4694    && !TARGET_SOFT_FLOAT
4695    && !TARGET_64BIT"
4696   "@
4697    fcpy,sgl %f1,%0
4698    copy %r1,%0
4699    fldw%F1 %1,%0
4700    ldw%M1 %1,%0
4701    fstw%F0 %1,%0
4702    stw%M0 %r1,%0
4703    {fstws|fstw} %1,-16(%%sp)\n\t{ldws|ldw} -16(%%sp),%0
4704    {stws|stw} %1,-16(%%sp)\n\t{fldws|fldw} -16(%%sp),%0"
4705   [(set_attr "type" "fpalu,move,fpload,load,fpstore,store,move,move")
4706    (set_attr "pa_combine_type" "addmove")
4707    (set_attr "length" "4,4,4,4,4,4,8,8")])
4708
4709 (define_insn ""
4710   [(set (match_operand:SF 0 "move_dest_operand"
4711                           "=f,!*r,f,*r,Q,Q")
4712         (match_operand:SF 1 "reg_or_0_or_nonsymb_mem_operand"
4713                           "fG,!*rG,RQ,RQ,f,*rG"))]
4714   "(register_operand (operands[0], SFmode)
4715     || reg_or_0_operand (operands[1], SFmode))
4716    && !TARGET_SOFT_FLOAT
4717    && TARGET_64BIT"
4718   "@
4719    fcpy,sgl %f1,%0
4720    copy %r1,%0
4721    fldw%F1 %1,%0
4722    ldw%M1 %1,%0
4723    fstw%F0 %1,%0
4724    stw%M0 %r1,%0"
4725   [(set_attr "type" "fpalu,move,fpload,load,fpstore,store")
4726    (set_attr "pa_combine_type" "addmove")
4727    (set_attr "length" "4,4,4,4,4,4")])
4728
4729 (define_insn ""
4730   [(set (match_operand:SF 0 "indexed_memory_operand" "=R")
4731         (match_operand:SF 1 "register_operand" "f"))]
4732   "!TARGET_SOFT_FLOAT
4733    && !TARGET_DISABLE_INDEXING
4734    && reload_completed"
4735   "fstw%F0 %1,%0"
4736   [(set_attr "type" "fpstore")
4737    (set_attr "pa_combine_type" "addmove")
4738    (set_attr "length" "4")])
4739
4740 (define_peephole2
4741   [(set (match_operand:SI 0 "register_operand" "")
4742         (plus:SI (mult:SI (match_operand:SI 1 "register_operand" "")
4743                           (const_int 4))
4744                  (match_operand:SI 2 "register_operand" "")))
4745    (set (mem:SF (match_dup 0))
4746         (match_operand:SF 3 "register_operand" ""))]
4747   "!TARGET_SOFT_FLOAT
4748    && !TARGET_DISABLE_INDEXING
4749    && REG_OK_FOR_BASE_P (operands[2])
4750    && FP_REGNO_P (REGNO (operands[3]))"
4751   [(set (mem:SF (plus:SI (mult:SI (match_dup 1) (const_int 4)) (match_dup 2)))
4752         (match_dup 3))
4753    (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 4))
4754                                (match_dup 2)))]
4755   "")
4756
4757 (define_peephole2
4758   [(set (match_operand:SI 0 "register_operand" "")
4759         (plus:SI (match_operand:SI 2 "register_operand" "")
4760                  (mult:SI (match_operand:SI 1 "register_operand" "")
4761                           (const_int 4))))
4762    (set (mem:SF (match_dup 0))
4763         (match_operand:SF 3 "register_operand" ""))]
4764   "!TARGET_SOFT_FLOAT
4765    && !TARGET_DISABLE_INDEXING
4766    && REG_OK_FOR_BASE_P (operands[2])
4767    && FP_REGNO_P (REGNO (operands[3]))"
4768   [(set (mem:SF (plus:SI (mult:SI (match_dup 1) (const_int 4)) (match_dup 2)))
4769         (match_dup 3))
4770    (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 4))
4771                                (match_dup 2)))]
4772   "")
4773
4774 (define_peephole2
4775   [(set (match_operand:DI 0 "register_operand" "")
4776         (plus:DI (mult:DI (match_operand:DI 1 "register_operand" "")
4777                           (const_int 4))
4778                  (match_operand:DI 2 "register_operand" "")))
4779    (set (mem:SF (match_dup 0))
4780         (match_operand:SF 3 "register_operand" ""))]
4781   "!TARGET_SOFT_FLOAT
4782    && !TARGET_DISABLE_INDEXING
4783    && TARGET_64BIT
4784    && REG_OK_FOR_BASE_P (operands[2])
4785    && FP_REGNO_P (REGNO (operands[3]))"
4786   [(set (mem:SF (plus:DI (mult:DI (match_dup 1) (const_int 4)) (match_dup 2)))
4787         (match_dup 3))
4788    (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 4))
4789                                (match_dup 2)))]
4790   "")
4791
4792 (define_peephole2
4793   [(set (match_operand:DI 0 "register_operand" "")
4794         (plus:DI (match_operand:DI 2 "register_operand" "")
4795                  (mult:DI (match_operand:DI 1 "register_operand" "")
4796                           (const_int 4))))
4797    (set (mem:SF (match_dup 0))
4798         (match_operand:SF 3 "register_operand" ""))]
4799   "!TARGET_SOFT_FLOAT
4800    && !TARGET_DISABLE_INDEXING
4801    && TARGET_64BIT
4802    && REG_OK_FOR_BASE_P (operands[2])
4803    && FP_REGNO_P (REGNO (operands[3]))"
4804   [(set (mem:SF (plus:DI (mult:DI (match_dup 1) (const_int 4)) (match_dup 2)))
4805         (match_dup 3))
4806    (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 4))
4807                                (match_dup 2)))]
4808   "")
4809
4810 (define_peephole2
4811   [(set (match_operand:SI 0 "register_operand" "")
4812         (plus:SI (match_operand:SI 1 "register_operand" "")
4813                  (match_operand:SI 2 "register_operand" "")))
4814    (set (mem:SF (match_dup 0))
4815         (match_operand:SF 3 "register_operand" ""))]
4816   "!TARGET_SOFT_FLOAT
4817    && !TARGET_DISABLE_INDEXING
4818    && TARGET_NO_SPACE_REGS
4819    && REG_OK_FOR_INDEX_P (operands[1])
4820    && REG_OK_FOR_BASE_P (operands[2])
4821    && FP_REGNO_P (REGNO (operands[3]))"
4822   [(set (mem:SF (plus:SI (match_dup 1) (match_dup 2)))
4823         (match_dup 3))
4824    (set (match_dup 0) (plus:SI (match_dup 1) (match_dup 2)))]
4825   "")
4826
4827 (define_peephole2
4828   [(set (match_operand:SI 0 "register_operand" "")
4829         (plus:SI (match_operand:SI 1 "register_operand" "")
4830                  (match_operand:SI 2 "register_operand" "")))
4831    (set (mem:SF (match_dup 0))
4832         (match_operand:SF 3 "register_operand" ""))]
4833   "!TARGET_SOFT_FLOAT
4834    && !TARGET_DISABLE_INDEXING
4835    && TARGET_NO_SPACE_REGS
4836    && REG_OK_FOR_BASE_P (operands[1])
4837    && REG_OK_FOR_INDEX_P (operands[2])
4838    && FP_REGNO_P (REGNO (operands[3]))"
4839   [(set (mem:SF (plus:SI (match_dup 2) (match_dup 1)))
4840         (match_dup 3))
4841    (set (match_dup 0) (plus:SI (match_dup 2) (match_dup 1)))]
4842   "")
4843
4844 (define_peephole2
4845   [(set (match_operand:DI 0 "register_operand" "")
4846         (plus:DI (match_operand:DI 1 "register_operand" "")
4847                  (match_operand:DI 2 "register_operand" "")))
4848    (set (mem:SF (match_dup 0))
4849         (match_operand:SF 3 "register_operand" ""))]
4850   "!TARGET_SOFT_FLOAT
4851    && !TARGET_DISABLE_INDEXING
4852    && TARGET_64BIT
4853    && TARGET_NO_SPACE_REGS
4854    && REG_OK_FOR_INDEX_P (operands[1])
4855    && REG_OK_FOR_BASE_P (operands[2])
4856    && FP_REGNO_P (REGNO (operands[3]))"
4857   [(set (mem:SF (plus:DI (match_dup 1) (match_dup 2)))
4858         (match_dup 3))
4859    (set (match_dup 0) (plus:DI (match_dup 1) (match_dup 2)))]
4860   "")
4861
4862 (define_peephole2
4863   [(set (match_operand:DI 0 "register_operand" "")
4864         (plus:DI (match_operand:DI 1 "register_operand" "")
4865                  (match_operand:DI 2 "register_operand" "")))
4866    (set (mem:SF (match_dup 0))
4867         (match_operand:SF 3 "register_operand" ""))]
4868   "!TARGET_SOFT_FLOAT
4869    && !TARGET_DISABLE_INDEXING
4870    && TARGET_64BIT
4871    && TARGET_NO_SPACE_REGS
4872    && REG_OK_FOR_BASE_P (operands[1])
4873    && REG_OK_FOR_INDEX_P (operands[2])
4874    && FP_REGNO_P (REGNO (operands[3]))"
4875   [(set (mem:SF (plus:DI (match_dup 2) (match_dup 1)))
4876         (match_dup 3))
4877    (set (match_dup 0) (plus:DI (match_dup 2) (match_dup 1)))]
4878   "")
4879
4880 (define_insn ""
4881   [(set (match_operand:SF 0 "move_dest_operand"
4882                           "=r,r,Q")
4883         (match_operand:SF 1 "reg_or_0_or_nonsymb_mem_operand"
4884                           "rG,RQ,rG"))]
4885   "(register_operand (operands[0], SFmode)
4886     || reg_or_0_operand (operands[1], SFmode))
4887    && TARGET_SOFT_FLOAT"
4888   "@
4889    copy %r1,%0
4890    ldw%M1 %1,%0
4891    stw%M0 %r1,%0"
4892   [(set_attr "type" "move,load,store")
4893    (set_attr "pa_combine_type" "addmove")
4894    (set_attr "length" "4,4,4")])
4895
4896 \f
4897
4898 ;;- zero extension instructions
4899 ;; We have define_expand for zero extension patterns to make sure the
4900 ;; operands get loaded into registers.  The define_insns accept
4901 ;; memory operands.  This gives us better overall code than just
4902 ;; having a pattern that does or does not accept memory operands.
4903
4904 (define_expand "zero_extendqihi2"
4905   [(set (match_operand:HI 0 "register_operand" "")
4906         (zero_extend:HI
4907          (match_operand:QI 1 "register_operand" "")))]
4908   ""
4909   "")
4910
4911 (define_insn ""
4912   [(set (match_operand:HI 0 "register_operand" "=r,r")
4913         (zero_extend:HI
4914          (match_operand:QI 1 "move_src_operand" "r,RQ")))]
4915   "GET_CODE (operands[1]) != CONST_INT"
4916   "@
4917    {extru|extrw,u} %1,31,8,%0
4918    ldb%M1 %1,%0"
4919   [(set_attr "type" "shift,load")
4920    (set_attr "length" "4,4")])
4921
4922 (define_expand "zero_extendqisi2"
4923   [(set (match_operand:SI 0 "register_operand" "")
4924         (zero_extend:SI
4925          (match_operand:QI 1 "register_operand" "")))]
4926   ""
4927   "")
4928
4929 (define_insn ""
4930   [(set (match_operand:SI 0 "register_operand" "=r,r")
4931         (zero_extend:SI
4932          (match_operand:QI 1 "move_src_operand" "r,RQ")))]
4933   "GET_CODE (operands[1]) != CONST_INT"
4934   "@
4935    {extru|extrw,u} %1,31,8,%0
4936    ldb%M1 %1,%0"
4937   [(set_attr "type" "shift,load")
4938    (set_attr "length" "4,4")])
4939
4940 (define_expand "zero_extendhisi2"
4941   [(set (match_operand:SI 0 "register_operand" "")
4942         (zero_extend:SI
4943          (match_operand:HI 1 "register_operand" "")))]
4944   ""
4945   "")
4946
4947 (define_insn ""
4948   [(set (match_operand:SI 0 "register_operand" "=r,r")
4949         (zero_extend:SI
4950          (match_operand:HI 1 "move_src_operand" "r,RQ")))]
4951   "GET_CODE (operands[1]) != CONST_INT"
4952   "@
4953    {extru|extrw,u} %1,31,16,%0
4954    ldh%M1 %1,%0"
4955   [(set_attr "type" "shift,load")
4956    (set_attr "length" "4,4")])
4957
4958 (define_expand "zero_extendqidi2"
4959   [(set (match_operand:DI 0 "register_operand" "")
4960         (zero_extend:DI
4961          (match_operand:QI 1 "register_operand" "")))]
4962   "TARGET_64BIT"
4963   "")
4964
4965 (define_insn ""
4966   [(set (match_operand:DI 0 "register_operand" "=r,r")
4967         (zero_extend:DI
4968          (match_operand:QI 1 "move_src_operand" "r,RQ")))]
4969   "TARGET_64BIT && GET_CODE (operands[1]) != CONST_INT"
4970   "@
4971    extrd,u %1,63,8,%0
4972    ldb%M1 %1,%0"
4973   [(set_attr "type" "shift,load")
4974    (set_attr "length" "4,4")])
4975
4976 (define_expand "zero_extendhidi2"
4977   [(set (match_operand:DI 0 "register_operand" "")
4978         (zero_extend:DI
4979          (match_operand:HI 1 "register_operand" "")))]
4980   "TARGET_64BIT"
4981   "")
4982
4983 (define_insn ""
4984   [(set (match_operand:DI 0 "register_operand" "=r,r")
4985         (zero_extend:DI
4986          (match_operand:HI 1 "move_src_operand" "r,RQ")))]
4987   "TARGET_64BIT && GET_CODE (operands[1]) != CONST_INT"
4988   "@
4989    extrd,u %1,63,16,%0
4990    ldh%M1 %1,%0"
4991   [(set_attr "type" "shift,load")
4992    (set_attr "length" "4,4")])
4993
4994 (define_expand "zero_extendsidi2"
4995   [(set (match_operand:DI 0 "register_operand" "")
4996         (zero_extend:DI
4997          (match_operand:SI 1 "register_operand" "")))]
4998   "TARGET_64BIT"
4999   "")
5000
5001 (define_insn ""
5002   [(set (match_operand:DI 0 "register_operand" "=r,r")
5003         (zero_extend:DI
5004          (match_operand:SI 1 "move_src_operand" "r,RQ")))]
5005   "TARGET_64BIT && GET_CODE (operands[1]) != CONST_INT"
5006   "@
5007    extrd,u %1,63,32,%0
5008    ldw%M1 %1,%0"
5009   [(set_attr "type" "shift,load")
5010    (set_attr "length" "4,4")])
5011
5012 ;;- sign extension instructions
5013
5014 (define_insn "extendhisi2"
5015   [(set (match_operand:SI 0 "register_operand" "=r")
5016         (sign_extend:SI (match_operand:HI 1 "register_operand" "r")))]
5017   ""
5018   "{extrs|extrw,s} %1,31,16,%0"
5019   [(set_attr "type" "shift")
5020    (set_attr "length" "4")])
5021
5022 (define_insn "extendqihi2"
5023   [(set (match_operand:HI 0 "register_operand" "=r")
5024         (sign_extend:HI (match_operand:QI 1 "register_operand" "r")))]
5025   ""
5026   "{extrs|extrw,s} %1,31,8,%0"
5027   [(set_attr "type" "shift") 
5028   (set_attr "length" "4")])
5029
5030 (define_insn "extendqisi2"
5031   [(set (match_operand:SI 0 "register_operand" "=r")
5032         (sign_extend:SI (match_operand:QI 1 "register_operand" "r")))]
5033   ""
5034   "{extrs|extrw,s} %1,31,8,%0"
5035   [(set_attr "type" "shift")
5036    (set_attr "length" "4")])
5037
5038 (define_insn "extendqidi2"
5039   [(set (match_operand:DI 0 "register_operand" "=r")
5040         (sign_extend:DI (match_operand:QI 1 "register_operand" "r")))]
5041   "TARGET_64BIT"
5042   "extrd,s %1,63,8,%0"
5043   [(set_attr "type" "shift") 
5044   (set_attr "length" "4")])
5045
5046 (define_insn "extendhidi2"
5047   [(set (match_operand:DI 0 "register_operand" "=r")
5048         (sign_extend:DI (match_operand:HI 1 "register_operand" "r")))]
5049   "TARGET_64BIT"
5050   "extrd,s %1,63,16,%0"
5051   [(set_attr "type" "shift") 
5052   (set_attr "length" "4")])
5053
5054 (define_insn "extendsidi2"
5055   [(set (match_operand:DI 0 "register_operand" "=r")
5056         (sign_extend:DI (match_operand:SI 1 "register_operand" "r")))]
5057   "TARGET_64BIT"
5058   "extrd,s %1,63,32,%0"
5059   [(set_attr "type" "shift") 
5060   (set_attr "length" "4")])
5061
5062 \f
5063 ;; Conversions between float and double.
5064
5065 (define_insn "extendsfdf2"
5066   [(set (match_operand:DF 0 "register_operand" "=f")
5067         (float_extend:DF
5068          (match_operand:SF 1 "register_operand" "f")))]
5069   "! TARGET_SOFT_FLOAT"
5070   "{fcnvff|fcnv},sgl,dbl %1,%0"
5071   [(set_attr "type" "fpalu")
5072    (set_attr "length" "4")])
5073
5074 (define_insn "truncdfsf2"
5075   [(set (match_operand:SF 0 "register_operand" "=f")
5076         (float_truncate:SF
5077          (match_operand:DF 1 "register_operand" "f")))]
5078   "! TARGET_SOFT_FLOAT"
5079   "{fcnvff|fcnv},dbl,sgl %1,%0"
5080   [(set_attr "type" "fpalu")
5081    (set_attr "length" "4")])
5082
5083 ;; Conversion between fixed point and floating point.
5084 ;; Note that among the fix-to-float insns
5085 ;; the ones that start with SImode come first.
5086 ;; That is so that an operand that is a CONST_INT
5087 ;; (and therefore lacks a specific machine mode).
5088 ;; will be recognized as SImode (which is always valid)
5089 ;; rather than as QImode or HImode.
5090
5091 ;; This pattern forces (set (reg:SF ...) (float:SF (const_int ...)))
5092 ;; to be reloaded by putting the constant into memory.
5093 ;; It must come before the more general floatsisf2 pattern.
5094 (define_insn ""
5095   [(set (match_operand:SF 0 "register_operand" "=f")
5096         (float:SF (match_operand:SI 1 "const_int_operand" "m")))]
5097   "! TARGET_SOFT_FLOAT"
5098   "fldw%F1 %1,%0\;{fcnvxf,sgl,sgl|fcnv,w,sgl} %0,%0"
5099   [(set_attr "type" "fpalu")
5100    (set_attr "length" "8")])
5101
5102 (define_insn "floatsisf2"
5103   [(set (match_operand:SF 0 "register_operand" "=f")
5104         (float:SF (match_operand:SI 1 "register_operand" "f")))]
5105   "! TARGET_SOFT_FLOAT"
5106   "{fcnvxf,sgl,sgl|fcnv,w,sgl} %1,%0"
5107   [(set_attr "type" "fpalu")
5108    (set_attr "length" "4")])
5109
5110 ;; This pattern forces (set (reg:DF ...) (float:DF (const_int ...)))
5111 ;; to be reloaded by putting the constant into memory.
5112 ;; It must come before the more general floatsidf2 pattern.
5113 (define_insn ""
5114   [(set (match_operand:DF 0 "register_operand" "=f")
5115         (float:DF (match_operand:SI 1 "const_int_operand" "m")))]
5116   "! TARGET_SOFT_FLOAT"
5117   "fldw%F1 %1,%0\;{fcnvxf,sgl,dbl|fcnv,w,dbl} %0,%0"
5118   [(set_attr "type" "fpalu")
5119    (set_attr "length" "8")])
5120
5121 (define_insn "floatsidf2"
5122   [(set (match_operand:DF 0 "register_operand" "=f")
5123         (float:DF (match_operand:SI 1 "register_operand" "f")))]
5124   "! TARGET_SOFT_FLOAT"
5125   "{fcnvxf,sgl,dbl|fcnv,w,dbl} %1,%0"
5126   [(set_attr "type" "fpalu")
5127    (set_attr "length" "4")])
5128
5129 (define_expand "floatunssisf2"
5130   [(set (subreg:SI (match_dup 2) 4)
5131         (match_operand:SI 1 "register_operand" ""))
5132    (set (subreg:SI (match_dup 2) 0)
5133         (const_int 0))
5134    (set (match_operand:SF 0 "register_operand" "")
5135         (float:SF (match_dup 2)))]
5136   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
5137   "
5138 {
5139   if (TARGET_PA_20)
5140     {
5141       emit_insn (gen_floatunssisf2_pa20 (operands[0], operands[1]));
5142       DONE;
5143     }
5144   operands[2] = gen_reg_rtx (DImode);
5145 }")
5146
5147 (define_expand "floatunssidf2"
5148   [(set (subreg:SI (match_dup 2) 4)
5149         (match_operand:SI 1 "register_operand" ""))
5150    (set (subreg:SI (match_dup 2) 0)
5151         (const_int 0))
5152    (set (match_operand:DF 0 "register_operand" "")
5153         (float:DF (match_dup 2)))]
5154   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
5155   "
5156 {
5157   if (TARGET_PA_20)
5158     {
5159       emit_insn (gen_floatunssidf2_pa20 (operands[0], operands[1]));
5160       DONE;
5161     }
5162   operands[2] = gen_reg_rtx (DImode);
5163 }")
5164
5165 (define_insn "floatdisf2"
5166   [(set (match_operand:SF 0 "register_operand" "=f")
5167         (float:SF (match_operand:DI 1 "register_operand" "f")))]
5168   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
5169   "{fcnvxf,dbl,sgl|fcnv,dw,sgl} %1,%0"
5170   [(set_attr "type" "fpalu")
5171    (set_attr "length" "4")])
5172
5173 (define_insn "floatdidf2"
5174   [(set (match_operand:DF 0 "register_operand" "=f")
5175         (float:DF (match_operand:DI 1 "register_operand" "f")))]
5176   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
5177   "{fcnvxf,dbl,dbl|fcnv,dw,dbl} %1,%0"
5178   [(set_attr "type" "fpalu")
5179    (set_attr "length" "4")])
5180
5181 ;; Convert a float to an actual integer.
5182 ;; Truncation is performed as part of the conversion.
5183
5184 (define_insn "fix_truncsfsi2"
5185   [(set (match_operand:SI 0 "register_operand" "=f")
5186         (fix:SI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
5187   "! TARGET_SOFT_FLOAT"
5188   "{fcnvfxt,sgl,sgl|fcnv,t,sgl,w} %1,%0"
5189   [(set_attr "type" "fpalu")
5190    (set_attr "length" "4")])
5191
5192 (define_insn "fix_truncdfsi2"
5193   [(set (match_operand:SI 0 "register_operand" "=f")
5194         (fix:SI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
5195   "! TARGET_SOFT_FLOAT"
5196   "{fcnvfxt,dbl,sgl|fcnv,t,dbl,w} %1,%0"
5197   [(set_attr "type" "fpalu")
5198    (set_attr "length" "4")])
5199
5200 (define_insn "fix_truncsfdi2"
5201   [(set (match_operand:DI 0 "register_operand" "=f")
5202         (fix:DI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
5203   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
5204   "{fcnvfxt,sgl,dbl|fcnv,t,sgl,dw} %1,%0"
5205   [(set_attr "type" "fpalu")
5206    (set_attr "length" "4")])
5207
5208 (define_insn "fix_truncdfdi2"
5209   [(set (match_operand:DI 0 "register_operand" "=f")
5210         (fix:DI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
5211   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
5212   "{fcnvfxt,dbl,dbl|fcnv,t,dbl,dw} %1,%0"
5213   [(set_attr "type" "fpalu")
5214    (set_attr "length" "4")])
5215
5216 (define_insn "floatunssidf2_pa20"
5217   [(set (match_operand:DF 0 "register_operand" "=f")
5218         (unsigned_float:DF (match_operand:SI 1 "register_operand" "f")))]
5219   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5220   "fcnv,uw,dbl %1,%0"
5221   [(set_attr "type" "fpalu")
5222    (set_attr "length" "4")])
5223
5224 (define_insn "floatunssisf2_pa20"
5225   [(set (match_operand:SF 0 "register_operand" "=f")
5226         (unsigned_float:SF (match_operand:SI 1 "register_operand" "f")))]
5227   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5228   "fcnv,uw,sgl %1,%0"
5229   [(set_attr "type" "fpalu")
5230    (set_attr "length" "4")])
5231
5232 (define_insn "floatunsdisf2"
5233   [(set (match_operand:SF 0 "register_operand" "=f")
5234         (unsigned_float:SF (match_operand:DI 1 "register_operand" "f")))]
5235   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5236   "fcnv,udw,sgl %1,%0"
5237   [(set_attr "type" "fpalu")
5238    (set_attr "length" "4")])
5239
5240 (define_insn "floatunsdidf2"
5241   [(set (match_operand:DF 0 "register_operand" "=f")
5242         (unsigned_float:DF (match_operand:DI 1 "register_operand" "f")))]
5243   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5244   "fcnv,udw,dbl %1,%0"
5245   [(set_attr "type" "fpalu")
5246    (set_attr "length" "4")])
5247
5248 (define_insn "fixuns_truncsfsi2"
5249   [(set (match_operand:SI 0 "register_operand" "=f")
5250         (unsigned_fix:SI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
5251   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5252   "fcnv,t,sgl,uw %1,%0"
5253   [(set_attr "type" "fpalu")
5254    (set_attr "length" "4")])
5255
5256 (define_insn "fixuns_truncdfsi2"
5257   [(set (match_operand:SI 0 "register_operand" "=f")
5258         (unsigned_fix:SI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
5259   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5260   "fcnv,t,dbl,uw %1,%0"
5261   [(set_attr "type" "fpalu")
5262    (set_attr "length" "4")])
5263
5264 (define_insn "fixuns_truncsfdi2"
5265   [(set (match_operand:DI 0 "register_operand" "=f")
5266         (unsigned_fix:DI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
5267   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5268   "fcnv,t,sgl,udw %1,%0"
5269   [(set_attr "type" "fpalu")
5270    (set_attr "length" "4")])
5271
5272 (define_insn "fixuns_truncdfdi2"
5273   [(set (match_operand:DI 0 "register_operand" "=f")
5274         (unsigned_fix:DI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
5275   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5276   "fcnv,t,dbl,udw %1,%0"
5277   [(set_attr "type" "fpalu")
5278    (set_attr "length" "4")])
5279 \f
5280 ;;- arithmetic instructions
5281
5282 (define_expand "adddi3"
5283   [(set (match_operand:DI 0 "register_operand" "")
5284         (plus:DI (match_operand:DI 1 "register_operand" "")
5285                  (match_operand:DI 2 "adddi3_operand" "")))]
5286   ""
5287   "")
5288
5289 (define_insn ""
5290   [(set (match_operand:DI 0 "register_operand" "=r")
5291         (plus:DI (match_operand:DI 1 "register_operand" "%r")
5292                  (match_operand:DI 2 "arith11_operand" "rI")))]
5293   "!TARGET_64BIT"
5294   "*
5295 {
5296   if (GET_CODE (operands[2]) == CONST_INT)
5297     {
5298       if (INTVAL (operands[2]) >= 0)
5299         return \"addi %2,%R1,%R0\;{addc|add,c} %1,%%r0,%0\";
5300       else
5301         return \"addi %2,%R1,%R0\;{subb|sub,b} %1,%%r0,%0\";
5302     }
5303   else
5304     return \"add %R2,%R1,%R0\;{addc|add,c} %2,%1,%0\";
5305 }"
5306   [(set_attr "type" "binary")
5307    (set_attr "length" "8")])
5308
5309 (define_insn ""
5310   [(set (match_operand:DI 0 "register_operand" "=r,r")
5311         (plus:DI (match_operand:DI 1 "register_operand" "%r,r")
5312                  (match_operand:DI 2 "arith_operand" "r,J")))]
5313   "TARGET_64BIT"
5314   "@
5315    add,l %1,%2,%0
5316    ldo %2(%1),%0"
5317   [(set_attr "type" "binary,binary")
5318    (set_attr "pa_combine_type" "addmove")
5319    (set_attr "length" "4,4")])
5320
5321 (define_insn ""
5322   [(set (match_operand:DI 0 "register_operand" "=r")
5323         (plus:DI (not:DI (match_operand:DI 1 "register_operand" "r"))
5324                  (match_operand:DI 2 "register_operand" "r")))]
5325   "TARGET_64BIT"
5326   "uaddcm %2,%1,%0"
5327   [(set_attr "type" "binary")
5328    (set_attr "length" "4")])
5329
5330 (define_insn ""
5331   [(set (match_operand:SI 0 "register_operand" "=r")
5332         (plus:SI (not:SI (match_operand:SI 1 "register_operand" "r"))
5333                  (match_operand:SI 2 "register_operand" "r")))]
5334   ""
5335   "uaddcm %2,%1,%0"
5336   [(set_attr "type" "binary")
5337    (set_attr "length" "4")])
5338
5339 ;; define_splits to optimize cases of adding a constant integer
5340 ;; to a register when the constant does not fit in 14 bits.  */
5341 (define_split
5342   [(set (match_operand:SI 0 "register_operand" "")
5343         (plus:SI (match_operand:SI 1 "register_operand" "")
5344                  (match_operand:SI 2 "const_int_operand" "")))
5345    (clobber (match_operand:SI 4 "register_operand" ""))]
5346   "! cint_ok_for_move (INTVAL (operands[2]))
5347    && VAL_14_BITS_P (INTVAL (operands[2]) >> 1)"
5348   [(set (match_dup 4) (plus:SI (match_dup 1) (match_dup 2)))
5349    (set (match_dup 0) (plus:SI (match_dup 4) (match_dup 3)))]
5350   "
5351 {
5352   int val = INTVAL (operands[2]);
5353   int low = (val < 0) ? -0x2000 : 0x1fff;
5354   int rest = val - low;
5355
5356   operands[2] = GEN_INT (rest);
5357   operands[3] = GEN_INT (low);
5358 }")
5359
5360 (define_split
5361   [(set (match_operand:SI 0 "register_operand" "")
5362         (plus:SI (match_operand:SI 1 "register_operand" "")
5363                  (match_operand:SI 2 "const_int_operand" "")))
5364    (clobber (match_operand:SI 4 "register_operand" ""))]
5365   "! cint_ok_for_move (INTVAL (operands[2]))"
5366   [(set (match_dup 4) (match_dup 2))
5367    (set (match_dup 0) (plus:SI (mult:SI (match_dup 4) (match_dup 3))
5368                                (match_dup 1)))]
5369   "
5370 {
5371   HOST_WIDE_INT intval = INTVAL (operands[2]);
5372
5373   /* Try dividing the constant by 2, then 4, and finally 8 to see
5374      if we can get a constant which can be loaded into a register
5375      in a single instruction (cint_ok_for_move). 
5376
5377      If that fails, try to negate the constant and subtract it
5378      from our input operand.  */
5379   if (intval % 2 == 0 && cint_ok_for_move (intval / 2))
5380     {
5381       operands[2] = GEN_INT (intval / 2);
5382       operands[3] = const2_rtx;
5383     }
5384   else if (intval % 4 == 0 && cint_ok_for_move (intval / 4))
5385     {
5386       operands[2] = GEN_INT (intval / 4);
5387       operands[3] = GEN_INT (4);
5388     }
5389   else if (intval % 8 == 0 && cint_ok_for_move (intval / 8))
5390     {
5391       operands[2] = GEN_INT (intval / 8);
5392       operands[3] = GEN_INT (8);
5393     }
5394   else if (cint_ok_for_move (-intval))
5395     {
5396       emit_insn (gen_rtx_SET (VOIDmode, operands[4], GEN_INT (-intval)));
5397       emit_insn (gen_subsi3 (operands[0], operands[1], operands[4]));
5398       DONE;
5399     }
5400   else
5401     FAIL;
5402 }")
5403
5404 (define_insn "addsi3"
5405   [(set (match_operand:SI 0 "register_operand" "=r,r")
5406         (plus:SI (match_operand:SI 1 "register_operand" "%r,r")
5407                  (match_operand:SI 2 "arith_operand" "r,J")))]
5408   ""
5409   "@
5410    {addl|add,l} %1,%2,%0
5411    ldo %2(%1),%0"
5412   [(set_attr "type" "binary,binary")
5413    (set_attr "pa_combine_type" "addmove")
5414    (set_attr "length" "4,4")])
5415
5416 (define_expand "subdi3"
5417   [(set (match_operand:DI 0 "register_operand" "")
5418         (minus:DI (match_operand:DI 1 "register_operand" "")
5419                   (match_operand:DI 2 "register_operand" "")))]
5420   ""
5421   "")
5422
5423 (define_insn ""
5424   [(set (match_operand:DI 0 "register_operand" "=r")
5425         (minus:DI (match_operand:DI 1 "register_operand" "r")
5426                   (match_operand:DI 2 "register_operand" "r")))]
5427   "!TARGET_64BIT"
5428   "sub %R1,%R2,%R0\;{subb|sub,b} %1,%2,%0"
5429   [(set_attr "type" "binary")
5430   (set_attr "length" "8")])
5431
5432 (define_insn ""
5433   [(set (match_operand:DI 0 "register_operand" "=r,r,!q")
5434         (minus:DI (match_operand:DI 1 "arith11_operand" "r,I,!U")
5435                   (match_operand:DI 2 "register_operand" "r,r,!r")))]
5436   "TARGET_64BIT"
5437   "@
5438    sub %1,%2,%0
5439    subi %1,%2,%0
5440    mtsarcm %2"
5441   [(set_attr "type" "binary,binary,move")
5442   (set_attr "length" "4,4,4")])
5443
5444 (define_expand "subsi3"
5445   [(set (match_operand:SI 0 "register_operand" "")
5446         (minus:SI (match_operand:SI 1 "arith11_operand" "")
5447                   (match_operand:SI 2 "register_operand" "")))]
5448   ""
5449   "")
5450
5451 (define_insn ""
5452   [(set (match_operand:SI 0 "register_operand" "=r,r")
5453         (minus:SI (match_operand:SI 1 "arith11_operand" "r,I")
5454                   (match_operand:SI 2 "register_operand" "r,r")))]
5455   "!TARGET_PA_20"
5456   "@
5457    sub %1,%2,%0
5458    subi %1,%2,%0"
5459   [(set_attr "type" "binary,binary")
5460    (set_attr "length" "4,4")])
5461
5462 (define_insn ""
5463   [(set (match_operand:SI 0 "register_operand" "=r,r,!q")
5464         (minus:SI (match_operand:SI 1 "arith11_operand" "r,I,!S")
5465                   (match_operand:SI 2 "register_operand" "r,r,!r")))]
5466   "TARGET_PA_20"
5467   "@
5468    sub %1,%2,%0
5469    subi %1,%2,%0
5470    mtsarcm %2"
5471   [(set_attr "type" "binary,binary,move")
5472    (set_attr "length" "4,4,4")])
5473
5474 ;; Clobbering a "register_operand" instead of a match_scratch
5475 ;; in operand3 of millicode calls avoids spilling %r1 and
5476 ;; produces better code.
5477
5478 ;; The mulsi3 insns set up registers for the millicode call.
5479 (define_expand "mulsi3"
5480   [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5481    (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5482    (parallel [(set (reg:SI 29) (mult:SI (reg:SI 26) (reg:SI 25)))
5483               (clobber (match_dup 3))
5484               (clobber (reg:SI 26))
5485               (clobber (reg:SI 25))
5486               (clobber (match_dup 4))])
5487    (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5488   ""
5489   "
5490 {
5491   operands[4] = gen_rtx_REG (SImode, TARGET_64BIT ? 2 : 31);
5492   if (TARGET_PA_11 && !TARGET_DISABLE_FPREGS && !TARGET_SOFT_FLOAT)
5493     {
5494       rtx scratch = gen_reg_rtx (DImode);
5495       operands[1] = force_reg (SImode, operands[1]);
5496       operands[2] = force_reg (SImode, operands[2]);
5497       emit_insn (gen_umulsidi3 (scratch, operands[1], operands[2]));
5498       emit_insn (gen_movsi (operands[0],
5499                             gen_rtx_SUBREG (SImode, scratch,
5500                                             GET_MODE_SIZE (SImode))));
5501       DONE;
5502     }
5503   operands[3] = gen_reg_rtx (SImode);
5504 }")
5505
5506 (define_insn "umulsidi3"
5507   [(set (match_operand:DI 0 "nonimmediate_operand" "=f")
5508         (mult:DI (zero_extend:DI (match_operand:SI 1 "nonimmediate_operand" "f"))
5509                  (zero_extend:DI (match_operand:SI 2 "nonimmediate_operand" "f"))))]
5510   "TARGET_PA_11 && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT"
5511   "xmpyu %1,%2,%0"
5512   [(set_attr "type" "fpmuldbl")
5513    (set_attr "length" "4")])
5514
5515 (define_insn ""
5516   [(set (match_operand:DI 0 "nonimmediate_operand" "=f")
5517         (mult:DI (zero_extend:DI (match_operand:SI 1 "nonimmediate_operand" "f"))
5518                  (match_operand:DI 2 "uint32_operand" "f")))]
5519   "TARGET_PA_11 && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT && !TARGET_64BIT"
5520   "xmpyu %1,%R2,%0"
5521   [(set_attr "type" "fpmuldbl")
5522    (set_attr "length" "4")])
5523
5524 (define_insn ""
5525   [(set (match_operand:DI 0 "nonimmediate_operand" "=f")
5526         (mult:DI (zero_extend:DI (match_operand:SI 1 "nonimmediate_operand" "f"))
5527                  (match_operand:DI 2 "uint32_operand" "f")))]
5528   "TARGET_PA_11 && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT && TARGET_64BIT"
5529   "xmpyu %1,%2R,%0"
5530   [(set_attr "type" "fpmuldbl")
5531    (set_attr "length" "4")])
5532
5533 (define_insn ""
5534   [(set (reg:SI 29) (mult:SI (reg:SI 26) (reg:SI 25)))
5535    (clobber (match_operand:SI 0 "register_operand" "=a"))
5536    (clobber (reg:SI 26))
5537    (clobber (reg:SI 25))
5538    (clobber (reg:SI 31))]
5539   "!TARGET_64BIT"
5540   "* return output_mul_insn (0, insn);"
5541   [(set_attr "type" "milli")
5542    (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5543
5544 (define_insn ""
5545   [(set (reg:SI 29) (mult:SI (reg:SI 26) (reg:SI 25)))
5546    (clobber (match_operand:SI 0 "register_operand" "=a"))
5547    (clobber (reg:SI 26))
5548    (clobber (reg:SI 25))
5549    (clobber (reg:SI 2))]
5550   "TARGET_64BIT"
5551   "* return output_mul_insn (0, insn);"
5552   [(set_attr "type" "milli")
5553    (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5554
5555 (define_expand "muldi3"
5556   [(set (match_operand:DI 0 "register_operand" "")
5557         (mult:DI (match_operand:DI 1 "register_operand" "")
5558                  (match_operand:DI 2 "register_operand" "")))]
5559   "TARGET_64BIT && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT"
5560   "
5561 {
5562   rtx low_product = gen_reg_rtx (DImode);
5563   rtx cross_product1 = gen_reg_rtx (DImode);
5564   rtx cross_product2 = gen_reg_rtx (DImode);
5565   rtx cross_scratch = gen_reg_rtx (DImode);
5566   rtx cross_product = gen_reg_rtx (DImode);
5567   rtx op1l, op1r, op2l, op2r;
5568   rtx op1shifted, op2shifted;
5569
5570   op1shifted = gen_reg_rtx (DImode);
5571   op2shifted = gen_reg_rtx (DImode);
5572   op1l = gen_reg_rtx (SImode);
5573   op1r = gen_reg_rtx (SImode);
5574   op2l = gen_reg_rtx (SImode);
5575   op2r = gen_reg_rtx (SImode);
5576
5577   emit_move_insn (op1shifted, gen_rtx_LSHIFTRT (DImode, operands[1],
5578                                                 GEN_INT (32)));
5579   emit_move_insn (op2shifted, gen_rtx_LSHIFTRT (DImode, operands[2],
5580                                                 GEN_INT (32)));
5581   op1r = gen_rtx_SUBREG (SImode, operands[1], 4);
5582   op2r = gen_rtx_SUBREG (SImode, operands[2], 4);
5583   op1l = gen_rtx_SUBREG (SImode, op1shifted, 4);
5584   op2l = gen_rtx_SUBREG (SImode, op2shifted, 4);
5585
5586   /* Emit multiplies for the cross products.  */
5587   emit_insn (gen_umulsidi3 (cross_product1, op2r, op1l));
5588   emit_insn (gen_umulsidi3 (cross_product2, op2l, op1r));
5589
5590   /* Emit a multiply for the low sub-word.  */
5591   emit_insn (gen_umulsidi3 (low_product, copy_rtx (op2r), copy_rtx (op1r)));
5592
5593   /* Sum the cross products and shift them into proper position.  */
5594   emit_insn (gen_adddi3 (cross_scratch, cross_product1, cross_product2));
5595   emit_insn (gen_ashldi3 (cross_product, cross_scratch, GEN_INT (32)));
5596
5597   /* Add the cross product to the low product and store the result
5598      into the output operand .  */
5599   emit_insn (gen_adddi3 (operands[0], cross_product, low_product));
5600   DONE;
5601 }")
5602
5603 ;;; Division and mod.
5604 (define_expand "divsi3"
5605   [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5606    (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5607    (parallel [(set (reg:SI 29) (div:SI (reg:SI 26) (reg:SI 25)))
5608               (clobber (match_dup 3))
5609               (clobber (match_dup 4))
5610               (clobber (reg:SI 26))
5611               (clobber (reg:SI 25))
5612               (clobber (match_dup 5))])
5613    (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5614   ""
5615   "
5616 {
5617   operands[3] = gen_reg_rtx (SImode);
5618   if (TARGET_64BIT)
5619     {
5620       operands[5] = gen_rtx_REG (SImode, 2);
5621       operands[4] = operands[5];
5622     }
5623   else
5624     {
5625       operands[5] = gen_rtx_REG (SImode, 31);
5626       operands[4] = gen_reg_rtx (SImode);
5627     }
5628   if (GET_CODE (operands[2]) == CONST_INT && emit_hpdiv_const (operands, 0))
5629     DONE;
5630 }")
5631
5632 (define_insn ""
5633   [(set (reg:SI 29)
5634         (div:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
5635    (clobber (match_operand:SI 1 "register_operand" "=a"))
5636    (clobber (match_operand:SI 2 "register_operand" "=&r"))
5637    (clobber (reg:SI 26))
5638    (clobber (reg:SI 25))
5639    (clobber (reg:SI 31))]
5640   "!TARGET_64BIT"
5641   "*
5642    return output_div_insn (operands, 0, insn);"
5643   [(set_attr "type" "milli")
5644    (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5645
5646 (define_insn ""
5647   [(set (reg:SI 29)
5648         (div:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
5649    (clobber (match_operand:SI 1 "register_operand" "=a"))
5650    (clobber (match_operand:SI 2 "register_operand" "=&r"))
5651    (clobber (reg:SI 26))
5652    (clobber (reg:SI 25))
5653    (clobber (reg:SI 2))]
5654   "TARGET_64BIT"
5655   "*
5656    return output_div_insn (operands, 0, insn);"
5657   [(set_attr "type" "milli")
5658    (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5659
5660 (define_expand "udivsi3"
5661   [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5662    (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5663    (parallel [(set (reg:SI 29) (udiv:SI (reg:SI 26) (reg:SI 25)))
5664               (clobber (match_dup 3))
5665               (clobber (match_dup 4))
5666               (clobber (reg:SI 26))
5667               (clobber (reg:SI 25))
5668               (clobber (match_dup 5))])
5669    (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5670   ""
5671   "
5672 {
5673   operands[3] = gen_reg_rtx (SImode);
5674
5675   if (TARGET_64BIT)
5676     {
5677       operands[5] = gen_rtx_REG (SImode, 2);
5678       operands[4] = operands[5];
5679     }
5680   else
5681     {
5682       operands[5] = gen_rtx_REG (SImode, 31);
5683       operands[4] = gen_reg_rtx (SImode);
5684     }
5685   if (GET_CODE (operands[2]) == CONST_INT && emit_hpdiv_const (operands, 1))
5686     DONE;
5687 }")
5688
5689 (define_insn ""
5690   [(set (reg:SI 29)
5691         (udiv:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
5692    (clobber (match_operand:SI 1 "register_operand" "=a"))
5693    (clobber (match_operand:SI 2 "register_operand" "=&r"))
5694    (clobber (reg:SI 26))
5695    (clobber (reg:SI 25))
5696    (clobber (reg:SI 31))]
5697   "!TARGET_64BIT"
5698   "*
5699    return output_div_insn (operands, 1, insn);"
5700   [(set_attr "type" "milli")
5701    (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5702
5703 (define_insn ""
5704   [(set (reg:SI 29)
5705         (udiv:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
5706    (clobber (match_operand:SI 1 "register_operand" "=a"))
5707    (clobber (match_operand:SI 2 "register_operand" "=&r"))
5708    (clobber (reg:SI 26))
5709    (clobber (reg:SI 25))
5710    (clobber (reg:SI 2))]
5711   "TARGET_64BIT"
5712   "*
5713    return output_div_insn (operands, 1, insn);"
5714   [(set_attr "type" "milli")
5715    (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5716
5717 (define_expand "modsi3"
5718   [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5719    (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5720    (parallel [(set (reg:SI 29) (mod:SI (reg:SI 26) (reg:SI 25)))
5721               (clobber (match_dup 3))
5722               (clobber (match_dup 4))
5723               (clobber (reg:SI 26))
5724               (clobber (reg:SI 25))
5725               (clobber (match_dup 5))])
5726    (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5727   ""
5728   "
5729 {
5730   if (TARGET_64BIT)
5731     {
5732       operands[5] = gen_rtx_REG (SImode, 2);
5733       operands[4] = operands[5];
5734     }
5735   else
5736     {
5737       operands[5] = gen_rtx_REG (SImode, 31);
5738       operands[4] = gen_reg_rtx (SImode);
5739     }
5740   operands[3] = gen_reg_rtx (SImode);
5741 }")
5742
5743 (define_insn ""
5744   [(set (reg:SI 29) (mod:SI (reg:SI 26) (reg:SI 25)))
5745    (clobber (match_operand:SI 0 "register_operand" "=a"))
5746    (clobber (match_operand:SI 1 "register_operand" "=&r"))
5747    (clobber (reg:SI 26))
5748    (clobber (reg:SI 25))
5749    (clobber (reg:SI 31))]
5750   "!TARGET_64BIT"
5751   "*
5752   return output_mod_insn (0, insn);"
5753   [(set_attr "type" "milli")
5754    (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5755
5756 (define_insn ""
5757   [(set (reg:SI 29) (mod:SI (reg:SI 26) (reg:SI 25)))
5758    (clobber (match_operand:SI 0 "register_operand" "=a"))
5759    (clobber (match_operand:SI 1 "register_operand" "=&r"))
5760    (clobber (reg:SI 26))
5761    (clobber (reg:SI 25))
5762    (clobber (reg:SI 2))]
5763   "TARGET_64BIT"
5764   "*
5765   return output_mod_insn (0, insn);"
5766   [(set_attr "type" "milli")
5767    (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5768
5769 (define_expand "umodsi3"
5770   [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5771    (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5772    (parallel [(set (reg:SI 29) (umod:SI (reg:SI 26) (reg:SI 25)))
5773               (clobber (match_dup 3))
5774               (clobber (match_dup 4))
5775               (clobber (reg:SI 26))
5776               (clobber (reg:SI 25))
5777               (clobber (match_dup 5))])
5778    (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5779   ""
5780   "
5781 {
5782   if (TARGET_64BIT)
5783     {
5784       operands[5] = gen_rtx_REG (SImode, 2);
5785       operands[4] = operands[5];
5786     }
5787   else
5788     {
5789       operands[5] = gen_rtx_REG (SImode, 31);
5790       operands[4] = gen_reg_rtx (SImode);
5791     }
5792   operands[3] = gen_reg_rtx (SImode);
5793 }")
5794
5795 (define_insn ""
5796   [(set (reg:SI 29) (umod:SI (reg:SI 26) (reg:SI 25)))
5797    (clobber (match_operand:SI 0 "register_operand" "=a"))
5798    (clobber (match_operand:SI 1 "register_operand" "=&r"))
5799    (clobber (reg:SI 26))
5800    (clobber (reg:SI 25))
5801    (clobber (reg:SI 31))]
5802   "!TARGET_64BIT"
5803   "*
5804   return output_mod_insn (1, insn);"
5805   [(set_attr "type" "milli")
5806    (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5807
5808 (define_insn ""
5809   [(set (reg:SI 29) (umod:SI (reg:SI 26) (reg:SI 25)))
5810    (clobber (match_operand:SI 0 "register_operand" "=a"))
5811    (clobber (match_operand:SI 1 "register_operand" "=&r"))
5812    (clobber (reg:SI 26))
5813    (clobber (reg:SI 25))
5814    (clobber (reg:SI 2))]
5815   "TARGET_64BIT"
5816   "*
5817   return output_mod_insn (1, insn);"
5818   [(set_attr "type" "milli")
5819    (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5820
5821 ;;- and instructions
5822 ;; We define DImode `and` so with DImode `not` we can get
5823 ;; DImode `andn`.  Other combinations are possible.
5824
5825 (define_expand "anddi3"
5826   [(set (match_operand:DI 0 "register_operand" "")
5827         (and:DI (match_operand:DI 1 "register_operand" "")
5828                 (match_operand:DI 2 "and_operand" "")))]
5829   ""
5830   "
5831 {
5832   /* Both operands must be register operands.  */
5833   if (!TARGET_64BIT && !register_operand (operands[2], DImode))
5834     FAIL;
5835 }")
5836
5837 (define_insn ""
5838   [(set (match_operand:DI 0 "register_operand" "=r")
5839         (and:DI (match_operand:DI 1 "register_operand" "%r")
5840                 (match_operand:DI 2 "register_operand" "r")))]
5841   "!TARGET_64BIT"
5842   "and %1,%2,%0\;and %R1,%R2,%R0"
5843   [(set_attr "type" "binary")
5844    (set_attr "length" "8")])
5845
5846 (define_insn ""
5847   [(set (match_operand:DI 0 "register_operand" "=r,r")
5848         (and:DI (match_operand:DI 1 "register_operand" "%?r,0")
5849                 (match_operand:DI 2 "and_operand" "rO,P")))]
5850   "TARGET_64BIT"
5851   "* return output_64bit_and (operands); "
5852   [(set_attr "type" "binary")
5853    (set_attr "length" "4")])
5854
5855 ; The ? for op1 makes reload prefer zdepi instead of loading a huge
5856 ; constant with ldil;ldo.
5857 (define_insn "andsi3"
5858   [(set (match_operand:SI 0 "register_operand" "=r,r")
5859         (and:SI (match_operand:SI 1 "register_operand" "%?r,0")
5860                 (match_operand:SI 2 "and_operand" "rO,P")))]
5861   ""
5862   "* return output_and (operands); "
5863   [(set_attr "type" "binary,shift")
5864    (set_attr "length" "4,4")])
5865
5866 (define_insn ""
5867   [(set (match_operand:DI 0 "register_operand" "=r")
5868         (and:DI (not:DI (match_operand:DI 1 "register_operand" "r"))
5869                 (match_operand:DI 2 "register_operand" "r")))]
5870   "!TARGET_64BIT"
5871   "andcm %2,%1,%0\;andcm %R2,%R1,%R0"
5872   [(set_attr "type" "binary")
5873    (set_attr "length" "8")])
5874
5875 (define_insn ""
5876   [(set (match_operand:DI 0 "register_operand" "=r")
5877         (and:DI (not:DI (match_operand:DI 1 "register_operand" "r"))
5878                 (match_operand:DI 2 "register_operand" "r")))]
5879   "TARGET_64BIT"
5880   "andcm %2,%1,%0"
5881   [(set_attr "type" "binary")
5882    (set_attr "length" "4")])
5883
5884 (define_insn ""
5885   [(set (match_operand:SI 0 "register_operand" "=r")
5886         (and:SI (not:SI (match_operand:SI 1 "register_operand" "r"))
5887                 (match_operand:SI 2 "register_operand" "r")))]
5888   ""
5889   "andcm %2,%1,%0"
5890   [(set_attr "type" "binary")
5891   (set_attr "length" "4")])
5892
5893 (define_expand "iordi3"
5894   [(set (match_operand:DI 0 "register_operand" "")
5895         (ior:DI (match_operand:DI 1 "register_operand" "")
5896                 (match_operand:DI 2 "ior_operand" "")))]
5897   ""
5898   "
5899 {
5900   /* Both operands must be register operands.  */
5901   if (!TARGET_64BIT && !register_operand (operands[2], DImode))
5902     FAIL;
5903 }")
5904
5905 (define_insn ""
5906   [(set (match_operand:DI 0 "register_operand" "=r")
5907         (ior:DI (match_operand:DI 1 "register_operand" "%r")
5908                 (match_operand:DI 2 "register_operand" "r")))]
5909   "!TARGET_64BIT"
5910   "or %1,%2,%0\;or %R1,%R2,%R0"
5911   [(set_attr "type" "binary")
5912    (set_attr "length" "8")])
5913
5914 (define_insn ""
5915   [(set (match_operand:DI 0 "register_operand" "=r,r")
5916         (ior:DI (match_operand:DI 1 "register_operand" "0,0")
5917                 (match_operand:DI 2 "ior_operand" "M,i")))]
5918   "TARGET_64BIT"
5919   "* return output_64bit_ior (operands); "
5920   [(set_attr "type" "binary,shift")
5921    (set_attr "length" "4,4")])
5922
5923 (define_insn ""
5924   [(set (match_operand:DI 0 "register_operand" "=r")
5925         (ior:DI (match_operand:DI 1 "register_operand" "%r")
5926                 (match_operand:DI 2 "register_operand" "r")))]
5927   "TARGET_64BIT"
5928   "or %1,%2,%0"
5929   [(set_attr "type" "binary")
5930    (set_attr "length" "4")])
5931
5932 ;; Need a define_expand because we've run out of CONST_OK... characters.
5933 (define_expand "iorsi3"
5934   [(set (match_operand:SI 0 "register_operand" "")
5935         (ior:SI (match_operand:SI 1 "register_operand" "")
5936                 (match_operand:SI 2 "arith32_operand" "")))]
5937   ""
5938   "
5939 {
5940   if (! (ior_operand (operands[2], SImode)
5941          || register_operand (operands[2], SImode)))
5942     operands[2] = force_reg (SImode, operands[2]);
5943 }")
5944
5945 (define_insn ""
5946   [(set (match_operand:SI 0 "register_operand" "=r,r")
5947         (ior:SI (match_operand:SI 1 "register_operand" "0,0")
5948                 (match_operand:SI 2 "ior_operand" "M,i")))]
5949   ""
5950   "* return output_ior (operands); "
5951   [(set_attr "type" "binary,shift")
5952    (set_attr "length" "4,4")])
5953
5954 (define_insn ""
5955   [(set (match_operand:SI 0 "register_operand" "=r")
5956         (ior:SI (match_operand:SI 1 "register_operand" "%r")
5957                 (match_operand:SI 2 "register_operand" "r")))]
5958   ""
5959   "or %1,%2,%0"
5960   [(set_attr "type" "binary")
5961    (set_attr "length" "4")])
5962
5963 (define_expand "xordi3"
5964   [(set (match_operand:DI 0 "register_operand" "")
5965         (xor:DI (match_operand:DI 1 "register_operand" "")
5966                 (match_operand:DI 2 "register_operand" "")))]
5967   ""
5968   "
5969 {
5970 }")
5971
5972 (define_insn ""
5973   [(set (match_operand:DI 0 "register_operand" "=r")
5974         (xor:DI (match_operand:DI 1 "register_operand" "%r")
5975                 (match_operand:DI 2 "register_operand" "r")))]
5976   "!TARGET_64BIT"
5977   "xor %1,%2,%0\;xor %R1,%R2,%R0"
5978   [(set_attr "type" "binary")
5979    (set_attr "length" "8")])
5980
5981 (define_insn ""
5982   [(set (match_operand:DI 0 "register_operand" "=r")
5983         (xor:DI (match_operand:DI 1 "register_operand" "%r")
5984                 (match_operand:DI 2 "register_operand" "r")))]
5985   "TARGET_64BIT"
5986   "xor %1,%2,%0"
5987   [(set_attr "type" "binary")
5988    (set_attr "length" "4")])
5989
5990 (define_insn "xorsi3"
5991   [(set (match_operand:SI 0 "register_operand" "=r")
5992         (xor:SI (match_operand:SI 1 "register_operand" "%r")
5993                 (match_operand:SI 2 "register_operand" "r")))]
5994   ""
5995   "xor %1,%2,%0"
5996   [(set_attr "type" "binary")
5997    (set_attr "length" "4")])
5998
5999 (define_expand "negdi2"
6000   [(set (match_operand:DI 0 "register_operand" "")
6001         (neg:DI (match_operand:DI 1 "register_operand" "")))]
6002   ""
6003   "")
6004
6005 (define_insn ""
6006   [(set (match_operand:DI 0 "register_operand" "=r")
6007         (neg:DI (match_operand:DI 1 "register_operand" "r")))]
6008   "!TARGET_64BIT"
6009   "sub %%r0,%R1,%R0\;{subb|sub,b} %%r0,%1,%0"
6010   [(set_attr "type" "unary")
6011    (set_attr "length" "8")])
6012
6013 (define_insn ""
6014   [(set (match_operand:DI 0 "register_operand" "=r")
6015         (neg:DI (match_operand:DI 1 "register_operand" "r")))]
6016   "TARGET_64BIT"
6017   "sub %%r0,%1,%0"
6018   [(set_attr "type" "unary")
6019    (set_attr "length" "4")])
6020
6021 (define_insn "negsi2"
6022   [(set (match_operand:SI 0 "register_operand" "=r")
6023         (neg:SI (match_operand:SI 1 "register_operand" "r")))]
6024   ""
6025   "sub %%r0,%1,%0"
6026   [(set_attr "type" "unary")
6027    (set_attr "length" "4")])
6028
6029 (define_expand "one_cmpldi2"
6030   [(set (match_operand:DI 0 "register_operand" "")
6031         (not:DI (match_operand:DI 1 "register_operand" "")))]
6032   ""
6033   "
6034 {
6035 }")
6036
6037 (define_insn ""
6038   [(set (match_operand:DI 0 "register_operand" "=r")
6039         (not:DI (match_operand:DI 1 "register_operand" "r")))]
6040   "!TARGET_64BIT"
6041   "uaddcm %%r0,%1,%0\;uaddcm %%r0,%R1,%R0"
6042   [(set_attr "type" "unary")
6043    (set_attr "length" "8")])
6044
6045 (define_insn ""
6046   [(set (match_operand:DI 0 "register_operand" "=r")
6047         (not:DI (match_operand:DI 1 "register_operand" "r")))]
6048   "TARGET_64BIT"
6049   "uaddcm %%r0,%1,%0"
6050   [(set_attr "type" "unary")
6051    (set_attr "length" "4")])
6052
6053 (define_insn "one_cmplsi2"
6054   [(set (match_operand:SI 0 "register_operand" "=r")
6055         (not:SI (match_operand:SI 1 "register_operand" "r")))]
6056   ""
6057   "uaddcm %%r0,%1,%0"
6058   [(set_attr "type" "unary")
6059    (set_attr "length" "4")])
6060 \f
6061 ;; Floating point arithmetic instructions.
6062
6063 (define_insn "adddf3"
6064   [(set (match_operand:DF 0 "register_operand" "=f")
6065         (plus:DF (match_operand:DF 1 "register_operand" "f")
6066                  (match_operand:DF 2 "register_operand" "f")))]
6067   "! TARGET_SOFT_FLOAT"
6068   "fadd,dbl %1,%2,%0"
6069   [(set_attr "type" "fpalu")
6070    (set_attr "pa_combine_type" "faddsub")
6071    (set_attr "length" "4")])
6072
6073 (define_insn "addsf3"
6074   [(set (match_operand:SF 0 "register_operand" "=f")
6075         (plus:SF (match_operand:SF 1 "register_operand" "f")
6076                  (match_operand:SF 2 "register_operand" "f")))]
6077   "! TARGET_SOFT_FLOAT"
6078   "fadd,sgl %1,%2,%0"
6079   [(set_attr "type" "fpalu")
6080    (set_attr "pa_combine_type" "faddsub")
6081    (set_attr "length" "4")])
6082
6083 (define_insn "subdf3"
6084   [(set (match_operand:DF 0 "register_operand" "=f")
6085         (minus:DF (match_operand:DF 1 "register_operand" "f")
6086                   (match_operand:DF 2 "register_operand" "f")))]
6087   "! TARGET_SOFT_FLOAT"
6088   "fsub,dbl %1,%2,%0"
6089   [(set_attr "type" "fpalu")
6090    (set_attr "pa_combine_type" "faddsub")
6091    (set_attr "length" "4")])
6092
6093 (define_insn "subsf3"
6094   [(set (match_operand:SF 0 "register_operand" "=f")
6095         (minus:SF (match_operand:SF 1 "register_operand" "f")
6096                   (match_operand:SF 2 "register_operand" "f")))]
6097   "! TARGET_SOFT_FLOAT"
6098   "fsub,sgl %1,%2,%0"
6099   [(set_attr "type" "fpalu")
6100    (set_attr "pa_combine_type" "faddsub")
6101    (set_attr "length" "4")])
6102
6103 (define_insn "muldf3"
6104   [(set (match_operand:DF 0 "register_operand" "=f")
6105         (mult:DF (match_operand:DF 1 "register_operand" "f")
6106                  (match_operand:DF 2 "register_operand" "f")))]
6107   "! TARGET_SOFT_FLOAT"
6108   "fmpy,dbl %1,%2,%0"
6109   [(set_attr "type" "fpmuldbl")
6110    (set_attr "pa_combine_type" "fmpy")
6111    (set_attr "length" "4")])
6112
6113 (define_insn "mulsf3"
6114   [(set (match_operand:SF 0 "register_operand" "=f")
6115         (mult:SF (match_operand:SF 1 "register_operand" "f")
6116                  (match_operand:SF 2 "register_operand" "f")))]
6117   "! TARGET_SOFT_FLOAT"
6118   "fmpy,sgl %1,%2,%0"
6119   [(set_attr "type" "fpmulsgl")
6120    (set_attr "pa_combine_type" "fmpy")
6121    (set_attr "length" "4")])
6122
6123 (define_insn "divdf3"
6124   [(set (match_operand:DF 0 "register_operand" "=f")
6125         (div:DF (match_operand:DF 1 "register_operand" "f")
6126                 (match_operand:DF 2 "register_operand" "f")))]
6127   "! TARGET_SOFT_FLOAT"
6128   "fdiv,dbl %1,%2,%0"
6129   [(set_attr "type" "fpdivdbl")
6130    (set_attr "length" "4")])
6131
6132 (define_insn "divsf3"
6133   [(set (match_operand:SF 0 "register_operand" "=f")
6134         (div:SF (match_operand:SF 1 "register_operand" "f")
6135                 (match_operand:SF 2 "register_operand" "f")))]
6136   "! TARGET_SOFT_FLOAT"
6137   "fdiv,sgl %1,%2,%0"
6138   [(set_attr "type" "fpdivsgl")
6139    (set_attr "length" "4")])
6140
6141 ;; Processors prior to PA 2.0 don't have a fneg instruction.  Fast
6142 ;; negation can be done by subtracting from plus zero.  However, this
6143 ;; violates the IEEE standard when negating plus and minus zero.
6144 (define_expand "negdf2"
6145   [(parallel [(set (match_operand:DF 0 "register_operand" "")
6146                    (neg:DF (match_operand:DF 1 "register_operand" "")))
6147               (use (match_dup 2))])]
6148   "! TARGET_SOFT_FLOAT"
6149 {
6150   if (TARGET_PA_20 || flag_unsafe_math_optimizations)
6151     emit_insn (gen_negdf2_fast (operands[0], operands[1]));
6152   else
6153     {
6154       operands[2] = force_reg (DFmode,
6155         CONST_DOUBLE_FROM_REAL_VALUE (dconstm1, DFmode));
6156       emit_insn (gen_muldf3 (operands[0], operands[1], operands[2]));
6157     }
6158   DONE;
6159 })
6160
6161 (define_insn "negdf2_fast"
6162   [(set (match_operand:DF 0 "register_operand" "=f")
6163         (neg:DF (match_operand:DF 1 "register_operand" "f")))]
6164   "! TARGET_SOFT_FLOAT && (TARGET_PA_20 || flag_unsafe_math_optimizations)"
6165   "*
6166 {
6167   if (TARGET_PA_20)
6168     return \"fneg,dbl %1,%0\";
6169   else
6170     return \"fsub,dbl %%fr0,%1,%0\";
6171 }"
6172   [(set_attr "type" "fpalu")
6173    (set_attr "length" "4")])
6174
6175 (define_expand "negsf2"
6176   [(parallel [(set (match_operand:SF 0 "register_operand" "")
6177                    (neg:SF (match_operand:SF 1 "register_operand" "")))
6178               (use (match_dup 2))])]
6179   "! TARGET_SOFT_FLOAT"
6180 {
6181   if (TARGET_PA_20 || flag_unsafe_math_optimizations)
6182     emit_insn (gen_negsf2_fast (operands[0], operands[1]));
6183   else
6184     {
6185       operands[2] = force_reg (SFmode,
6186         CONST_DOUBLE_FROM_REAL_VALUE (dconstm1, SFmode));
6187       emit_insn (gen_mulsf3 (operands[0], operands[1], operands[2]));
6188     }
6189   DONE;
6190 })
6191
6192 (define_insn "negsf2_fast"
6193   [(set (match_operand:SF 0 "register_operand" "=f")
6194         (neg:SF (match_operand:SF 1 "register_operand" "f")))]
6195   "! TARGET_SOFT_FLOAT && (TARGET_PA_20 || flag_unsafe_math_optimizations)"
6196   "*
6197 {
6198   if (TARGET_PA_20)
6199     return \"fneg,sgl %1,%0\";
6200   else
6201     return \"fsub,sgl %%fr0,%1,%0\";
6202 }"
6203   [(set_attr "type" "fpalu")
6204    (set_attr "length" "4")])
6205
6206 (define_insn "absdf2"
6207   [(set (match_operand:DF 0 "register_operand" "=f")
6208         (abs:DF (match_operand:DF 1 "register_operand" "f")))]
6209   "! TARGET_SOFT_FLOAT"
6210   "fabs,dbl %1,%0"
6211   [(set_attr "type" "fpalu")
6212    (set_attr "length" "4")])
6213
6214 (define_insn "abssf2"
6215   [(set (match_operand:SF 0 "register_operand" "=f")
6216         (abs:SF (match_operand:SF 1 "register_operand" "f")))]
6217   "! TARGET_SOFT_FLOAT"
6218   "fabs,sgl %1,%0"
6219   [(set_attr "type" "fpalu")
6220    (set_attr "length" "4")])
6221
6222 (define_insn "sqrtdf2"
6223   [(set (match_operand:DF 0 "register_operand" "=f")
6224         (sqrt:DF (match_operand:DF 1 "register_operand" "f")))]
6225   "! TARGET_SOFT_FLOAT"
6226   "fsqrt,dbl %1,%0"
6227   [(set_attr "type" "fpsqrtdbl")
6228    (set_attr "length" "4")])
6229
6230 (define_insn "sqrtsf2"
6231   [(set (match_operand:SF 0 "register_operand" "=f")
6232         (sqrt:SF (match_operand:SF 1 "register_operand" "f")))]
6233   "! TARGET_SOFT_FLOAT"
6234   "fsqrt,sgl %1,%0"
6235   [(set_attr "type" "fpsqrtsgl")
6236    (set_attr "length" "4")])
6237
6238 ;; PA 2.0 floating point instructions
6239
6240 ; fmpyfadd patterns
6241 (define_insn ""
6242   [(set (match_operand:DF 0 "register_operand" "=f")
6243         (plus:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
6244                           (match_operand:DF 2 "register_operand" "f"))
6245                  (match_operand:DF 3 "register_operand" "f")))]
6246   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6247   "fmpyfadd,dbl %1,%2,%3,%0"
6248   [(set_attr "type" "fpmuldbl")
6249    (set_attr "length" "4")])
6250
6251 (define_insn ""
6252   [(set (match_operand:DF 0 "register_operand" "=f")
6253         (plus:DF (match_operand:DF 1 "register_operand" "f")
6254                  (mult:DF (match_operand:DF 2 "register_operand" "f")
6255                           (match_operand:DF 3 "register_operand" "f"))))]
6256   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6257   "fmpyfadd,dbl %2,%3,%1,%0"
6258   [(set_attr "type" "fpmuldbl")
6259    (set_attr "length" "4")])
6260
6261 (define_insn ""
6262   [(set (match_operand:SF 0 "register_operand" "=f")
6263         (plus:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
6264                           (match_operand:SF 2 "register_operand" "f"))
6265                  (match_operand:SF 3 "register_operand" "f")))]
6266   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6267   "fmpyfadd,sgl %1,%2,%3,%0"
6268   [(set_attr "type" "fpmulsgl")
6269    (set_attr "length" "4")])
6270
6271 (define_insn ""
6272   [(set (match_operand:SF 0 "register_operand" "=f")
6273         (plus:SF (match_operand:SF 1 "register_operand" "f")
6274                  (mult:SF (match_operand:SF 2 "register_operand" "f")
6275                           (match_operand:SF 3 "register_operand" "f"))))]
6276   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6277   "fmpyfadd,sgl %2,%3,%1,%0"
6278   [(set_attr "type" "fpmulsgl")
6279    (set_attr "length" "4")])
6280
6281 ; fmpynfadd patterns
6282 (define_insn ""
6283   [(set (match_operand:DF 0 "register_operand" "=f")
6284         (minus:DF (match_operand:DF 1 "register_operand" "f")
6285                   (mult:DF (match_operand:DF 2 "register_operand" "f")
6286                            (match_operand:DF 3 "register_operand" "f"))))]
6287   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6288   "fmpynfadd,dbl %2,%3,%1,%0"
6289   [(set_attr "type" "fpmuldbl")
6290    (set_attr "length" "4")])
6291
6292 (define_insn ""
6293   [(set (match_operand:SF 0 "register_operand" "=f")
6294         (minus:SF (match_operand:SF 1 "register_operand" "f")
6295                   (mult:SF (match_operand:SF 2 "register_operand" "f")
6296                            (match_operand:SF 3 "register_operand" "f"))))]
6297   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6298   "fmpynfadd,sgl %2,%3,%1,%0"
6299   [(set_attr "type" "fpmulsgl")
6300    (set_attr "length" "4")])
6301
6302 ; fnegabs patterns
6303 (define_insn ""
6304   [(set (match_operand:DF 0 "register_operand" "=f")
6305         (neg:DF (abs:DF (match_operand:DF 1 "register_operand" "f"))))]
6306   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6307   "fnegabs,dbl %1,%0"
6308   [(set_attr "type" "fpalu")
6309    (set_attr "length" "4")])
6310
6311 (define_insn ""
6312   [(set (match_operand:SF 0 "register_operand" "=f")
6313         (neg:SF (abs:SF (match_operand:SF 1 "register_operand" "f"))))]
6314   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6315   "fnegabs,sgl %1,%0"
6316   [(set_attr "type" "fpalu")
6317    (set_attr "length" "4")])
6318
6319 ;; Generating a fused multiply sequence is a win for this case as it will
6320 ;; reduce the latency for the fused case without impacting the plain
6321 ;; multiply case.
6322 ;;
6323 ;; Similar possibilities exist for fnegabs, shadd and other insns which
6324 ;; perform two operations with the result of the first feeding the second.
6325 (define_insn ""
6326   [(set (match_operand:DF 0 "register_operand" "=f")
6327         (plus:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
6328                           (match_operand:DF 2 "register_operand" "f"))
6329                  (match_operand:DF 3 "register_operand" "f")))
6330    (set (match_operand:DF 4 "register_operand" "=&f")
6331         (mult:DF (match_dup 1) (match_dup 2)))]
6332   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6333     && ! (reg_overlap_mentioned_p (operands[4], operands[1])
6334           || reg_overlap_mentioned_p (operands[4], operands[2])))"
6335   "#"
6336   [(set_attr "type" "fpmuldbl")
6337    (set_attr "length" "8")])
6338
6339 ;; We want to split this up during scheduling since we want both insns
6340 ;; to schedule independently.
6341 (define_split
6342   [(set (match_operand:DF 0 "register_operand" "")
6343         (plus:DF (mult:DF (match_operand:DF 1 "register_operand" "")
6344                           (match_operand:DF 2 "register_operand" ""))
6345                  (match_operand:DF 3 "register_operand" "")))
6346    (set (match_operand:DF 4 "register_operand" "")
6347         (mult:DF (match_dup 1) (match_dup 2)))]
6348   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6349   [(set (match_dup 4) (mult:DF (match_dup 1) (match_dup 2)))
6350    (set (match_dup 0) (plus:DF (mult:DF (match_dup 1) (match_dup 2))
6351                                (match_dup 3)))]
6352   "")
6353
6354 (define_insn ""
6355   [(set (match_operand:SF 0 "register_operand" "=f")
6356         (plus:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
6357                           (match_operand:SF 2 "register_operand" "f"))
6358                  (match_operand:SF 3 "register_operand" "f")))
6359    (set (match_operand:SF 4 "register_operand" "=&f")
6360         (mult:SF (match_dup 1) (match_dup 2)))]
6361   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6362     && ! (reg_overlap_mentioned_p (operands[4], operands[1])
6363           || reg_overlap_mentioned_p (operands[4], operands[2])))"
6364   "#"
6365   [(set_attr "type" "fpmuldbl")
6366    (set_attr "length" "8")])
6367
6368 ;; We want to split this up during scheduling since we want both insns
6369 ;; to schedule independently.
6370 (define_split
6371   [(set (match_operand:SF 0 "register_operand" "")
6372         (plus:SF (mult:SF (match_operand:SF 1 "register_operand" "")
6373                           (match_operand:SF 2 "register_operand" ""))
6374                  (match_operand:SF 3 "register_operand" "")))
6375    (set (match_operand:SF 4 "register_operand" "")
6376         (mult:SF (match_dup 1) (match_dup 2)))]
6377   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6378   [(set (match_dup 4) (mult:SF (match_dup 1) (match_dup 2)))
6379    (set (match_dup 0) (plus:SF (mult:SF (match_dup 1) (match_dup 2))
6380                                (match_dup 3)))]
6381   "")
6382
6383 ;; Negating a multiply can be faked by adding zero in a fused multiply-add
6384 ;; instruction.
6385 (define_insn ""
6386   [(set (match_operand:DF 0 "register_operand" "=f")
6387         (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
6388                          (match_operand:DF 2 "register_operand" "f"))))]
6389   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6390   "fmpynfadd,dbl %1,%2,%%fr0,%0"
6391   [(set_attr "type" "fpmuldbl")
6392    (set_attr "length" "4")])
6393
6394 (define_insn ""
6395   [(set (match_operand:SF 0 "register_operand" "=f")
6396         (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
6397                          (match_operand:SF 2 "register_operand" "f"))))]
6398   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6399   "fmpynfadd,sgl %1,%2,%%fr0,%0"
6400   [(set_attr "type" "fpmuldbl")
6401    (set_attr "length" "4")])
6402
6403 (define_insn ""
6404   [(set (match_operand:DF 0 "register_operand" "=f")
6405         (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
6406                          (match_operand:DF 2 "register_operand" "f"))))
6407    (set (match_operand:DF 3 "register_operand" "=&f")
6408         (mult:DF (match_dup 1) (match_dup 2)))]
6409   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6410     && ! (reg_overlap_mentioned_p (operands[3], operands[1])
6411           || reg_overlap_mentioned_p (operands[3], operands[2])))"
6412   "#"
6413   [(set_attr "type" "fpmuldbl")
6414    (set_attr "length" "8")])
6415
6416 (define_split
6417   [(set (match_operand:DF 0 "register_operand" "")
6418         (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "")
6419                          (match_operand:DF 2 "register_operand" ""))))
6420    (set (match_operand:DF 3 "register_operand" "")
6421         (mult:DF (match_dup 1) (match_dup 2)))]
6422   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6423   [(set (match_dup 3) (mult:DF (match_dup 1) (match_dup 2)))
6424    (set (match_dup 0) (neg:DF (mult:DF (match_dup 1) (match_dup 2))))]
6425   "")
6426
6427 (define_insn ""
6428   [(set (match_operand:SF 0 "register_operand" "=f")
6429         (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
6430                          (match_operand:SF 2 "register_operand" "f"))))
6431    (set (match_operand:SF 3 "register_operand" "=&f")
6432         (mult:SF (match_dup 1) (match_dup 2)))]
6433   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6434     && ! (reg_overlap_mentioned_p (operands[3], operands[1])
6435           || reg_overlap_mentioned_p (operands[3], operands[2])))"
6436   "#"
6437   [(set_attr "type" "fpmuldbl")
6438    (set_attr "length" "8")])
6439
6440 (define_split
6441   [(set (match_operand:SF 0 "register_operand" "")
6442         (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "")
6443                          (match_operand:SF 2 "register_operand" ""))))
6444    (set (match_operand:SF 3 "register_operand" "")
6445         (mult:SF (match_dup 1) (match_dup 2)))]
6446   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6447   [(set (match_dup 3) (mult:SF (match_dup 1) (match_dup 2)))
6448    (set (match_dup 0) (neg:SF (mult:SF (match_dup 1) (match_dup 2))))]
6449   "")
6450
6451 ;; Now fused multiplies with the result of the multiply negated.
6452 (define_insn ""
6453   [(set (match_operand:DF 0 "register_operand" "=f")
6454         (plus:DF (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
6455                                   (match_operand:DF 2 "register_operand" "f")))
6456                  (match_operand:DF 3 "register_operand" "f")))]
6457   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6458   "fmpynfadd,dbl %1,%2,%3,%0"
6459   [(set_attr "type" "fpmuldbl")
6460    (set_attr "length" "4")])
6461
6462 (define_insn ""
6463   [(set (match_operand:SF 0 "register_operand" "=f")
6464         (plus:SF (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
6465                          (match_operand:SF 2 "register_operand" "f")))
6466                  (match_operand:SF 3 "register_operand" "f")))]
6467   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6468   "fmpynfadd,sgl %1,%2,%3,%0"
6469   [(set_attr "type" "fpmuldbl")
6470    (set_attr "length" "4")])
6471
6472 (define_insn ""
6473   [(set (match_operand:DF 0 "register_operand" "=f")
6474         (plus:DF (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
6475                                   (match_operand:DF 2 "register_operand" "f")))
6476                  (match_operand:DF 3 "register_operand" "f")))
6477    (set (match_operand:DF 4 "register_operand" "=&f")
6478         (mult:DF (match_dup 1) (match_dup 2)))]
6479   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6480     && ! (reg_overlap_mentioned_p (operands[4], operands[1])
6481           || reg_overlap_mentioned_p (operands[4], operands[2])))"
6482   "#"
6483   [(set_attr "type" "fpmuldbl")
6484    (set_attr "length" "8")])
6485
6486 (define_split
6487   [(set (match_operand:DF 0 "register_operand" "")
6488         (plus:DF (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "")
6489                                   (match_operand:DF 2 "register_operand" "")))
6490                  (match_operand:DF 3 "register_operand" "")))
6491    (set (match_operand:DF 4 "register_operand" "")
6492         (mult:DF (match_dup 1) (match_dup 2)))]
6493   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6494   [(set (match_dup 4) (mult:DF (match_dup 1) (match_dup 2)))
6495    (set (match_dup 0) (plus:DF (neg:DF (mult:DF (match_dup 1) (match_dup 2)))
6496                                (match_dup 3)))]
6497   "")
6498
6499 (define_insn ""
6500   [(set (match_operand:SF 0 "register_operand" "=f")
6501         (plus:SF (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
6502                                   (match_operand:SF 2 "register_operand" "f")))
6503                  (match_operand:SF 3 "register_operand" "f")))
6504    (set (match_operand:SF 4 "register_operand" "=&f")
6505         (mult:SF (match_dup 1) (match_dup 2)))]
6506   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6507     && ! (reg_overlap_mentioned_p (operands[4], operands[1])
6508           || reg_overlap_mentioned_p (operands[4], operands[2])))"
6509   "#"
6510   [(set_attr "type" "fpmuldbl")
6511    (set_attr "length" "8")])
6512
6513 (define_split
6514   [(set (match_operand:SF 0 "register_operand" "")
6515         (plus:SF (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "")
6516                                   (match_operand:SF 2 "register_operand" "")))
6517                  (match_operand:SF 3 "register_operand" "")))
6518    (set (match_operand:SF 4 "register_operand" "")
6519         (mult:SF (match_dup 1) (match_dup 2)))]
6520   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6521   [(set (match_dup 4) (mult:SF (match_dup 1) (match_dup 2)))
6522    (set (match_dup 0) (plus:SF (neg:SF (mult:SF (match_dup 1) (match_dup 2)))
6523                                (match_dup 3)))]
6524   "")
6525
6526 (define_insn ""
6527   [(set (match_operand:DF 0 "register_operand" "=f")
6528         (minus:DF (match_operand:DF 3 "register_operand" "f")
6529                   (mult:DF (match_operand:DF 1 "register_operand" "f")
6530                            (match_operand:DF 2 "register_operand" "f"))))
6531    (set (match_operand:DF 4 "register_operand" "=&f")
6532         (mult:DF (match_dup 1) (match_dup 2)))]
6533   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6534     && ! (reg_overlap_mentioned_p (operands[4], operands[1])
6535           || reg_overlap_mentioned_p (operands[4], operands[2])))"
6536   "#"
6537   [(set_attr "type" "fpmuldbl")
6538    (set_attr "length" "8")])
6539
6540 (define_split
6541   [(set (match_operand:DF 0 "register_operand" "")
6542         (minus:DF (match_operand:DF 3 "register_operand" "")
6543                   (mult:DF (match_operand:DF 1 "register_operand" "")
6544                            (match_operand:DF 2 "register_operand" ""))))
6545    (set (match_operand:DF 4 "register_operand" "")
6546         (mult:DF (match_dup 1) (match_dup 2)))]
6547   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6548   [(set (match_dup 4) (mult:DF (match_dup 1) (match_dup 2)))
6549    (set (match_dup 0) (minus:DF (match_dup 3)
6550                                 (mult:DF (match_dup 1) (match_dup 2))))]
6551   "")
6552
6553 (define_insn ""
6554   [(set (match_operand:SF 0 "register_operand" "=f")
6555         (minus:SF (match_operand:SF 3 "register_operand" "f")
6556                   (mult:SF (match_operand:SF 1 "register_operand" "f")
6557                            (match_operand:SF 2 "register_operand" "f"))))
6558    (set (match_operand:SF 4 "register_operand" "=&f")
6559         (mult:SF (match_dup 1) (match_dup 2)))]
6560   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6561     && ! (reg_overlap_mentioned_p (operands[4], operands[1])
6562           || reg_overlap_mentioned_p (operands[4], operands[2])))"
6563   "#"
6564   [(set_attr "type" "fpmuldbl")
6565    (set_attr "length" "8")])
6566
6567 (define_split
6568   [(set (match_operand:SF 0 "register_operand" "")
6569         (minus:SF (match_operand:SF 3 "register_operand" "")
6570                   (mult:SF (match_operand:SF 1 "register_operand" "")
6571                            (match_operand:SF 2 "register_operand" ""))))
6572    (set (match_operand:SF 4 "register_operand" "")
6573         (mult:SF (match_dup 1) (match_dup 2)))]
6574   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6575   [(set (match_dup 4) (mult:SF (match_dup 1) (match_dup 2)))
6576    (set (match_dup 0) (minus:SF (match_dup 3)
6577                                 (mult:SF (match_dup 1) (match_dup 2))))]
6578   "")
6579
6580 (define_insn ""
6581   [(set (match_operand:DF 0 "register_operand" "=f")
6582         (neg:DF (abs:DF (match_operand:DF 1 "register_operand" "f"))))
6583    (set (match_operand:DF 2 "register_operand" "=&f") (abs:DF (match_dup 1)))]
6584   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6585     && ! reg_overlap_mentioned_p (operands[2], operands[1]))"
6586   "#"
6587   [(set_attr "type" "fpalu")
6588    (set_attr "length" "8")])
6589
6590 (define_split
6591   [(set (match_operand:DF 0 "register_operand" "")
6592         (neg:DF (abs:DF (match_operand:DF 1 "register_operand" ""))))
6593    (set (match_operand:DF 2 "register_operand" "") (abs:DF (match_dup 1)))]
6594   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6595   [(set (match_dup 2) (abs:DF (match_dup 1)))
6596    (set (match_dup 0) (neg:DF (abs:DF (match_dup 1))))]
6597   "")
6598
6599 (define_insn ""
6600   [(set (match_operand:SF 0 "register_operand" "=f")
6601         (neg:SF (abs:SF (match_operand:SF 1 "register_operand" "f"))))
6602    (set (match_operand:SF 2 "register_operand" "=&f") (abs:SF (match_dup 1)))]
6603   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6604     && ! reg_overlap_mentioned_p (operands[2], operands[1]))"
6605   "#"
6606   [(set_attr "type" "fpalu")
6607    (set_attr "length" "8")])
6608
6609 (define_split
6610   [(set (match_operand:SF 0 "register_operand" "")
6611         (neg:SF (abs:SF (match_operand:SF 1 "register_operand" ""))))
6612    (set (match_operand:SF 2 "register_operand" "") (abs:SF (match_dup 1)))]
6613   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6614   [(set (match_dup 2) (abs:SF (match_dup 1)))
6615    (set (match_dup 0) (neg:SF (abs:SF (match_dup 1))))]
6616   "")
6617 \f
6618 ;;- Shift instructions
6619
6620 ;; Optimized special case of shifting.
6621
6622 (define_insn ""
6623   [(set (match_operand:SI 0 "register_operand" "=r")
6624         (lshiftrt:SI (match_operand:SI 1 "memory_operand" "m")
6625                      (const_int 24)))]
6626   ""
6627   "ldb%M1 %1,%0"
6628   [(set_attr "type" "load")
6629    (set_attr "length" "4")])
6630
6631 (define_insn ""
6632   [(set (match_operand:SI 0 "register_operand" "=r")
6633         (lshiftrt:SI (match_operand:SI 1 "memory_operand" "m")
6634                      (const_int 16)))]
6635   ""
6636   "ldh%M1 %1,%0"
6637   [(set_attr "type" "load")
6638    (set_attr "length" "4")])
6639
6640 (define_insn ""
6641   [(set (match_operand:SI 0 "register_operand" "=r")
6642         (plus:SI (mult:SI (match_operand:SI 2 "register_operand" "r")
6643                           (match_operand:SI 3 "shadd_operand" ""))
6644                  (match_operand:SI 1 "register_operand" "r")))]
6645   ""
6646   "{sh%O3addl %2,%1,%0|shladd,l %2,%O3,%1,%0} "
6647   [(set_attr "type" "binary")
6648    (set_attr "length" "4")])
6649
6650 (define_insn ""
6651   [(set (match_operand:DI 0 "register_operand" "=r")
6652         (plus:DI (mult:DI (match_operand:DI 2 "register_operand" "r")
6653                           (match_operand:DI 3 "shadd_operand" ""))
6654                  (match_operand:DI 1 "register_operand" "r")))]
6655   "TARGET_64BIT"
6656   "shladd,l %2,%O3,%1,%0"
6657   [(set_attr "type" "binary")
6658    (set_attr "length" "4")])
6659
6660 (define_expand "ashlsi3"
6661   [(set (match_operand:SI 0 "register_operand" "")
6662         (ashift:SI (match_operand:SI 1 "lhs_lshift_operand" "")
6663                    (match_operand:SI 2 "arith32_operand" "")))]
6664   ""
6665   "
6666 {
6667   if (GET_CODE (operands[2]) != CONST_INT)
6668     {
6669       rtx temp = gen_reg_rtx (SImode);
6670       emit_insn (gen_subsi3 (temp, GEN_INT (31), operands[2]));
6671       if (GET_CODE (operands[1]) == CONST_INT)
6672         emit_insn (gen_zvdep_imm32 (operands[0], operands[1], temp));
6673       else
6674         emit_insn (gen_zvdep32 (operands[0], operands[1], temp));
6675       DONE;
6676     }
6677   /* Make sure both inputs are not constants,
6678      there are no patterns for that.  */
6679   operands[1] = force_reg (SImode, operands[1]);
6680 }")
6681
6682 (define_insn ""
6683   [(set (match_operand:SI 0 "register_operand" "=r")
6684         (ashift:SI (match_operand:SI 1 "register_operand" "r")
6685                    (match_operand:SI 2 "const_int_operand" "n")))]
6686   ""
6687   "{zdep|depw,z} %1,%P2,%L2,%0"
6688   [(set_attr "type" "shift")
6689    (set_attr "length" "4")])
6690
6691 ; Match cases of op1 a CONST_INT here that zvdep_imm32 doesn't handle.
6692 ; Doing it like this makes slightly better code since reload can
6693 ; replace a register with a known value in range -16..15 with a
6694 ; constant.  Ideally, we would like to merge zvdep32 and zvdep_imm32,
6695 ; but since we have no more CONST_OK... characters, that is not
6696 ; possible.
6697 (define_insn "zvdep32"
6698   [(set (match_operand:SI 0 "register_operand" "=r,r")
6699         (ashift:SI (match_operand:SI 1 "arith5_operand" "r,L")
6700                    (minus:SI (const_int 31)
6701                              (match_operand:SI 2 "register_operand" "q,q"))))]
6702   ""
6703   "@
6704    {zvdep %1,32,%0|depw,z %1,%%sar,32,%0}
6705    {zvdepi %1,32,%0|depwi,z %1,%%sar,32,%0}"
6706   [(set_attr "type" "shift,shift")
6707    (set_attr "length" "4,4")])
6708
6709 (define_insn "zvdep_imm32"
6710   [(set (match_operand:SI 0 "register_operand" "=r")
6711         (ashift:SI (match_operand:SI 1 "lhs_lshift_cint_operand" "")
6712                    (minus:SI (const_int 31)
6713                              (match_operand:SI 2 "register_operand" "q"))))]
6714   ""
6715   "*
6716 {
6717   int x = INTVAL (operands[1]);
6718   operands[2] = GEN_INT (4 + exact_log2 ((x >> 4) + 1));
6719   operands[1] = GEN_INT ((x & 0xf) - 0x10);
6720   return \"{zvdepi %1,%2,%0|depwi,z %1,%%sar,%2,%0}\";
6721 }"
6722   [(set_attr "type" "shift")
6723    (set_attr "length" "4")])
6724
6725 (define_insn "vdepi_ior"
6726   [(set (match_operand:SI 0 "register_operand" "=r")
6727         (ior:SI (ashift:SI (match_operand:SI 1 "const_int_operand" "")
6728                            (minus:SI (const_int 31)
6729                                      (match_operand:SI 2 "register_operand" "q")))
6730                 (match_operand:SI 3 "register_operand" "0")))]
6731   ; accept ...0001...1, can this be generalized?
6732   "exact_log2 (INTVAL (operands[1]) + 1) >= 0"
6733   "*
6734 {
6735   int x = INTVAL (operands[1]);
6736   operands[2] = GEN_INT (exact_log2 (x + 1));
6737   return \"{vdepi -1,%2,%0|depwi -1,%%sar,%2,%0}\";
6738 }"
6739   [(set_attr "type" "shift")
6740    (set_attr "length" "4")])
6741
6742 (define_insn "vdepi_and"
6743   [(set (match_operand:SI 0 "register_operand" "=r")
6744         (and:SI (rotate:SI (match_operand:SI 1 "const_int_operand" "")
6745                            (minus:SI (const_int 31)
6746                                      (match_operand:SI 2 "register_operand" "q")))
6747                 (match_operand:SI 3 "register_operand" "0")))]
6748   ; this can be generalized...!
6749   "INTVAL (operands[1]) == -2"
6750   "*
6751 {
6752   int x = INTVAL (operands[1]);
6753   operands[2] = GEN_INT (exact_log2 ((~x) + 1));
6754   return \"{vdepi 0,%2,%0|depwi 0,%%sar,%2,%0}\";
6755 }"
6756   [(set_attr "type" "shift")
6757    (set_attr "length" "4")])
6758
6759 (define_expand "ashldi3"
6760   [(set (match_operand:DI 0 "register_operand" "")
6761         (ashift:DI (match_operand:DI 1 "lhs_lshift_operand" "")
6762                    (match_operand:DI 2 "arith32_operand" "")))]
6763   "TARGET_64BIT"
6764   "
6765 {
6766   if (GET_CODE (operands[2]) != CONST_INT)
6767     {
6768       rtx temp = gen_reg_rtx (DImode);
6769       emit_insn (gen_subdi3 (temp, GEN_INT (63), operands[2]));
6770       if (GET_CODE (operands[1]) == CONST_INT)
6771         emit_insn (gen_zvdep_imm64 (operands[0], operands[1], temp));
6772       else
6773         emit_insn (gen_zvdep64 (operands[0], operands[1], temp));
6774       DONE;
6775     }
6776   /* Make sure both inputs are not constants,
6777      there are no patterns for that.  */
6778   operands[1] = force_reg (DImode, operands[1]);
6779 }")
6780
6781 (define_insn ""
6782   [(set (match_operand:DI 0 "register_operand" "=r")
6783         (ashift:DI (match_operand:DI 1 "register_operand" "r")
6784                    (match_operand:DI 2 "const_int_operand" "n")))]
6785   "TARGET_64BIT"
6786   "depd,z %1,%p2,%Q2,%0"
6787   [(set_attr "type" "shift")
6788    (set_attr "length" "4")])
6789
6790 ; Match cases of op1 a CONST_INT here that zvdep_imm64 doesn't handle.
6791 ; Doing it like this makes slightly better code since reload can
6792 ; replace a register with a known value in range -16..15 with a
6793 ; constant.  Ideally, we would like to merge zvdep64 and zvdep_imm64,
6794 ; but since we have no more CONST_OK... characters, that is not
6795 ; possible.
6796 (define_insn "zvdep64"
6797   [(set (match_operand:DI 0 "register_operand" "=r,r")
6798         (ashift:DI (match_operand:DI 1 "arith5_operand" "r,L")
6799                    (minus:DI (const_int 63)
6800                              (match_operand:DI 2 "register_operand" "q,q"))))]
6801   "TARGET_64BIT"
6802   "@
6803    depd,z %1,%%sar,64,%0
6804    depdi,z %1,%%sar,64,%0"
6805   [(set_attr "type" "shift,shift")
6806    (set_attr "length" "4,4")])
6807
6808 (define_insn "zvdep_imm64"
6809   [(set (match_operand:DI 0 "register_operand" "=r")
6810         (ashift:DI (match_operand:DI 1 "lhs_lshift_cint_operand" "")
6811                    (minus:DI (const_int 63)
6812                              (match_operand:DI 2 "register_operand" "q"))))]
6813   "TARGET_64BIT"
6814   "*
6815 {
6816   int x = INTVAL (operands[1]);
6817   operands[2] = GEN_INT (4 + exact_log2 ((x >> 4) + 1));
6818   operands[1] = GEN_INT ((x & 0x1f) - 0x20);
6819   return \"depdi,z %1,%%sar,%2,%0\";
6820 }"
6821   [(set_attr "type" "shift")
6822    (set_attr "length" "4")])
6823
6824 (define_insn ""
6825   [(set (match_operand:DI 0 "register_operand" "=r")
6826         (ior:DI (ashift:DI (match_operand:DI 1 "const_int_operand" "")
6827                            (minus:DI (const_int 63)
6828                                      (match_operand:DI 2 "register_operand" "q")))
6829                 (match_operand:DI 3 "register_operand" "0")))]
6830   ; accept ...0001...1, can this be generalized?
6831   "TARGET_64BIT && exact_log2 (INTVAL (operands[1]) + 1) >= 0"
6832   "*
6833 {
6834   int x = INTVAL (operands[1]);
6835   operands[2] = GEN_INT (exact_log2 (x + 1));
6836   return \"depdi -1,%%sar,%2,%0\";
6837 }"
6838   [(set_attr "type" "shift")
6839    (set_attr "length" "4")])
6840
6841 (define_insn ""
6842   [(set (match_operand:DI 0 "register_operand" "=r")
6843         (and:DI (rotate:DI (match_operand:DI 1 "const_int_operand" "")
6844                            (minus:DI (const_int 63)
6845                                      (match_operand:DI 2 "register_operand" "q")))
6846                 (match_operand:DI 3 "register_operand" "0")))]
6847   ; this can be generalized...!
6848   "TARGET_64BIT && INTVAL (operands[1]) == -2"
6849   "*
6850 {
6851   int x = INTVAL (operands[1]);
6852   operands[2] = GEN_INT (exact_log2 ((~x) + 1));
6853   return \"depdi 0,%%sar,%2,%0\";
6854 }"
6855   [(set_attr "type" "shift")
6856    (set_attr "length" "4")])
6857
6858 (define_expand "ashrsi3"
6859   [(set (match_operand:SI 0 "register_operand" "")
6860         (ashiftrt:SI (match_operand:SI 1 "register_operand" "")
6861                      (match_operand:SI 2 "arith32_operand" "")))]
6862   ""
6863   "
6864 {
6865   if (GET_CODE (operands[2]) != CONST_INT)
6866     {
6867       rtx temp = gen_reg_rtx (SImode);
6868       emit_insn (gen_subsi3 (temp, GEN_INT (31), operands[2]));
6869       emit_insn (gen_vextrs32 (operands[0], operands[1], temp));
6870       DONE;
6871     }
6872 }")
6873
6874 (define_insn ""
6875   [(set (match_operand:SI 0 "register_operand" "=r")
6876         (ashiftrt:SI (match_operand:SI 1 "register_operand" "r")
6877                      (match_operand:SI 2 "const_int_operand" "n")))]
6878   ""
6879   "{extrs|extrw,s} %1,%P2,%L2,%0"
6880   [(set_attr "type" "shift")
6881    (set_attr "length" "4")])
6882
6883 (define_insn "vextrs32"
6884   [(set (match_operand:SI 0 "register_operand" "=r")
6885         (ashiftrt:SI (match_operand:SI 1 "register_operand" "r")
6886                      (minus:SI (const_int 31)
6887                                (match_operand:SI 2 "register_operand" "q"))))]
6888   ""
6889   "{vextrs %1,32,%0|extrw,s %1,%%sar,32,%0}"
6890   [(set_attr "type" "shift")
6891    (set_attr "length" "4")])
6892
6893 (define_expand "ashrdi3"
6894   [(set (match_operand:DI 0 "register_operand" "")
6895         (ashiftrt:DI (match_operand:DI 1 "register_operand" "")
6896                      (match_operand:DI 2 "arith32_operand" "")))]
6897   "TARGET_64BIT"
6898   "
6899 {
6900   if (GET_CODE (operands[2]) != CONST_INT)
6901     {
6902       rtx temp = gen_reg_rtx (DImode);
6903       emit_insn (gen_subdi3 (temp, GEN_INT (63), operands[2]));
6904       emit_insn (gen_vextrs64 (operands[0], operands[1], temp));
6905       DONE;
6906     }
6907 }")
6908
6909 (define_insn ""
6910   [(set (match_operand:DI 0 "register_operand" "=r")
6911         (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
6912                      (match_operand:DI 2 "const_int_operand" "n")))]
6913   "TARGET_64BIT"
6914   "extrd,s %1,%p2,%Q2,%0"
6915   [(set_attr "type" "shift")
6916    (set_attr "length" "4")])
6917
6918 (define_insn "vextrs64"
6919   [(set (match_operand:DI 0 "register_operand" "=r")
6920         (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
6921                      (minus:DI (const_int 63)
6922                                (match_operand:DI 2 "register_operand" "q"))))]
6923   "TARGET_64BIT"
6924   "extrd,s %1,%%sar,64,%0"
6925   [(set_attr "type" "shift")
6926    (set_attr "length" "4")])
6927
6928 (define_insn "lshrsi3"
6929   [(set (match_operand:SI 0 "register_operand" "=r,r")
6930         (lshiftrt:SI (match_operand:SI 1 "register_operand" "r,r")
6931                      (match_operand:SI 2 "arith32_operand" "q,n")))]
6932   ""
6933   "@
6934    {vshd %%r0,%1,%0|shrpw %%r0,%1,%%sar,%0}
6935    {extru|extrw,u} %1,%P2,%L2,%0"
6936   [(set_attr "type" "shift")
6937    (set_attr "length" "4")])
6938
6939 (define_insn "lshrdi3"
6940   [(set (match_operand:DI 0 "register_operand" "=r,r")
6941         (lshiftrt:DI (match_operand:DI 1 "register_operand" "r,r")
6942                      (match_operand:DI 2 "arith32_operand" "q,n")))]
6943   "TARGET_64BIT"
6944   "@
6945    shrpd %%r0,%1,%%sar,%0
6946    extrd,u %1,%p2,%Q2,%0"
6947   [(set_attr "type" "shift")
6948    (set_attr "length" "4")])
6949
6950 (define_insn "rotrsi3"
6951   [(set (match_operand:SI 0 "register_operand" "=r,r")
6952         (rotatert:SI (match_operand:SI 1 "register_operand" "r,r")
6953                      (match_operand:SI 2 "arith32_operand" "q,n")))]
6954   ""
6955   "*
6956 {
6957   if (GET_CODE (operands[2]) == CONST_INT)
6958     {
6959       operands[2] = GEN_INT (INTVAL (operands[2]) & 31);
6960       return \"{shd|shrpw} %1,%1,%2,%0\";
6961     }
6962   else
6963     return \"{vshd %1,%1,%0|shrpw %1,%1,%%sar,%0}\";
6964 }"
6965   [(set_attr "type" "shift")
6966    (set_attr "length" "4")])
6967
6968 (define_expand "rotlsi3"
6969   [(set (match_operand:SI 0 "register_operand" "")
6970         (rotate:SI (match_operand:SI 1 "register_operand" "")
6971                    (match_operand:SI 2 "arith32_operand" "")))]
6972   ""
6973   "
6974 {
6975   if (GET_CODE (operands[2]) != CONST_INT)
6976     {
6977       rtx temp = gen_reg_rtx (SImode);
6978       emit_insn (gen_subsi3 (temp, GEN_INT (32), operands[2]));
6979       emit_insn (gen_rotrsi3 (operands[0], operands[1], temp));
6980       DONE;
6981     }
6982   /* Else expand normally.  */
6983 }")
6984
6985 (define_insn ""
6986   [(set (match_operand:SI 0 "register_operand" "=r")
6987         (rotate:SI (match_operand:SI 1 "register_operand" "r")
6988                    (match_operand:SI 2 "const_int_operand" "n")))]
6989   ""
6990   "*
6991 {
6992   operands[2] = GEN_INT ((32 - INTVAL (operands[2])) & 31);
6993   return \"{shd|shrpw} %1,%1,%2,%0\";
6994 }"
6995   [(set_attr "type" "shift")
6996    (set_attr "length" "4")])
6997
6998 (define_insn ""
6999   [(set (match_operand:SI 0 "register_operand" "=r")
7000         (match_operator:SI 5 "plus_xor_ior_operator"
7001           [(ashift:SI (match_operand:SI 1 "register_operand" "r")
7002                       (match_operand:SI 3 "const_int_operand" "n"))
7003            (lshiftrt:SI (match_operand:SI 2 "register_operand" "r")
7004                         (match_operand:SI 4 "const_int_operand" "n"))]))]
7005   "INTVAL (operands[3]) + INTVAL (operands[4]) == 32"
7006   "{shd|shrpw} %1,%2,%4,%0"
7007   [(set_attr "type" "shift")
7008    (set_attr "length" "4")])
7009
7010 (define_insn ""
7011   [(set (match_operand:SI 0 "register_operand" "=r")
7012         (match_operator:SI 5 "plus_xor_ior_operator"
7013           [(lshiftrt:SI (match_operand:SI 2 "register_operand" "r")
7014                         (match_operand:SI 4 "const_int_operand" "n"))
7015            (ashift:SI (match_operand:SI 1 "register_operand" "r")
7016                       (match_operand:SI 3 "const_int_operand" "n"))]))]
7017   "INTVAL (operands[3]) + INTVAL (operands[4]) == 32"
7018   "{shd|shrpw} %1,%2,%4,%0"
7019   [(set_attr "type" "shift")
7020    (set_attr "length" "4")])
7021
7022 (define_insn ""
7023   [(set (match_operand:SI 0 "register_operand" "=r")
7024         (and:SI (ashift:SI (match_operand:SI 1 "register_operand" "r")
7025                            (match_operand:SI 2 "const_int_operand" ""))
7026                 (match_operand:SI 3 "const_int_operand" "")))]
7027   "exact_log2 (1 + (INTVAL (operands[3]) >> (INTVAL (operands[2]) & 31))) >= 0"
7028   "*
7029 {
7030   int cnt = INTVAL (operands[2]) & 31;
7031   operands[3] = GEN_INT (exact_log2 (1 + (INTVAL (operands[3]) >> cnt)));
7032   operands[2] = GEN_INT (31 - cnt);
7033   return \"{zdep|depw,z} %1,%2,%3,%0\";
7034 }"
7035   [(set_attr "type" "shift")
7036    (set_attr "length" "4")])
7037 \f
7038 ;; Unconditional and other jump instructions.
7039
7040 ;; This can only be used in a leaf function, so we do
7041 ;; not need to use the PIC register when generating PIC code.
7042 (define_insn "return"
7043   [(return)
7044    (use (reg:SI 2))
7045    (const_int 0)]
7046   "hppa_can_use_return_insn_p ()"
7047   "*
7048 {
7049   if (TARGET_PA_20)
7050     return \"bve%* (%%r2)\";
7051   return \"bv%* %%r0(%%r2)\";
7052 }"
7053   [(set_attr "type" "branch")
7054    (set_attr "length" "4")])
7055
7056 ;; Emit a different pattern for functions which have non-trivial
7057 ;; epilogues so as not to confuse jump and reorg.
7058 (define_insn "return_internal"
7059   [(return)
7060    (use (reg:SI 2))
7061    (const_int 1)]
7062   ""
7063   "*
7064 {
7065   if (TARGET_PA_20)
7066     return \"bve%* (%%r2)\";
7067   return \"bv%* %%r0(%%r2)\";
7068 }"
7069   [(set_attr "type" "branch")
7070    (set_attr "length" "4")])
7071
7072 ;; This is used for eh returns which bypass the return stub.
7073 (define_insn "return_external_pic"
7074   [(return)
7075    (clobber (reg:SI 1))
7076    (use (reg:SI 2))]
7077   "!TARGET_NO_SPACE_REGS
7078    && !TARGET_PA_20
7079    && flag_pic && current_function_calls_eh_return"
7080   "ldsid (%%sr0,%%r2),%%r1\;mtsp %%r1,%%sr0\;be%* 0(%%sr0,%%r2)"
7081   [(set_attr "type" "branch")
7082    (set_attr "length" "12")])
7083
7084 (define_expand "prologue"
7085   [(const_int 0)]
7086   ""
7087   "hppa_expand_prologue ();DONE;")
7088
7089 (define_expand "sibcall_epilogue"
7090   [(return)]
7091   ""
7092   "
7093 {
7094   hppa_expand_epilogue ();
7095   DONE;
7096 }")
7097
7098 (define_expand "epilogue"
7099   [(return)]
7100   ""
7101   "
7102 {
7103   /* Try to use the trivial return first.  Else use the full
7104      epilogue.  */
7105   if (hppa_can_use_return_insn_p ())
7106     emit_jump_insn (gen_return ());
7107   else
7108     {
7109       rtx x;
7110
7111       hppa_expand_epilogue ();
7112
7113       /* EH returns bypass the normal return stub.  Thus, we must do an
7114          interspace branch to return from functions that call eh_return.
7115          This is only a problem for returns from shared code on ports
7116          using space registers.  */
7117       if (!TARGET_NO_SPACE_REGS
7118           && !TARGET_PA_20
7119           && flag_pic && current_function_calls_eh_return)
7120         x = gen_return_external_pic ();
7121       else
7122         x = gen_return_internal ();
7123
7124       emit_jump_insn (x);
7125     }
7126   DONE;
7127 }")
7128
7129 ; Used by hppa_profile_hook to load the starting address of the current
7130 ; function; operand 1 contains the address of the label in operand 3
7131 (define_insn "load_offset_label_address"
7132   [(set (match_operand:SI 0 "register_operand" "=r")
7133         (plus:SI (match_operand:SI 1 "register_operand" "r")
7134                  (minus:SI (match_operand:SI 2 "" "")
7135                            (label_ref:SI (match_operand 3 "" "")))))]
7136   ""
7137   "ldo %2-%l3(%1),%0"
7138   [(set_attr "type" "multi")
7139    (set_attr "length" "4")])
7140
7141 ; Output a code label and load its address.
7142 (define_insn "lcla1"
7143   [(set (match_operand:SI 0 "register_operand" "=r")
7144         (label_ref:SI (match_operand 1 "" "")))
7145    (const_int 0)]
7146   "!TARGET_PA_20"
7147   "*
7148 {
7149   output_asm_insn (\"bl .+8,%0\;depi 0,31,2,%0\", operands);
7150   (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
7151                                      CODE_LABEL_NUMBER (operands[1]));
7152   return \"\";
7153 }"
7154   [(set_attr "type" "multi")
7155    (set_attr "length" "8")])
7156
7157 (define_insn "lcla2"
7158   [(set (match_operand:SI 0 "register_operand" "=r")
7159         (label_ref:SI (match_operand 1 "" "")))
7160    (const_int 0)]
7161   "TARGET_PA_20"
7162   "*
7163 {
7164   (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
7165                                      CODE_LABEL_NUMBER (operands[1]));
7166   return \"mfia %0\";
7167 }"
7168   [(set_attr "type" "move")
7169    (set_attr "length" "4")])
7170
7171 (define_insn "blockage"
7172   [(unspec_volatile [(const_int 2)] UNSPECV_BLOCKAGE)]
7173   ""
7174   ""
7175   [(set_attr "length" "0")])
7176
7177 (define_insn "jump"
7178   [(set (pc) (label_ref (match_operand 0 "" "")))]
7179   ""
7180   "*
7181 {
7182   /* An unconditional branch which can reach its target.  */
7183   if (get_attr_length (insn) < 16)
7184     return \"b%* %l0\";
7185
7186   return output_lbranch (operands[0], insn, 1);
7187 }"
7188   [(set_attr "type" "uncond_branch")
7189    (set_attr "pa_combine_type" "uncond_branch")
7190    (set (attr "length")
7191     (cond [(eq (symbol_ref "jump_in_call_delay (insn)") (const_int 1))
7192            (if_then_else (lt (abs (minus (match_dup 0)
7193                                          (plus (pc) (const_int 8))))
7194                              (const_int MAX_12BIT_OFFSET))
7195            (const_int 4)
7196            (const_int 8))
7197            (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
7198                (const_int MAX_17BIT_OFFSET))
7199            (const_int 4)
7200            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
7201            (const_int 20)
7202            (eq (symbol_ref "flag_pic") (const_int 0))
7203            (const_int 16)]
7204           (const_int 24)))])
7205
7206 ;;; Hope this is only within a function...
7207 (define_insn "indirect_jump"
7208   [(set (pc) (match_operand 0 "register_operand" "r"))]
7209   "GET_MODE (operands[0]) == word_mode"
7210   "bv%* %%r0(%0)"
7211   [(set_attr "type" "branch")
7212    (set_attr "length" "4")])
7213
7214 ;;; An indirect jump can be optimized to a direct jump.  GAS for the
7215 ;;; SOM target doesn't allow branching to a label inside a function.
7216 ;;; We also don't correctly compute branch distances for labels
7217 ;;; outside the current function.  Thus, we use an indirect jump can't
7218 ;;; be optimized to a direct jump for all targets.  We assume that
7219 ;;; the branch target is in the same space (i.e., nested function
7220 ;;; jumping to a label in an outer function in the same translation
7221 ;;; unit).
7222 (define_expand "nonlocal_goto"
7223   [(use (match_operand 0 "general_operand" ""))
7224    (use (match_operand 1 "general_operand" ""))
7225    (use (match_operand 2 "general_operand" ""))
7226    (use (match_operand 3 "general_operand" ""))]
7227   ""
7228 {
7229   rtx lab = operands[1];
7230   rtx stack = operands[2];
7231   rtx fp = operands[3];
7232
7233   lab = copy_to_reg (lab);
7234
7235   emit_insn (gen_rtx_CLOBBER (VOIDmode,
7236                               gen_rtx_MEM (BLKmode,
7237                                            gen_rtx_SCRATCH (VOIDmode))));
7238   emit_insn (gen_rtx_CLOBBER (VOIDmode,
7239                               gen_rtx_MEM (BLKmode,
7240                                            hard_frame_pointer_rtx)));
7241
7242   /* Restore the frame pointer.  The virtual_stack_vars_rtx is saved
7243      instead of the hard_frame_pointer_rtx in the save area.  As a
7244      result, an extra instruction is needed to adjust for the offset
7245      of the virtual stack variables and the frame pointer.  */
7246   if (GET_CODE (fp) != REG)
7247     fp = force_reg (Pmode, fp);
7248   emit_move_insn (virtual_stack_vars_rtx, fp);
7249
7250   emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX);
7251
7252   emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
7253   emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
7254
7255   /* Nonlocal goto jumps are only used between functions in the same
7256      translation unit.  Thus, we can avoid the extra overhead of an
7257      interspace jump.  */
7258   emit_jump_insn (gen_indirect_goto (lab));
7259   emit_barrier ();
7260   DONE;
7261 })
7262
7263 (define_insn "indirect_goto"
7264   [(unspec [(match_operand 0 "register_operand" "=r")] UNSPEC_GOTO)]
7265   "GET_MODE (operands[0]) == word_mode"
7266   "bv%* %%r0(%0)"
7267   [(set_attr "type" "branch")
7268    (set_attr "length" "4")])
7269
7270 ;;; This jump is used in branch tables where the insn length is fixed.
7271 ;;; The length of this insn is adjusted if the delay slot is not filled.
7272 (define_insn "short_jump"
7273   [(set (pc) (label_ref (match_operand 0 "" "")))
7274    (const_int 0)]
7275   ""
7276   "b%* %l0%#"
7277   [(set_attr "type" "btable_branch")
7278    (set_attr "length" "4")])
7279
7280 ;; Subroutines of "casesi".
7281 ;; operand 0 is index
7282 ;; operand 1 is the minimum bound
7283 ;; operand 2 is the maximum bound - minimum bound + 1
7284 ;; operand 3 is CODE_LABEL for the table;
7285 ;; operand 4 is the CODE_LABEL to go to if index out of range.
7286
7287 (define_expand "casesi"
7288   [(match_operand:SI 0 "general_operand" "")
7289    (match_operand:SI 1 "const_int_operand" "")
7290    (match_operand:SI 2 "const_int_operand" "")
7291    (match_operand 3 "" "")
7292    (match_operand 4 "" "")]
7293   ""
7294   "
7295 {
7296   if (GET_CODE (operands[0]) != REG)
7297     operands[0] = force_reg (SImode, operands[0]);
7298
7299   if (operands[1] != const0_rtx)
7300     {
7301       rtx index = gen_reg_rtx (SImode);
7302
7303       operands[1] = GEN_INT (-INTVAL (operands[1]));
7304       if (!INT_14_BITS (operands[1]))
7305         operands[1] = force_reg (SImode, operands[1]);
7306       emit_insn (gen_addsi3 (index, operands[0], operands[1]));
7307       operands[0] = index;
7308     }
7309
7310   /* In 64bit mode we must make sure to wipe the upper bits of the register
7311      just in case the addition overflowed or we had random bits in the
7312      high part of the register.  */
7313   if (TARGET_64BIT)
7314     {
7315       rtx index = gen_reg_rtx (DImode);
7316
7317       emit_insn (gen_extendsidi2 (index, operands[0]));
7318       operands[0] = gen_rtx_SUBREG (SImode, index, 4);
7319     }
7320
7321   if (!INT_5_BITS (operands[2]))
7322     operands[2] = force_reg (SImode, operands[2]);
7323
7324   /* This branch prevents us finding an insn for the delay slot of the
7325      following vectored branch.  It might be possible to use the delay
7326      slot if an index value of -1 was used to transfer to the out-of-range
7327      label.  In order to do this, we would have to output the -1 vector
7328      element after the delay insn.  The casesi output code would have to
7329      check if the casesi insn is in a delay branch sequence and output
7330      the delay insn if one is found.  If this was done, then it might
7331      then be worthwhile to split the casesi patterns to improve scheduling.
7332      However, it's not clear that all this extra complexity is worth
7333      the effort.  */
7334   emit_insn (gen_cmpsi (operands[0], operands[2]));
7335   emit_jump_insn (gen_bgtu (operands[4]));
7336
7337   if (TARGET_BIG_SWITCH)
7338     {
7339       if (TARGET_64BIT)
7340         {
7341           rtx tmp1 = gen_reg_rtx (DImode);
7342           rtx tmp2 = gen_reg_rtx (DImode);
7343
7344           emit_jump_insn (gen_casesi64p (operands[0], operands[3],
7345                                          tmp1, tmp2));
7346         }
7347       else
7348         {
7349           rtx tmp1 = gen_reg_rtx (SImode);
7350
7351           if (flag_pic)
7352             {
7353               rtx tmp2 = gen_reg_rtx (SImode);
7354
7355               emit_jump_insn (gen_casesi32p (operands[0], operands[3],
7356                                              tmp1, tmp2));
7357             }
7358           else
7359             emit_jump_insn (gen_casesi32 (operands[0], operands[3], tmp1));
7360         }
7361     }
7362   else
7363     emit_jump_insn (gen_casesi0 (operands[0], operands[3]));
7364   DONE;
7365 }")
7366
7367 ;;; The rtl for this pattern doesn't accurately describe what the insn
7368 ;;; actually does, particularly when case-vector elements are exploded
7369 ;;; in pa_reorg.  However, the initial SET in these patterns must show
7370 ;;; the connection of the insn to the following jump table.
7371 (define_insn "casesi0"
7372   [(set (pc) (mem:SI (plus:SI
7373                        (mult:SI (match_operand:SI 0 "register_operand" "r")
7374                                 (const_int 4))
7375                        (label_ref (match_operand 1 "" "")))))]
7376   ""
7377   "blr,n %0,%%r0\;nop"
7378   [(set_attr "type" "multi")
7379    (set_attr "length" "8")])
7380
7381 ;;; 32-bit code, absolute branch table.
7382 (define_insn "casesi32"
7383   [(set (pc) (mem:SI (plus:SI
7384                        (mult:SI (match_operand:SI 0 "register_operand" "r")
7385                                 (const_int 4))
7386                        (label_ref (match_operand 1 "" "")))))
7387    (clobber (match_operand:SI 2 "register_operand" "=&r"))]
7388   "!TARGET_64BIT && TARGET_BIG_SWITCH"
7389   "ldil L'%l1,%2\;ldo R'%l1(%2),%2\;{ldwx|ldw},s %0(%2),%2\;bv,n %%r0(%2)"
7390   [(set_attr "type" "multi")
7391    (set_attr "length" "16")])
7392
7393 ;;; 32-bit code, relative branch table.
7394 (define_insn "casesi32p"
7395   [(set (pc) (mem:SI (plus:SI
7396                        (mult:SI (match_operand:SI 0 "register_operand" "r")
7397                                 (const_int 4))
7398                        (label_ref (match_operand 1 "" "")))))
7399    (clobber (match_operand:SI 2 "register_operand" "=&a"))
7400    (clobber (match_operand:SI 3 "register_operand" "=&r"))]
7401   "!TARGET_64BIT && TARGET_BIG_SWITCH"
7402   "{bl .+8,%2\;depi 0,31,2,%2|mfia %2}\;ldo {16|20}(%2),%2\;\
7403 {ldwx|ldw},s %0(%2),%3\;{addl|add,l} %2,%3,%3\;bv,n %%r0(%3)"
7404   [(set_attr "type" "multi")
7405    (set (attr "length")
7406      (if_then_else (ne (symbol_ref "TARGET_PA_20") (const_int 0))
7407         (const_int 20)
7408         (const_int 24)))])
7409
7410 ;;; 64-bit code, 32-bit relative branch table.
7411 (define_insn "casesi64p"
7412   [(set (pc) (mem:DI (plus:DI
7413                        (mult:DI (sign_extend:DI
7414                                   (match_operand:SI 0 "register_operand" "r"))
7415                                 (const_int 8))
7416                        (label_ref (match_operand 1 "" "")))))
7417    (clobber (match_operand:DI 2 "register_operand" "=&r"))
7418    (clobber (match_operand:DI 3 "register_operand" "=&r"))]
7419   "TARGET_64BIT && TARGET_BIG_SWITCH"
7420   "mfia %2\;ldo 24(%2),%2\;ldw,s %0(%2),%3\;extrd,s %3,63,32,%3\;\
7421 add,l %2,%3,%3\;bv,n %%r0(%3)"
7422   [(set_attr "type" "multi")
7423    (set_attr "length" "24")])
7424
7425
7426 ;; Call patterns.
7427 ;;- jump to subroutine
7428
7429 (define_expand "call"
7430   [(parallel [(call (match_operand:SI 0 "" "")
7431                     (match_operand 1 "" ""))
7432               (clobber (reg:SI 2))])]
7433   ""
7434   "
7435 {
7436   rtx op, call_insn;
7437   rtx nb = operands[1];
7438
7439   if (TARGET_PORTABLE_RUNTIME)
7440     op = force_reg (SImode, XEXP (operands[0], 0));
7441   else
7442     op = XEXP (operands[0], 0);
7443
7444   if (TARGET_64BIT)
7445     {
7446       if (!virtuals_instantiated)
7447         emit_move_insn (arg_pointer_rtx,
7448                         gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
7449                                       GEN_INT (64)));
7450       else
7451         {
7452           /* The loop pass can generate new libcalls after the virtual
7453              registers are instantiated when fpregs are disabled because
7454              the only method that we have for doing DImode multiplication
7455              is with a libcall.  This could be trouble if we haven't
7456              allocated enough space for the outgoing arguments.  */
7457           gcc_assert (INTVAL (nb) <= current_function_outgoing_args_size);
7458
7459           emit_move_insn (arg_pointer_rtx,
7460                           gen_rtx_PLUS (word_mode, stack_pointer_rtx,
7461                                         GEN_INT (STACK_POINTER_OFFSET + 64)));
7462         }
7463     }
7464
7465   /* Use two different patterns for calls to explicitly named functions
7466      and calls through function pointers.  This is necessary as these two
7467      types of calls use different calling conventions, and CSE might try
7468      to change the named call into an indirect call in some cases (using
7469      two patterns keeps CSE from performing this optimization).
7470      
7471      We now use even more call patterns as there was a subtle bug in
7472      attempting to restore the pic register after a call using a simple
7473      move insn.  During reload, a instruction involving a pseudo register
7474      with no explicit dependence on the PIC register can be converted
7475      to an equivalent load from memory using the PIC register.  If we
7476      emit a simple move to restore the PIC register in the initial rtl
7477      generation, then it can potentially be repositioned during scheduling.
7478      and an instruction that eventually uses the PIC register may end up
7479      between the call and the PIC register restore.
7480      
7481      This only worked because there is a post call group of instructions
7482      that are scheduled with the call.  These instructions are included
7483      in the same basic block as the call.  However, calls can throw in
7484      C++ code and a basic block has to terminate at the call if the call
7485      can throw.  This results in the PIC register restore being scheduled
7486      independently from the call.  So, we now hide the save and restore
7487      of the PIC register in the call pattern until after reload.  Then,
7488      we split the moves out.  A small side benefit is that we now don't
7489      need to have a use of the PIC register in the return pattern and
7490      the final save/restore operation is not needed.
7491      
7492      I elected to just clobber %r4 in the PIC patterns and use it instead
7493      of trying to force hppa_pic_save_rtx () to a callee saved register.
7494      This might have required a new register class and constraint.  It
7495      was also simpler to just handle the restore from a register than a
7496      generic pseudo.  */
7497   if (TARGET_64BIT)
7498     {
7499       if (GET_CODE (op) == SYMBOL_REF)
7500         call_insn = emit_call_insn (gen_call_symref_64bit (op, nb));
7501       else
7502         {
7503           op = force_reg (word_mode, op);
7504           call_insn = emit_call_insn (gen_call_reg_64bit (op, nb));
7505         }
7506     }
7507   else
7508     {
7509       if (GET_CODE (op) == SYMBOL_REF)
7510         {
7511           if (flag_pic)
7512             call_insn = emit_call_insn (gen_call_symref_pic (op, nb));
7513           else
7514             call_insn = emit_call_insn (gen_call_symref (op, nb));
7515         }
7516       else
7517         {
7518           rtx tmpreg = gen_rtx_REG (word_mode, 22);
7519
7520           emit_move_insn (tmpreg, force_reg (word_mode, op));
7521           if (flag_pic)
7522             call_insn = emit_call_insn (gen_call_reg_pic (nb));
7523           else
7524             call_insn = emit_call_insn (gen_call_reg (nb));
7525         }
7526     }
7527
7528   DONE;
7529 }")
7530
7531 ;; We use function calls to set the attribute length of calls and millicode
7532 ;; calls.  This is necessary because of the large variety of call sequences.
7533 ;; Implementing the calculation in rtl is difficult as well as ugly.  As
7534 ;; we need the same calculation in several places, maintenance becomes a
7535 ;; nightmare.
7536 ;;
7537 ;; However, this has a subtle impact on branch shortening.  When the
7538 ;; expression used to set the length attribute of an instruction depends
7539 ;; on a relative address (e.g., pc or a branch address), genattrtab
7540 ;; notes that the insn's length is variable, and attempts to determine a
7541 ;; worst-case default length and code to compute an insn's current length.
7542
7543 ;; The use of a function call hides the variable dependence of our calls
7544 ;; and millicode calls.  The result is genattrtab doesn't treat the operation
7545 ;; as variable and it only generates code for the default case using our
7546 ;; function call.  Because of this, calls and millicode calls have a fixed
7547 ;; length in the branch shortening pass, and some branches will use a longer
7548 ;; code sequence than necessary.  However, the length of any given call
7549 ;; will still reflect its final code location and it may be shorter than
7550 ;; the initial length estimate.
7551
7552 ;; It's possible to trick genattrtab by adding an expression involving `pc'
7553 ;; in the set.  However, when genattrtab hits a function call in its attempt
7554 ;; to compute the default length, it marks the result as unknown and sets
7555 ;; the default result to MAX_INT ;-(  One possible fix that would allow
7556 ;; calls to participate in branch shortening would be to make the call to
7557 ;; insn_default_length a target option.  Then, we could massage unknown
7558 ;; results.  Another fix might be to change genattrtab so that it just does
7559 ;; the call in the variable case as it already does for the fixed case.
7560
7561 (define_insn "call_symref"
7562   [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7563          (match_operand 1 "" "i"))
7564    (clobber (reg:SI 1))
7565    (clobber (reg:SI 2))
7566    (use (const_int 0))]
7567   "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7568   "*
7569 {
7570   output_arg_descriptor (insn);
7571   return output_call (insn, operands[0], 0);
7572 }"
7573   [(set_attr "type" "call")
7574    (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
7575
7576 (define_insn "call_symref_pic"
7577   [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7578          (match_operand 1 "" "i"))
7579    (clobber (reg:SI 1))
7580    (clobber (reg:SI 2))
7581    (clobber (reg:SI 4))
7582    (use (reg:SI 19))
7583    (use (const_int 0))]
7584   "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7585   "*
7586 {
7587   output_arg_descriptor (insn);
7588   return output_call (insn, operands[0], 0);
7589 }"
7590   [(set_attr "type" "call")
7591    (set (attr "length")
7592         (plus (symbol_ref "attr_length_call (insn, 0)")
7593               (symbol_ref "attr_length_save_restore_dltp (insn)")))])
7594
7595 ;; Split out the PIC register save and restore after reload.  This is
7596 ;; done only if the function returns.  As the split is done after reload,
7597 ;; there are some situations in which we unnecessarily save and restore
7598 ;; %r4.  This happens when there is a single call and the PIC register
7599 ;; is "dead" after the call.  This isn't easy to fix as the usage of
7600 ;; the PIC register isn't completely determined until the reload pass.
7601 (define_split
7602   [(parallel [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7603                     (match_operand 1 "" ""))
7604               (clobber (reg:SI 1))
7605               (clobber (reg:SI 2))
7606               (clobber (reg:SI 4))
7607               (use (reg:SI 19))
7608               (use (const_int 0))])]
7609   "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT
7610    && reload_completed
7611    && !find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7612   [(set (reg:SI 4) (reg:SI 19))
7613    (parallel [(call (mem:SI (match_dup 0))
7614                     (match_dup 1))
7615               (clobber (reg:SI 1))
7616               (clobber (reg:SI 2))
7617               (use (reg:SI 19))
7618               (use (const_int 0))])
7619    (set (reg:SI 19) (reg:SI 4))]
7620   "")
7621
7622 ;; Remove the clobber of register 4 when optimizing.  This has to be
7623 ;; done with a peephole optimization rather than a split because the
7624 ;; split sequence for a call must be longer than one instruction.
7625 (define_peephole2
7626   [(parallel [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7627                     (match_operand 1 "" ""))
7628               (clobber (reg:SI 1))
7629               (clobber (reg:SI 2))
7630               (clobber (reg:SI 4))
7631               (use (reg:SI 19))
7632               (use (const_int 0))])]
7633   "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT && reload_completed"
7634   [(parallel [(call (mem:SI (match_dup 0))
7635                     (match_dup 1))
7636               (clobber (reg:SI 1))
7637               (clobber (reg:SI 2))
7638               (use (reg:SI 19))
7639               (use (const_int 0))])]
7640   "")
7641
7642 (define_insn "*call_symref_pic_post_reload"
7643   [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7644          (match_operand 1 "" "i"))
7645    (clobber (reg:SI 1))
7646    (clobber (reg:SI 2))
7647    (use (reg:SI 19))
7648    (use (const_int 0))]
7649   "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7650   "*
7651 {
7652   output_arg_descriptor (insn);
7653   return output_call (insn, operands[0], 0);
7654 }"
7655   [(set_attr "type" "call")
7656    (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
7657
7658 ;; This pattern is split if it is necessary to save and restore the
7659 ;; PIC register.
7660 (define_insn "call_symref_64bit"
7661   [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7662          (match_operand 1 "" "i"))
7663    (clobber (reg:DI 1))
7664    (clobber (reg:DI 2))
7665    (clobber (reg:DI 4))
7666    (use (reg:DI 27))
7667    (use (reg:DI 29))
7668    (use (const_int 0))]
7669   "TARGET_64BIT"
7670   "*
7671 {
7672   output_arg_descriptor (insn);
7673   return output_call (insn, operands[0], 0);
7674 }"
7675   [(set_attr "type" "call")
7676    (set (attr "length")
7677         (plus (symbol_ref "attr_length_call (insn, 0)")
7678               (symbol_ref "attr_length_save_restore_dltp (insn)")))])
7679
7680 ;; Split out the PIC register save and restore after reload.  This is
7681 ;; done only if the function returns.  As the split is done after reload,
7682 ;; there are some situations in which we unnecessarily save and restore
7683 ;; %r4.  This happens when there is a single call and the PIC register
7684 ;; is "dead" after the call.  This isn't easy to fix as the usage of
7685 ;; the PIC register isn't completely determined until the reload pass.
7686 (define_split
7687   [(parallel [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7688                     (match_operand 1 "" ""))
7689               (clobber (reg:DI 1))
7690               (clobber (reg:DI 2))
7691               (clobber (reg:DI 4))
7692               (use (reg:DI 27))
7693               (use (reg:DI 29))
7694               (use (const_int 0))])]
7695   "TARGET_64BIT
7696    && reload_completed
7697    && !find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7698   [(set (reg:DI 4) (reg:DI 27))
7699    (parallel [(call (mem:SI (match_dup 0))
7700                     (match_dup 1))
7701               (clobber (reg:DI 1))
7702               (clobber (reg:DI 2))
7703               (use (reg:DI 27))
7704               (use (reg:DI 29))
7705               (use (const_int 0))])
7706    (set (reg:DI 27) (reg:DI 4))]
7707   "")
7708
7709 ;; Remove the clobber of register 4 when optimizing.  This has to be
7710 ;; done with a peephole optimization rather than a split because the
7711 ;; split sequence for a call must be longer than one instruction.
7712 (define_peephole2
7713   [(parallel [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7714                     (match_operand 1 "" ""))
7715               (clobber (reg:DI 1))
7716               (clobber (reg:DI 2))
7717               (clobber (reg:DI 4))
7718               (use (reg:DI 27))
7719               (use (reg:DI 29))
7720               (use (const_int 0))])]
7721   "TARGET_64BIT && reload_completed"
7722   [(parallel [(call (mem:SI (match_dup 0))
7723                     (match_dup 1))
7724               (clobber (reg:DI 1))
7725               (clobber (reg:DI 2))
7726               (use (reg:DI 27))
7727               (use (reg:DI 29))
7728               (use (const_int 0))])]
7729   "")
7730
7731 (define_insn "*call_symref_64bit_post_reload"
7732   [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7733          (match_operand 1 "" "i"))
7734    (clobber (reg:DI 1))
7735    (clobber (reg:DI 2))
7736    (use (reg:DI 27))
7737    (use (reg:DI 29))
7738    (use (const_int 0))]
7739   "TARGET_64BIT"
7740   "*
7741 {
7742   output_arg_descriptor (insn);
7743   return output_call (insn, operands[0], 0);
7744 }"
7745   [(set_attr "type" "call")
7746    (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
7747
7748 (define_insn "call_reg"
7749   [(call (mem:SI (reg:SI 22))
7750          (match_operand 0 "" "i"))
7751    (clobber (reg:SI 1))
7752    (clobber (reg:SI 2))
7753    (use (const_int 1))]
7754   "!TARGET_64BIT"
7755   "*
7756 {
7757   return output_indirect_call (insn, gen_rtx_REG (word_mode, 22));
7758 }"
7759   [(set_attr "type" "dyncall")
7760    (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
7761
7762 ;; This pattern is split if it is necessary to save and restore the
7763 ;; PIC register.
7764 (define_insn "call_reg_pic"
7765   [(call (mem:SI (reg:SI 22))
7766          (match_operand 0 "" "i"))
7767    (clobber (reg:SI 1))
7768    (clobber (reg:SI 2))
7769    (clobber (reg:SI 4))
7770    (use (reg:SI 19))
7771    (use (const_int 1))]
7772   "!TARGET_64BIT"
7773   "*
7774 {
7775   return output_indirect_call (insn, gen_rtx_REG (word_mode, 22));
7776 }"
7777   [(set_attr "type" "dyncall")
7778    (set (attr "length")
7779         (plus (symbol_ref "attr_length_indirect_call (insn)")
7780               (symbol_ref "attr_length_save_restore_dltp (insn)")))])
7781
7782 ;; Split out the PIC register save and restore after reload.  This is
7783 ;; done only if the function returns.  As the split is done after reload,
7784 ;; there are some situations in which we unnecessarily save and restore
7785 ;; %r4.  This happens when there is a single call and the PIC register
7786 ;; is "dead" after the call.  This isn't easy to fix as the usage of
7787 ;; the PIC register isn't completely determined until the reload pass.
7788 (define_split
7789   [(parallel [(call (mem:SI (reg:SI 22))
7790                     (match_operand 0 "" ""))
7791               (clobber (reg:SI 1))
7792               (clobber (reg:SI 2))
7793               (clobber (reg:SI 4))
7794               (use (reg:SI 19))
7795               (use (const_int 1))])]
7796   "!TARGET_64BIT
7797    && reload_completed
7798    && !find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7799   [(set (reg:SI 4) (reg:SI 19))
7800    (parallel [(call (mem:SI (reg:SI 22))
7801                     (match_dup 0))
7802               (clobber (reg:SI 1))
7803               (clobber (reg:SI 2))
7804               (use (reg:SI 19))
7805               (use (const_int 1))])
7806    (set (reg:SI 19) (reg:SI 4))]
7807   "")
7808
7809 ;; Remove the clobber of register 4 when optimizing.  This has to be
7810 ;; done with a peephole optimization rather than a split because the
7811 ;; split sequence for a call must be longer than one instruction.
7812 (define_peephole2
7813   [(parallel [(call (mem:SI (reg:SI 22))
7814                     (match_operand 0 "" ""))
7815               (clobber (reg:SI 1))
7816               (clobber (reg:SI 2))
7817               (clobber (reg:SI 4))
7818               (use (reg:SI 19))
7819               (use (const_int 1))])]
7820   "!TARGET_64BIT && reload_completed"
7821   [(parallel [(call (mem:SI (reg:SI 22))
7822                     (match_dup 0))
7823               (clobber (reg:SI 1))
7824               (clobber (reg:SI 2))
7825               (use (reg:SI 19))
7826               (use (const_int 1))])]
7827   "")
7828
7829 (define_insn "*call_reg_pic_post_reload"
7830   [(call (mem:SI (reg:SI 22))
7831          (match_operand 0 "" "i"))
7832    (clobber (reg:SI 1))
7833    (clobber (reg:SI 2))
7834    (use (reg:SI 19))
7835    (use (const_int 1))]
7836   "!TARGET_64BIT"
7837   "*
7838 {
7839   return output_indirect_call (insn, gen_rtx_REG (word_mode, 22));
7840 }"
7841   [(set_attr "type" "dyncall")
7842    (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
7843
7844 ;; This pattern is split if it is necessary to save and restore the
7845 ;; PIC register.
7846 (define_insn "call_reg_64bit"
7847   [(call (mem:SI (match_operand:DI 0 "register_operand" "r"))
7848          (match_operand 1 "" "i"))
7849    (clobber (reg:DI 2))
7850    (clobber (reg:DI 4))
7851    (use (reg:DI 27))
7852    (use (reg:DI 29))
7853    (use (const_int 1))]
7854   "TARGET_64BIT"
7855   "*
7856 {
7857   return output_indirect_call (insn, operands[0]);
7858 }"
7859   [(set_attr "type" "dyncall")
7860    (set (attr "length")
7861         (plus (symbol_ref "attr_length_indirect_call (insn)")
7862               (symbol_ref "attr_length_save_restore_dltp (insn)")))])
7863
7864 ;; Split out the PIC register save and restore after reload.  This is
7865 ;; done only if the function returns.  As the split is done after reload,
7866 ;; there are some situations in which we unnecessarily save and restore
7867 ;; %r4.  This happens when there is a single call and the PIC register
7868 ;; is "dead" after the call.  This isn't easy to fix as the usage of
7869 ;; the PIC register isn't completely determined until the reload pass.
7870 (define_split
7871   [(parallel [(call (mem:SI (match_operand 0 "register_operand" ""))
7872                     (match_operand 1 "" ""))
7873               (clobber (reg:DI 2))
7874               (clobber (reg:DI 4))
7875               (use (reg:DI 27))
7876               (use (reg:DI 29))
7877               (use (const_int 1))])]
7878   "TARGET_64BIT
7879    && reload_completed
7880    && !find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7881   [(set (reg:DI 4) (reg:DI 27))
7882    (parallel [(call (mem:SI (match_dup 0))
7883                     (match_dup 1))
7884               (clobber (reg:DI 2))
7885               (use (reg:DI 27))
7886               (use (reg:DI 29))
7887               (use (const_int 1))])
7888    (set (reg:DI 27) (reg:DI 4))]
7889   "")
7890
7891 ;; Remove the clobber of register 4 when optimizing.  This has to be
7892 ;; done with a peephole optimization rather than a split because the
7893 ;; split sequence for a call must be longer than one instruction.
7894 (define_peephole2
7895   [(parallel [(call (mem:SI (match_operand 0 "register_operand" ""))
7896                     (match_operand 1 "" ""))
7897               (clobber (reg:DI 2))
7898               (clobber (reg:DI 4))
7899               (use (reg:DI 27))
7900               (use (reg:DI 29))
7901               (use (const_int 1))])]
7902   "TARGET_64BIT && reload_completed"
7903   [(parallel [(call (mem:SI (match_dup 0))
7904                     (match_dup 1))
7905               (clobber (reg:DI 2))
7906               (use (reg:DI 27))
7907               (use (reg:DI 29))
7908               (use (const_int 1))])]
7909   "")
7910
7911 (define_insn "*call_reg_64bit_post_reload"
7912   [(call (mem:SI (match_operand:DI 0 "register_operand" "r"))
7913          (match_operand 1 "" "i"))
7914    (clobber (reg:DI 2))
7915    (use (reg:DI 27))
7916    (use (reg:DI 29))
7917    (use (const_int 1))]
7918   "TARGET_64BIT"
7919   "*
7920 {
7921   return output_indirect_call (insn, operands[0]);
7922 }"
7923   [(set_attr "type" "dyncall")
7924    (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
7925
7926 (define_expand "call_value"
7927   [(parallel [(set (match_operand 0 "" "")
7928                    (call (match_operand:SI 1 "" "")
7929                          (match_operand 2 "" "")))
7930               (clobber (reg:SI 2))])]
7931   ""
7932   "
7933 {
7934   rtx op, call_insn;
7935   rtx dst = operands[0];
7936   rtx nb = operands[2];
7937
7938   if (TARGET_PORTABLE_RUNTIME)
7939     op = force_reg (SImode, XEXP (operands[1], 0));
7940   else
7941     op = XEXP (operands[1], 0);
7942
7943   if (TARGET_64BIT)
7944     {
7945       if (!virtuals_instantiated)
7946         emit_move_insn (arg_pointer_rtx,
7947                         gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
7948                                       GEN_INT (64)));
7949       else
7950         {
7951           /* The loop pass can generate new libcalls after the virtual
7952              registers are instantiated when fpregs are disabled because
7953              the only method that we have for doing DImode multiplication
7954              is with a libcall.  This could be trouble if we haven't
7955              allocated enough space for the outgoing arguments.  */
7956           gcc_assert (INTVAL (nb) <= current_function_outgoing_args_size);
7957
7958           emit_move_insn (arg_pointer_rtx,
7959                           gen_rtx_PLUS (word_mode, stack_pointer_rtx,
7960                                         GEN_INT (STACK_POINTER_OFFSET + 64)));
7961         }
7962     }
7963
7964   /* Use two different patterns for calls to explicitly named functions
7965      and calls through function pointers.  This is necessary as these two
7966      types of calls use different calling conventions, and CSE might try
7967      to change the named call into an indirect call in some cases (using
7968      two patterns keeps CSE from performing this optimization).
7969
7970      We now use even more call patterns as there was a subtle bug in
7971      attempting to restore the pic register after a call using a simple
7972      move insn.  During reload, a instruction involving a pseudo register
7973      with no explicit dependence on the PIC register can be converted
7974      to an equivalent load from memory using the PIC register.  If we
7975      emit a simple move to restore the PIC register in the initial rtl
7976      generation, then it can potentially be repositioned during scheduling.
7977      and an instruction that eventually uses the PIC register may end up
7978      between the call and the PIC register restore.
7979      
7980      This only worked because there is a post call group of instructions
7981      that are scheduled with the call.  These instructions are included
7982      in the same basic block as the call.  However, calls can throw in
7983      C++ code and a basic block has to terminate at the call if the call
7984      can throw.  This results in the PIC register restore being scheduled
7985      independently from the call.  So, we now hide the save and restore
7986      of the PIC register in the call pattern until after reload.  Then,
7987      we split the moves out.  A small side benefit is that we now don't
7988      need to have a use of the PIC register in the return pattern and
7989      the final save/restore operation is not needed.
7990      
7991      I elected to just clobber %r4 in the PIC patterns and use it instead
7992      of trying to force hppa_pic_save_rtx () to a callee saved register.
7993      This might have required a new register class and constraint.  It
7994      was also simpler to just handle the restore from a register than a
7995      generic pseudo.  */
7996   if (TARGET_64BIT)
7997     {
7998       if (GET_CODE (op) == SYMBOL_REF)
7999         call_insn = emit_call_insn (gen_call_val_symref_64bit (dst, op, nb));
8000       else
8001         {
8002           op = force_reg (word_mode, op);
8003           call_insn = emit_call_insn (gen_call_val_reg_64bit (dst, op, nb));
8004         }
8005     }
8006   else
8007     {
8008       if (GET_CODE (op) == SYMBOL_REF)
8009         {
8010           if (flag_pic)
8011             call_insn = emit_call_insn (gen_call_val_symref_pic (dst, op, nb));
8012           else
8013             call_insn = emit_call_insn (gen_call_val_symref (dst, op, nb));
8014         }
8015       else
8016         {
8017           rtx tmpreg = gen_rtx_REG (word_mode, 22);
8018
8019           emit_move_insn (tmpreg, force_reg (word_mode, op));
8020           if (flag_pic)
8021             call_insn = emit_call_insn (gen_call_val_reg_pic (dst, nb));
8022           else
8023             call_insn = emit_call_insn (gen_call_val_reg (dst, nb));
8024         }
8025     }
8026
8027   DONE;
8028 }")
8029
8030 (define_insn "call_val_symref"
8031   [(set (match_operand 0 "" "")
8032         (call (mem:SI (match_operand 1 "call_operand_address" ""))
8033               (match_operand 2 "" "i")))
8034    (clobber (reg:SI 1))
8035    (clobber (reg:SI 2))
8036    (use (const_int 0))]
8037   "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
8038   "*
8039 {
8040   output_arg_descriptor (insn);
8041   return output_call (insn, operands[1], 0);
8042 }"
8043   [(set_attr "type" "call")
8044    (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
8045
8046 (define_insn "call_val_symref_pic"
8047   [(set (match_operand 0 "" "")
8048         (call (mem:SI (match_operand 1 "call_operand_address" ""))
8049               (match_operand 2 "" "i")))
8050    (clobber (reg:SI 1))
8051    (clobber (reg:SI 2))
8052    (clobber (reg:SI 4))
8053    (use (reg:SI 19))
8054    (use (const_int 0))]
8055   "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
8056   "*
8057 {
8058   output_arg_descriptor (insn);
8059   return output_call (insn, operands[1], 0);
8060 }"
8061   [(set_attr "type" "call")
8062    (set (attr "length")
8063         (plus (symbol_ref "attr_length_call (insn, 0)")
8064               (symbol_ref "attr_length_save_restore_dltp (insn)")))])
8065
8066 ;; Split out the PIC register save and restore after reload.  This is
8067 ;; done only if the function returns.  As the split is done after reload,
8068 ;; there are some situations in which we unnecessarily save and restore
8069 ;; %r4.  This happens when there is a single call and the PIC register
8070 ;; is "dead" after the call.  This isn't easy to fix as the usage of
8071 ;; the PIC register isn't completely determined until the reload pass.
8072 (define_split
8073   [(parallel [(set (match_operand 0 "" "")
8074               (call (mem:SI (match_operand 1 "call_operand_address" ""))
8075                     (match_operand 2 "" "")))
8076               (clobber (reg:SI 1))
8077               (clobber (reg:SI 2))
8078               (clobber (reg:SI 4))
8079               (use (reg:SI 19))
8080               (use (const_int 0))])]
8081   "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT
8082    && reload_completed
8083    && !find_reg_note (insn, REG_NORETURN, NULL_RTX)"
8084   [(set (reg:SI 4) (reg:SI 19))
8085    (parallel [(set (match_dup 0)
8086               (call (mem:SI (match_dup 1))
8087                     (match_dup 2)))
8088               (clobber (reg:SI 1))
8089               (clobber (reg:SI 2))
8090               (use (reg:SI 19))
8091               (use (const_int 0))])
8092    (set (reg:SI 19) (reg:SI 4))]
8093   "")
8094
8095 ;; Remove the clobber of register 4 when optimizing.  This has to be
8096 ;; done with a peephole optimization rather than a split because the
8097 ;; split sequence for a call must be longer than one instruction.
8098 (define_peephole2
8099   [(parallel [(set (match_operand 0 "" "")
8100               (call (mem:SI (match_operand 1 "call_operand_address" ""))
8101                     (match_operand 2 "" "")))
8102               (clobber (reg:SI 1))
8103               (clobber (reg:SI 2))
8104               (clobber (reg:SI 4))
8105               (use (reg:SI 19))
8106               (use (const_int 0))])]
8107   "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT && reload_completed"
8108   [(parallel [(set (match_dup 0)
8109               (call (mem:SI (match_dup 1))
8110                     (match_dup 2)))
8111               (clobber (reg:SI 1))
8112               (clobber (reg:SI 2))
8113               (use (reg:SI 19))
8114               (use (const_int 0))])]
8115   "")
8116
8117 (define_insn "*call_val_symref_pic_post_reload"
8118   [(set (match_operand 0 "" "")
8119         (call (mem:SI (match_operand 1 "call_operand_address" ""))
8120               (match_operand 2 "" "i")))
8121    (clobber (reg:SI 1))
8122    (clobber (reg:SI 2))
8123    (use (reg:SI 19))
8124    (use (const_int 0))]
8125   "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
8126   "*
8127 {
8128   output_arg_descriptor (insn);
8129   return output_call (insn, operands[1], 0);
8130 }"
8131   [(set_attr "type" "call")
8132    (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
8133
8134 ;; This pattern is split if it is necessary to save and restore the
8135 ;; PIC register.
8136 (define_insn "call_val_symref_64bit"
8137   [(set (match_operand 0 "" "")
8138         (call (mem:SI (match_operand 1 "call_operand_address" ""))
8139               (match_operand 2 "" "i")))
8140    (clobber (reg:DI 1))
8141    (clobber (reg:DI 2))
8142    (clobber (reg:DI 4))
8143    (use (reg:DI 27))
8144    (use (reg:DI 29))
8145    (use (const_int 0))]
8146   "TARGET_64BIT"
8147   "*
8148 {
8149   output_arg_descriptor (insn);
8150   return output_call (insn, operands[1], 0);
8151 }"
8152   [(set_attr "type" "call")
8153    (set (attr "length")
8154         (plus (symbol_ref "attr_length_call (insn, 0)")
8155               (symbol_ref "attr_length_save_restore_dltp (insn)")))])
8156
8157 ;; Split out the PIC register save and restore after reload.  This is
8158 ;; done only if the function returns.  As the split is done after reload,
8159 ;; there are some situations in which we unnecessarily save and restore
8160 ;; %r4.  This happens when there is a single call and the PIC register
8161 ;; is "dead" after the call.  This isn't easy to fix as the usage of
8162 ;; the PIC register isn't completely determined until the reload pass.
8163 (define_split
8164   [(parallel [(set (match_operand 0 "" "")
8165               (call (mem:SI (match_operand 1 "call_operand_address" ""))
8166                     (match_operand 2 "" "")))
8167               (clobber (reg:DI 1))
8168               (clobber (reg:DI 2))
8169               (clobber (reg:DI 4))
8170               (use (reg:DI 27))
8171               (use (reg:DI 29))
8172               (use (const_int 0))])]
8173   "TARGET_64BIT
8174    && reload_completed
8175    && !find_reg_note (insn, REG_NORETURN, NULL_RTX)"
8176   [(set (reg:DI 4) (reg:DI 27))
8177    (parallel [(set (match_dup 0)
8178               (call (mem:SI (match_dup 1))
8179                     (match_dup 2)))
8180               (clobber (reg:DI 1))
8181               (clobber (reg:DI 2))
8182               (use (reg:DI 27))
8183               (use (reg:DI 29))
8184               (use (const_int 0))])
8185    (set (reg:DI 27) (reg:DI 4))]
8186   "")
8187
8188 ;; Remove the clobber of register 4 when optimizing.  This has to be
8189 ;; done with a peephole optimization rather than a split because the
8190 ;; split sequence for a call must be longer than one instruction.
8191 (define_peephole2
8192   [(parallel [(set (match_operand 0 "" "")
8193               (call (mem:SI (match_operand 1 "call_operand_address" ""))
8194                     (match_operand 2 "" "")))
8195               (clobber (reg:DI 1))
8196               (clobber (reg:DI 2))
8197               (clobber (reg:DI 4))
8198               (use (reg:DI 27))
8199               (use (reg:DI 29))
8200               (use (const_int 0))])]
8201   "TARGET_64BIT && reload_completed"
8202   [(parallel [(set (match_dup 0)
8203               (call (mem:SI (match_dup 1))
8204                     (match_dup 2)))
8205               (clobber (reg:DI 1))
8206               (clobber (reg:DI 2))
8207               (use (reg:DI 27))
8208               (use (reg:DI 29))
8209               (use (const_int 0))])]
8210   "")
8211
8212 (define_insn "*call_val_symref_64bit_post_reload"
8213   [(set (match_operand 0 "" "")
8214         (call (mem:SI (match_operand 1 "call_operand_address" ""))
8215               (match_operand 2 "" "i")))
8216    (clobber (reg:DI 1))
8217    (clobber (reg:DI 2))
8218    (use (reg:DI 27))
8219    (use (reg:DI 29))
8220    (use (const_int 0))]
8221   "TARGET_64BIT"
8222   "*
8223 {
8224   output_arg_descriptor (insn);
8225   return output_call (insn, operands[1], 0);
8226 }"
8227   [(set_attr "type" "call")
8228    (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
8229
8230 (define_insn "call_val_reg"
8231   [(set (match_operand 0 "" "")
8232         (call (mem:SI (reg:SI 22))
8233               (match_operand 1 "" "i")))
8234    (clobber (reg:SI 1))
8235    (clobber (reg:SI 2))
8236    (use (const_int 1))]
8237   "!TARGET_64BIT"
8238   "*
8239 {
8240   return output_indirect_call (insn, gen_rtx_REG (word_mode, 22));
8241 }"
8242   [(set_attr "type" "dyncall")
8243    (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
8244
8245 ;; This pattern is split if it is necessary to save and restore the
8246 ;; PIC register.
8247 (define_insn "call_val_reg_pic"
8248   [(set (match_operand 0 "" "")
8249         (call (mem:SI (reg:SI 22))
8250               (match_operand 1 "" "i")))
8251    (clobber (reg:SI 1))
8252    (clobber (reg:SI 2))
8253    (clobber (reg:SI 4))
8254    (use (reg:SI 19))
8255    (use (const_int 1))]
8256   "!TARGET_64BIT"
8257   "*
8258 {
8259   return output_indirect_call (insn, gen_rtx_REG (word_mode, 22));
8260 }"
8261   [(set_attr "type" "dyncall")
8262    (set (attr "length")
8263         (plus (symbol_ref "attr_length_indirect_call (insn)")
8264               (symbol_ref "attr_length_save_restore_dltp (insn)")))])
8265
8266 ;; Split out the PIC register save and restore after reload.  This is
8267 ;; done only if the function returns.  As the split is done after reload,
8268 ;; there are some situations in which we unnecessarily save and restore
8269 ;; %r4.  This happens when there is a single call and the PIC register
8270 ;; is "dead" after the call.  This isn't easy to fix as the usage of
8271 ;; the PIC register isn't completely determined until the reload pass.
8272 (define_split
8273   [(parallel [(set (match_operand 0 "" "")
8274                    (call (mem:SI (reg:SI 22))
8275                          (match_operand 1 "" "")))
8276               (clobber (reg:SI 1))
8277               (clobber (reg:SI 2))
8278               (clobber (reg:SI 4))
8279               (use (reg:SI 19))
8280               (use (const_int 1))])]
8281   "!TARGET_64BIT
8282    && reload_completed
8283    && !find_reg_note (insn, REG_NORETURN, NULL_RTX)"
8284   [(set (reg:SI 4) (reg:SI 19))
8285    (parallel [(set (match_dup 0)
8286                    (call (mem:SI (reg:SI 22))
8287                          (match_dup 1)))
8288               (clobber (reg:SI 1))
8289               (clobber (reg:SI 2))
8290               (use (reg:SI 19))
8291               (use (const_int 1))])
8292    (set (reg:SI 19) (reg:SI 4))]
8293   "")
8294
8295 ;; Remove the clobber of register 4 when optimizing.  This has to be
8296 ;; done with a peephole optimization rather than a split because the
8297 ;; split sequence for a call must be longer than one instruction.
8298 (define_peephole2
8299   [(parallel [(set (match_operand 0 "" "")
8300                    (call (mem:SI (reg:SI 22))
8301                          (match_operand 1 "" "")))
8302               (clobber (reg:SI 1))
8303               (clobber (reg:SI 2))
8304               (clobber (reg:SI 4))
8305               (use (reg:SI 19))
8306               (use (const_int 1))])]
8307   "!TARGET_64BIT && reload_completed"
8308   [(parallel [(set (match_dup 0)
8309                    (call (mem:SI (reg:SI 22))
8310                          (match_dup 1)))
8311               (clobber (reg:SI 1))
8312               (clobber (reg:SI 2))
8313               (use (reg:SI 19))
8314               (use (const_int 1))])]
8315   "")
8316
8317 (define_insn "*call_val_reg_pic_post_reload"
8318   [(set (match_operand 0 "" "")
8319         (call (mem:SI (reg:SI 22))
8320               (match_operand 1 "" "i")))
8321    (clobber (reg:SI 1))
8322    (clobber (reg:SI 2))
8323    (use (reg:SI 19))
8324    (use (const_int 1))]
8325   "!TARGET_64BIT"
8326   "*
8327 {
8328   return output_indirect_call (insn, gen_rtx_REG (word_mode, 22));
8329 }"
8330   [(set_attr "type" "dyncall")
8331    (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
8332
8333 ;; This pattern is split if it is necessary to save and restore the
8334 ;; PIC register.
8335 (define_insn "call_val_reg_64bit"
8336   [(set (match_operand 0 "" "")
8337         (call (mem:SI (match_operand:DI 1 "register_operand" "r"))
8338               (match_operand 2 "" "i")))
8339    (clobber (reg:DI 2))
8340    (clobber (reg:DI 4))
8341    (use (reg:DI 27))
8342    (use (reg:DI 29))
8343    (use (const_int 1))]
8344   "TARGET_64BIT"
8345   "*
8346 {
8347   return output_indirect_call (insn, operands[1]);
8348 }"
8349   [(set_attr "type" "dyncall")
8350    (set (attr "length")
8351         (plus (symbol_ref "attr_length_indirect_call (insn)")
8352               (symbol_ref "attr_length_save_restore_dltp (insn)")))])
8353
8354 ;; Split out the PIC register save and restore after reload.  This is
8355 ;; done only if the function returns.  As the split is done after reload,
8356 ;; there are some situations in which we unnecessarily save and restore
8357 ;; %r4.  This happens when there is a single call and the PIC register
8358 ;; is "dead" after the call.  This isn't easy to fix as the usage of
8359 ;; the PIC register isn't completely determined until the reload pass.
8360 (define_split
8361   [(parallel [(set (match_operand 0 "" "")
8362                    (call (mem:SI (match_operand:DI 1 "register_operand" ""))
8363                          (match_operand 2 "" "")))
8364               (clobber (reg:DI 2))
8365               (clobber (reg:DI 4))
8366               (use (reg:DI 27))
8367               (use (reg:DI 29))
8368               (use (const_int 1))])]
8369   "TARGET_64BIT
8370    && reload_completed
8371    && !find_reg_note (insn, REG_NORETURN, NULL_RTX)"
8372   [(set (reg:DI 4) (reg:DI 27))
8373    (parallel [(set (match_dup 0)
8374                    (call (mem:SI (match_dup 1))
8375                          (match_dup 2)))
8376               (clobber (reg:DI 2))
8377               (use (reg:DI 27))
8378               (use (reg:DI 29))
8379               (use (const_int 1))])
8380    (set (reg:DI 27) (reg:DI 4))]
8381   "")
8382
8383 ;; Remove the clobber of register 4 when optimizing.  This has to be
8384 ;; done with a peephole optimization rather than a split because the
8385 ;; split sequence for a call must be longer than one instruction.
8386 (define_peephole2
8387   [(parallel [(set (match_operand 0 "" "")
8388                    (call (mem:SI (match_operand:DI 1 "register_operand" ""))
8389                          (match_operand 2 "" "")))
8390               (clobber (reg:DI 2))
8391               (clobber (reg:DI 4))
8392               (use (reg:DI 27))
8393               (use (reg:DI 29))
8394               (use (const_int 1))])]
8395   "TARGET_64BIT && reload_completed"
8396   [(parallel [(set (match_dup 0)
8397                    (call (mem:SI (match_dup 1))
8398                          (match_dup 2)))
8399               (clobber (reg:DI 2))
8400               (use (reg:DI 27))
8401               (use (reg:DI 29))
8402               (use (const_int 1))])]
8403   "")
8404
8405 (define_insn "*call_val_reg_64bit_post_reload"
8406   [(set (match_operand 0 "" "")
8407         (call (mem:SI (match_operand:DI 1 "register_operand" "r"))
8408               (match_operand 2 "" "i")))
8409    (clobber (reg:DI 2))
8410    (use (reg:DI 27))
8411    (use (reg:DI 29))
8412    (use (const_int 1))]
8413   "TARGET_64BIT"
8414   "*
8415 {
8416   return output_indirect_call (insn, operands[1]);
8417 }"
8418   [(set_attr "type" "dyncall")
8419    (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
8420
8421 ;; Call subroutine returning any type.
8422
8423 (define_expand "untyped_call"
8424   [(parallel [(call (match_operand 0 "" "")
8425                     (const_int 0))
8426               (match_operand 1 "" "")
8427               (match_operand 2 "" "")])]
8428   ""
8429   "
8430 {
8431   int i;
8432
8433   emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, const0_rtx));
8434
8435   for (i = 0; i < XVECLEN (operands[2], 0); i++)
8436     {
8437       rtx set = XVECEXP (operands[2], 0, i);
8438       emit_move_insn (SET_DEST (set), SET_SRC (set));
8439     }
8440
8441   /* The optimizer does not know that the call sets the function value
8442      registers we stored in the result block.  We avoid problems by
8443      claiming that all hard registers are used and clobbered at this
8444      point.  */
8445   emit_insn (gen_blockage ());
8446
8447   DONE;
8448 }")
8449
8450 (define_expand "sibcall"
8451   [(call (match_operand:SI 0 "" "")
8452          (match_operand 1 "" ""))]
8453   "!TARGET_PORTABLE_RUNTIME"
8454   "
8455 {
8456   rtx op, call_insn;
8457   rtx nb = operands[1];
8458
8459   op = XEXP (operands[0], 0);
8460
8461   if (TARGET_64BIT)
8462     {
8463       if (!virtuals_instantiated)
8464         emit_move_insn (arg_pointer_rtx,
8465                         gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
8466                                       GEN_INT (64)));
8467       else
8468         {
8469           /* The loop pass can generate new libcalls after the virtual
8470              registers are instantiated when fpregs are disabled because
8471              the only method that we have for doing DImode multiplication
8472              is with a libcall.  This could be trouble if we haven't
8473              allocated enough space for the outgoing arguments.  */
8474           gcc_assert (INTVAL (nb) <= current_function_outgoing_args_size);
8475
8476           emit_move_insn (arg_pointer_rtx,
8477                           gen_rtx_PLUS (word_mode, stack_pointer_rtx,
8478                                         GEN_INT (STACK_POINTER_OFFSET + 64)));
8479         }
8480     }
8481
8482   /* Indirect sibling calls are not allowed.  */
8483   if (TARGET_64BIT)
8484     call_insn = gen_sibcall_internal_symref_64bit (op, operands[1]);
8485   else
8486     call_insn = gen_sibcall_internal_symref (op, operands[1]);
8487
8488   call_insn = emit_call_insn (call_insn);
8489
8490   if (TARGET_64BIT)
8491     use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), arg_pointer_rtx);
8492
8493   /* We don't have to restore the PIC register.  */
8494   if (flag_pic)
8495     use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), pic_offset_table_rtx);
8496
8497   DONE;
8498 }")
8499
8500 (define_insn "sibcall_internal_symref"
8501   [(call (mem:SI (match_operand 0 "call_operand_address" ""))
8502          (match_operand 1 "" "i"))
8503    (clobber (reg:SI 1))
8504    (use (reg:SI 2))
8505    (use (const_int 0))]
8506   "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
8507   "*
8508 {
8509   output_arg_descriptor (insn);
8510   return output_call (insn, operands[0], 1);
8511 }"
8512   [(set_attr "type" "call")
8513    (set (attr "length") (symbol_ref "attr_length_call (insn, 1)"))])
8514
8515 (define_insn "sibcall_internal_symref_64bit"
8516   [(call (mem:SI (match_operand 0 "call_operand_address" ""))
8517          (match_operand 1 "" "i"))
8518    (clobber (reg:DI 1))
8519    (use (reg:DI 2))
8520    (use (const_int 0))]
8521   "TARGET_64BIT"
8522   "*
8523 {
8524   output_arg_descriptor (insn);
8525   return output_call (insn, operands[0], 1);
8526 }"
8527   [(set_attr "type" "call")
8528    (set (attr "length") (symbol_ref "attr_length_call (insn, 1)"))])
8529
8530 (define_expand "sibcall_value"
8531   [(set (match_operand 0 "" "")
8532                    (call (match_operand:SI 1 "" "")
8533                          (match_operand 2 "" "")))]
8534   "!TARGET_PORTABLE_RUNTIME"
8535   "
8536 {
8537   rtx op, call_insn;
8538   rtx nb = operands[1];
8539
8540   op = XEXP (operands[1], 0);
8541
8542   if (TARGET_64BIT)
8543     {
8544       if (!virtuals_instantiated)
8545         emit_move_insn (arg_pointer_rtx,
8546                         gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
8547                                       GEN_INT (64)));
8548       else
8549         {
8550           /* The loop pass can generate new libcalls after the virtual
8551              registers are instantiated when fpregs are disabled because
8552              the only method that we have for doing DImode multiplication
8553              is with a libcall.  This could be trouble if we haven't
8554              allocated enough space for the outgoing arguments.  */
8555           gcc_assert (INTVAL (nb) <= current_function_outgoing_args_size);
8556
8557           emit_move_insn (arg_pointer_rtx,
8558                           gen_rtx_PLUS (word_mode, stack_pointer_rtx,
8559                                         GEN_INT (STACK_POINTER_OFFSET + 64)));
8560         }
8561     }
8562
8563   /* Indirect sibling calls are not allowed.  */
8564   if (TARGET_64BIT)
8565     call_insn
8566       = gen_sibcall_value_internal_symref_64bit (operands[0], op, operands[2]);
8567   else
8568     call_insn
8569       = gen_sibcall_value_internal_symref (operands[0], op, operands[2]);
8570
8571   call_insn = emit_call_insn (call_insn);
8572
8573   if (TARGET_64BIT)
8574     use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), arg_pointer_rtx);
8575
8576   /* We don't have to restore the PIC register.  */
8577   if (flag_pic)
8578     use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), pic_offset_table_rtx);
8579
8580   DONE;
8581 }")
8582
8583 (define_insn "sibcall_value_internal_symref"
8584   [(set (match_operand 0 "" "")
8585         (call (mem:SI (match_operand 1 "call_operand_address" ""))
8586               (match_operand 2 "" "i")))
8587    (clobber (reg:SI 1))
8588    (use (reg:SI 2))
8589    (use (const_int 0))]
8590   "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
8591   "*
8592 {
8593   output_arg_descriptor (insn);
8594   return output_call (insn, operands[1], 1);
8595 }"
8596   [(set_attr "type" "call")
8597    (set (attr "length") (symbol_ref "attr_length_call (insn, 1)"))])
8598
8599 (define_insn "sibcall_value_internal_symref_64bit"
8600   [(set (match_operand 0 "" "")
8601         (call (mem:SI (match_operand 1 "call_operand_address" ""))
8602               (match_operand 2 "" "i")))
8603    (clobber (reg:DI 1))
8604    (use (reg:DI 2))
8605    (use (const_int 0))]
8606   "TARGET_64BIT"
8607   "*
8608 {
8609   output_arg_descriptor (insn);
8610   return output_call (insn, operands[1], 1);
8611 }"
8612   [(set_attr "type" "call")
8613    (set (attr "length") (symbol_ref "attr_length_call (insn, 1)"))])
8614
8615 (define_insn "nop"
8616   [(const_int 0)]
8617   ""
8618   "nop"
8619   [(set_attr "type" "move")
8620    (set_attr "length" "4")])
8621
8622 ;; These are just placeholders so we know where branch tables
8623 ;; begin and end.
8624 (define_insn "begin_brtab"
8625   [(const_int 1)]
8626   ""
8627   "*
8628 {
8629   /* Only GAS actually supports this pseudo-op.  */
8630   if (TARGET_GAS)
8631     return \".begin_brtab\";
8632   else
8633     return \"\";
8634 }"
8635   [(set_attr "type" "move")
8636    (set_attr "length" "0")])
8637
8638 (define_insn "end_brtab"
8639   [(const_int 2)]
8640   ""
8641   "*
8642 {
8643   /* Only GAS actually supports this pseudo-op.  */
8644   if (TARGET_GAS)
8645     return \".end_brtab\";
8646   else
8647     return \"\";
8648 }"
8649   [(set_attr "type" "move")
8650    (set_attr "length" "0")])
8651
8652 ;;; EH does longjmp's from and within the data section.  Thus,
8653 ;;; an interspace branch is required for the longjmp implementation.
8654 ;;; Registers r1 and r2 are used as scratch registers for the jump
8655 ;;; when necessary.
8656 (define_expand "interspace_jump"
8657   [(parallel
8658      [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8659       (clobber (match_dup 1))])]
8660   ""
8661   "
8662 {
8663   operands[1] = gen_rtx_REG (word_mode, 2);
8664 }")
8665
8666 (define_insn ""
8667   [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8668   (clobber (reg:SI 2))]
8669   "TARGET_PA_20 && !TARGET_64BIT"
8670   "bve%* (%0)"
8671    [(set_attr "type" "branch")
8672     (set_attr "length" "4")])
8673
8674 (define_insn ""
8675   [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8676   (clobber (reg:SI 2))]
8677   "TARGET_NO_SPACE_REGS && !TARGET_64BIT"
8678   "be%* 0(%%sr4,%0)"
8679    [(set_attr "type" "branch")
8680     (set_attr "length" "4")])
8681
8682 (define_insn ""
8683   [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8684   (clobber (reg:SI 2))]
8685   "!TARGET_64BIT"
8686   "ldsid (%%sr0,%0),%%r2\;mtsp %%r2,%%sr0\;be%* 0(%%sr0,%0)"
8687    [(set_attr "type" "branch")
8688     (set_attr "length" "12")])
8689
8690 (define_insn ""
8691   [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8692   (clobber (reg:DI 2))]
8693   "TARGET_64BIT"
8694   "bve%* (%0)"
8695    [(set_attr "type" "branch")
8696     (set_attr "length" "4")])
8697
8698 (define_expand "builtin_longjmp"
8699   [(unspec_volatile [(match_operand 0 "register_operand" "r")] UNSPECV_LONGJMP)]
8700   ""
8701   "
8702 {
8703   /* The elements of the buffer are, in order:  */
8704   rtx fp = gen_rtx_MEM (Pmode, operands[0]);
8705   rtx lab = gen_rtx_MEM (Pmode, plus_constant (operands[0],
8706                          POINTER_SIZE / BITS_PER_UNIT));
8707   rtx stack = gen_rtx_MEM (Pmode, plus_constant (operands[0],
8708                            (POINTER_SIZE * 2) / BITS_PER_UNIT));
8709   rtx pv = gen_rtx_REG (Pmode, 1);
8710
8711   emit_insn (gen_rtx_CLOBBER (VOIDmode,
8712                               gen_rtx_MEM (BLKmode,
8713                                            gen_rtx_SCRATCH (VOIDmode))));
8714   emit_insn (gen_rtx_CLOBBER (VOIDmode,
8715                               gen_rtx_MEM (BLKmode,
8716                                            hard_frame_pointer_rtx)));
8717
8718   /* Restore the frame pointer.  The virtual_stack_vars_rtx is saved
8719      instead of the hard_frame_pointer_rtx in the save area.  We need
8720      to adjust for the offset between these two values when we have
8721      a nonlocal_goto pattern.  When we don't have a nonlocal_goto
8722      pattern, the receiver performs the adjustment.  */
8723 #ifdef HAVE_nonlocal_goto
8724   if (HAVE_nonlocal_goto)
8725     emit_move_insn (virtual_stack_vars_rtx, force_reg (Pmode, fp));
8726   else
8727 #endif
8728     emit_move_insn (hard_frame_pointer_rtx, fp);
8729
8730   /* This bit is the same as expand_builtin_longjmp.  */
8731   emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX);
8732   emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
8733   emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
8734
8735   /* Load the label we are jumping through into r1 so that we know
8736      where to look for it when we get back to setjmp's function for
8737      restoring the gp.  */
8738   emit_move_insn (pv, lab);
8739
8740   /* Prevent the insns above from being scheduled into the delay slot
8741      of the interspace jump because the space register could change.  */
8742   emit_insn (gen_blockage ());
8743
8744   emit_jump_insn (gen_interspace_jump (pv));
8745   emit_barrier ();
8746   DONE;
8747 }")
8748
8749 ;;; Operands 2 and 3 are assumed to be CONST_INTs.
8750 (define_expand "extzv"
8751   [(set (match_operand 0 "register_operand" "")
8752         (zero_extract (match_operand 1 "register_operand" "")
8753                       (match_operand 2 "uint32_operand" "")
8754                       (match_operand 3 "uint32_operand" "")))]
8755   ""
8756   "
8757 {
8758   HOST_WIDE_INT len = INTVAL (operands[2]);
8759   HOST_WIDE_INT pos = INTVAL (operands[3]);
8760
8761   /* PA extraction insns don't support zero length bitfields or fields
8762      extending beyond the left or right-most bits.  Also, we reject lengths
8763      equal to a word as they are better handled by the move patterns.  */
8764   if (len <= 0 || len >= BITS_PER_WORD || pos < 0 || pos + len > BITS_PER_WORD)
8765     FAIL;
8766
8767   /* From mips.md: extract_bit_field doesn't verify that our source
8768      matches the predicate, so check it again here.  */
8769   if (!register_operand (operands[1], VOIDmode))
8770     FAIL;
8771
8772   if (TARGET_64BIT)
8773     emit_insn (gen_extzv_64 (operands[0], operands[1],
8774                              operands[2], operands[3]));
8775   else
8776     emit_insn (gen_extzv_32 (operands[0], operands[1],
8777                              operands[2], operands[3]));
8778   DONE;
8779 }")
8780
8781 (define_insn "extzv_32"
8782   [(set (match_operand:SI 0 "register_operand" "=r")
8783         (zero_extract:SI (match_operand:SI 1 "register_operand" "r")
8784                          (match_operand:SI 2 "uint5_operand" "")
8785                          (match_operand:SI 3 "uint5_operand" "")))]
8786   ""
8787   "{extru|extrw,u} %1,%3+%2-1,%2,%0"
8788   [(set_attr "type" "shift")
8789    (set_attr "length" "4")])
8790
8791 (define_insn ""
8792   [(set (match_operand:SI 0 "register_operand" "=r")
8793         (zero_extract:SI (match_operand:SI 1 "register_operand" "r")
8794                          (const_int 1)
8795                          (match_operand:SI 2 "register_operand" "q")))]
8796   ""
8797   "{vextru %1,1,%0|extrw,u %1,%%sar,1,%0}"
8798   [(set_attr "type" "shift")
8799    (set_attr "length" "4")])
8800
8801 (define_insn "extzv_64"
8802   [(set (match_operand:DI 0 "register_operand" "=r")
8803         (zero_extract:DI (match_operand:DI 1 "register_operand" "r")
8804                          (match_operand:DI 2 "uint32_operand" "")
8805                          (match_operand:DI 3 "uint32_operand" "")))]
8806   "TARGET_64BIT"
8807   "extrd,u %1,%3+%2-1,%2,%0"
8808   [(set_attr "type" "shift")
8809    (set_attr "length" "4")])
8810
8811 (define_insn ""
8812   [(set (match_operand:DI 0 "register_operand" "=r")
8813         (zero_extract:DI (match_operand:DI 1 "register_operand" "r")
8814                          (const_int 1)
8815                          (match_operand:DI 2 "register_operand" "q")))]
8816   "TARGET_64BIT"
8817   "extrd,u %1,%%sar,1,%0"
8818   [(set_attr "type" "shift")
8819    (set_attr "length" "4")])
8820
8821 ;;; Operands 2 and 3 are assumed to be CONST_INTs.
8822 (define_expand "extv"
8823   [(set (match_operand 0 "register_operand" "")
8824         (sign_extract (match_operand 1 "register_operand" "")
8825                       (match_operand 2 "uint32_operand" "")
8826                       (match_operand 3 "uint32_operand" "")))]
8827   ""
8828   "
8829 {
8830   HOST_WIDE_INT len = INTVAL (operands[2]);
8831   HOST_WIDE_INT pos = INTVAL (operands[3]);
8832
8833   /* PA extraction insns don't support zero length bitfields or fields
8834      extending beyond the left or right-most bits.  Also, we reject lengths
8835      equal to a word as they are better handled by the move patterns.  */
8836   if (len <= 0 || len >= BITS_PER_WORD || pos < 0 || pos + len > BITS_PER_WORD)
8837     FAIL;
8838
8839   /* From mips.md: extract_bit_field doesn't verify that our source
8840      matches the predicate, so check it again here.  */
8841   if (!register_operand (operands[1], VOIDmode))
8842     FAIL;
8843
8844   if (TARGET_64BIT)
8845     emit_insn (gen_extv_64 (operands[0], operands[1],
8846                             operands[2], operands[3]));
8847   else
8848     emit_insn (gen_extv_32 (operands[0], operands[1],
8849                             operands[2], operands[3]));
8850   DONE;
8851 }")
8852
8853 (define_insn "extv_32"
8854   [(set (match_operand:SI 0 "register_operand" "=r")
8855         (sign_extract:SI (match_operand:SI 1 "register_operand" "r")
8856                          (match_operand:SI 2 "uint5_operand" "")
8857                          (match_operand:SI 3 "uint5_operand" "")))]
8858   ""
8859   "{extrs|extrw,s} %1,%3+%2-1,%2,%0"
8860   [(set_attr "type" "shift")
8861    (set_attr "length" "4")])
8862
8863 (define_insn ""
8864   [(set (match_operand:SI 0 "register_operand" "=r")
8865         (sign_extract:SI (match_operand:SI 1 "register_operand" "r")
8866                          (const_int 1)
8867                          (match_operand:SI 2 "register_operand" "q")))]
8868   "!TARGET_64BIT"
8869   "{vextrs %1,1,%0|extrw,s %1,%%sar,1,%0}"
8870   [(set_attr "type" "shift")
8871    (set_attr "length" "4")])
8872
8873 (define_insn "extv_64"
8874   [(set (match_operand:DI 0 "register_operand" "=r")
8875         (sign_extract:DI (match_operand:DI 1 "register_operand" "r")
8876                          (match_operand:DI 2 "uint32_operand" "")
8877                          (match_operand:DI 3 "uint32_operand" "")))]
8878   "TARGET_64BIT"
8879   "extrd,s %1,%3+%2-1,%2,%0"
8880   [(set_attr "type" "shift")
8881    (set_attr "length" "4")])
8882
8883 (define_insn ""
8884   [(set (match_operand:DI 0 "register_operand" "=r")
8885         (sign_extract:DI (match_operand:DI 1 "register_operand" "r")
8886                          (const_int 1)
8887                          (match_operand:DI 2 "register_operand" "q")))]
8888   "TARGET_64BIT"
8889   "extrd,s %1,%%sar,1,%0"
8890   [(set_attr "type" "shift")
8891    (set_attr "length" "4")])
8892
8893 ;;; Operands 1 and 2 are assumed to be CONST_INTs.
8894 (define_expand "insv"
8895   [(set (zero_extract (match_operand 0 "register_operand" "")
8896                       (match_operand 1 "uint32_operand" "")
8897                       (match_operand 2 "uint32_operand" ""))
8898         (match_operand 3 "arith5_operand" ""))]
8899   ""
8900   "
8901 {
8902   HOST_WIDE_INT len = INTVAL (operands[1]);
8903   HOST_WIDE_INT pos = INTVAL (operands[2]);
8904
8905   /* PA insertion insns don't support zero length bitfields or fields
8906      extending beyond the left or right-most bits.  Also, we reject lengths
8907      equal to a word as they are better handled by the move patterns.  */
8908   if (len <= 0 || len >= BITS_PER_WORD || pos < 0 || pos + len > BITS_PER_WORD)
8909     FAIL;
8910
8911   /* From mips.md: insert_bit_field doesn't verify that our destination
8912      matches the predicate, so check it again here.  */
8913   if (!register_operand (operands[0], VOIDmode))
8914     FAIL;
8915
8916   if (TARGET_64BIT)
8917     emit_insn (gen_insv_64 (operands[0], operands[1],
8918                             operands[2], operands[3]));
8919   else
8920     emit_insn (gen_insv_32 (operands[0], operands[1],
8921                             operands[2], operands[3]));
8922   DONE;
8923 }")
8924
8925 (define_insn "insv_32"
8926   [(set (zero_extract:SI (match_operand:SI 0 "register_operand" "+r,r")
8927                          (match_operand:SI 1 "uint5_operand" "")
8928                          (match_operand:SI 2 "uint5_operand" ""))
8929         (match_operand:SI 3 "arith5_operand" "r,L"))]
8930   ""
8931   "@
8932    {dep|depw} %3,%2+%1-1,%1,%0
8933    {depi|depwi} %3,%2+%1-1,%1,%0"
8934   [(set_attr "type" "shift,shift")
8935    (set_attr "length" "4,4")])
8936
8937 ;; Optimize insertion of const_int values of type 1...1xxxx.
8938 (define_insn ""
8939   [(set (zero_extract:SI (match_operand:SI 0 "register_operand" "+r")
8940                          (match_operand:SI 1 "uint5_operand" "")
8941                          (match_operand:SI 2 "uint5_operand" ""))
8942         (match_operand:SI 3 "const_int_operand" ""))]
8943   "(INTVAL (operands[3]) & 0x10) != 0 &&
8944    (~INTVAL (operands[3]) & ((1L << INTVAL (operands[1])) - 1) & ~0xf) == 0"
8945   "*
8946 {
8947   operands[3] = GEN_INT ((INTVAL (operands[3]) & 0xf) - 0x10);
8948   return \"{depi|depwi} %3,%2+%1-1,%1,%0\";
8949 }"
8950   [(set_attr "type" "shift")
8951    (set_attr "length" "4")])
8952
8953 (define_insn "insv_64"
8954   [(set (zero_extract:DI (match_operand:DI 0 "register_operand" "+r,r")
8955                          (match_operand:DI 1 "uint32_operand" "")
8956                          (match_operand:DI 2 "uint32_operand" ""))
8957         (match_operand:DI 3 "arith32_operand" "r,L"))]
8958   "TARGET_64BIT"
8959   "@
8960    depd %3,%2+%1-1,%1,%0
8961    depdi %3,%2+%1-1,%1,%0"
8962   [(set_attr "type" "shift,shift")
8963    (set_attr "length" "4,4")])
8964
8965 ;; Optimize insertion of const_int values of type 1...1xxxx.
8966 (define_insn ""
8967   [(set (zero_extract:DI (match_operand:DI 0 "register_operand" "+r")
8968                          (match_operand:DI 1 "uint32_operand" "")
8969                          (match_operand:DI 2 "uint32_operand" ""))
8970         (match_operand:DI 3 "const_int_operand" ""))]
8971   "(INTVAL (operands[3]) & 0x10) != 0
8972    && TARGET_64BIT
8973    && (~INTVAL (operands[3]) & ((1L << INTVAL (operands[1])) - 1) & ~0xf) == 0"
8974   "*
8975 {
8976   operands[3] = GEN_INT ((INTVAL (operands[3]) & 0xf) - 0x10);
8977   return \"depdi %3,%2+%1-1,%1,%0\";
8978 }"
8979   [(set_attr "type" "shift")
8980    (set_attr "length" "4")])
8981
8982 (define_insn ""
8983   [(set (match_operand:DI 0 "register_operand" "=r")
8984         (ashift:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
8985                    (const_int 32)))]
8986   "TARGET_64BIT"
8987   "depd,z %1,31,32,%0"
8988   [(set_attr "type" "shift")
8989    (set_attr "length" "4")])
8990
8991 ;; This insn is used for some loop tests, typically loops reversed when
8992 ;; strength reduction is used.  It is actually created when the instruction
8993 ;; combination phase combines the special loop test.  Since this insn
8994 ;; is both a jump insn and has an output, it must deal with its own
8995 ;; reloads, hence the `m' constraints.  The `!' constraints direct reload
8996 ;; to not choose the register alternatives in the event a reload is needed.
8997 (define_insn "decrement_and_branch_until_zero"
8998   [(set (pc)
8999         (if_then_else
9000           (match_operator 2 "comparison_operator"
9001            [(plus:SI
9002               (match_operand:SI 0 "reg_before_reload_operand" "+!r,!*f,*m")
9003               (match_operand:SI 1 "int5_operand" "L,L,L"))
9004             (const_int 0)])
9005           (label_ref (match_operand 3 "" ""))
9006           (pc)))
9007    (set (match_dup 0)
9008         (plus:SI (match_dup 0) (match_dup 1)))
9009    (clobber (match_scratch:SI 4 "=X,r,r"))]
9010   ""
9011   "* return output_dbra (operands, insn, which_alternative); "
9012 ;; Do not expect to understand this the first time through.
9013 [(set_attr "type" "cbranch,multi,multi")
9014  (set (attr "length")
9015       (if_then_else (eq_attr "alternative" "0")
9016 ;; Loop counter in register case
9017 ;; Short branch has length of 4
9018 ;; Long branch has length of 8, 20, 24 or 28
9019         (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9020                (const_int MAX_12BIT_OFFSET))
9021            (const_int 4)
9022            (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9023                (const_int MAX_17BIT_OFFSET))
9024            (const_int 8)
9025            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9026            (const_int 24)
9027            (eq (symbol_ref "flag_pic") (const_int 0))
9028            (const_int 20)]
9029           (const_int 28))
9030
9031 ;; Loop counter in FP reg case.
9032 ;; Extra goo to deal with additional reload insns.
9033         (if_then_else (eq_attr "alternative" "1")
9034           (if_then_else (lt (match_dup 3) (pc))
9035              (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 24))))
9036                       (const_int MAX_12BIT_OFFSET))
9037                     (const_int 24)
9038                     (lt (abs (minus (match_dup 3) (plus (pc) (const_int 24))))
9039                       (const_int MAX_17BIT_OFFSET))
9040                     (const_int 28)
9041                     (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9042                     (const_int 44)
9043                     (eq (symbol_ref "flag_pic") (const_int 0))
9044                     (const_int 40)]
9045                   (const_int 48))
9046              (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9047                       (const_int MAX_12BIT_OFFSET))
9048                     (const_int 24)
9049                     (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9050                       (const_int MAX_17BIT_OFFSET))
9051                     (const_int 28)
9052                     (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9053                     (const_int 44)
9054                     (eq (symbol_ref "flag_pic") (const_int 0))
9055                     (const_int 40)]
9056                   (const_int 48)))
9057
9058 ;; Loop counter in memory case.
9059 ;; Extra goo to deal with additional reload insns.
9060         (if_then_else (lt (match_dup 3) (pc))
9061              (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
9062                       (const_int MAX_12BIT_OFFSET))
9063                     (const_int 12)
9064                     (lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
9065                       (const_int MAX_17BIT_OFFSET))
9066                     (const_int 16)
9067                     (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9068                     (const_int 32)
9069                     (eq (symbol_ref "flag_pic") (const_int 0))
9070                     (const_int 28)]
9071                   (const_int 36))
9072              (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9073                       (const_int MAX_12BIT_OFFSET))
9074                     (const_int 12)
9075                     (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9076                       (const_int MAX_17BIT_OFFSET))
9077                     (const_int 16)
9078                     (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9079                     (const_int 32)
9080                     (eq (symbol_ref "flag_pic") (const_int 0))
9081                     (const_int 28)]
9082                   (const_int 36))))))])
9083
9084 (define_insn ""
9085   [(set (pc)
9086         (if_then_else
9087           (match_operator 2 "movb_comparison_operator"
9088            [(match_operand:SI 1 "register_operand" "r,r,r,r") (const_int 0)])
9089           (label_ref (match_operand 3 "" ""))
9090           (pc)))
9091    (set (match_operand:SI 0 "reg_before_reload_operand" "=!r,!*f,*m,!*q")
9092         (match_dup 1))]
9093   ""
9094 "* return output_movb (operands, insn, which_alternative, 0); "
9095 ;; Do not expect to understand this the first time through.
9096 [(set_attr "type" "cbranch,multi,multi,multi")
9097  (set (attr "length")
9098       (if_then_else (eq_attr "alternative" "0")
9099 ;; Loop counter in register case
9100 ;; Short branch has length of 4
9101 ;; Long branch has length of 8, 20, 24 or 28
9102         (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9103                (const_int MAX_12BIT_OFFSET))
9104            (const_int 4)
9105            (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9106                (const_int MAX_17BIT_OFFSET))
9107            (const_int 8)
9108            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9109            (const_int 24)
9110            (eq (symbol_ref "flag_pic") (const_int 0))
9111            (const_int 20)]
9112           (const_int 28))
9113
9114 ;; Loop counter in FP reg case.
9115 ;; Extra goo to deal with additional reload insns.
9116         (if_then_else (eq_attr "alternative" "1")
9117           (if_then_else (lt (match_dup 3) (pc))
9118              (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
9119                       (const_int MAX_12BIT_OFFSET))
9120                     (const_int 12)
9121                     (lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
9122                       (const_int MAX_17BIT_OFFSET))
9123                     (const_int 16)
9124                     (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9125                     (const_int 32)
9126                     (eq (symbol_ref "flag_pic") (const_int 0))
9127                     (const_int 28)]
9128                   (const_int 36))
9129              (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9130                       (const_int MAX_12BIT_OFFSET))
9131                     (const_int 12)
9132                     (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9133                       (const_int MAX_17BIT_OFFSET))
9134                     (const_int 16)
9135                     (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9136                     (const_int 32)
9137                     (eq (symbol_ref "flag_pic") (const_int 0))
9138                     (const_int 28)]
9139                   (const_int 36)))
9140
9141 ;; Loop counter in memory or sar case.
9142 ;; Extra goo to deal with additional reload insns.
9143         (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9144                    (const_int MAX_12BIT_OFFSET))
9145                 (const_int 8)
9146                 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9147                   (const_int MAX_17BIT_OFFSET))
9148                 (const_int 12)
9149                 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9150                 (const_int 28)
9151                 (eq (symbol_ref "flag_pic") (const_int 0))
9152                 (const_int 24)]
9153               (const_int 32)))))])
9154
9155 ;; Handle negated branch.
9156 (define_insn ""
9157   [(set (pc)
9158         (if_then_else
9159           (match_operator 2 "movb_comparison_operator"
9160            [(match_operand:SI 1 "register_operand" "r,r,r,r") (const_int 0)])
9161           (pc)
9162           (label_ref (match_operand 3 "" ""))))
9163    (set (match_operand:SI 0 "reg_before_reload_operand" "=!r,!*f,*m,!*q")
9164         (match_dup 1))]
9165   ""
9166 "* return output_movb (operands, insn, which_alternative, 1); "
9167 ;; Do not expect to understand this the first time through.
9168 [(set_attr "type" "cbranch,multi,multi,multi")
9169  (set (attr "length")
9170       (if_then_else (eq_attr "alternative" "0")
9171 ;; Loop counter in register case
9172 ;; Short branch has length of 4
9173 ;; Long branch has length of 8
9174         (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9175                (const_int MAX_12BIT_OFFSET))
9176            (const_int 4)
9177            (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9178                (const_int MAX_17BIT_OFFSET))
9179            (const_int 8)
9180            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9181            (const_int 24)
9182            (eq (symbol_ref "flag_pic") (const_int 0))
9183            (const_int 20)]
9184           (const_int 28))
9185
9186 ;; Loop counter in FP reg case.
9187 ;; Extra goo to deal with additional reload insns.
9188         (if_then_else (eq_attr "alternative" "1")
9189           (if_then_else (lt (match_dup 3) (pc))
9190              (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
9191                       (const_int MAX_12BIT_OFFSET))
9192                     (const_int 12)
9193                     (lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
9194                       (const_int MAX_17BIT_OFFSET))
9195                     (const_int 16)
9196                     (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9197                     (const_int 32)
9198                     (eq (symbol_ref "flag_pic") (const_int 0))
9199                     (const_int 28)]
9200                   (const_int 36))
9201              (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9202                       (const_int MAX_12BIT_OFFSET))
9203                     (const_int 12)
9204                     (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9205                       (const_int MAX_17BIT_OFFSET))
9206                     (const_int 16)
9207                     (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9208                     (const_int 32)
9209                     (eq (symbol_ref "flag_pic") (const_int 0))
9210                     (const_int 28)]
9211                   (const_int 36)))
9212
9213 ;; Loop counter in memory or SAR case.
9214 ;; Extra goo to deal with additional reload insns.
9215         (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9216                    (const_int MAX_12BIT_OFFSET))
9217                 (const_int 8)
9218                 (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9219                   (const_int MAX_17BIT_OFFSET))
9220                 (const_int 12)
9221                 (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9222                 (const_int 28)
9223                 (eq (symbol_ref "flag_pic") (const_int 0))
9224                 (const_int 24)]
9225               (const_int 32)))))])
9226
9227 (define_insn ""
9228   [(set (pc) (label_ref (match_operand 3 "" "" )))
9229    (set (match_operand:SI 0 "ireg_operand" "=r")
9230         (plus:SI (match_operand:SI 1 "ireg_operand" "r")
9231                  (match_operand:SI 2 "ireg_or_int5_operand" "rL")))]
9232   "(reload_completed && operands[0] == operands[1]) || operands[0] == operands[2]"
9233   "*
9234 {
9235   return output_parallel_addb (operands, insn);
9236 }"
9237 [(set_attr "type" "parallel_branch")
9238  (set (attr "length")
9239     (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9240                (const_int MAX_12BIT_OFFSET))
9241            (const_int 4)
9242            (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9243                (const_int MAX_17BIT_OFFSET))
9244            (const_int 8)
9245            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9246            (const_int 24)
9247            (eq (symbol_ref "flag_pic") (const_int 0))
9248            (const_int 20)]
9249           (const_int 28)))])
9250
9251 (define_insn ""
9252   [(set (pc) (label_ref (match_operand 2 "" "" )))
9253    (set (match_operand:SF 0 "ireg_operand" "=r")
9254         (match_operand:SF 1 "ireg_or_int5_operand" "rL"))]
9255   "reload_completed"
9256   "*
9257 {
9258   return output_parallel_movb (operands, insn);
9259 }"
9260 [(set_attr "type" "parallel_branch")
9261  (set (attr "length")
9262     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9263                (const_int MAX_12BIT_OFFSET))
9264            (const_int 4)
9265            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9266                (const_int MAX_17BIT_OFFSET))
9267            (const_int 8)
9268            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9269            (const_int 24)
9270            (eq (symbol_ref "flag_pic") (const_int 0))
9271            (const_int 20)]
9272           (const_int 28)))])
9273
9274 (define_insn ""
9275   [(set (pc) (label_ref (match_operand 2 "" "" )))
9276    (set (match_operand:SI 0 "ireg_operand" "=r")
9277         (match_operand:SI 1 "ireg_or_int5_operand" "rL"))]
9278   "reload_completed"
9279   "*
9280 {
9281   return output_parallel_movb (operands, insn);
9282 }"
9283 [(set_attr "type" "parallel_branch")
9284  (set (attr "length")
9285     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9286                (const_int MAX_12BIT_OFFSET))
9287            (const_int 4)
9288            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9289                (const_int MAX_17BIT_OFFSET))
9290            (const_int 8)
9291            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9292            (const_int 24)
9293            (eq (symbol_ref "flag_pic") (const_int 0))
9294            (const_int 20)]
9295           (const_int 28)))])
9296
9297 (define_insn ""
9298   [(set (pc) (label_ref (match_operand 2 "" "" )))
9299    (set (match_operand:HI 0 "ireg_operand" "=r")
9300         (match_operand:HI 1 "ireg_or_int5_operand" "rL"))]
9301   "reload_completed"
9302   "*
9303 {
9304   return output_parallel_movb (operands, insn);
9305 }"
9306 [(set_attr "type" "parallel_branch")
9307  (set (attr "length")
9308     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9309                (const_int MAX_12BIT_OFFSET))
9310            (const_int 4)
9311            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9312                (const_int MAX_17BIT_OFFSET))
9313            (const_int 8)
9314            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9315            (const_int 24)
9316            (eq (symbol_ref "flag_pic") (const_int 0))
9317            (const_int 20)]
9318           (const_int 28)))])
9319
9320 (define_insn ""
9321   [(set (pc) (label_ref (match_operand 2 "" "" )))
9322    (set (match_operand:QI 0 "ireg_operand" "=r")
9323         (match_operand:QI 1 "ireg_or_int5_operand" "rL"))]
9324   "reload_completed"
9325   "*
9326 {
9327   return output_parallel_movb (operands, insn);
9328 }"
9329 [(set_attr "type" "parallel_branch")
9330  (set (attr "length")
9331     (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9332                (const_int MAX_12BIT_OFFSET))
9333            (const_int 4)
9334            (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9335                (const_int MAX_17BIT_OFFSET))
9336            (const_int 8)
9337            (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9338            (const_int 24)
9339            (eq (symbol_ref "flag_pic") (const_int 0))
9340            (const_int 20)]
9341           (const_int 28)))])
9342
9343 (define_insn ""
9344   [(set (match_operand 0 "register_operand" "=f")
9345         (mult (match_operand 1 "register_operand" "f")
9346               (match_operand 2 "register_operand" "f")))
9347    (set (match_operand 3 "register_operand" "+f")
9348         (plus (match_operand 4 "register_operand" "f")
9349               (match_operand 5 "register_operand" "f")))]
9350   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
9351    && reload_completed && fmpyaddoperands (operands)"
9352   "*
9353 {
9354   if (GET_MODE (operands[0]) == DFmode)
9355     {
9356       if (rtx_equal_p (operands[3], operands[5]))
9357         return \"fmpyadd,dbl %1,%2,%0,%4,%3\";
9358       else
9359         return \"fmpyadd,dbl %1,%2,%0,%5,%3\";
9360     }
9361   else
9362     {
9363       if (rtx_equal_p (operands[3], operands[5]))
9364         return \"fmpyadd,sgl %1,%2,%0,%4,%3\";
9365       else
9366         return \"fmpyadd,sgl %1,%2,%0,%5,%3\";
9367     }
9368 }"
9369   [(set_attr "type" "fpalu")
9370    (set_attr "length" "4")])
9371
9372 (define_insn ""
9373   [(set (match_operand 3 "register_operand" "+f")
9374         (plus (match_operand 4 "register_operand" "f")
9375               (match_operand 5 "register_operand" "f")))
9376    (set (match_operand 0 "register_operand" "=f")
9377         (mult (match_operand 1 "register_operand" "f")
9378               (match_operand 2 "register_operand" "f")))]
9379   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
9380    && reload_completed && fmpyaddoperands (operands)"
9381   "*
9382 {
9383   if (GET_MODE (operands[0]) == DFmode)
9384     {
9385       if (rtx_equal_p (operands[3], operands[5]))
9386         return \"fmpyadd,dbl %1,%2,%0,%4,%3\";
9387       else
9388         return \"fmpyadd,dbl %1,%2,%0,%5,%3\";
9389     }
9390   else
9391     {
9392       if (rtx_equal_p (operands[3], operands[5]))
9393         return \"fmpyadd,sgl %1,%2,%0,%4,%3\";
9394       else
9395         return \"fmpyadd,sgl %1,%2,%0,%5,%3\";
9396     }
9397 }"
9398   [(set_attr "type" "fpalu")
9399    (set_attr "length" "4")])
9400
9401 (define_insn ""
9402   [(set (match_operand 0 "register_operand" "=f")
9403         (mult (match_operand 1 "register_operand" "f")
9404               (match_operand 2 "register_operand" "f")))
9405    (set (match_operand 3 "register_operand" "+f")
9406         (minus (match_operand 4 "register_operand" "f")
9407                (match_operand 5 "register_operand" "f")))]
9408   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
9409    && reload_completed && fmpysuboperands (operands)"
9410   "*
9411 {
9412   if (GET_MODE (operands[0]) == DFmode)
9413     return \"fmpysub,dbl %1,%2,%0,%5,%3\";
9414   else
9415     return \"fmpysub,sgl %1,%2,%0,%5,%3\";
9416 }"
9417   [(set_attr "type" "fpalu")
9418    (set_attr "length" "4")])
9419
9420 (define_insn ""
9421   [(set (match_operand 3 "register_operand" "+f")
9422         (minus (match_operand 4 "register_operand" "f")
9423                (match_operand 5 "register_operand" "f")))
9424    (set (match_operand 0 "register_operand" "=f")
9425         (mult (match_operand 1 "register_operand" "f")
9426               (match_operand 2 "register_operand" "f")))]
9427   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
9428    && reload_completed && fmpysuboperands (operands)"
9429   "*
9430 {
9431   if (GET_MODE (operands[0]) == DFmode)
9432     return \"fmpysub,dbl %1,%2,%0,%5,%3\";
9433   else
9434     return \"fmpysub,sgl %1,%2,%0,%5,%3\";
9435 }"
9436   [(set_attr "type" "fpalu")
9437    (set_attr "length" "4")])
9438
9439 ;; Flush the I and D cache lines from the start address (operand0)
9440 ;; to the end address (operand1).  No lines are flushed if the end
9441 ;; address is less than the start address (unsigned).
9442 ;;
9443 ;; Because the range of memory flushed is variable and the size of
9444 ;; a MEM can only be a CONST_INT, the patterns specify that they
9445 ;; perform an unspecified volatile operation on all memory.
9446 ;;
9447 ;; The address range for an icache flush must lie within a single
9448 ;; space on targets with non-equivalent space registers.
9449 ;;
9450 ;; This is used by the trampoline code for nested functions.
9451 ;;
9452 ;; Operand 0 contains the start address.
9453 ;; Operand 1 contains the end address.
9454 ;; Operand 2 contains the line length to use.
9455 ;; Operands 3 and 4 (icacheflush) are clobbered scratch registers.
9456 (define_insn "dcacheflush"
9457   [(const_int 1)
9458    (unspec_volatile [(mem:BLK (scratch))] UNSPECV_DCACHE)
9459    (use (match_operand 0 "pmode_register_operand" "r"))
9460    (use (match_operand 1 "pmode_register_operand" "r"))
9461    (use (match_operand 2 "pmode_register_operand" "r"))
9462    (clobber (match_scratch 3 "=&0"))]
9463   ""
9464   "*
9465 {
9466   if (TARGET_64BIT)
9467     return \"cmpb,*<<=,n %3,%1,.\;fdc,m %2(%3)\;sync\";
9468   else
9469     return \"cmpb,<<=,n %3,%1,.\;fdc,m %2(%3)\;sync\";
9470 }"
9471   [(set_attr "type" "multi")
9472    (set_attr "length" "12")])
9473
9474 (define_insn "icacheflush"
9475   [(const_int 2)
9476    (unspec_volatile [(mem:BLK (scratch))] UNSPECV_ICACHE)
9477    (use (match_operand 0 "pmode_register_operand" "r"))
9478    (use (match_operand 1 "pmode_register_operand" "r"))
9479    (use (match_operand 2 "pmode_register_operand" "r"))
9480    (clobber (match_operand 3 "pmode_register_operand" "=&r"))
9481    (clobber (match_operand 4 "pmode_register_operand" "=&r"))
9482    (clobber (match_scratch 5 "=&0"))]
9483   ""
9484   "*
9485 {
9486   if (TARGET_64BIT)
9487     return \"mfsp %%sr0,%4\;ldsid (%5),%3\;mtsp %3,%%sr0\;cmpb,*<<=,n %5,%1,.\;fic,m %2(%%sr0,%5)\;sync\;mtsp %4,%%sr0\;nop\;nop\;nop\;nop\;nop\;nop\";
9488   else
9489     return \"mfsp %%sr0,%4\;ldsid (%5),%3\;mtsp %3,%%sr0\;cmpb,<<=,n %5,%1,.\;fic,m %2(%%sr0,%5)\;sync\;mtsp %4,%%sr0\;nop\;nop\;nop\;nop\;nop\;nop\";
9490 }"
9491   [(set_attr "type" "multi")
9492    (set_attr "length" "52")])
9493
9494 ;; An out-of-line prologue.
9495 (define_insn "outline_prologue_call"
9496   [(unspec_volatile [(const_int 0)] UNSPECV_OPC)
9497    (clobber (reg:SI 31))
9498    (clobber (reg:SI 22))
9499    (clobber (reg:SI 21))
9500    (clobber (reg:SI 20))
9501    (clobber (reg:SI 19))
9502    (clobber (reg:SI 1))]
9503   ""
9504   "*
9505 {
9506   extern int frame_pointer_needed;
9507
9508   /* We need two different versions depending on whether or not we
9509      need a frame pointer.   Also note that we return to the instruction
9510      immediately after the branch rather than two instructions after the
9511      break as normally is the case.  */
9512   if (frame_pointer_needed)
9513     {
9514       /* Must import the magic millicode routine(s).  */
9515       output_asm_insn (\".IMPORT __outline_prologue_fp,MILLICODE\", NULL);
9516
9517       if (TARGET_PORTABLE_RUNTIME)
9518         {
9519           output_asm_insn (\"ldil L'__outline_prologue_fp,%%r31\", NULL);
9520           output_asm_insn (\"ble,n R'__outline_prologue_fp(%%sr0,%%r31)\",
9521                            NULL);
9522         }
9523       else
9524         output_asm_insn (\"{bl|b,l},n __outline_prologue_fp,%%r31\", NULL);
9525     }
9526   else
9527     {
9528       /* Must import the magic millicode routine(s).  */
9529       output_asm_insn (\".IMPORT __outline_prologue,MILLICODE\", NULL);
9530
9531       if (TARGET_PORTABLE_RUNTIME)
9532         {
9533           output_asm_insn (\"ldil L'__outline_prologue,%%r31\", NULL);
9534           output_asm_insn (\"ble,n R'__outline_prologue(%%sr0,%%r31)\", NULL);
9535         }
9536       else
9537         output_asm_insn (\"{bl|b,l},n __outline_prologue,%%r31\", NULL);
9538     }
9539   return \"\";
9540 }"
9541   [(set_attr "type" "multi")
9542    (set_attr "length" "8")])
9543
9544 ;; An out-of-line epilogue.
9545 (define_insn "outline_epilogue_call"
9546   [(unspec_volatile [(const_int 1)] UNSPECV_OEC)
9547    (use (reg:SI 29))
9548    (use (reg:SI 28))
9549    (clobber (reg:SI 31))
9550    (clobber (reg:SI 22))
9551    (clobber (reg:SI 21))
9552    (clobber (reg:SI 20))
9553    (clobber (reg:SI 19))
9554    (clobber (reg:SI 2))
9555    (clobber (reg:SI 1))]
9556   ""
9557   "*
9558 {
9559   extern int frame_pointer_needed;
9560
9561   /* We need two different versions depending on whether or not we
9562      need a frame pointer.   Also note that we return to the instruction
9563      immediately after the branch rather than two instructions after the
9564      break as normally is the case.  */
9565   if (frame_pointer_needed)
9566     {
9567       /* Must import the magic millicode routine.  */
9568       output_asm_insn (\".IMPORT __outline_epilogue_fp,MILLICODE\", NULL);
9569
9570       /* The out-of-line prologue will make sure we return to the right
9571          instruction.  */
9572       if (TARGET_PORTABLE_RUNTIME)
9573         {
9574           output_asm_insn (\"ldil L'__outline_epilogue_fp,%%r31\", NULL);
9575           output_asm_insn (\"ble,n R'__outline_epilogue_fp(%%sr0,%%r31)\",
9576                            NULL);
9577         }
9578       else
9579         output_asm_insn (\"{bl|b,l},n __outline_epilogue_fp,%%r31\", NULL);
9580     }
9581   else
9582     {
9583       /* Must import the magic millicode routine.  */
9584       output_asm_insn (\".IMPORT __outline_epilogue,MILLICODE\", NULL);
9585
9586       /* The out-of-line prologue will make sure we return to the right
9587          instruction.  */
9588       if (TARGET_PORTABLE_RUNTIME)
9589         {
9590           output_asm_insn (\"ldil L'__outline_epilogue,%%r31\", NULL);
9591           output_asm_insn (\"ble,n R'__outline_epilogue(%%sr0,%%r31)\", NULL);
9592         }
9593       else
9594         output_asm_insn (\"{bl|b,l},n __outline_epilogue,%%r31\", NULL);
9595     }
9596   return \"\";
9597 }"
9598   [(set_attr "type" "multi")
9599    (set_attr "length" "8")])
9600
9601 ;; Given a function pointer, canonicalize it so it can be 
9602 ;; reliably compared to another function pointer.  */
9603 (define_expand "canonicalize_funcptr_for_compare"
9604   [(set (reg:SI 26) (match_operand:SI 1 "register_operand" ""))
9605    (parallel [(set (reg:SI 29) (unspec:SI [(reg:SI 26)] UNSPEC_CFFC))
9606               (clobber (match_dup 2))
9607               (clobber (reg:SI 26))
9608               (clobber (reg:SI 22))
9609               (clobber (reg:SI 31))])
9610    (set (match_operand:SI 0 "register_operand" "")
9611         (reg:SI 29))]
9612   "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
9613   "
9614 {
9615   if (TARGET_ELF32)
9616     {
9617       rtx canonicalize_funcptr_for_compare_libfunc
9618         = init_one_libfunc (CANONICALIZE_FUNCPTR_FOR_COMPARE_LIBCALL);
9619
9620       emit_library_call_value (canonicalize_funcptr_for_compare_libfunc,
9621                                operands[0], LCT_NORMAL, Pmode,
9622                                1, operands[1], Pmode);
9623       DONE;
9624     }
9625
9626   operands[2] = gen_reg_rtx (SImode);
9627   if (GET_CODE (operands[1]) != REG)
9628     {
9629       rtx tmp = gen_reg_rtx (Pmode);
9630       emit_move_insn (tmp, operands[1]);
9631       operands[1] = tmp;
9632     }
9633 }")
9634
9635 (define_insn "*$$sh_func_adrs"
9636   [(set (reg:SI 29) (unspec:SI [(reg:SI 26)] UNSPEC_CFFC))
9637    (clobber (match_operand:SI 0 "register_operand" "=a"))
9638    (clobber (reg:SI 26))
9639    (clobber (reg:SI 22))
9640    (clobber (reg:SI 31))]
9641   "!TARGET_64BIT"
9642   "*
9643 {
9644   int length = get_attr_length (insn);
9645   rtx xoperands[2];
9646
9647   xoperands[0] = GEN_INT (length - 8);
9648   xoperands[1] = GEN_INT (length - 16);
9649
9650   /* Must import the magic millicode routine.  */
9651   output_asm_insn (\".IMPORT $$sh_func_adrs,MILLICODE\", NULL);
9652
9653   /* This is absolutely amazing.
9654
9655      First, copy our input parameter into %r29 just in case we don't
9656      need to call $$sh_func_adrs.  */
9657   output_asm_insn (\"copy %%r26,%%r29\", NULL);
9658   output_asm_insn (\"{extru|extrw,u} %%r26,31,2,%%r31\", NULL);
9659
9660   /* Next, examine the low two bits in %r26, if they aren't 0x2, then
9661      we use %r26 unchanged.  */
9662   output_asm_insn (\"{comib|cmpib},<>,n 2,%%r31,.+%0\", xoperands);
9663   output_asm_insn (\"ldi 4096,%%r31\", NULL);
9664
9665   /* Next, compare %r26 with 4096, if %r26 is less than or equal to
9666      4096, then again we use %r26 unchanged.  */
9667   output_asm_insn (\"{comb|cmpb},<<,n %%r26,%%r31,.+%1\", xoperands);
9668
9669   /* Finally, call $$sh_func_adrs to extract the function's real add24.  */
9670   return output_millicode_call (insn,
9671                                 gen_rtx_SYMBOL_REF (SImode,
9672                                                     \"$$sh_func_adrs\"));
9673 }"
9674   [(set_attr "type" "multi")
9675    (set (attr "length")
9676         (plus (symbol_ref "attr_length_millicode_call (insn)")
9677               (const_int 20)))])
9678
9679 ;; On the PA, the PIC register is call clobbered, so it must
9680 ;; be saved & restored around calls by the caller.  If the call
9681 ;; doesn't return normally (nonlocal goto, or an exception is
9682 ;; thrown), then the code at the exception handler label must
9683 ;; restore the PIC register.
9684 (define_expand "exception_receiver"
9685   [(const_int 4)]
9686   "flag_pic"
9687   "
9688 {
9689   /* On the 64-bit port, we need a blockage because there is
9690      confusion regarding the dependence of the restore on the
9691      frame pointer.  As a result, the frame pointer and pic
9692      register restores sometimes are interchanged erroneously.  */
9693   if (TARGET_64BIT)
9694     emit_insn (gen_blockage ());
9695   /* Restore the PIC register using hppa_pic_save_rtx ().  The
9696      PIC register is not saved in the frame in 64-bit ABI.  */
9697   emit_move_insn (pic_offset_table_rtx, hppa_pic_save_rtx ());
9698   emit_insn (gen_blockage ());
9699   DONE;
9700 }")
9701
9702 (define_expand "builtin_setjmp_receiver"
9703   [(label_ref (match_operand 0 "" ""))]
9704   "flag_pic"
9705   "
9706 {
9707   if (TARGET_64BIT)
9708     emit_insn (gen_blockage ());
9709   /* Restore the PIC register.  Hopefully, this will always be from
9710      a stack slot.  The only registers that are valid after a
9711      builtin_longjmp are the stack and frame pointers.  */
9712   emit_move_insn (pic_offset_table_rtx, hppa_pic_save_rtx ());
9713   emit_insn (gen_blockage ());
9714   DONE;
9715 }")
9716
9717 ;; Allocate new stack space and update the saved stack pointer in the
9718 ;; frame marker.  The HP C compilers also copy additional words in the
9719 ;; frame marker.  The 64-bit compiler copies words at -48, -32 and -24.
9720 ;; The 32-bit compiler copies the word at -16 (Static Link).  We
9721 ;; currently don't copy these values.
9722 ;;
9723 ;; Since the copy of the frame marker can't be done atomically, I
9724 ;; suspect that using it for unwind purposes may be somewhat unreliable.
9725 ;; The HP compilers appear to raise the stack and copy the frame
9726 ;; marker in a strict instruction sequence.  This suggests that the
9727 ;; unwind library may check for an alloca sequence when ALLOCA_FRAME
9728 ;; is set in the callinfo data.  We currently don't set ALLOCA_FRAME
9729 ;; as GAS doesn't support it, or try to keep the instructions emitted
9730 ;; here in strict sequence.
9731 (define_expand "allocate_stack"
9732   [(match_operand 0 "" "")
9733    (match_operand 1 "" "")]
9734   ""
9735   "
9736 {
9737   rtx addr;
9738
9739   /* Since the stack grows upward, we need to store virtual_stack_dynamic_rtx
9740      in operand 0 before adjusting the stack.  */
9741   emit_move_insn (operands[0], virtual_stack_dynamic_rtx);
9742   anti_adjust_stack (operands[1]);
9743   if (TARGET_HPUX_UNWIND_LIBRARY)
9744     {
9745       addr = gen_rtx_PLUS (word_mode, stack_pointer_rtx,
9746                            GEN_INT (TARGET_64BIT ? -8 : -4));
9747       emit_move_insn (gen_rtx_MEM (word_mode, addr), frame_pointer_rtx);
9748     }
9749   if (!TARGET_64BIT && flag_pic)
9750     {
9751       rtx addr = gen_rtx_PLUS (word_mode, stack_pointer_rtx, GEN_INT (-32));
9752       emit_move_insn (gen_rtx_MEM (word_mode, addr), pic_offset_table_rtx);
9753     }
9754   DONE;
9755 }")
9756
9757 (define_expand "prefetch"
9758   [(match_operand 0 "address_operand" "")
9759    (match_operand 1 "const_int_operand" "")
9760    (match_operand 2 "const_int_operand" "")]
9761   "TARGET_PA_20"
9762 {
9763   int locality = INTVAL (operands[2]);
9764
9765   gcc_assert (locality >= 0 && locality <= 3);
9766
9767   /* Change operand[0] to a MEM as we don't have the infrastructure
9768      to output all the supported address modes for ldw/ldd when we use
9769      the address directly.  However, we do have it for MEMs.  */
9770   operands[0] = gen_rtx_MEM (QImode, operands[0]);
9771
9772   /* If the address isn't valid for the prefetch, replace it.  */
9773   if (locality)
9774     {
9775       if (!prefetch_nocc_operand (operands[0], QImode))
9776         operands[0]
9777           = replace_equiv_address (operands[0],
9778                                    copy_to_mode_reg (Pmode,
9779                                                      XEXP (operands[0], 0)));
9780       emit_insn (gen_prefetch_nocc (operands[0], operands[1], operands[2]));
9781     }
9782   else
9783     {
9784       if (!prefetch_cc_operand (operands[0], QImode))
9785         operands[0]
9786           = replace_equiv_address (operands[0],
9787                                    copy_to_mode_reg (Pmode,
9788                                                      XEXP (operands[0], 0)));
9789       emit_insn (gen_prefetch_cc (operands[0], operands[1], operands[2]));
9790     }
9791   DONE;
9792 })
9793
9794 (define_insn "prefetch_cc"
9795   [(prefetch (match_operand:QI 0 "prefetch_cc_operand" "RW")
9796              (match_operand:SI 1 "const_int_operand" "n")
9797              (match_operand:SI 2 "const_int_operand" "n"))]
9798   "TARGET_PA_20 && operands[2] == const0_rtx"
9799 {
9800   /* The SL cache-control completor indicates good spatial locality but
9801      poor temporal locality.  The ldw instruction with a target of general
9802      register 0 prefetches a cache line for a read.  The ldd instruction
9803      prefetches a cache line for a write.  */
9804   static const char * const instr[2] = {
9805     "ldw%M0,sl %0,%%r0",
9806     "ldd%M0,sl %0,%%r0"
9807   };
9808   int read_or_write = INTVAL (operands[1]);
9809
9810   gcc_assert (read_or_write >= 0 && read_or_write <= 1);
9811
9812   return instr [read_or_write];
9813 }
9814   [(set_attr "type" "load")
9815    (set_attr "length" "4")])
9816
9817 (define_insn "prefetch_nocc"
9818   [(prefetch (match_operand:QI 0 "prefetch_nocc_operand" "A,RQ")
9819              (match_operand:SI 1 "const_int_operand" "n,n")
9820              (match_operand:SI 2 "const_int_operand" "n,n"))]
9821   "TARGET_PA_20 && operands[2] != const0_rtx"
9822 {
9823   /* The ldw instruction with a target of general register 0 prefetches
9824      a cache line for a read.  The ldd instruction prefetches a cache line
9825      for a write.  */
9826   static const char * const instr[2][2] = {
9827     {
9828       "ldw RT'%A0,%%r0",
9829       "ldd RT'%A0,%%r0",
9830     },
9831     {
9832       "ldw%M0 %0,%%r0",
9833       "ldd%M0 %0,%%r0",
9834     }
9835   };
9836   int read_or_write = INTVAL (operands[1]);
9837
9838   gcc_assert (which_alternative == 0 || which_alternative == 1);
9839   gcc_assert (read_or_write >= 0 && read_or_write <= 1);
9840
9841   return instr [which_alternative][read_or_write];
9842 }
9843   [(set_attr "type" "load")
9844    (set_attr "length" "4")])
9845
9846
9847 ;; TLS Support
9848 (define_insn "tgd_load"
9849  [(set (match_operand:SI 0 "register_operand" "=r")
9850        (unspec:SI [(match_operand 1 "tgd_symbolic_operand" "")] UNSPEC_TLSGD))
9851   (clobber (reg:SI 1))]
9852   ""
9853   "*
9854 {
9855   if (flag_pic)
9856     return \"addil LT'%1-$tls_gdidx$,%%r19\;ldo RT'%1-$tls_gdidx$(%%r1),%0\";
9857   else
9858     return \"addil LR'%1-$tls_gdidx$,%%r27\;ldo RR'%1-$tls_gdidx$(%%r1),%0\";
9859 }"
9860   [(set_attr "type" "multi")
9861    (set_attr "length" "8")])
9862
9863 (define_insn "tld_load"
9864  [(set (match_operand:SI 0 "register_operand" "=r")
9865        (unspec:SI [(match_operand 1 "tld_symbolic_operand" "")] UNSPEC_TLSLDM))
9866   (clobber (reg:SI 1))]
9867   ""
9868   "*
9869 {
9870   if (flag_pic)
9871     return \"addil LT'%1-$tls_ldidx$,%%r19\;ldo RT'%1-$tls_ldidx$(%%r1),%0\";
9872   else
9873     return \"addil LR'%1-$tls_ldidx$,%%r27\;ldo RR'%1-$tls_ldidx$(%%r1),%0\";
9874 }"
9875   [(set_attr "type" "multi")
9876    (set_attr "length" "8")])
9877
9878 (define_insn "tld_offset_load"
9879   [(set (match_operand:SI 0 "register_operand" "=r")
9880         (plus:SI (unspec:SI [(match_operand 1 "tld_symbolic_operand" "")] 
9881                             UNSPEC_TLSLDO)
9882                  (match_operand:SI 2 "register_operand" "r")))
9883    (clobber (reg:SI 1))]
9884   ""
9885   "*
9886 {
9887   return \"addil LR'%1-$tls_dtpoff$,%2\;ldo RR'%1-$tls_dtpoff$(%%r1),%0\"; 
9888 }"
9889   [(set_attr "type" "multi")
9890    (set_attr "length" "8")])
9891
9892 (define_insn "tp_load"
9893   [(set (match_operand:SI 0 "register_operand" "=r")
9894         (unspec:SI [(const_int 0)] UNSPEC_TP))]
9895   ""
9896   "{mfctl|mfctl,w} %%cr27,%0"
9897   [(set_attr "type" "multi")
9898    (set_attr "length" "4")])
9899
9900 (define_insn "tie_load"
9901   [(set (match_operand:SI 0 "register_operand" "=r")
9902         (unspec:SI [(match_operand 1 "tie_symbolic_operand" "")] UNSPEC_TLSIE))
9903    (clobber (reg:SI 1))]
9904   ""
9905   "*
9906 {
9907   if (flag_pic)
9908     return \"addil LT'%1-$tls_ieoff$,%%r19\;ldw RT'%1-$tls_ieoff$(%%r1),%0\";
9909   else
9910     return \"addil LR'%1-$tls_ieoff$,%%r27\;ldw RR'%1-$tls_ieoff$(%%r1),%0\";
9911 }"
9912   [(set_attr "type" "multi")
9913    (set_attr "length" "8")])
9914
9915 (define_insn "tle_load"
9916   [(set (match_operand:SI 0 "register_operand" "=r")
9917         (plus:SI (unspec:SI [(match_operand 1 "tle_symbolic_operand" "")] 
9918                             UNSPEC_TLSLE)
9919                  (match_operand:SI 2 "register_operand" "r")))
9920    (clobber (reg:SI 1))]
9921   ""
9922   "addil LR'%1-$tls_leoff$,%2\;ldo RR'%1-$tls_leoff$(%%r1),%0"
9923   [(set_attr "type" "multi")
9924    (set_attr "length" "8")])