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