OSDN Git Service

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