2009-06-03 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / config / vax / vax.h
blobe22fbd74386ec6163dbcbf1ed3c5057eb1f4a7c5
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
4 Free Software Foundation, Inc.
6 This file is part of GCC.
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.
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.
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/>. */
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)
38 #define VMS_TARGET 0
40 /* Use -J option for long branch support with Unix assembler. */
42 #define ASM_SPEC "-J"
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. */
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}}"
54 /* Print subsidiary information on the compiler version in use. */
56 #ifndef TARGET_NAME /* A more specific value might be supplied via -D. */
57 #define TARGET_NAME "vax"
58 #endif
59 #define TARGET_VERSION fprintf (stderr, " (%s)", TARGET_NAME)
61 /* Run-time compilation parameters selecting different hardware subsets. */
63 /* Nonzero if ELF. Redefined by vax/elf.h. */
64 #define TARGET_ELF 0
66 /* Default target_flags if no switches specified. */
68 #ifndef TARGET_DEFAULT
69 #define TARGET_DEFAULT (MASK_UNIX_ASM)
70 #endif
72 #define OVERRIDE_OPTIONS override_options ()
75 /* Target machine storage layout */
77 /* Define this if most significant bit is lowest numbered
78 in instructions that operate on numbered bit-fields.
79 This is not true on the VAX. */
80 #define BITS_BIG_ENDIAN 0
82 /* Define this if most significant byte of a word is the lowest numbered. */
83 /* That is not true on the VAX. */
84 #define BYTES_BIG_ENDIAN 0
86 /* Define this if most significant word of a multiword number is the lowest
87 numbered. */
88 /* This is not true on the VAX. */
89 #define WORDS_BIG_ENDIAN 0
91 /* Width of a word, in units (bytes). */
92 #define UNITS_PER_WORD 4
94 /* Allocation boundary (in *bits*) for storing arguments in argument list. */
95 #define PARM_BOUNDARY 32
97 /* Allocation boundary (in *bits*) for the code of a function. */
98 #define FUNCTION_BOUNDARY 16
100 /* Alignment of field after `int : 0' in a structure. */
101 #define EMPTY_FIELD_BOUNDARY (TARGET_VAXC_ALIGNMENT ? 8 : 32)
103 /* Every structure's size must be a multiple of this. */
104 #define STRUCTURE_SIZE_BOUNDARY 8
106 /* A bit-field declared as `int' forces `int' alignment for the struct. */
107 #define PCC_BITFIELD_TYPE_MATTERS (! TARGET_VAXC_ALIGNMENT)
109 /* No data type wants to be aligned rounder than this. */
110 #define BIGGEST_ALIGNMENT 32
112 /* No structure field wants to be aligned rounder than this. */
113 #define BIGGEST_FIELD_ALIGNMENT (TARGET_VAXC_ALIGNMENT ? 8 : 32)
115 /* Set this nonzero if move instructions will actually fail to work
116 when given unaligned data. */
117 #define STRICT_ALIGNMENT 0
119 /* Let's keep the stack somewhat aligned. */
120 #define STACK_BOUNDARY 32
122 /* The table of an ADDR_DIFF_VEC must be contiguous with the case
123 opcode, it is part of the case instruction. */
124 #define ADDR_VEC_ALIGN(ADDR_VEC) 0
126 /* Standard register usage. */
128 /* Number of actual hardware registers.
129 The hardware registers are assigned numbers for the compiler
130 from 0 to just below FIRST_PSEUDO_REGISTER.
131 All registers that the compiler knows about must be given numbers,
132 even those that are not normally considered general registers. */
133 #define FIRST_PSEUDO_REGISTER 16
135 /* 1 for registers that have pervasive standard uses
136 and are not available for the register allocator.
137 On the VAX, these are the AP, FP, SP and PC. */
138 #define FIXED_REGISTERS {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1}
140 /* 1 for registers not available across function calls.
141 These must include the FIXED_REGISTERS and also any
142 registers that can be used without being saved.
143 The latter must include the registers where values are returned
144 and the register where structure-value addresses are passed.
145 Aside from that, you can include as many other registers as you like. */
146 #define CALL_USED_REGISTERS {1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1}
148 /* Return number of consecutive hard regs needed starting at reg REGNO
149 to hold something of mode MODE.
150 This is ordinarily the length in words of a value of mode MODE
151 but can be less for certain modes in special long registers.
152 On the VAX, all registers are one word long. */
153 #define HARD_REGNO_NREGS(REGNO, MODE) \
154 ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
156 /* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
157 On the VAX, all registers can hold all modes. */
158 #define HARD_REGNO_MODE_OK(REGNO, MODE) 1
160 /* Value is 1 if it is a good idea to tie two pseudo registers
161 when one has mode MODE1 and one has mode MODE2.
162 If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
163 for any hard reg, then this must be 0 for correct output. */
164 #define MODES_TIEABLE_P(MODE1, MODE2) 1
166 /* Specify the registers used for certain standard purposes.
167 The values of these macros are register numbers. */
169 /* VAX pc is overloaded on a register. */
170 #define PC_REGNUM VAX_PC_REGNUM
172 /* Register to use for pushing function arguments. */
173 #define STACK_POINTER_REGNUM VAX_SP_REGNUM
175 /* Base register for access to local variables of the function. */
176 #define FRAME_POINTER_REGNUM VAX_FP_REGNUM
178 /* Value should be nonzero if functions must have frame pointers.
179 Zero means the frame pointer need not be set up (and parms
180 may be accessed via the stack pointer) in functions that seem suitable.
181 This is computed in `reload', in reload1.c. */
182 #define FRAME_POINTER_REQUIRED 1
184 /* Offset from the frame pointer register value to the top of stack. */
185 #define FRAME_POINTER_CFA_OFFSET(FNDECL) 0
187 /* Base register for access to arguments of the function. */
188 #define ARG_POINTER_REGNUM VAX_AP_REGNUM
190 /* Register in which static-chain is passed to a function. */
191 #define STATIC_CHAIN_REGNUM 0
193 /* Register in which address to store a structure value
194 is passed to a function. */
195 #define VAX_STRUCT_VALUE_REGNUM 1
197 /* Define the classes of registers for register constraints in the
198 machine description. Also define ranges of constants.
200 One of the classes must always be named ALL_REGS and include all hard regs.
201 If there is more than one class, another class must be named NO_REGS
202 and contain no registers.
204 The name GENERAL_REGS must be the name of a class (or an alias for
205 another name such as ALL_REGS). This is the class of registers
206 that is allowed by "g" or "r" in a register constraint.
207 Also, registers outside this class are allocated only when
208 instructions express preferences for them.
210 The classes must be numbered in nondecreasing order; that is,
211 a larger-numbered class must never be contained completely
212 in a smaller-numbered class.
214 For any two classes, it is very desirable that there be another
215 class that represents their union. */
217 /* The VAX has only one kind of registers, so NO_REGS and ALL_REGS
218 are the only classes. */
220 enum reg_class { NO_REGS, ALL_REGS, LIM_REG_CLASSES };
222 #define N_REG_CLASSES (int) LIM_REG_CLASSES
224 /* Since GENERAL_REGS is the same class as ALL_REGS,
225 don't give it a different class number; just make it an alias. */
227 #define GENERAL_REGS ALL_REGS
229 /* Give names of register classes as strings for dump file. */
231 #define REG_CLASS_NAMES \
232 { "NO_REGS", "ALL_REGS" }
234 /* The following macro defines cover classes for Integrated Register
235 Allocator. Cover classes is a set of non-intersected register
236 classes covering all hard registers used for register allocation
237 purpose. Any move between two registers of a cover class should be
238 cheaper than load or store of the registers. The macro value is
239 array of register classes with LIM_REG_CLASSES used as the end
240 marker. */
241 #define IRA_COVER_CLASSES { ALL_REGS, LIM_REG_CLASSES }
243 /* Return the maximum number of consecutive registers
244 needed to represent mode MODE in a register of class CLASS. */
245 #define CLASS_MAX_NREGS(CLASS, MODE) \
246 ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
248 /* Define which registers fit in which classes.
249 This is an initializer for a vector of HARD_REG_SET
250 of length N_REG_CLASSES. */
252 #define REG_CLASS_CONTENTS {{0}, {0xffff}}
254 /* The same information, inverted:
255 Return the class number of the smallest class containing
256 reg number REGNO. This could be a conditional expression
257 or could index an array. */
259 #define REGNO_REG_CLASS(REGNO) ALL_REGS
261 /* The class value for index registers, and the one for base regs. */
263 #define INDEX_REG_CLASS ALL_REGS
264 #define BASE_REG_CLASS ALL_REGS
266 /* Given an rtx X being reloaded into a reg required to be
267 in class CLASS, return the class of reg to actually use.
268 In general this is just CLASS; but on some machines
269 in some cases it is preferable to use a more restrictive class. */
271 #define PREFERRED_RELOAD_CLASS(X,CLASS) (CLASS)
273 /* Return the maximum number of consecutive registers
274 needed to represent mode MODE in a register of class CLASS. */
275 /* On the VAX, this is always the size of MODE in words,
276 since all registers are the same size. */
277 #define CLASS_MAX_NREGS(CLASS, MODE) \
278 ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
280 /* Stack layout; function entry, exit and calling. */
282 /* Define this if pushing a word on the stack
283 makes the stack pointer a smaller address. */
284 #define STACK_GROWS_DOWNWARD
286 /* Define this to nonzero if the nominal address of the stack frame
287 is at the high-address end of the local variables;
288 that is, each additional local variable allocated
289 goes at a more negative offset in the frame. */
290 #define FRAME_GROWS_DOWNWARD 1
292 /* Offset within stack frame to start allocating local variables at.
293 If FRAME_GROWS_DOWNWARD, this is the offset to the END of the
294 first local allocated. Otherwise, it is the offset to the BEGINNING
295 of the first local allocated. */
296 #define STARTING_FRAME_OFFSET 0
298 /* Given an rtx for the address of a frame,
299 return an rtx for the address of the word in the frame
300 that holds the dynamic chain--the previous frame's address. */
301 #define DYNAMIC_CHAIN_ADDRESS(FRAME) plus_constant ((FRAME), 12)
303 /* If we generate an insn to push BYTES bytes,
304 this says how many the stack pointer really advances by.
305 On the VAX, -(sp) pushes only the bytes of the operands. */
306 #define PUSH_ROUNDING(BYTES) (BYTES)
308 /* Offset of first parameter from the argument pointer register value. */
309 #define FIRST_PARM_OFFSET(FNDECL) 4
311 /* Value is the number of bytes of arguments automatically
312 popped when returning from a subroutine call.
313 FUNDECL is the declaration node of the function (as a tree),
314 FUNTYPE is the data type of the function (as a tree),
315 or for a library call it is an identifier node for the subroutine name.
316 SIZE is the number of bytes of arguments passed on the stack.
318 On the VAX, the RET insn pops a maximum of 255 args for any function. */
320 #define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE) \
321 ((SIZE) > 255 * 4 ? 0 : (SIZE))
323 /* Define how to find the value returned by a function.
324 VALTYPE is the data type of the value (as a tree).
325 If the precise function being called is known, FUNC is its FUNCTION_DECL;
326 otherwise, FUNC is 0. */
328 /* On the VAX the return value is in R0 regardless. */
330 #define FUNCTION_VALUE(VALTYPE, FUNC) \
331 gen_rtx_REG (TYPE_MODE (VALTYPE), 0)
333 /* Define how to find the value returned by a library function
334 assuming the value has mode MODE. */
336 /* On the VAX the return value is in R0 regardless. */
338 #define LIBCALL_VALUE(MODE) gen_rtx_REG (MODE, 0)
340 /* Define this if PCC uses the nonreentrant convention for returning
341 structure and union values. */
343 #define PCC_STATIC_STRUCT_RETURN
345 /* 1 if N is a possible register number for a function value.
346 On the VAX, R0 is the only register thus used. */
348 #define FUNCTION_VALUE_REGNO_P(N) ((N) == 0)
350 /* 1 if N is a possible register number for function argument passing.
351 On the VAX, no registers are used in this way. */
353 #define FUNCTION_ARG_REGNO_P(N) 0
355 /* Define a data type for recording info about an argument list
356 during the scan of that argument list. This data type should
357 hold all necessary information about the function itself
358 and about the args processed so far, enough to enable macros
359 such as FUNCTION_ARG to determine where the next arg should go.
361 On the VAX, this is a single integer, which is a number of bytes
362 of arguments scanned so far. */
364 #define CUMULATIVE_ARGS int
366 /* Initialize a variable CUM of type CUMULATIVE_ARGS
367 for a call to a function whose data type is FNTYPE.
368 For a library call, FNTYPE is 0.
370 On the VAX, the offset starts at 0. */
372 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT, N_NAMED_ARGS) \
373 ((CUM) = 0)
375 /* Update the data in CUM to advance over an argument
376 of mode MODE and data type TYPE.
377 (TYPE is null for libcalls where that information may not be available.) */
379 #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED) \
380 ((CUM) += ((MODE) != BLKmode \
381 ? (GET_MODE_SIZE (MODE) + 3) & ~3 \
382 : (int_size_in_bytes (TYPE) + 3) & ~3))
384 /* Define where to put the arguments to a function.
385 Value is zero to push the argument on the stack,
386 or a hard register in which to store the argument.
388 MODE is the argument's machine mode.
389 TYPE is the data type of the argument (as a tree).
390 This is null for libcalls where that information may
391 not be available.
392 CUM is a variable of type CUMULATIVE_ARGS which gives info about
393 the preceding args and about the function being called.
394 NAMED is nonzero if this argument is a named parameter
395 (otherwise it is an extra parameter matching an ellipsis). */
397 /* On the VAX all args are pushed. */
399 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) 0
401 /* Output assembler code to FILE to increment profiler label # LABELNO
402 for profiling a function entry. */
404 #define VAX_FUNCTION_PROFILER_NAME "mcount"
405 #define FUNCTION_PROFILER(FILE, LABELNO) \
406 do \
408 char label[256]; \
409 ASM_GENERATE_INTERNAL_LABEL (label, "LP", (LABELNO)); \
410 fprintf (FILE, "\tmovab "); \
411 assemble_name (FILE, label); \
412 asm_fprintf (FILE, ",%Rr0\n\tjsb %s\n", \
413 VAX_FUNCTION_PROFILER_NAME); \
415 while (0)
417 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
418 the stack pointer does not matter. The value is tested only in
419 functions that have frame pointers.
420 No definition is equivalent to always zero. */
422 #define EXIT_IGNORE_STACK 1
424 /* Store in the variable DEPTH the initial difference between the
425 frame pointer reg contents and the stack pointer reg contents,
426 as of the start of the function body. This depends on the layout
427 of the fixed parts of the stack frame and on how registers are saved.
429 On the VAX, FRAME_POINTER_REQUIRED is always 1, so the definition of this
430 macro doesn't matter. But it must be defined. */
432 #define INITIAL_FRAME_POINTER_OFFSET(DEPTH) (DEPTH) = 0;
434 /* Output assembler code for a block containing the constant parts
435 of a trampoline, leaving space for the variable parts. */
437 /* On the VAX, the trampoline contains an entry mask and two instructions:
438 .word NN
439 movl $STATIC,r0 (store the functions static chain)
440 jmp *$FUNCTION (jump to function code at address FUNCTION) */
442 #define TRAMPOLINE_TEMPLATE(FILE) \
444 assemble_aligned_integer (2, const0_rtx); \
445 assemble_aligned_integer (2, GEN_INT (0x8fd0)); \
446 assemble_aligned_integer (4, const0_rtx); \
447 assemble_aligned_integer (1, GEN_INT (0x50 + STATIC_CHAIN_REGNUM)); \
448 assemble_aligned_integer (2, GEN_INT (0x9f17)); \
449 assemble_aligned_integer (4, const0_rtx); \
452 /* Length in units of the trampoline for entering a nested function. */
454 #define TRAMPOLINE_SIZE 15
456 /* Emit RTL insns to initialize the variable parts of a trampoline.
457 FNADDR is an RTX for the address of the function's pure code.
458 CXT is an RTX for the static chain value for the function. */
460 /* We copy the register-mask from the function's pure code
461 to the start of the trampoline. */
462 #define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT) \
464 emit_move_insn (gen_rtx_MEM (HImode, TRAMP), \
465 gen_rtx_MEM (HImode, FNADDR)); \
466 emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 4)), CXT); \
467 emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 11)), \
468 plus_constant (FNADDR, 2)); \
469 emit_insn (gen_sync_istream ()); \
472 /* Byte offset of return address in a stack frame. The "saved PC" field
473 is in element [4] when treating the frame as an array of longwords. */
475 #define RETURN_ADDRESS_OFFSET (4 * UNITS_PER_WORD) /* 16 */
477 /* A C expression whose value is RTL representing the value of the return
478 address for the frame COUNT steps up from the current frame.
479 FRAMEADDR is already the frame pointer of the COUNT frame, so we
480 can ignore COUNT. */
482 #define RETURN_ADDR_RTX(COUNT, FRAME) \
483 ((COUNT == 0) \
484 ? gen_rtx_MEM (Pmode, plus_constant (FRAME, RETURN_ADDRESS_OFFSET)) \
485 : (rtx) 0)
488 /* Addressing modes, and classification of registers for them. */
490 #define HAVE_POST_INCREMENT 1
492 #define HAVE_PRE_DECREMENT 1
494 /* Macros to check register numbers against specific register classes. */
496 /* These assume that REGNO is a hard or pseudo reg number.
497 They give nonzero only if REGNO is a hard reg of the suitable class
498 or a pseudo reg currently allocated to a suitable hard reg.
499 Since they use reg_renumber, they are safe only once reg_renumber
500 has been allocated, which happens in local-alloc.c. */
502 #define REGNO_OK_FOR_INDEX_P(regno) \
503 ((regno) < FIRST_PSEUDO_REGISTER || reg_renumber[regno] >= 0)
504 #define REGNO_OK_FOR_BASE_P(regno) \
505 ((regno) < FIRST_PSEUDO_REGISTER || reg_renumber[regno] >= 0)
507 /* Maximum number of registers that can appear in a valid memory address. */
509 #define MAX_REGS_PER_ADDRESS 2
511 /* 1 if X is an rtx for a constant that is a valid address. */
513 #define CONSTANT_ADDRESS_P(X) legitimate_constant_address_p (X)
515 /* Nonzero if the constant value X is a legitimate general operand.
516 It is given that X satisfies CONSTANT_P or is a CONST_DOUBLE. */
518 #define LEGITIMATE_CONSTANT_P(X) legitimate_constant_p (X)
520 /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
521 and check its validity for a certain class.
522 We have two alternate definitions for each of them.
523 The usual definition accepts all pseudo regs; the other rejects
524 them unless they have been allocated suitable hard regs.
525 The symbol REG_OK_STRICT causes the latter definition to be used.
527 Most source files want to accept pseudo regs in the hope that
528 they will get allocated to the class that the insn wants them to be in.
529 Source files for reload pass need to be strict.
530 After reload, it makes no difference, since pseudo regs have
531 been eliminated by then. */
533 #ifndef REG_OK_STRICT
535 /* Nonzero if X is a hard reg that can be used as an index
536 or if it is a pseudo reg. */
537 #define REG_OK_FOR_INDEX_P(X) 1
539 /* Nonzero if X is a hard reg that can be used as a base reg
540 or if it is a pseudo reg. */
541 #define REG_OK_FOR_BASE_P(X) 1
543 #else
545 /* Nonzero if X is a hard reg that can be used as an index. */
546 #define REG_OK_FOR_INDEX_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
548 /* Nonzero if X is a hard reg that can be used as a base reg. */
549 #define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
551 #endif
553 /* Go to LABEL if ADDR (a legitimate address expression)
554 has an effect that depends on the machine mode it is used for. */
555 #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR, LABEL) \
556 { if (vax_mode_dependent_address_p (ADDR)) goto LABEL; }
558 /* Specify the machine mode that this machine uses
559 for the index in the tablejump instruction. */
560 #define CASE_VECTOR_MODE HImode
562 /* Define as C expression which evaluates to nonzero if the tablejump
563 instruction expects the table to contain offsets from the address of the
564 table.
565 Do not define this if the table should contain absolute addresses. */
566 #define CASE_VECTOR_PC_RELATIVE 1
568 /* Indicate that jump tables go in the text section. This is
569 necessary when compiling PIC code. */
570 #define JUMP_TABLES_IN_TEXT_SECTION 1
572 /* Define this as 1 if `char' should by default be signed; else as 0. */
573 #define DEFAULT_SIGNED_CHAR 1
575 /* This flag, if defined, says the same insns that convert to a signed fixnum
576 also convert validly to an unsigned one. */
577 #define FIXUNS_TRUNC_LIKE_FIX_TRUNC
579 /* Max number of bytes we can move from memory to memory
580 in one reasonably fast instruction. */
581 #define MOVE_MAX 8
583 /* If a memory-to-memory move would take MOVE_RATIO or more simple
584 move-instruction pairs, we will do a movmem or libcall instead. */
585 #define MOVE_RATIO(speed) ((speed) ? 6 : 3)
586 #define CLEAR_RATIO(speed) ((speed) ? 6 : 2)
588 /* Nonzero if access to memory by bytes is slow and undesirable. */
589 #define SLOW_BYTE_ACCESS 0
591 /* Define if shifts truncate the shift count
592 which implies one can omit a sign-extension or zero-extension
593 of a shift count. */
594 /* #define SHIFT_COUNT_TRUNCATED */
596 /* Value is 1 if truncating an integer of INPREC bits to OUTPREC bits
597 is done just by pretending it is already truncated. */
598 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
600 /* Specify the machine mode that pointers have.
601 After generation of rtl, the compiler makes no further distinction
602 between pointers and any other objects of this machine mode. */
603 #define Pmode SImode
605 /* A function address in a call instruction
606 is a byte address (for indexing purposes)
607 so give the MEM rtx a byte's mode. */
608 #define FUNCTION_MODE QImode
610 /* Specify the cost of a branch insn; roughly the number of extra insns that
611 should be added to avoid a branch.
613 Branches are extremely cheap on the VAX while the shift insns often
614 used to replace branches can be expensive. */
616 #define BRANCH_COST(speed_p, predictable_p) 0
618 /* Tell final.c how to eliminate redundant test instructions. */
620 /* Here we define machine-dependent flags and fields in cc_status
621 (see `conditions.h'). No extra ones are needed for the VAX. */
623 /* Store in cc_status the expressions
624 that the condition codes will describe
625 after execution of an instruction whose pattern is EXP.
626 Do not alter them if the instruction would not alter the cc's. */
628 #define NOTICE_UPDATE_CC(EXP, INSN) \
629 vax_notice_update_cc ((EXP), (INSN))
631 #define OUTPUT_JUMP(NORMAL, FLOAT, NO_OV) \
632 { if (cc_status.flags & CC_NO_OVERFLOW) \
633 return NO_OV; \
634 return NORMAL; \
637 /* Control the assembler format that we output. */
639 /* A C string constant describing how to begin a comment in the target
640 assembler language. The compiler assumes that the comment will end at
641 the end of the line. */
643 #define ASM_COMMENT_START "#"
645 /* Output to assembler file text saying following lines
646 may contain character constants, extra white space, comments, etc. */
648 #define ASM_APP_ON "#APP\n"
650 /* Output to assembler file text saying following lines
651 no longer contain unusual constructs. */
653 #define ASM_APP_OFF "#NO_APP\n"
655 /* Output before read-only data. */
657 #define TEXT_SECTION_ASM_OP "\t.text"
659 /* Output before writable data. */
661 #define DATA_SECTION_ASM_OP "\t.data"
663 /* How to refer to registers in assembler output.
664 This sequence is indexed by compiler's hard-register-number (see above).
665 The register names will be prefixed by REGISTER_PREFIX, if any. */
667 #define REGISTER_PREFIX ""
668 #define REGISTER_NAMES \
669 { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", \
670 "r8", "r9", "r10", "r11", "ap", "fp", "sp", "pc", }
672 /* This is BSD, so it wants DBX format. */
674 #define DBX_DEBUGGING_INFO 1
676 /* Do not break .stabs pseudos into continuations. */
678 #define DBX_CONTIN_LENGTH 0
680 /* This is the char to use for continuation (in case we need to turn
681 continuation back on). */
683 #define DBX_CONTIN_CHAR '?'
685 /* Don't use the `xsfoo;' construct in DBX output; this system
686 doesn't support it. */
688 #define DBX_NO_XREFS
690 /* Output the .stabs for a C `static' variable in the data section. */
691 #define DBX_STATIC_STAB_DATA_SECTION
693 /* VAX specific: which type character is used for type double? */
695 #define ASM_DOUBLE_CHAR (TARGET_G_FLOAT ? 'g' : 'd')
697 /* This is how to output a command to make the user-level label named NAME
698 defined for reference from other files. */
700 /* Globalizing directive for a label. */
701 #define GLOBAL_ASM_OP ".globl "
703 /* The prefix to add to user-visible assembler symbols. */
705 #define USER_LABEL_PREFIX "_"
707 /* This is how to store into the string LABEL
708 the symbol_ref name of an internal numbered label where
709 PREFIX is the class of label and NUM is the number within the class.
710 This is suitable for output with `assemble_name'. */
712 #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM) \
713 sprintf (LABEL, "*%s%ld", PREFIX, (long)(NUM))
715 /* This is how to output an insn to push a register on the stack.
716 It need not be very fast code. */
718 #define ASM_OUTPUT_REG_PUSH(FILE,REGNO) \
719 fprintf (FILE, "\tpushl %s\n", reg_names[REGNO])
721 /* This is how to output an insn to pop a register from the stack.
722 It need not be very fast code. */
724 #define ASM_OUTPUT_REG_POP(FILE,REGNO) \
725 fprintf (FILE, "\tmovl (%s)+,%s\n", reg_names[STACK_POINTER_REGNUM], \
726 reg_names[REGNO])
728 /* This is how to output an element of a case-vector that is absolute.
729 (The VAX does not use such vectors,
730 but we must define this macro anyway.) */
732 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \
733 do \
735 char label[256]; \
736 ASM_GENERATE_INTERNAL_LABEL (label, "L", (VALUE));\
737 fprintf (FILE, "\t.long "); \
738 assemble_name (FILE, label); \
739 fprintf (FILE, "\n"); \
741 while (0)
743 /* This is how to output an element of a case-vector that is relative. */
745 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL) \
746 do \
748 char label[256]; \
749 ASM_GENERATE_INTERNAL_LABEL (label, "L", (VALUE)); \
750 fprintf (FILE, "\t.word "); \
751 assemble_name (FILE, label); \
752 ASM_GENERATE_INTERNAL_LABEL (label, "L", (REL)); \
753 fprintf (FILE, "-"); \
754 assemble_name (FILE, label); \
755 fprintf (FILE, "\n"); \
757 while (0)
759 /* This is how to output an assembler line
760 that says to advance the location counter
761 to a multiple of 2**LOG bytes. */
763 #define ASM_OUTPUT_ALIGN(FILE,LOG) \
764 fprintf (FILE, "\t.align %d\n", (LOG))
766 /* This is how to output an assembler line
767 that says to advance the location counter by SIZE bytes. */
769 #define ASM_OUTPUT_SKIP(FILE,SIZE) \
770 fprintf (FILE, "\t.space %u\n", (int)(SIZE))
772 /* This says how to output an assembler line
773 to define a global common symbol. */
775 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \
776 ( fputs (".comm ", (FILE)), \
777 assemble_name ((FILE), (NAME)), \
778 fprintf ((FILE), ",%u\n", (int)(ROUNDED)))
780 /* This says how to output an assembler line
781 to define a local common symbol. */
783 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED) \
784 ( fputs (".lcomm ", (FILE)), \
785 assemble_name ((FILE), (NAME)), \
786 fprintf ((FILE), ",%u\n", (int)(ROUNDED)))
788 /* Print an instruction operand X on file FILE.
789 CODE is the code from the %-spec that requested printing this operand;
790 if `%z3' was used to print operand 3, then CODE is 'z'.
792 VAX operand formatting codes:
794 letter print
795 c direct branch condition
796 C reverse branch condition
797 D 64-bit immediate operand
798 B the low 8 bits of the complement of a constant operand
799 H the low 16 bits of the complement of a constant operand
800 M a mask for the N highest bits of a word
801 N the complement of a constant integer operand
802 P constant operand plus 1
803 R 32 - constant operand
804 b the low 8 bits of a negated constant operand
805 h the low 16 bits of a negated constant operand
806 # 'd' or 'g' depending on whether dfloat or gfloat is used
807 | register prefix */
809 /* The purpose of D is to get around a quirk or bug in VAX assembler
810 whereby -1 in a 64-bit immediate operand means 0x00000000ffffffff,
811 which is not a 64-bit minus one. As a workaround, we output negative
812 values in hex. */
813 #if HOST_BITS_PER_WIDE_INT == 64
814 # define NEG_HWI_PRINT_HEX16 HOST_WIDE_INT_PRINT_HEX
815 #else
816 # define NEG_HWI_PRINT_HEX16 "0xffffffff%08lx"
817 #endif
819 #define PRINT_OPERAND_PUNCT_VALID_P(CODE) \
820 ((CODE) == '#' || (CODE) == '|')
822 #define PRINT_OPERAND(FILE, X, CODE) \
823 print_operand (FILE, X, CODE)
825 /* Print a memory operand whose address is X, on file FILE.
826 This uses a function in output-vax.c. */
828 #define PRINT_OPERAND_ADDRESS(FILE, ADDR) \
829 print_operand_address (FILE, ADDR)
831 /* This is a blatent lie. However, it's good enough, since we don't
832 actually have any code whatsoever for which this isn't overridden
833 by the proper FDE definition. */
834 #define INCOMING_RETURN_ADDR_RTX gen_rtx_REG (Pmode, PC_REGNUM)