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