OSDN Git Service

Add support for lzd and popc instructions on sparc.
[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, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011
4    Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
21
22
23 /* Target CPU builtins.  */
24 #define TARGET_CPU_CPP_BUILTINS()               \
25   do                                            \
26     {                                           \
27       builtin_define ("__vax__");               \
28       builtin_assert ("cpu=vax");               \
29       builtin_assert ("machine=vax");           \
30       if (TARGET_G_FLOAT)                       \
31         {                                       \
32           builtin_define ("__GFLOAT");          \
33           builtin_define ("__GFLOAT__");        \
34         }                                       \
35     }                                           \
36   while (0)
37
38 #define VMS_TARGET 0
39
40 /* Use -J option for long branch support with Unix assembler.  */
41
42 #define ASM_SPEC "-J"
43
44 /* Choose proper libraries depending on float format.
45    Note that there are no profiling libraries for g-format.
46    Also use -lg for the sake of dbx.  */
47
48 #define LIB_SPEC "%{g:-lg}\
49  %{mg:%{lm:-lmg} -lcg \
50   %{p:%eprofiling not supported with -mg\n}\
51   %{pg:%eprofiling not supported with -mg\n}}\
52  %{!mg:%{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
53
54 /* Run-time compilation parameters selecting different hardware subsets.  */
55
56 /* Nonzero if ELF.  Redefined by vax/elf.h.  */
57 #define TARGET_ELF 0
58
59 /* Use BSD names for udiv and umod libgcc calls.  */
60 #define TARGET_BSD_DIVMOD 1
61
62 /* Default target_flags if no switches specified.  */
63
64 #ifndef TARGET_DEFAULT
65 #define TARGET_DEFAULT (MASK_UNIX_ASM)
66 #endif
67
68 \f
69 /* Target machine storage layout */
70
71 /* Define this if most significant bit is lowest numbered
72    in instructions that operate on numbered bit-fields.
73    This is not true on the VAX.  */
74 #define BITS_BIG_ENDIAN 0
75
76 /* Define this if most significant byte of a word is the lowest numbered.  */
77 /* That is not true on the VAX.  */
78 #define BYTES_BIG_ENDIAN 0
79
80 /* Define this if most significant word of a multiword number is the lowest
81    numbered.  */
82 /* This is not true on the VAX.  */
83 #define WORDS_BIG_ENDIAN 0
84
85 /* Width of a word, in units (bytes).  */
86 #define UNITS_PER_WORD 4
87
88 /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
89 #define PARM_BOUNDARY 32
90
91 /* Allocation boundary (in *bits*) for the code of a function.  */
92 #define FUNCTION_BOUNDARY 16
93
94 /* Alignment of field after `int : 0' in a structure.  */
95 #define EMPTY_FIELD_BOUNDARY (TARGET_VAXC_ALIGNMENT ? 8 : 32)
96
97 /* Every structure's size must be a multiple of this.  */
98 #define STRUCTURE_SIZE_BOUNDARY 8
99
100 /* A bit-field declared as `int' forces `int' alignment for the struct.  */
101 #define PCC_BITFIELD_TYPE_MATTERS (! TARGET_VAXC_ALIGNMENT)
102
103 /* No data type wants to be aligned rounder than this.  */
104 #define BIGGEST_ALIGNMENT 32
105
106 /* No structure field wants to be aligned rounder than this.  */
107 #define BIGGEST_FIELD_ALIGNMENT (TARGET_VAXC_ALIGNMENT ? 8 : 32)
108
109 /* Set this nonzero if move instructions will actually fail to work
110    when given unaligned data.  */
111 #define STRICT_ALIGNMENT 0
112
113 /* Let's keep the stack somewhat aligned.  */
114 #define STACK_BOUNDARY 32
115
116 /* The table of an ADDR_DIFF_VEC must be contiguous with the case
117    opcode, it is part of the case instruction.  */
118 #define ADDR_VEC_ALIGN(ADDR_VEC) 0
119 \f
120 /* Standard register usage.  */
121
122 /* Number of actual hardware registers.
123    The hardware registers are assigned numbers for the compiler
124    from 0 to just below FIRST_PSEUDO_REGISTER.
125    All registers that the compiler knows about must be given numbers,
126    even those that are not normally considered general registers.  */
127 #define FIRST_PSEUDO_REGISTER 16
128
129 /* 1 for registers that have pervasive standard uses
130    and are not available for the register allocator.
131    On the VAX, these are the AP, FP, SP and PC.  */
132 #define FIXED_REGISTERS {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1}
133
134 /* 1 for registers not available across function calls.
135    These must include the FIXED_REGISTERS and also any
136    registers that can be used without being saved.
137    The latter must include the registers where values are returned
138    and the register where structure-value addresses are passed.
139    Aside from that, you can include as many other registers as you like.  */
140 #define CALL_USED_REGISTERS {1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1}
141
142 /* Return number of consecutive hard regs needed starting at reg REGNO
143    to hold something of mode MODE.
144    This is ordinarily the length in words of a value of mode MODE
145    but can be less for certain modes in special long registers.
146    On the VAX, all registers are one word long.  */
147 #define HARD_REGNO_NREGS(REGNO, MODE)   \
148   ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
149
150 /* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
151    On the VAX, all registers can hold all modes.  */
152 #define HARD_REGNO_MODE_OK(REGNO, MODE) 1
153
154 /* Value is 1 if it is a good idea to tie two pseudo registers
155    when one has mode MODE1 and one has mode MODE2.
156    If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
157    for any hard reg, then this must be 0 for correct output.  */
158 #define MODES_TIEABLE_P(MODE1, MODE2)  1
159
160 /* Specify the registers used for certain standard purposes.
161    The values of these macros are register numbers.  */
162
163 /* VAX pc is overloaded on a register.  */
164 #define PC_REGNUM VAX_PC_REGNUM
165
166 /* Register to use for pushing function arguments.  */
167 #define STACK_POINTER_REGNUM VAX_SP_REGNUM
168
169 /* Base register for access to local variables of the function.  */
170 #define FRAME_POINTER_REGNUM VAX_FP_REGNUM
171
172 /* Offset from the frame pointer register value to the top of stack.  */
173 #define FRAME_POINTER_CFA_OFFSET(FNDECL) 0
174
175 /* Base register for access to arguments of the function.  */
176 #define ARG_POINTER_REGNUM VAX_AP_REGNUM
177
178 /* Register in which static-chain is passed to a function.  */
179 #define STATIC_CHAIN_REGNUM 0
180
181 /* Register in which address to store a structure value
182    is passed to a function.  */
183 #define VAX_STRUCT_VALUE_REGNUM 1
184 \f
185 /* Define the classes of registers for register constraints in the
186    machine description.  Also define ranges of constants.
187
188    One of the classes must always be named ALL_REGS and include all hard regs.
189    If there is more than one class, another class must be named NO_REGS
190    and contain no registers.
191
192    The name GENERAL_REGS must be the name of a class (or an alias for
193    another name such as ALL_REGS).  This is the class of registers
194    that is allowed by "g" or "r" in a register constraint.
195    Also, registers outside this class are allocated only when
196    instructions express preferences for them.
197
198    The classes must be numbered in nondecreasing order; that is,
199    a larger-numbered class must never be contained completely
200    in a smaller-numbered class.
201
202    For any two classes, it is very desirable that there be another
203    class that represents their union.  */
204
205 /* The VAX has only one kind of registers, so NO_REGS and ALL_REGS
206    are the only classes.  */
207
208 enum reg_class { NO_REGS, ALL_REGS, LIM_REG_CLASSES };
209
210 #define N_REG_CLASSES (int) LIM_REG_CLASSES
211
212 /* Since GENERAL_REGS is the same class as ALL_REGS,
213    don't give it a different class number; just make it an alias.  */
214
215 #define GENERAL_REGS ALL_REGS
216
217 /* Give names of register classes as strings for dump file.  */
218
219 #define REG_CLASS_NAMES \
220   { "NO_REGS", "ALL_REGS" }
221
222 /* Define which registers fit in which classes.
223    This is an initializer for a vector of HARD_REG_SET
224    of length N_REG_CLASSES.  */
225
226 #define REG_CLASS_CONTENTS {{0}, {0xffff}}
227
228 /* The same information, inverted:
229    Return the class number of the smallest class containing
230    reg number REGNO.  This could be a conditional expression
231    or could index an array.  */
232
233 #define REGNO_REG_CLASS(REGNO) ALL_REGS
234
235 /* The class value for index registers, and the one for base regs.  */
236
237 #define INDEX_REG_CLASS ALL_REGS
238 #define BASE_REG_CLASS ALL_REGS
239
240 \f
241 /* Stack layout; function entry, exit and calling.  */
242
243 /* Define this if pushing a word on the stack
244    makes the stack pointer a smaller address.  */
245 #define STACK_GROWS_DOWNWARD
246
247 /* Define this to nonzero if the nominal address of the stack frame
248    is at the high-address end of the local variables;
249    that is, each additional local variable allocated
250    goes at a more negative offset in the frame.  */
251 #define FRAME_GROWS_DOWNWARD 1
252
253 /* Offset within stack frame to start allocating local variables at.
254    If FRAME_GROWS_DOWNWARD, this is the offset to the END of the
255    first local allocated.  Otherwise, it is the offset to the BEGINNING
256    of the first local allocated.  */
257 #define STARTING_FRAME_OFFSET 0
258
259 /* Given an rtx for the address of a frame,
260    return an rtx for the address of the word in the frame
261    that holds the dynamic chain--the previous frame's address.  */
262 #define DYNAMIC_CHAIN_ADDRESS(FRAME) plus_constant ((FRAME), 12)
263
264 /* If we generate an insn to push BYTES bytes,
265    this says how many the stack pointer really advances by.
266    On the VAX, -(sp) pushes only the bytes of the operands.  */
267 #define PUSH_ROUNDING(BYTES) (BYTES)
268
269 /* Offset of first parameter from the argument pointer register value.  */
270 #define FIRST_PARM_OFFSET(FNDECL) 4
271
272 /* Define how to find the value returned by a function.
273    VALTYPE is the data type of the value (as a tree).
274    If the precise function being called is known, FUNC is its FUNCTION_DECL;
275    otherwise, FUNC is 0.  */
276
277 /* On the VAX the return value is in R0 regardless.  */
278
279 #define FUNCTION_VALUE(VALTYPE, FUNC)   \
280   gen_rtx_REG (TYPE_MODE (VALTYPE), 0)
281
282 /* Define how to find the value returned by a library function
283    assuming the value has mode MODE.  */
284
285 /* On the VAX the return value is in R0 regardless.  */
286
287 #define LIBCALL_VALUE(MODE)  gen_rtx_REG (MODE, 0)
288
289 /* Define this if PCC uses the nonreentrant convention for returning
290    structure and union values.  */
291
292 #define PCC_STATIC_STRUCT_RETURN
293
294 /* 1 if N is a possible register number for a function value.
295    On the VAX, R0 is the only register thus used.  */
296
297 #define FUNCTION_VALUE_REGNO_P(N) ((N) == 0)
298
299 /* 1 if N is a possible register number for function argument passing.
300    On the VAX, no registers are used in this way.  */
301
302 #define FUNCTION_ARG_REGNO_P(N) 0
303 \f
304 /* Define a data type for recording info about an argument list
305    during the scan of that argument list.  This data type should
306    hold all necessary information about the function itself
307    and about the args processed so far, enough to enable macros
308    such as FUNCTION_ARG to determine where the next arg should go.
309
310    On the VAX, this is a single integer, which is a number of bytes
311    of arguments scanned so far.  */
312
313 #define CUMULATIVE_ARGS int
314
315 /* Initialize a variable CUM of type CUMULATIVE_ARGS
316    for a call to a function whose data type is FNTYPE.
317    For a library call, FNTYPE is 0.
318
319    On the VAX, the offset starts at 0.  */
320
321 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT, N_NAMED_ARGS) \
322  ((CUM) = 0)
323
324 /* Output assembler code to FILE to increment profiler label # LABELNO
325    for profiling a function entry.  */
326
327 #define VAX_FUNCTION_PROFILER_NAME "mcount"
328 #define FUNCTION_PROFILER(FILE, LABELNO)                        \
329   do                                                            \
330     {                                                           \
331       char label[256];                                          \
332       ASM_GENERATE_INTERNAL_LABEL (label, "LP", (LABELNO));     \
333       fprintf (FILE, "\tmovab ");                               \
334       assemble_name (FILE, label);                              \
335       asm_fprintf (FILE, ",%Rr0\n\tjsb %s\n",                   \
336                    VAX_FUNCTION_PROFILER_NAME);                 \
337     }                                                           \
338   while (0)
339
340 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
341    the stack pointer does not matter.  The value is tested only in
342    functions that have frame pointers.
343    No definition is equivalent to always zero.  */
344
345 #define EXIT_IGNORE_STACK 1
346
347 /* Store in the variable DEPTH the initial difference between the
348    frame pointer reg contents and the stack pointer reg contents,
349    as of the start of the function body.  This depends on the layout
350    of the fixed parts of the stack frame and on how registers are saved.
351
352    On the VAX, FRAME_POINTER_REQUIRED is always 1, so the definition of this
353    macro doesn't matter.  But it must be defined.  */
354
355 #define INITIAL_FRAME_POINTER_OFFSET(DEPTH) (DEPTH) = 0;
356
357 /* Length in units of the trampoline for entering a nested function.  */
358
359 #define TRAMPOLINE_SIZE 15
360
361 /* Byte offset of return address in a stack frame.  The "saved PC" field
362    is in element [4] when treating the frame as an array of longwords.  */
363
364 #define RETURN_ADDRESS_OFFSET   (4 * UNITS_PER_WORD)    /* 16 */
365
366 /* A C expression whose value is RTL representing the value of the return
367    address for the frame COUNT steps up from the current frame.
368    FRAMEADDR is already the frame pointer of the COUNT frame, so we
369    can ignore COUNT.  */
370
371 #define RETURN_ADDR_RTX(COUNT, FRAME)                                   \
372   ((COUNT == 0)                                                         \
373    ? gen_rtx_MEM (Pmode, plus_constant (FRAME, RETURN_ADDRESS_OFFSET))  \
374    : (rtx) 0)
375
376 \f
377 /* Addressing modes, and classification of registers for them.  */
378
379 #define HAVE_POST_INCREMENT 1
380
381 #define HAVE_PRE_DECREMENT 1
382
383 /* Macros to check register numbers against specific register classes.  */
384
385 /* These assume that REGNO is a hard or pseudo reg number.
386    They give nonzero only if REGNO is a hard reg of the suitable class
387    or a pseudo reg currently allocated to a suitable hard reg.
388    Since they use reg_renumber, they are safe only once reg_renumber
389    has been allocated, which happens in local-alloc.c.  */
390
391 #define REGNO_OK_FOR_INDEX_P(regno)     \
392   ((regno) < FIRST_PSEUDO_REGISTER || reg_renumber[regno] >= 0)
393 #define REGNO_OK_FOR_BASE_P(regno)      \
394   ((regno) < FIRST_PSEUDO_REGISTER || reg_renumber[regno] >= 0)
395 \f
396 /* Maximum number of registers that can appear in a valid memory address.  */
397
398 #define MAX_REGS_PER_ADDRESS 2
399
400 /* 1 if X is an rtx for a constant that is a valid address.  */
401
402 #define CONSTANT_ADDRESS_P(X) legitimate_constant_address_p (X)
403
404 /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
405    and check its validity for a certain class.
406    We have two alternate definitions for each of them.
407    The usual definition accepts all pseudo regs; the other rejects
408    them unless they have been allocated suitable hard regs.
409    The symbol REG_OK_STRICT causes the latter definition to be used.
410
411    Most source files want to accept pseudo regs in the hope that
412    they will get allocated to the class that the insn wants them to be in.
413    Source files for reload pass need to be strict.
414    After reload, it makes no difference, since pseudo regs have
415    been eliminated by then.  */
416
417 #ifndef REG_OK_STRICT
418
419 /* Nonzero if X is a hard reg that can be used as an index
420    or if it is a pseudo reg.  */
421 #define REG_OK_FOR_INDEX_P(X) 1
422
423 /* Nonzero if X is a hard reg that can be used as a base reg
424    or if it is a pseudo reg.  */
425 #define REG_OK_FOR_BASE_P(X) 1
426
427 #else
428
429 /* Nonzero if X is a hard reg that can be used as an index.  */
430 #define REG_OK_FOR_INDEX_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
431
432 /* Nonzero if X is a hard reg that can be used as a base reg.  */
433 #define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
434
435 #endif
436
437 /* Go to LABEL if ADDR (a legitimate address expression)
438    has an effect that depends on the machine mode it is used for.  */
439 #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR, LABEL) \
440   { if (vax_mode_dependent_address_p (ADDR)) goto LABEL; }
441 \f
442 /* Specify the machine mode that this machine uses
443    for the index in the tablejump instruction.  */
444 #define CASE_VECTOR_MODE HImode
445
446 /* Define as C expression which evaluates to nonzero if the tablejump
447    instruction expects the table to contain offsets from the address of the
448    table.
449    Do not define this if the table should contain absolute addresses.  */
450 #define CASE_VECTOR_PC_RELATIVE 1
451
452 /* Indicate that jump tables go in the text section.  This is
453    necessary when compiling PIC code.  */
454 #define JUMP_TABLES_IN_TEXT_SECTION 1
455
456 /* Define this as 1 if `char' should by default be signed; else as 0.  */
457 #define DEFAULT_SIGNED_CHAR 1
458
459 /* This flag, if defined, says the same insns that convert to a signed fixnum
460    also convert validly to an unsigned one.  */
461 #define FIXUNS_TRUNC_LIKE_FIX_TRUNC
462
463 /* Max number of bytes we can move from memory to memory
464    in one reasonably fast instruction.  */
465 #define MOVE_MAX 8
466
467 /* If a memory-to-memory move would take MOVE_RATIO or more simple
468    move-instruction pairs, we will do a movmem or libcall instead.  */
469 #define MOVE_RATIO(speed) ((speed) ? 6 : 3)
470 #define CLEAR_RATIO(speed) ((speed) ? 6 : 2)
471
472 /* Nonzero if access to memory by bytes is slow and undesirable.  */
473 #define SLOW_BYTE_ACCESS 0
474
475 /* Define if shifts truncate the shift count
476    which implies one can omit a sign-extension or zero-extension
477    of a shift count.  */
478 /* #define SHIFT_COUNT_TRUNCATED */
479
480 /* Value is 1 if truncating an integer of INPREC bits to OUTPREC bits
481    is done just by pretending it is already truncated.  */
482 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
483
484 /* Specify the machine mode that pointers have.
485    After generation of rtl, the compiler makes no further distinction
486    between pointers and any other objects of this machine mode.  */
487 #define Pmode SImode
488
489 /* A function address in a call instruction
490    is a byte address (for indexing purposes)
491    so give the MEM rtx a byte's mode.  */
492 #define FUNCTION_MODE QImode
493
494 /* Specify the cost of a branch insn; roughly the number of extra insns that
495    should be added to avoid a branch.
496
497    Branches are extremely cheap on the VAX while the shift insns often
498    used to replace branches can be expensive.  */
499
500 #define BRANCH_COST(speed_p, predictable_p) 0
501 \f
502 /* Tell final.c how to eliminate redundant test instructions.  */
503
504 /* Here we define machine-dependent flags and fields in cc_status
505    (see `conditions.h').  No extra ones are needed for the VAX.  */
506
507 /* Store in cc_status the expressions
508    that the condition codes will describe
509    after execution of an instruction whose pattern is EXP.
510    Do not alter them if the instruction would not alter the cc's.  */
511
512 #define NOTICE_UPDATE_CC(EXP, INSN)     \
513   vax_notice_update_cc ((EXP), (INSN))
514
515 #define OUTPUT_JUMP(NORMAL, FLOAT, NO_OV)       \
516   { if (cc_status.flags & CC_NO_OVERFLOW)       \
517       return NO_OV;                             \
518     return NORMAL;                              \
519   }
520 \f
521 /* Control the assembler format that we output.  */
522
523 /* A C string constant describing how to begin a comment in the target
524    assembler language.  The compiler assumes that the comment will end at
525    the end of the line.  */
526
527 #define ASM_COMMENT_START "#"
528
529 /* Output to assembler file text saying following lines
530    may contain character constants, extra white space, comments, etc.  */
531
532 #define ASM_APP_ON "#APP\n"
533
534 /* Output to assembler file text saying following lines
535    no longer contain unusual constructs.  */
536
537 #define ASM_APP_OFF "#NO_APP\n"
538
539 /* Output before read-only data.  */
540
541 #define TEXT_SECTION_ASM_OP "\t.text"
542
543 /* Output before writable data.  */
544
545 #define DATA_SECTION_ASM_OP "\t.data"
546
547 /* How to refer to registers in assembler output.
548    This sequence is indexed by compiler's hard-register-number (see above).
549    The register names will be prefixed by REGISTER_PREFIX, if any.  */
550
551 #define REGISTER_PREFIX ""
552 #define REGISTER_NAMES                                  \
553   { "r0", "r1",  "r2",  "r3", "r4", "r5", "r6", "r7",   \
554     "r8", "r9", "r10", "r11", "ap", "fp", "sp", "pc", }
555
556 /* This is BSD, so it wants DBX format.  */
557
558 #define DBX_DEBUGGING_INFO 1
559
560 /* Do not break .stabs pseudos into continuations.  */
561
562 #define DBX_CONTIN_LENGTH 0
563
564 /* This is the char to use for continuation (in case we need to turn
565    continuation back on).  */
566
567 #define DBX_CONTIN_CHAR '?'
568
569 /* Don't use the `xsfoo;' construct in DBX output; this system
570    doesn't support it.  */
571
572 #define DBX_NO_XREFS
573
574 /* Output the .stabs for a C `static' variable in the data section.  */
575 #define DBX_STATIC_STAB_DATA_SECTION
576
577 /* VAX specific: which type character is used for type double?  */
578
579 #define ASM_DOUBLE_CHAR (TARGET_G_FLOAT ? 'g' : 'd')
580
581 /* This is how to output a command to make the user-level label named NAME
582    defined for reference from other files.  */
583
584 /* Globalizing directive for a label.  */
585 #define GLOBAL_ASM_OP ".globl "
586
587 /* The prefix to add to user-visible assembler symbols.  */
588
589 #define USER_LABEL_PREFIX "_"
590
591 /* This is how to store into the string LABEL
592    the symbol_ref name of an internal numbered label where
593    PREFIX is the class of label and NUM is the number within the class.
594    This is suitable for output with `assemble_name'.  */
595
596 #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM)   \
597   sprintf (LABEL, "*%s%ld", PREFIX, (long)(NUM))
598
599 /* This is how to output an insn to push a register on the stack.
600    It need not be very fast code.  */
601
602 #define ASM_OUTPUT_REG_PUSH(FILE,REGNO)  \
603   fprintf (FILE, "\tpushl %s\n", reg_names[REGNO])
604
605 /* This is how to output an insn to pop a register from the stack.
606    It need not be very fast code.  */
607
608 #define ASM_OUTPUT_REG_POP(FILE,REGNO)                                  \
609   fprintf (FILE, "\tmovl (%s)+,%s\n", reg_names[STACK_POINTER_REGNUM],  \
610            reg_names[REGNO])
611
612 /* This is how to output an element of a case-vector that is absolute.
613    (The VAX does not use such vectors,
614    but we must define this macro anyway.)  */
615
616 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE)            \
617   do                                                    \
618     {                                                   \
619       char label[256];                                  \
620       ASM_GENERATE_INTERNAL_LABEL (label, "L", (VALUE));\
621       fprintf (FILE, "\t.long ");                       \
622       assemble_name (FILE, label);                      \
623       fprintf (FILE, "\n");                             \
624     }                                                   \
625   while (0)
626
627 /* This is how to output an element of a case-vector that is relative.  */
628
629 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL)        \
630   do                                                            \
631     {                                                           \
632       char label[256];                                          \
633       ASM_GENERATE_INTERNAL_LABEL (label, "L", (VALUE));        \
634       fprintf (FILE, "\t.word ");                               \
635       assemble_name (FILE, label);                              \
636       ASM_GENERATE_INTERNAL_LABEL (label, "L", (REL));          \
637       fprintf (FILE, "-");                                      \
638       assemble_name (FILE, label);                              \
639       fprintf (FILE, "\n");                                     \
640     }                                                           \
641   while (0)
642
643 /* This is how to output an assembler line
644    that says to advance the location counter
645    to a multiple of 2**LOG bytes.  */
646
647 #define ASM_OUTPUT_ALIGN(FILE,LOG)  \
648   fprintf (FILE, "\t.align %d\n", (LOG))
649
650 /* This is how to output an assembler line
651    that says to advance the location counter by SIZE bytes.  */
652
653 #define ASM_OUTPUT_SKIP(FILE,SIZE)  \
654   fprintf (FILE, "\t.space %u\n", (int)(SIZE))
655
656 /* This says how to output an assembler line
657    to define a global common symbol.  */
658
659 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED)    \
660   ( fputs (".comm ", (FILE)),                           \
661     assemble_name ((FILE), (NAME)),                     \
662     fprintf ((FILE), ",%u\n", (int)(ROUNDED)))
663
664 /* This says how to output an assembler line
665    to define a local common symbol.  */
666
667 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED)     \
668   ( fputs (".lcomm ", (FILE)),                          \
669     assemble_name ((FILE), (NAME)),                     \
670     fprintf ((FILE), ",%u\n", (int)(ROUNDED)))
671
672 /* Print an instruction operand X on file FILE.
673    CODE is the code from the %-spec that requested printing this operand;
674    if `%z3' was used to print operand 3, then CODE is 'z'.
675
676 VAX operand formatting codes:
677
678  letter    print
679    c    direct branch condition
680    C    reverse branch condition
681    D    64-bit immediate operand
682    B    the low 8 bits of the complement of a constant operand
683    H    the low 16 bits of the complement of a constant operand
684    M    a mask for the N highest bits of a word
685    N    the complement of a constant integer operand
686    P    constant operand plus 1
687    R    32 - constant operand
688    b    the low 8 bits of a negated constant operand
689    h    the low 16 bits of a negated constant operand
690    #    'd' or 'g' depending on whether dfloat or gfloat is used
691    |    register prefix  */
692
693 /* The purpose of D is to get around a quirk or bug in VAX assembler
694    whereby -1 in a 64-bit immediate operand means 0x00000000ffffffff,
695    which is not a 64-bit minus one.  As a workaround, we output negative
696    values in hex.  */
697 #if HOST_BITS_PER_WIDE_INT == 64
698 #  define NEG_HWI_PRINT_HEX16 HOST_WIDE_INT_PRINT_HEX
699 #else
700 #  define NEG_HWI_PRINT_HEX16 "0xffffffff%08lx"
701 #endif
702
703 #define PRINT_OPERAND_PUNCT_VALID_P(CODE)  \
704   ((CODE) == '#' || (CODE) == '|')
705
706 #define PRINT_OPERAND(FILE, X, CODE)  \
707   print_operand (FILE, X, CODE)
708
709 /* Print a memory operand whose address is X, on file FILE.
710    This uses a function in output-vax.c.  */
711
712 #define PRINT_OPERAND_ADDRESS(FILE, ADDR)  \
713   print_operand_address (FILE, ADDR)
714
715 /* This is a blatent lie.  However, it's good enough, since we don't
716    actually have any code whatsoever for which this isn't overridden
717    by the proper FDE definition.  */
718 #define INCOMING_RETURN_ADDR_RTX gen_rtx_REG (Pmode, PC_REGNUM)
719