OSDN Git Service

* vax.h (ASM_SPEC): Pass `-J' to assembler.
[pf3gnuchains/gcc-fork.git] / gcc / config / vax / vax.h
1 /* Definitions of target machine for GNU compiler.  Vax version.
2    Copyright (C) 1987, 1988, 1991, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000 Free Software Foundation, Inc.
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 /* Names to predefine in the preprocessor for this target machine.  */
24
25 #define CPP_PREDEFINES "-Dvax -D__vax__ -Dunix -Asystem(unix) -Asystem(bsd) -Acpu(vax) -Amachine(vax)"
26
27 /* Use -J option for long branch support with Unix assembler. */
28
29 #define ASM_SPEC "-J"
30
31 /* If using g-format floating point, alter math.h.  */
32
33 #define CPP_SPEC "%{mg:%{!ansi:-DGFLOAT} -D__GFLOAT}"
34
35 /* Choose proper libraries depending on float format.
36    Note that there are no profiling libraries for g-format.
37    Also use -lg for the sake of dbx.  */
38
39 #define LIB_SPEC "%{g:-lg}\
40  %{mg:%{lm:-lmg} -lcg \
41   %{p:%eprofiling not supported with -mg\n}\
42   %{pg:%eprofiling not supported with -mg\n}}\
43  %{!mg:%{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
44
45 /* Print subsidiary information on the compiler version in use.  */
46
47 #ifndef TARGET_NAME     /* A more specific value might be supplied via -D.  */
48 #define TARGET_NAME "vax"
49 #endif
50 #define TARGET_VERSION fprintf (stderr, " (%s)", TARGET_NAME)
51
52 /* Run-time compilation parameters selecting different hardware subsets.  */
53
54 extern int target_flags;
55
56 /* Macros used in the machine description to test the flags.  */
57
58 /* Nonzero if compiling code that Unix assembler can assemble.  */
59 #define TARGET_UNIX_ASM (target_flags & 1)
60
61 /* Nonzero if compiling with VAX-11 "C" style structure alignment */
62 #define TARGET_VAXC_ALIGNMENT (target_flags & 2)
63
64 /* Nonzero if compiling with `G'-format floating point */
65 #define TARGET_G_FLOAT (target_flags & 4)
66
67 /* Macro to define tables used to set the flags.
68    This is a list in braces of pairs in braces,
69    each pair being { "NAME", VALUE }
70    where VALUE is the bits to set or minus the bits to clear.
71    An empty string NAME is used to identify the default VALUE.  */
72
73 #define TARGET_SWITCHES                                         \
74   { {"unix", 1, "Generate code for UNIX assembler"},            \
75     {"gnu", -1, "Generate code for GNU assembler (gas)"},       \
76     {"vaxc-alignment", 2, "Use VAXC structure conventions"},    \
77     {"g", 4, "Generate GFLOAT double precision code"},          \
78     {"g-float", 4, "Generate GFLOAT double precision code"},    \
79     {"d", -4, "Generate DFLOAT double precision code"},         \
80     {"d-float", -4, "Generate DFLOAT double precision code"},   \
81     { "", TARGET_DEFAULT, 0}}
82
83 /* Default target_flags if no switches specified.  */
84
85 #ifndef TARGET_DEFAULT
86 #define TARGET_DEFAULT 1
87 #endif
88 \f
89 /* Target machine storage layout */
90
91 /* Define for software floating point emulation of VAX format
92    when cross compiling from a non-VAX host. */
93 /* #define REAL_ARITHMETIC */
94
95 /* Define this if most significant bit is lowest numbered
96    in instructions that operate on numbered bit-fields.
97    This is not true on the vax.  */
98 #define BITS_BIG_ENDIAN 0
99
100 /* Define this if most significant byte of a word is the lowest numbered.  */
101 /* That is not true on the vax.  */
102 #define BYTES_BIG_ENDIAN 0
103
104 /* Define this if most significant word of a multiword number is the lowest
105    numbered.  */
106 /* This is not true on the vax.  */
107 #define WORDS_BIG_ENDIAN 0
108
109 /* Number of bits in an addressable storage unit */
110 #define BITS_PER_UNIT 8
111
112 /* Width in bits of a "word", which is the contents of a machine register.
113    Note that this is not necessarily the width of data type `int';
114    if using 16-bit ints on a 68000, this would still be 32.
115    But on a machine with 16-bit registers, this would be 16.  */
116 #define BITS_PER_WORD 32
117
118 /* Width of a word, in units (bytes).  */
119 #define UNITS_PER_WORD 4
120
121 /* Width in bits of a pointer.
122    See also the macro `Pmode' defined below.  */
123 #define POINTER_SIZE 32
124
125 /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
126 #define PARM_BOUNDARY 32
127
128 /* Allocation boundary (in *bits*) for the code of a function.  */
129 #define FUNCTION_BOUNDARY 16
130
131 /* Alignment of field after `int : 0' in a structure.  */
132 #define EMPTY_FIELD_BOUNDARY (TARGET_VAXC_ALIGNMENT ? 8 : 32)
133
134 /* Every structure's size must be a multiple of this.  */
135 #define STRUCTURE_SIZE_BOUNDARY 8
136
137 /* A bitfield declared as `int' forces `int' alignment for the struct.  */
138 #define PCC_BITFIELD_TYPE_MATTERS (! TARGET_VAXC_ALIGNMENT)
139
140 /* No data type wants to be aligned rounder than this.  */
141 #define BIGGEST_ALIGNMENT 32
142
143 /* No structure field wants to be aligned rounder than this.  */
144 #define BIGGEST_FIELD_ALIGNMENT (TARGET_VAXC_ALIGNMENT ? 8 : 32)
145
146 /* Set this nonzero if move instructions will actually fail to work
147    when given unaligned data.  */
148 #define STRICT_ALIGNMENT 0
149
150 /* Let's keep the stack somewhat aligned.  */
151 #define STACK_BOUNDARY 32
152
153 /* The table of an ADDR_DIFF_VEC must be contiguous with the case
154    opcode, it is part of the case instruction.  */
155 #define ADDR_VEC_ALIGN(ADDR_VEC) 0
156 \f
157 /* Standard register usage.  */
158
159 /* Number of actual hardware registers.
160    The hardware registers are assigned numbers for the compiler
161    from 0 to just below FIRST_PSEUDO_REGISTER.
162    All registers that the compiler knows about must be given numbers,
163    even those that are not normally considered general registers.  */
164 #define FIRST_PSEUDO_REGISTER 16
165
166 /* 1 for registers that have pervasive standard uses
167    and are not available for the register allocator.
168    On the vax, these are the AP, FP, SP and PC.  */
169 #define FIXED_REGISTERS {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1}
170
171 /* 1 for registers not available across function calls.
172    These must include the FIXED_REGISTERS and also any
173    registers that can be used without being saved.
174    The latter must include the registers where values are returned
175    and the register where structure-value addresses are passed.
176    Aside from that, you can include as many other registers as you like.  */
177 #define CALL_USED_REGISTERS {1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1}
178
179 /* Return number of consecutive hard regs needed starting at reg REGNO
180    to hold something of mode MODE.
181    This is ordinarily the length in words of a value of mode MODE
182    but can be less for certain modes in special long registers.
183    On the vax, all registers are one word long.  */
184 #define HARD_REGNO_NREGS(REGNO, MODE)   \
185  ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
186
187 /* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
188    On the vax, all registers can hold all modes.  */
189 #define HARD_REGNO_MODE_OK(REGNO, MODE) 1
190
191 /* Value is 1 if it is a good idea to tie two pseudo registers
192    when one has mode MODE1 and one has mode MODE2.
193    If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
194    for any hard reg, then this must be 0 for correct output.  */
195 #define MODES_TIEABLE_P(MODE1, MODE2)  1
196
197 /* Specify the registers used for certain standard purposes.
198    The values of these macros are register numbers.  */
199
200 /* Vax pc is overloaded on a register.  */
201 #define PC_REGNUM 15
202
203 /* Register to use for pushing function arguments.  */
204 #define STACK_POINTER_REGNUM 14
205
206 /* Base register for access to local variables of the function.  */
207 #define FRAME_POINTER_REGNUM 13
208
209 /* Value should be nonzero if functions must have frame pointers.
210    Zero means the frame pointer need not be set up (and parms
211    may be accessed via the stack pointer) in functions that seem suitable.
212    This is computed in `reload', in reload1.c.  */
213 #define FRAME_POINTER_REQUIRED 1
214
215 /* Base register for access to arguments of the function.  */
216 #define ARG_POINTER_REGNUM 12
217
218 /* Register in which static-chain is passed to a function.  */
219 #define STATIC_CHAIN_REGNUM 0
220
221 /* Register in which address to store a structure value
222    is passed to a function.  */
223 #define STRUCT_VALUE_REGNUM 1
224 \f
225 /* Define the classes of registers for register constraints in the
226    machine description.  Also define ranges of constants.
227
228    One of the classes must always be named ALL_REGS and include all hard regs.
229    If there is more than one class, another class must be named NO_REGS
230    and contain no registers.
231
232    The name GENERAL_REGS must be the name of a class (or an alias for
233    another name such as ALL_REGS).  This is the class of registers
234    that is allowed by "g" or "r" in a register constraint.
235    Also, registers outside this class are allocated only when
236    instructions express preferences for them.
237
238    The classes must be numbered in nondecreasing order; that is,
239    a larger-numbered class must never be contained completely
240    in a smaller-numbered class.
241
242    For any two classes, it is very desirable that there be another
243    class that represents their union.  */
244    
245 /* The vax has only one kind of registers, so NO_REGS and ALL_REGS
246    are the only classes.  */
247
248 enum reg_class { NO_REGS, ALL_REGS, LIM_REG_CLASSES };
249
250 #define N_REG_CLASSES (int) LIM_REG_CLASSES
251
252 /* Since GENERAL_REGS is the same class as ALL_REGS,
253    don't give it a different class number; just make it an alias.  */
254
255 #define GENERAL_REGS ALL_REGS
256
257 /* Give names of register classes as strings for dump file.   */
258
259 #define REG_CLASS_NAMES \
260  {"NO_REGS", "ALL_REGS" }
261
262 /* Define which registers fit in which classes.
263    This is an initializer for a vector of HARD_REG_SET
264    of length N_REG_CLASSES.  */
265
266 #define REG_CLASS_CONTENTS {{0}, {0xffff}}
267
268 /* The same information, inverted:
269    Return the class number of the smallest class containing
270    reg number REGNO.  This could be a conditional expression
271    or could index an array.  */
272
273 #define REGNO_REG_CLASS(REGNO) ALL_REGS
274
275 /* The class value for index registers, and the one for base regs.  */
276
277 #define INDEX_REG_CLASS ALL_REGS
278 #define BASE_REG_CLASS ALL_REGS
279
280 /* Get reg_class from a letter such as appears in the machine description.  */
281
282 #define REG_CLASS_FROM_LETTER(C) NO_REGS
283
284 /* The letters I, J, K, L and M in a register constraint string
285    can be used to stand for particular ranges of immediate operands.
286    This macro defines what the ranges are.
287    C is the letter, and VALUE is a constant value.
288    Return 1 if VALUE is in the range specified by C.
289
290    `I' is the constant zero.  */
291
292 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
293   ((C) == 'I' ? (VALUE) == 0            \
294    : 0)
295
296 /* Similar, but for floating constants, and defining letters G and H.
297    Here VALUE is the CONST_DOUBLE rtx itself. 
298
299    `G' is a floating-point zero.  */
300
301 #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C) \
302   ((C) == 'G' ? ((VALUE) == CONST0_RTX (DFmode)         \
303                  || (VALUE) == CONST0_RTX (SFmode))     \
304    : 0)
305
306 /* Optional extra constraints for this machine.
307
308    For the VAX, `Q' means that OP is a MEM that does not have a mode-dependent
309    address.  */
310
311 #define EXTRA_CONSTRAINT(OP, C) \
312   ((C) == 'Q'                                                           \
313    ? GET_CODE (OP) == MEM && ! mode_dependent_address_p (XEXP (OP, 0))  \
314    : 0)
315
316 /* Given an rtx X being reloaded into a reg required to be
317    in class CLASS, return the class of reg to actually use.
318    In general this is just CLASS; but on some machines
319    in some cases it is preferable to use a more restrictive class.  */
320
321 #define PREFERRED_RELOAD_CLASS(X,CLASS)  (CLASS)
322
323 /* Return the maximum number of consecutive registers
324    needed to represent mode MODE in a register of class CLASS.  */
325 /* On the vax, this is always the size of MODE in words,
326    since all registers are the same size.  */
327 #define CLASS_MAX_NREGS(CLASS, MODE)    \
328  ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
329 \f
330 /* Stack layout; function entry, exit and calling.  */
331
332 /* Define this if pushing a word on the stack
333    makes the stack pointer a smaller address.  */
334 #define STACK_GROWS_DOWNWARD
335
336 /* Define this if longjmp restores from saved registers
337    rather than from what setjmp saved.  */
338 #define LONGJMP_RESTORE_FROM_STACK
339
340 /* Define this if the nominal address of the stack frame
341    is at the high-address end of the local variables;
342    that is, each additional local variable allocated
343    goes at a more negative offset in the frame.  */
344 #define FRAME_GROWS_DOWNWARD
345
346 /* Offset within stack frame to start allocating local variables at.
347    If FRAME_GROWS_DOWNWARD, this is the offset to the END of the
348    first local allocated.  Otherwise, it is the offset to the BEGINNING
349    of the first local allocated.  */
350 #define STARTING_FRAME_OFFSET 0
351
352 /* Given an rtx for the address of a frame,
353    return an rtx for the address of the word in the frame
354    that holds the dynamic chain--the previous frame's address.  */
355 #define DYNAMIC_CHAIN_ADDRESS(FRAME) plus_constant ((FRAME), 12)
356
357 /* If we generate an insn to push BYTES bytes,
358    this says how many the stack pointer really advances by.
359    On the vax, -(sp) pushes only the bytes of the operands.  */
360 #define PUSH_ROUNDING(BYTES) (BYTES)
361
362 /* Offset of first parameter from the argument pointer register value.  */
363 #define FIRST_PARM_OFFSET(FNDECL) 4
364
365 /* Value is the number of bytes of arguments automatically
366    popped when returning from a subroutine call.
367    FUNDECL is the declaration node of the function (as a tree),
368    FUNTYPE is the data type of the function (as a tree),
369    or for a library call it is an identifier node for the subroutine name.
370    SIZE is the number of bytes of arguments passed on the stack.
371
372    On the Vax, the RET insn always pops all the args for any function.  */
373
374 #define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE) (SIZE)
375
376 /* Define how to find the value returned by a function.
377    VALTYPE is the data type of the value (as a tree).
378    If the precise function being called is known, FUNC is its FUNCTION_DECL;
379    otherwise, FUNC is 0.  */
380
381 /* On the Vax the return value is in R0 regardless.  */   
382
383 #define FUNCTION_VALUE(VALTYPE, FUNC)  \
384   gen_rtx_REG (TYPE_MODE (VALTYPE), 0)
385
386 /* Define how to find the value returned by a library function
387    assuming the value has mode MODE.  */
388
389 /* On the Vax the return value is in R0 regardless.  */   
390
391 #define LIBCALL_VALUE(MODE)  gen_rtx_REG (MODE, 0)
392
393 /* Define this if PCC uses the nonreentrant convention for returning
394    structure and union values.  */
395
396 #define PCC_STATIC_STRUCT_RETURN
397
398 /* 1 if N is a possible register number for a function value.
399    On the Vax, R0 is the only register thus used.  */
400
401 #define FUNCTION_VALUE_REGNO_P(N) ((N) == 0)
402
403 /* 1 if N is a possible register number for function argument passing.
404    On the Vax, no registers are used in this way.  */
405
406 #define FUNCTION_ARG_REGNO_P(N) 0
407 \f
408 /* Define a data type for recording info about an argument list
409    during the scan of that argument list.  This data type should
410    hold all necessary information about the function itself
411    and about the args processed so far, enough to enable macros
412    such as FUNCTION_ARG to determine where the next arg should go.
413
414    On the vax, this is a single integer, which is a number of bytes
415    of arguments scanned so far.  */
416
417 #define CUMULATIVE_ARGS int
418
419 /* Initialize a variable CUM of type CUMULATIVE_ARGS
420    for a call to a function whose data type is FNTYPE.
421    For a library call, FNTYPE is 0.
422
423    On the vax, the offset starts at 0.  */
424
425 #define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME,INDIRECT)       \
426  ((CUM) = 0)
427
428 /* Update the data in CUM to advance over an argument
429    of mode MODE and data type TYPE.
430    (TYPE is null for libcalls where that information may not be available.)  */
431
432 #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED)    \
433  ((CUM) += ((MODE) != BLKmode                   \
434             ? (GET_MODE_SIZE (MODE) + 3) & ~3   \
435             : (int_size_in_bytes (TYPE) + 3) & ~3))
436
437 /* Define where to put the arguments to a function.
438    Value is zero to push the argument on the stack,
439    or a hard register in which to store the argument.
440
441    MODE is the argument's machine mode.
442    TYPE is the data type of the argument (as a tree).
443     This is null for libcalls where that information may
444     not be available.
445    CUM is a variable of type CUMULATIVE_ARGS which gives info about
446     the preceding args and about the function being called.
447    NAMED is nonzero if this argument is a named parameter
448     (otherwise it is an extra parameter matching an ellipsis).  */
449
450 /* On the vax all args are pushed.  */   
451
452 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) 0
453
454 /* This macro generates the assembly code for function entry.
455    FILE is a stdio stream to output the code to.
456    SIZE is an int: how many units of temporary storage to allocate,
457    adjusted by STARTING_FRAME_OFFSET to accommodate vms.h.
458    Refer to the array `regs_ever_live' to determine which registers
459    to save; `regs_ever_live[I]' is nonzero if register number I
460    is ever used in the function.  This macro is responsible for
461    knowing which registers should not be saved even if used.  */
462
463 #define FUNCTION_PROLOGUE(FILE, SIZE)     \
464 { register int regno;                                           \
465   register int mask = 0;                                        \
466   register int size = SIZE - STARTING_FRAME_OFFSET;             \
467   extern char call_used_regs[];                                 \
468   for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)       \
469     if (regs_ever_live[regno] && !call_used_regs[regno])        \
470        mask |= 1 << regno;                                      \
471   fprintf (FILE, "\t.word 0x%x\n", mask);                       \
472   MAYBE_VMS_FUNCTION_PROLOGUE(FILE)                             \
473   if ((size) >= 64) fprintf (FILE, "\tmovab %d(sp),sp\n", -size);\
474   else if (size) fprintf (FILE, "\tsubl2 $%d,sp\n", (size)); }
475
476 /* vms.h redefines this.  */
477 #define MAYBE_VMS_FUNCTION_PROLOGUE(FILE)
478
479 /* Output assembler code to FILE to increment profiler label # LABELNO
480    for profiling a function entry.  */
481
482 #define FUNCTION_PROFILER(FILE, LABELNO)  \
483    fprintf (FILE, "\tmovab LP%d,r0\n\tjsb mcount\n", (LABELNO));
484
485 /* Output assembler code to FILE to initialize this source file's
486    basic block profiling info, if that has not already been done.  */
487
488 #define FUNCTION_BLOCK_PROFILER(FILE, LABELNO)  \
489   fprintf (FILE, "\ttstl LPBX0\n\tjneq LPI%d\n\tpushal LPBX0\n\tcalls $1,__bb_init_func\nLPI%d:\n",  \
490            LABELNO, LABELNO);
491
492 /* Output assembler code to FILE to increment the entry-count for
493    the BLOCKNO'th basic block in this source file.  This is a real pain in the
494    sphincter on a VAX, since we do not want to change any of the bits in the
495    processor status word.  The way it is done here, it is pushed onto the stack
496    before any flags have changed, and then the stack is fixed up to account for
497    the fact that the instruction to restore the flags only reads a word.
498    It may seem a bit clumsy, but at least it works.
499 */
500
501 #define BLOCK_PROFILER(FILE, BLOCKNO)   \
502   fprintf (FILE, "\tmovpsl -(sp)\n\tmovw (sp),2(sp)\n\taddl2 $2,sp\n\taddl2 $1,LPBX2+%d\n\tbicpsw $255\n\tbispsw (sp)+\n", \
503                 4 * BLOCKNO)
504
505 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
506    the stack pointer does not matter.  The value is tested only in
507    functions that have frame pointers.
508    No definition is equivalent to always zero.  */
509
510 #define EXIT_IGNORE_STACK 1
511
512 /* This macro generates the assembly code for function exit,
513    on machines that need it.  If FUNCTION_EPILOGUE is not defined
514    then individual return instructions are generated for each
515    return statement.  Args are same as for FUNCTION_PROLOGUE.  */
516
517 /* #define FUNCTION_EPILOGUE(FILE, SIZE)  */
518
519 /* Store in the variable DEPTH the initial difference between the
520    frame pointer reg contents and the stack pointer reg contents,
521    as of the start of the function body.  This depends on the layout
522    of the fixed parts of the stack frame and on how registers are saved.
523
524    On the Vax, FRAME_POINTER_REQUIRED is always 1, so the definition of this
525    macro doesn't matter.  But it must be defined.  */
526
527 #define INITIAL_FRAME_POINTER_OFFSET(DEPTH) (DEPTH) = 0;
528
529 /* Output assembler code for a block containing the constant parts
530    of a trampoline, leaving space for the variable parts.  */
531
532 /* On the vax, the trampoline contains an entry mask and two instructions:
533      .word NN
534      movl $STATIC,r0   (store the functions static chain)
535      jmp  *$FUNCTION   (jump to function code at address FUNCTION)  */
536
537 #define TRAMPOLINE_TEMPLATE(FILE)                       \
538 {                                                       \
539   ASM_OUTPUT_SHORT (FILE, const0_rtx);                  \
540   ASM_OUTPUT_SHORT (FILE, GEN_INT (0x8fd0));            \
541   ASM_OUTPUT_INT (FILE, const0_rtx);                    \
542   ASM_OUTPUT_BYTE  (FILE, 0x50 + STATIC_CHAIN_REGNUM);  \
543   ASM_OUTPUT_SHORT (FILE, GEN_INT (0x9f17));            \
544   ASM_OUTPUT_INT (FILE, const0_rtx);                    \
545 }
546
547 /* Length in units of the trampoline for entering a nested function.  */
548
549 #define TRAMPOLINE_SIZE 15
550
551 /* Emit RTL insns to initialize the variable parts of a trampoline.
552    FNADDR is an RTX for the address of the function's pure code.
553    CXT is an RTX for the static chain value for the function.  */
554
555 /* We copy the register-mask from the function's pure code
556    to the start of the trampoline.  */
557 #define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT)                       \
558 {                                                                       \
559   emit_insn (gen_rtx_ASM_INPUT (VOIDmode,                               \
560                                 "movpsl -(sp)\n\tpushal 1(pc)\n\trei")); \
561   emit_move_insn (gen_rtx_MEM (HImode, TRAMP),                          \
562                   gen_rtx_MEM (HImode, FNADDR));                        \
563   emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 4)), CXT);\
564   emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 11)),      \
565                   plus_constant (FNADDR, 2));                           \
566 }
567
568 /* Byte offset of return address in a stack frame.  The "saved PC" field
569    is in element [4] when treating the frame as an array of longwords.  */
570
571 #define RETURN_ADDRESS_OFFSET   (4 * UNITS_PER_WORD)    /* 16 */
572
573 /* A C expression whose value is RTL representing the value of the return
574    address for the frame COUNT steps up from the current frame.
575    FRAMEADDR is already the frame pointer of the COUNT frame, so we
576    can ignore COUNT.  */
577
578 #define RETURN_ADDR_RTX(COUNT, FRAME)   \
579   ((COUNT == 0)                         \
580    ? gen_rtx_MEM (Pmode, plus_constant (FRAME, RETURN_ADDRESS_OFFSET)) \
581    : (rtx) 0)
582
583 \f
584 /* Addressing modes, and classification of registers for them.  */
585
586 #define HAVE_POST_INCREMENT 1
587 /* #define HAVE_POST_DECREMENT 0 */
588
589 #define HAVE_PRE_DECREMENT 1
590 /* #define HAVE_PRE_INCREMENT 0 */
591
592 /* Macros to check register numbers against specific register classes.  */
593
594 /* These assume that REGNO is a hard or pseudo reg number.
595    They give nonzero only if REGNO is a hard reg of the suitable class
596    or a pseudo reg currently allocated to a suitable hard reg.
597    Since they use reg_renumber, they are safe only once reg_renumber
598    has been allocated, which happens in local-alloc.c.  */
599
600 #define REGNO_OK_FOR_INDEX_P(regno)  \
601 ((regno) < FIRST_PSEUDO_REGISTER || reg_renumber[regno] >= 0)
602 #define REGNO_OK_FOR_BASE_P(regno) \
603 ((regno) < FIRST_PSEUDO_REGISTER || reg_renumber[regno] >= 0)
604 \f
605 /* Maximum number of registers that can appear in a valid memory address.  */
606
607 #define MAX_REGS_PER_ADDRESS 2
608
609 /* 1 if X is an rtx for a constant that is a valid address.  */
610
611 #define CONSTANT_ADDRESS_P(X)   \
612   (GET_CODE (X) == LABEL_REF || GET_CODE (X) == SYMBOL_REF              \
613    || GET_CODE (X) == CONST_INT || GET_CODE (X) == CONST                \
614    || GET_CODE (X) == HIGH)
615
616 /* Nonzero if the constant value X is a legitimate general operand.
617    It is given that X satisfies CONSTANT_P or is a CONST_DOUBLE.  */
618
619 #define LEGITIMATE_CONSTANT_P(X) 1
620
621 /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
622    and check its validity for a certain class.
623    We have two alternate definitions for each of them.
624    The usual definition accepts all pseudo regs; the other rejects
625    them unless they have been allocated suitable hard regs.
626    The symbol REG_OK_STRICT causes the latter definition to be used.
627
628    Most source files want to accept pseudo regs in the hope that
629    they will get allocated to the class that the insn wants them to be in.
630    Source files for reload pass need to be strict.
631    After reload, it makes no difference, since pseudo regs have
632    been eliminated by then.  */
633
634 #ifndef REG_OK_STRICT
635
636 /* Nonzero if X is a hard reg that can be used as an index
637    or if it is a pseudo reg.  */
638 #define REG_OK_FOR_INDEX_P(X) 1
639 /* Nonzero if X is a hard reg that can be used as a base reg
640    or if it is a pseudo reg.  */
641 #define REG_OK_FOR_BASE_P(X) 1
642
643 #else
644
645 /* Nonzero if X is a hard reg that can be used as an index.  */
646 #define REG_OK_FOR_INDEX_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
647 /* Nonzero if X is a hard reg that can be used as a base reg.  */
648 #define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
649
650 #endif
651 \f
652 /* GO_IF_LEGITIMATE_ADDRESS recognizes an RTL expression
653    that is a valid memory address for an instruction.
654    The MODE argument is the machine mode for the MEM expression
655    that wants to use this address.
656
657    The other macros defined here are used only in GO_IF_LEGITIMATE_ADDRESS,
658    except for CONSTANT_ADDRESS_P which is actually machine-independent.  */
659
660 #ifdef NO_EXTERNAL_INDIRECT_ADDRESS
661
662 /* Zero if this contains a (CONST (PLUS (SYMBOL_REF) (...))) and the
663    symbol in the SYMBOL_REF is an external symbol.  */
664
665 #define INDIRECTABLE_CONSTANT_P(X) \
666  (! (GET_CODE ((X)) == CONST                                    \
667      && GET_CODE (XEXP ((X), 0)) == PLUS                        \
668      && GET_CODE (XEXP (XEXP ((X), 0), 0)) == SYMBOL_REF        \
669      && SYMBOL_REF_FLAG (XEXP (XEXP ((X), 0), 0))))
670
671 /* Re-definition of CONSTANT_ADDRESS_P, which is true only when there
672    are no SYMBOL_REFs for external symbols present.  */
673
674 #define INDIRECTABLE_CONSTANT_ADDRESS_P(X)                              \
675   (GET_CODE (X) == LABEL_REF                                            \
676    || (GET_CODE (X) == SYMBOL_REF && !SYMBOL_REF_FLAG (X))              \
677    || (GET_CODE (X) == CONST && INDIRECTABLE_CONSTANT_P(X))             \
678    || GET_CODE (X) == CONST_INT)
679
680
681 /* Non-zero if X is an address which can be indirected.  External symbols
682    could be in a sharable image library, so we disallow those.  */
683
684 #define INDIRECTABLE_ADDRESS_P(X)  \
685   (INDIRECTABLE_CONSTANT_ADDRESS_P (X)                                  \
686    || (GET_CODE (X) == REG && REG_OK_FOR_BASE_P (X))                    \
687    || (GET_CODE (X) == PLUS                                             \
688        && GET_CODE (XEXP (X, 0)) == REG                                 \
689        && REG_OK_FOR_BASE_P (XEXP (X, 0))                               \
690        && INDIRECTABLE_CONSTANT_ADDRESS_P (XEXP (X, 1))))
691
692 #else /* not NO_EXTERNAL_INDIRECT_ADDRESS */
693
694 #define INDIRECTABLE_CONSTANT_ADDRESS_P(X) CONSTANT_ADDRESS_P(X)
695
696 /* Non-zero if X is an address which can be indirected.  */
697 #define INDIRECTABLE_ADDRESS_P(X)  \
698   (CONSTANT_ADDRESS_P (X)                                               \
699    || (GET_CODE (X) == REG && REG_OK_FOR_BASE_P (X))                    \
700    || (GET_CODE (X) == PLUS                                             \
701        && GET_CODE (XEXP (X, 0)) == REG                                 \
702        && REG_OK_FOR_BASE_P (XEXP (X, 0))                               \
703        && CONSTANT_ADDRESS_P (XEXP (X, 1))))
704
705 #endif /* not NO_EXTERNAL_INDIRECT_ADDRESS */
706
707 /* Go to ADDR if X is a valid address not using indexing.
708    (This much is the easy part.)  */
709 #define GO_IF_NONINDEXED_ADDRESS(X, ADDR)  \
710 { register rtx xfoob = (X);                                             \
711   if (GET_CODE (xfoob) == REG)                                          \
712     {                                                                   \
713       extern rtx *reg_equiv_mem;                                        \
714       if (! reload_in_progress                                          \
715           || reg_equiv_mem[REGNO (xfoob)] == 0                          \
716           || INDIRECTABLE_ADDRESS_P (reg_equiv_mem[REGNO (xfoob)]))     \
717         goto ADDR;                                                      \
718     }                                                                   \
719   if (CONSTANT_ADDRESS_P (xfoob)) goto ADDR;                            \
720   if (INDIRECTABLE_ADDRESS_P (xfoob)) goto ADDR;                        \
721   xfoob = XEXP (X, 0);                                                  \
722   if (GET_CODE (X) == MEM && INDIRECTABLE_ADDRESS_P (xfoob))            \
723     goto ADDR;                                                          \
724   if ((GET_CODE (X) == PRE_DEC || GET_CODE (X) == POST_INC)             \
725       && GET_CODE (xfoob) == REG && REG_OK_FOR_BASE_P (xfoob))          \
726     goto ADDR; }
727
728 /* 1 if PROD is either a reg times size of mode MODE
729    or just a reg, if MODE is just one byte.
730    This macro's expansion uses the temporary variables xfoo0 and xfoo1
731    that must be declared in the surrounding context.  */
732 #define INDEX_TERM_P(PROD, MODE)   \
733 (GET_MODE_SIZE (MODE) == 1                                              \
734  ? (GET_CODE (PROD) == REG && REG_OK_FOR_BASE_P (PROD))                 \
735  : (GET_CODE (PROD) == MULT                                             \
736     &&                                                                  \
737     (xfoo0 = XEXP (PROD, 0), xfoo1 = XEXP (PROD, 1),                    \
738      ((((GET_CODE (xfoo0) == CONST_INT                                  \
739          && GET_CODE (xfoo1) == REG)                                    \
740          && INTVAL (xfoo0) == (int)GET_MODE_SIZE (MODE))                \
741          && REG_OK_FOR_INDEX_P (xfoo1))                                 \
742         ||                                                              \
743       (((GET_CODE (xfoo1) == CONST_INT                                  \
744          && GET_CODE (xfoo0) == REG)                                    \
745          && INTVAL (xfoo1) == (int)GET_MODE_SIZE (MODE))                \
746          && REG_OK_FOR_INDEX_P (xfoo0))))))
747
748 /* Go to ADDR if X is the sum of a register
749    and a valid index term for mode MODE.  */
750 #define GO_IF_REG_PLUS_INDEX(X, MODE, ADDR)     \
751 { register rtx xfooa;                                                   \
752   if (GET_CODE (X) == PLUS)                                             \
753     { if (GET_CODE (XEXP (X, 0)) == REG                                 \
754           && REG_OK_FOR_BASE_P (XEXP (X, 0))                            \
755           && (xfooa = XEXP (X, 1),                                      \
756               INDEX_TERM_P (xfooa, MODE)))                              \
757         goto ADDR;                                                      \
758       if (GET_CODE (XEXP (X, 1)) == REG                                 \
759           && REG_OK_FOR_BASE_P (XEXP (X, 1))                            \
760           && (xfooa = XEXP (X, 0),                                      \
761               INDEX_TERM_P (xfooa, MODE)))                              \
762         goto ADDR; } }
763
764 #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, ADDR)  \
765 { register rtx xfoo, xfoo0, xfoo1;                                      \
766   GO_IF_NONINDEXED_ADDRESS (X, ADDR);                                   \
767   if (GET_CODE (X) == PLUS)                                             \
768     { /* Handle <address>[index] represented with index-sum outermost */\
769       xfoo = XEXP (X, 0);                                               \
770       if (INDEX_TERM_P (xfoo, MODE))                                    \
771         { GO_IF_NONINDEXED_ADDRESS (XEXP (X, 1), ADDR); }               \
772       xfoo = XEXP (X, 1);                                               \
773       if (INDEX_TERM_P (xfoo, MODE))                                    \
774         { GO_IF_NONINDEXED_ADDRESS (XEXP (X, 0), ADDR); }               \
775       /* Handle offset(reg)[index] with offset added outermost */       \
776       if (INDIRECTABLE_CONSTANT_ADDRESS_P (XEXP (X, 0)))                \
777         { if (GET_CODE (XEXP (X, 1)) == REG                             \
778               && REG_OK_FOR_BASE_P (XEXP (X, 1)))                       \
779             goto ADDR;                                                  \
780           GO_IF_REG_PLUS_INDEX (XEXP (X, 1), MODE, ADDR); }             \
781       if (INDIRECTABLE_CONSTANT_ADDRESS_P (XEXP (X, 1)))                \
782         { if (GET_CODE (XEXP (X, 0)) == REG                             \
783               && REG_OK_FOR_BASE_P (XEXP (X, 0)))                       \
784             goto ADDR;                                                  \
785           GO_IF_REG_PLUS_INDEX (XEXP (X, 0), MODE, ADDR); } } }
786 \f
787 /* Try machine-dependent ways of modifying an illegitimate address
788    to be legitimate.  If we find one, return the new, valid address.
789    This macro is used in only one place: `memory_address' in explow.c.
790
791    OLDX is the address as it was before break_out_memory_refs was called.
792    In some cases it is useful to look at this to decide what needs to be done.
793
794    MODE and WIN are passed so that this macro can use
795    GO_IF_LEGITIMATE_ADDRESS.
796
797    It is always safe for this macro to do nothing.  It exists to recognize
798    opportunities to optimize the output.
799
800    For the vax, nothing needs to be done.  */
801
802 #define LEGITIMIZE_ADDRESS(X,OLDX,MODE,WIN)  {}
803
804 /* Go to LABEL if ADDR (a legitimate address expression)
805    has an effect that depends on the machine mode it is used for.
806    On the VAX, the predecrement and postincrement address depend thus
807    (the amount of decrement or increment being the length of the operand)
808    and all indexed address depend thus (because the index scale factor
809    is the length of the operand).  */
810 #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR,LABEL)        \
811  { if (GET_CODE (ADDR) == POST_INC || GET_CODE (ADDR) == PRE_DEC)       \
812      goto LABEL;                                                        \
813    if (GET_CODE (ADDR) == PLUS)                                         \
814      { if (CONSTANT_ADDRESS_P (XEXP (ADDR, 0))                          \
815            && GET_CODE (XEXP (ADDR, 1)) == REG);                        \
816        else if (CONSTANT_ADDRESS_P (XEXP (ADDR, 1))                     \
817                 && GET_CODE (XEXP (ADDR, 0)) == REG);                   \
818        else goto LABEL; }}
819 \f
820 /* Specify the machine mode that this machine uses
821    for the index in the tablejump instruction.  */
822 #define CASE_VECTOR_MODE HImode
823
824 /* Define as C expression which evaluates to nonzero if the tablejump
825    instruction expects the table to contain offsets from the address of the
826    table.
827    Do not define this if the table should contain absolute addresses. */
828 #define CASE_VECTOR_PC_RELATIVE 1
829
830 /* Define this if the case instruction drops through after the table
831    when the index is out of range.  Don't define it if the case insn
832    jumps to the default label instead.  */
833 #define CASE_DROPS_THROUGH
834
835 /* Specify the tree operation to be used to convert reals to integers.  */
836 #define IMPLICIT_FIX_EXPR FIX_ROUND_EXPR
837
838 /* This is the kind of divide that is easiest to do in the general case.  */
839 #define EASY_DIV_EXPR TRUNC_DIV_EXPR
840
841 /* Define this as 1 if `char' should by default be signed; else as 0.  */
842 #define DEFAULT_SIGNED_CHAR 1
843
844 /* This flag, if defined, says the same insns that convert to a signed fixnum
845    also convert validly to an unsigned one.  */
846 #define FIXUNS_TRUNC_LIKE_FIX_TRUNC
847
848 /* Max number of bytes we can move from memory to memory
849    in one reasonably fast instruction.  */
850 #define MOVE_MAX 8
851
852 /* Define this if zero-extension is slow (more than one real instruction).  */
853 /* #define SLOW_ZERO_EXTEND */
854
855 /* Nonzero if access to memory by bytes is slow and undesirable.  */
856 #define SLOW_BYTE_ACCESS 0
857
858 /* Define if shifts truncate the shift count
859    which implies one can omit a sign-extension or zero-extension
860    of a shift count.  */
861 /* #define SHIFT_COUNT_TRUNCATED */
862
863 /* Value is 1 if truncating an integer of INPREC bits to OUTPREC bits
864    is done just by pretending it is already truncated.  */
865 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
866
867 /* Specify the machine mode that pointers have.
868    After generation of rtl, the compiler makes no further distinction
869    between pointers and any other objects of this machine mode.  */
870 #define Pmode SImode
871
872 /* A function address in a call instruction
873    is a byte address (for indexing purposes)
874    so give the MEM rtx a byte's mode.  */
875 #define FUNCTION_MODE QImode
876
877 /* This machine doesn't use IEEE floats.  */
878
879 #define TARGET_FLOAT_FORMAT VAX_FLOAT_FORMAT
880
881 /* Compute the cost of computing a constant rtl expression RTX
882    whose rtx-code is CODE.  The body of this macro is a portion
883    of a switch statement.  If the code is computed here,
884    return it with a return statement.  Otherwise, break from the switch.  */
885
886 /* On a VAX, constants from 0..63 are cheap because they can use the
887    1 byte literal constant format.  compare to -1 should be made cheap
888    so that decrement-and-branch insns can be formed more easily (if
889    the value -1 is copied to a register some decrement-and-branch patterns
890    will not match).  */
891
892 #define CONST_COSTS(RTX,CODE,OUTER_CODE) \
893   case CONST_INT:                                               \
894     if (INTVAL (RTX) == 0) return 0;                            \
895     if ((OUTER_CODE) == AND)                                    \
896       return ((unsigned) ~INTVAL (RTX) <= 077) ? 1 : 2;         \
897     if ((unsigned) INTVAL (RTX) <= 077) return 1;               \
898     if ((OUTER_CODE) == COMPARE && INTVAL (RTX) == -1)          \
899       return 1;                                                 \
900     if ((OUTER_CODE) == PLUS && (unsigned) -INTVAL (RTX) <= 077)\
901       return 1;                                                 \
902   case CONST:                                                   \
903   case LABEL_REF:                                               \
904   case SYMBOL_REF:                                              \
905     return 3;                                                   \
906   case CONST_DOUBLE:                                            \
907     if (GET_MODE_CLASS (GET_MODE (RTX)) == MODE_FLOAT)          \
908       return vax_float_literal (RTX) ? 5 : 8;                   \
909     else                                                        \
910       return (((CONST_DOUBLE_HIGH (RTX) == 0                    \
911                 && (unsigned) CONST_DOUBLE_LOW (RTX) < 64)      \
912                || ((OUTER_CODE) == PLUS                         \
913                    && CONST_DOUBLE_HIGH (RTX) == -1             \
914                    && (unsigned)-CONST_DOUBLE_LOW (RTX) < 64))  \
915               ? 2 : 5);
916
917 #define RTX_COSTS(RTX,CODE,OUTER_CODE) case FIX: case FLOAT:    \
918  case MULT: case DIV: case UDIV: case MOD: case UMOD:           \
919  case ASHIFT: case LSHIFTRT: case ASHIFTRT:                     \
920  case ROTATE: case ROTATERT: case PLUS: case MINUS: case IOR:   \
921  case XOR: case AND: case NEG: case NOT: case ZERO_EXTRACT:     \
922  case SIGN_EXTRACT: case MEM: return vax_rtx_cost(RTX)
923
924 #define ADDRESS_COST(RTX) (1 + (GET_CODE (RTX) == REG ? 0 : vax_address_cost(RTX)))
925
926 /* Specify the cost of a branch insn; roughly the number of extra insns that
927    should be added to avoid a branch.
928
929    Branches are extremely cheap on the VAX while the shift insns often
930    used to replace branches can be expensive.  */
931
932 #define BRANCH_COST 0
933
934 /*
935  * We can use the BSD C library routines for the libgcc calls that are
936  * still generated, since that's what they boil down to anyways.
937  */
938
939 #define UDIVSI3_LIBCALL "*udiv"
940 #define UMODSI3_LIBCALL "*urem"
941
942 /* Check a `double' value for validity for a particular machine mode.  */
943
944 /* note that it is very hard to accidentally create a number that fits in a
945    double but not in a float, since their ranges are almost the same */
946
947 #define CHECK_FLOAT_VALUE(MODE, D, OVERFLOW) \
948   ((OVERFLOW) = check_float_value (MODE, &D, OVERFLOW))
949
950 /* For future reference:
951    D Float: 9 bit, sign magnitude, excess 128 binary exponent
952             normalized 56 bit fraction, redundant bit not represented
953             approximately 16 decimal digits of precision
954
955    The values to use if we trust decimal to binary conversions:
956 #define MAX_D_FLOAT 1.7014118346046923e+38
957 #define MIN_D_FLOAT .29387358770557188e-38
958
959    G float: 12 bit, sign magnitude, excess 1024 binary exponent
960             normalized 53 bit fraction, redundant bit not represented
961             approximately 15 decimal digits precision
962
963    The values to use if we trust decimal to binary conversions:
964 #define MAX_G_FLOAT .898846567431157e+308
965 #define MIN_G_FLOAT .556268464626800e-308
966 */
967 \f
968 /* Tell final.c how to eliminate redundant test instructions.  */
969
970 /* Here we define machine-dependent flags and fields in cc_status
971    (see `conditions.h').  No extra ones are needed for the vax.  */
972
973 /* Store in cc_status the expressions
974    that the condition codes will describe
975    after execution of an instruction whose pattern is EXP.
976    Do not alter them if the instruction would not alter the cc's.  */
977
978 #define NOTICE_UPDATE_CC(EXP, INSN) \
979 { if (GET_CODE (EXP) == SET)                                    \
980     { if (GET_CODE (SET_SRC (EXP)) == CALL)                     \
981         CC_STATUS_INIT;                                         \
982       else if (GET_CODE (SET_DEST (EXP)) != ZERO_EXTRACT        \
983                && GET_CODE (SET_DEST (EXP)) != PC)              \
984         { cc_status.flags = 0;                                  \
985           cc_status.value1 = SET_DEST (EXP);                    \
986           cc_status.value2 = SET_SRC (EXP); } }                 \
987   else if (GET_CODE (EXP) == PARALLEL                           \
988            && GET_CODE (XVECEXP (EXP, 0, 0)) == SET)            \
989     {                                                           \
990       if (GET_CODE (SET_SRC (XVECEXP (EXP, 0, 0))) == CALL)     \
991         CC_STATUS_INIT;                                         \
992       else if (GET_CODE (SET_DEST (XVECEXP (EXP, 0, 0))) != PC) \
993         { cc_status.flags = 0;                                  \
994           cc_status.value1 = SET_DEST (XVECEXP (EXP, 0, 0));    \
995           cc_status.value2 = SET_SRC (XVECEXP (EXP, 0, 0)); }   \
996       else                                                      \
997         /* PARALLELs whose first element sets the PC are aob,   \
998            sob insns.  They do change the cc's.  */             \
999         CC_STATUS_INIT; }                                       \
1000   else CC_STATUS_INIT;                                          \
1001   if (cc_status.value1 && GET_CODE (cc_status.value1) == REG    \
1002       && cc_status.value2                                       \
1003       && reg_overlap_mentioned_p (cc_status.value1, cc_status.value2))  \
1004     cc_status.value2 = 0;                                       \
1005   if (cc_status.value1 && GET_CODE (cc_status.value1) == MEM    \
1006       && cc_status.value2                                       \
1007       && GET_CODE (cc_status.value2) == MEM)                    \
1008     cc_status.value2 = 0; }
1009 /* Actual condition, one line up, should be that value2's address
1010    depends on value1, but that is too much of a pain.  */
1011
1012 #define OUTPUT_JUMP(NORMAL, FLOAT, NO_OV)  \
1013 { if (cc_status.flags & CC_NO_OVERFLOW)                         \
1014     return NO_OV;                                               \
1015   return NORMAL; }
1016 \f
1017 /* Control the assembler format that we output.  */
1018
1019 /* Output at beginning of assembler file.  */
1020
1021 #define ASM_FILE_START(FILE) fprintf (FILE, "#NO_APP\n");
1022
1023 /* Output to assembler file text saying following lines
1024    may contain character constants, extra white space, comments, etc.  */
1025
1026 #define ASM_APP_ON "#APP\n"
1027
1028 /* Output to assembler file text saying following lines
1029    no longer contain unusual constructs.  */
1030
1031 #define ASM_APP_OFF "#NO_APP\n"
1032
1033 /* Output before read-only data.  */
1034
1035 #define TEXT_SECTION_ASM_OP ".text"
1036
1037 /* Output before writable data.  */
1038
1039 #define DATA_SECTION_ASM_OP ".data"
1040
1041 /* How to refer to registers in assembler output.
1042    This sequence is indexed by compiler's hard-register-number (see above).  */
1043
1044 #define REGISTER_NAMES \
1045 {"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", \
1046  "r9", "r10", "r11", "ap", "fp", "sp", "pc"}
1047
1048 /* This is BSD, so it wants DBX format.  */
1049
1050 #define DBX_DEBUGGING_INFO
1051
1052 /* How to renumber registers for dbx and gdb.
1053    Vax needs no change in the numeration.  */
1054
1055 #define DBX_REGISTER_NUMBER(REGNO) (REGNO)
1056
1057 /* Do not break .stabs pseudos into continuations.  */
1058
1059 #define DBX_CONTIN_LENGTH 0
1060
1061 /* This is the char to use for continuation (in case we need to turn
1062    continuation back on).  */
1063
1064 #define DBX_CONTIN_CHAR '?'
1065
1066 /* Don't use the `xsfoo;' construct in DBX output; this system
1067    doesn't support it.  */
1068
1069 #define DBX_NO_XREFS
1070
1071 /* Output the .stabs for a C `static' variable in the data section.  */
1072 #define DBX_STATIC_STAB_DATA_SECTION
1073
1074 /* Vax specific: which type character is used for type double?  */
1075
1076 #define ASM_DOUBLE_CHAR (TARGET_G_FLOAT ? 'g' : 'd')
1077
1078 /* This is how to output the definition of a user-level label named NAME,
1079    such as the label on a static function or variable NAME.  */
1080
1081 #define ASM_OUTPUT_LABEL(FILE,NAME)     \
1082   do { assemble_name (FILE, NAME); fputs (":\n", FILE); } while (0)
1083
1084 /* This is how to output a command to make the user-level label named NAME
1085    defined for reference from other files.  */
1086
1087 #define ASM_GLOBALIZE_LABEL(FILE,NAME)  \
1088   do { fputs (".globl ", FILE); assemble_name (FILE, NAME); fputs ("\n", FILE);} while (0)
1089
1090 /* The prefix to add to user-visible assembler symbols. */
1091
1092 #define USER_LABEL_PREFIX "_"
1093
1094 /* This is how to output an internal numbered label where
1095    PREFIX is the class of label and NUM is the number within the class.  */
1096
1097 #define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM)      \
1098   fprintf (FILE, "%s%d:\n", PREFIX, NUM)
1099
1100 /* This is how to store into the string LABEL
1101    the symbol_ref name of an internal numbered label where
1102    PREFIX is the class of label and NUM is the number within the class.
1103    This is suitable for output with `assemble_name'.  */
1104
1105 #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM)   \
1106   sprintf (LABEL, "*%s%d", PREFIX, NUM)
1107
1108 /* This is how to output an assembler line defining a `double' constant.
1109    It is .dfloat or .gfloat, depending.  */
1110
1111 #define ASM_OUTPUT_DOUBLE(FILE,VALUE)  \
1112 do { char dstr[30];                                                     \
1113      REAL_VALUE_TO_DECIMAL (VALUE, "%.20e", dstr);                      \
1114      fprintf (FILE, "\t.%cfloat 0%c%s\n", ASM_DOUBLE_CHAR,              \
1115                                           ASM_DOUBLE_CHAR, dstr);       \
1116    } while (0);
1117
1118 /* This is how to output an assembler line defining a `float' constant.  */
1119
1120 #define ASM_OUTPUT_FLOAT(FILE,VALUE)  \
1121   do { char dstr[30];                                           \
1122        REAL_VALUE_TO_DECIMAL (VALUE, "%.20e", dstr);            \
1123        fprintf (FILE, "\t.float 0f%s\n", dstr); } while (0);
1124
1125 /* This is how to output an assembler line defining an `int' constant.  */
1126
1127 #define ASM_OUTPUT_INT(FILE,VALUE)  \
1128 ( fprintf (FILE, "\t.long "),                   \
1129   output_addr_const (FILE, (VALUE)),            \
1130   fprintf (FILE, "\n"))
1131
1132 /* Likewise for `char' and `short' constants.  */
1133
1134 #define ASM_OUTPUT_SHORT(FILE,VALUE)  \
1135 ( fprintf (FILE, "\t.word "),                   \
1136   output_addr_const (FILE, (VALUE)),            \
1137   fprintf (FILE, "\n"))
1138
1139 #define ASM_OUTPUT_CHAR(FILE,VALUE)  \
1140 ( fprintf (FILE, "\t.byte "),                   \
1141   output_addr_const (FILE, (VALUE)),            \
1142   fprintf (FILE, "\n"))
1143
1144 /* This is how to output an assembler line for a numeric constant byte.  */
1145
1146 #define ASM_OUTPUT_BYTE(FILE,VALUE)  \
1147   fprintf (FILE, "\t.byte 0x%x\n", (VALUE))
1148
1149 /* This is how to output an insn to push a register on the stack.
1150    It need not be very fast code.  */
1151
1152 #define ASM_OUTPUT_REG_PUSH(FILE,REGNO)  \
1153   fprintf (FILE, "\tpushl %s\n", reg_names[REGNO])
1154
1155 /* This is how to output an insn to pop a register from the stack.
1156    It need not be very fast code.  */
1157
1158 #define ASM_OUTPUT_REG_POP(FILE,REGNO)  \
1159   fprintf (FILE, "\tmovl (sp)+,%s\n", reg_names[REGNO])
1160
1161 /* This is how to output an element of a case-vector that is absolute.
1162    (The Vax does not use such vectors,
1163    but we must define this macro anyway.)  */
1164
1165 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE)  \
1166   fprintf (FILE, "\t.long L%d\n", VALUE)
1167
1168 /* This is how to output an element of a case-vector that is relative.  */
1169
1170 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL)  \
1171   fprintf (FILE, "\t.word L%d-L%d\n", VALUE, REL)
1172
1173 /* This is how to output an assembler line
1174    that says to advance the location counter
1175    to a multiple of 2**LOG bytes.  */
1176
1177 #define ASM_OUTPUT_ALIGN(FILE,LOG)  \
1178   fprintf (FILE, "\t.align %d\n", (LOG))
1179
1180 /* This is how to output an assembler line
1181    that says to advance the location counter by SIZE bytes.  */
1182
1183 #define ASM_OUTPUT_SKIP(FILE,SIZE)  \
1184   fprintf (FILE, "\t.space %u\n", (SIZE))
1185
1186 /* This says how to output an assembler line
1187    to define a global common symbol.  */
1188
1189 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED)  \
1190 ( fputs (".comm ", (FILE)),                     \
1191   assemble_name ((FILE), (NAME)),               \
1192   fprintf ((FILE), ",%u\n", (ROUNDED)))
1193
1194 /* This says how to output an assembler line
1195    to define a local common symbol.  */
1196
1197 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED)  \
1198 ( fputs (".lcomm ", (FILE)),                    \
1199   assemble_name ((FILE), (NAME)),               \
1200   fprintf ((FILE), ",%u\n", (ROUNDED)))
1201
1202 /* Store in OUTPUT a string (made with alloca) containing
1203    an assembler-name for a local static variable named NAME.
1204    LABELNO is an integer which is different for each call.  */
1205
1206 #define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO)  \
1207 ( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 10),    \
1208   sprintf ((OUTPUT), "%s.%d", (NAME), (LABELNO)))
1209
1210 /* When debugging, we want to output an extra dummy label so that gas
1211    can distinguish between D_float and G_float prior to processing the
1212    .stabs directive identifying type double.  */
1213
1214 #define ASM_IDENTIFY_LANGUAGE(FILE)     \
1215   do {                                                          \
1216     output_lang_identify (FILE);                                \
1217     if (write_symbols == DBX_DEBUG)                             \
1218       fprintf (FILE, "___vax_%c_doubles:\n", ASM_DOUBLE_CHAR);  \
1219   } while (0)
1220
1221 /* Output code to add DELTA to the first argument, and then jump to FUNCTION.
1222    Used for C++ multiple inheritance.
1223         .mask   ^m<r2,r3,r4,r5,r6,r7,r8,r9,r10,r11>     #conservative entry mask
1224         addl2   $DELTA, 4(ap)   #adjust first argument
1225         jmp     FUNCTION+2      #jump beyond FUNCTION's entry mask
1226  */
1227 #define ASM_OUTPUT_MI_THUNK(FILE, THUNK_FNDECL, DELTA, FUNCTION) \
1228 do {                                            \
1229   fprintf (FILE, "\t.word 0x0ffc\n");           \
1230   fprintf (FILE, "\taddl2 $%d,4(ap)\n", DELTA); \
1231   fprintf (FILE, "\tjmp ");                     \
1232   assemble_name (FILE,  XSTR (XEXP (DECL_RTL (FUNCTION), 0), 0)); \
1233   fprintf (FILE, "+2\n");                       \
1234 } while (0)
1235
1236 /* Define the parentheses used to group arithmetic operations
1237    in assembler code.  */
1238
1239 #define ASM_OPEN_PAREN "("
1240 #define ASM_CLOSE_PAREN ")"
1241
1242 /* Define results of standard character escape sequences.  */
1243 #define TARGET_BELL 007
1244 #define TARGET_BS 010
1245 #define TARGET_TAB 011
1246 #define TARGET_NEWLINE 012
1247 #define TARGET_VT 013
1248 #define TARGET_FF 014
1249 #define TARGET_CR 015
1250
1251 /* Print an instruction operand X on file FILE.
1252    CODE is the code from the %-spec that requested printing this operand;
1253    if `%z3' was used to print operand 3, then CODE is 'z'.
1254
1255 VAX operand formatting codes:
1256
1257  letter    print
1258    C    reverse branch condition
1259    D    64-bit immediate operand
1260    B    the low 8 bits of the complement of a constant operand
1261    H    the low 16 bits of the complement of a constant operand
1262    M    a mask for the N highest bits of a word
1263    N    the complement of a constant integer operand
1264    P    constant operand plus 1
1265    R    32 - constant operand
1266    b    the low 8 bits of a negated constant operand
1267    h    the low 16 bits of a negated constant operand
1268    #    'd' or 'g' depending on whether dfloat or gfloat is used  */
1269
1270 /* The purpose of D is to get around a quirk or bug in vax assembler
1271    whereby -1 in a 64-bit immediate operand means 0x00000000ffffffff,
1272    which is not a 64-bit minus one.  */
1273
1274 #define PRINT_OPERAND_PUNCT_VALID_P(CODE)                               \
1275   ((CODE) == '#')
1276
1277 #define PRINT_OPERAND(FILE, X, CODE)  \
1278 { if (CODE == '#') fputc (ASM_DOUBLE_CHAR, FILE);                       \
1279   else if (CODE == 'C')                                                 \
1280     fputs (rev_cond_name (X), FILE);                                    \
1281   else if (CODE == 'D' && GET_CODE (X) == CONST_INT && INTVAL (X) < 0)  \
1282     fprintf (FILE, "$0xffffffff%08x", INTVAL (X));                      \
1283   else if (CODE == 'P' && GET_CODE (X) == CONST_INT)                    \
1284     fprintf (FILE, "$%d", INTVAL (X) + 1);                              \
1285   else if (CODE == 'N' && GET_CODE (X) == CONST_INT)                    \
1286     fprintf (FILE, "$%d", ~ INTVAL (X));                                \
1287   /* rotl instruction cannot deal with negative arguments.  */          \
1288   else if (CODE == 'R' && GET_CODE (X) == CONST_INT)                    \
1289     fprintf (FILE, "$%d", 32 - INTVAL (X));                             \
1290   else if (CODE == 'H' && GET_CODE (X) == CONST_INT)                    \
1291     fprintf (FILE, "$%d", 0xffff & ~ INTVAL (X));                       \
1292   else if (CODE == 'h' && GET_CODE (X) == CONST_INT)                    \
1293     fprintf (FILE, "$%d", (short) - INTVAL (x));                        \
1294   else if (CODE == 'B' && GET_CODE (X) == CONST_INT)                    \
1295     fprintf (FILE, "$%d", 0xff & ~ INTVAL (X));                         \
1296   else if (CODE == 'b' && GET_CODE (X) == CONST_INT)                    \
1297     fprintf (FILE, "$%d", 0xff & - INTVAL (X));                         \
1298   else if (CODE == 'M' && GET_CODE (X) == CONST_INT)                    \
1299     fprintf (FILE, "$%d", ~((1 << INTVAL (x)) - 1));                    \
1300   else if (GET_CODE (X) == REG)                                         \
1301     fprintf (FILE, "%s", reg_names[REGNO (X)]);                         \
1302   else if (GET_CODE (X) == MEM)                                         \
1303     output_address (XEXP (X, 0));                                       \
1304   else if (GET_CODE (X) == CONST_DOUBLE && GET_MODE (X) == SFmode)      \
1305     { REAL_VALUE_TYPE r; char dstr[30];                                 \
1306       REAL_VALUE_FROM_CONST_DOUBLE (r, X);                              \
1307       REAL_VALUE_TO_DECIMAL (r, "%.20e", dstr);                         \
1308       fprintf (FILE, "$0f%s", dstr); }                                  \
1309   else if (GET_CODE (X) == CONST_DOUBLE && GET_MODE (X) == DFmode)      \
1310     { REAL_VALUE_TYPE r; char dstr[30];                                 \
1311       REAL_VALUE_FROM_CONST_DOUBLE (r, X);                              \
1312       REAL_VALUE_TO_DECIMAL (r, "%.20e", dstr);                         \
1313       fprintf (FILE, "$0%c%s", ASM_DOUBLE_CHAR, dstr); }                \
1314   else { putc ('$', FILE); output_addr_const (FILE, X); }}
1315
1316 /* Print a memory operand whose address is X, on file FILE.
1317    This uses a function in output-vax.c.  */
1318
1319 #define PRINT_OPERAND_ADDRESS(FILE, ADDR)  \
1320  print_operand_address (FILE, ADDR)