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