Turn HARD_REGNO_NREGS into a target hook
[official-gcc.git] / gcc / config / visium / visium.h
blob4e7485e3cd413aba324e5b0919d4f66e8fbd0225
1 /* Definitions of target machine for Visium.
2 Copyright (C) 2002-2017 Free Software Foundation, Inc.
3 Contributed by C.Nettleton, J.P.Parkes and P.Garbett.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published
9 by the Free Software Foundation; either version 3, or (at your
10 option) any later version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
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/>. */
22 /* Controlling the Compilation Driver, `gcc' */
24 /* Pass -mtune=* options to the assembler */
25 #undef ASM_SPEC
26 #define ASM_SPEC "%{mcpu=gr6:-mtune=gr6; :-mtune=mcm}"
28 /* Define symbols for the preprocessor. */
29 #define CPP_SPEC "%{mcpu=gr6:-D__gr6__; :-D__gr5__}"
31 /* Targets of a link */
32 #define LIB_SPEC \
33 "--start-group -lc %{msim:-lsim; mdebug:-ldebug; :-lserial} --end-group"
35 #define ENDFILE_SPEC "crtend.o%s crtn.o%s"
36 #define STARTFILE_SPEC "crti.o%s crtbegin.o%s crt0.o%s"
38 /* Run-time Target Specification */
40 /* TARGET_CPU_CPP_BUILTINS() This function-like macro expands to a
41 block of code that defines built-in preprocessor macros and
42 assertions for the target cpu, using the functions builtin_define,
43 builtin_define_std and builtin_assert. When the front end calls
44 this macro it provides a trailing semicolon, and since it has
45 finished command line option processing your code can use those
46 results freely. builtin_assert takes a string in the form you pass
47 to the command-line option -A, such as cpu=mips, and creates the
48 assertion. builtin_define takes a string in the form accepted by
49 option -D and unconditionally defines the macro.
51 builtin_define_std takes a string representing the name of an
52 object-like macro. If it doesn't lie in the user's namespace,
53 builtin_define_std defines it unconditionally. Otherwise, it
54 defines a version with two leading underscores, and another version
55 with two leading and trailing underscores, and defines the original
56 only if an ISO standard was not requested on the command line. For
57 example, passing unix defines __unix, __unix__ and possibly unix;
58 passing _mips defines __mips, __mips__ and possibly _mips, and
59 passing _ABI64 defines only _ABI64.
61 You can also test for the C dialect being compiled. The variable
62 c_language is set to one of clk_c, clk_cplusplus or
63 clk_objective_c. Note that if we are preprocessing assembler, this
64 variable will be clk_c but the function-like macro
65 preprocessing_asm_p() will return true, so you might want to check
66 for that first. If you need to check for strict ANSI, the variable
67 flag_iso can be used. The function-like macro
68 preprocessing_trad_p() can be used to check for traditional
69 preprocessing. */
70 #define TARGET_CPU_CPP_BUILTINS() \
71 do \
72 { \
73 builtin_define ("__VISIUM__"); \
74 if (TARGET_MCM) \
75 builtin_define ("__VISIUM_ARCH_MCM__"); \
76 if (TARGET_BMI) \
77 builtin_define ("__VISIUM_ARCH_BMI__"); \
78 if (TARGET_FPU_IEEE) \
79 builtin_define ("__VISIUM_ARCH_FPU_IEEE__"); \
80 } \
81 while (0)
83 /* Recast the cpu class to be the cpu attribute.
84 Every file includes us, but not every file includes insn-attr.h. */
85 #define visium_cpu_attr ((enum attr_cpu) visium_cpu)
87 /* Defining data structures for per-function information.
89 If the target needs to store information on a per-function basis,
90 GCC provides a macro and a couple of variables to allow this. Note,
91 just using statics to store the information is a bad idea, since
92 GCC supports nested functions, so you can be halfway through
93 encoding one function when another one comes along.
95 GCC defines a data structure called struct function which contains
96 all of the data specific to an individual function. This structure
97 contains a field called machine whose type is struct
98 machine_function *, which can be used by targets to point to their
99 own specific data.
101 If a target needs per-function specific data it should define the
102 type struct machine_function and also the macro
103 INIT_EXPANDERS. This macro should be used to initialize the
104 function pointer init_machine_status. This pointer is explained
105 below.
107 One typical use of per-function, target specific data is to create
108 an RTX to hold the register containing the function's return
109 address. This RTX can then be used to implement the
110 __builtin_return_address function, for level 0.
112 Note--earlier implementations of GCC used a single data area to
113 hold all of the per-function information. Thus when processing of a
114 nested function began the old per-function data had to be pushed
115 onto a stack, and when the processing was finished, it had to be
116 popped off the stack. GCC used to provide function pointers called
117 save_machine_status and restore_machine_status to handle the saving
118 and restoring of the target specific information. Since the single
119 data area approach is no longer used, these pointers are no longer
120 supported.
122 The macro and function pointers are described below.
124 INIT_EXPANDERS:
126 Macro called to initialize any target specific information. This
127 macro is called once per function, before generation of any RTL has
128 begun. The intention of this macro is to allow the initialization
129 of the function pointers below.
131 init_machine_status:
132 This is a void (*)(struct function *) function pointer. If this
133 pointer is non-NULL it will be called once per function, before
134 function compilation starts, in order to allow the target to
135 perform any target specific initialization of the struct function
136 structure. It is intended that this would be used to initialize the
137 machine of that structure. struct machine_function structures are
138 expected to be freed by GC. Generally, any memory that they
139 reference must be allocated by using ggc_alloc, including the
140 structure itself. */
142 #define INIT_EXPANDERS visium_init_expanders ()
144 /* Storage Layout
146 Note that the definitions of the macros in this table which are
147 sizes or alignments measured in bits do not need to be constant.
148 They can be C expressions that refer to static variables, such as
149 the `target_flags'.
151 `BITS_BIG_ENDIAN'
153 Define this macro to have the value 1 if the most significant bit
154 in a byte has the lowest number; otherwise define it to have the
155 value zero. This means that bit-field instructions count from the
156 most significant bit. If the machine has no bit-field
157 instructions, then this must still be defined, but it doesn't
158 matter which value it is defined to. This macro need not be a
159 constant.
161 This macro does not affect the way structure fields are packed into
162 bytes or words; that is controlled by `BYTES_BIG_ENDIAN'. */
163 #define BITS_BIG_ENDIAN 1
165 /* `BYTES_BIG_ENDIAN'
167 Define this macro to have the value 1 if the most significant byte
168 in a word has the lowest number. This macro need not be a
169 constant.*/
170 #define BYTES_BIG_ENDIAN 1
172 /* `WORDS_BIG_ENDIAN'
174 Define this macro to have the value 1 if, in a multiword object,
175 the most significant word has the lowest number. This applies to
176 both memory locations and registers; GNU CC fundamentally assumes
177 that the order of words in memory is the same as the order in
178 registers. This macro need not be a constant. */
179 #define WORDS_BIG_ENDIAN 1
181 /* `BITS_PER_WORD'
183 Number of bits in a word; normally 32. */
184 #define BITS_PER_WORD 32
186 /* `UNITS_PER_WORD'
188 Number of storage units in a word; normally 4. */
189 #define UNITS_PER_WORD 4
191 /* `POINTER_SIZE'
193 Width of a pointer, in bits. You must specify a value no wider
194 than the width of `Pmode'. If it is not equal to the width of
195 `Pmode', you must define `POINTERS_EXTEND_UNSIGNED'. */
196 #define POINTER_SIZE 32
198 /* `PARM_BOUNDARY'
200 Normal alignment required for function parameters on the stack, in
201 bits. All stack parameters receive at least this much alignment
202 regardless of data type. On most machines, this is the same as the
203 size of an integer. */
204 #define PARM_BOUNDARY 32
206 /* `STACK_BOUNDARY'
208 Define this macro if you wish to preserve a certain alignment for
209 the stack pointer. The definition is a C expression for the
210 desired alignment (measured in bits).
212 If `PUSH_ROUNDING' is not defined, the stack will always be aligned
213 to the specified boundary. If `PUSH_ROUNDING' is defined and
214 specifies a less strict alignment than `STACK_BOUNDARY', the stack
215 may be momentarily unaligned while pushing arguments. */
216 #define STACK_BOUNDARY 32
218 #define VISIUM_STACK_ALIGN(LOC) (((LOC) + 3) & ~3)
220 /* `FUNCTION_BOUNDARY'
222 Alignment required for a function entry point, in bits. */
223 #define FUNCTION_BOUNDARY 32
225 /* `BIGGEST_ALIGNMENT'
227 Biggest alignment that any data type can require on this machine,
228 in bits. */
229 #define BIGGEST_ALIGNMENT 32
231 /* `DATA_ALIGNMENT (TYPE, BASIC-ALIGN)`
233 If defined, a C expression to compute the alignment for a variable
234 in the static store. TYPE is the data type, and BASIC-ALIGN is
235 the alignment that the object would ordinarily have. The value of
236 this macro is used instead of that alignment to align the object. */
237 #define DATA_ALIGNMENT(TYPE,ALIGN) visium_data_alignment (TYPE, ALIGN)
239 /* `CONSTANT_ALIGNMENT (CONSTANT, BASIC-ALIGN)`
241 If defined, a C expression to compute the alignment given to a
242 constant that is being placed in memory. CONSTANT is the constant
243 and BASIC-ALIGN is the alignment that the object would ordinarily
244 have. The value of this macro is used instead of that alignment to
245 align the object. */
246 #define CONSTANT_ALIGNMENT(EXP,ALIGN) \
247 visium_data_alignment (TREE_TYPE (EXP), ALIGN)
249 /* `LOCAL_ALIGNMENT (TYPE, BASIC-ALIGN)`
251 If defined, a C expression to compute the alignment for a variable
252 in the local store. TYPE is the data type, and BASIC-ALIGN is the
253 alignment that the object would ordinarily have. The value of this
254 macro is used instead of that alignment to align the object. */
255 #define LOCAL_ALIGNMENT(TYPE,ALIGN) visium_data_alignment (TYPE, ALIGN)
257 /* `EMPTY_FIELD_BOUNDARY'
259 Alignment in bits to be given to a structure bit field that follows
260 an empty field such as `int : 0;'.
262 Note that `PCC_BITFIELD_TYPE_MATTERS' also affects the alignment
263 that results from an empty field. */
264 #define EMPTY_FIELD_BOUNDARY 32
266 /* `STRICT_ALIGNMENT'
268 Define this macro to be the value 1 if instructions will fail to
269 work if given data not on the nominal alignment. If instructions
270 will merely go slower in that case, define this macro as 0. */
271 #define STRICT_ALIGNMENT 1
273 /* `TARGET_FLOAT_FORMAT'
275 A code distinguishing the floating point format of the target
276 machine. There are three defined values:
278 `IEEE_FLOAT_FORMAT'
279 This code indicates IEEE floating point. It is the default;
280 there is no need to define this macro when the format is IEEE.
282 `VAX_FLOAT_FORMAT'
283 This code indicates the peculiar format used on the Vax.
285 `UNKNOWN_FLOAT_FORMAT'
286 This code indicates any other format.
288 The value of this macro is compared with `HOST_FLOAT_FORMAT' to
289 determine whether the target machine has the same format as the
290 host machine. If any other formats are actually in use on
291 supported machines, new codes should be defined for them.
293 The ordering of the component words of floating point values
294 stored in memory is controlled by `FLOAT_WORDS_BIG_ENDIAN' for the
295 target machine and `HOST_FLOAT_WORDS_BIG_ENDIAN' for the host. */
296 #define TARGET_FLOAT_FORMAT IEEE_FLOAT_FORMAT
297 #define UNITS_PER_HWFPVALUE 4
299 /* Layout of Source Language Data Types
301 These macros define the sizes and other characteristics of the
302 standard basic data types used in programs being compiled. Unlike
303 the macros in the previous section, these apply to specific
304 features of C and related languages, rather than to fundamental
305 aspects of storage layout. */
307 /* `INT_TYPE_SIZE'
309 A C expression for the size in bits of the type `int' on the target
310 machine. If you don't define this, the default is one word. */
311 #define INT_TYPE_SIZE 32
313 /* `SHORT_TYPE_SIZE'
315 A C expression for the size in bits of the type `short' on the
316 target machine. If you don't define this, the default is half a
317 word. (If this would be less than one storage unit, it is rounded
318 up to one unit.) */
319 #define SHORT_TYPE_SIZE 16
321 /* `LONG_TYPE_SIZE'
323 A C expression for the size in bits of the type `long' on the
324 target machine. If you don't define this, the default is one word. */
325 #define LONG_TYPE_SIZE 32
327 /* `LONG_LONG_TYPE_SIZE'
329 A C expression for the size in bits of the type `long long' on the
330 target machine. If you don't define this, the default is two
331 words. If you want to support GNU Ada on your machine, the value
332 of macro must be at least 64. */
333 #define LONG_LONG_TYPE_SIZE 64
335 /* `CHAR_TYPE_SIZE'
337 A C expression for the size in bits of the type `char' on the
338 target machine. If you don't define this, the default is one
339 quarter of a word. (If this would be less than one storage unit,
340 it is rounded up to one unit.) */
341 #define CHAR_TYPE_SIZE 8
343 /* `FLOAT_TYPE_SIZE'
345 A C expression for the size in bits of the type `float' on the
346 target machine. If you don't define this, the default is one word. */
347 #define FLOAT_TYPE_SIZE 32
349 /* `DOUBLE_TYPE_SIZE'
351 A C expression for the size in bits of the type `double' on the
352 target machine. If you don't define this, the default is two
353 words. */
354 #define DOUBLE_TYPE_SIZE 64
356 /* `LONG_DOUBLE_TYPE_SIZE'
358 A C expression for the size in bits of the type `long double' on
359 the target machine. If you don't define this, the default is two
360 words. */
361 #define LONG_DOUBLE_TYPE_SIZE DOUBLE_TYPE_SIZE
363 /* `WIDEST_HARDWARE_FP_SIZE'
365 A C expression for the size in bits of the widest floating-point
366 format supported by the hardware. If you define this macro, you
367 must specify a value less than or equal to the value of
368 `LONG_DOUBLE_TYPE_SIZE'. If you do not define this macro, the
369 value of `LONG_DOUBLE_TYPE_SIZE' is the default. */
371 /* `DEFAULT_SIGNED_CHAR'
373 An expression whose value is 1 or 0, according to whether the type
374 `char' should be signed or unsigned by default. The user can
375 always override this default with the options `-fsigned-char' and
376 `-funsigned-char'. */
377 #define DEFAULT_SIGNED_CHAR 0
379 /* `SIZE_TYPE'
381 A C expression for a string describing the name of the data type to
382 use for size values. The typedef name `size_t' is defined using
383 the contents of the string.
385 The string can contain more than one keyword. If so, separate them
386 with spaces, and write first any length keyword, then `unsigned' if
387 appropriate, and finally `int'. The string must exactly match one
388 of the data type names defined in the function
389 `init_decl_processing' in the file `c-decl.c'. You may not omit
390 `int' or change the order--that would cause the compiler to crash
391 on startup.
393 If you don't define this macro, the default is `"long unsigned
394 int"'. */
395 #define SIZE_TYPE "unsigned int"
397 /* `PTRDIFF_TYPE'
399 A C expression for a string describing the name of the data type to
400 use for the result of subtracting two pointers. The typedef name
401 `ptrdiff_t' is defined using the contents of the string. See
402 `SIZE_TYPE' above for more information.
404 If you don't define this macro, the default is `"long int"'. */
405 #define PTRDIFF_TYPE "long int"
407 /* Newlib uses the unsigned type corresponding to ptrdiff_t for
408 uintptr_t; this is the same as size_t for most newlib-using
409 targets, but not for us. */
410 #define UINTPTR_TYPE "long unsigned int"
412 /* `WCHAR_TYPE'
414 A C expression for a string describing the name of the data type to
415 use for wide characters. The typedef name `wchar_t' is defined
416 using the contents of the string. See `SIZE_TYPE' above for more
417 information.
419 If you don't define this macro, the default is `"int"'. */
420 #define WCHAR_TYPE "short int"
422 /* `WCHAR_TYPE_SIZE'
424 A C expression for the size in bits of the data type for wide
425 characters. This is used in `cpp', which cannot make use of
426 `WCHAR_TYPE'. */
427 #define WCHAR_TYPE_SIZE 16
429 /* Register Usage
431 This section explains how to describe what registers the target
432 machine has, and how (in general) they can be used. */
434 /* `FIRST_PSEUDO_REGISTER'
436 Number of actual hardware registers.
437 The hardware registers are assigned numbers for the compiler
438 from 0 to just below FIRST_PSEUDO_REGISTER.
439 All registers that the compiler knows about must be given numbers,
440 even those that are not normally considered general registers.
442 Register 51 is used as the argument pointer register.
443 Register 52 is used as the soft frame pointer register. */
444 #define FIRST_PSEUDO_REGISTER 53
446 #define RETURN_REGNUM 1
447 #define PROLOGUE_TMP_REGNUM 9
448 #define LINK_REGNUM 21
449 #define GP_LAST_REGNUM 31
450 #define GP_REGISTER_P(REGNO) \
451 (((unsigned) (REGNO)) <= GP_LAST_REGNUM)
453 #define MDB_REGNUM 32
454 #define MDC_REGNUM 33
456 #define FP_FIRST_REGNUM 34
457 #define FP_LAST_REGNUM 49
458 #define FP_RETURN_REGNUM (FP_FIRST_REGNUM + 1)
459 #define FP_REGISTER_P(REGNO) \
460 (FP_FIRST_REGNUM <= (REGNO) && (REGNO) <= FP_LAST_REGNUM)
462 #define FLAGS_REGNUM 50
464 /* `FIXED_REGISTERS'
466 An initializer that says which registers are used for fixed
467 purposes all throughout the compiled code and are therefore not
468 available for general allocation. These would include the stack
469 pointer, the frame pointer (except on machines where that can be
470 used as a general register when no frame pointer is needed), the
471 program counter on machines where that is considered one of the
472 addressable registers, and any other numbered register with a
473 standard use.
475 This information is expressed as a sequence of numbers, separated
476 by commas and surrounded by braces. The Nth number is 1 if
477 register N is fixed, 0 otherwise.
479 The table initialized from this macro, and the table initialized by
480 the following one, may be overridden at run time either
481 automatically, by the actions of the macro
482 `CONDITIONAL_REGISTER_USAGE', or by the user with the command
483 options `-ffixed-REG', `-fcall-used-REG' and `-fcall-saved-REG'.
485 r0 and f0 are immutable registers hardwired to 0.
486 r21 is the link register used for procedure linkage.
487 r23 is the stack pointer register.
488 r29 and r30 hold the interrupt context.
489 mdc is a read-only register because the writemdc instruction
490 terminates all the operations of the EAM on the GR6. */
491 #define FIXED_REGISTERS \
492 { 1, 0, 0, 0, 0, 0, 0, 0, /* r0 .. r7 */ \
493 0, 0, 0, 0, 0, 0, 0, 0, /* r8 .. r15 */ \
494 0, 0, 0, 0, 0, 1, 0, 1, /* r16 .. r23 */ \
495 0, 0, 0, 0, 0, 1, 1, 0, /* r24 .. r31 */ \
496 0, 1, /* mdb, mdc */ \
497 1, 0, 0, 0, 0, 0, 0, 0, /* f0 .. f7 */ \
498 0, 0, 0, 0, 0, 0, 0, 0, /* f8 .. f15 */ \
499 1, 1, 1 } /* flags, arg, frame */
501 /* `CALL_USED_REGISTERS'
503 Like `FIXED_REGISTERS' but has 1 for each register that is
504 clobbered (in general) by function calls as well as for fixed
505 registers. This macro therefore identifies the registers that are
506 not available for general allocation of values that must live
507 across function calls.
509 If a register has 0 in `CALL_USED_REGISTERS', the compiler
510 automatically saves it on function entry and restores it on
511 function exit, if the register is used within the function. */
512 #define CALL_USED_REGISTERS \
513 { 1, 1, 1, 1, 1, 1, 1, 1, /* r0 .. r7 */ \
514 1, 1, 1, 0, 0, 0, 0, 0, /* r8 .. r15 */ \
515 0, 0, 0, 0, 1, 1, 0, 1, /* r16 .. r23 */ \
516 1, 1, 1, 1, 1, 1, 1, 1, /* r24 .. r31 */ \
517 1, 1, /* mdb, mdc */ \
518 1, 1, 1, 1, 1, 1, 1, 1, /* f0 .. f7 */ \
519 1, 0, 0, 0, 0, 0, 0, 0, /* f8 .. f15 */ \
520 1, 1, 1 } /* flags, arg, frame */
522 /* Like `CALL_USED_REGISTERS' except this macro doesn't require that
523 the entire set of `FIXED_REGISTERS' be included.
524 (`CALL_USED_REGISTERS' must be a superset of `FIXED_REGISTERS').
525 This macro is optional. If not specified, it defaults to the value
526 of `CALL_USED_REGISTERS'. */
527 #define CALL_REALLY_USED_REGISTERS \
528 { 0, 1, 1, 1, 1, 1, 1, 1, /* r0 .. r7 */ \
529 1, 1, 1, 0, 0, 0, 0, 0, /* r8 .. r15 */ \
530 0, 0, 0, 0, 1, 0, 0, 0, /* r16 .. r23 */ \
531 1, 1, 1, 1, 1, 0, 0, 1, /* r24 .. r31 */ \
532 1, 1, /* mdb, mdc */ \
533 1, 1, 1, 1, 1, 1, 1, 1, /* f0 .. f7 */ \
534 1, 0, 0, 0, 0, 0, 0, 0, /* f8 .. f15 */ \
535 1, 0, 0 } /* flags, arg, frame */
537 /* `REG_ALLOC_ORDER'
539 If defined, an initializer for a vector of integers, containing the
540 numbers of hard registers in the order in which GCC should prefer
541 to use them (from most preferred to least).
543 If this macro is not defined, registers are used lowest numbered
544 first (all else being equal). */
545 #define REG_ALLOC_ORDER \
546 { 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, /* r10 .. r1 */ \
547 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, /* r11 .. r20 */ \
548 22, /* fp */ \
549 24, 25, 26, 27, 28, /* r24 .. r28 */ \
550 31, /* r31 */ \
551 32, 33, /* mdb, mdc */ \
552 42, 41, 40, 39, 38, 37, 36, 35, /* f8 .. f1 */ \
553 43, 44, 45, 46, 47, 48, 49, /* f9 .. f15 */ \
554 21, 23, /* lr, sp */ \
555 29, 30, /* r29, r30 */ \
556 50, 51, 52, /* flags, arg, frame */ \
557 0, 34 } /* r0, f0 */
559 /* `HARD_REGNO_RENAME_OK (OLD_REG, NEW_REG)'
561 A C expression which is nonzero if hard register NEW_REG can be
562 considered for use as a rename register for hard register OLD_REG. */
563 #define HARD_REGNO_RENAME_OK(OLD_REG, NEW_REG) \
564 visium_hard_regno_rename_ok (OLD_REG, NEW_REG)
566 /* Register Classes
568 On many machines, the numbered registers are not all equivalent.
569 For example, certain registers may not be allowed for indexed
570 addressing; certain registers may not be allowed in some
571 instructions. These machine restrictions are described to the
572 compiler using "register classes".
574 `enum reg_class'
576 An enumeral type that must be defined with all the register class
577 names as enumeral values. `NO_REGS' must be first. `ALL_REGS'
578 must be the last register class, followed by one more enumeral
579 value, `LIM_REG_CLASSES', which is not a register class but rather
580 tells how many classes there are.
582 Each register class has a number, which is the value of casting the
583 class name to type `int'. The number serves as an index in many of
584 the tables described below. */
586 enum reg_class
588 NO_REGS,
589 MDB,
590 MDC,
591 FP_REGS,
592 FLAGS,
596 SIBCALL_REGS,
597 LOW_REGS,
598 GENERAL_REGS,
599 ALL_REGS,
600 LIM_REG_CLASSES
603 /* `N_REG_CLASSES'
605 The number of distinct register classes, defined as follows. */
606 #define N_REG_CLASSES (int) LIM_REG_CLASSES
608 /* `REG_CLASS_NAMES'
610 An initializer containing the names of the register classes as C
611 string constants. These names are used in writing some of the
612 debugging dumps. */
613 #define REG_CLASS_NAMES \
614 {"NO_REGS", "MDB", "MDC", "FP_REGS", "FLAGS", "R1", "R2", "R3", \
615 "SIBCALL_REGS", "LOW_REGS", "GENERAL_REGS", "ALL_REGS"}
617 /* `REG_CLASS_CONTENTS'
619 An initializer containing the contents of the register classes, as
620 integers which are bit masks. The Nth integer specifies the
621 contents of class N. The way the integer MASK is interpreted is
622 that register R is in the class if `MASK & (1 << R)' is 1.
624 When the machine has more than 32 registers, an integer does not
625 suffice. Then the integers are replaced by sub-initializers,
626 braced groupings containing several integers. Each sub-initializer
627 must be suitable as an initializer for the type `HARD_REG_SET'
628 which is defined in `hard-reg-set.h'. */
629 #define REG_CLASS_CONTENTS { \
630 {0x00000000, 0x00000000}, /* NO_REGS */ \
631 {0x00000000, 0x00000001}, /* MDB */ \
632 {0x00000000, 0x00000002}, /* MDC */ \
633 {0x00000000, 0x0003fffc}, /* FP_REGS */ \
634 {0x00000000, 0x00040000}, /* FLAGS */ \
635 {0x00000002, 0x00000000}, /* R1 */ \
636 {0x00000004, 0x00000000}, /* R2 */ \
637 {0x00000008, 0x00000000}, /* R3 */ \
638 {0x000005ff, 0x00000000}, /* SIBCALL_REGS */ \
639 {0x1fffffff, 0x00000000}, /* LOW_REGS */ \
640 {0xffffffff, 0x00180000}, /* GENERAL_REGS */ \
641 {0xffffffff, 0x001fffff}} /* ALL_REGS */
643 /* `REGNO_REG_CLASS (REGNO)'
645 A C expression whose value is a register class containing hard
646 register REGNO. In general there is more than one such class;
647 choose a class which is "minimal", meaning that no smaller class
648 also contains the register. */
649 #define REGNO_REG_CLASS(REGNO) \
650 ((REGNO) == MDB_REGNUM ? MDB : \
651 (REGNO) == MDC_REGNUM ? MDC : \
652 FP_REGISTER_P (REGNO) ? FP_REGS : \
653 (REGNO) == FLAGS_REGNUM ? FLAGS : \
654 (REGNO) == 1 ? R1 : \
655 (REGNO) == 2 ? R2 : \
656 (REGNO) == 3 ? R3 : \
657 (REGNO) <= 8 || (REGNO) == 10 ? SIBCALL_REGS : \
658 (REGNO) <= 28 ? LOW_REGS : \
659 GENERAL_REGS)
661 /* `BASE_REG_CLASS'
663 A macro whose definition is the name of the class to which a valid
664 base register must belong. A base register is one used in an
665 address which is the register value plus a displacement. */
666 #define BASE_REG_CLASS GENERAL_REGS
668 #define BASE_REGISTER_P(REGNO) \
669 (GP_REGISTER_P (REGNO) \
670 || (REGNO) == ARG_POINTER_REGNUM \
671 || (REGNO) == FRAME_POINTER_REGNUM)
673 /* `INDEX_REG_CLASS'
675 A macro whose definition is the name of the class to which a valid
676 index register must belong. An index register is one used in an
677 address where its value is either multiplied by a scale factor or
678 added to another register (as well as added to a displacement). */
679 #define INDEX_REG_CLASS NO_REGS
681 /* `REGNO_OK_FOR_BASE_P (NUM)'
683 A C expression which is nonzero if register number NUM is suitable
684 for use as a base register in operand addresses. It may be either
685 a suitable hard register or a pseudo register that has been
686 allocated such a hard register. */
687 #define REGNO_OK_FOR_BASE_P(REGNO) \
688 (BASE_REGISTER_P (REGNO) || BASE_REGISTER_P ((unsigned)reg_renumber[REGNO]))
690 /* `REGNO_OK_FOR_INDEX_P (NUM)'
692 A C expression which is nonzero if register number NUM is suitable
693 for use as an index register in operand addresses. It may be
694 either a suitable hard register or a pseudo register that has been
695 allocated such a hard register.
697 The difference between an index register and a base register is
698 that the index register may be scaled. If an address involves the
699 sum of two registers, neither one of them scaled, then either one
700 may be labeled the "base" and the other the "index"; but whichever
701 labeling is used must fit the machine's constraints of which
702 registers may serve in each capacity. The compiler will try both
703 labelings, looking for one that is valid, and will reload one or
704 both registers only if neither labeling works. */
705 #define REGNO_OK_FOR_INDEX_P(REGNO) 0
707 /* `PREFERRED_RELOAD_CLASS (X, CLASS)'
709 A C expression that places additional restrictions on the register
710 class to use when it is necessary to copy value X into a register
711 in class CLASS. The value is a register class; perhaps CLASS, or
712 perhaps another, smaller class.
714 Sometimes returning a more restrictive class makes better code.
715 For example, on the 68000, when X is an integer constant that is in
716 range for a `moveq' instruction, the value of this macro is always
717 `DATA_REGS' as long as CLASS includes the data registers.
718 Requiring a data register guarantees that a `moveq' will be used.
720 If X is a `const_double', by returning `NO_REGS' you can force X
721 into a memory constant. This is useful on certain machines where
722 immediate floating values cannot be loaded into certain kinds of
723 registers. */
724 #define PREFERRED_RELOAD_CLASS(X,CLASS) CLASS
726 /* `CANNOT_CHANGE_MODE_CLASS (from, to, class)
728 If defined, a C expression that returns nonzero for a `class' for
729 which a change from mode `from' to mode `to' is invalid.
731 It's not obvious from the above that MDB cannot change mode. However
732 difficulties arise from expressions of the form
734 (subreg:SI (reg:DI R_MDB) 0)
736 There is no way to convert that reference to a single machine
737 register and, without the following definition, reload will quietly
738 convert it to
740 (reg:SI R_MDB) */
741 #define CANNOT_CHANGE_MODE_CLASS(FROM,TO,CLASS) \
742 (CLASS == MDB ? (GET_MODE_SIZE (FROM) != GET_MODE_SIZE (TO)) : 0)
744 #define CLASS_MAX_NREGS(CLASS, MODE) \
745 ((CLASS) == MDB ? \
746 ((GET_MODE_SIZE (MODE) + 2 * UNITS_PER_WORD - 1) / (2 * UNITS_PER_WORD)) \
747 : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
749 /* Stack Layout and Calling Conventions
751 Basic Stack Layout
753 `STACK_GROWS_DOWNWARD'
754 Define this macro if pushing a word onto the stack moves the stack
755 pointer to a smaller address. */
756 #define STACK_GROWS_DOWNWARD 1
758 /* `STARTING_FRAME_OFFSET'
760 Offset from the frame pointer to the first local variable slot to
761 be allocated.
763 If `FRAME_GROWS_DOWNWARD', find the next slot's offset by
764 subtracting the first slot's length from `STARTING_FRAME_OFFSET'.
765 Otherwise, it is found by adding the length of the first slot to
766 the value `STARTING_FRAME_OFFSET'. */
767 #define STARTING_FRAME_OFFSET 0
769 /* `FIRST_PARM_OFFSET (FUNDECL)'
771 Offset from the argument pointer register to the first argument's
772 address. On some machines it may depend on the data type of the
773 function.
775 If `ARGS_GROW_DOWNWARD', this is the offset to the location above
776 the first argument's address. */
777 #define FIRST_PARM_OFFSET(FNDECL) 0
779 /* `DYNAMIC_CHAIN_ADDRESS (FRAMEADDR)'
781 A C expression whose value is RTL representing the address in a
782 stack frame where the pointer to the caller's frame is stored.
783 Assume that FRAMEADDR is an RTL expression for the address of the
784 stack frame itself.
786 If you don't define this macro, the default is to return the value
787 of FRAMEADDR--that is, the stack frame address is also the address
788 of the stack word that points to the previous frame. */
789 #define DYNAMIC_CHAIN_ADDRESS(FRAMEADDR) \
790 visium_dynamic_chain_address (FRAMEADDR)
792 /* `RETURN_ADDR_RTX (COUNT, FRAMEADDR)'
794 A C expression whose value is RTL representing the value of the
795 return address for the frame COUNT steps up from the current frame,
796 after the prologue. FRAMEADDR is the frame pointer of the COUNT
797 frame, or the frame pointer of the COUNT - 1 frame if
798 `RETURN_ADDR_IN_PREVIOUS_FRAME' is defined.
800 The value of the expression must always be the correct address when
801 COUNT is zero, but may be `NULL_RTX' if there is not way to
802 determine the return address of other frames. */
803 #define RETURN_ADDR_RTX(COUNT,FRAMEADDR) \
804 visium_return_addr_rtx (COUNT, FRAMEADDR)
806 /* Exception Handling
808 `EH_RETURN_DATA_REGNO'
810 A C expression whose value is the Nth register number used for data
811 by exception handlers or INVALID_REGNUM if fewer than N registers
812 are available.
814 The exception handling library routines communicate with the
815 exception handlers via a set of agreed upon registers. */
816 #define EH_RETURN_DATA_REGNO(N) ((N) < 4 ? (N) + 11 : INVALID_REGNUM)
817 #define EH_RETURN_STACKADJ_RTX gen_rtx_REG (SImode, 8)
818 #define EH_RETURN_HANDLER_RTX visium_eh_return_handler_rtx ()
820 /* Registers That Address the Stack Frame
822 This discusses registers that address the stack frame.
824 `STACK_POINTER_REGNUM'
826 The register number of the stack pointer register, which must also
827 be a fixed register according to `FIXED_REGISTERS'. On most
828 machines, the hardware determines which register this is. */
829 #define STACK_POINTER_REGNUM 23
831 /* `FRAME_POINTER_REGNUM'
833 The register number of the frame pointer register, which is used to
834 access automatic variables in the stack frame. On some machines,
835 the hardware determines which register this is. On other machines,
836 you can choose any register you wish for this purpose. */
837 #define FRAME_POINTER_REGNUM 52
839 /* `HARD_FRAME_POINTER_REGNUM'
841 On some machines the offset between the frame pointer and starting
842 offset of the automatic variables is not known until after register
843 allocation has been done (for example, because the saved registers
844 are between these two locations). On those machines, define
845 `FRAME_POINTER_REGNUM' the number of a special, fixed register to
846 be used internally until the offset is known, and define
847 `HARD_FRAME_POINTER_REGNUM' to be the actual hard register number
848 used for the frame pointer. */
849 #define HARD_FRAME_POINTER_REGNUM 22
851 /* `ARG_POINTER_REGNUM'
853 The register number of the arg pointer register, which is used to
854 access the function's argument list. On some machines, this is the
855 same as the frame pointer register. On some machines, the hardware
856 determines which register this is. On other machines, you can
857 choose any register you wish for this purpose. If this is not the
858 same register as the frame pointer register, then you must mark it
859 as a fixed register according to `FIXED_REGISTERS', or arrange to
860 be able to eliminate it (*note Elimination::.). */
861 #define ARG_POINTER_REGNUM 51
863 /* `STATIC_CHAIN_REGNUM'
864 `STATIC_CHAIN_INCOMING_REGNUM'
866 Register numbers used for passing a function's static chain
867 pointer. If register windows are used, the register number as seen
868 by the called function is `STATIC_CHAIN_INCOMING_REGNUM', while the
869 register number as seen by the calling function is
870 `STATIC_CHAIN_REGNUM'. If these registers are the same,
871 `STATIC_CHAIN_INCOMING_REGNUM' need not be defined.
873 The static chain register need not be a fixed register.
875 If the static chain is passed in memory, these macros should not be
876 defined; instead, the next two macros should be defined. */
877 #define STATIC_CHAIN_REGNUM 20
879 /* `ELIMINABLE_REGS'
881 If defined, this macro specifies a table of register pairs used to
882 eliminate unneeded registers that point into the stack frame. If
883 it is not defined, the only elimination attempted by the compiler
884 is to replace references to the frame pointer with references to
885 the stack pointer.
887 The definition of this macro is a list of structure
888 initializations, each of which specifies an original and
889 replacement register.
891 On some machines, the position of the argument pointer is not known
892 until the compilation is completed. In such a case, a separate
893 hard register must be used for the argument pointer. This register
894 can be eliminated by replacing it with either the frame pointer or
895 the argument pointer, depending on whether or not the frame pointer
896 has been eliminated.
898 Note that the elimination of the argument pointer with the stack
899 pointer is specified first since that is the preferred elimination. */
900 #define ELIMINABLE_REGS \
901 {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM}, \
902 { ARG_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}, \
903 { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}, \
904 { FRAME_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}}
906 /* `INITIAL_ELIMINATION_OFFSET (FROM-REG, TO-REG, OFFSET-VAR)'
908 This macro returns the initial difference between the specified pair
909 of registers. */
910 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
911 (OFFSET = visium_initial_elimination_offset (FROM, TO))
913 /* Passing Function Arguments on the Stack
915 The macros in this section control how arguments are passed on the
916 stack. See the following section for other macros that control
917 passing certain arguments in registers.
919 Passing Arguments in Registers
921 This section describes the macros which let you control how various
922 types of arguments are passed in registers or how they are arranged
923 in the stack.
925 Define the general purpose, and floating point registers used for
926 passing arguments */
927 #define MAX_ARGS_IN_GP_REGISTERS 8
928 #define GP_ARG_FIRST 1
929 #define GP_ARG_LAST (GP_ARG_FIRST + MAX_ARGS_IN_GP_REGISTERS - 1)
930 #define MAX_ARGS_IN_FP_REGISTERS 8
931 #define FP_ARG_FIRST (FP_FIRST_REGNUM + 1)
932 #define FP_ARG_LAST (FP_ARG_FIRST + MAX_ARGS_IN_FP_REGISTERS - 1)
934 /* Define a data type for recording info about an argument list during the
935 processing of that argument list. */
937 struct visium_args
939 /* The count of general registers used */
940 int grcount;
941 /* The count of floating registers used */
942 int frcount;
943 /* The number of stack words used by named arguments */
944 int stack_words;
947 /* `CUMULATIVE_ARGS'
949 A C type for declaring a variable that is used as the first
950 argument of `FUNCTION_ARG' and other related values. For some
951 target machines, the type `int' suffices and can hold the number of
952 bytes of argument so far.
954 There is no need to record in `CUMULATIVE_ARGS' anything about the
955 arguments that have been passed on the stack. The compiler has
956 other variables to keep track of that. For target machines on
957 which all arguments are passed on the stack, there is no need to
958 store anything in `CUMULATIVE_ARGS'; however, the data structure
959 must exist and should not be empty, so use `int'. */
960 #define CUMULATIVE_ARGS struct visium_args
962 #define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME,FNDECL,N_NAMED_ARGS) \
963 do { \
964 (CUM).grcount = 0; \
965 (CUM).frcount = 0; \
966 (CUM).stack_words = 0; \
967 } while (0)
969 /* `FUNCTION_ARG_REGNO_P (REGNO)'
971 A C expression that is nonzero if REGNO is the number of a hard
972 register in which function arguments are sometimes passed. This
973 does *not* include implicit arguments such as the static chain and
974 the structure-value address. On many machines, no registers can be
975 used for this purpose since all function arguments are pushed on
976 the stack. */
977 #define FUNCTION_ARG_REGNO_P(N) \
978 ((GP_ARG_FIRST <= (N) && (N) <= GP_ARG_LAST) \
979 || (TARGET_FPU && FP_ARG_FIRST <= (N) && (N) <= FP_ARG_LAST))
981 /* `FUNCTION_VALUE_REGNO_P (REGNO)'
983 A C expression that is nonzero if REGNO is the number of a hard
984 register in which the values of called function may come back.
986 A register whose use for returning values is limited to serving as
987 the second of a pair (for a value of type `double', say) need not
988 be recognized by this macro. If the machine has register windows,
989 so that the caller and the called function use different registers
990 for the return value, this macro should recognize only the caller's
991 register numbers. */
992 #define FUNCTION_VALUE_REGNO_P(N) \
993 ((N) == RETURN_REGNUM || (TARGET_FPU && (N) == FP_RETURN_REGNUM))
995 /* How Large Values Are Returned
997 When a function value's mode is `BLKmode' (and in some other
998 cases), the value is not returned according to `FUNCTION_VALUE'.
999 Instead, the caller passes the address of a block of memory in
1000 which the value should be stored. This address is called the
1001 "structure value address".
1003 This section describes how to control returning structure values in
1004 memory.
1006 `DEFAULT_PCC_STRUCT_RETURN'
1008 Define this macro to be 1 if all structure and union return values
1009 must be in memory. Since this results in slower code, this should
1010 be defined only if needed for compatibility with other compilers or
1011 with an ABI. If you define this macro to be 0, then the
1012 conventions used for structure and union return values are decided
1013 by the `RETURN_IN_MEMORY' macro.
1015 If not defined, this defaults to the value 1. */
1016 #define DEFAULT_PCC_STRUCT_RETURN 0
1018 /* Caller-Saves Register Allocation
1020 If you enable it, GNU CC can save registers around function calls.
1021 This makes it possible to use call-clobbered registers to hold
1022 variables that must live across calls.
1024 Function Entry and Exit
1026 This section describes the macros that output function entry
1027 ("prologue") and exit ("epilogue") code.
1029 `EXIT_IGNORE_STACK'
1031 Define this macro as a C expression that is nonzero if the return
1032 instruction or the function epilogue ignores the value of the stack
1033 pointer; in other words, if it is safe to delete an instruction to
1034 adjust the stack pointer before a return from the function.
1036 Note that this macro's value is relevant only for functions for
1037 which frame pointers are maintained. It is never safe to delete a
1038 final stack adjustment in a function that has no frame pointer, and
1039 the compiler knows this regardless of `EXIT_IGNORE_STACK'. */
1040 #define EXIT_IGNORE_STACK 1
1042 /* `EPILOGUE_USES (REGNO)'
1044 Define this macro as a C expression that is nonzero for registers
1045 are used by the epilogue or the `return' pattern. The stack and
1046 frame pointer registers are already be assumed to be used as
1047 needed. */
1048 #define EPILOGUE_USES(REGNO) visium_epilogue_uses (REGNO)
1050 /* Generating Code for Profiling
1052 These macros will help you generate code for profiling. */
1054 #define PROFILE_HOOK(LABEL) visium_profile_hook ()
1055 #define FUNCTION_PROFILER(FILE, LABELNO) do {} while (0)
1056 #define NO_PROFILE_COUNTERS 1
1058 /* Trampolines for Nested Functions
1060 A trampoline is a small piece of code that is created at run time
1061 when the address of a nested function is taken. It normally resides
1062 on the stack, in the stack frame of the containing function. These
1063 macros tell GCC how to generate code to allocate and initialize a
1064 trampoline.
1066 The instructions in the trampoline must do two things: load a
1067 constant address into the static chain register, and jump to the
1068 real address of the nested function. On CISC machines such as the
1069 m68k, this requires two instructions, a move immediate and a
1070 jump. Then the two addresses exist in the trampoline as word-long
1071 immediate operands. On RISC machines, it is often necessary to load
1072 each address into a register in two parts. Then pieces of each
1073 address form separate immediate operands.
1075 The code generated to initialize the trampoline must store the
1076 variable parts--the static chain value and the function
1077 address--into the immediate operands of the instructions. On a CISC
1078 machine, this is simply a matter of copying each address to a
1079 memory reference at the proper offset from the start of the
1080 trampoline. On a RISC machine, it may be necessary to take out
1081 pieces of the address and store them separately.
1083 On the Visium, the trampoline is
1085 moviu r9,%u FUNCTION
1086 movil r9,%l FUNCTION
1087 moviu r20,%u STATIC
1088 bra tr,r9,r0
1089 movil r20,%l STATIC
1091 A difficulty is setting the correct instruction parity at run time.
1094 TRAMPOLINE_SIZE
1095 A C expression for the size in bytes of the trampoline, as an integer. */
1096 #define TRAMPOLINE_SIZE 20
1098 /* Implicit calls to library routines
1100 Avoid calling library routines (sqrtf) just to set `errno' to EDOM */
1101 #define TARGET_EDOM 33
1103 /* Addressing Modes
1105 `MAX_REGS_PER_ADDRESS'
1107 A number, the maximum number of registers that can appear in a
1108 valid memory address. Note that it is up to you to specify a value
1109 equal to the maximum number that `TARGET_LEGITIMATE_ADDRESS_P' would
1110 ever accept. */
1111 #define MAX_REGS_PER_ADDRESS 1
1113 /* `LEGITIMIZE_RELOAD_ADDRESS (X, MODE, OPNUM, TYPE, IND_LEVELS, WIN)'
1115 A C compound statement that attempts to replace X, which is an
1116 address that needs reloading, with a valid memory address for an
1117 operand of mode MODE. WIN will be a C statement label elsewhere
1118 in the code. It is not necessary to define this macro, but it
1119 might be useful for performance reasons. */
1120 #define LEGITIMIZE_RELOAD_ADDRESS(AD, MODE, OPNUM, TYPE, IND, WIN) \
1121 do \
1123 rtx new_x = visium_legitimize_reload_address ((AD), (MODE), (OPNUM), \
1124 (int) (TYPE), (IND)); \
1125 if (new_x) \
1127 (AD) = new_x; \
1128 goto WIN; \
1130 } while (0)
1132 /* Given a comparison code (EQ, NE, etc.) and the operands of a COMPARE,
1133 return the mode to be used for the comparison. */
1134 #define SELECT_CC_MODE(OP,X,Y) visium_select_cc_mode ((OP), (X), (Y))
1136 /* Return nonzero if MODE implies a floating point inequality can be
1137 reversed. For Visium this is always true because we have a full
1138 compliment of ordered and unordered comparisons, but until generic
1139 code knows how to reverse it correctly we keep the old definition. */
1140 #define REVERSIBLE_CC_MODE(MODE) ((MODE) != CCFPEmode && (MODE) != CCFPmode)
1142 /* `BRANCH_COST'
1144 A C expression for the cost of a branch instruction. A value of 1
1145 is the default; other values are interpreted relative to that. */
1146 #define BRANCH_COST(A,B) 10
1148 /* Override BRANCH_COST heuristics for complex logical ops. */
1149 #define LOGICAL_OP_NON_SHORT_CIRCUIT 0
1151 /* `SLOW_BYTE_ACCESS'
1153 Define this macro as a C expression which is nonzero if accessing
1154 less than a word of memory (i.e. a `char' or a `short') is no
1155 faster than accessing a word of memory, i.e., if such access
1156 require more than one instruction or if there is no difference in
1157 cost between byte and (aligned) word loads.
1159 When this macro is not defined, the compiler will access a field by
1160 finding the smallest containing object; when it is defined, a
1161 fullword load will be used if alignment permits. Unless bytes
1162 accesses are faster than word accesses, using word accesses is
1163 preferable since it may eliminate subsequent memory access if
1164 subsequent accesses occur to other fields in the same word of the
1165 structure, but to different bytes. */
1166 #define SLOW_BYTE_ACCESS 0
1168 /* `MOVE_RATIO (SPEED)`
1170 The threshold of number of scalar memory-to-memory move insns,
1171 _below_ which a sequence of insns should be generated instead of a
1172 string move insn or a library call. Increasing the value will
1173 always make code faster, but eventually incurs high cost in
1174 increased code size.
1176 Since we have a movmemsi pattern, the default MOVE_RATIO is 2, which
1177 is too low given that movmemsi will invoke a libcall. */
1178 #define MOVE_RATIO(speed) ((speed) ? 9 : 3)
1180 /* `CLEAR_RATIO (SPEED)`
1182 The threshold of number of scalar move insns, _below_ which a
1183 sequence of insns should be generated to clear memory instead of a
1184 string clear insn or a library call. Increasing the value will
1185 always make code faster, but eventually incurs high cost in
1186 increased code size.
1188 Since we have a setmemsi pattern, the default CLEAR_RATIO is 2, which
1189 is too low given that setmemsi will invoke a libcall. */
1190 #define CLEAR_RATIO(speed) ((speed) ? 13 : 5)
1192 /* `MOVE_MAX'
1194 The maximum number of bytes that a single instruction can move
1195 quickly between memory and registers or between two memory
1196 locations. */
1197 #define MOVE_MAX 4
1199 /* `MAX_MOVE_MAX'
1201 The maximum number of bytes that a single instruction can move
1202 quickly between memory and registers or between two memory
1203 locations. If this is undefined, the default is `MOVE_MAX'.
1204 Otherwise, it is the constant value that is the largest value that
1205 `MOVE_MAX' can have at run-time. */
1206 #define MAX_MOVE_MAX 4
1208 /* `SHIFT_COUNT_TRUNCATED'
1210 A C expression that is nonzero if on this machine the number of
1211 bits actually used for the count of a shift operation is equal to
1212 the number of bits needed to represent the size of the object being
1213 shifted. When this macro is non-zero, the compiler will assume
1214 that it is safe to omit a sign-extend, zero-extend, and certain
1215 bitwise `and' instructions that truncates the count of a shift
1216 operation. On machines that have instructions that act on
1217 bitfields at variable positions, which may include `bit test'
1218 instructions, a nonzero `SHIFT_COUNT_TRUNCATED' also enables
1219 deletion of truncations of the values that serve as arguments to
1220 bitfield instructions. */
1221 #define SHIFT_COUNT_TRUNCATED 0
1223 /* `TRULY_NOOP_TRUNCATION (OUTPREC, INPREC)'
1225 A C expression which is nonzero if on this machine it is safe to
1226 "convert" an integer of INPREC bits to one of OUTPREC bits (where
1227 OUTPREC is smaller than INPREC) by merely operating on it as if it
1228 had only OUTPREC bits.
1230 On many machines, this expression can be 1.
1232 When `TRULY_NOOP_TRUNCATION' returns 1 for a pair of sizes for
1233 modes for which `TARGET_MODES_TIEABLE_P' is 0, suboptimal code can result.
1234 If this is the case, making `TRULY_NOOP_TRUNCATION' return 0 in
1235 such cases may improve things. */
1236 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
1238 /* `STORE_FLAG_VALUE'
1240 A C expression describing the value returned by a comparison
1241 operator with an integral mode and stored by a store-flag
1242 instruction (`sCOND') when the condition is true. This description
1243 must apply to *all* the `sCOND' patterns and all the comparison
1244 operators whose results have a `MODE_INT' mode. */
1245 #define STORE_FLAG_VALUE 1
1247 /* `Pmode'
1249 An alias for the machine mode for pointers. On most machines,
1250 define this to be the integer mode corresponding to the width of a
1251 hardware pointer; `SImode' on 32-bit machine or `DImode' on 64-bit
1252 machines. On some machines you must define this to be one of the
1253 partial integer modes, such as `PSImode'.
1255 The width of `Pmode' must be at least as large as the value of
1256 `POINTER_SIZE'. If it is not equal, you must define the macro
1257 `POINTERS_EXTEND_UNSIGNED' to specify how pointers are extended to
1258 `Pmode'. */
1259 #define Pmode SImode
1261 /* `FUNCTION_MODE'
1263 An alias for the machine mode used for memory references to
1264 functions being called, in `call' RTL expressions. On most
1265 machines this should be `QImode'. */
1266 #define FUNCTION_MODE SImode
1268 /* `NO_IMPLICIT_EXTERN_C'
1270 Define this macro if the system header files support C++ as well as
1271 C. This macro inhibits the usual method of using system header
1272 files in C++, which is to pretend that the file's contents are
1273 enclosed in `extern "C" {...}'. */
1274 #define NO_IMPLICIT_EXTERN_C
1276 /* Dividing the Output into Sections (Texts, Data, ...)
1278 An object file is divided into sections containing different types
1279 of data. In the most common case, there are three sections: the
1280 "text section", which holds instructions and read-only data; the
1281 "data section", which holds initialized writable data; and the "bss
1282 section", which holds uninitialized data. Some systems have other
1283 kinds of sections.
1285 `TEXT_SECTION_ASM_OP'
1287 A C expression whose value is a string containing the assembler
1288 operation that should precede instructions and read-only data.
1289 Normally `".text"' is right. */
1290 #define TEXT_SECTION_ASM_OP "\t.text"
1292 /* `DATA_SECTION_ASM_OP'
1294 A C expression whose value is a string containing the assembler
1295 operation to identify the following data as writable initialized
1296 data. Normally `".data"' is right. */
1297 #define DATA_SECTION_ASM_OP "\t.data"
1299 /* `BSS_SECTION_ASM_OP'
1301 If defined, a C expression whose value is a string containing the
1302 assembler operation to identify the following data as uninitialized
1303 global data. If not defined, and neither `ASM_OUTPUT_BSS' nor
1304 `ASM_OUTPUT_ALIGNED_BSS' are defined, uninitialized global data
1305 will be output in the data section if `-fno-common' is passed,
1306 otherwise `ASM_OUTPUT_COMMON' will be used.
1308 `EXTRA_SECTIONS'
1310 A list of names for sections other than the standard two, which are
1311 `in_text' and `in_data'. You need not define this macro on a
1312 system with no other sections (that GCC needs to use).
1314 `EXTRA_SECTION_FUNCTIONS'
1316 One or more functions to be defined in `varasm.c'. These functions
1317 should do jobs analogous to those of `text_section' and
1318 `data_section', for your additional sections. Do not define this
1319 macro if you do not define `EXTRA_SECTIONS'.
1321 `JUMP_TABLES_IN_TEXT_SECTION' Define this macro if jump tables (for
1322 `tablejump' insns) should be output in the text section, along with
1323 the assembler instructions. Otherwise, the readonly data section
1324 is used.
1326 This macro is irrelevant if there is no separate readonly data
1327 section. */
1328 #undef JUMP_TABLES_IN_TEXT_SECTION
1331 /* The Overall Framework of an Assembler File
1333 This describes the overall framework of an assembler file.
1335 `ASM_COMMENT_START'
1337 A C string constant describing how to begin a comment in the target
1338 assembler language. The compiler assumes that the comment will end
1339 at the end of the line. */
1340 #define ASM_COMMENT_START ";"
1342 /* `ASM_APP_ON'
1344 A C string constant for text to be output before each `asm'
1345 statement or group of consecutive ones. Normally this is `"#APP"',
1346 which is a comment that has no effect on most assemblers but tells
1347 the GNU assembler that it must check the lines that follow for all
1348 valid assembler constructs. */
1349 #define ASM_APP_ON "#APP\n"
1351 /* `ASM_APP_OFF'
1353 A C string constant for text to be output after each `asm'
1354 statement or group of consecutive ones. Normally this is
1355 `"#NO_APP"', which tells the GNU assembler to resume making the
1356 time-saving assumptions that are valid for ordinary compiler
1357 output. */
1358 #define ASM_APP_OFF "#NO_APP\n"
1360 /* Output of Data
1362 This describes data output.
1364 Output and Generation of Labels
1366 This is about outputting labels.
1368 `ASM_OUTPUT_LABEL (STREAM, NAME)'
1370 A C statement (sans semicolon) to output to the stdio stream STREAM
1371 the assembler definition of a label named NAME. Use the expression
1372 `assemble_name (STREAM, NAME)' to output the name itself; before
1373 and after that, output the additional assembler syntax for defining
1374 the name, and a newline. */
1375 #define ASM_OUTPUT_LABEL(STREAM,NAME) \
1376 do { assemble_name (STREAM, NAME); fputs (":\n", STREAM); } while (0)
1378 /* Globalizing directive for a label */
1379 #define GLOBAL_ASM_OP "\t.global "
1381 /* `ASM_OUTPUT_LABELREF (STREAM, NAME)'
1383 A C statement (sans semicolon) to output to the stdio stream STREAM
1384 a reference in assembler syntax to a label named NAME. This should
1385 add `_' to the front of the name, if that is customary on your
1386 operating system, as it is in most Berkeley Unix systems. This
1387 macro is used in `assemble_name'. */
1388 #define ASM_OUTPUT_LABELREF(STREAM,NAME) \
1389 asm_fprintf (STREAM, "%U%s", NAME)
1391 /* Output of Assembler Instructions
1393 This describes assembler instruction output.
1395 `REGISTER_NAMES'
1397 A C initializer containing the assembler's names for the machine
1398 registers, each one as a C string constant. This is what
1399 translates register numbers in the compiler into assembler
1400 language. */
1401 #define REGISTER_NAMES \
1402 {"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", \
1403 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15", \
1404 "r16", "r17", "r18", "r19", "r20", "r21", "fp", "sp", \
1405 "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31", \
1406 "mdb", "mdc", \
1407 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7", \
1408 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15", \
1409 "flags","argp","sfp" }
1411 /* `ADDITIONAL_REGISTER_NAMES`
1413 If defined, a C initializer for an array of structures containing
1414 a name and a register number. This macro defines additional names
1415 for hard registers, thus allowing the `asm' option in declarations
1416 to refer to registers using alternate names. */
1417 #define ADDITIONAL_REGISTER_NAMES \
1418 {{"r22", HARD_FRAME_POINTER_REGNUM}, {"r23", STACK_POINTER_REGNUM}}
1420 /* `REGISTER_PREFIX'
1421 `LOCAL_LABEL_PREFIX'
1422 `USER_LABEL_PREFIX'
1423 `IMMEDIATE_PREFIX'
1425 If defined, C string expressions to be used for the `%R', `%L',
1426 `%U', and `%I' options of `asm_fprintf' (see `final.c'). These are
1427 useful when a single `md' file must support multiple assembler
1428 formats. In that case, the various `tm.h' files can define these
1429 macros differently. */
1430 #define REGISTER_PREFIX ""
1431 #define LOCAL_LABEL_PREFIX "."
1432 #define IMMEDIATE_PREFIX "#"
1434 /* `ASM_OUTPUT_REG_PUSH (STREAM, REGNO)'
1436 A C expression to output to STREAM some assembler code which will
1437 push hard register number REGNO onto the stack. The code need not
1438 be optimal, since this macro is used only when profiling. */
1439 #define ASM_OUTPUT_REG_PUSH(STREAM,REGNO) \
1440 asm_fprintf (STREAM, "\tsubi sp,4\n\twrite.l (sp),%s\n", \
1441 reg_names[REGNO])
1443 /* `ASM_OUTPUT_REG_POP (STREAM, REGNO)'
1445 A C expression to output to STREAM some assembler code which will
1446 pop hard register number REGNO off of the stack. The code need not
1447 be optimal, since this macro is used only when profiling. */
1448 #define ASM_OUTPUT_REG_POP(STREAM,REGNO) \
1449 asm_fprintf (STREAM, "\tread.l %s,(sp)\n\taddi sp,4\n", \
1450 reg_names[REGNO])
1453 /* Output of Dispatch Tables
1455 This concerns dispatch tables.
1457 `ASM_OUTPUT_ADDR_DIFF_ELT (STREAM, VALUE, REL)'
1459 A C statement to output to the stdio stream STREAM an assembler
1460 pseudo-instruction to generate a difference between two labels.
1461 VALUE and REL are the numbers of two internal labels. The
1462 definitions of these labels are output using
1463 `ASM_OUTPUT_INTERNAL_LABEL', and they must be printed in the same
1464 way here.
1466 You must provide this macro on machines where the addresses in a
1467 dispatch table are relative to the table's own address. If
1468 defined, GNU CC will also use this macro on all machines when
1469 producing PIC. */
1470 #define ASM_OUTPUT_ADDR_DIFF_ELT(STREAM,BODY,VALUE,REL) \
1471 switch (GET_MODE (BODY)) \
1473 case E_SImode: \
1474 asm_fprintf ((STREAM), "\t.long\t%LL%d-%LL%d\n", (VALUE),(REL)); \
1475 break; \
1476 case E_HImode: \
1477 asm_fprintf ((STREAM), "\t.word\t%LL%d-%LL%d\n", (VALUE),(REL)); \
1478 break; \
1479 case E_QImode: \
1480 asm_fprintf ((STREAM), "\t.byte\t%LL%d-%LL%d\n", (VALUE),(REL)); \
1481 break; \
1482 default: \
1483 break; \
1486 /* `ASM_OUTPUT_ADDR_VEC_ELT (STREAM, VALUE)'
1488 This macro should be provided on machines where the addresses in a
1489 dispatch table are absolute.
1491 The definition should be a C statement to output to the stdio
1492 stream STREAM an assembler pseudo-instruction to generate a
1493 reference to a label. VALUE is the number of an internal label
1494 whose definition is output using `ASM_OUTPUT_INTERNAL_LABEL'. */
1495 #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE) \
1496 asm_fprintf (STREAM, "\t.long %LL%d\n", VALUE)
1498 /* `ASM_OUTPUT_CASE_END (STREAM, NUM, TABLE)'
1500 Define this if something special must be output at the end of a
1501 jump-table. The definition should be a C statement to be executed
1502 after the assembler code for the table is written. It should write
1503 the appropriate code to stdio stream STREAM. The argument TABLE is
1504 the jump-table insn, and NUM is the label-number of the preceding
1505 label.
1507 If this macro is not defined, nothing special is output at the end
1508 of a jump table.
1510 Here we output a word of zero so that jump-tables can be seperated
1511 in reverse assembly. */
1512 #define ASM_OUTPUT_CASE_END(STREAM, NUM, TABLE) \
1513 asm_fprintf (STREAM, "\t.long 0\n");
1515 /* Assembler Commands for Alignment
1517 This describes commands for alignment.
1519 `ASM_OUTPUT_ALIGN_CODE (STREAM)'
1521 A C expression to output text to align the location counter in the
1522 way that is desirable at a point in the code that is reached only
1523 by jumping.
1525 This macro need not be defined if you don't want any special
1526 alignment to be done at such a time. Most machine descriptions do
1527 not currently define the macro. */
1528 #undef ASM_OUTPUT_ALIGN_CODE
1530 /* `ASM_OUTPUT_LOOP_ALIGN (STREAM)'
1532 A C expression to output text to align the location counter in the
1533 way that is desirable at the beginning of a loop.
1535 This macro need not be defined if you don't want any special
1536 alignment to be done at such a time. Most machine descriptions do
1537 not currently define the macro. */
1538 #undef ASM_OUTPUT_LOOP_ALIGN
1540 /* `ASM_OUTPUT_ALIGN (STREAM, POWER)'
1542 A C statement to output to the stdio stream STREAM an assembler
1543 command to advance the location counter to a multiple of 2 to the
1544 POWER bytes. POWER will be a C expression of type `int'. */
1545 #define ASM_OUTPUT_ALIGN(STREAM,LOG) \
1546 if ((LOG) != 0) \
1547 fprintf (STREAM, "\t.align %d\n", (1<<(LOG)))
1549 /* `ASM_OUTPUT_MAX_SKIP_ALIGN (STREAM, POWER, MAX_SKIP)`
1551 A C statement to output to the stdio stream STREAM an assembler
1552 command to advance the location counter to a multiple of 2 to the
1553 POWER bytes, but only if MAX_SKIP or fewer bytes are needed to
1554 satisfy the alignment request. POWER and MAX_SKIP will be a C
1555 expression of type `int'. */
1556 #define ASM_OUTPUT_MAX_SKIP_ALIGN(STREAM,LOG,MAX_SKIP) \
1557 if ((LOG) != 0) { \
1558 if ((MAX_SKIP) == 0) fprintf ((STREAM), "\t.p2align %d\n", (LOG)); \
1559 else { \
1560 fprintf ((STREAM), "\t.p2align %d,,%d\n", (LOG), (MAX_SKIP)); \
1561 /* Make sure that we have at least 8-byte alignment if > 8-byte \
1562 alignment is preferred. */ \
1563 if ((LOG) > 3 \
1564 && (1 << (LOG)) > ((MAX_SKIP) + 1) \
1565 && (MAX_SKIP) >= 7) \
1566 fputs ("\t.p2align 3\n", (STREAM)); \
1570 /* Controlling Debugging Information Format
1572 This describes how to specify debugging information.
1574 mda is known to GDB, but not to GCC. */
1575 #define DBX_REGISTER_NUMBER(REGNO) \
1576 ((REGNO) > MDB_REGNUM ? (REGNO) + 1 : (REGNO))
1578 /* `DEBUGGER_AUTO_OFFSET (X)'
1580 A C expression that returns the integer offset value for an
1581 automatic variable having address X (an RTL expression). The
1582 default computation assumes that X is based on the frame-pointer
1583 and gives the offset from the frame-pointer. This is required for
1584 targets that produce debugging output for DBX or COFF-style
1585 debugging output for SDB and allow the frame-pointer to be
1586 eliminated when the `-g' options is used. */
1587 #define DEBUGGER_AUTO_OFFSET(X) \
1588 (GET_CODE (X) == PLUS ? INTVAL (XEXP (X, 1)) : 0)
1590 /* Miscellaneous Parameters
1592 `CASE_VECTOR_MODE'
1594 An alias for a machine mode name. This is the machine mode that
1595 elements of a jump-table should have. */
1596 #define CASE_VECTOR_MODE SImode
1598 /* `CASE_VECTOR_PC_RELATIVE'
1599 Define this macro if jump-tables should contain relative addresses. */
1600 #undef CASE_VECTOR_PC_RELATIVE
1602 /* This says how to output assembler code to declare an
1603 unitialised external linkage data object. */
1604 #define ASM_OUTPUT_COMMON(STREAM, NAME, SIZE, ROUNDED) \
1605 ( fputs ("\n\t.comm ", (STREAM)), \
1606 assemble_name ((STREAM), (NAME)), \
1607 fprintf ((STREAM), "," HOST_WIDE_INT_PRINT_UNSIGNED"\n", ROUNDED))
1609 /* This says how to output assembler code to declare an
1610 unitialised internal linkage data object. */
1611 #define ASM_OUTPUT_LOCAL(STREAM, NAME, SIZE, ROUNDED) \
1612 ( fputs ("\n\t.lcomm ", (STREAM)), \
1613 assemble_name ((STREAM), (NAME)), \
1614 fprintf ((STREAM), "," HOST_WIDE_INT_PRINT_UNSIGNED"\n", ROUNDED))
1616 /* Prettify the assembly. */
1617 extern int visium_indent_opcode;
1619 #define ASM_OUTPUT_OPCODE(FILE, PTR) \
1620 do { \
1621 if (visium_indent_opcode) \
1623 putc (' ', FILE); \
1624 visium_indent_opcode = 0; \
1626 } while (0)
1628 /* Configure-time default values for common options. */
1629 #define OPTION_DEFAULT_SPECS { "cpu", "%{!mcpu=*:-mcpu=%(VALUE)}" }
1631 /* Values of TARGET_CPU_DEFAULT specified via --with-cpu. */
1632 #define TARGET_CPU_gr5 0
1633 #define TARGET_CPU_gr6 1
1635 /* Default -mcpu multilib for above values. */
1636 #if TARGET_CPU_DEFAULT == TARGET_CPU_gr5
1637 #define MULTILIB_DEFAULTS { "mcpu=gr5" }
1638 #elif TARGET_CPU_DEFAULT == TARGET_CPU_gr6
1639 #define MULTILIB_DEFAULTS { "mcpu=gr6" }
1640 #else
1641 #error Unrecognized value in TARGET_CPU_DEFAULT
1642 #endif