OSDN Git Service

* pa.md (extv): Check predicates before emitting extv_32.
[pf3gnuchains/gcc-fork.git] / gcc / config / pa / pa.md
1 ;;- Machine description for HP PA-RISC architecture for GNU C compiler
2 ;;   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
3 ;;   2002 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 GNU CC.
8
9 ;; GNU CC 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 ;; GNU CC 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 GNU CC; see the file COPYING.  If not, write to
21 ;; the Free Software Foundation, 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, 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 ;; Insn type.  Used to default other attribute values.
30
31 ;; type "unary" insns have one input operand (1) and one output operand (0)
32 ;; type "binary" insns have two input operands (1,2) and one output (0)
33
34 (define_attr "type"
35   "move,unary,binary,shift,nullshift,compare,load,store,uncond_branch,branch,cbranch,fbranch,call,dyncall,fpload,fpstore,fpalu,fpcc,fpmulsgl,fpmuldbl,fpdivsgl,fpdivdbl,fpsqrtsgl,fpsqrtdbl,multi,milli,parallel_branch"
36   (const_string "binary"))
37
38 (define_attr "pa_combine_type"
39   "fmpy,faddsub,uncond_branch,addmove,none"
40   (const_string "none"))
41
42 ;; Processor type (for scheduling, not code generation) -- this attribute
43 ;; must exactly match the processor_type enumeration in pa.h.
44 ;;
45 ;; FIXME: Add 800 scheduling for completeness?
46
47 (define_attr "cpu" "700,7100,7100LC,7200,7300,8000" (const (symbol_ref "pa_cpu_attr")))
48
49 ;; Length (in # of bytes).
50 (define_attr "length" ""
51   (cond [(eq_attr "type" "load,fpload")
52          (if_then_else (match_operand 1 "symbolic_memory_operand" "")
53                        (const_int 8) (const_int 4))
54
55          (eq_attr "type" "store,fpstore")
56          (if_then_else (match_operand 0 "symbolic_memory_operand" "")
57                        (const_int 8) (const_int 4))
58
59          (eq_attr "type" "binary,shift,nullshift")
60          (if_then_else (match_operand 2 "arith_operand" "")
61                        (const_int 4) (const_int 12))
62
63          (eq_attr "type" "move,unary,shift,nullshift")
64          (if_then_else (match_operand 1 "arith_operand" "")
65                        (const_int 4) (const_int 8))]
66
67         (const_int 4)))
68
69 (define_asm_attributes
70   [(set_attr "length" "4")
71    (set_attr "type" "multi")])
72
73 ;; Attributes for instruction and branch scheduling
74
75 ;; For conditional branches.
76 (define_attr "in_branch_delay" "false,true"
77   (if_then_else (and (eq_attr "type" "!uncond_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch")
78                      (eq_attr "length" "4"))
79                 (const_string "true")
80                 (const_string "false")))
81
82 ;; Disallow instructions which use the FPU since they will tie up the FPU
83 ;; even if the instruction is nullified.
84 (define_attr "in_nullified_branch_delay" "false,true"
85   (if_then_else (and (eq_attr "type" "!uncond_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpdivdbl,fpsqrtsgl,fpsqrtdbl,parallel_branch")
86                      (eq_attr "length" "4"))
87                 (const_string "true")
88                 (const_string "false")))
89
90 ;; For calls and millicode calls.  Allow unconditional branches in the
91 ;; delay slot.
92 (define_attr "in_call_delay" "false,true"
93   (cond [(and (eq_attr "type" "!uncond_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch")
94               (eq_attr "length" "4"))
95            (const_string "true")
96          (eq_attr "type" "uncond_branch")
97            (if_then_else (ne (symbol_ref "TARGET_JUMP_IN_DELAY")
98                              (const_int 0))
99                          (const_string "true")
100                          (const_string "false"))]
101         (const_string "false")))
102
103
104 ;; Call delay slot description.
105 (define_delay (eq_attr "type" "call")
106   [(eq_attr "in_call_delay" "true") (nil) (nil)])
107
108 ;; millicode call delay slot description.  Note it disallows delay slot
109 ;; when TARGET_PORTABLE_RUNTIME is true.
110 (define_delay (eq_attr "type" "milli")
111   [(and (eq_attr "in_call_delay" "true")
112         (eq (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0)))
113    (nil) (nil)])
114
115 ;; Return and other similar instructions.
116 (define_delay (eq_attr "type" "branch,parallel_branch")
117   [(eq_attr "in_branch_delay" "true") (nil) (nil)])
118
119 ;; Floating point conditional branch delay slot description and
120 (define_delay (eq_attr "type" "fbranch")
121   [(eq_attr "in_branch_delay" "true")
122    (eq_attr "in_nullified_branch_delay" "true")
123    (nil)])
124
125 ;; Integer conditional branch delay slot description.
126 ;; Nullification of conditional branches on the PA is dependent on the
127 ;; direction of the branch.  Forward branches nullify true and
128 ;; backward branches nullify false.  If the direction is unknown
129 ;; then nullification is not allowed.
130 (define_delay (eq_attr "type" "cbranch")
131   [(eq_attr "in_branch_delay" "true")
132    (and (eq_attr "in_nullified_branch_delay" "true")
133         (attr_flag "forward"))
134    (and (eq_attr "in_nullified_branch_delay" "true")
135         (attr_flag "backward"))])
136
137 (define_delay (and (eq_attr "type" "uncond_branch")
138                    (eq (symbol_ref "following_call (insn)")
139                        (const_int 0)))
140   [(eq_attr "in_branch_delay" "true") (nil) (nil)])
141
142 ;; Memory. Disregarding Cache misses, the Mustang memory times are:
143 ;; load: 2, fpload: 3
144 ;; store, fpstore: 3, no D-cache operations should be scheduled.
145
146 ;; The Timex (aka 700) has two floating-point units: ALU, and MUL/DIV/SQRT.
147 ;; Timings:
148 ;; Instruction  Time    Unit    Minimum Distance (unit contention)
149 ;; fcpy         3       ALU     2
150 ;; fabs         3       ALU     2
151 ;; fadd         3       ALU     2
152 ;; fsub         3       ALU     2
153 ;; fcmp         3       ALU     2
154 ;; fcnv         3       ALU     2
155 ;; fmpyadd      3       ALU,MPY 2
156 ;; fmpysub      3       ALU,MPY 2
157 ;; fmpycfxt     3       ALU,MPY 2
158 ;; fmpy         3       MPY     2
159 ;; fmpyi        3       MPY     2
160 ;; fdiv,sgl     10      MPY     10
161 ;; fdiv,dbl     12      MPY     12
162 ;; fsqrt,sgl    14      MPY     14
163 ;; fsqrt,dbl    18      MPY     18
164 ;;
165 ;; We don't model fmpyadd/fmpysub properly as those instructions
166 ;; keep both the FP ALU and MPY units busy.  Given that these
167 ;; processors are obsolete, I'm not going to spend the time to
168 ;; model those instructions correctly.
169
170 (define_automaton "pa700")
171 (define_cpu_unit "dummy_700,mem_700,fpalu_700,fpmpy_700" "pa700")
172
173 (define_insn_reservation "W0" 4
174   (and (eq_attr "type" "fpcc")
175        (eq_attr "cpu" "700"))
176   "fpalu_700*2")
177
178 (define_insn_reservation "W1" 3
179   (and (eq_attr "type" "fpalu")
180        (eq_attr "cpu" "700"))
181   "fpalu_700*2")
182
183 (define_insn_reservation "W2" 3
184   (and (eq_attr "type" "fpmulsgl,fpmuldbl")
185        (eq_attr "cpu" "700"))
186   "fpmpy_700*2")
187
188 (define_insn_reservation "W3" 10
189   (and (eq_attr "type" "fpdivsgl")
190        (eq_attr "cpu" "700"))
191   "fpmpy_700*10")
192
193 (define_insn_reservation "W4" 12
194   (and (eq_attr "type" "fpdivdbl")
195        (eq_attr "cpu" "700"))
196   "fpmpy_700*12")
197
198 (define_insn_reservation "W5" 14
199   (and (eq_attr "type" "fpsqrtsgl")
200        (eq_attr "cpu" "700"))
201   "fpmpy_700*14")
202
203 (define_insn_reservation "W6" 18
204   (and (eq_attr "type" "fpsqrtdbl")
205        (eq_attr "cpu" "700"))
206   "fpmpy_700*18")
207
208 (define_insn_reservation "W7" 2
209   (and (eq_attr "type" "load")
210        (eq_attr "cpu" "700"))
211   "mem_700")
212
213 (define_insn_reservation "W8" 2
214   (and (eq_attr "type" "fpload")
215        (eq_attr "cpu" "700"))
216   "mem_700")
217
218 (define_insn_reservation "W9" 3
219   (and (eq_attr "type" "store")
220        (eq_attr "cpu" "700"))
221   "mem_700*3")
222
223 (define_insn_reservation "W10" 3
224   (and (eq_attr "type" "fpstore")
225        (eq_attr "cpu" "700"))
226   "mem_700*3")
227
228 (define_insn_reservation "W11" 1
229   (and (eq_attr "type" "!fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpdivdbl,fpsqrtsgl,fpsqrtdbl,load,fpload,store,fpstore")
230        (eq_attr "cpu" "700"))
231   "dummy_700")
232
233 ;; We have a bypass for all computations in the FP unit which feed an
234 ;; FP store as long as the sizes are the same.
235 (define_bypass 2 "W1,W2" "W10" "hppa_fpstore_bypass_p")
236 (define_bypass 9 "W3" "W10" "hppa_fpstore_bypass_p")
237 (define_bypass 11 "W4" "W10" "hppa_fpstore_bypass_p")
238 (define_bypass 13 "W5" "W10" "hppa_fpstore_bypass_p")
239 (define_bypass 17 "W6" "W10" "hppa_fpstore_bypass_p")
240
241 ;; We have an "anti-bypass" for FP loads which feed an FP store.
242 (define_bypass 4 "W8" "W10" "hppa_fpstore_bypass_p")
243
244 ;; Function units for the 7100 and 7150.  The 7100/7150 can dual-issue
245 ;; floating point computations with non-floating point computations (fp loads
246 ;; and stores are not fp computations).
247 ;;
248 ;; Memory. Disregarding Cache misses, memory loads take two cycles; stores also
249 ;; take two cycles, during which no Dcache operations should be scheduled.
250 ;; Any special cases are handled in pa_adjust_cost.  The 7100, 7150 and 7100LC
251 ;; all have the same memory characteristics if one disregards cache misses.
252 ;;
253 ;; The 7100/7150 has three floating-point units: ALU, MUL, and DIV.
254 ;; There's no value in modeling the ALU and MUL separately though
255 ;; since there can never be a functional unit conflict given the
256 ;; latency and issue rates for those units.
257 ;;
258 ;; Timings:
259 ;; Instruction  Time    Unit    Minimum Distance (unit contention)
260 ;; fcpy         2       ALU     1
261 ;; fabs         2       ALU     1
262 ;; fadd         2       ALU     1
263 ;; fsub         2       ALU     1
264 ;; fcmp         2       ALU     1
265 ;; fcnv         2       ALU     1
266 ;; fmpyadd      2       ALU,MPY 1
267 ;; fmpysub      2       ALU,MPY 1
268 ;; fmpycfxt     2       ALU,MPY 1
269 ;; fmpy         2       MPY     1
270 ;; fmpyi        2       MPY     1
271 ;; fdiv,sgl     8       DIV     8
272 ;; fdiv,dbl     15      DIV     15
273 ;; fsqrt,sgl    8       DIV     8
274 ;; fsqrt,dbl    15      DIV     15
275
276 (define_automaton "pa7100")
277 (define_cpu_unit "i_7100, f_7100,fpmac_7100,fpdivsqrt_7100,mem_7100" "pa7100")
278
279 (define_insn_reservation "X0" 2
280   (and (eq_attr "type" "fpcc,fpalu,fpmulsgl,fpmuldbl")
281        (eq_attr "cpu" "7100"))
282   "f_7100,fpmac_7100")
283
284 (define_insn_reservation "X1" 8
285   (and (eq_attr "type" "fpdivsgl,fpsqrtsgl")
286        (eq_attr "cpu" "7100"))
287   "f_7100+fpdivsqrt_7100,fpdivsqrt_7100*7")
288
289 (define_insn_reservation "X2" 15
290   (and (eq_attr "type" "fpdivdbl,fpsqrtdbl")
291        (eq_attr "cpu" "7100"))
292   "f_7100+fpdivsqrt_7100,fpdivsqrt_7100*14")
293
294 (define_insn_reservation "X3" 2
295   (and (eq_attr "type" "load")
296        (eq_attr "cpu" "7100"))
297   "i_7100+mem_7100")
298
299 (define_insn_reservation "X4" 2
300   (and (eq_attr "type" "fpload")
301        (eq_attr "cpu" "7100"))
302   "i_7100+mem_7100")
303
304 (define_insn_reservation "X5" 2
305   (and (eq_attr "type" "store")
306        (eq_attr "cpu" "7100"))
307   "i_7100+mem_7100,mem_7100")
308
309 (define_insn_reservation "X6" 2
310   (and (eq_attr "type" "fpstore")
311        (eq_attr "cpu" "7100"))
312   "i_7100+mem_7100,mem_7100")
313
314 (define_insn_reservation "X7" 1
315   (and (eq_attr "type" "!fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpsqrtsgl,fpdivdbl,fpsqrtdbl,load,fpload,store,fpstore")
316        (eq_attr "cpu" "7100"))
317   "i_7100")
318
319 ;; We have a bypass for all computations in the FP unit which feed an
320 ;; FP store as long as the sizes are the same.
321 (define_bypass 1 "X0" "X6" "hppa_fpstore_bypass_p")
322 (define_bypass 7 "X1" "X6" "hppa_fpstore_bypass_p")
323 (define_bypass 14 "X2" "X6" "hppa_fpstore_bypass_p")
324
325 ;; We have an "anti-bypass" for FP loads which feed an FP store.
326 (define_bypass 3 "X4" "X6" "hppa_fpstore_bypass_p")
327
328 ;; The 7100LC has three floating-point units: ALU, MUL, and DIV.
329 ;; There's no value in modeling the ALU and MUL separately though
330 ;; since there can never be a functional unit conflict that
331 ;; can be avoided given the latency, issue rates and mandatory
332 ;; one cycle cpu-wide lock for a double precision fp multiply.
333 ;;
334 ;; Timings:
335 ;; Instruction  Time    Unit    Minimum Distance (unit contention)
336 ;; fcpy         2       ALU     1
337 ;; fabs         2       ALU     1
338 ;; fadd         2       ALU     1
339 ;; fsub         2       ALU     1
340 ;; fcmp         2       ALU     1
341 ;; fcnv         2       ALU     1
342 ;; fmpyadd,sgl  2       ALU,MPY 1
343 ;; fmpyadd,dbl  3       ALU,MPY 2
344 ;; fmpysub,sgl  2       ALU,MPY 1
345 ;; fmpysub,dbl  3       ALU,MPY 2
346 ;; fmpycfxt,sgl 2       ALU,MPY 1
347 ;; fmpycfxt,dbl 3       ALU,MPY 2
348 ;; fmpy,sgl     2       MPY     1
349 ;; fmpy,dbl     3       MPY     2
350 ;; fmpyi        3       MPY     2
351 ;; fdiv,sgl     8       DIV     8
352 ;; fdiv,dbl     15      DIV     15
353 ;; fsqrt,sgl    8       DIV     8
354 ;; fsqrt,dbl    15      DIV     15
355 ;;
356 ;; The PA7200 is just like the PA7100LC except that there is
357 ;; no store-store penalty.
358 ;;
359 ;; The PA7300 is just like the PA7200 except that there is
360 ;; no store-load penalty.
361 ;;
362 ;; Note there are some aspects of the 7100LC we are not modeling
363 ;; at the moment.  I'll be reviewing the 7100LC scheduling info
364 ;; shortly and updating this description.
365 ;;
366 ;;   load-load pairs
367 ;;   store-store pairs
368 ;;   other issue modeling
369
370 (define_automaton "pa7100lc")
371 (define_cpu_unit "i0_7100lc, i1_7100lc, f_7100lc" "pa7100lc")
372 (define_cpu_unit "fpmac_7100lc" "pa7100lc")
373 (define_cpu_unit "mem_7100lc" "pa7100lc")
374
375 ;; Double precision multiplies lock the entire CPU for one
376 ;; cycle.  There is no way to avoid this lock and trying to
377 ;; schedule around the lock is pointless and thus there is no
378 ;; value in trying to model this lock.
379 ;;
380 ;; Not modeling the lock allows us to treat fp multiplies just
381 ;; like any other FP alu instruction.  It allows for a smaller
382 ;; DFA and may reduce register pressure.
383 (define_insn_reservation "Y0" 2
384   (and (eq_attr "type" "fpcc,fpalu,fpmulsgl,fpmuldbl")
385        (eq_attr "cpu" "7100LC,7200,7300"))
386   "f_7100lc,fpmac_7100lc")
387
388 ;; fp division and sqrt instructions lock the entire CPU for
389 ;; 7 cycles (single precision) or 14 cycles (double precision).
390 ;; There is no way to avoid this lock and trying to schedule
391 ;; around the lock is pointless and thus there is no value in
392 ;; trying to model this lock.  Not modeling the lock allows
393 ;; for a smaller DFA and may reduce register pressure.
394 (define_insn_reservation "Y1" 1
395   (and (eq_attr "type" "fpdivsgl,fpsqrtsgl,fpdivdbl,fpsqrtdbl")
396        (eq_attr "cpu" "7100LC,7200,7300"))
397   "f_7100lc")
398
399 (define_insn_reservation "Y2" 2
400   (and (eq_attr "type" "load")
401        (eq_attr "cpu" "7100LC,7200,7300"))
402   "i1_7100lc+mem_7100lc")
403
404 (define_insn_reservation "Y3" 2
405   (and (eq_attr "type" "fpload")
406        (eq_attr "cpu" "7100LC,7200,7300"))
407   "i1_7100lc+mem_7100lc")
408
409 (define_insn_reservation "Y4" 2
410   (and (eq_attr "type" "store")
411        (eq_attr "cpu" "7100LC"))
412   "i1_7100lc+mem_7100lc,mem_7100lc")
413
414 (define_insn_reservation "Y5" 2
415   (and (eq_attr "type" "fpstore")
416        (eq_attr "cpu" "7100LC"))
417   "i1_7100lc+mem_7100lc,mem_7100lc")
418
419 (define_insn_reservation "Y6" 1
420   (and (eq_attr "type" "shift,nullshift")
421        (eq_attr "cpu" "7100LC,7200,7300"))
422   "i1_7100lc")
423
424 (define_insn_reservation "Y7" 1
425   (and (eq_attr "type" "!fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpsqrtsgl,fpdivdbl,fpsqrtdbl,load,fpload,store,fpstore,shift,nullshift")
426        (eq_attr "cpu" "7100LC,7200,7300"))
427   "(i0_7100lc|i1_7100lc)")
428
429 ;; The 7200 has a store-load penalty
430 (define_insn_reservation "Y8" 2
431   (and (eq_attr "type" "store")
432        (eq_attr "cpu" "7200"))
433   "i1_7100lc,mem_7100lc")
434
435 (define_insn_reservation "Y9" 2
436   (and (eq_attr "type" "fpstore")
437        (eq_attr "cpu" "7200"))
438   "i1_7100lc,mem_7100lc")
439
440 ;; The 7300 has no penalty for store-store or store-load
441 (define_insn_reservation "Y10" 2
442   (and (eq_attr "type" "store")
443        (eq_attr "cpu" "7300"))
444   "i1_7100lc")
445
446 (define_insn_reservation "Y11" 2
447   (and (eq_attr "type" "fpstore")
448        (eq_attr "cpu" "7300"))
449   "i1_7100lc")
450
451 ;; We have an "anti-bypass" for FP loads which feed an FP store.
452 (define_bypass 3 "Y3" "Y5,Y9,Y11" "hppa_fpstore_bypass_p")
453
454 ;; Scheduling for the PA8000 is somewhat different than scheduling for a
455 ;; traditional architecture.
456 ;;
457 ;; The PA8000 has a large (56) entry reorder buffer that is split between
458 ;; memory and non-memory operations.
459 ;;
460 ;; The PA8000 can issue two memory and two non-memory operations per cycle to
461 ;; the function units, with the exception of branches and multi-output
462 ;; instructions.  The PA8000 can retire two non-memory operations per cycle
463 ;; and two memory operations per cycle, only one of which may be a store.
464 ;;
465 ;; Given the large reorder buffer, the processor can hide most latencies.
466 ;; According to HP, they've got the best results by scheduling for retirement
467 ;; bandwidth with limited latency scheduling for floating point operations.
468 ;; Latency for integer operations and memory references is ignored.
469 ;;
470 ;;
471 ;; We claim floating point operations have a 2 cycle latency and are
472 ;; fully pipelined, except for div and sqrt which are not pipelined and
473 ;; take from 17 to 31 cycles to complete.
474 ;;
475 ;; It's worth noting that there is no way to saturate all the functional
476 ;; units on the PA8000 as there is not enough issue bandwidth.
477
478 (define_automaton "pa8000")
479 (define_cpu_unit "inm0_8000, inm1_8000, im0_8000, im1_8000" "pa8000")
480 (define_cpu_unit "rnm0_8000, rnm1_8000, rm0_8000, rm1_8000" "pa8000")
481 (define_cpu_unit "store_8000" "pa8000")
482 (define_cpu_unit "f0_8000, f1_8000" "pa8000")
483 (define_cpu_unit "fdivsqrt0_8000, fdivsqrt1_8000" "pa8000")
484 (define_reservation "inm_8000" "inm0_8000 | inm1_8000")
485 (define_reservation "im_8000" "im0_8000 | im1_8000")
486 (define_reservation "rnm_8000" "rnm0_8000 | rnm1_8000")
487 (define_reservation "rm_8000" "rm0_8000 | rm1_8000")
488 (define_reservation "f_8000" "f0_8000 | f1_8000")
489 (define_reservation "fdivsqrt_8000" "fdivsqrt0_8000 | fdivsqrt1_8000")
490
491 ;; We can issue any two memops per cycle, but we can only retire
492 ;; one memory store per cycle.  We assume that the reorder buffer
493 ;; will hide any memory latencies per HP's recommendation.
494 (define_insn_reservation "Z0" 0
495   (and
496     (eq_attr "type" "load,fpload")
497     (eq_attr "cpu" "8000"))
498   "im_8000,rm_8000")
499
500 (define_insn_reservation "Z1" 0
501   (and
502     (eq_attr "type" "store,fpstore")
503     (eq_attr "cpu" "8000"))
504   "im_8000,rm_8000+store_8000")
505
506 ;; We can issue and retire two non-memory operations per cycle with
507 ;; a few exceptions (branches).  This group catches those we want
508 ;; to assume have zero latency.
509 (define_insn_reservation "Z2" 0
510   (and
511     (eq_attr "type" "!load,fpload,store,fpstore,uncond_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch,fpcc,fpalu,fpmulsgl,fpmuldbl,fpsqrtsgl,fpsqrtdbl,fpdivsgl,fpdivdbl")
512     (eq_attr "cpu" "8000"))
513   "inm_8000,rnm_8000")
514
515 ;; Branches use both slots in the non-memory issue and
516 ;; retirement unit.
517 (define_insn_reservation "Z3" 0
518   (and
519     (eq_attr "type" "uncond_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch")
520     (eq_attr "cpu" "8000"))
521   "inm0_8000+inm1_8000,rnm0_8000+rnm1_8000")
522
523 ;; We partial latency schedule the floating point units.
524 ;; They can issue/retire two at a time in the non-memory
525 ;; units.  We fix their latency at 2 cycles and they
526 ;; are fully pipelined.
527 (define_insn_reservation "Z4" 1
528  (and
529    (eq_attr "type" "fpcc,fpalu,fpmulsgl,fpmuldbl")
530    (eq_attr "cpu" "8000"))
531  "inm_8000,f_8000,rnm_8000")
532
533 ;; The fdivsqrt units are not pipelined and have a very long latency.  
534 ;; To keep the DFA from exploding, we do not show all the
535 ;; reservations for the divsqrt unit.
536 (define_insn_reservation "Z5" 17
537  (and
538    (eq_attr "type" "fpdivsgl,fpsqrtsgl")
539    (eq_attr "cpu" "8000"))
540  "inm_8000,fdivsqrt_8000*6,rnm_8000")
541
542 (define_insn_reservation "Z6" 31
543  (and
544    (eq_attr "type" "fpdivdbl,fpsqrtdbl")
545    (eq_attr "cpu" "8000"))
546  "inm_8000,fdivsqrt_8000*6,rnm_8000")
547
548
549 \f
550 ;; Compare instructions.
551 ;; This controls RTL generation and register allocation.
552
553 ;; We generate RTL for comparisons and branches by having the cmpxx
554 ;; patterns store away the operands.  Then, the scc and bcc patterns
555 ;; emit RTL for both the compare and the branch.
556 ;;
557
558 (define_expand "cmpdi"
559   [(set (reg:CC 0)
560         (compare:CC (match_operand:DI 0 "reg_or_0_operand" "")
561                     (match_operand:DI 1 "register_operand" "")))]
562   "TARGET_64BIT"
563
564   "
565 {
566  hppa_compare_op0 = operands[0];
567  hppa_compare_op1 = operands[1];
568  hppa_branch_type = CMP_SI;
569  DONE;
570 }")
571
572 (define_expand "cmpsi"
573   [(set (reg:CC 0)
574         (compare:CC (match_operand:SI 0 "reg_or_0_operand" "")
575                     (match_operand:SI 1 "arith5_operand" "")))]
576   ""
577   "
578 {
579  hppa_compare_op0 = operands[0];
580  hppa_compare_op1 = operands[1];
581  hppa_branch_type = CMP_SI;
582  DONE;
583 }")
584
585 (define_expand "cmpsf"
586   [(set (reg:CCFP 0)
587         (compare:CCFP (match_operand:SF 0 "reg_or_0_operand" "")
588                       (match_operand:SF 1 "reg_or_0_operand" "")))]
589   "! TARGET_SOFT_FLOAT"
590   "
591 {
592   hppa_compare_op0 = operands[0];
593   hppa_compare_op1 = operands[1];
594   hppa_branch_type = CMP_SF;
595   DONE;
596 }")
597
598 (define_expand "cmpdf"
599   [(set (reg:CCFP 0)
600       (compare:CCFP (match_operand:DF 0 "reg_or_0_operand" "")
601                     (match_operand:DF 1 "reg_or_0_operand" "")))]
602   "! TARGET_SOFT_FLOAT"
603   "
604 {
605   hppa_compare_op0 = operands[0];
606   hppa_compare_op1 = operands[1];
607   hppa_branch_type = CMP_DF;
608   DONE;
609 }")
610
611 (define_insn ""
612   [(set (reg:CCFP 0)
613         (match_operator:CCFP 2 "comparison_operator"
614                              [(match_operand:SF 0 "reg_or_0_operand" "fG")
615                               (match_operand:SF 1 "reg_or_0_operand" "fG")]))]
616   "! TARGET_SOFT_FLOAT"
617   "fcmp,sgl,%Y2 %f0,%f1"
618   [(set_attr "length" "4")
619    (set_attr "type" "fpcc")])
620
621 (define_insn ""
622   [(set (reg:CCFP 0)
623         (match_operator:CCFP 2 "comparison_operator"
624                              [(match_operand:DF 0 "reg_or_0_operand" "fG")
625                               (match_operand:DF 1 "reg_or_0_operand" "fG")]))]
626   "! TARGET_SOFT_FLOAT"
627   "fcmp,dbl,%Y2 %f0,%f1"
628   [(set_attr "length" "4")
629    (set_attr "type" "fpcc")])
630
631 ;; scc insns.
632
633 (define_expand "seq"
634   [(set (match_operand:SI 0 "register_operand" "")
635         (eq:SI (match_dup 1)
636                (match_dup 2)))]
637   "!TARGET_64BIT"
638   "
639 {
640   /* fp scc patterns rarely match, and are not a win on the PA.  */
641   if (hppa_branch_type != CMP_SI)
642     FAIL;
643   /* set up operands from compare.  */
644   operands[1] = hppa_compare_op0;
645   operands[2] = hppa_compare_op1;
646   /* fall through and generate default code */
647 }")
648
649 (define_expand "sne"
650   [(set (match_operand:SI 0 "register_operand" "")
651         (ne:SI (match_dup 1)
652                (match_dup 2)))]
653   "!TARGET_64BIT"
654   "
655 {
656   /* fp scc patterns rarely match, and are not a win on the PA.  */
657   if (hppa_branch_type != CMP_SI)
658     FAIL;
659   operands[1] = hppa_compare_op0;
660   operands[2] = hppa_compare_op1;
661 }")
662
663 (define_expand "slt"
664   [(set (match_operand:SI 0 "register_operand" "")
665         (lt:SI (match_dup 1)
666                (match_dup 2)))]
667   "!TARGET_64BIT"
668   "
669 {
670   /* fp scc patterns rarely match, and are not a win on the PA.  */
671   if (hppa_branch_type != CMP_SI)
672     FAIL;
673   operands[1] = hppa_compare_op0;
674   operands[2] = hppa_compare_op1;
675 }")
676
677 (define_expand "sgt"
678   [(set (match_operand:SI 0 "register_operand" "")
679         (gt:SI (match_dup 1)
680                (match_dup 2)))]
681   "!TARGET_64BIT"
682   "
683 {
684   /* fp scc patterns rarely match, and are not a win on the PA.  */
685   if (hppa_branch_type != CMP_SI)
686     FAIL;
687   operands[1] = hppa_compare_op0;
688   operands[2] = hppa_compare_op1;
689 }")
690
691 (define_expand "sle"
692   [(set (match_operand:SI 0 "register_operand" "")
693         (le:SI (match_dup 1)
694                (match_dup 2)))]
695   "!TARGET_64BIT"
696   "
697 {
698   /* fp scc patterns rarely match, and are not a win on the PA.  */
699   if (hppa_branch_type != CMP_SI)
700     FAIL;
701   operands[1] = hppa_compare_op0;
702   operands[2] = hppa_compare_op1;
703 }")
704
705 (define_expand "sge"
706   [(set (match_operand:SI 0 "register_operand" "")
707         (ge:SI (match_dup 1)
708                (match_dup 2)))]
709   "!TARGET_64BIT"
710   "
711 {
712   /* fp scc patterns rarely match, and are not a win on the PA.  */
713   if (hppa_branch_type != CMP_SI)
714     FAIL;
715   operands[1] = hppa_compare_op0;
716   operands[2] = hppa_compare_op1;
717 }")
718
719 (define_expand "sltu"
720   [(set (match_operand:SI 0 "register_operand" "")
721         (ltu:SI (match_dup 1)
722                 (match_dup 2)))]
723   "!TARGET_64BIT"
724   "
725 {
726   if (hppa_branch_type != CMP_SI)
727     FAIL;
728   operands[1] = hppa_compare_op0;
729   operands[2] = hppa_compare_op1;
730 }")
731
732 (define_expand "sgtu"
733   [(set (match_operand:SI 0 "register_operand" "")
734         (gtu:SI (match_dup 1)
735                 (match_dup 2)))]
736   "!TARGET_64BIT"
737   "
738 {
739   if (hppa_branch_type != CMP_SI)
740     FAIL;
741   operands[1] = hppa_compare_op0;
742   operands[2] = hppa_compare_op1;
743 }")
744
745 (define_expand "sleu"
746   [(set (match_operand:SI 0 "register_operand" "")
747         (leu:SI (match_dup 1)
748                 (match_dup 2)))]
749   "!TARGET_64BIT"
750   "
751 {
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 "sgeu"
759   [(set (match_operand:SI 0 "register_operand" "")
760         (geu:SI (match_dup 1)
761                 (match_dup 2)))]
762   "!TARGET_64BIT"
763   "
764 {
765   if (hppa_branch_type != CMP_SI)
766     FAIL;
767   operands[1] = hppa_compare_op0;
768   operands[2] = hppa_compare_op1;
769 }")
770
771 ;; Instruction canonicalization puts immediate operands second, which
772 ;; is the reverse of what we want.
773
774 (define_insn "scc"
775   [(set (match_operand:SI 0 "register_operand" "=r")
776         (match_operator:SI 3 "comparison_operator"
777                            [(match_operand:SI 1 "register_operand" "r")
778                             (match_operand:SI 2 "arith11_operand" "rI")]))]
779   ""
780   "{com%I2clr|cmp%I2clr},%B3 %2,%1,%0\;ldi 1,%0"
781   [(set_attr "type" "binary")
782    (set_attr "length" "8")])
783
784 (define_insn ""
785   [(set (match_operand:DI 0 "register_operand" "=r")
786         (match_operator:DI 3 "comparison_operator"
787                            [(match_operand:DI 1 "register_operand" "r")
788                             (match_operand:DI 2 "arith11_operand" "rI")]))]
789   "TARGET_64BIT"
790   "cmp%I2clr,*%B3 %2,%1,%0\;ldi 1,%0"
791   [(set_attr "type" "binary")
792    (set_attr "length" "8")])
793
794 (define_insn "iorscc"
795   [(set (match_operand:SI 0 "register_operand" "=r")
796         (ior:SI (match_operator:SI 3 "comparison_operator"
797                                    [(match_operand:SI 1 "register_operand" "r")
798                                     (match_operand:SI 2 "arith11_operand" "rI")])
799                 (match_operator:SI 6 "comparison_operator"
800                                    [(match_operand:SI 4 "register_operand" "r")
801                                     (match_operand:SI 5 "arith11_operand" "rI")])))]
802   ""
803   "{com%I2clr|cmp%I2clr},%S3 %2,%1,%%r0\;{com%I5clr|cmp%I5clr},%B6 %5,%4,%0\;ldi 1,%0"
804   [(set_attr "type" "binary")
805    (set_attr "length" "12")])
806
807 (define_insn ""
808   [(set (match_operand:DI 0 "register_operand" "=r")
809         (ior:DI (match_operator:DI 3 "comparison_operator"
810                                    [(match_operand:DI 1 "register_operand" "r")
811                                     (match_operand:DI 2 "arith11_operand" "rI")])
812                 (match_operator:DI 6 "comparison_operator"
813                                    [(match_operand:DI 4 "register_operand" "r")
814                                     (match_operand:DI 5 "arith11_operand" "rI")])))]
815   "TARGET_64BIT"
816   "cmp%I2clr,*%S3 %2,%1,%%r0\;cmp%I5clr,*%B6 %5,%4,%0\;ldi 1,%0"
817   [(set_attr "type" "binary")
818    (set_attr "length" "12")])
819
820 ;; Combiner patterns for common operations performed with the output
821 ;; from an scc insn (negscc and incscc).
822 (define_insn "negscc"
823   [(set (match_operand:SI 0 "register_operand" "=r")
824         (neg:SI (match_operator:SI 3 "comparison_operator"
825                [(match_operand:SI 1 "register_operand" "r")
826                 (match_operand:SI 2 "arith11_operand" "rI")])))]
827   ""
828   "{com%I2clr|cmp%I2clr},%B3 %2,%1,%0\;ldi -1,%0"
829   [(set_attr "type" "binary")
830    (set_attr "length" "8")])
831
832 (define_insn ""
833   [(set (match_operand:DI 0 "register_operand" "=r")
834         (neg:DI (match_operator:DI 3 "comparison_operator"
835                [(match_operand:DI 1 "register_operand" "r")
836                 (match_operand:DI 2 "arith11_operand" "rI")])))]
837   "TARGET_64BIT"
838   "cmp%I2clr,*%B3 %2,%1,%0\;ldi -1,%0"
839   [(set_attr "type" "binary")
840    (set_attr "length" "8")])
841
842 ;; Patterns for adding/subtracting the result of a boolean expression from
843 ;; a register.  First we have special patterns that make use of the carry
844 ;; bit, and output only two instructions.  For the cases we can't in
845 ;; general do in two instructions, the incscc pattern at the end outputs
846 ;; two or three instructions.
847
848 (define_insn ""
849   [(set (match_operand:SI 0 "register_operand" "=r")
850         (plus:SI (leu:SI (match_operand:SI 2 "register_operand" "r")
851                          (match_operand:SI 3 "arith11_operand" "rI"))
852                  (match_operand:SI 1 "register_operand" "r")))]
853   ""
854   "sub%I3 %3,%2,%%r0\;{addc|add,c} %%r0,%1,%0"
855   [(set_attr "type" "binary")
856    (set_attr "length" "8")])
857
858 (define_insn ""
859   [(set (match_operand:DI 0 "register_operand" "=r")
860         (plus:DI (leu:DI (match_operand:DI 2 "register_operand" "r")
861                          (match_operand:DI 3 "arith11_operand" "rI"))
862                  (match_operand:DI 1 "register_operand" "r")))]
863   "TARGET_64BIT"
864   "sub%I3 %3,%2,%%r0\;add,dc %%r0,%1,%0"
865   [(set_attr "type" "binary")
866    (set_attr "length" "8")])
867
868 ; This need only accept registers for op3, since canonicalization
869 ; replaces geu with gtu when op3 is an integer.
870 (define_insn ""
871   [(set (match_operand:SI 0 "register_operand" "=r")
872         (plus:SI (geu:SI (match_operand:SI 2 "register_operand" "r")
873                          (match_operand:SI 3 "register_operand" "r"))
874                  (match_operand:SI 1 "register_operand" "r")))]
875   ""
876   "sub %2,%3,%%r0\;{addc|add,c} %%r0,%1,%0"
877   [(set_attr "type" "binary")
878    (set_attr "length" "8")])
879
880 (define_insn ""
881   [(set (match_operand:DI 0 "register_operand" "=r")
882         (plus:DI (geu:DI (match_operand:DI 2 "register_operand" "r")
883                          (match_operand:DI 3 "register_operand" "r"))
884                  (match_operand:DI 1 "register_operand" "r")))]
885   "TARGET_64BIT"
886   "sub %2,%3,%%r0\;add,dc %%r0,%1,%0"
887   [(set_attr "type" "binary")
888    (set_attr "length" "8")])
889
890 ; Match only integers for op3 here.  This is used as canonical form of the
891 ; geu pattern when op3 is an integer.  Don't match registers since we can't
892 ; make better code than the general incscc pattern.
893 (define_insn ""
894   [(set (match_operand:SI 0 "register_operand" "=r")
895         (plus:SI (gtu:SI (match_operand:SI 2 "register_operand" "r")
896                          (match_operand:SI 3 "int11_operand" "I"))
897                  (match_operand:SI 1 "register_operand" "r")))]
898   ""
899   "addi %k3,%2,%%r0\;{addc|add,c} %%r0,%1,%0"
900   [(set_attr "type" "binary")
901    (set_attr "length" "8")])
902
903 (define_insn ""
904   [(set (match_operand:DI 0 "register_operand" "=r")
905         (plus:DI (gtu:DI (match_operand:DI 2 "register_operand" "r")
906                          (match_operand:DI 3 "int11_operand" "I"))
907                  (match_operand:DI 1 "register_operand" "r")))]
908   "TARGET_64BIT"
909   "addi %k3,%2,%%r0\;add,dc %%r0,%1,%0"
910   [(set_attr "type" "binary")
911    (set_attr "length" "8")])
912
913 (define_insn "incscc"
914   [(set (match_operand:SI 0 "register_operand" "=r,r")
915         (plus:SI (match_operator:SI 4 "comparison_operator"
916                     [(match_operand:SI 2 "register_operand" "r,r")
917                      (match_operand:SI 3 "arith11_operand" "rI,rI")])
918                  (match_operand:SI 1 "register_operand" "0,?r")))]
919   ""
920   "@
921    {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi 1,%0,%0
922    {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi,tr 1,%1,%0\;copy %1,%0"
923   [(set_attr "type" "binary,binary")
924    (set_attr "length" "8,12")])
925
926 (define_insn ""
927   [(set (match_operand:DI 0 "register_operand" "=r,r")
928         (plus:DI (match_operator:DI 4 "comparison_operator"
929                     [(match_operand:DI 2 "register_operand" "r,r")
930                      (match_operand:DI 3 "arith11_operand" "rI,rI")])
931                  (match_operand:DI 1 "register_operand" "0,?r")))]
932   "TARGET_64BIT"
933   "@
934    cmp%I3clr,*%B4 %3,%2,%%r0\;addi 1,%0,%0
935    cmp%I3clr,*%B4 %3,%2,%%r0\;addi,tr 1,%1,%0\;copy %1,%0"
936   [(set_attr "type" "binary,binary")
937    (set_attr "length" "8,12")])
938
939 (define_insn ""
940   [(set (match_operand:SI 0 "register_operand" "=r")
941         (minus:SI (match_operand:SI 1 "register_operand" "r")
942                   (gtu:SI (match_operand:SI 2 "register_operand" "r")
943                           (match_operand:SI 3 "arith11_operand" "rI"))))]
944   ""
945   "sub%I3 %3,%2,%%r0\;{subb|sub,b} %1,%%r0,%0"
946   [(set_attr "type" "binary")
947    (set_attr "length" "8")])
948
949 (define_insn ""
950   [(set (match_operand:DI 0 "register_operand" "=r")
951         (minus:DI (match_operand:DI 1 "register_operand" "r")
952                   (gtu:DI (match_operand:DI 2 "register_operand" "r")
953                           (match_operand:DI 3 "arith11_operand" "rI"))))]
954   "TARGET_64BIT"
955   "sub%I3 %3,%2,%%r0\;sub,db %1,%%r0,%0"
956   [(set_attr "type" "binary")
957    (set_attr "length" "8")])
958
959 (define_insn ""
960   [(set (match_operand:SI 0 "register_operand" "=r")
961         (minus:SI (minus:SI (match_operand:SI 1 "register_operand" "r")
962                             (gtu:SI (match_operand:SI 2 "register_operand" "r")
963                                     (match_operand:SI 3 "arith11_operand" "rI")))
964                   (match_operand:SI 4 "register_operand" "r")))]
965   ""
966   "sub%I3 %3,%2,%%r0\;{subb|sub,b} %1,%4,%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         (minus:DI (minus:DI (match_operand:DI 1 "register_operand" "r")
973                             (gtu:DI (match_operand:DI 2 "register_operand" "r")
974                                     (match_operand:DI 3 "arith11_operand" "rI")))
975                   (match_operand:DI 4 "register_operand" "r")))]
976   "TARGET_64BIT"
977   "sub%I3 %3,%2,%%r0\;sub,db %1,%4,%0"
978   [(set_attr "type" "binary")
979    (set_attr "length" "8")])
980
981 ; This need only accept registers for op3, since canonicalization
982 ; replaces ltu with leu when op3 is an integer.
983 (define_insn ""
984   [(set (match_operand:SI 0 "register_operand" "=r")
985         (minus:SI (match_operand:SI 1 "register_operand" "r")
986                   (ltu:SI (match_operand:SI 2 "register_operand" "r")
987                           (match_operand:SI 3 "register_operand" "r"))))]
988   ""
989   "sub %2,%3,%%r0\;{subb|sub,b} %1,%%r0,%0"
990   [(set_attr "type" "binary")
991    (set_attr "length" "8")])
992
993 (define_insn ""
994   [(set (match_operand:DI 0 "register_operand" "=r")
995         (minus:DI (match_operand:DI 1 "register_operand" "r")
996                   (ltu:DI (match_operand:DI 2 "register_operand" "r")
997                           (match_operand:DI 3 "register_operand" "r"))))]
998   "TARGET_64BIT"
999   "sub %2,%3,%%r0\;sub,db %1,%%r0,%0"
1000   [(set_attr "type" "binary")
1001    (set_attr "length" "8")])
1002
1003 (define_insn ""
1004   [(set (match_operand:SI 0 "register_operand" "=r")
1005         (minus:SI (minus:SI (match_operand:SI 1 "register_operand" "r")
1006                             (ltu:SI (match_operand:SI 2 "register_operand" "r")
1007                                     (match_operand:SI 3 "register_operand" "r")))
1008                   (match_operand:SI 4 "register_operand" "r")))]
1009   ""
1010   "sub %2,%3,%%r0\;{subb|sub,b} %1,%4,%0"
1011   [(set_attr "type" "binary")
1012    (set_attr "length" "8")])
1013
1014 (define_insn ""
1015   [(set (match_operand:DI 0 "register_operand" "=r")
1016         (minus:DI (minus:DI (match_operand:DI 1 "register_operand" "r")
1017                             (ltu:DI (match_operand:DI 2 "register_operand" "r")
1018                                     (match_operand:DI 3 "register_operand" "r")))
1019                   (match_operand:DI 4 "register_operand" "r")))]
1020   "TARGET_64BIT"
1021   "sub %2,%3,%%r0\;sub,db %1,%4,%0"
1022   [(set_attr "type" "binary")
1023    (set_attr "length" "8")])
1024
1025 ; Match only integers for op3 here.  This is used as canonical form of the
1026 ; ltu pattern when op3 is an integer.  Don't match registers since we can't
1027 ; make better code than the general incscc pattern.
1028 (define_insn ""
1029   [(set (match_operand:SI 0 "register_operand" "=r")
1030         (minus:SI (match_operand:SI 1 "register_operand" "r")
1031                   (leu:SI (match_operand:SI 2 "register_operand" "r")
1032                           (match_operand:SI 3 "int11_operand" "I"))))]
1033   ""
1034   "addi %k3,%2,%%r0\;{subb|sub,b} %1,%%r0,%0"
1035   [(set_attr "type" "binary")
1036    (set_attr "length" "8")])
1037
1038 (define_insn ""
1039   [(set (match_operand:DI 0 "register_operand" "=r")
1040         (minus:DI (match_operand:DI 1 "register_operand" "r")
1041                   (leu:DI (match_operand:DI 2 "register_operand" "r")
1042                           (match_operand:DI 3 "int11_operand" "I"))))]
1043   "TARGET_64BIT"
1044   "addi %k3,%2,%%r0\;sub,db %1,%%r0,%0"
1045   [(set_attr "type" "binary")
1046    (set_attr "length" "8")])
1047
1048 (define_insn ""
1049   [(set (match_operand:SI 0 "register_operand" "=r")
1050         (minus:SI (minus:SI (match_operand:SI 1 "register_operand" "r")
1051                             (leu:SI (match_operand:SI 2 "register_operand" "r")
1052                                     (match_operand:SI 3 "int11_operand" "I")))
1053                   (match_operand:SI 4 "register_operand" "r")))]
1054   ""
1055   "addi %k3,%2,%%r0\;{subb|sub,b} %1,%4,%0"
1056   [(set_attr "type" "binary")
1057    (set_attr "length" "8")])
1058
1059 (define_insn ""
1060   [(set (match_operand:DI 0 "register_operand" "=r")
1061         (minus:DI (minus:DI (match_operand:DI 1 "register_operand" "r")
1062                             (leu:DI (match_operand:DI 2 "register_operand" "r")
1063                                     (match_operand:DI 3 "int11_operand" "I")))
1064                   (match_operand:DI 4 "register_operand" "r")))]
1065   "TARGET_64BIT"
1066   "addi %k3,%2,%%r0\;sub,db %1,%4,%0"
1067   [(set_attr "type" "binary")
1068    (set_attr "length" "8")])
1069
1070 (define_insn "decscc"
1071   [(set (match_operand:SI 0 "register_operand" "=r,r")
1072         (minus:SI (match_operand:SI 1 "register_operand" "0,?r")
1073                   (match_operator:SI 4 "comparison_operator"
1074                      [(match_operand:SI 2 "register_operand" "r,r")
1075                       (match_operand:SI 3 "arith11_operand" "rI,rI")])))]
1076   ""
1077   "@
1078    {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi -1,%0,%0
1079    {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi,tr -1,%1,%0\;copy %1,%0"
1080   [(set_attr "type" "binary,binary")
1081    (set_attr "length" "8,12")])
1082
1083 (define_insn ""
1084   [(set (match_operand:DI 0 "register_operand" "=r,r")
1085         (minus:DI (match_operand:DI 1 "register_operand" "0,?r")
1086                   (match_operator:DI 4 "comparison_operator"
1087                      [(match_operand:DI 2 "register_operand" "r,r")
1088                       (match_operand:DI 3 "arith11_operand" "rI,rI")])))]
1089   "TARGET_64BIT"
1090   "@
1091    cmp%I3clr,*%B4 %3,%2,%%r0\;addi -1,%0,%0
1092    cmp%I3clr,*%B4 %3,%2,%%r0\;addi,tr -1,%1,%0\;copy %1,%0"
1093   [(set_attr "type" "binary,binary")
1094    (set_attr "length" "8,12")])
1095
1096 ; Patterns for max and min.  (There is no need for an earlyclobber in the
1097 ; last alternative since the middle alternative will match if op0 == op1.)
1098
1099 (define_insn "sminsi3"
1100   [(set (match_operand:SI 0 "register_operand" "=r,r,r")
1101         (smin:SI (match_operand:SI 1 "register_operand" "%0,0,r")
1102                  (match_operand:SI 2 "arith11_operand" "r,I,M")))]
1103   ""
1104   "@
1105   {comclr|cmpclr},> %2,%0,%%r0\;copy %2,%0
1106   {comiclr|cmpiclr},> %2,%0,%%r0\;ldi %2,%0
1107   {comclr|cmpclr},> %1,%r2,%0\;copy %1,%0"
1108 [(set_attr "type" "multi,multi,multi")
1109  (set_attr "length" "8,8,8")])
1110
1111 (define_insn "smindi3"
1112   [(set (match_operand:DI 0 "register_operand" "=r,r,r")
1113         (smin:DI (match_operand:DI 1 "register_operand" "%0,0,r")
1114                  (match_operand:DI 2 "arith11_operand" "r,I,M")))]
1115   "TARGET_64BIT"
1116   "@
1117   cmpclr,*> %2,%0,%%r0\;copy %2,%0
1118   cmpiclr,*> %2,%0,%%r0\;ldi %2,%0
1119   cmpclr,*> %1,%r2,%0\;copy %1,%0"
1120 [(set_attr "type" "multi,multi,multi")
1121  (set_attr "length" "8,8,8")])
1122
1123 (define_insn "uminsi3"
1124   [(set (match_operand:SI 0 "register_operand" "=r,r")
1125         (umin:SI (match_operand:SI 1 "register_operand" "%0,0")
1126                  (match_operand:SI 2 "arith11_operand" "r,I")))]
1127   ""
1128   "@
1129   {comclr|cmpclr},>> %2,%0,%%r0\;copy %2,%0
1130   {comiclr|cmpiclr},>> %2,%0,%%r0\;ldi %2,%0"
1131 [(set_attr "type" "multi,multi")
1132  (set_attr "length" "8,8")])
1133
1134 (define_insn "umindi3"
1135   [(set (match_operand:DI 0 "register_operand" "=r,r")
1136         (umin:DI (match_operand:DI 1 "register_operand" "%0,0")
1137                  (match_operand:DI 2 "arith11_operand" "r,I")))]
1138   "TARGET_64BIT"
1139   "@
1140   cmpclr,*>> %2,%0,%%r0\;copy %2,%0
1141   cmpiclr,*>> %2,%0,%%r0\;ldi %2,%0"
1142 [(set_attr "type" "multi,multi")
1143  (set_attr "length" "8,8")])
1144
1145 (define_insn "smaxsi3"
1146   [(set (match_operand:SI 0 "register_operand" "=r,r,r")
1147         (smax:SI (match_operand:SI 1 "register_operand" "%0,0,r")
1148                  (match_operand:SI 2 "arith11_operand" "r,I,M")))]
1149   ""
1150   "@
1151   {comclr|cmpclr},< %2,%0,%%r0\;copy %2,%0
1152   {comiclr|cmpiclr},< %2,%0,%%r0\;ldi %2,%0
1153   {comclr|cmpclr},< %1,%r2,%0\;copy %1,%0"
1154 [(set_attr "type" "multi,multi,multi")
1155  (set_attr "length" "8,8,8")])
1156
1157 (define_insn "smaxdi3"
1158   [(set (match_operand:DI 0 "register_operand" "=r,r,r")
1159         (smax:DI (match_operand:DI 1 "register_operand" "%0,0,r")
1160                  (match_operand:DI 2 "arith11_operand" "r,I,M")))]
1161   "TARGET_64BIT"
1162   "@
1163   cmpclr,*< %2,%0,%%r0\;copy %2,%0
1164   cmpiclr,*< %2,%0,%%r0\;ldi %2,%0
1165   cmpclr,*< %1,%r2,%0\;copy %1,%0"
1166 [(set_attr "type" "multi,multi,multi")
1167  (set_attr "length" "8,8,8")])
1168
1169 (define_insn "umaxsi3"
1170   [(set (match_operand:SI 0 "register_operand" "=r,r")
1171         (umax:SI (match_operand:SI 1 "register_operand" "%0,0")
1172                  (match_operand:SI 2 "arith11_operand" "r,I")))]
1173   ""
1174   "@
1175   {comclr|cmpclr},<< %2,%0,%%r0\;copy %2,%0
1176   {comiclr|cmpiclr},<< %2,%0,%%r0\;ldi %2,%0"
1177 [(set_attr "type" "multi,multi")
1178  (set_attr "length" "8,8")])
1179
1180 (define_insn "umaxdi3"
1181   [(set (match_operand:DI 0 "register_operand" "=r,r")
1182         (umax:DI (match_operand:DI 1 "register_operand" "%0,0")
1183                  (match_operand:DI 2 "arith11_operand" "r,I")))]
1184   "TARGET_64BIT"
1185   "@
1186   cmpclr,*<< %2,%0,%%r0\;copy %2,%0
1187   cmpiclr,*<< %2,%0,%%r0\;ldi %2,%0"
1188 [(set_attr "type" "multi,multi")
1189  (set_attr "length" "8,8")])
1190
1191 (define_insn "abssi2"
1192   [(set (match_operand:SI 0 "register_operand" "=r")
1193         (abs:SI (match_operand:SI 1 "register_operand" "r")))]
1194   ""
1195   "or,>= %%r0,%1,%0\;subi 0,%0,%0"
1196   [(set_attr "type" "multi")
1197    (set_attr "length" "8")])
1198
1199 (define_insn "absdi2"
1200   [(set (match_operand:DI 0 "register_operand" "=r")
1201         (abs:DI (match_operand:DI 1 "register_operand" "r")))]
1202   "TARGET_64BIT"
1203   "or,*>= %%r0,%1,%0\;subi 0,%0,%0"
1204   [(set_attr "type" "multi")
1205    (set_attr "length" "8")])
1206
1207 ;;; Experimental conditional move patterns
1208
1209 (define_expand "movsicc"
1210   [(set (match_operand:SI 0 "register_operand" "")
1211         (if_then_else:SI
1212          (match_operator 1 "comparison_operator"
1213             [(match_dup 4)
1214              (match_dup 5)])
1215          (match_operand:SI 2 "reg_or_cint_move_operand" "")
1216          (match_operand:SI 3 "reg_or_cint_move_operand" "")))]
1217   ""
1218   "
1219 {
1220   enum rtx_code code = GET_CODE (operands[1]);
1221
1222   if (hppa_branch_type != CMP_SI)
1223     FAIL;
1224
1225   if (GET_MODE (hppa_compare_op0) != GET_MODE (hppa_compare_op1)
1226       || GET_MODE (hppa_compare_op0) != GET_MODE (operands[0]))
1227     FAIL;
1228
1229   /* operands[1] is currently the result of compare_from_rtx.  We want to
1230      emit a compare of the original operands.  */
1231   operands[1] = gen_rtx_fmt_ee (code, SImode, hppa_compare_op0, hppa_compare_op1);
1232   operands[4] = hppa_compare_op0;
1233   operands[5] = hppa_compare_op1;
1234 }")
1235
1236 ;; We used to accept any register for op1.
1237 ;;
1238 ;; However, it loses sometimes because the compiler will end up using
1239 ;; different registers for op0 and op1 in some critical cases.  local-alloc
1240 ;; will  not tie op0 and op1 because op0 is used in multiple basic blocks.
1241 ;;
1242 ;; If/when global register allocation supports tying we should allow any
1243 ;; register for op1 again.
1244 (define_insn ""
1245   [(set (match_operand:SI 0 "register_operand" "=r,r,r,r")
1246         (if_then_else:SI
1247          (match_operator 2 "comparison_operator"
1248             [(match_operand:SI 3 "register_operand" "r,r,r,r")
1249              (match_operand:SI 4 "arith11_operand" "rI,rI,rI,rI")])
1250          (match_operand:SI 1 "reg_or_cint_move_operand" "0,J,N,K")
1251          (const_int 0)))]
1252   ""
1253   "@
1254    {com%I4clr|cmp%I4clr},%S2 %4,%3,%%r0\;ldi 0,%0
1255    {com%I4clr|cmp%I4clr},%B2 %4,%3,%0\;ldi %1,%0
1256    {com%I4clr|cmp%I4clr},%B2 %4,%3,%0\;ldil L'%1,%0
1257    {com%I4clr|cmp%I4clr},%B2 %4,%3,%0\;{zdepi|depwi,z} %Z1,%0"
1258   [(set_attr "type" "multi,multi,multi,nullshift")
1259    (set_attr "length" "8,8,8,8")])
1260
1261 (define_insn ""
1262   [(set (match_operand:SI 0 "register_operand" "=r,r,r,r,r,r,r,r")
1263         (if_then_else:SI
1264          (match_operator 5 "comparison_operator"
1265             [(match_operand:SI 3 "register_operand" "r,r,r,r,r,r,r,r")
1266              (match_operand:SI 4 "arith11_operand" "rI,rI,rI,rI,rI,rI,rI,rI")])
1267          (match_operand:SI 1 "reg_or_cint_move_operand" "0,0,0,0,r,J,N,K")
1268          (match_operand:SI 2 "reg_or_cint_move_operand" "r,J,N,K,0,0,0,0")))]
1269   ""
1270   "@
1271    {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;copy %2,%0
1272    {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;ldi %2,%0
1273    {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;ldil L'%2,%0
1274    {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;{zdepi|depwi,z} %Z2,%0
1275    {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;copy %1,%0
1276    {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;ldi %1,%0
1277    {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;ldil L'%1,%0
1278    {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;{zdepi|depwi,z} %Z1,%0"
1279   [(set_attr "type" "multi,multi,multi,nullshift,multi,multi,multi,nullshift")
1280    (set_attr "length" "8,8,8,8,8,8,8,8")])
1281
1282 (define_expand "movdicc"
1283   [(set (match_operand:DI 0 "register_operand" "")
1284         (if_then_else:DI
1285          (match_operator 1 "comparison_operator"
1286             [(match_dup 4)
1287              (match_dup 5)])
1288          (match_operand:DI 2 "reg_or_cint_move_operand" "")
1289          (match_operand:DI 3 "reg_or_cint_move_operand" "")))]
1290   "TARGET_64BIT"
1291   "
1292 {
1293   enum rtx_code code = GET_CODE (operands[1]);
1294
1295   if (hppa_branch_type != CMP_SI)
1296     FAIL;
1297
1298   if (GET_MODE (hppa_compare_op0) != GET_MODE (hppa_compare_op1)
1299       || GET_MODE (hppa_compare_op0) != GET_MODE (operands[0]))
1300     FAIL;
1301
1302   /* operands[1] is currently the result of compare_from_rtx.  We want to
1303      emit a compare of the original operands.  */
1304   operands[1] = gen_rtx_fmt_ee (code, DImode, hppa_compare_op0, hppa_compare_op1);
1305   operands[4] = hppa_compare_op0;
1306   operands[5] = hppa_compare_op1;
1307 }")
1308
1309 ; We need the first constraint alternative in order to avoid
1310 ; earlyclobbers on all other alternatives.
1311 (define_insn ""
1312   [(set (match_operand:DI 0 "register_operand" "=r,r,r,r,r")
1313         (if_then_else:DI
1314          (match_operator 2 "comparison_operator"
1315             [(match_operand:DI 3 "register_operand" "r,r,r,r,r")
1316              (match_operand:DI 4 "arith11_operand" "rI,rI,rI,rI,rI")])
1317          (match_operand:DI 1 "reg_or_cint_move_operand" "0,r,J,N,K")
1318          (const_int 0)))]
1319   "TARGET_64BIT"
1320   "@
1321    cmp%I4clr,*%S2 %4,%3,%%r0\;ldi 0,%0
1322    cmp%I4clr,*%B2 %4,%3,%0\;copy %1,%0
1323    cmp%I4clr,*%B2 %4,%3,%0\;ldi %1,%0
1324    cmp%I4clr,*%B2 %4,%3,%0\;ldil L'%1,%0
1325    cmp%I4clr,*%B2 %4,%3,%0\;depdi,z %z1,%0"
1326   [(set_attr "type" "multi,multi,multi,multi,nullshift")
1327    (set_attr "length" "8,8,8,8,8")])
1328
1329 (define_insn ""
1330   [(set (match_operand:DI 0 "register_operand" "=r,r,r,r,r,r,r,r")
1331         (if_then_else:DI
1332          (match_operator 5 "comparison_operator"
1333             [(match_operand:DI 3 "register_operand" "r,r,r,r,r,r,r,r")
1334              (match_operand:DI 4 "arith11_operand" "rI,rI,rI,rI,rI,rI,rI,rI")])
1335          (match_operand:DI 1 "reg_or_cint_move_operand" "0,0,0,0,r,J,N,K")
1336          (match_operand:DI 2 "reg_or_cint_move_operand" "r,J,N,K,0,0,0,0")))]
1337   "TARGET_64BIT"
1338   "@
1339    cmp%I4clr,*%S5 %4,%3,%%r0\;copy %2,%0
1340    cmp%I4clr,*%S5 %4,%3,%%r0\;ldi %2,%0
1341    cmp%I4clr,*%S5 %4,%3,%%r0\;ldil L'%2,%0
1342    cmp%I4clr,*%S5 %4,%3,%%r0\;depdi,z %z2,%0
1343    cmp%I4clr,*%B5 %4,%3,%%r0\;copy %1,%0
1344    cmp%I4clr,*%B5 %4,%3,%%r0\;ldi %1,%0
1345    cmp%I4clr,*%B5 %4,%3,%%r0\;ldil L'%1,%0
1346    cmp%I4clr,*%B5 %4,%3,%%r0\;depdi,z %z1,%0"
1347   [(set_attr "type" "multi,multi,multi,nullshift,multi,multi,multi,nullshift")
1348    (set_attr "length" "8,8,8,8,8,8,8,8")])
1349
1350 ;; Conditional Branches
1351
1352 (define_expand "beq"
1353   [(set (pc)
1354         (if_then_else (eq (match_dup 1) (match_dup 2))
1355                       (label_ref (match_operand 0 "" ""))
1356                       (pc)))]
1357   ""
1358   "
1359 {
1360   if (hppa_branch_type != CMP_SI)
1361     {
1362       emit_insn (gen_cmp_fp (EQ, hppa_compare_op0, hppa_compare_op1));
1363       emit_bcond_fp (NE, operands[0]);
1364       DONE;
1365     }
1366   /* set up operands from compare.  */
1367   operands[1] = hppa_compare_op0;
1368   operands[2] = hppa_compare_op1;
1369   /* fall through and generate default code */
1370 }")
1371
1372 (define_expand "bne"
1373   [(set (pc)
1374         (if_then_else (ne (match_dup 1) (match_dup 2))
1375                       (label_ref (match_operand 0 "" ""))
1376                       (pc)))]
1377   ""
1378   "
1379 {
1380   if (hppa_branch_type != CMP_SI)
1381     {
1382       emit_insn (gen_cmp_fp (NE, hppa_compare_op0, hppa_compare_op1));
1383       emit_bcond_fp (NE, operands[0]);
1384       DONE;
1385     }
1386   operands[1] = hppa_compare_op0;
1387   operands[2] = hppa_compare_op1;
1388 }")
1389
1390 (define_expand "bgt"
1391   [(set (pc)
1392         (if_then_else (gt (match_dup 1) (match_dup 2))
1393                       (label_ref (match_operand 0 "" ""))
1394                       (pc)))]
1395   ""
1396   "
1397 {
1398   if (hppa_branch_type != CMP_SI)
1399     {
1400       emit_insn (gen_cmp_fp (GT, hppa_compare_op0, hppa_compare_op1));
1401       emit_bcond_fp (NE, operands[0]);
1402       DONE;
1403     }
1404   operands[1] = hppa_compare_op0;
1405   operands[2] = hppa_compare_op1;
1406 }")
1407
1408 (define_expand "blt"
1409   [(set (pc)
1410         (if_then_else (lt (match_dup 1) (match_dup 2))
1411                       (label_ref (match_operand 0 "" ""))
1412                       (pc)))]
1413   ""
1414   "
1415 {
1416   if (hppa_branch_type != CMP_SI)
1417     {
1418       emit_insn (gen_cmp_fp (LT, hppa_compare_op0, hppa_compare_op1));
1419       emit_bcond_fp (NE, operands[0]);
1420       DONE;
1421     }
1422   operands[1] = hppa_compare_op0;
1423   operands[2] = hppa_compare_op1;
1424 }")
1425
1426 (define_expand "bge"
1427   [(set (pc)
1428         (if_then_else (ge (match_dup 1) (match_dup 2))
1429                       (label_ref (match_operand 0 "" ""))
1430                       (pc)))]
1431   ""
1432   "
1433 {
1434   if (hppa_branch_type != CMP_SI)
1435     {
1436       emit_insn (gen_cmp_fp (GE, hppa_compare_op0, hppa_compare_op1));
1437       emit_bcond_fp (NE, operands[0]);
1438       DONE;
1439     }
1440   operands[1] = hppa_compare_op0;
1441   operands[2] = hppa_compare_op1;
1442 }")
1443
1444 (define_expand "ble"
1445   [(set (pc)
1446         (if_then_else (le (match_dup 1) (match_dup 2))
1447                       (label_ref (match_operand 0 "" ""))
1448                       (pc)))]
1449   ""
1450   "
1451 {
1452   if (hppa_branch_type != CMP_SI)
1453     {
1454       emit_insn (gen_cmp_fp (LE, hppa_compare_op0, hppa_compare_op1));
1455       emit_bcond_fp (NE, operands[0]);
1456       DONE;
1457     }
1458   operands[1] = hppa_compare_op0;
1459   operands[2] = hppa_compare_op1;
1460 }")
1461
1462 (define_expand "bgtu"
1463   [(set (pc)
1464         (if_then_else (gtu (match_dup 1) (match_dup 2))
1465                       (label_ref (match_operand 0 "" ""))
1466                       (pc)))]
1467   ""
1468   "
1469 {
1470   if (hppa_branch_type != CMP_SI)
1471     FAIL;
1472   operands[1] = hppa_compare_op0;
1473   operands[2] = hppa_compare_op1;
1474 }")
1475
1476 (define_expand "bltu"
1477   [(set (pc)
1478         (if_then_else (ltu (match_dup 1) (match_dup 2))
1479                       (label_ref (match_operand 0 "" ""))
1480                       (pc)))]
1481   ""
1482   "
1483 {
1484   if (hppa_branch_type != CMP_SI)
1485     FAIL;
1486   operands[1] = hppa_compare_op0;
1487   operands[2] = hppa_compare_op1;
1488 }")
1489
1490 (define_expand "bgeu"
1491   [(set (pc)
1492         (if_then_else (geu (match_dup 1) (match_dup 2))
1493                       (label_ref (match_operand 0 "" ""))
1494                       (pc)))]
1495   ""
1496   "
1497 {
1498   if (hppa_branch_type != CMP_SI)
1499     FAIL;
1500   operands[1] = hppa_compare_op0;
1501   operands[2] = hppa_compare_op1;
1502 }")
1503
1504 (define_expand "bleu"
1505   [(set (pc)
1506         (if_then_else (leu (match_dup 1) (match_dup 2))
1507                       (label_ref (match_operand 0 "" ""))
1508                       (pc)))]
1509   ""
1510   "
1511 {
1512   if (hppa_branch_type != CMP_SI)
1513     FAIL;
1514   operands[1] = hppa_compare_op0;
1515   operands[2] = hppa_compare_op1;
1516 }")
1517
1518 (define_expand "bltgt"
1519   [(set (pc)
1520         (if_then_else (ltgt (match_dup 1) (match_dup 2))
1521                       (label_ref (match_operand 0 "" ""))
1522                       (pc)))]
1523   ""
1524   "
1525 {
1526   if (hppa_branch_type == CMP_SI)
1527     FAIL;
1528   emit_insn (gen_cmp_fp (LTGT, hppa_compare_op0, hppa_compare_op1));
1529   emit_bcond_fp (NE, operands[0]);
1530   DONE;
1531 }")
1532
1533 (define_expand "bunle"
1534   [(set (pc)
1535         (if_then_else (unle (match_dup 1) (match_dup 2))
1536                       (label_ref (match_operand 0 "" ""))
1537                       (pc)))]
1538   ""
1539   "
1540 {
1541   if (hppa_branch_type == CMP_SI)
1542     FAIL;
1543   emit_insn (gen_cmp_fp (UNLE, hppa_compare_op0, hppa_compare_op1));
1544   emit_bcond_fp (NE, operands[0]);
1545   DONE;
1546 }")
1547
1548 (define_expand "bunlt"
1549   [(set (pc)
1550         (if_then_else (unlt (match_dup 1) (match_dup 2))
1551                       (label_ref (match_operand 0 "" ""))
1552                       (pc)))]
1553   ""
1554   "
1555 {
1556   if (hppa_branch_type == CMP_SI)
1557     FAIL;
1558   emit_insn (gen_cmp_fp (UNLT, hppa_compare_op0, hppa_compare_op1));
1559   emit_bcond_fp (NE, operands[0]);
1560   DONE;
1561 }")
1562
1563 (define_expand "bunge"
1564   [(set (pc)
1565         (if_then_else (unge (match_dup 1) (match_dup 2))
1566                       (label_ref (match_operand 0 "" ""))
1567                       (pc)))]
1568   ""
1569   "
1570 {
1571   if (hppa_branch_type == CMP_SI)
1572     FAIL;
1573   emit_insn (gen_cmp_fp (UNGE, hppa_compare_op0, hppa_compare_op1));
1574   emit_bcond_fp (NE, operands[0]);
1575   DONE;
1576 }")
1577
1578 (define_expand "bungt"
1579   [(set (pc)
1580         (if_then_else (ungt (match_dup 1) (match_dup 2))
1581                       (label_ref (match_operand 0 "" ""))
1582                       (pc)))]
1583   ""
1584   "
1585 {
1586   if (hppa_branch_type == CMP_SI)
1587     FAIL;
1588   emit_insn (gen_cmp_fp (UNGT, hppa_compare_op0, hppa_compare_op1));
1589   emit_bcond_fp (NE, operands[0]);
1590   DONE;
1591 }")
1592
1593 (define_expand "buneq"
1594   [(set (pc)
1595         (if_then_else (uneq (match_dup 1) (match_dup 2))
1596                       (label_ref (match_operand 0 "" ""))
1597                       (pc)))]
1598   ""
1599   "
1600 {
1601   if (hppa_branch_type == CMP_SI)
1602     FAIL;
1603   emit_insn (gen_cmp_fp (UNEQ, hppa_compare_op0, hppa_compare_op1));
1604   emit_bcond_fp (NE, operands[0]);
1605   DONE;
1606 }")
1607
1608 (define_expand "bunordered"
1609   [(set (pc)
1610         (if_then_else (unordered (match_dup 1) (match_dup 2))
1611                       (label_ref (match_operand 0 "" ""))
1612                       (pc)))]
1613   ""
1614   "
1615 {
1616   if (hppa_branch_type == CMP_SI)
1617     FAIL;
1618   emit_insn (gen_cmp_fp (UNORDERED, hppa_compare_op0, hppa_compare_op1));
1619   emit_bcond_fp (NE, operands[0]);
1620   DONE;
1621 }")
1622
1623 (define_expand "bordered"
1624   [(set (pc)
1625         (if_then_else (ordered (match_dup 1) (match_dup 2))
1626                       (label_ref (match_operand 0 "" ""))
1627                       (pc)))]
1628   ""
1629   "
1630 {
1631   if (hppa_branch_type == CMP_SI)
1632     FAIL;
1633   emit_insn (gen_cmp_fp (ORDERED, hppa_compare_op0, hppa_compare_op1));
1634   emit_bcond_fp (NE, operands[0]);
1635   DONE;
1636 }")
1637
1638 ;; Match the branch patterns.
1639
1640
1641 ;; Note a long backward conditional branch with an annulled delay slot
1642 ;; has a length of 12.
1643 (define_insn ""
1644   [(set (pc)
1645         (if_then_else
1646          (match_operator 3 "comparison_operator"
1647                          [(match_operand:SI 1 "reg_or_0_operand" "rM")
1648                           (match_operand:SI 2 "arith5_operand" "rL")])
1649          (label_ref (match_operand 0 "" ""))
1650          (pc)))]
1651   ""
1652   "*
1653 {
1654   return output_cbranch (operands, INSN_ANNULLED_BRANCH_P (insn),
1655                          get_attr_length (insn), 0, insn);
1656 }"
1657 [(set_attr "type" "cbranch")
1658  (set (attr "length")
1659     (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1660                (const_int 8184))
1661            (const_int 4)
1662            (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1663                (const_int 262100))
1664            (const_int 8)
1665            (eq (symbol_ref "flag_pic") (const_int 0))
1666            (const_int 20)]
1667           (const_int 28)))])
1668
1669 ;; Match the negated branch.
1670
1671 (define_insn ""
1672   [(set (pc)
1673         (if_then_else
1674          (match_operator 3 "comparison_operator"
1675                          [(match_operand:SI 1 "reg_or_0_operand" "rM")
1676                           (match_operand:SI 2 "arith5_operand" "rL")])
1677          (pc)
1678          (label_ref (match_operand 0 "" ""))))]
1679   ""
1680   "*
1681 {
1682   return output_cbranch (operands, INSN_ANNULLED_BRANCH_P (insn),
1683                          get_attr_length (insn), 1, insn);
1684 }"
1685 [(set_attr "type" "cbranch")
1686  (set (attr "length")
1687     (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1688                (const_int 8184))
1689            (const_int 4)
1690            (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1691                (const_int 262100))
1692            (const_int 8)
1693            (eq (symbol_ref "flag_pic") (const_int 0))
1694            (const_int 20)]
1695           (const_int 28)))])
1696
1697 (define_insn ""
1698   [(set (pc)
1699         (if_then_else
1700          (match_operator 3 "comparison_operator"
1701                          [(match_operand:DI 1 "reg_or_0_operand" "rM")
1702                           (match_operand:DI 2 "reg_or_0_operand" "rM")])
1703          (label_ref (match_operand 0 "" ""))
1704          (pc)))]
1705   "TARGET_64BIT"
1706   "*
1707 {
1708   return output_cbranch (operands, INSN_ANNULLED_BRANCH_P (insn),
1709                          get_attr_length (insn), 0, insn);
1710 }"
1711 [(set_attr "type" "cbranch")
1712  (set (attr "length")
1713     (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1714                (const_int 8184))
1715            (const_int 4)
1716            (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1717                (const_int 262100))
1718            (const_int 8)
1719            (eq (symbol_ref "flag_pic") (const_int 0))
1720            (const_int 20)]
1721           (const_int 28)))])
1722
1723 ;; Match the negated branch.
1724
1725 (define_insn ""
1726   [(set (pc)
1727         (if_then_else
1728          (match_operator 3 "comparison_operator"
1729                          [(match_operand:DI 1 "reg_or_0_operand" "rM")
1730                           (match_operand:DI 2 "reg_or_0_operand" "rM")])
1731          (pc)
1732          (label_ref (match_operand 0 "" ""))))]
1733   "TARGET_64BIT"
1734   "*
1735 {
1736   return output_cbranch (operands, INSN_ANNULLED_BRANCH_P (insn),
1737                          get_attr_length (insn), 1, insn);
1738 }"
1739 [(set_attr "type" "cbranch")
1740  (set (attr "length")
1741     (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1742                (const_int 8184))
1743            (const_int 4)
1744            (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1745                (const_int 262100))
1746            (const_int 8)
1747            (eq (symbol_ref "flag_pic") (const_int 0))
1748            (const_int 20)]
1749           (const_int 28)))])
1750 (define_insn ""
1751   [(set (pc)
1752         (if_then_else
1753          (match_operator 3 "cmpib_comparison_operator"
1754                          [(match_operand:DI 1 "reg_or_0_operand" "rM")
1755                           (match_operand:DI 2 "arith5_operand" "rL")])
1756          (label_ref (match_operand 0 "" ""))
1757          (pc)))]
1758   "TARGET_64BIT"
1759   "*
1760 {
1761   return output_cbranch (operands, INSN_ANNULLED_BRANCH_P (insn),
1762                          get_attr_length (insn), 0, insn);
1763 }"
1764 [(set_attr "type" "cbranch")
1765  (set (attr "length")
1766     (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1767                (const_int 8184))
1768            (const_int 4)
1769            (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1770                (const_int 262100))
1771            (const_int 8)
1772            (eq (symbol_ref "flag_pic") (const_int 0))
1773            (const_int 20)]
1774           (const_int 28)))])
1775
1776 ;; Match the negated branch.
1777
1778 (define_insn ""
1779   [(set (pc)
1780         (if_then_else
1781          (match_operator 3 "cmpib_comparison_operator"
1782                          [(match_operand:DI 1 "reg_or_0_operand" "rM")
1783                           (match_operand:DI 2 "arith5_operand" "rL")])
1784          (pc)
1785          (label_ref (match_operand 0 "" ""))))]
1786   "TARGET_64BIT"
1787   "*
1788 {
1789   return output_cbranch (operands, INSN_ANNULLED_BRANCH_P (insn),
1790                          get_attr_length (insn), 1, insn);
1791 }"
1792 [(set_attr "type" "cbranch")
1793  (set (attr "length")
1794     (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1795                (const_int 8184))
1796            (const_int 4)
1797            (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1798                (const_int 262100))
1799            (const_int 8)
1800            (eq (symbol_ref "flag_pic") (const_int 0))
1801            (const_int 20)]
1802           (const_int 28)))])
1803
1804 ;; Branch on Bit patterns.
1805 (define_insn ""
1806   [(set (pc)
1807         (if_then_else
1808          (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1809                               (const_int 1)
1810                               (match_operand:SI 1 "uint5_operand" ""))
1811              (const_int 0))
1812          (label_ref (match_operand 2 "" ""))
1813          (pc)))]
1814   ""
1815   "*
1816 {
1817   return output_bb (operands, INSN_ANNULLED_BRANCH_P (insn),
1818                          get_attr_length (insn), 0, insn, 0);
1819 }"
1820 [(set_attr "type" "cbranch")
1821  (set (attr "length")
1822     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1823                       (const_int 8184))
1824            (const_int 4)
1825            (const_int 8)))])
1826
1827 (define_insn ""
1828   [(set (pc)
1829         (if_then_else
1830          (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1831                               (const_int 1)
1832                               (match_operand:DI 1 "uint32_operand" ""))
1833              (const_int 0))
1834          (label_ref (match_operand 2 "" ""))
1835          (pc)))]
1836   "TARGET_64BIT"
1837   "*
1838 {
1839   return output_bb (operands, INSN_ANNULLED_BRANCH_P (insn),
1840                          get_attr_length (insn), 0, insn, 0);
1841 }"
1842 [(set_attr "type" "cbranch")
1843  (set (attr "length")
1844     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1845                       (const_int 8184))
1846            (const_int 4)
1847            (const_int 8)))])
1848
1849 (define_insn ""
1850   [(set (pc)
1851         (if_then_else
1852          (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1853                               (const_int 1)
1854                               (match_operand:SI 1 "uint5_operand" ""))
1855              (const_int 0))
1856          (pc)
1857          (label_ref (match_operand 2 "" ""))))]
1858   ""
1859   "*
1860 {
1861   return output_bb (operands, INSN_ANNULLED_BRANCH_P (insn),
1862                          get_attr_length (insn), 1, insn, 0);
1863 }"
1864 [(set_attr "type" "cbranch")
1865  (set (attr "length")
1866     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1867                       (const_int 8184))
1868            (const_int 4)
1869            (const_int 8)))])
1870
1871 (define_insn ""
1872   [(set (pc)
1873         (if_then_else
1874          (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1875                               (const_int 1)
1876                               (match_operand:DI 1 "uint32_operand" ""))
1877              (const_int 0))
1878          (pc)
1879          (label_ref (match_operand 2 "" ""))))]
1880   "TARGET_64BIT"
1881   "*
1882 {
1883   return output_bb (operands, INSN_ANNULLED_BRANCH_P (insn),
1884                          get_attr_length (insn), 1, insn, 0);
1885 }"
1886 [(set_attr "type" "cbranch")
1887  (set (attr "length")
1888     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1889                       (const_int 8184))
1890            (const_int 4)
1891            (const_int 8)))])
1892
1893 (define_insn ""
1894   [(set (pc)
1895         (if_then_else
1896          (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1897                               (const_int 1)
1898                               (match_operand:SI 1 "uint5_operand" ""))
1899              (const_int 0))
1900          (label_ref (match_operand 2 "" ""))
1901          (pc)))]
1902   ""
1903   "*
1904 {
1905   return output_bb (operands, INSN_ANNULLED_BRANCH_P (insn),
1906                          get_attr_length (insn), 0, insn, 1);
1907 }"
1908 [(set_attr "type" "cbranch")
1909  (set (attr "length")
1910     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1911                       (const_int 8184))
1912            (const_int 4)
1913            (const_int 8)))])
1914
1915 (define_insn ""
1916   [(set (pc)
1917         (if_then_else
1918          (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1919                               (const_int 1)
1920                               (match_operand:DI 1 "uint32_operand" ""))
1921              (const_int 0))
1922          (label_ref (match_operand 2 "" ""))
1923          (pc)))]
1924   "TARGET_64BIT"
1925   "*
1926 {
1927   return output_bb (operands, INSN_ANNULLED_BRANCH_P (insn),
1928                          get_attr_length (insn), 0, insn, 1);
1929 }"
1930 [(set_attr "type" "cbranch")
1931  (set (attr "length")
1932     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1933                       (const_int 8184))
1934            (const_int 4)
1935            (const_int 8)))])
1936
1937 (define_insn ""
1938   [(set (pc)
1939         (if_then_else
1940          (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1941                               (const_int 1)
1942                               (match_operand:SI 1 "uint5_operand" ""))
1943              (const_int 0))
1944          (pc)
1945          (label_ref (match_operand 2 "" ""))))]
1946   ""
1947   "*
1948 {
1949   return output_bb (operands, INSN_ANNULLED_BRANCH_P (insn),
1950                          get_attr_length (insn), 1, insn, 1);
1951 }"
1952 [(set_attr "type" "cbranch")
1953  (set (attr "length")
1954     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1955                       (const_int 8184))
1956            (const_int 4)
1957            (const_int 8)))])
1958
1959 (define_insn ""
1960   [(set (pc)
1961         (if_then_else
1962          (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1963                               (const_int 1)
1964                               (match_operand:DI 1 "uint32_operand" ""))
1965              (const_int 0))
1966          (pc)
1967          (label_ref (match_operand 2 "" ""))))]
1968   "TARGET_64BIT"
1969   "*
1970 {
1971   return output_bb (operands, INSN_ANNULLED_BRANCH_P (insn),
1972                          get_attr_length (insn), 1, insn, 1);
1973 }"
1974 [(set_attr "type" "cbranch")
1975  (set (attr "length")
1976     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1977                       (const_int 8184))
1978            (const_int 4)
1979            (const_int 8)))])
1980
1981 ;; Branch on Variable Bit patterns.
1982 (define_insn ""
1983   [(set (pc)
1984         (if_then_else
1985          (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1986                               (const_int 1)
1987                               (match_operand:SI 1 "register_operand" "q"))
1988              (const_int 0))
1989          (label_ref (match_operand 2 "" ""))
1990          (pc)))]
1991   ""
1992   "*
1993 {
1994   return output_bvb (operands, INSN_ANNULLED_BRANCH_P (insn),
1995                      get_attr_length (insn), 0, insn, 0);
1996 }"
1997 [(set_attr "type" "cbranch")
1998  (set (attr "length")
1999     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2000                       (const_int 8184))
2001            (const_int 4)
2002            (const_int 8)))])
2003
2004 (define_insn ""
2005   [(set (pc)
2006         (if_then_else
2007          (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
2008                               (const_int 1)
2009                               (match_operand:DI 1 "register_operand" "q"))
2010              (const_int 0))
2011          (label_ref (match_operand 2 "" ""))
2012          (pc)))]
2013   "TARGET_64BIT"
2014   "*
2015 {
2016   return output_bvb (operands, INSN_ANNULLED_BRANCH_P (insn),
2017                      get_attr_length (insn), 0, insn, 0);
2018 }"
2019 [(set_attr "type" "cbranch")
2020  (set (attr "length")
2021     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2022                       (const_int 8184))
2023            (const_int 4)
2024            (const_int 8)))])
2025
2026 (define_insn ""
2027   [(set (pc)
2028         (if_then_else
2029          (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
2030                               (const_int 1)
2031                               (match_operand:SI 1 "register_operand" "q"))
2032              (const_int 0))
2033          (pc)
2034          (label_ref (match_operand 2 "" ""))))]
2035   ""
2036   "*
2037 {
2038   return output_bvb (operands, INSN_ANNULLED_BRANCH_P (insn),
2039                      get_attr_length (insn), 1, insn, 0);
2040 }"
2041 [(set_attr "type" "cbranch")
2042  (set (attr "length")
2043     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2044                       (const_int 8184))
2045            (const_int 4)
2046            (const_int 8)))])
2047
2048 (define_insn ""
2049   [(set (pc)
2050         (if_then_else
2051          (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
2052                               (const_int 1)
2053                               (match_operand:DI 1 "register_operand" "q"))
2054              (const_int 0))
2055          (pc)
2056          (label_ref (match_operand 2 "" ""))))]
2057   "TARGET_64BIT"
2058   "*
2059 {
2060   return output_bvb (operands, INSN_ANNULLED_BRANCH_P (insn),
2061                      get_attr_length (insn), 1, insn, 0);
2062 }"
2063 [(set_attr "type" "cbranch")
2064  (set (attr "length")
2065     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2066                       (const_int 8184))
2067            (const_int 4)
2068            (const_int 8)))])
2069
2070 (define_insn ""
2071   [(set (pc)
2072         (if_then_else
2073          (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
2074                               (const_int 1)
2075                               (match_operand:SI 1 "register_operand" "q"))
2076              (const_int 0))
2077          (label_ref (match_operand 2 "" ""))
2078          (pc)))]
2079   ""
2080   "*
2081 {
2082   return output_bvb (operands, INSN_ANNULLED_BRANCH_P (insn),
2083                      get_attr_length (insn), 0, insn, 1);
2084 }"
2085 [(set_attr "type" "cbranch")
2086  (set (attr "length")
2087     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2088                       (const_int 8184))
2089            (const_int 4)
2090            (const_int 8)))])
2091
2092 (define_insn ""
2093   [(set (pc)
2094         (if_then_else
2095          (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
2096                               (const_int 1)
2097                               (match_operand:DI 1 "register_operand" "q"))
2098              (const_int 0))
2099          (label_ref (match_operand 2 "" ""))
2100          (pc)))]
2101   "TARGET_64BIT"
2102   "*
2103 {
2104   return output_bvb (operands, INSN_ANNULLED_BRANCH_P (insn),
2105                      get_attr_length (insn), 0, insn, 1);
2106 }"
2107 [(set_attr "type" "cbranch")
2108  (set (attr "length")
2109     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2110                       (const_int 8184))
2111            (const_int 4)
2112            (const_int 8)))])
2113
2114 (define_insn ""
2115   [(set (pc)
2116         (if_then_else
2117          (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
2118                               (const_int 1)
2119                               (match_operand:SI 1 "register_operand" "q"))
2120              (const_int 0))
2121          (pc)
2122          (label_ref (match_operand 2 "" ""))))]
2123   ""
2124   "*
2125 {
2126   return output_bvb (operands, INSN_ANNULLED_BRANCH_P (insn),
2127                      get_attr_length (insn), 1, insn, 1);
2128 }"
2129 [(set_attr "type" "cbranch")
2130  (set (attr "length")
2131     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2132                       (const_int 8184))
2133            (const_int 4)
2134            (const_int 8)))])
2135
2136 (define_insn ""
2137   [(set (pc)
2138         (if_then_else
2139          (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
2140                               (const_int 1)
2141                               (match_operand:DI 1 "register_operand" "q"))
2142              (const_int 0))
2143          (pc)
2144          (label_ref (match_operand 2 "" ""))))]
2145   "TARGET_64BIT"
2146   "*
2147 {
2148   return output_bvb (operands, INSN_ANNULLED_BRANCH_P (insn),
2149                      get_attr_length (insn), 1, insn, 1);
2150 }"
2151 [(set_attr "type" "cbranch")
2152  (set (attr "length")
2153     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
2154                       (const_int 8184))
2155            (const_int 4)
2156            (const_int 8)))])
2157
2158 ;; Floating point branches
2159 (define_insn ""
2160   [(set (pc) (if_then_else (ne (reg:CCFP 0) (const_int 0))
2161                            (label_ref (match_operand 0 "" ""))
2162                            (pc)))]
2163   "! TARGET_SOFT_FLOAT"
2164   "*
2165 {
2166   if (INSN_ANNULLED_BRANCH_P (insn))
2167     return \"ftest\;b,n %0\";
2168   else
2169     return \"ftest\;b%* %0\";
2170 }"
2171   [(set_attr "type" "fbranch")
2172    (set_attr "length" "8")])
2173
2174 (define_insn ""
2175   [(set (pc) (if_then_else (ne (reg:CCFP 0) (const_int 0))
2176                            (pc)
2177                            (label_ref (match_operand 0 "" ""))))]
2178   "! TARGET_SOFT_FLOAT"
2179   "*
2180 {
2181   if (INSN_ANNULLED_BRANCH_P (insn))
2182     return \"ftest\;add,tr %%r0,%%r0,%%r0\;b,n %0\";
2183   else
2184     return \"ftest\;add,tr %%r0,%%r0,%%r0\;b%* %0\";
2185 }"
2186   [(set_attr "type" "fbranch")
2187    (set_attr "length" "12")])
2188
2189 ;; Move instructions
2190
2191 (define_expand "movsi"
2192   [(set (match_operand:SI 0 "general_operand" "")
2193         (match_operand:SI 1 "general_operand" ""))]
2194   ""
2195   "
2196 {
2197   if (emit_move_sequence (operands, SImode, 0))
2198     DONE;
2199 }")
2200
2201 ;; Reloading an SImode or DImode value requires a scratch register if
2202 ;; going in to or out of float point registers.
2203
2204 (define_expand "reload_insi"
2205   [(set (match_operand:SI 0 "register_operand" "=Z")
2206         (match_operand:SI 1 "non_hard_reg_operand" ""))
2207    (clobber (match_operand:SI 2 "register_operand" "=&r"))]
2208   ""
2209   "
2210 {
2211   if (emit_move_sequence (operands, SImode, operands[2]))
2212     DONE;
2213
2214   /* We don't want the clobber emitted, so handle this ourselves.  */
2215   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2216   DONE;
2217 }")
2218
2219 (define_expand "reload_outsi"
2220   [(set (match_operand:SI 0 "non_hard_reg_operand" "")
2221         (match_operand:SI 1  "register_operand" "Z"))
2222    (clobber (match_operand:SI 2 "register_operand" "=&r"))]
2223   ""
2224   "
2225 {
2226   if (emit_move_sequence (operands, SImode, operands[2]))
2227     DONE;
2228
2229   /* We don't want the clobber emitted, so handle this ourselves.  */
2230   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2231   DONE;
2232 }")
2233
2234 (define_insn ""
2235   [(set (match_operand:SI 0 "reg_or_nonsymb_mem_operand"
2236                                 "=r,r,r,r,r,r,Q,*q,!f,f,*TR")
2237         (match_operand:SI 1 "move_operand"
2238                                 "A,r,J,N,K,RQ,rM,rM,!fM,*RT,f"))]
2239   "(register_operand (operands[0], SImode)
2240     || reg_or_0_operand (operands[1], SImode))
2241    && ! TARGET_SOFT_FLOAT"
2242   "@
2243    ldw RT'%A1,%0
2244    copy %1,%0
2245    ldi %1,%0
2246    ldil L'%1,%0
2247    {zdepi|depwi,z} %Z1,%0
2248    ldw%M1 %1,%0
2249    stw%M0 %r1,%0
2250    mtsar %r1
2251    fcpy,sgl %f1,%0
2252    fldw%F1 %1,%0
2253    fstw%F0 %1,%0"
2254   [(set_attr "type" "load,move,move,move,shift,load,store,move,fpalu,fpload,fpstore")
2255    (set_attr "pa_combine_type" "addmove")
2256    (set_attr "length" "4,4,4,4,4,4,4,4,4,4,4")])
2257
2258 (define_insn ""
2259   [(set (match_operand:SI 0 "reg_or_nonsymb_mem_operand"
2260                                 "=r,r,r,r,r,r,Q,*q")
2261         (match_operand:SI 1 "move_operand"
2262                                 "A,r,J,N,K,RQ,rM,rM"))]
2263   "(register_operand (operands[0], SImode)
2264     || reg_or_0_operand (operands[1], SImode))
2265    && TARGET_SOFT_FLOAT"
2266   "@
2267    ldw RT'%A1,%0
2268    copy %1,%0
2269    ldi %1,%0
2270    ldil L'%1,%0
2271    {zdepi|depwi,z} %Z1,%0
2272    ldw%M1 %1,%0
2273    stw%M0 %r1,%0
2274    mtsar %r1"
2275   [(set_attr "type" "load,move,move,move,move,load,store,move")
2276    (set_attr "pa_combine_type" "addmove")
2277    (set_attr "length" "4,4,4,4,4,4,4,4")])
2278
2279 (define_insn ""
2280   [(set (match_operand:SI 0 "register_operand" "=r")
2281         (mem:SI (plus:SI (match_operand:SI 1 "basereg_operand" "r")
2282                          (match_operand:SI 2 "register_operand" "r"))))]
2283   "! TARGET_DISABLE_INDEXING"
2284   "{ldwx|ldw} %2(%1),%0"
2285   [(set_attr "type" "load")
2286    (set_attr "length" "4")])
2287
2288 (define_insn ""
2289   [(set (match_operand:SI 0 "register_operand" "=r")
2290         (mem:SI (plus:SI (match_operand:SI 1 "register_operand" "r")
2291                          (match_operand:SI 2 "basereg_operand" "r"))))]
2292   "! TARGET_DISABLE_INDEXING"
2293   "{ldwx|ldw} %1(%2),%0"
2294   [(set_attr "type" "load")
2295    (set_attr "length" "4")])
2296
2297 ;; Load or store with base-register modification.
2298
2299 (define_expand "pre_load"
2300   [(parallel [(set (match_operand:SI 0 "register_operand" "")
2301               (mem (plus (match_operand 1 "register_operand" "")
2302                                (match_operand 2 "pre_cint_operand" ""))))
2303               (set (match_dup 1)
2304                    (plus (match_dup 1) (match_dup 2)))])]
2305   ""
2306   "
2307 {
2308   if (TARGET_64BIT)
2309     {
2310       emit_insn (gen_pre_ldd (operands[0], operands[1], operands[2]));
2311       DONE;
2312     }
2313   emit_insn (gen_pre_ldw (operands[0], operands[1], operands[2]));
2314   DONE;
2315 }")
2316
2317 (define_insn "pre_ldw"
2318   [(set (match_operand:SI 0 "register_operand" "=r")
2319         (mem:SI (plus:SI (match_operand:SI 1 "register_operand" "+r")
2320                          (match_operand:SI 2 "pre_cint_operand" ""))))
2321    (set (match_dup 1)
2322         (plus:SI (match_dup 1) (match_dup 2)))]
2323   ""
2324   "*
2325 {
2326   if (INTVAL (operands[2]) < 0)
2327     return \"{ldwm|ldw,mb} %2(%1),%0\";
2328   return \"{ldws|ldw},mb %2(%1),%0\";
2329 }"
2330   [(set_attr "type" "load")
2331    (set_attr "length" "4")])
2332
2333 (define_insn "pre_ldd"
2334   [(set (match_operand:DI 0 "register_operand" "=r")
2335         (mem:DI (plus:DI (match_operand:DI 1 "register_operand" "+r")
2336                          (match_operand:DI 2 "pre_cint_operand" ""))))
2337    (set (match_dup 1)
2338         (plus:DI (match_dup 1) (match_dup 2)))]
2339   "TARGET_64BIT"
2340   "ldd,mb %2(%1),%0"
2341   [(set_attr "type" "load")
2342    (set_attr "length" "4")])
2343
2344 (define_insn ""
2345   [(set (mem:SI (plus:SI (match_operand:SI 0 "register_operand" "+r")
2346                          (match_operand:SI 1 "pre_cint_operand" "")))
2347         (match_operand:SI 2 "reg_or_0_operand" "rM"))
2348    (set (match_dup 0)
2349         (plus:SI (match_dup 0) (match_dup 1)))]
2350   ""
2351   "*
2352 {
2353   if (INTVAL (operands[1]) < 0)
2354     return \"{stwm|stw,mb} %r2,%1(%0)\";
2355   return \"{stws|stw},mb %r2,%1(%0)\";
2356 }"
2357   [(set_attr "type" "store")
2358    (set_attr "length" "4")])
2359
2360 (define_insn ""
2361   [(set (match_operand:SI 0 "register_operand" "=r")
2362         (mem:SI (match_operand:SI 1 "register_operand" "+r")))
2363    (set (match_dup 1)
2364         (plus:SI (match_dup 1)
2365                  (match_operand:SI 2 "post_cint_operand" "")))]
2366   ""
2367   "*
2368 {
2369   if (INTVAL (operands[2]) > 0)
2370     return \"{ldwm|ldw,ma} %2(%1),%0\";
2371   return \"{ldws|ldw},ma %2(%1),%0\";
2372 }"
2373   [(set_attr "type" "load")
2374    (set_attr "length" "4")])
2375
2376 (define_expand "post_store"
2377   [(parallel [(set (mem (match_operand 0 "register_operand" ""))
2378                    (match_operand 1 "reg_or_0_operand" ""))
2379               (set (match_dup 0)
2380                    (plus (match_dup 0)
2381                          (match_operand 2 "post_cint_operand" "")))])]
2382   ""
2383   "
2384 {
2385   if (TARGET_64BIT)
2386     {
2387       emit_insn (gen_post_std (operands[0], operands[1], operands[2]));
2388       DONE;
2389     }
2390   emit_insn (gen_post_stw (operands[0], operands[1], operands[2]));
2391   DONE;
2392 }")
2393
2394 (define_insn "post_stw"
2395   [(set (mem:SI (match_operand:SI 0 "register_operand" "+r"))
2396         (match_operand:SI 1 "reg_or_0_operand" "rM"))
2397    (set (match_dup 0)
2398         (plus:SI (match_dup 0)
2399                  (match_operand:SI 2 "post_cint_operand" "")))]
2400   ""
2401   "*
2402 {
2403   if (INTVAL (operands[2]) > 0)
2404     return \"{stwm|stw,ma} %r1,%2(%0)\";
2405   return \"{stws|stw},ma %r1,%2(%0)\";
2406 }"
2407   [(set_attr "type" "store")
2408    (set_attr "length" "4")])
2409
2410 (define_insn "post_std"
2411   [(set (mem:DI (match_operand:DI 0 "register_operand" "+r"))
2412         (match_operand:DI 1 "reg_or_0_operand" "rM"))
2413    (set (match_dup 0)
2414         (plus:DI (match_dup 0)
2415                  (match_operand:DI 2 "post_cint_operand" "")))]
2416   "TARGET_64BIT"
2417   "std,ma %r1,%2(%0)"
2418   [(set_attr "type" "store")
2419    (set_attr "length" "4")])
2420
2421 ;; For loading the address of a label while generating PIC code.
2422 ;; Note since this pattern can be created at reload time (via movsi), all
2423 ;; the same rules for movsi apply here.  (no new pseudos, no temporaries).
2424 (define_insn ""
2425   [(set (match_operand 0 "pmode_register_operand" "=a")
2426         (match_operand 1 "pic_label_operand" ""))]
2427   ""
2428   "*
2429 {
2430   rtx xoperands[3];
2431   extern FILE *asm_out_file;
2432
2433   xoperands[0] = operands[0];
2434   xoperands[1] = operands[1];
2435   if (TARGET_SOM || ! TARGET_GAS)
2436     xoperands[2] = gen_label_rtx ();
2437
2438   output_asm_insn (\"{bl|b,l} .+8,%0\", xoperands);
2439   output_asm_insn (\"{depi|depwi} 0,31,2,%0\", xoperands);
2440   if (TARGET_SOM || ! TARGET_GAS)
2441     ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, \"L\",
2442                                CODE_LABEL_NUMBER (xoperands[2]));
2443
2444   /* If we're trying to load the address of a label that happens to be
2445      close, then we can use a shorter sequence.  */
2446   if (GET_CODE (operands[1]) == LABEL_REF
2447       && INSN_ADDRESSES_SET_P ()
2448       && abs (INSN_ADDRESSES (INSN_UID (XEXP (operands[1], 0)))
2449                 - INSN_ADDRESSES (INSN_UID (insn))) < 8100)
2450     {
2451       /* Prefixing with R% here is wrong, it extracts just 11 bits and is
2452          always non-negative.  */
2453       if (TARGET_SOM || ! TARGET_GAS)
2454         output_asm_insn (\"ldo %1-%2(%0),%0\", xoperands);
2455       else
2456         output_asm_insn (\"ldo %1-$PIC_pcrel$0+8(%0),%0\", xoperands);
2457     }
2458   else
2459     {
2460       if (TARGET_SOM || ! TARGET_GAS)
2461         {
2462           output_asm_insn (\"addil L%%%1-%2,%0\", xoperands);
2463           output_asm_insn (\"ldo R%%%1-%2(%0),%0\", xoperands);
2464         }
2465       else
2466         {
2467           output_asm_insn (\"addil L%%%1-$PIC_pcrel$0+8,%0\", xoperands);
2468           output_asm_insn (\"ldo R%%%1-$PIC_pcrel$0+12(%0),%0\",
2469                            xoperands);
2470         }
2471     }
2472   return \"\";
2473 }"
2474   [(set_attr "type" "multi")
2475    (set_attr "length" "16")])           ; 12 or 16
2476
2477 (define_insn ""
2478   [(set (match_operand:SI 0 "register_operand" "=a")
2479         (plus:SI (match_operand:SI 1 "register_operand" "r")
2480                  (high:SI (match_operand 2 "" ""))))]
2481   "symbolic_operand (operands[2], Pmode)
2482    && ! function_label_operand (operands[2], Pmode)
2483    && flag_pic"
2484   "addil LT'%G2,%1"
2485   [(set_attr "type" "binary")
2486    (set_attr "length" "4")])
2487
2488 (define_insn ""
2489   [(set (match_operand:DI 0 "register_operand" "=a")
2490         (plus:DI (match_operand:DI 1 "register_operand" "r")
2491                  (high:DI (match_operand 2 "" ""))))]
2492   "symbolic_operand (operands[2], Pmode)
2493    && ! function_label_operand (operands[2], Pmode)
2494    && TARGET_64BIT
2495    && flag_pic"
2496   "addil LT'%G2,%1"
2497   [(set_attr "type" "binary")
2498    (set_attr "length" "4")])
2499
2500 ;; Always use addil rather than ldil;add sequences.  This allows the
2501 ;; HP linker to eliminate the dp relocation if the symbolic operand
2502 ;; lives in the TEXT space.
2503 (define_insn ""
2504   [(set (match_operand:SI 0 "register_operand" "=a")
2505         (high:SI (match_operand 1 "" "")))]
2506   "symbolic_operand (operands[1], Pmode)
2507    && ! function_label_operand (operands[1], Pmode)
2508    && ! read_only_operand (operands[1], Pmode)
2509    && ! flag_pic"
2510   "*
2511 {
2512   if (TARGET_LONG_LOAD_STORE)
2513     return \"addil NLR'%H1,%%r27\;ldo N'%H1(%%r1),%%r1\";
2514   else
2515     return \"addil LR'%H1,%%r27\";
2516 }"
2517   [(set_attr "type" "binary")
2518    (set (attr "length")
2519       (if_then_else (eq (symbol_ref "TARGET_LONG_LOAD_STORE") (const_int 0))
2520                     (const_int 4)
2521                     (const_int 8)))])
2522
2523
2524 ;; This is for use in the prologue/epilogue code.  We need it
2525 ;; to add large constants to a stack pointer or frame pointer.
2526 ;; Because of the additional %r1 pressure, we probably do not
2527 ;; want to use this in general code, so make it available
2528 ;; only after reload.
2529 (define_insn ""
2530   [(set (match_operand:SI 0 "register_operand" "=!a,*r")
2531         (plus:SI (match_operand:SI 1 "register_operand" "r,r")
2532                  (high:SI (match_operand 2 "const_int_operand" ""))))]
2533   "reload_completed"
2534   "@
2535    addil L'%G2,%1
2536    ldil L'%G2,%0\;{addl|add,l} %0,%1,%0"
2537   [(set_attr "type" "binary,binary")
2538    (set_attr "length" "4,8")])
2539
2540 (define_insn ""
2541   [(set (match_operand:DI 0 "register_operand" "=!a,*r")
2542         (plus:DI (match_operand:DI 1 "register_operand" "r,r")
2543                  (high:DI (match_operand 2 "const_int_operand" ""))))]
2544   "reload_completed && TARGET_64BIT"
2545   "@
2546    addil L'%G2,%1
2547    ldil L'%G2,%0\;{addl|add,l} %0,%1,%0"
2548   [(set_attr "type" "binary,binary")
2549    (set_attr "length" "4,8")])
2550
2551 (define_insn ""
2552   [(set (match_operand:SI 0 "register_operand" "=r")
2553         (high:SI (match_operand 1 "" "")))]
2554   "(!flag_pic || !symbolic_operand (operands[1], Pmode))
2555     && !is_function_label_plus_const (operands[1])"
2556   "*
2557 {
2558   if (symbolic_operand (operands[1], Pmode))
2559     return \"ldil LR'%H1,%0\";
2560   else
2561     return \"ldil L'%G1,%0\";
2562 }"
2563   [(set_attr "type" "move")
2564    (set_attr "length" "4")])
2565
2566 (define_insn ""
2567   [(set (match_operand:DI 0 "register_operand" "=r")
2568         (high:DI (match_operand 1 "const_int_operand" "")))]
2569   "TARGET_64BIT"
2570   "ldil L'%G1,%0";
2571   [(set_attr "type" "move")
2572    (set_attr "length" "4")])
2573
2574 (define_insn ""
2575   [(set (match_operand:DI 0 "register_operand" "=r")
2576         (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
2577                    (match_operand:DI 2 "const_int_operand" "i")))]
2578   "TARGET_64BIT"
2579   "ldo R'%G2(%1),%0";
2580   [(set_attr "type" "move")
2581    (set_attr "length" "4")])
2582
2583 (define_insn ""
2584   [(set (match_operand:SI 0 "register_operand" "=r")
2585         (lo_sum:SI (match_operand:SI 1 "register_operand" "r")
2586                    (match_operand:SI 2 "immediate_operand" "i")))]
2587   "!is_function_label_plus_const (operands[2])"
2588   "*
2589 {
2590   if (flag_pic && symbolic_operand (operands[2], Pmode))
2591     abort ();
2592   else if (symbolic_operand (operands[2], Pmode))
2593     return \"ldo RR'%G2(%1),%0\";
2594   else
2595     return \"ldo R'%G2(%1),%0\";
2596 }"
2597   [(set_attr "type" "move")
2598    (set_attr "length" "4")])
2599
2600 ;; Now that a symbolic_address plus a constant is broken up early
2601 ;; in the compilation phase (for better CSE) we need a special
2602 ;; combiner pattern to load the symbolic address plus the constant
2603 ;; in only 2 instructions. (For cases where the symbolic address
2604 ;; was not a common subexpression.)
2605 (define_split
2606   [(set (match_operand:SI 0 "register_operand" "")
2607         (match_operand:SI 1 "symbolic_operand" ""))
2608    (clobber (match_operand:SI 2 "register_operand" ""))]
2609   "! (flag_pic && pic_label_operand (operands[1], SImode))"
2610   [(set (match_dup 2) (high:SI (match_dup 1)))
2611    (set (match_dup 0) (lo_sum:SI (match_dup 2) (match_dup 1)))]
2612   "")
2613
2614 ;; hppa_legitimize_address goes to a great deal of trouble to
2615 ;; create addresses which use indexing.  In some cases, this
2616 ;; is a lose because there isn't any store instructions which
2617 ;; allow indexed addresses (with integer register source).
2618 ;;
2619 ;; These define_splits try to turn a 3 insn store into
2620 ;; a 2 insn store with some creative RTL rewriting.
2621 (define_split
2622   [(set (mem:SI (plus:SI (mult:SI (match_operand:SI 0 "register_operand" "")
2623                                (match_operand:SI 1 "shadd_operand" ""))
2624                    (plus:SI (match_operand:SI 2 "register_operand" "")
2625                             (match_operand:SI 3 "const_int_operand" ""))))
2626         (match_operand:SI 4 "register_operand" ""))
2627    (clobber (match_operand:SI 5 "register_operand" ""))]
2628   ""
2629   [(set (match_dup 5) (plus:SI (mult:SI (match_dup 0) (match_dup 1))
2630                                (match_dup 2)))
2631    (set (mem:SI (plus:SI (match_dup 5) (match_dup 3))) (match_dup 4))]
2632   "")
2633
2634 (define_split
2635   [(set (mem:HI (plus:SI (mult:SI (match_operand:SI 0 "register_operand" "")
2636                                (match_operand:SI 1 "shadd_operand" ""))
2637                    (plus:SI (match_operand:SI 2 "register_operand" "")
2638                             (match_operand:SI 3 "const_int_operand" ""))))
2639         (match_operand:HI 4 "register_operand" ""))
2640    (clobber (match_operand:SI 5 "register_operand" ""))]
2641   ""
2642   [(set (match_dup 5) (plus:SI (mult:SI (match_dup 0) (match_dup 1))
2643                                (match_dup 2)))
2644    (set (mem:HI (plus:SI (match_dup 5) (match_dup 3))) (match_dup 4))]
2645   "")
2646
2647 (define_split
2648   [(set (mem:QI (plus:SI (mult:SI (match_operand:SI 0 "register_operand" "")
2649                                (match_operand:SI 1 "shadd_operand" ""))
2650                    (plus:SI (match_operand:SI 2 "register_operand" "")
2651                             (match_operand:SI 3 "const_int_operand" ""))))
2652         (match_operand:QI 4 "register_operand" ""))
2653    (clobber (match_operand:SI 5 "register_operand" ""))]
2654   ""
2655   [(set (match_dup 5) (plus:SI (mult:SI (match_dup 0) (match_dup 1))
2656                                (match_dup 2)))
2657    (set (mem:QI (plus:SI (match_dup 5) (match_dup 3))) (match_dup 4))]
2658   "")
2659
2660 (define_expand "movhi"
2661   [(set (match_operand:HI 0 "general_operand" "")
2662         (match_operand:HI 1 "general_operand" ""))]
2663   ""
2664   "
2665 {
2666   if (emit_move_sequence (operands, HImode, 0))
2667     DONE;
2668 }")
2669
2670 (define_insn ""
2671   [(set (match_operand:HI 0 "reg_or_nonsymb_mem_operand" "=r,r,r,r,r,Q,*q,!*f")
2672         (match_operand:HI 1 "move_operand" "r,J,N,K,RQ,rM,rM,!*fM"))]
2673   "register_operand (operands[0], HImode)
2674    || reg_or_0_operand (operands[1], HImode)"
2675   "@
2676    copy %1,%0
2677    ldi %1,%0
2678    ldil L'%1,%0
2679    {zdepi|depwi,z} %Z1,%0
2680    ldh%M1 %1,%0
2681    sth%M0 %r1,%0
2682    mtsar %r1
2683    fcpy,sgl %f1,%0"
2684   [(set_attr "type" "move,move,move,shift,load,store,move,fpalu")
2685    (set_attr "pa_combine_type" "addmove")
2686    (set_attr "length" "4,4,4,4,4,4,4,4")])
2687
2688 (define_insn ""
2689   [(set (match_operand:HI 0 "register_operand" "=r")
2690         (mem:HI (plus:SI (match_operand:SI 1 "basereg_operand" "r")
2691                          (match_operand:SI 2 "register_operand" "r"))))]
2692   "! TARGET_DISABLE_INDEXING"
2693   "{ldhx|ldh} %2(%1),%0"
2694   [(set_attr "type" "load")
2695    (set_attr "length" "4")])
2696
2697 (define_insn ""
2698   [(set (match_operand:HI 0 "register_operand" "=r")
2699         (mem:HI (plus:SI (match_operand:SI 1 "register_operand" "r")
2700                          (match_operand:SI 2 "basereg_operand" "r"))))]
2701   "! TARGET_DISABLE_INDEXING"
2702   "{ldhx|ldh} %1(%2),%0"
2703   [(set_attr "type" "load")
2704    (set_attr "length" "4")])
2705
2706 ; Now zero extended variants.
2707 (define_insn ""
2708   [(set (match_operand:SI 0 "register_operand" "=r")
2709         (zero_extend:SI (mem:HI
2710                           (plus:SI
2711                             (match_operand:SI 1 "basereg_operand" "r")
2712                             (match_operand:SI 2 "register_operand" "r")))))]
2713   "! TARGET_DISABLE_INDEXING"
2714   "{ldhx|ldh} %2(%1),%0"
2715   [(set_attr "type" "load")
2716    (set_attr "length" "4")])
2717
2718 (define_insn ""
2719   [(set (match_operand:SI 0 "register_operand" "=r")
2720         (zero_extend:SI (mem:HI
2721                           (plus:SI
2722                              (match_operand:SI 1 "register_operand" "r")
2723                              (match_operand:SI 2 "basereg_operand" "r")))))]
2724   "! TARGET_DISABLE_INDEXING"
2725   "{ldhx|ldh} %1(%2),%0"
2726   [(set_attr "type" "load")
2727    (set_attr "length" "4")])
2728
2729 (define_insn ""
2730   [(set (match_operand:HI 0 "register_operand" "=r")
2731         (mem:HI (plus:SI (match_operand:SI 1 "register_operand" "+r")
2732                          (match_operand:SI 2 "int5_operand" "L"))))
2733    (set (match_dup 1)
2734         (plus:SI (match_dup 1) (match_dup 2)))]
2735   ""
2736   "{ldhs|ldh},mb %2(%1),%0"
2737   [(set_attr "type" "load")
2738    (set_attr "length" "4")])
2739
2740 ; And a zero extended variant.
2741 (define_insn ""
2742   [(set (match_operand:SI 0 "register_operand" "=r")
2743         (zero_extend:SI (mem:HI
2744                           (plus:SI
2745                             (match_operand:SI 1 "register_operand" "+r")
2746                             (match_operand:SI 2 "int5_operand" "L")))))
2747    (set (match_dup 1)
2748         (plus:SI (match_dup 1) (match_dup 2)))]
2749   ""
2750   "{ldhs|ldh},mb %2(%1),%0"
2751   [(set_attr "type" "load")
2752    (set_attr "length" "4")])
2753
2754 (define_insn ""
2755   [(set (mem:HI (plus:SI (match_operand:SI 0 "register_operand" "+r")
2756                          (match_operand:SI 1 "int5_operand" "L")))
2757         (match_operand:HI 2 "reg_or_0_operand" "rM"))
2758    (set (match_dup 0)
2759         (plus:SI (match_dup 0) (match_dup 1)))]
2760   ""
2761   "{sths|sth},mb %r2,%1(%0)"
2762   [(set_attr "type" "store")
2763    (set_attr "length" "4")])
2764
2765 (define_insn ""
2766   [(set (match_operand:HI 0 "register_operand" "=r")
2767         (plus:HI (match_operand:HI 1 "register_operand" "r")
2768                  (match_operand 2 "const_int_operand" "J")))]
2769   ""
2770   "ldo %2(%1),%0"
2771   [(set_attr "type" "binary")
2772    (set_attr "pa_combine_type" "addmove")
2773    (set_attr "length" "4")])
2774
2775 (define_expand "movqi"
2776   [(set (match_operand:QI 0 "general_operand" "")
2777         (match_operand:QI 1 "general_operand" ""))]
2778   ""
2779   "
2780 {
2781   if (emit_move_sequence (operands, QImode, 0))
2782     DONE;
2783 }")
2784
2785 (define_insn ""
2786   [(set (match_operand:QI 0 "reg_or_nonsymb_mem_operand" "=r,r,r,r,r,Q,*q,!*f")
2787         (match_operand:QI 1 "move_operand" "r,J,N,K,RQ,rM,rM,!*fM"))]
2788   "register_operand (operands[0], QImode)
2789    || reg_or_0_operand (operands[1], QImode)"
2790   "@
2791    copy %1,%0
2792    ldi %1,%0
2793    ldil L'%1,%0
2794    {zdepi|depwi,z} %Z1,%0
2795    ldb%M1 %1,%0
2796    stb%M0 %r1,%0
2797    mtsar %r1
2798    fcpy,sgl %f1,%0"
2799   [(set_attr "type" "move,move,move,shift,load,store,move,fpalu")
2800    (set_attr "pa_combine_type" "addmove")
2801    (set_attr "length" "4,4,4,4,4,4,4,4")])
2802
2803 (define_insn ""
2804   [(set (match_operand:QI 0 "register_operand" "=r")
2805         (mem:QI (plus:SI (match_operand:SI 1 "basereg_operand" "r")
2806                          (match_operand:SI 2 "register_operand" "r"))))]
2807   "! TARGET_DISABLE_INDEXING"
2808   "{ldbx|ldb} %2(%1),%0"
2809   [(set_attr "type" "load")
2810    (set_attr "length" "4")])
2811
2812 (define_insn ""
2813   [(set (match_operand:QI 0 "register_operand" "=r")
2814         (mem:QI (plus:SI (match_operand:SI 1 "register_operand" "r")
2815                          (match_operand:SI 2 "basereg_operand" "r"))))]
2816   "! TARGET_DISABLE_INDEXING"
2817   "{ldbx|ldb} %1(%2),%0"
2818   [(set_attr "type" "load")
2819    (set_attr "length" "4")])
2820
2821 ; Indexed byte load with zero extension to SImode or HImode.
2822 (define_insn ""
2823   [(set (match_operand:SI 0 "register_operand" "=r")
2824         (zero_extend:SI (mem:QI
2825                           (plus:SI
2826                             (match_operand:SI 1 "basereg_operand" "r")
2827                             (match_operand:SI 2 "register_operand" "r")))))]
2828   "! TARGET_DISABLE_INDEXING"
2829   "{ldbx|ldb} %2(%1),%0"
2830   [(set_attr "type" "load")
2831    (set_attr "length" "4")])
2832
2833 (define_insn ""
2834   [(set (match_operand:SI 0 "register_operand" "=r")
2835         (zero_extend:SI (mem:QI
2836                           (plus:SI
2837                             (match_operand:SI 1 "register_operand" "r")
2838                             (match_operand:SI 2 "basereg_operand" "r")))))]
2839   "! TARGET_DISABLE_INDEXING"
2840   "{ldbx|ldb} %1(%2),%0"
2841   [(set_attr "type" "load")
2842    (set_attr "length" "4")])
2843
2844 (define_insn ""
2845   [(set (match_operand:HI 0 "register_operand" "=r")
2846         (zero_extend:HI (mem:QI
2847                           (plus:SI
2848                             (match_operand:SI 1 "basereg_operand" "r")
2849                             (match_operand:SI 2 "register_operand" "r")))))]
2850   "! TARGET_DISABLE_INDEXING"
2851   "{ldbx|ldb} %2(%1),%0"
2852   [(set_attr "type" "load")
2853    (set_attr "length" "4")])
2854
2855 (define_insn ""
2856   [(set (match_operand:HI 0 "register_operand" "=r")
2857         (zero_extend:HI (mem:QI
2858                           (plus:SI
2859                             (match_operand:SI 1 "register_operand" "r")
2860                             (match_operand:SI 2 "basereg_operand" "r")))))]
2861   "! TARGET_DISABLE_INDEXING"
2862   "{ldbx|ldb} %1(%2),%0"
2863   [(set_attr "type" "load")
2864    (set_attr "length" "4")])
2865
2866 (define_insn ""
2867   [(set (match_operand:QI 0 "register_operand" "=r")
2868         (mem:QI (plus:SI (match_operand:SI 1 "register_operand" "+r")
2869                          (match_operand:SI 2 "int5_operand" "L"))))
2870    (set (match_dup 1) (plus:SI (match_dup 1) (match_dup 2)))]
2871   ""
2872   "{ldbs|ldb},mb %2(%1),%0"
2873   [(set_attr "type" "load")
2874    (set_attr "length" "4")])
2875
2876 ; Now the same thing with zero extensions.
2877 (define_insn ""
2878   [(set (match_operand:SI 0 "register_operand" "=r")
2879         (zero_extend:SI (mem:QI (plus:SI
2880                                   (match_operand:SI 1 "register_operand" "+r")
2881                                   (match_operand:SI 2 "int5_operand" "L")))))
2882    (set (match_dup 1) (plus:SI (match_dup 1) (match_dup 2)))]
2883   ""
2884   "{ldbs|ldb},mb %2(%1),%0"
2885   [(set_attr "type" "load")
2886    (set_attr "length" "4")])
2887
2888 (define_insn ""
2889   [(set (match_operand:HI 0 "register_operand" "=r")
2890         (zero_extend:HI (mem:QI (plus:SI
2891                                   (match_operand:SI 1 "register_operand" "+r")
2892                                   (match_operand:SI 2 "int5_operand" "L")))))
2893    (set (match_dup 1) (plus:SI (match_dup 1) (match_dup 2)))]
2894   ""
2895   "{ldbs|ldb},mb %2(%1),%0"
2896   [(set_attr "type" "load")
2897    (set_attr "length" "4")])
2898
2899 (define_insn ""
2900   [(set (mem:QI (plus:SI (match_operand:SI 0 "register_operand" "+r")
2901                          (match_operand:SI 1 "int5_operand" "L")))
2902         (match_operand:QI 2 "reg_or_0_operand" "rM"))
2903    (set (match_dup 0)
2904         (plus:SI (match_dup 0) (match_dup 1)))]
2905   ""
2906   "{stbs|stb},mb %r2,%1(%0)"
2907   [(set_attr "type" "store")
2908    (set_attr "length" "4")])
2909
2910 ;; The definition of this insn does not really explain what it does,
2911 ;; but it should suffice
2912 ;; that anything generated as this insn will be recognized as one
2913 ;; and that it will not successfully combine with anything.
2914 (define_expand "movstrsi"
2915   [(parallel [(set (match_operand:BLK 0 "" "")
2916                    (match_operand:BLK 1 "" ""))
2917               (clobber (match_dup 7))
2918               (clobber (match_dup 8))
2919               (clobber (match_dup 4))
2920               (clobber (match_dup 5))
2921               (clobber (match_dup 6))
2922               (use (match_operand:SI 2 "arith_operand" ""))
2923               (use (match_operand:SI 3 "const_int_operand" ""))])]
2924   "!TARGET_64BIT"
2925   "
2926 {
2927   int size, align;
2928
2929   /* HP provides very fast block move library routine for the PA;
2930      this routine includes:
2931
2932         4x4 byte at a time block moves,
2933         1x4 byte at a time with alignment checked at runtime with
2934             attempts to align the source and destination as needed
2935         1x1 byte loop
2936
2937      With that in mind, here's the heuristics to try and guess when
2938      the inlined block move will be better than the library block
2939      move:
2940
2941         If the size isn't constant, then always use the library routines.
2942
2943         If the size is large in respect to the known alignment, then use
2944         the library routines.
2945
2946         If the size is small in repsect to the known alignment, then open
2947         code the copy (since that will lead to better scheduling).
2948
2949         Else use the block move pattern.   */
2950
2951   /* Undetermined size, use the library routine.  */
2952   if (GET_CODE (operands[2]) != CONST_INT)
2953     FAIL;
2954
2955   size = INTVAL (operands[2]);
2956   align = INTVAL (operands[3]);
2957   align = align > 4 ? 4 : align;
2958
2959   /* If size/alignment > 8 (eg size is large in respect to alignment),
2960      then use the library routines.  */
2961   if (size / align > 16)
2962     FAIL;
2963
2964   /* This does happen, but not often enough to worry much about.  */
2965   if (size / align < MOVE_RATIO)
2966     FAIL;
2967   
2968   /* Fall through means we're going to use our block move pattern.  */
2969   operands[0]
2970     = replace_equiv_address (operands[0],
2971                              copy_to_mode_reg (SImode, XEXP (operands[0], 0)));
2972   operands[1]
2973     = replace_equiv_address (operands[1],
2974                              copy_to_mode_reg (SImode, XEXP (operands[1], 0)));
2975   operands[4] = gen_reg_rtx (SImode);
2976   operands[5] = gen_reg_rtx (SImode);
2977   operands[6] = gen_reg_rtx (SImode);
2978   operands[7] = XEXP (operands[0], 0);
2979   operands[8] = XEXP (operands[1], 0);
2980 }")
2981
2982 ;; The operand constraints are written like this to support both compile-time
2983 ;; and run-time determined byte count.  If the count is run-time determined,
2984 ;; the register with the byte count is clobbered by the copying code, and
2985 ;; therefore it is forced to operand 2.  If the count is compile-time
2986 ;; determined, we need two scratch registers for the unrolled code.
2987 (define_insn "movstrsi_internal"
2988   [(set (mem:BLK (match_operand:SI 0 "register_operand" "+r,r"))
2989         (mem:BLK (match_operand:SI 1 "register_operand" "+r,r")))
2990    (clobber (match_dup 0))
2991    (clobber (match_dup 1))
2992    (clobber (match_operand:SI 2 "register_operand" "=r,r"))     ;loop cnt/tmp
2993    (clobber (match_operand:SI 3 "register_operand" "=&r,&r"))   ;item tmp
2994    (clobber (match_operand:SI 6 "register_operand" "=&r,&r"))   ;item tmp2
2995    (use (match_operand:SI 4 "arith_operand" "J,2"))      ;byte count
2996    (use (match_operand:SI 5 "const_int_operand" "n,n"))] ;alignment
2997   "!TARGET_64BIT"
2998   "* return output_block_move (operands, !which_alternative);"
2999   [(set_attr "type" "multi,multi")])
3000 \f
3001 ;; Floating point move insns
3002
3003 ;; This pattern forces (set (reg:DF ...) (const_double ...))
3004 ;; to be reloaded by putting the constant into memory when
3005 ;; reg is a floating point register.
3006 ;;
3007 ;; For integer registers we use ldil;ldo to set the appropriate
3008 ;; value.
3009 ;;
3010 ;; This must come before the movdf pattern, and it must be present
3011 ;; to handle obscure reloading cases.
3012 (define_insn ""
3013   [(set (match_operand:DF 0 "register_operand" "=?r,f")
3014         (match_operand:DF 1 "" "?F,m"))]
3015   "GET_CODE (operands[1]) == CONST_DOUBLE
3016    && operands[1] != CONST0_RTX (DFmode)
3017    && !TARGET_64BIT
3018    && ! TARGET_SOFT_FLOAT"
3019   "* return (which_alternative == 0 ? output_move_double (operands)
3020                                     : \"fldd%F1 %1,%0\");"
3021   [(set_attr "type" "move,fpload")
3022    (set_attr "length" "16,4")])
3023
3024 (define_expand "movdf"
3025   [(set (match_operand:DF 0 "general_operand" "")
3026         (match_operand:DF 1 "general_operand" ""))]
3027   ""
3028   "
3029 {
3030   if (GET_CODE (operands[1]) == CONST_DOUBLE && TARGET_64BIT)
3031       operands[1] = force_const_mem (DFmode, operands[1]);
3032
3033   if (emit_move_sequence (operands, DFmode, 0))
3034     DONE;
3035 }")
3036
3037 ;; Reloading an SImode or DImode value requires a scratch register if
3038 ;; going in to or out of float point registers.
3039
3040 (define_expand "reload_indf"
3041   [(set (match_operand:DF 0 "register_operand" "=Z")
3042         (match_operand:DF 1 "non_hard_reg_operand" ""))
3043    (clobber (match_operand:DF 2 "register_operand" "=&r"))]
3044   ""
3045   "
3046 {
3047   if (emit_move_sequence (operands, DFmode, operands[2]))
3048     DONE;
3049
3050   /* We don't want the clobber emitted, so handle this ourselves.  */
3051   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
3052   DONE;
3053 }")
3054
3055 (define_expand "reload_outdf" 
3056  [(set (match_operand:DF 0 "non_hard_reg_operand" "")
3057         (match_operand:DF 1  "register_operand" "Z"))
3058    (clobber (match_operand:DF 2 "register_operand" "=&r"))]
3059   ""
3060   "
3061 {
3062   if (emit_move_sequence (operands, DFmode, operands[2]))
3063     DONE;
3064
3065   /* We don't want the clobber emitted, so handle this ourselves.  */
3066   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
3067   DONE;
3068 }")
3069
3070 (define_insn ""
3071   [(set (match_operand:DF 0 "reg_or_nonsymb_mem_operand"
3072                           "=f,*r,RQ,?o,?Q,f,*r,*r")
3073         (match_operand:DF 1 "reg_or_0_or_nonsymb_mem_operand"
3074                           "fG,*rG,f,*r,*r,RQ,o,RQ"))]
3075   "(register_operand (operands[0], DFmode)
3076     || reg_or_0_operand (operands[1], DFmode))
3077    && ! (GET_CODE (operands[1]) == CONST_DOUBLE
3078          && GET_CODE (operands[0]) == MEM)
3079    && ! TARGET_64BIT
3080    && ! TARGET_SOFT_FLOAT"
3081   "*
3082 {
3083   if (FP_REG_P (operands[0]) || FP_REG_P (operands[1])
3084       || operands[1] == CONST0_RTX (DFmode))
3085     return output_fp_move_double (operands);
3086   return output_move_double (operands);
3087 }"
3088   [(set_attr "type" "fpalu,move,fpstore,store,store,fpload,load,load")
3089    (set_attr "length" "4,8,4,8,16,4,8,16")])
3090
3091 (define_insn ""
3092   [(set (match_operand:DF 0 "reg_or_nonsymb_mem_operand"
3093                           "=r,?o,?Q,r,r")
3094         (match_operand:DF 1 "reg_or_0_or_nonsymb_mem_operand"
3095                           "rG,r,r,o,Q"))]
3096   "(register_operand (operands[0], DFmode)
3097     || reg_or_0_operand (operands[1], DFmode))
3098    && ! TARGET_64BIT
3099    && TARGET_SOFT_FLOAT"
3100   "*
3101 {
3102   return output_move_double (operands);
3103 }"
3104   [(set_attr "type" "move,store,store,load,load")
3105    (set_attr "length" "8,8,16,8,16")])
3106
3107 (define_insn ""
3108   [(set (match_operand:DF 0 "reg_or_nonsymb_mem_operand"
3109                                 "=r,r,r,r,r,Q,*q,!f,f,*TR")
3110         (match_operand:DF 1 "move_operand"
3111                                 "r,J,N,K,RQ,rM,rM,!fM,*RT,f"))]
3112   "(register_operand (operands[0], DFmode)
3113     || reg_or_0_operand (operands[1], DFmode))
3114    && ! TARGET_SOFT_FLOAT && TARGET_64BIT"
3115   "@
3116    copy %1,%0
3117    ldi %1,%0
3118    ldil L'%1,%0
3119    depdi,z %z1,%0
3120    ldd%M1 %1,%0
3121    std%M0 %r1,%0
3122    mtsar %r1
3123    fcpy,dbl %f1,%0
3124    fldd%F1 %1,%0
3125    fstd%F0 %1,%0"
3126   [(set_attr "type" "move,move,move,shift,load,store,move,fpalu,fpload,fpstore")
3127    (set_attr "pa_combine_type" "addmove")
3128    (set_attr "length" "4,4,4,4,4,4,4,4,4,4")])
3129
3130 (define_insn ""
3131   [(set (match_operand:DF 0 "register_operand" "=fx")
3132         (mem:DF (plus:SI (match_operand:SI 1 "basereg_operand" "r")
3133                          (match_operand:SI 2 "register_operand" "r"))))]
3134   "! TARGET_DISABLE_INDEXING && ! TARGET_SOFT_FLOAT"
3135   "{flddx|fldd} %2(%1),%0"
3136   [(set_attr "type" "fpload")
3137    (set_attr "length" "4")])
3138
3139 (define_insn ""
3140   [(set (match_operand:DF 0 "register_operand" "=fx")
3141         (mem:DF (plus:SI (match_operand:SI 1 "register_operand" "r")
3142                          (match_operand:SI 2 "basereg_operand" "r"))))]
3143   "! TARGET_DISABLE_INDEXING && ! TARGET_SOFT_FLOAT"
3144   "{flddx|fldd} %1(%2),%0"
3145   [(set_attr "type" "fpload")
3146    (set_attr "length" "4")])
3147
3148 (define_insn ""
3149   [(set (mem:DF (plus:SI (match_operand:SI 1 "basereg_operand" "r")
3150                          (match_operand:SI 2 "register_operand" "r")))
3151         (match_operand:DF 0 "register_operand" "fx"))]
3152   "! TARGET_DISABLE_INDEXING && ! TARGET_SOFT_FLOAT"
3153   "{fstdx|fstd} %0,%2(%1)"
3154   [(set_attr "type" "fpstore")
3155    (set_attr "length" "4")])
3156
3157 (define_insn ""
3158   [(set (mem:DF (plus:SI (match_operand:SI 1 "register_operand" "r")
3159                          (match_operand:SI 2 "basereg_operand" "r")))
3160         (match_operand:DF 0 "register_operand" "fx"))]
3161   "! TARGET_DISABLE_INDEXING && ! TARGET_SOFT_FLOAT"
3162   "{fstdx|fstd} %0,%1(%2)"
3163   [(set_attr "type" "fpstore")
3164    (set_attr "length" "4")])
3165
3166 (define_expand "movdi"
3167   [(set (match_operand:DI 0 "reg_or_nonsymb_mem_operand" "")
3168         (match_operand:DI 1 "general_operand" ""))]
3169   ""
3170   "
3171 {
3172   if (GET_CODE (operands[1]) == CONST_DOUBLE && TARGET_64BIT)
3173       operands[1] = force_const_mem (DImode, operands[1]);
3174
3175   if (emit_move_sequence (operands, DImode, 0))
3176     DONE;
3177 }")
3178
3179 (define_expand "reload_indi"
3180   [(set (match_operand:DI 0 "register_operand" "=Z")
3181         (match_operand:DI 1 "non_hard_reg_operand" ""))
3182    (clobber (match_operand:SI 2 "register_operand" "=&r"))]
3183   ""
3184   "
3185 {
3186   if (emit_move_sequence (operands, DImode, operands[2]))
3187     DONE;
3188
3189   /* We don't want the clobber emitted, so handle this ourselves.  */
3190   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
3191   DONE;
3192 }")
3193
3194 (define_expand "reload_outdi"
3195   [(set (match_operand:DI 0 "non_hard_reg_operand" "")
3196         (match_operand:DI 1 "register_operand" "Z"))
3197    (clobber (match_operand:SI 2 "register_operand" "=&r"))]
3198   ""
3199   "
3200 {
3201   if (emit_move_sequence (operands, DImode, operands[2]))
3202     DONE;
3203
3204   /* We don't want the clobber emitted, so handle this ourselves.  */
3205   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
3206   DONE;
3207 }")
3208
3209 (define_insn ""
3210   [(set (match_operand:DI 0 "register_operand" "=r")
3211         (high:DI (match_operand 1 "" "")))]
3212   "!TARGET_64BIT"
3213   "*
3214 {
3215   rtx op0 = operands[0];
3216   rtx op1 = operands[1];
3217
3218   if (GET_CODE (op1) == CONST_INT)
3219     {
3220       operands[0] = operand_subword (op0, 1, 0, DImode);
3221       output_asm_insn (\"ldil L'%1,%0\", operands);
3222
3223       operands[0] = operand_subword (op0, 0, 0, DImode);
3224       if (INTVAL (op1) < 0)
3225         output_asm_insn (\"ldi -1,%0\", operands);
3226       else
3227         output_asm_insn (\"ldi 0,%0\", operands);
3228       return \"\";
3229     }
3230   else if (GET_CODE (op1) == CONST_DOUBLE)
3231     {
3232       operands[0] = operand_subword (op0, 1, 0, DImode);
3233       operands[1] = GEN_INT (CONST_DOUBLE_LOW (op1));
3234       output_asm_insn (\"ldil L'%1,%0\", operands);
3235
3236       operands[0] = operand_subword (op0, 0, 0, DImode);
3237       operands[1] = GEN_INT (CONST_DOUBLE_HIGH (op1));
3238       output_asm_insn (singlemove_string (operands), operands);
3239       return \"\";
3240     }
3241   else
3242     abort ();
3243 }"
3244   [(set_attr "type" "move")
3245    (set_attr "length" "8")])
3246
3247 (define_insn ""
3248   [(set (match_operand:DI 0 "reg_or_nonsymb_mem_operand"
3249                           "=r,o,Q,r,r,r,f,f,*TR")
3250         (match_operand:DI 1 "general_operand"
3251                           "rM,r,r,o*R,Q,i,fM,*TR,f"))]
3252   "(register_operand (operands[0], DImode)
3253     || reg_or_0_operand (operands[1], DImode))
3254    && ! TARGET_64BIT
3255    && ! TARGET_SOFT_FLOAT"
3256   "*
3257 {
3258   if (FP_REG_P (operands[0]) || FP_REG_P (operands[1])
3259       || (operands[1] == CONST0_RTX (DImode)))
3260     return output_fp_move_double (operands);
3261   return output_move_double (operands);
3262 }"
3263   [(set_attr "type" "move,store,store,load,load,multi,fpalu,fpload,fpstore")
3264    (set_attr "length" "8,8,16,8,16,16,4,4,4")])
3265
3266 (define_insn ""
3267   [(set (match_operand:DI 0 "reg_or_nonsymb_mem_operand"
3268                                 "=r,r,r,r,r,r,Q,*q,!f,f,*TR")
3269         (match_operand:DI 1 "move_operand"
3270                                 "A,r,J,N,K,RQ,rM,rM,!fM,*RT,f"))]
3271   "(register_operand (operands[0], DImode)
3272     || reg_or_0_operand (operands[1], DImode))
3273    && ! TARGET_SOFT_FLOAT && TARGET_64BIT"
3274   "@
3275    ldd RT'%A1,%0
3276    copy %1,%0
3277    ldi %1,%0
3278    ldil L'%1,%0
3279    depdi,z %z1,%0
3280    ldd%M1 %1,%0
3281    std%M0 %r1,%0
3282    mtsar %r1
3283    fcpy,dbl %f1,%0
3284    fldd%F1 %1,%0
3285    fstd%F0 %1,%0"
3286   [(set_attr "type" "load,move,move,move,shift,load,store,move,fpalu,fpload,fpstore")
3287    (set_attr "pa_combine_type" "addmove")
3288    (set_attr "length" "4,4,4,4,4,4,4,4,4,4,4")])
3289
3290 (define_insn ""
3291   [(set (match_operand:DI 0 "reg_or_nonsymb_mem_operand"
3292                           "=r,o,Q,r,r,r")
3293         (match_operand:DI 1 "general_operand"
3294                           "rM,r,r,o,Q,i"))]
3295   "(register_operand (operands[0], DImode)
3296     || reg_or_0_operand (operands[1], DImode))
3297    && ! TARGET_64BIT
3298    && TARGET_SOFT_FLOAT"
3299   "*
3300 {
3301   return output_move_double (operands);
3302 }"
3303   [(set_attr "type" "move,store,store,load,load,multi")
3304    (set_attr "length" "8,8,16,8,16,16")])
3305
3306 (define_insn ""
3307   [(set (match_operand:DI 0 "register_operand" "=r,&r")
3308         (lo_sum:DI (match_operand:DI 1 "register_operand" "0,r")
3309                    (match_operand:DI 2 "immediate_operand" "i,i")))]
3310   "!TARGET_64BIT"
3311   "*
3312 {
3313   /* Don't output a 64 bit constant, since we can't trust the assembler to
3314      handle it correctly.  */
3315   if (GET_CODE (operands[2]) == CONST_DOUBLE)
3316     operands[2] = GEN_INT (CONST_DOUBLE_LOW (operands[2]));
3317   if (which_alternative == 1)
3318     output_asm_insn (\"copy %1,%0\", operands);
3319   return \"ldo R'%G2(%R1),%R0\";
3320 }"
3321   [(set_attr "type" "move,move")
3322    (set_attr "length" "4,8")])
3323
3324 ;; This pattern forces (set (reg:SF ...) (const_double ...))
3325 ;; to be reloaded by putting the constant into memory when
3326 ;; reg is a floating point register.
3327 ;;
3328 ;; For integer registers we use ldil;ldo to set the appropriate
3329 ;; value.
3330 ;;
3331 ;; This must come before the movsf pattern, and it must be present
3332 ;; to handle obscure reloading cases.
3333 (define_insn ""
3334   [(set (match_operand:SF 0 "register_operand" "=?r,f")
3335         (match_operand:SF 1 "" "?F,m"))]
3336   "GET_CODE (operands[1]) == CONST_DOUBLE
3337    && operands[1] != CONST0_RTX (SFmode)
3338    && ! TARGET_SOFT_FLOAT"
3339   "* return (which_alternative == 0 ? singlemove_string (operands)
3340                                     : \" fldw%F1 %1,%0\");"
3341   [(set_attr "type" "move,fpload")
3342    (set_attr "length" "8,4")])
3343
3344 (define_expand "movsf"
3345   [(set (match_operand:SF 0 "general_operand" "")
3346         (match_operand:SF 1 "general_operand" ""))]
3347   ""
3348   "
3349 {
3350   if (emit_move_sequence (operands, SFmode, 0))
3351     DONE;
3352 }")
3353
3354 ;; Reloading an SImode or DImode value requires a scratch register if
3355 ;; going in to or out of float point registers.
3356
3357 (define_expand "reload_insf"
3358   [(set (match_operand:SF 0 "register_operand" "=Z")
3359         (match_operand:SF 1 "non_hard_reg_operand" ""))
3360    (clobber (match_operand:SF 2 "register_operand" "=&r"))]
3361   ""
3362   "
3363 {
3364   if (emit_move_sequence (operands, SFmode, operands[2]))
3365     DONE;
3366
3367   /* We don't want the clobber emitted, so handle this ourselves.  */
3368   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
3369   DONE;
3370 }")
3371
3372 (define_expand "reload_outsf"
3373   [(set (match_operand:SF 0 "non_hard_reg_operand" "")
3374         (match_operand:SF 1  "register_operand" "Z"))
3375    (clobber (match_operand:SF 2 "register_operand" "=&r"))]
3376   ""
3377   "
3378 {
3379   if (emit_move_sequence (operands, SFmode, operands[2]))
3380     DONE;
3381
3382   /* We don't want the clobber emitted, so handle this ourselves.  */
3383   emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
3384   DONE;
3385 }")
3386
3387 (define_insn ""
3388   [(set (match_operand:SF 0 "reg_or_nonsymb_mem_operand"
3389                           "=f,r,f,r,RQ,Q")
3390         (match_operand:SF 1 "reg_or_0_or_nonsymb_mem_operand"
3391                           "fG,rG,RQ,RQ,f,rG"))]
3392   "(register_operand (operands[0], SFmode)
3393     || reg_or_0_operand (operands[1], SFmode))
3394    && ! TARGET_SOFT_FLOAT"
3395   "@
3396    fcpy,sgl %f1,%0
3397    copy %r1,%0
3398    fldw%F1 %1,%0
3399    ldw%M1 %1,%0
3400    fstw%F0 %r1,%0
3401    stw%M0 %r1,%0"
3402   [(set_attr "type" "fpalu,move,fpload,load,fpstore,store")
3403    (set_attr "pa_combine_type" "addmove")
3404    (set_attr "length" "4,4,4,4,4,4")])
3405
3406 (define_insn ""
3407   [(set (match_operand:SF 0 "reg_or_nonsymb_mem_operand"
3408                           "=r,r,Q")
3409         (match_operand:SF 1 "reg_or_0_or_nonsymb_mem_operand"
3410                           "rG,RQ,rG"))]
3411   "(register_operand (operands[0], SFmode)
3412     || reg_or_0_operand (operands[1], SFmode))
3413    && TARGET_SOFT_FLOAT"
3414   "@
3415    copy %r1,%0
3416    ldw%M1 %1,%0
3417    stw%M0 %r1,%0"
3418   [(set_attr "type" "move,load,store")
3419    (set_attr "pa_combine_type" "addmove")
3420    (set_attr "length" "4,4,4")])
3421
3422 (define_insn ""
3423   [(set (match_operand:SF 0 "register_operand" "=fx")
3424         (mem:SF (plus:SI (match_operand:SI 1 "basereg_operand" "r")
3425                          (match_operand:SI 2 "register_operand" "r"))))]
3426   "! TARGET_DISABLE_INDEXING && ! TARGET_SOFT_FLOAT"
3427   "{fldwx|fldw} %2(%1),%0"
3428   [(set_attr "type" "fpload")
3429    (set_attr "length" "4")])
3430
3431 (define_insn ""
3432   [(set (match_operand:SF 0 "register_operand" "=fx")
3433         (mem:SF (plus:SI (match_operand:SI 1 "register_operand" "r")
3434                          (match_operand:SI 2 "basereg_operand" "r"))))]
3435   "! TARGET_DISABLE_INDEXING && ! TARGET_SOFT_FLOAT"
3436   "{fldwx|fldw} %1(%2),%0"
3437   [(set_attr "type" "fpload")
3438    (set_attr "length" "4")])
3439
3440 (define_insn ""
3441   [(set (mem:SF (plus:SI (match_operand:SI 1 "basereg_operand" "r")
3442                          (match_operand:SI 2 "register_operand" "r")))
3443       (match_operand:SF 0 "register_operand" "fx"))]
3444   "! TARGET_DISABLE_INDEXING && ! TARGET_SOFT_FLOAT"
3445   "{fstwx|fstw} %0,%2(%1)"
3446   [(set_attr "type" "fpstore")
3447    (set_attr "length" "4")])
3448 \f
3449 (define_insn ""
3450   [(set (mem:SF (plus:SI (match_operand:SI 1 "register_operand" "r")
3451                          (match_operand:SI 2 "basereg_operand" "r")))
3452       (match_operand:SF 0 "register_operand" "fx"))]
3453   "! TARGET_DISABLE_INDEXING && ! TARGET_SOFT_FLOAT"
3454   "{fstwx|fstw} %0,%1(%2)"
3455   [(set_attr "type" "fpstore")
3456    (set_attr "length" "4")])
3457 \f
3458
3459 ;;- zero extension instructions
3460 ;; We have define_expand for zero extension patterns to make sure the
3461 ;; operands get loaded into registers.  The define_insns accept
3462 ;; memory operands.  This gives us better overall code than just
3463 ;; having a pattern that does or does not accept memory operands.
3464
3465 (define_expand "zero_extendhisi2"
3466   [(set (match_operand:SI 0 "register_operand" "")
3467         (zero_extend:SI
3468          (match_operand:HI 1 "register_operand" "")))]
3469   ""
3470   "")
3471
3472 (define_insn ""
3473   [(set (match_operand:SI 0 "register_operand" "=r,r")
3474         (zero_extend:SI
3475          (match_operand:HI 1 "move_operand" "r,RQ")))]
3476   "GET_CODE (operands[1]) != CONST_INT"
3477   "@
3478    {extru|extrw,u} %1,31,16,%0
3479    ldh%M1 %1,%0"
3480   [(set_attr "type" "shift,load")
3481    (set_attr "length" "4,4")])
3482
3483 (define_expand "zero_extendqihi2"
3484   [(set (match_operand:HI 0 "register_operand" "")
3485         (zero_extend:HI
3486          (match_operand:QI 1 "register_operand" "")))]
3487   ""
3488   "")
3489
3490 (define_insn ""
3491   [(set (match_operand:HI 0 "register_operand" "=r,r")
3492         (zero_extend:HI
3493          (match_operand:QI 1 "move_operand" "r,RQ")))]
3494   "GET_CODE (operands[1]) != CONST_INT"
3495   "@
3496    {extru|extrw,u} %1,31,8,%0
3497    ldb%M1 %1,%0"
3498   [(set_attr "type" "shift,load")
3499    (set_attr "length" "4,4")])
3500
3501 (define_expand "zero_extendqisi2"
3502   [(set (match_operand:SI 0 "register_operand" "")
3503         (zero_extend:SI
3504          (match_operand:QI 1 "register_operand" "")))]
3505   ""
3506   "")
3507
3508 (define_insn ""
3509   [(set (match_operand:SI 0 "register_operand" "=r,r")
3510         (zero_extend:SI
3511          (match_operand:QI 1 "move_operand" "r,RQ")))]
3512   "GET_CODE (operands[1]) != CONST_INT"
3513   "@
3514    {extru|extrw,u} %1,31,8,%0
3515    ldb%M1 %1,%0"
3516   [(set_attr "type" "shift,load")
3517    (set_attr "length" "4,4")])
3518
3519 (define_insn "zero_extendqidi2"
3520   [(set (match_operand:DI 0 "register_operand" "=r")
3521         (zero_extend:DI (match_operand:QI 1 "register_operand" "r")))]
3522   "TARGET_64BIT"
3523   "extrd,u %1,63,8,%0"
3524   [(set_attr "type" "shift") 
3525   (set_attr "length" "4")])
3526
3527 (define_insn "zero_extendhidi2"
3528   [(set (match_operand:DI 0 "register_operand" "=r")
3529         (zero_extend:DI (match_operand:HI 1 "register_operand" "r")))]
3530   "TARGET_64BIT"
3531   "extrd,u %1,63,16,%0"
3532   [(set_attr "type" "shift") 
3533   (set_attr "length" "4")])
3534
3535 (define_insn "zero_extendsidi2"
3536   [(set (match_operand:DI 0 "register_operand" "=r")
3537         (zero_extend:DI (match_operand:SI 1 "register_operand" "r")))]
3538   "TARGET_64BIT"
3539   "extrd,u %1,63,32,%0"
3540   [(set_attr "type" "shift") 
3541   (set_attr "length" "4")])
3542
3543 ;;- sign extension instructions
3544
3545 (define_insn "extendhisi2"
3546   [(set (match_operand:SI 0 "register_operand" "=r")
3547         (sign_extend:SI (match_operand:HI 1 "register_operand" "r")))]
3548   ""
3549   "{extrs|extrw,s} %1,31,16,%0"
3550   [(set_attr "type" "shift")
3551    (set_attr "length" "4")])
3552
3553 (define_insn "extendqihi2"
3554   [(set (match_operand:HI 0 "register_operand" "=r")
3555         (sign_extend:HI (match_operand:QI 1 "register_operand" "r")))]
3556   ""
3557   "{extrs|extrw,s} %1,31,8,%0"
3558   [(set_attr "type" "shift") 
3559   (set_attr "length" "4")])
3560
3561 (define_insn "extendqisi2"
3562   [(set (match_operand:SI 0 "register_operand" "=r")
3563         (sign_extend:SI (match_operand:QI 1 "register_operand" "r")))]
3564   ""
3565   "{extrs|extrw,s} %1,31,8,%0"
3566   [(set_attr "type" "shift")
3567    (set_attr "length" "4")])
3568
3569 (define_insn "extendqidi2"
3570   [(set (match_operand:DI 0 "register_operand" "=r")
3571         (sign_extend:DI (match_operand:QI 1 "register_operand" "r")))]
3572   "TARGET_64BIT"
3573   "extrd,s %1,63,8,%0"
3574   [(set_attr "type" "shift") 
3575   (set_attr "length" "4")])
3576
3577 (define_insn "extendhidi2"
3578   [(set (match_operand:DI 0 "register_operand" "=r")
3579         (sign_extend:DI (match_operand:HI 1 "register_operand" "r")))]
3580   "TARGET_64BIT"
3581   "extrd,s %1,63,16,%0"
3582   [(set_attr "type" "shift") 
3583   (set_attr "length" "4")])
3584
3585 (define_insn "extendsidi2"
3586   [(set (match_operand:DI 0 "register_operand" "=r")
3587         (sign_extend:DI (match_operand:SI 1 "register_operand" "r")))]
3588   "TARGET_64BIT"
3589   "extrd,s %1,63,32,%0"
3590   [(set_attr "type" "shift") 
3591   (set_attr "length" "4")])
3592
3593 \f
3594 ;; Conversions between float and double.
3595
3596 (define_insn "extendsfdf2"
3597   [(set (match_operand:DF 0 "register_operand" "=f")
3598         (float_extend:DF
3599          (match_operand:SF 1 "register_operand" "f")))]
3600   "! TARGET_SOFT_FLOAT"
3601   "{fcnvff|fcnv},sgl,dbl %1,%0"
3602   [(set_attr "type" "fpalu")
3603    (set_attr "length" "4")])
3604
3605 (define_insn "truncdfsf2"
3606   [(set (match_operand:SF 0 "register_operand" "=f")
3607         (float_truncate:SF
3608          (match_operand:DF 1 "register_operand" "f")))]
3609   "! TARGET_SOFT_FLOAT"
3610   "{fcnvff|fcnv},dbl,sgl %1,%0"
3611   [(set_attr "type" "fpalu")
3612    (set_attr "length" "4")])
3613
3614 ;; Conversion between fixed point and floating point.
3615 ;; Note that among the fix-to-float insns
3616 ;; the ones that start with SImode come first.
3617 ;; That is so that an operand that is a CONST_INT
3618 ;; (and therefore lacks a specific machine mode).
3619 ;; will be recognized as SImode (which is always valid)
3620 ;; rather than as QImode or HImode.
3621
3622 ;; This pattern forces (set (reg:SF ...) (float:SF (const_int ...)))
3623 ;; to be reloaded by putting the constant into memory.
3624 ;; It must come before the more general floatsisf2 pattern.
3625 (define_insn ""
3626   [(set (match_operand:SF 0 "register_operand" "=f")
3627         (float:SF (match_operand:SI 1 "const_int_operand" "m")))]
3628   "! TARGET_SOFT_FLOAT"
3629   "fldw%F1 %1,%0\;{fcnvxf,sgl,sgl|fcnv,w,sgl} %0,%0"
3630   [(set_attr "type" "fpalu")
3631    (set_attr "length" "8")])
3632
3633 (define_insn "floatsisf2"
3634   [(set (match_operand:SF 0 "register_operand" "=f")
3635         (float:SF (match_operand:SI 1 "register_operand" "f")))]
3636   "! TARGET_SOFT_FLOAT"
3637   "{fcnvxf,sgl,sgl|fcnv,w,sgl} %1,%0"
3638   [(set_attr "type" "fpalu")
3639    (set_attr "length" "4")])
3640
3641 ;; This pattern forces (set (reg:DF ...) (float:DF (const_int ...)))
3642 ;; to be reloaded by putting the constant into memory.
3643 ;; It must come before the more general floatsidf2 pattern.
3644 (define_insn ""
3645   [(set (match_operand:DF 0 "register_operand" "=f")
3646         (float:DF (match_operand:SI 1 "const_int_operand" "m")))]
3647   "! TARGET_SOFT_FLOAT"
3648   "fldw%F1 %1,%0\;{fcnvxf,sgl,dbl|fcnv,w,dbl} %0,%0"
3649   [(set_attr "type" "fpalu")
3650    (set_attr "length" "8")])
3651
3652 (define_insn "floatsidf2"
3653   [(set (match_operand:DF 0 "register_operand" "=f")
3654         (float:DF (match_operand:SI 1 "register_operand" "f")))]
3655   "! TARGET_SOFT_FLOAT"
3656   "{fcnvxf,sgl,dbl|fcnv,w,dbl} %1,%0"
3657   [(set_attr "type" "fpalu")
3658    (set_attr "length" "4")])
3659
3660 (define_expand "floatunssisf2"
3661   [(set (subreg:SI (match_dup 2) 4)
3662         (match_operand:SI 1 "register_operand" ""))
3663    (set (subreg:SI (match_dup 2) 0)
3664         (const_int 0))
3665    (set (match_operand:SF 0 "register_operand" "")
3666         (float:SF (match_dup 2)))]
3667   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
3668   "
3669 {
3670   if (TARGET_PA_20)
3671     {
3672       emit_insn (gen_floatunssisf2_pa20 (operands[0], operands[1]));
3673       DONE;
3674     }
3675   operands[2] = gen_reg_rtx (DImode);
3676 }")
3677
3678 (define_expand "floatunssidf2"
3679   [(set (subreg:SI (match_dup 2) 4)
3680         (match_operand:SI 1 "register_operand" ""))
3681    (set (subreg:SI (match_dup 2) 0)
3682         (const_int 0))
3683    (set (match_operand:DF 0 "register_operand" "")
3684         (float:DF (match_dup 2)))]
3685   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
3686   "
3687 {
3688   if (TARGET_PA_20)
3689     {
3690       emit_insn (gen_floatunssidf2_pa20 (operands[0], operands[1]));
3691       DONE;
3692     }
3693   operands[2] = gen_reg_rtx (DImode);
3694 }")
3695
3696 (define_insn "floatdisf2"
3697   [(set (match_operand:SF 0 "register_operand" "=f")
3698         (float:SF (match_operand:DI 1 "register_operand" "f")))]
3699   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
3700   "{fcnvxf,dbl,sgl|fcnv,dw,sgl} %1,%0"
3701   [(set_attr "type" "fpalu")
3702    (set_attr "length" "4")])
3703
3704 (define_insn "floatdidf2"
3705   [(set (match_operand:DF 0 "register_operand" "=f")
3706         (float:DF (match_operand:DI 1 "register_operand" "f")))]
3707   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
3708   "{fcnvxf,dbl,dbl|fcnv,dw,dbl} %1,%0"
3709   [(set_attr "type" "fpalu")
3710    (set_attr "length" "4")])
3711
3712 ;; Convert a float to an actual integer.
3713 ;; Truncation is performed as part of the conversion.
3714
3715 (define_insn "fix_truncsfsi2"
3716   [(set (match_operand:SI 0 "register_operand" "=f")
3717         (fix:SI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
3718   "! TARGET_SOFT_FLOAT"
3719   "{fcnvfxt,sgl,sgl|fcnv,t,sgl,w} %1,%0"
3720   [(set_attr "type" "fpalu")
3721    (set_attr "length" "4")])
3722
3723 (define_insn "fix_truncdfsi2"
3724   [(set (match_operand:SI 0 "register_operand" "=f")
3725         (fix:SI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
3726   "! TARGET_SOFT_FLOAT"
3727   "{fcnvfxt,dbl,sgl|fcnv,t,dbl,w} %1,%0"
3728   [(set_attr "type" "fpalu")
3729    (set_attr "length" "4")])
3730
3731 (define_insn "fix_truncsfdi2"
3732   [(set (match_operand:DI 0 "register_operand" "=f")
3733         (fix:DI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
3734   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
3735   "{fcnvfxt,sgl,dbl|fcnv,t,sgl,dw} %1,%0"
3736   [(set_attr "type" "fpalu")
3737    (set_attr "length" "4")])
3738
3739 (define_insn "fix_truncdfdi2"
3740   [(set (match_operand:DI 0 "register_operand" "=f")
3741         (fix:DI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
3742   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
3743   "{fcnvfxt,dbl,dbl|fcnv,t,dbl,dw} %1,%0"
3744   [(set_attr "type" "fpalu")
3745    (set_attr "length" "4")])
3746
3747 (define_insn "floatunssidf2_pa20"
3748   [(set (match_operand:DF 0 "register_operand" "=f")
3749         (unsigned_float:DF (match_operand:SI 1 "register_operand" "f")))]
3750   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
3751   "fcnv,uw,dbl %1,%0"
3752   [(set_attr "type" "fpalu")
3753    (set_attr "length" "4")])
3754
3755 (define_insn "floatunssisf2_pa20"
3756   [(set (match_operand:SF 0 "register_operand" "=f")
3757         (unsigned_float:SF (match_operand:SI 1 "register_operand" "f")))]
3758   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
3759   "fcnv,uw,sgl %1,%0"
3760   [(set_attr "type" "fpalu")
3761    (set_attr "length" "4")])
3762
3763 (define_insn "floatunsdisf2"
3764   [(set (match_operand:SF 0 "register_operand" "=f")
3765         (unsigned_float:SF (match_operand:DI 1 "register_operand" "f")))]
3766   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
3767   "fcnv,udw,sgl %1,%0"
3768   [(set_attr "type" "fpalu")
3769    (set_attr "length" "4")])
3770
3771 (define_insn "floatunsdidf2"
3772   [(set (match_operand:DF 0 "register_operand" "=f")
3773         (unsigned_float:DF (match_operand:DI 1 "register_operand" "f")))]
3774   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
3775   "fcnv,udw,dbl %1,%0"
3776   [(set_attr "type" "fpalu")
3777    (set_attr "length" "4")])
3778
3779 (define_insn "fixuns_truncsfsi2"
3780   [(set (match_operand:SI 0 "register_operand" "=f")
3781         (unsigned_fix:SI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
3782   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
3783   "fcnv,t,sgl,uw %1,%0"
3784   [(set_attr "type" "fpalu")
3785    (set_attr "length" "4")])
3786
3787 (define_insn "fixuns_truncdfsi2"
3788   [(set (match_operand:SI 0 "register_operand" "=f")
3789         (unsigned_fix:SI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
3790   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
3791   "fcnv,t,dbl,uw %1,%0"
3792   [(set_attr "type" "fpalu")
3793    (set_attr "length" "4")])
3794
3795 (define_insn "fixuns_truncsfdi2"
3796   [(set (match_operand:DI 0 "register_operand" "=f")
3797         (unsigned_fix:DI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
3798   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
3799   "fcnv,t,sgl,udw %1,%0"
3800   [(set_attr "type" "fpalu")
3801    (set_attr "length" "4")])
3802
3803 (define_insn "fixuns_truncdfdi2"
3804   [(set (match_operand:DI 0 "register_operand" "=f")
3805         (unsigned_fix:DI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
3806   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
3807   "fcnv,t,dbl,udw %1,%0"
3808   [(set_attr "type" "fpalu")
3809    (set_attr "length" "4")])
3810 \f
3811 ;;- arithmetic instructions
3812
3813 (define_expand "adddi3"
3814   [(set (match_operand:DI 0 "register_operand" "")
3815         (plus:DI (match_operand:DI 1 "register_operand" "")
3816                  (match_operand:DI 2 "adddi3_operand" "")))]
3817   ""
3818   "")
3819
3820 (define_insn ""
3821   [(set (match_operand:DI 0 "register_operand" "=r")
3822         (plus:DI (match_operand:DI 1 "register_operand" "%r")
3823                  (match_operand:DI 2 "arith11_operand" "rI")))]
3824   "!TARGET_64BIT"
3825   "*
3826 {
3827   if (GET_CODE (operands[2]) == CONST_INT)
3828     {
3829       if (INTVAL (operands[2]) >= 0)
3830         return \"addi %2,%R1,%R0\;{addc|add,c} %1,%%r0,%0\";
3831       else
3832         return \"addi %2,%R1,%R0\;{subb|sub,b} %1,%%r0,%0\";
3833     }
3834   else
3835     return \"add %R2,%R1,%R0\;{addc|add,c} %2,%1,%0\";
3836 }"
3837   [(set_attr "type" "binary")
3838    (set_attr "length" "8")])
3839
3840 (define_insn ""
3841   [(set (match_operand:DI 0 "register_operand" "=r,r")
3842         (plus:DI (match_operand:DI 1 "register_operand" "%r,r")
3843                  (match_operand:DI 2 "arith_operand" "r,J")))]
3844   "TARGET_64BIT"
3845   "@
3846    {addl|add,l} %1,%2,%0
3847    ldo %2(%1),%0"
3848   [(set_attr "type" "binary,binary")
3849    (set_attr "pa_combine_type" "addmove")
3850    (set_attr "length" "4,4")])
3851
3852 (define_insn ""
3853   [(set (match_operand:DI 0 "register_operand" "=r")
3854         (plus:DI (not:DI (match_operand:DI 1 "register_operand" "r"))
3855                  (match_operand:DI 2 "register_operand" "r")))]
3856   "TARGET_64BIT"
3857   "uaddcm %2,%1,%0"
3858   [(set_attr "type" "binary")
3859    (set_attr "length" "4")])
3860
3861 (define_insn ""
3862   [(set (match_operand:SI 0 "register_operand" "=r")
3863         (plus:SI (not:SI (match_operand:SI 1 "register_operand" "r"))
3864                  (match_operand:SI 2 "register_operand" "r")))]
3865   ""
3866   "uaddcm %2,%1,%0"
3867   [(set_attr "type" "binary")
3868    (set_attr "length" "4")])
3869
3870 ;; define_splits to optimize cases of adding a constant integer
3871 ;; to a register when the constant does not fit in 14 bits.  */
3872 (define_split
3873   [(set (match_operand:SI 0 "register_operand" "")
3874         (plus:SI (match_operand:SI 1 "register_operand" "")
3875                  (match_operand:SI 2 "const_int_operand" "")))
3876    (clobber (match_operand:SI 4 "register_operand" ""))]
3877   "! cint_ok_for_move (INTVAL (operands[2]))
3878    && VAL_14_BITS_P (INTVAL (operands[2]) >> 1)"
3879   [(set (match_dup 4) (plus:SI (match_dup 1) (match_dup 2)))
3880    (set (match_dup 0) (plus:SI (match_dup 4) (match_dup 3)))]
3881   "
3882 {
3883   int val = INTVAL (operands[2]);
3884   int low = (val < 0) ? -0x2000 : 0x1fff;
3885   int rest = val - low;
3886
3887   operands[2] = GEN_INT (rest);
3888   operands[3] = GEN_INT (low);
3889 }")
3890
3891 (define_split
3892   [(set (match_operand:SI 0 "register_operand" "")
3893         (plus:SI (match_operand:SI 1 "register_operand" "")
3894                  (match_operand:SI 2 "const_int_operand" "")))
3895    (clobber (match_operand:SI 4 "register_operand" ""))]
3896   "! cint_ok_for_move (INTVAL (operands[2]))"
3897   [(set (match_dup 4) (match_dup 2))
3898    (set (match_dup 0) (plus:SI (mult:SI (match_dup 4) (match_dup 3))
3899                                (match_dup 1)))]
3900   "
3901 {
3902   HOST_WIDE_INT intval = INTVAL (operands[2]);
3903
3904   /* Try dividing the constant by 2, then 4, and finally 8 to see
3905      if we can get a constant which can be loaded into a register
3906      in a single instruction (cint_ok_for_move). 
3907
3908      If that fails, try to negate the constant and subtract it
3909      from our input operand.  */
3910   if (intval % 2 == 0 && cint_ok_for_move (intval / 2))
3911     {
3912       operands[2] = GEN_INT (intval / 2);
3913       operands[3] = GEN_INT (2);
3914     }
3915   else if (intval % 4 == 0 && cint_ok_for_move (intval / 4))
3916     {
3917       operands[2] = GEN_INT (intval / 4);
3918       operands[3] = GEN_INT (4);
3919     }
3920   else if (intval % 8 == 0 && cint_ok_for_move (intval / 8))
3921     {
3922       operands[2] = GEN_INT (intval / 8);
3923       operands[3] = GEN_INT (8);
3924     }
3925   else if (cint_ok_for_move (-intval))
3926     {
3927       emit_insn (gen_rtx_SET (VOIDmode, operands[4], GEN_INT (-intval)));
3928       emit_insn (gen_subsi3 (operands[0], operands[1], operands[4]));
3929       DONE;
3930     }
3931   else
3932     FAIL;
3933 }")
3934
3935 (define_insn "addsi3"
3936   [(set (match_operand:SI 0 "register_operand" "=r,r")
3937         (plus:SI (match_operand:SI 1 "register_operand" "%r,r")
3938                  (match_operand:SI 2 "arith_operand" "r,J")))]
3939   ""
3940   "@
3941    {addl|add,l} %1,%2,%0
3942    ldo %2(%1),%0"
3943   [(set_attr "type" "binary,binary")
3944    (set_attr "pa_combine_type" "addmove")
3945    (set_attr "length" "4,4")])
3946
3947 (define_expand "subdi3"
3948   [(set (match_operand:DI 0 "register_operand" "")
3949         (minus:DI (match_operand:DI 1 "register_operand" "")
3950                   (match_operand:DI 2 "register_operand" "")))]
3951   ""
3952   "")
3953
3954 (define_insn ""
3955   [(set (match_operand:DI 0 "register_operand" "=r")
3956         (minus:DI (match_operand:DI 1 "register_operand" "r")
3957                   (match_operand:DI 2 "register_operand" "r")))]
3958   "!TARGET_64BIT"
3959   "sub %R1,%R2,%R0\;{subb|sub,b} %1,%2,%0"
3960   [(set_attr "type" "binary")
3961   (set_attr "length" "8")])
3962
3963 (define_insn ""
3964   [(set (match_operand:DI 0 "register_operand" "=r,r,q")
3965         (minus:DI (match_operand:DI 1 "arith11_operand" "r,I,U")
3966                   (match_operand:DI 2 "register_operand" "r,r,r")))]
3967   "TARGET_64BIT"
3968   "@
3969    sub %1,%2,%0
3970    subi %1,%2,%0
3971    mtsarcm %2"
3972   [(set_attr "type" "binary,binary,move")
3973   (set_attr "length" "4,4,4")])
3974
3975 (define_expand "subsi3"
3976   [(set (match_operand:SI 0 "register_operand" "")
3977         (minus:SI (match_operand:SI 1 "arith11_operand" "")
3978                   (match_operand:SI 2 "register_operand" "")))]
3979   ""
3980   "")
3981
3982 (define_insn ""
3983   [(set (match_operand:SI 0 "register_operand" "=r,r")
3984         (minus:SI (match_operand:SI 1 "arith11_operand" "r,I")
3985                   (match_operand:SI 2 "register_operand" "r,r")))]
3986   "!TARGET_PA_20"
3987   "@
3988    sub %1,%2,%0
3989    subi %1,%2,%0"
3990   [(set_attr "type" "binary,binary")
3991    (set_attr "length" "4,4")])
3992
3993 (define_insn ""
3994   [(set (match_operand:SI 0 "register_operand" "=r,r,q")
3995         (minus:SI (match_operand:SI 1 "arith11_operand" "r,I,S")
3996                   (match_operand:SI 2 "register_operand" "r,r,r")))]
3997   "TARGET_PA_20"
3998   "@
3999    sub %1,%2,%0
4000    subi %1,%2,%0
4001    mtsarcm %2"
4002   [(set_attr "type" "binary,binary,move")
4003    (set_attr "length" "4,4,4")])
4004
4005 ;; Clobbering a "register_operand" instead of a match_scratch
4006 ;; in operand3 of millicode calls avoids spilling %r1 and
4007 ;; produces better code.
4008
4009 ;; The mulsi3 insns set up registers for the millicode call.
4010 (define_expand "mulsi3"
4011   [(set (reg:SI 26) (match_operand:SI 1 "move_operand" ""))
4012    (set (reg:SI 25) (match_operand:SI 2 "move_operand" ""))
4013    (parallel [(set (reg:SI 29) (mult:SI (reg:SI 26) (reg:SI 25)))
4014               (clobber (match_dup 3))
4015               (clobber (reg:SI 26))
4016               (clobber (reg:SI 25))
4017               (clobber (match_dup 4))])
4018    (set (match_operand:SI 0 "general_operand" "") (reg:SI 29))]
4019   ""
4020   "
4021 {
4022   operands[4] = gen_rtx_REG (SImode, TARGET_64BIT ? 2 : 31);
4023   if (TARGET_PA_11 && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT)
4024     {
4025       rtx scratch = gen_reg_rtx (DImode);
4026       operands[1] = force_reg (SImode, operands[1]);
4027       operands[2] = force_reg (SImode, operands[2]);
4028       emit_insn (gen_umulsidi3 (scratch, operands[1], operands[2]));
4029       emit_insn (gen_rtx_SET (VOIDmode, operands[0],
4030                               gen_rtx_SUBREG (SImode, scratch, GET_MODE_SIZE (SImode))));
4031       DONE;
4032     }
4033   operands[3] = gen_reg_rtx (SImode);
4034 }")
4035
4036 (define_insn "umulsidi3"
4037   [(set (match_operand:DI 0 "nonimmediate_operand" "=f")
4038         (mult:DI (zero_extend:DI (match_operand:SI 1 "nonimmediate_operand" "f"))
4039                  (zero_extend:DI (match_operand:SI 2 "nonimmediate_operand" "f"))))]
4040   "TARGET_PA_11 && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT"
4041   "xmpyu %1,%2,%0"
4042   [(set_attr "type" "fpmuldbl")
4043    (set_attr "length" "4")])
4044
4045 (define_insn ""
4046   [(set (match_operand:DI 0 "nonimmediate_operand" "=f")
4047         (mult:DI (zero_extend:DI (match_operand:SI 1 "nonimmediate_operand" "f"))
4048                  (match_operand:DI 2 "uint32_operand" "f")))]
4049   "TARGET_PA_11 && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT && !TARGET_64BIT"
4050   "xmpyu %1,%R2,%0"
4051   [(set_attr "type" "fpmuldbl")
4052    (set_attr "length" "4")])
4053
4054 (define_insn ""
4055   [(set (match_operand:DI 0 "nonimmediate_operand" "=f")
4056         (mult:DI (zero_extend:DI (match_operand:SI 1 "nonimmediate_operand" "f"))
4057                  (match_operand:DI 2 "uint32_operand" "f")))]
4058   "TARGET_PA_11 && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT && TARGET_64BIT"
4059   "xmpyu %1,%2R,%0"
4060   [(set_attr "type" "fpmuldbl")
4061    (set_attr "length" "4")])
4062
4063 (define_insn ""
4064   [(set (reg:SI 29) (mult:SI (reg:SI 26) (reg:SI 25)))
4065    (clobber (match_operand:SI 0 "register_operand" "=a"))
4066    (clobber (reg:SI 26))
4067    (clobber (reg:SI 25))
4068    (clobber (reg:SI 31))]
4069   "!TARGET_64BIT"
4070   "* return output_mul_insn (0, insn);"
4071   [(set_attr "type" "milli")
4072    (set (attr "length")
4073      (cond [
4074 ;; Target (or stub) within reach
4075             (and (lt (plus (symbol_ref "total_code_bytes") (pc))
4076                      (const_int 240000))
4077                  (eq (symbol_ref "TARGET_PORTABLE_RUNTIME")
4078                      (const_int 0)))
4079             (const_int 4)
4080
4081 ;; Out of reach PIC
4082             (ne (symbol_ref "flag_pic")
4083                 (const_int 0))
4084             (const_int 24)
4085
4086 ;; Out of reach PORTABLE_RUNTIME
4087             (ne (symbol_ref "TARGET_PORTABLE_RUNTIME")
4088                 (const_int 0))
4089             (const_int 20)]
4090
4091 ;; Out of reach, can use ble
4092           (const_int 12)))])
4093
4094 (define_insn ""
4095   [(set (reg:SI 29) (mult:SI (reg:SI 26) (reg:SI 25)))
4096    (clobber (match_operand:SI 0 "register_operand" "=a"))
4097    (clobber (reg:SI 26))
4098    (clobber (reg:SI 25))
4099    (clobber (reg:SI 2))]
4100   "TARGET_64BIT"
4101   "* return output_mul_insn (0, insn);"
4102   [(set_attr "type" "milli")
4103    (set (attr "length") (const_int 4))])
4104
4105 (define_expand "muldi3"
4106   [(set (match_operand:DI 0 "register_operand" "")
4107         (mult:DI (match_operand:DI 1 "register_operand" "")
4108                  (match_operand:DI 2 "register_operand" "")))]
4109   "TARGET_64BIT && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT"
4110   "
4111 {
4112   rtx low_product = gen_reg_rtx (DImode);
4113   rtx cross_product1 = gen_reg_rtx (DImode);
4114   rtx cross_product2 = gen_reg_rtx (DImode);
4115   rtx cross_scratch = gen_reg_rtx (DImode);
4116   rtx cross_product = gen_reg_rtx (DImode);
4117   rtx op1l, op1r, op2l, op2r;
4118   rtx op1shifted, op2shifted;
4119
4120   op1shifted = gen_reg_rtx (DImode);
4121   op2shifted = gen_reg_rtx (DImode);
4122   op1l = gen_reg_rtx (SImode);
4123   op1r = gen_reg_rtx (SImode);
4124   op2l = gen_reg_rtx (SImode);
4125   op2r = gen_reg_rtx (SImode);
4126
4127   emit_move_insn (op1shifted, gen_rtx_LSHIFTRT (DImode, operands[1],
4128                                                 GEN_INT (32)));
4129   emit_move_insn (op2shifted, gen_rtx_LSHIFTRT (DImode, operands[2],
4130                                                 GEN_INT (32)));
4131   op1r = gen_rtx_SUBREG (SImode, operands[1], 4);
4132   op2r = gen_rtx_SUBREG (SImode, operands[2], 4);
4133   op1l = gen_rtx_SUBREG (SImode, op1shifted, 4);
4134   op2l = gen_rtx_SUBREG (SImode, op2shifted, 4);
4135
4136   /* Emit multiplies for the cross products.  */
4137   emit_insn (gen_umulsidi3 (cross_product1, op2r, op1l));
4138   emit_insn (gen_umulsidi3 (cross_product2, op2l, op1r));
4139
4140   /* Emit a multiply for the low sub-word.  */
4141   emit_insn (gen_umulsidi3 (low_product, op2r, op1r));
4142
4143   /* Sum the cross products and shift them into proper position.  */
4144   emit_insn (gen_adddi3 (cross_scratch, cross_product1, cross_product2));
4145   emit_insn (gen_ashldi3 (cross_product, cross_scratch, GEN_INT (32)));
4146
4147   /* Add the cross product to the low product and store the result
4148      into the output operand .  */
4149   emit_insn (gen_adddi3 (operands[0], cross_product, low_product));
4150   DONE;
4151 }")
4152
4153 ;;; Division and mod.
4154 (define_expand "divsi3"
4155   [(set (reg:SI 26) (match_operand:SI 1 "move_operand" ""))
4156    (set (reg:SI 25) (match_operand:SI 2 "move_operand" ""))
4157    (parallel [(set (reg:SI 29) (div:SI (reg:SI 26) (reg:SI 25)))
4158               (clobber (match_dup 3))
4159               (clobber (match_dup 4))
4160               (clobber (reg:SI 26))
4161               (clobber (reg:SI 25))
4162               (clobber (match_dup 5))])
4163    (set (match_operand:SI 0 "general_operand" "") (reg:SI 29))]
4164   ""
4165   "
4166 {
4167   operands[3] = gen_reg_rtx (SImode);
4168   if (TARGET_64BIT)
4169     {
4170       operands[5] = gen_rtx_REG (SImode, 2);
4171       operands[4] = operands[5];
4172     }
4173   else
4174     {
4175       operands[5] = gen_rtx_REG (SImode, 31);
4176       operands[4] = gen_reg_rtx (SImode);
4177     }
4178   if (GET_CODE (operands[2]) == CONST_INT && emit_hpdiv_const (operands, 0))
4179     DONE;
4180 }")
4181
4182 (define_insn ""
4183   [(set (reg:SI 29)
4184         (div:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
4185    (clobber (match_operand:SI 1 "register_operand" "=a"))
4186    (clobber (match_operand:SI 2 "register_operand" "=&r"))
4187    (clobber (reg:SI 26))
4188    (clobber (reg:SI 25))
4189    (clobber (reg:SI 31))]
4190   "!TARGET_64BIT"
4191   "*
4192    return output_div_insn (operands, 0, insn);"
4193   [(set_attr "type" "milli")
4194    (set (attr "length")
4195      (cond [
4196 ;; Target (or stub) within reach
4197             (and (lt (plus (symbol_ref "total_code_bytes") (pc))
4198                      (const_int 240000))
4199                  (eq (symbol_ref "TARGET_PORTABLE_RUNTIME")
4200                      (const_int 0)))
4201             (const_int 4)
4202
4203 ;; Out of reach PIC
4204             (ne (symbol_ref "flag_pic")
4205                 (const_int 0))
4206             (const_int 24)
4207
4208 ;; Out of reach PORTABLE_RUNTIME
4209             (ne (symbol_ref "TARGET_PORTABLE_RUNTIME")
4210                 (const_int 0))
4211             (const_int 20)]
4212
4213 ;; Out of reach, can use ble
4214           (const_int 12)))])
4215
4216 (define_insn ""
4217   [(set (reg:SI 29)
4218         (div:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
4219    (clobber (match_operand:SI 1 "register_operand" "=a"))
4220    (clobber (match_operand:SI 2 "register_operand" "=&r"))
4221    (clobber (reg:SI 26))
4222    (clobber (reg:SI 25))
4223    (clobber (reg:SI 2))]
4224   "TARGET_64BIT"
4225   "*
4226    return output_div_insn (operands, 0, insn);"
4227   [(set_attr "type" "milli")
4228    (set (attr "length") (const_int 4))])
4229
4230 (define_expand "udivsi3"
4231   [(set (reg:SI 26) (match_operand:SI 1 "move_operand" ""))
4232    (set (reg:SI 25) (match_operand:SI 2 "move_operand" ""))
4233    (parallel [(set (reg:SI 29) (udiv:SI (reg:SI 26) (reg:SI 25)))
4234               (clobber (match_dup 3))
4235               (clobber (match_dup 4))
4236               (clobber (reg:SI 26))
4237               (clobber (reg:SI 25))
4238               (clobber (match_dup 5))])
4239    (set (match_operand:SI 0 "general_operand" "") (reg:SI 29))]
4240   ""
4241   "
4242 {
4243   operands[3] = gen_reg_rtx (SImode);
4244   if (TARGET_64BIT)
4245     {
4246       operands[5] = gen_rtx_REG (SImode, 2);
4247       operands[4] = operands[5];
4248     }
4249   else
4250     {
4251       operands[5] = gen_rtx_REG (SImode, 31);
4252       operands[4] = gen_reg_rtx (SImode);
4253     }
4254   if (GET_CODE (operands[2]) == CONST_INT && emit_hpdiv_const (operands, 1))
4255     DONE;
4256 }")
4257
4258 (define_insn ""
4259   [(set (reg:SI 29)
4260         (udiv:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
4261    (clobber (match_operand:SI 1 "register_operand" "=a"))
4262    (clobber (match_operand:SI 2 "register_operand" "=&r"))
4263    (clobber (reg:SI 26))
4264    (clobber (reg:SI 25))
4265    (clobber (reg:SI 31))]
4266   "!TARGET_64BIT"
4267   "*
4268    return output_div_insn (operands, 1, insn);"
4269   [(set_attr "type" "milli")
4270    (set (attr "length")
4271      (cond [
4272 ;; Target (or stub) within reach
4273             (and (lt (plus (symbol_ref "total_code_bytes") (pc))
4274                      (const_int 240000))
4275                  (eq (symbol_ref "TARGET_PORTABLE_RUNTIME")
4276                      (const_int 0)))
4277             (const_int 4)
4278
4279 ;; Out of reach PIC
4280             (ne (symbol_ref "flag_pic")
4281                 (const_int 0))
4282             (const_int 24)
4283
4284 ;; Out of reach PORTABLE_RUNTIME
4285             (ne (symbol_ref "TARGET_PORTABLE_RUNTIME")
4286                 (const_int 0))
4287             (const_int 20)]
4288
4289 ;; Out of reach, can use ble
4290           (const_int 12)))])
4291
4292 (define_insn ""
4293   [(set (reg:SI 29)
4294         (udiv:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
4295    (clobber (match_operand:SI 1 "register_operand" "=a"))
4296    (clobber (match_operand:SI 2 "register_operand" "=&r"))
4297    (clobber (reg:SI 26))
4298    (clobber (reg:SI 25))
4299    (clobber (reg:SI 2))]
4300   "TARGET_64BIT"
4301   "*
4302    return output_div_insn (operands, 1, insn);"
4303   [(set_attr "type" "milli")
4304    (set (attr "length") (const_int 4))])
4305
4306 (define_expand "modsi3"
4307   [(set (reg:SI 26) (match_operand:SI 1 "move_operand" ""))
4308    (set (reg:SI 25) (match_operand:SI 2 "move_operand" ""))
4309    (parallel [(set (reg:SI 29) (mod:SI (reg:SI 26) (reg:SI 25)))
4310               (clobber (match_dup 3))
4311               (clobber (match_dup 4))
4312               (clobber (reg:SI 26))
4313               (clobber (reg:SI 25))
4314               (clobber (match_dup 5))])
4315    (set (match_operand:SI 0 "general_operand" "") (reg:SI 29))]
4316   ""
4317   "
4318 {
4319   if (TARGET_64BIT)
4320     {
4321       operands[5] = gen_rtx_REG (SImode, 2);
4322       operands[4] = operands[5];
4323     }
4324   else
4325     {
4326       operands[5] = gen_rtx_REG (SImode, 31);
4327       operands[4] = gen_reg_rtx (SImode);
4328     }
4329   operands[3] = gen_reg_rtx (SImode);
4330 }")
4331
4332 (define_insn ""
4333   [(set (reg:SI 29) (mod:SI (reg:SI 26) (reg:SI 25)))
4334    (clobber (match_operand:SI 0 "register_operand" "=a"))
4335    (clobber (match_operand:SI 1 "register_operand" "=&r"))
4336    (clobber (reg:SI 26))
4337    (clobber (reg:SI 25))
4338    (clobber (reg:SI 31))]
4339   "!TARGET_64BIT"
4340   "*
4341   return output_mod_insn (0, insn);"
4342   [(set_attr "type" "milli")
4343    (set (attr "length")
4344      (cond [
4345 ;; Target (or stub) within reach
4346             (and (lt (plus (symbol_ref "total_code_bytes") (pc))
4347                      (const_int 240000))
4348                  (eq (symbol_ref "TARGET_PORTABLE_RUNTIME")
4349                      (const_int 0)))
4350             (const_int 4)
4351
4352 ;; Out of reach PIC
4353             (ne (symbol_ref "flag_pic")
4354                 (const_int 0))
4355             (const_int 24)
4356
4357 ;; Out of reach PORTABLE_RUNTIME
4358             (ne (symbol_ref "TARGET_PORTABLE_RUNTIME")
4359                 (const_int 0))
4360             (const_int 20)]
4361
4362 ;; Out of reach, can use ble
4363           (const_int 12)))])
4364
4365 (define_insn ""
4366   [(set (reg:SI 29) (mod:SI (reg:SI 26) (reg:SI 25)))
4367    (clobber (match_operand:SI 0 "register_operand" "=a"))
4368    (clobber (match_operand:SI 1 "register_operand" "=&r"))
4369    (clobber (reg:SI 26))
4370    (clobber (reg:SI 25))
4371    (clobber (reg:SI 2))]
4372   "TARGET_64BIT"
4373   "*
4374   return output_mod_insn (0, insn);"
4375   [(set_attr "type" "milli")
4376    (set (attr "length") (const_int 4))])
4377
4378 (define_expand "umodsi3"
4379   [(set (reg:SI 26) (match_operand:SI 1 "move_operand" ""))
4380    (set (reg:SI 25) (match_operand:SI 2 "move_operand" ""))
4381    (parallel [(set (reg:SI 29) (umod:SI (reg:SI 26) (reg:SI 25)))
4382               (clobber (match_dup 3))
4383               (clobber (match_dup 4))
4384               (clobber (reg:SI 26))
4385               (clobber (reg:SI 25))
4386               (clobber (match_dup 5))])
4387    (set (match_operand:SI 0 "general_operand" "") (reg:SI 29))]
4388   ""
4389   "
4390 {
4391   if (TARGET_64BIT)
4392     {
4393       operands[5] = gen_rtx_REG (SImode, 2);
4394       operands[4] = operands[5];
4395     }
4396   else
4397     {
4398       operands[5] = gen_rtx_REG (SImode, 31);
4399       operands[4] = gen_reg_rtx (SImode);
4400     }
4401   operands[3] = gen_reg_rtx (SImode);
4402 }")
4403
4404 (define_insn ""
4405   [(set (reg:SI 29) (umod:SI (reg:SI 26) (reg:SI 25)))
4406    (clobber (match_operand:SI 0 "register_operand" "=a"))
4407    (clobber (match_operand:SI 1 "register_operand" "=&r"))
4408    (clobber (reg:SI 26))
4409    (clobber (reg:SI 25))
4410    (clobber (reg:SI 31))]
4411   "!TARGET_64BIT"
4412   "*
4413   return output_mod_insn (1, insn);"
4414   [(set_attr "type" "milli")
4415    (set (attr "length")
4416      (cond [
4417 ;; Target (or stub) within reach
4418             (and (lt (plus (symbol_ref "total_code_bytes") (pc))
4419                      (const_int 240000))
4420                  (eq (symbol_ref "TARGET_PORTABLE_RUNTIME")
4421                      (const_int 0)))
4422             (const_int 4)
4423
4424 ;; Out of reach PIC
4425             (ne (symbol_ref "flag_pic")
4426                 (const_int 0))
4427             (const_int 24)
4428
4429 ;; Out of reach PORTABLE_RUNTIME
4430             (ne (symbol_ref "TARGET_PORTABLE_RUNTIME")
4431                 (const_int 0))
4432             (const_int 20)]
4433
4434 ;; Out of reach, can use ble
4435           (const_int 12)))])
4436
4437 (define_insn ""
4438   [(set (reg:SI 29) (umod:SI (reg:SI 26) (reg:SI 25)))
4439    (clobber (match_operand:SI 0 "register_operand" "=a"))
4440    (clobber (match_operand:SI 1 "register_operand" "=&r"))
4441    (clobber (reg:SI 26))
4442    (clobber (reg:SI 25))
4443    (clobber (reg:SI 2))]
4444   "TARGET_64BIT"
4445   "*
4446   return output_mod_insn (1, insn);"
4447   [(set_attr "type" "milli")
4448    (set (attr "length") (const_int 4))])
4449
4450 ;;- and instructions
4451 ;; We define DImode `and` so with DImode `not` we can get
4452 ;; DImode `andn`.  Other combinations are possible.
4453
4454 (define_expand "anddi3"
4455   [(set (match_operand:DI 0 "register_operand" "")
4456         (and:DI (match_operand:DI 1 "arith_double_operand" "")
4457                 (match_operand:DI 2 "arith_double_operand" "")))]
4458   ""
4459   "
4460 {
4461   if (! register_operand (operands[1], DImode)
4462       || ! register_operand (operands[2], DImode))
4463     /* Let GCC break this into word-at-a-time operations.  */
4464     FAIL;
4465 }")
4466
4467 (define_insn ""
4468   [(set (match_operand:DI 0 "register_operand" "=r")
4469         (and:DI (match_operand:DI 1 "register_operand" "%r")
4470                 (match_operand:DI 2 "register_operand" "r")))]
4471   "!TARGET_64BIT"
4472   "and %1,%2,%0\;and %R1,%R2,%R0"
4473   [(set_attr "type" "binary")
4474    (set_attr "length" "8")])
4475
4476 (define_insn ""
4477   [(set (match_operand:DI 0 "register_operand" "=r,r")
4478         (and:DI (match_operand:DI 1 "register_operand" "%?r,0")
4479                 (match_operand:DI 2 "and_operand" "rO,P")))]
4480   "TARGET_64BIT"
4481   "* return output_64bit_and (operands); "
4482   [(set_attr "type" "binary")
4483    (set_attr "length" "4")])
4484
4485 ; The ? for op1 makes reload prefer zdepi instead of loading a huge
4486 ; constant with ldil;ldo.
4487 (define_insn "andsi3"
4488   [(set (match_operand:SI 0 "register_operand" "=r,r")
4489         (and:SI (match_operand:SI 1 "register_operand" "%?r,0")
4490                 (match_operand:SI 2 "and_operand" "rO,P")))]
4491   ""
4492   "* return output_and (operands); "
4493   [(set_attr "type" "binary,shift")
4494    (set_attr "length" "4,4")])
4495
4496 (define_insn ""
4497   [(set (match_operand:DI 0 "register_operand" "=r")
4498         (and:DI (not:DI (match_operand:DI 1 "register_operand" "r"))
4499                 (match_operand:DI 2 "register_operand" "r")))]
4500   "!TARGET_64BIT"
4501   "andcm %2,%1,%0\;andcm %R2,%R1,%R0"
4502   [(set_attr "type" "binary")
4503    (set_attr "length" "8")])
4504
4505 (define_insn ""
4506   [(set (match_operand:DI 0 "register_operand" "=r")
4507         (and:DI (not:DI (match_operand:DI 1 "register_operand" "r"))
4508                 (match_operand:DI 2 "register_operand" "r")))]
4509   "TARGET_64BIT"
4510   "andcm %2,%1,%0"
4511   [(set_attr "type" "binary")
4512    (set_attr "length" "4")])
4513
4514 (define_insn ""
4515   [(set (match_operand:SI 0 "register_operand" "=r")
4516         (and:SI (not:SI (match_operand:SI 1 "register_operand" "r"))
4517                 (match_operand:SI 2 "register_operand" "r")))]
4518   ""
4519   "andcm %2,%1,%0"
4520   [(set_attr "type" "binary")
4521   (set_attr "length" "4")])
4522
4523 (define_expand "iordi3"
4524   [(set (match_operand:DI 0 "register_operand" "")
4525         (ior:DI (match_operand:DI 1 "arith_double_operand" "")
4526                 (match_operand:DI 2 "arith_double_operand" "")))]
4527   ""
4528   "
4529 {
4530   if (! register_operand (operands[1], DImode)
4531       || ! register_operand (operands[2], DImode))
4532     /* Let GCC break this into word-at-a-time operations.  */
4533     FAIL;
4534 }")
4535
4536 (define_insn ""
4537   [(set (match_operand:DI 0 "register_operand" "=r")
4538         (ior:DI (match_operand:DI 1 "register_operand" "%r")
4539                 (match_operand:DI 2 "register_operand" "r")))]
4540   "!TARGET_64BIT"
4541   "or %1,%2,%0\;or %R1,%R2,%R0"
4542   [(set_attr "type" "binary")
4543    (set_attr "length" "8")])
4544
4545 (define_insn ""
4546   [(set (match_operand:DI 0 "register_operand" "=r,r")
4547         (ior:DI (match_operand:DI 1 "register_operand" "0,0")
4548                 (match_operand:DI 2 "ior_operand" "M,i")))]
4549   "TARGET_64BIT"
4550   "* return output_64bit_ior (operands); "
4551   [(set_attr "type" "binary,shift")
4552    (set_attr "length" "4,4")])
4553
4554 (define_insn ""
4555   [(set (match_operand:DI 0 "register_operand" "=r")
4556         (ior:DI (match_operand:DI 1 "register_operand" "%r")
4557                 (match_operand:DI 2 "register_operand" "r")))]
4558   "TARGET_64BIT"
4559   "or %1,%2,%0"
4560   [(set_attr "type" "binary")
4561    (set_attr "length" "4")])
4562
4563 ;; Need a define_expand because we've run out of CONST_OK... characters.
4564 (define_expand "iorsi3"
4565   [(set (match_operand:SI 0 "register_operand" "")
4566         (ior:SI (match_operand:SI 1 "register_operand" "")
4567                 (match_operand:SI 2 "arith32_operand" "")))]
4568   ""
4569   "
4570 {
4571   if (! (ior_operand (operands[2], SImode)
4572          || register_operand (operands[2], SImode)))
4573     operands[2] = force_reg (SImode, operands[2]);
4574 }")
4575
4576 (define_insn ""
4577   [(set (match_operand:SI 0 "register_operand" "=r,r")
4578         (ior:SI (match_operand:SI 1 "register_operand" "0,0")
4579                 (match_operand:SI 2 "ior_operand" "M,i")))]
4580   ""
4581   "* return output_ior (operands); "
4582   [(set_attr "type" "binary,shift")
4583    (set_attr "length" "4,4")])
4584
4585 (define_insn ""
4586   [(set (match_operand:SI 0 "register_operand" "=r")
4587         (ior:SI (match_operand:SI 1 "register_operand" "%r")
4588                 (match_operand:SI 2 "register_operand" "r")))]
4589   ""
4590   "or %1,%2,%0"
4591   [(set_attr "type" "binary")
4592    (set_attr "length" "4")])
4593
4594 (define_expand "xordi3"
4595   [(set (match_operand:DI 0 "register_operand" "")
4596         (xor:DI (match_operand:DI 1 "arith_double_operand" "")
4597                 (match_operand:DI 2 "arith_double_operand" "")))]
4598   ""
4599   "
4600 {
4601   if (! register_operand (operands[1], DImode)
4602       || ! register_operand (operands[2], DImode))
4603     /* Let GCC break this into word-at-a-time operations.  */
4604     FAIL;
4605 }")
4606
4607 (define_insn ""
4608   [(set (match_operand:DI 0 "register_operand" "=r")
4609         (xor:DI (match_operand:DI 1 "register_operand" "%r")
4610                 (match_operand:DI 2 "register_operand" "r")))]
4611   "!TARGET_64BIT"
4612   "xor %1,%2,%0\;xor %R1,%R2,%R0"
4613   [(set_attr "type" "binary")
4614    (set_attr "length" "8")])
4615
4616 (define_insn ""
4617   [(set (match_operand:DI 0 "register_operand" "=r")
4618         (xor:DI (match_operand:DI 1 "register_operand" "%r")
4619                 (match_operand:DI 2 "register_operand" "r")))]
4620   "TARGET_64BIT"
4621   "xor %1,%2,%0"
4622   [(set_attr "type" "binary")
4623    (set_attr "length" "4")])
4624
4625 (define_insn "xorsi3"
4626   [(set (match_operand:SI 0 "register_operand" "=r")
4627         (xor:SI (match_operand:SI 1 "register_operand" "%r")
4628                 (match_operand:SI 2 "register_operand" "r")))]
4629   ""
4630   "xor %1,%2,%0"
4631   [(set_attr "type" "binary")
4632    (set_attr "length" "4")])
4633
4634 (define_expand "negdi2"
4635   [(set (match_operand:DI 0 "register_operand" "")
4636         (neg:DI (match_operand:DI 1 "register_operand" "")))]
4637   ""
4638   "")
4639
4640 (define_insn ""
4641   [(set (match_operand:DI 0 "register_operand" "=r")
4642         (neg:DI (match_operand:DI 1 "register_operand" "r")))]
4643   "!TARGET_64BIT"
4644   "sub %%r0,%R1,%R0\;{subb|sub,b} %%r0,%1,%0"
4645   [(set_attr "type" "unary")
4646    (set_attr "length" "8")])
4647
4648 (define_insn ""
4649   [(set (match_operand:DI 0 "register_operand" "=r")
4650         (neg:DI (match_operand:DI 1 "register_operand" "r")))]
4651   "TARGET_64BIT"
4652   "sub %%r0,%1,%0"
4653   [(set_attr "type" "unary")
4654    (set_attr "length" "4")])
4655
4656 (define_insn "negsi2"
4657   [(set (match_operand:SI 0 "register_operand" "=r")
4658         (neg:SI (match_operand:SI 1 "register_operand" "r")))]
4659   ""
4660   "sub %%r0,%1,%0"
4661   [(set_attr "type" "unary")
4662    (set_attr "length" "4")])
4663
4664 (define_expand "one_cmpldi2"
4665   [(set (match_operand:DI 0 "register_operand" "")
4666         (not:DI (match_operand:DI 1 "arith_double_operand" "")))]
4667   ""
4668   "
4669 {
4670   if (! register_operand (operands[1], DImode))
4671     FAIL;
4672 }")
4673
4674 (define_insn ""
4675   [(set (match_operand:DI 0 "register_operand" "=r")
4676         (not:DI (match_operand:DI 1 "register_operand" "r")))]
4677   "!TARGET_64BIT"
4678   "uaddcm %%r0,%1,%0\;uaddcm %%r0,%R1,%R0"
4679   [(set_attr "type" "unary")
4680    (set_attr "length" "8")])
4681
4682 (define_insn ""
4683   [(set (match_operand:DI 0 "register_operand" "=r")
4684         (not:DI (match_operand:DI 1 "register_operand" "r")))]
4685   "TARGET_64BIT"
4686   "uaddcm %%r0,%1,%0"
4687   [(set_attr "type" "unary")
4688    (set_attr "length" "4")])
4689
4690 (define_insn "one_cmplsi2"
4691   [(set (match_operand:SI 0 "register_operand" "=r")
4692         (not:SI (match_operand:SI 1 "register_operand" "r")))]
4693   ""
4694   "uaddcm %%r0,%1,%0"
4695   [(set_attr "type" "unary")
4696    (set_attr "length" "4")])
4697 \f
4698 ;; Floating point arithmetic instructions.
4699
4700 (define_insn "adddf3"
4701   [(set (match_operand:DF 0 "register_operand" "=f")
4702         (plus:DF (match_operand:DF 1 "register_operand" "f")
4703                  (match_operand:DF 2 "register_operand" "f")))]
4704   "! TARGET_SOFT_FLOAT"
4705   "fadd,dbl %1,%2,%0"
4706   [(set_attr "type" "fpalu")
4707    (set_attr "pa_combine_type" "faddsub")
4708    (set_attr "length" "4")])
4709
4710 (define_insn "addsf3"
4711   [(set (match_operand:SF 0 "register_operand" "=f")
4712         (plus:SF (match_operand:SF 1 "register_operand" "f")
4713                  (match_operand:SF 2 "register_operand" "f")))]
4714   "! TARGET_SOFT_FLOAT"
4715   "fadd,sgl %1,%2,%0"
4716   [(set_attr "type" "fpalu")
4717    (set_attr "pa_combine_type" "faddsub")
4718    (set_attr "length" "4")])
4719
4720 (define_insn "subdf3"
4721   [(set (match_operand:DF 0 "register_operand" "=f")
4722         (minus:DF (match_operand:DF 1 "register_operand" "f")
4723                   (match_operand:DF 2 "register_operand" "f")))]
4724   "! TARGET_SOFT_FLOAT"
4725   "fsub,dbl %1,%2,%0"
4726   [(set_attr "type" "fpalu")
4727    (set_attr "pa_combine_type" "faddsub")
4728    (set_attr "length" "4")])
4729
4730 (define_insn "subsf3"
4731   [(set (match_operand:SF 0 "register_operand" "=f")
4732         (minus:SF (match_operand:SF 1 "register_operand" "f")
4733                   (match_operand:SF 2 "register_operand" "f")))]
4734   "! TARGET_SOFT_FLOAT"
4735   "fsub,sgl %1,%2,%0"
4736   [(set_attr "type" "fpalu")
4737    (set_attr "pa_combine_type" "faddsub")
4738    (set_attr "length" "4")])
4739
4740 (define_insn "muldf3"
4741   [(set (match_operand:DF 0 "register_operand" "=f")
4742         (mult:DF (match_operand:DF 1 "register_operand" "f")
4743                  (match_operand:DF 2 "register_operand" "f")))]
4744   "! TARGET_SOFT_FLOAT"
4745   "fmpy,dbl %1,%2,%0"
4746   [(set_attr "type" "fpmuldbl")
4747    (set_attr "pa_combine_type" "fmpy")
4748    (set_attr "length" "4")])
4749
4750 (define_insn "mulsf3"
4751   [(set (match_operand:SF 0 "register_operand" "=f")
4752         (mult:SF (match_operand:SF 1 "register_operand" "f")
4753                  (match_operand:SF 2 "register_operand" "f")))]
4754   "! TARGET_SOFT_FLOAT"
4755   "fmpy,sgl %1,%2,%0"
4756   [(set_attr "type" "fpmulsgl")
4757    (set_attr "pa_combine_type" "fmpy")
4758    (set_attr "length" "4")])
4759
4760 (define_insn "divdf3"
4761   [(set (match_operand:DF 0 "register_operand" "=f")
4762         (div:DF (match_operand:DF 1 "register_operand" "f")
4763                 (match_operand:DF 2 "register_operand" "f")))]
4764   "! TARGET_SOFT_FLOAT"
4765   "fdiv,dbl %1,%2,%0"
4766   [(set_attr "type" "fpdivdbl")
4767    (set_attr "length" "4")])
4768
4769 (define_insn "divsf3"
4770   [(set (match_operand:SF 0 "register_operand" "=f")
4771         (div:SF (match_operand:SF 1 "register_operand" "f")
4772                 (match_operand:SF 2 "register_operand" "f")))]
4773   "! TARGET_SOFT_FLOAT"
4774   "fdiv,sgl %1,%2,%0"
4775   [(set_attr "type" "fpdivsgl")
4776    (set_attr "length" "4")])
4777
4778 ;; Processors prior to PA 2.0 don't have a fneg instruction.  Fast
4779 ;; negation can be done by subtracting from plus zero.  However, this
4780 ;; violates the IEEE standard when negating plus and minus zero.
4781 (define_expand "negdf2"
4782   [(parallel [(set (match_operand:DF 0 "register_operand" "")
4783                    (neg:DF (match_operand:DF 1 "register_operand" "")))
4784               (use (match_dup 2))])]
4785   "! TARGET_SOFT_FLOAT"
4786 {
4787   if (TARGET_PA_20 || flag_unsafe_math_optimizations)
4788     emit_insn (gen_negdf2_fast (operands[0], operands[1]));
4789   else
4790     {
4791       operands[2] = force_reg (DFmode,
4792         CONST_DOUBLE_FROM_REAL_VALUE (dconstm1, DFmode));
4793       emit_insn (gen_muldf3 (operands[0], operands[1], operands[2]));
4794     }
4795   DONE;
4796 })
4797
4798 (define_insn "negdf2_fast"
4799   [(set (match_operand:DF 0 "register_operand" "=f")
4800         (neg:DF (match_operand:DF 1 "register_operand" "f")))]
4801   "! TARGET_SOFT_FLOAT && (TARGET_PA_20 || flag_unsafe_math_optimizations)"
4802   "*
4803 {
4804   if (TARGET_PA_20)
4805     return \"fneg,dbl %1,%0\";
4806   else
4807     return \"fsub,dbl %%fr0,%1,%0\";
4808 }"
4809   [(set_attr "type" "fpalu")
4810    (set_attr "length" "4")])
4811
4812 (define_expand "negsf2"
4813   [(parallel [(set (match_operand:SF 0 "register_operand" "")
4814                    (neg:SF (match_operand:SF 1 "register_operand" "")))
4815               (use (match_dup 2))])]
4816   "! TARGET_SOFT_FLOAT"
4817 {
4818   if (TARGET_PA_20 || flag_unsafe_math_optimizations)
4819     emit_insn (gen_negsf2_fast (operands[0], operands[1]));
4820   else
4821     {
4822       operands[2] = force_reg (SFmode,
4823         CONST_DOUBLE_FROM_REAL_VALUE (dconstm1, SFmode));
4824       emit_insn (gen_mulsf3 (operands[0], operands[1], operands[2]));
4825     }
4826   DONE;
4827 })
4828
4829 (define_insn "negsf2_fast"
4830   [(set (match_operand:SF 0 "register_operand" "=f")
4831         (neg:SF (match_operand:SF 1 "register_operand" "f")))]
4832   "! TARGET_SOFT_FLOAT && (TARGET_PA_20 || flag_unsafe_math_optimizations)"
4833   "*
4834 {
4835   if (TARGET_PA_20)
4836     return \"fneg,sgl %1,%0\";
4837   else
4838     return \"fsub,sgl %%fr0,%1,%0\";
4839 }"
4840   [(set_attr "type" "fpalu")
4841    (set_attr "length" "4")])
4842
4843 (define_insn "absdf2"
4844   [(set (match_operand:DF 0 "register_operand" "=f")
4845         (abs:DF (match_operand:DF 1 "register_operand" "f")))]
4846   "! TARGET_SOFT_FLOAT"
4847   "fabs,dbl %1,%0"
4848   [(set_attr "type" "fpalu")
4849    (set_attr "length" "4")])
4850
4851 (define_insn "abssf2"
4852   [(set (match_operand:SF 0 "register_operand" "=f")
4853         (abs:SF (match_operand:SF 1 "register_operand" "f")))]
4854   "! TARGET_SOFT_FLOAT"
4855   "fabs,sgl %1,%0"
4856   [(set_attr "type" "fpalu")
4857    (set_attr "length" "4")])
4858
4859 (define_insn "sqrtdf2"
4860   [(set (match_operand:DF 0 "register_operand" "=f")
4861         (sqrt:DF (match_operand:DF 1 "register_operand" "f")))]
4862   "! TARGET_SOFT_FLOAT"
4863   "fsqrt,dbl %1,%0"
4864   [(set_attr "type" "fpsqrtdbl")
4865    (set_attr "length" "4")])
4866
4867 (define_insn "sqrtsf2"
4868   [(set (match_operand:SF 0 "register_operand" "=f")
4869         (sqrt:SF (match_operand:SF 1 "register_operand" "f")))]
4870   "! TARGET_SOFT_FLOAT"
4871   "fsqrt,sgl %1,%0"
4872   [(set_attr "type" "fpsqrtsgl")
4873    (set_attr "length" "4")])
4874
4875 ;; PA 2.0 floating point instructions
4876
4877 ; fmpyfadd patterns
4878 (define_insn ""
4879   [(set (match_operand:DF 0 "register_operand" "=f")
4880         (plus:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
4881                           (match_operand:DF 2 "register_operand" "f"))
4882                  (match_operand:DF 3 "register_operand" "f")))]
4883   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
4884   "fmpyfadd,dbl %1,%2,%3,%0"
4885   [(set_attr "type" "fpmuldbl")
4886    (set_attr "length" "4")])
4887
4888 (define_insn ""
4889   [(set (match_operand:DF 0 "register_operand" "=f")
4890         (plus:DF (match_operand:DF 1 "register_operand" "f")
4891                  (mult:DF (match_operand:DF 2 "register_operand" "f")
4892                           (match_operand:DF 3 "register_operand" "f"))))]
4893   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
4894   "fmpyfadd,dbl %2,%3,%1,%0"
4895   [(set_attr "type" "fpmuldbl")
4896    (set_attr "length" "4")])
4897
4898 (define_insn ""
4899   [(set (match_operand:SF 0 "register_operand" "=f")
4900         (plus:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
4901                           (match_operand:SF 2 "register_operand" "f"))
4902                  (match_operand:SF 3 "register_operand" "f")))]
4903   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
4904   "fmpyfadd,sgl %1,%2,%3,%0"
4905   [(set_attr "type" "fpmulsgl")
4906    (set_attr "length" "4")])
4907
4908 (define_insn ""
4909   [(set (match_operand:SF 0 "register_operand" "=f")
4910         (plus:SF (match_operand:SF 1 "register_operand" "f")
4911                  (mult:SF (match_operand:SF 2 "register_operand" "f")
4912                           (match_operand:SF 3 "register_operand" "f"))))]
4913   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
4914   "fmpyfadd,sgl %2,%3,%1,%0"
4915   [(set_attr "type" "fpmulsgl")
4916    (set_attr "length" "4")])
4917
4918 ; fmpynfadd patterns
4919 (define_insn ""
4920   [(set (match_operand:DF 0 "register_operand" "=f")
4921         (minus:DF (match_operand:DF 1 "register_operand" "f")
4922                   (mult:DF (match_operand:DF 2 "register_operand" "f")
4923                            (match_operand:DF 3 "register_operand" "f"))))]
4924   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
4925   "fmpynfadd,dbl %2,%3,%1,%0"
4926   [(set_attr "type" "fpmuldbl")
4927    (set_attr "length" "4")])
4928
4929 (define_insn ""
4930   [(set (match_operand:SF 0 "register_operand" "=f")
4931         (minus:SF (match_operand:SF 1 "register_operand" "f")
4932                   (mult:SF (match_operand:SF 2 "register_operand" "f")
4933                            (match_operand:SF 3 "register_operand" "f"))))]
4934   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
4935   "fmpynfadd,sgl %2,%3,%1,%0"
4936   [(set_attr "type" "fpmulsgl")
4937    (set_attr "length" "4")])
4938
4939 ; fnegabs patterns
4940 (define_insn ""
4941   [(set (match_operand:DF 0 "register_operand" "=f")
4942         (neg:DF (abs:DF (match_operand:DF 1 "register_operand" "f"))))]
4943   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
4944   "fnegabs,dbl %1,%0"
4945   [(set_attr "type" "fpalu")
4946    (set_attr "length" "4")])
4947
4948 (define_insn ""
4949   [(set (match_operand:SF 0 "register_operand" "=f")
4950         (neg:SF (abs:SF (match_operand:SF 1 "register_operand" "f"))))]
4951   "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
4952   "fnegabs,sgl %1,%0"
4953   [(set_attr "type" "fpalu")
4954    (set_attr "length" "4")])
4955
4956 ;; Generating a fused multiply sequence is a win for this case as it will
4957 ;; reduce the latency for the fused case without impacting the plain
4958 ;; multiply case.
4959 ;;
4960 ;; Similar possibilities exist for fnegabs, shadd and other insns which
4961 ;; perform two operations with the result of the first feeding the second.
4962 (define_insn ""
4963   [(set (match_operand:DF 0 "register_operand" "=f")
4964         (plus:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
4965                           (match_operand:DF 2 "register_operand" "f"))
4966                  (match_operand:DF 3 "register_operand" "f")))
4967    (set (match_operand:DF 4 "register_operand" "=&f")
4968         (mult:DF (match_dup 1) (match_dup 2)))]
4969   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
4970     && ! (reg_overlap_mentioned_p (operands[4], operands[1])
4971           || reg_overlap_mentioned_p (operands[4], operands[2])))"
4972   "#"
4973   [(set_attr "type" "fpmuldbl")
4974    (set_attr "length" "8")])
4975
4976 ;; We want to split this up during scheduling since we want both insns
4977 ;; to schedule independently.
4978 (define_split
4979   [(set (match_operand:DF 0 "register_operand" "")
4980         (plus:DF (mult:DF (match_operand:DF 1 "register_operand" "")
4981                           (match_operand:DF 2 "register_operand" ""))
4982                  (match_operand:DF 3 "register_operand" "")))
4983    (set (match_operand:DF 4 "register_operand" "")
4984         (mult:DF (match_dup 1) (match_dup 2)))]
4985   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4986   [(set (match_dup 4) (mult:DF (match_dup 1) (match_dup 2)))
4987    (set (match_dup 0) (plus:DF (mult:DF (match_dup 1) (match_dup 2))
4988                                (match_dup 3)))]
4989   "")
4990
4991 (define_insn ""
4992   [(set (match_operand:SF 0 "register_operand" "=f")
4993         (plus:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
4994                           (match_operand:SF 2 "register_operand" "f"))
4995                  (match_operand:SF 3 "register_operand" "f")))
4996    (set (match_operand:SF 4 "register_operand" "=&f")
4997         (mult:SF (match_dup 1) (match_dup 2)))]
4998   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
4999     && ! (reg_overlap_mentioned_p (operands[4], operands[1])
5000           || reg_overlap_mentioned_p (operands[4], operands[2])))"
5001   "#"
5002   [(set_attr "type" "fpmuldbl")
5003    (set_attr "length" "8")])
5004
5005 ;; We want to split this up during scheduling since we want both insns
5006 ;; to schedule independently.
5007 (define_split
5008   [(set (match_operand:SF 0 "register_operand" "")
5009         (plus:SF (mult:SF (match_operand:SF 1 "register_operand" "")
5010                           (match_operand:SF 2 "register_operand" ""))
5011                  (match_operand:SF 3 "register_operand" "")))
5012    (set (match_operand:SF 4 "register_operand" "")
5013         (mult:SF (match_dup 1) (match_dup 2)))]
5014   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5015   [(set (match_dup 4) (mult:SF (match_dup 1) (match_dup 2)))
5016    (set (match_dup 0) (plus:SF (mult:SF (match_dup 1) (match_dup 2))
5017                                (match_dup 3)))]
5018   "")
5019
5020 ;; Negating a multiply can be faked by adding zero in a fused multiply-add
5021 ;; instruction.
5022 (define_insn ""
5023   [(set (match_operand:DF 0 "register_operand" "=f")
5024         (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
5025                          (match_operand:DF 2 "register_operand" "f"))))]
5026   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5027   "fmpynfadd,dbl %1,%2,%%fr0,%0"
5028   [(set_attr "type" "fpmuldbl")
5029    (set_attr "length" "4")])
5030
5031 (define_insn ""
5032   [(set (match_operand:SF 0 "register_operand" "=f")
5033         (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
5034                          (match_operand:SF 2 "register_operand" "f"))))]
5035   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5036   "fmpynfadd,sgl %1,%2,%%fr0,%0"
5037   [(set_attr "type" "fpmuldbl")
5038    (set_attr "length" "4")])
5039
5040 (define_insn ""
5041   [(set (match_operand:DF 0 "register_operand" "=f")
5042         (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
5043                          (match_operand:DF 2 "register_operand" "f"))))
5044    (set (match_operand:DF 3 "register_operand" "=&f")
5045         (mult:DF (match_dup 1) (match_dup 2)))]
5046   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
5047     && ! (reg_overlap_mentioned_p (operands[3], operands[1])
5048           || reg_overlap_mentioned_p (operands[3], operands[2])))"
5049   "#"
5050   [(set_attr "type" "fpmuldbl")
5051    (set_attr "length" "8")])
5052
5053 (define_split
5054   [(set (match_operand:DF 0 "register_operand" "")
5055         (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "")
5056                          (match_operand:DF 2 "register_operand" ""))))
5057    (set (match_operand:DF 3 "register_operand" "")
5058         (mult:DF (match_dup 1) (match_dup 2)))]
5059   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5060   [(set (match_dup 3) (mult:DF (match_dup 1) (match_dup 2)))
5061    (set (match_dup 0) (neg:DF (mult:DF (match_dup 1) (match_dup 2))))]
5062   "")
5063
5064 (define_insn ""
5065   [(set (match_operand:SF 0 "register_operand" "=f")
5066         (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
5067                          (match_operand:SF 2 "register_operand" "f"))))
5068    (set (match_operand:SF 3 "register_operand" "=&f")
5069         (mult:SF (match_dup 1) (match_dup 2)))]
5070   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
5071     && ! (reg_overlap_mentioned_p (operands[3], operands[1])
5072           || reg_overlap_mentioned_p (operands[3], operands[2])))"
5073   "#"
5074   [(set_attr "type" "fpmuldbl")
5075    (set_attr "length" "8")])
5076
5077 (define_split
5078   [(set (match_operand:SF 0 "register_operand" "")
5079         (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "")
5080                          (match_operand:SF 2 "register_operand" ""))))
5081    (set (match_operand:SF 3 "register_operand" "")
5082         (mult:SF (match_dup 1) (match_dup 2)))]
5083   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5084   [(set (match_dup 3) (mult:SF (match_dup 1) (match_dup 2)))
5085    (set (match_dup 0) (neg:SF (mult:SF (match_dup 1) (match_dup 2))))]
5086   "")
5087
5088 ;; Now fused multiplies with the result of the multiply negated.
5089 (define_insn ""
5090   [(set (match_operand:DF 0 "register_operand" "=f")
5091         (plus:DF (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
5092                                   (match_operand:DF 2 "register_operand" "f")))
5093                  (match_operand:DF 3 "register_operand" "f")))]
5094   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5095   "fmpynfadd,dbl %1,%2,%3,%0"
5096   [(set_attr "type" "fpmuldbl")
5097    (set_attr "length" "4")])
5098
5099 (define_insn ""
5100   [(set (match_operand:SF 0 "register_operand" "=f")
5101         (plus:SF (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
5102                          (match_operand:SF 2 "register_operand" "f")))
5103                  (match_operand:SF 3 "register_operand" "f")))]
5104   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5105   "fmpynfadd,sgl %1,%2,%3,%0"
5106   [(set_attr "type" "fpmuldbl")
5107    (set_attr "length" "4")])
5108
5109 (define_insn ""
5110   [(set (match_operand:DF 0 "register_operand" "=f")
5111         (plus:DF (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
5112                                   (match_operand:DF 2 "register_operand" "f")))
5113                  (match_operand:DF 3 "register_operand" "f")))
5114    (set (match_operand:DF 4 "register_operand" "=&f")
5115         (mult:DF (match_dup 1) (match_dup 2)))]
5116   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
5117     && ! (reg_overlap_mentioned_p (operands[4], operands[1])
5118           || reg_overlap_mentioned_p (operands[4], operands[2])))"
5119   "#"
5120   [(set_attr "type" "fpmuldbl")
5121    (set_attr "length" "8")])
5122
5123 (define_split
5124   [(set (match_operand:DF 0 "register_operand" "")
5125         (plus:DF (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "")
5126                                   (match_operand:DF 2 "register_operand" "")))
5127                  (match_operand:DF 3 "register_operand" "")))
5128    (set (match_operand:DF 4 "register_operand" "")
5129         (mult:DF (match_dup 1) (match_dup 2)))]
5130   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5131   [(set (match_dup 4) (mult:DF (match_dup 1) (match_dup 2)))
5132    (set (match_dup 0) (plus:DF (neg:DF (mult:DF (match_dup 1) (match_dup 2)))
5133                                (match_dup 3)))]
5134   "")
5135
5136 (define_insn ""
5137   [(set (match_operand:SF 0 "register_operand" "=f")
5138         (plus:SF (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
5139                                   (match_operand:SF 2 "register_operand" "f")))
5140                  (match_operand:SF 3 "register_operand" "f")))
5141    (set (match_operand:SF 4 "register_operand" "=&f")
5142         (mult:SF (match_dup 1) (match_dup 2)))]
5143   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
5144     && ! (reg_overlap_mentioned_p (operands[4], operands[1])
5145           || reg_overlap_mentioned_p (operands[4], operands[2])))"
5146   "#"
5147   [(set_attr "type" "fpmuldbl")
5148    (set_attr "length" "8")])
5149
5150 (define_split
5151   [(set (match_operand:SF 0 "register_operand" "")
5152         (plus:SF (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "")
5153                                   (match_operand:SF 2 "register_operand" "")))
5154                  (match_operand:SF 3 "register_operand" "")))
5155    (set (match_operand:SF 4 "register_operand" "")
5156         (mult:SF (match_dup 1) (match_dup 2)))]
5157   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5158   [(set (match_dup 4) (mult:SF (match_dup 1) (match_dup 2)))
5159    (set (match_dup 0) (plus:SF (neg:SF (mult:SF (match_dup 1) (match_dup 2)))
5160                                (match_dup 3)))]
5161   "")
5162
5163 (define_insn ""
5164   [(set (match_operand:DF 0 "register_operand" "=f")
5165         (minus:DF (match_operand:DF 3 "register_operand" "f")
5166                   (mult:DF (match_operand:DF 1 "register_operand" "f")
5167                            (match_operand:DF 2 "register_operand" "f"))))
5168    (set (match_operand:DF 4 "register_operand" "=&f")
5169         (mult:DF (match_dup 1) (match_dup 2)))]
5170   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
5171     && ! (reg_overlap_mentioned_p (operands[4], operands[1])
5172           || reg_overlap_mentioned_p (operands[4], operands[2])))"
5173   "#"
5174   [(set_attr "type" "fpmuldbl")
5175    (set_attr "length" "8")])
5176
5177 (define_split
5178   [(set (match_operand:DF 0 "register_operand" "")
5179         (minus:DF (match_operand:DF 3 "register_operand" "")
5180                   (mult:DF (match_operand:DF 1 "register_operand" "")
5181                            (match_operand:DF 2 "register_operand" ""))))
5182    (set (match_operand:DF 4 "register_operand" "")
5183         (mult:DF (match_dup 1) (match_dup 2)))]
5184   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5185   [(set (match_dup 4) (mult:DF (match_dup 1) (match_dup 2)))
5186    (set (match_dup 0) (minus:DF (match_dup 3)
5187                                 (mult:DF (match_dup 1) (match_dup 2))))]
5188   "")
5189
5190 (define_insn ""
5191   [(set (match_operand:SF 0 "register_operand" "=f")
5192         (minus:SF (match_operand:SF 3 "register_operand" "f")
5193                   (mult:SF (match_operand:SF 1 "register_operand" "f")
5194                            (match_operand:SF 2 "register_operand" "f"))))
5195    (set (match_operand:SF 4 "register_operand" "=&f")
5196         (mult:SF (match_dup 1) (match_dup 2)))]
5197   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
5198     && ! (reg_overlap_mentioned_p (operands[4], operands[1])
5199           || reg_overlap_mentioned_p (operands[4], operands[2])))"
5200   "#"
5201   [(set_attr "type" "fpmuldbl")
5202    (set_attr "length" "8")])
5203
5204 (define_split
5205   [(set (match_operand:SF 0 "register_operand" "")
5206         (minus:SF (match_operand:SF 3 "register_operand" "")
5207                   (mult:SF (match_operand:SF 1 "register_operand" "")
5208                            (match_operand:SF 2 "register_operand" ""))))
5209    (set (match_operand:SF 4 "register_operand" "")
5210         (mult:SF (match_dup 1) (match_dup 2)))]
5211   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5212   [(set (match_dup 4) (mult:SF (match_dup 1) (match_dup 2)))
5213    (set (match_dup 0) (minus:SF (match_dup 3)
5214                                 (mult:SF (match_dup 1) (match_dup 2))))]
5215   "")
5216
5217 (define_insn ""
5218   [(set (match_operand:DF 0 "register_operand" "=f")
5219         (neg:DF (abs:DF (match_operand:DF 1 "register_operand" "f"))))
5220    (set (match_operand:DF 2 "register_operand" "=&f") (abs:DF (match_dup 1)))]
5221   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
5222     && ! reg_overlap_mentioned_p (operands[2], operands[1]))"
5223   "#"
5224   [(set_attr "type" "fpalu")
5225    (set_attr "length" "8")])
5226
5227 (define_split
5228   [(set (match_operand:DF 0 "register_operand" "")
5229         (neg:DF (abs:DF (match_operand:DF 1 "register_operand" ""))))
5230    (set (match_operand:DF 2 "register_operand" "") (abs:DF (match_dup 1)))]
5231   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5232   [(set (match_dup 2) (abs:DF (match_dup 1)))
5233    (set (match_dup 0) (neg:DF (abs:DF (match_dup 1))))]
5234   "")
5235
5236 (define_insn ""
5237   [(set (match_operand:SF 0 "register_operand" "=f")
5238         (neg:SF (abs:SF (match_operand:SF 1 "register_operand" "f"))))
5239    (set (match_operand:SF 2 "register_operand" "=&f") (abs:SF (match_dup 1)))]
5240   "(! TARGET_SOFT_FLOAT && TARGET_PA_20
5241     && ! reg_overlap_mentioned_p (operands[2], operands[1]))"
5242   "#"
5243   [(set_attr "type" "fpalu")
5244    (set_attr "length" "8")])
5245
5246 (define_split
5247   [(set (match_operand:SF 0 "register_operand" "")
5248         (neg:SF (abs:SF (match_operand:SF 1 "register_operand" ""))))
5249    (set (match_operand:SF 2 "register_operand" "") (abs:SF (match_dup 1)))]
5250   "! TARGET_SOFT_FLOAT && TARGET_PA_20"
5251   [(set (match_dup 2) (abs:SF (match_dup 1)))
5252    (set (match_dup 0) (neg:SF (abs:SF (match_dup 1))))]
5253   "")
5254 \f
5255 ;;- Shift instructions
5256
5257 ;; Optimized special case of shifting.
5258
5259 (define_insn ""
5260   [(set (match_operand:SI 0 "register_operand" "=r")
5261         (lshiftrt:SI (match_operand:SI 1 "memory_operand" "m")
5262                      (const_int 24)))]
5263   ""
5264   "ldb%M1 %1,%0"
5265   [(set_attr "type" "load")
5266    (set_attr "length" "4")])
5267
5268 (define_insn ""
5269   [(set (match_operand:SI 0 "register_operand" "=r")
5270         (lshiftrt:SI (match_operand:SI 1 "memory_operand" "m")
5271                      (const_int 16)))]
5272   ""
5273   "ldh%M1 %1,%0"
5274   [(set_attr "type" "load")
5275    (set_attr "length" "4")])
5276
5277 (define_insn ""
5278   [(set (match_operand:SI 0 "register_operand" "=r")
5279         (plus:SI (mult:SI (match_operand:SI 2 "register_operand" "r")
5280                           (match_operand:SI 3 "shadd_operand" ""))
5281                  (match_operand:SI 1 "register_operand" "r")))]
5282   ""
5283   "{sh%O3addl %2,%1,%0|shladd,l %2,%O3,%1,%0} "
5284   [(set_attr "type" "binary")
5285    (set_attr "length" "4")])
5286
5287 (define_insn ""
5288   [(set (match_operand:DI 0 "register_operand" "=r")
5289         (plus:DI (mult:DI (match_operand:DI 2 "register_operand" "r")
5290                           (match_operand:DI 3 "shadd_operand" ""))
5291                  (match_operand:DI 1 "register_operand" "r")))]
5292   "TARGET_64BIT"
5293   "shladd,l %2,%O3,%1,%0"
5294   [(set_attr "type" "binary")
5295    (set_attr "length" "4")])
5296
5297 (define_expand "ashlsi3"
5298   [(set (match_operand:SI 0 "register_operand" "")
5299         (ashift:SI (match_operand:SI 1 "lhs_lshift_operand" "")
5300                    (match_operand:SI 2 "arith32_operand" "")))]
5301   ""
5302   "
5303 {
5304   if (GET_CODE (operands[2]) != CONST_INT)
5305     {
5306       rtx temp = gen_reg_rtx (SImode);
5307       emit_insn (gen_subsi3 (temp, GEN_INT (31), operands[2]));
5308       if (GET_CODE (operands[1]) == CONST_INT)
5309         emit_insn (gen_zvdep_imm32 (operands[0], operands[1], temp));
5310       else
5311         emit_insn (gen_zvdep32 (operands[0], operands[1], temp));
5312       DONE;
5313     }
5314   /* Make sure both inputs are not constants,
5315      there are no patterns for that.  */
5316   operands[1] = force_reg (SImode, operands[1]);
5317 }")
5318
5319 (define_insn ""
5320   [(set (match_operand:SI 0 "register_operand" "=r")
5321         (ashift:SI (match_operand:SI 1 "register_operand" "r")
5322                    (match_operand:SI 2 "const_int_operand" "n")))]
5323   ""
5324   "{zdep|depw,z} %1,%P2,%L2,%0"
5325   [(set_attr "type" "shift")
5326    (set_attr "length" "4")])
5327
5328 ; Match cases of op1 a CONST_INT here that zvdep_imm32 doesn't handle.
5329 ; Doing it like this makes slightly better code since reload can
5330 ; replace a register with a known value in range -16..15 with a
5331 ; constant.  Ideally, we would like to merge zvdep32 and zvdep_imm32,
5332 ; but since we have no more CONST_OK... characters, that is not
5333 ; possible.
5334 (define_insn "zvdep32"
5335   [(set (match_operand:SI 0 "register_operand" "=r,r")
5336         (ashift:SI (match_operand:SI 1 "arith5_operand" "r,L")
5337                    (minus:SI (const_int 31)
5338                              (match_operand:SI 2 "register_operand" "q,q"))))]
5339   ""
5340   "@
5341    {zvdep %1,32,%0|depw,z %1,%%sar,32,%0}
5342    {zvdepi %1,32,%0|depwi,z %1,%%sar,32,%0}"
5343   [(set_attr "type" "shift,shift")
5344    (set_attr "length" "4,4")])
5345
5346 (define_insn "zvdep_imm32"
5347   [(set (match_operand:SI 0 "register_operand" "=r")
5348         (ashift:SI (match_operand:SI 1 "lhs_lshift_cint_operand" "")
5349                    (minus:SI (const_int 31)
5350                              (match_operand:SI 2 "register_operand" "q"))))]
5351   ""
5352   "*
5353 {
5354   int x = INTVAL (operands[1]);
5355   operands[2] = GEN_INT (4 + exact_log2 ((x >> 4) + 1));
5356   operands[1] = GEN_INT ((x & 0xf) - 0x10);
5357   return \"{zvdepi %1,%2,%0|depwi,z %1,%%sar,%2,%0}\";
5358 }"
5359   [(set_attr "type" "shift")
5360    (set_attr "length" "4")])
5361
5362 (define_insn "vdepi_ior"
5363   [(set (match_operand:SI 0 "register_operand" "=r")
5364         (ior:SI (ashift:SI (match_operand:SI 1 "const_int_operand" "")
5365                            (minus:SI (const_int 31)
5366                                      (match_operand:SI 2 "register_operand" "q")))
5367                 (match_operand:SI 3 "register_operand" "0")))]
5368   ; accept ...0001...1, can this be generalized?
5369   "exact_log2 (INTVAL (operands[1]) + 1) >= 0"
5370   "*
5371 {
5372   int x = INTVAL (operands[1]);
5373   operands[2] = GEN_INT (exact_log2 (x + 1));
5374   return \"{vdepi -1,%2,%0|depwi -1,%%sar,%2,%0}\";
5375 }"
5376   [(set_attr "type" "shift")
5377    (set_attr "length" "4")])
5378
5379 (define_insn "vdepi_and"
5380   [(set (match_operand:SI 0 "register_operand" "=r")
5381         (and:SI (rotate:SI (match_operand:SI 1 "const_int_operand" "")
5382                            (minus:SI (const_int 31)
5383                                      (match_operand:SI 2 "register_operand" "q")))
5384                 (match_operand:SI 3 "register_operand" "0")))]
5385   ; this can be generalized...!
5386   "INTVAL (operands[1]) == -2"
5387   "*
5388 {
5389   int x = INTVAL (operands[1]);
5390   operands[2] = GEN_INT (exact_log2 ((~x) + 1));
5391   return \"{vdepi 0,%2,%0|depwi 0,%%sar,%2,%0}\";
5392 }"
5393   [(set_attr "type" "shift")
5394    (set_attr "length" "4")])
5395
5396 (define_expand "ashldi3"
5397   [(set (match_operand:DI 0 "register_operand" "")
5398         (ashift:DI (match_operand:DI 1 "lhs_lshift_operand" "")
5399                    (match_operand:DI 2 "arith32_operand" "")))]
5400   "TARGET_64BIT"
5401   "
5402 {
5403   if (GET_CODE (operands[2]) != CONST_INT)
5404     {
5405       rtx temp = gen_reg_rtx (DImode);
5406       emit_insn (gen_subdi3 (temp, GEN_INT (63), operands[2]));
5407       if (GET_CODE (operands[1]) == CONST_INT)
5408         emit_insn (gen_zvdep_imm64 (operands[0], operands[1], temp));
5409       else
5410         emit_insn (gen_zvdep64 (operands[0], operands[1], temp));
5411       DONE;
5412     }
5413   /* Make sure both inputs are not constants,
5414      there are no patterns for that.  */
5415   operands[1] = force_reg (DImode, operands[1]);
5416 }")
5417
5418 (define_insn ""
5419   [(set (match_operand:DI 0 "register_operand" "=r")
5420         (ashift:DI (match_operand:DI 1 "register_operand" "r")
5421                    (match_operand:DI 2 "const_int_operand" "n")))]
5422   "TARGET_64BIT"
5423   "depd,z %1,%p2,%Q2,%0"
5424   [(set_attr "type" "shift")
5425    (set_attr "length" "4")])
5426
5427 ; Match cases of op1 a CONST_INT here that zvdep_imm64 doesn't handle.
5428 ; Doing it like this makes slightly better code since reload can
5429 ; replace a register with a known value in range -16..15 with a
5430 ; constant.  Ideally, we would like to merge zvdep64 and zvdep_imm64,
5431 ; but since we have no more CONST_OK... characters, that is not
5432 ; possible.
5433 (define_insn "zvdep64"
5434   [(set (match_operand:DI 0 "register_operand" "=r,r")
5435         (ashift:DI (match_operand:DI 1 "arith5_operand" "r,L")
5436                    (minus:DI (const_int 63)
5437                              (match_operand:DI 2 "register_operand" "q,q"))))]
5438   "TARGET_64BIT"
5439   "@
5440    depd,z %1,%%sar,64,%0
5441    depdi,z %1,%%sar,64,%0"
5442   [(set_attr "type" "shift,shift")
5443    (set_attr "length" "4,4")])
5444
5445 (define_insn "zvdep_imm64"
5446   [(set (match_operand:DI 0 "register_operand" "=r")
5447         (ashift:DI (match_operand:DI 1 "lhs_lshift_cint_operand" "")
5448                    (minus:DI (const_int 63)
5449                              (match_operand:DI 2 "register_operand" "q"))))]
5450   "TARGET_64BIT"
5451   "*
5452 {
5453   int x = INTVAL (operands[1]);
5454   operands[2] = GEN_INT (4 + exact_log2 ((x >> 4) + 1));
5455   operands[1] = GEN_INT ((x & 0x1f) - 0x20);
5456   return \"depdi,z %1,%%sar,%2,%0\";
5457 }"
5458   [(set_attr "type" "shift")
5459    (set_attr "length" "4")])
5460
5461 (define_insn ""
5462   [(set (match_operand:DI 0 "register_operand" "=r")
5463         (ior:DI (ashift:DI (match_operand:DI 1 "const_int_operand" "")
5464                            (minus:DI (const_int 63)
5465                                      (match_operand:DI 2 "register_operand" "q")))
5466                 (match_operand:DI 3 "register_operand" "0")))]
5467   ; accept ...0001...1, can this be generalized?
5468   "TARGET_64BIT && exact_log2 (INTVAL (operands[1]) + 1) >= 0"
5469   "*
5470 {
5471   int x = INTVAL (operands[1]);
5472   operands[2] = GEN_INT (exact_log2 (x + 1));
5473   return \"depdi -1,%%sar,%2,%0\";
5474 }"
5475   [(set_attr "type" "shift")
5476    (set_attr "length" "4")])
5477
5478 (define_insn ""
5479   [(set (match_operand:DI 0 "register_operand" "=r")
5480         (and:DI (rotate:DI (match_operand:DI 1 "const_int_operand" "")
5481                            (minus:DI (const_int 63)
5482                                      (match_operand:DI 2 "register_operand" "q")))
5483                 (match_operand:DI 3 "register_operand" "0")))]
5484   ; this can be generalized...!
5485   "TARGET_64BIT && INTVAL (operands[1]) == -2"
5486   "*
5487 {
5488   int x = INTVAL (operands[1]);
5489   operands[2] = GEN_INT (exact_log2 ((~x) + 1));
5490   return \"depdi 0,%%sar,%2,%0\";
5491 }"
5492   [(set_attr "type" "shift")
5493    (set_attr "length" "4")])
5494
5495 (define_expand "ashrsi3"
5496   [(set (match_operand:SI 0 "register_operand" "")
5497         (ashiftrt:SI (match_operand:SI 1 "register_operand" "")
5498                      (match_operand:SI 2 "arith32_operand" "")))]
5499   ""
5500   "
5501 {
5502   if (GET_CODE (operands[2]) != CONST_INT)
5503     {
5504       rtx temp = gen_reg_rtx (SImode);
5505       emit_insn (gen_subsi3 (temp, GEN_INT (31), operands[2]));
5506       emit_insn (gen_vextrs32 (operands[0], operands[1], temp));
5507       DONE;
5508     }
5509 }")
5510
5511 (define_insn ""
5512   [(set (match_operand:SI 0 "register_operand" "=r")
5513         (ashiftrt:SI (match_operand:SI 1 "register_operand" "r")
5514                      (match_operand:SI 2 "const_int_operand" "n")))]
5515   ""
5516   "{extrs|extrw,s} %1,%P2,%L2,%0"
5517   [(set_attr "type" "shift")
5518    (set_attr "length" "4")])
5519
5520 (define_insn "vextrs32"
5521   [(set (match_operand:SI 0 "register_operand" "=r")
5522         (ashiftrt:SI (match_operand:SI 1 "register_operand" "r")
5523                      (minus:SI (const_int 31)
5524                                (match_operand:SI 2 "register_operand" "q"))))]
5525   ""
5526   "{vextrs %1,32,%0|extrw,s %1,%%sar,32,%0}"
5527   [(set_attr "type" "shift")
5528    (set_attr "length" "4")])
5529
5530 (define_expand "ashrdi3"
5531   [(set (match_operand:DI 0 "register_operand" "")
5532         (ashiftrt:DI (match_operand:DI 1 "register_operand" "")
5533                      (match_operand:DI 2 "arith32_operand" "")))]
5534   "TARGET_64BIT"
5535   "
5536 {
5537   if (GET_CODE (operands[2]) != CONST_INT)
5538     {
5539       rtx temp = gen_reg_rtx (DImode);
5540       emit_insn (gen_subdi3 (temp, GEN_INT (63), operands[2]));
5541       emit_insn (gen_vextrs64 (operands[0], operands[1], temp));
5542       DONE;
5543     }
5544 }")
5545
5546 (define_insn ""
5547   [(set (match_operand:DI 0 "register_operand" "=r")
5548         (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
5549                      (match_operand:DI 2 "const_int_operand" "n")))]
5550   "TARGET_64BIT"
5551   "extrd,s %1,%p2,%Q2,%0"
5552   [(set_attr "type" "shift")
5553    (set_attr "length" "4")])
5554
5555 (define_insn "vextrs64"
5556   [(set (match_operand:DI 0 "register_operand" "=r")
5557         (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
5558                      (minus:DI (const_int 63)
5559                                (match_operand:DI 2 "register_operand" "q"))))]
5560   "TARGET_64BIT"
5561   "extrd,s %1,%%sar,64,%0"
5562   [(set_attr "type" "shift")
5563    (set_attr "length" "4")])
5564
5565 (define_insn "lshrsi3"
5566   [(set (match_operand:SI 0 "register_operand" "=r,r")
5567         (lshiftrt:SI (match_operand:SI 1 "register_operand" "r,r")
5568                      (match_operand:SI 2 "arith32_operand" "q,n")))]
5569   ""
5570   "@
5571    {vshd %%r0,%1,%0|shrpw %%r0,%1,%%sar,%0}
5572    {extru|extrw,u} %1,%P2,%L2,%0"
5573   [(set_attr "type" "shift")
5574    (set_attr "length" "4")])
5575
5576 (define_insn "lshrdi3"
5577   [(set (match_operand:DI 0 "register_operand" "=r,r")
5578         (lshiftrt:DI (match_operand:DI 1 "register_operand" "r,r")
5579                      (match_operand:DI 2 "arith32_operand" "q,n")))]
5580   "TARGET_64BIT"
5581   "@
5582    shrpd %%r0,%1,%%sar,%0
5583    extrd,u %1,%p2,%Q2,%0"
5584   [(set_attr "type" "shift")
5585    (set_attr "length" "4")])
5586
5587 (define_insn "rotrsi3"
5588   [(set (match_operand:SI 0 "register_operand" "=r,r")
5589         (rotatert:SI (match_operand:SI 1 "register_operand" "r,r")
5590                      (match_operand:SI 2 "arith32_operand" "q,n")))]
5591   ""
5592   "*
5593 {
5594   if (GET_CODE (operands[2]) == CONST_INT)
5595     {
5596       operands[2] = GEN_INT (INTVAL (operands[2]) & 31);
5597       return \"{shd|shrpw} %1,%1,%2,%0\";
5598     }
5599   else
5600     return \"{vshd %1,%1,%0|shrpw %1,%1,%%sar,%0}\";
5601 }"
5602   [(set_attr "type" "shift")
5603    (set_attr "length" "4")])
5604
5605 (define_expand "rotlsi3"
5606   [(set (match_operand:SI 0 "register_operand" "")
5607         (rotate:SI (match_operand:SI 1 "register_operand" "")
5608                    (match_operand:SI 2 "arith32_operand" "")))]
5609   ""
5610   "
5611 {
5612   if (GET_CODE (operands[2]) != CONST_INT)
5613     {
5614       rtx temp = gen_reg_rtx (SImode);
5615       emit_insn (gen_subsi3 (temp, GEN_INT (32), operands[2]));
5616       emit_insn (gen_rotrsi3 (operands[0], operands[1], temp));
5617       DONE;
5618     }
5619   /* Else expand normally.  */
5620 }")
5621
5622 (define_insn ""
5623   [(set (match_operand:SI 0 "register_operand" "=r")
5624         (rotate:SI (match_operand:SI 1 "register_operand" "r")
5625                    (match_operand:SI 2 "const_int_operand" "n")))]
5626   ""
5627   "*
5628 {
5629   operands[2] = GEN_INT ((32 - INTVAL (operands[2])) & 31);
5630   return \"{shd|shrpw} %1,%1,%2,%0\";
5631 }"
5632   [(set_attr "type" "shift")
5633    (set_attr "length" "4")])
5634
5635 (define_insn ""
5636   [(set (match_operand:SI 0 "register_operand" "=r")
5637         (match_operator:SI 5 "plus_xor_ior_operator"
5638           [(ashift:SI (match_operand:SI 1 "register_operand" "r")
5639                       (match_operand:SI 3 "const_int_operand" "n"))
5640            (lshiftrt:SI (match_operand:SI 2 "register_operand" "r")
5641                         (match_operand:SI 4 "const_int_operand" "n"))]))]
5642   "INTVAL (operands[3]) + INTVAL (operands[4]) == 32"
5643   "{shd|shrpw} %1,%2,%4,%0"
5644   [(set_attr "type" "shift")
5645    (set_attr "length" "4")])
5646
5647 (define_insn ""
5648   [(set (match_operand:SI 0 "register_operand" "=r")
5649         (match_operator:SI 5 "plus_xor_ior_operator"
5650           [(lshiftrt:SI (match_operand:SI 2 "register_operand" "r")
5651                         (match_operand:SI 4 "const_int_operand" "n"))
5652            (ashift:SI (match_operand:SI 1 "register_operand" "r")
5653                       (match_operand:SI 3 "const_int_operand" "n"))]))]
5654   "INTVAL (operands[3]) + INTVAL (operands[4]) == 32"
5655   "{shd|shrpw} %1,%2,%4,%0"
5656   [(set_attr "type" "shift")
5657    (set_attr "length" "4")])
5658
5659 (define_insn ""
5660   [(set (match_operand:SI 0 "register_operand" "=r")
5661         (and:SI (ashift:SI (match_operand:SI 1 "register_operand" "r")
5662                            (match_operand:SI 2 "const_int_operand" ""))
5663                 (match_operand:SI 3 "const_int_operand" "")))]
5664   "exact_log2 (1 + (INTVAL (operands[3]) >> (INTVAL (operands[2]) & 31))) >= 0"
5665   "*
5666 {
5667   int cnt = INTVAL (operands[2]) & 31;
5668   operands[3] = GEN_INT (exact_log2 (1 + (INTVAL (operands[3]) >> cnt)));
5669   operands[2] = GEN_INT (31 - cnt);
5670   return \"{zdep|depw,z} %1,%2,%3,%0\";
5671 }"
5672   [(set_attr "type" "shift")
5673    (set_attr "length" "4")])
5674 \f
5675 ;; Unconditional and other jump instructions.
5676
5677 ;; This can only be used in a leaf function, so we do
5678 ;; not need to use the PIC register when generating PIC code.
5679 (define_insn "return"
5680   [(return)
5681    (use (reg:SI 2))
5682    (const_int 0)]
5683   "hppa_can_use_return_insn_p ()"
5684   "*
5685 {
5686   if (TARGET_PA_20)
5687     return \"bve%* (%%r2)\";
5688   return \"bv%* %%r0(%%r2)\";
5689 }"
5690   [(set_attr "type" "branch")
5691    (set_attr "length" "4")])
5692
5693 ;; Emit a different pattern for functions which have non-trivial
5694 ;; epilogues so as not to confuse jump and reorg.
5695 (define_insn "return_internal"
5696   [(return)
5697    (use (reg:SI 2))
5698    (const_int 1)]
5699   "! flag_pic"
5700   "*
5701 {
5702   if (TARGET_PA_20)
5703     return \"bve%* (%%r2)\";
5704   return \"bv%* %%r0(%%r2)\";
5705 }"
5706   [(set_attr "type" "branch")
5707    (set_attr "length" "4")])
5708
5709 ;; Use the PIC register to ensure it's restored after a
5710 ;; call in PIC mode.
5711 (define_insn "return_internal_pic"
5712   [(return)
5713    (use (match_operand 0 "register_operand" "r"))
5714    (use (reg:SI 2))]
5715   "flag_pic && true_regnum (operands[0]) == PIC_OFFSET_TABLE_REGNUM"
5716   "*
5717 {
5718   if (TARGET_PA_20)
5719     return \"bve%* (%%r2)\";
5720   return \"bv%* %%r0(%%r2)\";
5721 }"
5722   [(set_attr "type" "branch")
5723    (set_attr "length" "4")])
5724
5725 ;; Use the PIC register to ensure it's restored after a
5726 ;; call in PIC mode.  This is used for eh returns which
5727 ;; bypass the return stub.
5728 (define_insn "return_external_pic"
5729   [(return)
5730    (use (match_operand 0 "register_operand" "r"))
5731    (use (reg:SI 2))
5732    (clobber (reg:SI 1))]
5733   "flag_pic
5734    && current_function_calls_eh_return
5735    && true_regnum (operands[0]) == PIC_OFFSET_TABLE_REGNUM"
5736   "ldsid (%%sr0,%%r2),%%r1\;mtsp %%r1,%%sr0\;be%* 0(%%sr0,%%r2)"
5737   [(set_attr "type" "branch")
5738    (set_attr "length" "12")])
5739
5740 (define_expand "prologue"
5741   [(const_int 0)]
5742   ""
5743   "hppa_expand_prologue ();DONE;")
5744
5745 (define_expand "sibcall_epilogue"
5746   [(return)]
5747   ""
5748   "
5749 {
5750   hppa_expand_epilogue ();
5751   DONE;
5752 }")
5753
5754 (define_expand "epilogue"
5755   [(return)]
5756   ""
5757   "
5758 {
5759   /* Try to use the trivial return first.  Else use the full
5760      epilogue.  */
5761   if (hppa_can_use_return_insn_p ())
5762     emit_jump_insn (gen_return ());
5763   else
5764     {
5765       rtx x;
5766
5767       hppa_expand_epilogue ();
5768       if (flag_pic)
5769         {
5770           rtx pic = gen_rtx_REG (word_mode, PIC_OFFSET_TABLE_REGNUM);
5771
5772           /* EH returns bypass the normal return stub.  Thus, we must do an
5773              interspace branch to return from functions that call eh_return.
5774              This is only a problem for returns from shared code.  */
5775           if (current_function_calls_eh_return)
5776             x = gen_return_external_pic (pic);
5777           else
5778             x = gen_return_internal_pic (pic);
5779         }
5780       else
5781         x = gen_return_internal ();
5782       emit_jump_insn (x);
5783     }
5784   DONE;
5785 }")
5786
5787 ;; Special because we use the value placed in %r2 by the bl instruction
5788 ;; from within its delay slot to set the value for the 2nd parameter to
5789 ;; the call.
5790 (define_insn "call_profiler"
5791   [(call (mem:SI (match_operand 0 "call_operand_address" ""))
5792          (match_operand 1 "" ""))
5793    (use (match_operand 2 "" ""))
5794    (use (reg:SI 25))
5795    (use (reg:SI 26))
5796    (clobber (reg:SI 2))]
5797   ""
5798   "*
5799 {
5800   rtx xoperands[3];
5801
5802   output_arg_descriptor (insn);
5803
5804   xoperands[0] = operands[0];
5805   xoperands[1] = operands[2];
5806   xoperands[2] = gen_label_rtx ();
5807   output_asm_insn (\"{bl|b,l} %0,%%r2\;ldo %1-%2(%%r2),%%r25\", xoperands);
5808
5809   ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, \"L\",
5810                              CODE_LABEL_NUMBER (xoperands[2]));
5811   return \"\";
5812 }"
5813   [(set_attr "type" "multi")
5814    (set_attr "length" "8")])
5815
5816 (define_insn "blockage"
5817   [(unspec_volatile [(const_int 2)] 0)]
5818   ""
5819   ""
5820   [(set_attr "length" "0")])
5821
5822 (define_insn "jump"
5823   [(set (pc) (label_ref (match_operand 0 "" "")))]
5824   ""
5825   "*
5826 {
5827   extern int optimize;
5828
5829   if (GET_MODE (insn) == SImode)
5830     return \"b %l0%#\";
5831
5832   /* An unconditional branch which can reach its target.  */
5833   if (get_attr_length (insn) != 24
5834       && get_attr_length (insn) != 16)
5835     return \"b%* %l0\";
5836
5837   /* An unconditional branch which can not reach its target.
5838
5839      We need to be able to use %r1 as a scratch register; however,
5840      we can never be sure whether or not it's got a live value in
5841      it.  Therefore, we must restore its original value after the
5842      jump.
5843
5844      To make matters worse, we don't have a stack slot which we
5845      can always clobber.  sp-12/sp-16 shouldn't ever have a live
5846      value during a non-optimizing compilation, so we use those
5847      slots for now.  We don't support very long branches when
5848      optimizing -- they should be quite rare when optimizing.
5849
5850      Really the way to go long term is a register scavenger; goto
5851      the target of the jump and find a register which we can use
5852      as a scratch to hold the value in %r1.  */
5853
5854   /* We don't know how to register scavenge yet.  */
5855   if (optimize)
5856     abort ();
5857
5858   /* First store %r1 into the stack.  */
5859   output_asm_insn (\"stw %%r1,-16(%%r30)\", operands);
5860
5861   /* Now load the target address into %r1 and do an indirect jump
5862      to the value specified in %r1.  Be careful to generate PIC
5863      code as needed.  */
5864   if (flag_pic)
5865     {
5866       rtx xoperands[2];
5867       xoperands[0] = operands[0];
5868       if (TARGET_SOM || ! TARGET_GAS)
5869         {
5870           xoperands[1] = gen_label_rtx ();
5871
5872           output_asm_insn (\"{bl|b,l} .+8,%%r1\\n\\taddil L'%l0-%l1,%%r1\",
5873                            xoperands);
5874           ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, \"L\",
5875                                      CODE_LABEL_NUMBER (xoperands[1]));
5876           output_asm_insn (\"ldo R'%l0-%l1(%%r1),%%r1\", xoperands);
5877         }
5878       else
5879         {
5880           output_asm_insn (\"{bl|b,l} .+8,%%r1\", xoperands);
5881           output_asm_insn (\"addil L'%l0-$PIC_pcrel$0+4,%%r1\", xoperands);
5882           output_asm_insn (\"ldo R'%l0-$PIC_pcrel$0+8(%%r1),%%r1\", xoperands);
5883         }
5884       output_asm_insn (\"bv %%r0(%%r1)\", xoperands);
5885     }
5886   else
5887     output_asm_insn (\"ldil L'%l0,%%r1\\n\\tbe R'%l0(%%sr4,%%r1)\", operands);;
5888
5889   /* And restore the value of %r1 in the delay slot.  We're not optimizing,
5890      so we know nothing else can be in the delay slot.  */
5891   return \"ldw -16(%%r30),%%r1\";
5892 }"
5893   [(set_attr "type" "uncond_branch")
5894    (set_attr "pa_combine_type" "uncond_branch")
5895    (set (attr "length")
5896     (cond [(eq (symbol_ref "jump_in_call_delay (insn)") (const_int 1))
5897            (if_then_else (lt (abs (minus (match_dup 0)
5898                                          (plus (pc) (const_int 8))))
5899                              (const_int 8184))
5900                          (const_int 4)
5901                          (const_int 8))
5902            (ge (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
5903                (const_int 262100))
5904            (if_then_else (eq (symbol_ref "flag_pic") (const_int 0))
5905                          (const_int 16)
5906                          (const_int 24))]
5907           (const_int 4)))])
5908
5909 ;; Subroutines of "casesi".
5910 ;; operand 0 is index
5911 ;; operand 1 is the minimum bound
5912 ;; operand 2 is the maximum bound - minimum bound + 1
5913 ;; operand 3 is CODE_LABEL for the table;
5914 ;; operand 4 is the CODE_LABEL to go to if index out of range.
5915
5916 (define_expand "casesi"
5917   [(match_operand:SI 0 "general_operand" "")
5918    (match_operand:SI 1 "const_int_operand" "")
5919    (match_operand:SI 2 "const_int_operand" "")
5920    (match_operand 3 "" "")
5921    (match_operand 4 "" "")]
5922   ""
5923   "
5924 {
5925   if (GET_CODE (operands[0]) != REG)
5926     operands[0] = force_reg (SImode, operands[0]);
5927
5928   if (operands[1] != const0_rtx)
5929     {
5930       rtx reg = gen_reg_rtx (SImode);
5931
5932       operands[1] = GEN_INT (-INTVAL (operands[1]));
5933       if (!INT_14_BITS (operands[1]))
5934         operands[1] = force_reg (SImode, operands[1]);
5935       emit_insn (gen_addsi3 (reg, operands[0], operands[1]));
5936
5937       operands[0] = reg;
5938     }
5939
5940   /* In 64bit mode we must make sure to wipe the upper bits of the register
5941      just in case the addition overflowed or we had random bits in the
5942      high part of the register.  */
5943   if (TARGET_64BIT)
5944     {
5945       rtx reg = gen_reg_rtx (DImode);
5946       emit_insn (gen_extendsidi2 (reg, operands[0]));
5947       operands[0] = gen_rtx_SUBREG (SImode, reg, 4);
5948     }
5949
5950   if (!INT_5_BITS (operands[2]))
5951     operands[2] = force_reg (SImode, operands[2]);
5952
5953   emit_insn (gen_cmpsi (operands[0], operands[2]));
5954   emit_jump_insn (gen_bgtu (operands[4]));
5955   if (TARGET_BIG_SWITCH)
5956     {
5957       rtx temp = gen_reg_rtx (SImode);
5958       emit_move_insn (temp, gen_rtx_PLUS (SImode, operands[0], operands[0]));
5959       operands[0] = temp;
5960     }
5961   emit_jump_insn (gen_casesi0 (operands[0], operands[3]));
5962   DONE;
5963 }")
5964
5965 (define_insn "casesi0"
5966   [(set (pc) (plus:SI
5967                (mem:SI (plus:SI (pc)
5968                                 (match_operand:SI 0 "register_operand" "r")))
5969                (label_ref (match_operand 1 "" ""))))]
5970   ""
5971   "blr %0,%%r0\;nop"
5972   [(set_attr "type" "multi")
5973    (set_attr "length" "8")])
5974
5975 ;; Need nops for the calls because execution is supposed to continue
5976 ;; past; we don't want to nullify an instruction that we need.
5977 ;;- jump to subroutine
5978
5979 (define_expand "call"
5980   [(parallel [(call (match_operand:SI 0 "" "")
5981                     (match_operand 1 "" ""))
5982               (clobber (reg:SI 2))])]
5983   ""
5984   "
5985 {
5986   rtx op;
5987   rtx call_insn;
5988
5989   if (TARGET_PORTABLE_RUNTIME)
5990     op = force_reg (SImode, XEXP (operands[0], 0));
5991   else
5992     op = XEXP (operands[0], 0);
5993
5994   if (TARGET_64BIT)
5995     emit_move_insn (arg_pointer_rtx,
5996                     gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
5997                                   GEN_INT (64)));
5998
5999   /* Use two different patterns for calls to explicitly named functions
6000      and calls through function pointers.  This is necessary as these two
6001      types of calls use different calling conventions, and CSE might try
6002      to change the named call into an indirect call in some cases (using
6003      two patterns keeps CSE from performing this optimization).  */
6004   if (GET_CODE (op) == SYMBOL_REF)
6005     call_insn = emit_call_insn (gen_call_internal_symref (op, operands[1]));
6006   else if (TARGET_64BIT)
6007     {
6008       rtx tmpreg = force_reg (word_mode, op);
6009       call_insn = emit_call_insn (gen_call_internal_reg_64bit (tmpreg,
6010                                                                operands[1]));
6011     }
6012   else
6013     {
6014       rtx tmpreg = gen_rtx_REG (word_mode, 22);
6015       emit_move_insn (tmpreg, force_reg (word_mode, op));
6016       call_insn = emit_call_insn (gen_call_internal_reg (operands[1]));
6017     }
6018
6019   if (flag_pic)
6020     {
6021       use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), pic_offset_table_rtx);
6022       if (TARGET_64BIT)
6023         use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), arg_pointer_rtx);
6024
6025       /* After each call we must restore the PIC register, even if it
6026          doesn't appear to be used.  */
6027       emit_move_insn (pic_offset_table_rtx, hppa_pic_save_rtx ());
6028     }
6029   DONE;
6030 }")
6031
6032 (define_insn "call_internal_symref"
6033   [(call (mem:SI (match_operand 0 "call_operand_address" ""))
6034          (match_operand 1 "" "i"))
6035    (clobber (reg:SI 2))
6036    (use (const_int 0))]
6037   "! TARGET_PORTABLE_RUNTIME"
6038   "*
6039 {
6040   output_arg_descriptor (insn);
6041   return output_call (insn, operands[0], 0);
6042 }"
6043   [(set_attr "type" "call")
6044    (set (attr "length")
6045 ;;       If we're sure that we can either reach the target or that the
6046 ;;       linker can use a long-branch stub, then the length is at most
6047 ;;       8 bytes.
6048 ;;
6049 ;;       For long-calls the length will be at most 68 bytes (non-pic)
6050 ;;       or 84 bytes (pic).  */
6051 ;;       Else we have to use a long-call;
6052       (if_then_else (lt (plus (symbol_ref "total_code_bytes") (pc))
6053                         (const_int 240000))
6054                     (const_int 8)
6055                     (if_then_else (eq (symbol_ref "flag_pic")
6056                                       (const_int 0))
6057                                   (const_int 68)
6058                                   (const_int 84))))])
6059
6060 (define_insn "call_internal_reg_64bit"
6061   [(call (mem:SI (match_operand:DI 0 "register_operand" "r"))
6062          (match_operand 1 "" "i"))
6063    (clobber (reg:SI 2))
6064    (use (const_int 1))]
6065   "TARGET_64BIT"
6066   "*
6067 {
6068   /* ??? Needs more work.  Length computation, split into multiple insns,
6069      do not use %r22 directly, expose delay slot.  */
6070   return \"ldd 16(%0),%%r2\;ldd 24(%0),%%r27\;bve,l (%%r2),%%r2\;nop\";
6071 }"
6072   [(set_attr "type" "dyncall")
6073    (set (attr "length") (const_int 16))])
6074
6075 (define_insn "call_internal_reg"
6076   [(call (mem:SI (reg:SI 22))
6077          (match_operand 0 "" "i"))
6078    (clobber (reg:SI 2))
6079    (use (const_int 1))]
6080   ""
6081   "*
6082 {
6083   rtx xoperands[2];
6084
6085   /* First the special case for kernels, level 0 systems, etc.  */
6086   if (TARGET_FAST_INDIRECT_CALLS)
6087     return \"ble 0(%%sr4,%%r22)\;copy %%r31,%%r2\";
6088
6089   /* Now the normal case -- we can reach $$dyncall directly or
6090      we're sure that we can get there via a long-branch stub. 
6091
6092      No need to check target flags as the length uniquely identifies
6093      the remaining cases.  */
6094   if (get_attr_length (insn) == 8)
6095     return \".CALL\\tARGW0=GR\;{bl|b,l} $$dyncall,%%r31\;copy %%r31,%%r2\";
6096
6097   /* Long millicode call, but we are not generating PIC or portable runtime
6098      code.  */
6099   if (get_attr_length (insn) == 12)
6100     return \".CALL\\tARGW0=GR\;ldil L%%$$dyncall,%%r2\;ble R%%$$dyncall(%%sr4,%%r2)\;copy %%r31,%%r2\";
6101
6102   /* Long millicode call for portable runtime.  */
6103   if (get_attr_length (insn) == 20)
6104     return \"ldil L%%$$dyncall,%%r31\;ldo R%%$$dyncall(%%r31),%%r31\;blr %%r0,%%r2\;bv,n %%r0(%%r31)\;nop\";
6105
6106   /* If we're generating PIC code.  */
6107   xoperands[0] = operands[0];
6108   if (TARGET_SOM || ! TARGET_GAS)
6109     xoperands[1] = gen_label_rtx ();
6110   output_asm_insn (\"{bl|b,l} .+8,%%r1\", xoperands);
6111   if (TARGET_SOM || ! TARGET_GAS)
6112     {
6113       output_asm_insn (\"addil L%%$$dyncall-%1,%%r1\", xoperands);
6114       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, \"L\",
6115                                  CODE_LABEL_NUMBER (xoperands[1]));
6116       output_asm_insn (\"ldo R%%$$dyncall-%1(%%r1),%%r1\", xoperands);
6117     }
6118   else
6119     {
6120       output_asm_insn (\"addil L%%$$dyncall-$PIC_pcrel$0+4,%%r1\", xoperands);
6121       output_asm_insn (\"ldo R%%$$dyncall-$PIC_pcrel$0+8(%%r1),%%r1\",
6122                        xoperands);
6123     }
6124   output_asm_insn (\"blr %%r0,%%r2\", xoperands);
6125   output_asm_insn (\"bv,n %%r0(%%r1)\\n\\tnop\", xoperands);
6126   return \"\";
6127 }"
6128   [(set_attr "type" "dyncall")
6129    (set (attr "length")
6130      (cond [
6131 ;; First FAST_INDIRECT_CALLS
6132             (ne (symbol_ref "TARGET_FAST_INDIRECT_CALLS")
6133                 (const_int 0))
6134             (const_int 8)
6135
6136 ;; Target (or stub) within reach
6137             (and (lt (plus (symbol_ref "total_code_bytes") (pc))
6138                      (const_int 240000))
6139                  (eq (symbol_ref "TARGET_PORTABLE_RUNTIME")
6140                      (const_int 0)))
6141             (const_int 8)
6142
6143 ;; Out of reach PIC
6144             (ne (symbol_ref "flag_pic")
6145                 (const_int 0))
6146             (const_int 24)
6147
6148 ;; Out of reach PORTABLE_RUNTIME
6149             (ne (symbol_ref "TARGET_PORTABLE_RUNTIME")
6150                 (const_int 0))
6151             (const_int 20)]
6152
6153 ;; Out of reach, can use ble
6154           (const_int 12)))])
6155
6156 (define_expand "call_value"
6157   [(parallel [(set (match_operand 0 "" "")
6158                    (call (match_operand:SI 1 "" "")
6159                          (match_operand 2 "" "")))
6160               (clobber (reg:SI 2))])]
6161   ""
6162   "
6163 {
6164   rtx op;
6165   rtx call_insn;
6166
6167   if (TARGET_PORTABLE_RUNTIME)
6168     op = force_reg (word_mode, XEXP (operands[1], 0));
6169   else
6170     op = XEXP (operands[1], 0);
6171
6172   if (TARGET_64BIT)
6173     emit_move_insn (arg_pointer_rtx,
6174                     gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
6175                                   GEN_INT (64)));
6176
6177   /* Use two different patterns for calls to explicitly named functions
6178      and calls through function pointers.  This is necessary as these two
6179      types of calls use different calling conventions, and CSE might try
6180      to change the named call into an indirect call in some cases (using
6181      two patterns keeps CSE from performing this optimization).  */
6182   if (GET_CODE (op) == SYMBOL_REF)
6183     call_insn = emit_call_insn (gen_call_value_internal_symref (operands[0],
6184                                                                 op,
6185                                                                 operands[2]));
6186   else if (TARGET_64BIT)
6187     {
6188       rtx tmpreg = force_reg (word_mode, op);
6189       call_insn
6190         = emit_call_insn (gen_call_value_internal_reg_64bit (operands[0],
6191                                                              tmpreg,
6192                                                              operands[2]));
6193     }
6194   else
6195     {
6196       rtx tmpreg = gen_rtx_REG (word_mode, 22);
6197       emit_move_insn (tmpreg, force_reg (word_mode, op));
6198       call_insn = emit_call_insn (gen_call_value_internal_reg (operands[0],
6199                                                                operands[2]));
6200     }
6201   if (flag_pic)
6202     {
6203       use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), pic_offset_table_rtx);
6204       if (TARGET_64BIT)
6205         use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), arg_pointer_rtx);
6206
6207       /* After each call we must restore the PIC register, even if it
6208          doesn't appear to be used.  */
6209       emit_move_insn (pic_offset_table_rtx, hppa_pic_save_rtx ());
6210     }
6211   DONE;
6212 }")
6213
6214 (define_insn "call_value_internal_symref"
6215   [(set (match_operand 0 "" "=rf")
6216         (call (mem:SI (match_operand 1 "call_operand_address" ""))
6217               (match_operand 2 "" "i")))
6218    (clobber (reg:SI 2))
6219    (use (const_int 0))]
6220   ;;- Don't use operand 1 for most machines.
6221   "! TARGET_PORTABLE_RUNTIME"
6222   "*
6223 {
6224   output_arg_descriptor (insn);
6225   return output_call (insn, operands[1], 0);
6226 }"
6227   [(set_attr "type" "call")
6228    (set (attr "length")
6229 ;;       If we're sure that we can either reach the target or that the
6230 ;;       linker can use a long-branch stub, then the length is at most
6231 ;;       8 bytes.
6232 ;;
6233 ;;       For long-calls the length will be at most 68 bytes (non-pic)
6234 ;;       or 84 bytes (pic).  */
6235 ;;       Else we have to use a long-call;
6236       (if_then_else (lt (plus (symbol_ref "total_code_bytes") (pc))
6237                         (const_int 240000))
6238                     (const_int 8)
6239                     (if_then_else (eq (symbol_ref "flag_pic")
6240                                       (const_int 0))
6241                                   (const_int 68)
6242                                   (const_int 84))))])
6243
6244 (define_insn "call_value_internal_reg_64bit"
6245   [(set (match_operand 0 "" "=rf")
6246          (call (mem:SI (match_operand:DI 1 "register_operand" "r"))
6247                (match_operand 2 "" "i")))
6248    (clobber (reg:SI 2))
6249    (use (const_int 1))]
6250   "TARGET_64BIT"
6251   "*
6252 {
6253   /* ??? Needs more work.  Length computation, split into multiple insns,
6254      do not use %r22 directly, expose delay slot.  */
6255   return \"ldd 16(%1),%%r2\;ldd 24(%1),%%r27\;bve,l (%%r2),%%r2\;nop\";
6256 }"
6257   [(set_attr "type" "dyncall")
6258    (set (attr "length") (const_int 16))])
6259
6260 (define_insn "call_value_internal_reg"
6261   [(set (match_operand 0 "" "=rf")
6262         (call (mem:SI (reg:SI 22))
6263               (match_operand 1 "" "i")))
6264    (clobber (reg:SI 2))
6265    (use (const_int 1))]
6266   ""
6267   "*
6268 {
6269   rtx xoperands[2];
6270
6271   /* First the special case for kernels, level 0 systems, etc.  */
6272   if (TARGET_FAST_INDIRECT_CALLS)
6273     return \"ble 0(%%sr4,%%r22)\;copy %%r31,%%r2\";
6274
6275   /* Now the normal case -- we can reach $$dyncall directly or
6276      we're sure that we can get there via a long-branch stub. 
6277
6278      No need to check target flags as the length uniquely identifies
6279      the remaining cases.  */
6280   if (get_attr_length (insn) == 8)
6281     return \".CALL\\tARGW0=GR\;{bl|b,l} $$dyncall,%%r31\;copy %%r31,%%r2\";
6282
6283   /* Long millicode call, but we are not generating PIC or portable runtime
6284      code.  */
6285   if (get_attr_length (insn) == 12)
6286     return \".CALL\\tARGW0=GR\;ldil L%%$$dyncall,%%r2\;ble R%%$$dyncall(%%sr4,%%r2)\;copy %%r31,%%r2\";
6287
6288   /* Long millicode call for portable runtime.  */
6289   if (get_attr_length (insn) == 20)
6290     return \"ldil L%%$$dyncall,%%r31\;ldo R%%$$dyncall(%%r31),%%r31\;blr %%r0,%%r2\;bv,n %%r0(%%r31)\;nop\";
6291
6292   /* If we're generating PIC code.  */
6293   xoperands[0] = operands[1];
6294   if (TARGET_SOM || ! TARGET_GAS)
6295     xoperands[1] = gen_label_rtx ();
6296   output_asm_insn (\"{bl|b,l} .+8,%%r1\", xoperands);
6297   if (TARGET_SOM || ! TARGET_GAS)
6298     {
6299       output_asm_insn (\"addil L%%$$dyncall-%1,%%r1\", xoperands);
6300       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, \"L\",
6301                                  CODE_LABEL_NUMBER (xoperands[1]));
6302       output_asm_insn (\"ldo R%%$$dyncall-%1(%%r1),%%r1\", xoperands);
6303     }
6304   else
6305     {
6306       output_asm_insn (\"addil L%%$$dyncall-$PIC_pcrel$0+4,%%r1\", xoperands);
6307       output_asm_insn (\"ldo R%%$$dyncall-$PIC_pcrel$0+8(%%r1),%%r1\",
6308                        xoperands);
6309     }
6310   output_asm_insn (\"blr %%r0,%%r2\", xoperands);
6311   output_asm_insn (\"bv,n %%r0(%%r1)\\n\\tnop\", xoperands);
6312   return \"\";
6313 }"
6314   [(set_attr "type" "dyncall")
6315    (set (attr "length")
6316      (cond [
6317 ;; First FAST_INDIRECT_CALLS
6318             (ne (symbol_ref "TARGET_FAST_INDIRECT_CALLS")
6319                 (const_int 0))
6320             (const_int 8)
6321
6322 ;; Target (or stub) within reach
6323             (and (lt (plus (symbol_ref "total_code_bytes") (pc))
6324                      (const_int 240000))
6325                  (eq (symbol_ref "TARGET_PORTABLE_RUNTIME")
6326                      (const_int 0)))
6327             (const_int 8)
6328
6329 ;; Out of reach PIC
6330             (ne (symbol_ref "flag_pic")
6331                 (const_int 0))
6332             (const_int 24)
6333
6334 ;; Out of reach PORTABLE_RUNTIME
6335             (ne (symbol_ref "TARGET_PORTABLE_RUNTIME")
6336                 (const_int 0))
6337             (const_int 20)]
6338
6339 ;; Out of reach, can use ble
6340           (const_int 12)))])
6341
6342 ;; Call subroutine returning any type.
6343
6344 (define_expand "untyped_call"
6345   [(parallel [(call (match_operand 0 "" "")
6346                     (const_int 0))
6347               (match_operand 1 "" "")
6348               (match_operand 2 "" "")])]
6349   ""
6350   "
6351 {
6352   int i;
6353
6354   emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, const0_rtx));
6355
6356   for (i = 0; i < XVECLEN (operands[2], 0); i++)
6357     {
6358       rtx set = XVECEXP (operands[2], 0, i);
6359       emit_move_insn (SET_DEST (set), SET_SRC (set));
6360     }
6361
6362   /* The optimizer does not know that the call sets the function value
6363      registers we stored in the result block.  We avoid problems by
6364      claiming that all hard registers are used and clobbered at this
6365      point.  */
6366   emit_insn (gen_blockage ());
6367
6368   DONE;
6369 }")
6370
6371 (define_expand "sibcall"
6372   [(parallel [(call (match_operand:SI 0 "" "")
6373                     (match_operand 1 "" ""))
6374               (clobber (reg:SI 0))])]
6375   "! TARGET_PORTABLE_RUNTIME"
6376   "
6377 {
6378   rtx op;
6379   rtx call_insn;
6380
6381   op = XEXP (operands[0], 0);
6382
6383   /* We do not allow indirect sibling calls.  */
6384   call_insn = emit_call_insn (gen_sibcall_internal_symref (op, operands[1]));
6385
6386   if (flag_pic)
6387     {
6388       use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), pic_offset_table_rtx);
6389
6390       /* After each call we must restore the PIC register, even if it
6391          doesn't appear to be used.  */
6392       emit_move_insn (pic_offset_table_rtx, hppa_pic_save_rtx ());
6393     }
6394   DONE;
6395 }")
6396
6397 (define_insn "sibcall_internal_symref"
6398   [(call (mem:SI (match_operand 0 "call_operand_address" ""))
6399          (match_operand 1 "" "i"))
6400    (clobber (reg:SI 0))
6401    (use (reg:SI 2))
6402    (use (const_int 0))]
6403   "! TARGET_PORTABLE_RUNTIME"
6404   "*
6405 {
6406   output_arg_descriptor (insn);
6407   return output_call (insn, operands[0], 1);
6408 }"
6409   [(set_attr "type" "call")
6410    (set (attr "length")
6411 ;;       If we're sure that we can either reach the target or that the
6412 ;;       linker can use a long-branch stub, then the length is at most
6413 ;;       8 bytes.
6414 ;;
6415 ;;       For long-calls the length will be at most 68 bytes (non-pic)
6416 ;;       or 84 bytes (pic).  */
6417 ;;       Else we have to use a long-call;
6418       (if_then_else (lt (plus (symbol_ref "total_code_bytes") (pc))
6419                         (const_int 240000))
6420                     (const_int 8)
6421                     (if_then_else (eq (symbol_ref "flag_pic")
6422                                       (const_int 0))
6423                                   (const_int 68)
6424                                   (const_int 84))))])
6425
6426 (define_expand "sibcall_value"
6427   [(parallel [(set (match_operand 0 "" "")
6428                    (call (match_operand:SI 1 "" "")
6429                          (match_operand 2 "" "")))
6430               (clobber (reg:SI 0))])]
6431   "! TARGET_PORTABLE_RUNTIME"
6432   "
6433 {
6434   rtx op;
6435   rtx call_insn;
6436
6437   op = XEXP (operands[1], 0);
6438
6439   /* We do not allow indirect sibling calls.  */
6440   call_insn = emit_call_insn (gen_sibcall_value_internal_symref (operands[0],
6441                                                                  op,
6442                                                                  operands[2]));
6443   if (flag_pic)
6444     {
6445       use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), pic_offset_table_rtx);
6446
6447       /* After each call we must restore the PIC register, even if it
6448          doesn't appear to be used.  */
6449       emit_move_insn (pic_offset_table_rtx, hppa_pic_save_rtx ());
6450     }
6451   DONE;
6452 }")
6453
6454 (define_insn "sibcall_value_internal_symref"
6455   [(set (match_operand 0 "" "=rf")
6456         (call (mem:SI (match_operand 1 "call_operand_address" ""))
6457               (match_operand 2 "" "i")))
6458    (clobber (reg:SI 0))
6459    (use (reg:SI 2))
6460    (use (const_int 0))]
6461   ;;- Don't use operand 1 for most machines.
6462   "! TARGET_PORTABLE_RUNTIME"
6463   "*
6464 {
6465   output_arg_descriptor (insn);
6466   return output_call (insn, operands[1], 1);
6467 }"
6468   [(set_attr "type" "call")
6469    (set (attr "length")
6470 ;;       If we're sure that we can either reach the target or that the
6471 ;;       linker can use a long-branch stub, then the length is at most
6472 ;;       8 bytes.
6473 ;;
6474 ;;       For long-calls the length will be at most 68 bytes (non-pic)
6475 ;;       or 84 bytes (pic).  */
6476 ;;       Else we have to use a long-call;
6477       (if_then_else (lt (plus (symbol_ref "total_code_bytes") (pc))
6478                         (const_int 240000))
6479                     (const_int 8)
6480                     (if_then_else (eq (symbol_ref "flag_pic")
6481                                       (const_int 0))
6482                                   (const_int 68)
6483                                   (const_int 84))))])
6484
6485 (define_insn "nop"
6486   [(const_int 0)]
6487   ""
6488   "nop"
6489   [(set_attr "type" "move")
6490    (set_attr "length" "4")])
6491
6492 ;; These are just placeholders so we know where branch tables
6493 ;; begin and end.
6494 (define_insn "begin_brtab"
6495   [(const_int 1)]
6496   ""
6497   "*
6498 {
6499   /* Only GAS actually supports this pseudo-op.  */
6500   if (TARGET_GAS)
6501     return \".begin_brtab\";
6502   else
6503     return \"\";
6504 }"
6505   [(set_attr "type" "move")
6506    (set_attr "length" "0")])
6507
6508 (define_insn "end_brtab"
6509   [(const_int 2)]
6510   ""
6511   "*
6512 {
6513   /* Only GAS actually supports this pseudo-op.  */
6514   if (TARGET_GAS)
6515     return \".end_brtab\";
6516   else
6517     return \"\";
6518 }"
6519   [(set_attr "type" "move")
6520    (set_attr "length" "0")])
6521
6522 ;;; EH does longjmp's from and within the data section.  Thus,
6523 ;;; an interspace branch is required for the longjmp implementation.
6524 ;;; Registers r1 and r2 are used as scratch registers for the jump.
6525 (define_expand "interspace_jump"
6526   [(parallel
6527      [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
6528       (clobber (match_dup 1))])]
6529   ""
6530   "
6531 {
6532   operands[1] = gen_rtx_REG (word_mode, 2);
6533 }")
6534
6535 (define_insn ""
6536   [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
6537   (clobber (reg:SI 2))]
6538   "!TARGET_64BIT"
6539   "ldsid (%%sr0,%0),%%r2\; mtsp %%r2,%%sr0\; be%* 0(%%sr0,%0)"
6540    [(set_attr "type" "branch")
6541     (set_attr "length" "12")])
6542
6543 (define_insn ""
6544   [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
6545   (clobber (reg:DI 2))]
6546   "TARGET_64BIT"
6547   "ldsid (%%sr0,%0),%%r2\; mtsp %%r2,%%sr0\; be%* 0(%%sr0,%0)"
6548    [(set_attr "type" "branch")
6549     (set_attr "length" "12")])
6550
6551 (define_expand "builtin_longjmp"
6552   [(unspec_volatile [(match_operand 0 "register_operand" "r")] 3)]
6553   ""
6554   "
6555 {
6556   /* The elements of the buffer are, in order:  */
6557   rtx fp = gen_rtx_MEM (Pmode, operands[0]);
6558   rtx lab = gen_rtx_MEM (Pmode, plus_constant (operands[0],
6559                          POINTER_SIZE / BITS_PER_UNIT));
6560   rtx stack = gen_rtx_MEM (Pmode, plus_constant (operands[0],
6561                            (POINTER_SIZE * 2) / BITS_PER_UNIT));
6562   rtx pv = gen_rtx_REG (Pmode, 1);
6563
6564   /* This bit is the same as expand_builtin_longjmp.  */
6565   emit_move_insn (hard_frame_pointer_rtx, fp);
6566   emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX);
6567   emit_insn (gen_rtx_USE (VOIDmode, hard_frame_pointer_rtx));
6568   emit_insn (gen_rtx_USE (VOIDmode, stack_pointer_rtx));
6569
6570   /* Load the label we are jumping through into r1 so that we know
6571      where to look for it when we get back to setjmp's function for
6572      restoring the gp.  */
6573   emit_move_insn (pv, lab);
6574
6575   /* Prevent the insns above from being scheduled into the delay slot
6576      of the interspace jump because the space register could change.  */
6577   emit_insn (gen_blockage ());
6578
6579   emit_jump_insn (gen_interspace_jump (pv));
6580   emit_barrier ();
6581   DONE;
6582 }")
6583
6584 ;;; Hope this is only within a function...
6585 (define_insn "indirect_jump"
6586   [(set (pc) (match_operand 0 "register_operand" "r"))]
6587   "GET_MODE (operands[0]) == word_mode"
6588   "bv%* %%r0(%0)"
6589   [(set_attr "type" "branch")
6590    (set_attr "length" "4")])
6591
6592 (define_expand "extzv"
6593   [(set (match_operand 0 "register_operand" "")
6594         (zero_extract (match_operand 1 "register_operand" "")
6595                       (match_operand 2 "uint32_operand" "")
6596                       (match_operand 3 "uint32_operand" "")))]
6597   ""
6598   "
6599 {
6600   if (TARGET_64BIT)
6601     emit_insn (gen_extzv_64 (operands[0], operands[1],
6602                              operands[2], operands[3]));
6603   else
6604     emit_insn (gen_extzv_32 (operands[0], operands[1],
6605                              operands[2], operands[3]));
6606   DONE;
6607 }")
6608
6609 (define_insn "extzv_32"
6610   [(set (match_operand:SI 0 "register_operand" "=r")
6611         (zero_extract:SI (match_operand:SI 1 "register_operand" "r")
6612                          (match_operand:SI 2 "uint5_operand" "")
6613                          (match_operand:SI 3 "uint5_operand" "")))]
6614   ""
6615   "{extru|extrw,u} %1,%3+%2-1,%2,%0"
6616   [(set_attr "type" "shift")
6617    (set_attr "length" "4")])
6618
6619 (define_insn ""
6620   [(set (match_operand:SI 0 "register_operand" "=r")
6621         (zero_extract:SI (match_operand:SI 1 "register_operand" "r")
6622                          (const_int 1)
6623                          (match_operand:SI 2 "register_operand" "q")))]
6624   ""
6625   "{vextru %1,1,%0|extrw,u %1,%%sar,1,%0}"
6626   [(set_attr "type" "shift")
6627    (set_attr "length" "4")])
6628
6629 (define_insn "extzv_64"
6630   [(set (match_operand:DI 0 "register_operand" "=r")
6631         (zero_extract:DI (match_operand:DI 1 "register_operand" "r")
6632                          (match_operand:DI 2 "uint32_operand" "")
6633                          (match_operand:DI 3 "uint32_operand" "")))]
6634   "TARGET_64BIT"
6635   "extrd,u %1,%3+%2-1,%2,%0"
6636   [(set_attr "type" "shift")
6637    (set_attr "length" "4")])
6638
6639 (define_insn ""
6640   [(set (match_operand:DI 0 "register_operand" "=r")
6641         (zero_extract:DI (match_operand:DI 1 "register_operand" "r")
6642                          (const_int 1)
6643                          (match_operand:DI 2 "register_operand" "q")))]
6644   "TARGET_64BIT"
6645   "extrd,u %1,%%sar,1,%0"
6646   [(set_attr "type" "shift")
6647    (set_attr "length" "4")])
6648
6649 (define_expand "extv"
6650   [(set (match_operand 0 "register_operand" "")
6651         (sign_extract (match_operand 1 "register_operand" "")
6652                       (match_operand 2 "uint32_operand" "")
6653                       (match_operand 3 "uint32_operand" "")))]
6654   ""
6655   "
6656 {
6657   if (TARGET_64BIT)
6658     emit_insn (gen_extv_64 (operands[0], operands[1],
6659                             operands[2], operands[3]));
6660   else
6661     {
6662       if (! uint5_operand (operands[2], SImode)
6663           || ! uint5_operand (operands[3], SImode))
6664         FAIL;
6665       emit_insn (gen_extv_32 (operands[0], operands[1],
6666                               operands[2], operands[3]));
6667     }
6668   DONE;
6669 }")
6670
6671 (define_insn "extv_32"
6672   [(set (match_operand:SI 0 "register_operand" "=r")
6673         (sign_extract:SI (match_operand:SI 1 "register_operand" "r")
6674                          (match_operand:SI 2 "uint5_operand" "")
6675                          (match_operand:SI 3 "uint5_operand" "")))]
6676   ""
6677   "{extrs|extrw,s} %1,%3+%2-1,%2,%0"
6678   [(set_attr "type" "shift")
6679    (set_attr "length" "4")])
6680
6681 (define_insn ""
6682   [(set (match_operand:SI 0 "register_operand" "=r")
6683         (sign_extract:SI (match_operand:SI 1 "register_operand" "r")
6684                          (const_int 1)
6685                          (match_operand:SI 2 "register_operand" "q")))]
6686   "!TARGET_64BIT"
6687   "{vextrs %1,1,%0|extrw,s %1,%%sar,1,%0}"
6688   [(set_attr "type" "shift")
6689    (set_attr "length" "4")])
6690
6691 (define_insn "extv_64"
6692   [(set (match_operand:DI 0 "register_operand" "=r")
6693         (sign_extract:DI (match_operand:DI 1 "register_operand" "r")
6694                          (match_operand:DI 2 "uint32_operand" "")
6695                          (match_operand:DI 3 "uint32_operand" "")))]
6696   "TARGET_64BIT"
6697   "extrd,s %1,%3+%2-1,%2,%0"
6698   [(set_attr "type" "shift")
6699    (set_attr "length" "4")])
6700
6701 (define_insn ""
6702   [(set (match_operand:DI 0 "register_operand" "=r")
6703         (sign_extract:DI (match_operand:DI 1 "register_operand" "r")
6704                          (const_int 1)
6705                          (match_operand:DI 2 "register_operand" "q")))]
6706   "TARGET_64BIT"
6707   "extrd,s %1,%%sar,1,%0"
6708   [(set_attr "type" "shift")
6709    (set_attr "length" "4")])
6710
6711 ;; Only specify the mode operands 0, the rest are assumed to be word_mode.
6712 (define_expand "insv"
6713   [(set (zero_extract (match_operand 0 "register_operand" "")
6714                       (match_operand 1 "uint32_operand" "")
6715                       (match_operand 2 "uint32_operand" ""))
6716         (match_operand 3 "arith5_operand" ""))]
6717   ""
6718   "
6719 {
6720   if (TARGET_64BIT)
6721     emit_insn (gen_insv_64 (operands[0], operands[1],
6722                             operands[2], operands[3]));
6723   else
6724     emit_insn (gen_insv_32 (operands[0], operands[1],
6725                             operands[2], operands[3]));
6726   DONE;
6727 }")
6728
6729 (define_insn "insv_32"
6730   [(set (zero_extract:SI (match_operand:SI 0 "register_operand" "+r,r")
6731                          (match_operand:SI 1 "uint5_operand" "")
6732                          (match_operand:SI 2 "uint5_operand" ""))
6733         (match_operand:SI 3 "arith5_operand" "r,L"))]
6734   ""
6735   "@
6736    {dep|depw} %3,%2+%1-1,%1,%0
6737    {depi|depwi} %3,%2+%1-1,%1,%0"
6738   [(set_attr "type" "shift,shift")
6739    (set_attr "length" "4,4")])
6740
6741 ;; Optimize insertion of const_int values of type 1...1xxxx.
6742 (define_insn ""
6743   [(set (zero_extract:SI (match_operand:SI 0 "register_operand" "+r")
6744                          (match_operand:SI 1 "uint5_operand" "")
6745                          (match_operand:SI 2 "uint5_operand" ""))
6746         (match_operand:SI 3 "const_int_operand" ""))]
6747   "(INTVAL (operands[3]) & 0x10) != 0 &&
6748    (~INTVAL (operands[3]) & ((1L << INTVAL (operands[1])) - 1) & ~0xf) == 0"
6749   "*
6750 {
6751   operands[3] = GEN_INT ((INTVAL (operands[3]) & 0xf) - 0x10);
6752   return \"{depi|depwi} %3,%2+%1-1,%1,%0\";
6753 }"
6754   [(set_attr "type" "shift")
6755    (set_attr "length" "4")])
6756
6757 (define_insn "insv_64"
6758   [(set (zero_extract:DI (match_operand:DI 0 "register_operand" "+r,r")
6759                          (match_operand:DI 1 "uint32_operand" "")
6760                          (match_operand:DI 2 "uint32_operand" ""))
6761         (match_operand:DI 3 "arith32_operand" "r,L"))]
6762   "TARGET_64BIT"
6763   "@
6764    depd %3,%2+%1-1,%1,%0
6765    depdi %3,%2+%1-1,%1,%0"
6766   [(set_attr "type" "shift,shift")
6767    (set_attr "length" "4,4")])
6768
6769 ;; Optimize insertion of const_int values of type 1...1xxxx.
6770 (define_insn ""
6771   [(set (zero_extract:DI (match_operand:DI 0 "register_operand" "+r")
6772                          (match_operand:DI 1 "uint32_operand" "")
6773                          (match_operand:DI 2 "uint32_operand" ""))
6774         (match_operand:DI 3 "const_int_operand" ""))]
6775   "(INTVAL (operands[3]) & 0x10) != 0
6776    && TARGET_64BIT
6777    && (~INTVAL (operands[3]) & ((1L << INTVAL (operands[1])) - 1) & ~0xf) == 0"
6778   "*
6779 {
6780   operands[3] = GEN_INT ((INTVAL (operands[3]) & 0xf) - 0x10);
6781   return \"depdi %3,%2+%1-1,%1,%0\";
6782 }"
6783   [(set_attr "type" "shift")
6784    (set_attr "length" "4")])
6785
6786 (define_insn ""
6787   [(set (match_operand:DI 0 "register_operand" "=r")
6788         (ashift:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
6789                    (const_int 32)))]
6790   "TARGET_64BIT"
6791   "depd,z %1,31,32,%0"
6792   [(set_attr "type" "shift")
6793    (set_attr "length" "4")])
6794
6795 ;; This insn is used for some loop tests, typically loops reversed when
6796 ;; strength reduction is used.  It is actually created when the instruction
6797 ;; combination phase combines the special loop test.  Since this insn
6798 ;; is both a jump insn and has an output, it must deal with its own
6799 ;; reloads, hence the `m' constraints.  The `!' constraints direct reload
6800 ;; to not choose the register alternatives in the event a reload is needed.
6801 (define_insn "decrement_and_branch_until_zero"
6802   [(set (pc)
6803         (if_then_else
6804           (match_operator 2 "comparison_operator"
6805            [(plus:SI
6806               (match_operand:SI 0 "reg_before_reload_operand" "+!r,!*f,*m")
6807               (match_operand:SI 1 "int5_operand" "L,L,L"))
6808             (const_int 0)])
6809           (label_ref (match_operand 3 "" ""))
6810           (pc)))
6811    (set (match_dup 0)
6812         (plus:SI (match_dup 0) (match_dup 1)))
6813    (clobber (match_scratch:SI 4 "=X,r,r"))]
6814   ""
6815   "* return output_dbra (operands, insn, which_alternative); "
6816 ;; Do not expect to understand this the first time through.
6817 [(set_attr "type" "cbranch,multi,multi")
6818  (set (attr "length")
6819       (if_then_else (eq_attr "alternative" "0")
6820 ;; Loop counter in register case
6821 ;; Short branch has length of 4
6822 ;; Long branch has length of 8
6823         (if_then_else (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
6824                       (const_int 8184))
6825            (const_int 4)
6826            (const_int 8))
6827
6828 ;; Loop counter in FP reg case.
6829 ;; Extra goo to deal with additional reload insns.
6830         (if_then_else (eq_attr "alternative" "1")
6831           (if_then_else (lt (match_dup 3) (pc))
6832             (if_then_else
6833               (lt (abs (minus (match_dup 3) (plus (pc) (const_int 24))))
6834                   (const_int 8184))
6835               (const_int 24)
6836               (const_int 28))
6837             (if_then_else
6838               (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
6839                   (const_int 8184))
6840               (const_int 24)
6841               (const_int 28)))
6842 ;; Loop counter in memory case.
6843 ;; Extra goo to deal with additional reload insns.
6844         (if_then_else (lt (match_dup 3) (pc))
6845           (if_then_else
6846             (lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
6847                 (const_int 8184))
6848             (const_int 12)
6849             (const_int 16))
6850           (if_then_else
6851             (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
6852                 (const_int 8184))
6853             (const_int 12)
6854             (const_int 16))))))])
6855
6856 (define_insn ""
6857   [(set (pc)
6858         (if_then_else
6859           (match_operator 2 "movb_comparison_operator"
6860            [(match_operand:SI 1 "register_operand" "r,r,r,r") (const_int 0)])
6861           (label_ref (match_operand 3 "" ""))
6862           (pc)))
6863    (set (match_operand:SI 0 "reg_before_reload_operand" "=!r,!*f,*m,!*q")
6864         (match_dup 1))]
6865   ""
6866 "* return output_movb (operands, insn, which_alternative, 0); "
6867 ;; Do not expect to understand this the first time through.
6868 [(set_attr "type" "cbranch,multi,multi,multi")
6869  (set (attr "length")
6870       (if_then_else (eq_attr "alternative" "0")
6871 ;; Loop counter in register case
6872 ;; Short branch has length of 4
6873 ;; Long branch has length of 8
6874         (if_then_else (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
6875                       (const_int 8184))
6876            (const_int 4)
6877            (const_int 8))
6878
6879 ;; Loop counter in FP reg case.
6880 ;; Extra goo to deal with additional reload insns.
6881         (if_then_else (eq_attr "alternative" "1")
6882           (if_then_else (lt (match_dup 3) (pc))
6883             (if_then_else
6884               (lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
6885                   (const_int 8184))
6886               (const_int 12)
6887               (const_int 16))
6888             (if_then_else
6889               (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
6890                   (const_int 8184))
6891               (const_int 12)
6892               (const_int 16)))
6893 ;; Loop counter in memory or sar case.
6894 ;; Extra goo to deal with additional reload insns.
6895         (if_then_else
6896           (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
6897               (const_int 8184))
6898           (const_int 8)
6899           (const_int 12)))))])
6900
6901 ;; Handle negated branch.
6902 (define_insn ""
6903   [(set (pc)
6904         (if_then_else
6905           (match_operator 2 "movb_comparison_operator"
6906            [(match_operand:SI 1 "register_operand" "r,r,r,r") (const_int 0)])
6907           (pc)
6908           (label_ref (match_operand 3 "" ""))))
6909    (set (match_operand:SI 0 "reg_before_reload_operand" "=!r,!*f,*m,!*q")
6910         (match_dup 1))]
6911   ""
6912 "* return output_movb (operands, insn, which_alternative, 1); "
6913 ;; Do not expect to understand this the first time through.
6914 [(set_attr "type" "cbranch,multi,multi,multi")
6915  (set (attr "length")
6916       (if_then_else (eq_attr "alternative" "0")
6917 ;; Loop counter in register case
6918 ;; Short branch has length of 4
6919 ;; Long branch has length of 8
6920         (if_then_else (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
6921                       (const_int 8184))
6922            (const_int 4)
6923            (const_int 8))
6924
6925 ;; Loop counter in FP reg case.
6926 ;; Extra goo to deal with additional reload insns.
6927         (if_then_else (eq_attr "alternative" "1")
6928           (if_then_else (lt (match_dup 3) (pc))
6929             (if_then_else
6930               (lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
6931                   (const_int 8184))
6932               (const_int 12)
6933               (const_int 16))
6934             (if_then_else
6935               (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
6936                   (const_int 8184))
6937               (const_int 12)
6938               (const_int 16)))
6939 ;; Loop counter in memory or SAR case.
6940 ;; Extra goo to deal with additional reload insns.
6941         (if_then_else
6942           (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
6943               (const_int 8184))
6944           (const_int 8)
6945           (const_int 12)))))])
6946
6947 (define_insn ""
6948   [(set (pc) (label_ref (match_operand 3 "" "" )))
6949    (set (match_operand:SI 0 "ireg_operand" "=r")
6950         (plus:SI (match_operand:SI 1 "ireg_operand" "r")
6951                  (match_operand:SI 2 "ireg_or_int5_operand" "rL")))]
6952   "(reload_completed && operands[0] == operands[1]) || operands[0] == operands[2]"
6953   "*
6954 {
6955   return output_parallel_addb (operands, get_attr_length (insn));
6956 }"
6957   [(set_attr "type" "parallel_branch")
6958    (set (attr "length")
6959     (if_then_else (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
6960                       (const_int 8184))
6961            (const_int 4)
6962            (const_int 8)))])
6963
6964 (define_insn ""
6965   [(set (pc) (label_ref (match_operand 2 "" "" )))
6966    (set (match_operand:SF 0 "ireg_operand" "=r")
6967         (match_operand:SF 1 "ireg_or_int5_operand" "rL"))]
6968   "reload_completed"
6969   "*
6970 {
6971   return output_parallel_movb (operands, get_attr_length (insn));
6972 }"
6973   [(set_attr "type" "parallel_branch")
6974    (set (attr "length")
6975     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
6976                       (const_int 8184))
6977            (const_int 4)
6978            (const_int 8)))])
6979
6980 (define_insn ""
6981   [(set (pc) (label_ref (match_operand 2 "" "" )))
6982    (set (match_operand:SI 0 "ireg_operand" "=r")
6983         (match_operand:SI 1 "ireg_or_int5_operand" "rL"))]
6984   "reload_completed"
6985   "*
6986 {
6987   return output_parallel_movb (operands, get_attr_length (insn));
6988 }"
6989   [(set_attr "type" "parallel_branch")
6990    (set (attr "length")
6991     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
6992                       (const_int 8184))
6993            (const_int 4)
6994            (const_int 8)))])
6995
6996 (define_insn ""
6997   [(set (pc) (label_ref (match_operand 2 "" "" )))
6998    (set (match_operand:HI 0 "ireg_operand" "=r")
6999         (match_operand:HI 1 "ireg_or_int5_operand" "rL"))]
7000   "reload_completed"
7001   "*
7002 {
7003   return output_parallel_movb (operands, get_attr_length (insn));
7004 }"
7005   [(set_attr "type" "parallel_branch")
7006    (set (attr "length")
7007     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
7008                       (const_int 8184))
7009            (const_int 4)
7010            (const_int 8)))])
7011
7012 (define_insn ""
7013   [(set (pc) (label_ref (match_operand 2 "" "" )))
7014    (set (match_operand:QI 0 "ireg_operand" "=r")
7015         (match_operand:QI 1 "ireg_or_int5_operand" "rL"))]
7016   "reload_completed"
7017   "*
7018 {
7019   return output_parallel_movb (operands, get_attr_length (insn));
7020 }"
7021   [(set_attr "type" "parallel_branch")
7022    (set (attr "length")
7023     (if_then_else (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
7024                       (const_int 8184))
7025            (const_int 4)
7026            (const_int 8)))])
7027
7028 (define_insn ""
7029   [(set (match_operand 0 "register_operand" "=f")
7030         (mult (match_operand 1 "register_operand" "f")
7031               (match_operand 2 "register_operand" "f")))
7032    (set (match_operand 3 "register_operand" "+f")
7033         (plus (match_operand 4 "register_operand" "f")
7034               (match_operand 5 "register_operand" "f")))]
7035   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
7036    && reload_completed && fmpyaddoperands (operands)"
7037   "*
7038 {
7039   if (GET_MODE (operands[0]) == DFmode)
7040     {
7041       if (rtx_equal_p (operands[3], operands[5]))
7042         return \"fmpyadd,dbl %1,%2,%0,%4,%3\";
7043       else
7044         return \"fmpyadd,dbl %1,%2,%0,%5,%3\";
7045     }
7046   else
7047     {
7048       if (rtx_equal_p (operands[3], operands[5]))
7049         return \"fmpyadd,sgl %1,%2,%0,%4,%3\";
7050       else
7051         return \"fmpyadd,sgl %1,%2,%0,%5,%3\";
7052     }
7053 }"
7054   [(set_attr "type" "fpalu")
7055    (set_attr "length" "4")])
7056
7057 (define_insn ""
7058   [(set (match_operand 3 "register_operand" "+f")
7059         (plus (match_operand 4 "register_operand" "f")
7060               (match_operand 5 "register_operand" "f")))
7061    (set (match_operand 0 "register_operand" "=f")
7062         (mult (match_operand 1 "register_operand" "f")
7063               (match_operand 2 "register_operand" "f")))]
7064   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
7065    && reload_completed && fmpyaddoperands (operands)"
7066   "*
7067 {
7068   if (GET_MODE (operands[0]) == DFmode)
7069     {
7070       if (rtx_equal_p (operands[3], operands[5]))
7071         return \"fmpyadd,dbl %1,%2,%0,%4,%3\";
7072       else
7073         return \"fmpyadd,dbl %1,%2,%0,%5,%3\";
7074     }
7075   else
7076     {
7077       if (rtx_equal_p (operands[3], operands[5]))
7078         return \"fmpyadd,sgl %1,%2,%0,%4,%3\";
7079       else
7080         return \"fmpyadd,sgl %1,%2,%0,%5,%3\";
7081     }
7082 }"
7083   [(set_attr "type" "fpalu")
7084    (set_attr "length" "4")])
7085
7086 (define_insn ""
7087   [(set (match_operand 0 "register_operand" "=f")
7088         (mult (match_operand 1 "register_operand" "f")
7089               (match_operand 2 "register_operand" "f")))
7090    (set (match_operand 3 "register_operand" "+f")
7091         (minus (match_operand 4 "register_operand" "f")
7092                (match_operand 5 "register_operand" "f")))]
7093   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
7094    && reload_completed && fmpysuboperands (operands)"
7095   "*
7096 {
7097   if (GET_MODE (operands[0]) == DFmode)
7098     return \"fmpysub,dbl %1,%2,%0,%5,%3\";
7099   else
7100     return \"fmpysub,sgl %1,%2,%0,%5,%3\";
7101 }"
7102   [(set_attr "type" "fpalu")
7103    (set_attr "length" "4")])
7104
7105 (define_insn ""
7106   [(set (match_operand 3 "register_operand" "+f")
7107         (minus (match_operand 4 "register_operand" "f")
7108                (match_operand 5 "register_operand" "f")))
7109    (set (match_operand 0 "register_operand" "=f")
7110         (mult (match_operand 1 "register_operand" "f")
7111               (match_operand 2 "register_operand" "f")))]
7112   "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
7113    && reload_completed && fmpysuboperands (operands)"
7114   "*
7115 {
7116   if (GET_MODE (operands[0]) == DFmode)
7117     return \"fmpysub,dbl %1,%2,%0,%5,%3\";
7118   else
7119     return \"fmpysub,sgl %1,%2,%0,%5,%3\";
7120 }"
7121   [(set_attr "type" "fpalu")
7122    (set_attr "length" "4")])
7123
7124 ;; Clean up turds left by reload.
7125 (define_peephole
7126   [(set (match_operand 0 "reg_or_nonsymb_mem_operand" "")
7127         (match_operand 1 "register_operand" "fr"))
7128    (set (match_operand 2 "register_operand" "fr")
7129         (match_dup 0))]
7130   "! TARGET_SOFT_FLOAT
7131    && GET_CODE (operands[0]) == MEM
7132    && ! MEM_VOLATILE_P (operands[0])
7133    && GET_MODE (operands[0]) == GET_MODE (operands[1])
7134    && GET_MODE (operands[0]) == GET_MODE (operands[2])
7135    && GET_MODE (operands[0]) == DFmode
7136    && GET_CODE (operands[1]) == REG
7137    && GET_CODE (operands[2]) == REG
7138    && ! side_effects_p (XEXP (operands[0], 0))
7139    && REGNO_REG_CLASS (REGNO (operands[1]))
7140       == REGNO_REG_CLASS (REGNO (operands[2]))"
7141   "*
7142 {
7143   rtx xoperands[2];
7144
7145   if (FP_REG_P (operands[1]))
7146     output_asm_insn (output_fp_move_double (operands), operands);
7147   else
7148     output_asm_insn (output_move_double (operands), operands);
7149
7150   if (rtx_equal_p (operands[1], operands[2]))
7151     return \"\";
7152
7153   xoperands[0] = operands[2];
7154   xoperands[1] = operands[1];
7155       
7156   if (FP_REG_P (xoperands[1]))
7157     output_asm_insn (output_fp_move_double (xoperands), xoperands);
7158   else
7159     output_asm_insn (output_move_double (xoperands), xoperands);
7160
7161   return \"\";
7162 }")
7163
7164 (define_peephole
7165   [(set (match_operand 0 "register_operand" "fr")
7166         (match_operand 1 "reg_or_nonsymb_mem_operand" ""))
7167    (set (match_operand 2 "register_operand" "fr")
7168         (match_dup 1))]
7169   "! TARGET_SOFT_FLOAT
7170    && GET_CODE (operands[1]) == MEM
7171    && ! MEM_VOLATILE_P (operands[1])
7172    && GET_MODE (operands[0]) == GET_MODE (operands[1])
7173    && GET_MODE (operands[0]) == GET_MODE (operands[2])
7174    && GET_MODE (operands[0]) == DFmode
7175    && GET_CODE (operands[0]) == REG
7176    && GET_CODE (operands[2]) == REG
7177    && ! side_effects_p (XEXP (operands[1], 0))
7178    && REGNO_REG_CLASS (REGNO (operands[0]))
7179       == REGNO_REG_CLASS (REGNO (operands[2]))"
7180   "*
7181 {
7182   rtx xoperands[2];
7183
7184   if (FP_REG_P (operands[0]))
7185     output_asm_insn (output_fp_move_double (operands), operands);
7186   else
7187     output_asm_insn (output_move_double (operands), operands);
7188
7189   xoperands[0] = operands[2];
7190   xoperands[1] = operands[0];
7191       
7192   if (FP_REG_P (xoperands[1]))
7193     output_asm_insn (output_fp_move_double (xoperands), xoperands);
7194   else
7195     output_asm_insn (output_move_double (xoperands), xoperands);
7196
7197   return \"\";
7198 }")
7199
7200 ;; Flush the I and D cache line found at the address in operand 0.
7201 ;; This is used by the trampoline code for nested functions.
7202 ;; So long as the trampoline itself is less than 32 bytes this
7203 ;; is sufficient.
7204
7205 (define_insn "dcacheflush"
7206   [(unspec_volatile [(const_int 1)] 0)
7207    (use (mem:SI (match_operand 0 "pmode_register_operand" "r")))
7208    (use (mem:SI (match_operand 1 "pmode_register_operand" "r")))]
7209   ""
7210   "fdc 0(%0)\;fdc 0(%1)\;sync"
7211   [(set_attr "type" "multi")
7212    (set_attr "length" "12")])
7213
7214 (define_insn "icacheflush"
7215   [(unspec_volatile [(const_int 2)] 0)
7216    (use (mem:SI (match_operand 0 "pmode_register_operand" "r")))
7217    (use (mem:SI (match_operand 1 "pmode_register_operand" "r")))
7218    (use (match_operand 2 "pmode_register_operand" "r"))
7219    (clobber (match_operand 3 "pmode_register_operand" "=&r"))
7220    (clobber (match_operand 4 "pmode_register_operand" "=&r"))]
7221   ""
7222   "mfsp %%sr0,%4\;ldsid (%2),%3\;mtsp %3,%%sr0\;fic 0(%%sr0,%0)\;fic 0(%%sr0,%1)\;sync\;mtsp %4,%%sr0\;nop\;nop\;nop\;nop\;nop\;nop"
7223   [(set_attr "type" "multi")
7224    (set_attr "length" "52")])
7225
7226 ;; An out-of-line prologue.
7227 (define_insn "outline_prologue_call"
7228   [(unspec_volatile [(const_int 0)] 0)
7229    (clobber (reg:SI 31))
7230    (clobber (reg:SI 22))
7231    (clobber (reg:SI 21))
7232    (clobber (reg:SI 20))
7233    (clobber (reg:SI 19))
7234    (clobber (reg:SI 1))]
7235   ""
7236   "*
7237 {
7238   extern int frame_pointer_needed;
7239
7240   /* We need two different versions depending on whether or not we
7241      need a frame pointer.   Also note that we return to the instruction
7242      immediately after the branch rather than two instructions after the
7243      break as normally is the case.  */
7244   if (frame_pointer_needed)
7245     {
7246       /* Must import the magic millicode routine(s).  */
7247       output_asm_insn (\".IMPORT __outline_prologue_fp,MILLICODE\", NULL);
7248
7249       if (TARGET_PORTABLE_RUNTIME)
7250         {
7251           output_asm_insn (\"ldil L'__outline_prologue_fp,%%r31\", NULL);
7252           output_asm_insn (\"ble,n R'__outline_prologue_fp(%%sr0,%%r31)\",
7253                            NULL);
7254         }
7255       else
7256         output_asm_insn (\"{bl|b,l},n __outline_prologue_fp,%%r31\", NULL);
7257     }
7258   else
7259     {
7260       /* Must import the magic millicode routine(s).  */
7261       output_asm_insn (\".IMPORT __outline_prologue,MILLICODE\", NULL);
7262
7263       if (TARGET_PORTABLE_RUNTIME)
7264         {
7265           output_asm_insn (\"ldil L'__outline_prologue,%%r31\", NULL);
7266           output_asm_insn (\"ble,n R'__outline_prologue(%%sr0,%%r31)\", NULL);
7267         }
7268       else
7269         output_asm_insn (\"{bl|b,l},n __outline_prologue,%%r31\", NULL);
7270     }
7271   return \"\";
7272 }"
7273   [(set_attr "type" "multi")
7274    (set_attr "length" "8")])
7275
7276 ;; An out-of-line epilogue.
7277 (define_insn "outline_epilogue_call"
7278   [(unspec_volatile [(const_int 1)] 0)
7279    (use (reg:SI 29))
7280    (use (reg:SI 28))
7281    (clobber (reg:SI 31))
7282    (clobber (reg:SI 22))
7283    (clobber (reg:SI 21))
7284    (clobber (reg:SI 20))
7285    (clobber (reg:SI 19))
7286    (clobber (reg:SI 2))
7287    (clobber (reg:SI 1))]
7288   ""
7289   "*
7290 {
7291   extern int frame_pointer_needed;
7292
7293   /* We need two different versions depending on whether or not we
7294      need a frame pointer.   Also note that we return to the instruction
7295      immediately after the branch rather than two instructions after the
7296      break as normally is the case.  */
7297   if (frame_pointer_needed)
7298     {
7299       /* Must import the magic millicode routine.  */
7300       output_asm_insn (\".IMPORT __outline_epilogue_fp,MILLICODE\", NULL);
7301
7302       /* The out-of-line prologue will make sure we return to the right
7303          instruction.  */
7304       if (TARGET_PORTABLE_RUNTIME)
7305         {
7306           output_asm_insn (\"ldil L'__outline_epilogue_fp,%%r31\", NULL);
7307           output_asm_insn (\"ble,n R'__outline_epilogue_fp(%%sr0,%%r31)\",
7308                            NULL);
7309         }
7310       else
7311         output_asm_insn (\"{bl|b,l},n __outline_epilogue_fp,%%r31\", NULL);
7312     }
7313   else
7314     {
7315       /* Must import the magic millicode routine.  */
7316       output_asm_insn (\".IMPORT __outline_epilogue,MILLICODE\", NULL);
7317
7318       /* The out-of-line prologue will make sure we return to the right
7319          instruction.  */
7320       if (TARGET_PORTABLE_RUNTIME)
7321         {
7322           output_asm_insn (\"ldil L'__outline_epilogue,%%r31\", NULL);
7323           output_asm_insn (\"ble,n R'__outline_epilogue(%%sr0,%%r31)\", NULL);
7324         }
7325       else
7326         output_asm_insn (\"{bl|b,l},n __outline_epilogue,%%r31\", NULL);
7327     }
7328   return \"\";
7329 }"
7330   [(set_attr "type" "multi")
7331    (set_attr "length" "8")])
7332
7333 ;; Given a function pointer, canonicalize it so it can be 
7334 ;; reliably compared to another function pointer.  */
7335 (define_expand "canonicalize_funcptr_for_compare"
7336   [(set (reg:SI 26) (match_operand:SI 1 "register_operand" ""))
7337    (parallel [(set (reg:SI 29) (unspec:SI [(reg:SI 26)] 0))
7338               (clobber (match_dup 2))
7339               (clobber (reg:SI 26))
7340               (clobber (reg:SI 22))
7341               (clobber (reg:SI 31))])
7342    (set (match_operand:SI 0 "register_operand" "")
7343         (reg:SI 29))]
7344   "! TARGET_PORTABLE_RUNTIME && !TARGET_64BIT && !TARGET_ELF32"
7345   "
7346 {
7347   operands[2] = gen_reg_rtx (SImode);
7348   if (GET_CODE (operands[1]) != REG)
7349     {
7350       rtx tmp = gen_reg_rtx (Pmode);
7351       emit_move_insn (tmp, operands[1]);
7352       operands[1] = tmp;
7353     }
7354 }")
7355
7356 (define_insn ""
7357   [(set (reg:SI 29) (unspec:SI [(reg:SI 26)] 0))
7358    (clobber (match_operand:SI 0 "register_operand" "=a"))
7359    (clobber (reg:SI 26))
7360    (clobber (reg:SI 22))
7361    (clobber (reg:SI 31))]
7362   "!TARGET_64BIT"
7363   "*
7364 {
7365   /* Must import the magic millicode routine.  */
7366   output_asm_insn (\".IMPORT $$sh_func_adrs,MILLICODE\", NULL);
7367
7368   /* This is absolutely amazing.
7369
7370      First, copy our input parameter into %r29 just in case we don't
7371      need to call $$sh_func_adrs.  */
7372   output_asm_insn (\"copy %%r26,%%r29\", NULL);
7373
7374   /* Next, examine the low two bits in %r26, if they aren't 0x2, then
7375      we use %r26 unchanged.  */
7376   if (get_attr_length (insn) == 32)
7377     output_asm_insn (\"{extru|extrw,u} %%r26,31,2,%%r31\;{comib|cmpib},<>,n 2,%%r31,.+24\", NULL);
7378   else if (get_attr_length (insn) == 40)
7379     output_asm_insn (\"{extru|extrw,u} %%r26,31,2,%%r31\;{comib|cmpib},<>,n 2,%%r31,.+32\", NULL);
7380   else if (get_attr_length (insn) == 44)
7381     output_asm_insn (\"{extru|extrw,u} %%r26,31,2,%%r31\;{comib|cmpib},<>,n 2,%%r31,.+36\", NULL);
7382   else
7383     output_asm_insn (\"{extru|extrw,u} %%r26,31,2,%%r31\;{comib|cmpib},<>,n 2,%%r31,.+20\", NULL);
7384
7385   /* Next, compare %r26 with 4096, if %r26 is less than or equal to
7386      4096, then we use %r26 unchanged.  */
7387   if (get_attr_length (insn) == 32)
7388     output_asm_insn (\"ldi 4096,%%r31\;{comb|cmpb},<<,n %%r26,%%r31,.+16\",
7389                      NULL);
7390   else if (get_attr_length (insn) == 40)
7391     output_asm_insn (\"ldi 4096,%%r31\;{comb|cmpb},<<,n %%r26,%%r31,.+24\",
7392                      NULL);
7393   else if (get_attr_length (insn) == 44)
7394     output_asm_insn (\"ldi 4096,%%r31\;{comb|cmpb},<<,n %%r26,%%r31,.+28\",
7395                      NULL);
7396   else
7397     output_asm_insn (\"ldi 4096,%%r31\;{comb|cmpb},<<,n %%r26,%%r31,.+12\",
7398                      NULL);
7399
7400   /* Else call $$sh_func_adrs to extract the function's real add24.  */
7401   return output_millicode_call (insn,
7402                                 gen_rtx_SYMBOL_REF (SImode,
7403                                          \"$$sh_func_adrs\"));
7404 }"
7405   [(set_attr "type" "multi")
7406    (set (attr "length")
7407      (cond [
7408 ;; Target (or stub) within reach
7409             (and (lt (plus (symbol_ref "total_code_bytes") (pc))
7410                      (const_int 240000))
7411                  (eq (symbol_ref "TARGET_PORTABLE_RUNTIME")
7412                      (const_int 0)))
7413             (const_int 28)
7414
7415 ;; Out of reach PIC
7416             (ne (symbol_ref "flag_pic")
7417                 (const_int 0))
7418             (const_int 44)
7419
7420 ;; Out of reach PORTABLE_RUNTIME
7421             (ne (symbol_ref "TARGET_PORTABLE_RUNTIME")
7422                 (const_int 0))
7423             (const_int 40)]
7424
7425 ;; Out of reach, can use ble
7426           (const_int 32)))])
7427
7428 ;; On the PA, the PIC register is call clobbered, so it must
7429 ;; be saved & restored around calls by the caller.  If the call
7430 ;; doesn't return normally (nonlocal goto, or an exception is
7431 ;; thrown), then the code at the exception handler label must
7432 ;; restore the PIC register.
7433 (define_expand "exception_receiver"
7434   [(const_int 4)]
7435   "flag_pic"
7436   "
7437 {
7438   /* Restore the PIC register using hppa_pic_save_rtx ().  The
7439      PIC register is not saved in the frame in 64-bit ABI.  */
7440   emit_move_insn (pic_offset_table_rtx, hppa_pic_save_rtx ());
7441   DONE;
7442 }")
7443
7444 (define_expand "builtin_setjmp_receiver"
7445   [(label_ref (match_operand 0 "" ""))]
7446   "flag_pic"
7447   "
7448 {
7449   /* Restore the PIC register.  Hopefully, this will always be from
7450      a stack slot.  The only registers that are valid after a
7451      builtin_longjmp are the stack and frame pointers.  */
7452   emit_move_insn (pic_offset_table_rtx, hppa_pic_save_rtx ());
7453   DONE;
7454 }")