OSDN Git Service

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