OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [config/] [pa/] [pa.md] - Blame information for rev 338

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 282 jeremybenn
;;- Machine description for HP PA-RISC architecture for GCC compiler
2
;;   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
3
;;   2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010
4
;;   Free Software Foundation, Inc.
5
;;   Contributed by the Center for Software Science at the University
6
;;   of Utah.
7
 
8
;; This file is part of GCC.
9
 
10
;; GCC is free software; you can redistribute it and/or modify
11
;; it under the terms of the GNU General Public License as published by
12
;; the Free Software Foundation; either version 3, or (at your option)
13
;; any later version.
14
 
15
;; GCC is distributed in the hope that it will be useful,
16
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
;; GNU General Public License for more details.
19
 
20
;; You should have received a copy of the GNU General Public License
21
;; along with GCC; see the file COPYING3.  If not see
22
;; .
23
 
24
;; This gcc Version 2 machine description is inspired by sparc.md and
25
;; mips.md.
26
 
27
;;- See file "rtl.def" for documentation on define_insn, match_*, et. al.
28
 
29
;; Uses of UNSPEC in this file:
30
 
31
(define_constants
32
  [(UNSPEC_CFFC         0)      ; canonicalize_funcptr_for_compare
33
   (UNSPEC_GOTO         1)      ; indirect_goto
34
   (UNSPEC_DLTIND14R    2)      ;
35
   (UNSPEC_TP           3)
36
   (UNSPEC_TLSGD        4)
37
   (UNSPEC_TLSLDM       5)
38
   (UNSPEC_TLSLDO       6)
39
   (UNSPEC_TLSLDBASE    7)
40
   (UNSPEC_TLSIE        8)
41
   (UNSPEC_TLSLE        9)
42
   (UNSPEC_TLSGD_PIC   10)
43
   (UNSPEC_TLSLDM_PIC  11)
44
   (UNSPEC_TLSIE_PIC   12)
45
  ])
46
 
47
;; UNSPEC_VOLATILE:
48
 
49
(define_constants
50
  [(UNSPECV_BLOCKAGE    0)      ; blockage
51
   (UNSPECV_DCACHE      1)      ; dcacheflush
52
   (UNSPECV_ICACHE      2)      ; icacheflush
53
   (UNSPECV_OPC         3)      ; outline_prologue_call
54
   (UNSPECV_OEC         4)      ; outline_epilogue_call
55
   (UNSPECV_LONGJMP     5)      ; builtin_longjmp
56
  ])
57
 
58
;; Maximum pc-relative branch offsets.
59
 
60
;; These numbers are a bit smaller than the maximum allowable offsets
61
;; so that a few instructions may be inserted before the actual branch.
62
 
63
(define_constants
64
  [(MAX_12BIT_OFFSET     8184)  ; 12-bit branch
65
   (MAX_17BIT_OFFSET   262100)  ; 17-bit branch
66
  ])
67
 
68
;; Mode and code iterators
69
 
70
;; This mode iterator allows :P to be used for patterns that operate on
71
;; pointer-sized quantities.  Exactly one of the two alternatives will match.
72
(define_mode_iterator P [(SI "Pmode == SImode") (DI "Pmode == DImode")])
73
 
74
;; This attribute defines the condition prefix for word and double word
75
;; add, compare, subtract and logical instructions.
76
(define_mode_attr dwc [(SI "") (DI "*")])
77
 
78
;; Insn type.  Used to default other attribute values.
79
 
80
;; type "unary" insns have one input operand (1) and one output operand (0)
81
;; type "binary" insns have two input operands (1,2) and one output (0)
82
 
83
(define_attr "type"
84
  "move,unary,binary,shift,nullshift,compare,load,store,uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,fpload,fpstore,fpalu,fpcc,fpmulsgl,fpmuldbl,fpdivsgl,fpdivdbl,fpsqrtsgl,fpsqrtdbl,multi,milli,parallel_branch,fpstore_load,store_fpload"
85
  (const_string "binary"))
86
 
87
(define_attr "pa_combine_type"
88
  "fmpy,faddsub,uncond_branch,addmove,none"
89
  (const_string "none"))
90
 
91
;; Processor type (for scheduling, not code generation) -- this attribute
92
;; must exactly match the processor_type enumeration in pa.h.
93
;;
94
;; FIXME: Add 800 scheduling for completeness?
95
 
96
(define_attr "cpu" "700,7100,7100LC,7200,7300,8000" (const (symbol_ref "pa_cpu_attr")))
97
 
98
;; Length (in # of bytes).
99
(define_attr "length" ""
100
  (cond [(eq_attr "type" "load,fpload")
101
         (if_then_else (match_operand 1 "symbolic_memory_operand" "")
102
                       (const_int 8) (const_int 4))
103
 
104
         (eq_attr "type" "store,fpstore")
105
         (if_then_else (match_operand 0 "symbolic_memory_operand" "")
106
                       (const_int 8) (const_int 4))
107
 
108
         (eq_attr "type" "binary,shift,nullshift")
109
         (if_then_else (match_operand 2 "arith_operand" "")
110
                       (const_int 4) (const_int 12))
111
 
112
         (eq_attr "type" "move,unary,shift,nullshift")
113
         (if_then_else (match_operand 1 "arith_operand" "")
114
                       (const_int 4) (const_int 8))]
115
 
116
        (const_int 4)))
117
 
118
(define_asm_attributes
119
  [(set_attr "length" "4")
120
   (set_attr "type" "multi")])
121
 
122
;; Attributes for instruction and branch scheduling
123
 
124
;; For conditional branches.
125
(define_attr "in_branch_delay" "false,true"
126
  (if_then_else (and (eq_attr "type" "!uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch")
127
                     (eq_attr "length" "4"))
128
                (const_string "true")
129
                (const_string "false")))
130
 
131
;; Disallow instructions which use the FPU since they will tie up the FPU
132
;; even if the instruction is nullified.
133
(define_attr "in_nullified_branch_delay" "false,true"
134
  (if_then_else (and (eq_attr "type" "!uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpdivdbl,fpsqrtsgl,fpsqrtdbl,parallel_branch")
135
                     (eq_attr "length" "4"))
136
                (const_string "true")
137
                (const_string "false")))
138
 
139
;; For calls and millicode calls.  Allow unconditional branches in the
140
;; delay slot.
141
(define_attr "in_call_delay" "false,true"
142
  (cond [(and (eq_attr "type" "!uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch")
143
              (eq_attr "length" "4"))
144
           (const_string "true")
145
         (eq_attr "type" "uncond_branch")
146
           (if_then_else (ne (symbol_ref "TARGET_JUMP_IN_DELAY")
147
                             (const_int 0))
148
                         (const_string "true")
149
                         (const_string "false"))]
150
        (const_string "false")))
151
 
152
 
153
;; Call delay slot description.
154
(define_delay (eq_attr "type" "call")
155
  [(eq_attr "in_call_delay" "true") (nil) (nil)])
156
 
157
;; Millicode call delay slot description.
158
(define_delay (eq_attr "type" "milli")
159
  [(eq_attr "in_call_delay" "true") (nil) (nil)])
160
 
161
;; Return and other similar instructions.
162
(define_delay (eq_attr "type" "btable_branch,branch,parallel_branch")
163
  [(eq_attr "in_branch_delay" "true") (nil) (nil)])
164
 
165
;; Floating point conditional branch delay slot description.
166
(define_delay (eq_attr "type" "fbranch")
167
  [(eq_attr "in_branch_delay" "true")
168
   (eq_attr "in_nullified_branch_delay" "true")
169
   (nil)])
170
 
171
;; Integer conditional branch delay slot description.
172
;; Nullification of conditional branches on the PA is dependent on the
173
;; direction of the branch.  Forward branches nullify true and
174
;; backward branches nullify false.  If the direction is unknown
175
;; then nullification is not allowed.
176
(define_delay (eq_attr "type" "cbranch")
177
  [(eq_attr "in_branch_delay" "true")
178
   (and (eq_attr "in_nullified_branch_delay" "true")
179
        (attr_flag "forward"))
180
   (and (eq_attr "in_nullified_branch_delay" "true")
181
        (attr_flag "backward"))])
182
 
183
(define_delay (and (eq_attr "type" "uncond_branch")
184
                   (eq (symbol_ref "following_call (insn)")
185
                       (const_int 0)))
186
  [(eq_attr "in_branch_delay" "true") (nil) (nil)])
187
 
188
;; Memory. Disregarding Cache misses, the Mustang memory times are:
189
;; load: 2, fpload: 3
190
;; store, fpstore: 3, no D-cache operations should be scheduled.
191
 
192
;; The Timex (aka 700) has two floating-point units: ALU, and MUL/DIV/SQRT.
193
;; Timings:
194
;; Instruction  Time    Unit    Minimum Distance (unit contention)
195
;; fcpy         3       ALU     2
196
;; fabs         3       ALU     2
197
;; fadd         3       ALU     2
198
;; fsub         3       ALU     2
199
;; fcmp         3       ALU     2
200
;; fcnv         3       ALU     2
201
;; fmpyadd      3       ALU,MPY 2
202
;; fmpysub      3       ALU,MPY 2
203
;; fmpycfxt     3       ALU,MPY 2
204
;; fmpy         3       MPY     2
205
;; fmpyi        3       MPY     2
206
;; fdiv,sgl     10      MPY     10
207
;; fdiv,dbl     12      MPY     12
208
;; fsqrt,sgl    14      MPY     14
209
;; fsqrt,dbl    18      MPY     18
210
;;
211
;; We don't model fmpyadd/fmpysub properly as those instructions
212
;; keep both the FP ALU and MPY units busy.  Given that these
213
;; processors are obsolete, I'm not going to spend the time to
214
;; model those instructions correctly.
215
 
216
(define_automaton "pa700")
217
(define_cpu_unit "dummy_700,mem_700,fpalu_700,fpmpy_700" "pa700")
218
 
219
(define_insn_reservation "W0" 4
220
  (and (eq_attr "type" "fpcc")
221
       (eq_attr "cpu" "700"))
222
  "fpalu_700*2")
223
 
224
(define_insn_reservation "W1" 3
225
  (and (eq_attr "type" "fpalu")
226
       (eq_attr "cpu" "700"))
227
  "fpalu_700*2")
228
 
229
(define_insn_reservation "W2" 3
230
  (and (eq_attr "type" "fpmulsgl,fpmuldbl")
231
       (eq_attr "cpu" "700"))
232
  "fpmpy_700*2")
233
 
234
(define_insn_reservation "W3" 10
235
  (and (eq_attr "type" "fpdivsgl")
236
       (eq_attr "cpu" "700"))
237
  "fpmpy_700*10")
238
 
239
(define_insn_reservation "W4" 12
240
  (and (eq_attr "type" "fpdivdbl")
241
       (eq_attr "cpu" "700"))
242
  "fpmpy_700*12")
243
 
244
(define_insn_reservation "W5" 14
245
  (and (eq_attr "type" "fpsqrtsgl")
246
       (eq_attr "cpu" "700"))
247
  "fpmpy_700*14")
248
 
249
(define_insn_reservation "W6" 18
250
  (and (eq_attr "type" "fpsqrtdbl")
251
       (eq_attr "cpu" "700"))
252
  "fpmpy_700*18")
253
 
254
(define_insn_reservation "W7" 2
255
  (and (eq_attr "type" "load")
256
       (eq_attr "cpu" "700"))
257
  "mem_700")
258
 
259
(define_insn_reservation "W8" 2
260
  (and (eq_attr "type" "fpload")
261
       (eq_attr "cpu" "700"))
262
  "mem_700")
263
 
264
(define_insn_reservation "W9" 3
265
  (and (eq_attr "type" "store")
266
       (eq_attr "cpu" "700"))
267
  "mem_700*3")
268
 
269
(define_insn_reservation "W10" 3
270
  (and (eq_attr "type" "fpstore")
271
       (eq_attr "cpu" "700"))
272
  "mem_700*3")
273
 
274
(define_insn_reservation "W11" 5
275
  (and (eq_attr "type" "fpstore_load")
276
       (eq_attr "cpu" "700"))
277
  "mem_700*5")
278
 
279
(define_insn_reservation "W12" 6
280
  (and (eq_attr "type" "store_fpload")
281
       (eq_attr "cpu" "700"))
282
  "mem_700*6")
283
 
284
(define_insn_reservation "W13" 1
285
  (and (eq_attr "type" "!fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpdivdbl,fpsqrtsgl,fpsqrtdbl,load,fpload,store,fpstore,fpstore_load,store_fpload")
286
       (eq_attr "cpu" "700"))
287
  "dummy_700")
288
 
289
;; We have a bypass for all computations in the FP unit which feed an
290
;; FP store as long as the sizes are the same.
291
(define_bypass 2 "W1,W2" "W10,W11" "hppa_fpstore_bypass_p")
292
(define_bypass 9 "W3" "W10,W11" "hppa_fpstore_bypass_p")
293
(define_bypass 11 "W4" "W10,W11" "hppa_fpstore_bypass_p")
294
(define_bypass 13 "W5" "W10,W11" "hppa_fpstore_bypass_p")
295
(define_bypass 17 "W6" "W10,W11" "hppa_fpstore_bypass_p")
296
 
297
;; We have an "anti-bypass" for FP loads which feed an FP store.
298
(define_bypass 4 "W8,W12" "W10,W11" "hppa_fpstore_bypass_p")
299
 
300
;; Function units for the 7100 and 7150.  The 7100/7150 can dual-issue
301
;; floating point computations with non-floating point computations (fp loads
302
;; and stores are not fp computations).
303
;;
304
;; Memory. Disregarding Cache misses, memory loads take two cycles; stores also
305
;; take two cycles, during which no Dcache operations should be scheduled.
306
;; Any special cases are handled in pa_adjust_cost.  The 7100, 7150 and 7100LC
307
;; all have the same memory characteristics if one disregards cache misses.
308
;;
309
;; The 7100/7150 has three floating-point units: ALU, MUL, and DIV.
310
;; There's no value in modeling the ALU and MUL separately though
311
;; since there can never be a functional unit conflict given the
312
;; latency and issue rates for those units.
313
;;
314
;; Timings:
315
;; Instruction  Time    Unit    Minimum Distance (unit contention)
316
;; fcpy         2       ALU     1
317
;; fabs         2       ALU     1
318
;; fadd         2       ALU     1
319
;; fsub         2       ALU     1
320
;; fcmp         2       ALU     1
321
;; fcnv         2       ALU     1
322
;; fmpyadd      2       ALU,MPY 1
323
;; fmpysub      2       ALU,MPY 1
324
;; fmpycfxt     2       ALU,MPY 1
325
;; fmpy         2       MPY     1
326
;; fmpyi        2       MPY     1
327
;; fdiv,sgl     8       DIV     8
328
;; fdiv,dbl     15      DIV     15
329
;; fsqrt,sgl    8       DIV     8
330
;; fsqrt,dbl    15      DIV     15
331
 
332
(define_automaton "pa7100")
333
(define_cpu_unit "i_7100, f_7100,fpmac_7100,fpdivsqrt_7100,mem_7100" "pa7100")
334
 
335
(define_insn_reservation "X0" 2
336
  (and (eq_attr "type" "fpcc,fpalu,fpmulsgl,fpmuldbl")
337
       (eq_attr "cpu" "7100"))
338
  "f_7100,fpmac_7100")
339
 
340
(define_insn_reservation "X1" 8
341
  (and (eq_attr "type" "fpdivsgl,fpsqrtsgl")
342
       (eq_attr "cpu" "7100"))
343
  "f_7100+fpdivsqrt_7100,fpdivsqrt_7100*7")
344
 
345
(define_insn_reservation "X2" 15
346
  (and (eq_attr "type" "fpdivdbl,fpsqrtdbl")
347
       (eq_attr "cpu" "7100"))
348
  "f_7100+fpdivsqrt_7100,fpdivsqrt_7100*14")
349
 
350
(define_insn_reservation "X3" 2
351
  (and (eq_attr "type" "load")
352
       (eq_attr "cpu" "7100"))
353
  "i_7100+mem_7100")
354
 
355
(define_insn_reservation "X4" 2
356
  (and (eq_attr "type" "fpload")
357
       (eq_attr "cpu" "7100"))
358
  "i_7100+mem_7100")
359
 
360
(define_insn_reservation "X5" 2
361
  (and (eq_attr "type" "store")
362
       (eq_attr "cpu" "7100"))
363
  "i_7100+mem_7100,mem_7100")
364
 
365
(define_insn_reservation "X6" 2
366
  (and (eq_attr "type" "fpstore")
367
       (eq_attr "cpu" "7100"))
368
  "i_7100+mem_7100,mem_7100")
369
 
370
(define_insn_reservation "X7" 4
371
  (and (eq_attr "type" "fpstore_load")
372
       (eq_attr "cpu" "7100"))
373
  "i_7100+mem_7100,mem_7100*3")
374
 
375
(define_insn_reservation "X8" 4
376
  (and (eq_attr "type" "store_fpload")
377
       (eq_attr "cpu" "7100"))
378
  "i_7100+mem_7100,mem_7100*3")
379
 
380
(define_insn_reservation "X9" 1
381
  (and (eq_attr "type" "!fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpsqrtsgl,fpdivdbl,fpsqrtdbl,load,fpload,store,fpstore,fpstore_load,store_fpload")
382
       (eq_attr "cpu" "7100"))
383
  "i_7100")
384
 
385
;; We have a bypass for all computations in the FP unit which feed an
386
;; FP store as long as the sizes are the same.
387
(define_bypass 1 "X0" "X6,X7" "hppa_fpstore_bypass_p")
388
(define_bypass 7 "X1" "X6,X7" "hppa_fpstore_bypass_p")
389
(define_bypass 14 "X2" "X6,X7" "hppa_fpstore_bypass_p")
390
 
391
;; We have an "anti-bypass" for FP loads which feed an FP store.
392
(define_bypass 3 "X4,X8" "X6,X7" "hppa_fpstore_bypass_p")
393
 
394
;; The 7100LC has three floating-point units: ALU, MUL, and DIV.
395
;; There's no value in modeling the ALU and MUL separately though
396
;; since there can never be a functional unit conflict that
397
;; can be avoided given the latency, issue rates and mandatory
398
;; one cycle cpu-wide lock for a double precision fp multiply.
399
;;
400
;; Timings:
401
;; Instruction  Time    Unit    Minimum Distance (unit contention)
402
;; fcpy         2       ALU     1
403
;; fabs         2       ALU     1
404
;; fadd         2       ALU     1
405
;; fsub         2       ALU     1
406
;; fcmp         2       ALU     1
407
;; fcnv         2       ALU     1
408
;; fmpyadd,sgl  2       ALU,MPY 1
409
;; fmpyadd,dbl  3       ALU,MPY 2
410
;; fmpysub,sgl  2       ALU,MPY 1
411
;; fmpysub,dbl  3       ALU,MPY 2
412
;; fmpycfxt,sgl 2       ALU,MPY 1
413
;; fmpycfxt,dbl 3       ALU,MPY 2
414
;; fmpy,sgl     2       MPY     1
415
;; fmpy,dbl     3       MPY     2
416
;; fmpyi        3       MPY     2
417
;; fdiv,sgl     8       DIV     8
418
;; fdiv,dbl     15      DIV     15
419
;; fsqrt,sgl    8       DIV     8
420
;; fsqrt,dbl    15      DIV     15
421
;;
422
;; The PA7200 is just like the PA7100LC except that there is
423
;; no store-store penalty.
424
;;
425
;; The PA7300 is just like the PA7200 except that there is
426
;; no store-load penalty.
427
;;
428
;; Note there are some aspects of the 7100LC we are not modeling
429
;; at the moment.  I'll be reviewing the 7100LC scheduling info
430
;; shortly and updating this description.
431
;;
432
;;   load-load pairs
433
;;   store-store pairs
434
;;   other issue modeling
435
 
436
(define_automaton "pa7100lc")
437
(define_cpu_unit "i0_7100lc, i1_7100lc, f_7100lc" "pa7100lc")
438
(define_cpu_unit "fpmac_7100lc" "pa7100lc")
439
(define_cpu_unit "mem_7100lc" "pa7100lc")
440
 
441
;; Double precision multiplies lock the entire CPU for one
442
;; cycle.  There is no way to avoid this lock and trying to
443
;; schedule around the lock is pointless and thus there is no
444
;; value in trying to model this lock.
445
;;
446
;; Not modeling the lock allows us to treat fp multiplies just
447
;; like any other FP alu instruction.  It allows for a smaller
448
;; DFA and may reduce register pressure.
449
(define_insn_reservation "Y0" 2
450
  (and (eq_attr "type" "fpcc,fpalu,fpmulsgl,fpmuldbl")
451
       (eq_attr "cpu" "7100LC,7200,7300"))
452
  "f_7100lc,fpmac_7100lc")
453
 
454
;; fp division and sqrt instructions lock the entire CPU for
455
;; 7 cycles (single precision) or 14 cycles (double precision).
456
;; There is no way to avoid this lock and trying to schedule
457
;; around the lock is pointless and thus there is no value in
458
;; trying to model this lock.  Not modeling the lock allows
459
;; for a smaller DFA and may reduce register pressure.
460
(define_insn_reservation "Y1" 1
461
  (and (eq_attr "type" "fpdivsgl,fpsqrtsgl,fpdivdbl,fpsqrtdbl")
462
       (eq_attr "cpu" "7100LC,7200,7300"))
463
  "f_7100lc")
464
 
465
(define_insn_reservation "Y2" 2
466
  (and (eq_attr "type" "load")
467
       (eq_attr "cpu" "7100LC,7200,7300"))
468
  "i1_7100lc+mem_7100lc")
469
 
470
(define_insn_reservation "Y3" 2
471
  (and (eq_attr "type" "fpload")
472
       (eq_attr "cpu" "7100LC,7200,7300"))
473
  "i1_7100lc+mem_7100lc")
474
 
475
(define_insn_reservation "Y4" 2
476
  (and (eq_attr "type" "store")
477
       (eq_attr "cpu" "7100LC"))
478
  "i1_7100lc+mem_7100lc,mem_7100lc")
479
 
480
(define_insn_reservation "Y5" 2
481
  (and (eq_attr "type" "fpstore")
482
       (eq_attr "cpu" "7100LC"))
483
  "i1_7100lc+mem_7100lc,mem_7100lc")
484
 
485
(define_insn_reservation "Y6" 4
486
  (and (eq_attr "type" "fpstore_load")
487
       (eq_attr "cpu" "7100LC"))
488
  "i1_7100lc+mem_7100lc,mem_7100lc*3")
489
 
490
(define_insn_reservation "Y7" 4
491
  (and (eq_attr "type" "store_fpload")
492
       (eq_attr "cpu" "7100LC"))
493
  "i1_7100lc+mem_7100lc,mem_7100lc*3")
494
 
495
(define_insn_reservation "Y8" 1
496
  (and (eq_attr "type" "shift,nullshift")
497
       (eq_attr "cpu" "7100LC,7200,7300"))
498
  "i1_7100lc")
499
 
500
(define_insn_reservation "Y9" 1
501
  (and (eq_attr "type" "!fpcc,fpalu,fpmulsgl,fpmuldbl,fpdivsgl,fpsqrtsgl,fpdivdbl,fpsqrtdbl,load,fpload,store,fpstore,shift,nullshift")
502
       (eq_attr "cpu" "7100LC,7200,7300"))
503
  "(i0_7100lc|i1_7100lc)")
504
 
505
;; The 7200 has a store-load penalty
506
(define_insn_reservation "Y10" 2
507
  (and (eq_attr "type" "store")
508
       (eq_attr "cpu" "7200"))
509
  "i1_7100lc,mem_7100lc")
510
 
511
(define_insn_reservation "Y11" 2
512
  (and (eq_attr "type" "fpstore")
513
       (eq_attr "cpu" "7200"))
514
  "i1_7100lc,mem_7100lc")
515
 
516
(define_insn_reservation "Y12" 4
517
  (and (eq_attr "type" "fpstore_load")
518
       (eq_attr "cpu" "7200"))
519
  "i1_7100lc,mem_7100lc,i1_7100lc+mem_7100lc")
520
 
521
(define_insn_reservation "Y13" 4
522
  (and (eq_attr "type" "store_fpload")
523
       (eq_attr "cpu" "7200"))
524
  "i1_7100lc,mem_7100lc,i1_7100lc+mem_7100lc")
525
 
526
;; The 7300 has no penalty for store-store or store-load
527
(define_insn_reservation "Y14" 2
528
  (and (eq_attr "type" "store")
529
       (eq_attr "cpu" "7300"))
530
  "i1_7100lc")
531
 
532
(define_insn_reservation "Y15" 2
533
  (and (eq_attr "type" "fpstore")
534
       (eq_attr "cpu" "7300"))
535
  "i1_7100lc")
536
 
537
(define_insn_reservation "Y16" 4
538
  (and (eq_attr "type" "fpstore_load")
539
       (eq_attr "cpu" "7300"))
540
  "i1_7100lc,i1_7100lc+mem_7100lc")
541
 
542
(define_insn_reservation "Y17" 4
543
  (and (eq_attr "type" "store_fpload")
544
       (eq_attr "cpu" "7300"))
545
  "i1_7100lc,i1_7100lc+mem_7100lc")
546
 
547
;; We have an "anti-bypass" for FP loads which feed an FP store.
548
(define_bypass 3 "Y3,Y7,Y13,Y17" "Y5,Y6,Y11,Y12,Y15,Y16" "hppa_fpstore_bypass_p")
549
 
550
;; Scheduling for the PA8000 is somewhat different than scheduling for a
551
;; traditional architecture.
552
;;
553
;; The PA8000 has a large (56) entry reorder buffer that is split between
554
;; memory and non-memory operations.
555
;;
556
;; The PA8000 can issue two memory and two non-memory operations per cycle to
557
;; the function units, with the exception of branches and multi-output
558
;; instructions.  The PA8000 can retire two non-memory operations per cycle
559
;; and two memory operations per cycle, only one of which may be a store.
560
;;
561
;; Given the large reorder buffer, the processor can hide most latencies.
562
;; According to HP, they've got the best results by scheduling for retirement
563
;; bandwidth with limited latency scheduling for floating point operations.
564
;; Latency for integer operations and memory references is ignored.
565
;;
566
;;
567
;; We claim floating point operations have a 2 cycle latency and are
568
;; fully pipelined, except for div and sqrt which are not pipelined and
569
;; take from 17 to 31 cycles to complete.
570
;;
571
;; It's worth noting that there is no way to saturate all the functional
572
;; units on the PA8000 as there is not enough issue bandwidth.
573
 
574
(define_automaton "pa8000")
575
(define_cpu_unit "inm0_8000, inm1_8000, im0_8000, im1_8000" "pa8000")
576
(define_cpu_unit "rnm0_8000, rnm1_8000, rm0_8000, rm1_8000" "pa8000")
577
(define_cpu_unit "store_8000" "pa8000")
578
(define_cpu_unit "f0_8000, f1_8000" "pa8000")
579
(define_cpu_unit "fdivsqrt0_8000, fdivsqrt1_8000" "pa8000")
580
(define_reservation "inm_8000" "inm0_8000 | inm1_8000")
581
(define_reservation "im_8000" "im0_8000 | im1_8000")
582
(define_reservation "rnm_8000" "rnm0_8000 | rnm1_8000")
583
(define_reservation "rm_8000" "rm0_8000 | rm1_8000")
584
(define_reservation "f_8000" "f0_8000 | f1_8000")
585
(define_reservation "fdivsqrt_8000" "fdivsqrt0_8000 | fdivsqrt1_8000")
586
 
587
;; We can issue any two memops per cycle, but we can only retire
588
;; one memory store per cycle.  We assume that the reorder buffer
589
;; will hide any memory latencies per HP's recommendation.
590
(define_insn_reservation "Z0" 0
591
  (and
592
    (eq_attr "type" "load,fpload")
593
    (eq_attr "cpu" "8000"))
594
  "im_8000,rm_8000")
595
 
596
(define_insn_reservation "Z1" 0
597
  (and
598
    (eq_attr "type" "store,fpstore")
599
    (eq_attr "cpu" "8000"))
600
  "im_8000,rm_8000+store_8000")
601
 
602
(define_insn_reservation "Z2" 0
603
  (and (eq_attr "type" "fpstore_load,store_fpload")
604
       (eq_attr "cpu" "8000"))
605
  "im_8000,rm_8000+store_8000,im_8000,rm_8000")
606
 
607
;; We can issue and retire two non-memory operations per cycle with
608
;; a few exceptions (branches).  This group catches those we want
609
;; to assume have zero latency.
610
(define_insn_reservation "Z3" 0
611
  (and
612
    (eq_attr "type" "!load,fpload,store,fpstore,uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch,fpcc,fpalu,fpmulsgl,fpmuldbl,fpsqrtsgl,fpsqrtdbl,fpdivsgl,fpdivdbl,fpstore_load,store_fpload")
613
    (eq_attr "cpu" "8000"))
614
  "inm_8000,rnm_8000")
615
 
616
;; Branches use both slots in the non-memory issue and
617
;; retirement unit.
618
(define_insn_reservation "Z4" 0
619
  (and
620
    (eq_attr "type" "uncond_branch,btable_branch,branch,cbranch,fbranch,call,dyncall,multi,milli,parallel_branch")
621
    (eq_attr "cpu" "8000"))
622
  "inm0_8000+inm1_8000,rnm0_8000+rnm1_8000")
623
 
624
;; We partial latency schedule the floating point units.
625
;; They can issue/retire two at a time in the non-memory
626
;; units.  We fix their latency at 2 cycles and they
627
;; are fully pipelined.
628
(define_insn_reservation "Z5" 1
629
 (and
630
   (eq_attr "type" "fpcc,fpalu,fpmulsgl,fpmuldbl")
631
   (eq_attr "cpu" "8000"))
632
 "inm_8000,f_8000,rnm_8000")
633
 
634
;; The fdivsqrt units are not pipelined and have a very long latency.
635
;; To keep the DFA from exploding, we do not show all the
636
;; reservations for the divsqrt unit.
637
(define_insn_reservation "Z6" 17
638
 (and
639
   (eq_attr "type" "fpdivsgl,fpsqrtsgl")
640
   (eq_attr "cpu" "8000"))
641
 "inm_8000,fdivsqrt_8000*6,rnm_8000")
642
 
643
(define_insn_reservation "Z7" 31
644
 (and
645
   (eq_attr "type" "fpdivdbl,fpsqrtdbl")
646
   (eq_attr "cpu" "8000"))
647
 "inm_8000,fdivsqrt_8000*6,rnm_8000")
648
 
649
;; Operand and operator predicates and constraints
650
 
651
(include "predicates.md")
652
(include "constraints.md")
653
 
654
;; Compare instructions.
655
;; This controls RTL generation and register allocation.
656
 
657
(define_insn ""
658
  [(set (reg:CCFP 0)
659
        (match_operator:CCFP 2 "comparison_operator"
660
                             [(match_operand:SF 0 "reg_or_0_operand" "fG")
661
                              (match_operand:SF 1 "reg_or_0_operand" "fG")]))]
662
  "! TARGET_SOFT_FLOAT"
663
  "fcmp,sgl,%Y2 %f0,%f1"
664
  [(set_attr "length" "4")
665
   (set_attr "type" "fpcc")])
666
 
667
(define_insn ""
668
  [(set (reg:CCFP 0)
669
        (match_operator:CCFP 2 "comparison_operator"
670
                             [(match_operand:DF 0 "reg_or_0_operand" "fG")
671
                              (match_operand:DF 1 "reg_or_0_operand" "fG")]))]
672
  "! TARGET_SOFT_FLOAT"
673
  "fcmp,dbl,%Y2 %f0,%f1"
674
  [(set_attr "length" "4")
675
   (set_attr "type" "fpcc")])
676
 
677
;; Provide a means to emit the movccfp0 and movccfp1 optimization
678
;; placeholders.  This is necessary in rare situations when a
679
;; placeholder is re-emitted (see PR 8705).
680
 
681
(define_expand "movccfp"
682
  [(set (reg:CCFP 0)
683
        (match_operand 0 "const_int_operand" ""))]
684
  "! TARGET_SOFT_FLOAT"
685
  "
686
{
687
  if ((unsigned HOST_WIDE_INT) INTVAL (operands[0]) > 1)
688
    FAIL;
689
}")
690
 
691
;; The following patterns are optimization placeholders.  In almost
692
;; all cases, the user of the condition code will be simplified and the
693
;; original condition code setting insn should be eliminated.
694
 
695
(define_insn "*movccfp0"
696
  [(set (reg:CCFP 0)
697
        (const_int 0))]
698
  "! TARGET_SOFT_FLOAT"
699
  "fcmp,dbl,= %%fr0,%%fr0"
700
  [(set_attr "length" "4")
701
   (set_attr "type" "fpcc")])
702
 
703
(define_insn "*movccfp1"
704
  [(set (reg:CCFP 0)
705
        (const_int 1))]
706
  "! TARGET_SOFT_FLOAT"
707
  "fcmp,dbl,!= %%fr0,%%fr0"
708
  [(set_attr "length" "4")
709
   (set_attr "type" "fpcc")])
710
 
711
;; scc insns.
712
 
713
(define_expand "cstoresi4"
714
  [(set (match_operand:SI 0 "register_operand")
715
        (match_operator:SI 1 "ordered_comparison_operator"
716
         [(match_operand:SI 2 "reg_or_0_operand" "")
717
          (match_operand:SI 3 "arith5_operand" "")]))]
718
  "!TARGET_64BIT"
719
  "")
720
 
721
;; Instruction canonicalization puts immediate operands second, which
722
;; is the reverse of what we want.
723
 
724
(define_insn "scc"
725
  [(set (match_operand:SI 0 "register_operand" "=r")
726
        (match_operator:SI 3 "comparison_operator"
727
                           [(match_operand:SI 1 "register_operand" "r")
728
                            (match_operand:SI 2 "arith11_operand" "rI")]))]
729
  ""
730
  "{com%I2clr|cmp%I2clr},%B3 %2,%1,%0\;ldi 1,%0"
731
  [(set_attr "type" "binary")
732
   (set_attr "length" "8")])
733
 
734
(define_insn ""
735
  [(set (match_operand:DI 0 "register_operand" "=r")
736
        (match_operator:DI 3 "comparison_operator"
737
                           [(match_operand:DI 1 "register_operand" "r")
738
                            (match_operand:DI 2 "arith11_operand" "rI")]))]
739
  "TARGET_64BIT"
740
  "cmp%I2clr,*%B3 %2,%1,%0\;ldi 1,%0"
741
  [(set_attr "type" "binary")
742
   (set_attr "length" "8")])
743
 
744
(define_insn "iorscc"
745
  [(set (match_operand:SI 0 "register_operand" "=r")
746
        (ior:SI (match_operator:SI 3 "comparison_operator"
747
                                   [(match_operand:SI 1 "register_operand" "r")
748
                                    (match_operand:SI 2 "arith11_operand" "rI")])
749
                (match_operator:SI 6 "comparison_operator"
750
                                   [(match_operand:SI 4 "register_operand" "r")
751
                                    (match_operand:SI 5 "arith11_operand" "rI")])))]
752
  ""
753
  "{com%I2clr|cmp%I2clr},%S3 %2,%1,%%r0\;{com%I5clr|cmp%I5clr},%B6 %5,%4,%0\;ldi 1,%0"
754
  [(set_attr "type" "binary")
755
   (set_attr "length" "12")])
756
 
757
(define_insn ""
758
  [(set (match_operand:DI 0 "register_operand" "=r")
759
        (ior:DI (match_operator:DI 3 "comparison_operator"
760
                                   [(match_operand:DI 1 "register_operand" "r")
761
                                    (match_operand:DI 2 "arith11_operand" "rI")])
762
                (match_operator:DI 6 "comparison_operator"
763
                                   [(match_operand:DI 4 "register_operand" "r")
764
                                    (match_operand:DI 5 "arith11_operand" "rI")])))]
765
  "TARGET_64BIT"
766
  "cmp%I2clr,*%S3 %2,%1,%%r0\;cmp%I5clr,*%B6 %5,%4,%0\;ldi 1,%0"
767
  [(set_attr "type" "binary")
768
   (set_attr "length" "12")])
769
 
770
;; Combiner patterns for common operations performed with the output
771
;; from an scc insn (negscc and incscc).
772
(define_insn "negscc"
773
  [(set (match_operand:SI 0 "register_operand" "=r")
774
        (neg:SI (match_operator:SI 3 "comparison_operator"
775
               [(match_operand:SI 1 "register_operand" "r")
776
                (match_operand:SI 2 "arith11_operand" "rI")])))]
777
  ""
778
  "{com%I2clr|cmp%I2clr},%B3 %2,%1,%0\;ldi -1,%0"
779
  [(set_attr "type" "binary")
780
   (set_attr "length" "8")])
781
 
782
(define_insn ""
783
  [(set (match_operand:DI 0 "register_operand" "=r")
784
        (neg:DI (match_operator:DI 3 "comparison_operator"
785
               [(match_operand:DI 1 "register_operand" "r")
786
                (match_operand:DI 2 "arith11_operand" "rI")])))]
787
  "TARGET_64BIT"
788
  "cmp%I2clr,*%B3 %2,%1,%0\;ldi -1,%0"
789
  [(set_attr "type" "binary")
790
   (set_attr "length" "8")])
791
 
792
;; Patterns for adding/subtracting the result of a boolean expression from
793
;; a register.  First we have special patterns that make use of the carry
794
;; bit, and output only two instructions.  For the cases we can't in
795
;; general do in two instructions, the incscc pattern at the end outputs
796
;; two or three instructions.
797
 
798
(define_insn ""
799
  [(set (match_operand:SI 0 "register_operand" "=r")
800
        (plus:SI (leu:SI (match_operand:SI 2 "register_operand" "r")
801
                         (match_operand:SI 3 "arith11_operand" "rI"))
802
                 (match_operand:SI 1 "register_operand" "r")))]
803
  ""
804
  "sub%I3 %3,%2,%%r0\;{addc|add,c} %%r0,%1,%0"
805
  [(set_attr "type" "binary")
806
   (set_attr "length" "8")])
807
 
808
(define_insn ""
809
  [(set (match_operand:DI 0 "register_operand" "=r")
810
        (plus:DI (leu:DI (match_operand:DI 2 "register_operand" "r")
811
                         (match_operand:DI 3 "arith11_operand" "rI"))
812
                 (match_operand:DI 1 "register_operand" "r")))]
813
  "TARGET_64BIT"
814
  "sub%I3 %3,%2,%%r0\;add,dc %%r0,%1,%0"
815
  [(set_attr "type" "binary")
816
   (set_attr "length" "8")])
817
 
818
; This need only accept registers for op3, since canonicalization
819
; replaces geu with gtu when op3 is an integer.
820
(define_insn ""
821
  [(set (match_operand:SI 0 "register_operand" "=r")
822
        (plus:SI (geu:SI (match_operand:SI 2 "register_operand" "r")
823
                         (match_operand:SI 3 "register_operand" "r"))
824
                 (match_operand:SI 1 "register_operand" "r")))]
825
  ""
826
  "sub %2,%3,%%r0\;{addc|add,c} %%r0,%1,%0"
827
  [(set_attr "type" "binary")
828
   (set_attr "length" "8")])
829
 
830
(define_insn ""
831
  [(set (match_operand:DI 0 "register_operand" "=r")
832
        (plus:DI (geu:DI (match_operand:DI 2 "register_operand" "r")
833
                         (match_operand:DI 3 "register_operand" "r"))
834
                 (match_operand:DI 1 "register_operand" "r")))]
835
  "TARGET_64BIT"
836
  "sub %2,%3,%%r0\;add,dc %%r0,%1,%0"
837
  [(set_attr "type" "binary")
838
   (set_attr "length" "8")])
839
 
840
; Match only integers for op3 here.  This is used as canonical form of the
841
; geu pattern when op3 is an integer.  Don't match registers since we can't
842
; make better code than the general incscc pattern.
843
(define_insn ""
844
  [(set (match_operand:SI 0 "register_operand" "=r")
845
        (plus:SI (gtu:SI (match_operand:SI 2 "register_operand" "r")
846
                         (match_operand:SI 3 "int11_operand" "I"))
847
                 (match_operand:SI 1 "register_operand" "r")))]
848
  ""
849
  "addi %k3,%2,%%r0\;{addc|add,c} %%r0,%1,%0"
850
  [(set_attr "type" "binary")
851
   (set_attr "length" "8")])
852
 
853
(define_insn ""
854
  [(set (match_operand:DI 0 "register_operand" "=r")
855
        (plus:DI (gtu:DI (match_operand:DI 2 "register_operand" "r")
856
                         (match_operand:DI 3 "int11_operand" "I"))
857
                 (match_operand:DI 1 "register_operand" "r")))]
858
  "TARGET_64BIT"
859
  "addi %k3,%2,%%r0\;add,dc %%r0,%1,%0"
860
  [(set_attr "type" "binary")
861
   (set_attr "length" "8")])
862
 
863
(define_insn "incscc"
864
  [(set (match_operand:SI 0 "register_operand" "=r,r")
865
        (plus:SI (match_operator:SI 4 "comparison_operator"
866
                    [(match_operand:SI 2 "register_operand" "r,r")
867
                     (match_operand:SI 3 "arith11_operand" "rI,rI")])
868
                 (match_operand:SI 1 "register_operand" "0,?r")))]
869
  ""
870
  "@
871
   {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi 1,%0,%0
872
   {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi,tr 1,%1,%0\;copy %1,%0"
873
  [(set_attr "type" "binary,binary")
874
   (set_attr "length" "8,12")])
875
 
876
(define_insn ""
877
  [(set (match_operand:DI 0 "register_operand" "=r,r")
878
        (plus:DI (match_operator:DI 4 "comparison_operator"
879
                    [(match_operand:DI 2 "register_operand" "r,r")
880
                     (match_operand:DI 3 "arith11_operand" "rI,rI")])
881
                 (match_operand:DI 1 "register_operand" "0,?r")))]
882
  "TARGET_64BIT"
883
  "@
884
   cmp%I3clr,*%B4 %3,%2,%%r0\;addi 1,%0,%0
885
   cmp%I3clr,*%B4 %3,%2,%%r0\;addi,tr 1,%1,%0\;copy %1,%0"
886
  [(set_attr "type" "binary,binary")
887
   (set_attr "length" "8,12")])
888
 
889
(define_insn ""
890
  [(set (match_operand:SI 0 "register_operand" "=r")
891
        (minus:SI (match_operand:SI 1 "register_operand" "r")
892
                  (gtu:SI (match_operand:SI 2 "register_operand" "r")
893
                          (match_operand:SI 3 "arith11_operand" "rI"))))]
894
  ""
895
  "sub%I3 %3,%2,%%r0\;{subb|sub,b} %1,%%r0,%0"
896
  [(set_attr "type" "binary")
897
   (set_attr "length" "8")])
898
 
899
(define_insn ""
900
  [(set (match_operand:DI 0 "register_operand" "=r")
901
        (minus:DI (match_operand:DI 1 "register_operand" "r")
902
                  (gtu:DI (match_operand:DI 2 "register_operand" "r")
903
                          (match_operand:DI 3 "arith11_operand" "rI"))))]
904
  "TARGET_64BIT"
905
  "sub%I3 %3,%2,%%r0\;sub,db %1,%%r0,%0"
906
  [(set_attr "type" "binary")
907
   (set_attr "length" "8")])
908
 
909
(define_insn ""
910
  [(set (match_operand:SI 0 "register_operand" "=r")
911
        (minus:SI (minus:SI (match_operand:SI 1 "register_operand" "r")
912
                            (gtu:SI (match_operand:SI 2 "register_operand" "r")
913
                                    (match_operand:SI 3 "arith11_operand" "rI")))
914
                  (match_operand:SI 4 "register_operand" "r")))]
915
  ""
916
  "sub%I3 %3,%2,%%r0\;{subb|sub,b} %1,%4,%0"
917
  [(set_attr "type" "binary")
918
   (set_attr "length" "8")])
919
 
920
(define_insn ""
921
  [(set (match_operand:DI 0 "register_operand" "=r")
922
        (minus:DI (minus:DI (match_operand:DI 1 "register_operand" "r")
923
                            (gtu:DI (match_operand:DI 2 "register_operand" "r")
924
                                    (match_operand:DI 3 "arith11_operand" "rI")))
925
                  (match_operand:DI 4 "register_operand" "r")))]
926
  "TARGET_64BIT"
927
  "sub%I3 %3,%2,%%r0\;sub,db %1,%4,%0"
928
  [(set_attr "type" "binary")
929
   (set_attr "length" "8")])
930
 
931
; This need only accept registers for op3, since canonicalization
932
; replaces ltu with leu when op3 is an integer.
933
(define_insn ""
934
  [(set (match_operand:SI 0 "register_operand" "=r")
935
        (minus:SI (match_operand:SI 1 "register_operand" "r")
936
                  (ltu:SI (match_operand:SI 2 "register_operand" "r")
937
                          (match_operand:SI 3 "register_operand" "r"))))]
938
  ""
939
  "sub %2,%3,%%r0\;{subb|sub,b} %1,%%r0,%0"
940
  [(set_attr "type" "binary")
941
   (set_attr "length" "8")])
942
 
943
(define_insn ""
944
  [(set (match_operand:DI 0 "register_operand" "=r")
945
        (minus:DI (match_operand:DI 1 "register_operand" "r")
946
                  (ltu:DI (match_operand:DI 2 "register_operand" "r")
947
                          (match_operand:DI 3 "register_operand" "r"))))]
948
  "TARGET_64BIT"
949
  "sub %2,%3,%%r0\;sub,db %1,%%r0,%0"
950
  [(set_attr "type" "binary")
951
   (set_attr "length" "8")])
952
 
953
(define_insn ""
954
  [(set (match_operand:SI 0 "register_operand" "=r")
955
        (minus:SI (minus:SI (match_operand:SI 1 "register_operand" "r")
956
                            (ltu:SI (match_operand:SI 2 "register_operand" "r")
957
                                    (match_operand:SI 3 "register_operand" "r")))
958
                  (match_operand:SI 4 "register_operand" "r")))]
959
  ""
960
  "sub %2,%3,%%r0\;{subb|sub,b} %1,%4,%0"
961
  [(set_attr "type" "binary")
962
   (set_attr "length" "8")])
963
 
964
(define_insn ""
965
  [(set (match_operand:DI 0 "register_operand" "=r")
966
        (minus:DI (minus:DI (match_operand:DI 1 "register_operand" "r")
967
                            (ltu:DI (match_operand:DI 2 "register_operand" "r")
968
                                    (match_operand:DI 3 "register_operand" "r")))
969
                  (match_operand:DI 4 "register_operand" "r")))]
970
  "TARGET_64BIT"
971
  "sub %2,%3,%%r0\;sub,db %1,%4,%0"
972
  [(set_attr "type" "binary")
973
   (set_attr "length" "8")])
974
 
975
; Match only integers for op3 here.  This is used as canonical form of the
976
; ltu pattern when op3 is an integer.  Don't match registers since we can't
977
; make better code than the general incscc pattern.
978
(define_insn ""
979
  [(set (match_operand:SI 0 "register_operand" "=r")
980
        (minus:SI (match_operand:SI 1 "register_operand" "r")
981
                  (leu:SI (match_operand:SI 2 "register_operand" "r")
982
                          (match_operand:SI 3 "int11_operand" "I"))))]
983
  ""
984
  "addi %k3,%2,%%r0\;{subb|sub,b} %1,%%r0,%0"
985
  [(set_attr "type" "binary")
986
   (set_attr "length" "8")])
987
 
988
(define_insn ""
989
  [(set (match_operand:DI 0 "register_operand" "=r")
990
        (minus:DI (match_operand:DI 1 "register_operand" "r")
991
                  (leu:DI (match_operand:DI 2 "register_operand" "r")
992
                          (match_operand:DI 3 "int11_operand" "I"))))]
993
  "TARGET_64BIT"
994
  "addi %k3,%2,%%r0\;sub,db %1,%%r0,%0"
995
  [(set_attr "type" "binary")
996
   (set_attr "length" "8")])
997
 
998
(define_insn ""
999
  [(set (match_operand:SI 0 "register_operand" "=r")
1000
        (minus:SI (minus:SI (match_operand:SI 1 "register_operand" "r")
1001
                            (leu:SI (match_operand:SI 2 "register_operand" "r")
1002
                                    (match_operand:SI 3 "int11_operand" "I")))
1003
                  (match_operand:SI 4 "register_operand" "r")))]
1004
  ""
1005
  "addi %k3,%2,%%r0\;{subb|sub,b} %1,%4,%0"
1006
  [(set_attr "type" "binary")
1007
   (set_attr "length" "8")])
1008
 
1009
(define_insn ""
1010
  [(set (match_operand:DI 0 "register_operand" "=r")
1011
        (minus:DI (minus:DI (match_operand:DI 1 "register_operand" "r")
1012
                            (leu:DI (match_operand:DI 2 "register_operand" "r")
1013
                                    (match_operand:DI 3 "int11_operand" "I")))
1014
                  (match_operand:DI 4 "register_operand" "r")))]
1015
  "TARGET_64BIT"
1016
  "addi %k3,%2,%%r0\;sub,db %1,%4,%0"
1017
  [(set_attr "type" "binary")
1018
   (set_attr "length" "8")])
1019
 
1020
(define_insn "decscc"
1021
  [(set (match_operand:SI 0 "register_operand" "=r,r")
1022
        (minus:SI (match_operand:SI 1 "register_operand" "0,?r")
1023
                  (match_operator:SI 4 "comparison_operator"
1024
                     [(match_operand:SI 2 "register_operand" "r,r")
1025
                      (match_operand:SI 3 "arith11_operand" "rI,rI")])))]
1026
  ""
1027
  "@
1028
   {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi -1,%0,%0
1029
   {com%I3clr|cmp%I3clr},%B4 %3,%2,%%r0\;addi,tr -1,%1,%0\;copy %1,%0"
1030
  [(set_attr "type" "binary,binary")
1031
   (set_attr "length" "8,12")])
1032
 
1033
(define_insn ""
1034
  [(set (match_operand:DI 0 "register_operand" "=r,r")
1035
        (minus:DI (match_operand:DI 1 "register_operand" "0,?r")
1036
                  (match_operator:DI 4 "comparison_operator"
1037
                     [(match_operand:DI 2 "register_operand" "r,r")
1038
                      (match_operand:DI 3 "arith11_operand" "rI,rI")])))]
1039
  "TARGET_64BIT"
1040
  "@
1041
   cmp%I3clr,*%B4 %3,%2,%%r0\;addi -1,%0,%0
1042
   cmp%I3clr,*%B4 %3,%2,%%r0\;addi,tr -1,%1,%0\;copy %1,%0"
1043
  [(set_attr "type" "binary,binary")
1044
   (set_attr "length" "8,12")])
1045
 
1046
; Patterns for max and min.  (There is no need for an earlyclobber in the
1047
; last alternative since the middle alternative will match if op0 == op1.)
1048
 
1049
(define_insn "sminsi3"
1050
  [(set (match_operand:SI 0 "register_operand" "=r,r,r")
1051
        (smin:SI (match_operand:SI 1 "register_operand" "%0,0,r")
1052
                 (match_operand:SI 2 "arith11_operand" "r,I,M")))]
1053
  ""
1054
  "@
1055
  {comclr|cmpclr},> %2,%0,%%r0\;copy %2,%0
1056
  {comiclr|cmpiclr},> %2,%0,%%r0\;ldi %2,%0
1057
  {comclr|cmpclr},> %1,%r2,%0\;copy %1,%0"
1058
[(set_attr "type" "multi,multi,multi")
1059
 (set_attr "length" "8,8,8")])
1060
 
1061
(define_insn "smindi3"
1062
  [(set (match_operand:DI 0 "register_operand" "=r,r,r")
1063
        (smin:DI (match_operand:DI 1 "register_operand" "%0,0,r")
1064
                 (match_operand:DI 2 "arith11_operand" "r,I,M")))]
1065
  "TARGET_64BIT"
1066
  "@
1067
  cmpclr,*> %2,%0,%%r0\;copy %2,%0
1068
  cmpiclr,*> %2,%0,%%r0\;ldi %2,%0
1069
  cmpclr,*> %1,%r2,%0\;copy %1,%0"
1070
[(set_attr "type" "multi,multi,multi")
1071
 (set_attr "length" "8,8,8")])
1072
 
1073
(define_insn "uminsi3"
1074
  [(set (match_operand:SI 0 "register_operand" "=r,r")
1075
        (umin:SI (match_operand:SI 1 "register_operand" "%0,0")
1076
                 (match_operand:SI 2 "arith11_operand" "r,I")))]
1077
  ""
1078
  "@
1079
  {comclr|cmpclr},>> %2,%0,%%r0\;copy %2,%0
1080
  {comiclr|cmpiclr},>> %2,%0,%%r0\;ldi %2,%0"
1081
[(set_attr "type" "multi,multi")
1082
 (set_attr "length" "8,8")])
1083
 
1084
(define_insn "umindi3"
1085
  [(set (match_operand:DI 0 "register_operand" "=r,r")
1086
        (umin:DI (match_operand:DI 1 "register_operand" "%0,0")
1087
                 (match_operand:DI 2 "arith11_operand" "r,I")))]
1088
  "TARGET_64BIT"
1089
  "@
1090
  cmpclr,*>> %2,%0,%%r0\;copy %2,%0
1091
  cmpiclr,*>> %2,%0,%%r0\;ldi %2,%0"
1092
[(set_attr "type" "multi,multi")
1093
 (set_attr "length" "8,8")])
1094
 
1095
(define_insn "smaxsi3"
1096
  [(set (match_operand:SI 0 "register_operand" "=r,r,r")
1097
        (smax:SI (match_operand:SI 1 "register_operand" "%0,0,r")
1098
                 (match_operand:SI 2 "arith11_operand" "r,I,M")))]
1099
  ""
1100
  "@
1101
  {comclr|cmpclr},< %2,%0,%%r0\;copy %2,%0
1102
  {comiclr|cmpiclr},< %2,%0,%%r0\;ldi %2,%0
1103
  {comclr|cmpclr},< %1,%r2,%0\;copy %1,%0"
1104
[(set_attr "type" "multi,multi,multi")
1105
 (set_attr "length" "8,8,8")])
1106
 
1107
(define_insn "smaxdi3"
1108
  [(set (match_operand:DI 0 "register_operand" "=r,r,r")
1109
        (smax:DI (match_operand:DI 1 "register_operand" "%0,0,r")
1110
                 (match_operand:DI 2 "arith11_operand" "r,I,M")))]
1111
  "TARGET_64BIT"
1112
  "@
1113
  cmpclr,*< %2,%0,%%r0\;copy %2,%0
1114
  cmpiclr,*< %2,%0,%%r0\;ldi %2,%0
1115
  cmpclr,*< %1,%r2,%0\;copy %1,%0"
1116
[(set_attr "type" "multi,multi,multi")
1117
 (set_attr "length" "8,8,8")])
1118
 
1119
(define_insn "umaxsi3"
1120
  [(set (match_operand:SI 0 "register_operand" "=r,r")
1121
        (umax:SI (match_operand:SI 1 "register_operand" "%0,0")
1122
                 (match_operand:SI 2 "arith11_operand" "r,I")))]
1123
  ""
1124
  "@
1125
  {comclr|cmpclr},<< %2,%0,%%r0\;copy %2,%0
1126
  {comiclr|cmpiclr},<< %2,%0,%%r0\;ldi %2,%0"
1127
[(set_attr "type" "multi,multi")
1128
 (set_attr "length" "8,8")])
1129
 
1130
(define_insn "umaxdi3"
1131
  [(set (match_operand:DI 0 "register_operand" "=r,r")
1132
        (umax:DI (match_operand:DI 1 "register_operand" "%0,0")
1133
                 (match_operand:DI 2 "arith11_operand" "r,I")))]
1134
  "TARGET_64BIT"
1135
  "@
1136
  cmpclr,*<< %2,%0,%%r0\;copy %2,%0
1137
  cmpiclr,*<< %2,%0,%%r0\;ldi %2,%0"
1138
[(set_attr "type" "multi,multi")
1139
 (set_attr "length" "8,8")])
1140
 
1141
(define_insn "abssi2"
1142
  [(set (match_operand:SI 0 "register_operand" "=r")
1143
        (abs:SI (match_operand:SI 1 "register_operand" "r")))]
1144
  ""
1145
  "or,>= %%r0,%1,%0\;subi 0,%0,%0"
1146
  [(set_attr "type" "multi")
1147
   (set_attr "length" "8")])
1148
 
1149
(define_insn "absdi2"
1150
  [(set (match_operand:DI 0 "register_operand" "=r")
1151
        (abs:DI (match_operand:DI 1 "register_operand" "r")))]
1152
  "TARGET_64BIT"
1153
  "or,*>= %%r0,%1,%0\;subi 0,%0,%0"
1154
  [(set_attr "type" "multi")
1155
   (set_attr "length" "8")])
1156
 
1157
;;; Experimental conditional move patterns
1158
 
1159
(define_expand "movsicc"
1160
  [(set (match_operand:SI 0 "register_operand" "")
1161
        (if_then_else:SI
1162
         (match_operand 1 "comparison_operator" "")
1163
         (match_operand:SI 2 "reg_or_cint_move_operand" "")
1164
         (match_operand:SI 3 "reg_or_cint_move_operand" "")))]
1165
  ""
1166
  "
1167
{
1168
  if (GET_MODE (XEXP (operands[1], 0)) != SImode
1169
      || GET_MODE (XEXP (operands[1], 0)) != GET_MODE (XEXP (operands[1], 1)))
1170
    FAIL;
1171
}")
1172
 
1173
;; We used to accept any register for op1.
1174
;;
1175
;; However, it loses sometimes because the compiler will end up using
1176
;; different registers for op0 and op1 in some critical cases.  local-alloc
1177
;; will  not tie op0 and op1 because op0 is used in multiple basic blocks.
1178
;;
1179
;; If/when global register allocation supports tying we should allow any
1180
;; register for op1 again.
1181
(define_insn ""
1182
  [(set (match_operand:SI 0 "register_operand" "=r,r,r,r")
1183
        (if_then_else:SI
1184
         (match_operator 2 "comparison_operator"
1185
            [(match_operand:SI 3 "register_operand" "r,r,r,r")
1186
             (match_operand:SI 4 "arith11_operand" "rI,rI,rI,rI")])
1187
         (match_operand:SI 1 "reg_or_cint_move_operand" "0,J,N,K")
1188
         (const_int 0)))]
1189
  ""
1190
  "@
1191
   {com%I4clr|cmp%I4clr},%S2 %4,%3,%%r0\;ldi 0,%0
1192
   {com%I4clr|cmp%I4clr},%B2 %4,%3,%0\;ldi %1,%0
1193
   {com%I4clr|cmp%I4clr},%B2 %4,%3,%0\;ldil L'%1,%0
1194
   {com%I4clr|cmp%I4clr},%B2 %4,%3,%0\;{zdepi|depwi,z} %Z1,%0"
1195
  [(set_attr "type" "multi,multi,multi,nullshift")
1196
   (set_attr "length" "8,8,8,8")])
1197
 
1198
(define_insn ""
1199
  [(set (match_operand:SI 0 "register_operand" "=r,r,r,r,r,r,r,r")
1200
        (if_then_else:SI
1201
         (match_operator 5 "comparison_operator"
1202
            [(match_operand:SI 3 "register_operand" "r,r,r,r,r,r,r,r")
1203
             (match_operand:SI 4 "arith11_operand" "rI,rI,rI,rI,rI,rI,rI,rI")])
1204
         (match_operand:SI 1 "reg_or_cint_move_operand" "0,0,0,0,r,J,N,K")
1205
         (match_operand:SI 2 "reg_or_cint_move_operand" "r,J,N,K,0,0,0,0")))]
1206
  ""
1207
  "@
1208
   {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;copy %2,%0
1209
   {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;ldi %2,%0
1210
   {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;ldil L'%2,%0
1211
   {com%I4clr|cmp%I4clr},%S5 %4,%3,%%r0\;{zdepi|depwi,z} %Z2,%0
1212
   {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;copy %1,%0
1213
   {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;ldi %1,%0
1214
   {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;ldil L'%1,%0
1215
   {com%I4clr|cmp%I4clr},%B5 %4,%3,%%r0\;{zdepi|depwi,z} %Z1,%0"
1216
  [(set_attr "type" "multi,multi,multi,nullshift,multi,multi,multi,nullshift")
1217
   (set_attr "length" "8,8,8,8,8,8,8,8")])
1218
 
1219
(define_expand "movdicc"
1220
  [(set (match_operand:DI 0 "register_operand" "")
1221
        (if_then_else:DI
1222
         (match_operand 1 "comparison_operator" "")
1223
         (match_operand:DI 2 "reg_or_cint_move_operand" "")
1224
         (match_operand:DI 3 "reg_or_cint_move_operand" "")))]
1225
  "TARGET_64BIT"
1226
  "
1227
{
1228
  if (GET_MODE (XEXP (operands[1], 0)) != DImode
1229
      || GET_MODE (XEXP (operands[1], 0)) != GET_MODE (XEXP (operands[1], 1)))
1230
    FAIL;
1231
}")
1232
 
1233
; We need the first constraint alternative in order to avoid
1234
; earlyclobbers on all other alternatives.
1235
(define_insn ""
1236
  [(set (match_operand:DI 0 "register_operand" "=r,r,r,r,r")
1237
        (if_then_else:DI
1238
         (match_operator 2 "comparison_operator"
1239
            [(match_operand:DI 3 "register_operand" "r,r,r,r,r")
1240
             (match_operand:DI 4 "arith11_operand" "rI,rI,rI,rI,rI")])
1241
         (match_operand:DI 1 "reg_or_cint_move_operand" "0,r,J,N,K")
1242
         (const_int 0)))]
1243
  "TARGET_64BIT"
1244
  "@
1245
   cmp%I4clr,*%S2 %4,%3,%%r0\;ldi 0,%0
1246
   cmp%I4clr,*%B2 %4,%3,%0\;copy %1,%0
1247
   cmp%I4clr,*%B2 %4,%3,%0\;ldi %1,%0
1248
   cmp%I4clr,*%B2 %4,%3,%0\;ldil L'%1,%0
1249
   cmp%I4clr,*%B2 %4,%3,%0\;depdi,z %z1,%0"
1250
  [(set_attr "type" "multi,multi,multi,multi,nullshift")
1251
   (set_attr "length" "8,8,8,8,8")])
1252
 
1253
(define_insn ""
1254
  [(set (match_operand:DI 0 "register_operand" "=r,r,r,r,r,r,r,r")
1255
        (if_then_else:DI
1256
         (match_operator 5 "comparison_operator"
1257
            [(match_operand:DI 3 "register_operand" "r,r,r,r,r,r,r,r")
1258
             (match_operand:DI 4 "arith11_operand" "rI,rI,rI,rI,rI,rI,rI,rI")])
1259
         (match_operand:DI 1 "reg_or_cint_move_operand" "0,0,0,0,r,J,N,K")
1260
         (match_operand:DI 2 "reg_or_cint_move_operand" "r,J,N,K,0,0,0,0")))]
1261
  "TARGET_64BIT"
1262
  "@
1263
   cmp%I4clr,*%S5 %4,%3,%%r0\;copy %2,%0
1264
   cmp%I4clr,*%S5 %4,%3,%%r0\;ldi %2,%0
1265
   cmp%I4clr,*%S5 %4,%3,%%r0\;ldil L'%2,%0
1266
   cmp%I4clr,*%S5 %4,%3,%%r0\;depdi,z %z2,%0
1267
   cmp%I4clr,*%B5 %4,%3,%%r0\;copy %1,%0
1268
   cmp%I4clr,*%B5 %4,%3,%%r0\;ldi %1,%0
1269
   cmp%I4clr,*%B5 %4,%3,%%r0\;ldil L'%1,%0
1270
   cmp%I4clr,*%B5 %4,%3,%%r0\;depdi,z %z1,%0"
1271
  [(set_attr "type" "multi,multi,multi,nullshift,multi,multi,multi,nullshift")
1272
   (set_attr "length" "8,8,8,8,8,8,8,8")])
1273
 
1274
;; Conditional Branches
1275
 
1276
(define_expand "cbranchdi4"
1277
  [(set (pc)
1278
        (if_then_else (match_operator 0 "ordered_comparison_operator"
1279
                       [(match_operand:DI 1 "reg_or_0_operand" "")
1280
                        (match_operand:DI 2 "register_operand" "")])
1281
                      (label_ref (match_operand 3 "" ""))
1282
                      (pc)))]
1283
  "TARGET_64BIT"
1284
  "")
1285
 
1286
(define_expand "cbranchsi4"
1287
  [(set (pc)
1288
        (if_then_else (match_operator 0 "ordered_comparison_operator"
1289
                       [(match_operand:SI 1 "reg_or_0_operand" "")
1290
                        (match_operand:SI 2 "arith5_operand" "")])
1291
                      (label_ref (match_operand 3 "" ""))
1292
                      (pc)))]
1293
  ""
1294
  "")
1295
 
1296
(define_expand "cbranchsf4"
1297
  [(set (pc)
1298
        (if_then_else (match_operator 0 "comparison_operator"
1299
                       [(match_operand:SF 1 "reg_or_0_operand" "")
1300
                        (match_operand:SF 2 "reg_or_0_operand" "")])
1301
                      (label_ref (match_operand 3 "" ""))
1302
                      (pc)))]
1303
  ""
1304
  "
1305
{
1306
  emit_bcond_fp (operands);
1307
  DONE;
1308
}")
1309
 
1310
 
1311
(define_expand "cbranchdf4"
1312
  [(set (pc)
1313
        (if_then_else (match_operator 0 "comparison_operator"
1314
                       [(match_operand:DF 1 "reg_or_0_operand" "")
1315
                        (match_operand:DF 2 "reg_or_0_operand" "")])
1316
                      (label_ref (match_operand 3 "" ""))
1317
                      (pc)))]
1318
  ""
1319
  "
1320
{
1321
  emit_bcond_fp (operands);
1322
  DONE;
1323
}")
1324
 
1325
;; Match the branch patterns.
1326
 
1327
 
1328
;; Note a long backward conditional branch with an annulled delay slot
1329
;; has a length of 12.
1330
(define_insn ""
1331
  [(set (pc)
1332
        (if_then_else
1333
         (match_operator 3 "comparison_operator"
1334
                         [(match_operand:SI 1 "reg_or_0_operand" "rM")
1335
                          (match_operand:SI 2 "arith5_operand" "rL")])
1336
         (label_ref (match_operand 0 "" ""))
1337
         (pc)))]
1338
  ""
1339
  "*
1340
{
1341
  return output_cbranch (operands, 0, insn);
1342
}"
1343
[(set_attr "type" "cbranch")
1344
 (set (attr "length")
1345
    (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1346
               (const_int MAX_12BIT_OFFSET))
1347
           (const_int 4)
1348
           (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1349
               (const_int MAX_17BIT_OFFSET))
1350
           (const_int 8)
1351
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1352
           (const_int 24)
1353
           (eq (symbol_ref "flag_pic") (const_int 0))
1354
           (const_int 20)]
1355
          (const_int 28)))])
1356
 
1357
;; Match the negated branch.
1358
 
1359
(define_insn ""
1360
  [(set (pc)
1361
        (if_then_else
1362
         (match_operator 3 "comparison_operator"
1363
                         [(match_operand:SI 1 "reg_or_0_operand" "rM")
1364
                          (match_operand:SI 2 "arith5_operand" "rL")])
1365
         (pc)
1366
         (label_ref (match_operand 0 "" ""))))]
1367
  ""
1368
  "*
1369
{
1370
  return output_cbranch (operands, 1, insn);
1371
}"
1372
[(set_attr "type" "cbranch")
1373
 (set (attr "length")
1374
    (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1375
               (const_int MAX_12BIT_OFFSET))
1376
           (const_int 4)
1377
           (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1378
               (const_int MAX_17BIT_OFFSET))
1379
           (const_int 8)
1380
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1381
           (const_int 24)
1382
           (eq (symbol_ref "flag_pic") (const_int 0))
1383
           (const_int 20)]
1384
          (const_int 28)))])
1385
 
1386
(define_insn ""
1387
  [(set (pc)
1388
        (if_then_else
1389
         (match_operator 3 "comparison_operator"
1390
                         [(match_operand:DI 1 "reg_or_0_operand" "rM")
1391
                          (match_operand:DI 2 "reg_or_0_operand" "rM")])
1392
         (label_ref (match_operand 0 "" ""))
1393
         (pc)))]
1394
  "TARGET_64BIT"
1395
  "*
1396
{
1397
  return output_cbranch (operands, 0, insn);
1398
}"
1399
[(set_attr "type" "cbranch")
1400
 (set (attr "length")
1401
    (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1402
               (const_int MAX_12BIT_OFFSET))
1403
           (const_int 4)
1404
           (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1405
               (const_int MAX_17BIT_OFFSET))
1406
           (const_int 8)
1407
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1408
           (const_int 24)
1409
           (eq (symbol_ref "flag_pic") (const_int 0))
1410
           (const_int 20)]
1411
          (const_int 28)))])
1412
 
1413
;; Match the negated branch.
1414
 
1415
(define_insn ""
1416
  [(set (pc)
1417
        (if_then_else
1418
         (match_operator 3 "comparison_operator"
1419
                         [(match_operand:DI 1 "reg_or_0_operand" "rM")
1420
                          (match_operand:DI 2 "reg_or_0_operand" "rM")])
1421
         (pc)
1422
         (label_ref (match_operand 0 "" ""))))]
1423
  "TARGET_64BIT"
1424
  "*
1425
{
1426
  return output_cbranch (operands, 1, insn);
1427
}"
1428
[(set_attr "type" "cbranch")
1429
 (set (attr "length")
1430
    (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1431
               (const_int MAX_12BIT_OFFSET))
1432
           (const_int 4)
1433
           (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1434
               (const_int MAX_17BIT_OFFSET))
1435
           (const_int 8)
1436
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1437
           (const_int 24)
1438
           (eq (symbol_ref "flag_pic") (const_int 0))
1439
           (const_int 20)]
1440
          (const_int 28)))])
1441
(define_insn ""
1442
  [(set (pc)
1443
        (if_then_else
1444
         (match_operator 3 "cmpib_comparison_operator"
1445
                         [(match_operand:DI 1 "reg_or_0_operand" "rM")
1446
                          (match_operand:DI 2 "arith5_operand" "rL")])
1447
         (label_ref (match_operand 0 "" ""))
1448
         (pc)))]
1449
  "TARGET_64BIT"
1450
  "*
1451
{
1452
  return output_cbranch (operands, 0, insn);
1453
}"
1454
[(set_attr "type" "cbranch")
1455
 (set (attr "length")
1456
    (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1457
               (const_int MAX_12BIT_OFFSET))
1458
           (const_int 4)
1459
           (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1460
               (const_int MAX_17BIT_OFFSET))
1461
           (const_int 8)
1462
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1463
           (const_int 24)
1464
           (eq (symbol_ref "flag_pic") (const_int 0))
1465
           (const_int 20)]
1466
          (const_int 28)))])
1467
 
1468
;; Match the negated branch.
1469
 
1470
(define_insn ""
1471
  [(set (pc)
1472
        (if_then_else
1473
         (match_operator 3 "cmpib_comparison_operator"
1474
                         [(match_operand:DI 1 "reg_or_0_operand" "rM")
1475
                          (match_operand:DI 2 "arith5_operand" "rL")])
1476
         (pc)
1477
         (label_ref (match_operand 0 "" ""))))]
1478
  "TARGET_64BIT"
1479
  "*
1480
{
1481
  return output_cbranch (operands, 1, insn);
1482
}"
1483
[(set_attr "type" "cbranch")
1484
 (set (attr "length")
1485
    (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1486
               (const_int MAX_12BIT_OFFSET))
1487
           (const_int 4)
1488
           (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1489
               (const_int MAX_17BIT_OFFSET))
1490
           (const_int 8)
1491
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1492
           (const_int 24)
1493
           (eq (symbol_ref "flag_pic") (const_int 0))
1494
           (const_int 20)]
1495
          (const_int 28)))])
1496
 
1497
;; Branch on Bit patterns.
1498
(define_insn ""
1499
  [(set (pc)
1500
        (if_then_else
1501
         (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1502
                              (const_int 1)
1503
                              (match_operand:SI 1 "uint5_operand" ""))
1504
             (const_int 0))
1505
         (label_ref (match_operand 2 "" ""))
1506
         (pc)))]
1507
  ""
1508
  "*
1509
{
1510
  return output_bb (operands, 0, insn, 0);
1511
}"
1512
[(set_attr "type" "cbranch")
1513
 (set (attr "length")
1514
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1515
               (const_int MAX_12BIT_OFFSET))
1516
           (const_int 4)
1517
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1518
               (const_int MAX_17BIT_OFFSET))
1519
           (const_int 8)
1520
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1521
           (const_int 24)
1522
           (eq (symbol_ref "flag_pic") (const_int 0))
1523
           (const_int 20)]
1524
          (const_int 28)))])
1525
 
1526
(define_insn ""
1527
  [(set (pc)
1528
        (if_then_else
1529
         (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1530
                              (const_int 1)
1531
                              (match_operand:DI 1 "uint32_operand" ""))
1532
             (const_int 0))
1533
         (label_ref (match_operand 2 "" ""))
1534
         (pc)))]
1535
  "TARGET_64BIT"
1536
  "*
1537
{
1538
  return output_bb (operands, 0, insn, 0);
1539
}"
1540
[(set_attr "type" "cbranch")
1541
 (set (attr "length")
1542
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1543
               (const_int MAX_12BIT_OFFSET))
1544
           (const_int 4)
1545
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1546
               (const_int MAX_17BIT_OFFSET))
1547
           (const_int 8)
1548
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1549
           (const_int 24)
1550
           (eq (symbol_ref "flag_pic") (const_int 0))
1551
           (const_int 20)]
1552
          (const_int 28)))])
1553
 
1554
(define_insn ""
1555
  [(set (pc)
1556
        (if_then_else
1557
         (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1558
                              (const_int 1)
1559
                              (match_operand:SI 1 "uint5_operand" ""))
1560
             (const_int 0))
1561
         (pc)
1562
         (label_ref (match_operand 2 "" ""))))]
1563
  ""
1564
  "*
1565
{
1566
  return output_bb (operands, 1, insn, 0);
1567
}"
1568
[(set_attr "type" "cbranch")
1569
 (set (attr "length")
1570
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1571
               (const_int MAX_12BIT_OFFSET))
1572
           (const_int 4)
1573
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1574
               (const_int MAX_17BIT_OFFSET))
1575
           (const_int 8)
1576
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1577
           (const_int 24)
1578
           (eq (symbol_ref "flag_pic") (const_int 0))
1579
           (const_int 20)]
1580
          (const_int 28)))])
1581
 
1582
(define_insn ""
1583
  [(set (pc)
1584
        (if_then_else
1585
         (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1586
                              (const_int 1)
1587
                              (match_operand:DI 1 "uint32_operand" ""))
1588
             (const_int 0))
1589
         (pc)
1590
         (label_ref (match_operand 2 "" ""))))]
1591
  "TARGET_64BIT"
1592
  "*
1593
{
1594
  return output_bb (operands, 1, insn, 0);
1595
}"
1596
[(set_attr "type" "cbranch")
1597
 (set (attr "length")
1598
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1599
               (const_int MAX_12BIT_OFFSET))
1600
           (const_int 4)
1601
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1602
               (const_int MAX_17BIT_OFFSET))
1603
           (const_int 8)
1604
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1605
           (const_int 24)
1606
           (eq (symbol_ref "flag_pic") (const_int 0))
1607
           (const_int 20)]
1608
          (const_int 28)))])
1609
 
1610
(define_insn ""
1611
  [(set (pc)
1612
        (if_then_else
1613
         (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1614
                              (const_int 1)
1615
                              (match_operand:SI 1 "uint5_operand" ""))
1616
             (const_int 0))
1617
         (label_ref (match_operand 2 "" ""))
1618
         (pc)))]
1619
  ""
1620
  "*
1621
{
1622
  return output_bb (operands, 0, insn, 1);
1623
}"
1624
[(set_attr "type" "cbranch")
1625
 (set (attr "length")
1626
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1627
               (const_int MAX_12BIT_OFFSET))
1628
           (const_int 4)
1629
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1630
               (const_int MAX_17BIT_OFFSET))
1631
           (const_int 8)
1632
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1633
           (const_int 24)
1634
           (eq (symbol_ref "flag_pic") (const_int 0))
1635
           (const_int 20)]
1636
          (const_int 28)))])
1637
 
1638
(define_insn ""
1639
  [(set (pc)
1640
        (if_then_else
1641
         (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1642
                              (const_int 1)
1643
                              (match_operand:DI 1 "uint32_operand" ""))
1644
             (const_int 0))
1645
         (label_ref (match_operand 2 "" ""))
1646
         (pc)))]
1647
  "TARGET_64BIT"
1648
  "*
1649
{
1650
  return output_bb (operands, 0, insn, 1);
1651
}"
1652
[(set_attr "type" "cbranch")
1653
 (set (attr "length")
1654
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1655
               (const_int MAX_12BIT_OFFSET))
1656
           (const_int 4)
1657
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1658
               (const_int MAX_17BIT_OFFSET))
1659
           (const_int 8)
1660
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1661
           (const_int 24)
1662
           (eq (symbol_ref "flag_pic") (const_int 0))
1663
           (const_int 20)]
1664
          (const_int 28)))])
1665
 
1666
(define_insn ""
1667
  [(set (pc)
1668
        (if_then_else
1669
         (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1670
                              (const_int 1)
1671
                              (match_operand:SI 1 "uint5_operand" ""))
1672
             (const_int 0))
1673
         (pc)
1674
         (label_ref (match_operand 2 "" ""))))]
1675
  ""
1676
  "*
1677
{
1678
  return output_bb (operands, 1, insn, 1);
1679
}"
1680
[(set_attr "type" "cbranch")
1681
 (set (attr "length")
1682
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1683
               (const_int MAX_12BIT_OFFSET))
1684
           (const_int 4)
1685
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1686
               (const_int MAX_17BIT_OFFSET))
1687
           (const_int 8)
1688
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1689
           (const_int 24)
1690
           (eq (symbol_ref "flag_pic") (const_int 0))
1691
           (const_int 20)]
1692
          (const_int 28)))])
1693
 
1694
(define_insn ""
1695
  [(set (pc)
1696
        (if_then_else
1697
         (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1698
                              (const_int 1)
1699
                              (match_operand:DI 1 "uint32_operand" ""))
1700
             (const_int 0))
1701
         (pc)
1702
         (label_ref (match_operand 2 "" ""))))]
1703
  "TARGET_64BIT"
1704
  "*
1705
{
1706
  return output_bb (operands, 1, insn, 1);
1707
}"
1708
[(set_attr "type" "cbranch")
1709
 (set (attr "length")
1710
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1711
               (const_int MAX_12BIT_OFFSET))
1712
           (const_int 4)
1713
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1714
               (const_int MAX_17BIT_OFFSET))
1715
           (const_int 8)
1716
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1717
           (const_int 24)
1718
           (eq (symbol_ref "flag_pic") (const_int 0))
1719
           (const_int 20)]
1720
          (const_int 28)))])
1721
 
1722
;; Branch on Variable Bit patterns.
1723
(define_insn ""
1724
  [(set (pc)
1725
        (if_then_else
1726
         (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1727
                              (const_int 1)
1728
                              (match_operand:SI 1 "register_operand" "q"))
1729
             (const_int 0))
1730
         (label_ref (match_operand 2 "" ""))
1731
         (pc)))]
1732
  ""
1733
  "*
1734
{
1735
  return output_bvb (operands, 0, insn, 0);
1736
}"
1737
[(set_attr "type" "cbranch")
1738
 (set (attr "length")
1739
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1740
               (const_int MAX_12BIT_OFFSET))
1741
           (const_int 4)
1742
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1743
               (const_int MAX_17BIT_OFFSET))
1744
           (const_int 8)
1745
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1746
           (const_int 24)
1747
           (eq (symbol_ref "flag_pic") (const_int 0))
1748
           (const_int 20)]
1749
          (const_int 28)))])
1750
 
1751
(define_insn ""
1752
  [(set (pc)
1753
        (if_then_else
1754
         (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1755
                              (const_int 1)
1756
                              (match_operand:DI 1 "register_operand" "q"))
1757
             (const_int 0))
1758
         (label_ref (match_operand 2 "" ""))
1759
         (pc)))]
1760
  "TARGET_64BIT"
1761
  "*
1762
{
1763
  return output_bvb (operands, 0, insn, 0);
1764
}"
1765
[(set_attr "type" "cbranch")
1766
 (set (attr "length")
1767
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1768
               (const_int MAX_12BIT_OFFSET))
1769
           (const_int 4)
1770
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1771
               (const_int MAX_17BIT_OFFSET))
1772
           (const_int 8)
1773
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1774
           (const_int 24)
1775
           (eq (symbol_ref "flag_pic") (const_int 0))
1776
           (const_int 20)]
1777
          (const_int 28)))])
1778
 
1779
(define_insn ""
1780
  [(set (pc)
1781
        (if_then_else
1782
         (ne (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1783
                              (const_int 1)
1784
                              (match_operand:SI 1 "register_operand" "q"))
1785
             (const_int 0))
1786
         (pc)
1787
         (label_ref (match_operand 2 "" ""))))]
1788
  ""
1789
  "*
1790
{
1791
  return output_bvb (operands, 1, insn, 0);
1792
}"
1793
[(set_attr "type" "cbranch")
1794
 (set (attr "length")
1795
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1796
               (const_int MAX_12BIT_OFFSET))
1797
           (const_int 4)
1798
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1799
               (const_int MAX_17BIT_OFFSET))
1800
           (const_int 8)
1801
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1802
           (const_int 24)
1803
           (eq (symbol_ref "flag_pic") (const_int 0))
1804
           (const_int 20)]
1805
          (const_int 28)))])
1806
 
1807
(define_insn ""
1808
  [(set (pc)
1809
        (if_then_else
1810
         (ne (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1811
                              (const_int 1)
1812
                              (match_operand:DI 1 "register_operand" "q"))
1813
             (const_int 0))
1814
         (pc)
1815
         (label_ref (match_operand 2 "" ""))))]
1816
  "TARGET_64BIT"
1817
  "*
1818
{
1819
  return output_bvb (operands, 1, insn, 0);
1820
}"
1821
[(set_attr "type" "cbranch")
1822
 (set (attr "length")
1823
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1824
               (const_int MAX_12BIT_OFFSET))
1825
           (const_int 4)
1826
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1827
               (const_int MAX_17BIT_OFFSET))
1828
           (const_int 8)
1829
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1830
           (const_int 24)
1831
           (eq (symbol_ref "flag_pic") (const_int 0))
1832
           (const_int 20)]
1833
          (const_int 28)))])
1834
 
1835
(define_insn ""
1836
  [(set (pc)
1837
        (if_then_else
1838
         (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1839
                              (const_int 1)
1840
                              (match_operand:SI 1 "register_operand" "q"))
1841
             (const_int 0))
1842
         (label_ref (match_operand 2 "" ""))
1843
         (pc)))]
1844
  ""
1845
  "*
1846
{
1847
  return output_bvb (operands, 0, insn, 1);
1848
}"
1849
[(set_attr "type" "cbranch")
1850
 (set (attr "length")
1851
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1852
               (const_int MAX_12BIT_OFFSET))
1853
           (const_int 4)
1854
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1855
               (const_int MAX_17BIT_OFFSET))
1856
           (const_int 8)
1857
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1858
           (const_int 24)
1859
           (eq (symbol_ref "flag_pic") (const_int 0))
1860
           (const_int 20)]
1861
          (const_int 28)))])
1862
 
1863
(define_insn ""
1864
  [(set (pc)
1865
        (if_then_else
1866
         (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1867
                              (const_int 1)
1868
                              (match_operand:DI 1 "register_operand" "q"))
1869
             (const_int 0))
1870
         (label_ref (match_operand 2 "" ""))
1871
         (pc)))]
1872
  "TARGET_64BIT"
1873
  "*
1874
{
1875
  return output_bvb (operands, 0, insn, 1);
1876
}"
1877
[(set_attr "type" "cbranch")
1878
 (set (attr "length")
1879
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1880
               (const_int MAX_12BIT_OFFSET))
1881
           (const_int 4)
1882
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1883
               (const_int MAX_17BIT_OFFSET))
1884
           (const_int 8)
1885
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1886
           (const_int 24)
1887
           (eq (symbol_ref "flag_pic") (const_int 0))
1888
           (const_int 20)]
1889
          (const_int 28)))])
1890
 
1891
(define_insn ""
1892
  [(set (pc)
1893
        (if_then_else
1894
         (eq (zero_extract:SI (match_operand:SI 0 "register_operand" "r")
1895
                              (const_int 1)
1896
                              (match_operand:SI 1 "register_operand" "q"))
1897
             (const_int 0))
1898
         (pc)
1899
         (label_ref (match_operand 2 "" ""))))]
1900
  ""
1901
  "*
1902
{
1903
  return output_bvb (operands, 1, insn, 1);
1904
}"
1905
[(set_attr "type" "cbranch")
1906
 (set (attr "length")
1907
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1908
               (const_int MAX_12BIT_OFFSET))
1909
           (const_int 4)
1910
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1911
               (const_int MAX_17BIT_OFFSET))
1912
           (const_int 8)
1913
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1914
           (const_int 24)
1915
           (eq (symbol_ref "flag_pic") (const_int 0))
1916
           (const_int 20)]
1917
          (const_int 28)))])
1918
 
1919
(define_insn ""
1920
  [(set (pc)
1921
        (if_then_else
1922
         (eq (zero_extract:DI (match_operand:DI 0 "register_operand" "r")
1923
                              (const_int 1)
1924
                              (match_operand:DI 1 "register_operand" "q"))
1925
             (const_int 0))
1926
         (pc)
1927
         (label_ref (match_operand 2 "" ""))))]
1928
  "TARGET_64BIT"
1929
  "*
1930
{
1931
  return output_bvb (operands, 1, insn, 1);
1932
}"
1933
[(set_attr "type" "cbranch")
1934
 (set (attr "length")
1935
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1936
               (const_int MAX_12BIT_OFFSET))
1937
           (const_int 4)
1938
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
1939
               (const_int MAX_17BIT_OFFSET))
1940
           (const_int 8)
1941
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1942
           (const_int 24)
1943
           (eq (symbol_ref "flag_pic") (const_int 0))
1944
           (const_int 20)]
1945
          (const_int 28)))])
1946
 
1947
;; Floating point branches
1948
 
1949
;; ??? Nullification is handled differently from other branches.
1950
;; If nullification is specified, the delay slot is nullified on any
1951
;; taken branch regardless of branch direction.
1952
(define_insn ""
1953
  [(set (pc) (if_then_else (ne (reg:CCFP 0) (const_int 0))
1954
                           (label_ref (match_operand 0 "" ""))
1955
                           (pc)))]
1956
  "!TARGET_SOFT_FLOAT"
1957
  "*
1958
{
1959
  int length = get_attr_length (insn);
1960
  rtx xoperands[1];
1961
  int nullify, xdelay;
1962
 
1963
  if (length < 16)
1964
    return \"ftest\;b%* %l0\";
1965
 
1966
  if (dbr_sequence_length () == 0 || INSN_ANNULLED_BRANCH_P (insn))
1967
    {
1968
      nullify = 1;
1969
      xdelay = 0;
1970
      xoperands[0] = GEN_INT (length - 8);
1971
    }
1972
  else
1973
    {
1974
      nullify = 0;
1975
      xdelay = 1;
1976
      xoperands[0] = GEN_INT (length - 4);
1977
    }
1978
 
1979
  if (nullify)
1980
    output_asm_insn (\"ftest\;add,tr %%r0,%%r0,%%r0\;b,n .+%0\", xoperands);
1981
  else
1982
    output_asm_insn (\"ftest\;add,tr %%r0,%%r0,%%r0\;b .+%0\", xoperands);
1983
  return output_lbranch (operands[0], insn, xdelay);
1984
}"
1985
[(set_attr "type" "fbranch")
1986
 (set (attr "length")
1987
    (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
1988
               (const_int MAX_17BIT_OFFSET))
1989
           (const_int 8)
1990
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
1991
           (const_int 32)
1992
           (eq (symbol_ref "flag_pic") (const_int 0))
1993
           (const_int 28)]
1994
          (const_int 36)))])
1995
 
1996
(define_insn ""
1997
  [(set (pc) (if_then_else (ne (reg:CCFP 0) (const_int 0))
1998
                           (pc)
1999
                           (label_ref (match_operand 0 "" ""))))]
2000
  "!TARGET_SOFT_FLOAT"
2001
  "*
2002
{
2003
  int length = get_attr_length (insn);
2004
  rtx xoperands[1];
2005
  int nullify, xdelay;
2006
 
2007
  if (length < 16)
2008
    return \"ftest\;add,tr %%r0,%%r0,%%r0\;b%* %0\";
2009
 
2010
  if (dbr_sequence_length () == 0 || INSN_ANNULLED_BRANCH_P (insn))
2011
    {
2012
      nullify = 1;
2013
      xdelay = 0;
2014
      xoperands[0] = GEN_INT (length - 4);
2015
    }
2016
  else
2017
    {
2018
      nullify = 0;
2019
      xdelay = 1;
2020
      xoperands[0] = GEN_INT (length);
2021
    }
2022
 
2023
  if (nullify)
2024
    output_asm_insn (\"ftest\;b,n .+%0\", xoperands);
2025
  else
2026
    output_asm_insn (\"ftest\;b .+%0\", xoperands);
2027
  return output_lbranch (operands[0], insn, xdelay);
2028
}"
2029
[(set_attr "type" "fbranch")
2030
 (set (attr "length")
2031
    (cond [(lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
2032
               (const_int MAX_17BIT_OFFSET))
2033
           (const_int 12)
2034
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
2035
           (const_int 28)
2036
           (eq (symbol_ref "flag_pic") (const_int 0))
2037
           (const_int 24)]
2038
          (const_int 32)))])
2039
 
2040
;; Move instructions
2041
 
2042
(define_expand "movsi"
2043
  [(set (match_operand:SI 0 "general_operand" "")
2044
        (match_operand:SI 1 "general_operand" ""))]
2045
  ""
2046
  "
2047
{
2048
  if (emit_move_sequence (operands, SImode, 0))
2049
    DONE;
2050
}")
2051
 
2052
;; Handle SImode input reloads requiring %r1 as a scratch register.
2053
(define_expand "reload_insi_r1"
2054
  [(set (match_operand:SI 0 "register_operand" "=Z")
2055
        (match_operand:SI 1 "non_hard_reg_operand" ""))
2056
   (clobber (match_operand:SI 2 "register_operand" "=&a"))]
2057
  ""
2058
  "
2059
{
2060
  if (emit_move_sequence (operands, SImode, operands[2]))
2061
    DONE;
2062
 
2063
  /* We don't want the clobber emitted, so handle this ourselves.  */
2064
  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2065
  DONE;
2066
}")
2067
 
2068
;; Handle SImode input reloads requiring a general register as a
2069
;; scratch register.
2070
(define_expand "reload_insi"
2071
  [(set (match_operand:SI 0 "register_operand" "=Z")
2072
        (match_operand:SI 1 "non_hard_reg_operand" ""))
2073
   (clobber (match_operand:SI 2 "register_operand" "=&r"))]
2074
  ""
2075
  "
2076
{
2077
  if (emit_move_sequence (operands, SImode, operands[2]))
2078
    DONE;
2079
 
2080
  /* We don't want the clobber emitted, so handle this ourselves.  */
2081
  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2082
  DONE;
2083
}")
2084
 
2085
;; Handle SImode output reloads requiring a general register as a
2086
;; scratch register.
2087
(define_expand "reload_outsi"
2088
  [(set (match_operand:SI 0 "non_hard_reg_operand" "")
2089
        (match_operand:SI 1  "register_operand" "Z"))
2090
   (clobber (match_operand:SI 2 "register_operand" "=&r"))]
2091
  ""
2092
  "
2093
{
2094
  if (emit_move_sequence (operands, SImode, operands[2]))
2095
    DONE;
2096
 
2097
  /* We don't want the clobber emitted, so handle this ourselves.  */
2098
  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2099
  DONE;
2100
}")
2101
 
2102
(define_insn ""
2103
  [(set (match_operand:SI 0 "move_dest_operand"
2104
                          "=r,r,r,r,r,r,Q,!*q,!r,!*f,*f,T,?r,?*f")
2105
        (match_operand:SI 1 "move_src_operand"
2106
                          "A,r,J,N,K,RQ,rM,!rM,!*q,!*fM,RT,*f,*f,r"))]
2107
  "(register_operand (operands[0], SImode)
2108
    || reg_or_0_operand (operands[1], SImode))
2109
   && !TARGET_SOFT_FLOAT
2110
   && !TARGET_64BIT"
2111
  "@
2112
   ldw RT'%A1,%0
2113
   copy %1,%0
2114
   ldi %1,%0
2115
   ldil L'%1,%0
2116
   {zdepi|depwi,z} %Z1,%0
2117
   ldw%M1 %1,%0
2118
   stw%M0 %r1,%0
2119
   mtsar %r1
2120
   {mfctl|mfctl,w} %%sar,%0
2121
   fcpy,sgl %f1,%0
2122
   fldw%F1 %1,%0
2123
   fstw%F0 %1,%0
2124
   {fstws|fstw} %1,-16(%%sp)\n\t{ldws|ldw} -16(%%sp),%0
2125
   {stws|stw} %1,-16(%%sp)\n\t{fldws|fldw} -16(%%sp),%0"
2126
  [(set_attr "type" "load,move,move,move,shift,load,store,move,move,fpalu,fpload,fpstore,fpstore_load,store_fpload")
2127
   (set_attr "pa_combine_type" "addmove")
2128
   (set_attr "length" "4,4,4,4,4,4,4,4,4,4,4,4,8,8")])
2129
 
2130
(define_insn ""
2131
  [(set (match_operand:SI 0 "move_dest_operand"
2132
                          "=r,r,r,r,r,r,Q,!*q,!r,!*f,*f,T")
2133
        (match_operand:SI 1 "move_src_operand"
2134
                          "A,r,J,N,K,RQ,rM,!rM,!*q,!*fM,RT,*f"))]
2135
  "(register_operand (operands[0], SImode)
2136
    || reg_or_0_operand (operands[1], SImode))
2137
   && !TARGET_SOFT_FLOAT
2138
   && TARGET_64BIT"
2139
  "@
2140
   ldw RT'%A1,%0
2141
   copy %1,%0
2142
   ldi %1,%0
2143
   ldil L'%1,%0
2144
   {zdepi|depwi,z} %Z1,%0
2145
   ldw%M1 %1,%0
2146
   stw%M0 %r1,%0
2147
   mtsar %r1
2148
   {mfctl|mfctl,w} %%sar,%0
2149
   fcpy,sgl %f1,%0
2150
   fldw%F1 %1,%0
2151
   fstw%F0 %1,%0"
2152
  [(set_attr "type" "load,move,move,move,shift,load,store,move,move,fpalu,fpload,fpstore")
2153
   (set_attr "pa_combine_type" "addmove")
2154
   (set_attr "length" "4,4,4,4,4,4,4,4,4,4,4,4")])
2155
 
2156
(define_insn ""
2157
  [(set (match_operand:SI 0 "indexed_memory_operand" "=R")
2158
        (match_operand:SI 1 "register_operand" "f"))]
2159
  "!TARGET_SOFT_FLOAT
2160
   && !TARGET_DISABLE_INDEXING
2161
   && reload_completed"
2162
  "fstw%F0 %1,%0"
2163
  [(set_attr "type" "fpstore")
2164
   (set_attr "pa_combine_type" "addmove")
2165
   (set_attr "length" "4")])
2166
 
2167
; Rewrite RTL using an indexed store.  This will allow the insn that
2168
; computes the address to be deleted if the register it sets is dead.
2169
(define_peephole2
2170
  [(set (match_operand:SI 0 "register_operand" "")
2171
        (plus:SI (mult:SI (match_operand:SI 1 "register_operand" "")
2172
                          (const_int 4))
2173
                 (match_operand:SI 2 "register_operand" "")))
2174
   (set (mem:SI (match_dup 0))
2175
        (match_operand:SI 3 "register_operand" ""))]
2176
  "!TARGET_SOFT_FLOAT
2177
   && !TARGET_DISABLE_INDEXING
2178
   && REG_OK_FOR_BASE_P (operands[2])
2179
   && FP_REGNO_P (REGNO (operands[3]))"
2180
  [(set (mem:SI (plus:SI (mult:SI (match_dup 1) (const_int 4)) (match_dup 2)))
2181
        (match_dup 3))
2182
   (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 4))
2183
                               (match_dup 2)))]
2184
  "")
2185
 
2186
(define_peephole2
2187
  [(set (match_operand:SI 0 "register_operand" "")
2188
        (plus:SI (match_operand:SI 2 "register_operand" "")
2189
                 (mult:SI (match_operand:SI 1 "register_operand" "")
2190
                          (const_int 4))))
2191
   (set (mem:SI (match_dup 0))
2192
        (match_operand:SI 3 "register_operand" ""))]
2193
  "!TARGET_SOFT_FLOAT
2194
   && !TARGET_DISABLE_INDEXING
2195
   && REG_OK_FOR_BASE_P (operands[2])
2196
   && FP_REGNO_P (REGNO (operands[3]))"
2197
  [(set (mem:SI (plus:SI (mult:SI (match_dup 1) (const_int 4)) (match_dup 2)))
2198
        (match_dup 3))
2199
   (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 4))
2200
                               (match_dup 2)))]
2201
  "")
2202
 
2203
(define_peephole2
2204
  [(set (match_operand:DI 0 "register_operand" "")
2205
        (plus:DI (mult:DI (match_operand:DI 1 "register_operand" "")
2206
                          (const_int 4))
2207
                 (match_operand:DI 2 "register_operand" "")))
2208
   (set (mem:SI (match_dup 0))
2209
        (match_operand:SI 3 "register_operand" ""))]
2210
  "!TARGET_SOFT_FLOAT
2211
   && !TARGET_DISABLE_INDEXING
2212
   && TARGET_64BIT
2213
   && REG_OK_FOR_BASE_P (operands[2])
2214
   && FP_REGNO_P (REGNO (operands[3]))"
2215
  [(set (mem:SI (plus:DI (mult:DI (match_dup 1) (const_int 4)) (match_dup 2)))
2216
        (match_dup 3))
2217
   (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 4))
2218
                               (match_dup 2)))]
2219
  "")
2220
 
2221
(define_peephole2
2222
  [(set (match_operand:DI 0 "register_operand" "")
2223
        (plus:DI (match_operand:DI 2 "register_operand" "")
2224
                 (mult:DI (match_operand:DI 1 "register_operand" "")
2225
                          (const_int 4))))
2226
   (set (mem:SI (match_dup 0))
2227
        (match_operand:SI 3 "register_operand" ""))]
2228
  "!TARGET_SOFT_FLOAT
2229
   && !TARGET_DISABLE_INDEXING
2230
   && TARGET_64BIT
2231
   && REG_OK_FOR_BASE_P (operands[2])
2232
   && FP_REGNO_P (REGNO (operands[3]))"
2233
  [(set (mem:SI (plus:DI (mult:DI (match_dup 1) (const_int 4)) (match_dup 2)))
2234
        (match_dup 3))
2235
   (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 4))
2236
                               (match_dup 2)))]
2237
  "")
2238
 
2239
(define_peephole2
2240
  [(set (match_operand:SI 0 "register_operand" "")
2241
        (plus:SI (match_operand:SI 1 "register_operand" "")
2242
                 (match_operand:SI 2 "register_operand" "")))
2243
   (set (mem:SI (match_dup 0))
2244
        (match_operand:SI 3 "register_operand" ""))]
2245
  "!TARGET_SOFT_FLOAT
2246
   && !TARGET_DISABLE_INDEXING
2247
   && TARGET_NO_SPACE_REGS
2248
   && REG_OK_FOR_INDEX_P (operands[1])
2249
   && REG_OK_FOR_BASE_P (operands[2])
2250
   && FP_REGNO_P (REGNO (operands[3]))"
2251
  [(set (mem:SI (plus:SI (match_dup 1) (match_dup 2)))
2252
        (match_dup 3))
2253
   (set (match_dup 0) (plus:SI (match_dup 1) (match_dup 2)))]
2254
  "")
2255
 
2256
(define_peephole2
2257
  [(set (match_operand:SI 0 "register_operand" "")
2258
        (plus:SI (match_operand:SI 1 "register_operand" "")
2259
                 (match_operand:SI 2 "register_operand" "")))
2260
   (set (mem:SI (match_dup 0))
2261
        (match_operand:SI 3 "register_operand" ""))]
2262
  "!TARGET_SOFT_FLOAT
2263
   && !TARGET_DISABLE_INDEXING
2264
   && TARGET_NO_SPACE_REGS
2265
   && REG_OK_FOR_BASE_P (operands[1])
2266
   && REG_OK_FOR_INDEX_P (operands[2])
2267
   && FP_REGNO_P (REGNO (operands[3]))"
2268
  [(set (mem:SI (plus:SI (match_dup 2) (match_dup 1)))
2269
        (match_dup 3))
2270
   (set (match_dup 0) (plus:SI (match_dup 2) (match_dup 1)))]
2271
  "")
2272
 
2273
(define_peephole2
2274
  [(set (match_operand:DI 0 "register_operand" "")
2275
        (plus:DI (match_operand:DI 1 "register_operand" "")
2276
                 (match_operand:DI 2 "register_operand" "")))
2277
   (set (mem:SI (match_dup 0))
2278
        (match_operand:SI 3 "register_operand" ""))]
2279
  "!TARGET_SOFT_FLOAT
2280
   && !TARGET_DISABLE_INDEXING
2281
   && TARGET_64BIT
2282
   && TARGET_NO_SPACE_REGS
2283
   && REG_OK_FOR_INDEX_P (operands[1])
2284
   && REG_OK_FOR_BASE_P (operands[2])
2285
   && FP_REGNO_P (REGNO (operands[3]))"
2286
  [(set (mem:SI (plus:DI (match_dup 1) (match_dup 2)))
2287
        (match_dup 3))
2288
   (set (match_dup 0) (plus:DI (match_dup 1) (match_dup 2)))]
2289
  "")
2290
 
2291
(define_peephole2
2292
  [(set (match_operand:DI 0 "register_operand" "")
2293
        (plus:DI (match_operand:DI 1 "register_operand" "")
2294
                 (match_operand:DI 2 "register_operand" "")))
2295
   (set (mem:SI (match_dup 0))
2296
        (match_operand:SI 3 "register_operand" ""))]
2297
  "!TARGET_SOFT_FLOAT
2298
   && !TARGET_DISABLE_INDEXING
2299
   && TARGET_64BIT
2300
   && TARGET_NO_SPACE_REGS
2301
   && REG_OK_FOR_BASE_P (operands[1])
2302
   && REG_OK_FOR_INDEX_P (operands[2])
2303
   && FP_REGNO_P (REGNO (operands[3]))"
2304
  [(set (mem:SI (plus:DI (match_dup 2) (match_dup 1)))
2305
        (match_dup 3))
2306
   (set (match_dup 0) (plus:DI (match_dup 2) (match_dup 1)))]
2307
  "")
2308
 
2309
(define_insn ""
2310
  [(set (match_operand:SI 0 "move_dest_operand"
2311
                          "=r,r,r,r,r,r,Q,!*q,!r")
2312
        (match_operand:SI 1 "move_src_operand"
2313
                          "A,r,J,N,K,RQ,rM,!rM,!*q"))]
2314
  "(register_operand (operands[0], SImode)
2315
    || reg_or_0_operand (operands[1], SImode))
2316
   && TARGET_SOFT_FLOAT"
2317
  "@
2318
   ldw RT'%A1,%0
2319
   copy %1,%0
2320
   ldi %1,%0
2321
   ldil L'%1,%0
2322
   {zdepi|depwi,z} %Z1,%0
2323
   ldw%M1 %1,%0
2324
   stw%M0 %r1,%0
2325
   mtsar %r1
2326
   {mfctl|mfctl,w} %%sar,%0"
2327
  [(set_attr "type" "load,move,move,move,move,load,store,move,move")
2328
   (set_attr "pa_combine_type" "addmove")
2329
   (set_attr "length" "4,4,4,4,4,4,4,4,4")])
2330
 
2331
;; Load or store with base-register modification.
2332
(define_insn ""
2333
  [(set (match_operand:SI 0 "register_operand" "=r")
2334
        (mem:SI (plus:DI (match_operand:DI 1 "register_operand" "+r")
2335
                         (match_operand:DI 2 "int5_operand" "L"))))
2336
   (set (match_dup 1)
2337
        (plus:DI (match_dup 1) (match_dup 2)))]
2338
  "TARGET_64BIT"
2339
  "ldw,mb %2(%1),%0"
2340
  [(set_attr "type" "load")
2341
   (set_attr "length" "4")])
2342
 
2343
; And a zero extended variant.
2344
(define_insn ""
2345
  [(set (match_operand:DI 0 "register_operand" "=r")
2346
        (zero_extend:DI (mem:SI
2347
                          (plus:DI
2348
                            (match_operand:DI 1 "register_operand" "+r")
2349
                            (match_operand:DI 2 "int5_operand" "L")))))
2350
   (set (match_dup 1)
2351
        (plus:DI (match_dup 1) (match_dup 2)))]
2352
  "TARGET_64BIT"
2353
  "ldw,mb %2(%1),%0"
2354
  [(set_attr "type" "load")
2355
   (set_attr "length" "4")])
2356
 
2357
(define_expand "pre_load"
2358
  [(parallel [(set (match_operand:SI 0 "register_operand" "")
2359
              (mem (plus (match_operand 1 "register_operand" "")
2360
                               (match_operand 2 "pre_cint_operand" ""))))
2361
              (set (match_dup 1)
2362
                   (plus (match_dup 1) (match_dup 2)))])]
2363
  ""
2364
  "
2365
{
2366
  if (TARGET_64BIT)
2367
    {
2368
      emit_insn (gen_pre_ldd (operands[0], operands[1], operands[2]));
2369
      DONE;
2370
    }
2371
  emit_insn (gen_pre_ldw (operands[0], operands[1], operands[2]));
2372
  DONE;
2373
}")
2374
 
2375
(define_insn "pre_ldw"
2376
  [(set (match_operand:SI 0 "register_operand" "=r")
2377
        (mem:SI (plus:SI (match_operand:SI 1 "register_operand" "+r")
2378
                         (match_operand:SI 2 "pre_cint_operand" ""))))
2379
   (set (match_dup 1)
2380
        (plus:SI (match_dup 1) (match_dup 2)))]
2381
  ""
2382
  "*
2383
{
2384
  if (INTVAL (operands[2]) < 0)
2385
    return \"{ldwm|ldw,mb} %2(%1),%0\";
2386
  return \"{ldws|ldw},mb %2(%1),%0\";
2387
}"
2388
  [(set_attr "type" "load")
2389
   (set_attr "length" "4")])
2390
 
2391
(define_insn "pre_ldd"
2392
  [(set (match_operand:DI 0 "register_operand" "=r")
2393
        (mem:DI (plus:DI (match_operand:DI 1 "register_operand" "+r")
2394
                         (match_operand:DI 2 "pre_cint_operand" ""))))
2395
   (set (match_dup 1)
2396
        (plus:DI (match_dup 1) (match_dup 2)))]
2397
  "TARGET_64BIT"
2398
  "ldd,mb %2(%1),%0"
2399
  [(set_attr "type" "load")
2400
   (set_attr "length" "4")])
2401
 
2402
(define_insn ""
2403
  [(set (mem:SI (plus:SI (match_operand:SI 0 "register_operand" "+r")
2404
                         (match_operand:SI 1 "pre_cint_operand" "")))
2405
        (match_operand:SI 2 "reg_or_0_operand" "rM"))
2406
   (set (match_dup 0)
2407
        (plus:SI (match_dup 0) (match_dup 1)))]
2408
  ""
2409
  "*
2410
{
2411
  if (INTVAL (operands[1]) < 0)
2412
    return \"{stwm|stw,mb} %r2,%1(%0)\";
2413
  return \"{stws|stw},mb %r2,%1(%0)\";
2414
}"
2415
  [(set_attr "type" "store")
2416
   (set_attr "length" "4")])
2417
 
2418
(define_insn ""
2419
  [(set (match_operand:SI 0 "register_operand" "=r")
2420
        (mem:SI (match_operand:SI 1 "register_operand" "+r")))
2421
   (set (match_dup 1)
2422
        (plus:SI (match_dup 1)
2423
                 (match_operand:SI 2 "post_cint_operand" "")))]
2424
  ""
2425
  "*
2426
{
2427
  if (INTVAL (operands[2]) > 0)
2428
    return \"{ldwm|ldw,ma} %2(%1),%0\";
2429
  return \"{ldws|ldw},ma %2(%1),%0\";
2430
}"
2431
  [(set_attr "type" "load")
2432
   (set_attr "length" "4")])
2433
 
2434
(define_expand "post_store"
2435
  [(parallel [(set (mem (match_operand 0 "register_operand" ""))
2436
                   (match_operand 1 "reg_or_0_operand" ""))
2437
              (set (match_dup 0)
2438
                   (plus (match_dup 0)
2439
                         (match_operand 2 "post_cint_operand" "")))])]
2440
  ""
2441
  "
2442
{
2443
  if (TARGET_64BIT)
2444
    {
2445
      emit_insn (gen_post_std (operands[0], operands[1], operands[2]));
2446
      DONE;
2447
    }
2448
  emit_insn (gen_post_stw (operands[0], operands[1], operands[2]));
2449
  DONE;
2450
}")
2451
 
2452
(define_insn "post_stw"
2453
  [(set (mem:SI (match_operand:SI 0 "register_operand" "+r"))
2454
        (match_operand:SI 1 "reg_or_0_operand" "rM"))
2455
   (set (match_dup 0)
2456
        (plus:SI (match_dup 0)
2457
                 (match_operand:SI 2 "post_cint_operand" "")))]
2458
  ""
2459
  "*
2460
{
2461
  if (INTVAL (operands[2]) > 0)
2462
    return \"{stwm|stw,ma} %r1,%2(%0)\";
2463
  return \"{stws|stw},ma %r1,%2(%0)\";
2464
}"
2465
  [(set_attr "type" "store")
2466
   (set_attr "length" "4")])
2467
 
2468
(define_insn "post_std"
2469
  [(set (mem:DI (match_operand:DI 0 "register_operand" "+r"))
2470
        (match_operand:DI 1 "reg_or_0_operand" "rM"))
2471
   (set (match_dup 0)
2472
        (plus:DI (match_dup 0)
2473
                 (match_operand:DI 2 "post_cint_operand" "")))]
2474
  "TARGET_64BIT"
2475
  "std,ma %r1,%2(%0)"
2476
  [(set_attr "type" "store")
2477
   (set_attr "length" "4")])
2478
 
2479
;; For loading the address of a label while generating PIC code.
2480
;; Note since this pattern can be created at reload time (via movsi), all
2481
;; the same rules for movsi apply here.  (no new pseudos, no temporaries).
2482
(define_insn ""
2483
  [(set (match_operand 0 "pmode_register_operand" "=a")
2484
        (match_operand 1 "pic_label_operand" ""))]
2485
  "TARGET_PA_20"
2486
  "*
2487
{
2488
  rtx xoperands[3];
2489
 
2490
  xoperands[0] = operands[0];
2491
  xoperands[1] = operands[1];
2492
  xoperands[2] = gen_label_rtx ();
2493
 
2494
  (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
2495
                                     CODE_LABEL_NUMBER (xoperands[2]));
2496
  output_asm_insn (\"mfia %0\", xoperands);
2497
 
2498
  /* If we're trying to load the address of a label that happens to be
2499
     close, then we can use a shorter sequence.  */
2500
  if (GET_CODE (operands[1]) == LABEL_REF
2501
      && !LABEL_REF_NONLOCAL_P (operands[1])
2502
      && INSN_ADDRESSES_SET_P ()
2503
      && abs (INSN_ADDRESSES (INSN_UID (XEXP (operands[1], 0)))
2504
                - INSN_ADDRESSES (INSN_UID (insn))) < 8100)
2505
    output_asm_insn (\"ldo %1-%2(%0),%0\", xoperands);
2506
  else
2507
    {
2508
      output_asm_insn (\"addil L%%%1-%2,%0\", xoperands);
2509
      output_asm_insn (\"ldo R%%%1-%2(%0),%0\", xoperands);
2510
    }
2511
  return \"\";
2512
}"
2513
  [(set_attr "type" "multi")
2514
   (set_attr "length" "12")])           ; 8 or 12
2515
 
2516
(define_insn ""
2517
  [(set (match_operand 0 "pmode_register_operand" "=a")
2518
        (match_operand 1 "pic_label_operand" ""))]
2519
  "!TARGET_PA_20"
2520
  "*
2521
{
2522
  rtx xoperands[3];
2523
 
2524
  xoperands[0] = operands[0];
2525
  xoperands[1] = operands[1];
2526
  xoperands[2] = gen_label_rtx ();
2527
 
2528
  output_asm_insn (\"bl .+8,%0\", xoperands);
2529
  output_asm_insn (\"depi 0,31,2,%0\", xoperands);
2530
  (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
2531
                                     CODE_LABEL_NUMBER (xoperands[2]));
2532
 
2533
  /* If we're trying to load the address of a label that happens to be
2534
     close, then we can use a shorter sequence.  */
2535
  if (GET_CODE (operands[1]) == LABEL_REF
2536
      && !LABEL_REF_NONLOCAL_P (operands[1])
2537
      && INSN_ADDRESSES_SET_P ()
2538
      && abs (INSN_ADDRESSES (INSN_UID (XEXP (operands[1], 0)))
2539
                - INSN_ADDRESSES (INSN_UID (insn))) < 8100)
2540
    output_asm_insn (\"ldo %1-%2(%0),%0\", xoperands);
2541
  else
2542
    {
2543
      output_asm_insn (\"addil L%%%1-%2,%0\", xoperands);
2544
      output_asm_insn (\"ldo R%%%1-%2(%0),%0\", xoperands);
2545
    }
2546
  return \"\";
2547
}"
2548
  [(set_attr "type" "multi")
2549
   (set_attr "length" "16")])           ; 12 or 16
2550
 
2551
(define_insn ""
2552
  [(set (match_operand:SI 0 "register_operand" "=a")
2553
        (plus:SI (match_operand:SI 1 "register_operand" "r")
2554
                 (high:SI (match_operand 2 "" ""))))]
2555
  "symbolic_operand (operands[2], Pmode)
2556
   && ! function_label_operand (operands[2], Pmode)
2557
   && flag_pic"
2558
  "addil LT'%G2,%1"
2559
  [(set_attr "type" "binary")
2560
   (set_attr "length" "4")])
2561
 
2562
(define_insn ""
2563
  [(set (match_operand:DI 0 "register_operand" "=a")
2564
        (plus:DI (match_operand:DI 1 "register_operand" "r")
2565
                 (high:DI (match_operand 2 "" ""))))]
2566
  "symbolic_operand (operands[2], Pmode)
2567
   && ! function_label_operand (operands[2], Pmode)
2568
   && TARGET_64BIT
2569
   && flag_pic"
2570
  "addil LT'%G2,%1"
2571
  [(set_attr "type" "binary")
2572
   (set_attr "length" "4")])
2573
 
2574
;; Always use addil rather than ldil;add sequences.  This allows the
2575
;; HP linker to eliminate the dp relocation if the symbolic operand
2576
;; lives in the TEXT space.
2577
(define_insn ""
2578
  [(set (match_operand:SI 0 "register_operand" "=a")
2579
        (high:SI (match_operand 1 "" "")))]
2580
  "symbolic_operand (operands[1], Pmode)
2581
   && ! function_label_operand (operands[1], Pmode)
2582
   && ! read_only_operand (operands[1], Pmode)
2583
   && ! flag_pic"
2584
  "*
2585
{
2586
  if (TARGET_LONG_LOAD_STORE)
2587
    return \"addil NLR'%H1,%%r27\;ldo N'%H1(%%r1),%%r1\";
2588
  else
2589
    return \"addil LR'%H1,%%r27\";
2590
}"
2591
  [(set_attr "type" "binary")
2592
   (set (attr "length")
2593
      (if_then_else (eq (symbol_ref "TARGET_LONG_LOAD_STORE") (const_int 0))
2594
                    (const_int 4)
2595
                    (const_int 8)))])
2596
 
2597
 
2598
;; This is for use in the prologue/epilogue code.  We need it
2599
;; to add large constants to a stack pointer or frame pointer.
2600
;; Because of the additional %r1 pressure, we probably do not
2601
;; want to use this in general code, so make it available
2602
;; only after reload.
2603
(define_insn ""
2604
  [(set (match_operand:SI 0 "register_operand" "=!a,*r")
2605
        (plus:SI (match_operand:SI 1 "register_operand" "r,r")
2606
                 (high:SI (match_operand 2 "const_int_operand" ""))))]
2607
  "reload_completed"
2608
  "@
2609
   addil L'%G2,%1
2610
   ldil L'%G2,%0\;{addl|add,l} %0,%1,%0"
2611
  [(set_attr "type" "binary,binary")
2612
   (set_attr "length" "4,8")])
2613
 
2614
(define_insn ""
2615
  [(set (match_operand:DI 0 "register_operand" "=!a,*r")
2616
        (plus:DI (match_operand:DI 1 "register_operand" "r,r")
2617
                 (high:DI (match_operand 2 "const_int_operand" ""))))]
2618
  "reload_completed && TARGET_64BIT"
2619
  "@
2620
   addil L'%G2,%1
2621
   ldil L'%G2,%0\;{addl|add,l} %0,%1,%0"
2622
  [(set_attr "type" "binary,binary")
2623
   (set_attr "length" "4,8")])
2624
 
2625
(define_insn ""
2626
  [(set (match_operand:SI 0 "register_operand" "=r")
2627
        (high:SI (match_operand 1 "" "")))]
2628
  "(!flag_pic || !symbolic_operand (operands[1], Pmode))
2629
    && !is_function_label_plus_const (operands[1])"
2630
  "*
2631
{
2632
  if (symbolic_operand (operands[1], Pmode))
2633
    return \"ldil LR'%H1,%0\";
2634
  else
2635
    return \"ldil L'%G1,%0\";
2636
}"
2637
  [(set_attr "type" "move")
2638
   (set_attr "length" "4")])
2639
 
2640
(define_insn ""
2641
  [(set (match_operand:DI 0 "register_operand" "=r")
2642
        (high:DI (match_operand 1 "const_int_operand" "")))]
2643
  "TARGET_64BIT"
2644
  "ldil L'%G1,%0";
2645
  [(set_attr "type" "move")
2646
   (set_attr "length" "4")])
2647
 
2648
(define_insn ""
2649
  [(set (match_operand:DI 0 "register_operand" "=r")
2650
        (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
2651
                   (match_operand:DI 2 "const_int_operand" "i")))]
2652
  "TARGET_64BIT"
2653
  "ldo R'%G2(%1),%0";
2654
  [(set_attr "type" "move")
2655
   (set_attr "length" "4")])
2656
 
2657
(define_insn ""
2658
  [(set (match_operand:SI 0 "register_operand" "=r")
2659
        (lo_sum:SI (match_operand:SI 1 "register_operand" "r")
2660
                   (match_operand:SI 2 "immediate_operand" "i")))]
2661
  "!is_function_label_plus_const (operands[2])"
2662
  "*
2663
{
2664
  gcc_assert (!flag_pic || !symbolic_operand (operands[2], Pmode));
2665
 
2666
  if (symbolic_operand (operands[2], Pmode))
2667
    return \"ldo RR'%G2(%1),%0\";
2668
  else
2669
    return \"ldo R'%G2(%1),%0\";
2670
}"
2671
  [(set_attr "type" "move")
2672
   (set_attr "length" "4")])
2673
 
2674
;; Now that a symbolic_address plus a constant is broken up early
2675
;; in the compilation phase (for better CSE) we need a special
2676
;; combiner pattern to load the symbolic address plus the constant
2677
;; in only 2 instructions. (For cases where the symbolic address
2678
;; was not a common subexpression.)
2679
(define_split
2680
  [(set (match_operand:SI 0 "register_operand" "")
2681
        (match_operand:SI 1 "symbolic_operand" ""))
2682
   (clobber (match_operand:SI 2 "register_operand" ""))]
2683
  "! (flag_pic && pic_label_operand (operands[1], SImode))"
2684
  [(set (match_dup 2) (high:SI (match_dup 1)))
2685
   (set (match_dup 0) (lo_sum:SI (match_dup 2) (match_dup 1)))]
2686
  "")
2687
 
2688
;; hppa_legitimize_address goes to a great deal of trouble to
2689
;; create addresses which use indexing.  In some cases, this
2690
;; is a lose because there isn't any store instructions which
2691
;; allow indexed addresses (with integer register source).
2692
;;
2693
;; These define_splits try to turn a 3 insn store into
2694
;; a 2 insn store with some creative RTL rewriting.
2695
(define_split
2696
  [(set (mem:SI (plus:SI (mult:SI (match_operand:SI 0 "register_operand" "")
2697
                               (match_operand:SI 1 "shadd_operand" ""))
2698
                   (plus:SI (match_operand:SI 2 "register_operand" "")
2699
                            (match_operand:SI 3 "const_int_operand" ""))))
2700
        (match_operand:SI 4 "register_operand" ""))
2701
   (clobber (match_operand:SI 5 "register_operand" ""))]
2702
  ""
2703
  [(set (match_dup 5) (plus:SI (mult:SI (match_dup 0) (match_dup 1))
2704
                               (match_dup 2)))
2705
   (set (mem:SI (plus:SI (match_dup 5) (match_dup 3))) (match_dup 4))]
2706
  "")
2707
 
2708
(define_split
2709
  [(set (mem:HI (plus:SI (mult:SI (match_operand:SI 0 "register_operand" "")
2710
                               (match_operand:SI 1 "shadd_operand" ""))
2711
                   (plus:SI (match_operand:SI 2 "register_operand" "")
2712
                            (match_operand:SI 3 "const_int_operand" ""))))
2713
        (match_operand:HI 4 "register_operand" ""))
2714
   (clobber (match_operand:SI 5 "register_operand" ""))]
2715
  ""
2716
  [(set (match_dup 5) (plus:SI (mult:SI (match_dup 0) (match_dup 1))
2717
                               (match_dup 2)))
2718
   (set (mem:HI (plus:SI (match_dup 5) (match_dup 3))) (match_dup 4))]
2719
  "")
2720
 
2721
(define_split
2722
  [(set (mem:QI (plus:SI (mult:SI (match_operand:SI 0 "register_operand" "")
2723
                               (match_operand:SI 1 "shadd_operand" ""))
2724
                   (plus:SI (match_operand:SI 2 "register_operand" "")
2725
                            (match_operand:SI 3 "const_int_operand" ""))))
2726
        (match_operand:QI 4 "register_operand" ""))
2727
   (clobber (match_operand:SI 5 "register_operand" ""))]
2728
  ""
2729
  [(set (match_dup 5) (plus:SI (mult:SI (match_dup 0) (match_dup 1))
2730
                               (match_dup 2)))
2731
   (set (mem:QI (plus:SI (match_dup 5) (match_dup 3))) (match_dup 4))]
2732
  "")
2733
 
2734
(define_expand "movhi"
2735
  [(set (match_operand:HI 0 "general_operand" "")
2736
        (match_operand:HI 1 "general_operand" ""))]
2737
  ""
2738
  "
2739
{
2740
  if (emit_move_sequence (operands, HImode, 0))
2741
    DONE;
2742
}")
2743
 
2744
;; Handle HImode input reloads requiring a general register as a
2745
;; scratch register.
2746
(define_expand "reload_inhi"
2747
  [(set (match_operand:HI 0 "register_operand" "=Z")
2748
        (match_operand:HI 1 "non_hard_reg_operand" ""))
2749
   (clobber (match_operand:HI 2 "register_operand" "=&r"))]
2750
  ""
2751
  "
2752
{
2753
  if (emit_move_sequence (operands, HImode, operands[2]))
2754
    DONE;
2755
 
2756
  /* We don't want the clobber emitted, so handle this ourselves.  */
2757
  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2758
  DONE;
2759
}")
2760
 
2761
;; Handle HImode output reloads requiring a general register as a
2762
;; scratch register.
2763
(define_expand "reload_outhi"
2764
  [(set (match_operand:HI 0 "non_hard_reg_operand" "")
2765
        (match_operand:HI 1  "register_operand" "Z"))
2766
   (clobber (match_operand:HI 2 "register_operand" "=&r"))]
2767
  ""
2768
  "
2769
{
2770
  if (emit_move_sequence (operands, HImode, operands[2]))
2771
    DONE;
2772
 
2773
  /* We don't want the clobber emitted, so handle this ourselves.  */
2774
  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2775
  DONE;
2776
}")
2777
 
2778
(define_insn ""
2779
  [(set (match_operand:HI 0 "move_dest_operand"
2780
                          "=r,r,r,r,r,Q,!*q,!r")
2781
        (match_operand:HI 1 "move_src_operand"
2782
                          "r,J,N,K,RQ,rM,!rM,!*q"))]
2783
  "(register_operand (operands[0], HImode)
2784
    || reg_or_0_operand (operands[1], HImode))"
2785
  "@
2786
   copy %1,%0
2787
   ldi %1,%0
2788
   ldil L'%1,%0
2789
   {zdepi|depwi,z} %Z1,%0
2790
   ldh%M1 %1,%0
2791
   sth%M0 %r1,%0
2792
   mtsar %r1
2793
   {mfctl|mfctl,w} %sar,%0"
2794
  [(set_attr "type" "move,move,move,shift,load,store,move,move")
2795
   (set_attr "pa_combine_type" "addmove")
2796
   (set_attr "length" "4,4,4,4,4,4,4,4")])
2797
 
2798
(define_insn ""
2799
  [(set (match_operand:HI 0 "register_operand" "=r")
2800
        (mem:HI (plus:SI (match_operand:SI 1 "register_operand" "+r")
2801
                         (match_operand:SI 2 "int5_operand" "L"))))
2802
   (set (match_dup 1)
2803
        (plus:SI (match_dup 1) (match_dup 2)))]
2804
  ""
2805
  "{ldhs|ldh},mb %2(%1),%0"
2806
  [(set_attr "type" "load")
2807
   (set_attr "length" "4")])
2808
 
2809
(define_insn ""
2810
  [(set (match_operand:HI 0 "register_operand" "=r")
2811
        (mem:HI (plus:DI (match_operand:DI 1 "register_operand" "+r")
2812
                         (match_operand:DI 2 "int5_operand" "L"))))
2813
   (set (match_dup 1)
2814
        (plus:DI (match_dup 1) (match_dup 2)))]
2815
  "TARGET_64BIT"
2816
  "ldh,mb %2(%1),%0"
2817
  [(set_attr "type" "load")
2818
   (set_attr "length" "4")])
2819
 
2820
; And a zero extended variant.
2821
(define_insn ""
2822
  [(set (match_operand:DI 0 "register_operand" "=r")
2823
        (zero_extend:DI (mem:HI
2824
                          (plus:DI
2825
                            (match_operand:DI 1 "register_operand" "+r")
2826
                            (match_operand:DI 2 "int5_operand" "L")))))
2827
   (set (match_dup 1)
2828
        (plus:DI (match_dup 1) (match_dup 2)))]
2829
  "TARGET_64BIT"
2830
  "ldh,mb %2(%1),%0"
2831
  [(set_attr "type" "load")
2832
   (set_attr "length" "4")])
2833
 
2834
(define_insn ""
2835
  [(set (match_operand:SI 0 "register_operand" "=r")
2836
        (zero_extend:SI (mem:HI
2837
                          (plus:SI
2838
                            (match_operand:SI 1 "register_operand" "+r")
2839
                            (match_operand:SI 2 "int5_operand" "L")))))
2840
   (set (match_dup 1)
2841
        (plus:SI (match_dup 1) (match_dup 2)))]
2842
  ""
2843
  "{ldhs|ldh},mb %2(%1),%0"
2844
  [(set_attr "type" "load")
2845
   (set_attr "length" "4")])
2846
 
2847
(define_insn ""
2848
  [(set (match_operand:SI 0 "register_operand" "=r")
2849
        (zero_extend:SI (mem:HI
2850
                          (plus:DI
2851
                            (match_operand:DI 1 "register_operand" "+r")
2852
                            (match_operand:DI 2 "int5_operand" "L")))))
2853
   (set (match_dup 1)
2854
        (plus:DI (match_dup 1) (match_dup 2)))]
2855
  "TARGET_64BIT"
2856
  "ldh,mb %2(%1),%0"
2857
  [(set_attr "type" "load")
2858
   (set_attr "length" "4")])
2859
 
2860
(define_insn ""
2861
  [(set (mem:HI (plus:SI (match_operand:SI 0 "register_operand" "+r")
2862
                         (match_operand:SI 1 "int5_operand" "L")))
2863
        (match_operand:HI 2 "reg_or_0_operand" "rM"))
2864
   (set (match_dup 0)
2865
        (plus:SI (match_dup 0) (match_dup 1)))]
2866
  ""
2867
  "{sths|sth},mb %r2,%1(%0)"
2868
  [(set_attr "type" "store")
2869
   (set_attr "length" "4")])
2870
 
2871
(define_insn ""
2872
  [(set (mem:HI (plus:DI (match_operand:DI 0 "register_operand" "+r")
2873
                         (match_operand:DI 1 "int5_operand" "L")))
2874
        (match_operand:HI 2 "reg_or_0_operand" "rM"))
2875
   (set (match_dup 0)
2876
        (plus:DI (match_dup 0) (match_dup 1)))]
2877
  "TARGET_64BIT"
2878
  "sth,mb %r2,%1(%0)"
2879
  [(set_attr "type" "store")
2880
   (set_attr "length" "4")])
2881
 
2882
(define_insn ""
2883
  [(set (match_operand:HI 0 "register_operand" "=r")
2884
        (plus:HI (match_operand:HI 1 "register_operand" "r")
2885
                 (match_operand 2 "const_int_operand" "J")))]
2886
  ""
2887
  "ldo %2(%1),%0"
2888
  [(set_attr "type" "binary")
2889
   (set_attr "pa_combine_type" "addmove")
2890
   (set_attr "length" "4")])
2891
 
2892
(define_expand "movqi"
2893
  [(set (match_operand:QI 0 "general_operand" "")
2894
        (match_operand:QI 1 "general_operand" ""))]
2895
  ""
2896
  "
2897
{
2898
  if (emit_move_sequence (operands, QImode, 0))
2899
    DONE;
2900
}")
2901
 
2902
;; Handle QImode input reloads requiring a general register as a
2903
;; scratch register.
2904
(define_expand "reload_inqi"
2905
  [(set (match_operand:QI 0 "register_operand" "=Z")
2906
        (match_operand:QI 1 "non_hard_reg_operand" ""))
2907
   (clobber (match_operand:QI 2 "register_operand" "=&r"))]
2908
  ""
2909
  "
2910
{
2911
  if (emit_move_sequence (operands, QImode, operands[2]))
2912
    DONE;
2913
 
2914
  /* We don't want the clobber emitted, so handle this ourselves.  */
2915
  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2916
  DONE;
2917
}")
2918
 
2919
;; Handle QImode output reloads requiring a general register as a
2920
;; scratch register.
2921
(define_expand "reload_outqi"
2922
  [(set (match_operand:QI 0 "non_hard_reg_operand" "")
2923
        (match_operand:QI 1  "register_operand" "Z"))
2924
   (clobber (match_operand:QI 2 "register_operand" "=&r"))]
2925
  ""
2926
  "
2927
{
2928
  if (emit_move_sequence (operands, QImode, operands[2]))
2929
    DONE;
2930
 
2931
  /* We don't want the clobber emitted, so handle this ourselves.  */
2932
  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
2933
  DONE;
2934
}")
2935
 
2936
(define_insn ""
2937
  [(set (match_operand:QI 0 "move_dest_operand"
2938
                          "=r,r,r,r,r,Q,!*q,!r")
2939
        (match_operand:QI 1 "move_src_operand"
2940
                          "r,J,N,K,RQ,rM,!rM,!*q"))]
2941
  "(register_operand (operands[0], QImode)
2942
    || reg_or_0_operand (operands[1], QImode))"
2943
  "@
2944
   copy %1,%0
2945
   ldi %1,%0
2946
   ldil L'%1,%0
2947
   {zdepi|depwi,z} %Z1,%0
2948
   ldb%M1 %1,%0
2949
   stb%M0 %r1,%0
2950
   mtsar %r1
2951
   {mfctl|mfctl,w} %%sar,%0"
2952
  [(set_attr "type" "move,move,move,shift,load,store,move,move")
2953
   (set_attr "pa_combine_type" "addmove")
2954
   (set_attr "length" "4,4,4,4,4,4,4,4")])
2955
 
2956
(define_insn ""
2957
  [(set (match_operand:QI 0 "register_operand" "=r")
2958
        (mem:QI (plus:SI (match_operand:SI 1 "register_operand" "+r")
2959
                         (match_operand:SI 2 "int5_operand" "L"))))
2960
   (set (match_dup 1) (plus:SI (match_dup 1) (match_dup 2)))]
2961
  ""
2962
  "{ldbs|ldb},mb %2(%1),%0"
2963
  [(set_attr "type" "load")
2964
   (set_attr "length" "4")])
2965
 
2966
(define_insn ""
2967
  [(set (match_operand:QI 0 "register_operand" "=r")
2968
        (mem:QI (plus:DI (match_operand:DI 1 "register_operand" "+r")
2969
                         (match_operand:DI 2 "int5_operand" "L"))))
2970
   (set (match_dup 1) (plus:DI (match_dup 1) (match_dup 2)))]
2971
  "TARGET_64BIT"
2972
  "ldb,mb %2(%1),%0"
2973
  [(set_attr "type" "load")
2974
   (set_attr "length" "4")])
2975
 
2976
; Now the same thing with zero extensions.
2977
(define_insn ""
2978
  [(set (match_operand:DI 0 "register_operand" "=r")
2979
        (zero_extend:DI (mem:QI (plus:DI
2980
                                  (match_operand:DI 1 "register_operand" "+r")
2981
                                  (match_operand:DI 2 "int5_operand" "L")))))
2982
   (set (match_dup 1) (plus:DI (match_dup 1) (match_dup 2)))]
2983
  "TARGET_64BIT"
2984
  "ldb,mb %2(%1),%0"
2985
  [(set_attr "type" "load")
2986
   (set_attr "length" "4")])
2987
 
2988
(define_insn ""
2989
  [(set (match_operand:SI 0 "register_operand" "=r")
2990
        (zero_extend:SI (mem:QI (plus:SI
2991
                                  (match_operand:SI 1 "register_operand" "+r")
2992
                                  (match_operand:SI 2 "int5_operand" "L")))))
2993
   (set (match_dup 1) (plus:SI (match_dup 1) (match_dup 2)))]
2994
  ""
2995
  "{ldbs|ldb},mb %2(%1),%0"
2996
  [(set_attr "type" "load")
2997
   (set_attr "length" "4")])
2998
 
2999
(define_insn ""
3000
  [(set (match_operand:SI 0 "register_operand" "=r")
3001
        (zero_extend:SI (mem:QI (plus:DI
3002
                                  (match_operand:DI 1 "register_operand" "+r")
3003
                                  (match_operand:DI 2 "int5_operand" "L")))))
3004
   (set (match_dup 1) (plus:DI (match_dup 1) (match_dup 2)))]
3005
  "TARGET_64BIT"
3006
  "ldb,mb %2(%1),%0"
3007
  [(set_attr "type" "load")
3008
   (set_attr "length" "4")])
3009
 
3010
(define_insn ""
3011
  [(set (match_operand:HI 0 "register_operand" "=r")
3012
        (zero_extend:HI (mem:QI (plus:SI
3013
                                  (match_operand:SI 1 "register_operand" "+r")
3014
                                  (match_operand:SI 2 "int5_operand" "L")))))
3015
   (set (match_dup 1) (plus:SI (match_dup 1) (match_dup 2)))]
3016
  ""
3017
  "{ldbs|ldb},mb %2(%1),%0"
3018
  [(set_attr "type" "load")
3019
   (set_attr "length" "4")])
3020
 
3021
(define_insn ""
3022
  [(set (match_operand:HI 0 "register_operand" "=r")
3023
        (zero_extend:HI (mem:QI (plus:DI
3024
                                  (match_operand:DI 1 "register_operand" "+r")
3025
                                  (match_operand:DI 2 "int5_operand" "L")))))
3026
   (set (match_dup 1) (plus:DI (match_dup 1) (match_dup 2)))]
3027
  "TARGET_64BIT"
3028
  "ldb,mb %2(%1),%0"
3029
  [(set_attr "type" "load")
3030
   (set_attr "length" "4")])
3031
 
3032
(define_insn ""
3033
  [(set (mem:QI (plus:SI (match_operand:SI 0 "register_operand" "+r")
3034
                         (match_operand:SI 1 "int5_operand" "L")))
3035
        (match_operand:QI 2 "reg_or_0_operand" "rM"))
3036
   (set (match_dup 0)
3037
        (plus:SI (match_dup 0) (match_dup 1)))]
3038
  ""
3039
  "{stbs|stb},mb %r2,%1(%0)"
3040
  [(set_attr "type" "store")
3041
   (set_attr "length" "4")])
3042
 
3043
(define_insn ""
3044
  [(set (mem:QI (plus:DI (match_operand:DI 0 "register_operand" "+r")
3045
                         (match_operand:DI 1 "int5_operand" "L")))
3046
        (match_operand:QI 2 "reg_or_0_operand" "rM"))
3047
   (set (match_dup 0)
3048
        (plus:DI (match_dup 0) (match_dup 1)))]
3049
  "TARGET_64BIT"
3050
  "stb,mb %r2,%1(%0)"
3051
  [(set_attr "type" "store")
3052
   (set_attr "length" "4")])
3053
 
3054
;; The definition of this insn does not really explain what it does,
3055
;; but it should suffice that anything generated as this insn will be
3056
;; recognized as a movmemsi operation, and that it will not successfully
3057
;; combine with anything.
3058
(define_expand "movmemsi"
3059
  [(parallel [(set (match_operand:BLK 0 "" "")
3060
                   (match_operand:BLK 1 "" ""))
3061
              (clobber (match_dup 4))
3062
              (clobber (match_dup 5))
3063
              (clobber (match_dup 6))
3064
              (clobber (match_dup 7))
3065
              (clobber (match_dup 8))
3066
              (use (match_operand:SI 2 "arith_operand" ""))
3067
              (use (match_operand:SI 3 "const_int_operand" ""))])]
3068
  "!TARGET_64BIT && optimize > 0"
3069
  "
3070
{
3071
  int size, align;
3072
 
3073
  /* HP provides very fast block move library routine for the PA;
3074
     this routine includes:
3075
 
3076
        4x4 byte at a time block moves,
3077
        1x4 byte at a time with alignment checked at runtime with
3078
            attempts to align the source and destination as needed
3079
        1x1 byte loop
3080
 
3081
     With that in mind, here's the heuristics to try and guess when
3082
     the inlined block move will be better than the library block
3083
     move:
3084
 
3085
        If the size isn't constant, then always use the library routines.
3086
 
3087
        If the size is large in respect to the known alignment, then use
3088
        the library routines.
3089
 
3090
        If the size is small in respect to the known alignment, then open
3091
        code the copy (since that will lead to better scheduling).
3092
 
3093
        Else use the block move pattern.   */
3094
 
3095
  /* Undetermined size, use the library routine.  */
3096
  if (GET_CODE (operands[2]) != CONST_INT)
3097
    FAIL;
3098
 
3099
  size = INTVAL (operands[2]);
3100
  align = INTVAL (operands[3]);
3101
  align = align > 4 ? 4 : (align ? align : 1);
3102
 
3103
  /* If size/alignment is large, then use the library routines.  */
3104
  if (size / align > 16)
3105
    FAIL;
3106
 
3107
  /* This does happen, but not often enough to worry much about.  */
3108
  if (size / align < MOVE_RATIO (optimize_insn_for_speed_p ()))
3109
    FAIL;
3110
 
3111
  /* Fall through means we're going to use our block move pattern.  */
3112
  operands[0]
3113
    = replace_equiv_address (operands[0],
3114
                             copy_to_mode_reg (SImode, XEXP (operands[0], 0)));
3115
  operands[1]
3116
    = replace_equiv_address (operands[1],
3117
                             copy_to_mode_reg (SImode, XEXP (operands[1], 0)));
3118
  operands[4] = gen_reg_rtx (SImode);
3119
  operands[5] = gen_reg_rtx (SImode);
3120
  operands[6] = gen_reg_rtx (SImode);
3121
  operands[7] = gen_reg_rtx (SImode);
3122
  operands[8] = gen_reg_rtx (SImode);
3123
}")
3124
 
3125
;; The operand constraints are written like this to support both compile-time
3126
;; and run-time determined byte counts.  The expander and output_block_move
3127
;; only support compile-time determined counts at this time.
3128
;;
3129
;; If the count is run-time determined, the register with the byte count
3130
;; is clobbered by the copying code, and therefore it is forced to operand 2.
3131
;;
3132
;; We used to clobber operands 0 and 1.  However, a change to regrename.c
3133
;; broke this semantic for pseudo registers.  We can't use match_scratch
3134
;; as this requires two registers in the class R1_REGS when the MEMs for
3135
;; operands 0 and 1 are both equivalent to symbolic MEMs.  Thus, we are
3136
;; forced to internally copy operands 0 and 1 to operands 7 and 8,
3137
;; respectively.  We then split or peephole optimize after reload.
3138
(define_insn "movmemsi_prereload"
3139
  [(set (mem:BLK (match_operand:SI 0 "register_operand" "r,r"))
3140
        (mem:BLK (match_operand:SI 1 "register_operand" "r,r")))
3141
   (clobber (match_operand:SI 2 "register_operand" "=&r,&r"))	;loop cnt/tmp
3142
   (clobber (match_operand:SI 3 "register_operand" "=&r,&r"))	;item tmp1
3143
   (clobber (match_operand:SI 6 "register_operand" "=&r,&r"))	;item tmp2
3144
   (clobber (match_operand:SI 7 "register_operand" "=&r,&r"))	;item tmp3
3145
   (clobber (match_operand:SI 8 "register_operand" "=&r,&r"))	;item tmp4
3146
   (use (match_operand:SI 4 "arith_operand" "J,2"))      ;byte count
3147
   (use (match_operand:SI 5 "const_int_operand" "n,n"))] ;alignment
3148
  "!TARGET_64BIT"
3149
  "#"
3150
  [(set_attr "type" "multi,multi")])
3151
 
3152
(define_split
3153
  [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3154
                   (match_operand:BLK 1 "memory_operand" ""))
3155
              (clobber (match_operand:SI 2 "register_operand" ""))
3156
              (clobber (match_operand:SI 3 "register_operand" ""))
3157
              (clobber (match_operand:SI 6 "register_operand" ""))
3158
              (clobber (match_operand:SI 7 "register_operand" ""))
3159
              (clobber (match_operand:SI 8 "register_operand" ""))
3160
              (use (match_operand:SI 4 "arith_operand" ""))
3161
              (use (match_operand:SI 5 "const_int_operand" ""))])]
3162
  "!TARGET_64BIT && reload_completed && !flag_peephole2
3163
   && GET_CODE (operands[0]) == MEM
3164
   && register_operand (XEXP (operands[0], 0), SImode)
3165
   && GET_CODE (operands[1]) == MEM
3166
   && register_operand (XEXP (operands[1], 0), SImode)"
3167
  [(set (match_dup 7) (match_dup 9))
3168
   (set (match_dup 8) (match_dup 10))
3169
   (parallel [(set (match_dup 0) (match_dup 1))
3170
              (clobber (match_dup 2))
3171
              (clobber (match_dup 3))
3172
              (clobber (match_dup 6))
3173
              (clobber (match_dup 7))
3174
              (clobber (match_dup 8))
3175
              (use (match_dup 4))
3176
              (use (match_dup 5))
3177
              (const_int 0)])]
3178
  "
3179
{
3180
  operands[9] = XEXP (operands[0], 0);
3181
  operands[10] = XEXP (operands[1], 0);
3182
  operands[0] = replace_equiv_address (operands[0], operands[7]);
3183
  operands[1] = replace_equiv_address (operands[1], operands[8]);
3184
}")
3185
 
3186
(define_peephole2
3187
  [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3188
                   (match_operand:BLK 1 "memory_operand" ""))
3189
              (clobber (match_operand:SI 2 "register_operand" ""))
3190
              (clobber (match_operand:SI 3 "register_operand" ""))
3191
              (clobber (match_operand:SI 6 "register_operand" ""))
3192
              (clobber (match_operand:SI 7 "register_operand" ""))
3193
              (clobber (match_operand:SI 8 "register_operand" ""))
3194
              (use (match_operand:SI 4 "arith_operand" ""))
3195
              (use (match_operand:SI 5 "const_int_operand" ""))])]
3196
  "!TARGET_64BIT
3197
   && GET_CODE (operands[0]) == MEM
3198
   && register_operand (XEXP (operands[0], 0), SImode)
3199
   && GET_CODE (operands[1]) == MEM
3200
   && register_operand (XEXP (operands[1], 0), SImode)"
3201
  [(parallel [(set (match_dup 0) (match_dup 1))
3202
              (clobber (match_dup 2))
3203
              (clobber (match_dup 3))
3204
              (clobber (match_dup 6))
3205
              (clobber (match_dup 7))
3206
              (clobber (match_dup 8))
3207
              (use (match_dup 4))
3208
              (use (match_dup 5))
3209
              (const_int 0)])]
3210
  "
3211
{
3212
  rtx addr = XEXP (operands[0], 0);
3213
  if (dead_or_set_p (curr_insn, addr))
3214
    operands[7] = addr;
3215
  else
3216
    {
3217
      emit_insn (gen_rtx_SET (VOIDmode, operands[7], addr));
3218
      operands[0] = replace_equiv_address (operands[0], operands[7]);
3219
    }
3220
 
3221
  addr = XEXP (operands[1], 0);
3222
  if (dead_or_set_p (curr_insn, addr))
3223
    operands[8] = addr;
3224
  else
3225
    {
3226
      emit_insn (gen_rtx_SET (VOIDmode, operands[8], addr));
3227
      operands[1] = replace_equiv_address (operands[1], operands[8]);
3228
    }
3229
}")
3230
 
3231
(define_insn "movmemsi_postreload"
3232
  [(set (mem:BLK (match_operand:SI 0 "register_operand" "+r,r"))
3233
        (mem:BLK (match_operand:SI 1 "register_operand" "+r,r")))
3234
   (clobber (match_operand:SI 2 "register_operand" "=&r,&r"))	;loop cnt/tmp
3235
   (clobber (match_operand:SI 3 "register_operand" "=&r,&r"))	;item tmp1
3236
   (clobber (match_operand:SI 6 "register_operand" "=&r,&r"))	;item tmp2
3237
   (clobber (match_dup 0))
3238
   (clobber (match_dup 1))
3239
   (use (match_operand:SI 4 "arith_operand" "J,2"))      ;byte count
3240
   (use (match_operand:SI 5 "const_int_operand" "n,n"))  ;alignment
3241
   (const_int 0)]
3242
  "!TARGET_64BIT && reload_completed"
3243
  "* return output_block_move (operands, !which_alternative);"
3244
  [(set_attr "type" "multi,multi")])
3245
 
3246
(define_expand "movmemdi"
3247
  [(parallel [(set (match_operand:BLK 0 "" "")
3248
                   (match_operand:BLK 1 "" ""))
3249
              (clobber (match_dup 4))
3250
              (clobber (match_dup 5))
3251
              (clobber (match_dup 6))
3252
              (clobber (match_dup 7))
3253
              (clobber (match_dup 8))
3254
              (use (match_operand:DI 2 "arith_operand" ""))
3255
              (use (match_operand:DI 3 "const_int_operand" ""))])]
3256
  "TARGET_64BIT && optimize > 0"
3257
  "
3258
{
3259
  int size, align;
3260
 
3261
  /* HP provides very fast block move library routine for the PA;
3262
     this routine includes:
3263
 
3264
        4x4 byte at a time block moves,
3265
        1x4 byte at a time with alignment checked at runtime with
3266
            attempts to align the source and destination as needed
3267
        1x1 byte loop
3268
 
3269
     With that in mind, here's the heuristics to try and guess when
3270
     the inlined block move will be better than the library block
3271
     move:
3272
 
3273
        If the size isn't constant, then always use the library routines.
3274
 
3275
        If the size is large in respect to the known alignment, then use
3276
        the library routines.
3277
 
3278
        If the size is small in respect to the known alignment, then open
3279
        code the copy (since that will lead to better scheduling).
3280
 
3281
        Else use the block move pattern.   */
3282
 
3283
  /* Undetermined size, use the library routine.  */
3284
  if (GET_CODE (operands[2]) != CONST_INT)
3285
    FAIL;
3286
 
3287
  size = INTVAL (operands[2]);
3288
  align = INTVAL (operands[3]);
3289
  align = align > 8 ? 8 : (align ? align : 1);
3290
 
3291
  /* If size/alignment is large, then use the library routines.  */
3292
  if (size / align > 16)
3293
    FAIL;
3294
 
3295
  /* This does happen, but not often enough to worry much about.  */
3296
  if (size / align < MOVE_RATIO (optimize_insn_for_speed_p ()))
3297
    FAIL;
3298
 
3299
  /* Fall through means we're going to use our block move pattern.  */
3300
  operands[0]
3301
    = replace_equiv_address (operands[0],
3302
                             copy_to_mode_reg (DImode, XEXP (operands[0], 0)));
3303
  operands[1]
3304
    = replace_equiv_address (operands[1],
3305
                             copy_to_mode_reg (DImode, XEXP (operands[1], 0)));
3306
  operands[4] = gen_reg_rtx (DImode);
3307
  operands[5] = gen_reg_rtx (DImode);
3308
  operands[6] = gen_reg_rtx (DImode);
3309
  operands[7] = gen_reg_rtx (DImode);
3310
  operands[8] = gen_reg_rtx (DImode);
3311
}")
3312
 
3313
;; The operand constraints are written like this to support both compile-time
3314
;; and run-time determined byte counts.  The expander and output_block_move
3315
;; only support compile-time determined counts at this time.
3316
;;
3317
;; If the count is run-time determined, the register with the byte count
3318
;; is clobbered by the copying code, and therefore it is forced to operand 2.
3319
;;
3320
;; We used to clobber operands 0 and 1.  However, a change to regrename.c
3321
;; broke this semantic for pseudo registers.  We can't use match_scratch
3322
;; as this requires two registers in the class R1_REGS when the MEMs for
3323
;; operands 0 and 1 are both equivalent to symbolic MEMs.  Thus, we are
3324
;; forced to internally copy operands 0 and 1 to operands 7 and 8,
3325
;; respectively.  We then split or peephole optimize after reload.
3326
(define_insn "movmemdi_prereload"
3327
  [(set (mem:BLK (match_operand:DI 0 "register_operand" "r,r"))
3328
        (mem:BLK (match_operand:DI 1 "register_operand" "r,r")))
3329
   (clobber (match_operand:DI 2 "register_operand" "=&r,&r"))	;loop cnt/tmp
3330
   (clobber (match_operand:DI 3 "register_operand" "=&r,&r"))	;item tmp1
3331
   (clobber (match_operand:DI 6 "register_operand" "=&r,&r"))	;item tmp2
3332
   (clobber (match_operand:DI 7 "register_operand" "=&r,&r"))	;item tmp3
3333
   (clobber (match_operand:DI 8 "register_operand" "=&r,&r"))	;item tmp4
3334
   (use (match_operand:DI 4 "arith_operand" "J,2"))      ;byte count
3335
   (use (match_operand:DI 5 "const_int_operand" "n,n"))] ;alignment
3336
  "TARGET_64BIT"
3337
  "#"
3338
  [(set_attr "type" "multi,multi")])
3339
 
3340
(define_split
3341
  [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3342
                   (match_operand:BLK 1 "memory_operand" ""))
3343
              (clobber (match_operand:DI 2 "register_operand" ""))
3344
              (clobber (match_operand:DI 3 "register_operand" ""))
3345
              (clobber (match_operand:DI 6 "register_operand" ""))
3346
              (clobber (match_operand:DI 7 "register_operand" ""))
3347
              (clobber (match_operand:DI 8 "register_operand" ""))
3348
              (use (match_operand:DI 4 "arith_operand" ""))
3349
              (use (match_operand:DI 5 "const_int_operand" ""))])]
3350
  "TARGET_64BIT && reload_completed && !flag_peephole2
3351
   && GET_CODE (operands[0]) == MEM
3352
   && register_operand (XEXP (operands[0], 0), DImode)
3353
   && GET_CODE (operands[1]) == MEM
3354
   && register_operand (XEXP (operands[1], 0), DImode)"
3355
  [(set (match_dup 7) (match_dup 9))
3356
   (set (match_dup 8) (match_dup 10))
3357
   (parallel [(set (match_dup 0) (match_dup 1))
3358
              (clobber (match_dup 2))
3359
              (clobber (match_dup 3))
3360
              (clobber (match_dup 6))
3361
              (clobber (match_dup 7))
3362
              (clobber (match_dup 8))
3363
              (use (match_dup 4))
3364
              (use (match_dup 5))
3365
              (const_int 0)])]
3366
  "
3367
{
3368
  operands[9] = XEXP (operands[0], 0);
3369
  operands[10] = XEXP (operands[1], 0);
3370
  operands[0] = replace_equiv_address (operands[0], operands[7]);
3371
  operands[1] = replace_equiv_address (operands[1], operands[8]);
3372
}")
3373
 
3374
(define_peephole2
3375
  [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3376
                   (match_operand:BLK 1 "memory_operand" ""))
3377
              (clobber (match_operand:DI 2 "register_operand" ""))
3378
              (clobber (match_operand:DI 3 "register_operand" ""))
3379
              (clobber (match_operand:DI 6 "register_operand" ""))
3380
              (clobber (match_operand:DI 7 "register_operand" ""))
3381
              (clobber (match_operand:DI 8 "register_operand" ""))
3382
              (use (match_operand:DI 4 "arith_operand" ""))
3383
              (use (match_operand:DI 5 "const_int_operand" ""))])]
3384
  "TARGET_64BIT
3385
   && GET_CODE (operands[0]) == MEM
3386
   && register_operand (XEXP (operands[0], 0), DImode)
3387
   && GET_CODE (operands[1]) == MEM
3388
   && register_operand (XEXP (operands[1], 0), DImode)"
3389
  [(parallel [(set (match_dup 0) (match_dup 1))
3390
              (clobber (match_dup 2))
3391
              (clobber (match_dup 3))
3392
              (clobber (match_dup 6))
3393
              (clobber (match_dup 7))
3394
              (clobber (match_dup 8))
3395
              (use (match_dup 4))
3396
              (use (match_dup 5))
3397
              (const_int 0)])]
3398
  "
3399
{
3400
  rtx addr = XEXP (operands[0], 0);
3401
  if (dead_or_set_p (curr_insn, addr))
3402
    operands[7] = addr;
3403
  else
3404
    {
3405
      emit_insn (gen_rtx_SET (VOIDmode, operands[7], addr));
3406
      operands[0] = replace_equiv_address (operands[0], operands[7]);
3407
    }
3408
 
3409
  addr = XEXP (operands[1], 0);
3410
  if (dead_or_set_p (curr_insn, addr))
3411
    operands[8] = addr;
3412
  else
3413
    {
3414
      emit_insn (gen_rtx_SET (VOIDmode, operands[8], addr));
3415
      operands[1] = replace_equiv_address (operands[1], operands[8]);
3416
    }
3417
}")
3418
 
3419
(define_insn "movmemdi_postreload"
3420
  [(set (mem:BLK (match_operand:DI 0 "register_operand" "+r,r"))
3421
        (mem:BLK (match_operand:DI 1 "register_operand" "+r,r")))
3422
   (clobber (match_operand:DI 2 "register_operand" "=&r,&r"))	;loop cnt/tmp
3423
   (clobber (match_operand:DI 3 "register_operand" "=&r,&r"))	;item tmp1
3424
   (clobber (match_operand:DI 6 "register_operand" "=&r,&r"))	;item tmp2
3425
   (clobber (match_dup 0))
3426
   (clobber (match_dup 1))
3427
   (use (match_operand:DI 4 "arith_operand" "J,2"))      ;byte count
3428
   (use (match_operand:DI 5 "const_int_operand" "n,n"))  ;alignment
3429
   (const_int 0)]
3430
  "TARGET_64BIT && reload_completed"
3431
  "* return output_block_move (operands, !which_alternative);"
3432
  [(set_attr "type" "multi,multi")])
3433
 
3434
(define_expand "setmemsi"
3435
  [(parallel [(set (match_operand:BLK 0 "" "")
3436
                   (match_operand 2 "const_int_operand" ""))
3437
              (clobber (match_dup 4))
3438
              (clobber (match_dup 5))
3439
              (use (match_operand:SI 1 "arith_operand" ""))
3440
              (use (match_operand:SI 3 "const_int_operand" ""))])]
3441
  "!TARGET_64BIT && optimize > 0"
3442
  "
3443
{
3444
  int size, align;
3445
 
3446
  /* If value to set is not zero, use the library routine.  */
3447
  if (operands[2] != const0_rtx)
3448
    FAIL;
3449
 
3450
  /* Undetermined size, use the library routine.  */
3451
  if (GET_CODE (operands[1]) != CONST_INT)
3452
    FAIL;
3453
 
3454
  size = INTVAL (operands[1]);
3455
  align = INTVAL (operands[3]);
3456
  align = align > 4 ? 4 : align;
3457
 
3458
  /* If size/alignment is large, then use the library routines.  */
3459
  if (size / align > 16)
3460
    FAIL;
3461
 
3462
  /* This does happen, but not often enough to worry much about.  */
3463
  if (size / align < MOVE_RATIO (optimize_insn_for_speed_p ()))
3464
    FAIL;
3465
 
3466
  /* Fall through means we're going to use our block clear pattern.  */
3467
  operands[0]
3468
    = replace_equiv_address (operands[0],
3469
                             copy_to_mode_reg (SImode, XEXP (operands[0], 0)));
3470
  operands[4] = gen_reg_rtx (SImode);
3471
  operands[5] = gen_reg_rtx (SImode);
3472
}")
3473
 
3474
(define_insn "clrmemsi_prereload"
3475
  [(set (mem:BLK (match_operand:SI 0 "register_operand" "r,r"))
3476
        (const_int 0))
3477
   (clobber (match_operand:SI 1 "register_operand" "=&r,&r"))	;loop cnt/tmp
3478
   (clobber (match_operand:SI 4 "register_operand" "=&r,&r"))	;tmp1
3479
   (use (match_operand:SI 2 "arith_operand" "J,1"))      ;byte count
3480
   (use (match_operand:SI 3 "const_int_operand" "n,n"))] ;alignment
3481
  "!TARGET_64BIT"
3482
  "#"
3483
  [(set_attr "type" "multi,multi")])
3484
 
3485
(define_split
3486
  [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3487
                   (const_int 0))
3488
              (clobber (match_operand:SI 1 "register_operand" ""))
3489
              (clobber (match_operand:SI 4 "register_operand" ""))
3490
              (use (match_operand:SI 2 "arith_operand" ""))
3491
              (use (match_operand:SI 3 "const_int_operand" ""))])]
3492
  "!TARGET_64BIT && reload_completed && !flag_peephole2
3493
   && GET_CODE (operands[0]) == MEM
3494
   && register_operand (XEXP (operands[0], 0), SImode)"
3495
  [(set (match_dup 4) (match_dup 5))
3496
   (parallel [(set (match_dup 0) (const_int 0))
3497
              (clobber (match_dup 1))
3498
              (clobber (match_dup 4))
3499
              (use (match_dup 2))
3500
              (use (match_dup 3))
3501
              (const_int 0)])]
3502
  "
3503
{
3504
  operands[5] = XEXP (operands[0], 0);
3505
  operands[0] = replace_equiv_address (operands[0], operands[4]);
3506
}")
3507
 
3508
(define_peephole2
3509
  [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3510
                   (const_int 0))
3511
              (clobber (match_operand:SI 1 "register_operand" ""))
3512
              (clobber (match_operand:SI 4 "register_operand" ""))
3513
              (use (match_operand:SI 2 "arith_operand" ""))
3514
              (use (match_operand:SI 3 "const_int_operand" ""))])]
3515
  "!TARGET_64BIT
3516
   && GET_CODE (operands[0]) == MEM
3517
   && register_operand (XEXP (operands[0], 0), SImode)"
3518
  [(parallel [(set (match_dup 0) (const_int 0))
3519
              (clobber (match_dup 1))
3520
              (clobber (match_dup 4))
3521
              (use (match_dup 2))
3522
              (use (match_dup 3))
3523
              (const_int 0)])]
3524
  "
3525
{
3526
  rtx addr = XEXP (operands[0], 0);
3527
  if (dead_or_set_p (curr_insn, addr))
3528
    operands[4] = addr;
3529
  else
3530
    {
3531
      emit_insn (gen_rtx_SET (VOIDmode, operands[4], addr));
3532
      operands[0] = replace_equiv_address (operands[0], operands[4]);
3533
    }
3534
}")
3535
 
3536
(define_insn "clrmemsi_postreload"
3537
  [(set (mem:BLK (match_operand:SI 0 "register_operand" "+r,r"))
3538
        (const_int 0))
3539
   (clobber (match_operand:SI 1 "register_operand" "=&r,&r"))	;loop cnt/tmp
3540
   (clobber (match_dup 0))
3541
   (use (match_operand:SI 2 "arith_operand" "J,1"))      ;byte count
3542
   (use (match_operand:SI 3 "const_int_operand" "n,n"))  ;alignment
3543
   (const_int 0)]
3544
  "!TARGET_64BIT && reload_completed"
3545
  "* return output_block_clear (operands, !which_alternative);"
3546
  [(set_attr "type" "multi,multi")])
3547
 
3548
(define_expand "setmemdi"
3549
  [(parallel [(set (match_operand:BLK 0 "" "")
3550
                   (match_operand 2 "const_int_operand" ""))
3551
              (clobber (match_dup 4))
3552
              (clobber (match_dup 5))
3553
              (use (match_operand:DI 1 "arith_operand" ""))
3554
              (use (match_operand:DI 3 "const_int_operand" ""))])]
3555
  "TARGET_64BIT && optimize > 0"
3556
  "
3557
{
3558
  int size, align;
3559
 
3560
  /* If value to set is not zero, use the library routine.  */
3561
  if (operands[2] != const0_rtx)
3562
    FAIL;
3563
 
3564
  /* Undetermined size, use the library routine.  */
3565
  if (GET_CODE (operands[1]) != CONST_INT)
3566
    FAIL;
3567
 
3568
  size = INTVAL (operands[1]);
3569
  align = INTVAL (operands[3]);
3570
  align = align > 8 ? 8 : align;
3571
 
3572
  /* If size/alignment is large, then use the library routines.  */
3573
  if (size / align > 16)
3574
    FAIL;
3575
 
3576
  /* This does happen, but not often enough to worry much about.  */
3577
  if (size / align < MOVE_RATIO (optimize_insn_for_speed_p ()))
3578
    FAIL;
3579
 
3580
  /* Fall through means we're going to use our block clear pattern.  */
3581
  operands[0]
3582
    = replace_equiv_address (operands[0],
3583
                             copy_to_mode_reg (DImode, XEXP (operands[0], 0)));
3584
  operands[4] = gen_reg_rtx (DImode);
3585
  operands[5] = gen_reg_rtx (DImode);
3586
}")
3587
 
3588
(define_insn "clrmemdi_prereload"
3589
  [(set (mem:BLK (match_operand:DI 0 "register_operand" "r,r"))
3590
        (const_int 0))
3591
   (clobber (match_operand:DI 1 "register_operand" "=&r,&r"))	;loop cnt/tmp
3592
   (clobber (match_operand:DI 4 "register_operand" "=&r,&r"))	;item tmp1
3593
   (use (match_operand:DI 2 "arith_operand" "J,1"))      ;byte count
3594
   (use (match_operand:DI 3 "const_int_operand" "n,n"))] ;alignment
3595
  "TARGET_64BIT"
3596
  "#"
3597
  [(set_attr "type" "multi,multi")])
3598
 
3599
(define_split
3600
  [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3601
                   (const_int 0))
3602
              (clobber (match_operand:DI 1 "register_operand" ""))
3603
              (clobber (match_operand:DI 4 "register_operand" ""))
3604
              (use (match_operand:DI 2 "arith_operand" ""))
3605
              (use (match_operand:DI 3 "const_int_operand" ""))])]
3606
  "TARGET_64BIT && reload_completed && !flag_peephole2
3607
   && GET_CODE (operands[0]) == MEM
3608
   && register_operand (XEXP (operands[0], 0), DImode)"
3609
  [(set (match_dup 4) (match_dup 5))
3610
   (parallel [(set (match_dup 0) (const_int 0))
3611
              (clobber (match_dup 1))
3612
              (clobber (match_dup 4))
3613
              (use (match_dup 2))
3614
              (use (match_dup 3))
3615
              (const_int 0)])]
3616
  "
3617
{
3618
  operands[5] = XEXP (operands[0], 0);
3619
  operands[0] = replace_equiv_address (operands[0], operands[4]);
3620
}")
3621
 
3622
(define_peephole2
3623
  [(parallel [(set (match_operand:BLK 0 "memory_operand" "")
3624
                   (const_int 0))
3625
              (clobber (match_operand:DI 1 "register_operand" ""))
3626
              (clobber (match_operand:DI 4 "register_operand" ""))
3627
              (use (match_operand:DI 2 "arith_operand" ""))
3628
              (use (match_operand:DI 3 "const_int_operand" ""))])]
3629
  "TARGET_64BIT
3630
   && GET_CODE (operands[0]) == MEM
3631
   && register_operand (XEXP (operands[0], 0), DImode)"
3632
  [(parallel [(set (match_dup 0) (const_int 0))
3633
              (clobber (match_dup 1))
3634
              (clobber (match_dup 4))
3635
              (use (match_dup 2))
3636
              (use (match_dup 3))
3637
              (const_int 0)])]
3638
  "
3639
{
3640
  rtx addr = XEXP (operands[0], 0);
3641
  if (dead_or_set_p (curr_insn, addr))
3642
    operands[4] = addr;
3643
  else
3644
    {
3645
      emit_insn (gen_rtx_SET (VOIDmode, operands[4], addr));
3646
      operands[0] = replace_equiv_address (operands[0], operands[4]);
3647
    }
3648
}")
3649
 
3650
(define_insn "clrmemdi_postreload"
3651
  [(set (mem:BLK (match_operand:DI 0 "register_operand" "+r,r"))
3652
        (const_int 0))
3653
   (clobber (match_operand:DI 1 "register_operand" "=&r,&r"))	;loop cnt/tmp
3654
   (clobber (match_dup 0))
3655
   (use (match_operand:DI 2 "arith_operand" "J,1"))      ;byte count
3656
   (use (match_operand:DI 3 "const_int_operand" "n,n"))  ;alignment
3657
   (const_int 0)]
3658
  "TARGET_64BIT && reload_completed"
3659
  "* return output_block_clear (operands, !which_alternative);"
3660
  [(set_attr "type" "multi,multi")])
3661
 
3662
;; Floating point move insns
3663
 
3664
;; This pattern forces (set (reg:DF ...) (const_double ...))
3665
;; to be reloaded by putting the constant into memory when
3666
;; reg is a floating point register.
3667
;;
3668
;; For integer registers we use ldil;ldo to set the appropriate
3669
;; value.
3670
;;
3671
;; This must come before the movdf pattern, and it must be present
3672
;; to handle obscure reloading cases.
3673
(define_insn ""
3674
  [(set (match_operand:DF 0 "register_operand" "=?r,f")
3675
        (match_operand:DF 1 "" "?F,m"))]
3676
  "GET_CODE (operands[1]) == CONST_DOUBLE
3677
   && operands[1] != CONST0_RTX (DFmode)
3678
   && !TARGET_64BIT
3679
   && !TARGET_SOFT_FLOAT"
3680
  "* return (which_alternative == 0 ? output_move_double (operands)
3681
                                    : \"fldd%F1 %1,%0\");"
3682
  [(set_attr "type" "move,fpload")
3683
   (set_attr "length" "16,4")])
3684
 
3685
(define_expand "movdf"
3686
  [(set (match_operand:DF 0 "general_operand" "")
3687
        (match_operand:DF 1 "general_operand" ""))]
3688
  ""
3689
  "
3690
{
3691
  if (GET_CODE (operands[1]) == CONST_DOUBLE
3692
      && operands[1] != CONST0_RTX (DFmode))
3693
    {
3694
      /* Reject CONST_DOUBLE loads to all hard registers when
3695
         generating 64-bit code and to floating point registers
3696
         when generating 32-bit code.  */
3697
      if (REG_P (operands[0])
3698
          && HARD_REGISTER_P (operands[0])
3699
          && (TARGET_64BIT || REGNO (operands[0]) >= 32))
3700
        FAIL;
3701
 
3702
      if (TARGET_64BIT)
3703
        operands[1] = force_const_mem (DFmode, operands[1]);
3704
    }
3705
 
3706
  if (emit_move_sequence (operands, DFmode, 0))
3707
    DONE;
3708
}")
3709
 
3710
;; Handle DFmode input reloads requiring a general register as a
3711
;; scratch register.
3712
(define_expand "reload_indf"
3713
  [(set (match_operand:DF 0 "register_operand" "=Z")
3714
        (match_operand:DF 1 "non_hard_reg_operand" ""))
3715
   (clobber (match_operand:DF 2 "register_operand" "=&r"))]
3716
  ""
3717
  "
3718
{
3719
  if (emit_move_sequence (operands, DFmode, operands[2]))
3720
    DONE;
3721
 
3722
  /* We don't want the clobber emitted, so handle this ourselves.  */
3723
  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
3724
  DONE;
3725
}")
3726
 
3727
;; Handle DFmode output reloads requiring a general register as a
3728
;; scratch register.
3729
(define_expand "reload_outdf"
3730
 [(set (match_operand:DF 0 "non_hard_reg_operand" "")
3731
        (match_operand:DF 1  "register_operand" "Z"))
3732
   (clobber (match_operand:DF 2 "register_operand" "=&r"))]
3733
  ""
3734
  "
3735
{
3736
  if (emit_move_sequence (operands, DFmode, operands[2]))
3737
    DONE;
3738
 
3739
  /* We don't want the clobber emitted, so handle this ourselves.  */
3740
  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
3741
  DONE;
3742
}")
3743
 
3744
(define_insn ""
3745
  [(set (match_operand:DF 0 "move_dest_operand"
3746
                          "=f,*r,Q,?o,?Q,f,*r,*r,?*r,?f")
3747
        (match_operand:DF 1 "reg_or_0_or_nonsymb_mem_operand"
3748
                          "fG,*rG,f,*r,*r,RQ,o,RQ,f,*r"))]
3749
  "(register_operand (operands[0], DFmode)
3750
    || reg_or_0_operand (operands[1], DFmode))
3751
   && !(GET_CODE (operands[1]) == CONST_DOUBLE
3752
        && GET_CODE (operands[0]) == MEM)
3753
   && !TARGET_64BIT
3754
   && !TARGET_SOFT_FLOAT"
3755
  "*
3756
{
3757
  if ((FP_REG_P (operands[0]) || FP_REG_P (operands[1])
3758
       || operands[1] == CONST0_RTX (DFmode))
3759
      && !(REG_P (operands[0]) && REG_P (operands[1])
3760
           && FP_REG_P (operands[0]) ^ FP_REG_P (operands[1])))
3761
    return output_fp_move_double (operands);
3762
  return output_move_double (operands);
3763
}"
3764
  [(set_attr "type" "fpalu,move,fpstore,store,store,fpload,load,load,fpstore_load,store_fpload")
3765
   (set_attr "length" "4,8,4,8,16,4,8,16,12,12")])
3766
 
3767
(define_insn ""
3768
  [(set (match_operand:DF 0 "indexed_memory_operand" "=R")
3769
        (match_operand:DF 1 "reg_or_0_operand" "f"))]
3770
  "!TARGET_SOFT_FLOAT
3771
   && !TARGET_DISABLE_INDEXING
3772
   && reload_completed"
3773
  "fstd%F0 %1,%0"
3774
  [(set_attr "type" "fpstore")
3775
   (set_attr "pa_combine_type" "addmove")
3776
   (set_attr "length" "4")])
3777
 
3778
(define_peephole2
3779
  [(set (match_operand:SI 0 "register_operand" "")
3780
        (plus:SI (mult:SI (match_operand:SI 1 "register_operand" "")
3781
                          (const_int 8))
3782
                 (match_operand:SI 2 "register_operand" "")))
3783
   (set (mem:DF (match_dup 0))
3784
        (match_operand:DF 3 "register_operand" ""))]
3785
  "!TARGET_SOFT_FLOAT
3786
   && !TARGET_DISABLE_INDEXING
3787
   && REG_OK_FOR_BASE_P (operands[2])
3788
   && FP_REGNO_P (REGNO (operands[3]))"
3789
  [(set (mem:DF (plus:SI (mult:SI (match_dup 1) (const_int 8)) (match_dup 2)))
3790
        (match_dup 3))
3791
   (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 8))
3792
                               (match_dup 2)))]
3793
  "")
3794
 
3795
(define_peephole2
3796
  [(set (match_operand:SI 0 "register_operand" "")
3797
        (plus:SI (match_operand:SI 2 "register_operand" "")
3798
                 (mult:SI (match_operand:SI 1 "register_operand" "")
3799
                          (const_int 8))))
3800
   (set (mem:DF (match_dup 0))
3801
        (match_operand:DF 3 "register_operand" ""))]
3802
  "!TARGET_SOFT_FLOAT
3803
   && !TARGET_DISABLE_INDEXING
3804
   && REG_OK_FOR_BASE_P (operands[2])
3805
   && FP_REGNO_P (REGNO (operands[3]))"
3806
  [(set (mem:DF (plus:SI (mult:SI (match_dup 1) (const_int 8)) (match_dup 2)))
3807
        (match_dup 3))
3808
   (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 8))
3809
                               (match_dup 2)))]
3810
  "")
3811
 
3812
(define_peephole2
3813
  [(set (match_operand:DI 0 "register_operand" "")
3814
        (plus:DI (mult:DI (match_operand:DI 1 "register_operand" "")
3815
                          (const_int 8))
3816
                 (match_operand:DI 2 "register_operand" "")))
3817
   (set (mem:DF (match_dup 0))
3818
        (match_operand:DF 3 "register_operand" ""))]
3819
  "!TARGET_SOFT_FLOAT
3820
   && !TARGET_DISABLE_INDEXING
3821
   && TARGET_64BIT
3822
   && REG_OK_FOR_BASE_P (operands[2])
3823
   && FP_REGNO_P (REGNO (operands[3]))"
3824
  [(set (mem:DF (plus:DI (mult:DI (match_dup 1) (const_int 8)) (match_dup 2)))
3825
        (match_dup 3))
3826
   (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 8))
3827
                               (match_dup 2)))]
3828
  "")
3829
 
3830
(define_peephole2
3831
  [(set (match_operand:DI 0 "register_operand" "")
3832
        (plus:DI (match_operand:DI 2 "register_operand" "")
3833
                 (mult:DI (match_operand:DI 1 "register_operand" "")
3834
                          (const_int 8))))
3835
   (set (mem:DF (match_dup 0))
3836
        (match_operand:DF 3 "register_operand" ""))]
3837
  "!TARGET_SOFT_FLOAT
3838
   && !TARGET_DISABLE_INDEXING
3839
   && TARGET_64BIT
3840
   && REG_OK_FOR_BASE_P (operands[2])
3841
   && FP_REGNO_P (REGNO (operands[3]))"
3842
  [(set (mem:DF (plus:DI (mult:DI (match_dup 1) (const_int 8)) (match_dup 2)))
3843
        (match_dup 3))
3844
   (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 8))
3845
                               (match_dup 2)))]
3846
  "")
3847
 
3848
(define_peephole2
3849
  [(set (match_operand:SI 0 "register_operand" "")
3850
        (plus:SI (match_operand:SI 1 "register_operand" "")
3851
                 (match_operand:SI 2 "register_operand" "")))
3852
   (set (mem:DF (match_dup 0))
3853
        (match_operand:DF 3 "register_operand" ""))]
3854
  "!TARGET_SOFT_FLOAT
3855
   && !TARGET_DISABLE_INDEXING
3856
   && TARGET_NO_SPACE_REGS
3857
   && REG_OK_FOR_INDEX_P (operands[1])
3858
   && REG_OK_FOR_BASE_P (operands[2])
3859
   && FP_REGNO_P (REGNO (operands[3]))"
3860
  [(set (mem:DF (plus:SI (match_dup 1) (match_dup 2)))
3861
        (match_dup 3))
3862
   (set (match_dup 0) (plus:SI (match_dup 1) (match_dup 2)))]
3863
  "")
3864
 
3865
(define_peephole2
3866
  [(set (match_operand:SI 0 "register_operand" "")
3867
        (plus:SI (match_operand:SI 1 "register_operand" "")
3868
                 (match_operand:SI 2 "register_operand" "")))
3869
   (set (mem:DF (match_dup 0))
3870
        (match_operand:DF 3 "register_operand" ""))]
3871
  "!TARGET_SOFT_FLOAT
3872
   && !TARGET_DISABLE_INDEXING
3873
   && TARGET_NO_SPACE_REGS
3874
   && REG_OK_FOR_BASE_P (operands[1])
3875
   && REG_OK_FOR_INDEX_P (operands[2])
3876
   && FP_REGNO_P (REGNO (operands[3]))"
3877
  [(set (mem:DF (plus:SI (match_dup 2) (match_dup 1)))
3878
        (match_dup 3))
3879
   (set (match_dup 0) (plus:SI (match_dup 2) (match_dup 1)))]
3880
  "")
3881
 
3882
(define_peephole2
3883
  [(set (match_operand:DI 0 "register_operand" "")
3884
        (plus:DI (match_operand:DI 1 "register_operand" "")
3885
                 (match_operand:DI 2 "register_operand" "")))
3886
   (set (mem:DF (match_dup 0))
3887
        (match_operand:DF 3 "register_operand" ""))]
3888
  "!TARGET_SOFT_FLOAT
3889
   && !TARGET_DISABLE_INDEXING
3890
   && TARGET_64BIT
3891
   && TARGET_NO_SPACE_REGS
3892
   && REG_OK_FOR_INDEX_P (operands[1])
3893
   && REG_OK_FOR_BASE_P (operands[2])
3894
   && FP_REGNO_P (REGNO (operands[3]))"
3895
  [(set (mem:DF (plus:DI (match_dup 1) (match_dup 2)))
3896
        (match_dup 3))
3897
   (set (match_dup 0) (plus:DI (match_dup 1) (match_dup 2)))]
3898
  "")
3899
 
3900
(define_peephole2
3901
  [(set (match_operand:DI 0 "register_operand" "")
3902
        (plus:DI (match_operand:DI 1 "register_operand" "")
3903
                 (match_operand:DI 2 "register_operand" "")))
3904
   (set (mem:DF (match_dup 0))
3905
        (match_operand:DF 3 "register_operand" ""))]
3906
  "!TARGET_SOFT_FLOAT
3907
   && !TARGET_DISABLE_INDEXING
3908
   && TARGET_64BIT
3909
   && TARGET_NO_SPACE_REGS
3910
   && REG_OK_FOR_BASE_P (operands[1])
3911
   && REG_OK_FOR_INDEX_P (operands[2])
3912
   && FP_REGNO_P (REGNO (operands[3]))"
3913
  [(set (mem:DF (plus:DI (match_dup 2) (match_dup 1)))
3914
        (match_dup 3))
3915
   (set (match_dup 0) (plus:DI (match_dup 2) (match_dup 1)))]
3916
  "")
3917
 
3918
(define_insn ""
3919
  [(set (match_operand:DF 0 "move_dest_operand"
3920
                          "=r,?o,?Q,r,r")
3921
        (match_operand:DF 1 "reg_or_0_or_nonsymb_mem_operand"
3922
                          "rG,r,r,o,RQ"))]
3923
  "(register_operand (operands[0], DFmode)
3924
    || reg_or_0_operand (operands[1], DFmode))
3925
   && !TARGET_64BIT
3926
   && TARGET_SOFT_FLOAT"
3927
  "*
3928
{
3929
  return output_move_double (operands);
3930
}"
3931
  [(set_attr "type" "move,store,store,load,load")
3932
   (set_attr "length" "8,8,16,8,16")])
3933
 
3934
(define_insn ""
3935
  [(set (match_operand:DF 0 "move_dest_operand"
3936
                          "=!*r,*r,*r,*r,*r,Q,f,f,T")
3937
        (match_operand:DF 1 "move_src_operand"
3938
                          "!*r,J,N,K,RQ,*rG,fG,RT,f"))]
3939
  "(register_operand (operands[0], DFmode)
3940
    || reg_or_0_operand (operands[1], DFmode))
3941
   && !TARGET_SOFT_FLOAT && TARGET_64BIT"
3942
  "@
3943
   copy %1,%0
3944
   ldi %1,%0
3945
   ldil L'%1,%0
3946
   depdi,z %z1,%0
3947
   ldd%M1 %1,%0
3948
   std%M0 %r1,%0
3949
   fcpy,dbl %f1,%0
3950
   fldd%F1 %1,%0
3951
   fstd%F0 %1,%0"
3952
  [(set_attr "type" "move,move,move,shift,load,store,fpalu,fpload,fpstore")
3953
   (set_attr "pa_combine_type" "addmove")
3954
   (set_attr "length" "4,4,4,4,4,4,4,4,4")])
3955
 
3956
 
3957
(define_expand "movdi"
3958
  [(set (match_operand:DI 0 "general_operand" "")
3959
        (match_operand:DI 1 "general_operand" ""))]
3960
  ""
3961
  "
3962
{
3963
  /* Except for zero, we don't support loading a CONST_INT directly
3964
     to a hard floating-point register since a scratch register is
3965
     needed for the operation.  While the operation could be handled
3966
     before register allocation, the simplest solution is to fail.  */
3967
  if (TARGET_64BIT
3968
      && GET_CODE (operands[1]) == CONST_INT
3969
      && operands[1] != CONST0_RTX (DImode)
3970
      && REG_P (operands[0])
3971
      && HARD_REGISTER_P (operands[0])
3972
      && REGNO (operands[0]) >= 32)
3973
    FAIL;
3974
 
3975
  if (emit_move_sequence (operands, DImode, 0))
3976
    DONE;
3977
}")
3978
 
3979
;; Handle DImode input reloads requiring %r1 as a scratch register.
3980
(define_expand "reload_indi_r1"
3981
  [(set (match_operand:DI 0 "register_operand" "=Z")
3982
        (match_operand:DI 1 "non_hard_reg_operand" ""))
3983
   (clobber (match_operand:SI 2 "register_operand" "=&a"))]
3984
  ""
3985
  "
3986
{
3987
  if (emit_move_sequence (operands, DImode, operands[2]))
3988
    DONE;
3989
 
3990
  /* We don't want the clobber emitted, so handle this ourselves.  */
3991
  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
3992
  DONE;
3993
}")
3994
 
3995
;; Handle DImode input reloads requiring a general register as a
3996
;; scratch register.
3997
(define_expand "reload_indi"
3998
  [(set (match_operand:DI 0 "register_operand" "=Z")
3999
        (match_operand:DI 1 "non_hard_reg_operand" ""))
4000
   (clobber (match_operand:SI 2 "register_operand" "=&r"))]
4001
  ""
4002
  "
4003
{
4004
  if (emit_move_sequence (operands, DImode, operands[2]))
4005
    DONE;
4006
 
4007
  /* We don't want the clobber emitted, so handle this ourselves.  */
4008
  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4009
  DONE;
4010
}")
4011
 
4012
;; Handle DImode output reloads requiring a general register as a
4013
;; scratch register.
4014
(define_expand "reload_outdi"
4015
  [(set (match_operand:DI 0 "non_hard_reg_operand" "")
4016
        (match_operand:DI 1 "register_operand" "Z"))
4017
   (clobber (match_operand:SI 2 "register_operand" "=&r"))]
4018
  ""
4019
  "
4020
{
4021
  if (emit_move_sequence (operands, DImode, operands[2]))
4022
    DONE;
4023
 
4024
  /* We don't want the clobber emitted, so handle this ourselves.  */
4025
  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4026
  DONE;
4027
}")
4028
 
4029
(define_insn ""
4030
  [(set (match_operand:DI 0 "register_operand" "=r")
4031
        (high:DI (match_operand 1 "" "")))]
4032
  "!TARGET_64BIT"
4033
  "*
4034
{
4035
  rtx op0 = operands[0];
4036
  rtx op1 = operands[1];
4037
 
4038
  switch (GET_CODE (op1))
4039
    {
4040
    case CONST_INT:
4041
#if HOST_BITS_PER_WIDE_INT <= 32
4042
      operands[0] = operand_subword (op0, 1, 0, DImode);
4043
      output_asm_insn (\"ldil L'%1,%0\", operands);
4044
 
4045
      operands[0] = operand_subword (op0, 0, 0, DImode);
4046
      if (INTVAL (op1) < 0)
4047
        output_asm_insn (\"ldi -1,%0\", operands);
4048
      else
4049
        output_asm_insn (\"ldi 0,%0\", operands);
4050
#else
4051
      operands[0] = operand_subword (op0, 1, 0, DImode);
4052
      operands[1] = GEN_INT (INTVAL (op1) & 0xffffffff);
4053
      output_asm_insn (\"ldil L'%1,%0\", operands);
4054
 
4055
      operands[0] = operand_subword (op0, 0, 0, DImode);
4056
      operands[1] = GEN_INT (INTVAL (op1) >> 32);
4057
      output_asm_insn (singlemove_string (operands), operands);
4058
#endif
4059
      break;
4060
 
4061
    case CONST_DOUBLE:
4062
      operands[0] = operand_subword (op0, 1, 0, DImode);
4063
      operands[1] = GEN_INT (CONST_DOUBLE_LOW (op1));
4064
      output_asm_insn (\"ldil L'%1,%0\", operands);
4065
 
4066
      operands[0] = operand_subword (op0, 0, 0, DImode);
4067
      operands[1] = GEN_INT (CONST_DOUBLE_HIGH (op1));
4068
      output_asm_insn (singlemove_string (operands), operands);
4069
      break;
4070
 
4071
    default:
4072
      gcc_unreachable ();
4073
    }
4074
  return \"\";
4075
}"
4076
  [(set_attr "type" "move")
4077
   (set_attr "length" "12")])
4078
 
4079
(define_insn ""
4080
  [(set (match_operand:DI 0 "move_dest_operand"
4081
                          "=r,o,Q,r,r,r,*f,*f,T,?r,?*f")
4082
        (match_operand:DI 1 "general_operand"
4083
                          "rM,r,r,o*R,Q,i,*fM,RT,*f,*f,r"))]
4084
  "(register_operand (operands[0], DImode)
4085
    || reg_or_0_operand (operands[1], DImode))
4086
   && !TARGET_64BIT
4087
   && !TARGET_SOFT_FLOAT"
4088
  "*
4089
{
4090
  if ((FP_REG_P (operands[0]) || FP_REG_P (operands[1])
4091
       || operands[1] == CONST0_RTX (DFmode))
4092
      && !(REG_P (operands[0]) && REG_P (operands[1])
4093
           && FP_REG_P (operands[0]) ^ FP_REG_P (operands[1])))
4094
    return output_fp_move_double (operands);
4095
  return output_move_double (operands);
4096
}"
4097
  [(set_attr "type"
4098
    "move,store,store,load,load,multi,fpalu,fpload,fpstore,fpstore_load,store_fpload")
4099
   (set_attr "length" "8,8,16,8,16,16,4,4,4,12,12")])
4100
 
4101
(define_insn ""
4102
  [(set (match_operand:DI 0 "move_dest_operand"
4103
                          "=r,r,r,r,r,r,Q,!*q,!r,!*f,*f,T")
4104
        (match_operand:DI 1 "move_src_operand"
4105
                          "A,r,J,N,K,RQ,rM,!rM,!*q,!*fM,RT,*f"))]
4106
  "(register_operand (operands[0], DImode)
4107
    || reg_or_0_operand (operands[1], DImode))
4108
   && !TARGET_SOFT_FLOAT && TARGET_64BIT"
4109
  "@
4110
   ldd RT'%A1,%0
4111
   copy %1,%0
4112
   ldi %1,%0
4113
   ldil L'%1,%0
4114
   depdi,z %z1,%0
4115
   ldd%M1 %1,%0
4116
   std%M0 %r1,%0
4117
   mtsar %r1
4118
   {mfctl|mfctl,w} %%sar,%0
4119
   fcpy,dbl %f1,%0
4120
   fldd%F1 %1,%0
4121
   fstd%F0 %1,%0"
4122
  [(set_attr "type" "load,move,move,move,shift,load,store,move,move,fpalu,fpload,fpstore")
4123
   (set_attr "pa_combine_type" "addmove")
4124
   (set_attr "length" "4,4,4,4,4,4,4,4,4,4,4,4")])
4125
 
4126
(define_insn ""
4127
  [(set (match_operand:DI 0 "indexed_memory_operand" "=R")
4128
        (match_operand:DI 1 "register_operand" "f"))]
4129
  "!TARGET_SOFT_FLOAT
4130
   && TARGET_64BIT
4131
   && !TARGET_DISABLE_INDEXING
4132
   && reload_completed"
4133
  "fstd%F0 %1,%0"
4134
  [(set_attr "type" "fpstore")
4135
   (set_attr "pa_combine_type" "addmove")
4136
   (set_attr "length" "4")])
4137
 
4138
(define_peephole2
4139
  [(set (match_operand:DI 0 "register_operand" "")
4140
        (plus:DI (mult:DI (match_operand:DI 1 "register_operand" "")
4141
                          (const_int 8))
4142
                 (match_operand:DI 2 "register_operand" "")))
4143
   (set (mem:DI (match_dup 0))
4144
        (match_operand:DI 3 "register_operand" ""))]
4145
  "!TARGET_SOFT_FLOAT
4146
   && !TARGET_DISABLE_INDEXING
4147
   && TARGET_64BIT
4148
   && REG_OK_FOR_BASE_P (operands[2])
4149
   && FP_REGNO_P (REGNO (operands[3]))"
4150
  [(set (mem:DI (plus:DI (mult:DI (match_dup 1) (const_int 8)) (match_dup 2)))
4151
        (match_dup 3))
4152
   (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 8))
4153
                               (match_dup 2)))]
4154
  "")
4155
 
4156
(define_peephole2
4157
  [(set (match_operand:DI 0 "register_operand" "")
4158
        (plus:DI (match_operand:DI 2 "register_operand" "")
4159
                 (mult:DI (match_operand:DI 1 "register_operand" "")
4160
                          (const_int 8))))
4161
   (set (mem:DI (match_dup 0))
4162
        (match_operand:DI 3 "register_operand" ""))]
4163
  "!TARGET_SOFT_FLOAT
4164
   && !TARGET_DISABLE_INDEXING
4165
   && TARGET_64BIT
4166
   && REG_OK_FOR_BASE_P (operands[2])
4167
   && FP_REGNO_P (REGNO (operands[3]))"
4168
  [(set (mem:DI (plus:DI (mult:DI (match_dup 1) (const_int 8)) (match_dup 2)))
4169
        (match_dup 3))
4170
   (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 8))
4171
                               (match_dup 2)))]
4172
  "")
4173
 
4174
(define_peephole2
4175
  [(set (match_operand:DI 0 "register_operand" "")
4176
        (plus:DI (match_operand:DI 1 "register_operand" "")
4177
                 (match_operand:DI 2 "register_operand" "")))
4178
   (set (mem:DI (match_dup 0))
4179
        (match_operand:DI 3 "register_operand" ""))]
4180
  "!TARGET_SOFT_FLOAT
4181
   && !TARGET_DISABLE_INDEXING
4182
   && TARGET_64BIT
4183
   && TARGET_NO_SPACE_REGS
4184
   && REG_OK_FOR_INDEX_P (operands[1])
4185
   && REG_OK_FOR_BASE_P (operands[2])
4186
   && FP_REGNO_P (REGNO (operands[3]))"
4187
  [(set (mem:DI (plus:DI (match_dup 1) (match_dup 2)))
4188
        (match_dup 3))
4189
   (set (match_dup 0) (plus:DI (match_dup 1) (match_dup 2)))]
4190
  "")
4191
 
4192
(define_peephole2
4193
  [(set (match_operand:DI 0 "register_operand" "")
4194
        (plus:DI (match_operand:DI 1 "register_operand" "")
4195
                 (match_operand:DI 2 "register_operand" "")))
4196
   (set (mem:DI (match_dup 0))
4197
        (match_operand:DI 3 "register_operand" ""))]
4198
  "!TARGET_SOFT_FLOAT
4199
   && !TARGET_DISABLE_INDEXING
4200
   && TARGET_64BIT
4201
   && TARGET_NO_SPACE_REGS
4202
   && REG_OK_FOR_BASE_P (operands[1])
4203
   && REG_OK_FOR_INDEX_P (operands[2])
4204
   && FP_REGNO_P (REGNO (operands[3]))"
4205
  [(set (mem:DI (plus:DI (match_dup 2) (match_dup 1)))
4206
        (match_dup 3))
4207
   (set (match_dup 0) (plus:DI (match_dup 2) (match_dup 1)))]
4208
  "")
4209
 
4210
(define_insn ""
4211
  [(set (match_operand:DI 0 "move_dest_operand"
4212
                          "=r,o,Q,r,r,r")
4213
        (match_operand:DI 1 "general_operand"
4214
                          "rM,r,r,o,Q,i"))]
4215
  "(register_operand (operands[0], DImode)
4216
    || reg_or_0_operand (operands[1], DImode))
4217
   && !TARGET_64BIT
4218
   && TARGET_SOFT_FLOAT"
4219
  "*
4220
{
4221
  return output_move_double (operands);
4222
}"
4223
  [(set_attr "type" "move,store,store,load,load,multi")
4224
   (set_attr "length" "8,8,16,8,16,16")])
4225
 
4226
(define_insn ""
4227
  [(set (match_operand:DI 0 "register_operand" "=r,&r")
4228
        (lo_sum:DI (match_operand:DI 1 "register_operand" "0,r")
4229
                   (match_operand:DI 2 "immediate_operand" "i,i")))]
4230
  "!TARGET_64BIT"
4231
  "*
4232
{
4233
  /* Don't output a 64-bit constant, since we can't trust the assembler to
4234
     handle it correctly.  */
4235
  if (GET_CODE (operands[2]) == CONST_DOUBLE)
4236
    operands[2] = GEN_INT (CONST_DOUBLE_LOW (operands[2]));
4237
  else if (HOST_BITS_PER_WIDE_INT > 32
4238
           && GET_CODE (operands[2]) == CONST_INT)
4239
    operands[2] = GEN_INT (INTVAL (operands[2]) & 0xffffffff);
4240
  if (which_alternative == 1)
4241
    output_asm_insn (\"copy %1,%0\", operands);
4242
  return \"ldo R'%G2(%R1),%R0\";
4243
}"
4244
  [(set_attr "type" "move,move")
4245
   (set_attr "length" "4,8")])
4246
 
4247
;; This pattern forces (set (reg:SF ...) (const_double ...))
4248
;; to be reloaded by putting the constant into memory when
4249
;; reg is a floating point register.
4250
;;
4251
;; For integer registers we use ldil;ldo to set the appropriate
4252
;; value.
4253
;;
4254
;; This must come before the movsf pattern, and it must be present
4255
;; to handle obscure reloading cases.
4256
(define_insn ""
4257
  [(set (match_operand:SF 0 "register_operand" "=?r,f")
4258
        (match_operand:SF 1 "" "?F,m"))]
4259
  "GET_CODE (operands[1]) == CONST_DOUBLE
4260
   && operands[1] != CONST0_RTX (SFmode)
4261
   && ! TARGET_SOFT_FLOAT"
4262
  "* return (which_alternative == 0 ? singlemove_string (operands)
4263
                                    : \" fldw%F1 %1,%0\");"
4264
  [(set_attr "type" "move,fpload")
4265
   (set_attr "length" "8,4")])
4266
 
4267
(define_expand "movsf"
4268
  [(set (match_operand:SF 0 "general_operand" "")
4269
        (match_operand:SF 1 "general_operand" ""))]
4270
  ""
4271
  "
4272
{
4273
  /* Reject CONST_DOUBLE loads to floating point registers.  */
4274
  if (GET_CODE (operands[1]) == CONST_DOUBLE
4275
      && operands[1] != CONST0_RTX (SFmode)
4276
      && REG_P (operands[0])
4277
      && HARD_REGISTER_P (operands[0])
4278
      && REGNO (operands[0]) >= 32)
4279
    FAIL;
4280
 
4281
  if (emit_move_sequence (operands, SFmode, 0))
4282
    DONE;
4283
}")
4284
 
4285
;; Handle SFmode input reloads requiring a general register as a
4286
;; scratch register.
4287
(define_expand "reload_insf"
4288
  [(set (match_operand:SF 0 "register_operand" "=Z")
4289
        (match_operand:SF 1 "non_hard_reg_operand" ""))
4290
   (clobber (match_operand:SF 2 "register_operand" "=&r"))]
4291
  ""
4292
  "
4293
{
4294
  if (emit_move_sequence (operands, SFmode, operands[2]))
4295
    DONE;
4296
 
4297
  /* We don't want the clobber emitted, so handle this ourselves.  */
4298
  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4299
  DONE;
4300
}")
4301
 
4302
;; Handle SFmode output reloads requiring a general register as a
4303
;; scratch register.
4304
(define_expand "reload_outsf"
4305
  [(set (match_operand:SF 0 "non_hard_reg_operand" "")
4306
        (match_operand:SF 1  "register_operand" "Z"))
4307
   (clobber (match_operand:SF 2 "register_operand" "=&r"))]
4308
  ""
4309
  "
4310
{
4311
  if (emit_move_sequence (operands, SFmode, operands[2]))
4312
    DONE;
4313
 
4314
  /* We don't want the clobber emitted, so handle this ourselves.  */
4315
  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
4316
  DONE;
4317
}")
4318
 
4319
(define_insn ""
4320
  [(set (match_operand:SF 0 "move_dest_operand"
4321
                          "=f,!*r,f,*r,Q,Q,?*r,?f")
4322
        (match_operand:SF 1 "reg_or_0_or_nonsymb_mem_operand"
4323
                          "fG,!*rG,RQ,RQ,f,*rG,f,*r"))]
4324
  "(register_operand (operands[0], SFmode)
4325
    || reg_or_0_operand (operands[1], SFmode))
4326
   && !TARGET_SOFT_FLOAT
4327
   && !TARGET_64BIT"
4328
  "@
4329
   fcpy,sgl %f1,%0
4330
   copy %r1,%0
4331
   fldw%F1 %1,%0
4332
   ldw%M1 %1,%0
4333
   fstw%F0 %1,%0
4334
   stw%M0 %r1,%0
4335
   {fstws|fstw} %1,-16(%%sp)\n\t{ldws|ldw} -16(%%sp),%0
4336
   {stws|stw} %1,-16(%%sp)\n\t{fldws|fldw} -16(%%sp),%0"
4337
  [(set_attr "type" "fpalu,move,fpload,load,fpstore,store,fpstore_load,store_fpload")
4338
   (set_attr "pa_combine_type" "addmove")
4339
   (set_attr "length" "4,4,4,4,4,4,8,8")])
4340
 
4341
(define_insn ""
4342
  [(set (match_operand:SF 0 "move_dest_operand"
4343
                          "=f,!*r,f,*r,Q,Q")
4344
        (match_operand:SF 1 "reg_or_0_or_nonsymb_mem_operand"
4345
                          "fG,!*rG,RQ,RQ,f,*rG"))]
4346
  "(register_operand (operands[0], SFmode)
4347
    || reg_or_0_operand (operands[1], SFmode))
4348
   && !TARGET_SOFT_FLOAT
4349
   && TARGET_64BIT"
4350
  "@
4351
   fcpy,sgl %f1,%0
4352
   copy %r1,%0
4353
   fldw%F1 %1,%0
4354
   ldw%M1 %1,%0
4355
   fstw%F0 %1,%0
4356
   stw%M0 %r1,%0"
4357
  [(set_attr "type" "fpalu,move,fpload,load,fpstore,store")
4358
   (set_attr "pa_combine_type" "addmove")
4359
   (set_attr "length" "4,4,4,4,4,4")])
4360
 
4361
(define_insn ""
4362
  [(set (match_operand:SF 0 "indexed_memory_operand" "=R")
4363
        (match_operand:SF 1 "register_operand" "f"))]
4364
  "!TARGET_SOFT_FLOAT
4365
   && !TARGET_DISABLE_INDEXING
4366
   && reload_completed"
4367
  "fstw%F0 %1,%0"
4368
  [(set_attr "type" "fpstore")
4369
   (set_attr "pa_combine_type" "addmove")
4370
   (set_attr "length" "4")])
4371
 
4372
(define_peephole2
4373
  [(set (match_operand:SI 0 "register_operand" "")
4374
        (plus:SI (mult:SI (match_operand:SI 1 "register_operand" "")
4375
                          (const_int 4))
4376
                 (match_operand:SI 2 "register_operand" "")))
4377
   (set (mem:SF (match_dup 0))
4378
        (match_operand:SF 3 "register_operand" ""))]
4379
  "!TARGET_SOFT_FLOAT
4380
   && !TARGET_DISABLE_INDEXING
4381
   && REG_OK_FOR_BASE_P (operands[2])
4382
   && FP_REGNO_P (REGNO (operands[3]))"
4383
  [(set (mem:SF (plus:SI (mult:SI (match_dup 1) (const_int 4)) (match_dup 2)))
4384
        (match_dup 3))
4385
   (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 4))
4386
                               (match_dup 2)))]
4387
  "")
4388
 
4389
(define_peephole2
4390
  [(set (match_operand:SI 0 "register_operand" "")
4391
        (plus:SI (match_operand:SI 2 "register_operand" "")
4392
                 (mult:SI (match_operand:SI 1 "register_operand" "")
4393
                          (const_int 4))))
4394
   (set (mem:SF (match_dup 0))
4395
        (match_operand:SF 3 "register_operand" ""))]
4396
  "!TARGET_SOFT_FLOAT
4397
   && !TARGET_DISABLE_INDEXING
4398
   && REG_OK_FOR_BASE_P (operands[2])
4399
   && FP_REGNO_P (REGNO (operands[3]))"
4400
  [(set (mem:SF (plus:SI (mult:SI (match_dup 1) (const_int 4)) (match_dup 2)))
4401
        (match_dup 3))
4402
   (set (match_dup 0) (plus:SI (mult:SI (match_dup 1) (const_int 4))
4403
                               (match_dup 2)))]
4404
  "")
4405
 
4406
(define_peephole2
4407
  [(set (match_operand:DI 0 "register_operand" "")
4408
        (plus:DI (mult:DI (match_operand:DI 1 "register_operand" "")
4409
                          (const_int 4))
4410
                 (match_operand:DI 2 "register_operand" "")))
4411
   (set (mem:SF (match_dup 0))
4412
        (match_operand:SF 3 "register_operand" ""))]
4413
  "!TARGET_SOFT_FLOAT
4414
   && !TARGET_DISABLE_INDEXING
4415
   && TARGET_64BIT
4416
   && REG_OK_FOR_BASE_P (operands[2])
4417
   && FP_REGNO_P (REGNO (operands[3]))"
4418
  [(set (mem:SF (plus:DI (mult:DI (match_dup 1) (const_int 4)) (match_dup 2)))
4419
        (match_dup 3))
4420
   (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 4))
4421
                               (match_dup 2)))]
4422
  "")
4423
 
4424
(define_peephole2
4425
  [(set (match_operand:DI 0 "register_operand" "")
4426
        (plus:DI (match_operand:DI 2 "register_operand" "")
4427
                 (mult:DI (match_operand:DI 1 "register_operand" "")
4428
                          (const_int 4))))
4429
   (set (mem:SF (match_dup 0))
4430
        (match_operand:SF 3 "register_operand" ""))]
4431
  "!TARGET_SOFT_FLOAT
4432
   && !TARGET_DISABLE_INDEXING
4433
   && TARGET_64BIT
4434
   && REG_OK_FOR_BASE_P (operands[2])
4435
   && FP_REGNO_P (REGNO (operands[3]))"
4436
  [(set (mem:SF (plus:DI (mult:DI (match_dup 1) (const_int 4)) (match_dup 2)))
4437
        (match_dup 3))
4438
   (set (match_dup 0) (plus:DI (mult:DI (match_dup 1) (const_int 4))
4439
                               (match_dup 2)))]
4440
  "")
4441
 
4442
(define_peephole2
4443
  [(set (match_operand:SI 0 "register_operand" "")
4444
        (plus:SI (match_operand:SI 1 "register_operand" "")
4445
                 (match_operand:SI 2 "register_operand" "")))
4446
   (set (mem:SF (match_dup 0))
4447
        (match_operand:SF 3 "register_operand" ""))]
4448
  "!TARGET_SOFT_FLOAT
4449
   && !TARGET_DISABLE_INDEXING
4450
   && TARGET_NO_SPACE_REGS
4451
   && REG_OK_FOR_INDEX_P (operands[1])
4452
   && REG_OK_FOR_BASE_P (operands[2])
4453
   && FP_REGNO_P (REGNO (operands[3]))"
4454
  [(set (mem:SF (plus:SI (match_dup 1) (match_dup 2)))
4455
        (match_dup 3))
4456
   (set (match_dup 0) (plus:SI (match_dup 1) (match_dup 2)))]
4457
  "")
4458
 
4459
(define_peephole2
4460
  [(set (match_operand:SI 0 "register_operand" "")
4461
        (plus:SI (match_operand:SI 1 "register_operand" "")
4462
                 (match_operand:SI 2 "register_operand" "")))
4463
   (set (mem:SF (match_dup 0))
4464
        (match_operand:SF 3 "register_operand" ""))]
4465
  "!TARGET_SOFT_FLOAT
4466
   && !TARGET_DISABLE_INDEXING
4467
   && TARGET_NO_SPACE_REGS
4468
   && REG_OK_FOR_BASE_P (operands[1])
4469
   && REG_OK_FOR_INDEX_P (operands[2])
4470
   && FP_REGNO_P (REGNO (operands[3]))"
4471
  [(set (mem:SF (plus:SI (match_dup 2) (match_dup 1)))
4472
        (match_dup 3))
4473
   (set (match_dup 0) (plus:SI (match_dup 2) (match_dup 1)))]
4474
  "")
4475
 
4476
(define_peephole2
4477
  [(set (match_operand:DI 0 "register_operand" "")
4478
        (plus:DI (match_operand:DI 1 "register_operand" "")
4479
                 (match_operand:DI 2 "register_operand" "")))
4480
   (set (mem:SF (match_dup 0))
4481
        (match_operand:SF 3 "register_operand" ""))]
4482
  "!TARGET_SOFT_FLOAT
4483
   && !TARGET_DISABLE_INDEXING
4484
   && TARGET_64BIT
4485
   && TARGET_NO_SPACE_REGS
4486
   && REG_OK_FOR_INDEX_P (operands[1])
4487
   && REG_OK_FOR_BASE_P (operands[2])
4488
   && FP_REGNO_P (REGNO (operands[3]))"
4489
  [(set (mem:SF (plus:DI (match_dup 1) (match_dup 2)))
4490
        (match_dup 3))
4491
   (set (match_dup 0) (plus:DI (match_dup 1) (match_dup 2)))]
4492
  "")
4493
 
4494
(define_peephole2
4495
  [(set (match_operand:DI 0 "register_operand" "")
4496
        (plus:DI (match_operand:DI 1 "register_operand" "")
4497
                 (match_operand:DI 2 "register_operand" "")))
4498
   (set (mem:SF (match_dup 0))
4499
        (match_operand:SF 3 "register_operand" ""))]
4500
  "!TARGET_SOFT_FLOAT
4501
   && !TARGET_DISABLE_INDEXING
4502
   && TARGET_64BIT
4503
   && TARGET_NO_SPACE_REGS
4504
   && REG_OK_FOR_BASE_P (operands[1])
4505
   && REG_OK_FOR_INDEX_P (operands[2])
4506
   && FP_REGNO_P (REGNO (operands[3]))"
4507
  [(set (mem:SF (plus:DI (match_dup 2) (match_dup 1)))
4508
        (match_dup 3))
4509
   (set (match_dup 0) (plus:DI (match_dup 2) (match_dup 1)))]
4510
  "")
4511
 
4512
(define_insn ""
4513
  [(set (match_operand:SF 0 "move_dest_operand"
4514
                          "=r,r,Q")
4515
        (match_operand:SF 1 "reg_or_0_or_nonsymb_mem_operand"
4516
                          "rG,RQ,rG"))]
4517
  "(register_operand (operands[0], SFmode)
4518
    || reg_or_0_operand (operands[1], SFmode))
4519
   && TARGET_SOFT_FLOAT"
4520
  "@
4521
   copy %r1,%0
4522
   ldw%M1 %1,%0
4523
   stw%M0 %r1,%0"
4524
  [(set_attr "type" "move,load,store")
4525
   (set_attr "pa_combine_type" "addmove")
4526
   (set_attr "length" "4,4,4")])
4527
 
4528
 
4529
 
4530
;;- zero extension instructions
4531
;; We have define_expand for zero extension patterns to make sure the
4532
;; operands get loaded into registers.  The define_insns accept
4533
;; memory operands.  This gives us better overall code than just
4534
;; having a pattern that does or does not accept memory operands.
4535
 
4536
(define_expand "zero_extendqihi2"
4537
  [(set (match_operand:HI 0 "register_operand" "")
4538
        (zero_extend:HI
4539
         (match_operand:QI 1 "register_operand" "")))]
4540
  ""
4541
  "")
4542
 
4543
(define_insn ""
4544
  [(set (match_operand:HI 0 "register_operand" "=r,r")
4545
        (zero_extend:HI
4546
         (match_operand:QI 1 "move_src_operand" "r,RQ")))]
4547
  "GET_CODE (operands[1]) != CONST_INT"
4548
  "@
4549
   {extru|extrw,u} %1,31,8,%0
4550
   ldb%M1 %1,%0"
4551
  [(set_attr "type" "shift,load")
4552
   (set_attr "length" "4,4")])
4553
 
4554
(define_expand "zero_extendqisi2"
4555
  [(set (match_operand:SI 0 "register_operand" "")
4556
        (zero_extend:SI
4557
         (match_operand:QI 1 "register_operand" "")))]
4558
  ""
4559
  "")
4560
 
4561
(define_insn ""
4562
  [(set (match_operand:SI 0 "register_operand" "=r,r")
4563
        (zero_extend:SI
4564
         (match_operand:QI 1 "move_src_operand" "r,RQ")))]
4565
  "GET_CODE (operands[1]) != CONST_INT"
4566
  "@
4567
   {extru|extrw,u} %1,31,8,%0
4568
   ldb%M1 %1,%0"
4569
  [(set_attr "type" "shift,load")
4570
   (set_attr "length" "4,4")])
4571
 
4572
(define_expand "zero_extendhisi2"
4573
  [(set (match_operand:SI 0 "register_operand" "")
4574
        (zero_extend:SI
4575
         (match_operand:HI 1 "register_operand" "")))]
4576
  ""
4577
  "")
4578
 
4579
(define_insn ""
4580
  [(set (match_operand:SI 0 "register_operand" "=r,r")
4581
        (zero_extend:SI
4582
         (match_operand:HI 1 "move_src_operand" "r,RQ")))]
4583
  "GET_CODE (operands[1]) != CONST_INT"
4584
  "@
4585
   {extru|extrw,u} %1,31,16,%0
4586
   ldh%M1 %1,%0"
4587
  [(set_attr "type" "shift,load")
4588
   (set_attr "length" "4,4")])
4589
 
4590
(define_expand "zero_extendqidi2"
4591
  [(set (match_operand:DI 0 "register_operand" "")
4592
        (zero_extend:DI
4593
         (match_operand:QI 1 "register_operand" "")))]
4594
  "TARGET_64BIT"
4595
  "")
4596
 
4597
(define_insn ""
4598
  [(set (match_operand:DI 0 "register_operand" "=r,r")
4599
        (zero_extend:DI
4600
         (match_operand:QI 1 "move_src_operand" "r,RQ")))]
4601
  "TARGET_64BIT && GET_CODE (operands[1]) != CONST_INT"
4602
  "@
4603
   extrd,u %1,63,8,%0
4604
   ldb%M1 %1,%0"
4605
  [(set_attr "type" "shift,load")
4606
   (set_attr "length" "4,4")])
4607
 
4608
(define_expand "zero_extendhidi2"
4609
  [(set (match_operand:DI 0 "register_operand" "")
4610
        (zero_extend:DI
4611
         (match_operand:HI 1 "register_operand" "")))]
4612
  "TARGET_64BIT"
4613
  "")
4614
 
4615
(define_insn ""
4616
  [(set (match_operand:DI 0 "register_operand" "=r,r")
4617
        (zero_extend:DI
4618
         (match_operand:HI 1 "move_src_operand" "r,RQ")))]
4619
  "TARGET_64BIT && GET_CODE (operands[1]) != CONST_INT"
4620
  "@
4621
   extrd,u %1,63,16,%0
4622
   ldh%M1 %1,%0"
4623
  [(set_attr "type" "shift,load")
4624
   (set_attr "length" "4,4")])
4625
 
4626
(define_expand "zero_extendsidi2"
4627
  [(set (match_operand:DI 0 "register_operand" "")
4628
        (zero_extend:DI
4629
         (match_operand:SI 1 "register_operand" "")))]
4630
  "TARGET_64BIT"
4631
  "")
4632
 
4633
(define_insn ""
4634
  [(set (match_operand:DI 0 "register_operand" "=r,r")
4635
        (zero_extend:DI
4636
         (match_operand:SI 1 "move_src_operand" "r,RQ")))]
4637
  "TARGET_64BIT && GET_CODE (operands[1]) != CONST_INT"
4638
  "@
4639
   extrd,u %1,63,32,%0
4640
   ldw%M1 %1,%0"
4641
  [(set_attr "type" "shift,load")
4642
   (set_attr "length" "4,4")])
4643
 
4644
;;- sign extension instructions
4645
 
4646
(define_insn "extendhisi2"
4647
  [(set (match_operand:SI 0 "register_operand" "=r")
4648
        (sign_extend:SI (match_operand:HI 1 "register_operand" "r")))]
4649
  ""
4650
  "{extrs|extrw,s} %1,31,16,%0"
4651
  [(set_attr "type" "shift")
4652
   (set_attr "length" "4")])
4653
 
4654
(define_insn "extendqihi2"
4655
  [(set (match_operand:HI 0 "register_operand" "=r")
4656
        (sign_extend:HI (match_operand:QI 1 "register_operand" "r")))]
4657
  ""
4658
  "{extrs|extrw,s} %1,31,8,%0"
4659
  [(set_attr "type" "shift")
4660
  (set_attr "length" "4")])
4661
 
4662
(define_insn "extendqisi2"
4663
  [(set (match_operand:SI 0 "register_operand" "=r")
4664
        (sign_extend:SI (match_operand:QI 1 "register_operand" "r")))]
4665
  ""
4666
  "{extrs|extrw,s} %1,31,8,%0"
4667
  [(set_attr "type" "shift")
4668
   (set_attr "length" "4")])
4669
 
4670
(define_insn "extendqidi2"
4671
  [(set (match_operand:DI 0 "register_operand" "=r")
4672
        (sign_extend:DI (match_operand:QI 1 "register_operand" "r")))]
4673
  "TARGET_64BIT"
4674
  "extrd,s %1,63,8,%0"
4675
  [(set_attr "type" "shift")
4676
  (set_attr "length" "4")])
4677
 
4678
(define_insn "extendhidi2"
4679
  [(set (match_operand:DI 0 "register_operand" "=r")
4680
        (sign_extend:DI (match_operand:HI 1 "register_operand" "r")))]
4681
  "TARGET_64BIT"
4682
  "extrd,s %1,63,16,%0"
4683
  [(set_attr "type" "shift")
4684
  (set_attr "length" "4")])
4685
 
4686
(define_insn "extendsidi2"
4687
  [(set (match_operand:DI 0 "register_operand" "=r")
4688
        (sign_extend:DI (match_operand:SI 1 "register_operand" "r")))]
4689
  "TARGET_64BIT"
4690
  "extrd,s %1,63,32,%0"
4691
  [(set_attr "type" "shift")
4692
  (set_attr "length" "4")])
4693
 
4694
 
4695
;; Conversions between float and double.
4696
 
4697
(define_insn "extendsfdf2"
4698
  [(set (match_operand:DF 0 "register_operand" "=f")
4699
        (float_extend:DF
4700
         (match_operand:SF 1 "register_operand" "f")))]
4701
  "! TARGET_SOFT_FLOAT"
4702
  "{fcnvff|fcnv},sgl,dbl %1,%0"
4703
  [(set_attr "type" "fpalu")
4704
   (set_attr "length" "4")])
4705
 
4706
(define_insn "truncdfsf2"
4707
  [(set (match_operand:SF 0 "register_operand" "=f")
4708
        (float_truncate:SF
4709
         (match_operand:DF 1 "register_operand" "f")))]
4710
  "! TARGET_SOFT_FLOAT"
4711
  "{fcnvff|fcnv},dbl,sgl %1,%0"
4712
  [(set_attr "type" "fpalu")
4713
   (set_attr "length" "4")])
4714
 
4715
;; Conversion between fixed point and floating point.
4716
;; Note that among the fix-to-float insns
4717
;; the ones that start with SImode come first.
4718
;; That is so that an operand that is a CONST_INT
4719
;; (and therefore lacks a specific machine mode).
4720
;; will be recognized as SImode (which is always valid)
4721
;; rather than as QImode or HImode.
4722
 
4723
;; This pattern forces (set (reg:SF ...) (float:SF (const_int ...)))
4724
;; to be reloaded by putting the constant into memory.
4725
;; It must come before the more general floatsisf2 pattern.
4726
(define_insn ""
4727
  [(set (match_operand:SF 0 "register_operand" "=f")
4728
        (float:SF (match_operand:SI 1 "const_int_operand" "m")))]
4729
  "! TARGET_SOFT_FLOAT"
4730
  "fldw%F1 %1,%0\;{fcnvxf,sgl,sgl|fcnv,w,sgl} %0,%0"
4731
  [(set_attr "type" "fpalu")
4732
   (set_attr "length" "8")])
4733
 
4734
(define_insn "floatsisf2"
4735
  [(set (match_operand:SF 0 "register_operand" "=f")
4736
        (float:SF (match_operand:SI 1 "register_operand" "f")))]
4737
  "! TARGET_SOFT_FLOAT"
4738
  "{fcnvxf,sgl,sgl|fcnv,w,sgl} %1,%0"
4739
  [(set_attr "type" "fpalu")
4740
   (set_attr "length" "4")])
4741
 
4742
;; This pattern forces (set (reg:DF ...) (float:DF (const_int ...)))
4743
;; to be reloaded by putting the constant into memory.
4744
;; It must come before the more general floatsidf2 pattern.
4745
(define_insn ""
4746
  [(set (match_operand:DF 0 "register_operand" "=f")
4747
        (float:DF (match_operand:SI 1 "const_int_operand" "m")))]
4748
  "! TARGET_SOFT_FLOAT"
4749
  "fldw%F1 %1,%0\;{fcnvxf,sgl,dbl|fcnv,w,dbl} %0,%0"
4750
  [(set_attr "type" "fpalu")
4751
   (set_attr "length" "8")])
4752
 
4753
(define_insn "floatsidf2"
4754
  [(set (match_operand:DF 0 "register_operand" "=f")
4755
        (float:DF (match_operand:SI 1 "register_operand" "f")))]
4756
  "! TARGET_SOFT_FLOAT"
4757
  "{fcnvxf,sgl,dbl|fcnv,w,dbl} %1,%0"
4758
  [(set_attr "type" "fpalu")
4759
   (set_attr "length" "4")])
4760
 
4761
(define_expand "floatunssisf2"
4762
  [(set (subreg:SI (match_dup 2) 4)
4763
        (match_operand:SI 1 "register_operand" ""))
4764
   (set (subreg:SI (match_dup 2) 0)
4765
        (const_int 0))
4766
   (set (match_operand:SF 0 "register_operand" "")
4767
        (float:SF (match_dup 2)))]
4768
  "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
4769
  "
4770
{
4771
  if (TARGET_PA_20)
4772
    {
4773
      emit_insn (gen_floatunssisf2_pa20 (operands[0], operands[1]));
4774
      DONE;
4775
    }
4776
  operands[2] = gen_reg_rtx (DImode);
4777
}")
4778
 
4779
(define_expand "floatunssidf2"
4780
  [(set (subreg:SI (match_dup 2) 4)
4781
        (match_operand:SI 1 "register_operand" ""))
4782
   (set (subreg:SI (match_dup 2) 0)
4783
        (const_int 0))
4784
   (set (match_operand:DF 0 "register_operand" "")
4785
        (float:DF (match_dup 2)))]
4786
  "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
4787
  "
4788
{
4789
  if (TARGET_PA_20)
4790
    {
4791
      emit_insn (gen_floatunssidf2_pa20 (operands[0], operands[1]));
4792
      DONE;
4793
    }
4794
  operands[2] = gen_reg_rtx (DImode);
4795
}")
4796
 
4797
(define_insn "floatdisf2"
4798
  [(set (match_operand:SF 0 "register_operand" "=f")
4799
        (float:SF (match_operand:DI 1 "register_operand" "f")))]
4800
  "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
4801
  "{fcnvxf,dbl,sgl|fcnv,dw,sgl} %1,%0"
4802
  [(set_attr "type" "fpalu")
4803
   (set_attr "length" "4")])
4804
 
4805
(define_insn "floatdidf2"
4806
  [(set (match_operand:DF 0 "register_operand" "=f")
4807
        (float:DF (match_operand:DI 1 "register_operand" "f")))]
4808
  "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
4809
  "{fcnvxf,dbl,dbl|fcnv,dw,dbl} %1,%0"
4810
  [(set_attr "type" "fpalu")
4811
   (set_attr "length" "4")])
4812
 
4813
;; Convert a float to an actual integer.
4814
;; Truncation is performed as part of the conversion.
4815
 
4816
(define_insn "fix_truncsfsi2"
4817
  [(set (match_operand:SI 0 "register_operand" "=f")
4818
        (fix:SI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
4819
  "! TARGET_SOFT_FLOAT"
4820
  "{fcnvfxt,sgl,sgl|fcnv,t,sgl,w} %1,%0"
4821
  [(set_attr "type" "fpalu")
4822
   (set_attr "length" "4")])
4823
 
4824
(define_insn "fix_truncdfsi2"
4825
  [(set (match_operand:SI 0 "register_operand" "=f")
4826
        (fix:SI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
4827
  "! TARGET_SOFT_FLOAT"
4828
  "{fcnvfxt,dbl,sgl|fcnv,t,dbl,w} %1,%0"
4829
  [(set_attr "type" "fpalu")
4830
   (set_attr "length" "4")])
4831
 
4832
(define_insn "fix_truncsfdi2"
4833
  [(set (match_operand:DI 0 "register_operand" "=f")
4834
        (fix:DI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
4835
  "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
4836
  "{fcnvfxt,sgl,dbl|fcnv,t,sgl,dw} %1,%0"
4837
  [(set_attr "type" "fpalu")
4838
   (set_attr "length" "4")])
4839
 
4840
(define_insn "fix_truncdfdi2"
4841
  [(set (match_operand:DI 0 "register_operand" "=f")
4842
        (fix:DI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
4843
  "TARGET_PA_11 && ! TARGET_SOFT_FLOAT"
4844
  "{fcnvfxt,dbl,dbl|fcnv,t,dbl,dw} %1,%0"
4845
  [(set_attr "type" "fpalu")
4846
   (set_attr "length" "4")])
4847
 
4848
(define_insn "floatunssidf2_pa20"
4849
  [(set (match_operand:DF 0 "register_operand" "=f")
4850
        (unsigned_float:DF (match_operand:SI 1 "register_operand" "f")))]
4851
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4852
  "fcnv,uw,dbl %1,%0"
4853
  [(set_attr "type" "fpalu")
4854
   (set_attr "length" "4")])
4855
 
4856
(define_insn "floatunssisf2_pa20"
4857
  [(set (match_operand:SF 0 "register_operand" "=f")
4858
        (unsigned_float:SF (match_operand:SI 1 "register_operand" "f")))]
4859
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4860
  "fcnv,uw,sgl %1,%0"
4861
  [(set_attr "type" "fpalu")
4862
   (set_attr "length" "4")])
4863
 
4864
(define_insn "floatunsdisf2"
4865
  [(set (match_operand:SF 0 "register_operand" "=f")
4866
        (unsigned_float:SF (match_operand:DI 1 "register_operand" "f")))]
4867
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4868
  "fcnv,udw,sgl %1,%0"
4869
  [(set_attr "type" "fpalu")
4870
   (set_attr "length" "4")])
4871
 
4872
(define_insn "floatunsdidf2"
4873
  [(set (match_operand:DF 0 "register_operand" "=f")
4874
        (unsigned_float:DF (match_operand:DI 1 "register_operand" "f")))]
4875
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4876
  "fcnv,udw,dbl %1,%0"
4877
  [(set_attr "type" "fpalu")
4878
   (set_attr "length" "4")])
4879
 
4880
(define_insn "fixuns_truncsfsi2"
4881
  [(set (match_operand:SI 0 "register_operand" "=f")
4882
        (unsigned_fix:SI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
4883
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4884
  "fcnv,t,sgl,uw %1,%0"
4885
  [(set_attr "type" "fpalu")
4886
   (set_attr "length" "4")])
4887
 
4888
(define_insn "fixuns_truncdfsi2"
4889
  [(set (match_operand:SI 0 "register_operand" "=f")
4890
        (unsigned_fix:SI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
4891
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4892
  "fcnv,t,dbl,uw %1,%0"
4893
  [(set_attr "type" "fpalu")
4894
   (set_attr "length" "4")])
4895
 
4896
(define_insn "fixuns_truncsfdi2"
4897
  [(set (match_operand:DI 0 "register_operand" "=f")
4898
        (unsigned_fix:DI (fix:SF (match_operand:SF 1 "register_operand" "f"))))]
4899
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4900
  "fcnv,t,sgl,udw %1,%0"
4901
  [(set_attr "type" "fpalu")
4902
   (set_attr "length" "4")])
4903
 
4904
(define_insn "fixuns_truncdfdi2"
4905
  [(set (match_operand:DI 0 "register_operand" "=f")
4906
        (unsigned_fix:DI (fix:DF (match_operand:DF 1 "register_operand" "f"))))]
4907
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
4908
  "fcnv,t,dbl,udw %1,%0"
4909
  [(set_attr "type" "fpalu")
4910
   (set_attr "length" "4")])
4911
 
4912
;;- arithmetic instructions
4913
 
4914
(define_expand "adddi3"
4915
  [(set (match_operand:DI 0 "register_operand" "")
4916
        (plus:DI (match_operand:DI 1 "register_operand" "")
4917
                 (match_operand:DI 2 "adddi3_operand" "")))]
4918
  ""
4919
  "")
4920
 
4921
(define_insn ""
4922
  [(set (match_operand:DI 0 "register_operand" "=r")
4923
        (plus:DI (match_operand:DI 1 "register_operand" "%r")
4924
                 (match_operand:DI 2 "arith11_operand" "rI")))]
4925
  "!TARGET_64BIT"
4926
  "*
4927
{
4928
  if (GET_CODE (operands[2]) == CONST_INT)
4929
    {
4930
      if (INTVAL (operands[2]) >= 0)
4931
        return \"addi %2,%R1,%R0\;{addc|add,c} %1,%%r0,%0\";
4932
      else
4933
        return \"addi %2,%R1,%R0\;{subb|sub,b} %1,%%r0,%0\";
4934
    }
4935
  else
4936
    return \"add %R2,%R1,%R0\;{addc|add,c} %2,%1,%0\";
4937
}"
4938
  [(set_attr "type" "binary")
4939
   (set_attr "length" "8")])
4940
 
4941
(define_insn ""
4942
  [(set (match_operand:DI 0 "register_operand" "=r,r")
4943
        (plus:DI (match_operand:DI 1 "register_operand" "%r,r")
4944
                 (match_operand:DI 2 "arith_operand" "r,J")))]
4945
  "TARGET_64BIT"
4946
  "@
4947
   add,l %1,%2,%0
4948
   ldo %2(%1),%0"
4949
  [(set_attr "type" "binary,binary")
4950
   (set_attr "pa_combine_type" "addmove")
4951
   (set_attr "length" "4,4")])
4952
 
4953
(define_insn ""
4954
  [(set (match_operand:DI 0 "register_operand" "=r")
4955
        (plus:DI (not:DI (match_operand:DI 1 "register_operand" "r"))
4956
                 (match_operand:DI 2 "register_operand" "r")))]
4957
  "TARGET_64BIT"
4958
  "uaddcm %2,%1,%0"
4959
  [(set_attr "type" "binary")
4960
   (set_attr "length" "4")])
4961
 
4962
(define_insn ""
4963
  [(set (match_operand:SI 0 "register_operand" "=r")
4964
        (plus:SI (not:SI (match_operand:SI 1 "register_operand" "r"))
4965
                 (match_operand:SI 2 "register_operand" "r")))]
4966
  ""
4967
  "uaddcm %2,%1,%0"
4968
  [(set_attr "type" "binary")
4969
   (set_attr "length" "4")])
4970
 
4971
(define_expand "addvdi3"
4972
  [(parallel [(set (match_operand:DI 0 "register_operand" "")
4973
                   (plus:DI (match_operand:DI 1 "reg_or_0_operand" "")
4974
                            (match_operand:DI 2 "arith11_operand" "")))
4975
              (trap_if (ne (plus:TI (sign_extend:TI (match_dup 1))
4976
                                    (sign_extend:TI (match_dup 2)))
4977
                           (sign_extend:TI (plus:DI (match_dup 1)
4978
                                                    (match_dup 2))))
4979
                       (const_int 0))])]
4980
  ""
4981
  "")
4982
 
4983
(define_insn ""
4984
  [(set (match_operand:DI 0 "register_operand" "=r,r")
4985
        (plus:DI (match_operand:DI 1 "reg_or_0_operand" "%rM,rM")
4986
                 (match_operand:DI 2 "arith11_operand" "r,I")))
4987
   (trap_if (ne (plus:TI (sign_extend:TI (match_dup 1))
4988
                         (sign_extend:TI (match_dup 2)))
4989
                (sign_extend:TI (plus:DI (match_dup 1)
4990
                                         (match_dup 2))))
4991
            (const_int 0))]
4992
  "TARGET_64BIT"
4993
  "@
4994
  add,tsv,* %2,%1,%0
4995
  addi,tsv,* %2,%1,%0"
4996
  [(set_attr "type" "binary,binary")
4997
   (set_attr "length" "4,4")])
4998
 
4999
(define_insn ""
5000
  [(set (match_operand:DI 0 "register_operand" "=r")
5001
        (plus:DI (match_operand:DI 1 "reg_or_0_operand" "%rM")
5002
                 (match_operand:DI 2 "arith11_operand" "rI")))
5003
   (trap_if (ne (plus:TI (sign_extend:TI (match_dup 1))
5004
                         (sign_extend:TI (match_dup 2)))
5005
                (sign_extend:TI (plus:DI (match_dup 1)
5006
                                         (match_dup 2))))
5007
            (const_int 0))]
5008
  "!TARGET_64BIT"
5009
  "*
5010
{
5011
  if (GET_CODE (operands[2]) == CONST_INT)
5012
    {
5013
      if (INTVAL (operands[2]) >= 0)
5014
        return \"addi %2,%R1,%R0\;{addco|add,c,tsv} %1,%%r0,%0\";
5015
      else
5016
        return \"addi %2,%R1,%R0\;{subbo|sub,b,tsv} %1,%%r0,%0\";
5017
    }
5018
  else
5019
    return \"add %R2,%R1,%R0\;{addco|add,c,tsv} %2,%1,%0\";
5020
}"
5021
  [(set_attr "type" "binary")
5022
   (set_attr "length" "8")])
5023
 
5024
;; define_splits to optimize cases of adding a constant integer
5025
;; to a register when the constant does not fit in 14 bits.  */
5026
(define_split
5027
  [(set (match_operand:SI 0 "register_operand" "")
5028
        (plus:SI (match_operand:SI 1 "register_operand" "")
5029
                 (match_operand:SI 2 "const_int_operand" "")))
5030
   (clobber (match_operand:SI 4 "register_operand" ""))]
5031
  "! cint_ok_for_move (INTVAL (operands[2]))
5032
   && VAL_14_BITS_P (INTVAL (operands[2]) >> 1)"
5033
  [(set (match_dup 4) (plus:SI (match_dup 1) (match_dup 2)))
5034
   (set (match_dup 0) (plus:SI (match_dup 4) (match_dup 3)))]
5035
  "
5036
{
5037
  int val = INTVAL (operands[2]);
5038
  int low = (val < 0) ? -0x2000 : 0x1fff;
5039
  int rest = val - low;
5040
 
5041
  operands[2] = GEN_INT (rest);
5042
  operands[3] = GEN_INT (low);
5043
}")
5044
 
5045
(define_split
5046
  [(set (match_operand:SI 0 "register_operand" "")
5047
        (plus:SI (match_operand:SI 1 "register_operand" "")
5048
                 (match_operand:SI 2 "const_int_operand" "")))
5049
   (clobber (match_operand:SI 4 "register_operand" ""))]
5050
  "! cint_ok_for_move (INTVAL (operands[2]))"
5051
  [(set (match_dup 4) (match_dup 2))
5052
   (set (match_dup 0) (plus:SI (mult:SI (match_dup 4) (match_dup 3))
5053
                               (match_dup 1)))]
5054
  "
5055
{
5056
  HOST_WIDE_INT intval = INTVAL (operands[2]);
5057
 
5058
  /* Try dividing the constant by 2, then 4, and finally 8 to see
5059
     if we can get a constant which can be loaded into a register
5060
     in a single instruction (cint_ok_for_move).
5061
 
5062
     If that fails, try to negate the constant and subtract it
5063
     from our input operand.  */
5064
  if (intval % 2 == 0 && cint_ok_for_move (intval / 2))
5065
    {
5066
      operands[2] = GEN_INT (intval / 2);
5067
      operands[3] = const2_rtx;
5068
    }
5069
  else if (intval % 4 == 0 && cint_ok_for_move (intval / 4))
5070
    {
5071
      operands[2] = GEN_INT (intval / 4);
5072
      operands[3] = GEN_INT (4);
5073
    }
5074
  else if (intval % 8 == 0 && cint_ok_for_move (intval / 8))
5075
    {
5076
      operands[2] = GEN_INT (intval / 8);
5077
      operands[3] = GEN_INT (8);
5078
    }
5079
  else if (cint_ok_for_move (-intval))
5080
    {
5081
      emit_insn (gen_rtx_SET (VOIDmode, operands[4], GEN_INT (-intval)));
5082
      emit_insn (gen_subsi3 (operands[0], operands[1], operands[4]));
5083
      DONE;
5084
    }
5085
  else
5086
    FAIL;
5087
}")
5088
 
5089
(define_insn "addsi3"
5090
  [(set (match_operand:SI 0 "register_operand" "=r,r")
5091
        (plus:SI (match_operand:SI 1 "register_operand" "%r,r")
5092
                 (match_operand:SI 2 "arith_operand" "r,J")))]
5093
  ""
5094
  "@
5095
   {addl|add,l} %1,%2,%0
5096
   ldo %2(%1),%0"
5097
  [(set_attr "type" "binary,binary")
5098
   (set_attr "pa_combine_type" "addmove")
5099
   (set_attr "length" "4,4")])
5100
 
5101
(define_insn "addvsi3"
5102
  [(set (match_operand:SI 0 "register_operand" "=r,r")
5103
        (plus:SI (match_operand:SI 1 "reg_or_0_operand" "%rM,rM")
5104
                 (match_operand:SI 2 "arith11_operand" "r,I")))
5105
   (trap_if (ne (plus:DI (sign_extend:DI (match_dup 1))
5106
                         (sign_extend:DI (match_dup 2)))
5107
                (sign_extend:DI (plus:SI (match_dup 1)
5108
                                         (match_dup 2))))
5109
            (const_int 0))]
5110
  ""
5111
  "@
5112
  {addo|add,tsv} %2,%1,%0
5113
  {addio|addi,tsv} %2,%1,%0"
5114
  [(set_attr "type" "binary,binary")
5115
   (set_attr "length" "4,4")])
5116
 
5117
(define_expand "subdi3"
5118
  [(set (match_operand:DI 0 "register_operand" "")
5119
        (minus:DI (match_operand:DI 1 "arith11_operand" "")
5120
                  (match_operand:DI 2 "reg_or_0_operand" "")))]
5121
  ""
5122
  "")
5123
 
5124
(define_insn ""
5125
  [(set (match_operand:DI 0 "register_operand" "=r,r,!q")
5126
        (minus:DI (match_operand:DI 1 "arith11_operand" "r,I,!U")
5127
                  (match_operand:DI 2 "reg_or_0_operand" "rM,rM,!rM")))]
5128
  "TARGET_64BIT"
5129
  "@
5130
   sub %1,%2,%0
5131
   subi %1,%2,%0
5132
   mtsarcm %2"
5133
  [(set_attr "type" "binary,binary,move")
5134
  (set_attr "length" "4,4,4")])
5135
 
5136
(define_insn ""
5137
  [(set (match_operand:DI 0 "register_operand" "=r,&r")
5138
        (minus:DI (match_operand:DI 1 "arith11_operand" "r,I")
5139
                  (match_operand:DI 2 "reg_or_0_operand" "rM,rM")))]
5140
  "!TARGET_64BIT"
5141
  "*
5142
{
5143
  if (GET_CODE (operands[1]) == CONST_INT)
5144
    {
5145
      if (INTVAL (operands[1]) >= 0)
5146
        return \"subi %1,%R2,%R0\;{subb|sub,b} %%r0,%2,%0\";
5147
      else
5148
        return \"ldi -1,%0\;subi %1,%R2,%R0\;{subb|sub,b} %0,%2,%0\";
5149
    }
5150
  else
5151
    return \"sub %R1,%R2,%R0\;{subb|sub,b} %1,%2,%0\";
5152
}"
5153
  [(set_attr "type" "binary")
5154
   (set (attr "length")
5155
        (if_then_else (eq_attr "alternative" "0")
5156
          (const_int 8)
5157
          (if_then_else (ge (symbol_ref "INTVAL (operands[1])")
5158
                            (const_int 0))
5159
            (const_int 8)
5160
            (const_int 12))))])
5161
 
5162
(define_expand "subvdi3"
5163
  [(parallel [(set (match_operand:DI 0 "register_operand" "")
5164
                   (minus:DI (match_operand:DI 1 "arith11_operand" "")
5165
                             (match_operand:DI 2 "reg_or_0_operand" "")))
5166
              (trap_if (ne (minus:TI (sign_extend:TI (match_dup 1))
5167
                                     (sign_extend:TI (match_dup 2)))
5168
                           (sign_extend:TI (minus:DI (match_dup 1)
5169
                                                     (match_dup 2))))
5170
                       (const_int 0))])]
5171
  ""
5172
  "")
5173
 
5174
(define_insn ""
5175
  [(set (match_operand:DI 0 "register_operand" "=r,r")
5176
        (minus:DI (match_operand:DI 1 "arith11_operand" "r,I")
5177
                  (match_operand:DI 2 "reg_or_0_operand" "rM,rM")))
5178
   (trap_if (ne (minus:TI (sign_extend:TI (match_dup 1))
5179
                          (sign_extend:TI (match_dup 2)))
5180
                (sign_extend:TI (minus:DI (match_dup 1)
5181
                                          (match_dup 2))))
5182
            (const_int 0))]
5183
  "TARGET_64BIT"
5184
  "@
5185
  {subo|sub,tsv} %1,%2,%0
5186
  {subio|subi,tsv} %1,%2,%0"
5187
  [(set_attr "type" "binary,binary")
5188
   (set_attr "length" "4,4")])
5189
 
5190
(define_insn ""
5191
  [(set (match_operand:DI 0 "register_operand" "=r,&r")
5192
        (minus:DI (match_operand:DI 1 "arith11_operand" "r,I")
5193
                  (match_operand:DI 2 "reg_or_0_operand" "rM,rM")))
5194
   (trap_if (ne (minus:TI (sign_extend:TI (match_dup 1))
5195
                          (sign_extend:TI (match_dup 2)))
5196
                (sign_extend:TI (minus:DI (match_dup 1)
5197
                                          (match_dup 2))))
5198
            (const_int 0))]
5199
  "!TARGET_64BIT"
5200
  "*
5201
{
5202
  if (GET_CODE (operands[1]) == CONST_INT)
5203
    {
5204
      if (INTVAL (operands[1]) >= 0)
5205
        return \"subi %1,%R2,%R0\;{subbo|sub,b,tsv} %%r0,%2,%0\";
5206
      else
5207
        return \"ldi -1,%0\;subi %1,%R2,%R0\;{subbo|sub,b,tsv} %0,%2,%0\";
5208
    }
5209
  else
5210
    return \"sub %R1,%R2,%R0\;{subbo|sub,b,tsv} %1,%2,%0\";
5211
}"
5212
  [(set_attr "type" "binary,binary")
5213
   (set (attr "length")
5214
        (if_then_else (eq_attr "alternative" "0")
5215
          (const_int 8)
5216
          (if_then_else (ge (symbol_ref "INTVAL (operands[1])")
5217
                            (const_int 0))
5218
            (const_int 8)
5219
            (const_int 12))))])
5220
 
5221
(define_expand "subsi3"
5222
  [(set (match_operand:SI 0 "register_operand" "")
5223
        (minus:SI (match_operand:SI 1 "arith11_operand" "")
5224
                  (match_operand:SI 2 "register_operand" "")))]
5225
  ""
5226
  "")
5227
 
5228
(define_insn ""
5229
  [(set (match_operand:SI 0 "register_operand" "=r,r")
5230
        (minus:SI (match_operand:SI 1 "arith11_operand" "r,I")
5231
                  (match_operand:SI 2 "register_operand" "r,r")))]
5232
  "!TARGET_PA_20"
5233
  "@
5234
   sub %1,%2,%0
5235
   subi %1,%2,%0"
5236
  [(set_attr "type" "binary,binary")
5237
   (set_attr "length" "4,4")])
5238
 
5239
(define_insn ""
5240
  [(set (match_operand:SI 0 "register_operand" "=r,r,!q")
5241
        (minus:SI (match_operand:SI 1 "arith11_operand" "r,I,!S")
5242
                  (match_operand:SI 2 "register_operand" "r,r,!r")))]
5243
  "TARGET_PA_20"
5244
  "@
5245
   sub %1,%2,%0
5246
   subi %1,%2,%0
5247
   mtsarcm %2"
5248
  [(set_attr "type" "binary,binary,move")
5249
   (set_attr "length" "4,4,4")])
5250
 
5251
(define_insn "subvsi3"
5252
  [(set (match_operand:SI 0 "register_operand" "=r,r")
5253
        (minus:SI (match_operand:SI 1 "arith11_operand" "rM,I")
5254
                  (match_operand:SI 2 "reg_or_0_operand" "rM,rM")))
5255
   (trap_if (ne (minus:DI (sign_extend:DI (match_dup 1))
5256
                          (sign_extend:DI (match_dup 2)))
5257
                (sign_extend:DI (minus:SI (match_dup 1)
5258
                                          (match_dup 2))))
5259
            (const_int 0))]
5260
  ""
5261
  "@
5262
  {subo|sub,tsv} %1,%2,%0
5263
  {subio|subi,tsv} %1,%2,%0"
5264
  [(set_attr "type" "binary,binary")
5265
   (set_attr "length" "4,4")])
5266
 
5267
;; Clobbering a "register_operand" instead of a match_scratch
5268
;; in operand3 of millicode calls avoids spilling %r1 and
5269
;; produces better code.
5270
 
5271
;; The mulsi3 insns set up registers for the millicode call.
5272
(define_expand "mulsi3"
5273
  [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5274
   (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5275
   (parallel [(set (reg:SI 29) (mult:SI (reg:SI 26) (reg:SI 25)))
5276
              (clobber (match_dup 3))
5277
              (clobber (reg:SI 26))
5278
              (clobber (reg:SI 25))
5279
              (clobber (match_dup 4))])
5280
   (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5281
  ""
5282
  "
5283
{
5284
  operands[4] = gen_rtx_REG (SImode, TARGET_64BIT ? 2 : 31);
5285
  if (TARGET_PA_11 && !TARGET_DISABLE_FPREGS && !TARGET_SOFT_FLOAT)
5286
    {
5287
      rtx scratch = gen_reg_rtx (DImode);
5288
      operands[1] = force_reg (SImode, operands[1]);
5289
      operands[2] = force_reg (SImode, operands[2]);
5290
      emit_insn (gen_umulsidi3 (scratch, operands[1], operands[2]));
5291
      emit_insn (gen_movsi (operands[0],
5292
                            gen_rtx_SUBREG (SImode, scratch,
5293
                                            GET_MODE_SIZE (SImode))));
5294
      DONE;
5295
    }
5296
  operands[3] = gen_reg_rtx (SImode);
5297
}")
5298
 
5299
(define_insn "umulsidi3"
5300
  [(set (match_operand:DI 0 "nonimmediate_operand" "=f")
5301
        (mult:DI (zero_extend:DI (match_operand:SI 1 "nonimmediate_operand" "f"))
5302
                 (zero_extend:DI (match_operand:SI 2 "nonimmediate_operand" "f"))))]
5303
  "TARGET_PA_11 && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT"
5304
  "xmpyu %1,%2,%0"
5305
  [(set_attr "type" "fpmuldbl")
5306
   (set_attr "length" "4")])
5307
 
5308
(define_insn ""
5309
  [(set (match_operand:DI 0 "nonimmediate_operand" "=f")
5310
        (mult:DI (zero_extend:DI (match_operand:SI 1 "nonimmediate_operand" "f"))
5311
                 (match_operand:DI 2 "uint32_operand" "f")))]
5312
  "TARGET_PA_11 && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT && !TARGET_64BIT"
5313
  "xmpyu %1,%R2,%0"
5314
  [(set_attr "type" "fpmuldbl")
5315
   (set_attr "length" "4")])
5316
 
5317
(define_insn ""
5318
  [(set (match_operand:DI 0 "nonimmediate_operand" "=f")
5319
        (mult:DI (zero_extend:DI (match_operand:SI 1 "nonimmediate_operand" "f"))
5320
                 (match_operand:DI 2 "uint32_operand" "f")))]
5321
  "TARGET_PA_11 && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT && TARGET_64BIT"
5322
  "xmpyu %1,%2R,%0"
5323
  [(set_attr "type" "fpmuldbl")
5324
   (set_attr "length" "4")])
5325
 
5326
(define_insn ""
5327
  [(set (reg:SI 29) (mult:SI (reg:SI 26) (reg:SI 25)))
5328
   (clobber (match_operand:SI 0 "register_operand" "=a"))
5329
   (clobber (reg:SI 26))
5330
   (clobber (reg:SI 25))
5331
   (clobber (reg:SI 31))]
5332
  "!TARGET_64BIT"
5333
  "* return output_mul_insn (0, insn);"
5334
  [(set_attr "type" "milli")
5335
   (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5336
 
5337
(define_insn ""
5338
  [(set (reg:SI 29) (mult:SI (reg:SI 26) (reg:SI 25)))
5339
   (clobber (match_operand:SI 0 "register_operand" "=a"))
5340
   (clobber (reg:SI 26))
5341
   (clobber (reg:SI 25))
5342
   (clobber (reg:SI 2))]
5343
  "TARGET_64BIT"
5344
  "* return output_mul_insn (0, insn);"
5345
  [(set_attr "type" "milli")
5346
   (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5347
 
5348
(define_expand "muldi3"
5349
  [(set (match_operand:DI 0 "register_operand" "")
5350
        (mult:DI (match_operand:DI 1 "register_operand" "")
5351
                 (match_operand:DI 2 "register_operand" "")))]
5352
  "TARGET_64BIT && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT"
5353
  "
5354
{
5355
  rtx low_product = gen_reg_rtx (DImode);
5356
  rtx cross_product1 = gen_reg_rtx (DImode);
5357
  rtx cross_product2 = gen_reg_rtx (DImode);
5358
  rtx cross_scratch = gen_reg_rtx (DImode);
5359
  rtx cross_product = gen_reg_rtx (DImode);
5360
  rtx op1l, op1r, op2l, op2r;
5361
  rtx op1shifted, op2shifted;
5362
 
5363
  op1shifted = gen_reg_rtx (DImode);
5364
  op2shifted = gen_reg_rtx (DImode);
5365
  op1l = gen_reg_rtx (SImode);
5366
  op1r = gen_reg_rtx (SImode);
5367
  op2l = gen_reg_rtx (SImode);
5368
  op2r = gen_reg_rtx (SImode);
5369
 
5370
  emit_move_insn (op1shifted, gen_rtx_LSHIFTRT (DImode, operands[1],
5371
                                                GEN_INT (32)));
5372
  emit_move_insn (op2shifted, gen_rtx_LSHIFTRT (DImode, operands[2],
5373
                                                GEN_INT (32)));
5374
  op1r = force_reg (SImode, gen_rtx_SUBREG (SImode, operands[1], 4));
5375
  op2r = force_reg (SImode, gen_rtx_SUBREG (SImode, operands[2], 4));
5376
  op1l = force_reg (SImode, gen_rtx_SUBREG (SImode, op1shifted, 4));
5377
  op2l = force_reg (SImode, gen_rtx_SUBREG (SImode, op2shifted, 4));
5378
 
5379
  /* Emit multiplies for the cross products.  */
5380
  emit_insn (gen_umulsidi3 (cross_product1, op2r, op1l));
5381
  emit_insn (gen_umulsidi3 (cross_product2, op2l, op1r));
5382
 
5383
  /* Emit a multiply for the low sub-word.  */
5384
  emit_insn (gen_umulsidi3 (low_product, copy_rtx (op2r), copy_rtx (op1r)));
5385
 
5386
  /* Sum the cross products and shift them into proper position.  */
5387
  emit_insn (gen_adddi3 (cross_scratch, cross_product1, cross_product2));
5388
  emit_insn (gen_ashldi3 (cross_product, cross_scratch, GEN_INT (32)));
5389
 
5390
  /* Add the cross product to the low product and store the result
5391
     into the output operand .  */
5392
  emit_insn (gen_adddi3 (operands[0], cross_product, low_product));
5393
  DONE;
5394
}")
5395
 
5396
;;; Division and mod.
5397
(define_expand "divsi3"
5398
  [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5399
   (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5400
   (parallel [(set (reg:SI 29) (div:SI (reg:SI 26) (reg:SI 25)))
5401
              (clobber (match_dup 3))
5402
              (clobber (match_dup 4))
5403
              (clobber (reg:SI 26))
5404
              (clobber (reg:SI 25))
5405
              (clobber (match_dup 5))])
5406
   (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5407
  ""
5408
  "
5409
{
5410
  operands[3] = gen_reg_rtx (SImode);
5411
  if (TARGET_64BIT)
5412
    {
5413
      operands[5] = gen_rtx_REG (SImode, 2);
5414
      operands[4] = operands[5];
5415
    }
5416
  else
5417
    {
5418
      operands[5] = gen_rtx_REG (SImode, 31);
5419
      operands[4] = gen_reg_rtx (SImode);
5420
    }
5421
  if (GET_CODE (operands[2]) == CONST_INT && emit_hpdiv_const (operands, 0))
5422
    DONE;
5423
}")
5424
 
5425
(define_insn ""
5426
  [(set (reg:SI 29)
5427
        (div:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
5428
   (clobber (match_operand:SI 1 "register_operand" "=a"))
5429
   (clobber (match_operand:SI 2 "register_operand" "=&r"))
5430
   (clobber (reg:SI 26))
5431
   (clobber (reg:SI 25))
5432
   (clobber (reg:SI 31))]
5433
  "!TARGET_64BIT"
5434
  "*
5435
   return output_div_insn (operands, 0, insn);"
5436
  [(set_attr "type" "milli")
5437
   (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5438
 
5439
(define_insn ""
5440
  [(set (reg:SI 29)
5441
        (div:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
5442
   (clobber (match_operand:SI 1 "register_operand" "=a"))
5443
   (clobber (match_operand:SI 2 "register_operand" "=&r"))
5444
   (clobber (reg:SI 26))
5445
   (clobber (reg:SI 25))
5446
   (clobber (reg:SI 2))]
5447
  "TARGET_64BIT"
5448
  "*
5449
   return output_div_insn (operands, 0, insn);"
5450
  [(set_attr "type" "milli")
5451
   (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5452
 
5453
(define_expand "udivsi3"
5454
  [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5455
   (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5456
   (parallel [(set (reg:SI 29) (udiv:SI (reg:SI 26) (reg:SI 25)))
5457
              (clobber (match_dup 3))
5458
              (clobber (match_dup 4))
5459
              (clobber (reg:SI 26))
5460
              (clobber (reg:SI 25))
5461
              (clobber (match_dup 5))])
5462
   (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5463
  ""
5464
  "
5465
{
5466
  operands[3] = gen_reg_rtx (SImode);
5467
 
5468
  if (TARGET_64BIT)
5469
    {
5470
      operands[5] = gen_rtx_REG (SImode, 2);
5471
      operands[4] = operands[5];
5472
    }
5473
  else
5474
    {
5475
      operands[5] = gen_rtx_REG (SImode, 31);
5476
      operands[4] = gen_reg_rtx (SImode);
5477
    }
5478
  if (GET_CODE (operands[2]) == CONST_INT && emit_hpdiv_const (operands, 1))
5479
    DONE;
5480
}")
5481
 
5482
(define_insn ""
5483
  [(set (reg:SI 29)
5484
        (udiv:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
5485
   (clobber (match_operand:SI 1 "register_operand" "=a"))
5486
   (clobber (match_operand:SI 2 "register_operand" "=&r"))
5487
   (clobber (reg:SI 26))
5488
   (clobber (reg:SI 25))
5489
   (clobber (reg:SI 31))]
5490
  "!TARGET_64BIT"
5491
  "*
5492
   return output_div_insn (operands, 1, insn);"
5493
  [(set_attr "type" "milli")
5494
   (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5495
 
5496
(define_insn ""
5497
  [(set (reg:SI 29)
5498
        (udiv:SI (reg:SI 26) (match_operand:SI 0 "div_operand" "")))
5499
   (clobber (match_operand:SI 1 "register_operand" "=a"))
5500
   (clobber (match_operand:SI 2 "register_operand" "=&r"))
5501
   (clobber (reg:SI 26))
5502
   (clobber (reg:SI 25))
5503
   (clobber (reg:SI 2))]
5504
  "TARGET_64BIT"
5505
  "*
5506
   return output_div_insn (operands, 1, insn);"
5507
  [(set_attr "type" "milli")
5508
   (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5509
 
5510
(define_expand "modsi3"
5511
  [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5512
   (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5513
   (parallel [(set (reg:SI 29) (mod:SI (reg:SI 26) (reg:SI 25)))
5514
              (clobber (match_dup 3))
5515
              (clobber (match_dup 4))
5516
              (clobber (reg:SI 26))
5517
              (clobber (reg:SI 25))
5518
              (clobber (match_dup 5))])
5519
   (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5520
  ""
5521
  "
5522
{
5523
  if (TARGET_64BIT)
5524
    {
5525
      operands[5] = gen_rtx_REG (SImode, 2);
5526
      operands[4] = operands[5];
5527
    }
5528
  else
5529
    {
5530
      operands[5] = gen_rtx_REG (SImode, 31);
5531
      operands[4] = gen_reg_rtx (SImode);
5532
    }
5533
  operands[3] = gen_reg_rtx (SImode);
5534
}")
5535
 
5536
(define_insn ""
5537
  [(set (reg:SI 29) (mod:SI (reg:SI 26) (reg:SI 25)))
5538
   (clobber (match_operand:SI 0 "register_operand" "=a"))
5539
   (clobber (match_operand:SI 1 "register_operand" "=&r"))
5540
   (clobber (reg:SI 26))
5541
   (clobber (reg:SI 25))
5542
   (clobber (reg:SI 31))]
5543
  "!TARGET_64BIT"
5544
  "*
5545
  return output_mod_insn (0, insn);"
5546
  [(set_attr "type" "milli")
5547
   (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5548
 
5549
(define_insn ""
5550
  [(set (reg:SI 29) (mod:SI (reg:SI 26) (reg:SI 25)))
5551
   (clobber (match_operand:SI 0 "register_operand" "=a"))
5552
   (clobber (match_operand:SI 1 "register_operand" "=&r"))
5553
   (clobber (reg:SI 26))
5554
   (clobber (reg:SI 25))
5555
   (clobber (reg:SI 2))]
5556
  "TARGET_64BIT"
5557
  "*
5558
  return output_mod_insn (0, insn);"
5559
  [(set_attr "type" "milli")
5560
   (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5561
 
5562
(define_expand "umodsi3"
5563
  [(set (reg:SI 26) (match_operand:SI 1 "move_src_operand" ""))
5564
   (set (reg:SI 25) (match_operand:SI 2 "move_src_operand" ""))
5565
   (parallel [(set (reg:SI 29) (umod:SI (reg:SI 26) (reg:SI 25)))
5566
              (clobber (match_dup 3))
5567
              (clobber (match_dup 4))
5568
              (clobber (reg:SI 26))
5569
              (clobber (reg:SI 25))
5570
              (clobber (match_dup 5))])
5571
   (set (match_operand:SI 0 "move_dest_operand" "") (reg:SI 29))]
5572
  ""
5573
  "
5574
{
5575
  if (TARGET_64BIT)
5576
    {
5577
      operands[5] = gen_rtx_REG (SImode, 2);
5578
      operands[4] = operands[5];
5579
    }
5580
  else
5581
    {
5582
      operands[5] = gen_rtx_REG (SImode, 31);
5583
      operands[4] = gen_reg_rtx (SImode);
5584
    }
5585
  operands[3] = gen_reg_rtx (SImode);
5586
}")
5587
 
5588
(define_insn ""
5589
  [(set (reg:SI 29) (umod:SI (reg:SI 26) (reg:SI 25)))
5590
   (clobber (match_operand:SI 0 "register_operand" "=a"))
5591
   (clobber (match_operand:SI 1 "register_operand" "=&r"))
5592
   (clobber (reg:SI 26))
5593
   (clobber (reg:SI 25))
5594
   (clobber (reg:SI 31))]
5595
  "!TARGET_64BIT"
5596
  "*
5597
  return output_mod_insn (1, insn);"
5598
  [(set_attr "type" "milli")
5599
   (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5600
 
5601
(define_insn ""
5602
  [(set (reg:SI 29) (umod:SI (reg:SI 26) (reg:SI 25)))
5603
   (clobber (match_operand:SI 0 "register_operand" "=a"))
5604
   (clobber (match_operand:SI 1 "register_operand" "=&r"))
5605
   (clobber (reg:SI 26))
5606
   (clobber (reg:SI 25))
5607
   (clobber (reg:SI 2))]
5608
  "TARGET_64BIT"
5609
  "*
5610
  return output_mod_insn (1, insn);"
5611
  [(set_attr "type" "milli")
5612
   (set (attr "length") (symbol_ref "attr_length_millicode_call (insn)"))])
5613
 
5614
;;- and instructions
5615
;; We define DImode `and` so with DImode `not` we can get
5616
;; DImode `andn`.  Other combinations are possible.
5617
 
5618
(define_expand "anddi3"
5619
  [(set (match_operand:DI 0 "register_operand" "")
5620
        (and:DI (match_operand:DI 1 "register_operand" "")
5621
                (match_operand:DI 2 "and_operand" "")))]
5622
  ""
5623
  "
5624
{
5625
  /* Both operands must be register operands.  */
5626
  if (!TARGET_64BIT && !register_operand (operands[2], DImode))
5627
    FAIL;
5628
}")
5629
 
5630
(define_insn ""
5631
  [(set (match_operand:DI 0 "register_operand" "=r")
5632
        (and:DI (match_operand:DI 1 "register_operand" "%r")
5633
                (match_operand:DI 2 "register_operand" "r")))]
5634
  "!TARGET_64BIT"
5635
  "and %1,%2,%0\;and %R1,%R2,%R0"
5636
  [(set_attr "type" "binary")
5637
   (set_attr "length" "8")])
5638
 
5639
(define_insn ""
5640
  [(set (match_operand:DI 0 "register_operand" "=r,r")
5641
        (and:DI (match_operand:DI 1 "register_operand" "%?r,0")
5642
                (match_operand:DI 2 "and_operand" "rO,P")))]
5643
  "TARGET_64BIT"
5644
  "* return output_64bit_and (operands); "
5645
  [(set_attr "type" "binary")
5646
   (set_attr "length" "4")])
5647
 
5648
; The ? for op1 makes reload prefer zdepi instead of loading a huge
5649
; constant with ldil;ldo.
5650
(define_insn "andsi3"
5651
  [(set (match_operand:SI 0 "register_operand" "=r,r")
5652
        (and:SI (match_operand:SI 1 "register_operand" "%?r,0")
5653
                (match_operand:SI 2 "and_operand" "rO,P")))]
5654
  ""
5655
  "* return output_and (operands); "
5656
  [(set_attr "type" "binary,shift")
5657
   (set_attr "length" "4,4")])
5658
 
5659
(define_insn ""
5660
  [(set (match_operand:DI 0 "register_operand" "=r")
5661
        (and:DI (not:DI (match_operand:DI 1 "register_operand" "r"))
5662
                (match_operand:DI 2 "register_operand" "r")))]
5663
  "!TARGET_64BIT"
5664
  "andcm %2,%1,%0\;andcm %R2,%R1,%R0"
5665
  [(set_attr "type" "binary")
5666
   (set_attr "length" "8")])
5667
 
5668
(define_insn ""
5669
  [(set (match_operand:DI 0 "register_operand" "=r")
5670
        (and:DI (not:DI (match_operand:DI 1 "register_operand" "r"))
5671
                (match_operand:DI 2 "register_operand" "r")))]
5672
  "TARGET_64BIT"
5673
  "andcm %2,%1,%0"
5674
  [(set_attr "type" "binary")
5675
   (set_attr "length" "4")])
5676
 
5677
(define_insn ""
5678
  [(set (match_operand:SI 0 "register_operand" "=r")
5679
        (and:SI (not:SI (match_operand:SI 1 "register_operand" "r"))
5680
                (match_operand:SI 2 "register_operand" "r")))]
5681
  ""
5682
  "andcm %2,%1,%0"
5683
  [(set_attr "type" "binary")
5684
  (set_attr "length" "4")])
5685
 
5686
(define_expand "iordi3"
5687
  [(set (match_operand:DI 0 "register_operand" "")
5688
        (ior:DI (match_operand:DI 1 "register_operand" "")
5689
                (match_operand:DI 2 "ior_operand" "")))]
5690
  ""
5691
  "
5692
{
5693
  /* Both operands must be register operands.  */
5694
  if (!TARGET_64BIT && !register_operand (operands[2], DImode))
5695
    FAIL;
5696
}")
5697
 
5698
(define_insn ""
5699
  [(set (match_operand:DI 0 "register_operand" "=r")
5700
        (ior:DI (match_operand:DI 1 "register_operand" "%r")
5701
                (match_operand:DI 2 "register_operand" "r")))]
5702
  "!TARGET_64BIT"
5703
  "or %1,%2,%0\;or %R1,%R2,%R0"
5704
  [(set_attr "type" "binary")
5705
   (set_attr "length" "8")])
5706
 
5707
(define_insn ""
5708
  [(set (match_operand:DI 0 "register_operand" "=r,r")
5709
        (ior:DI (match_operand:DI 1 "register_operand" "0,0")
5710
                (match_operand:DI 2 "ior_operand" "M,i")))]
5711
  "TARGET_64BIT"
5712
  "* return output_64bit_ior (operands); "
5713
  [(set_attr "type" "binary,shift")
5714
   (set_attr "length" "4,4")])
5715
 
5716
(define_insn ""
5717
  [(set (match_operand:DI 0 "register_operand" "=r")
5718
        (ior:DI (match_operand:DI 1 "register_operand" "%r")
5719
                (match_operand:DI 2 "register_operand" "r")))]
5720
  "TARGET_64BIT"
5721
  "or %1,%2,%0"
5722
  [(set_attr "type" "binary")
5723
   (set_attr "length" "4")])
5724
 
5725
;; Need a define_expand because we've run out of CONST_OK... characters.
5726
(define_expand "iorsi3"
5727
  [(set (match_operand:SI 0 "register_operand" "")
5728
        (ior:SI (match_operand:SI 1 "register_operand" "")
5729
                (match_operand:SI 2 "arith32_operand" "")))]
5730
  ""
5731
  "
5732
{
5733
  if (! (ior_operand (operands[2], SImode)
5734
         || register_operand (operands[2], SImode)))
5735
    operands[2] = force_reg (SImode, operands[2]);
5736
}")
5737
 
5738
(define_insn ""
5739
  [(set (match_operand:SI 0 "register_operand" "=r,r")
5740
        (ior:SI (match_operand:SI 1 "register_operand" "0,0")
5741
                (match_operand:SI 2 "ior_operand" "M,i")))]
5742
  ""
5743
  "* return output_ior (operands); "
5744
  [(set_attr "type" "binary,shift")
5745
   (set_attr "length" "4,4")])
5746
 
5747
(define_insn ""
5748
  [(set (match_operand:SI 0 "register_operand" "=r")
5749
        (ior:SI (match_operand:SI 1 "register_operand" "%r")
5750
                (match_operand:SI 2 "register_operand" "r")))]
5751
  ""
5752
  "or %1,%2,%0"
5753
  [(set_attr "type" "binary")
5754
   (set_attr "length" "4")])
5755
 
5756
(define_expand "xordi3"
5757
  [(set (match_operand:DI 0 "register_operand" "")
5758
        (xor:DI (match_operand:DI 1 "register_operand" "")
5759
                (match_operand:DI 2 "register_operand" "")))]
5760
  ""
5761
  "
5762
{
5763
}")
5764
 
5765
(define_insn ""
5766
  [(set (match_operand:DI 0 "register_operand" "=r")
5767
        (xor:DI (match_operand:DI 1 "register_operand" "%r")
5768
                (match_operand:DI 2 "register_operand" "r")))]
5769
  "!TARGET_64BIT"
5770
  "xor %1,%2,%0\;xor %R1,%R2,%R0"
5771
  [(set_attr "type" "binary")
5772
   (set_attr "length" "8")])
5773
 
5774
(define_insn ""
5775
  [(set (match_operand:DI 0 "register_operand" "=r")
5776
        (xor:DI (match_operand:DI 1 "register_operand" "%r")
5777
                (match_operand:DI 2 "register_operand" "r")))]
5778
  "TARGET_64BIT"
5779
  "xor %1,%2,%0"
5780
  [(set_attr "type" "binary")
5781
   (set_attr "length" "4")])
5782
 
5783
(define_insn "xorsi3"
5784
  [(set (match_operand:SI 0 "register_operand" "=r")
5785
        (xor:SI (match_operand:SI 1 "register_operand" "%r")
5786
                (match_operand:SI 2 "register_operand" "r")))]
5787
  ""
5788
  "xor %1,%2,%0"
5789
  [(set_attr "type" "binary")
5790
   (set_attr "length" "4")])
5791
 
5792
(define_expand "negdi2"
5793
  [(set (match_operand:DI 0 "register_operand" "")
5794
        (neg:DI (match_operand:DI 1 "register_operand" "")))]
5795
  ""
5796
  "")
5797
 
5798
(define_insn ""
5799
  [(set (match_operand:DI 0 "register_operand" "=r")
5800
        (neg:DI (match_operand:DI 1 "register_operand" "r")))]
5801
  "!TARGET_64BIT"
5802
  "sub %%r0,%R1,%R0\;{subb|sub,b} %%r0,%1,%0"
5803
  [(set_attr "type" "unary")
5804
   (set_attr "length" "8")])
5805
 
5806
(define_insn ""
5807
  [(set (match_operand:DI 0 "register_operand" "=r")
5808
        (neg:DI (match_operand:DI 1 "register_operand" "r")))]
5809
  "TARGET_64BIT"
5810
  "sub %%r0,%1,%0"
5811
  [(set_attr "type" "unary")
5812
   (set_attr "length" "4")])
5813
 
5814
(define_expand "negvdi2"
5815
  [(parallel [(set (match_operand:DI 0 "register_operand" "")
5816
                   (neg:DI (match_operand:DI 1 "register_operand" "")))
5817
              (trap_if (ne (neg:TI (sign_extend:TI (match_dup 1)))
5818
                                   (sign_extend:TI (neg:DI (match_dup 1))))
5819
                       (const_int 0))])]
5820
  ""
5821
  "")
5822
 
5823
(define_insn ""
5824
  [(set (match_operand:DI 0 "register_operand" "=r")
5825
        (neg:DI (match_operand:DI 1 "register_operand" "r")))
5826
   (trap_if (ne (neg:TI (sign_extend:TI (match_dup 1)))
5827
                (sign_extend:TI (neg:DI (match_dup 1))))
5828
            (const_int 0))]
5829
  "!TARGET_64BIT"
5830
  "sub %%r0,%R1,%R0\;{subbo|sub,b,tsv} %%r0,%1,%0"
5831
  [(set_attr "type" "unary")
5832
   (set_attr "length" "8")])
5833
 
5834
(define_insn ""
5835
  [(set (match_operand:DI 0 "register_operand" "=r")
5836
        (neg:DI (match_operand:DI 1 "register_operand" "r")))
5837
   (trap_if (ne (neg:TI (sign_extend:TI (match_dup 1)))
5838
                (sign_extend:TI (neg:DI (match_dup 1))))
5839
            (const_int 0))]
5840
  "TARGET_64BIT"
5841
  "sub,tsv %%r0,%1,%0"
5842
  [(set_attr "type" "unary")
5843
   (set_attr "length" "4")])
5844
 
5845
(define_insn "negsi2"
5846
  [(set (match_operand:SI 0 "register_operand" "=r")
5847
        (neg:SI (match_operand:SI 1 "register_operand" "r")))]
5848
  ""
5849
  "sub %%r0,%1,%0"
5850
  [(set_attr "type" "unary")
5851
   (set_attr "length" "4")])
5852
 
5853
(define_insn "negvsi2"
5854
  [(set (match_operand:SI 0 "register_operand" "=r")
5855
        (neg:SI (match_operand:SI 1 "register_operand" "r")))
5856
   (trap_if (ne (neg:DI (sign_extend:DI (match_dup 1)))
5857
                (sign_extend:DI (neg:SI (match_dup 1))))
5858
            (const_int 0))]
5859
   ""
5860
   "{subo|sub,tsv} %%r0,%1,%0"
5861
  [(set_attr "type" "unary")
5862
   (set_attr "length" "4")])
5863
 
5864
(define_expand "one_cmpldi2"
5865
  [(set (match_operand:DI 0 "register_operand" "")
5866
        (not:DI (match_operand:DI 1 "register_operand" "")))]
5867
  ""
5868
  "
5869
{
5870
}")
5871
 
5872
(define_insn ""
5873
  [(set (match_operand:DI 0 "register_operand" "=r")
5874
        (not:DI (match_operand:DI 1 "register_operand" "r")))]
5875
  "!TARGET_64BIT"
5876
  "uaddcm %%r0,%1,%0\;uaddcm %%r0,%R1,%R0"
5877
  [(set_attr "type" "unary")
5878
   (set_attr "length" "8")])
5879
 
5880
(define_insn ""
5881
  [(set (match_operand:DI 0 "register_operand" "=r")
5882
        (not:DI (match_operand:DI 1 "register_operand" "r")))]
5883
  "TARGET_64BIT"
5884
  "uaddcm %%r0,%1,%0"
5885
  [(set_attr "type" "unary")
5886
   (set_attr "length" "4")])
5887
 
5888
(define_insn "one_cmplsi2"
5889
  [(set (match_operand:SI 0 "register_operand" "=r")
5890
        (not:SI (match_operand:SI 1 "register_operand" "r")))]
5891
  ""
5892
  "uaddcm %%r0,%1,%0"
5893
  [(set_attr "type" "unary")
5894
   (set_attr "length" "4")])
5895
 
5896
;; Floating point arithmetic instructions.
5897
 
5898
(define_insn "adddf3"
5899
  [(set (match_operand:DF 0 "register_operand" "=f")
5900
        (plus:DF (match_operand:DF 1 "register_operand" "f")
5901
                 (match_operand:DF 2 "register_operand" "f")))]
5902
  "! TARGET_SOFT_FLOAT"
5903
  "fadd,dbl %1,%2,%0"
5904
  [(set_attr "type" "fpalu")
5905
   (set_attr "pa_combine_type" "faddsub")
5906
   (set_attr "length" "4")])
5907
 
5908
(define_insn "addsf3"
5909
  [(set (match_operand:SF 0 "register_operand" "=f")
5910
        (plus:SF (match_operand:SF 1 "register_operand" "f")
5911
                 (match_operand:SF 2 "register_operand" "f")))]
5912
  "! TARGET_SOFT_FLOAT"
5913
  "fadd,sgl %1,%2,%0"
5914
  [(set_attr "type" "fpalu")
5915
   (set_attr "pa_combine_type" "faddsub")
5916
   (set_attr "length" "4")])
5917
 
5918
(define_insn "subdf3"
5919
  [(set (match_operand:DF 0 "register_operand" "=f")
5920
        (minus:DF (match_operand:DF 1 "register_operand" "f")
5921
                  (match_operand:DF 2 "register_operand" "f")))]
5922
  "! TARGET_SOFT_FLOAT"
5923
  "fsub,dbl %1,%2,%0"
5924
  [(set_attr "type" "fpalu")
5925
   (set_attr "pa_combine_type" "faddsub")
5926
   (set_attr "length" "4")])
5927
 
5928
(define_insn "subsf3"
5929
  [(set (match_operand:SF 0 "register_operand" "=f")
5930
        (minus:SF (match_operand:SF 1 "register_operand" "f")
5931
                  (match_operand:SF 2 "register_operand" "f")))]
5932
  "! TARGET_SOFT_FLOAT"
5933
  "fsub,sgl %1,%2,%0"
5934
  [(set_attr "type" "fpalu")
5935
   (set_attr "pa_combine_type" "faddsub")
5936
   (set_attr "length" "4")])
5937
 
5938
(define_insn "muldf3"
5939
  [(set (match_operand:DF 0 "register_operand" "=f")
5940
        (mult:DF (match_operand:DF 1 "register_operand" "f")
5941
                 (match_operand:DF 2 "register_operand" "f")))]
5942
  "! TARGET_SOFT_FLOAT"
5943
  "fmpy,dbl %1,%2,%0"
5944
  [(set_attr "type" "fpmuldbl")
5945
   (set_attr "pa_combine_type" "fmpy")
5946
   (set_attr "length" "4")])
5947
 
5948
(define_insn "mulsf3"
5949
  [(set (match_operand:SF 0 "register_operand" "=f")
5950
        (mult:SF (match_operand:SF 1 "register_operand" "f")
5951
                 (match_operand:SF 2 "register_operand" "f")))]
5952
  "! TARGET_SOFT_FLOAT"
5953
  "fmpy,sgl %1,%2,%0"
5954
  [(set_attr "type" "fpmulsgl")
5955
   (set_attr "pa_combine_type" "fmpy")
5956
   (set_attr "length" "4")])
5957
 
5958
(define_insn "divdf3"
5959
  [(set (match_operand:DF 0 "register_operand" "=f")
5960
        (div:DF (match_operand:DF 1 "register_operand" "f")
5961
                (match_operand:DF 2 "register_operand" "f")))]
5962
  "! TARGET_SOFT_FLOAT"
5963
  "fdiv,dbl %1,%2,%0"
5964
  [(set_attr "type" "fpdivdbl")
5965
   (set_attr "length" "4")])
5966
 
5967
(define_insn "divsf3"
5968
  [(set (match_operand:SF 0 "register_operand" "=f")
5969
        (div:SF (match_operand:SF 1 "register_operand" "f")
5970
                (match_operand:SF 2 "register_operand" "f")))]
5971
  "! TARGET_SOFT_FLOAT"
5972
  "fdiv,sgl %1,%2,%0"
5973
  [(set_attr "type" "fpdivsgl")
5974
   (set_attr "length" "4")])
5975
 
5976
;; Processors prior to PA 2.0 don't have a fneg instruction.  Fast
5977
;; negation can be done by subtracting from plus zero.  However, this
5978
;; violates the IEEE standard when negating plus and minus zero.
5979
;; The slow path toggles the sign bit in the general registers.
5980
(define_expand "negdf2"
5981
  [(set (match_operand:DF 0 "register_operand" "")
5982
        (neg:DF (match_operand:DF 1 "register_operand" "")))]
5983
  "!TARGET_SOFT_FLOAT"
5984
{
5985
  if (TARGET_PA_20 || flag_unsafe_math_optimizations)
5986
    emit_insn (gen_negdf2_fast (operands[0], operands[1]));
5987
  else
5988
    emit_insn (gen_negdf2_slow (operands[0], operands[1]));
5989
  DONE;
5990
})
5991
 
5992
(define_insn "negdf2_slow"
5993
  [(set (match_operand:DF 0 "register_operand" "=r")
5994
        (neg:DF (match_operand:DF 1 "register_operand" "r")))]
5995
  "!TARGET_SOFT_FLOAT && !TARGET_PA_20"
5996
  "*
5997
{
5998
  if (rtx_equal_p (operands[0], operands[1]))
5999
    return \"and,< %1,%1,%0\;depi,tr 1,0,1,%0\;depi 0,0,1,%0\";
6000
  else
6001
    return \"and,< %1,%1,%0\;depi,tr 1,0,1,%0\;depi 0,0,1,%0\;copy %R1,%R0\";
6002
}"
6003
  [(set_attr "type" "multi")
6004
   (set (attr "length")
6005
        (if_then_else (ne (symbol_ref "rtx_equal_p (operands[0], operands[1])")
6006
                          (const_int 0))
6007
            (const_int 12)
6008
            (const_int 16)))])
6009
 
6010
(define_insn "negdf2_fast"
6011
  [(set (match_operand:DF 0 "register_operand" "=f")
6012
        (neg:DF (match_operand:DF 1 "register_operand" "f")))]
6013
  "!TARGET_SOFT_FLOAT"
6014
  "*
6015
{
6016
  if (TARGET_PA_20)
6017
    return \"fneg,dbl %1,%0\";
6018
  else
6019
    return \"fsub,dbl %%fr0,%1,%0\";
6020
}"
6021
  [(set_attr "type" "fpalu")
6022
   (set_attr "length" "4")])
6023
 
6024
(define_expand "negsf2"
6025
  [(set (match_operand:SF 0 "register_operand" "")
6026
        (neg:SF (match_operand:SF 1 "register_operand" "")))]
6027
  "!TARGET_SOFT_FLOAT"
6028
{
6029
  if (TARGET_PA_20 || flag_unsafe_math_optimizations)
6030
    emit_insn (gen_negsf2_fast (operands[0], operands[1]));
6031
  else
6032
    emit_insn (gen_negsf2_slow (operands[0], operands[1]));
6033
  DONE;
6034
})
6035
 
6036
(define_insn "negsf2_slow"
6037
  [(set (match_operand:SF 0 "register_operand" "=r")
6038
        (neg:SF (match_operand:SF 1 "register_operand" "r")))]
6039
  "!TARGET_SOFT_FLOAT && !TARGET_PA_20"
6040
  "and,< %1,%1,%0\;depi,tr 1,0,1,%0\;depi 0,0,1,%0"
6041
  [(set_attr "type" "multi")
6042
   (set_attr "length" "12")])
6043
 
6044
(define_insn "negsf2_fast"
6045
  [(set (match_operand:SF 0 "register_operand" "=f")
6046
        (neg:SF (match_operand:SF 1 "register_operand" "f")))]
6047
  "!TARGET_SOFT_FLOAT"
6048
  "*
6049
{
6050
  if (TARGET_PA_20)
6051
    return \"fneg,sgl %1,%0\";
6052
  else
6053
    return \"fsub,sgl %%fr0,%1,%0\";
6054
}"
6055
  [(set_attr "type" "fpalu")
6056
   (set_attr "length" "4")])
6057
 
6058
(define_insn "absdf2"
6059
  [(set (match_operand:DF 0 "register_operand" "=f")
6060
        (abs:DF (match_operand:DF 1 "register_operand" "f")))]
6061
  "! TARGET_SOFT_FLOAT"
6062
  "fabs,dbl %1,%0"
6063
  [(set_attr "type" "fpalu")
6064
   (set_attr "length" "4")])
6065
 
6066
(define_insn "abssf2"
6067
  [(set (match_operand:SF 0 "register_operand" "=f")
6068
        (abs:SF (match_operand:SF 1 "register_operand" "f")))]
6069
  "! TARGET_SOFT_FLOAT"
6070
  "fabs,sgl %1,%0"
6071
  [(set_attr "type" "fpalu")
6072
   (set_attr "length" "4")])
6073
 
6074
(define_insn "sqrtdf2"
6075
  [(set (match_operand:DF 0 "register_operand" "=f")
6076
        (sqrt:DF (match_operand:DF 1 "register_operand" "f")))]
6077
  "! TARGET_SOFT_FLOAT"
6078
  "fsqrt,dbl %1,%0"
6079
  [(set_attr "type" "fpsqrtdbl")
6080
   (set_attr "length" "4")])
6081
 
6082
(define_insn "sqrtsf2"
6083
  [(set (match_operand:SF 0 "register_operand" "=f")
6084
        (sqrt:SF (match_operand:SF 1 "register_operand" "f")))]
6085
  "! TARGET_SOFT_FLOAT"
6086
  "fsqrt,sgl %1,%0"
6087
  [(set_attr "type" "fpsqrtsgl")
6088
   (set_attr "length" "4")])
6089
 
6090
;; PA 2.0 floating point instructions
6091
 
6092
; fmpyfadd patterns
6093
(define_insn ""
6094
  [(set (match_operand:DF 0 "register_operand" "=f")
6095
        (plus:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
6096
                          (match_operand:DF 2 "register_operand" "f"))
6097
                 (match_operand:DF 3 "register_operand" "f")))]
6098
  "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6099
  "fmpyfadd,dbl %1,%2,%3,%0"
6100
  [(set_attr "type" "fpmuldbl")
6101
   (set_attr "length" "4")])
6102
 
6103
(define_insn ""
6104
  [(set (match_operand:DF 0 "register_operand" "=f")
6105
        (plus:DF (match_operand:DF 1 "register_operand" "f")
6106
                 (mult:DF (match_operand:DF 2 "register_operand" "f")
6107
                          (match_operand:DF 3 "register_operand" "f"))))]
6108
  "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6109
  "fmpyfadd,dbl %2,%3,%1,%0"
6110
  [(set_attr "type" "fpmuldbl")
6111
   (set_attr "length" "4")])
6112
 
6113
(define_insn ""
6114
  [(set (match_operand:SF 0 "register_operand" "=f")
6115
        (plus:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
6116
                          (match_operand:SF 2 "register_operand" "f"))
6117
                 (match_operand:SF 3 "register_operand" "f")))]
6118
  "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6119
  "fmpyfadd,sgl %1,%2,%3,%0"
6120
  [(set_attr "type" "fpmulsgl")
6121
   (set_attr "length" "4")])
6122
 
6123
(define_insn ""
6124
  [(set (match_operand:SF 0 "register_operand" "=f")
6125
        (plus:SF (match_operand:SF 1 "register_operand" "f")
6126
                 (mult:SF (match_operand:SF 2 "register_operand" "f")
6127
                          (match_operand:SF 3 "register_operand" "f"))))]
6128
  "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6129
  "fmpyfadd,sgl %2,%3,%1,%0"
6130
  [(set_attr "type" "fpmulsgl")
6131
   (set_attr "length" "4")])
6132
 
6133
; fmpynfadd patterns
6134
(define_insn ""
6135
  [(set (match_operand:DF 0 "register_operand" "=f")
6136
        (minus:DF (match_operand:DF 1 "register_operand" "f")
6137
                  (mult:DF (match_operand:DF 2 "register_operand" "f")
6138
                           (match_operand:DF 3 "register_operand" "f"))))]
6139
  "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6140
  "fmpynfadd,dbl %2,%3,%1,%0"
6141
  [(set_attr "type" "fpmuldbl")
6142
   (set_attr "length" "4")])
6143
 
6144
(define_insn ""
6145
  [(set (match_operand:SF 0 "register_operand" "=f")
6146
        (minus:SF (match_operand:SF 1 "register_operand" "f")
6147
                  (mult:SF (match_operand:SF 2 "register_operand" "f")
6148
                           (match_operand:SF 3 "register_operand" "f"))))]
6149
  "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6150
  "fmpynfadd,sgl %2,%3,%1,%0"
6151
  [(set_attr "type" "fpmulsgl")
6152
   (set_attr "length" "4")])
6153
 
6154
; fnegabs patterns
6155
(define_insn ""
6156
  [(set (match_operand:DF 0 "register_operand" "=f")
6157
        (neg:DF (abs:DF (match_operand:DF 1 "register_operand" "f"))))]
6158
  "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6159
  "fnegabs,dbl %1,%0"
6160
  [(set_attr "type" "fpalu")
6161
   (set_attr "length" "4")])
6162
 
6163
(define_insn ""
6164
  [(set (match_operand:SF 0 "register_operand" "=f")
6165
        (neg:SF (abs:SF (match_operand:SF 1 "register_operand" "f"))))]
6166
  "TARGET_PA_20 && ! TARGET_SOFT_FLOAT"
6167
  "fnegabs,sgl %1,%0"
6168
  [(set_attr "type" "fpalu")
6169
   (set_attr "length" "4")])
6170
 
6171
;; Generating a fused multiply sequence is a win for this case as it will
6172
;; reduce the latency for the fused case without impacting the plain
6173
;; multiply case.
6174
;;
6175
;; Similar possibilities exist for fnegabs, shadd and other insns which
6176
;; perform two operations with the result of the first feeding the second.
6177
(define_insn ""
6178
  [(set (match_operand:DF 0 "register_operand" "=f")
6179
        (plus:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
6180
                          (match_operand:DF 2 "register_operand" "f"))
6181
                 (match_operand:DF 3 "register_operand" "f")))
6182
   (set (match_operand:DF 4 "register_operand" "=&f")
6183
        (mult:DF (match_dup 1) (match_dup 2)))]
6184
  "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6185
    && ! (reg_overlap_mentioned_p (operands[4], operands[1])
6186
          || reg_overlap_mentioned_p (operands[4], operands[2])))"
6187
  "#"
6188
  [(set_attr "type" "fpmuldbl")
6189
   (set_attr "length" "8")])
6190
 
6191
;; We want to split this up during scheduling since we want both insns
6192
;; to schedule independently.
6193
(define_split
6194
  [(set (match_operand:DF 0 "register_operand" "")
6195
        (plus:DF (mult:DF (match_operand:DF 1 "register_operand" "")
6196
                          (match_operand:DF 2 "register_operand" ""))
6197
                 (match_operand:DF 3 "register_operand" "")))
6198
   (set (match_operand:DF 4 "register_operand" "")
6199
        (mult:DF (match_dup 1) (match_dup 2)))]
6200
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6201
  [(set (match_dup 4) (mult:DF (match_dup 1) (match_dup 2)))
6202
   (set (match_dup 0) (plus:DF (mult:DF (match_dup 1) (match_dup 2))
6203
                               (match_dup 3)))]
6204
  "")
6205
 
6206
(define_insn ""
6207
  [(set (match_operand:SF 0 "register_operand" "=f")
6208
        (plus:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
6209
                          (match_operand:SF 2 "register_operand" "f"))
6210
                 (match_operand:SF 3 "register_operand" "f")))
6211
   (set (match_operand:SF 4 "register_operand" "=&f")
6212
        (mult:SF (match_dup 1) (match_dup 2)))]
6213
  "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6214
    && ! (reg_overlap_mentioned_p (operands[4], operands[1])
6215
          || reg_overlap_mentioned_p (operands[4], operands[2])))"
6216
  "#"
6217
  [(set_attr "type" "fpmuldbl")
6218
   (set_attr "length" "8")])
6219
 
6220
;; We want to split this up during scheduling since we want both insns
6221
;; to schedule independently.
6222
(define_split
6223
  [(set (match_operand:SF 0 "register_operand" "")
6224
        (plus:SF (mult:SF (match_operand:SF 1 "register_operand" "")
6225
                          (match_operand:SF 2 "register_operand" ""))
6226
                 (match_operand:SF 3 "register_operand" "")))
6227
   (set (match_operand:SF 4 "register_operand" "")
6228
        (mult:SF (match_dup 1) (match_dup 2)))]
6229
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6230
  [(set (match_dup 4) (mult:SF (match_dup 1) (match_dup 2)))
6231
   (set (match_dup 0) (plus:SF (mult:SF (match_dup 1) (match_dup 2))
6232
                               (match_dup 3)))]
6233
  "")
6234
 
6235
;; Negating a multiply can be faked by adding zero in a fused multiply-add
6236
;; instruction.
6237
(define_insn ""
6238
  [(set (match_operand:DF 0 "register_operand" "=f")
6239
        (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
6240
                         (match_operand:DF 2 "register_operand" "f"))))]
6241
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6242
  "fmpynfadd,dbl %1,%2,%%fr0,%0"
6243
  [(set_attr "type" "fpmuldbl")
6244
   (set_attr "length" "4")])
6245
 
6246
(define_insn ""
6247
  [(set (match_operand:SF 0 "register_operand" "=f")
6248
        (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
6249
                         (match_operand:SF 2 "register_operand" "f"))))]
6250
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6251
  "fmpynfadd,sgl %1,%2,%%fr0,%0"
6252
  [(set_attr "type" "fpmuldbl")
6253
   (set_attr "length" "4")])
6254
 
6255
(define_insn ""
6256
  [(set (match_operand:DF 0 "register_operand" "=f")
6257
        (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
6258
                         (match_operand:DF 2 "register_operand" "f"))))
6259
   (set (match_operand:DF 3 "register_operand" "=&f")
6260
        (mult:DF (match_dup 1) (match_dup 2)))]
6261
  "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6262
    && ! (reg_overlap_mentioned_p (operands[3], operands[1])
6263
          || reg_overlap_mentioned_p (operands[3], operands[2])))"
6264
  "#"
6265
  [(set_attr "type" "fpmuldbl")
6266
   (set_attr "length" "8")])
6267
 
6268
(define_split
6269
  [(set (match_operand:DF 0 "register_operand" "")
6270
        (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "")
6271
                         (match_operand:DF 2 "register_operand" ""))))
6272
   (set (match_operand:DF 3 "register_operand" "")
6273
        (mult:DF (match_dup 1) (match_dup 2)))]
6274
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6275
  [(set (match_dup 3) (mult:DF (match_dup 1) (match_dup 2)))
6276
   (set (match_dup 0) (neg:DF (mult:DF (match_dup 1) (match_dup 2))))]
6277
  "")
6278
 
6279
(define_insn ""
6280
  [(set (match_operand:SF 0 "register_operand" "=f")
6281
        (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
6282
                         (match_operand:SF 2 "register_operand" "f"))))
6283
   (set (match_operand:SF 3 "register_operand" "=&f")
6284
        (mult:SF (match_dup 1) (match_dup 2)))]
6285
  "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6286
    && ! (reg_overlap_mentioned_p (operands[3], operands[1])
6287
          || reg_overlap_mentioned_p (operands[3], operands[2])))"
6288
  "#"
6289
  [(set_attr "type" "fpmuldbl")
6290
   (set_attr "length" "8")])
6291
 
6292
(define_split
6293
  [(set (match_operand:SF 0 "register_operand" "")
6294
        (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "")
6295
                         (match_operand:SF 2 "register_operand" ""))))
6296
   (set (match_operand:SF 3 "register_operand" "")
6297
        (mult:SF (match_dup 1) (match_dup 2)))]
6298
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6299
  [(set (match_dup 3) (mult:SF (match_dup 1) (match_dup 2)))
6300
   (set (match_dup 0) (neg:SF (mult:SF (match_dup 1) (match_dup 2))))]
6301
  "")
6302
 
6303
;; Now fused multiplies with the result of the multiply negated.
6304
(define_insn ""
6305
  [(set (match_operand:DF 0 "register_operand" "=f")
6306
        (plus:DF (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
6307
                                  (match_operand:DF 2 "register_operand" "f")))
6308
                 (match_operand:DF 3 "register_operand" "f")))]
6309
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6310
  "fmpynfadd,dbl %1,%2,%3,%0"
6311
  [(set_attr "type" "fpmuldbl")
6312
   (set_attr "length" "4")])
6313
 
6314
(define_insn ""
6315
  [(set (match_operand:SF 0 "register_operand" "=f")
6316
        (plus:SF (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
6317
                         (match_operand:SF 2 "register_operand" "f")))
6318
                 (match_operand:SF 3 "register_operand" "f")))]
6319
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6320
  "fmpynfadd,sgl %1,%2,%3,%0"
6321
  [(set_attr "type" "fpmuldbl")
6322
   (set_attr "length" "4")])
6323
 
6324
(define_insn ""
6325
  [(set (match_operand:DF 0 "register_operand" "=f")
6326
        (plus:DF (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "f")
6327
                                  (match_operand:DF 2 "register_operand" "f")))
6328
                 (match_operand:DF 3 "register_operand" "f")))
6329
   (set (match_operand:DF 4 "register_operand" "=&f")
6330
        (mult:DF (match_dup 1) (match_dup 2)))]
6331
  "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6332
    && ! (reg_overlap_mentioned_p (operands[4], operands[1])
6333
          || reg_overlap_mentioned_p (operands[4], operands[2])))"
6334
  "#"
6335
  [(set_attr "type" "fpmuldbl")
6336
   (set_attr "length" "8")])
6337
 
6338
(define_split
6339
  [(set (match_operand:DF 0 "register_operand" "")
6340
        (plus:DF (neg:DF (mult:DF (match_operand:DF 1 "register_operand" "")
6341
                                  (match_operand:DF 2 "register_operand" "")))
6342
                 (match_operand:DF 3 "register_operand" "")))
6343
   (set (match_operand:DF 4 "register_operand" "")
6344
        (mult:DF (match_dup 1) (match_dup 2)))]
6345
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6346
  [(set (match_dup 4) (mult:DF (match_dup 1) (match_dup 2)))
6347
   (set (match_dup 0) (plus:DF (neg:DF (mult:DF (match_dup 1) (match_dup 2)))
6348
                               (match_dup 3)))]
6349
  "")
6350
 
6351
(define_insn ""
6352
  [(set (match_operand:SF 0 "register_operand" "=f")
6353
        (plus:SF (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "f")
6354
                                  (match_operand:SF 2 "register_operand" "f")))
6355
                 (match_operand:SF 3 "register_operand" "f")))
6356
   (set (match_operand:SF 4 "register_operand" "=&f")
6357
        (mult:SF (match_dup 1) (match_dup 2)))]
6358
  "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6359
    && ! (reg_overlap_mentioned_p (operands[4], operands[1])
6360
          || reg_overlap_mentioned_p (operands[4], operands[2])))"
6361
  "#"
6362
  [(set_attr "type" "fpmuldbl")
6363
   (set_attr "length" "8")])
6364
 
6365
(define_split
6366
  [(set (match_operand:SF 0 "register_operand" "")
6367
        (plus:SF (neg:SF (mult:SF (match_operand:SF 1 "register_operand" "")
6368
                                  (match_operand:SF 2 "register_operand" "")))
6369
                 (match_operand:SF 3 "register_operand" "")))
6370
   (set (match_operand:SF 4 "register_operand" "")
6371
        (mult:SF (match_dup 1) (match_dup 2)))]
6372
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6373
  [(set (match_dup 4) (mult:SF (match_dup 1) (match_dup 2)))
6374
   (set (match_dup 0) (plus:SF (neg:SF (mult:SF (match_dup 1) (match_dup 2)))
6375
                               (match_dup 3)))]
6376
  "")
6377
 
6378
(define_insn ""
6379
  [(set (match_operand:DF 0 "register_operand" "=f")
6380
        (minus:DF (match_operand:DF 3 "register_operand" "f")
6381
                  (mult:DF (match_operand:DF 1 "register_operand" "f")
6382
                           (match_operand:DF 2 "register_operand" "f"))))
6383
   (set (match_operand:DF 4 "register_operand" "=&f")
6384
        (mult:DF (match_dup 1) (match_dup 2)))]
6385
  "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6386
    && ! (reg_overlap_mentioned_p (operands[4], operands[1])
6387
          || reg_overlap_mentioned_p (operands[4], operands[2])))"
6388
  "#"
6389
  [(set_attr "type" "fpmuldbl")
6390
   (set_attr "length" "8")])
6391
 
6392
(define_split
6393
  [(set (match_operand:DF 0 "register_operand" "")
6394
        (minus:DF (match_operand:DF 3 "register_operand" "")
6395
                  (mult:DF (match_operand:DF 1 "register_operand" "")
6396
                           (match_operand:DF 2 "register_operand" ""))))
6397
   (set (match_operand:DF 4 "register_operand" "")
6398
        (mult:DF (match_dup 1) (match_dup 2)))]
6399
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6400
  [(set (match_dup 4) (mult:DF (match_dup 1) (match_dup 2)))
6401
   (set (match_dup 0) (minus:DF (match_dup 3)
6402
                                (mult:DF (match_dup 1) (match_dup 2))))]
6403
  "")
6404
 
6405
(define_insn ""
6406
  [(set (match_operand:SF 0 "register_operand" "=f")
6407
        (minus:SF (match_operand:SF 3 "register_operand" "f")
6408
                  (mult:SF (match_operand:SF 1 "register_operand" "f")
6409
                           (match_operand:SF 2 "register_operand" "f"))))
6410
   (set (match_operand:SF 4 "register_operand" "=&f")
6411
        (mult:SF (match_dup 1) (match_dup 2)))]
6412
  "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6413
    && ! (reg_overlap_mentioned_p (operands[4], operands[1])
6414
          || reg_overlap_mentioned_p (operands[4], operands[2])))"
6415
  "#"
6416
  [(set_attr "type" "fpmuldbl")
6417
   (set_attr "length" "8")])
6418
 
6419
(define_split
6420
  [(set (match_operand:SF 0 "register_operand" "")
6421
        (minus:SF (match_operand:SF 3 "register_operand" "")
6422
                  (mult:SF (match_operand:SF 1 "register_operand" "")
6423
                           (match_operand:SF 2 "register_operand" ""))))
6424
   (set (match_operand:SF 4 "register_operand" "")
6425
        (mult:SF (match_dup 1) (match_dup 2)))]
6426
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6427
  [(set (match_dup 4) (mult:SF (match_dup 1) (match_dup 2)))
6428
   (set (match_dup 0) (minus:SF (match_dup 3)
6429
                                (mult:SF (match_dup 1) (match_dup 2))))]
6430
  "")
6431
 
6432
(define_insn ""
6433
  [(set (match_operand:DF 0 "register_operand" "=f")
6434
        (neg:DF (abs:DF (match_operand:DF 1 "register_operand" "f"))))
6435
   (set (match_operand:DF 2 "register_operand" "=&f") (abs:DF (match_dup 1)))]
6436
  "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6437
    && ! reg_overlap_mentioned_p (operands[2], operands[1]))"
6438
  "#"
6439
  [(set_attr "type" "fpalu")
6440
   (set_attr "length" "8")])
6441
 
6442
(define_split
6443
  [(set (match_operand:DF 0 "register_operand" "")
6444
        (neg:DF (abs:DF (match_operand:DF 1 "register_operand" ""))))
6445
   (set (match_operand:DF 2 "register_operand" "") (abs:DF (match_dup 1)))]
6446
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6447
  [(set (match_dup 2) (abs:DF (match_dup 1)))
6448
   (set (match_dup 0) (neg:DF (abs:DF (match_dup 1))))]
6449
  "")
6450
 
6451
(define_insn ""
6452
  [(set (match_operand:SF 0 "register_operand" "=f")
6453
        (neg:SF (abs:SF (match_operand:SF 1 "register_operand" "f"))))
6454
   (set (match_operand:SF 2 "register_operand" "=&f") (abs:SF (match_dup 1)))]
6455
  "(! TARGET_SOFT_FLOAT && TARGET_PA_20
6456
    && ! reg_overlap_mentioned_p (operands[2], operands[1]))"
6457
  "#"
6458
  [(set_attr "type" "fpalu")
6459
   (set_attr "length" "8")])
6460
 
6461
(define_split
6462
  [(set (match_operand:SF 0 "register_operand" "")
6463
        (neg:SF (abs:SF (match_operand:SF 1 "register_operand" ""))))
6464
   (set (match_operand:SF 2 "register_operand" "") (abs:SF (match_dup 1)))]
6465
  "! TARGET_SOFT_FLOAT && TARGET_PA_20"
6466
  [(set (match_dup 2) (abs:SF (match_dup 1)))
6467
   (set (match_dup 0) (neg:SF (abs:SF (match_dup 1))))]
6468
  "")
6469
 
6470
;;- Shift instructions
6471
 
6472
;; Optimized special case of shifting.
6473
 
6474
(define_insn ""
6475
  [(set (match_operand:SI 0 "register_operand" "=r")
6476
        (lshiftrt:SI (match_operand:SI 1 "memory_operand" "m")
6477
                     (const_int 24)))]
6478
  ""
6479
  "ldb%M1 %1,%0"
6480
  [(set_attr "type" "load")
6481
   (set_attr "length" "4")])
6482
 
6483
(define_insn ""
6484
  [(set (match_operand:SI 0 "register_operand" "=r")
6485
        (lshiftrt:SI (match_operand:SI 1 "memory_operand" "m")
6486
                     (const_int 16)))]
6487
  ""
6488
  "ldh%M1 %1,%0"
6489
  [(set_attr "type" "load")
6490
   (set_attr "length" "4")])
6491
 
6492
(define_insn ""
6493
  [(set (match_operand:SI 0 "register_operand" "=r")
6494
        (plus:SI (mult:SI (match_operand:SI 2 "register_operand" "r")
6495
                          (match_operand:SI 3 "shadd_operand" ""))
6496
                 (match_operand:SI 1 "register_operand" "r")))]
6497
  ""
6498
  "{sh%O3addl %2,%1,%0|shladd,l %2,%O3,%1,%0} "
6499
  [(set_attr "type" "binary")
6500
   (set_attr "length" "4")])
6501
 
6502
(define_insn ""
6503
  [(set (match_operand:DI 0 "register_operand" "=r")
6504
        (plus:DI (mult:DI (match_operand:DI 2 "register_operand" "r")
6505
                          (match_operand:DI 3 "shadd_operand" ""))
6506
                 (match_operand:DI 1 "register_operand" "r")))]
6507
  "TARGET_64BIT"
6508
  "shladd,l %2,%O3,%1,%0"
6509
  [(set_attr "type" "binary")
6510
   (set_attr "length" "4")])
6511
 
6512
(define_expand "ashlsi3"
6513
  [(set (match_operand:SI 0 "register_operand" "")
6514
        (ashift:SI (match_operand:SI 1 "lhs_lshift_operand" "")
6515
                   (match_operand:SI 2 "arith32_operand" "")))]
6516
  ""
6517
  "
6518
{
6519
  if (GET_CODE (operands[2]) != CONST_INT)
6520
    {
6521
      rtx temp = gen_reg_rtx (SImode);
6522
      emit_insn (gen_subsi3 (temp, GEN_INT (31), operands[2]));
6523
      if (GET_CODE (operands[1]) == CONST_INT)
6524
        emit_insn (gen_zvdep_imm32 (operands[0], operands[1], temp));
6525
      else
6526
        emit_insn (gen_zvdep32 (operands[0], operands[1], temp));
6527
      DONE;
6528
    }
6529
  /* Make sure both inputs are not constants,
6530
     there are no patterns for that.  */
6531
  operands[1] = force_reg (SImode, operands[1]);
6532
}")
6533
 
6534
(define_insn ""
6535
  [(set (match_operand:SI 0 "register_operand" "=r")
6536
        (ashift:SI (match_operand:SI 1 "register_operand" "r")
6537
                   (match_operand:SI 2 "const_int_operand" "n")))]
6538
  ""
6539
  "{zdep|depw,z} %1,%P2,%L2,%0"
6540
  [(set_attr "type" "shift")
6541
   (set_attr "length" "4")])
6542
 
6543
; Match cases of op1 a CONST_INT here that zvdep_imm32 doesn't handle.
6544
; Doing it like this makes slightly better code since reload can
6545
; replace a register with a known value in range -16..15 with a
6546
; constant.  Ideally, we would like to merge zvdep32 and zvdep_imm32,
6547
; but since we have no more CONST_OK... characters, that is not
6548
; possible.
6549
(define_insn "zvdep32"
6550
  [(set (match_operand:SI 0 "register_operand" "=r,r")
6551
        (ashift:SI (match_operand:SI 1 "arith5_operand" "r,L")
6552
                   (minus:SI (const_int 31)
6553
                             (match_operand:SI 2 "register_operand" "q,q"))))]
6554
  ""
6555
  "@
6556
   {zvdep %1,32,%0|depw,z %1,%%sar,32,%0}
6557
   {zvdepi %1,32,%0|depwi,z %1,%%sar,32,%0}"
6558
  [(set_attr "type" "shift,shift")
6559
   (set_attr "length" "4,4")])
6560
 
6561
(define_insn "zvdep_imm32"
6562
  [(set (match_operand:SI 0 "register_operand" "=r")
6563
        (ashift:SI (match_operand:SI 1 "lhs_lshift_cint_operand" "")
6564
                   (minus:SI (const_int 31)
6565
                             (match_operand:SI 2 "register_operand" "q"))))]
6566
  ""
6567
  "*
6568
{
6569
  int x = INTVAL (operands[1]);
6570
  operands[2] = GEN_INT (4 + exact_log2 ((x >> 4) + 1));
6571
  operands[1] = GEN_INT ((x & 0xf) - 0x10);
6572
  return \"{zvdepi %1,%2,%0|depwi,z %1,%%sar,%2,%0}\";
6573
}"
6574
  [(set_attr "type" "shift")
6575
   (set_attr "length" "4")])
6576
 
6577
(define_insn "vdepi_ior"
6578
  [(set (match_operand:SI 0 "register_operand" "=r")
6579
        (ior:SI (ashift:SI (match_operand:SI 1 "const_int_operand" "")
6580
                           (minus:SI (const_int 31)
6581
                                     (match_operand:SI 2 "register_operand" "q")))
6582
                (match_operand:SI 3 "register_operand" "0")))]
6583
  ; accept ...0001...1, can this be generalized?
6584
  "exact_log2 (INTVAL (operands[1]) + 1) > 0"
6585
  "*
6586
{
6587
  int x = INTVAL (operands[1]);
6588
  operands[2] = GEN_INT (exact_log2 (x + 1));
6589
  return \"{vdepi -1,%2,%0|depwi -1,%%sar,%2,%0}\";
6590
}"
6591
  [(set_attr "type" "shift")
6592
   (set_attr "length" "4")])
6593
 
6594
(define_insn "vdepi_and"
6595
  [(set (match_operand:SI 0 "register_operand" "=r")
6596
        (and:SI (rotate:SI (match_operand:SI 1 "const_int_operand" "")
6597
                           (minus:SI (const_int 31)
6598
                                     (match_operand:SI 2 "register_operand" "q")))
6599
                (match_operand:SI 3 "register_operand" "0")))]
6600
  ; this can be generalized...!
6601
  "INTVAL (operands[1]) == -2"
6602
  "*
6603
{
6604
  int x = INTVAL (operands[1]);
6605
  operands[2] = GEN_INT (exact_log2 ((~x) + 1));
6606
  return \"{vdepi 0,%2,%0|depwi 0,%%sar,%2,%0}\";
6607
}"
6608
  [(set_attr "type" "shift")
6609
   (set_attr "length" "4")])
6610
 
6611
(define_expand "ashldi3"
6612
  [(set (match_operand:DI 0 "register_operand" "")
6613
        (ashift:DI (match_operand:DI 1 "lhs_lshift_operand" "")
6614
                   (match_operand:DI 2 "arith32_operand" "")))]
6615
  "TARGET_64BIT"
6616
  "
6617
{
6618
  if (GET_CODE (operands[2]) != CONST_INT)
6619
    {
6620
      rtx temp = gen_reg_rtx (DImode);
6621
      emit_insn (gen_subdi3 (temp, GEN_INT (63), operands[2]));
6622
      if (GET_CODE (operands[1]) == CONST_INT)
6623
        emit_insn (gen_zvdep_imm64 (operands[0], operands[1], temp));
6624
      else
6625
        emit_insn (gen_zvdep64 (operands[0], operands[1], temp));
6626
      DONE;
6627
    }
6628
  /* Make sure both inputs are not constants,
6629
     there are no patterns for that.  */
6630
  operands[1] = force_reg (DImode, operands[1]);
6631
}")
6632
 
6633
(define_insn ""
6634
  [(set (match_operand:DI 0 "register_operand" "=r")
6635
        (ashift:DI (match_operand:DI 1 "register_operand" "r")
6636
                   (match_operand:DI 2 "const_int_operand" "n")))]
6637
  "TARGET_64BIT"
6638
  "depd,z %1,%p2,%Q2,%0"
6639
  [(set_attr "type" "shift")
6640
   (set_attr "length" "4")])
6641
 
6642
; Match cases of op1 a CONST_INT here that zvdep_imm64 doesn't handle.
6643
; Doing it like this makes slightly better code since reload can
6644
; replace a register with a known value in range -16..15 with a
6645
; constant.  Ideally, we would like to merge zvdep64 and zvdep_imm64,
6646
; but since we have no more CONST_OK... characters, that is not
6647
; possible.
6648
(define_insn "zvdep64"
6649
  [(set (match_operand:DI 0 "register_operand" "=r,r")
6650
        (ashift:DI (match_operand:DI 1 "arith5_operand" "r,L")
6651
                   (minus:DI (const_int 63)
6652
                             (match_operand:DI 2 "register_operand" "q,q"))))]
6653
  "TARGET_64BIT"
6654
  "@
6655
   depd,z %1,%%sar,64,%0
6656
   depdi,z %1,%%sar,64,%0"
6657
  [(set_attr "type" "shift,shift")
6658
   (set_attr "length" "4,4")])
6659
 
6660
(define_insn "zvdep_imm64"
6661
  [(set (match_operand:DI 0 "register_operand" "=r")
6662
        (ashift:DI (match_operand:DI 1 "lhs_lshift_cint_operand" "")
6663
                   (minus:DI (const_int 63)
6664
                             (match_operand:DI 2 "register_operand" "q"))))]
6665
  "TARGET_64BIT"
6666
  "*
6667
{
6668
  int x = INTVAL (operands[1]);
6669
  operands[2] = GEN_INT (4 + exact_log2 ((x >> 4) + 1));
6670
  operands[1] = GEN_INT ((x & 0x1f) - 0x20);
6671
  return \"depdi,z %1,%%sar,%2,%0\";
6672
}"
6673
  [(set_attr "type" "shift")
6674
   (set_attr "length" "4")])
6675
 
6676
(define_insn ""
6677
  [(set (match_operand:DI 0 "register_operand" "=r")
6678
        (ior:DI (ashift:DI (match_operand:DI 1 "const_int_operand" "")
6679
                           (minus:DI (const_int 63)
6680
                                     (match_operand:DI 2 "register_operand" "q")))
6681
                (match_operand:DI 3 "register_operand" "0")))]
6682
  ; accept ...0001...1, can this be generalized?
6683
  "TARGET_64BIT && exact_log2 (INTVAL (operands[1]) + 1) > 0"
6684
  "*
6685
{
6686
  int x = INTVAL (operands[1]);
6687
  operands[2] = GEN_INT (exact_log2 (x + 1));
6688
  return \"depdi -1,%%sar,%2,%0\";
6689
}"
6690
  [(set_attr "type" "shift")
6691
   (set_attr "length" "4")])
6692
 
6693
(define_insn ""
6694
  [(set (match_operand:DI 0 "register_operand" "=r")
6695
        (and:DI (rotate:DI (match_operand:DI 1 "const_int_operand" "")
6696
                           (minus:DI (const_int 63)
6697
                                     (match_operand:DI 2 "register_operand" "q")))
6698
                (match_operand:DI 3 "register_operand" "0")))]
6699
  ; this can be generalized...!
6700
  "TARGET_64BIT && INTVAL (operands[1]) == -2"
6701
  "*
6702
{
6703
  int x = INTVAL (operands[1]);
6704
  operands[2] = GEN_INT (exact_log2 ((~x) + 1));
6705
  return \"depdi 0,%%sar,%2,%0\";
6706
}"
6707
  [(set_attr "type" "shift")
6708
   (set_attr "length" "4")])
6709
 
6710
(define_expand "ashrsi3"
6711
  [(set (match_operand:SI 0 "register_operand" "")
6712
        (ashiftrt:SI (match_operand:SI 1 "register_operand" "")
6713
                     (match_operand:SI 2 "arith32_operand" "")))]
6714
  ""
6715
  "
6716
{
6717
  if (GET_CODE (operands[2]) != CONST_INT)
6718
    {
6719
      rtx temp = gen_reg_rtx (SImode);
6720
      emit_insn (gen_subsi3 (temp, GEN_INT (31), operands[2]));
6721
      emit_insn (gen_vextrs32 (operands[0], operands[1], temp));
6722
      DONE;
6723
    }
6724
}")
6725
 
6726
(define_insn ""
6727
  [(set (match_operand:SI 0 "register_operand" "=r")
6728
        (ashiftrt:SI (match_operand:SI 1 "register_operand" "r")
6729
                     (match_operand:SI 2 "const_int_operand" "n")))]
6730
  ""
6731
  "{extrs|extrw,s} %1,%P2,%L2,%0"
6732
  [(set_attr "type" "shift")
6733
   (set_attr "length" "4")])
6734
 
6735
(define_insn "vextrs32"
6736
  [(set (match_operand:SI 0 "register_operand" "=r")
6737
        (ashiftrt:SI (match_operand:SI 1 "register_operand" "r")
6738
                     (minus:SI (const_int 31)
6739
                               (match_operand:SI 2 "register_operand" "q"))))]
6740
  ""
6741
  "{vextrs %1,32,%0|extrw,s %1,%%sar,32,%0}"
6742
  [(set_attr "type" "shift")
6743
   (set_attr "length" "4")])
6744
 
6745
(define_expand "ashrdi3"
6746
  [(set (match_operand:DI 0 "register_operand" "")
6747
        (ashiftrt:DI (match_operand:DI 1 "register_operand" "")
6748
                     (match_operand:DI 2 "arith32_operand" "")))]
6749
  "TARGET_64BIT"
6750
  "
6751
{
6752
  if (GET_CODE (operands[2]) != CONST_INT)
6753
    {
6754
      rtx temp = gen_reg_rtx (DImode);
6755
      emit_insn (gen_subdi3 (temp, GEN_INT (63), operands[2]));
6756
      emit_insn (gen_vextrs64 (operands[0], operands[1], temp));
6757
      DONE;
6758
    }
6759
}")
6760
 
6761
(define_insn ""
6762
  [(set (match_operand:DI 0 "register_operand" "=r")
6763
        (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
6764
                     (match_operand:DI 2 "const_int_operand" "n")))]
6765
  "TARGET_64BIT"
6766
  "extrd,s %1,%p2,%Q2,%0"
6767
  [(set_attr "type" "shift")
6768
   (set_attr "length" "4")])
6769
 
6770
(define_insn "vextrs64"
6771
  [(set (match_operand:DI 0 "register_operand" "=r")
6772
        (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
6773
                     (minus:DI (const_int 63)
6774
                               (match_operand:DI 2 "register_operand" "q"))))]
6775
  "TARGET_64BIT"
6776
  "extrd,s %1,%%sar,64,%0"
6777
  [(set_attr "type" "shift")
6778
   (set_attr "length" "4")])
6779
 
6780
(define_insn "lshrsi3"
6781
  [(set (match_operand:SI 0 "register_operand" "=r,r")
6782
        (lshiftrt:SI (match_operand:SI 1 "register_operand" "r,r")
6783
                     (match_operand:SI 2 "arith32_operand" "q,n")))]
6784
  ""
6785
  "@
6786
   {vshd %%r0,%1,%0|shrpw %%r0,%1,%%sar,%0}
6787
   {extru|extrw,u} %1,%P2,%L2,%0"
6788
  [(set_attr "type" "shift")
6789
   (set_attr "length" "4")])
6790
 
6791
(define_insn "lshrdi3"
6792
  [(set (match_operand:DI 0 "register_operand" "=r,r")
6793
        (lshiftrt:DI (match_operand:DI 1 "register_operand" "r,r")
6794
                     (match_operand:DI 2 "arith32_operand" "q,n")))]
6795
  "TARGET_64BIT"
6796
  "@
6797
   shrpd %%r0,%1,%%sar,%0
6798
   extrd,u %1,%p2,%Q2,%0"
6799
  [(set_attr "type" "shift")
6800
   (set_attr "length" "4")])
6801
 
6802
(define_insn "rotrsi3"
6803
  [(set (match_operand:SI 0 "register_operand" "=r,r")
6804
        (rotatert:SI (match_operand:SI 1 "register_operand" "r,r")
6805
                     (match_operand:SI 2 "arith32_operand" "q,n")))]
6806
  ""
6807
  "*
6808
{
6809
  if (GET_CODE (operands[2]) == CONST_INT)
6810
    {
6811
      operands[2] = GEN_INT (INTVAL (operands[2]) & 31);
6812
      return \"{shd|shrpw} %1,%1,%2,%0\";
6813
    }
6814
  else
6815
    return \"{vshd %1,%1,%0|shrpw %1,%1,%%sar,%0}\";
6816
}"
6817
  [(set_attr "type" "shift")
6818
   (set_attr "length" "4")])
6819
 
6820
(define_expand "rotlsi3"
6821
  [(set (match_operand:SI 0 "register_operand" "")
6822
        (rotate:SI (match_operand:SI 1 "register_operand" "")
6823
                   (match_operand:SI 2 "arith32_operand" "")))]
6824
  ""
6825
  "
6826
{
6827
  if (GET_CODE (operands[2]) != CONST_INT)
6828
    {
6829
      rtx temp = gen_reg_rtx (SImode);
6830
      emit_insn (gen_subsi3 (temp, GEN_INT (32), operands[2]));
6831
      emit_insn (gen_rotrsi3 (operands[0], operands[1], temp));
6832
      DONE;
6833
    }
6834
  /* Else expand normally.  */
6835
}")
6836
 
6837
(define_insn ""
6838
  [(set (match_operand:SI 0 "register_operand" "=r")
6839
        (rotate:SI (match_operand:SI 1 "register_operand" "r")
6840
                   (match_operand:SI 2 "const_int_operand" "n")))]
6841
  ""
6842
  "*
6843
{
6844
  operands[2] = GEN_INT ((32 - INTVAL (operands[2])) & 31);
6845
  return \"{shd|shrpw} %1,%1,%2,%0\";
6846
}"
6847
  [(set_attr "type" "shift")
6848
   (set_attr "length" "4")])
6849
 
6850
(define_insn ""
6851
  [(set (match_operand:SI 0 "register_operand" "=r")
6852
        (match_operator:SI 5 "plus_xor_ior_operator"
6853
          [(ashift:SI (match_operand:SI 1 "register_operand" "r")
6854
                      (match_operand:SI 3 "const_int_operand" "n"))
6855
           (lshiftrt:SI (match_operand:SI 2 "register_operand" "r")
6856
                        (match_operand:SI 4 "const_int_operand" "n"))]))]
6857
  "INTVAL (operands[3]) + INTVAL (operands[4]) == 32"
6858
  "{shd|shrpw} %1,%2,%4,%0"
6859
  [(set_attr "type" "shift")
6860
   (set_attr "length" "4")])
6861
 
6862
(define_insn ""
6863
  [(set (match_operand:SI 0 "register_operand" "=r")
6864
        (match_operator:SI 5 "plus_xor_ior_operator"
6865
          [(lshiftrt:SI (match_operand:SI 2 "register_operand" "r")
6866
                        (match_operand:SI 4 "const_int_operand" "n"))
6867
           (ashift:SI (match_operand:SI 1 "register_operand" "r")
6868
                      (match_operand:SI 3 "const_int_operand" "n"))]))]
6869
  "INTVAL (operands[3]) + INTVAL (operands[4]) == 32"
6870
  "{shd|shrpw} %1,%2,%4,%0"
6871
  [(set_attr "type" "shift")
6872
   (set_attr "length" "4")])
6873
 
6874
(define_insn ""
6875
  [(set (match_operand:SI 0 "register_operand" "=r")
6876
        (and:SI (ashift:SI (match_operand:SI 1 "register_operand" "r")
6877
                           (match_operand:SI 2 "const_int_operand" ""))
6878
                (match_operand:SI 3 "const_int_operand" "")))]
6879
  "exact_log2 (1 + (INTVAL (operands[3]) >> (INTVAL (operands[2]) & 31))) > 0"
6880
  "*
6881
{
6882
  int cnt = INTVAL (operands[2]) & 31;
6883
  operands[3] = GEN_INT (exact_log2 (1 + (INTVAL (operands[3]) >> cnt)));
6884
  operands[2] = GEN_INT (31 - cnt);
6885
  return \"{zdep|depw,z} %1,%2,%3,%0\";
6886
}"
6887
  [(set_attr "type" "shift")
6888
   (set_attr "length" "4")])
6889
 
6890
;; Unconditional and other jump instructions.
6891
 
6892
;; This is used for most returns.
6893
(define_insn "return_internal"
6894
  [(return)
6895
   (use (reg:SI 2))]
6896
  ""
6897
  "*
6898
{
6899
  if (TARGET_PA_20)
6900
    return \"bve%* (%%r2)\";
6901
  return \"bv%* %%r0(%%r2)\";
6902
}"
6903
  [(set_attr "type" "branch")
6904
   (set_attr "length" "4")])
6905
 
6906
;; This is used for eh returns which bypass the return stub.
6907
(define_insn "return_external_pic"
6908
  [(return)
6909
   (clobber (reg:SI 1))
6910
   (use (reg:SI 2))]
6911
  "!TARGET_NO_SPACE_REGS
6912
   && !TARGET_PA_20
6913
   && flag_pic && crtl->calls_eh_return"
6914
  "ldsid (%%sr0,%%r2),%%r1\;mtsp %%r1,%%sr0\;be%* 0(%%sr0,%%r2)"
6915
  [(set_attr "type" "branch")
6916
   (set_attr "length" "12")])
6917
 
6918
(define_expand "prologue"
6919
  [(const_int 0)]
6920
  ""
6921
  "hppa_expand_prologue ();DONE;")
6922
 
6923
(define_expand "sibcall_epilogue"
6924
  [(return)]
6925
  ""
6926
  "
6927
{
6928
  hppa_expand_epilogue ();
6929
  DONE;
6930
}")
6931
 
6932
(define_expand "epilogue"
6933
  [(return)]
6934
  ""
6935
  "
6936
{
6937
  rtx x;
6938
 
6939
  /* Try to use the trivial return first.  Else use the full epilogue.  */
6940
  if (reload_completed
6941
      && !frame_pointer_needed
6942
      && !df_regs_ever_live_p (2)
6943
      && (compute_frame_size (get_frame_size (), 0) ? 0 : 1))
6944
    x = gen_return_internal ();
6945
  else
6946
    {
6947
      hppa_expand_epilogue ();
6948
 
6949
      /* EH returns bypass the normal return stub.  Thus, we must do an
6950
         interspace branch to return from functions that call eh_return.
6951
         This is only a problem for returns from shared code on ports
6952
         using space registers.  */
6953
      if (!TARGET_NO_SPACE_REGS
6954
          && !TARGET_PA_20
6955
          && flag_pic && crtl->calls_eh_return)
6956
        x = gen_return_external_pic ();
6957
      else
6958
        x = gen_return_internal ();
6959
    }
6960
  emit_jump_insn (x);
6961
  DONE;
6962
}")
6963
 
6964
; Used by hppa_profile_hook to load the starting address of the current
6965
; function; operand 1 contains the address of the label in operand 3
6966
(define_insn "load_offset_label_address"
6967
  [(set (match_operand:SI 0 "register_operand" "=r")
6968
        (plus:SI (match_operand:SI 1 "register_operand" "r")
6969
                 (minus:SI (match_operand:SI 2 "" "")
6970
                           (label_ref:SI (match_operand 3 "" "")))))]
6971
  ""
6972
  "ldo %2-%l3(%1),%0"
6973
  [(set_attr "type" "multi")
6974
   (set_attr "length" "4")])
6975
 
6976
; Output a code label and load its address.
6977
(define_insn "lcla1"
6978
  [(set (match_operand:SI 0 "register_operand" "=r")
6979
        (label_ref:SI (match_operand 1 "" "")))
6980
   (const_int 0)]
6981
  "!TARGET_PA_20"
6982
  "*
6983
{
6984
  output_asm_insn (\"bl .+8,%0\;depi 0,31,2,%0\", operands);
6985
  (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
6986
                                     CODE_LABEL_NUMBER (operands[1]));
6987
  return \"\";
6988
}"
6989
  [(set_attr "type" "multi")
6990
   (set_attr "length" "8")])
6991
 
6992
(define_insn "lcla2"
6993
  [(set (match_operand:SI 0 "register_operand" "=r")
6994
        (label_ref:SI (match_operand 1 "" "")))
6995
   (const_int 0)]
6996
  "TARGET_PA_20"
6997
  "*
6998
{
6999
  (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
7000
                                     CODE_LABEL_NUMBER (operands[1]));
7001
  return \"mfia %0\";
7002
}"
7003
  [(set_attr "type" "move")
7004
   (set_attr "length" "4")])
7005
 
7006
(define_insn "blockage"
7007
  [(unspec_volatile [(const_int 2)] UNSPECV_BLOCKAGE)]
7008
  ""
7009
  ""
7010
  [(set_attr "length" "0")])
7011
 
7012
(define_insn "jump"
7013
  [(set (pc) (label_ref (match_operand 0 "" "")))]
7014
  ""
7015
  "*
7016
{
7017
  /* An unconditional branch which can reach its target.  */
7018
  if (get_attr_length (insn) < 16)
7019
    return \"b%* %l0\";
7020
 
7021
  return output_lbranch (operands[0], insn, 1);
7022
}"
7023
  [(set_attr "type" "uncond_branch")
7024
   (set_attr "pa_combine_type" "uncond_branch")
7025
   (set (attr "length")
7026
    (cond [(eq (symbol_ref "jump_in_call_delay (insn)") (const_int 1))
7027
           (if_then_else (lt (abs (minus (match_dup 0)
7028
                                         (plus (pc) (const_int 8))))
7029
                             (const_int MAX_12BIT_OFFSET))
7030
           (const_int 4)
7031
           (const_int 8))
7032
           (lt (abs (minus (match_dup 0) (plus (pc) (const_int 8))))
7033
               (const_int MAX_17BIT_OFFSET))
7034
           (const_int 4)
7035
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
7036
           (const_int 20)
7037
           (eq (symbol_ref "flag_pic") (const_int 0))
7038
           (const_int 16)]
7039
          (const_int 24)))])
7040
 
7041
;;; Hope this is only within a function...
7042
(define_insn "indirect_jump"
7043
  [(set (pc) (match_operand 0 "register_operand" "r"))]
7044
  "GET_MODE (operands[0]) == word_mode"
7045
  "bv%* %%r0(%0)"
7046
  [(set_attr "type" "branch")
7047
   (set_attr "length" "4")])
7048
 
7049
;;; An indirect jump can be optimized to a direct jump.  GAS for the
7050
;;; SOM target doesn't allow branching to a label inside a function.
7051
;;; We also don't correctly compute branch distances for labels
7052
;;; outside the current function.  Thus, we use an indirect jump can't
7053
;;; be optimized to a direct jump for all targets.  We assume that
7054
;;; the branch target is in the same space (i.e., nested function
7055
;;; jumping to a label in an outer function in the same translation
7056
;;; unit).
7057
(define_expand "nonlocal_goto"
7058
  [(use (match_operand 0 "general_operand" ""))
7059
   (use (match_operand 1 "general_operand" ""))
7060
   (use (match_operand 2 "general_operand" ""))
7061
   (use (match_operand 3 "general_operand" ""))]
7062
  ""
7063
{
7064
  rtx lab = operands[1];
7065
  rtx stack = operands[2];
7066
  rtx fp = operands[3];
7067
 
7068
  lab = copy_to_reg (lab);
7069
 
7070
  emit_clobber (gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (VOIDmode)));
7071
  emit_clobber (gen_rtx_MEM (BLKmode, hard_frame_pointer_rtx));
7072
 
7073
  /* Restore the frame pointer.  The virtual_stack_vars_rtx is saved
7074
     instead of the hard_frame_pointer_rtx in the save area.  As a
7075
     result, an extra instruction is needed to adjust for the offset
7076
     of the virtual stack variables and the frame pointer.  */
7077
  if (GET_CODE (fp) != REG)
7078
    fp = force_reg (Pmode, fp);
7079
  emit_move_insn (virtual_stack_vars_rtx, fp);
7080
 
7081
  emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX);
7082
 
7083
  emit_use (hard_frame_pointer_rtx);
7084
  emit_use (stack_pointer_rtx);
7085
 
7086
  /* Nonlocal goto jumps are only used between functions in the same
7087
     translation unit.  Thus, we can avoid the extra overhead of an
7088
     interspace jump.  */
7089
  emit_jump_insn (gen_indirect_goto (lab));
7090
  emit_barrier ();
7091
  DONE;
7092
})
7093
 
7094
(define_insn "indirect_goto"
7095
  [(unspec [(match_operand 0 "register_operand" "=r")] UNSPEC_GOTO)]
7096
  "GET_MODE (operands[0]) == word_mode"
7097
  "bv%* %%r0(%0)"
7098
  [(set_attr "type" "branch")
7099
   (set_attr "length" "4")])
7100
 
7101
;;; This jump is used in branch tables where the insn length is fixed.
7102
;;; The length of this insn is adjusted if the delay slot is not filled.
7103
(define_insn "short_jump"
7104
  [(set (pc) (label_ref (match_operand 0 "" "")))
7105
   (const_int 0)]
7106
  ""
7107
  "b%* %l0%#"
7108
  [(set_attr "type" "btable_branch")
7109
   (set_attr "length" "4")])
7110
 
7111
;; Subroutines of "casesi".
7112
;; operand 0 is index
7113
;; operand 1 is the minimum bound
7114
;; operand 2 is the maximum bound - minimum bound + 1
7115
;; operand 3 is CODE_LABEL for the table;
7116
;; operand 4 is the CODE_LABEL to go to if index out of range.
7117
 
7118
(define_expand "casesi"
7119
  [(match_operand:SI 0 "general_operand" "")
7120
   (match_operand:SI 1 "const_int_operand" "")
7121
   (match_operand:SI 2 "const_int_operand" "")
7122
   (match_operand 3 "" "")
7123
   (match_operand 4 "" "")]
7124
  ""
7125
  "
7126
{
7127
  if (GET_CODE (operands[0]) != REG)
7128
    operands[0] = force_reg (SImode, operands[0]);
7129
 
7130
  if (operands[1] != const0_rtx)
7131
    {
7132
      rtx index = gen_reg_rtx (SImode);
7133
 
7134
      operands[1] = GEN_INT (-INTVAL (operands[1]));
7135
      if (!INT_14_BITS (operands[1]))
7136
        operands[1] = force_reg (SImode, operands[1]);
7137
      emit_insn (gen_addsi3 (index, operands[0], operands[1]));
7138
      operands[0] = index;
7139
    }
7140
 
7141
  if (!INT_5_BITS (operands[2]))
7142
    operands[2] = force_reg (SImode, operands[2]);
7143
 
7144
  /* This branch prevents us finding an insn for the delay slot of the
7145
     following vectored branch.  It might be possible to use the delay
7146
     slot if an index value of -1 was used to transfer to the out-of-range
7147
     label.  In order to do this, we would have to output the -1 vector
7148
     element after the delay insn.  The casesi output code would have to
7149
     check if the casesi insn is in a delay branch sequence and output
7150
     the delay insn if one is found.  If this was done, then it might
7151
     then be worthwhile to split the casesi patterns to improve scheduling.
7152
     However, it's not clear that all this extra complexity is worth
7153
     the effort.  */
7154
  {
7155
    rtx test = gen_rtx_GTU (VOIDmode, operands[0], operands[2]);
7156
    emit_jump_insn (gen_cbranchsi4 (test, operands[0], operands[2], operands[4]));
7157
  }
7158
 
7159
  /* In 64bit mode we must make sure to wipe the upper bits of the register
7160
     just in case the addition overflowed or we had random bits in the
7161
     high part of the register.  */
7162
  if (TARGET_64BIT)
7163
    {
7164
      rtx index = gen_reg_rtx (DImode);
7165
 
7166
      emit_insn (gen_extendsidi2 (index, operands[0]));
7167
      operands[0] = index;
7168
    }
7169
 
7170
  if (TARGET_BIG_SWITCH)
7171
    {
7172
      if (TARGET_64BIT)
7173
        emit_jump_insn (gen_casesi64p (operands[0], operands[3]));
7174
      else if (flag_pic)
7175
        emit_jump_insn (gen_casesi32p (operands[0], operands[3]));
7176
      else
7177
        emit_jump_insn (gen_casesi32 (operands[0], operands[3]));
7178
    }
7179
  else
7180
    emit_jump_insn (gen_casesi0 (operands[0], operands[3]));
7181
  DONE;
7182
}")
7183
 
7184
;;; The rtl for this pattern doesn't accurately describe what the insn
7185
;;; actually does, particularly when case-vector elements are exploded
7186
;;; in pa_reorg.  However, the initial SET in these patterns must show
7187
;;; the connection of the insn to the following jump table.
7188
(define_insn "casesi0"
7189
  [(set (pc) (mem:SI (plus:SI
7190
                       (mult:SI (match_operand:SI 0 "register_operand" "r")
7191
                                (const_int 4))
7192
                       (label_ref (match_operand 1 "" "")))))]
7193
  ""
7194
  "blr,n %0,%%r0\;nop"
7195
  [(set_attr "type" "multi")
7196
   (set_attr "length" "8")])
7197
 
7198
;;; 32-bit code, absolute branch table.
7199
(define_insn "casesi32"
7200
  [(set (pc) (mem:SI (plus:SI
7201
                       (mult:SI (match_operand:SI 0 "register_operand" "r")
7202
                                (const_int 4))
7203
                       (label_ref (match_operand 1 "" "")))))
7204
   (clobber (match_scratch:SI 2 "=&r"))]
7205
  "!flag_pic"
7206
  "ldil L'%l1,%2\;ldo R'%l1(%2),%2\;{ldwx|ldw},s %0(%2),%2\;bv,n %%r0(%2)"
7207
  [(set_attr "type" "multi")
7208
   (set_attr "length" "16")])
7209
 
7210
;;; 32-bit code, relative branch table.
7211
(define_insn "casesi32p"
7212
  [(set (pc) (mem:SI (plus:SI
7213
                       (mult:SI (match_operand:SI 0 "register_operand" "r")
7214
                                (const_int 4))
7215
                       (label_ref (match_operand 1 "" "")))))
7216
   (clobber (match_scratch:SI 2 "=&r"))
7217
   (clobber (match_scratch:SI 3 "=&r"))]
7218
  "flag_pic"
7219
  "{bl .+8,%2\;depi 0,31,2,%2|mfia %2}\;ldo {%l1-.|%l1+4-.}(%2),%2\;\
7220
{ldwx|ldw},s %0(%2),%3\;{addl|add,l} %2,%3,%3\;bv,n %%r0(%3)"
7221
  [(set_attr "type" "multi")
7222
   (set (attr "length")
7223
     (if_then_else (ne (symbol_ref "TARGET_PA_20") (const_int 0))
7224
        (const_int 20)
7225
        (const_int 24)))])
7226
 
7227
;;; 64-bit code, 32-bit relative branch table.
7228
(define_insn "casesi64p"
7229
  [(set (pc) (mem:DI (plus:DI
7230
                       (mult:DI (match_operand:DI 0 "register_operand" "r")
7231
                                (const_int 8))
7232
                       (label_ref (match_operand 1 "" "")))))
7233
   (clobber (match_scratch:DI 2 "=&r"))
7234
   (clobber (match_scratch:DI 3 "=&r"))]
7235
  ""
7236
  "mfia %2\;ldo %l1+4-.(%2),%2\;ldw,s %0(%2),%3\;extrd,s %3,63,32,%3\;\
7237
add,l %2,%3,%3\;bv,n %%r0(%3)"
7238
  [(set_attr "type" "multi")
7239
   (set_attr "length" "24")])
7240
 
7241
 
7242
;; Call patterns.
7243
;;- jump to subroutine
7244
 
7245
(define_expand "call"
7246
  [(parallel [(call (match_operand:SI 0 "" "")
7247
                    (match_operand 1 "" ""))
7248
              (clobber (reg:SI 2))])]
7249
  ""
7250
  "
7251
{
7252
  rtx op, call_insn;
7253
  rtx nb = operands[1];
7254
 
7255
  if (TARGET_PORTABLE_RUNTIME)
7256
    op = force_reg (SImode, XEXP (operands[0], 0));
7257
  else
7258
    op = XEXP (operands[0], 0);
7259
 
7260
  if (TARGET_64BIT)
7261
    {
7262
      if (!virtuals_instantiated)
7263
        emit_move_insn (arg_pointer_rtx,
7264
                        gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
7265
                                      GEN_INT (64)));
7266
      else
7267
        {
7268
          /* The loop pass can generate new libcalls after the virtual
7269
             registers are instantiated when fpregs are disabled because
7270
             the only method that we have for doing DImode multiplication
7271
             is with a libcall.  This could be trouble if we haven't
7272
             allocated enough space for the outgoing arguments.  */
7273
          gcc_assert (INTVAL (nb) <= crtl->outgoing_args_size);
7274
 
7275
          emit_move_insn (arg_pointer_rtx,
7276
                          gen_rtx_PLUS (word_mode, stack_pointer_rtx,
7277
                                        GEN_INT (STACK_POINTER_OFFSET + 64)));
7278
        }
7279
    }
7280
 
7281
  /* Use two different patterns for calls to explicitly named functions
7282
     and calls through function pointers.  This is necessary as these two
7283
     types of calls use different calling conventions, and CSE might try
7284
     to change the named call into an indirect call in some cases (using
7285
     two patterns keeps CSE from performing this optimization).
7286
 
7287
     We now use even more call patterns as there was a subtle bug in
7288
     attempting to restore the pic register after a call using a simple
7289
     move insn.  During reload, a instruction involving a pseudo register
7290
     with no explicit dependence on the PIC register can be converted
7291
     to an equivalent load from memory using the PIC register.  If we
7292
     emit a simple move to restore the PIC register in the initial rtl
7293
     generation, then it can potentially be repositioned during scheduling.
7294
     and an instruction that eventually uses the PIC register may end up
7295
     between the call and the PIC register restore.
7296
 
7297
     This only worked because there is a post call group of instructions
7298
     that are scheduled with the call.  These instructions are included
7299
     in the same basic block as the call.  However, calls can throw in
7300
     C++ code and a basic block has to terminate at the call if the call
7301
     can throw.  This results in the PIC register restore being scheduled
7302
     independently from the call.  So, we now hide the save and restore
7303
     of the PIC register in the call pattern until after reload.  Then,
7304
     we split the moves out.  A small side benefit is that we now don't
7305
     need to have a use of the PIC register in the return pattern and
7306
     the final save/restore operation is not needed.
7307
 
7308
     I elected to just use register %r4 in the PIC patterns instead
7309
     of trying to force hppa_pic_save_rtx () to a callee saved register.
7310
     This might have required a new register class and constraint.  It
7311
     was also simpler to just handle the restore from a register than a
7312
     generic pseudo.  */
7313
  if (TARGET_64BIT)
7314
    {
7315
      rtx r4 = gen_rtx_REG (word_mode, 4);
7316
      if (GET_CODE (op) == SYMBOL_REF)
7317
        call_insn = emit_call_insn (gen_call_symref_64bit (op, nb, r4));
7318
      else
7319
        {
7320
          op = force_reg (word_mode, op);
7321
          call_insn = emit_call_insn (gen_call_reg_64bit (op, nb, r4));
7322
        }
7323
    }
7324
  else
7325
    {
7326
      if (GET_CODE (op) == SYMBOL_REF)
7327
        {
7328
          if (flag_pic)
7329
            {
7330
              rtx r4 = gen_rtx_REG (word_mode, 4);
7331
              call_insn = emit_call_insn (gen_call_symref_pic (op, nb, r4));
7332
            }
7333
          else
7334
            call_insn = emit_call_insn (gen_call_symref (op, nb));
7335
        }
7336
      else
7337
        {
7338
          rtx tmpreg = gen_rtx_REG (word_mode, 22);
7339
          emit_move_insn (tmpreg, force_reg (word_mode, op));
7340
          if (flag_pic)
7341
            {
7342
              rtx r4 = gen_rtx_REG (word_mode, 4);
7343
              call_insn = emit_call_insn (gen_call_reg_pic (nb, r4));
7344
            }
7345
          else
7346
            call_insn = emit_call_insn (gen_call_reg (nb));
7347
        }
7348
    }
7349
 
7350
  DONE;
7351
}")
7352
 
7353
;; We use function calls to set the attribute length of calls and millicode
7354
;; calls.  This is necessary because of the large variety of call sequences.
7355
;; Implementing the calculation in rtl is difficult as well as ugly.  As
7356
;; we need the same calculation in several places, maintenance becomes a
7357
;; nightmare.
7358
;;
7359
;; However, this has a subtle impact on branch shortening.  When the
7360
;; expression used to set the length attribute of an instruction depends
7361
;; on a relative address (e.g., pc or a branch address), genattrtab
7362
;; notes that the insn's length is variable, and attempts to determine a
7363
;; worst-case default length and code to compute an insn's current length.
7364
 
7365
;; The use of a function call hides the variable dependence of our calls
7366
;; and millicode calls.  The result is genattrtab doesn't treat the operation
7367
;; as variable and it only generates code for the default case using our
7368
;; function call.  Because of this, calls and millicode calls have a fixed
7369
;; length in the branch shortening pass, and some branches will use a longer
7370
;; code sequence than necessary.  However, the length of any given call
7371
;; will still reflect its final code location and it may be shorter than
7372
;; the initial length estimate.
7373
 
7374
;; It's possible to trick genattrtab by adding an expression involving `pc'
7375
;; in the set.  However, when genattrtab hits a function call in its attempt
7376
;; to compute the default length, it marks the result as unknown and sets
7377
;; the default result to MAX_INT ;-(  One possible fix that would allow
7378
;; calls to participate in branch shortening would be to make the call to
7379
;; insn_default_length a target option.  Then, we could massage unknown
7380
;; results.  Another fix might be to change genattrtab so that it just does
7381
;; the call in the variable case as it already does for the fixed case.
7382
 
7383
(define_insn "call_symref"
7384
  [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7385
         (match_operand 1 "" "i"))
7386
   (clobber (reg:SI 1))
7387
   (clobber (reg:SI 2))
7388
   (use (const_int 0))]
7389
  "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7390
  "*
7391
{
7392
  output_arg_descriptor (insn);
7393
  return output_call (insn, operands[0], 0);
7394
}"
7395
  [(set_attr "type" "call")
7396
   (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
7397
 
7398
(define_insn "call_symref_pic"
7399
  [(set (match_operand:SI 2 "register_operand" "=&r") (reg:SI 19))
7400
   (call (mem:SI (match_operand 0 "call_operand_address" ""))
7401
         (match_operand 1 "" "i"))
7402
   (clobber (reg:SI 1))
7403
   (clobber (reg:SI 2))
7404
   (use (match_dup 2))
7405
   (use (reg:SI 19))
7406
   (use (const_int 0))]
7407
  "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7408
  "#")
7409
 
7410
;; Split out the PIC register save and restore after reload.  As the
7411
;; split is done after reload, there are some situations in which we
7412
;; unnecessarily save and restore %r4.  This happens when there is a
7413
;; single call and the PIC register is not used after the call.
7414
;;
7415
;; The split has to be done since call_from_call_insn () can't handle
7416
;; the pattern as is.  Noreturn calls are special because they have to
7417
;; terminate the basic block.  The split has to contain more than one
7418
;; insn.
7419
(define_split
7420
  [(parallel [(set (match_operand:SI 2 "register_operand" "") (reg:SI 19))
7421
              (call (mem:SI (match_operand 0 "call_operand_address" ""))
7422
                    (match_operand 1 "" ""))
7423
              (clobber (reg:SI 1))
7424
              (clobber (reg:SI 2))
7425
              (use (match_dup 2))
7426
              (use (reg:SI 19))
7427
              (use (const_int 0))])]
7428
  "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT && reload_completed
7429
   && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7430
  [(set (match_dup 2) (reg:SI 19))
7431
   (parallel [(call (mem:SI (match_dup 0))
7432
                    (match_dup 1))
7433
              (clobber (reg:SI 1))
7434
              (clobber (reg:SI 2))
7435
              (use (reg:SI 19))
7436
              (use (const_int 0))])]
7437
  "")
7438
 
7439
(define_split
7440
  [(parallel [(set (match_operand:SI 2 "register_operand" "") (reg:SI 19))
7441
              (call (mem:SI (match_operand 0 "call_operand_address" ""))
7442
                    (match_operand 1 "" ""))
7443
              (clobber (reg:SI 1))
7444
              (clobber (reg:SI 2))
7445
              (use (match_dup 2))
7446
              (use (reg:SI 19))
7447
              (use (const_int 0))])]
7448
  "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT && reload_completed"
7449
  [(set (match_dup 2) (reg:SI 19))
7450
   (parallel [(call (mem:SI (match_dup 0))
7451
                    (match_dup 1))
7452
              (clobber (reg:SI 1))
7453
              (clobber (reg:SI 2))
7454
              (use (reg:SI 19))
7455
              (use (const_int 0))])
7456
   (set (reg:SI 19) (match_dup 2))]
7457
  "")
7458
 
7459
(define_insn "*call_symref_pic_post_reload"
7460
  [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7461
         (match_operand 1 "" "i"))
7462
   (clobber (reg:SI 1))
7463
   (clobber (reg:SI 2))
7464
   (use (reg:SI 19))
7465
   (use (const_int 0))]
7466
  "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7467
  "*
7468
{
7469
  output_arg_descriptor (insn);
7470
  return output_call (insn, operands[0], 0);
7471
}"
7472
  [(set_attr "type" "call")
7473
   (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
7474
 
7475
;; This pattern is split if it is necessary to save and restore the
7476
;; PIC register.
7477
(define_insn "call_symref_64bit"
7478
  [(set (match_operand:DI 2 "register_operand" "=&r") (reg:DI 27))
7479
   (call (mem:SI (match_operand 0 "call_operand_address" ""))
7480
         (match_operand 1 "" "i"))
7481
   (clobber (reg:DI 1))
7482
   (clobber (reg:DI 2))
7483
   (use (match_dup 2))
7484
   (use (reg:DI 27))
7485
   (use (reg:DI 29))
7486
   (use (const_int 0))]
7487
  "TARGET_64BIT"
7488
  "#")
7489
 
7490
;; Split out the PIC register save and restore after reload.  As the
7491
;; split is done after reload, there are some situations in which we
7492
;; unnecessarily save and restore %r4.  This happens when there is a
7493
;; single call and the PIC register is not used after the call.
7494
;;
7495
;; The split has to be done since call_from_call_insn () can't handle
7496
;; the pattern as is.  Noreturn calls are special because they have to
7497
;; terminate the basic block.  The split has to contain more than one
7498
;; insn.
7499
(define_split
7500
  [(parallel [(set (match_operand:DI 2 "register_operand" "") (reg:DI 27))
7501
              (call (mem:SI (match_operand 0 "call_operand_address" ""))
7502
                    (match_operand 1 "" ""))
7503
              (clobber (reg:DI 1))
7504
              (clobber (reg:DI 2))
7505
              (use (match_dup 2))
7506
              (use (reg:DI 27))
7507
              (use (reg:DI 29))
7508
              (use (const_int 0))])]
7509
  "TARGET_64BIT && reload_completed
7510
   && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7511
  [(set (match_dup 2) (reg:DI 27))
7512
   (parallel [(call (mem:SI (match_dup 0))
7513
                    (match_dup 1))
7514
              (clobber (reg:DI 1))
7515
              (clobber (reg:DI 2))
7516
              (use (reg:DI 27))
7517
              (use (reg:DI 29))
7518
              (use (const_int 0))])]
7519
  "")
7520
 
7521
(define_split
7522
  [(parallel [(set (match_operand:DI 2 "register_operand" "") (reg:DI 27))
7523
              (call (mem:SI (match_operand 0 "call_operand_address" ""))
7524
                    (match_operand 1 "" ""))
7525
              (clobber (reg:DI 1))
7526
              (clobber (reg:DI 2))
7527
              (use (match_dup 2))
7528
              (use (reg:DI 27))
7529
              (use (reg:DI 29))
7530
              (use (const_int 0))])]
7531
  "TARGET_64BIT && reload_completed"
7532
  [(set (match_dup 2) (reg:DI 27))
7533
   (parallel [(call (mem:SI (match_dup 0))
7534
                    (match_dup 1))
7535
              (clobber (reg:DI 1))
7536
              (clobber (reg:DI 2))
7537
              (use (reg:DI 27))
7538
              (use (reg:DI 29))
7539
              (use (const_int 0))])
7540
   (set (reg:DI 27) (match_dup 2))]
7541
  "")
7542
 
7543
(define_insn "*call_symref_64bit_post_reload"
7544
  [(call (mem:SI (match_operand 0 "call_operand_address" ""))
7545
         (match_operand 1 "" "i"))
7546
   (clobber (reg:DI 1))
7547
   (clobber (reg:DI 2))
7548
   (use (reg:DI 27))
7549
   (use (reg:DI 29))
7550
   (use (const_int 0))]
7551
  "TARGET_64BIT"
7552
  "*
7553
{
7554
  output_arg_descriptor (insn);
7555
  return output_call (insn, operands[0], 0);
7556
}"
7557
  [(set_attr "type" "call")
7558
   (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
7559
 
7560
(define_insn "call_reg"
7561
  [(call (mem:SI (reg:SI 22))
7562
         (match_operand 0 "" "i"))
7563
   (clobber (reg:SI 1))
7564
   (clobber (reg:SI 2))
7565
   (use (const_int 1))]
7566
  "!TARGET_64BIT"
7567
  "*
7568
{
7569
  return output_indirect_call (insn, gen_rtx_REG (word_mode, 22));
7570
}"
7571
  [(set_attr "type" "dyncall")
7572
   (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
7573
 
7574
;; This pattern is split if it is necessary to save and restore the
7575
;; PIC register.
7576
(define_insn "call_reg_pic"
7577
  [(set (match_operand:SI 1 "register_operand" "=&r") (reg:SI 19))
7578
   (call (mem:SI (reg:SI 22))
7579
         (match_operand 0 "" "i"))
7580
   (clobber (reg:SI 1))
7581
   (clobber (reg:SI 2))
7582
   (use (match_dup 1))
7583
   (use (reg:SI 19))
7584
   (use (const_int 1))]
7585
  "!TARGET_64BIT"
7586
  "#")
7587
 
7588
;; Split out the PIC register save and restore after reload.  As the
7589
;; split is done after reload, there are some situations in which we
7590
;; unnecessarily save and restore %r4.  This happens when there is a
7591
;; single call and the PIC register is not used after the call.
7592
;;
7593
;; The split has to be done since call_from_call_insn () can't handle
7594
;; the pattern as is.  Noreturn calls are special because they have to
7595
;; terminate the basic block.  The split has to contain more than one
7596
;; insn.
7597
(define_split
7598
  [(parallel [(set (match_operand:SI 1 "register_operand" "") (reg:SI 19))
7599
              (call (mem:SI (reg:SI 22))
7600
                    (match_operand 0 "" ""))
7601
              (clobber (reg:SI 1))
7602
              (clobber (reg:SI 2))
7603
              (use (match_dup 1))
7604
              (use (reg:SI 19))
7605
              (use (const_int 1))])]
7606
  "!TARGET_64BIT && reload_completed
7607
   && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7608
  [(set (match_dup 1) (reg:SI 19))
7609
   (parallel [(call (mem:SI (reg:SI 22))
7610
                    (match_dup 0))
7611
              (clobber (reg:SI 1))
7612
              (clobber (reg:SI 2))
7613
              (use (reg:SI 19))
7614
              (use (const_int 1))])]
7615
  "")
7616
 
7617
(define_split
7618
  [(parallel [(set (match_operand:SI 1 "register_operand" "") (reg:SI 19))
7619
              (call (mem:SI (reg:SI 22))
7620
                    (match_operand 0 "" ""))
7621
              (clobber (reg:SI 1))
7622
              (clobber (reg:SI 2))
7623
              (use (match_dup 1))
7624
              (use (reg:SI 19))
7625
              (use (const_int 1))])]
7626
  "!TARGET_64BIT && reload_completed"
7627
  [(set (match_dup 1) (reg:SI 19))
7628
   (parallel [(call (mem:SI (reg:SI 22))
7629
                    (match_dup 0))
7630
              (clobber (reg:SI 1))
7631
              (clobber (reg:SI 2))
7632
              (use (reg:SI 19))
7633
              (use (const_int 1))])
7634
   (set (reg:SI 19) (match_dup 1))]
7635
  "")
7636
 
7637
(define_insn "*call_reg_pic_post_reload"
7638
  [(call (mem:SI (reg:SI 22))
7639
         (match_operand 0 "" "i"))
7640
   (clobber (reg:SI 1))
7641
   (clobber (reg:SI 2))
7642
   (use (reg:SI 19))
7643
   (use (const_int 1))]
7644
  "!TARGET_64BIT"
7645
  "*
7646
{
7647
  return output_indirect_call (insn, gen_rtx_REG (word_mode, 22));
7648
}"
7649
  [(set_attr "type" "dyncall")
7650
   (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
7651
 
7652
;; This pattern is split if it is necessary to save and restore the
7653
;; PIC register.
7654
(define_insn "call_reg_64bit"
7655
  [(set (match_operand:DI 2 "register_operand" "=&r") (reg:DI 27))
7656
   (call (mem:SI (match_operand:DI 0 "register_operand" "r"))
7657
         (match_operand 1 "" "i"))
7658
   (clobber (reg:DI 1))
7659
   (clobber (reg:DI 2))
7660
   (use (match_dup 2))
7661
   (use (reg:DI 27))
7662
   (use (reg:DI 29))
7663
   (use (const_int 1))]
7664
  "TARGET_64BIT"
7665
  "#")
7666
 
7667
;; Split out the PIC register save and restore after reload.  As the
7668
;; split is done after reload, there are some situations in which we
7669
;; unnecessarily save and restore %r4.  This happens when there is a
7670
;; single call and the PIC register is not used after the call.
7671
;;
7672
;; The split has to be done since call_from_call_insn () can't handle
7673
;; the pattern as is.  Noreturn calls are special because they have to
7674
;; terminate the basic block.  The split has to contain more than one
7675
;; insn.
7676
(define_split
7677
  [(parallel [(set (match_operand:DI 2 "register_operand" "") (reg:DI 27))
7678
              (call (mem:SI (match_operand 0 "register_operand" ""))
7679
                    (match_operand 1 "" ""))
7680
              (clobber (reg:DI 1))
7681
              (clobber (reg:DI 2))
7682
              (use (match_dup 2))
7683
              (use (reg:DI 27))
7684
              (use (reg:DI 29))
7685
              (use (const_int 1))])]
7686
  "TARGET_64BIT && reload_completed
7687
   && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7688
  [(set (match_dup 2) (reg:DI 27))
7689
   (parallel [(call (mem:SI (match_dup 0))
7690
                    (match_dup 1))
7691
              (clobber (reg:DI 1))
7692
              (clobber (reg:DI 2))
7693
              (use (reg:DI 27))
7694
              (use (reg:DI 29))
7695
              (use (const_int 1))])]
7696
  "")
7697
 
7698
(define_split
7699
  [(parallel [(set (match_operand:DI 2 "register_operand" "") (reg:DI 27))
7700
              (call (mem:SI (match_operand 0 "register_operand" ""))
7701
                    (match_operand 1 "" ""))
7702
              (clobber (reg:DI 1))
7703
              (clobber (reg:DI 2))
7704
              (use (match_dup 2))
7705
              (use (reg:DI 27))
7706
              (use (reg:DI 29))
7707
              (use (const_int 1))])]
7708
  "TARGET_64BIT && reload_completed"
7709
  [(set (match_dup 2) (reg:DI 27))
7710
   (parallel [(call (mem:SI (match_dup 0))
7711
                    (match_dup 1))
7712
              (clobber (reg:DI 1))
7713
              (clobber (reg:DI 2))
7714
              (use (reg:DI 27))
7715
              (use (reg:DI 29))
7716
              (use (const_int 1))])
7717
   (set (reg:DI 27) (match_dup 2))]
7718
  "")
7719
 
7720
(define_insn "*call_reg_64bit_post_reload"
7721
  [(call (mem:SI (match_operand:DI 0 "register_operand" "r"))
7722
         (match_operand 1 "" "i"))
7723
   (clobber (reg:DI 1))
7724
   (clobber (reg:DI 2))
7725
   (use (reg:DI 27))
7726
   (use (reg:DI 29))
7727
   (use (const_int 1))]
7728
  "TARGET_64BIT"
7729
  "*
7730
{
7731
  return output_indirect_call (insn, operands[0]);
7732
}"
7733
  [(set_attr "type" "dyncall")
7734
   (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
7735
 
7736
(define_expand "call_value"
7737
  [(parallel [(set (match_operand 0 "" "")
7738
                   (call (match_operand:SI 1 "" "")
7739
                         (match_operand 2 "" "")))
7740
              (clobber (reg:SI 2))])]
7741
  ""
7742
  "
7743
{
7744
  rtx op, call_insn;
7745
  rtx dst = operands[0];
7746
  rtx nb = operands[2];
7747
 
7748
  if (TARGET_PORTABLE_RUNTIME)
7749
    op = force_reg (SImode, XEXP (operands[1], 0));
7750
  else
7751
    op = XEXP (operands[1], 0);
7752
 
7753
  if (TARGET_64BIT)
7754
    {
7755
      if (!virtuals_instantiated)
7756
        emit_move_insn (arg_pointer_rtx,
7757
                        gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
7758
                                      GEN_INT (64)));
7759
      else
7760
        {
7761
          /* The loop pass can generate new libcalls after the virtual
7762
             registers are instantiated when fpregs are disabled because
7763
             the only method that we have for doing DImode multiplication
7764
             is with a libcall.  This could be trouble if we haven't
7765
             allocated enough space for the outgoing arguments.  */
7766
          gcc_assert (INTVAL (nb) <= crtl->outgoing_args_size);
7767
 
7768
          emit_move_insn (arg_pointer_rtx,
7769
                          gen_rtx_PLUS (word_mode, stack_pointer_rtx,
7770
                                        GEN_INT (STACK_POINTER_OFFSET + 64)));
7771
        }
7772
    }
7773
 
7774
  /* Use two different patterns for calls to explicitly named functions
7775
     and calls through function pointers.  This is necessary as these two
7776
     types of calls use different calling conventions, and CSE might try
7777
     to change the named call into an indirect call in some cases (using
7778
     two patterns keeps CSE from performing this optimization).
7779
 
7780
     We now use even more call patterns as there was a subtle bug in
7781
     attempting to restore the pic register after a call using a simple
7782
     move insn.  During reload, a instruction involving a pseudo register
7783
     with no explicit dependence on the PIC register can be converted
7784
     to an equivalent load from memory using the PIC register.  If we
7785
     emit a simple move to restore the PIC register in the initial rtl
7786
     generation, then it can potentially be repositioned during scheduling.
7787
     and an instruction that eventually uses the PIC register may end up
7788
     between the call and the PIC register restore.
7789
 
7790
     This only worked because there is a post call group of instructions
7791
     that are scheduled with the call.  These instructions are included
7792
     in the same basic block as the call.  However, calls can throw in
7793
     C++ code and a basic block has to terminate at the call if the call
7794
     can throw.  This results in the PIC register restore being scheduled
7795
     independently from the call.  So, we now hide the save and restore
7796
     of the PIC register in the call pattern until after reload.  Then,
7797
     we split the moves out.  A small side benefit is that we now don't
7798
     need to have a use of the PIC register in the return pattern and
7799
     the final save/restore operation is not needed.
7800
 
7801
     I elected to just use register %r4 in the PIC patterns instead
7802
     of trying to force hppa_pic_save_rtx () to a callee saved register.
7803
     This might have required a new register class and constraint.  It
7804
     was also simpler to just handle the restore from a register than a
7805
     generic pseudo.  */
7806
  if (TARGET_64BIT)
7807
    {
7808
      rtx r4 = gen_rtx_REG (word_mode, 4);
7809
      if (GET_CODE (op) == SYMBOL_REF)
7810
        call_insn
7811
          = emit_call_insn (gen_call_val_symref_64bit (dst, op, nb, r4));
7812
      else
7813
        {
7814
          op = force_reg (word_mode, op);
7815
          call_insn
7816
            = emit_call_insn (gen_call_val_reg_64bit (dst, op, nb, r4));
7817
        }
7818
    }
7819
  else
7820
    {
7821
      if (GET_CODE (op) == SYMBOL_REF)
7822
        {
7823
          if (flag_pic)
7824
            {
7825
              rtx r4 = gen_rtx_REG (word_mode, 4);
7826
              call_insn
7827
                = emit_call_insn (gen_call_val_symref_pic (dst, op, nb, r4));
7828
            }
7829
          else
7830
            call_insn = emit_call_insn (gen_call_val_symref (dst, op, nb));
7831
        }
7832
      else
7833
        {
7834
          rtx tmpreg = gen_rtx_REG (word_mode, 22);
7835
          emit_move_insn (tmpreg, force_reg (word_mode, op));
7836
          if (flag_pic)
7837
            {
7838
              rtx r4 = gen_rtx_REG (word_mode, 4);
7839
              call_insn = emit_call_insn (gen_call_val_reg_pic (dst, nb, r4));
7840
            }
7841
          else
7842
            call_insn = emit_call_insn (gen_call_val_reg (dst, nb));
7843
        }
7844
    }
7845
 
7846
  DONE;
7847
}")
7848
 
7849
(define_insn "call_val_symref"
7850
  [(set (match_operand 0 "" "")
7851
        (call (mem:SI (match_operand 1 "call_operand_address" ""))
7852
              (match_operand 2 "" "i")))
7853
   (clobber (reg:SI 1))
7854
   (clobber (reg:SI 2))
7855
   (use (const_int 0))]
7856
  "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7857
  "*
7858
{
7859
  output_arg_descriptor (insn);
7860
  return output_call (insn, operands[1], 0);
7861
}"
7862
  [(set_attr "type" "call")
7863
   (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
7864
 
7865
(define_insn "call_val_symref_pic"
7866
  [(set (match_operand:SI 3 "register_operand" "=&r") (reg:SI 19))
7867
   (set (match_operand 0 "" "")
7868
        (call (mem:SI (match_operand 1 "call_operand_address" ""))
7869
              (match_operand 2 "" "i")))
7870
   (clobber (reg:SI 1))
7871
   (clobber (reg:SI 2))
7872
   (use (match_dup 3))
7873
   (use (reg:SI 19))
7874
   (use (const_int 0))]
7875
  "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7876
  "#")
7877
 
7878
;; Split out the PIC register save and restore after reload.  As the
7879
;; split is done after reload, there are some situations in which we
7880
;; unnecessarily save and restore %r4.  This happens when there is a
7881
;; single call and the PIC register is not used after the call.
7882
;;
7883
;; The split has to be done since call_from_call_insn () can't handle
7884
;; the pattern as is.  Noreturn calls are special because they have to
7885
;; terminate the basic block.  The split has to contain more than one
7886
;; insn.
7887
(define_split
7888
  [(parallel [(set (match_operand:SI 3 "register_operand" "") (reg:SI 19))
7889
              (set (match_operand 0 "" "")
7890
              (call (mem:SI (match_operand 1 "call_operand_address" ""))
7891
                    (match_operand 2 "" "")))
7892
              (clobber (reg:SI 1))
7893
              (clobber (reg:SI 2))
7894
              (use (match_dup 3))
7895
              (use (reg:SI 19))
7896
              (use (const_int 0))])]
7897
  "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT && reload_completed
7898
   && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7899
  [(set (match_dup 3) (reg:SI 19))
7900
   (parallel [(set (match_dup 0)
7901
              (call (mem:SI (match_dup 1))
7902
                    (match_dup 2)))
7903
              (clobber (reg:SI 1))
7904
              (clobber (reg:SI 2))
7905
              (use (reg:SI 19))
7906
              (use (const_int 0))])]
7907
  "")
7908
 
7909
(define_split
7910
  [(parallel [(set (match_operand:SI 3 "register_operand" "") (reg:SI 19))
7911
              (set (match_operand 0 "" "")
7912
              (call (mem:SI (match_operand 1 "call_operand_address" ""))
7913
                    (match_operand 2 "" "")))
7914
              (clobber (reg:SI 1))
7915
              (clobber (reg:SI 2))
7916
              (use (match_dup 3))
7917
              (use (reg:SI 19))
7918
              (use (const_int 0))])]
7919
  "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT && reload_completed"
7920
  [(set (match_dup 3) (reg:SI 19))
7921
   (parallel [(set (match_dup 0)
7922
              (call (mem:SI (match_dup 1))
7923
                    (match_dup 2)))
7924
              (clobber (reg:SI 1))
7925
              (clobber (reg:SI 2))
7926
              (use (reg:SI 19))
7927
              (use (const_int 0))])
7928
   (set (reg:SI 19) (match_dup 3))]
7929
  "")
7930
 
7931
(define_insn "*call_val_symref_pic_post_reload"
7932
  [(set (match_operand 0 "" "")
7933
        (call (mem:SI (match_operand 1 "call_operand_address" ""))
7934
              (match_operand 2 "" "i")))
7935
   (clobber (reg:SI 1))
7936
   (clobber (reg:SI 2))
7937
   (use (reg:SI 19))
7938
   (use (const_int 0))]
7939
  "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
7940
  "*
7941
{
7942
  output_arg_descriptor (insn);
7943
  return output_call (insn, operands[1], 0);
7944
}"
7945
  [(set_attr "type" "call")
7946
   (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
7947
 
7948
;; This pattern is split if it is necessary to save and restore the
7949
;; PIC register.
7950
(define_insn "call_val_symref_64bit"
7951
  [(set (match_operand:DI 3 "register_operand" "=&r") (reg:DI 27))
7952
   (set (match_operand 0 "" "")
7953
        (call (mem:SI (match_operand 1 "call_operand_address" ""))
7954
              (match_operand 2 "" "i")))
7955
   (clobber (reg:DI 1))
7956
   (clobber (reg:DI 2))
7957
   (use (match_dup 3))
7958
   (use (reg:DI 27))
7959
   (use (reg:DI 29))
7960
   (use (const_int 0))]
7961
  "TARGET_64BIT"
7962
  "#")
7963
 
7964
;; Split out the PIC register save and restore after reload.  As the
7965
;; split is done after reload, there are some situations in which we
7966
;; unnecessarily save and restore %r4.  This happens when there is a
7967
;; single call and the PIC register is not used after the call.
7968
;;
7969
;; The split has to be done since call_from_call_insn () can't handle
7970
;; the pattern as is.  Noreturn calls are special because they have to
7971
;; terminate the basic block.  The split has to contain more than one
7972
;; insn.
7973
(define_split
7974
  [(parallel [(set (match_operand:DI 3 "register_operand" "") (reg:DI 27))
7975
              (set (match_operand 0 "" "")
7976
              (call (mem:SI (match_operand 1 "call_operand_address" ""))
7977
                    (match_operand 2 "" "")))
7978
              (clobber (reg:DI 1))
7979
              (clobber (reg:DI 2))
7980
              (use (match_dup 3))
7981
              (use (reg:DI 27))
7982
              (use (reg:DI 29))
7983
              (use (const_int 0))])]
7984
  "TARGET_64BIT && reload_completed
7985
   && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
7986
  [(set (match_dup 3) (reg:DI 27))
7987
   (parallel [(set (match_dup 0)
7988
              (call (mem:SI (match_dup 1))
7989
                    (match_dup 2)))
7990
              (clobber (reg:DI 1))
7991
              (clobber (reg:DI 2))
7992
              (use (reg:DI 27))
7993
              (use (reg:DI 29))
7994
              (use (const_int 0))])]
7995
  "")
7996
 
7997
(define_split
7998
  [(parallel [(set (match_operand:DI 3 "register_operand" "") (reg:DI 27))
7999
              (set (match_operand 0 "" "")
8000
              (call (mem:SI (match_operand 1 "call_operand_address" ""))
8001
                    (match_operand 2 "" "")))
8002
              (clobber (reg:DI 1))
8003
              (clobber (reg:DI 2))
8004
              (use (match_dup 3))
8005
              (use (reg:DI 27))
8006
              (use (reg:DI 29))
8007
              (use (const_int 0))])]
8008
  "TARGET_64BIT && reload_completed"
8009
  [(set (match_dup 3) (reg:DI 27))
8010
   (parallel [(set (match_dup 0)
8011
              (call (mem:SI (match_dup 1))
8012
                    (match_dup 2)))
8013
              (clobber (reg:DI 1))
8014
              (clobber (reg:DI 2))
8015
              (use (reg:DI 27))
8016
              (use (reg:DI 29))
8017
              (use (const_int 0))])
8018
   (set (reg:DI 27) (match_dup 3))]
8019
  "")
8020
 
8021
(define_insn "*call_val_symref_64bit_post_reload"
8022
  [(set (match_operand 0 "" "")
8023
        (call (mem:SI (match_operand 1 "call_operand_address" ""))
8024
              (match_operand 2 "" "i")))
8025
   (clobber (reg:DI 1))
8026
   (clobber (reg:DI 2))
8027
   (use (reg:DI 27))
8028
   (use (reg:DI 29))
8029
   (use (const_int 0))]
8030
  "TARGET_64BIT"
8031
  "*
8032
{
8033
  output_arg_descriptor (insn);
8034
  return output_call (insn, operands[1], 0);
8035
}"
8036
  [(set_attr "type" "call")
8037
   (set (attr "length") (symbol_ref "attr_length_call (insn, 0)"))])
8038
 
8039
(define_insn "call_val_reg"
8040
  [(set (match_operand 0 "" "")
8041
        (call (mem:SI (reg:SI 22))
8042
              (match_operand 1 "" "i")))
8043
   (clobber (reg:SI 1))
8044
   (clobber (reg:SI 2))
8045
   (use (const_int 1))]
8046
  "!TARGET_64BIT"
8047
  "*
8048
{
8049
  return output_indirect_call (insn, gen_rtx_REG (word_mode, 22));
8050
}"
8051
  [(set_attr "type" "dyncall")
8052
   (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
8053
 
8054
;; This pattern is split if it is necessary to save and restore the
8055
;; PIC register.
8056
(define_insn "call_val_reg_pic"
8057
  [(set (match_operand:SI 2 "register_operand" "=&r") (reg:SI 19))
8058
   (set (match_operand 0 "" "")
8059
        (call (mem:SI (reg:SI 22))
8060
              (match_operand 1 "" "i")))
8061
   (clobber (reg:SI 1))
8062
   (clobber (reg:SI 2))
8063
   (use (match_dup 2))
8064
   (use (reg:SI 19))
8065
   (use (const_int 1))]
8066
  "!TARGET_64BIT"
8067
  "#")
8068
 
8069
;; Split out the PIC register save and restore after reload.  As the
8070
;; split is done after reload, there are some situations in which we
8071
;; unnecessarily save and restore %r4.  This happens when there is a
8072
;; single call and the PIC register is not used after the call.
8073
;;
8074
;; The split has to be done since call_from_call_insn () can't handle
8075
;; the pattern as is.  Noreturn calls are special because they have to
8076
;; terminate the basic block.  The split has to contain more than one
8077
;; insn.
8078
(define_split
8079
  [(parallel [(set (match_operand:SI 2 "register_operand" "") (reg:SI 19))
8080
              (set (match_operand 0 "" "")
8081
                   (call (mem:SI (reg:SI 22))
8082
                         (match_operand 1 "" "")))
8083
              (clobber (reg:SI 1))
8084
              (clobber (reg:SI 2))
8085
              (use (match_dup 2))
8086
              (use (reg:SI 19))
8087
              (use (const_int 1))])]
8088
  "!TARGET_64BIT && reload_completed
8089
   && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
8090
  [(set (match_dup 2) (reg:SI 19))
8091
   (parallel [(set (match_dup 0)
8092
                   (call (mem:SI (reg:SI 22))
8093
                         (match_dup 1)))
8094
              (clobber (reg:SI 1))
8095
              (clobber (reg:SI 2))
8096
              (use (reg:SI 19))
8097
              (use (const_int 1))])]
8098
  "")
8099
 
8100
(define_split
8101
  [(parallel [(set (match_operand:SI 2 "register_operand" "") (reg:SI 19))
8102
              (set (match_operand 0 "" "")
8103
                   (call (mem:SI (reg:SI 22))
8104
                         (match_operand 1 "" "")))
8105
              (clobber (reg:SI 1))
8106
              (clobber (reg:SI 2))
8107
              (use (match_dup 2))
8108
              (use (reg:SI 19))
8109
              (use (const_int 1))])]
8110
  "!TARGET_64BIT && reload_completed"
8111
  [(set (match_dup 2) (reg:SI 19))
8112
   (parallel [(set (match_dup 0)
8113
                   (call (mem:SI (reg:SI 22))
8114
                         (match_dup 1)))
8115
              (clobber (reg:SI 1))
8116
              (clobber (reg:SI 2))
8117
              (use (reg:SI 19))
8118
              (use (const_int 1))])
8119
   (set (reg:SI 19) (match_dup 2))]
8120
  "")
8121
 
8122
(define_insn "*call_val_reg_pic_post_reload"
8123
  [(set (match_operand 0 "" "")
8124
        (call (mem:SI (reg:SI 22))
8125
              (match_operand 1 "" "i")))
8126
   (clobber (reg:SI 1))
8127
   (clobber (reg:SI 2))
8128
   (use (reg:SI 19))
8129
   (use (const_int 1))]
8130
  "!TARGET_64BIT"
8131
  "*
8132
{
8133
  return output_indirect_call (insn, gen_rtx_REG (word_mode, 22));
8134
}"
8135
  [(set_attr "type" "dyncall")
8136
   (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
8137
 
8138
;; This pattern is split if it is necessary to save and restore the
8139
;; PIC register.
8140
(define_insn "call_val_reg_64bit"
8141
  [(set (match_operand:DI 3 "register_operand" "=&r") (reg:DI 27))
8142
   (set (match_operand 0 "" "")
8143
        (call (mem:SI (match_operand:DI 1 "register_operand" "r"))
8144
              (match_operand 2 "" "i")))
8145
   (clobber (reg:DI 1))
8146
   (clobber (reg:DI 2))
8147
   (use (match_dup 3))
8148
   (use (reg:DI 27))
8149
   (use (reg:DI 29))
8150
   (use (const_int 1))]
8151
  "TARGET_64BIT"
8152
  "#")
8153
 
8154
;; Split out the PIC register save and restore after reload.  As the
8155
;; split is done after reload, there are some situations in which we
8156
;; unnecessarily save and restore %r4.  This happens when there is a
8157
;; single call and the PIC register is not used after the call.
8158
;;
8159
;; The split has to be done since call_from_call_insn () can't handle
8160
;; the pattern as is.  Noreturn calls are special because they have to
8161
;; terminate the basic block.  The split has to contain more than one
8162
;; insn.
8163
(define_split
8164
  [(parallel [(set (match_operand:DI 3 "register_operand" "") (reg:DI 27))
8165
              (set (match_operand 0 "" "")
8166
                   (call (mem:SI (match_operand:DI 1 "register_operand" ""))
8167
                         (match_operand 2 "" "")))
8168
              (clobber (reg:DI 1))
8169
              (clobber (reg:DI 2))
8170
              (use (match_dup 3))
8171
              (use (reg:DI 27))
8172
              (use (reg:DI 29))
8173
              (use (const_int 1))])]
8174
  "TARGET_64BIT && reload_completed
8175
   && find_reg_note (insn, REG_NORETURN, NULL_RTX)"
8176
  [(set (match_dup 3) (reg:DI 27))
8177
   (parallel [(set (match_dup 0)
8178
                   (call (mem:SI (match_dup 1))
8179
                         (match_dup 2)))
8180
              (clobber (reg:DI 1))
8181
              (clobber (reg:DI 2))
8182
              (use (reg:DI 27))
8183
              (use (reg:DI 29))
8184
              (use (const_int 1))])]
8185
  "")
8186
 
8187
(define_split
8188
  [(parallel [(set (match_operand:DI 3 "register_operand" "") (reg:DI 27))
8189
              (set (match_operand 0 "" "")
8190
                   (call (mem:SI (match_operand:DI 1 "register_operand" ""))
8191
                         (match_operand 2 "" "")))
8192
              (clobber (reg:DI 1))
8193
              (clobber (reg:DI 2))
8194
              (use (match_dup 3))
8195
              (use (reg:DI 27))
8196
              (use (reg:DI 29))
8197
              (use (const_int 1))])]
8198
  "TARGET_64BIT && reload_completed"
8199
  [(set (match_dup 3) (reg:DI 27))
8200
   (parallel [(set (match_dup 0)
8201
                   (call (mem:SI (match_dup 1))
8202
                         (match_dup 2)))
8203
              (clobber (reg:DI 1))
8204
              (clobber (reg:DI 2))
8205
              (use (reg:DI 27))
8206
              (use (reg:DI 29))
8207
              (use (const_int 1))])
8208
   (set (reg:DI 27) (match_dup 3))]
8209
  "")
8210
 
8211
(define_insn "*call_val_reg_64bit_post_reload"
8212
  [(set (match_operand 0 "" "")
8213
        (call (mem:SI (match_operand:DI 1 "register_operand" "r"))
8214
              (match_operand 2 "" "i")))
8215
   (clobber (reg:DI 1))
8216
   (clobber (reg:DI 2))
8217
   (use (reg:DI 27))
8218
   (use (reg:DI 29))
8219
   (use (const_int 1))]
8220
  "TARGET_64BIT"
8221
  "*
8222
{
8223
  return output_indirect_call (insn, operands[1]);
8224
}"
8225
  [(set_attr "type" "dyncall")
8226
   (set (attr "length") (symbol_ref "attr_length_indirect_call (insn)"))])
8227
 
8228
;; Call subroutine returning any type.
8229
 
8230
(define_expand "untyped_call"
8231
  [(parallel [(call (match_operand 0 "" "")
8232
                    (const_int 0))
8233
              (match_operand 1 "" "")
8234
              (match_operand 2 "" "")])]
8235
  ""
8236
  "
8237
{
8238
  int i;
8239
 
8240
  emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, const0_rtx));
8241
 
8242
  for (i = 0; i < XVECLEN (operands[2], 0); i++)
8243
    {
8244
      rtx set = XVECEXP (operands[2], 0, i);
8245
      emit_move_insn (SET_DEST (set), SET_SRC (set));
8246
    }
8247
 
8248
  /* The optimizer does not know that the call sets the function value
8249
     registers we stored in the result block.  We avoid problems by
8250
     claiming that all hard registers are used and clobbered at this
8251
     point.  */
8252
  emit_insn (gen_blockage ());
8253
 
8254
  DONE;
8255
}")
8256
 
8257
(define_expand "sibcall"
8258
  [(call (match_operand:SI 0 "" "")
8259
         (match_operand 1 "" ""))]
8260
  "!TARGET_PORTABLE_RUNTIME"
8261
  "
8262
{
8263
  rtx op, call_insn;
8264
  rtx nb = operands[1];
8265
 
8266
  op = XEXP (operands[0], 0);
8267
 
8268
  if (TARGET_64BIT)
8269
    {
8270
      if (!virtuals_instantiated)
8271
        emit_move_insn (arg_pointer_rtx,
8272
                        gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
8273
                                      GEN_INT (64)));
8274
      else
8275
        {
8276
          /* The loop pass can generate new libcalls after the virtual
8277
             registers are instantiated when fpregs are disabled because
8278
             the only method that we have for doing DImode multiplication
8279
             is with a libcall.  This could be trouble if we haven't
8280
             allocated enough space for the outgoing arguments.  */
8281
          gcc_assert (INTVAL (nb) <= crtl->outgoing_args_size);
8282
 
8283
          emit_move_insn (arg_pointer_rtx,
8284
                          gen_rtx_PLUS (word_mode, stack_pointer_rtx,
8285
                                        GEN_INT (STACK_POINTER_OFFSET + 64)));
8286
        }
8287
    }
8288
 
8289
  /* Indirect sibling calls are not allowed.  */
8290
  if (TARGET_64BIT)
8291
    call_insn = gen_sibcall_internal_symref_64bit (op, operands[1]);
8292
  else
8293
    call_insn = gen_sibcall_internal_symref (op, operands[1]);
8294
 
8295
  call_insn = emit_call_insn (call_insn);
8296
 
8297
  if (TARGET_64BIT)
8298
    use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), arg_pointer_rtx);
8299
 
8300
  /* We don't have to restore the PIC register.  */
8301
  if (flag_pic)
8302
    use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), pic_offset_table_rtx);
8303
 
8304
  DONE;
8305
}")
8306
 
8307
(define_insn "sibcall_internal_symref"
8308
  [(call (mem:SI (match_operand 0 "call_operand_address" ""))
8309
         (match_operand 1 "" "i"))
8310
   (clobber (reg:SI 1))
8311
   (use (reg:SI 2))
8312
   (use (const_int 0))]
8313
  "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
8314
  "*
8315
{
8316
  output_arg_descriptor (insn);
8317
  return output_call (insn, operands[0], 1);
8318
}"
8319
  [(set_attr "type" "call")
8320
   (set (attr "length") (symbol_ref "attr_length_call (insn, 1)"))])
8321
 
8322
(define_insn "sibcall_internal_symref_64bit"
8323
  [(call (mem:SI (match_operand 0 "call_operand_address" ""))
8324
         (match_operand 1 "" "i"))
8325
   (clobber (reg:DI 1))
8326
   (use (reg:DI 2))
8327
   (use (const_int 0))]
8328
  "TARGET_64BIT"
8329
  "*
8330
{
8331
  output_arg_descriptor (insn);
8332
  return output_call (insn, operands[0], 1);
8333
}"
8334
  [(set_attr "type" "call")
8335
   (set (attr "length") (symbol_ref "attr_length_call (insn, 1)"))])
8336
 
8337
(define_expand "sibcall_value"
8338
  [(set (match_operand 0 "" "")
8339
                   (call (match_operand:SI 1 "" "")
8340
                         (match_operand 2 "" "")))]
8341
  "!TARGET_PORTABLE_RUNTIME"
8342
  "
8343
{
8344
  rtx op, call_insn;
8345
  rtx nb = operands[1];
8346
 
8347
  op = XEXP (operands[1], 0);
8348
 
8349
  if (TARGET_64BIT)
8350
    {
8351
      if (!virtuals_instantiated)
8352
        emit_move_insn (arg_pointer_rtx,
8353
                        gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
8354
                                      GEN_INT (64)));
8355
      else
8356
        {
8357
          /* The loop pass can generate new libcalls after the virtual
8358
             registers are instantiated when fpregs are disabled because
8359
             the only method that we have for doing DImode multiplication
8360
             is with a libcall.  This could be trouble if we haven't
8361
             allocated enough space for the outgoing arguments.  */
8362
          gcc_assert (INTVAL (nb) <= crtl->outgoing_args_size);
8363
 
8364
          emit_move_insn (arg_pointer_rtx,
8365
                          gen_rtx_PLUS (word_mode, stack_pointer_rtx,
8366
                                        GEN_INT (STACK_POINTER_OFFSET + 64)));
8367
        }
8368
    }
8369
 
8370
  /* Indirect sibling calls are not allowed.  */
8371
  if (TARGET_64BIT)
8372
    call_insn
8373
      = gen_sibcall_value_internal_symref_64bit (operands[0], op, operands[2]);
8374
  else
8375
    call_insn
8376
      = gen_sibcall_value_internal_symref (operands[0], op, operands[2]);
8377
 
8378
  call_insn = emit_call_insn (call_insn);
8379
 
8380
  if (TARGET_64BIT)
8381
    use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), arg_pointer_rtx);
8382
 
8383
  /* We don't have to restore the PIC register.  */
8384
  if (flag_pic)
8385
    use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), pic_offset_table_rtx);
8386
 
8387
  DONE;
8388
}")
8389
 
8390
(define_insn "sibcall_value_internal_symref"
8391
  [(set (match_operand 0 "" "")
8392
        (call (mem:SI (match_operand 1 "call_operand_address" ""))
8393
              (match_operand 2 "" "i")))
8394
   (clobber (reg:SI 1))
8395
   (use (reg:SI 2))
8396
   (use (const_int 0))]
8397
  "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
8398
  "*
8399
{
8400
  output_arg_descriptor (insn);
8401
  return output_call (insn, operands[1], 1);
8402
}"
8403
  [(set_attr "type" "call")
8404
   (set (attr "length") (symbol_ref "attr_length_call (insn, 1)"))])
8405
 
8406
(define_insn "sibcall_value_internal_symref_64bit"
8407
  [(set (match_operand 0 "" "")
8408
        (call (mem:SI (match_operand 1 "call_operand_address" ""))
8409
              (match_operand 2 "" "i")))
8410
   (clobber (reg:DI 1))
8411
   (use (reg:DI 2))
8412
   (use (const_int 0))]
8413
  "TARGET_64BIT"
8414
  "*
8415
{
8416
  output_arg_descriptor (insn);
8417
  return output_call (insn, operands[1], 1);
8418
}"
8419
  [(set_attr "type" "call")
8420
   (set (attr "length") (symbol_ref "attr_length_call (insn, 1)"))])
8421
 
8422
(define_insn "nop"
8423
  [(const_int 0)]
8424
  ""
8425
  "nop"
8426
  [(set_attr "type" "move")
8427
   (set_attr "length" "4")])
8428
 
8429
;; These are just placeholders so we know where branch tables
8430
;; begin and end.
8431
(define_insn "begin_brtab"
8432
  [(const_int 1)]
8433
  ""
8434
  "*
8435
{
8436
  /* Only GAS actually supports this pseudo-op.  */
8437
  if (TARGET_GAS)
8438
    return \".begin_brtab\";
8439
  else
8440
    return \"\";
8441
}"
8442
  [(set_attr "type" "move")
8443
   (set_attr "length" "0")])
8444
 
8445
(define_insn "end_brtab"
8446
  [(const_int 2)]
8447
  ""
8448
  "*
8449
{
8450
  /* Only GAS actually supports this pseudo-op.  */
8451
  if (TARGET_GAS)
8452
    return \".end_brtab\";
8453
  else
8454
    return \"\";
8455
}"
8456
  [(set_attr "type" "move")
8457
   (set_attr "length" "0")])
8458
 
8459
;;; EH does longjmp's from and within the data section.  Thus,
8460
;;; an interspace branch is required for the longjmp implementation.
8461
;;; Registers r1 and r2 are used as scratch registers for the jump
8462
;;; when necessary.
8463
(define_expand "interspace_jump"
8464
  [(parallel
8465
     [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8466
      (clobber (match_dup 1))])]
8467
  ""
8468
  "
8469
{
8470
  operands[1] = gen_rtx_REG (word_mode, 2);
8471
}")
8472
 
8473
(define_insn ""
8474
  [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8475
  (clobber (reg:SI 2))]
8476
  "TARGET_PA_20 && !TARGET_64BIT"
8477
  "bve%* (%0)"
8478
   [(set_attr "type" "branch")
8479
    (set_attr "length" "4")])
8480
 
8481
(define_insn ""
8482
  [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8483
  (clobber (reg:SI 2))]
8484
  "TARGET_NO_SPACE_REGS && !TARGET_64BIT"
8485
  "be%* 0(%%sr4,%0)"
8486
   [(set_attr "type" "branch")
8487
    (set_attr "length" "4")])
8488
 
8489
(define_insn ""
8490
  [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8491
  (clobber (reg:SI 2))]
8492
  "!TARGET_64BIT"
8493
  "ldsid (%%sr0,%0),%%r2\;mtsp %%r2,%%sr0\;be%* 0(%%sr0,%0)"
8494
   [(set_attr "type" "branch")
8495
    (set_attr "length" "12")])
8496
 
8497
(define_insn ""
8498
  [(set (pc) (match_operand 0 "pmode_register_operand" "a"))
8499
  (clobber (reg:DI 2))]
8500
  "TARGET_64BIT"
8501
  "bve%* (%0)"
8502
   [(set_attr "type" "branch")
8503
    (set_attr "length" "4")])
8504
 
8505
(define_expand "builtin_longjmp"
8506
  [(unspec_volatile [(match_operand 0 "register_operand" "r")] UNSPECV_LONGJMP)]
8507
  ""
8508
  "
8509
{
8510
  /* The elements of the buffer are, in order:  */
8511
  rtx fp = gen_rtx_MEM (Pmode, operands[0]);
8512
  rtx lab = gen_rtx_MEM (Pmode, plus_constant (operands[0],
8513
                         POINTER_SIZE / BITS_PER_UNIT));
8514
  rtx stack = gen_rtx_MEM (Pmode, plus_constant (operands[0],
8515
                           (POINTER_SIZE * 2) / BITS_PER_UNIT));
8516
  rtx pv = gen_rtx_REG (Pmode, 1);
8517
 
8518
  emit_clobber (gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (VOIDmode)));
8519
  emit_clobber (gen_rtx_MEM (BLKmode, hard_frame_pointer_rtx));
8520
 
8521
  /* Restore the frame pointer.  The virtual_stack_vars_rtx is saved
8522
     instead of the hard_frame_pointer_rtx in the save area.  We need
8523
     to adjust for the offset between these two values when we have
8524
     a nonlocal_goto pattern.  When we don't have a nonlocal_goto
8525
     pattern, the receiver performs the adjustment.  */
8526
#ifdef HAVE_nonlocal_goto
8527
  if (HAVE_nonlocal_goto)
8528
    emit_move_insn (virtual_stack_vars_rtx, force_reg (Pmode, fp));
8529
  else
8530
#endif
8531
    emit_move_insn (hard_frame_pointer_rtx, fp);
8532
 
8533
  /* This bit is the same as expand_builtin_longjmp.  */
8534
  emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX);
8535
  emit_use (hard_frame_pointer_rtx);
8536
  emit_use (stack_pointer_rtx);
8537
 
8538
  /* Load the label we are jumping through into r1 so that we know
8539
     where to look for it when we get back to setjmp's function for
8540
     restoring the gp.  */
8541
  emit_move_insn (pv, lab);
8542
 
8543
  /* Prevent the insns above from being scheduled into the delay slot
8544
     of the interspace jump because the space register could change.  */
8545
  emit_insn (gen_blockage ());
8546
 
8547
  emit_jump_insn (gen_interspace_jump (pv));
8548
  emit_barrier ();
8549
  DONE;
8550
}")
8551
 
8552
;;; Operands 2 and 3 are assumed to be CONST_INTs.
8553
(define_expand "extzv"
8554
  [(set (match_operand 0 "register_operand" "")
8555
        (zero_extract (match_operand 1 "register_operand" "")
8556
                      (match_operand 2 "uint32_operand" "")
8557
                      (match_operand 3 "uint32_operand" "")))]
8558
  ""
8559
  "
8560
{
8561
  HOST_WIDE_INT len = INTVAL (operands[2]);
8562
  HOST_WIDE_INT pos = INTVAL (operands[3]);
8563
 
8564
  /* PA extraction insns don't support zero length bitfields or fields
8565
     extending beyond the left or right-most bits.  Also, we reject lengths
8566
     equal to a word as they are better handled by the move patterns.  */
8567
  if (len <= 0 || len >= BITS_PER_WORD || pos < 0 || pos + len > BITS_PER_WORD)
8568
    FAIL;
8569
 
8570
  /* From mips.md: extract_bit_field doesn't verify that our source
8571
     matches the predicate, so check it again here.  */
8572
  if (!register_operand (operands[1], VOIDmode))
8573
    FAIL;
8574
 
8575
  if (TARGET_64BIT)
8576
    emit_insn (gen_extzv_64 (operands[0], operands[1],
8577
                             operands[2], operands[3]));
8578
  else
8579
    emit_insn (gen_extzv_32 (operands[0], operands[1],
8580
                             operands[2], operands[3]));
8581
  DONE;
8582
}")
8583
 
8584
(define_insn "extzv_32"
8585
  [(set (match_operand:SI 0 "register_operand" "=r")
8586
        (zero_extract:SI (match_operand:SI 1 "register_operand" "r")
8587
                         (match_operand:SI 2 "uint5_operand" "")
8588
                         (match_operand:SI 3 "uint5_operand" "")))]
8589
  ""
8590
  "{extru|extrw,u} %1,%3+%2-1,%2,%0"
8591
  [(set_attr "type" "shift")
8592
   (set_attr "length" "4")])
8593
 
8594
(define_insn ""
8595
  [(set (match_operand:SI 0 "register_operand" "=r")
8596
        (zero_extract:SI (match_operand:SI 1 "register_operand" "r")
8597
                         (const_int 1)
8598
                         (match_operand:SI 2 "register_operand" "q")))]
8599
  ""
8600
  "{vextru %1,1,%0|extrw,u %1,%%sar,1,%0}"
8601
  [(set_attr "type" "shift")
8602
   (set_attr "length" "4")])
8603
 
8604
(define_insn "extzv_64"
8605
  [(set (match_operand:DI 0 "register_operand" "=r")
8606
        (zero_extract:DI (match_operand:DI 1 "register_operand" "r")
8607
                         (match_operand:DI 2 "uint32_operand" "")
8608
                         (match_operand:DI 3 "uint32_operand" "")))]
8609
  "TARGET_64BIT"
8610
  "extrd,u %1,%3+%2-1,%2,%0"
8611
  [(set_attr "type" "shift")
8612
   (set_attr "length" "4")])
8613
 
8614
(define_insn ""
8615
  [(set (match_operand:DI 0 "register_operand" "=r")
8616
        (zero_extract:DI (match_operand:DI 1 "register_operand" "r")
8617
                         (const_int 1)
8618
                         (match_operand:DI 2 "register_operand" "q")))]
8619
  "TARGET_64BIT"
8620
  "extrd,u %1,%%sar,1,%0"
8621
  [(set_attr "type" "shift")
8622
   (set_attr "length" "4")])
8623
 
8624
;;; Operands 2 and 3 are assumed to be CONST_INTs.
8625
(define_expand "extv"
8626
  [(set (match_operand 0 "register_operand" "")
8627
        (sign_extract (match_operand 1 "register_operand" "")
8628
                      (match_operand 2 "uint32_operand" "")
8629
                      (match_operand 3 "uint32_operand" "")))]
8630
  ""
8631
  "
8632
{
8633
  HOST_WIDE_INT len = INTVAL (operands[2]);
8634
  HOST_WIDE_INT pos = INTVAL (operands[3]);
8635
 
8636
  /* PA extraction insns don't support zero length bitfields or fields
8637
     extending beyond the left or right-most bits.  Also, we reject lengths
8638
     equal to a word as they are better handled by the move patterns.  */
8639
  if (len <= 0 || len >= BITS_PER_WORD || pos < 0 || pos + len > BITS_PER_WORD)
8640
    FAIL;
8641
 
8642
  /* From mips.md: extract_bit_field doesn't verify that our source
8643
     matches the predicate, so check it again here.  */
8644
  if (!register_operand (operands[1], VOIDmode))
8645
    FAIL;
8646
 
8647
  if (TARGET_64BIT)
8648
    emit_insn (gen_extv_64 (operands[0], operands[1],
8649
                            operands[2], operands[3]));
8650
  else
8651
    emit_insn (gen_extv_32 (operands[0], operands[1],
8652
                            operands[2], operands[3]));
8653
  DONE;
8654
}")
8655
 
8656
(define_insn "extv_32"
8657
  [(set (match_operand:SI 0 "register_operand" "=r")
8658
        (sign_extract:SI (match_operand:SI 1 "register_operand" "r")
8659
                         (match_operand:SI 2 "uint5_operand" "")
8660
                         (match_operand:SI 3 "uint5_operand" "")))]
8661
  ""
8662
  "{extrs|extrw,s} %1,%3+%2-1,%2,%0"
8663
  [(set_attr "type" "shift")
8664
   (set_attr "length" "4")])
8665
 
8666
(define_insn ""
8667
  [(set (match_operand:SI 0 "register_operand" "=r")
8668
        (sign_extract:SI (match_operand:SI 1 "register_operand" "r")
8669
                         (const_int 1)
8670
                         (match_operand:SI 2 "register_operand" "q")))]
8671
  "!TARGET_64BIT"
8672
  "{vextrs %1,1,%0|extrw,s %1,%%sar,1,%0}"
8673
  [(set_attr "type" "shift")
8674
   (set_attr "length" "4")])
8675
 
8676
(define_insn "extv_64"
8677
  [(set (match_operand:DI 0 "register_operand" "=r")
8678
        (sign_extract:DI (match_operand:DI 1 "register_operand" "r")
8679
                         (match_operand:DI 2 "uint32_operand" "")
8680
                         (match_operand:DI 3 "uint32_operand" "")))]
8681
  "TARGET_64BIT"
8682
  "extrd,s %1,%3+%2-1,%2,%0"
8683
  [(set_attr "type" "shift")
8684
   (set_attr "length" "4")])
8685
 
8686
(define_insn ""
8687
  [(set (match_operand:DI 0 "register_operand" "=r")
8688
        (sign_extract:DI (match_operand:DI 1 "register_operand" "r")
8689
                         (const_int 1)
8690
                         (match_operand:DI 2 "register_operand" "q")))]
8691
  "TARGET_64BIT"
8692
  "extrd,s %1,%%sar,1,%0"
8693
  [(set_attr "type" "shift")
8694
   (set_attr "length" "4")])
8695
 
8696
;;; Operands 1 and 2 are assumed to be CONST_INTs.
8697
(define_expand "insv"
8698
  [(set (zero_extract (match_operand 0 "register_operand" "")
8699
                      (match_operand 1 "uint32_operand" "")
8700
                      (match_operand 2 "uint32_operand" ""))
8701
        (match_operand 3 "arith5_operand" ""))]
8702
  ""
8703
  "
8704
{
8705
  HOST_WIDE_INT len = INTVAL (operands[1]);
8706
  HOST_WIDE_INT pos = INTVAL (operands[2]);
8707
 
8708
  /* PA insertion insns don't support zero length bitfields or fields
8709
     extending beyond the left or right-most bits.  Also, we reject lengths
8710
     equal to a word as they are better handled by the move patterns.  */
8711
  if (len <= 0 || len >= BITS_PER_WORD || pos < 0 || pos + len > BITS_PER_WORD)
8712
    FAIL;
8713
 
8714
  /* From mips.md: insert_bit_field doesn't verify that our destination
8715
     matches the predicate, so check it again here.  */
8716
  if (!register_operand (operands[0], VOIDmode))
8717
    FAIL;
8718
 
8719
  if (TARGET_64BIT)
8720
    emit_insn (gen_insv_64 (operands[0], operands[1],
8721
                            operands[2], operands[3]));
8722
  else
8723
    emit_insn (gen_insv_32 (operands[0], operands[1],
8724
                            operands[2], operands[3]));
8725
  DONE;
8726
}")
8727
 
8728
(define_insn "insv_32"
8729
  [(set (zero_extract:SI (match_operand:SI 0 "register_operand" "+r,r")
8730
                         (match_operand:SI 1 "uint5_operand" "")
8731
                         (match_operand:SI 2 "uint5_operand" ""))
8732
        (match_operand:SI 3 "arith5_operand" "r,L"))]
8733
  ""
8734
  "@
8735
   {dep|depw} %3,%2+%1-1,%1,%0
8736
   {depi|depwi} %3,%2+%1-1,%1,%0"
8737
  [(set_attr "type" "shift,shift")
8738
   (set_attr "length" "4,4")])
8739
 
8740
;; Optimize insertion of const_int values of type 1...1xxxx.
8741
(define_insn ""
8742
  [(set (zero_extract:SI (match_operand:SI 0 "register_operand" "+r")
8743
                         (match_operand:SI 1 "uint5_operand" "")
8744
                         (match_operand:SI 2 "uint5_operand" ""))
8745
        (match_operand:SI 3 "const_int_operand" ""))]
8746
  "(INTVAL (operands[3]) & 0x10) != 0 &&
8747
   (~INTVAL (operands[3]) & ((1L << INTVAL (operands[1])) - 1) & ~0xf) == 0"
8748
  "*
8749
{
8750
  operands[3] = GEN_INT ((INTVAL (operands[3]) & 0xf) - 0x10);
8751
  return \"{depi|depwi} %3,%2+%1-1,%1,%0\";
8752
}"
8753
  [(set_attr "type" "shift")
8754
   (set_attr "length" "4")])
8755
 
8756
(define_insn "insv_64"
8757
  [(set (zero_extract:DI (match_operand:DI 0 "register_operand" "+r,r")
8758
                         (match_operand:DI 1 "uint32_operand" "")
8759
                         (match_operand:DI 2 "uint32_operand" ""))
8760
        (match_operand:DI 3 "arith32_operand" "r,L"))]
8761
  "TARGET_64BIT"
8762
  "@
8763
   depd %3,%2+%1-1,%1,%0
8764
   depdi %3,%2+%1-1,%1,%0"
8765
  [(set_attr "type" "shift,shift")
8766
   (set_attr "length" "4,4")])
8767
 
8768
;; Optimize insertion of const_int values of type 1...1xxxx.
8769
(define_insn ""
8770
  [(set (zero_extract:DI (match_operand:DI 0 "register_operand" "+r")
8771
                         (match_operand:DI 1 "uint32_operand" "")
8772
                         (match_operand:DI 2 "uint32_operand" ""))
8773
        (match_operand:DI 3 "const_int_operand" ""))]
8774
  "(INTVAL (operands[3]) & 0x10) != 0
8775
   && TARGET_64BIT
8776
   && (~INTVAL (operands[3]) & ((1L << INTVAL (operands[1])) - 1) & ~0xf) == 0"
8777
  "*
8778
{
8779
  operands[3] = GEN_INT ((INTVAL (operands[3]) & 0xf) - 0x10);
8780
  return \"depdi %3,%2+%1-1,%1,%0\";
8781
}"
8782
  [(set_attr "type" "shift")
8783
   (set_attr "length" "4")])
8784
 
8785
(define_insn ""
8786
  [(set (match_operand:DI 0 "register_operand" "=r")
8787
        (ashift:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
8788
                   (const_int 32)))]
8789
  "TARGET_64BIT"
8790
  "depd,z %1,31,32,%0"
8791
  [(set_attr "type" "shift")
8792
   (set_attr "length" "4")])
8793
 
8794
;; This insn is used for some loop tests, typically loops reversed when
8795
;; strength reduction is used.  It is actually created when the instruction
8796
;; combination phase combines the special loop test.  Since this insn
8797
;; is both a jump insn and has an output, it must deal with its own
8798
;; reloads, hence the `m' constraints.  The `!' constraints direct reload
8799
;; to not choose the register alternatives in the event a reload is needed.
8800
(define_insn "decrement_and_branch_until_zero"
8801
  [(set (pc)
8802
        (if_then_else
8803
          (match_operator 2 "comparison_operator"
8804
           [(plus:SI
8805
              (match_operand:SI 0 "reg_before_reload_operand" "+!r,!*f,*m")
8806
              (match_operand:SI 1 "int5_operand" "L,L,L"))
8807
            (const_int 0)])
8808
          (label_ref (match_operand 3 "" ""))
8809
          (pc)))
8810
   (set (match_dup 0)
8811
        (plus:SI (match_dup 0) (match_dup 1)))
8812
   (clobber (match_scratch:SI 4 "=X,r,r"))]
8813
  ""
8814
  "* return output_dbra (operands, insn, which_alternative); "
8815
;; Do not expect to understand this the first time through.
8816
[(set_attr "type" "cbranch,multi,multi")
8817
 (set (attr "length")
8818
      (if_then_else (eq_attr "alternative" "0")
8819
;; Loop counter in register case
8820
;; Short branch has length of 4
8821
;; Long branch has length of 8, 20, 24 or 28
8822
        (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8823
               (const_int MAX_12BIT_OFFSET))
8824
           (const_int 4)
8825
           (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8826
               (const_int MAX_17BIT_OFFSET))
8827
           (const_int 8)
8828
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8829
           (const_int 24)
8830
           (eq (symbol_ref "flag_pic") (const_int 0))
8831
           (const_int 20)]
8832
          (const_int 28))
8833
 
8834
;; Loop counter in FP reg case.
8835
;; Extra goo to deal with additional reload insns.
8836
        (if_then_else (eq_attr "alternative" "1")
8837
          (if_then_else (lt (match_dup 3) (pc))
8838
             (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 24))))
8839
                      (const_int MAX_12BIT_OFFSET))
8840
                    (const_int 24)
8841
                    (lt (abs (minus (match_dup 3) (plus (pc) (const_int 24))))
8842
                      (const_int MAX_17BIT_OFFSET))
8843
                    (const_int 28)
8844
                    (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8845
                    (const_int 44)
8846
                    (eq (symbol_ref "flag_pic") (const_int 0))
8847
                    (const_int 40)]
8848
                  (const_int 48))
8849
             (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8850
                      (const_int MAX_12BIT_OFFSET))
8851
                    (const_int 24)
8852
                    (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8853
                      (const_int MAX_17BIT_OFFSET))
8854
                    (const_int 28)
8855
                    (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8856
                    (const_int 44)
8857
                    (eq (symbol_ref "flag_pic") (const_int 0))
8858
                    (const_int 40)]
8859
                  (const_int 48)))
8860
 
8861
;; Loop counter in memory case.
8862
;; Extra goo to deal with additional reload insns.
8863
        (if_then_else (lt (match_dup 3) (pc))
8864
             (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
8865
                      (const_int MAX_12BIT_OFFSET))
8866
                    (const_int 12)
8867
                    (lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
8868
                      (const_int MAX_17BIT_OFFSET))
8869
                    (const_int 16)
8870
                    (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8871
                    (const_int 32)
8872
                    (eq (symbol_ref "flag_pic") (const_int 0))
8873
                    (const_int 28)]
8874
                  (const_int 36))
8875
             (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8876
                      (const_int MAX_12BIT_OFFSET))
8877
                    (const_int 12)
8878
                    (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8879
                      (const_int MAX_17BIT_OFFSET))
8880
                    (const_int 16)
8881
                    (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8882
                    (const_int 32)
8883
                    (eq (symbol_ref "flag_pic") (const_int 0))
8884
                    (const_int 28)]
8885
                  (const_int 36))))))])
8886
 
8887
(define_insn ""
8888
  [(set (pc)
8889
        (if_then_else
8890
          (match_operator 2 "movb_comparison_operator"
8891
           [(match_operand:SI 1 "register_operand" "r,r,r,r") (const_int 0)])
8892
          (label_ref (match_operand 3 "" ""))
8893
          (pc)))
8894
   (set (match_operand:SI 0 "reg_before_reload_operand" "=!r,!*f,*m,!*q")
8895
        (match_dup 1))]
8896
  ""
8897
"* return output_movb (operands, insn, which_alternative, 0); "
8898
;; Do not expect to understand this the first time through.
8899
[(set_attr "type" "cbranch,multi,multi,multi")
8900
 (set (attr "length")
8901
      (if_then_else (eq_attr "alternative" "0")
8902
;; Loop counter in register case
8903
;; Short branch has length of 4
8904
;; Long branch has length of 8, 20, 24 or 28
8905
        (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8906
               (const_int MAX_12BIT_OFFSET))
8907
           (const_int 4)
8908
           (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8909
               (const_int MAX_17BIT_OFFSET))
8910
           (const_int 8)
8911
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8912
           (const_int 24)
8913
           (eq (symbol_ref "flag_pic") (const_int 0))
8914
           (const_int 20)]
8915
          (const_int 28))
8916
 
8917
;; Loop counter in FP reg case.
8918
;; Extra goo to deal with additional reload insns.
8919
        (if_then_else (eq_attr "alternative" "1")
8920
          (if_then_else (lt (match_dup 3) (pc))
8921
             (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
8922
                      (const_int MAX_12BIT_OFFSET))
8923
                    (const_int 12)
8924
                    (lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
8925
                      (const_int MAX_17BIT_OFFSET))
8926
                    (const_int 16)
8927
                    (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8928
                    (const_int 32)
8929
                    (eq (symbol_ref "flag_pic") (const_int 0))
8930
                    (const_int 28)]
8931
                  (const_int 36))
8932
             (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8933
                      (const_int MAX_12BIT_OFFSET))
8934
                    (const_int 12)
8935
                    (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8936
                      (const_int MAX_17BIT_OFFSET))
8937
                    (const_int 16)
8938
                    (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8939
                    (const_int 32)
8940
                    (eq (symbol_ref "flag_pic") (const_int 0))
8941
                    (const_int 28)]
8942
                  (const_int 36)))
8943
 
8944
;; Loop counter in memory or sar case.
8945
;; Extra goo to deal with additional reload insns.
8946
        (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8947
                   (const_int MAX_12BIT_OFFSET))
8948
                (const_int 8)
8949
                (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8950
                  (const_int MAX_17BIT_OFFSET))
8951
                (const_int 12)
8952
                (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8953
                (const_int 28)
8954
                (eq (symbol_ref "flag_pic") (const_int 0))
8955
                (const_int 24)]
8956
              (const_int 32)))))])
8957
 
8958
;; Handle negated branch.
8959
(define_insn ""
8960
  [(set (pc)
8961
        (if_then_else
8962
          (match_operator 2 "movb_comparison_operator"
8963
           [(match_operand:SI 1 "register_operand" "r,r,r,r") (const_int 0)])
8964
          (pc)
8965
          (label_ref (match_operand 3 "" ""))))
8966
   (set (match_operand:SI 0 "reg_before_reload_operand" "=!r,!*f,*m,!*q")
8967
        (match_dup 1))]
8968
  ""
8969
"* return output_movb (operands, insn, which_alternative, 1); "
8970
;; Do not expect to understand this the first time through.
8971
[(set_attr "type" "cbranch,multi,multi,multi")
8972
 (set (attr "length")
8973
      (if_then_else (eq_attr "alternative" "0")
8974
;; Loop counter in register case
8975
;; Short branch has length of 4
8976
;; Long branch has length of 8
8977
        (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8978
               (const_int MAX_12BIT_OFFSET))
8979
           (const_int 4)
8980
           (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
8981
               (const_int MAX_17BIT_OFFSET))
8982
           (const_int 8)
8983
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
8984
           (const_int 24)
8985
           (eq (symbol_ref "flag_pic") (const_int 0))
8986
           (const_int 20)]
8987
          (const_int 28))
8988
 
8989
;; Loop counter in FP reg case.
8990
;; Extra goo to deal with additional reload insns.
8991
        (if_then_else (eq_attr "alternative" "1")
8992
          (if_then_else (lt (match_dup 3) (pc))
8993
             (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
8994
                      (const_int MAX_12BIT_OFFSET))
8995
                    (const_int 12)
8996
                    (lt (abs (minus (match_dup 3) (plus (pc) (const_int 12))))
8997
                      (const_int MAX_17BIT_OFFSET))
8998
                    (const_int 16)
8999
                    (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9000
                    (const_int 32)
9001
                    (eq (symbol_ref "flag_pic") (const_int 0))
9002
                    (const_int 28)]
9003
                  (const_int 36))
9004
             (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9005
                      (const_int MAX_12BIT_OFFSET))
9006
                    (const_int 12)
9007
                    (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9008
                      (const_int MAX_17BIT_OFFSET))
9009
                    (const_int 16)
9010
                    (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9011
                    (const_int 32)
9012
                    (eq (symbol_ref "flag_pic") (const_int 0))
9013
                    (const_int 28)]
9014
                  (const_int 36)))
9015
 
9016
;; Loop counter in memory or SAR case.
9017
;; Extra goo to deal with additional reload insns.
9018
        (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9019
                   (const_int MAX_12BIT_OFFSET))
9020
                (const_int 8)
9021
                (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9022
                  (const_int MAX_17BIT_OFFSET))
9023
                (const_int 12)
9024
                (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9025
                (const_int 28)
9026
                (eq (symbol_ref "flag_pic") (const_int 0))
9027
                (const_int 24)]
9028
              (const_int 32)))))])
9029
 
9030
(define_insn ""
9031
  [(set (pc) (label_ref (match_operand 3 "" "" )))
9032
   (set (match_operand:SI 0 "ireg_operand" "=r")
9033
        (plus:SI (match_operand:SI 1 "ireg_operand" "r")
9034
                 (match_operand:SI 2 "ireg_or_int5_operand" "rL")))]
9035
  "(reload_completed && operands[0] == operands[1]) || operands[0] == operands[2]"
9036
  "*
9037
{
9038
  return output_parallel_addb (operands, insn);
9039
}"
9040
[(set_attr "type" "parallel_branch")
9041
 (set (attr "length")
9042
    (cond [(lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9043
               (const_int MAX_12BIT_OFFSET))
9044
           (const_int 4)
9045
           (lt (abs (minus (match_dup 3) (plus (pc) (const_int 8))))
9046
               (const_int MAX_17BIT_OFFSET))
9047
           (const_int 8)
9048
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9049
           (const_int 24)
9050
           (eq (symbol_ref "flag_pic") (const_int 0))
9051
           (const_int 20)]
9052
          (const_int 28)))])
9053
 
9054
(define_insn ""
9055
  [(set (pc) (label_ref (match_operand 2 "" "" )))
9056
   (set (match_operand:SF 0 "ireg_operand" "=r")
9057
        (match_operand:SF 1 "ireg_or_int5_operand" "rL"))]
9058
  "reload_completed"
9059
  "*
9060
{
9061
  return output_parallel_movb (operands, insn);
9062
}"
9063
[(set_attr "type" "parallel_branch")
9064
 (set (attr "length")
9065
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9066
               (const_int MAX_12BIT_OFFSET))
9067
           (const_int 4)
9068
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9069
               (const_int MAX_17BIT_OFFSET))
9070
           (const_int 8)
9071
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9072
           (const_int 24)
9073
           (eq (symbol_ref "flag_pic") (const_int 0))
9074
           (const_int 20)]
9075
          (const_int 28)))])
9076
 
9077
(define_insn ""
9078
  [(set (pc) (label_ref (match_operand 2 "" "" )))
9079
   (set (match_operand:SI 0 "ireg_operand" "=r")
9080
        (match_operand:SI 1 "ireg_or_int5_operand" "rL"))]
9081
  "reload_completed"
9082
  "*
9083
{
9084
  return output_parallel_movb (operands, insn);
9085
}"
9086
[(set_attr "type" "parallel_branch")
9087
 (set (attr "length")
9088
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9089
               (const_int MAX_12BIT_OFFSET))
9090
           (const_int 4)
9091
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9092
               (const_int MAX_17BIT_OFFSET))
9093
           (const_int 8)
9094
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9095
           (const_int 24)
9096
           (eq (symbol_ref "flag_pic") (const_int 0))
9097
           (const_int 20)]
9098
          (const_int 28)))])
9099
 
9100
(define_insn ""
9101
  [(set (pc) (label_ref (match_operand 2 "" "" )))
9102
   (set (match_operand:HI 0 "ireg_operand" "=r")
9103
        (match_operand:HI 1 "ireg_or_int5_operand" "rL"))]
9104
  "reload_completed"
9105
  "*
9106
{
9107
  return output_parallel_movb (operands, insn);
9108
}"
9109
[(set_attr "type" "parallel_branch")
9110
 (set (attr "length")
9111
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9112
               (const_int MAX_12BIT_OFFSET))
9113
           (const_int 4)
9114
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9115
               (const_int MAX_17BIT_OFFSET))
9116
           (const_int 8)
9117
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9118
           (const_int 24)
9119
           (eq (symbol_ref "flag_pic") (const_int 0))
9120
           (const_int 20)]
9121
          (const_int 28)))])
9122
 
9123
(define_insn ""
9124
  [(set (pc) (label_ref (match_operand 2 "" "" )))
9125
   (set (match_operand:QI 0 "ireg_operand" "=r")
9126
        (match_operand:QI 1 "ireg_or_int5_operand" "rL"))]
9127
  "reload_completed"
9128
  "*
9129
{
9130
  return output_parallel_movb (operands, insn);
9131
}"
9132
[(set_attr "type" "parallel_branch")
9133
 (set (attr "length")
9134
    (cond [(lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9135
               (const_int MAX_12BIT_OFFSET))
9136
           (const_int 4)
9137
           (lt (abs (minus (match_dup 2) (plus (pc) (const_int 8))))
9138
               (const_int MAX_17BIT_OFFSET))
9139
           (const_int 8)
9140
           (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0))
9141
           (const_int 24)
9142
           (eq (symbol_ref "flag_pic") (const_int 0))
9143
           (const_int 20)]
9144
          (const_int 28)))])
9145
 
9146
(define_insn ""
9147
  [(set (match_operand 0 "register_operand" "=f")
9148
        (mult (match_operand 1 "register_operand" "f")
9149
              (match_operand 2 "register_operand" "f")))
9150
   (set (match_operand 3 "register_operand" "+f")
9151
        (plus (match_operand 4 "register_operand" "f")
9152
              (match_operand 5 "register_operand" "f")))]
9153
  "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
9154
   && reload_completed && fmpyaddoperands (operands)"
9155
  "*
9156
{
9157
  if (GET_MODE (operands[0]) == DFmode)
9158
    {
9159
      if (rtx_equal_p (operands[3], operands[5]))
9160
        return \"fmpyadd,dbl %1,%2,%0,%4,%3\";
9161
      else
9162
        return \"fmpyadd,dbl %1,%2,%0,%5,%3\";
9163
    }
9164
  else
9165
    {
9166
      if (rtx_equal_p (operands[3], operands[5]))
9167
        return \"fmpyadd,sgl %1,%2,%0,%4,%3\";
9168
      else
9169
        return \"fmpyadd,sgl %1,%2,%0,%5,%3\";
9170
    }
9171
}"
9172
  [(set_attr "type" "fpalu")
9173
   (set_attr "length" "4")])
9174
 
9175
(define_insn ""
9176
  [(set (match_operand 3 "register_operand" "+f")
9177
        (plus (match_operand 4 "register_operand" "f")
9178
              (match_operand 5 "register_operand" "f")))
9179
   (set (match_operand 0 "register_operand" "=f")
9180
        (mult (match_operand 1 "register_operand" "f")
9181
              (match_operand 2 "register_operand" "f")))]
9182
  "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
9183
   && reload_completed && fmpyaddoperands (operands)"
9184
  "*
9185
{
9186
  if (GET_MODE (operands[0]) == DFmode)
9187
    {
9188
      if (rtx_equal_p (operands[3], operands[5]))
9189
        return \"fmpyadd,dbl %1,%2,%0,%4,%3\";
9190
      else
9191
        return \"fmpyadd,dbl %1,%2,%0,%5,%3\";
9192
    }
9193
  else
9194
    {
9195
      if (rtx_equal_p (operands[3], operands[5]))
9196
        return \"fmpyadd,sgl %1,%2,%0,%4,%3\";
9197
      else
9198
        return \"fmpyadd,sgl %1,%2,%0,%5,%3\";
9199
    }
9200
}"
9201
  [(set_attr "type" "fpalu")
9202
   (set_attr "length" "4")])
9203
 
9204
(define_insn ""
9205
  [(set (match_operand 0 "register_operand" "=f")
9206
        (mult (match_operand 1 "register_operand" "f")
9207
              (match_operand 2 "register_operand" "f")))
9208
   (set (match_operand 3 "register_operand" "+f")
9209
        (minus (match_operand 4 "register_operand" "f")
9210
               (match_operand 5 "register_operand" "f")))]
9211
  "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
9212
   && reload_completed && fmpysuboperands (operands)"
9213
  "*
9214
{
9215
  if (GET_MODE (operands[0]) == DFmode)
9216
    return \"fmpysub,dbl %1,%2,%0,%5,%3\";
9217
  else
9218
    return \"fmpysub,sgl %1,%2,%0,%5,%3\";
9219
}"
9220
  [(set_attr "type" "fpalu")
9221
   (set_attr "length" "4")])
9222
 
9223
(define_insn ""
9224
  [(set (match_operand 3 "register_operand" "+f")
9225
        (minus (match_operand 4 "register_operand" "f")
9226
               (match_operand 5 "register_operand" "f")))
9227
   (set (match_operand 0 "register_operand" "=f")
9228
        (mult (match_operand 1 "register_operand" "f")
9229
              (match_operand 2 "register_operand" "f")))]
9230
  "TARGET_PA_11 && ! TARGET_SOFT_FLOAT
9231
   && reload_completed && fmpysuboperands (operands)"
9232
  "*
9233
{
9234
  if (GET_MODE (operands[0]) == DFmode)
9235
    return \"fmpysub,dbl %1,%2,%0,%5,%3\";
9236
  else
9237
    return \"fmpysub,sgl %1,%2,%0,%5,%3\";
9238
}"
9239
  [(set_attr "type" "fpalu")
9240
   (set_attr "length" "4")])
9241
 
9242
;; The following two patterns are used by the trampoline code for nested
9243
;; functions.  They flush the I and D cache lines from the start address
9244
;; (operand0) to the end address (operand1).  No lines are flushed if the
9245
;; end address is less than the start address (unsigned).
9246
;;
9247
;; Because the range of memory flushed is variable and the size of a MEM
9248
;; can only be a CONST_INT, the patterns specify that they perform an
9249
;; unspecified volatile operation on all memory.
9250
;;
9251
;; The address range for an icache flush must lie within a single
9252
;; space on targets with non-equivalent space registers.
9253
;;
9254
;; Operand 0 contains the start address.
9255
;; Operand 1 contains the end address.
9256
;; Operand 2 contains the line length to use.
9257
(define_insn "dcacheflush"
9258
  [(const_int 1)
9259
   (unspec_volatile [(mem:BLK (scratch))] UNSPECV_DCACHE)
9260
   (use (match_operand 0 "pmode_register_operand" "r"))
9261
   (use (match_operand 1 "pmode_register_operand" "r"))
9262
   (use (match_operand 2 "pmode_register_operand" "r"))
9263
   (clobber (match_scratch:P 3 "=&0"))]
9264
  ""
9265
  "cmpb,<<=,n %3,%1,.\;fdc,m %2(%3)\;sync"
9266
  [(set_attr "type" "multi")
9267
   (set_attr "length" "12")])
9268
 
9269
(define_insn "icacheflush"
9270
  [(const_int 2)
9271
   (unspec_volatile [(mem:BLK (scratch))] UNSPECV_ICACHE)
9272
   (use (match_operand 0 "pmode_register_operand" "r"))
9273
   (use (match_operand 1 "pmode_register_operand" "r"))
9274
   (use (match_operand 2 "pmode_register_operand" "r"))
9275
   (clobber (match_operand 3 "pmode_register_operand" "=&r"))
9276
   (clobber (match_operand 4 "pmode_register_operand" "=&r"))
9277
   (clobber (match_scratch:P 5 "=&0"))]
9278
  ""
9279
  "mfsp %%sr0,%4\;ldsid (%5),%3\;mtsp %3,%%sr0\;cmpb,<<=,n %5,%1,.\;fic,m %2(%%sr0,%5)\;sync\;mtsp %4,%%sr0\;nop\;nop\;nop\;nop\;nop\;nop"
9280
  [(set_attr "type" "multi")
9281
   (set_attr "length" "52")])
9282
 
9283
;; An out-of-line prologue.
9284
(define_insn "outline_prologue_call"
9285
  [(unspec_volatile [(const_int 0)] UNSPECV_OPC)
9286
   (clobber (reg:SI 31))
9287
   (clobber (reg:SI 22))
9288
   (clobber (reg:SI 21))
9289
   (clobber (reg:SI 20))
9290
   (clobber (reg:SI 19))
9291
   (clobber (reg:SI 1))]
9292
  ""
9293
  "*
9294
{
9295
 
9296
  /* We need two different versions depending on whether or not we
9297
     need a frame pointer.   Also note that we return to the instruction
9298
     immediately after the branch rather than two instructions after the
9299
     break as normally is the case.  */
9300
  if (frame_pointer_needed)
9301
    {
9302
      /* Must import the magic millicode routine(s).  */
9303
      output_asm_insn (\".IMPORT __outline_prologue_fp,MILLICODE\", NULL);
9304
 
9305
      if (TARGET_PORTABLE_RUNTIME)
9306
        {
9307
          output_asm_insn (\"ldil L'__outline_prologue_fp,%%r31\", NULL);
9308
          output_asm_insn (\"ble,n R'__outline_prologue_fp(%%sr0,%%r31)\",
9309
                           NULL);
9310
        }
9311
      else
9312
        output_asm_insn (\"{bl|b,l},n __outline_prologue_fp,%%r31\", NULL);
9313
    }
9314
  else
9315
    {
9316
      /* Must import the magic millicode routine(s).  */
9317
      output_asm_insn (\".IMPORT __outline_prologue,MILLICODE\", NULL);
9318
 
9319
      if (TARGET_PORTABLE_RUNTIME)
9320
        {
9321
          output_asm_insn (\"ldil L'__outline_prologue,%%r31\", NULL);
9322
          output_asm_insn (\"ble,n R'__outline_prologue(%%sr0,%%r31)\", NULL);
9323
        }
9324
      else
9325
        output_asm_insn (\"{bl|b,l},n __outline_prologue,%%r31\", NULL);
9326
    }
9327
  return \"\";
9328
}"
9329
  [(set_attr "type" "multi")
9330
   (set_attr "length" "8")])
9331
 
9332
;; An out-of-line epilogue.
9333
(define_insn "outline_epilogue_call"
9334
  [(unspec_volatile [(const_int 1)] UNSPECV_OEC)
9335
   (use (reg:SI 29))
9336
   (use (reg:SI 28))
9337
   (clobber (reg:SI 31))
9338
   (clobber (reg:SI 22))
9339
   (clobber (reg:SI 21))
9340
   (clobber (reg:SI 20))
9341
   (clobber (reg:SI 19))
9342
   (clobber (reg:SI 2))
9343
   (clobber (reg:SI 1))]
9344
  ""
9345
  "*
9346
{
9347
 
9348
  /* We need two different versions depending on whether or not we
9349
     need a frame pointer.   Also note that we return to the instruction
9350
     immediately after the branch rather than two instructions after the
9351
     break as normally is the case.  */
9352
  if (frame_pointer_needed)
9353
    {
9354
      /* Must import the magic millicode routine.  */
9355
      output_asm_insn (\".IMPORT __outline_epilogue_fp,MILLICODE\", NULL);
9356
 
9357
      /* The out-of-line prologue will make sure we return to the right
9358
         instruction.  */
9359
      if (TARGET_PORTABLE_RUNTIME)
9360
        {
9361
          output_asm_insn (\"ldil L'__outline_epilogue_fp,%%r31\", NULL);
9362
          output_asm_insn (\"ble,n R'__outline_epilogue_fp(%%sr0,%%r31)\",
9363
                           NULL);
9364
        }
9365
      else
9366
        output_asm_insn (\"{bl|b,l},n __outline_epilogue_fp,%%r31\", NULL);
9367
    }
9368
  else
9369
    {
9370
      /* Must import the magic millicode routine.  */
9371
      output_asm_insn (\".IMPORT __outline_epilogue,MILLICODE\", NULL);
9372
 
9373
      /* The out-of-line prologue will make sure we return to the right
9374
         instruction.  */
9375
      if (TARGET_PORTABLE_RUNTIME)
9376
        {
9377
          output_asm_insn (\"ldil L'__outline_epilogue,%%r31\", NULL);
9378
          output_asm_insn (\"ble,n R'__outline_epilogue(%%sr0,%%r31)\", NULL);
9379
        }
9380
      else
9381
        output_asm_insn (\"{bl|b,l},n __outline_epilogue,%%r31\", NULL);
9382
    }
9383
  return \"\";
9384
}"
9385
  [(set_attr "type" "multi")
9386
   (set_attr "length" "8")])
9387
 
9388
;; Given a function pointer, canonicalize it so it can be
9389
;; reliably compared to another function pointer.  */
9390
(define_expand "canonicalize_funcptr_for_compare"
9391
  [(set (reg:SI 26) (match_operand:SI 1 "register_operand" ""))
9392
   (parallel [(set (reg:SI 29) (unspec:SI [(reg:SI 26)] UNSPEC_CFFC))
9393
              (clobber (match_dup 2))
9394
              (clobber (reg:SI 26))
9395
              (clobber (reg:SI 22))
9396
              (clobber (reg:SI 31))])
9397
   (set (match_operand:SI 0 "register_operand" "")
9398
        (reg:SI 29))]
9399
  "!TARGET_PORTABLE_RUNTIME && !TARGET_64BIT"
9400
  "
9401
{
9402
  if (TARGET_ELF32)
9403
    {
9404
      rtx canonicalize_funcptr_for_compare_libfunc
9405
        = init_one_libfunc (CANONICALIZE_FUNCPTR_FOR_COMPARE_LIBCALL);
9406
 
9407
      emit_library_call_value (canonicalize_funcptr_for_compare_libfunc,
9408
                               operands[0], LCT_NORMAL, Pmode,
9409
                               1, operands[1], Pmode);
9410
      DONE;
9411
    }
9412
 
9413
  operands[2] = gen_reg_rtx (SImode);
9414
  if (GET_CODE (operands[1]) != REG)
9415
    {
9416
      rtx tmp = gen_reg_rtx (Pmode);
9417
      emit_move_insn (tmp, operands[1]);
9418
      operands[1] = tmp;
9419
    }
9420
}")
9421
 
9422
(define_insn "*$$sh_func_adrs"
9423
  [(set (reg:SI 29) (unspec:SI [(reg:SI 26)] UNSPEC_CFFC))
9424
   (clobber (match_operand:SI 0 "register_operand" "=a"))
9425
   (clobber (reg:SI 26))
9426
   (clobber (reg:SI 22))
9427
   (clobber (reg:SI 31))]
9428
  "!TARGET_64BIT"
9429
  "*
9430
{
9431
  int length = get_attr_length (insn);
9432
  rtx xoperands[2];
9433
 
9434
  xoperands[0] = GEN_INT (length - 8);
9435
  xoperands[1] = GEN_INT (length - 16);
9436
 
9437
  /* Must import the magic millicode routine.  */
9438
  output_asm_insn (\".IMPORT $$sh_func_adrs,MILLICODE\", NULL);
9439
 
9440
  /* This is absolutely amazing.
9441
 
9442
     First, copy our input parameter into %r29 just in case we don't
9443
     need to call $$sh_func_adrs.  */
9444
  output_asm_insn (\"copy %%r26,%%r29\", NULL);
9445
  output_asm_insn (\"{extru|extrw,u} %%r26,31,2,%%r31\", NULL);
9446
 
9447
  /* Next, examine the low two bits in %r26, if they aren't 0x2, then
9448
     we use %r26 unchanged.  */
9449
  output_asm_insn (\"{comib|cmpib},<>,n 2,%%r31,.+%0\", xoperands);
9450
  output_asm_insn (\"ldi 4096,%%r31\", NULL);
9451
 
9452
  /* Next, compare %r26 with 4096, if %r26 is less than or equal to
9453
     4096, then again we use %r26 unchanged.  */
9454
  output_asm_insn (\"{comb|cmpb},<<,n %%r26,%%r31,.+%1\", xoperands);
9455
 
9456
  /* Finally, call $$sh_func_adrs to extract the function's real add24.  */
9457
  return output_millicode_call (insn,
9458
                                gen_rtx_SYMBOL_REF (SImode,
9459
                                                    \"$$sh_func_adrs\"));
9460
}"
9461
  [(set_attr "type" "multi")
9462
   (set (attr "length")
9463
        (plus (symbol_ref "attr_length_millicode_call (insn)")
9464
              (const_int 20)))])
9465
 
9466
;; On the PA, the PIC register is call clobbered, so it must
9467
;; be saved & restored around calls by the caller.  If the call
9468
;; doesn't return normally (nonlocal goto, or an exception is
9469
;; thrown), then the code at the exception handler label must
9470
;; restore the PIC register.
9471
(define_expand "exception_receiver"
9472
  [(const_int 4)]
9473
  "flag_pic"
9474
  "
9475
{
9476
  /* On the 64-bit port, we need a blockage because there is
9477
     confusion regarding the dependence of the restore on the
9478
     frame pointer.  As a result, the frame pointer and pic
9479
     register restores sometimes are interchanged erroneously.  */
9480
  if (TARGET_64BIT)
9481
    emit_insn (gen_blockage ());
9482
  /* Restore the PIC register using hppa_pic_save_rtx ().  The
9483
     PIC register is not saved in the frame in 64-bit ABI.  */
9484
  emit_move_insn (pic_offset_table_rtx, hppa_pic_save_rtx ());
9485
  emit_insn (gen_blockage ());
9486
  DONE;
9487
}")
9488
 
9489
(define_expand "builtin_setjmp_receiver"
9490
  [(label_ref (match_operand 0 "" ""))]
9491
  "flag_pic"
9492
  "
9493
{
9494
  if (TARGET_64BIT)
9495
    emit_insn (gen_blockage ());
9496
  /* Restore the PIC register.  Hopefully, this will always be from
9497
     a stack slot.  The only registers that are valid after a
9498
     builtin_longjmp are the stack and frame pointers.  */
9499
  emit_move_insn (pic_offset_table_rtx, hppa_pic_save_rtx ());
9500
  emit_insn (gen_blockage ());
9501
  DONE;
9502
}")
9503
 
9504
;; Allocate new stack space and update the saved stack pointer in the
9505
;; frame marker.  The HP C compilers also copy additional words in the
9506
;; frame marker.  The 64-bit compiler copies words at -48, -32 and -24.
9507
;; The 32-bit compiler copies the word at -16 (Static Link).  We
9508
;; currently don't copy these values.
9509
;;
9510
;; Since the copy of the frame marker can't be done atomically, I
9511
;; suspect that using it for unwind purposes may be somewhat unreliable.
9512
;; The HP compilers appear to raise the stack and copy the frame
9513
;; marker in a strict instruction sequence.  This suggests that the
9514
;; unwind library may check for an alloca sequence when ALLOCA_FRAME
9515
;; is set in the callinfo data.  We currently don't set ALLOCA_FRAME
9516
;; as GAS doesn't support it, or try to keep the instructions emitted
9517
;; here in strict sequence.
9518
(define_expand "allocate_stack"
9519
  [(match_operand 0 "" "")
9520
   (match_operand 1 "" "")]
9521
  ""
9522
  "
9523
{
9524
  rtx addr;
9525
 
9526
  /* Since the stack grows upward, we need to store virtual_stack_dynamic_rtx
9527
     in operand 0 before adjusting the stack.  */
9528
  emit_move_insn (operands[0], virtual_stack_dynamic_rtx);
9529
  anti_adjust_stack (operands[1]);
9530
  if (TARGET_HPUX_UNWIND_LIBRARY)
9531
    {
9532
      addr = gen_rtx_PLUS (word_mode, stack_pointer_rtx,
9533
                           GEN_INT (TARGET_64BIT ? -8 : -4));
9534
      emit_move_insn (gen_rtx_MEM (word_mode, addr), frame_pointer_rtx);
9535
    }
9536
  if (!TARGET_64BIT && flag_pic)
9537
    {
9538
      rtx addr = gen_rtx_PLUS (word_mode, stack_pointer_rtx, GEN_INT (-32));
9539
      emit_move_insn (gen_rtx_MEM (word_mode, addr), pic_offset_table_rtx);
9540
    }
9541
  DONE;
9542
}")
9543
 
9544
(define_expand "prefetch"
9545
  [(match_operand 0 "address_operand" "")
9546
   (match_operand 1 "const_int_operand" "")
9547
   (match_operand 2 "const_int_operand" "")]
9548
  "TARGET_PA_20"
9549
{
9550
  operands[0] = copy_addr_to_reg (operands[0]);
9551
  emit_insn (gen_prefetch_20 (operands[0], operands[1], operands[2]));
9552
  DONE;
9553
})
9554
 
9555
(define_insn "prefetch_20"
9556
  [(prefetch (match_operand 0 "pmode_register_operand" "r")
9557
             (match_operand:SI 1 "const_int_operand" "n")
9558
             (match_operand:SI 2 "const_int_operand" "n"))]
9559
  "TARGET_PA_20"
9560
{
9561
  /* The SL cache-control completer indicates good spatial locality but
9562
     poor temporal locality.  The ldw instruction with a target of general
9563
     register 0 prefetches a cache line for a read.  The ldd instruction
9564
     prefetches a cache line for a write.  */
9565
  static const char * const instr[2][2] = {
9566
    {
9567
      "ldw,sl 0(%0),%%r0",
9568
      "ldd,sl 0(%0),%%r0"
9569
    },
9570
    {
9571
      "ldw 0(%0),%%r0",
9572
      "ldd 0(%0),%%r0"
9573
    }
9574
  };
9575
  int read_or_write = INTVAL (operands[1]) == 0 ? 0 : 1;
9576
  int locality = INTVAL (operands[2]) == 0 ? 0 : 1;
9577
 
9578
  return instr [locality][read_or_write];
9579
}
9580
  [(set_attr "type" "load")
9581
   (set_attr "length" "4")])
9582
 
9583
;; TLS Support
9584
(define_insn "tgd_load"
9585
 [(set (match_operand:SI 0 "register_operand" "=r")
9586
       (unspec:SI [(match_operand 1 "tgd_symbolic_operand" "")] UNSPEC_TLSGD))
9587
  (clobber (reg:SI 1))
9588
  (use (reg:SI 27))]
9589
  ""
9590
  "*
9591
{
9592
  return \"addil LR'%1-$tls_gdidx$,%%r27\;ldo RR'%1-$tls_gdidx$(%%r1),%0\";
9593
}"
9594
  [(set_attr "type" "multi")
9595
   (set_attr "length" "8")])
9596
 
9597
(define_insn "tgd_load_pic"
9598
 [(set (match_operand:SI 0 "register_operand" "=r")
9599
       (unspec:SI [(match_operand 1 "tgd_symbolic_operand" "")] UNSPEC_TLSGD_PIC))
9600
  (clobber (reg:SI 1))
9601
  (use (reg:SI 19))]
9602
  ""
9603
  "*
9604
{
9605
  return \"addil LT'%1-$tls_gdidx$,%%r19\;ldo RT'%1-$tls_gdidx$(%%r1),%0\";
9606
}"
9607
  [(set_attr "type" "multi")
9608
   (set_attr "length" "8")])
9609
 
9610
(define_insn "tld_load"
9611
 [(set (match_operand:SI 0 "register_operand" "=r")
9612
       (unspec:SI [(match_operand 1 "tld_symbolic_operand" "")] UNSPEC_TLSLDM))
9613
  (clobber (reg:SI 1))
9614
  (use (reg:SI 27))]
9615
  ""
9616
  "*
9617
{
9618
  return \"addil LR'%1-$tls_ldidx$,%%r27\;ldo RR'%1-$tls_ldidx$(%%r1),%0\";
9619
}"
9620
  [(set_attr "type" "multi")
9621
   (set_attr "length" "8")])
9622
 
9623
(define_insn "tld_load_pic"
9624
 [(set (match_operand:SI 0 "register_operand" "=r")
9625
       (unspec:SI [(match_operand 1 "tld_symbolic_operand" "")] UNSPEC_TLSLDM_PIC))
9626
  (clobber (reg:SI 1))
9627
  (use (reg:SI 19))]
9628
  ""
9629
  "*
9630
{
9631
  return \"addil LT'%1-$tls_ldidx$,%%r19\;ldo RT'%1-$tls_ldidx$(%%r1),%0\";
9632
}"
9633
  [(set_attr "type" "multi")
9634
   (set_attr "length" "8")])
9635
 
9636
(define_insn "tld_offset_load"
9637
  [(set (match_operand:SI 0 "register_operand" "=r")
9638
        (plus:SI (unspec:SI [(match_operand 1 "tld_symbolic_operand" "")]
9639
                            UNSPEC_TLSLDO)
9640
                 (match_operand:SI 2 "register_operand" "r")))
9641
   (clobber (reg:SI 1))]
9642
  ""
9643
  "*
9644
{
9645
  return \"addil LR'%1-$tls_dtpoff$,%2\;ldo RR'%1-$tls_dtpoff$(%%r1),%0\";
9646
}"
9647
  [(set_attr "type" "multi")
9648
   (set_attr "length" "8")])
9649
 
9650
(define_insn "tp_load"
9651
  [(set (match_operand:SI 0 "register_operand" "=r")
9652
        (unspec:SI [(const_int 0)] UNSPEC_TP))]
9653
  ""
9654
  "mfctl %%cr27,%0"
9655
  [(set_attr "type" "multi")
9656
   (set_attr "length" "4")])
9657
 
9658
(define_insn "tie_load"
9659
  [(set (match_operand:SI 0 "register_operand" "=r")
9660
        (unspec:SI [(match_operand 1 "tie_symbolic_operand" "")] UNSPEC_TLSIE))
9661
   (clobber (reg:SI 1))
9662
   (use (reg:SI 27))]
9663
  ""
9664
  "*
9665
{
9666
  return \"addil LR'%1-$tls_ieoff$,%%r27\;ldw RR'%1-$tls_ieoff$(%%r1),%0\";
9667
}"
9668
  [(set_attr "type" "multi")
9669
   (set_attr "length" "8")])
9670
 
9671
(define_insn "tie_load_pic"
9672
  [(set (match_operand:SI 0 "register_operand" "=r")
9673
        (unspec:SI [(match_operand 1 "tie_symbolic_operand" "")] UNSPEC_TLSIE_PIC))
9674
   (clobber (reg:SI 1))
9675
   (use (reg:SI 19))]
9676
  ""
9677
  "*
9678
{
9679
  return \"addil LT'%1-$tls_ieoff$,%%r19\;ldw RT'%1-$tls_ieoff$(%%r1),%0\";
9680
}"
9681
  [(set_attr "type" "multi")
9682
   (set_attr "length" "8")])
9683
 
9684
(define_insn "tle_load"
9685
  [(set (match_operand:SI 0 "register_operand" "=r")
9686
        (plus:SI (unspec:SI [(match_operand 1 "tle_symbolic_operand" "")]
9687
                            UNSPEC_TLSLE)
9688
                 (match_operand:SI 2 "register_operand" "r")))
9689
   (clobber (reg:SI 1))]
9690
  ""
9691
  "addil LR'%1-$tls_leoff$,%2\;ldo RR'%1-$tls_leoff$(%%r1),%0"
9692
  [(set_attr "type" "multi")
9693
   (set_attr "length" "8")])

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.