OSDN Git Service

77530aa97eb1a28a3321e1b6466855153e1c1447
[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 /* Return the maximum number of consecutive registers
223    needed to represent mode MODE in a register of class CLASS.  */
224 #define CLASS_MAX_NREGS(CLASS, MODE)    \
225   ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
226
227 /* Define which registers fit in which classes.
228    This is an initializer for a vector of HARD_REG_SET
229    of length N_REG_CLASSES.  */
230
231 #define REG_CLASS_CONTENTS {{0}, {0xffff}}
232
233 /* The same information, inverted:
234    Return the class number of the smallest class containing
235    reg number REGNO.  This could be a conditional expression
236    or could index an array.  */
237
238 #define REGNO_REG_CLASS(REGNO) ALL_REGS
239
240 /* The class value for index registers, and the one for base regs.  */
241
242 #define INDEX_REG_CLASS ALL_REGS
243 #define BASE_REG_CLASS ALL_REGS
244
245 /* Return the maximum number of consecutive registers
246    needed to represent mode MODE in a register of class CLASS.  */
247 /* On the VAX, this is always the size of MODE in words,
248    since all registers are the same size.  */
249 #define CLASS_MAX_NREGS(CLASS, MODE)    \
250  ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
251 \f
252 /* Stack layout; function entry, exit and calling.  */
253
254 /* Define this if pushing a word on the stack
255    makes the stack pointer a smaller address.  */
256 #define STACK_GROWS_DOWNWARD
257
258 /* Define this to nonzero if the nominal address of the stack frame
259    is at the high-address end of the local variables;
260    that is, each additional local variable allocated
261    goes at a more negative offset in the frame.  */
262 #define FRAME_GROWS_DOWNWARD 1
263
264 /* Offset within stack frame to start allocating local variables at.
265    If FRAME_GROWS_DOWNWARD, this is the offset to the END of the
266    first local allocated.  Otherwise, it is the offset to the BEGINNING
267    of the first local allocated.  */
268 #define STARTING_FRAME_OFFSET 0
269
270 /* Given an rtx for the address of a frame,
271    return an rtx for the address of the word in the frame
272    that holds the dynamic chain--the previous frame's address.  */
273 #define DYNAMIC_CHAIN_ADDRESS(FRAME) plus_constant ((FRAME), 12)
274
275 /* If we generate an insn to push BYTES bytes,
276    this says how many the stack pointer really advances by.
277    On the VAX, -(sp) pushes only the bytes of the operands.  */
278 #define PUSH_ROUNDING(BYTES) (BYTES)
279
280 /* Offset of first parameter from the argument pointer register value.  */
281 #define FIRST_PARM_OFFSET(FNDECL) 4
282
283 /* Define how to find the value returned by a function.
284    VALTYPE is the data type of the value (as a tree).
285    If the precise function being called is known, FUNC is its FUNCTION_DECL;
286    otherwise, FUNC is 0.  */
287
288 /* On the VAX the return value is in R0 regardless.  */
289
290 #define FUNCTION_VALUE(VALTYPE, FUNC)   \
291   gen_rtx_REG (TYPE_MODE (VALTYPE), 0)
292
293 /* Define how to find the value returned by a library function
294    assuming the value has mode MODE.  */
295
296 /* On the VAX the return value is in R0 regardless.  */
297
298 #define LIBCALL_VALUE(MODE)  gen_rtx_REG (MODE, 0)
299
300 /* Define this if PCC uses the nonreentrant convention for returning
301    structure and union values.  */
302
303 #define PCC_STATIC_STRUCT_RETURN
304
305 /* 1 if N is a possible register number for a function value.
306    On the VAX, R0 is the only register thus used.  */
307
308 #define FUNCTION_VALUE_REGNO_P(N) ((N) == 0)
309
310 /* 1 if N is a possible register number for function argument passing.
311    On the VAX, no registers are used in this way.  */
312
313 #define FUNCTION_ARG_REGNO_P(N) 0
314 \f
315 /* Define a data type for recording info about an argument list
316    during the scan of that argument list.  This data type should
317    hold all necessary information about the function itself
318    and about the args processed so far, enough to enable macros
319    such as FUNCTION_ARG to determine where the next arg should go.
320
321    On the VAX, this is a single integer, which is a number of bytes
322    of arguments scanned so far.  */
323
324 #define CUMULATIVE_ARGS int
325
326 /* Initialize a variable CUM of type CUMULATIVE_ARGS
327    for a call to a function whose data type is FNTYPE.
328    For a library call, FNTYPE is 0.
329
330    On the VAX, the offset starts at 0.  */
331
332 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT, N_NAMED_ARGS) \
333  ((CUM) = 0)
334
335 /* Output assembler code to FILE to increment profiler label # LABELNO
336    for profiling a function entry.  */
337
338 #define VAX_FUNCTION_PROFILER_NAME "mcount"
339 #define FUNCTION_PROFILER(FILE, LABELNO)                        \
340   do                                                            \
341     {                                                           \
342       char label[256];                                          \
343       ASM_GENERATE_INTERNAL_LABEL (label, "LP", (LABELNO));     \
344       fprintf (FILE, "\tmovab ");                               \
345       assemble_name (FILE, label);                              \
346       asm_fprintf (FILE, ",%Rr0\n\tjsb %s\n",                   \
347                    VAX_FUNCTION_PROFILER_NAME);                 \
348     }                                                           \
349   while (0)
350
351 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
352    the stack pointer does not matter.  The value is tested only in
353    functions that have frame pointers.
354    No definition is equivalent to always zero.  */
355
356 #define EXIT_IGNORE_STACK 1
357
358 /* Store in the variable DEPTH the initial difference between the
359    frame pointer reg contents and the stack pointer reg contents,
360    as of the start of the function body.  This depends on the layout
361    of the fixed parts of the stack frame and on how registers are saved.
362
363    On the VAX, FRAME_POINTER_REQUIRED is always 1, so the definition of this
364    macro doesn't matter.  But it must be defined.  */
365
366 #define INITIAL_FRAME_POINTER_OFFSET(DEPTH) (DEPTH) = 0;
367
368 /* Length in units of the trampoline for entering a nested function.  */
369
370 #define TRAMPOLINE_SIZE 15
371
372 /* Byte offset of return address in a stack frame.  The "saved PC" field
373    is in element [4] when treating the frame as an array of longwords.  */
374
375 #define RETURN_ADDRESS_OFFSET   (4 * UNITS_PER_WORD)    /* 16 */
376
377 /* A C expression whose value is RTL representing the value of the return
378    address for the frame COUNT steps up from the current frame.
379    FRAMEADDR is already the frame pointer of the COUNT frame, so we
380    can ignore COUNT.  */
381
382 #define RETURN_ADDR_RTX(COUNT, FRAME)                                   \
383   ((COUNT == 0)                                                         \
384    ? gen_rtx_MEM (Pmode, plus_constant (FRAME, RETURN_ADDRESS_OFFSET))  \
385    : (rtx) 0)
386
387 \f
388 /* Addressing modes, and classification of registers for them.  */
389
390 #define HAVE_POST_INCREMENT 1
391
392 #define HAVE_PRE_DECREMENT 1
393
394 /* Macros to check register numbers against specific register classes.  */
395
396 /* These assume that REGNO is a hard or pseudo reg number.
397    They give nonzero only if REGNO is a hard reg of the suitable class
398    or a pseudo reg currently allocated to a suitable hard reg.
399    Since they use reg_renumber, they are safe only once reg_renumber
400    has been allocated, which happens in local-alloc.c.  */
401
402 #define REGNO_OK_FOR_INDEX_P(regno)     \
403   ((regno) < FIRST_PSEUDO_REGISTER || reg_renumber[regno] >= 0)
404 #define REGNO_OK_FOR_BASE_P(regno)      \
405   ((regno) < FIRST_PSEUDO_REGISTER || reg_renumber[regno] >= 0)
406 \f
407 /* Maximum number of registers that can appear in a valid memory address.  */
408
409 #define MAX_REGS_PER_ADDRESS 2
410
411 /* 1 if X is an rtx for a constant that is a valid address.  */
412
413 #define CONSTANT_ADDRESS_P(X) legitimate_constant_address_p (X)
414
415 /* Nonzero if the constant value X is a legitimate general operand.
416    It is given that X satisfies CONSTANT_P or is a CONST_DOUBLE.  */
417
418 #define LEGITIMATE_CONSTANT_P(X) legitimate_constant_p (X)
419
420 /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
421    and check its validity for a certain class.
422    We have two alternate definitions for each of them.
423    The usual definition accepts all pseudo regs; the other rejects
424    them unless they have been allocated suitable hard regs.
425    The symbol REG_OK_STRICT causes the latter definition to be used.
426
427    Most source files want to accept pseudo regs in the hope that
428    they will get allocated to the class that the insn wants them to be in.
429    Source files for reload pass need to be strict.
430    After reload, it makes no difference, since pseudo regs have
431    been eliminated by then.  */
432
433 #ifndef REG_OK_STRICT
434
435 /* Nonzero if X is a hard reg that can be used as an index
436    or if it is a pseudo reg.  */
437 #define REG_OK_FOR_INDEX_P(X) 1
438
439 /* Nonzero if X is a hard reg that can be used as a base reg
440    or if it is a pseudo reg.  */
441 #define REG_OK_FOR_BASE_P(X) 1
442
443 #else
444
445 /* Nonzero if X is a hard reg that can be used as an index.  */
446 #define REG_OK_FOR_INDEX_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
447
448 /* Nonzero if X is a hard reg that can be used as a base reg.  */
449 #define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
450
451 #endif
452
453 /* Go to LABEL if ADDR (a legitimate address expression)
454    has an effect that depends on the machine mode it is used for.  */
455 #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR, LABEL) \
456   { if (vax_mode_dependent_address_p (ADDR)) goto LABEL; }
457 \f
458 /* Specify the machine mode that this machine uses
459    for the index in the tablejump instruction.  */
460 #define CASE_VECTOR_MODE HImode
461
462 /* Define as C expression which evaluates to nonzero if the tablejump
463    instruction expects the table to contain offsets from the address of the
464    table.
465    Do not define this if the table should contain absolute addresses.  */
466 #define CASE_VECTOR_PC_RELATIVE 1
467
468 /* Indicate that jump tables go in the text section.  This is
469    necessary when compiling PIC code.  */
470 #define JUMP_TABLES_IN_TEXT_SECTION 1
471
472 /* Define this as 1 if `char' should by default be signed; else as 0.  */
473 #define DEFAULT_SIGNED_CHAR 1
474
475 /* This flag, if defined, says the same insns that convert to a signed fixnum
476    also convert validly to an unsigned one.  */
477 #define FIXUNS_TRUNC_LIKE_FIX_TRUNC
478
479 /* Max number of bytes we can move from memory to memory
480    in one reasonably fast instruction.  */
481 #define MOVE_MAX 8
482
483 /* If a memory-to-memory move would take MOVE_RATIO or more simple
484    move-instruction pairs, we will do a movmem or libcall instead.  */
485 #define MOVE_RATIO(speed) ((speed) ? 6 : 3)
486 #define CLEAR_RATIO(speed) ((speed) ? 6 : 2)
487
488 /* Nonzero if access to memory by bytes is slow and undesirable.  */
489 #define SLOW_BYTE_ACCESS 0
490
491 /* Define if shifts truncate the shift count
492    which implies one can omit a sign-extension or zero-extension
493    of a shift count.  */
494 /* #define SHIFT_COUNT_TRUNCATED */
495
496 /* Value is 1 if truncating an integer of INPREC bits to OUTPREC bits
497    is done just by pretending it is already truncated.  */
498 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
499
500 /* Specify the machine mode that pointers have.
501    After generation of rtl, the compiler makes no further distinction
502    between pointers and any other objects of this machine mode.  */
503 #define Pmode SImode
504
505 /* A function address in a call instruction
506    is a byte address (for indexing purposes)
507    so give the MEM rtx a byte's mode.  */
508 #define FUNCTION_MODE QImode
509
510 /* Specify the cost of a branch insn; roughly the number of extra insns that
511    should be added to avoid a branch.
512
513    Branches are extremely cheap on the VAX while the shift insns often
514    used to replace branches can be expensive.  */
515
516 #define BRANCH_COST(speed_p, predictable_p) 0
517 \f
518 /* Tell final.c how to eliminate redundant test instructions.  */
519
520 /* Here we define machine-dependent flags and fields in cc_status
521    (see `conditions.h').  No extra ones are needed for the VAX.  */
522
523 /* Store in cc_status the expressions
524    that the condition codes will describe
525    after execution of an instruction whose pattern is EXP.
526    Do not alter them if the instruction would not alter the cc's.  */
527
528 #define NOTICE_UPDATE_CC(EXP, INSN)     \
529   vax_notice_update_cc ((EXP), (INSN))
530
531 #define OUTPUT_JUMP(NORMAL, FLOAT, NO_OV)       \
532   { if (cc_status.flags & CC_NO_OVERFLOW)       \
533       return NO_OV;                             \
534     return NORMAL;                              \
535   }
536 \f
537 /* Control the assembler format that we output.  */
538
539 /* A C string constant describing how to begin a comment in the target
540    assembler language.  The compiler assumes that the comment will end at
541    the end of the line.  */
542
543 #define ASM_COMMENT_START "#"
544
545 /* Output to assembler file text saying following lines
546    may contain character constants, extra white space, comments, etc.  */
547
548 #define ASM_APP_ON "#APP\n"
549
550 /* Output to assembler file text saying following lines
551    no longer contain unusual constructs.  */
552
553 #define ASM_APP_OFF "#NO_APP\n"
554
555 /* Output before read-only data.  */
556
557 #define TEXT_SECTION_ASM_OP "\t.text"
558
559 /* Output before writable data.  */
560
561 #define DATA_SECTION_ASM_OP "\t.data"
562
563 /* How to refer to registers in assembler output.
564    This sequence is indexed by compiler's hard-register-number (see above).
565    The register names will be prefixed by REGISTER_PREFIX, if any.  */
566
567 #define REGISTER_PREFIX ""
568 #define REGISTER_NAMES                                  \
569   { "r0", "r1",  "r2",  "r3", "r4", "r5", "r6", "r7",   \
570     "r8", "r9", "r10", "r11", "ap", "fp", "sp", "pc", }
571
572 /* This is BSD, so it wants DBX format.  */
573
574 #define DBX_DEBUGGING_INFO 1
575
576 /* Do not break .stabs pseudos into continuations.  */
577
578 #define DBX_CONTIN_LENGTH 0
579
580 /* This is the char to use for continuation (in case we need to turn
581    continuation back on).  */
582
583 #define DBX_CONTIN_CHAR '?'
584
585 /* Don't use the `xsfoo;' construct in DBX output; this system
586    doesn't support it.  */
587
588 #define DBX_NO_XREFS
589
590 /* Output the .stabs for a C `static' variable in the data section.  */
591 #define DBX_STATIC_STAB_DATA_SECTION
592
593 /* VAX specific: which type character is used for type double?  */
594
595 #define ASM_DOUBLE_CHAR (TARGET_G_FLOAT ? 'g' : 'd')
596
597 /* This is how to output a command to make the user-level label named NAME
598    defined for reference from other files.  */
599
600 /* Globalizing directive for a label.  */
601 #define GLOBAL_ASM_OP ".globl "
602
603 /* The prefix to add to user-visible assembler symbols.  */
604
605 #define USER_LABEL_PREFIX "_"
606
607 /* This is how to store into the string LABEL
608    the symbol_ref name of an internal numbered label where
609    PREFIX is the class of label and NUM is the number within the class.
610    This is suitable for output with `assemble_name'.  */
611
612 #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM)   \
613   sprintf (LABEL, "*%s%ld", PREFIX, (long)(NUM))
614
615 /* This is how to output an insn to push a register on the stack.
616    It need not be very fast code.  */
617
618 #define ASM_OUTPUT_REG_PUSH(FILE,REGNO)  \
619   fprintf (FILE, "\tpushl %s\n", reg_names[REGNO])
620
621 /* This is how to output an insn to pop a register from the stack.
622    It need not be very fast code.  */
623
624 #define ASM_OUTPUT_REG_POP(FILE,REGNO)                                  \
625   fprintf (FILE, "\tmovl (%s)+,%s\n", reg_names[STACK_POINTER_REGNUM],  \
626            reg_names[REGNO])
627
628 /* This is how to output an element of a case-vector that is absolute.
629    (The VAX does not use such vectors,
630    but we must define this macro anyway.)  */
631
632 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE)            \
633   do                                                    \
634     {                                                   \
635       char label[256];                                  \
636       ASM_GENERATE_INTERNAL_LABEL (label, "L", (VALUE));\
637       fprintf (FILE, "\t.long ");                       \
638       assemble_name (FILE, label);                      \
639       fprintf (FILE, "\n");                             \
640     }                                                   \
641   while (0)
642
643 /* This is how to output an element of a case-vector that is relative.  */
644
645 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL)        \
646   do                                                            \
647     {                                                           \
648       char label[256];                                          \
649       ASM_GENERATE_INTERNAL_LABEL (label, "L", (VALUE));        \
650       fprintf (FILE, "\t.word ");                               \
651       assemble_name (FILE, label);                              \
652       ASM_GENERATE_INTERNAL_LABEL (label, "L", (REL));          \
653       fprintf (FILE, "-");                                      \
654       assemble_name (FILE, label);                              \
655       fprintf (FILE, "\n");                                     \
656     }                                                           \
657   while (0)
658
659 /* This is how to output an assembler line
660    that says to advance the location counter
661    to a multiple of 2**LOG bytes.  */
662
663 #define ASM_OUTPUT_ALIGN(FILE,LOG)  \
664   fprintf (FILE, "\t.align %d\n", (LOG))
665
666 /* This is how to output an assembler line
667    that says to advance the location counter by SIZE bytes.  */
668
669 #define ASM_OUTPUT_SKIP(FILE,SIZE)  \
670   fprintf (FILE, "\t.space %u\n", (int)(SIZE))
671
672 /* This says how to output an assembler line
673    to define a global common symbol.  */
674
675 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED)    \
676   ( fputs (".comm ", (FILE)),                           \
677     assemble_name ((FILE), (NAME)),                     \
678     fprintf ((FILE), ",%u\n", (int)(ROUNDED)))
679
680 /* This says how to output an assembler line
681    to define a local common symbol.  */
682
683 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED)     \
684   ( fputs (".lcomm ", (FILE)),                          \
685     assemble_name ((FILE), (NAME)),                     \
686     fprintf ((FILE), ",%u\n", (int)(ROUNDED)))
687
688 /* Print an instruction operand X on file FILE.
689    CODE is the code from the %-spec that requested printing this operand;
690    if `%z3' was used to print operand 3, then CODE is 'z'.
691
692 VAX operand formatting codes:
693
694  letter    print
695    c    direct branch condition
696    C    reverse branch condition
697    D    64-bit immediate operand
698    B    the low 8 bits of the complement of a constant operand
699    H    the low 16 bits of the complement of a constant operand
700    M    a mask for the N highest bits of a word
701    N    the complement of a constant integer operand
702    P    constant operand plus 1
703    R    32 - constant operand
704    b    the low 8 bits of a negated constant operand
705    h    the low 16 bits of a negated constant operand
706    #    'd' or 'g' depending on whether dfloat or gfloat is used
707    |    register prefix  */
708
709 /* The purpose of D is to get around a quirk or bug in VAX assembler
710    whereby -1 in a 64-bit immediate operand means 0x00000000ffffffff,
711    which is not a 64-bit minus one.  As a workaround, we output negative
712    values in hex.  */
713 #if HOST_BITS_PER_WIDE_INT == 64
714 #  define NEG_HWI_PRINT_HEX16 HOST_WIDE_INT_PRINT_HEX
715 #else
716 #  define NEG_HWI_PRINT_HEX16 "0xffffffff%08lx"
717 #endif
718
719 #define PRINT_OPERAND_PUNCT_VALID_P(CODE)  \
720   ((CODE) == '#' || (CODE) == '|')
721
722 #define PRINT_OPERAND(FILE, X, CODE)  \
723   print_operand (FILE, X, CODE)
724
725 /* Print a memory operand whose address is X, on file FILE.
726    This uses a function in output-vax.c.  */
727
728 #define PRINT_OPERAND_ADDRESS(FILE, ADDR)  \
729   print_operand_address (FILE, ADDR)
730
731 /* This is a blatent lie.  However, it's good enough, since we don't
732    actually have any code whatsoever for which this isn't overridden
733    by the proper FDE definition.  */
734 #define INCOMING_RETURN_ADDR_RTX gen_rtx_REG (Pmode, PC_REGNUM)
735