OSDN Git Service

* a29k/t-a29kbare: Fix some comments.
[pf3gnuchains/gcc-fork.git] / gcc / config / pa / pa.h
1 /* Definitions of target machine for GNU compiler, for the HP Spectrum.
2    Copyright (C) 1992, 93-98, 1999 Free Software Foundation, Inc.
3    Contributed by Michael Tiemann (tiemann@cygnus.com) of Cygnus Support
4    and Tim Moore (moore@defmacro.cs.utah.edu) of the Center for
5    Software Science at the University of Utah.
6
7 This file is part of GNU CC.
8
9 GNU CC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 1, or (at your option)
12 any later version.
13
14 GNU CC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GNU CC; see the file COPYING.  If not, write to
21 the Free Software Foundation, 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA.  */
23
24 enum cmp_type                           /* comparison type */
25 {
26   CMP_SI,                               /* compare integers */
27   CMP_SF,                               /* compare single precision floats */
28   CMP_DF,                               /* compare double precision floats */
29   CMP_MAX                               /* max comparison type */
30 };
31
32 /* For long call handling.  */
33 extern unsigned int total_code_bytes;
34
35 /* Which processor to schedule for.  */
36
37 enum processor_type
38 {
39   PROCESSOR_700,
40   PROCESSOR_7100,
41   PROCESSOR_7100LC,
42   PROCESSOR_7200,
43   PROCESSOR_8000
44 };
45
46 /* For -mschedule= option.  */
47 extern char *pa_cpu_string;
48 extern enum processor_type pa_cpu;
49
50 #define pa_cpu_attr ((enum attr_cpu)pa_cpu)
51
52 /* The 700 can only issue a single insn at a time.
53    The 7XXX processors can issue two insns at a time.
54    The 8000 can issue 4 insns at a time.  */
55 #define ISSUE_RATE \
56   (pa_cpu == PROCESSOR_700 ? 1 \
57    : pa_cpu == PROCESSOR_7100 ? 2 \
58    : pa_cpu == PROCESSOR_7100LC ? 2 \
59    : pa_cpu == PROCESSOR_7200 ? 2 \
60    : pa_cpu == PROCESSOR_8000 ? 4 \
61    : 2)
62
63 /* Which architecture to generate code for.  */
64
65 enum architecture_type
66 {
67   ARCHITECTURE_10,
68   ARCHITECTURE_11,
69   ARCHITECTURE_20
70 };
71
72 /* For -march= option.  */
73 extern char *pa_arch_string;
74 extern enum architecture_type pa_arch;
75
76 /* Print subsidiary information on the compiler version in use.  */
77
78 #define TARGET_VERSION fputs (" (hppa)", stderr);
79
80 /* Run-time compilation parameters selecting different hardware subsets.  */
81
82 extern int target_flags;
83
84 /* compile code for HP-PA 1.1 ("Snake") */
85
86 #define MASK_PA_11 1
87 #define TARGET_PA_11 (target_flags & MASK_PA_11)
88
89 /* Disable all FP registers (they all become fixed).  This may be necessary
90    for compiling kernels which perform lazy context switching of FP regs.
91    Note if you use this option and try to perform floating point operations
92    the compiler will abort!  */
93
94 #define MASK_DISABLE_FPREGS 2
95 #define TARGET_DISABLE_FPREGS (target_flags & MASK_DISABLE_FPREGS)
96
97 /* Generate code which assumes that calls through function pointers will
98    never cross a space boundary.  Such assumptions are generally safe for
99    building kernels and statically linked executables.  Code compiled with
100    this option will fail miserably if the executable is dynamically linked
101    or uses nested functions!
102
103    This is also used to trigger aggressive unscaled index addressing.  */
104 #define MASK_NO_SPACE_REGS 4
105 #define TARGET_NO_SPACE_REGS (target_flags & MASK_NO_SPACE_REGS)
106
107 /* Allow unconditional jumps in the delay slots of call instructions.  */
108 #define MASK_JUMP_IN_DELAY 8
109 #define TARGET_JUMP_IN_DELAY (target_flags & MASK_JUMP_IN_DELAY)
110
111 /* Disable indexed addressing modes.  */
112 #define MASK_DISABLE_INDEXING 32
113 #define TARGET_DISABLE_INDEXING (target_flags & MASK_DISABLE_INDEXING)
114
115 /* Emit code which follows the new portable runtime calling conventions
116    HP wants everyone to use for ELF objects.  If at all possible you want
117    to avoid this since it's a performance loss for non-prototyped code.
118
119    Note TARGET_PORTABLE_RUNTIME also forces all calls to use inline
120    long-call stubs which is quite expensive.  */
121 #define MASK_PORTABLE_RUNTIME 64
122 #define TARGET_PORTABLE_RUNTIME (target_flags & MASK_PORTABLE_RUNTIME)
123
124 /* Emit directives only understood by GAS.  This allows parameter
125    relocations to work for static functions.  There is no way
126    to make them work the HP assembler at this time.  */
127 #define MASK_GAS 128
128 #define TARGET_GAS (target_flags & MASK_GAS)
129
130 /* Emit code for processors which do not have an FPU.  */
131 #define MASK_SOFT_FLOAT 256
132 #define TARGET_SOFT_FLOAT (target_flags & MASK_SOFT_FLOAT)
133
134 /* Use 3-insn load/store sequences for access to large data segments
135    in shared libraries on hpux10.  */
136 #define MASK_LONG_LOAD_STORE 512
137 #define TARGET_LONG_LOAD_STORE (target_flags & MASK_LONG_LOAD_STORE)
138
139 /* Use a faster sequence for indirect calls.  */
140 #define MASK_FAST_INDIRECT_CALLS 1024
141 #define TARGET_FAST_INDIRECT_CALLS (target_flags & MASK_FAST_INDIRECT_CALLS)
142
143 /* Generate code with big switch statements to avoid out of range branches
144    occurring within the switch table.  */
145 #define MASK_BIG_SWITCH 2048
146 #define TARGET_BIG_SWITCH (target_flags & MASK_BIG_SWITCH)
147
148
149 /* Generate code for the HPPA 2.0 architecture.  TARGET_PA_11 should also be
150    true when this is true.  */
151 #define MASK_PA_20 4096
152 #define TARGET_PA_20 (target_flags & MASK_PA_20)
153
154 /* Macro to define tables used to set the flags.
155    This is a list in braces of pairs in braces,
156    each pair being { "NAME", VALUE }
157    where VALUE is the bits to set or minus the bits to clear.
158    An empty string NAME is used to identify the default VALUE.  */
159
160 #define TARGET_SWITCHES \
161   {{"snake", MASK_PA_11, "Generate PA1.1 code"},                        \
162    {"nosnake", -(MASK_PA_11 | MASK_PA_20), "Generate PA1.0 code"},              \
163    {"pa-risc-1-0", -(MASK_PA_11 | MASK_PA_20), "Generate PA1.0 code"},          \
164    {"pa-risc-1-1", MASK_PA_11, "Generate PA1.1 code"},                  \
165    {"pa-risc-2-0", MASK_PA_20, "Generate PA2.0 code.  This option requires gas snapshot 19990413 or later"},                    \
166    {"disable-fpregs", MASK_DISABLE_FPREGS, "Disable FP regs"},          \
167    {"no-disable-fpregs", -MASK_DISABLE_FPREGS, "Do not disable FP regs"},\
168    {"no-space-regs", MASK_NO_SPACE_REGS, "Disable space regs"},         \
169    {"space-regs", -MASK_NO_SPACE_REGS, "Do not disable space regs"},    \
170    {"jump-in-delay", MASK_JUMP_IN_DELAY, "Put jumps in call delay slots"},\
171    {"no-jump-in-delay", -MASK_JUMP_IN_DELAY, "Do not put jumps in call delay slots"},   \
172    {"disable-indexing", MASK_DISABLE_INDEXING, "Disable indexed addressing"},\
173    {"no-disable-indexing", -MASK_DISABLE_INDEXING, "Do not disable indexed addressing"},\
174    {"portable-runtime", MASK_PORTABLE_RUNTIME, "Use portable calling conventions"},     \
175    {"no-portable-runtime", -MASK_PORTABLE_RUNTIME, "Do not use portable calling conventions"},\
176    {"gas", MASK_GAS, "Assume code will be assembled by GAS"},           \
177    {"no-gas", -MASK_GAS, "Do not assume code will be assembled by GAS"},                \
178    {"soft-float", MASK_SOFT_FLOAT, "Use software floating point"},              \
179    {"no-soft-float", -MASK_SOFT_FLOAT, "Do not use software floating point"},   \
180    {"long-load-store", MASK_LONG_LOAD_STORE, "Emit long load/store sequences"}, \
181    {"no-long-load-store", -MASK_LONG_LOAD_STORE, "Do not emit long load/store sequences"},\
182    {"fast-indirect-calls", MASK_FAST_INDIRECT_CALLS, "Generate fast indirect calls"},\
183    {"no-fast-indirect-calls", -MASK_FAST_INDIRECT_CALLS, "Do not generate fast indirect calls"},\
184    {"big-switch", MASK_BIG_SWITCH, "Generate code for huge switch statements"}, \
185    {"no-big-switch", -MASK_BIG_SWITCH, "Do not generate code for huge switch statements"},      \
186    {"linker-opt", 0, "Enable linker optimizations"},            \
187    { "", TARGET_DEFAULT | TARGET_CPU_DEFAULT, NULL}}
188
189 #ifndef TARGET_DEFAULT
190 #define TARGET_DEFAULT (MASK_GAS | MASK_JUMP_IN_DELAY)
191 #endif
192
193 #ifndef TARGET_CPU_DEFAULT
194 #define TARGET_CPU_DEFAULT 0
195 #endif
196
197 #define TARGET_OPTIONS                  \
198 {                                       \
199   { "schedule=",        &pa_cpu_string, "Specify CPU for scheduling purposes" },\
200   { "arch=",            &pa_arch_string, "Specify architecture for code generation.  Values are 1.0, 1.1, and 2.0.  2.0 requires gas snapshot 19990413 or later." }\
201 }
202
203 #define OVERRIDE_OPTIONS override_options ()
204
205 /* stabs-in-som is nearly identical to stabs-in-elf.  To avoid useless
206    code duplication we simply include this file and override as needed.  */
207 #include "dbxelf.h"
208
209 /* We do not have to be compatible with dbx, so we enable gdb extensions
210    by default.  */
211 #define DEFAULT_GDB_EXTENSIONS 1
212
213 /* This used to be zero (no max length), but big enums and such can
214    cause huge strings which killed gas.
215
216    We also have to avoid lossage in dbxout.c -- it does not compute the
217    string size accurately, so we are real conservative here.  */
218 #undef DBX_CONTIN_LENGTH
219 #define DBX_CONTIN_LENGTH 3000
220
221 /* Only labels should ever begin in column zero.  */
222 #define ASM_STABS_OP "\t.stabs"
223 #define ASM_STABN_OP "\t.stabn"
224
225 /* How to renumber registers for dbx and gdb.
226
227    Registers 0  - 31 remain unchanged.
228
229    Registers 32 - 87 are mapped to 72 - 127
230
231    Register 88 is mapped to 32.  */
232
233 #define DBX_REGISTER_NUMBER(REGNO) \
234   ((REGNO) <= 31 ? (REGNO) :                                            \
235    ((REGNO) > 31 && (REGNO) <= 87 ? (REGNO) + 40 : 32))
236
237 /* GDB always assumes the current function's frame begins at the value
238    of the stack pointer upon entry to the current function.  Accessing
239    local variables and parameters passed on the stack is done using the
240    base of the frame + an offset provided by GCC.
241
242    For functions which have frame pointers this method works fine;
243    the (frame pointer) == (stack pointer at function entry) and GCC provides
244    an offset relative to the frame pointer.
245
246    This loses for functions without a frame pointer; GCC provides an offset
247    which is relative to the stack pointer after adjusting for the function's
248    frame size.  GDB would prefer the offset to be relative to the value of
249    the stack pointer at the function's entry.  Yuk!  */
250 #define DEBUGGER_AUTO_OFFSET(X) \
251   ((GET_CODE (X) == PLUS ? INTVAL (XEXP (X, 1)) : 0) \
252     + (frame_pointer_needed ? 0 : compute_frame_size (get_frame_size (), 0)))
253
254 #define DEBUGGER_ARG_OFFSET(OFFSET, X) \
255   ((GET_CODE (X) == PLUS ? OFFSET : 0) \
256     + (frame_pointer_needed ? 0 : compute_frame_size (get_frame_size (), 0)))
257
258 #if ((TARGET_DEFAULT | TARGET_CPU_DEFAULT) & MASK_PA_11) == 0
259 #define CPP_SPEC "%{msnake:-D__hp9000s700 -D_PA_RISC1_1}\
260  %{mpa-risc-1-1:-D__hp9000s700 -D_PA_RISC1_1}\
261  %{!ansi: -D_HPUX_SOURCE -D_HIUX_SOURCE -D__STDC_EXT__}\
262  %{threads:-D_REENTRANT -D_DCE_THREADS}"
263 #else
264 #define CPP_SPEC "%{!mpa-risc-1-0:%{!mnosnake:%{!msoft-float:-D__hp9000s700 -D_PA_RISC1_1}}} \
265  %{!ansi: -D_HPUX_SOURCE -D_HIUX_SOURCE -D__STDC_EXT__}\
266  %{threads:-D_REENTRANT -D_DCE_THREADS}"
267 #endif
268
269 /* Defines for a K&R CC */
270
271 #define CC1_SPEC "%{pg:} %{p:}"
272
273 #define LINK_SPEC "%{mlinker-opt:-O} %{!shared:-u main} %{shared:-b}"
274
275 /* We don't want -lg.  */
276 #ifndef LIB_SPEC
277 #define LIB_SPEC "%{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}"
278 #endif
279
280 /* Make gcc agree with <machine/ansi.h> */
281
282 #define SIZE_TYPE "unsigned int"
283 #define PTRDIFF_TYPE "int"
284 #define WCHAR_TYPE "unsigned int"
285 #define WCHAR_TYPE_SIZE 32
286
287 /* Show we can debug even without a frame pointer.  */
288 #define CAN_DEBUG_WITHOUT_FP
289
290 /* Machine dependent reorg pass.  */
291 #define MACHINE_DEPENDENT_REORG(X) pa_reorg(X)
292
293 /* Prototype function used in MACHINE_DEPENDENT_REORG macro. */
294 void pa_reorg ();
295
296 /* Prototype function used in various macros. */
297 int symbolic_operand ();
298
299 /* Used in insn-*.c. */
300 int following_call ();
301 int function_label_operand ();
302 int lhs_lshift_cint_operand ();
303
304 /* Names to predefine in the preprocessor for this target machine.  */
305
306 #define CPP_PREDEFINES "-Dhppa -Dhp9000s800 -D__hp9000s800 -Dhp9k8 -Dunix -Dhp9000 -Dhp800 -Dspectrum -DREVARGV -Asystem(unix) -Asystem(bsd) -Acpu(hppa) -Amachine(hppa)"
307 \f
308 /* target machine storage layout */
309
310 /* Define for cross-compilation from a host with a different float format
311    or endianness (e.g. VAX, x86).  */
312 #define REAL_ARITHMETIC
313
314 /* Define this macro if it is advisable to hold scalars in registers
315    in a wider mode than that declared by the program.  In such cases, 
316    the value is constrained to be within the bounds of the declared
317    type, but kept valid in the wider mode.  The signedness of the
318    extension may differ from that of the type.  */
319
320 #define PROMOTE_MODE(MODE,UNSIGNEDP,TYPE)  \
321   if (GET_MODE_CLASS (MODE) == MODE_INT \
322       && GET_MODE_SIZE (MODE) < UNITS_PER_WORD)         \
323     (MODE) = word_mode;
324
325 /* Define this if most significant bit is lowest numbered
326    in instructions that operate on numbered bit-fields.  */
327 #define BITS_BIG_ENDIAN 1
328
329 /* Define this if most significant byte of a word is the lowest numbered.  */
330 /* That is true on the HP-PA.  */
331 #define BYTES_BIG_ENDIAN 1
332
333 /* Define this if most significant word of a multiword number is lowest
334    numbered.  */
335 #define WORDS_BIG_ENDIAN 1
336
337 /* number of bits in an addressable storage unit */
338 #define BITS_PER_UNIT 8
339
340 /* Width in bits of a "word", which is the contents of a machine register.
341    Note that this is not necessarily the width of data type `int';
342    if using 16-bit ints on a 68000, this would still be 32.
343    But on a machine with 16-bit registers, this would be 16.  */
344 #define BITS_PER_WORD 32
345
346 /* Width of a word, in units (bytes).  */
347 #define UNITS_PER_WORD 4
348
349 /* Width in bits of a pointer.
350    See also the macro `Pmode' defined below.  */
351 #define POINTER_SIZE BITS_PER_WORD
352
353 /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
354 #define PARM_BOUNDARY BITS_PER_WORD
355
356 /* Largest alignment required for any stack parameter, in bits.
357    Don't define this if it is equal to PARM_BOUNDARY */
358 #define MAX_PARM_BOUNDARY 64
359
360 /* Boundary (in *bits*) on which stack pointer is always aligned;
361    certain optimizations in combine depend on this.
362
363    GCC for the PA always rounds its stacks to a 512bit boundary,
364    but that happens late in the compilation process.  */
365 #define STACK_BOUNDARY 64
366
367 /* Allocation boundary (in *bits*) for the code of a function.  */
368 #define FUNCTION_BOUNDARY 32
369
370 /* Alignment of field after `int : 0' in a structure.  */
371 #define EMPTY_FIELD_BOUNDARY 32
372
373 /* Every structure's size must be a multiple of this.  */
374 #define STRUCTURE_SIZE_BOUNDARY 8
375
376 /* A bitfield declared as `int' forces `int' alignment for the struct.  */
377 #define PCC_BITFIELD_TYPE_MATTERS 1
378
379 /* No data type wants to be aligned rounder than this.  */
380 #define BIGGEST_ALIGNMENT 64
381
382 /* Get around hp-ux assembler bug, and make strcpy of constants fast. */
383 #define CONSTANT_ALIGNMENT(CODE, TYPEALIGN) \
384   ((TYPEALIGN) < 32 ? 32 : (TYPEALIGN))
385
386 /* Make arrays of chars word-aligned for the same reasons.  */
387 #define DATA_ALIGNMENT(TYPE, ALIGN)             \
388   (TREE_CODE (TYPE) == ARRAY_TYPE               \
389    && TYPE_MODE (TREE_TYPE (TYPE)) == QImode    \
390    && (ALIGN) < BITS_PER_WORD ? BITS_PER_WORD : (ALIGN))
391
392
393 /* Set this nonzero if move instructions will actually fail to work
394    when given unaligned data.  */
395 #define STRICT_ALIGNMENT 1
396
397 /* Generate calls to memcpy, memcmp and memset.  */
398 #define TARGET_MEM_FUNCTIONS
399 \f
400 /* Standard register usage.  */
401
402 /* Number of actual hardware registers.
403    The hardware registers are assigned numbers for the compiler
404    from 0 to just below FIRST_PSEUDO_REGISTER.
405    All registers that the compiler knows about must be given numbers,
406    even those that are not normally considered general registers.
407
408    HP-PA 1.0 has 32 fullword registers and 16 floating point
409    registers. The floating point registers hold either word or double
410    word values.
411
412    16 additional registers are reserved.
413
414    HP-PA 1.1 has 32 fullword registers and 32 floating point
415    registers. However, the floating point registers behave
416    differently: the left and right halves of registers are addressable
417    as 32 bit registers. So, we will set things up like the 68k which
418    has different fp units: define separate register sets for the 1.0
419    and 1.1 fp units. */
420
421 #define FIRST_PSEUDO_REGISTER 89  /* 32 general regs + 56 fp regs +
422                                      + 1 shift reg */
423
424 /* 1 for registers that have pervasive standard uses
425    and are not available for the register allocator.
426
427    On the HP-PA, these are:
428    Reg 0        = 0 (hardware). However, 0 is used for condition code,
429                   so is not fixed.
430    Reg 1        = ADDIL target/Temporary (hardware).
431    Reg 2        = Return Pointer
432    Reg 3        = Frame Pointer
433    Reg 4        = Frame Pointer (>8k varying frame with HP compilers only)
434    Reg 4-18     = Preserved Registers
435    Reg 19       = Linkage Table Register in HPUX 8.0 shared library scheme.
436    Reg 20-22    = Temporary Registers
437    Reg 23-26    = Temporary/Parameter Registers
438    Reg 27       = Global Data Pointer (hp)
439    Reg 28       = Temporary/???/Return Value register
440    Reg 29       = Temporary/Static Chain/Return Value register #2
441    Reg 30       = stack pointer
442    Reg 31       = Temporary/Millicode Return Pointer (hp)
443
444    Freg 0-3     = Status Registers       -- Not known to the compiler.
445    Freg 4-7     = Arguments/Return Value
446    Freg 8-11    = Temporary Registers
447    Freg 12-15   = Preserved Registers
448
449    Freg 16-31   = Reserved
450
451    On the Snake, fp regs are
452
453    Freg 0-3     = Status Registers      -- Not known to the compiler.
454    Freg 4L-7R   = Arguments/Return Value
455    Freg 8L-11R  = Temporary Registers
456    Freg 12L-21R = Preserved Registers
457    Freg 22L-31R = Temporary Registers
458
459 */
460
461 #define FIXED_REGISTERS  \
462  {0, 0, 0, 0, 0, 0, 0, 0, \
463   0, 0, 0, 0, 0, 0, 0, 0, \
464   0, 0, 0, 0, 0, 0, 0, 0, \
465   0, 0, 0, 1, 0, 0, 1, 0, \
466   /* fp registers */      \
467   0, 0, 0, 0, 0, 0, 0, 0, \
468   0, 0, 0, 0, 0, 0, 0, 0, \
469   0, 0, 0, 0, 0, 0, 0, 0, \
470   0, 0, 0, 0, 0, 0, 0, 0, \
471   0, 0, 0, 0, 0, 0, 0, 0, \
472   0, 0, 0, 0, 0, 0, 0, 0, \
473   0, 0, 0, 0, 0, 0, 0, 0, \
474   0}
475
476 /* 1 for registers not available across function calls.
477    These must include the FIXED_REGISTERS and also any
478    registers that can be used without being saved.
479    The latter must include the registers where values are returned
480    and the register where structure-value addresses are passed.
481    Aside from that, you can include as many other registers as you like.  */
482 #define CALL_USED_REGISTERS  \
483  {1, 1, 1, 0, 0, 0, 0, 0, \
484   0, 0, 0, 0, 0, 0, 0, 0, \
485   0, 0, 0, 1, 1, 1, 1, 1, \
486   1, 1, 1, 1, 1, 1, 1, 1, \
487   /* fp registers */      \
488   1, 1, 1, 1, 1, 1, 1, 1, \
489   1, 1, 1, 1, 1, 1, 1, 1, \
490   0, 0, 0, 0, 0, 0, 0, 0, \
491   0, 0, 0, 0, 0, 0, 0, 0, \
492   0, 0, 0, 0, 1, 1, 1, 1, \
493   1, 1, 1, 1, 1, 1, 1, 1, \
494   1, 1, 1, 1, 1, 1, 1, 1, \
495   1}
496
497 #define CONDITIONAL_REGISTER_USAGE \
498 {                                               \
499   if (!TARGET_PA_11)                            \
500     {                                           \
501       for (i = 56; i < 88; i++)                 \
502         fixed_regs[i] = call_used_regs[i] = 1;  \
503       for (i = 33; i < 88; i += 2)              \
504         fixed_regs[i] = call_used_regs[i] = 1;  \
505     }                                           \
506   if (TARGET_DISABLE_FPREGS || TARGET_SOFT_FLOAT)\
507     {                                           \
508       for (i = 32; i < 88; i++)                 \
509         fixed_regs[i] = call_used_regs[i] = 1;  \
510     }                                           \
511   if (flag_pic)                                 \
512     {                                           \
513       fixed_regs[PIC_OFFSET_TABLE_REGNUM] = 1;  \
514       fixed_regs[PIC_OFFSET_TABLE_REGNUM_SAVED] = 1;\
515     }                                           \
516 }
517
518 /* Allocate the call used registers first.  This should minimize
519    the number of registers that need to be saved (as call used
520    registers will generally not be allocated across a call).
521
522    Experimentation has shown slightly better results by allocating
523    FP registers first.  
524
525    FP registers are ordered so that all L registers are selected before
526    R registers.  This works around a false dependency interlock on the
527    PA8000 when accessing the high and low parts of an FP register
528    independently.  */
529
530 #define REG_ALLOC_ORDER \
531  {                                      \
532   /* caller-saved fp regs.  */          \
533   68, 70, 72, 74, 76, 78, 80, 82,       \
534   84, 86, 40, 42, 44, 46, 32, 34,       \
535   36, 38,                               \
536   69, 71, 73, 75, 77, 79, 81, 83,       \
537   85, 87, 41, 43, 45, 47, 33, 35,       \
538   37, 39,                               \
539   /* caller-saved general regs.  */     \
540   19, 20, 21, 22, 23, 24, 25, 26,       \
541   27, 28, 29, 31,  2,                   \
542   /* callee-saved fp regs.  */          \
543   48, 50, 52, 54, 56, 58, 60, 62,       \
544   64, 66,                               \
545   49, 51, 53, 55, 57, 59, 61, 63,       \
546   65, 67,                               \
547   /* callee-saved general regs.  */     \
548    3,  4,  5,  6,  7,  8,  9, 10,       \
549   11, 12, 13, 14, 15, 16, 17, 18,       \
550   /* special registers.  */             \
551    1, 30,  0, 88}
552
553
554 /* True if register is floating-point.  */
555 #define FP_REGNO_P(N) ((N) >= 32 && (N) <= 87)
556
557 /* Return number of consecutive hard regs needed starting at reg REGNO
558    to hold something of mode MODE.
559    This is ordinarily the length in words of a value of mode MODE
560    but can be less for certain modes in special long registers.
561
562    On the HP-PA, ordinary registers hold 32 bits worth;
563    The floating point registers are 64 bits wide. Snake fp regs are 32
564    bits wide */
565 #define HARD_REGNO_NREGS(REGNO, MODE)                                   \
566   (FP_REGNO_P (REGNO)                                                   \
567    ? (!TARGET_PA_11 ? 1 : (GET_MODE_SIZE (MODE) + 4 - 1) / 4)           \
568    : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
569
570 /* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
571    On the HP-PA, the cpu registers can hold any mode.  We
572    force this to be an even register is it cannot hold the full mode.  */
573 #define HARD_REGNO_MODE_OK(REGNO, MODE) \
574   ((REGNO) == 0 ? (MODE) == CCmode || (MODE) == CCFPmode                \
575    /* On 1.0 machines, don't allow wide non-fp modes in fp regs. */     \
576    : !TARGET_PA_11 && FP_REGNO_P (REGNO)                                \
577      ? GET_MODE_SIZE (MODE) <= 4 || GET_MODE_CLASS (MODE) == MODE_FLOAT \
578    /* Make wide modes be in aligned registers. */                       \
579    : GET_MODE_SIZE (MODE) <= UNITS_PER_WORD || ((REGNO) & 1) == 0)
580
581 /* Value is 1 if it is a good idea to tie two pseudo registers
582    when one has mode MODE1 and one has mode MODE2.
583    If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
584    for any hard reg, then this must be 0 for correct output.  */
585 #define MODES_TIEABLE_P(MODE1, MODE2) \
586   (GET_MODE_CLASS (MODE1) == GET_MODE_CLASS (MODE2))
587
588 /* Specify the registers used for certain standard purposes.
589    The values of these macros are register numbers.  */
590
591 /* The HP-PA pc isn't overloaded on a register that the compiler knows about.  */
592 /* #define PC_REGNUM  */
593
594 /* Register to use for pushing function arguments.  */
595 #define STACK_POINTER_REGNUM 30
596
597 /* Base register for access to local variables of the function.  */
598 #define FRAME_POINTER_REGNUM 3
599
600 /* Value should be nonzero if functions must have frame pointers.  */
601 #define FRAME_POINTER_REQUIRED \
602   (current_function_calls_alloca)
603
604 /* C statement to store the difference between the frame pointer
605    and the stack pointer values immediately after the function prologue.
606
607    Note, we always pretend that this is a leaf function because if
608    it's not, there's no point in trying to eliminate the
609    frame pointer.  If it is a leaf function, we guessed right!  */
610 #define INITIAL_FRAME_POINTER_OFFSET(VAR) \
611   do {(VAR) = - compute_frame_size (get_frame_size (), 0);} while (0)
612
613 /* Base register for access to arguments of the function.  */
614 #define ARG_POINTER_REGNUM 3
615
616 /* Register in which static-chain is passed to a function.  */
617 /* ??? */
618 #define STATIC_CHAIN_REGNUM 29
619
620 /* Register which holds offset table for position-independent
621    data references.  */
622
623 #define PIC_OFFSET_TABLE_REGNUM 19
624 #define PIC_OFFSET_TABLE_REG_CALL_CLOBBERED 1
625
626 /* Register into which we save the PIC_OFFEST_TABLE_REGNUM so that it
627    can be restore across function calls.  */
628 #define PIC_OFFSET_TABLE_REGNUM_SAVED 4
629
630 /* SOM ABI says that objects larger than 64 bits are returned in memory.  */
631 #define DEFAULT_PCC_STRUCT_RETURN 0
632 #define RETURN_IN_MEMORY(TYPE)  \
633   (int_size_in_bytes (TYPE) > 8)
634
635 /* Register in which address to store a structure value
636    is passed to a function.  */
637 #define STRUCT_VALUE_REGNUM 28
638 \f
639 /* Define the classes of registers for register constraints in the
640    machine description.  Also define ranges of constants.
641
642    One of the classes must always be named ALL_REGS and include all hard regs.
643    If there is more than one class, another class must be named NO_REGS
644    and contain no registers.
645
646    The name GENERAL_REGS must be the name of a class (or an alias for
647    another name such as ALL_REGS).  This is the class of registers
648    that is allowed by "g" or "r" in a register constraint.
649    Also, registers outside this class are allocated only when
650    instructions express preferences for them.
651
652    The classes must be numbered in nondecreasing order; that is,
653    a larger-numbered class must never be contained completely
654    in a smaller-numbered class.
655
656    For any two classes, it is very desirable that there be another
657    class that represents their union.  */
658
659   /* The HP-PA has four kinds of registers: general regs, 1.0 fp regs,
660      1.1 fp regs, and the high 1.1 fp regs, to which the operands of
661      fmpyadd and fmpysub are restricted.  */
662
663 enum reg_class { NO_REGS, R1_REGS, GENERAL_REGS, FPUPPER_REGS, FP_REGS, GENERAL_OR_FP_REGS,
664   SHIFT_REGS, ALL_REGS, LIM_REG_CLASSES};
665
666 #define N_REG_CLASSES (int) LIM_REG_CLASSES
667
668 /* Give names of register classes as strings for dump file.   */
669
670 #define REG_CLASS_NAMES \
671   {"NO_REGS", "R1_REGS", "GENERAL_REGS", "FPUPPER_REGS", "FP_REGS", \
672    "GENERAL_OR_FP_REGS", "SHIFT_REGS", "ALL_REGS"}
673
674 /* Define which registers fit in which classes.
675    This is an initializer for a vector of HARD_REG_SET
676    of length N_REG_CLASSES. Register 0, the "condition code" register,
677    is in no class. */
678
679 #define REG_CLASS_CONTENTS      \
680  {{0x00000000, 0x00000000, 0x00000000}, /* NO_REGS */                   \
681   {0x00000002, 0x00000000, 0x00000000}, /* R1_REGS */                   \
682   {0xfffffffe, 0x00000000, 0x00000000}, /* GENERAL_REGS */              \
683   {0x00000000, 0xff000000, 0x00ffffff}, /* FPUPPER_REGS */                      \
684   {0x00000000, 0xffffffff, 0x00ffffff}, /* FP_REGS */                   \
685   {0xfffffffe, 0xffffffff, 0x00ffffff}, /* GENERAL_OR_FP_REGS */        \
686   {0x00000000, 0x00000000, 0x01000000}, /* SHIFT_REGS */                \
687   {0xfffffffe, 0xffffffff, 0x01ffffff}} /* ALL_REGS */
688
689 /* The same information, inverted:
690    Return the class number of the smallest class containing
691    reg number REGNO.  This could be a conditional expression
692    or could index an array.  */
693
694 #define REGNO_REG_CLASS(REGNO)                                          \
695   ((REGNO) == 0 ? NO_REGS                                               \
696    : (REGNO) == 1 ? R1_REGS                                             \
697    : (REGNO) < 32 ? GENERAL_REGS                                        \
698    : (REGNO) < 56 ? FP_REGS                                             \
699    : (REGNO) < 88 ? FPUPPER_REGS                                                \
700    : SHIFT_REGS)
701
702 /* The class value for index registers, and the one for base regs.  */
703 #define INDEX_REG_CLASS GENERAL_REGS
704 #define BASE_REG_CLASS GENERAL_REGS
705
706 #define FP_REG_CLASS_P(CLASS) \
707   ((CLASS) == FP_REGS || (CLASS) == FPUPPER_REGS)
708
709 /* Get reg_class from a letter such as appears in the machine description.  */
710 /* Keep 'x' for backward compatibility with user asm.   */
711 #define REG_CLASS_FROM_LETTER(C) \
712   ((C) == 'f' ? FP_REGS :                                       \
713    (C) == 'y' ? FPUPPER_REGS :                                  \
714    (C) == 'x' ? FP_REGS :                                       \
715    (C) == 'q' ? SHIFT_REGS :                                    \
716    (C) == 'a' ? R1_REGS :                                       \
717    (C) == 'Z' ? ALL_REGS : NO_REGS)
718
719 /* The letters I, J, K, L and M in a register constraint string
720    can be used to stand for particular ranges of immediate operands.
721    This macro defines what the ranges are.
722    C is the letter, and VALUE is a constant value.
723    Return 1 if VALUE is in the range specified by C.
724
725    `I' is used for the 11 bit constants.
726    `J' is used for the 14 bit constants.
727    `K' is used for values that can be moved with a zdepi insn.
728    `L' is used for the 5 bit constants.
729    `M' is used for 0.
730    `N' is used for values with the least significant 11 bits equal to zero.
731    `O' is used for numbers n such that n+1 is a power of 2.
732    */
733
734 #define CONST_OK_FOR_LETTER_P(VALUE, C)  \
735   ((C) == 'I' ? VAL_11_BITS_P (VALUE)                           \
736    : (C) == 'J' ? VAL_14_BITS_P (VALUE)                         \
737    : (C) == 'K' ? zdepi_cint_p (VALUE)                          \
738    : (C) == 'L' ? VAL_5_BITS_P (VALUE)                          \
739    : (C) == 'M' ? (VALUE) == 0                                  \
740    : (C) == 'N' ? ((VALUE) & 0x7ff) == 0                        \
741    : (C) == 'O' ? (((VALUE) & ((VALUE) + 1)) == 0)              \
742    : (C) == 'P' ? and_mask_p (VALUE)                            \
743    : 0)
744
745 /* Prototype function used in macro CONST_OK_FOR_LETTER_P. */
746 int zdepi_cint_p ();
747
748 /* Similar, but for floating or large integer constants, and defining letters
749    G and H.   Here VALUE is the CONST_DOUBLE rtx itself.
750
751    For PA, `G' is the floating-point constant zero.  `H' is undefined.  */
752
753 #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C)                          \
754   ((C) == 'G' ? (GET_MODE_CLASS (GET_MODE (VALUE)) == MODE_FLOAT        \
755                  && (VALUE) == CONST0_RTX (GET_MODE (VALUE)))           \
756    : 0)
757
758 /* Given an rtx X being reloaded into a reg required to be
759    in class CLASS, return the class of reg to actually use.
760    In general this is just CLASS; but on some machines
761    in some cases it is preferable to use a more restrictive class.  */
762 #define PREFERRED_RELOAD_CLASS(X,CLASS) (CLASS)
763
764 /* Return the register class of a scratch register needed to copy IN into
765    or out of a register in CLASS in MODE.  If it can be done directly
766    NO_REGS is returned. 
767
768   Avoid doing any work for the common case calls.  */
769
770 #define SECONDARY_RELOAD_CLASS(CLASS,MODE,IN) \
771   ((CLASS == BASE_REG_CLASS && GET_CODE (IN) == REG             \
772     && REGNO (IN) < FIRST_PSEUDO_REGISTER)                      \
773    ? NO_REGS : secondary_reload_class (CLASS, MODE, IN))
774
775 /* On the PA it is not possible to directly move data between
776    GENERAL_REGS and FP_REGS.  */
777 #define SECONDARY_MEMORY_NEEDED(CLASS1, CLASS2, MODE)  \
778   (FP_REG_CLASS_P (CLASS1) != FP_REG_CLASS_P (CLASS2))
779
780 /* Return the stack location to use for secondary memory needed reloads.  */
781 #define SECONDARY_MEMORY_NEEDED_RTX(MODE) \
782   gen_rtx_MEM (MODE, gen_rtx_PLUS (Pmode, stack_pointer_rtx, GEN_INT (-16)))
783
784 /* Return the maximum number of consecutive registers
785    needed to represent mode MODE in a register of class CLASS.  */
786 #define CLASS_MAX_NREGS(CLASS, MODE)                                    \
787   ((CLASS) == FP_REGS || (CLASS) == FPUPPER_REGS                        \
788    ? (!TARGET_PA_11 ? 1 : (GET_MODE_SIZE (MODE) + 4 - 1) / 4)           \
789    : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
790
791 \f
792 /* Stack layout; function entry, exit and calling.  */
793
794 /* Define this if pushing a word on the stack
795    makes the stack pointer a smaller address.  */
796 /* #define STACK_GROWS_DOWNWARD */
797
798 /* Believe it or not.  */
799 #define ARGS_GROW_DOWNWARD
800
801 /* Define this if the nominal address of the stack frame
802    is at the high-address end of the local variables;
803    that is, each additional local variable allocated
804    goes at a more negative offset in the frame.  */
805 /* #define FRAME_GROWS_DOWNWARD */
806
807 /* Offset within stack frame to start allocating local variables at.
808    If FRAME_GROWS_DOWNWARD, this is the offset to the END of the
809    first local allocated.  Otherwise, it is the offset to the BEGINNING
810    of the first local allocated.  */
811 #define STARTING_FRAME_OFFSET 8
812
813 /* If we generate an insn to push BYTES bytes,
814    this says how many the stack pointer really advances by.
815    On the HP-PA, don't define this because there are no push insns.  */
816 /*  #define PUSH_ROUNDING(BYTES) */
817
818 /* Offset of first parameter from the argument pointer register value.
819    This value will be negated because the arguments grow down.
820    Also note that on STACK_GROWS_UPWARD machines (such as this one)
821    this is the distance from the frame pointer to the end of the first
822    argument, not it's beginning.  To get the real offset of the first
823    argument, the size of the argument must be added.
824
825    ??? Have to check on this.*/
826
827 #define FIRST_PARM_OFFSET(FNDECL) -32
828
829 /* When a parameter is passed in a register, stack space is still
830    allocated for it.  */
831 #define REG_PARM_STACK_SPACE(DECL) 16
832
833 /* Define this if the above stack space is to be considered part of the
834    space allocated by the caller.  */
835 #define OUTGOING_REG_PARM_STACK_SPACE
836
837 /* Keep the stack pointer constant throughout the function.
838    This is both an optimization and a necessity: longjmp
839    doesn't behave itself when the stack pointer moves within
840    the function!  */
841 #define ACCUMULATE_OUTGOING_ARGS
842
843 /* The weird HPPA calling conventions require a minimum of 48 bytes on
844    the stack: 16 bytes for register saves, and 32 bytes for magic.
845    This is the difference between the logical top of stack and the
846    actual sp. */
847 #define STACK_POINTER_OFFSET -32
848
849 #define STACK_DYNAMIC_OFFSET(FNDECL)    \
850   ((STACK_POINTER_OFFSET) - current_function_outgoing_args_size)
851
852 /* Value is 1 if returning from a function call automatically
853    pops the arguments described by the number-of-args field in the call.
854    FUNDECL is the declaration node of the function (as a tree),
855    FUNTYPE is the data type of the function (as a tree),
856    or for a library call it is an identifier node for the subroutine name.  */
857
858 #define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE) 0
859
860 /* Define how to find the value returned by a function.
861    VALTYPE is the data type of the value (as a tree).
862    If the precise function being called is known, FUNC is its FUNCTION_DECL;
863    otherwise, FUNC is 0.  */
864
865 /* On the HP-PA the value is found in register(s) 28(-29), unless
866    the mode is SF or DF. Then the value is returned in fr4 (32, ) */
867
868
869 #define FUNCTION_VALUE(VALTYPE, FUNC)  \
870   gen_rtx_REG (TYPE_MODE (VALTYPE), ((! TARGET_SOFT_FLOAT                    \
871                                       && (TYPE_MODE (VALTYPE) == SFmode ||  \
872                                           TYPE_MODE (VALTYPE) == DFmode)) ? \
873                                      32 : 28))
874
875 /* Define how to find the value returned by a library function
876    assuming the value has mode MODE.  */
877
878 #define LIBCALL_VALUE(MODE)     \
879   gen_rtx_REG (MODE,                                                    \
880                (! TARGET_SOFT_FLOAT                                     \
881                 && ((MODE) == SFmode || (MODE) == DFmode) ? 32 : 28))
882
883 /* 1 if N is a possible register number for a function value
884    as seen by the caller.  */
885
886 #define FUNCTION_VALUE_REGNO_P(N) \
887   ((N) == 28 || (! TARGET_SOFT_FLOAT && (N) == 32))
888
889 /* 1 if N is a possible register number for function argument passing.  */
890
891 #define FUNCTION_ARG_REGNO_P(N) \
892   (((N) >= 23 && (N) <= 26) || (! TARGET_SOFT_FLOAT && (N) >= 32 && (N) <= 39))
893 \f
894 /* Define a data type for recording info about an argument list
895    during the scan of that argument list.  This data type should
896    hold all necessary information about the function itself
897    and about the args processed so far, enough to enable macros
898    such as FUNCTION_ARG to determine where the next arg should go.
899
900    On the HP-PA, this is a single integer, which is a number of words
901    of arguments scanned so far (including the invisible argument,
902    if any, which holds the structure-value-address).
903    Thus 4 or more means all following args should go on the stack.  */
904
905 struct hppa_args {int words, nargs_prototype, indirect; };
906
907 #define CUMULATIVE_ARGS struct hppa_args
908
909 /* Initialize a variable CUM of type CUMULATIVE_ARGS
910    for a call to a function whose data type is FNTYPE.
911    For a library call, FNTYPE is 0.  */
912
913 #define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME,INDIRECT) \
914   (CUM).words = 0,                                                      \
915   (CUM).indirect = INDIRECT,                                            \
916   (CUM).nargs_prototype = (FNTYPE && TYPE_ARG_TYPES (FNTYPE)            \
917                            ? (list_length (TYPE_ARG_TYPES (FNTYPE)) - 1 \
918                               + (TYPE_MODE (TREE_TYPE (FNTYPE)) == BLKmode \
919                                  || RETURN_IN_MEMORY (TREE_TYPE (FNTYPE)))) \
920                            : 0)
921
922
923
924 /* Similar, but when scanning the definition of a procedure.  We always
925    set NARGS_PROTOTYPE large so we never return a PARALLEL.  */
926
927 #define INIT_CUMULATIVE_INCOMING_ARGS(CUM,FNTYPE,IGNORE) \
928   (CUM).words = 0,                              \
929   (CUM).indirect = 0,                           \
930   (CUM).nargs_prototype = 1000
931
932 /* Figure out the size in words of the function argument. */
933
934 #define FUNCTION_ARG_SIZE(MODE, TYPE)   \
935   ((((MODE) != BLKmode \
936      ? GET_MODE_SIZE (MODE) \
937      : int_size_in_bytes (TYPE)) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
938
939 /* Update the data in CUM to advance over an argument
940    of mode MODE and data type TYPE.
941    (TYPE is null for libcalls where that information may not be available.)  */
942
943 #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED)                    \
944 { (CUM).nargs_prototype--;                                              \
945   ((((CUM).words & 01) && (TYPE) != 0                                   \
946     && FUNCTION_ARG_SIZE(MODE, TYPE) > 1)                               \
947    && (CUM).words++),                                                   \
948      (CUM).words += FUNCTION_ARG_SIZE(MODE, TYPE);                      \
949 }
950
951 /* Determine where to put an argument to a function.
952    Value is zero to push the argument on the stack,
953    or a hard register in which to store the argument.
954
955    MODE is the argument's machine mode.
956    TYPE is the data type of the argument (as a tree).
957     This is null for libcalls where that information may
958     not be available.
959    CUM is a variable of type CUMULATIVE_ARGS which gives info about
960     the preceding args and about the function being called.
961    NAMED is nonzero if this argument is a named parameter
962     (otherwise it is an extra parameter matching an ellipsis).
963
964    On the HP-PA the first four words of args are normally in registers
965    and the rest are pushed.  But any arg that won't entirely fit in regs
966    is pushed.
967
968    Arguments passed in registers are either 1 or 2 words long.
969
970    The caller must make a distinction between calls to explicitly named
971    functions and calls through pointers to functions -- the conventions
972    are different!  Calls through pointers to functions only use general
973    registers for the first four argument words.
974
975    Of course all this is different for the portable runtime model
976    HP wants everyone to use for ELF.  Ugh.  Here's a quick description
977    of how it's supposed to work.
978
979    1) callee side remains unchanged.  It expects integer args to be
980    in the integer registers, float args in the float registers and
981    unnamed args in integer registers.
982
983    2) caller side now depends on if the function being called has
984    a prototype in scope (rather than if it's being called indirectly).
985
986       2a) If there is a prototype in scope, then arguments are passed
987       according to their type (ints in integer registers, floats in float
988       registers, unnamed args in integer registers.
989
990       2b) If there is no prototype in scope, then floating point arguments
991       are passed in both integer and float registers.  egad.
992
993   FYI: The portable parameter passing conventions are almost exactly like
994   the standard parameter passing conventions on the RS6000.  That's why
995   you'll see lots of similar code in rs6000.h.  */
996
997 #define FUNCTION_ARG_PADDING(MODE, TYPE) function_arg_padding ((MODE), (TYPE))
998
999 /* Do not expect to understand this without reading it several times.  I'm
1000    tempted to try and simply it, but I worry about breaking something.  */
1001
1002 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED)                            \
1003   (4 >= ((CUM).words + FUNCTION_ARG_SIZE ((MODE), (TYPE)))              \
1004    ? (!TARGET_PORTABLE_RUNTIME || (TYPE) == 0                           \
1005       || !FLOAT_MODE_P (MODE) || TARGET_SOFT_FLOAT                      \
1006       || (CUM).nargs_prototype > 0)                                     \
1007       ? gen_rtx_REG ((MODE),                                            \
1008                  (FUNCTION_ARG_SIZE ((MODE), (TYPE)) > 1                \
1009                   ? (((!(CUM).indirect                                  \
1010                        || TARGET_PORTABLE_RUNTIME)                      \
1011                       && (MODE) == DFmode                               \
1012                       && ! TARGET_SOFT_FLOAT)                           \
1013                      ? ((CUM).words ? 38 : 34)                          \
1014                      : ((CUM).words ? 23 : 25))                         \
1015                   : (((!(CUM).indirect                                  \
1016                        || TARGET_PORTABLE_RUNTIME)                      \
1017                       && (MODE) == SFmode                               \
1018                       && ! TARGET_SOFT_FLOAT)                           \
1019                      ? (32 + 2 * (CUM).words)                           \
1020                      : (27 - (CUM).words - FUNCTION_ARG_SIZE ((MODE),   \
1021                                                               (TYPE))))))\
1022    /* We are calling a non-prototyped function with floating point      \
1023       arguments using the portable conventions.  */                     \
1024    : gen_rtx_PARALLEL ((MODE),                                          \
1025               gen_rtvec                                                 \
1026               (2,                                                       \
1027                gen_rtx_EXPR_LIST (VOIDmode,                             \
1028                         gen_rtx_REG ((MODE),                            \
1029                                  (FUNCTION_ARG_SIZE ((MODE), (TYPE)) > 1 \
1030                                   ? ((CUM).words ? 38 : 34)             \
1031                                   : (32 + 2 * (CUM).words))),           \
1032                         const0_rtx),                                    \
1033                gen_rtx_EXPR_LIST (VOIDmode,                             \
1034                         gen_rtx_REG ((MODE),                            \
1035                                  (FUNCTION_ARG_SIZE ((MODE), (TYPE)) > 1 \
1036                                   ? ((CUM).words ? 23 : 25)             \
1037                                   : (27 - (CUM).words -                 \
1038                                      FUNCTION_ARG_SIZE ((MODE),         \
1039                                                         (TYPE))))),     \
1040                         const0_rtx)))                                   \
1041   /* Pass this parameter in the stack.  */                              \
1042   : 0)
1043
1044 /* For an arg passed partly in registers and partly in memory,
1045    this is the number of registers used.
1046    For args passed entirely in registers or entirely in memory, zero.  */
1047
1048 #define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) 0
1049
1050 /* If defined, a C expression that gives the alignment boundary, in
1051    bits, of an argument with the specified mode and type.  If it is
1052    not defined,  `PARM_BOUNDARY' is used for all arguments.  */
1053
1054 #define FUNCTION_ARG_BOUNDARY(MODE, TYPE)                               \
1055   (((TYPE) != 0)                                                        \
1056         ? (((int_size_in_bytes (TYPE)) + UNITS_PER_WORD - 1)            \
1057            / UNITS_PER_WORD) * BITS_PER_WORD                            \
1058         : ((GET_MODE_ALIGNMENT(MODE) <= PARM_BOUNDARY)                  \
1059                 ? PARM_BOUNDARY                                         \
1060                 : GET_MODE_ALIGNMENT(MODE)))
1061
1062 /* Arguments larger than eight bytes are passed by invisible reference */
1063
1064 #define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED)          \
1065   ((TYPE) && int_size_in_bytes (TYPE) > 8)
1066  
1067 #define FUNCTION_ARG_CALLEE_COPIES(CUM, MODE, TYPE, NAMED) \
1068   ((TYPE) && int_size_in_bytes (TYPE) > 8)
1069
1070 \f
1071 extern struct rtx_def *hppa_compare_op0, *hppa_compare_op1;
1072 extern enum cmp_type hppa_branch_type;
1073
1074 #define ASM_OUTPUT_MI_THUNK(FILE, THUNK_FNDECL, DELTA, FUNCTION) \
1075 { char *target_name = XSTR (XEXP (DECL_RTL (FUNCTION), 0), 0); \
1076   STRIP_NAME_ENCODING (target_name, target_name); \
1077   output_function_prologue (FILE, 0); \
1078   if (VAL_14_BITS_P (DELTA)) \
1079     fprintf (FILE, "\tb %s\n\tldo %d(%%r26),%%r26\n", target_name, DELTA); \
1080   else \
1081     fprintf (FILE, "\taddil L%%%d,%%r26\n\tb %s\n\tldo R%%%d(%%r1),%%r26\n", \
1082              DELTA, target_name, DELTA); \
1083   fprintf (FILE, "\n\t.EXIT\n\t.PROCEND\n"); \
1084 }
1085
1086 /* This macro generates the assembly code for function entry.
1087    FILE is a stdio stream to output the code to.
1088    SIZE is an int: how many units of temporary storage to allocate.
1089    Refer to the array `regs_ever_live' to determine which registers
1090    to save; `regs_ever_live[I]' is nonzero if register number I
1091    is ever used in the function.  This macro is responsible for
1092    knowing which registers should not be saved even if used.  */
1093
1094 /* On HP-PA, move-double insns between fpu and cpu need an 8-byte block
1095    of memory.  If any fpu reg is used in the function, we allocate
1096    such a block here, at the bottom of the frame, just in case it's needed.
1097
1098    If this function is a leaf procedure, then we may choose not
1099    to do a "save" insn.  The decision about whether or not
1100    to do this is made in regclass.c.  */
1101
1102 #define FUNCTION_PROLOGUE(FILE, SIZE) \
1103   output_function_prologue (FILE, SIZE)
1104
1105 /* Output assembler code to FILE to increment profiler label # LABELNO
1106    for profiling a function entry.
1107
1108    Because HPUX _mcount is so different, we actually emit the
1109    profiling code in function_prologue. This just stores LABELNO for
1110    that. */
1111
1112 #define PROFILE_BEFORE_PROLOGUE
1113 #define FUNCTION_PROFILER(FILE, LABELNO) \
1114 { extern int hp_profile_labelno; hp_profile_labelno = (LABELNO);}
1115
1116 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
1117    the stack pointer does not matter.  The value is tested only in
1118    functions that have frame pointers.
1119    No definition is equivalent to always zero.  */
1120
1121 extern int may_call_alloca;
1122 extern int current_function_pretend_args_size;
1123
1124 #define EXIT_IGNORE_STACK       \
1125  (get_frame_size () != 0        \
1126   || current_function_calls_alloca || current_function_outgoing_args_size)
1127
1128
1129 /* This macro generates the assembly code for function exit,
1130    on machines that need it.  If FUNCTION_EPILOGUE is not defined
1131    then individual return instructions are generated for each
1132    return statement.  Args are same as for FUNCTION_PROLOGUE.
1133
1134    The function epilogue should not depend on the current stack pointer!
1135    It should use the frame pointer only.  This is mandatory because
1136    of alloca; we also take advantage of it to omit stack adjustments
1137    before returning.  */
1138
1139 /* This declaration is needed due to traditional/ANSI
1140    incompatibilities which cannot be #ifdefed away
1141    because they occur inside of macros.  Sigh.  */
1142 extern union tree_node *current_function_decl;
1143
1144 #define FUNCTION_EPILOGUE(FILE, SIZE)                   \
1145   output_function_epilogue (FILE, SIZE)
1146
1147 /* Output assembler code for a block containing the constant parts
1148    of a trampoline, leaving space for the variable parts.\
1149
1150    The trampoline sets the static chain pointer to STATIC_CHAIN_REGNUM
1151    and then branches to the specified routine.
1152
1153    This code template is copied from text segment to stack location
1154    and then patched with INITIALIZE_TRAMPOLINE to contain
1155    valid values, and then entered as a subroutine.
1156
1157    It is best to keep this as small as possible to avoid having to
1158    flush multiple lines in the cache.  */
1159
1160 #define TRAMPOLINE_TEMPLATE(FILE) \
1161   {                                                     \
1162     fputs ("\tldw       36(%r22),%r21\n", FILE);        \
1163     fputs ("\tbb,>=,n   %r21,30,.+16\n", FILE); \
1164     fputs ("\tdepi      0,31,2,%r21\n", FILE);          \
1165     fputs ("\tldw       4(%r21),%r19\n", FILE); \
1166     fputs ("\tldw       0(%r21),%r21\n", FILE); \
1167     fputs ("\tldsid     (%r21),%r1\n", FILE);   \
1168     fputs ("\tmtsp      %r1,%sr0\n", FILE);             \
1169     fputs ("\tbe        0(%sr0,%r21)\n", FILE); \
1170     fputs ("\tldw       40(%r22),%r29\n", FILE);        \
1171     fputs ("\t.word     0\n", FILE);                    \
1172     fputs ("\t.word     0\n", FILE);                    \
1173   }
1174
1175 /* Length in units of the trampoline for entering a nested function.
1176
1177    Flush the cache entries corresponding to the first and last addresses
1178    of the trampoline.  This is necessary as the trampoline may cross two
1179    cache lines.
1180
1181    If the code part of the trampoline ever grows to > 32 bytes, then it
1182    will become necessary to hack on the cacheflush pattern in pa.md.  */
1183
1184 #define TRAMPOLINE_SIZE (11 * 4)
1185
1186 /* Emit RTL insns to initialize the variable parts of a trampoline.
1187    FNADDR is an RTX for the address of the function's pure code.
1188    CXT is an RTX for the static chain value for the function.
1189
1190    Move the function address to the trampoline template at offset 12.
1191    Move the static chain value to trampoline template at offset 16.  */
1192
1193 #define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT) \
1194 {                                                                       \
1195   rtx start_addr, end_addr;                                             \
1196                                                                         \
1197   start_addr = memory_address (Pmode, plus_constant ((TRAMP), 36));     \
1198   emit_move_insn (gen_rtx_MEM (Pmode, start_addr), (FNADDR));           \
1199   start_addr = memory_address (Pmode, plus_constant ((TRAMP), 40));     \
1200   emit_move_insn (gen_rtx_MEM (Pmode, start_addr), (CXT));              \
1201   /* fdc and fic only use registers for the address to flush,           \
1202      they do not accept integer displacements.  */                      \
1203   start_addr = force_reg (Pmode, (TRAMP));                              \
1204   end_addr = force_reg (Pmode, plus_constant ((TRAMP), 32));            \
1205   emit_insn (gen_dcacheflush (start_addr, end_addr));                   \
1206   end_addr = force_reg (Pmode, plus_constant (start_addr, 32)); \
1207   emit_insn (gen_icacheflush (start_addr, end_addr, start_addr,         \
1208                               gen_reg_rtx (Pmode), gen_reg_rtx (Pmode)));\
1209 }
1210
1211 /* Emit code for a call to builtin_saveregs.  We must emit USE insns which
1212    reference the 4 integer arg registers and 4 fp arg registers.
1213    Ordinarily they are not call used registers, but they are for
1214    _builtin_saveregs, so we must make this explicit.  */
1215
1216 extern struct rtx_def *hppa_builtin_saveregs ();
1217 #define EXPAND_BUILTIN_SAVEREGS() hppa_builtin_saveregs ()
1218
1219 /* Implement `va_start' for varargs and stdarg.  */
1220
1221 extern void hppa_va_start();
1222 #define EXPAND_BUILTIN_VA_START(stdarg, valist, nextarg) \
1223   hppa_va_start (stdarg, valist, nextarg)
1224
1225 /* Implement `va_arg'.  */
1226
1227 extern struct rtx_def *hppa_va_arg();
1228 #define EXPAND_BUILTIN_VA_ARG(valist, type) \
1229   hppa_va_arg (valist, type)
1230 \f
1231 /* Addressing modes, and classification of registers for them. 
1232
1233    Using autoincrement addressing modes on PA8000 class machines is
1234    not profitable.  */
1235
1236 #define HAVE_POST_INCREMENT (pa_cpu < PROCESSOR_8000)
1237 #define HAVE_POST_DECREMENT (pa_cpu < PROCESSOR_8000)
1238
1239 #define HAVE_PRE_DECREMENT (pa_cpu < PROCESSOR_8000)
1240 #define HAVE_PRE_INCREMENT (pa_cpu < PROCESSOR_8000)
1241
1242 /* Macros to check register numbers against specific register classes.  */
1243
1244 /* These assume that REGNO is a hard or pseudo reg number.
1245    They give nonzero only if REGNO is a hard reg of the suitable class
1246    or a pseudo reg currently allocated to a suitable hard reg.
1247    Since they use reg_renumber, they are safe only once reg_renumber
1248    has been allocated, which happens in local-alloc.c.  */
1249
1250 #define REGNO_OK_FOR_INDEX_P(REGNO) \
1251   ((REGNO) && ((REGNO) < 32 || (unsigned) reg_renumber[REGNO] < 32))
1252 #define REGNO_OK_FOR_BASE_P(REGNO)  \
1253   ((REGNO) && ((REGNO) < 32 || (unsigned) reg_renumber[REGNO] < 32))
1254 #define REGNO_OK_FOR_FP_P(REGNO) \
1255   (FP_REGNO_P (REGNO) || FP_REGNO_P (reg_renumber[REGNO]))
1256
1257 /* Now macros that check whether X is a register and also,
1258    strictly, whether it is in a specified class.
1259
1260    These macros are specific to the HP-PA, and may be used only
1261    in code for printing assembler insns and in conditions for
1262    define_optimization.  */
1263
1264 /* 1 if X is an fp register.  */
1265
1266 #define FP_REG_P(X) (REG_P (X) && REGNO_OK_FOR_FP_P (REGNO (X)))
1267 \f
1268 /* Maximum number of registers that can appear in a valid memory address.  */
1269
1270 #define MAX_REGS_PER_ADDRESS 2
1271
1272 /* Recognize any constant value that is a valid address except
1273    for symbolic addresses.  We get better CSE by rejecting them
1274    here and allowing hppa_legitimize_address to break them up.  We
1275    use most of the constants accepted by CONSTANT_P, except CONST_DOUBLE.  */
1276
1277 #define CONSTANT_ADDRESS_P(X) \
1278   ((GET_CODE (X) == LABEL_REF || GET_CODE (X) == SYMBOL_REF             \
1279    || GET_CODE (X) == CONST_INT || GET_CODE (X) == CONST                \
1280    || GET_CODE (X) == HIGH)                                             \
1281    && (reload_in_progress || reload_completed || ! symbolic_expression_p (X)))
1282
1283 /* Include all constant integers and constant doubles, but not
1284    floating-point, except for floating-point zero.
1285
1286    Reject LABEL_REFs if we're not using gas or the new HP assembler.  */
1287 #ifdef NEW_HP_ASSEMBLER
1288 #define LEGITIMATE_CONSTANT_P(X)                \
1289   ((GET_MODE_CLASS (GET_MODE (X)) != MODE_FLOAT \
1290     || (X) == CONST0_RTX (GET_MODE (X)))        \
1291    && !function_label_operand (X, VOIDmode))
1292 #else
1293 #define LEGITIMATE_CONSTANT_P(X)                \
1294   ((GET_MODE_CLASS (GET_MODE (X)) != MODE_FLOAT \
1295     || (X) == CONST0_RTX (GET_MODE (X)))        \
1296    && (GET_CODE (X) != LABEL_REF || TARGET_GAS)\
1297    && !function_label_operand (X, VOIDmode))
1298 #endif
1299
1300 /* Subroutine for EXTRA_CONSTRAINT.
1301
1302    Return 1 iff OP is a pseudo which did not get a hard register and
1303    we are running the reload pass.  */
1304
1305 #define IS_RELOADING_PSEUDO_P(OP) \
1306   ((reload_in_progress                                  \
1307     && GET_CODE (OP) == REG                             \
1308     && REGNO (OP) >= FIRST_PSEUDO_REGISTER              \
1309     && reg_renumber [REGNO (OP)] < 0))
1310
1311 /* Optional extra constraints for this machine. Borrowed from sparc.h.
1312
1313    For the HPPA, `Q' means that this is a memory operand but not a
1314    symbolic memory operand.  Note that an unassigned pseudo register
1315    is such a memory operand.  Needed because reload will generate
1316    these things in insns and then not re-recognize the insns, causing
1317    constrain_operands to fail.
1318
1319    `R' is used for scaled indexed addresses.
1320
1321    `S' is unused.
1322
1323    `T' is for fp loads and stores.  */
1324 #define EXTRA_CONSTRAINT(OP, C)                         \
1325   ((C) == 'Q' ?                                         \
1326    (IS_RELOADING_PSEUDO_P (OP)                          \
1327     || (GET_CODE (OP) == MEM                            \
1328         && (memory_address_p (GET_MODE (OP), XEXP (OP, 0))\
1329             || reload_in_progress)                      \
1330         && ! symbolic_memory_operand (OP, VOIDmode)     \
1331         && !(GET_CODE (XEXP (OP, 0)) == PLUS            \
1332              && (GET_CODE (XEXP (XEXP (OP, 0), 0)) == MULT\
1333                  || GET_CODE (XEXP (XEXP (OP, 0), 1)) == MULT))))\
1334    : ((C) == 'R' ?                                      \
1335      (GET_CODE (OP) == MEM                              \
1336       && GET_CODE (XEXP (OP, 0)) == PLUS                \
1337       && (GET_CODE (XEXP (XEXP (OP, 0), 0)) == MULT     \
1338           || GET_CODE (XEXP (XEXP (OP, 0), 1)) == MULT) \
1339       && (move_operand (OP, GET_MODE (OP))              \
1340           || memory_address_p (GET_MODE (OP), XEXP (OP, 0))\
1341           || reload_in_progress))                       \
1342    : ((C) == 'T' ?                                      \
1343       (GET_CODE (OP) == MEM                             \
1344        /* Using DFmode forces only short displacements  \
1345           to be recognized as valid in reg+d addresses.  */\
1346        && memory_address_p (DFmode, XEXP (OP, 0))       \
1347        && !(GET_CODE (XEXP (OP, 0)) == PLUS             \
1348             && (GET_CODE (XEXP (XEXP (OP, 0), 0)) == MULT\
1349                 || GET_CODE (XEXP (XEXP (OP, 0), 1)) == MULT))) : 0)))
1350
1351 /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
1352    and check its validity for a certain class.
1353    We have two alternate definitions for each of them.
1354    The usual definition accepts all pseudo regs; the other rejects
1355    them unless they have been allocated suitable hard regs.
1356    The symbol REG_OK_STRICT causes the latter definition to be used.
1357
1358    Most source files want to accept pseudo regs in the hope that
1359    they will get allocated to the class that the insn wants them to be in.
1360    Source files for reload pass need to be strict.
1361    After reload, it makes no difference, since pseudo regs have
1362    been eliminated by then.  */
1363
1364 #ifndef REG_OK_STRICT
1365
1366 /* Nonzero if X is a hard reg that can be used as an index
1367    or if it is a pseudo reg.  */
1368 #define REG_OK_FOR_INDEX_P(X) \
1369 (REGNO (X) && (REGNO (X) < 32 || REGNO (X) >= FIRST_PSEUDO_REGISTER))
1370 /* Nonzero if X is a hard reg that can be used as a base reg
1371    or if it is a pseudo reg.  */
1372 #define REG_OK_FOR_BASE_P(X) \
1373 (REGNO (X) && (REGNO (X) < 32 || REGNO (X) >= FIRST_PSEUDO_REGISTER))
1374
1375 #else
1376
1377 /* Nonzero if X is a hard reg that can be used as an index.  */
1378 #define REG_OK_FOR_INDEX_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
1379 /* Nonzero if X is a hard reg that can be used as a base reg.  */
1380 #define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
1381
1382 #endif
1383 \f
1384 /* GO_IF_LEGITIMATE_ADDRESS recognizes an RTL expression
1385    that is a valid memory address for an instruction.
1386    The MODE argument is the machine mode for the MEM expression
1387    that wants to use this address.
1388
1389    On the HP-PA, the actual legitimate addresses must be
1390    REG+REG, REG+(REG*SCALE) or REG+SMALLINT.
1391    But we can treat a SYMBOL_REF as legitimate if it is part of this
1392    function's constant-pool, because such addresses can actually
1393    be output as REG+SMALLINT. 
1394
1395    Note we only allow 5 bit immediates for access to a constant address;
1396    doing so avoids losing for loading/storing a FP register at an address
1397    which will not fit in 5 bits.  */
1398
1399 #define VAL_5_BITS_P(X) ((unsigned)(X) + 0x10 < 0x20)
1400 #define INT_5_BITS(X) VAL_5_BITS_P (INTVAL (X))
1401
1402 #define VAL_U5_BITS_P(X) ((unsigned)(X) < 0x20)
1403 #define INT_U5_BITS(X) VAL_U5_BITS_P (INTVAL (X))
1404
1405 #define VAL_11_BITS_P(X) ((unsigned)(X) + 0x400 < 0x800)
1406 #define INT_11_BITS(X) VAL_11_BITS_P (INTVAL (X))
1407
1408 #define VAL_14_BITS_P(X) ((unsigned)(X) + 0x2000 < 0x4000)
1409 #define INT_14_BITS(X) VAL_14_BITS_P (INTVAL (X))
1410
1411 #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, ADDR)  \
1412 {                                                       \
1413   if ((REG_P (X) && REG_OK_FOR_BASE_P (X))              \
1414       || ((GET_CODE (X) == PRE_DEC || GET_CODE (X) == POST_DEC          \
1415            || GET_CODE (X) == PRE_INC || GET_CODE (X) == POST_INC)      \
1416           && REG_P (XEXP (X, 0))                        \
1417           && REG_OK_FOR_BASE_P (XEXP (X, 0))))          \
1418     goto ADDR;                                          \
1419   else if (GET_CODE (X) == PLUS)                        \
1420     {                                                   \
1421       rtx base = 0, index = 0;                          \
1422       if (flag_pic && XEXP (X, 0) == pic_offset_table_rtx)\
1423         {                                               \
1424           if (GET_CODE (XEXP (X, 1)) == REG             \
1425               && REG_OK_FOR_BASE_P (XEXP (X, 1)))       \
1426             goto ADDR;                                  \
1427           else if (flag_pic == 1                        \
1428                    && GET_CODE (XEXP (X, 1)) == SYMBOL_REF)\
1429             goto ADDR;                                  \
1430         }                                               \
1431       else if (REG_P (XEXP (X, 0))                      \
1432           && REG_OK_FOR_BASE_P (XEXP (X, 0)))           \
1433         base = XEXP (X, 0), index = XEXP (X, 1);        \
1434       else if (REG_P (XEXP (X, 1))                      \
1435                && REG_OK_FOR_BASE_P (XEXP (X, 1)))      \
1436         base = XEXP (X, 1), index = XEXP (X, 0);        \
1437       if (base != 0)                                    \
1438         if (GET_CODE (index) == CONST_INT               \
1439             && ((INT_14_BITS (index)                    \
1440                  && (TARGET_SOFT_FLOAT                  \
1441                      || ((MODE) != SFmode && (MODE) != DFmode))) \
1442                 || INT_5_BITS (index)))                 \
1443           goto ADDR;                                    \
1444       if (! TARGET_SOFT_FLOAT                           \
1445           && ! TARGET_DISABLE_INDEXING                  \
1446           && base                                       \
1447           && (mode == SFmode || mode == DFmode)         \
1448           && GET_CODE (index) == MULT                   \
1449           && GET_CODE (XEXP (index, 0)) == REG          \
1450           && REG_OK_FOR_BASE_P (XEXP (index, 0))        \
1451           && GET_CODE (XEXP (index, 1)) == CONST_INT    \
1452           && INTVAL (XEXP (index, 1)) == (mode == SFmode ? 4 : 8))\
1453         goto ADDR;                                      \
1454     }                                                   \
1455   else if (GET_CODE (X) == LO_SUM                       \
1456            && GET_CODE (XEXP (X, 0)) == REG             \
1457            && REG_OK_FOR_BASE_P (XEXP (X, 0))           \
1458            && CONSTANT_P (XEXP (X, 1))                  \
1459            && (TARGET_SOFT_FLOAT                        \
1460                || ((MODE) != SFmode                     \
1461                    && (MODE) != DFmode)))               \
1462     goto ADDR;                                          \
1463   else if (GET_CODE (X) == LO_SUM                       \
1464            && GET_CODE (XEXP (X, 0)) == SUBREG          \
1465            && GET_CODE (SUBREG_REG (XEXP (X, 0))) == REG\
1466            && REG_OK_FOR_BASE_P (SUBREG_REG (XEXP (X, 0)))\
1467            && CONSTANT_P (XEXP (X, 1))                  \
1468            && (TARGET_SOFT_FLOAT                        \
1469                || ((MODE) != SFmode                     \
1470                    && (MODE) != DFmode)))               \
1471     goto ADDR;                                          \
1472   else if (GET_CODE (X) == LABEL_REF                    \
1473            || (GET_CODE (X) == CONST_INT                \
1474                && INT_5_BITS (X)))                      \
1475     goto ADDR;                                          \
1476   /* Needed for -fPIC */                                \
1477   else if (GET_CODE (X) == LO_SUM                       \
1478            && GET_CODE (XEXP (X, 0)) == REG             \
1479            && REG_OK_FOR_BASE_P (XEXP (X, 0))           \
1480            && GET_CODE (XEXP (X, 1)) == UNSPEC)         \
1481     goto ADDR;                                          \
1482 }
1483
1484 /* Look for machine dependent ways to make the invalid address AD a
1485    valid address.
1486
1487    For the PA, transform:
1488
1489         memory(X + <large int>)
1490
1491    into:
1492
1493         if (<large int> & mask) >= 16
1494           Y = (<large int> & ~mask) + mask + 1  Round up.
1495         else
1496           Y = (<large int> & ~mask)             Round down.
1497         Z = X + Y
1498         memory (Z + (<large int> - Y));
1499
1500    This makes reload inheritance and reload_cse work better since Z
1501    can be reused.
1502
1503    There may be more opportunities to improve code with this hook.  */
1504 #define LEGITIMIZE_RELOAD_ADDRESS(AD, MODE, OPNUM, TYPE, IND, WIN)      \
1505 do {                                                                    \
1506   int offset, newoffset, mask;                                          \
1507   rtx new, temp = NULL_RTX;                                             \
1508   mask = GET_MODE_CLASS (MODE) == MODE_FLOAT ? 0x1f : 0x3fff;           \
1509                                                                         \
1510   if (optimize                                                          \
1511       && GET_CODE (AD) == PLUS)                                         \
1512     temp = simplify_binary_operation (PLUS, Pmode,                      \
1513                                       XEXP (AD, 0), XEXP (AD, 1));      \
1514                                                                         \
1515   new = temp ? temp : AD;                                               \
1516                                                                         \
1517   if (optimize                                                          \
1518       && GET_CODE (new) == PLUS                                         \
1519       && GET_CODE (XEXP (new, 0)) == REG                                \
1520       && GET_CODE (XEXP (new, 1)) == CONST_INT)                         \
1521     {                                                                   \
1522       offset = INTVAL (XEXP ((new), 1));                                \
1523                                                                         \
1524       /* Choose rounding direction.  Round up if we are >= halfway.  */ \
1525       if ((offset & mask) >= ((mask + 1) / 2))                          \
1526         newoffset = (offset & ~mask) + mask + 1;                        \
1527       else                                                              \
1528         newoffset = offset & ~mask;                                     \
1529                                                                         \
1530       if (newoffset != 0                                                \
1531           && VAL_14_BITS_P (newoffset))                                 \
1532         {                                                               \
1533                                                                         \
1534           temp = gen_rtx_PLUS (Pmode, XEXP (new, 0),                    \
1535                                GEN_INT (newoffset));                    \
1536           AD = gen_rtx_PLUS (Pmode, temp, GEN_INT (offset - newoffset));\
1537           push_reload (XEXP (AD, 0), 0, &XEXP (AD, 0), 0,               \
1538                              BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,     \
1539                              (OPNUM), (TYPE));                          \
1540           goto WIN;                                                     \
1541         }                                                               \
1542     }                                                                   \
1543 } while (0)
1544
1545
1546
1547 \f
1548 /* Try machine-dependent ways of modifying an illegitimate address
1549    to be legitimate.  If we find one, return the new, valid address.
1550    This macro is used in only one place: `memory_address' in explow.c.
1551
1552    OLDX is the address as it was before break_out_memory_refs was called.
1553    In some cases it is useful to look at this to decide what needs to be done.
1554
1555    MODE and WIN are passed so that this macro can use
1556    GO_IF_LEGITIMATE_ADDRESS.
1557
1558    It is always safe for this macro to do nothing.  It exists to recognize
1559    opportunities to optimize the output.  */
1560
1561 extern struct rtx_def *hppa_legitimize_address ();
1562 #define LEGITIMIZE_ADDRESS(X, OLDX, MODE, WIN)  \
1563 { rtx orig_x = (X);                             \
1564   (X) = hppa_legitimize_address (X, OLDX, MODE);        \
1565   if ((X) != orig_x && memory_address_p (MODE, X)) \
1566     goto WIN; }
1567
1568 /* Go to LABEL if ADDR (a legitimate address expression)
1569    has an effect that depends on the machine mode it is used for.  */
1570
1571 #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR,LABEL)        \
1572   if (GET_CODE (ADDR) == PRE_DEC        \
1573       || GET_CODE (ADDR) == POST_DEC    \
1574       || GET_CODE (ADDR) == PRE_INC     \
1575       || GET_CODE (ADDR) == POST_INC)   \
1576     goto LABEL
1577 \f
1578 /* Arghh.  The hpux10 linker chokes if we have a reference to symbols
1579    in a readonly data section when the symbol is defined in a shared
1580    library.  Since we can't know at compile time if a symbol will be
1581    satisfied by a shared library or main program we put any symbolic
1582    constant into the normal data section.  */
1583 #define SELECT_RTX_SECTION(MODE,RTX)    \
1584   if (symbolic_operand (RTX, MODE))     \
1585     data_section ();                    \
1586   else                                  \
1587     readonly_data_section ();
1588
1589 /* Specify the machine mode that this machine uses
1590    for the index in the tablejump instruction.  */
1591 #define CASE_VECTOR_MODE (TARGET_BIG_SWITCH ? TImode : DImode)
1592
1593 /* Specify the tree operation to be used to convert reals to integers.  */
1594 #define IMPLICIT_FIX_EXPR FIX_ROUND_EXPR
1595
1596 /* This is the kind of divide that is easiest to do in the general case.  */
1597 #define EASY_DIV_EXPR TRUNC_DIV_EXPR
1598
1599 /* Define this as 1 if `char' should by default be signed; else as 0.  */
1600 #define DEFAULT_SIGNED_CHAR 1
1601
1602 /* Max number of bytes we can move from memory to memory
1603    in one reasonably fast instruction.  */
1604 #define MOVE_MAX 8
1605
1606 /* Higher than the default as we prefer to use simple move insns
1607    (better scheduling and delay slot filling) and because our
1608    built-in block move is really a 2X unrolled loop.  */
1609 #define MOVE_RATIO 4
1610
1611 /* Define if operations between registers always perform the operation
1612    on the full register even if a narrower mode is specified.  */
1613 #define WORD_REGISTER_OPERATIONS
1614
1615 /* Define if loading in MODE, an integral mode narrower than BITS_PER_WORD
1616    will either zero-extend or sign-extend.  The value of this macro should
1617    be the code that says which one of the two operations is implicitly
1618    done, NIL if none.  */
1619 #define LOAD_EXTEND_OP(MODE) ZERO_EXTEND
1620
1621 /* Nonzero if access to memory by bytes is slow and undesirable.  */
1622 #define SLOW_BYTE_ACCESS 1
1623
1624 /* Value is 1 if truncating an integer of INPREC bits to OUTPREC bits
1625    is done just by pretending it is already truncated.  */
1626 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
1627
1628 /* We assume that the store-condition-codes instructions store 0 for false
1629    and some other value for true.  This is the value stored for true.  */
1630
1631 #define STORE_FLAG_VALUE 1
1632
1633 /* When a prototype says `char' or `short', really pass an `int'.  */
1634 #define PROMOTE_PROTOTYPES 1
1635
1636 /* Specify the machine mode that pointers have.
1637    After generation of rtl, the compiler makes no further distinction
1638    between pointers and any other objects of this machine mode.  */
1639 #define Pmode word_mode
1640
1641 /* Add any extra modes needed to represent the condition code.
1642
1643    HPPA floating comparisons produce condition codes. */
1644 #define EXTRA_CC_MODES CCFPmode
1645
1646 /* Define the names for the modes specified above.  */
1647 #define EXTRA_CC_NAMES "CCFP"
1648
1649 /* Given a comparison code (EQ, NE, etc.) and the first operand of a COMPARE,
1650    return the mode to be used for the comparison.  For floating-point, CCFPmode
1651    should be used.  CC_NOOVmode should be used when the first operand is a
1652    PLUS, MINUS, or NEG.  CCmode should be used when no special processing is
1653    needed.  */
1654 #define SELECT_CC_MODE(OP,X,Y) \
1655   (GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT ? CCFPmode : CCmode)    \
1656
1657 /* A function address in a call instruction
1658    is a byte address (for indexing purposes)
1659    so give the MEM rtx a byte's mode.  */
1660 #define FUNCTION_MODE SImode
1661
1662 /* Define this if addresses of constant functions
1663    shouldn't be put through pseudo regs where they can be cse'd.
1664    Desirable on machines where ordinary constants are expensive
1665    but a CALL with constant address is cheap.  */
1666 #define NO_FUNCTION_CSE
1667
1668 /* Define this to be nonzero if shift instructions ignore all but the low-order
1669    few bits. */
1670 #define SHIFT_COUNT_TRUNCATED 1
1671
1672 /* Use atexit for static constructors/destructors, instead of defining
1673    our own exit function.  */
1674 #define HAVE_ATEXIT
1675
1676 /* Compute the cost of computing a constant rtl expression RTX
1677    whose rtx-code is CODE.  The body of this macro is a portion
1678    of a switch statement.  If the code is computed here,
1679    return it with a return statement.  Otherwise, break from the switch.  */
1680
1681 #define CONST_COSTS(RTX,CODE,OUTER_CODE) \
1682   case CONST_INT:                                                       \
1683     if (INTVAL (RTX) == 0) return 0;                                    \
1684     if (INT_14_BITS (RTX)) return 1;                                    \
1685   case HIGH:                                                            \
1686     return 2;                                                           \
1687   case CONST:                                                           \
1688   case LABEL_REF:                                                       \
1689   case SYMBOL_REF:                                                      \
1690     return 4;                                                           \
1691   case CONST_DOUBLE:                                                    \
1692     if ((RTX == CONST0_RTX (DFmode) || RTX == CONST0_RTX (SFmode))      \
1693         && OUTER_CODE != SET)                                           \
1694       return 0;                                                         \
1695     else                                                                \
1696       return 8;
1697
1698 #define ADDRESS_COST(RTX) \
1699   (GET_CODE (RTX) == REG ? 1 : hppa_address_cost (RTX))
1700
1701 /* Compute extra cost of moving data between one register class
1702    and another.
1703
1704    Make moves from SAR so expensive they should never happen.  We used to
1705    have 0xffff here, but that generates overflow in rare cases.
1706
1707    Copies involving a FP register and a non-FP register are relatively
1708    expensive because they must go through memory.
1709
1710    Other copies are reasonably cheap.  */
1711 #define REGISTER_MOVE_COST(CLASS1, CLASS2) \
1712  (CLASS1 == SHIFT_REGS ? 0x100                                  \
1713   : FP_REG_CLASS_P (CLASS1) && ! FP_REG_CLASS_P (CLASS2) ? 16   \
1714   : FP_REG_CLASS_P (CLASS2) && ! FP_REG_CLASS_P (CLASS1) ? 16   \
1715   : 2)
1716
1717
1718 /* Provide the costs of a rtl expression.  This is in the body of a
1719    switch on CODE.  The purpose for the cost of MULT is to encourage
1720    `synth_mult' to find a synthetic multiply when reasonable.  */
1721
1722 #define RTX_COSTS(X,CODE,OUTER_CODE)                                    \
1723   case MULT:                                                            \
1724     if (GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT)                    \
1725       return COSTS_N_INSNS (3);                                         \
1726     return (TARGET_PA_11 && ! TARGET_DISABLE_FPREGS && ! TARGET_SOFT_FLOAT) \
1727             ? COSTS_N_INSNS (8) : COSTS_N_INSNS (20);   \
1728   case DIV:                                                             \
1729     if (GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT)                    \
1730       return COSTS_N_INSNS (14);                                        \
1731   case UDIV:                                                            \
1732   case MOD:                                                             \
1733   case UMOD:                                                            \
1734     return COSTS_N_INSNS (60);                                          \
1735   case PLUS: /* this includes shNadd insns */                           \
1736   case MINUS:                                                           \
1737     if (GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT)                    \
1738       return COSTS_N_INSNS (3);                                         \
1739     return COSTS_N_INSNS (1);                                           \
1740   case ASHIFT:                                                          \
1741   case ASHIFTRT:                                                        \
1742   case LSHIFTRT:                                                        \
1743     return COSTS_N_INSNS (1);
1744
1745 /* Adjust the cost of dependencies.  */
1746
1747 #define ADJUST_COST(INSN,LINK,DEP,COST) \
1748   (COST) = pa_adjust_cost (INSN, LINK, DEP, COST)
1749
1750 /* Adjust scheduling priorities.  We use this to try and keep addil
1751    and the next use of %r1 close together.  */
1752 #define ADJUST_PRIORITY(PREV) \
1753   {                                                             \
1754     rtx set = single_set (PREV);                                \
1755     rtx src, dest;                                              \
1756     if (set)                                                    \
1757       {                                                         \
1758         src = SET_SRC (set);                                    \
1759         dest = SET_DEST (set);                                  \
1760         if (GET_CODE (src) == LO_SUM                            \
1761             && symbolic_operand (XEXP (src, 1), VOIDmode)       \
1762             && ! read_only_operand (XEXP (src, 1), VOIDmode))   \
1763           INSN_PRIORITY (PREV) >>= 3;                           \
1764         else if (GET_CODE (src) == MEM                          \
1765                  && GET_CODE (XEXP (src, 0)) == LO_SUM          \
1766                  && symbolic_operand (XEXP (XEXP (src, 0), 1), VOIDmode)\
1767                  && ! read_only_operand (XEXP (XEXP (src, 0), 1), VOIDmode))\
1768           INSN_PRIORITY (PREV) >>= 1;                           \
1769         else if (GET_CODE (dest) == MEM                         \
1770                  && GET_CODE (XEXP (dest, 0)) == LO_SUM         \
1771                  && symbolic_operand (XEXP (XEXP (dest, 0), 1), VOIDmode)\
1772                  && ! read_only_operand (XEXP (XEXP (dest, 0), 1), VOIDmode))\
1773           INSN_PRIORITY (PREV) >>= 3;                           \
1774       }                                                         \
1775   }
1776
1777 /* Handling the special cases is going to get too complicated for a macro,
1778    just call `pa_adjust_insn_length' to do the real work.  */
1779 #define ADJUST_INSN_LENGTH(INSN, LENGTH)        \
1780   LENGTH += pa_adjust_insn_length (INSN, LENGTH);
1781
1782 /* Millicode insns are actually function calls with some special
1783    constraints on arguments and register usage.
1784
1785    Millicode calls always expect their arguments in the integer argument
1786    registers, and always return their result in %r29 (ret1).  They
1787    are expected to clobber their arguments, %r1, %r29, and %r31 and
1788    nothing else.
1789
1790    These macros tell reorg that the references to arguments and
1791    register clobbers for millicode calls do not appear to happen
1792    until after the millicode call.  This allows reorg to put insns
1793    which set the argument registers into the delay slot of the millicode
1794    call -- thus they act more like traditional CALL_INSNs.
1795
1796    get_attr_type will try to recognize the given insn, so make sure to
1797    filter out things it will not accept -- SEQUENCE, USE and CLOBBER insns
1798    in particular.  */
1799 #define INSN_SETS_ARE_DELAYED(X) (insn_sets_and_refs_are_delayed (X))
1800 #define INSN_REFERENCES_ARE_DELAYED(X) (insn_sets_and_refs_are_delayed (X))
1801
1802 \f
1803 /* Control the assembler format that we output.  */
1804
1805 /* Output to assembler file text saying following lines
1806    may contain character constants, extra white space, comments, etc.  */
1807
1808 #define ASM_APP_ON ""
1809
1810 /* Output to assembler file text saying following lines
1811    no longer contain unusual constructs.  */
1812
1813 #define ASM_APP_OFF ""
1814
1815 /* How to refer to registers in assembler output.
1816    This sequence is indexed by compiler's hard-register-number (see above).  */
1817
1818 #define REGISTER_NAMES \
1819 {"%r0",   "%r1",    "%r2",   "%r3",    "%r4",   "%r5",    "%r6",   "%r7",    \
1820  "%r8",   "%r9",    "%r10",  "%r11",   "%r12",  "%r13",   "%r14",  "%r15",   \
1821  "%r16",  "%r17",   "%r18",  "%r19",   "%r20",  "%r21",   "%r22",  "%r23",   \
1822  "%r24",  "%r25",   "%r26",  "%r27",   "%r28",  "%r29",   "%r30",  "%r31",   \
1823  "%fr4",  "%fr4R",  "%fr5",  "%fr5R",  "%fr6",  "%fr6R",  "%fr7",  "%fr7R",  \
1824  "%fr8",  "%fr8R",  "%fr9",  "%fr9R",  "%fr10", "%fr10R", "%fr11", "%fr11R", \
1825  "%fr12", "%fr12R", "%fr13", "%fr13R", "%fr14", "%fr14R", "%fr15", "%fr15R", \
1826  "%fr16", "%fr16R", "%fr17", "%fr17R", "%fr18", "%fr18R", "%fr19", "%fr19R", \
1827  "%fr20", "%fr20R", "%fr21", "%fr21R", "%fr22", "%fr22R", "%fr23", "%fr23R", \
1828  "%fr24", "%fr24R", "%fr25", "%fr25R", "%fr26", "%fr26R", "%fr27", "%fr27R", \
1829  "%fr28", "%fr28R", "%fr29", "%fr29R", "%fr30", "%fr30R", "%fr31", "%fr31R", \
1830  "SAR"}
1831
1832 #define ADDITIONAL_REGISTER_NAMES \
1833 {{"%fr4L",32}, {"%fr5L",34}, {"%fr6L",36}, {"%fr7L",38},                \
1834  {"%fr8L",40}, {"%fr9L",42}, {"%fr10L",44}, {"%fr11L",46},              \
1835  {"%fr12L",48}, {"%fr13L",50}, {"%fr14L",52}, {"%fr15L",54},            \
1836  {"%fr16L",56}, {"%fr17L",58}, {"%fr18L",60}, {"%fr19L",62},            \
1837  {"%fr20L",64}, {"%fr21L",66}, {"%fr22L",68}, {"%fr23L",70},            \
1838  {"%fr24L",72}, {"%fr25L",74}, {"%fr26L",76}, {"%fr27L",78},            \
1839  {"%fr28L",80}, {"%fr29L",82}, {"%fr30L",84}, {"%fr31R",86},            \
1840  {"%cr11",88}}
1841
1842 /* This is how to output the definition of a user-level label named NAME,
1843    such as the label on a static function or variable NAME.  */
1844
1845 #define ASM_OUTPUT_LABEL(FILE, NAME)    \
1846   do { assemble_name (FILE, NAME);      \
1847        fputc ('\n', FILE); } while (0)
1848
1849 /* This is how to output a reference to a user-level label named NAME.
1850    `assemble_name' uses this.  */
1851
1852 #define ASM_OUTPUT_LABELREF(FILE,NAME)  \
1853   fprintf ((FILE), "%s", (NAME) + (FUNCTION_NAME_P (NAME) ? 1 : 0))
1854
1855 /* This is how to output an internal numbered label where
1856    PREFIX is the class of label and NUM is the number within the class.  */
1857
1858 #define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM)      \
1859   {fprintf (FILE, "%c$%s%04d\n", (PREFIX)[0], (PREFIX) + 1, NUM);}
1860
1861 /* This is how to store into the string LABEL
1862    the symbol_ref name of an internal numbered label where
1863    PREFIX is the class of label and NUM is the number within the class.
1864    This is suitable for output with `assemble_name'.  */
1865
1866 #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM)   \
1867   sprintf (LABEL, "*%c$%s%04d", (PREFIX)[0], (PREFIX) + 1, NUM)
1868
1869 /* This is how to output an assembler line defining a `double' constant.  */
1870
1871 #define ASM_OUTPUT_DOUBLE(FILE,VALUE)  \
1872   do { long l[2];                                                       \
1873        REAL_VALUE_TO_TARGET_DOUBLE (VALUE, l);                          \
1874        fprintf (FILE, "\t.word 0x%lx\n\t.word 0x%lx\n", l[0], l[1]);    \
1875      } while (0)
1876
1877 /* This is how to output an assembler line defining a `float' constant.  */
1878
1879 #define ASM_OUTPUT_FLOAT(FILE,VALUE)  \
1880   do { long l;                                                          \
1881        REAL_VALUE_TO_TARGET_SINGLE (VALUE, l);                          \
1882        fprintf (FILE, "\t.word 0x%lx\n", l);                            \
1883      } while (0)
1884
1885 /* Likewise for `short' and `char' constants.  */
1886
1887 #define ASM_OUTPUT_SHORT(FILE,VALUE)  \
1888 ( fputs ("\t.half ", FILE),                     \
1889   output_addr_const (FILE, (VALUE)),            \
1890   fputs ("\n", FILE))
1891
1892 #define ASM_OUTPUT_CHAR(FILE,VALUE)  \
1893 ( fputs ("\t.byte ", FILE),                     \
1894   output_addr_const (FILE, (VALUE)),            \
1895   fputs ("\n", FILE))
1896
1897 /* This is how to output an assembler line for a numeric constant byte.  */
1898
1899 #define ASM_OUTPUT_BYTE(FILE,VALUE)  \
1900   fprintf (FILE, "\t.byte 0x%x\n", (VALUE))
1901
1902 #define ASM_OUTPUT_ASCII(FILE, P, SIZE)  \
1903   output_ascii ((FILE), (P), (SIZE))
1904
1905 #define ASM_OUTPUT_REG_PUSH(FILE,REGNO)
1906 #define ASM_OUTPUT_REG_POP(FILE,REGNO)
1907 /* This is how to output an element of a case-vector that is absolute.
1908    Note that this method makes filling these branch delay slots
1909    impossible.  */
1910
1911 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE)  \
1912   if (TARGET_BIG_SWITCH)                                        \
1913     fprintf (FILE, "\tstw %%r1,-16(%%r30)\n\tldil LR'L$%04d,%%r1\n\tbe RR'L$%04d(%%sr4,%%r1)\n\tldw -16(%%r30),%%r1\n", VALUE, VALUE);          \
1914   else                                                          \
1915     fprintf (FILE, "\tb L$%04d\n\tnop\n", VALUE)
1916
1917 /* Jump tables are executable code and live in the TEXT section on the PA.  */
1918 #define JUMP_TABLES_IN_TEXT_SECTION 1
1919
1920 /* This is how to output an element of a case-vector that is relative.
1921    This must be defined correctly as it is used when generating PIC code.
1922
1923    I believe it safe to use the same definition as ASM_OUTPUT_ADDR_VEC_ELT
1924    on the PA since ASM_OUTPUT_ADDR_VEC_ELT uses pc-relative jump instructions
1925    rather than a table of absolute addresses.  */
1926
1927 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL)  \
1928   if (TARGET_BIG_SWITCH)                                        \
1929     fprintf (FILE, "\tstw %%r1,-16(%%r30)\n\tldw T'L$%04d(%%r19),%%r1\n\tbv %%r0(%%r1)\n\tldw -16(%%r30),%%r1\n", VALUE);                               \
1930   else                                                          \
1931     fprintf (FILE, "\tb L$%04d\n\tnop\n", VALUE)
1932
1933 /* This is how to output an assembler line
1934    that says to advance the location counter
1935    to a multiple of 2**LOG bytes.  */
1936
1937 #define ASM_OUTPUT_ALIGN(FILE,LOG)      \
1938     fprintf (FILE, "\t.align %d\n", (1<<(LOG)))
1939
1940 #define ASM_OUTPUT_SKIP(FILE,SIZE)  \
1941   fprintf (FILE, "\t.blockz %d\n", (SIZE))
1942
1943 /* This says how to output an assembler line to define a global common symbol
1944    with size SIZE (in bytes) and alignment ALIGN (in bits).  */
1945
1946 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGNED)            \
1947 { bss_section ();                                                       \
1948   assemble_name ((FILE), (NAME));                                       \
1949   fputs ("\t.comm ", (FILE));                                           \
1950   fprintf ((FILE), "%d\n", MAX ((SIZE), ((ALIGNED) / BITS_PER_UNIT)));}
1951
1952 /* This says how to output an assembler line to define a local common symbol
1953    with size SIZE (in bytes) and alignment ALIGN (in bits).  */
1954
1955 #define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGNED)             \
1956 { bss_section ();                                                       \
1957   fprintf ((FILE), "\t.align %d\n", ((ALIGNED) / BITS_PER_UNIT));       \
1958   assemble_name ((FILE), (NAME));                               \
1959   fprintf ((FILE), "\n\t.block %d\n", (SIZE));}
1960   
1961 /* Store in OUTPUT a string (made with alloca) containing
1962    an assembler-name for a local static variable named NAME.
1963    LABELNO is an integer which is different for each call.  */
1964
1965 #define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO)  \
1966 ( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 12),    \
1967   sprintf ((OUTPUT), "%s___%d", (NAME), (LABELNO)))
1968
1969 /* Define the parentheses used to group arithmetic operations
1970    in assembler code.  */
1971
1972 #define ASM_OPEN_PAREN "("
1973 #define ASM_CLOSE_PAREN ")"
1974
1975 /* All HP assemblers use "!" to separate logical lines.  */
1976 #define IS_ASM_LOGICAL_LINE_SEPARATOR(C) ((C) == '!')
1977
1978 /* Define results of standard character escape sequences.  */
1979 #define TARGET_BELL 007
1980 #define TARGET_BS 010
1981 #define TARGET_TAB 011
1982 #define TARGET_NEWLINE 012
1983 #define TARGET_VT 013
1984 #define TARGET_FF 014
1985 #define TARGET_CR 015
1986
1987 #define PRINT_OPERAND_PUNCT_VALID_P(CHAR) \
1988   ((CHAR) == '@' || (CHAR) == '#' || (CHAR) == '*' || (CHAR) == '^')
1989
1990 /* Print operand X (an rtx) in assembler syntax to file FILE.
1991    CODE is a letter or dot (`z' in `%z0') or 0 if no letter was specified.
1992    For `%' followed by punctuation, CODE is the punctuation and X is null.
1993
1994    On the HP-PA, the CODE can be `r', meaning this is a register-only operand
1995    and an immediate zero should be represented as `r0'.
1996
1997    Several % codes are defined:
1998    O an operation
1999    C compare conditions
2000    N extract conditions
2001    M modifier to handle preincrement addressing for memory refs.
2002    F modifier to handle preincrement addressing for fp memory refs */
2003
2004 #define PRINT_OPERAND(FILE, X, CODE) print_operand (FILE, X, CODE)
2005
2006 \f
2007 /* Print a memory address as an operand to reference that memory location.  */
2008
2009 #define PRINT_OPERAND_ADDRESS(FILE, ADDR)  \
2010 { register rtx addr = ADDR;                                             \
2011   register rtx base;                                                    \
2012   int offset;                                                           \
2013   switch (GET_CODE (addr))                                              \
2014     {                                                                   \
2015     case REG:                                                           \
2016       fprintf (FILE, "0(%s)", reg_names [REGNO (addr)]);                \
2017       break;                                                            \
2018     case PLUS:                                                          \
2019       if (GET_CODE (XEXP (addr, 0)) == CONST_INT)                       \
2020         offset = INTVAL (XEXP (addr, 0)), base = XEXP (addr, 1);        \
2021       else if (GET_CODE (XEXP (addr, 1)) == CONST_INT)                  \
2022         offset = INTVAL (XEXP (addr, 1)), base = XEXP (addr, 0);        \
2023       else                                                              \
2024         abort ();                                                       \
2025       fprintf (FILE, "%d(%s)", offset, reg_names [REGNO (base)]);       \
2026       break;                                                            \
2027     case LO_SUM:                                                        \
2028       if (!symbolic_operand (XEXP (addr, 1)))                           \
2029         fputs ("R'", FILE);                                             \
2030       else if (flag_pic == 0)                                           \
2031         fputs ("RR'", FILE);                                            \
2032       else if (flag_pic == 1)                                           \
2033         abort ();                                                       \
2034       else if (flag_pic == 2)                                           \
2035         fputs ("RT'", FILE);                                            \
2036       output_global_address (FILE, XEXP (addr, 1), 0);                  \
2037       fputs ("(", FILE);                                                \
2038       output_operand (XEXP (addr, 0), 0);                               \
2039       fputs (")", FILE);                                                \
2040       break;                                                            \
2041     case CONST_INT:                                                     \
2042       fprintf (FILE, "%d(%%r0)", INTVAL (addr));                        \
2043       break;                                                            \
2044     default:                                                            \
2045       output_addr_const (FILE, addr);                                   \
2046     }}
2047
2048 \f
2049 /* Define functions in pa.c and used in insn-output.c.  */
2050
2051 extern char *output_and ();
2052 extern char *output_ior ();
2053 extern char *output_move_double ();
2054 extern char *output_fp_move_double ();
2055 extern char *output_block_move ();
2056 extern char *output_cbranch ();
2057 extern char *output_bb ();
2058 extern char *output_bvb ();
2059 extern char *output_dbra ();
2060 extern char *output_movb ();
2061 extern char *output_parallel_movb ();
2062 extern char *output_parallel_addb ();
2063 extern char *output_return ();
2064 extern char *output_call ();
2065 extern char *output_millicode_call ();
2066 extern char *output_mul_insn ();
2067 extern char *output_div_insn ();
2068 extern char *output_mod_insn ();
2069 extern char *singlemove_string ();
2070 extern void output_arg_descriptor ();
2071 extern void output_deferred_plabels ();
2072 extern void override_options ();
2073 extern void output_ascii ();
2074 extern void output_function_prologue ();
2075 extern void output_function_epilogue ();
2076 extern void output_global_address ();
2077 extern void print_operand ();
2078 extern struct rtx_def *legitimize_pic_address ();
2079 extern struct rtx_def *gen_cmp_fp ();
2080 extern void hppa_encode_label ();
2081 extern int arith11_operand ();
2082 extern int symbolic_expression_p ();
2083 extern int reloc_needed ();
2084 extern int compute_frame_size ();
2085 extern int hppa_address_cost ();
2086 extern int and_mask_p ();
2087 extern int symbolic_memory_operand ();
2088 extern int pa_adjust_cost ();
2089 extern int pa_adjust_insn_length ();
2090 extern int int11_operand ();
2091 extern int reg_or_cint_move_operand ();
2092 extern int arith5_operand ();
2093 extern int uint5_operand ();
2094 extern int pic_label_operand ();
2095 extern int plus_xor_ior_operator ();
2096 extern int basereg_operand ();
2097 extern int shadd_operand ();
2098 extern int arith_operand ();
2099 extern int read_only_operand ();
2100 extern int move_operand ();
2101 extern int and_operand ();
2102 extern int ior_operand ();
2103 extern int arith32_operand ();
2104 extern int uint32_operand ();
2105 extern int reg_or_nonsymb_mem_operand ();
2106 extern int reg_or_0_operand ();
2107 extern int reg_or_0_or_nonsymb_mem_operand ();
2108 extern int pre_cint_operand ();
2109 extern int post_cint_operand ();
2110 extern int div_operand ();
2111 extern int int5_operand ();
2112 extern int movb_comparison_operator ();
2113 extern int ireg_or_int5_operand ();
2114 extern int fmpyaddoperands ();
2115 extern int fmpysuboperands ();
2116 extern int call_operand_address ();
2117 extern int cint_ok_for_move ();
2118 extern int ior_operand ();
2119 extern void emit_bcond_fp ();
2120 extern int emit_move_sequence ();
2121 extern int emit_hpdiv_const ();
2122 extern void hppa_expand_prologue ();
2123 extern void hppa_expand_epilogue ();
2124 extern int hppa_can_use_return_insn_p ();
2125 extern int is_function_label_plus_const ();
2126 extern int jump_in_call_delay ();
2127 extern enum reg_class secondary_reload_class ();
2128 extern int insn_sets_and_refs_are_delayed ();
2129
2130 /* Declare functions defined in pa.c and used in templates.  */
2131
2132 extern struct rtx_def *return_addr_rtx ();
2133
2134 /* Find the return address associated with the frame given by
2135    FRAMEADDR.  */
2136 #define RETURN_ADDR_RTX(COUNT, FRAMEADDR)                                \
2137   (return_addr_rtx (COUNT, FRAMEADDR))
2138
2139 /* Used to mask out junk bits from the return address, such as
2140    processor state, interrupt status, condition codes and the like.  */
2141 #define MASK_RETURN_ADDR                                                \
2142   /* The privilege level is in the two low order bits, mask em out      \
2143      of the return address.  */                                         \
2144   (GEN_INT (0xfffffffc))
2145
2146 /* The number of Pmode words for the setjmp buffer.  */
2147 #define JMP_BUF_SIZE 50