OSDN Git Service

* final.c (insn_last_address, insn_current_align, uid_align):
[pf3gnuchains/gcc-fork.git] / gcc / config / alpha / alpha.h
1 /* Definitions of target machine for GNU compiler, for DEC Alpha.
2    Copyright (C) 1992, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
3    Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22
23 /* Write out the correct language type definition for the header files.  
24    Unless we have assembler language, write out the symbols for C.  */
25 #define CPP_SPEC "\
26 %{!.S:  -D__LANGUAGE_C__ -D__LANGUAGE_C %{!ansi:-DLANGUAGE_C}}  \
27 %{.S:   -D__LANGUAGE_ASSEMBLY__ -D__LANGUAGE_ASSEMBLY %{!ansi:-DLANGUAGE_ASSEMBLY}} \
28 %{.cc:  -D__LANGUAGE_C_PLUS_PLUS__ -D__LANGUAGE_C_PLUS_PLUS -D__cplusplus} \
29 %{.cxx: -D__LANGUAGE_C_PLUS_PLUS__ -D__LANGUAGE_C_PLUS_PLUS -D__cplusplus} \
30 %{.C:   -D__LANGUAGE_C_PLUS_PLUS__ -D__LANGUAGE_C_PLUS_PLUS -D__cplusplus} \
31 %{.m:   -D__LANGUAGE_OBJECTIVE_C__ -D__LANGUAGE_OBJECTIVE_C} \
32 %{mieee:-D_IEEE_FP} \
33 %{mieee-with-inexact:-D_IEEE_FP -D_IEEE_FP_INEXACT}"
34
35 /* Set the spec to use for signed char.  The default tests the above macro
36    but DEC's compiler can't handle the conditional in a "constant"
37    operand.  */
38
39 #define SIGNED_CHAR_SPEC "%{funsigned-char:-D__CHAR_UNSIGNED__}"
40
41 #define WORD_SWITCH_TAKES_ARG(STR)              \
42  (!strcmp (STR, "rpath") || !strcmp (STR, "include")    \
43   || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
44   || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
45   || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \
46   || !strcmp (STR, "isystem"))
47
48 /* Print subsidiary information on the compiler version in use.  */
49 #define TARGET_VERSION
50
51 /* Run-time compilation parameters selecting different hardware subsets.  */
52
53 /* Which processor to schedule for. The cpu attribute defines a list that
54    mirrors this list, so changes to alpha.md must be made at the same time.  */
55
56 enum processor_type
57  {PROCESSOR_EV4,                        /* 2106[46]{a,} */
58   PROCESSOR_EV5,                        /* 21164{a,pc,} */
59   PROCESSOR_EV6};                       /* 21264 */
60
61 extern enum processor_type alpha_cpu;
62
63 enum alpha_trap_precision
64 {
65   ALPHA_TP_PROG,        /* No precision (default).  */
66   ALPHA_TP_FUNC,        /* Trap contained within originating function.  */
67   ALPHA_TP_INSN         /* Instruction accuracy and code is resumption safe. */
68 };
69
70 enum alpha_fp_rounding_mode
71 {
72   ALPHA_FPRM_NORM,      /* Normal rounding mode.  */
73   ALPHA_FPRM_MINF,      /* Round towards minus-infinity.  */
74   ALPHA_FPRM_CHOP,      /* Chopped rounding mode (towards 0). */
75   ALPHA_FPRM_DYN        /* Dynamic rounding mode.  */
76 };
77
78 enum alpha_fp_trap_mode
79 {
80   ALPHA_FPTM_N,         /* Normal trap mode. */
81   ALPHA_FPTM_U,         /* Underflow traps enabled.  */
82   ALPHA_FPTM_SU,        /* Software completion, w/underflow traps */
83   ALPHA_FPTM_SUI        /* Software completion, w/underflow & inexact traps */
84 };
85
86 extern int target_flags;
87
88 extern enum alpha_trap_precision alpha_tp;
89 extern enum alpha_fp_rounding_mode alpha_fprm;
90 extern enum alpha_fp_trap_mode alpha_fptm;
91
92 /* This means that floating-point support exists in the target implementation
93    of the Alpha architecture.  This is usually the default.  */
94
95 #define MASK_FP         1
96 #define TARGET_FP       (target_flags & MASK_FP)
97
98 /* This means that floating-point registers are allowed to be used.  Note
99    that Alpha implementations without FP operations are required to
100    provide the FP registers.  */
101
102 #define MASK_FPREGS     2
103 #define TARGET_FPREGS   (target_flags & MASK_FPREGS)
104
105 /* This means that gas is used to process the assembler file.  */
106
107 #define MASK_GAS 4
108 #define TARGET_GAS      (target_flags & MASK_GAS)
109
110 /* This means that we should mark procedures as IEEE conformant. */
111
112 #define MASK_IEEE_CONFORMANT 8
113 #define TARGET_IEEE_CONFORMANT  (target_flags & MASK_IEEE_CONFORMANT)
114
115 /* This means we should be IEEE-compliant except for inexact.  */
116
117 #define MASK_IEEE       16
118 #define TARGET_IEEE     (target_flags & MASK_IEEE)
119
120 /* This means we should be fully IEEE-compliant.  */
121
122 #define MASK_IEEE_WITH_INEXACT 32
123 #define TARGET_IEEE_WITH_INEXACT (target_flags & MASK_IEEE_WITH_INEXACT)
124
125 /* This means we are compiling for Windows NT.  */
126
127 #define MASK_WINDOWS_NT 64
128 #define TARGET_WINDOWS_NT (target_flags & MASK_WINDOWS_NT)
129
130 /* This means we must construct all constants rather than emitting
131    them as literal data.  */
132
133 #define MASK_BUILD_CONSTANTS 128
134 #define TARGET_BUILD_CONSTANTS (target_flags & MASK_BUILD_CONSTANTS)
135
136 /* This means we are compiling for openVMS.  */
137
138 #define MASK_OPEN_VMS   256
139 #define TARGET_OPEN_VMS (target_flags & MASK_OPEN_VMS)
140
141 /* This means we handle floating points in VAX F- (float)
142    or G- (double) Format.  */
143
144 #define MASK_FLOAT_VAX 512
145 #define TARGET_FLOAT_VAX (target_flags & MASK_FLOAT_VAX)
146
147 /* This means that the processor has byte and half word loads and stores
148    (the BWX extension).  */
149
150 #define MASK_BWX 1024
151 #define TARGET_BWX      (target_flags & MASK_BWX)
152
153 /* This means that the processor has the CIX extension.  */
154 #define MASK_CIX 2048
155 #define TARGET_CIX      (target_flags & MASK_CIX)
156
157 /* This means that the processor has the MAX extension.  */
158 #define MASK_MAX 4096
159 #define TARGET_MAX      (target_flags & MASK_MAX)
160
161 /* This means that the processor is an EV5, EV56, or PCA56.  This is defined
162    only in TARGET_CPU_DEFAULT.  */
163 #define MASK_CPU_EV5 8192
164
165 /* Likewise for EV6.  */
166 #define MASK_CPU_EV6 16384
167
168 /* This means we support the .arch directive in the assembler.  Only
169    defined in TARGET_CPU_DEFAULT.  */
170 #define MASK_SUPPORT_ARCH 32768
171 #define TARGET_SUPPORT_ARCH     (target_flags & MASK_SUPPORT_ARCH)
172
173 /* Macro to define tables used to set the flags.
174    This is a list in braces of pairs in braces,
175    each pair being { "NAME", VALUE }
176    where VALUE is the bits to set or minus the bits to clear.
177    An empty string NAME is used to identify the default VALUE.  */
178
179 #define TARGET_SWITCHES                         \
180   { {"no-soft-float", MASK_FP},                 \
181     {"soft-float", - MASK_FP},                  \
182     {"fp-regs", MASK_FPREGS},                   \
183     {"no-fp-regs", - (MASK_FP|MASK_FPREGS)},    \
184     {"alpha-as", -MASK_GAS},                    \
185     {"gas", MASK_GAS},                          \
186     {"ieee-conformant", MASK_IEEE_CONFORMANT},  \
187     {"ieee", MASK_IEEE|MASK_IEEE_CONFORMANT},   \
188     {"ieee-with-inexact", MASK_IEEE_WITH_INEXACT|MASK_IEEE_CONFORMANT}, \
189     {"build-constants", MASK_BUILD_CONSTANTS},  \
190     {"float-vax", MASK_FLOAT_VAX},              \
191     {"float-ieee", -MASK_FLOAT_VAX},            \
192     {"bwx", MASK_BWX},                          \
193     {"no-bwx", -MASK_BWX},                      \
194     {"cix", MASK_CIX},                          \
195     {"no-cix", -MASK_CIX},                      \
196     {"max", MASK_MAX},                          \
197     {"no-max", -MASK_MAX},                      \
198     {"", TARGET_DEFAULT | TARGET_CPU_DEFAULT} }
199
200 #define TARGET_DEFAULT MASK_FP|MASK_FPREGS
201
202 #ifndef TARGET_CPU_DEFAULT
203 #define TARGET_CPU_DEFAULT 0
204 #endif
205
206 /* This macro is similar to `TARGET_SWITCHES' but defines names of
207    command options that have values.  Its definition is an initializer
208    with a subgrouping for each command option.
209
210    Each subgrouping contains a string constant, that defines the fixed
211    part of the option name, and the address of a variable.  The
212    variable, type `char *', is set to the variable part of the given
213    option if the fixed part matches.  The actual option name is made
214    by appending `-m' to the specified name.
215
216    Here is an example which defines `-mshort-data-NUMBER'.  If the
217    given option is `-mshort-data-512', the variable `m88k_short_data'
218    will be set to the string `"512"'.
219
220         extern char *m88k_short_data;
221         #define TARGET_OPTIONS { { "short-data-", &m88k_short_data } }  */
222
223 extern char *alpha_cpu_string;  /* For -mcpu= */
224 extern char *alpha_fprm_string; /* For -mfp-rounding-mode=[n|m|c|d] */
225 extern char *alpha_fptm_string; /* For -mfp-trap-mode=[n|u|su|sui]  */
226 extern char *alpha_tp_string;   /* For -mtrap-precision=[p|f|i] */
227 extern char *alpha_mlat_string; /* For -mmemory-latency= */
228
229 #define TARGET_OPTIONS                          \
230 {                                               \
231   {"cpu=",              &alpha_cpu_string},     \
232   {"fp-rounding-mode=", &alpha_fprm_string},    \
233   {"fp-trap-mode=",     &alpha_fptm_string},    \
234   {"trap-precision=",   &alpha_tp_string},      \
235   {"memory-latency=",   &alpha_mlat_string},    \
236 }
237
238 /* Sometimes certain combinations of command options do not make sense
239    on a particular target machine.  You can define a macro
240    `OVERRIDE_OPTIONS' to take account of this.  This macro, if
241    defined, is executed once just after all the command options have
242    been parsed.
243
244    On the Alpha, it is used to translate target-option strings into
245    numeric values.  */
246
247 extern void override_options ();
248 #define OVERRIDE_OPTIONS override_options ()
249
250
251 /* Define this macro to change register usage conditional on target flags.
252
253    On the Alpha, we use this to disable the floating-point registers when
254    they don't exist.  */
255
256 #define CONDITIONAL_REGISTER_USAGE      \
257   if (! TARGET_FPREGS)                  \
258     for (i = 32; i < 63; i++)           \
259       fixed_regs[i] = call_used_regs[i] = 1;
260
261 /* Show we can debug even without a frame pointer.  */
262 #define CAN_DEBUG_WITHOUT_FP
263 \f
264 /* target machine storage layout */
265
266 /* Define to enable software floating point emulation. */
267 #define REAL_ARITHMETIC
268
269 /* The following #defines are used when compiling the routines in
270    libgcc1.c.  Since the Alpha calling conventions require single
271    precision floats to be passed in the floating-point registers
272    (rather than in the general registers) we have to build the
273    libgcc1.c routines in such a way that they know the actual types
274    of their formal arguments and the actual types of their return
275    values.  Otherwise, gcc will generate calls to the libgcc1.c
276    routines, passing arguments in the floating-point registers,
277    but the libgcc1.c routines will expect their arguments on the
278    stack (where the Alpha calling conventions require structs &
279    unions to be passed).  */
280
281 #define FLOAT_VALUE_TYPE        double
282 #define INTIFY(FLOATVAL)        (FLOATVAL)
283 #define FLOATIFY(INTVAL)        (INTVAL)
284 #define FLOAT_ARG_TYPE          double
285
286 /* Define the size of `int'.  The default is the same as the word size.  */
287 #define INT_TYPE_SIZE 32
288
289 /* Define the size of `long long'.  The default is the twice the word size.  */
290 #define LONG_LONG_TYPE_SIZE 64
291
292 /* The two floating-point formats we support are S-floating, which is
293    4 bytes, and T-floating, which is 8 bytes.  `float' is S and `double'
294    and `long double' are T.  */
295
296 #define FLOAT_TYPE_SIZE 32
297 #define DOUBLE_TYPE_SIZE 64
298 #define LONG_DOUBLE_TYPE_SIZE 64
299
300 #define WCHAR_TYPE "unsigned int"
301 #define WCHAR_TYPE_SIZE 32
302
303 /* Define this macro if it is advisable to hold scalars in registers
304    in a wider mode than that declared by the program.  In such cases, 
305    the value is constrained to be within the bounds of the declared
306    type, but kept valid in the wider mode.  The signedness of the
307    extension may differ from that of the type.
308
309    For Alpha, we always store objects in a full register.  32-bit objects
310    are always sign-extended, but smaller objects retain their signedness.  */
311
312 #define PROMOTE_MODE(MODE,UNSIGNEDP,TYPE)  \
313   if (GET_MODE_CLASS (MODE) == MODE_INT         \
314       && GET_MODE_SIZE (MODE) < UNITS_PER_WORD) \
315     {                                           \
316       if ((MODE) == SImode)                     \
317         (UNSIGNEDP) = 0;                        \
318       (MODE) = DImode;                          \
319     }
320
321 /* Define this if function arguments should also be promoted using the above
322    procedure.  */
323
324 #define PROMOTE_FUNCTION_ARGS
325
326 /* Likewise, if the function return value is promoted.  */
327
328 #define PROMOTE_FUNCTION_RETURN
329
330 /* Define this if most significant bit is lowest numbered
331    in instructions that operate on numbered bit-fields.
332
333    There are no such instructions on the Alpha, but the documentation
334    is little endian.  */
335 #define BITS_BIG_ENDIAN 0
336
337 /* Define this if most significant byte of a word is the lowest numbered.
338    This is false on the Alpha.  */
339 #define BYTES_BIG_ENDIAN 0
340
341 /* Define this if most significant word of a multiword number is lowest
342    numbered.
343
344    For Alpha we can decide arbitrarily since there are no machine instructions
345    for them.  Might as well be consistent with bytes. */
346 #define WORDS_BIG_ENDIAN 0
347
348 /* number of bits in an addressable storage unit */
349 #define BITS_PER_UNIT 8
350
351 /* Width in bits of a "word", which is the contents of a machine register.
352    Note that this is not necessarily the width of data type `int';
353    if using 16-bit ints on a 68000, this would still be 32.
354    But on a machine with 16-bit registers, this would be 16.  */
355 #define BITS_PER_WORD 64
356
357 /* Width of a word, in units (bytes).  */
358 #define UNITS_PER_WORD 8
359
360 /* Width in bits of a pointer.
361    See also the macro `Pmode' defined below.  */
362 #define POINTER_SIZE 64
363
364 /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
365 #define PARM_BOUNDARY 64
366
367 /* Boundary (in *bits*) on which stack pointer should be aligned.  */
368 #define STACK_BOUNDARY 64
369
370 /* Allocation boundary (in *bits*) for the code of a function.  */
371 #define FUNCTION_BOUNDARY 64
372
373 /* Alignment of field after `int : 0' in a structure.  */
374 #define EMPTY_FIELD_BOUNDARY 64
375
376 /* Every structure's size must be a multiple of this.  */
377 #define STRUCTURE_SIZE_BOUNDARY 8
378
379 /* A bitfield declared as `int' forces `int' alignment for the struct.  */
380 #define PCC_BITFIELD_TYPE_MATTERS 1
381
382 /* Align loop starts for optimal branching.  
383
384    ??? Kludge this and the next macro for the moment by not doing anything if
385    we don't optimize and also if we are writing ECOFF symbols to work around
386    a bug in DEC's assembler. */
387 /* Aligning past 2**3 wastes insn cache lines, and doesn't buy much 
388    issue-wise on average anyway.  */
389
390 #define LOOP_ALIGN(LABEL) \
391   (optimize > 0 && write_symbols != SDB_DEBUG ? 3 : 0)
392
393 /* This is how to align an instruction for optimal branching.
394    On Alpha we'll get better performance by aligning on a quadword
395    boundary.  */
396 /* Aligning past 2**3 wastes insn cache lines, and doesn't buy much 
397    issue-wise on average anyway.  */
398
399 #define ALIGN_LABEL_AFTER_BARRIER(FILE) \
400   (optimize > 0 && write_symbols != SDB_DEBUG ? 3 : 0)
401
402 /* No data type wants to be aligned rounder than this.  */
403 #define BIGGEST_ALIGNMENT 64
404
405 /* For atomic access to objects, must have at least 32-bit alignment
406    unless the machine has byte operations.  */
407 #define MINIMUM_ATOMIC_ALIGNMENT (TARGET_BWX ? 8 : 32)
408
409 /* Align all constants and variables to at least a word boundary so
410    we can pick up pieces of them faster.  */
411 /* ??? Only if block-move stuff knows about different source/destination
412    alignment.  */
413 #if 0
414 #define CONSTANT_ALIGNMENT(EXP, ALIGN) MAX ((ALIGN), BITS_PER_WORD)
415 #define DATA_ALIGNMENT(EXP, ALIGN) MAX ((ALIGN), BITS_PER_WORD)
416 #endif
417
418 /* Set this non-zero if move instructions will actually fail to work
419    when given unaligned data.
420
421    Since we get an error message when we do one, call them invalid.  */
422
423 #define STRICT_ALIGNMENT 1
424
425 /* Set this non-zero if unaligned move instructions are extremely slow.
426
427    On the Alpha, they trap.  */
428
429 #define SLOW_UNALIGNED_ACCESS 1
430 \f
431 /* Standard register usage.  */
432
433 /* Number of actual hardware registers.
434    The hardware registers are assigned numbers for the compiler
435    from 0 to just below FIRST_PSEUDO_REGISTER.
436    All registers that the compiler knows about must be given numbers,
437    even those that are not normally considered general registers.
438
439    We define all 32 integer registers, even though $31 is always zero,
440    and all 32 floating-point registers, even though $f31 is also
441    always zero.  We do not bother defining the FP status register and
442    there are no other registers. 
443
444    Since $31 is always zero, we will use register number 31 as the
445    argument pointer.  It will never appear in the generated code
446    because we will always be eliminating it in favor of the stack
447    pointer or hardware frame pointer.
448
449    Likewise, we use $f31 for the frame pointer, which will always
450    be eliminated in favor of the hardware frame pointer or the
451    stack pointer.  */
452
453 #define FIRST_PSEUDO_REGISTER 64
454
455 /* 1 for registers that have pervasive standard uses
456    and are not available for the register allocator.  */
457
458 #define FIXED_REGISTERS  \
459  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
460   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, \
461   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
462   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 }
463
464 /* 1 for registers not available across function calls.
465    These must include the FIXED_REGISTERS and also any
466    registers that can be used without being saved.
467    The latter must include the registers where values are returned
468    and the register where structure-value addresses are passed.
469    Aside from that, you can include as many other registers as you like.  */
470 #define CALL_USED_REGISTERS  \
471  {1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, \
472   1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, \
473   1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, \
474   1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }
475
476 /* List the order in which to allocate registers.  Each register must be
477    listed once, even those in FIXED_REGISTERS.
478
479    We allocate in the following order:
480    $f1                  (nonsaved floating-point register)
481    $f10-$f15            (likewise)
482    $f22-$f30            (likewise)
483    $f21-$f16            (likewise, but input args)
484    $f0                  (nonsaved, but return value)
485    $f2-$f9              (saved floating-point registers)
486    $1-$8                (nonsaved integer registers)
487    $22-$25              (likewise)
488    $28                  (likewise)
489    $0                   (likewise, but return value)
490    $21-$16              (likewise, but input args)
491    $27                  (procedure value in OSF, nonsaved in NT)
492    $9-$14               (saved integer registers)
493    $26                  (return PC)
494    $15                  (frame pointer)
495    $29                  (global pointer)
496    $30, $31, $f31       (stack pointer and always zero/ap & fp)  */
497
498 #define REG_ALLOC_ORDER         \
499   {33,                                  \
500    42, 43, 44, 45, 46, 47,              \
501    54, 55, 56, 57, 58, 59, 60, 61, 62,  \
502    53, 52, 51, 50, 49, 48,              \
503    32,                                  \
504    34, 35, 36, 37, 38, 39, 40, 41,      \
505    1, 2, 3, 4, 5, 6, 7, 8,              \
506    22, 23, 24, 25,                      \
507    28,                                  \
508    0,                                   \
509    21, 20, 19, 18, 17, 16,              \
510    27,                                  \
511    9, 10, 11, 12, 13, 14,               \
512    26,                                  \
513    15,                                  \
514    29,                                  \
515    30, 31, 63 }
516
517 /* Return number of consecutive hard regs needed starting at reg REGNO
518    to hold something of mode MODE.
519    This is ordinarily the length in words of a value of mode MODE
520    but can be less for certain modes in special long registers.  */
521
522 #define HARD_REGNO_NREGS(REGNO, MODE)   \
523   ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
524
525 /* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
526    On Alpha, the integer registers can hold any mode.  The floating-point
527    registers can hold 32-bit and 64-bit integers as well, but not 16-bit
528    or 8-bit values.  If we only allowed the larger integers into FP registers,
529    we'd have to say that QImode and SImode aren't tiable, which is a
530    pain.  So say all registers can hold everything and see how that works.  */
531
532 #define HARD_REGNO_MODE_OK(REGNO, MODE) 1
533
534 /* Value is 1 if it is a good idea to tie two pseudo registers
535    when one has mode MODE1 and one has mode MODE2.
536    If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
537    for any hard reg, then this must be 0 for correct output.  */
538
539 #define MODES_TIEABLE_P(MODE1, MODE2) 1
540
541 /* Specify the registers used for certain standard purposes.
542    The values of these macros are register numbers.  */
543
544 /* Alpha pc isn't overloaded on a register that the compiler knows about.  */
545 /* #define PC_REGNUM  */
546
547 /* Register to use for pushing function arguments.  */
548 #define STACK_POINTER_REGNUM 30
549
550 /* Base register for access to local variables of the function.  */
551 #define HARD_FRAME_POINTER_REGNUM 15
552
553 /* Value should be nonzero if functions must have frame pointers.
554    Zero means the frame pointer need not be set up (and parms
555    may be accessed via the stack pointer) in functions that seem suitable.
556    This is computed in `reload', in reload1.c.  */
557 #define FRAME_POINTER_REQUIRED 0
558
559 /* Base register for access to arguments of the function.  */
560 #define ARG_POINTER_REGNUM 31
561
562 /* Base register for access to local variables of function.  */
563 #define FRAME_POINTER_REGNUM 63
564
565 /* Register in which static-chain is passed to a function. 
566
567    For the Alpha, this is based on an example; the calling sequence
568    doesn't seem to specify this.  */
569 #define STATIC_CHAIN_REGNUM 1
570
571 /* Register in which address to store a structure value
572    arrives in the function.  On the Alpha, the address is passed
573    as a hidden argument.  */
574 #define STRUCT_VALUE 0
575 \f
576 /* Define the classes of registers for register constraints in the
577    machine description.  Also define ranges of constants.
578
579    One of the classes must always be named ALL_REGS and include all hard regs.
580    If there is more than one class, another class must be named NO_REGS
581    and contain no registers.
582
583    The name GENERAL_REGS must be the name of a class (or an alias for
584    another name such as ALL_REGS).  This is the class of registers
585    that is allowed by "g" or "r" in a register constraint.
586    Also, registers outside this class are allocated only when
587    instructions express preferences for them.
588
589    The classes must be numbered in nondecreasing order; that is,
590    a larger-numbered class must never be contained completely
591    in a smaller-numbered class.
592
593    For any two classes, it is very desirable that there be another
594    class that represents their union.  */
595    
596 enum reg_class { NO_REGS, GENERAL_REGS, FLOAT_REGS, ALL_REGS,
597                  LIM_REG_CLASSES };
598
599 #define N_REG_CLASSES (int) LIM_REG_CLASSES
600
601 /* Give names of register classes as strings for dump file.   */
602
603 #define REG_CLASS_NAMES                         \
604  {"NO_REGS", "GENERAL_REGS", "FLOAT_REGS", "ALL_REGS" }
605
606 /* Define which registers fit in which classes.
607    This is an initializer for a vector of HARD_REG_SET
608    of length N_REG_CLASSES.  */
609
610 #define REG_CLASS_CONTENTS      \
611   { {0, 0}, {~0, 0x80000000}, {0, 0x7fffffff}, {~0, ~0} }
612
613 /* The same information, inverted:
614    Return the class number of the smallest class containing
615    reg number REGNO.  This could be a conditional expression
616    or could index an array.  */
617
618 #define REGNO_REG_CLASS(REGNO) \
619  ((REGNO) >= 32 && (REGNO) <= 62 ? FLOAT_REGS : GENERAL_REGS)
620
621 /* The class value for index registers, and the one for base regs.  */
622 #define INDEX_REG_CLASS NO_REGS
623 #define BASE_REG_CLASS GENERAL_REGS
624
625 /* Get reg_class from a letter such as appears in the machine description.  */
626
627 #define REG_CLASS_FROM_LETTER(C)        \
628  ((C) == 'f' ? FLOAT_REGS : NO_REGS)
629
630 /* Define this macro to change register usage conditional on target flags.  */
631 /* #define CONDITIONAL_REGISTER_USAGE  */
632
633 /* The letters I, J, K, L, M, N, O, and P in a register constraint string
634    can be used to stand for particular ranges of immediate operands.
635    This macro defines what the ranges are.
636    C is the letter, and VALUE is a constant value.
637    Return 1 if VALUE is in the range specified by C.
638
639    For Alpha:
640    `I' is used for the range of constants most insns can contain.
641    `J' is the constant zero.
642    `K' is used for the constant in an LDA insn.
643    `L' is used for the constant in a LDAH insn.
644    `M' is used for the constants that can be AND'ed with using a ZAP insn.
645    `N' is used for complemented 8-bit constants.
646    `O' is used for negated 8-bit constants.
647    `P' is used for the constants 1, 2 and 3.  */
648
649 #define CONST_OK_FOR_LETTER_P(VALUE, C)                         \
650   ((C) == 'I' ? (unsigned HOST_WIDE_INT) (VALUE) < 0x100        \
651    : (C) == 'J' ? (VALUE) == 0                                  \
652    : (C) == 'K' ? (unsigned HOST_WIDE_INT) ((VALUE) + 0x8000) < 0x10000 \
653    : (C) == 'L' ? (((VALUE) & 0xffff) == 0                      \
654                   && (((VALUE)) >> 31 == -1 || (VALUE) >> 31 == 0)) \
655    : (C) == 'M' ? zap_mask (VALUE)                              \
656    : (C) == 'N' ? (unsigned HOST_WIDE_INT) (~ (VALUE)) < 0x100  \
657    : (C) == 'O' ? (unsigned HOST_WIDE_INT) (- (VALUE)) < 0x100  \
658    : (C) == 'P' ? (VALUE) == 1 || (VALUE) == 2 || (VALUE) == 3  \
659    : 0)
660
661 /* Similar, but for floating or large integer constants, and defining letters
662    G and H.   Here VALUE is the CONST_DOUBLE rtx itself.
663
664    For Alpha, `G' is the floating-point constant zero.  `H' is a CONST_DOUBLE
665    that is the operand of a ZAP insn.  */
666
667 #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C)                          \
668   ((C) == 'G' ? (GET_MODE_CLASS (GET_MODE (VALUE)) == MODE_FLOAT        \
669                  && (VALUE) == CONST0_RTX (GET_MODE (VALUE)))           \
670    : (C) == 'H' ? (GET_MODE (VALUE) == VOIDmode                         \
671                    && zap_mask (CONST_DOUBLE_LOW (VALUE))               \
672                    && zap_mask (CONST_DOUBLE_HIGH (VALUE)))             \
673    : 0)
674
675 /* Optional extra constraints for this machine.
676
677    For the Alpha, `Q' means that this is a memory operand but not a
678    reference to an unaligned location.
679    `R' is a SYMBOL_REF that has SYMBOL_REF_FLAG set or is the current
680    function.  */
681
682 #define EXTRA_CONSTRAINT(OP, C)                         \
683   ((C) == 'Q' ? GET_CODE (OP) == MEM && GET_CODE (XEXP (OP, 0)) != AND \
684    : (C) == 'R' ? current_file_function_operand (OP, Pmode)     \
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
692    On the Alpha, all constants except zero go into a floating-point
693    register via memory.  */
694
695 #define PREFERRED_RELOAD_CLASS(X, CLASS)                \
696   (CONSTANT_P (X) && (X) != const0_rtx && (X) != CONST0_RTX (GET_MODE (X)) \
697    ? ((CLASS) == FLOAT_REGS || (CLASS) == NO_REGS ? NO_REGS : GENERAL_REGS)\
698    : (CLASS))
699
700 /* Loading and storing HImode or QImode values to and from memory
701    usually requires a scratch register.  The exceptions are loading
702    QImode and HImode from an aligned address to a general register
703    unless byte instructions are permitted.
704    We also cannot load an unaligned address or a paradoxical SUBREG into an
705    FP register.   */
706
707 #define SECONDARY_INPUT_RELOAD_CLASS(CLASS,MODE,IN)                     \
708 (((GET_CODE (IN) == MEM                                                 \
709    || (GET_CODE (IN) == REG && REGNO (IN) >= FIRST_PSEUDO_REGISTER)     \
710    || (GET_CODE (IN) == SUBREG                                          \
711        && (GET_CODE (SUBREG_REG (IN)) == MEM                            \
712            || (GET_CODE (SUBREG_REG (IN)) == REG                        \
713                && REGNO (SUBREG_REG (IN)) >= FIRST_PSEUDO_REGISTER))))  \
714   && (((CLASS) == FLOAT_REGS                                            \
715        && ((MODE) == SImode || (MODE) == HImode || (MODE) == QImode))   \
716       || (((MODE) == QImode || (MODE) == HImode)                        \
717           && ! TARGET_BWX && unaligned_memory_operand (IN, MODE)))) \
718  ? GENERAL_REGS                                                         \
719  : ((CLASS) == FLOAT_REGS && GET_CODE (IN) == MEM                       \
720     && GET_CODE (XEXP (IN, 0)) == AND) ? GENERAL_REGS                   \
721  : ((CLASS) == FLOAT_REGS && GET_CODE (IN) == SUBREG                    \
722     && (GET_MODE_SIZE (GET_MODE (IN))                                   \
723         > GET_MODE_SIZE (GET_MODE (SUBREG_REG (IN))))) ? GENERAL_REGS   \
724  : NO_REGS)
725
726 #define SECONDARY_OUTPUT_RELOAD_CLASS(CLASS,MODE,OUT)                   \
727 (((GET_CODE (OUT) == MEM                                                \
728    || (GET_CODE (OUT) == REG && REGNO (OUT) >= FIRST_PSEUDO_REGISTER)   \
729    || (GET_CODE (OUT) == SUBREG                                         \
730        && (GET_CODE (SUBREG_REG (OUT)) == MEM                           \
731            || (GET_CODE (SUBREG_REG (OUT)) == REG                       \
732                && REGNO (SUBREG_REG (OUT)) >= FIRST_PSEUDO_REGISTER)))) \
733   && ((((MODE) == HImode || (MODE) == QImode)                           \
734        && (! TARGET_BWX || (CLASS) == FLOAT_REGS))                      \
735       || ((MODE) == SImode && (CLASS) == FLOAT_REGS)))                  \
736  ? GENERAL_REGS                                                         \
737  : ((CLASS) == FLOAT_REGS && GET_CODE (OUT) == MEM                      \
738     && GET_CODE (XEXP (OUT, 0)) == AND) ? GENERAL_REGS                  \
739  : ((CLASS) == FLOAT_REGS && GET_CODE (OUT) == SUBREG                   \
740     && (GET_MODE_SIZE (GET_MODE (OUT))                                  \
741         > GET_MODE_SIZE (GET_MODE (SUBREG_REG (OUT))))) ? GENERAL_REGS  \
742  : NO_REGS)
743
744 /* If we are copying between general and FP registers, we need a memory
745    location unless the CIX extension is available.  */
746
747 #define SECONDARY_MEMORY_NEEDED(CLASS1,CLASS2,MODE) \
748  (! TARGET_CIX && (CLASS1) != (CLASS2))
749
750 /* Specify the mode to be used for memory when a secondary memory
751    location is needed.  If MODE is floating-point, use it.  Otherwise,
752    widen to a word like the default.  This is needed because we always
753    store integers in FP registers in quadword format.  This whole
754    area is very tricky! */
755 #define SECONDARY_MEMORY_NEEDED_MODE(MODE)              \
756   (GET_MODE_CLASS (MODE) == MODE_FLOAT ? (MODE)         \
757    : GET_MODE_SIZE (MODE) >= 4 ? (MODE)                 \
758    : mode_for_size (BITS_PER_WORD, GET_MODE_CLASS (MODE), 0))
759
760 /* Return the maximum number of consecutive registers
761    needed to represent mode MODE in a register of class CLASS.  */
762
763 #define CLASS_MAX_NREGS(CLASS, MODE)                            \
764  ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
765
766 /* If defined, gives a class of registers that cannot be used as the
767    operand of a SUBREG that changes the size of the object.  */
768
769 #define CLASS_CANNOT_CHANGE_SIZE        FLOAT_REGS
770
771 /* Define the cost of moving between registers of various classes.  Moving
772    between FLOAT_REGS and anything else except float regs is expensive. 
773    In fact, we make it quite expensive because we really don't want to
774    do these moves unless it is clearly worth it.  Optimizations may
775    reduce the impact of not being able to allocate a pseudo to a
776    hard register.  */
777
778 #define REGISTER_MOVE_COST(CLASS1, CLASS2)              \
779   (((CLASS1) == FLOAT_REGS) == ((CLASS2) == FLOAT_REGS) \
780    ? 2                                                  \
781    : TARGET_CIX ? 3 : 4+2*alpha_memory_latency)
782
783 /* A C expressions returning the cost of moving data of MODE from a register to
784    or from memory.
785
786    On the Alpha, bump this up a bit.  */
787
788 extern int alpha_memory_latency;
789 #define MEMORY_MOVE_COST(MODE)  (2*alpha_memory_latency)
790
791 /* Provide the cost of a branch.  Exact meaning under development.  */
792 #define BRANCH_COST 5
793
794 /* Adjust the cost of dependencies.  */
795
796 #define ADJUST_COST(INSN,LINK,DEP,COST) \
797   (COST) = alpha_adjust_cost (INSN, LINK, DEP, COST)
798 \f
799 /* Stack layout; function entry, exit and calling.  */
800
801 /* Define this if pushing a word on the stack
802    makes the stack pointer a smaller address.  */
803 #define STACK_GROWS_DOWNWARD
804
805 /* Define this if the nominal address of the stack frame
806    is at the high-address end of the local variables;
807    that is, each additional local variable allocated
808    goes at a more negative offset in the frame.  */
809 /* #define FRAME_GROWS_DOWNWARD */
810
811 /* Offset within stack frame to start allocating local variables at.
812    If FRAME_GROWS_DOWNWARD, this is the offset to the END of the
813    first local allocated.  Otherwise, it is the offset to the BEGINNING
814    of the first local allocated.  */
815
816 #define STARTING_FRAME_OFFSET 0
817
818 /* If we generate an insn to push BYTES bytes,
819    this says how many the stack pointer really advances by.
820    On Alpha, don't define this because there are no push insns.  */
821 /*  #define PUSH_ROUNDING(BYTES) */
822
823 /* Define this to be nonzero if stack checking is built into the ABI.  */
824 #define STACK_CHECK_BUILTIN 1
825
826 /* Define this if the maximum size of all the outgoing args is to be
827    accumulated and pushed during the prologue.  The amount can be
828    found in the variable current_function_outgoing_args_size.  */
829 #define ACCUMULATE_OUTGOING_ARGS
830
831 /* Offset of first parameter from the argument pointer register value.  */
832
833 #define FIRST_PARM_OFFSET(FNDECL) 0
834
835 /* Definitions for register eliminations.
836
837    We have two registers that can be eliminated on the Alpha.  First, the
838    frame pointer register can often be eliminated in favor of the stack
839    pointer register.  Secondly, the argument pointer register can always be
840    eliminated; it is replaced with either the stack or frame pointer. */
841
842 /* This is an array of structures.  Each structure initializes one pair
843    of eliminable registers.  The "from" register number is given first,
844    followed by "to".  Eliminations of the same "from" register are listed
845    in order of preference.  */
846
847 #define ELIMINABLE_REGS                              \
848 {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM},        \
849  { ARG_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM},   \
850  { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM},      \
851  { FRAME_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}}
852
853 /* Given FROM and TO register numbers, say whether this elimination is allowed.
854    Frame pointer elimination is automatically handled.
855
856    All eliminations are valid since the cases where FP can't be
857    eliminated are already handled.  */
858
859 #define CAN_ELIMINATE(FROM, TO) 1
860
861 /* Round up to a multiple of 16 bytes.  */
862 #define ALPHA_ROUND(X) (((X) + 15) & ~ 15)
863
864 /* Define the offset between two registers, one to be eliminated, and the other
865    its replacement, at the start of a routine.  */
866 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET)                    \
867 { if ((FROM) == FRAME_POINTER_REGNUM)                                   \
868     (OFFSET) = (ALPHA_ROUND (current_function_outgoing_args_size)       \
869                 + alpha_sa_size ());                                    \
870   else if ((FROM) == ARG_POINTER_REGNUM)                                \
871     (OFFSET) = (ALPHA_ROUND (current_function_outgoing_args_size)       \
872                 + alpha_sa_size ()                                      \
873                 + (ALPHA_ROUND (get_frame_size ()                       \
874                                + current_function_pretend_args_size)    \
875                    - current_function_pretend_args_size));              \
876 }
877
878 /* Define this if stack space is still allocated for a parameter passed
879    in a register.  */
880 /* #define REG_PARM_STACK_SPACE */
881
882 /* Value is the number of bytes of arguments automatically
883    popped when returning from a subroutine call.
884    FUNDECL is the declaration node of the function (as a tree),
885    FUNTYPE is the data type of the function (as a tree),
886    or for a library call it is an identifier node for the subroutine name.
887    SIZE is the number of bytes of arguments passed on the stack.  */
888
889 #define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE) 0
890
891 /* Define how to find the value returned by a function.
892    VALTYPE is the data type of the value (as a tree).
893    If the precise function being called is known, FUNC is its FUNCTION_DECL;
894    otherwise, FUNC is 0.
895
896    On Alpha the value is found in $0 for integer functions and
897    $f0 for floating-point functions.  */
898
899 #define FUNCTION_VALUE(VALTYPE, FUNC)   \
900   gen_rtx (REG,                                                 \
901            ((INTEGRAL_TYPE_P (VALTYPE)                          \
902              && TYPE_PRECISION (VALTYPE) < BITS_PER_WORD)       \
903             || POINTER_TYPE_P (VALTYPE))                        \
904            ? word_mode : TYPE_MODE (VALTYPE),                   \
905            ((TARGET_FPREGS                                      \
906              && (TREE_CODE (VALTYPE) == REAL_TYPE               \
907                  || TREE_CODE (VALTYPE) == COMPLEX_TYPE))       \
908             ? 32 : 0))
909
910 /* Define how to find the value returned by a library function
911    assuming the value has mode MODE.  */
912
913 #define LIBCALL_VALUE(MODE)     \
914    gen_rtx (REG, MODE,                                          \
915             (TARGET_FPREGS                                      \
916              && (GET_MODE_CLASS (MODE) == MODE_FLOAT            \
917                  || GET_MODE_CLASS (MODE) == MODE_COMPLEX_FLOAT) \
918              ? 32 : 0))
919
920 /* The definition of this macro implies that there are cases where
921    a scalar value cannot be returned in registers.
922
923    For the Alpha, any structure or union type is returned in memory, as
924    are integers whose size is larger than 64 bits.  */
925
926 #define RETURN_IN_MEMORY(TYPE) \
927   (TYPE_MODE (TYPE) == BLKmode \
928    || (TREE_CODE (TYPE) == INTEGER_TYPE && TYPE_PRECISION (TYPE) > 64))
929
930 /* 1 if N is a possible register number for a function value
931    as seen by the caller.  */
932
933 #define FUNCTION_VALUE_REGNO_P(N)  \
934   ((N) == 0 || (N) == 1 || (N) == 32 || (N) == 33)
935
936 /* 1 if N is a possible register number for function argument passing.
937    On Alpha, these are $16-$21 and $f16-$f21.  */
938
939 #define FUNCTION_ARG_REGNO_P(N) \
940   (((N) >= 16 && (N) <= 21) || ((N) >= 16 + 32 && (N) <= 21 + 32))
941 \f
942 /* Define a data type for recording info about an argument list
943    during the scan of that argument list.  This data type should
944    hold all necessary information about the function itself
945    and about the args processed so far, enough to enable macros
946    such as FUNCTION_ARG to determine where the next arg should go.
947
948    On Alpha, this is a single integer, which is a number of words
949    of arguments scanned so far.
950    Thus 6 or more means all following args should go on the stack.  */
951
952 #define CUMULATIVE_ARGS int
953
954 /* Initialize a variable CUM of type CUMULATIVE_ARGS
955    for a call to a function whose data type is FNTYPE.
956    For a library call, FNTYPE is 0.  */
957
958 #define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME,INDIRECT)  (CUM) = 0
959
960 /* Define intermediate macro to compute the size (in registers) of an argument
961    for the Alpha.  */
962
963 #define ALPHA_ARG_SIZE(MODE, TYPE, NAMED)                               \
964 ((MODE) != BLKmode                                                      \
965  ? (GET_MODE_SIZE (MODE) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD       \
966  : (int_size_in_bytes (TYPE) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
967
968 /* Update the data in CUM to advance over an argument
969    of mode MODE and data type TYPE.
970    (TYPE is null for libcalls where that information may not be available.)  */
971
972 #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED)                    \
973   if (MUST_PASS_IN_STACK (MODE, TYPE))                                  \
974     (CUM) = 6;                                                          \
975   else                                                                  \
976     (CUM) += ALPHA_ARG_SIZE (MODE, TYPE, NAMED)
977
978 /* Determine where to put an argument to a function.
979    Value is zero to push the argument on the stack,
980    or a hard register in which to store the argument.
981
982    MODE is the argument's machine mode.
983    TYPE is the data type of the argument (as a tree).
984     This is null for libcalls where that information may
985     not be available.
986    CUM is a variable of type CUMULATIVE_ARGS which gives info about
987     the preceding args and about the function being called.
988    NAMED is nonzero if this argument is a named parameter
989     (otherwise it is an extra parameter matching an ellipsis).
990
991    On Alpha the first 6 words of args are normally in registers
992    and the rest are pushed.  */
993
994 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED)    \
995 ((CUM) < 6 && ! MUST_PASS_IN_STACK (MODE, TYPE) \
996  ? gen_rtx(REG, (MODE),                         \
997            (CUM) + 16 + ((TARGET_FPREGS         \
998                           && (GET_MODE_CLASS (MODE) == MODE_COMPLEX_FLOAT  \
999                               || GET_MODE_CLASS (MODE) == MODE_FLOAT)) \
1000                          * 32))                 \
1001  : 0)
1002
1003 /* Specify the padding direction of arguments.
1004
1005    On the Alpha, we must pad upwards in order to be able to pass args in
1006    registers.  */
1007
1008 #define FUNCTION_ARG_PADDING(MODE, TYPE)        upward
1009
1010 /* For an arg passed partly in registers and partly in memory,
1011    this is the number of registers used.
1012    For args passed entirely in registers or entirely in memory, zero.  */
1013
1014 #define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED)      \
1015 ((CUM) < 6 && 6 < (CUM) + ALPHA_ARG_SIZE (MODE, TYPE, NAMED)    \
1016  ? 6 - (CUM) : 0)
1017
1018 /* Perform any needed actions needed for a function that is receiving a
1019    variable number of arguments. 
1020
1021    CUM is as above.
1022
1023    MODE and TYPE are the mode and type of the current parameter.
1024
1025    PRETEND_SIZE is a variable that should be set to the amount of stack
1026    that must be pushed by the prolog to pretend that our caller pushed
1027    it.
1028
1029    Normally, this macro will push all remaining incoming registers on the
1030    stack and set PRETEND_SIZE to the length of the registers pushed. 
1031
1032    On the Alpha, we allocate space for all 12 arg registers, but only
1033    push those that are remaining.
1034
1035    However, if NO registers need to be saved, don't allocate any space.
1036    This is not only because we won't need the space, but because AP includes
1037    the current_pretend_args_size and we don't want to mess up any
1038    ap-relative addresses already made.
1039
1040    If we are not to use the floating-point registers, save the integer
1041    registers where we would put the floating-point registers.  This is
1042    not the most efficient way to implement varargs with just one register
1043    class, but it isn't worth doing anything more efficient in this rare
1044    case.  */
1045    
1046
1047 #define SETUP_INCOMING_VARARGS(CUM,MODE,TYPE,PRETEND_SIZE,NO_RTL)       \
1048 { if ((CUM) < 6)                                                        \
1049     {                                                                   \
1050       if (! (NO_RTL))                                                   \
1051         {                                                               \
1052           move_block_from_reg                                           \
1053             (16 + CUM,                                                  \
1054              gen_rtx (MEM, BLKmode,                                     \
1055                       plus_constant (virtual_incoming_args_rtx,         \
1056                                      ((CUM) + 6)* UNITS_PER_WORD)),     \
1057              6 - (CUM), (6 - (CUM)) * UNITS_PER_WORD);                  \
1058           move_block_from_reg                                           \
1059             (16 + (TARGET_FPREGS ? 32 : 0) + CUM,                       \
1060              gen_rtx (MEM, BLKmode,                                     \
1061                       plus_constant (virtual_incoming_args_rtx,         \
1062                                      (CUM) * UNITS_PER_WORD)),          \
1063              6 - (CUM), (6 - (CUM)) * UNITS_PER_WORD);                  \
1064            emit_insn (gen_blockage ());                                 \
1065          }                                                              \
1066       PRETEND_SIZE = 12 * UNITS_PER_WORD;                               \
1067     }                                                                   \
1068 }
1069
1070 /* Try to output insns to set TARGET equal to the constant C if it can be
1071    done in less than N insns.  Do all computations in MODE.  Returns the place
1072    where the output has been placed if it can be done and the insns have been
1073    emitted.  If it would take more than N insns, zero is returned and no
1074    insns and emitted.  */
1075 extern struct rtx_def *alpha_emit_set_const ();
1076 extern struct rtx_def *alpha_emit_set_long_const ();
1077 extern struct rtx_def *alpha_emit_conditional_move ();
1078
1079 /* Generate necessary RTL for __builtin_saveregs().
1080    ARGLIST is the argument list; see expr.c.  */
1081 extern struct rtx_def *alpha_builtin_saveregs ();
1082 #define EXPAND_BUILTIN_SAVEREGS(ARGLIST) alpha_builtin_saveregs (ARGLIST)
1083
1084 /* Define the information needed to generate branch and scc insns.  This is
1085    stored from the compare operation.  Note that we can't use "rtx" here
1086    since it hasn't been defined!  */
1087
1088 extern struct rtx_def *alpha_compare_op0, *alpha_compare_op1;
1089 extern int alpha_compare_fp_p;
1090
1091 /* Make (or fake) .linkage entry for function call.
1092
1093    IS_LOCAL is 0 if name is used in call, 1 if name is used in definition.  */
1094 extern void alpha_need_linkage ();
1095
1096 /* This macro defines the start of an assembly comment.  */
1097
1098 #define ASM_COMMENT_START " #"
1099
1100 /* This macro produces the initial definition of a function name.  On the
1101    Alpha, we need to save the function name for the prologue and epilogue.  */
1102
1103 extern char *alpha_function_name;
1104
1105 #define ASM_DECLARE_FUNCTION_NAME(FILE,NAME,DECL)       \
1106 {                                                       \
1107    alpha_function_name = NAME;                          \
1108 }
1109    
1110 /* This macro generates the assembly code for function entry.
1111    FILE is a stdio stream to output the code to.
1112    SIZE is an int: how many units of temporary storage to allocate.
1113    Refer to the array `regs_ever_live' to determine which registers
1114    to save; `regs_ever_live[I]' is nonzero if register number I
1115    is ever used in the function.  This macro is responsible for
1116    knowing which registers should not be saved even if used.  */
1117
1118 #define FUNCTION_PROLOGUE(FILE, SIZE)  output_prolog (FILE, SIZE)
1119
1120 /* Output assembler code to FILE to increment profiler label # LABELNO
1121    for profiling a function entry.  Under OSF/1, profiling is enabled
1122    by simply passing -pg to the assembler and linker.  */
1123
1124 #define FUNCTION_PROFILER(FILE, LABELNO)
1125
1126 /* Output assembler code to FILE to initialize this source file's
1127    basic block profiling info, if that has not already been done.
1128    This assumes that __bb_init_func doesn't garble a1-a5. */
1129
1130 #define FUNCTION_BLOCK_PROFILER(FILE, LABELNO)                  \
1131     do {                                                        \
1132         ASM_OUTPUT_REG_PUSH (FILE, 16);                         \
1133         fputs ("\tlda $16,$PBX32\n", (FILE));                   \
1134         fputs ("\tldq $26,0($16)\n", (FILE));                   \
1135         fputs ("\tbne $26,1f\n", (FILE));                       \
1136         fputs ("\tlda $27,__bb_init_func\n", (FILE));           \
1137         fputs ("\tjsr $26,($27),__bb_init_func\n", (FILE));     \
1138         fputs ("\tldgp $29,0($26)\n", (FILE));                  \
1139         fputs ("1:\n", (FILE));                                 \
1140         ASM_OUTPUT_REG_POP (FILE, 16);                          \
1141     } while (0);
1142
1143 /* Output assembler code to FILE to increment the entry-count for
1144    the BLOCKNO'th basic block in this source file.  */
1145
1146 #define BLOCK_PROFILER(FILE, BLOCKNO)                           \
1147     do {                                                        \
1148         int blockn = (BLOCKNO);                                 \
1149         fputs ("\tsubq $30,16,$30\n", (FILE));                  \
1150         fputs ("\tstq $26,0($30)\n", (FILE));                   \
1151         fputs ("\tstq $27,8($30)\n", (FILE));                   \
1152         fputs ("\tlda $26,$PBX34\n", (FILE));                   \
1153         fprintf ((FILE), "\tldq $27,%d($26)\n", 8*blockn);      \
1154         fputs ("\taddq $27,1,$27\n", (FILE));                   \
1155         fprintf ((FILE), "\tstq $27,%d($26)\n", 8*blockn);      \
1156         fputs ("\tldq $26,0($30)\n", (FILE));                   \
1157         fputs ("\tldq $27,8($30)\n", (FILE));                   \
1158         fputs ("\taddq $30,16,$30\n", (FILE));                  \
1159     } while (0)
1160
1161
1162 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
1163    the stack pointer does not matter.  The value is tested only in
1164    functions that have frame pointers.
1165    No definition is equivalent to always zero.  */
1166
1167 #define EXIT_IGNORE_STACK 1
1168
1169 /* This macro generates the assembly code for function exit,
1170    on machines that need it.  If FUNCTION_EPILOGUE is not defined
1171    then individual return instructions are generated for each
1172    return statement.  Args are same as for FUNCTION_PROLOGUE.
1173
1174    The function epilogue should not depend on the current stack pointer!
1175    It should use the frame pointer only.  This is mandatory because
1176    of alloca; we also take advantage of it to omit stack adjustments
1177    before returning.  */
1178
1179 #define FUNCTION_EPILOGUE(FILE, SIZE)   output_epilog (FILE, SIZE)
1180
1181 \f
1182 /* Output assembler code for a block containing the constant parts
1183    of a trampoline, leaving space for the variable parts.
1184
1185    The trampoline should set the static chain pointer to value placed
1186    into the trampoline and should branch to the specified routine.  
1187    Note that $27 has been set to the address of the trampoline, so we can
1188    use it for addressability of the two data items.  Trampolines are always
1189    aligned to FUNCTION_BOUNDARY, which is 64 bits.  */
1190
1191 #define TRAMPOLINE_TEMPLATE(FILE)               \
1192 {                                               \
1193   fprintf (FILE, "\tldq $1,24($27)\n");         \
1194   fprintf (FILE, "\tldq $27,16($27)\n");        \
1195   fprintf (FILE, "\tjmp $31,($27),0\n");        \
1196   fprintf (FILE, "\tnop\n");                    \
1197   fprintf (FILE, "\t.quad 0,0\n");              \
1198 }
1199
1200 /* Section in which to place the trampoline.  On Alpha, instructions
1201    may only be placed in a text segment.  */
1202
1203 #define TRAMPOLINE_SECTION text_section
1204
1205 /* Length in units of the trampoline for entering a nested function.  */
1206
1207 #define TRAMPOLINE_SIZE    32
1208
1209 /* Emit RTL insns to initialize the variable parts of a trampoline.
1210    FNADDR is an RTX for the address of the function's pure code.
1211    CXT is an RTX for the static chain value for the function.  We assume
1212    here that a function will be called many more times than its address
1213    is taken (e.g., it might be passed to qsort), so we take the trouble 
1214    to initialize the "hint" field in the JMP insn.  Note that the hint
1215    field is PC (new) + 4 * bits 13:0.  */
1216
1217 #define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT)                       \
1218 {                                                                       \
1219   rtx _temp, _temp1, _addr;                                             \
1220                                                                         \
1221   _addr = memory_address (Pmode, plus_constant ((TRAMP), 16));          \
1222   emit_move_insn (gen_rtx (MEM, Pmode, _addr), (FNADDR));               \
1223   _addr = memory_address (Pmode, plus_constant ((TRAMP), 24));          \
1224   emit_move_insn (gen_rtx (MEM, Pmode, _addr), (CXT));                  \
1225                                                                         \
1226   _temp = force_operand (plus_constant ((TRAMP), 12), NULL_RTX);        \
1227   _temp = expand_binop (DImode, sub_optab, (FNADDR), _temp, _temp, 1,   \
1228                         OPTAB_WIDEN);                                   \
1229   _temp = expand_shift (RSHIFT_EXPR, Pmode, _temp,                      \
1230                         build_int_2 (2, 0), NULL_RTX, 1);               \
1231   _temp = expand_and (gen_lowpart (SImode, _temp),                      \
1232                       GEN_INT (0x3fff), 0);                             \
1233                                                                         \
1234   _addr = memory_address (SImode, plus_constant ((TRAMP), 8));          \
1235   _temp1 = force_reg (SImode, gen_rtx (MEM, SImode, _addr));            \
1236   _temp1 = expand_and (_temp1, GEN_INT (0xffffc000), NULL_RTX);         \
1237   _temp1 = expand_binop (SImode, ior_optab, _temp1, _temp, _temp1, 1,   \
1238                          OPTAB_WIDEN);                                  \
1239                                                                         \
1240   emit_move_insn (gen_rtx (MEM, SImode, _addr), _temp1);                \
1241                                                                         \
1242   emit_library_call (gen_rtx (SYMBOL_REF, Pmode,                        \
1243                               "__enable_execute_stack"),                \
1244                      0, VOIDmode, 1,_addr, Pmode);                      \
1245                                                                         \
1246   emit_insn (gen_rtx (UNSPEC_VOLATILE, VOIDmode,                        \
1247                       gen_rtvec (1, const0_rtx), 0));                   \
1248 }
1249
1250 /* Attempt to turn on access permissions for the stack.  */
1251
1252 #define TRANSFER_FROM_TRAMPOLINE                                        \
1253                                                                         \
1254 void                                                                    \
1255 __enable_execute_stack (addr)                                           \
1256      void *addr;                                                        \
1257 {                                                                       \
1258   long size = getpagesize ();                                           \
1259   long mask = ~(size-1);                                                \
1260   char *page = (char *) (((long) addr) & mask);                         \
1261   char *end  = (char *) ((((long) (addr + TRAMPOLINE_SIZE)) & mask) + size); \
1262                                                                         \
1263   /* 7 is PROT_READ | PROT_WRITE | PROT_EXEC */                         \
1264   if (mprotect (page, end - page, 7) < 0)                               \
1265     perror ("mprotect of trampoline code");                             \
1266 }
1267
1268 /* A C expression whose value is RTL representing the value of the return
1269    address for the frame COUNT steps up from the current frame.
1270    FRAMEADDR is the frame pointer of the COUNT frame, or the frame pointer of
1271    the COUNT-1 frame if RETURN_ADDR_IN_PREVIOUS_FRAME} is defined.  */
1272
1273 #define RETURN_ADDR_RTX  alpha_return_addr
1274 extern struct rtx_def *alpha_return_addr ();
1275
1276 /* Initialize data used by insn expanders.  This is called from insn_emit,
1277    once for every function before code is generated.  */
1278
1279 #define INIT_EXPANDERS  alpha_init_expanders ()
1280 extern void alpha_init_expanders ();
1281
1282 \f
1283 /* Addressing modes, and classification of registers for them.  */
1284
1285 /* #define HAVE_POST_INCREMENT */
1286 /* #define HAVE_POST_DECREMENT */
1287
1288 /* #define HAVE_PRE_DECREMENT */
1289 /* #define HAVE_PRE_INCREMENT */
1290
1291 /* Macros to check register numbers against specific register classes.  */
1292
1293 /* These assume that REGNO is a hard or pseudo reg number.
1294    They give nonzero only if REGNO is a hard reg of the suitable class
1295    or a pseudo reg currently allocated to a suitable hard reg.
1296    Since they use reg_renumber, they are safe only once reg_renumber
1297    has been allocated, which happens in local-alloc.c.  */
1298
1299 #define REGNO_OK_FOR_INDEX_P(REGNO) 0
1300 #define REGNO_OK_FOR_BASE_P(REGNO) \
1301 ((REGNO) < 32 || (unsigned) reg_renumber[REGNO] < 32  \
1302  || (REGNO) == 63 || reg_renumber[REGNO] == 63)
1303 \f
1304 /* Maximum number of registers that can appear in a valid memory address.  */
1305 #define MAX_REGS_PER_ADDRESS 1
1306
1307 /* Recognize any constant value that is a valid address.  For the Alpha,
1308    there are only constants none since we want to use LDA to load any
1309    symbolic addresses into registers.  */
1310
1311 #define CONSTANT_ADDRESS_P(X)   \
1312   (GET_CODE (X) == CONST_INT    \
1313    && (unsigned HOST_WIDE_INT) (INTVAL (X) + 0x8000) < 0x10000)
1314
1315 /* Include all constant integers and constant doubles, but not
1316    floating-point, except for floating-point zero.  */
1317
1318 #define LEGITIMATE_CONSTANT_P(X)                \
1319   (GET_MODE_CLASS (GET_MODE (X)) != MODE_FLOAT  \
1320    || (X) == CONST0_RTX (GET_MODE (X)))
1321
1322 /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
1323    and check its validity for a certain class.
1324    We have two alternate definitions for each of them.
1325    The usual definition accepts all pseudo regs; the other rejects
1326    them unless they have been allocated suitable hard regs.
1327    The symbol REG_OK_STRICT causes the latter definition to be used.
1328
1329    Most source files want to accept pseudo regs in the hope that
1330    they will get allocated to the class that the insn wants them to be in.
1331    Source files for reload pass need to be strict.
1332    After reload, it makes no difference, since pseudo regs have
1333    been eliminated by then.  */
1334
1335 #ifndef REG_OK_STRICT
1336
1337 /* Nonzero if X is a hard reg that can be used as an index
1338    or if it is a pseudo reg.  */
1339 #define REG_OK_FOR_INDEX_P(X) 0
1340 /* Nonzero if X is a hard reg that can be used as a base reg
1341    or if it is a pseudo reg.  */
1342 #define REG_OK_FOR_BASE_P(X)  \
1343   (REGNO (X) < 32 || REGNO (X) == 63 || REGNO (X) >= FIRST_PSEUDO_REGISTER)
1344
1345 #else
1346
1347 /* Nonzero if X is a hard reg that can be used as an index.  */
1348 #define REG_OK_FOR_INDEX_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
1349 /* Nonzero if X is a hard reg that can be used as a base reg.  */
1350 #define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
1351
1352 #endif
1353 \f
1354 /* GO_IF_LEGITIMATE_ADDRESS recognizes an RTL expression
1355    that is a valid memory address for an instruction.
1356    The MODE argument is the machine mode for the MEM expression
1357    that wants to use this address. 
1358
1359    For Alpha, we have either a constant address or the sum of a register
1360    and a constant address, or just a register.  For DImode, any of those
1361    forms can be surrounded with an AND that clear the low-order three bits;
1362    this is an "unaligned" access.
1363
1364    First define the basic valid address.  */
1365
1366 #define GO_IF_LEGITIMATE_SIMPLE_ADDRESS(MODE, X, ADDR) \
1367 { if (REG_P (X) && REG_OK_FOR_BASE_P (X))       \
1368     goto ADDR;                                  \
1369   if (CONSTANT_ADDRESS_P (X))                   \
1370     goto ADDR;                                  \
1371   if (GET_CODE (X) == PLUS                      \
1372       && REG_P (XEXP (X, 0))                    \
1373       && REG_OK_FOR_BASE_P (XEXP (X, 0))        \
1374       && CONSTANT_ADDRESS_P (XEXP (X, 1)))      \
1375     goto ADDR;                                  \
1376 }
1377
1378 /* Now accept the simple address, or, for DImode only, an AND of a simple
1379    address that turns off the low three bits.  */
1380
1381 #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, ADDR) \
1382 { GO_IF_LEGITIMATE_SIMPLE_ADDRESS (MODE, X, ADDR); \
1383   if ((MODE) == DImode                          \
1384       && GET_CODE (X) == AND                    \
1385       && GET_CODE (XEXP (X, 1)) == CONST_INT    \
1386       && INTVAL (XEXP (X, 1)) == -8)            \
1387     GO_IF_LEGITIMATE_SIMPLE_ADDRESS (MODE, XEXP (X, 0), ADDR); \
1388 }
1389
1390 /* Try machine-dependent ways of modifying an illegitimate address
1391    to be legitimate.  If we find one, return the new, valid address.
1392    This macro is used in only one place: `memory_address' in explow.c.
1393
1394    OLDX is the address as it was before break_out_memory_refs was called.
1395    In some cases it is useful to look at this to decide what needs to be done.
1396
1397    MODE and WIN are passed so that this macro can use
1398    GO_IF_LEGITIMATE_ADDRESS.
1399
1400    It is always safe for this macro to do nothing.  It exists to recognize
1401    opportunities to optimize the output. 
1402
1403    For the Alpha, there are three cases we handle:
1404
1405    (1) If the address is (plus reg const_int) and the CONST_INT is not a
1406        valid offset, compute the high part of the constant and add it to the
1407        register.  Then our address is (plus temp low-part-const).
1408    (2) If the address is (const (plus FOO const_int)), find the low-order
1409        part of the CONST_INT.  Then load FOO plus any high-order part of the
1410        CONST_INT into a register.  Our address is (plus reg low-part-const).
1411        This is done to reduce the number of GOT entries.
1412    (3) If we have a (plus reg const), emit the load as in (2), then add
1413        the two registers, and finally generate (plus reg low-part-const) as
1414        our address.  */
1415
1416 #define LEGITIMIZE_ADDRESS(X,OLDX,MODE,WIN)                     \
1417 { if (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 0)) == REG     \
1418       && GET_CODE (XEXP (X, 1)) == CONST_INT                    \
1419       && ! CONSTANT_ADDRESS_P (XEXP (X, 1)))                    \
1420     {                                                           \
1421       HOST_WIDE_INT val = INTVAL (XEXP (X, 1));                 \
1422       HOST_WIDE_INT lowpart = (val & 0xffff) - 2 * (val & 0x8000); \
1423       HOST_WIDE_INT highpart = val - lowpart;                   \
1424       rtx high = GEN_INT (highpart);                            \
1425       rtx temp = expand_binop (Pmode, add_optab, XEXP (x, 0),   \
1426                                high, NULL_RTX, 1, OPTAB_LIB_WIDEN); \
1427                                                                 \
1428       (X) = plus_constant (temp, lowpart);                      \
1429       goto WIN;                                                 \
1430     }                                                           \
1431   else if (GET_CODE (X) == CONST                                \
1432            && GET_CODE (XEXP (X, 0)) == PLUS                    \
1433            && GET_CODE (XEXP (XEXP (X, 0), 1)) == CONST_INT)    \
1434     {                                                           \
1435       HOST_WIDE_INT val = INTVAL (XEXP (XEXP (X, 0), 1));       \
1436       HOST_WIDE_INT lowpart = (val & 0xffff) - 2 * (val & 0x8000); \
1437       HOST_WIDE_INT highpart = val - lowpart;                   \
1438       rtx high = XEXP (XEXP (X, 0), 0);                         \
1439                                                                 \
1440       if (highpart)                                             \
1441         high = plus_constant (high, highpart);                  \
1442                                                                 \
1443       (X) = plus_constant (force_reg (Pmode, high), lowpart);   \
1444       goto WIN;                                                 \
1445     }                                                           \
1446   else if (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 0)) == REG \
1447            && GET_CODE (XEXP (X, 1)) == CONST                   \
1448            && GET_CODE (XEXP (XEXP (X, 1), 0)) == PLUS          \
1449            && GET_CODE (XEXP (XEXP (XEXP (X, 1), 0), 1)) == CONST_INT) \
1450     {                                                           \
1451       HOST_WIDE_INT val = INTVAL (XEXP (XEXP (XEXP (X, 1), 0), 1)); \
1452       HOST_WIDE_INT lowpart = (val & 0xffff) - 2 * (val & 0x8000); \
1453       HOST_WIDE_INT highpart = val - lowpart;                   \
1454       rtx high = XEXP (XEXP (XEXP (X, 1), 0), 0);               \
1455                                                                 \
1456       if (highpart)                                             \
1457         high = plus_constant (high, highpart);                  \
1458                                                                 \
1459       high = expand_binop (Pmode, add_optab, XEXP (X, 0),       \
1460                            force_reg (Pmode, high),             \
1461                            high, 1, OPTAB_LIB_WIDEN);           \
1462       (X) = plus_constant (high, lowpart);                      \
1463       goto WIN;                                                 \
1464     }                                                           \
1465 }
1466
1467 /* Go to LABEL if ADDR (a legitimate address expression)
1468    has an effect that depends on the machine mode it is used for.
1469    On the Alpha this is true only for the unaligned modes.   We can
1470    simplify this test since we know that the address must be valid.  */
1471
1472 #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR,LABEL)  \
1473 { if (GET_CODE (ADDR) == AND) goto LABEL; }
1474
1475 /* Compute the cost of an address.  For the Alpha, all valid addresses are
1476    the same cost.  */
1477
1478 #define ADDRESS_COST(X)  0
1479
1480 /* Machine-dependent reorg pass.   */
1481 #define MACHINE_DEPENDENT_REORG(X)      alpha_reorg(X)
1482 \f
1483 /* Specify the machine mode that this machine uses
1484    for the index in the tablejump instruction.  */
1485 #define CASE_VECTOR_MODE SImode
1486
1487 /* Define as C expression which evaluates to nonzero if the tablejump
1488    instruction expects the table to contain offsets from the address of the
1489    table.
1490
1491    Do not define this if the table should contain absolute addresses.
1492    On the Alpha, the table is really GP-relative, not relative to the PC
1493    of the table, but we pretend that it is PC-relative; this should be OK,
1494    but we should try to find some better way sometime.  */
1495 #define CASE_VECTOR_PC_RELATIVE 1
1496
1497 /* Specify the tree operation to be used to convert reals to integers.  */
1498 #define IMPLICIT_FIX_EXPR FIX_ROUND_EXPR
1499
1500 /* This is the kind of divide that is easiest to do in the general case.  */
1501 #define EASY_DIV_EXPR TRUNC_DIV_EXPR
1502
1503 /* Define this as 1 if `char' should by default be signed; else as 0.  */
1504 #define DEFAULT_SIGNED_CHAR 1
1505
1506 /* This flag, if defined, says the same insns that convert to a signed fixnum
1507    also convert validly to an unsigned one.
1508
1509    We actually lie a bit here as overflow conditions are different.  But
1510    they aren't being checked anyway.  */
1511
1512 #define FIXUNS_TRUNC_LIKE_FIX_TRUNC
1513
1514 /* Max number of bytes we can move to or from memory
1515    in one reasonably fast instruction.  */
1516
1517 #define MOVE_MAX 8
1518
1519 /* Controls how many units are moved by expr.c before resorting to movstr.
1520    Without byte/word accesses, we want no more than one; with, several single
1521    byte accesses are better.   */
1522
1523 #define MOVE_RATIO  (TARGET_BWX ? 7 : 2)
1524
1525 /* Largest number of bytes of an object that can be placed in a register.
1526    On the Alpha we have plenty of registers, so use TImode.  */
1527 #define MAX_FIXED_MODE_SIZE     GET_MODE_BITSIZE (TImode)
1528
1529 /* Nonzero if access to memory by bytes is no faster than for words.
1530    Also non-zero if doing byte operations (specifically shifts) in registers
1531    is undesirable. 
1532
1533    On the Alpha, we want to not use the byte operation and instead use
1534    masking operations to access fields; these will save instructions.  */
1535
1536 #define SLOW_BYTE_ACCESS        1
1537
1538 /* Define if operations between registers always perform the operation
1539    on the full register even if a narrower mode is specified.  */
1540 #define WORD_REGISTER_OPERATIONS
1541
1542 /* Define if loading in MODE, an integral mode narrower than BITS_PER_WORD
1543    will either zero-extend or sign-extend.  The value of this macro should
1544    be the code that says which one of the two operations is implicitly
1545    done, NIL if none.  */
1546 #define LOAD_EXTEND_OP(MODE) ((MODE) == SImode ? SIGN_EXTEND : ZERO_EXTEND)
1547
1548 /* Define if loading short immediate values into registers sign extends.  */
1549 #define SHORT_IMMEDIATES_SIGN_EXTEND
1550
1551 /* Value is 1 if truncating an integer of INPREC bits to OUTPREC bits
1552    is done just by pretending it is already truncated.  */
1553 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
1554
1555 /* We assume that the store-condition-codes instructions store 0 for false
1556    and some other value for true.  This is the value stored for true.  */
1557
1558 #define STORE_FLAG_VALUE 1
1559
1560 /* Define the value returned by a floating-point comparison instruction.  */
1561
1562 #define FLOAT_STORE_FLAG_VALUE (TARGET_FLOAT_VAX ? 0.5 : 2.0)
1563
1564 /* Canonicalize a comparison from one we don't have to one we do have.  */
1565
1566 #define CANONICALIZE_COMPARISON(CODE,OP0,OP1) \
1567   do {                                                                  \
1568     if (((CODE) == GE || (CODE) == GT || (CODE) == GEU || (CODE) == GTU) \
1569         && (GET_CODE (OP1) == REG || (OP1) == const0_rtx))              \
1570       {                                                                 \
1571         rtx tem = (OP0);                                                \
1572         (OP0) = (OP1);                                                  \
1573         (OP1) = tem;                                                    \
1574         (CODE) = swap_condition (CODE);                                 \
1575       }                                                                 \
1576     if (((CODE) == LT || (CODE) == LTU)                                 \
1577         && GET_CODE (OP1) == CONST_INT && INTVAL (OP1) == 256)          \
1578       {                                                                 \
1579         (CODE) = (CODE) == LT ? LE : LEU;                               \
1580         (OP1) = GEN_INT (255);                                          \
1581       }                                                                 \
1582   } while (0)
1583
1584 /* Specify the machine mode that pointers have.
1585    After generation of rtl, the compiler makes no further distinction
1586    between pointers and any other objects of this machine mode.  */
1587 #define Pmode DImode
1588
1589 /* Mode of a function address in a call instruction (for indexing purposes). */
1590
1591 #define FUNCTION_MODE Pmode
1592
1593 /* Define this if addresses of constant functions
1594    shouldn't be put through pseudo regs where they can be cse'd.
1595    Desirable on machines where ordinary constants are expensive
1596    but a CALL with constant address is cheap.
1597
1598    We define this on the Alpha so that gen_call and gen_call_value
1599    get to see the SYMBOL_REF (for the hint field of the jsr).  It will
1600    then copy it into a register, thus actually letting the address be
1601    cse'ed.  */
1602
1603 #define NO_FUNCTION_CSE
1604
1605 /* Define this to be nonzero if shift instructions ignore all but the low-order
1606    few bits. */
1607 #define SHIFT_COUNT_TRUNCATED 1
1608
1609 /* Use atexit for static constructors/destructors, instead of defining
1610    our own exit function.  */
1611 #define HAVE_ATEXIT
1612
1613 /* The EV4 is dual issue; EV5/EV6 are quad issue.  */
1614 #define ISSUE_RATE  (alpha_cpu == PROCESSOR_EV4 ? 2 : 4)
1615
1616 /* Compute the cost of computing a constant rtl expression RTX
1617    whose rtx-code is CODE.  The body of this macro is a portion
1618    of a switch statement.  If the code is computed here,
1619    return it with a return statement.  Otherwise, break from the switch.
1620
1621    If this is an 8-bit constant, return zero since it can be used
1622    nearly anywhere with no cost.  If it is a valid operand for an
1623    ADD or AND, likewise return 0 if we know it will be used in that
1624    context.  Otherwise, return 2 since it might be used there later.
1625    All other constants take at least two insns.  */
1626
1627 #define CONST_COSTS(RTX,CODE,OUTER_CODE) \
1628   case CONST_INT:                                               \
1629     if (INTVAL (RTX) >= 0 && INTVAL (RTX) < 256)                \
1630       return 0;                                                 \
1631   case CONST_DOUBLE:                                            \
1632     if (((OUTER_CODE) == PLUS && add_operand (RTX, VOIDmode))   \
1633         || ((OUTER_CODE) == AND && and_operand (RTX, VOIDmode))) \
1634       return 0;                                                 \
1635     else if (add_operand (RTX, VOIDmode) || and_operand (RTX, VOIDmode)) \
1636       return 2;                                                 \
1637     else                                                        \
1638       return COSTS_N_INSNS (2);                                 \
1639   case CONST:                                                   \
1640   case SYMBOL_REF:                                              \
1641   case LABEL_REF:                                               \
1642   switch (alpha_cpu)                                            \
1643     {                                                           \
1644     case PROCESSOR_EV4:                                         \
1645       return COSTS_N_INSNS (3);                                 \
1646     case PROCESSOR_EV5:                                         \
1647       return COSTS_N_INSNS (2);                                 \
1648     }
1649     
1650 /* Provide the costs of a rtl expression.  This is in the body of a
1651    switch on CODE.  */
1652    
1653 #define RTX_COSTS(X,CODE,OUTER_CODE)                    \
1654   case PLUS:  case MINUS:                               \
1655     if (FLOAT_MODE_P (GET_MODE (X)))                    \
1656       switch (alpha_cpu)                                \
1657         {                                               \
1658         case PROCESSOR_EV4:                             \
1659           return COSTS_N_INSNS (6);                     \
1660         case PROCESSOR_EV5:                             \
1661           return COSTS_N_INSNS (4);                     \
1662         }                                               \
1663     else if (GET_CODE (XEXP (X, 0)) == MULT             \
1664              && const48_operand (XEXP (XEXP (X, 0), 1), VOIDmode)) \
1665       return (2 + rtx_cost (XEXP (XEXP (X, 0), 0), OUTER_CODE)  \
1666               + rtx_cost (XEXP (X, 1), OUTER_CODE));    \
1667     break;                                              \
1668   case MULT:                                            \
1669     switch (alpha_cpu)                                  \
1670       {                                                 \
1671       case PROCESSOR_EV4:                               \
1672         if (FLOAT_MODE_P (GET_MODE (X)))                \
1673           return COSTS_N_INSNS (6);                     \
1674         return COSTS_N_INSNS (23);                      \
1675       case PROCESSOR_EV5:                               \
1676         if (FLOAT_MODE_P (GET_MODE (X)))                \
1677           return COSTS_N_INSNS (4);                     \
1678         else if (GET_MODE (X) == DImode)                \
1679           return COSTS_N_INSNS (12);                    \
1680         else                                            \
1681           return COSTS_N_INSNS (8);                     \
1682       }                                                 \
1683   case ASHIFT:                                          \
1684     if (GET_CODE (XEXP (X, 1)) == CONST_INT             \
1685         && INTVAL (XEXP (X, 1)) <= 3)                   \
1686       break;                                            \
1687     /* ... fall through ... */                          \
1688   case ASHIFTRT:  case LSHIFTRT:  case IF_THEN_ELSE:    \
1689     switch (alpha_cpu)                                  \
1690       {                                                 \
1691       case PROCESSOR_EV4:                               \
1692         return COSTS_N_INSNS (2);                       \
1693       case PROCESSOR_EV5:                               \
1694         return COSTS_N_INSNS (1);                       \
1695       }                                                 \
1696   case DIV:  case UDIV:  case MOD:  case UMOD:          \
1697     switch (alpha_cpu)                                  \
1698       {                                                 \
1699       case PROCESSOR_EV4:                               \
1700         if (GET_MODE (X) == SFmode)                     \
1701           return COSTS_N_INSNS (34);                    \
1702         else if (GET_MODE (X) == DFmode)                \
1703           return COSTS_N_INSNS (63);                    \
1704         else                                            \
1705           return COSTS_N_INSNS (70);                    \
1706       case PROCESSOR_EV5:                               \
1707         if (GET_MODE (X) == SFmode)                     \
1708           return COSTS_N_INSNS (15);                    \
1709         else if (GET_MODE (X) == DFmode)                \
1710           return COSTS_N_INSNS (22);                    \
1711         else                                            \
1712           return COSTS_N_INSNS (70);    /* EV5 ??? */   \
1713       }                                                 \
1714   case MEM:                                             \
1715     switch (alpha_cpu)                                  \
1716       {                                                 \
1717       case PROCESSOR_EV4:                               \
1718         return COSTS_N_INSNS (3);                       \
1719       case PROCESSOR_EV5:                               \
1720         return COSTS_N_INSNS (2);                       \
1721       }                                                 \
1722   case NEG:  case ABS:                                  \
1723     if (! FLOAT_MODE_P (GET_MODE (X)))                  \
1724       break;                                            \
1725     /* ... fall through ... */                          \
1726   case FLOAT:  case UNSIGNED_FLOAT:  case FIX:  case UNSIGNED_FIX: \
1727   case FLOAT_EXTEND:  case FLOAT_TRUNCATE:              \
1728     switch (alpha_cpu)                                  \
1729       {                                                 \
1730       case PROCESSOR_EV4:                               \
1731         return COSTS_N_INSNS (6);                       \
1732       case PROCESSOR_EV5:                               \
1733         return COSTS_N_INSNS (4);                       \
1734       }
1735 \f
1736 /* Control the assembler format that we output.  */
1737
1738 /* Output to assembler file text saying following lines
1739    may contain character constants, extra white space, comments, etc.  */
1740
1741 #define ASM_APP_ON ""
1742
1743 /* Output to assembler file text saying following lines
1744    no longer contain unusual constructs.  */
1745
1746 #define ASM_APP_OFF ""
1747
1748 #define TEXT_SECTION_ASM_OP ".text"
1749
1750 /* Output before read-only data.  */
1751
1752 #define READONLY_DATA_SECTION_ASM_OP ".rdata"
1753
1754 /* Output before writable data.  */
1755
1756 #define DATA_SECTION_ASM_OP ".data"
1757
1758 /* Define an extra section for read-only data, a routine to enter it, and
1759    indicate that it is for read-only data.
1760
1761    The first time we enter the readonly data section for a file, we write
1762    eight bytes of zero.  This works around a bug in DEC's assembler in
1763    some versions of OSF/1 V3.x.  */
1764
1765 #define EXTRA_SECTIONS  readonly_data
1766
1767 #define EXTRA_SECTION_FUNCTIONS                                 \
1768 void                                                            \
1769 literal_section ()                                              \
1770 {                                                               \
1771   if (in_section != readonly_data)                              \
1772     {                                                           \
1773       static int firsttime = 1;                                 \
1774                                                                 \
1775       fprintf (asm_out_file, "%s\n", READONLY_DATA_SECTION_ASM_OP); \
1776       if (firsttime)                                            \
1777         {                                                       \
1778           firsttime = 0;                                        \
1779           ASM_OUTPUT_DOUBLE_INT (asm_out_file, const0_rtx);     \
1780         }                                                       \
1781                                                                 \
1782       in_section = readonly_data;                               \
1783     }                                                           \
1784 }                                                               \
1785
1786 #define READONLY_DATA_SECTION   literal_section
1787
1788 /* If we are referencing a function that is static, make the SYMBOL_REF
1789    special.  We use this to see indicate we can branch to this function
1790    without setting PV or restoring GP.  */
1791
1792 #define ENCODE_SECTION_INFO(DECL)  \
1793   if (TREE_CODE (DECL) == FUNCTION_DECL && ! TREE_PUBLIC (DECL)) \
1794     SYMBOL_REF_FLAG (XEXP (DECL_RTL (DECL), 0)) = 1;
1795
1796 /* How to refer to registers in assembler output.
1797    This sequence is indexed by compiler's hard-register-number (see above).  */
1798
1799 #define REGISTER_NAMES                                          \
1800 {"$0", "$1", "$2", "$3", "$4", "$5", "$6", "$7", "$8",          \
1801  "$9", "$10", "$11", "$12", "$13", "$14", "$15",                \
1802  "$16", "$17", "$18", "$19", "$20", "$21", "$22", "$23",        \
1803  "$24", "$25", "$26", "$27", "$28", "$29", "$30", "AP",         \
1804  "$f0", "$f1", "$f2", "$f3", "$f4", "$f5", "$f6", "$f7", "$f8", \
1805  "$f9", "$f10", "$f11", "$f12", "$f13", "$f14", "$f15",         \
1806  "$f16", "$f17", "$f18", "$f19", "$f20", "$f21", "$f22", "$f23",\
1807  "$f24", "$f25", "$f26", "$f27", "$f28", "$f29", "$f30", "FP"}
1808
1809 /* How to renumber registers for dbx and gdb.  */
1810
1811 #define DBX_REGISTER_NUMBER(REGNO) (REGNO)
1812
1813 /* This is how to output the definition of a user-level label named NAME,
1814    such as the label on a static function or variable NAME.  */
1815
1816 #define ASM_OUTPUT_LABEL(FILE,NAME)     \
1817   do { assemble_name (FILE, NAME); fputs (":\n", FILE); } while (0)
1818
1819 /* This is how to output a command to make the user-level label named NAME
1820    defined for reference from other files.  */
1821
1822 #define ASM_GLOBALIZE_LABEL(FILE,NAME)  \
1823   do { fputs ("\t.globl ", FILE); assemble_name (FILE, NAME); fputs ("\n", FILE);} while (0)
1824
1825 /* The prefix to add to user-visible assembler symbols. */
1826
1827 #define USER_LABEL_PREFIX ""
1828
1829 /* This is how to output an internal numbered label where
1830    PREFIX is the class of label and NUM is the number within the class.  */
1831
1832 #define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM)      \
1833   fprintf (FILE, "$%s%d:\n", PREFIX, NUM)
1834
1835 /* This is how to output a label for a jump table.  Arguments are the same as
1836    for ASM_OUTPUT_INTERNAL_LABEL, except the insn for the jump table is
1837    passed. */
1838
1839 #define ASM_OUTPUT_CASE_LABEL(FILE,PREFIX,NUM,TABLEINSN)        \
1840 { ASM_OUTPUT_ALIGN (FILE, 2); ASM_OUTPUT_INTERNAL_LABEL (FILE, PREFIX, NUM); }
1841
1842 /* This is how to store into the string LABEL
1843    the symbol_ref name of an internal numbered label where
1844    PREFIX is the class of label and NUM is the number within the class.
1845    This is suitable for output with `assemble_name'.  */
1846
1847 #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM)   \
1848   sprintf (LABEL, "*$%s%d", PREFIX, NUM)
1849
1850 /* Check a floating-point value for validity for a particular machine mode.  */
1851
1852 #define CHECK_FLOAT_VALUE(MODE, D, OVERFLOW) \
1853   ((OVERFLOW) = check_float_value (MODE, &D, OVERFLOW))
1854
1855 /* This is how to output an assembler line defining a `double' constant.  */
1856
1857 #define ASM_OUTPUT_DOUBLE(FILE,VALUE)                                   \
1858   {                                                                     \
1859     if (REAL_VALUE_ISINF (VALUE)                                        \
1860         || REAL_VALUE_ISNAN (VALUE)                                     \
1861         || REAL_VALUE_MINUS_ZERO (VALUE))                               \
1862       {                                                                 \
1863         long t[2];                                                      \
1864         REAL_VALUE_TO_TARGET_DOUBLE ((VALUE), t);                       \
1865         fprintf (FILE, "\t.quad 0x%lx%08lx\n",                          \
1866                 t[1] & 0xffffffff, t[0] & 0xffffffff);                  \
1867       }                                                                 \
1868     else                                                                \
1869       {                                                                 \
1870         char str[30];                                                   \
1871         REAL_VALUE_TO_DECIMAL (VALUE, "%.20e", str);                    \
1872         fprintf (FILE, "\t.%c_floating %s\n", (TARGET_FLOAT_VAX)?'g':'t', str);                 \
1873       }                                                                 \
1874   }
1875
1876 /* This is how to output an assembler line defining a `float' constant.  */
1877
1878 #define ASM_OUTPUT_FLOAT(FILE,VALUE)                            \
1879   do {                                                          \
1880     long t;                                                     \
1881     REAL_VALUE_TO_TARGET_SINGLE ((VALUE), t);                   \
1882     fprintf (FILE, "\t.long 0x%lx\n", t & 0xffffffff);          \
1883 } while (0)
1884   
1885 /* This is how to output an assembler line defining an `int' constant.  */
1886
1887 #define ASM_OUTPUT_INT(FILE,VALUE)              \
1888 ( fprintf (FILE, "\t.long "),                   \
1889   output_addr_const (FILE, (VALUE)),            \
1890   fprintf (FILE, "\n"))
1891
1892 /* This is how to output an assembler line defining a `long' constant.  */
1893
1894 #define ASM_OUTPUT_DOUBLE_INT(FILE,VALUE)       \
1895 ( fprintf (FILE, "\t.quad "),                   \
1896   output_addr_const (FILE, (VALUE)),            \
1897   fprintf (FILE, "\n"))
1898
1899 /* Likewise for `char' and `short' constants.  */
1900
1901 #define ASM_OUTPUT_SHORT(FILE,VALUE)  \
1902   fprintf (FILE, "\t.word %d\n",                \
1903     (GET_CODE (VALUE) == CONST_INT              \
1904      ? INTVAL (VALUE) & 0xffff : (abort (), 0)))
1905
1906 #define ASM_OUTPUT_CHAR(FILE,VALUE)             \
1907   fprintf (FILE, "\t.byte %d\n",                \
1908     (GET_CODE (VALUE) == CONST_INT              \
1909      ? INTVAL (VALUE) & 0xff : (abort (), 0)))
1910
1911 /* We use the default ASCII-output routine, except that we don't write more
1912    than 50 characters since the assembler doesn't support very long lines.  */
1913
1914 #define ASM_OUTPUT_ASCII(MYFILE, MYSTRING, MYLENGTH) \
1915   do {                                                                        \
1916     FILE *_hide_asm_out_file = (MYFILE);                                      \
1917     unsigned char *_hide_p = (unsigned char *) (MYSTRING);                    \
1918     int _hide_thissize = (MYLENGTH);                                          \
1919     int _size_so_far = 0;                                                     \
1920     {                                                                         \
1921       FILE *asm_out_file = _hide_asm_out_file;                                \
1922       unsigned char *p = _hide_p;                                             \
1923       int thissize = _hide_thissize;                                          \
1924       int i;                                                                  \
1925       fprintf (asm_out_file, "\t.ascii \"");                                  \
1926                                                                               \
1927       for (i = 0; i < thissize; i++)                                          \
1928         {                                                                     \
1929           register int c = p[i];                                              \
1930                                                                               \
1931           if (_size_so_far ++ > 50 && i < thissize - 4)                       \
1932             _size_so_far = 0, fprintf (asm_out_file, "\"\n\t.ascii \"");      \
1933                                                                               \
1934           if (c == '\"' || c == '\\')                                         \
1935             putc ('\\', asm_out_file);                                        \
1936           if (c >= ' ' && c < 0177)                                           \
1937             putc (c, asm_out_file);                                           \
1938           else                                                                \
1939             {                                                                 \
1940               fprintf (asm_out_file, "\\%o", c);                              \
1941               /* After an octal-escape, if a digit follows,                   \
1942                  terminate one string constant and start another.             \
1943                  The Vax assembler fails to stop reading the escape           \
1944                  after three digits, so this is the only way we               \
1945                  can get it to parse the data properly.  */                   \
1946               if (i < thissize - 1                                            \
1947                   && p[i + 1] >= '0' && p[i + 1] <= '9')                      \
1948                 _size_so_far = 0, fprintf (asm_out_file, "\"\n\t.ascii \"");  \
1949           }                                                                   \
1950         }                                                                     \
1951       fprintf (asm_out_file, "\"\n");                                         \
1952     }                                                                         \
1953   }                                                                           \
1954   while (0)
1955
1956 /* This is how to output an insn to push a register on the stack.
1957    It need not be very fast code.  */
1958
1959 #define ASM_OUTPUT_REG_PUSH(FILE,REGNO)                                 \
1960  fprintf (FILE, "\tsubq $30,8,$30\n\tst%s $%s%d,0($30)\n",              \
1961           (REGNO) > 32 ? "t" : "q", (REGNO) > 32 ? "f" : "",            \
1962           (REGNO) & 31);
1963
1964 /* This is how to output an insn to pop a register from the stack.
1965    It need not be very fast code.  */
1966
1967 #define ASM_OUTPUT_REG_POP(FILE,REGNO)                                  \
1968   fprintf (FILE, "\tld%s $%s%d,0($30)\n\taddq $30,8,$30\n",             \
1969           (REGNO) > 32 ? "t" : "q", (REGNO) > 32 ? "f" : "",            \
1970           (REGNO) & 31);
1971
1972 /* This is how to output an assembler line for a numeric constant byte.  */
1973
1974 #define ASM_OUTPUT_BYTE(FILE,VALUE)  \
1975   fprintf (FILE, "\t.byte 0x%x\n", (VALUE) & 0xff)
1976
1977 /* This is how to output an element of a case-vector that is absolute.
1978    (Alpha does not use such vectors, but we must define this macro anyway.)  */
1979
1980 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) abort ()
1981
1982 /* This is how to output an element of a case-vector that is relative.  */
1983
1984 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, VALUE, REL) \
1985   fprintf (FILE, "\t.%s $L%d\n", TARGET_WINDOWS_NT ? "long" : "gprel32", \
1986            (VALUE))
1987
1988 /* This is how to output an assembler line
1989    that says to advance the location counter
1990    to a multiple of 2**LOG bytes.  */
1991
1992 #define ASM_OUTPUT_ALIGN(FILE,LOG)      \
1993   if ((LOG) != 0)                       \
1994     fprintf (FILE, "\t.align %d\n", LOG);
1995
1996 /* This is how to advance the location counter by SIZE bytes.  */
1997
1998 #define ASM_OUTPUT_SKIP(FILE,SIZE)  \
1999   fprintf (FILE, "\t.space %d\n", (SIZE))
2000
2001 /* This says how to output an assembler line
2002    to define a global common symbol.  */
2003
2004 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED)  \
2005 ( fputs ("\t.comm ", (FILE)),                   \
2006   assemble_name ((FILE), (NAME)),               \
2007   fprintf ((FILE), ",%d\n", (SIZE)))
2008
2009 /* This says how to output an assembler line
2010    to define a local common symbol.  */
2011
2012 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE,ROUNDED)      \
2013 ( fputs ("\t.lcomm ", (FILE)),                          \
2014   assemble_name ((FILE), (NAME)),                       \
2015   fprintf ((FILE), ",%d\n", (SIZE)))
2016
2017 /* Store in OUTPUT a string (made with alloca) containing
2018    an assembler-name for a local static variable named NAME.
2019    LABELNO is an integer which is different for each call.  */
2020
2021 #define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO)  \
2022 ( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 10),    \
2023   sprintf ((OUTPUT), "%s.%d", (NAME), (LABELNO)))
2024
2025 /* Define the parentheses used to group arithmetic operations
2026    in assembler code.  */
2027
2028 #define ASM_OPEN_PAREN "("
2029 #define ASM_CLOSE_PAREN ")"
2030
2031 /* Output code to add DELTA to the first argument, and then jump to FUNCTION.
2032    Used for C++ multiple inheritance.  */
2033
2034 #define ASM_OUTPUT_MI_THUNK(FILE, THUNK_FNDECL, DELTA, FUNCTION)        \
2035 do {                                                                    \
2036   char *fn_name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (FUNCTION));  \
2037                                                                         \
2038   fprintf (FILE, "\t.ent ");                                            \
2039   assemble_name (FILE, alpha_function_name);                            \
2040   fputc ('\n', FILE);                                                   \
2041   ASM_OUTPUT_LABEL (FILE, alpha_function_name);                         \
2042   fprintf (FILE, "\tldgp $29,0($27)\n");                                \
2043   fputc ('$', FILE);                                                    \
2044   assemble_name (FILE, alpha_function_name);                            \
2045   fprintf (FILE, "..ng:\n");                                            \
2046   fprintf (FILE, "\t.frame $30,0,$26,0\n");                             \
2047   fprintf (FILE, "\t.prologue 1\n");                                    \
2048                                                                         \
2049   /* Rely on the assembler to macro expand a large delta.  */           \
2050   fprintf (FILE, "\tlda $16,%ld($16)\n", (long)(DELTA));                \
2051                                                                         \
2052   if (current_file_function_operand (XEXP (DECL_RTL (FUNCTION), 0)))    \
2053     {                                                                   \
2054       fprintf (FILE, "\tbr $31,$");                                     \
2055       assemble_name (FILE, fn_name);                                    \
2056       fprintf (FILE, "..ng\n");                                         \
2057     }                                                                   \
2058   else                                                                  \
2059     {                                                                   \
2060       fprintf (FILE, "\tlda $27,");                                     \
2061       assemble_name (FILE, fn_name);                                    \
2062       fprintf (FILE, "\n\tjmp $31,($27),");                             \
2063       assemble_name (FILE, fn_name);                                    \
2064       fputc ('\n', FILE);                                               \
2065     }                                                                   \
2066                                                                         \
2067   fprintf (FILE, "\t.end ");                                            \
2068   assemble_name (FILE, alpha_function_name);                            \
2069   fputc ('\n', FILE);                                                   \
2070 } while (0)
2071
2072 \f
2073 /* Define results of standard character escape sequences.  */
2074 #define TARGET_BELL 007
2075 #define TARGET_BS 010
2076 #define TARGET_TAB 011
2077 #define TARGET_NEWLINE 012
2078 #define TARGET_VT 013
2079 #define TARGET_FF 014
2080 #define TARGET_CR 015
2081
2082 /* Print operand X (an rtx) in assembler syntax to file FILE.
2083    CODE is a letter or dot (`z' in `%z0') or 0 if no letter was specified.
2084    For `%' followed by punctuation, CODE is the punctuation and X is null.  */
2085
2086 #define PRINT_OPERAND(FILE, X, CODE)  print_operand (FILE, X, CODE)
2087
2088 /* Determine which codes are valid without a following integer.  These must
2089    not be alphabetic (the characters are chosen so that
2090    PRINT_OPERAND_PUNCT_VALID_P translates into a simple range change when
2091    using ASCII).
2092
2093    &    Generates fp-rounding mode suffix: nothing for normal, 'c' for
2094         chopped, 'm' for minus-infinity, and 'd' for dynamic rounding
2095         mode.  alpha_fprm controls which suffix is generated.
2096
2097    '    Generates trap-mode suffix for instructions that accept the
2098         su suffix only (cmpt et al).
2099
2100    )    Generates trap-mode suffix for instructions that accept the
2101         u, su, and sui suffix.  This is the bulk of the IEEE floating
2102         point instructions (addt et al).
2103
2104    +    Generates trap-mode suffix for instructions that accept the
2105         sui suffix (cvtqt and cvtqs).
2106
2107    ,    Generates single precision suffix for floating point
2108         instructions (s for IEEE, f for VAX)
2109
2110    -    Generates double precision suffix for floating point
2111         instructions (t for IEEE, g for VAX)
2112    */
2113
2114 #define PRINT_OPERAND_PUNCT_VALID_P(CODE)                               \
2115   ((CODE) == '&' || (CODE) == '\'' || (CODE) == ')' || (CODE) == '+'    \
2116    || (CODE) == ',' || (CODE) == '-')
2117 \f
2118 /* Print a memory address as an operand to reference that memory location.  */
2119
2120 #define PRINT_OPERAND_ADDRESS(FILE, ADDR)               \
2121 { rtx addr = (ADDR);                                    \
2122   int basereg = 31;                                     \
2123   HOST_WIDE_INT offset = 0;                             \
2124                                                         \
2125   if (GET_CODE (addr) == AND)                           \
2126     addr = XEXP (addr, 0);                              \
2127                                                         \
2128   if (GET_CODE (addr) == REG)                           \
2129     basereg = REGNO (addr);                             \
2130   else if (GET_CODE (addr) == CONST_INT)                \
2131     offset = INTVAL (addr);                             \
2132   else if (GET_CODE (addr) == PLUS                      \
2133            && GET_CODE (XEXP (addr, 0)) == REG          \
2134            && GET_CODE (XEXP (addr, 1)) == CONST_INT)   \
2135     basereg = REGNO (XEXP (addr, 0)), offset = INTVAL (XEXP (addr, 1)); \
2136   else                                                  \
2137     abort ();                                           \
2138                                                         \
2139   fprintf (FILE, "%d($%d)", offset, basereg);           \
2140 }
2141 /* Define the codes that are matched by predicates in alpha.c.  */
2142
2143 #define PREDICATE_CODES \
2144   {"reg_or_0_operand", {SUBREG, REG, CONST_INT}},       \
2145   {"reg_or_6bit_operand", {SUBREG, REG, CONST_INT}},    \
2146   {"reg_or_8bit_operand", {SUBREG, REG, CONST_INT}},    \
2147   {"cint8_operand", {CONST_INT}},                       \
2148   {"reg_or_cint_operand", {SUBREG, REG, CONST_INT}},    \
2149   {"add_operand", {SUBREG, REG, CONST_INT}},            \
2150   {"sext_add_operand", {SUBREG, REG, CONST_INT}},       \
2151   {"const48_operand", {CONST_INT}},                     \
2152   {"and_operand", {SUBREG, REG, CONST_INT}},            \
2153   {"or_operand", {SUBREG, REG, CONST_INT}},             \
2154   {"mode_mask_operand", {CONST_INT}},                   \
2155   {"mul8_operand", {CONST_INT}},                        \
2156   {"mode_width_operand", {CONST_INT}},                  \
2157   {"reg_or_fp0_operand", {SUBREG, REG, CONST_DOUBLE}},  \
2158   {"alpha_comparison_operator", {EQ, LE, LT, LEU, LTU}}, \
2159   {"alpha_swapped_comparison_operator", {EQ, GE, GT, GEU, GTU}}, \
2160   {"signed_comparison_operator", {EQ, NE, LE, LT, GE, GT}}, \
2161   {"divmod_operator", {DIV, MOD, UDIV, UMOD}},          \
2162   {"fp0_operand", {CONST_DOUBLE}},                      \
2163   {"current_file_function_operand", {SYMBOL_REF}},      \
2164   {"call_operand", {REG, SYMBOL_REF}},                  \
2165   {"input_operand", {SUBREG, REG, MEM, CONST_INT, CONST_DOUBLE, \
2166                      SYMBOL_REF, CONST, LABEL_REF}},    \
2167   {"some_operand", {SUBREG, REG, MEM, CONST_INT, CONST_DOUBLE, \
2168                     SYMBOL_REF, CONST, LABEL_REF}},     \
2169   {"aligned_memory_operand", {MEM}},                    \
2170   {"unaligned_memory_operand", {MEM}},                  \
2171   {"reg_or_unaligned_mem_operand", {SUBREG, REG, MEM}}, \
2172   {"any_memory_operand", {MEM}},
2173 \f
2174 /* Tell collect that the object format is ECOFF.  */
2175 #define OBJECT_FORMAT_COFF
2176 #define EXTENDED_COFF
2177
2178 /* If we use NM, pass -g to it so it only lists globals.  */
2179 #define NM_FLAGS "-pg"
2180
2181 /* Definitions for debugging.  */
2182
2183 #define SDB_DEBUGGING_INFO              /* generate info for mips-tfile */
2184 #define DBX_DEBUGGING_INFO              /* generate embedded stabs */
2185 #define MIPS_DEBUGGING_INFO             /* MIPS specific debugging info */
2186
2187 #ifndef PREFERRED_DEBUGGING_TYPE        /* assume SDB_DEBUGGING_INFO */
2188 #define PREFERRED_DEBUGGING_TYPE  SDB_DEBUG
2189 #endif
2190
2191
2192 /* Correct the offset of automatic variables and arguments.  Note that
2193    the Alpha debug format wants all automatic variables and arguments
2194    to be in terms of two different offsets from the virtual frame pointer,
2195    which is the stack pointer before any adjustment in the function.
2196    The offset for the argument pointer is fixed for the native compiler,
2197    it is either zero (for the no arguments case) or large enough to hold
2198    all argument registers.
2199    The offset for the auto pointer is the fourth argument to the .frame
2200    directive (local_offset).
2201    To stay compatible with the native tools we use the same offsets
2202    from the virtual frame pointer and adjust the debugger arg/auto offsets
2203    accordingly. These debugger offsets are set up in output_prolog.  */
2204
2205 extern long alpha_arg_offset;
2206 extern long alpha_auto_offset;
2207 #define DEBUGGER_AUTO_OFFSET(X) \
2208   ((GET_CODE (X) == PLUS ? INTVAL (XEXP (X, 1)) : 0) + alpha_auto_offset)
2209 #define DEBUGGER_ARG_OFFSET(OFFSET, X) (OFFSET + alpha_arg_offset)
2210
2211
2212 #define ASM_OUTPUT_SOURCE_LINE(STREAM, LINE)                            \
2213   alpha_output_lineno (STREAM, LINE)
2214 extern void alpha_output_lineno ();
2215
2216 #define ASM_OUTPUT_SOURCE_FILENAME(STREAM, NAME)                        \
2217   alpha_output_filename (STREAM, NAME)
2218 extern void alpha_output_filename ();
2219
2220 /* mips-tfile.c limits us to strings of one page.  */
2221 #define DBX_CONTIN_LENGTH 4000
2222
2223 /* By default, turn on GDB extensions.  */
2224 #define DEFAULT_GDB_EXTENSIONS 1
2225
2226 /* Stabs-in-ECOFF can't handle dbxout_function_end().  */
2227 #define NO_DBX_FUNCTION_END 1
2228
2229 /* If we are smuggling stabs through the ALPHA ECOFF object
2230    format, put a comment in front of the .stab<x> operation so
2231    that the ALPHA assembler does not choke.  The mips-tfile program
2232    will correctly put the stab into the object file.  */
2233
2234 #define ASM_STABS_OP    ((TARGET_GAS) ? ".stabs" : " #.stabs")
2235 #define ASM_STABN_OP    ((TARGET_GAS) ? ".stabn" : " #.stabn")
2236 #define ASM_STABD_OP    ((TARGET_GAS) ? ".stabd" : " #.stabd")
2237
2238 /* Forward references to tags are allowed.  */
2239 #define SDB_ALLOW_FORWARD_REFERENCES
2240
2241 /* Unknown tags are also allowed.  */
2242 #define SDB_ALLOW_UNKNOWN_REFERENCES
2243
2244 #define PUT_SDB_DEF(a)                                  \
2245 do {                                                    \
2246   fprintf (asm_out_file, "\t%s.def\t",                  \
2247            (TARGET_GAS) ? "" : "#");                    \
2248   ASM_OUTPUT_LABELREF (asm_out_file, a);                \
2249   fputc (';', asm_out_file);                            \
2250 } while (0)
2251
2252 #define PUT_SDB_PLAIN_DEF(a)                            \
2253 do {                                                    \
2254   fprintf (asm_out_file, "\t%s.def\t.%s;",              \
2255            (TARGET_GAS) ? "" : "#", (a));               \
2256 } while (0)
2257
2258 #define PUT_SDB_TYPE(a)                                 \
2259 do {                                                    \
2260   fprintf (asm_out_file, "\t.type\t0x%x;", (a));        \
2261 } while (0)
2262
2263 /* For block start and end, we create labels, so that
2264    later we can figure out where the correct offset is.
2265    The normal .ent/.end serve well enough for functions,
2266    so those are just commented out.  */
2267
2268 extern int sdb_label_count;             /* block start/end next label # */
2269
2270 #define PUT_SDB_BLOCK_START(LINE)                       \
2271 do {                                                    \
2272   fprintf (asm_out_file,                                \
2273            "$Lb%d:\n\t%s.begin\t$Lb%d\t%d\n",           \
2274            sdb_label_count,                             \
2275            (TARGET_GAS) ? "" : "#",                     \
2276            sdb_label_count,                             \
2277            (LINE));                                     \
2278   sdb_label_count++;                                    \
2279 } while (0)
2280
2281 #define PUT_SDB_BLOCK_END(LINE)                         \
2282 do {                                                    \
2283   fprintf (asm_out_file,                                \
2284            "$Le%d:\n\t%s.bend\t$Le%d\t%d\n",            \
2285            sdb_label_count,                             \
2286            (TARGET_GAS) ? "" : "#",                     \
2287            sdb_label_count,                             \
2288            (LINE));                                     \
2289   sdb_label_count++;                                    \
2290 } while (0)
2291
2292 #define PUT_SDB_FUNCTION_START(LINE)
2293
2294 #define PUT_SDB_FUNCTION_END(LINE)
2295
2296 #define PUT_SDB_EPILOGUE_END(NAME)
2297
2298 /* Macros for mips-tfile.c to encapsulate stabs in ECOFF, and for
2299    mips-tdump.c to print them out.
2300
2301    These must match the corresponding definitions in gdb/mipsread.c.
2302    Unfortunately, gcc and gdb do not currently share any directories. */
2303
2304 #define CODE_MASK 0x8F300
2305 #define MIPS_IS_STAB(sym) (((sym)->index & 0xFFF00) == CODE_MASK)
2306 #define MIPS_MARK_STAB(code) ((code)+CODE_MASK)
2307 #define MIPS_UNMARK_STAB(code) ((code)-CODE_MASK)
2308
2309 /* Override some mips-tfile definitions.  */
2310
2311 #define SHASH_SIZE 511
2312 #define THASH_SIZE 55
2313
2314 /* Align ecoff symbol tables to avoid OSF1/1.3 nm complaints.  */
2315
2316 #define ALIGN_SYMTABLE_OFFSET(OFFSET) (((OFFSET) + 7) & ~7)
2317
2318 /* The linker will stick __main into the .init section.  */
2319 #define HAS_INIT_SECTION
2320 #define LD_INIT_SWITCH "-init"
2321 #define LD_FINI_SWITCH "-fini"
2322
2323 /* The system headers under Alpha systems are generally C++-aware.  */
2324 #define NO_IMPLICIT_EXTERN_C