* doc/tm.texi (INIT_CUMULATIVE_ARGS): Update doco.
[official-gcc.git] / gcc / config / fr30 / fr30.h
blob0ab0e72c3302f0b6e51cb7a412961fb906f6672b
1 /*{{{ Comment. */
3 /* Definitions of FR30 target.
4 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004
5 Free Software Foundation, Inc.
6 Contributed by Cygnus Solutions.
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
15 GCC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING. If not, write to
22 the Free Software Foundation, 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
25 /*}}}*/ \f
26 /*{{{ Driver configuration. */
28 /* Defined in svr4.h. */
29 #undef SWITCH_TAKES_ARG
31 /* Defined in svr4.h. */
32 #undef WORD_SWITCH_TAKES_ARG
34 /*}}}*/ \f
35 /*{{{ Run-time target specifications. */
37 #undef ASM_SPEC
38 #define ASM_SPEC "%{v}"
40 /* Define this to be a string constant containing `-D' options to define the
41 predefined macros that identify this machine and system. These macros will
42 be predefined unless the `-ansi' option is specified. */
44 #define TARGET_CPU_CPP_BUILTINS() \
45 do \
46 { \
47 builtin_define_std ("fr30"); \
48 builtin_assert ("machine=fr30"); \
49 } \
50 while (0)
52 /* Use LDI:20 instead of LDI:32 to load addresses. */
53 #define TARGET_SMALL_MODEL_MASK (1 << 0)
54 #define TARGET_SMALL_MODEL (target_flags & TARGET_SMALL_MODEL_MASK)
56 #define TARGET_DEFAULT 0
58 /* This declaration should be present. */
59 extern int target_flags;
61 #define TARGET_SWITCHES \
62 { \
63 { "small-model", TARGET_SMALL_MODEL_MASK, \
64 N_("Assume small address space") }, \
65 { "no-small-model", - TARGET_SMALL_MODEL_MASK, "" }, \
66 { "no-lsim", 0, "" }, \
67 { "", TARGET_DEFAULT, "" } \
70 #define TARGET_VERSION fprintf (stderr, " (fr30)");
72 #define CAN_DEBUG_WITHOUT_FP
74 #undef STARTFILE_SPEC
75 #define STARTFILE_SPEC "crt0.o%s crti.o%s crtbegin.o%s"
77 /* Include the OS stub library, so that the code can be simulated.
78 This is not the right way to do this. Ideally this kind of thing
79 should be done in the linker script - but I have not worked out how
80 to specify the location of a linker script in a gcc command line yet... */
81 #undef ENDFILE_SPEC
82 #define ENDFILE_SPEC "%{!mno-lsim:-lsim} crtend.o%s crtn.o%s"
84 /*}}}*/ \f
85 /*{{{ Storage Layout. */
87 #define BITS_BIG_ENDIAN 1
89 #define BYTES_BIG_ENDIAN 1
91 #define WORDS_BIG_ENDIAN 1
93 #define UNITS_PER_WORD 4
95 #define PROMOTE_MODE(MODE,UNSIGNEDP,TYPE) \
96 do \
97 { \
98 if (GET_MODE_CLASS (MODE) == MODE_INT \
99 && GET_MODE_SIZE (MODE) < 4) \
100 (MODE) = SImode; \
102 while (0)
104 #define PARM_BOUNDARY 32
106 #define STACK_BOUNDARY 32
108 #define FUNCTION_BOUNDARY 32
110 #define BIGGEST_ALIGNMENT 32
112 #define DATA_ALIGNMENT(TYPE, ALIGN) \
113 (TREE_CODE (TYPE) == ARRAY_TYPE \
114 && TYPE_MODE (TREE_TYPE (TYPE)) == QImode \
115 && (ALIGN) < BITS_PER_WORD ? BITS_PER_WORD : (ALIGN))
117 #define CONSTANT_ALIGNMENT(EXP, ALIGN) \
118 (TREE_CODE (EXP) == STRING_CST \
119 && (ALIGN) < BITS_PER_WORD ? BITS_PER_WORD : (ALIGN))
121 #define STRICT_ALIGNMENT 1
123 /* Defined in svr4.h. */
124 #define PCC_BITFIELD_TYPE_MATTERS 1
126 /*}}}*/ \f
127 /*{{{ Layout of Source Language Data Types. */
129 #define SHORT_TYPE_SIZE 16
130 #define INT_TYPE_SIZE 32
131 #define LONG_TYPE_SIZE 32
132 #define LONG_LONG_TYPE_SIZE 64
133 #define FLOAT_TYPE_SIZE 32
134 #define DOUBLE_TYPE_SIZE 64
135 #define LONG_DOUBLE_TYPE_SIZE 64
137 #define DEFAULT_SIGNED_CHAR 1
139 /*}}}*/ \f
140 /*{{{ REGISTER BASICS. */
142 /* Number of hardware registers known to the compiler. They receive numbers 0
143 through `FIRST_PSEUDO_REGISTER-1'; thus, the first pseudo register's number
144 really is assigned the number `FIRST_PSEUDO_REGISTER'. */
145 #define FIRST_PSEUDO_REGISTER 21
147 /* Fixed register assignments: */
149 /* Here we do a BAD THING - reserve a register for use by the machine
150 description file. There are too many places in compiler where it
151 assumes that it can issue a branch or jump instruction without
152 providing a scratch register for it, and reload just cannot cope, so
153 we keep a register back for these situations. */
154 #define COMPILER_SCRATCH_REGISTER 0
156 /* The register that contains the result of a function call. */
157 #define RETURN_VALUE_REGNUM 4
159 /* The first register that can contain the arguments to a function. */
160 #define FIRST_ARG_REGNUM 4
162 /* A call-used register that can be used during the function prologue. */
163 #define PROLOGUE_TMP_REGNUM COMPILER_SCRATCH_REGISTER
165 /* Register numbers used for passing a function's static chain pointer. If
166 register windows are used, the register number as seen by the called
167 function is `STATIC_CHAIN_INCOMING_REGNUM', while the register number as
168 seen by the calling function is `STATIC_CHAIN_REGNUM'. If these registers
169 are the same, `STATIC_CHAIN_INCOMING_REGNUM' need not be defined.
171 The static chain register need not be a fixed register.
173 If the static chain is passed in memory, these macros should not be defined;
174 instead, the next two macros should be defined. */
175 #define STATIC_CHAIN_REGNUM 12
176 /* #define STATIC_CHAIN_INCOMING_REGNUM */
178 /* An FR30 specific hardware register. */
179 #define ACCUMULATOR_REGNUM 13
181 /* The register number of the frame pointer register, which is used to access
182 automatic variables in the stack frame. On some machines, the hardware
183 determines which register this is. On other machines, you can choose any
184 register you wish for this purpose. */
185 #define FRAME_POINTER_REGNUM 14
187 /* The register number of the stack pointer register, which must also be a
188 fixed register according to `FIXED_REGISTERS'. On most machines, the
189 hardware determines which register this is. */
190 #define STACK_POINTER_REGNUM 15
192 /* The following a fake hard registers that describe some of the dedicated
193 registers on the FR30. */
194 #define CONDITION_CODE_REGNUM 16
195 #define RETURN_POINTER_REGNUM 17
196 #define MD_HIGH_REGNUM 18
197 #define MD_LOW_REGNUM 19
199 /* An initializer that says which registers are used for fixed purposes all
200 throughout the compiled code and are therefore not available for general
201 allocation. These would include the stack pointer, the frame pointer
202 (except on machines where that can be used as a general register when no
203 frame pointer is needed), the program counter on machines where that is
204 considered one of the addressable registers, and any other numbered register
205 with a standard use.
207 This information is expressed as a sequence of numbers, separated by commas
208 and surrounded by braces. The Nth number is 1 if register N is fixed, 0
209 otherwise.
211 The table initialized from this macro, and the table initialized by the
212 following one, may be overridden at run time either automatically, by the
213 actions of the macro `CONDITIONAL_REGISTER_USAGE', or by the user with the
214 command options `-ffixed-REG', `-fcall-used-REG' and `-fcall-saved-REG'. */
215 #define FIXED_REGISTERS \
216 { 1, 0, 0, 0, 0, 0, 0, 0, /* 0 - 7 */ \
217 0, 0, 0, 0, 0, 0, 0, 1, /* 8 - 15 */ \
218 1, 1, 1, 1, 1 } /* 16 - 20 */
220 /* XXX - MDL and MDH set as fixed for now - this is until I can get the
221 mul patterns working. */
223 /* Like `FIXED_REGISTERS' but has 1 for each register that is clobbered (in
224 general) by function calls as well as for fixed registers. This macro
225 therefore identifies the registers that are not available for general
226 allocation of values that must live across function calls.
228 If a register has 0 in `CALL_USED_REGISTERS', the compiler automatically
229 saves it on function entry and restores it on function exit, if the register
230 is used within the function. */
231 #define CALL_USED_REGISTERS \
232 { 1, 1, 1, 1, 1, 1, 1, 1, /* 0 - 7 */ \
233 0, 0, 0, 0, 1, 1, 0, 1, /* 8 - 15 */ \
234 1, 1, 1, 1, 1 } /* 16 - 20 */
236 /* A C initializer containing the assembler's names for the machine registers,
237 each one as a C string constant. This is what translates register numbers
238 in the compiler into assembler language. */
239 #define REGISTER_NAMES \
240 { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", \
241 "r8", "r9", "r10", "r11", "r12", "ac", "fp", "sp", \
242 "cc", "rp", "mdh", "mdl", "ap" \
245 /* If defined, a C initializer for an array of structures containing a name and
246 a register number. This macro defines additional names for hard registers,
247 thus allowing the `asm' option in declarations to refer to registers using
248 alternate names. */
249 #define ADDITIONAL_REGISTER_NAMES \
251 {"r13", 13}, {"r14", 14}, {"r15", 15}, {"usp", 15}, {"ps", 16}\
254 /*}}}*/ \f
255 /*{{{ How Values Fit in Registers. */
257 /* A C expression for the number of consecutive hard registers, starting at
258 register number REGNO, required to hold a value of mode MODE. */
260 #define HARD_REGNO_NREGS(REGNO, MODE) \
261 ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
263 /* A C expression that is nonzero if it is permissible to store a value of mode
264 MODE in hard register number REGNO (or in several registers starting with
265 that one). */
267 #define HARD_REGNO_MODE_OK(REGNO, MODE) 1
269 /* A C expression that is nonzero if it is desirable to choose register
270 allocation so as to avoid move instructions between a value of mode MODE1
271 and a value of mode MODE2.
273 If `HARD_REGNO_MODE_OK (R, MODE1)' and `HARD_REGNO_MODE_OK (R, MODE2)' are
274 ever different for any R, then `MODES_TIEABLE_P (MODE1, MODE2)' must be
275 zero. */
276 #define MODES_TIEABLE_P(MODE1, MODE2) 1
278 /*}}}*/ \f
279 /*{{{ Register Classes. */
281 /* An enumeral type that must be defined with all the register class names as
282 enumeral values. `NO_REGS' must be first. `ALL_REGS' must be the last
283 register class, followed by one more enumeral value, `LIM_REG_CLASSES',
284 which is not a register class but rather tells how many classes there are.
286 Each register class has a number, which is the value of casting the class
287 name to type `int'. The number serves as an index in many of the tables
288 described below. */
289 enum reg_class
291 NO_REGS,
292 MULTIPLY_32_REG, /* the MDL register as used by the MULH, MULUH insns */
293 MULTIPLY_64_REG, /* the MDH,MDL register pair as used by MUL and MULU */
294 LOW_REGS, /* registers 0 through 7 */
295 HIGH_REGS, /* registers 8 through 15 */
296 REAL_REGS, /* ie all the general hardware registers on the FR30 */
297 ALL_REGS,
298 LIM_REG_CLASSES
301 #define GENERAL_REGS REAL_REGS
302 #define N_REG_CLASSES ((int) LIM_REG_CLASSES)
304 /* An initializer containing the names of the register classes as C string
305 constants. These names are used in writing some of the debugging dumps. */
306 #define REG_CLASS_NAMES \
308 "NO_REGS", \
309 "MULTIPLY_32_REG", \
310 "MULTIPLY_64_REG", \
311 "LOW_REGS", \
312 "HIGH_REGS", \
313 "REAL_REGS", \
314 "ALL_REGS" \
317 /* An initializer containing the contents of the register classes, as integers
318 which are bit masks. The Nth integer specifies the contents of class N.
319 The way the integer MASK is interpreted is that register R is in the class
320 if `MASK & (1 << R)' is 1.
322 When the machine has more than 32 registers, an integer does not suffice.
323 Then the integers are replaced by sub-initializers, braced groupings
324 containing several integers. Each sub-initializer must be suitable as an
325 initializer for the type `HARD_REG_SET' which is defined in
326 `hard-reg-set.h'. */
327 #define REG_CLASS_CONTENTS \
329 { 0 }, \
330 { 1 << MD_LOW_REGNUM }, \
331 { (1 << MD_LOW_REGNUM) | (1 << MD_HIGH_REGNUM) }, \
332 { (1 << 8) - 1 }, \
333 { ((1 << 8) - 1) << 8 }, \
334 { (1 << CONDITION_CODE_REGNUM) - 1 }, \
335 { (1 << FIRST_PSEUDO_REGISTER) - 1 } \
338 /* A C expression whose value is a register class containing hard register
339 REGNO. In general there is more than one such class; choose a class which
340 is "minimal", meaning that no smaller class also contains the register. */
341 #define REGNO_REG_CLASS(REGNO) \
342 ( (REGNO) < 8 ? LOW_REGS \
343 : (REGNO) < CONDITION_CODE_REGNUM ? HIGH_REGS \
344 : (REGNO) == MD_LOW_REGNUM ? MULTIPLY_32_REG \
345 : (REGNO) == MD_HIGH_REGNUM ? MULTIPLY_64_REG \
346 : ALL_REGS)
348 /* A macro whose definition is the name of the class to which a valid base
349 register must belong. A base register is one used in an address which is
350 the register value plus a displacement. */
351 #define BASE_REG_CLASS REAL_REGS
353 /* A macro whose definition is the name of the class to which a valid index
354 register must belong. An index register is one used in an address where its
355 value is either multiplied by a scale factor or added to another register
356 (as well as added to a displacement). */
357 #define INDEX_REG_CLASS REAL_REGS
359 /* A C expression which defines the machine-dependent operand constraint
360 letters for register classes. If CHAR is such a letter, the value should be
361 the register class corresponding to it. Otherwise, the value should be
362 `NO_REGS'. The register letter `r', corresponding to class `GENERAL_REGS',
363 will not be passed to this macro; you do not need to handle it.
365 The following letters are unavailable, due to being used as
366 constraints:
367 '0'..'9'
368 '<', '>'
369 'E', 'F', 'G', 'H'
370 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P'
371 'Q', 'R', 'S', 'T', 'U'
372 'V', 'X'
373 'g', 'i', 'm', 'n', 'o', 'p', 'r', 's' */
375 #define REG_CLASS_FROM_LETTER(CHAR) \
376 ( (CHAR) == 'd' ? MULTIPLY_64_REG \
377 : (CHAR) == 'e' ? MULTIPLY_32_REG \
378 : (CHAR) == 'h' ? HIGH_REGS \
379 : (CHAR) == 'l' ? LOW_REGS \
380 : (CHAR) == 'a' ? ALL_REGS \
381 : NO_REGS)
383 /* A C expression which is nonzero if register number NUM is suitable for use
384 as a base register in operand addresses. It may be either a suitable hard
385 register or a pseudo register that has been allocated such a hard register. */
386 #define REGNO_OK_FOR_BASE_P(NUM) 1
388 /* A C expression which is nonzero if register number NUM is suitable for use
389 as an index register in operand addresses. It may be either a suitable hard
390 register or a pseudo register that has been allocated such a hard register.
392 The difference between an index register and a base register is that the
393 index register may be scaled. If an address involves the sum of two
394 registers, neither one of them scaled, then either one may be labeled the
395 "base" and the other the "index"; but whichever labeling is used must fit
396 the machine's constraints of which registers may serve in each capacity.
397 The compiler will try both labelings, looking for one that is valid, and
398 will reload one or both registers only if neither labeling works. */
399 #define REGNO_OK_FOR_INDEX_P(NUM) 1
401 /* A C expression that places additional restrictions on the register class to
402 use when it is necessary to copy value X into a register in class CLASS.
403 The value is a register class; perhaps CLASS, or perhaps another, smaller
404 class. On many machines, the following definition is safe:
406 #define PREFERRED_RELOAD_CLASS(X,CLASS) CLASS
408 Sometimes returning a more restrictive class makes better code. For
409 example, on the 68000, when X is an integer constant that is in range for a
410 `moveq' instruction, the value of this macro is always `DATA_REGS' as long
411 as CLASS includes the data registers. Requiring a data register guarantees
412 that a `moveq' will be used.
414 If X is a `const_double', by returning `NO_REGS' you can force X into a
415 memory constant. This is useful on certain machines where immediate
416 floating values cannot be loaded into certain kinds of registers. */
417 #define PREFERRED_RELOAD_CLASS(X, CLASS) CLASS
419 /* A C expression for the maximum number of consecutive registers of
420 class CLASS needed to hold a value of mode MODE.
422 This is closely related to the macro `HARD_REGNO_NREGS'. In fact, the value
423 of the macro `CLASS_MAX_NREGS (CLASS, MODE)' should be the maximum value of
424 `HARD_REGNO_NREGS (REGNO, MODE)' for all REGNO values in the class CLASS.
426 This macro helps control the handling of multiple-word values in
427 the reload pass. */
428 #define CLASS_MAX_NREGS(CLASS, MODE) HARD_REGNO_NREGS (0, MODE)
430 /*}}}*/ \f
431 /*{{{ CONSTANTS. */
433 /* A C expression that defines the machine-dependent operand constraint letters
434 (`I', `J', `K', .. 'P') that specify particular ranges of integer values.
435 If C is one of those letters, the expression should check that VALUE, an
436 integer, is in the appropriate range and return 1 if so, 0 otherwise. If C
437 is not one of those letters, the value should be 0 regardless of VALUE. */
438 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
439 ( (C) == 'I' ? IN_RANGE (VALUE, 0, 15) \
440 : (C) == 'J' ? IN_RANGE (VALUE, -16, -1) \
441 : (C) == 'K' ? IN_RANGE (VALUE, 16, 31) \
442 : (C) == 'L' ? IN_RANGE (VALUE, 0, (1 << 8) - 1) \
443 : (C) == 'M' ? IN_RANGE (VALUE, 0, (1 << 20) - 1) \
444 : (C) == 'P' ? IN_RANGE (VALUE, -(1 << 8), (1 << 8) - 1) \
445 : 0)
447 /* A C expression that defines the machine-dependent operand constraint letters
448 (`G', `H') that specify particular ranges of `const_double' values.
450 If C is one of those letters, the expression should check that VALUE, an RTX
451 of code `const_double', is in the appropriate range and return 1 if so, 0
452 otherwise. If C is not one of those letters, the value should be 0
453 regardless of VALUE.
455 `const_double' is used for all floating-point constants and for `DImode'
456 fixed-point constants. A given letter can accept either or both kinds of
457 values. It can use `GET_MODE' to distinguish between these kinds. */
458 #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C) 0
460 /* A C expression that defines the optional machine-dependent constraint
461 letters (`Q', `R', `S', `T', `U') that can be used to segregate specific
462 types of operands, usually memory references, for the target machine.
463 Normally this macro will not be defined. If it is required for a particular
464 target machine, it should return 1 if VALUE corresponds to the operand type
465 represented by the constraint letter C. If C is not defined as an extra
466 constraint, the value returned should be 0 regardless of VALUE.
468 For example, on the ROMP, load instructions cannot have their output in r0
469 if the memory reference contains a symbolic address. Constraint letter `Q'
470 is defined as representing a memory address that does *not* contain a
471 symbolic address. An alternative is specified with a `Q' constraint on the
472 input and `r' on the output. The next alternative specifies `m' on the
473 input and a register class that does not include r0 on the output. */
474 #define EXTRA_CONSTRAINT(VALUE, C) \
475 ((C) == 'Q' ? (GET_CODE (VALUE) == MEM && GET_CODE (XEXP (VALUE, 0)) == SYMBOL_REF) : 0)
477 /*}}}*/ \f
478 /*{{{ Basic Stack Layout. */
480 /* Define this macro if pushing a word onto the stack moves the stack pointer
481 to a smaller address. */
482 #define STACK_GROWS_DOWNWARD 1
484 /* Define this macro if the addresses of local variable slots are at negative
485 offsets from the frame pointer. */
486 #define FRAME_GROWS_DOWNWARD 1
488 /* Offset from the frame pointer to the first local variable slot to be
489 allocated.
491 If `FRAME_GROWS_DOWNWARD', find the next slot's offset by subtracting the
492 first slot's length from `STARTING_FRAME_OFFSET'. Otherwise, it is found by
493 adding the length of the first slot to the value `STARTING_FRAME_OFFSET'. */
494 /* #define STARTING_FRAME_OFFSET -4 */
495 #define STARTING_FRAME_OFFSET 0
497 /* Offset from the stack pointer register to the first location at which
498 outgoing arguments are placed. If not specified, the default value of zero
499 is used. This is the proper value for most machines.
501 If `ARGS_GROW_DOWNWARD', this is the offset to the location above the first
502 location at which outgoing arguments are placed. */
503 #define STACK_POINTER_OFFSET 0
505 /* Offset from the argument pointer register to the first argument's address.
506 On some machines it may depend on the data type of the function.
508 If `ARGS_GROW_DOWNWARD', this is the offset to the location above the first
509 argument's address. */
510 #define FIRST_PARM_OFFSET(FUNDECL) 0
512 /* A C expression whose value is RTL representing the location of the incoming
513 return address at the beginning of any function, before the prologue. This
514 RTL is either a `REG', indicating that the return value is saved in `REG',
515 or a `MEM' representing a location in the stack.
517 You only need to define this macro if you want to support call frame
518 debugging information like that provided by DWARF 2. */
519 #define INCOMING_RETURN_ADDR_RTX gen_rtx_REG (SImode, RETURN_POINTER_REGNUM)
521 /*}}}*/ \f
522 /*{{{ Register That Address the Stack Frame. */
524 /* The register number of the arg pointer register, which is used to access the
525 function's argument list. On some machines, this is the same as the frame
526 pointer register. On some machines, the hardware determines which register
527 this is. On other machines, you can choose any register you wish for this
528 purpose. If this is not the same register as the frame pointer register,
529 then you must mark it as a fixed register according to `FIXED_REGISTERS', or
530 arrange to be able to eliminate it. */
531 #define ARG_POINTER_REGNUM 20
533 /*}}}*/ \f
534 /*{{{ Eliminating the Frame Pointer and the Arg Pointer. */
536 /* A C expression which is nonzero if a function must have and use a frame
537 pointer. This expression is evaluated in the reload pass. If its value is
538 nonzero the function will have a frame pointer.
540 The expression can in principle examine the current function and decide
541 according to the facts, but on most machines the constant 0 or the constant
542 1 suffices. Use 0 when the machine allows code to be generated with no
543 frame pointer, and doing so saves some time or space. Use 1 when there is
544 no possible advantage to avoiding a frame pointer.
546 In certain cases, the compiler does not know how to produce valid code
547 without a frame pointer. The compiler recognizes those cases and
548 automatically gives the function a frame pointer regardless of what
549 `FRAME_POINTER_REQUIRED' says. You don't need to worry about them.
551 In a function that does not require a frame pointer, the frame pointer
552 register can be allocated for ordinary usage, unless you mark it as a fixed
553 register. See `FIXED_REGISTERS' for more information. */
554 /* #define FRAME_POINTER_REQUIRED 0 */
555 #define FRAME_POINTER_REQUIRED \
556 (flag_omit_frame_pointer == 0 || current_function_pretend_args_size > 0)
558 /* If defined, this macro specifies a table of register pairs used to eliminate
559 unneeded registers that point into the stack frame. If it is not defined,
560 the only elimination attempted by the compiler is to replace references to
561 the frame pointer with references to the stack pointer.
563 The definition of this macro is a list of structure initializations, each of
564 which specifies an original and replacement register.
566 On some machines, the position of the argument pointer is not known until
567 the compilation is completed. In such a case, a separate hard register must
568 be used for the argument pointer. This register can be eliminated by
569 replacing it with either the frame pointer or the argument pointer,
570 depending on whether or not the frame pointer has been eliminated.
572 In this case, you might specify:
573 #define ELIMINABLE_REGS \
574 {{ARG_POINTER_REGNUM, STACK_POINTER_REGNUM}, \
575 {ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM}, \
576 {FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}}
578 Note that the elimination of the argument pointer with the stack pointer is
579 specified first since that is the preferred elimination. */
581 #define ELIMINABLE_REGS \
583 {ARG_POINTER_REGNUM, STACK_POINTER_REGNUM}, \
584 {ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM}, \
585 {FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM} \
588 /* A C expression that returns nonzero if the compiler is allowed to try to
589 replace register number FROM with register number TO. This macro
590 need only be defined if `ELIMINABLE_REGS' is defined, and will usually be
591 the constant 1, since most of the cases preventing register elimination are
592 things that the compiler already knows about. */
594 #define CAN_ELIMINATE(FROM, TO) \
595 ((TO) == FRAME_POINTER_REGNUM || ! frame_pointer_needed)
597 /* This macro is similar to `INITIAL_FRAME_POINTER_OFFSET'. It specifies the
598 initial difference between the specified pair of registers. This macro must
599 be defined if `ELIMINABLE_REGS' is defined. */
600 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
601 (OFFSET) = fr30_compute_frame_size (FROM, TO)
603 /*}}}*/ \f
604 /*{{{ Passing Function Arguments on the Stack. */
606 /* If defined, the maximum amount of space required for outgoing arguments will
607 be computed and placed into the variable
608 `current_function_outgoing_args_size'. No space will be pushed onto the
609 stack for each call; instead, the function prologue should increase the
610 stack frame size by this amount.
612 Defining both `PUSH_ROUNDING' and `ACCUMULATE_OUTGOING_ARGS' is not
613 proper. */
614 #define ACCUMULATE_OUTGOING_ARGS 1
616 /* A C expression that should indicate the number of bytes of its own arguments
617 that a function pops on returning, or 0 if the function pops no arguments
618 and the caller must therefore pop them all after the function returns.
620 FUNDECL is a C variable whose value is a tree node that describes the
621 function in question. Normally it is a node of type `FUNCTION_DECL' that
622 describes the declaration of the function. From this it is possible to
623 obtain the DECL_ATTRIBUTES of the function.
625 FUNTYPE is a C variable whose value is a tree node that describes the
626 function in question. Normally it is a node of type `FUNCTION_TYPE' that
627 describes the data type of the function. From this it is possible to obtain
628 the data types of the value and arguments (if known).
630 When a call to a library function is being considered, FUNTYPE will contain
631 an identifier node for the library function. Thus, if you need to
632 distinguish among various library functions, you can do so by their names.
633 Note that "library function" in this context means a function used to
634 perform arithmetic, whose name is known specially in the compiler and was
635 not mentioned in the C code being compiled.
637 STACK-SIZE is the number of bytes of arguments passed on the stack. If a
638 variable number of bytes is passed, it is zero, and argument popping will
639 always be the responsibility of the calling function.
641 On the VAX, all functions always pop their arguments, so the definition of
642 this macro is STACK-SIZE. On the 68000, using the standard calling
643 convention, no functions pop their arguments, so the value of the macro is
644 always 0 in this case. But an alternative calling convention is available
645 in which functions that take a fixed number of arguments pop them but other
646 functions (such as `printf') pop nothing (the caller pops all). When this
647 convention is in use, FUNTYPE is examined to determine whether a function
648 takes a fixed number of arguments. */
649 #define RETURN_POPS_ARGS(FUNDECL, FUNTYPE, STACK_SIZE) 0
651 /* Implement `va_arg'. */
652 #define EXPAND_BUILTIN_VA_ARG(valist, type) \
653 fr30_va_arg (valist, type)
655 /*}}}*/ \f
656 /*{{{ Function Arguments in Registers. */
658 /* Nonzero if we do not know how to pass TYPE solely in registers.
659 We cannot do so in the following cases:
661 - if the type has variable size
662 - if the type is marked as addressable (it is required to be constructed
663 into the stack)
664 - if the type is a structure or union. */
666 #define MUST_PASS_IN_STACK(MODE, TYPE) \
667 (((MODE) == BLKmode) \
668 || ((TYPE) != NULL \
669 && TYPE_SIZE (TYPE) != NULL \
670 && (TREE_CODE (TYPE_SIZE (TYPE)) != INTEGER_CST \
671 || TREE_CODE (TYPE) == RECORD_TYPE \
672 || TREE_CODE (TYPE) == UNION_TYPE \
673 || TREE_CODE (TYPE) == QUAL_UNION_TYPE \
674 || TREE_ADDRESSABLE (TYPE))))
676 /* The number of register assigned to holding function arguments. */
678 #define FR30_NUM_ARG_REGS 4
680 /* A C expression that controls whether a function argument is passed in a
681 register, and which register.
683 The usual way to make the ANSI library `stdarg.h' work on a machine where
684 some arguments are usually passed in registers, is to cause nameless
685 arguments to be passed on the stack instead. This is done by making
686 `FUNCTION_ARG' return 0 whenever NAMED is 0.
688 You may use the macro `MUST_PASS_IN_STACK (MODE, TYPE)' in the definition of
689 this macro to determine if this argument is of a type that must be passed in
690 the stack. If `REG_PARM_STACK_SPACE' is not defined and `FUNCTION_ARG'
691 returns nonzero for such an argument, the compiler will abort. If
692 `REG_PARM_STACK_SPACE' is defined, the argument will be computed in the
693 stack and then loaded into a register. */
695 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \
696 ( (NAMED) == 0 ? NULL_RTX \
697 : MUST_PASS_IN_STACK (MODE, TYPE) ? NULL_RTX \
698 : (CUM) >= FR30_NUM_ARG_REGS ? NULL_RTX \
699 : gen_rtx_REG (MODE, CUM + FIRST_ARG_REGNUM))
701 /* A C type for declaring a variable that is used as the first argument of
702 `FUNCTION_ARG' and other related values. For some target machines, the type
703 `int' suffices and can hold the number of bytes of argument so far.
705 There is no need to record in `CUMULATIVE_ARGS' anything about the arguments
706 that have been passed on the stack. The compiler has other variables to
707 keep track of that. For target machines on which all arguments are passed
708 on the stack, there is no need to store anything in `CUMULATIVE_ARGS';
709 however, the data structure must exist and should not be empty, so use
710 `int'. */
711 /* On the FR30 this value is an accumulating count of the number of argument
712 registers that have been filled with argument values, as opposed to say,
713 the number of bytes of argument accumulated so far. */
714 #define CUMULATIVE_ARGS int
716 /* A C expression for the number of words, at the beginning of an argument,
717 must be put in registers. The value must be zero for arguments that are
718 passed entirely in registers or that are entirely pushed on the stack.
720 On some machines, certain arguments must be passed partially in registers
721 and partially in memory. On these machines, typically the first N words of
722 arguments are passed in registers, and the rest on the stack. If a
723 multi-word argument (a `double' or a structure) crosses that boundary, its
724 first few words must be passed in registers and the rest must be pushed.
725 This macro tells the compiler when this occurs, and how many of the words
726 should go in registers.
728 `FUNCTION_ARG' for these arguments should return the first register to be
729 used by the caller for this argument; likewise `FUNCTION_INCOMING_ARG', for
730 the called function. */
731 #define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) \
732 fr30_function_arg_partial_nregs (CUM, MODE, TYPE, NAMED)
734 /* A C expression that indicates when an argument must be passed by reference.
735 If nonzero for an argument, a copy of that argument is made in memory and a
736 pointer to the argument is passed instead of the argument itself. The
737 pointer is passed in whatever way is appropriate for passing a pointer to
738 that type.
740 On machines where `REG_PARM_STACK_SPACE' is not defined, a suitable
741 definition of this macro might be:
742 #define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED) \
743 MUST_PASS_IN_STACK (MODE, TYPE) */
744 #define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED) \
745 MUST_PASS_IN_STACK (MODE, TYPE)
747 /* A C statement (sans semicolon) for initializing the variable CUM for the
748 state at the beginning of the argument list. The variable has type
749 `CUMULATIVE_ARGS'. The value of FNTYPE is the tree node for the data type
750 of the function which will receive the args, or 0 if the args are to a
751 compiler support library function. The value of INDIRECT is nonzero when
752 processing an indirect call, for example a call through a function pointer.
753 The value of INDIRECT is zero for a call to an explicitly named function, a
754 library function call, or when `INIT_CUMULATIVE_ARGS' is used to find
755 arguments for the function being compiled.
757 When processing a call to a compiler support library function, LIBNAME
758 identifies which one. It is a `symbol_ref' rtx which contains the name of
759 the function, as a string. LIBNAME is 0 when an ordinary C function call is
760 being processed. Thus, each time this macro is called, either LIBNAME or
761 FNTYPE is nonzero, but never both of them at once. */
762 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT, N_NAMED_ARGS) \
763 (CUM) = 0
765 /* A C statement (sans semicolon) to update the summarizer variable CUM to
766 advance past an argument in the argument list. The values MODE, TYPE and
767 NAMED describe that argument. Once this is done, the variable CUM is
768 suitable for analyzing the *following* argument with `FUNCTION_ARG', etc.
770 This macro need not do anything if the argument in question was passed on
771 the stack. The compiler knows how to track the amount of stack space used
772 for arguments without any special help. */
773 #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED) \
774 (CUM) += (NAMED) * fr30_num_arg_regs (MODE, TYPE)
776 /* A C expression that is nonzero if REGNO is the number of a hard register in
777 which function arguments are sometimes passed. This does *not* include
778 implicit arguments such as the static chain and the structure-value address.
779 On many machines, no registers can be used for this purpose since all
780 function arguments are pushed on the stack. */
781 #define FUNCTION_ARG_REGNO_P(REGNO) \
782 ((REGNO) >= FIRST_ARG_REGNUM && ((REGNO) < FIRST_ARG_REGNUM + FR30_NUM_ARG_REGS))
784 /*}}}*/ \f
785 /*{{{ How Scalar Function Values are Returned. */
787 #define FUNCTION_VALUE(VALTYPE, FUNC) \
788 gen_rtx_REG (TYPE_MODE (VALTYPE), RETURN_VALUE_REGNUM)
790 /* A C expression to create an RTX representing the place where a library
791 function returns a value of mode MODE. If the precise function being called
792 is known, FUNC is a tree node (`FUNCTION_DECL') for it; otherwise, FUNC is a
793 null pointer. This makes it possible to use a different value-returning
794 convention for specific functions when all their calls are known.
796 Note that "library function" in this context means a compiler support
797 routine, used to perform arithmetic, whose name is known specially by the
798 compiler and was not mentioned in the C code being compiled.
800 The definition of `LIBRARY_VALUE' need not be concerned aggregate data
801 types, because none of the library functions returns such types. */
802 #define LIBCALL_VALUE(MODE) gen_rtx_REG (MODE, RETURN_VALUE_REGNUM)
804 /* A C expression that is nonzero if REGNO is the number of a hard register in
805 which the values of called function may come back. */
807 #define FUNCTION_VALUE_REGNO_P(REGNO) ((REGNO) == RETURN_VALUE_REGNUM)
809 /*}}}*/ \f
810 /*{{{ How Large Values are Returned. */
812 /* Define this macro to be 1 if all structure and union return values must be
813 in memory. Since this results in slower code, this should be defined only
814 if needed for compatibility with other compilers or with an ABI. If you
815 define this macro to be 0, then the conventions used for structure and union
816 return values are decided by the `RETURN_IN_MEMORY' macro.
818 If not defined, this defaults to the value 1. */
819 #define DEFAULT_PCC_STRUCT_RETURN 1
821 /*}}}*/ \f
822 /*{{{ Generating Code for Profiling. */
824 /* A C statement or compound statement to output to FILE some assembler code to
825 call the profiling subroutine `mcount'. Before calling, the assembler code
826 must load the address of a counter variable into a register where `mcount'
827 expects to find the address. The name of this variable is `LP' followed by
828 the number LABELNO, so you would generate the name using `LP%d' in a
829 `fprintf'.
831 The details of how the address should be passed to `mcount' are determined
832 by your operating system environment, not by GCC. To figure them out,
833 compile a small program for profiling using the system's installed C
834 compiler and look at the assembler code that results. */
835 #define FUNCTION_PROFILER(FILE, LABELNO) \
837 fprintf (FILE, "\t mov rp, r1\n" ); \
838 fprintf (FILE, "\t ldi:32 mcount, r0\n" ); \
839 fprintf (FILE, "\t call @r0\n" ); \
840 fprintf (FILE, ".word\tLP%d\n", LABELNO); \
843 /*}}}*/ \f
844 /*{{{ Trampolines for Nested Functions. */
846 /* On the FR30, the trampoline is:
849 ldi:32 STATIC, r12
851 ldi:32 FUNCTION, r0
852 jmp @r0
854 The no-ops are to guarantee that the static chain and final
855 target are 32 bit aligned within the trampoline. That allows us to
856 initialize those locations with simple SImode stores. The alternative
857 would be to use HImode stores. */
859 /* A C statement to output, on the stream FILE, assembler code for a block of
860 data that contains the constant parts of a trampoline. This code should not
861 include a label--the label is taken care of automatically. */
862 #define TRAMPOLINE_TEMPLATE(FILE) \
864 fprintf (FILE, "\tnop\n"); \
865 fprintf (FILE, "\tldi:32\t#0, %s\n", reg_names [STATIC_CHAIN_REGNUM]); \
866 fprintf (FILE, "\tnop\n"); \
867 fprintf (FILE, "\tldi:32\t#0, %s\n", reg_names [COMPILER_SCRATCH_REGISTER]); \
868 fprintf (FILE, "\tjmp\t@%s\n", reg_names [COMPILER_SCRATCH_REGISTER]); \
871 /* A C expression for the size in bytes of the trampoline, as an integer. */
872 #define TRAMPOLINE_SIZE 18
874 /* We want the trampoline to be aligned on a 32bit boundary so that we can
875 make sure the location of the static chain & target function within
876 the trampoline is also aligned on a 32bit boundary. */
877 #define TRAMPOLINE_ALIGNMENT 32
879 /* A C statement to initialize the variable parts of a trampoline. ADDR is an
880 RTX for the address of the trampoline; FNADDR is an RTX for the address of
881 the nested function; STATIC_CHAIN is an RTX for the static chain value that
882 should be passed to the function when it is called. */
883 #define INITIALIZE_TRAMPOLINE(ADDR, FNADDR, STATIC_CHAIN) \
884 do \
886 emit_move_insn (gen_rtx_MEM (SImode, plus_constant (ADDR, 4)), STATIC_CHAIN);\
887 emit_move_insn (gen_rtx_MEM (SImode, plus_constant (ADDR, 12)), FNADDR); \
888 } while (0);
890 /*}}}*/ \f
891 /*{{{ Addressing Modes. */
893 /* A C expression that is 1 if the RTX X is a constant which is a valid
894 address. On most machines, this can be defined as `CONSTANT_P (X)', but a
895 few machines are more restrictive in which constant addresses are supported.
897 `CONSTANT_P' accepts integer-values expressions whose values are not
898 explicitly known, such as `symbol_ref', `label_ref', and `high' expressions
899 and `const' arithmetic expressions, in addition to `const_int' and
900 `const_double' expressions. */
901 #define CONSTANT_ADDRESS_P(X) CONSTANT_P (X)
903 /* A number, the maximum number of registers that can appear in a valid memory
904 address. Note that it is up to you to specify a value equal to the maximum
905 number that `GO_IF_LEGITIMATE_ADDRESS' would ever accept. */
906 #define MAX_REGS_PER_ADDRESS 1
908 /* A C compound statement with a conditional `goto LABEL;' executed if X (an
909 RTX) is a legitimate memory address on the target machine for a memory
910 operand of mode MODE. */
912 /* On the FR30 we only have one real addressing mode - an address in a
913 register. There are three special cases however:
915 * indexed addressing using small positive offsets from the stack pointer
917 * indexed addressing using small signed offsets from the frame pointer
919 * register plus register addressing using R13 as the base register.
921 At the moment we only support the first two of these special cases. */
923 #ifdef REG_OK_STRICT
924 #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, LABEL) \
925 do \
927 if (GET_CODE (X) == REG && REG_OK_FOR_BASE_P (X)) \
928 goto LABEL; \
929 if (GET_CODE (X) == PLUS \
930 && ((MODE) == SImode || (MODE) == SFmode) \
931 && XEXP (X, 0) == stack_pointer_rtx \
932 && GET_CODE (XEXP (X, 1)) == CONST_INT \
933 && IN_RANGE (INTVAL (XEXP (X, 1)), 0, (1 << 6) - 4)) \
934 goto LABEL; \
935 if (GET_CODE (X) == PLUS \
936 && ((MODE) == SImode || (MODE) == SFmode) \
937 && XEXP (X, 0) == frame_pointer_rtx \
938 && GET_CODE (XEXP (X, 1)) == CONST_INT \
939 && IN_RANGE (INTVAL (XEXP (X, 1)), -(1 << 9), (1 << 9) - 4)) \
940 goto LABEL; \
942 while (0)
943 #else
944 #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, LABEL) \
945 do \
947 if (GET_CODE (X) == REG && REG_OK_FOR_BASE_P (X)) \
948 goto LABEL; \
949 if (GET_CODE (X) == PLUS \
950 && ((MODE) == SImode || (MODE) == SFmode) \
951 && XEXP (X, 0) == stack_pointer_rtx \
952 && GET_CODE (XEXP (X, 1)) == CONST_INT \
953 && IN_RANGE (INTVAL (XEXP (X, 1)), 0, (1 << 6) - 4)) \
954 goto LABEL; \
955 if (GET_CODE (X) == PLUS \
956 && ((MODE) == SImode || (MODE) == SFmode) \
957 && GET_CODE (XEXP (X, 0)) == REG \
958 && (REGNO (XEXP (X, 0)) == FRAME_POINTER_REGNUM \
959 || REGNO (XEXP (X, 0)) == ARG_POINTER_REGNUM) \
960 && GET_CODE (XEXP (X, 1)) == CONST_INT \
961 && IN_RANGE (INTVAL (XEXP (X, 1)), -(1 << 9), (1 << 9) - 4)) \
962 goto LABEL; \
964 while (0)
965 #endif
967 /* A C expression that is nonzero if X (assumed to be a `reg' RTX) is valid for
968 use as a base register. For hard registers, it should always accept those
969 which the hardware permits and reject the others. Whether the macro accepts
970 or rejects pseudo registers must be controlled by `REG_OK_STRICT' as
971 described above. This usually requires two variant definitions, of which
972 `REG_OK_STRICT' controls the one actually used. */
973 #ifdef REG_OK_STRICT
974 #define REG_OK_FOR_BASE_P(X) (((unsigned) REGNO (X)) <= STACK_POINTER_REGNUM)
975 #else
976 #define REG_OK_FOR_BASE_P(X) 1
977 #endif
979 /* A C expression that is nonzero if X (assumed to be a `reg' RTX) is valid for
980 use as an index register.
982 The difference between an index register and a base register is that the
983 index register may be scaled. If an address involves the sum of two
984 registers, neither one of them scaled, then either one may be labeled the
985 "base" and the other the "index"; but whichever labeling is used must fit
986 the machine's constraints of which registers may serve in each capacity.
987 The compiler will try both labelings, looking for one that is valid, and
988 will reload one or both registers only if neither labeling works. */
989 #define REG_OK_FOR_INDEX_P(X) REG_OK_FOR_BASE_P (X)
991 /* A C compound statement that attempts to replace X with a valid memory
992 address for an operand of mode MODE. WIN will be a C statement label
993 elsewhere in the code; the macro definition may use
995 GO_IF_LEGITIMATE_ADDRESS (MODE, X, WIN);
997 to avoid further processing if the address has become legitimate.
999 X will always be the result of a call to `break_out_memory_refs', and OLDX
1000 will be the operand that was given to that function to produce X.
1002 The code generated by this macro should not alter the substructure of X. If
1003 it transforms X into a more legitimate form, it should assign X (which will
1004 always be a C variable) a new value.
1006 It is not necessary for this macro to come up with a legitimate address.
1007 The compiler has standard ways of doing so in all cases. In fact, it is
1008 safe for this macro to do nothing. But often a machine-dependent strategy
1009 can generate better code. */
1010 #define LEGITIMIZE_ADDRESS(X, OLDX, MODE, WIN)
1012 /* A C statement or compound statement with a conditional `goto LABEL;'
1013 executed if memory address X (an RTX) can have different meanings depending
1014 on the machine mode of the memory reference it is used for or if the address
1015 is valid for some modes but not others.
1017 Autoincrement and autodecrement addresses typically have mode-dependent
1018 effects because the amount of the increment or decrement is the size of the
1019 operand being addressed. Some machines have other mode-dependent addresses.
1020 Many RISC machines have no mode-dependent addresses.
1022 You may assume that ADDR is a valid address for the machine. */
1023 #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR, LABEL)
1025 /* A C expression that is nonzero if X is a legitimate constant for an
1026 immediate operand on the target machine. You can assume that X satisfies
1027 `CONSTANT_P', so you need not check this. In fact, `1' is a suitable
1028 definition for this macro on machines where anything `CONSTANT_P' is valid. */
1029 #define LEGITIMATE_CONSTANT_P(X) 1
1031 /*}}}*/ \f
1032 /*{{{ Describing Relative Costs of Operations */
1034 /* Define this macro as a C expression which is nonzero if accessing less than
1035 a word of memory (i.e. a `char' or a `short') is no faster than accessing a
1036 word of memory, i.e., if such access require more than one instruction or if
1037 there is no difference in cost between byte and (aligned) word loads.
1039 When this macro is not defined, the compiler will access a field by finding
1040 the smallest containing object; when it is defined, a fullword load will be
1041 used if alignment permits. Unless bytes accesses are faster than word
1042 accesses, using word accesses is preferable since it may eliminate
1043 subsequent memory access if subsequent accesses occur to other fields in the
1044 same word of the structure, but to different bytes. */
1045 #define SLOW_BYTE_ACCESS 1
1047 /*}}}*/ \f
1048 /*{{{ Dividing the output into sections. */
1050 /* A C expression whose value is a string containing the assembler operation
1051 that should precede instructions and read-only data. Normally `".text"' is
1052 right. */
1053 #define TEXT_SECTION_ASM_OP "\t.text"
1055 /* A C expression whose value is a string containing the assembler operation to
1056 identify the following data as writable initialized data. Normally
1057 `".data"' is right. */
1058 #define DATA_SECTION_ASM_OP "\t.data"
1060 /* If defined, a C expression whose value is a string containing the
1061 assembler operation to identify the following data as
1062 uninitialized global data. If not defined, and neither
1063 `ASM_OUTPUT_BSS' nor `ASM_OUTPUT_ALIGNED_BSS' are defined,
1064 uninitialized global data will be output in the data section if
1065 `-fno-common' is passed, otherwise `ASM_OUTPUT_COMMON' will be
1066 used. */
1067 #define BSS_SECTION_ASM_OP "\t.section .bss"
1069 /*}}}*/ \f
1070 /*{{{ The Overall Framework of an Assembler File. */
1072 /* A C string constant describing how to begin a comment in the target
1073 assembler language. The compiler assumes that the comment will end at the
1074 end of the line. */
1075 #define ASM_COMMENT_START ";"
1077 /* A C string constant for text to be output before each `asm' statement or
1078 group of consecutive ones. Normally this is `"#APP"', which is a comment
1079 that has no effect on most assemblers but tells the GNU assembler that it
1080 must check the lines that follow for all valid assembler constructs. */
1081 #define ASM_APP_ON "#APP\n"
1083 /* A C string constant for text to be output after each `asm' statement or
1084 group of consecutive ones. Normally this is `"#NO_APP"', which tells the
1085 GNU assembler to resume making the time-saving assumptions that are valid
1086 for ordinary compiler output. */
1087 #define ASM_APP_OFF "#NO_APP\n"
1089 /*}}}*/ \f
1090 /*{{{ Output and Generation of Labels. */
1092 /* Globalizing directive for a label. */
1093 #define GLOBAL_ASM_OP "\t.globl "
1095 /*}}}*/ \f
1096 /*{{{ Output of Assembler Instructions. */
1098 /* A C compound statement to output to stdio stream STREAM the assembler syntax
1099 for an instruction operand X. X is an RTL expression.
1101 CODE is a value that can be used to specify one of several ways of printing
1102 the operand. It is used when identical operands must be printed differently
1103 depending on the context. CODE comes from the `%' specification that was
1104 used to request printing of the operand. If the specification was just
1105 `%DIGIT' then CODE is 0; if the specification was `%LTR DIGIT' then CODE is
1106 the ASCII code for LTR.
1108 If X is a register, this macro should print the register's name. The names
1109 can be found in an array `reg_names' whose type is `char *[]'. `reg_names'
1110 is initialized from `REGISTER_NAMES'.
1112 When the machine description has a specification `%PUNCT' (a `%' followed by
1113 a punctuation character), this macro is called with a null pointer for X and
1114 the punctuation character for CODE. */
1115 #define PRINT_OPERAND(STREAM, X, CODE) fr30_print_operand (STREAM, X, CODE)
1117 /* A C expression which evaluates to true if CODE is a valid punctuation
1118 character for use in the `PRINT_OPERAND' macro. If
1119 `PRINT_OPERAND_PUNCT_VALID_P' is not defined, it means that no punctuation
1120 characters (except for the standard one, `%') are used in this way. */
1121 #define PRINT_OPERAND_PUNCT_VALID_P(CODE) (CODE == '#')
1123 /* A C compound statement to output to stdio stream STREAM the assembler syntax
1124 for an instruction operand that is a memory reference whose address is X. X
1125 is an RTL expression. */
1127 #define PRINT_OPERAND_ADDRESS(STREAM, X) fr30_print_operand_address (STREAM, X)
1129 /* If defined, C string expressions to be used for the `%R', `%L', `%U', and
1130 `%I' options of `asm_fprintf' (see `final.c'). These are useful when a
1131 single `md' file must support multiple assembler formats. In that case, the
1132 various `tm.h' files can define these macros differently.
1134 USER_LABEL_PREFIX is defined in svr4.h. */
1135 #define REGISTER_PREFIX "%"
1136 #define LOCAL_LABEL_PREFIX "."
1137 #define USER_LABEL_PREFIX ""
1138 #define IMMEDIATE_PREFIX ""
1140 /*}}}*/ \f
1141 /*{{{ Output of Dispatch Tables. */
1143 /* This macro should be provided on machines where the addresses in a dispatch
1144 table are relative to the table's own address.
1146 The definition should be a C statement to output to the stdio stream STREAM
1147 an assembler pseudo-instruction to generate a difference between two labels.
1148 VALUE and REL are the numbers of two internal labels. The definitions of
1149 these labels are output using `(*targetm.asm_out.internal_label)', and they must be
1150 printed in the same way here. For example,
1152 fprintf (STREAM, "\t.word L%d-L%d\n", VALUE, REL) */
1153 #define ASM_OUTPUT_ADDR_DIFF_ELT(STREAM, BODY, VALUE, REL) \
1154 fprintf (STREAM, "\t.word .L%d-.L%d\n", VALUE, REL)
1156 /* This macro should be provided on machines where the addresses in a dispatch
1157 table are absolute.
1159 The definition should be a C statement to output to the stdio stream STREAM
1160 an assembler pseudo-instruction to generate a reference to a label. VALUE
1161 is the number of an internal label whose definition is output using
1162 `(*targetm.asm_out.internal_label)'. For example,
1164 fprintf (STREAM, "\t.word L%d\n", VALUE) */
1165 #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE) \
1166 fprintf (STREAM, "\t.word .L%d\n", VALUE)
1168 /*}}}*/ \f
1169 /*{{{ Assembler Commands for Alignment. */
1171 /* A C statement to output to the stdio stream STREAM an assembler command to
1172 advance the location counter to a multiple of 2 to the POWER bytes. POWER
1173 will be a C expression of type `int'. */
1174 #define ASM_OUTPUT_ALIGN(STREAM, POWER) \
1175 fprintf ((STREAM), "\t.p2align %d\n", (POWER))
1177 /*}}}*/ \f
1178 /*{{{ Miscellaneous Parameters. */
1180 /* An alias for a machine mode name. This is the machine mode that elements of
1181 a jump-table should have. */
1182 #define CASE_VECTOR_MODE SImode
1184 /* The maximum number of bytes that a single instruction can move quickly from
1185 memory to memory. */
1186 #define MOVE_MAX 8
1188 /* A C expression which is nonzero if on this machine it is safe to "convert"
1189 an integer of INPREC bits to one of OUTPREC bits (where OUTPREC is smaller
1190 than INPREC) by merely operating on it as if it had only OUTPREC bits.
1192 On many machines, this expression can be 1.
1194 When `TRULY_NOOP_TRUNCATION' returns 1 for a pair of sizes for modes for
1195 which `MODES_TIEABLE_P' is 0, suboptimal code can result. If this is the
1196 case, making `TRULY_NOOP_TRUNCATION' return 0 in such cases may improve
1197 things. */
1198 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
1200 /* An alias for the machine mode for pointers. On most machines, define this
1201 to be the integer mode corresponding to the width of a hardware pointer;
1202 `SImode' on 32-bit machine or `DImode' on 64-bit machines. On some machines
1203 you must define this to be one of the partial integer modes, such as
1204 `PSImode'.
1206 The width of `Pmode' must be at least as large as the value of
1207 `POINTER_SIZE'. If it is not equal, you must define the macro
1208 `POINTERS_EXTEND_UNSIGNED' to specify how pointers are extended to `Pmode'. */
1209 #define Pmode SImode
1211 /* An alias for the machine mode used for memory references to functions being
1212 called, in `call' RTL expressions. On most machines this should be
1213 `QImode'. */
1214 #define FUNCTION_MODE QImode
1216 /* If cross-compiling, don't require stdio.h etc to build libgcc.a. */
1217 #if defined CROSS_COMPILE && ! defined inhibit_libc
1218 #define inhibit_libc
1219 #endif
1221 /*}}}*/ \f
1222 /*{{{ Exported variables */
1224 /* Define the information needed to generate branch and scc insns. This is
1225 stored from the compare operation. Note that we can't use "rtx" here
1226 since it hasn't been defined! */
1228 extern struct rtx_def * fr30_compare_op0;
1229 extern struct rtx_def * fr30_compare_op1;
1231 /*}}}*/ \f
1232 /*{{{ PERDICATE_CODES. */
1234 #define PREDICATE_CODES \
1235 { "stack_add_operand", { CONST_INT }}, \
1236 { "high_register_operand", { REG }}, \
1237 { "low_register_operand", { REG }}, \
1238 { "call_operand", { MEM }}, \
1239 { "fp_displacement_operand", { CONST_INT }}, \
1240 { "sp_displacement_operand", { CONST_INT }}, \
1241 { "di_operand", { CONST_INT, CONST_DOUBLE, REG, MEM }}, \
1242 { "nonimmediate_di_operand", { REG, MEM }}, \
1243 { "add_immediate_operand", { REG, CONST_INT }},
1245 /*}}}*/ \f
1247 /* Local Variables: */
1248 /* folded-file: t */
1249 /* End: */