| 1 |
282 |
jeremybenn |
/* Xstormy16 cpu description.
|
| 2 |
|
|
Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2007,
|
| 3 |
|
|
2008, 2009 Free Software Foundation, Inc.
|
| 4 |
|
|
Contributed by Red Hat, Inc.
|
| 5 |
|
|
|
| 6 |
|
|
This file is part of GCC.
|
| 7 |
|
|
|
| 8 |
|
|
GCC is free software; you can redistribute it and/or modify
|
| 9 |
|
|
it under the terms of the GNU General Public License as published by
|
| 10 |
|
|
the Free Software Foundation; either version 3, or (at your option)
|
| 11 |
|
|
any later version.
|
| 12 |
|
|
|
| 13 |
|
|
GCC is distributed in the hope that it will be useful,
|
| 14 |
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 15 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 16 |
|
|
GNU General Public License for more details.
|
| 17 |
|
|
|
| 18 |
|
|
You should have received a copy of the GNU General Public License
|
| 19 |
|
|
along with GCC; see the file COPYING3. If not see
|
| 20 |
|
|
<http://www.gnu.org/licenses/>. */
|
| 21 |
|
|
|
| 22 |
|
|
|
| 23 |
|
|
/* Driver configuration */
|
| 24 |
|
|
|
| 25 |
|
|
/* Defined in svr4.h. */
|
| 26 |
|
|
#undef ASM_SPEC
|
| 27 |
|
|
#define ASM_SPEC ""
|
| 28 |
|
|
|
| 29 |
|
|
/* For xstormy16:
|
| 30 |
|
|
- If -msim is specified, everything is built and linked as for the sim.
|
| 31 |
|
|
- If -T is specified, that linker script is used, and it should provide
|
| 32 |
|
|
appropriate libraries.
|
| 33 |
|
|
- If neither is specified, everything is built as for the sim, but no
|
| 34 |
|
|
I/O support is assumed.
|
| 35 |
|
|
|
| 36 |
|
|
*/
|
| 37 |
|
|
#undef LIB_SPEC
|
| 38 |
|
|
#define LIB_SPEC "-( -lc %{msim:-lsim}%{!msim:%{!T*:-lnosys}} -)"
|
| 39 |
|
|
|
| 40 |
|
|
/* Defined in svr4.h. */
|
| 41 |
|
|
#undef STARTFILE_SPEC
|
| 42 |
|
|
#define STARTFILE_SPEC "crt0.o%s crti.o%s crtbegin.o%s"
|
| 43 |
|
|
|
| 44 |
|
|
/* Defined in svr4.h. */
|
| 45 |
|
|
#undef ENDFILE_SPEC
|
| 46 |
|
|
#define ENDFILE_SPEC "crtend.o%s crtn.o%s"
|
| 47 |
|
|
|
| 48 |
|
|
/* Defined in svr4.h for host compilers. */
|
| 49 |
|
|
/* #define MD_EXEC_PREFIX "" */
|
| 50 |
|
|
|
| 51 |
|
|
/* Defined in svr4.h for host compilers. */
|
| 52 |
|
|
/* #define MD_STARTFILE_PREFIX "" */
|
| 53 |
|
|
|
| 54 |
|
|
|
| 55 |
|
|
/* Run-time target specifications */
|
| 56 |
|
|
|
| 57 |
|
|
#define TARGET_CPU_CPP_BUILTINS() do { \
|
| 58 |
|
|
builtin_define_std ("xstormy16"); \
|
| 59 |
|
|
builtin_assert ("machine=xstormy16"); \
|
| 60 |
|
|
builtin_assert ("cpu=xstormy16"); \
|
| 61 |
|
|
} while (0)
|
| 62 |
|
|
|
| 63 |
|
|
#define TARGET_VERSION fprintf (stderr, " (xstormy16 cpu core)");
|
| 64 |
|
|
|
| 65 |
|
|
#define CAN_DEBUG_WITHOUT_FP
|
| 66 |
|
|
|
| 67 |
|
|
|
| 68 |
|
|
/* Storage Layout */
|
| 69 |
|
|
|
| 70 |
|
|
#define BITS_BIG_ENDIAN 1
|
| 71 |
|
|
|
| 72 |
|
|
#define BYTES_BIG_ENDIAN 0
|
| 73 |
|
|
|
| 74 |
|
|
#define WORDS_BIG_ENDIAN 0
|
| 75 |
|
|
|
| 76 |
|
|
#define UNITS_PER_WORD 2
|
| 77 |
|
|
|
| 78 |
|
|
#define PROMOTE_MODE(MODE,UNSIGNEDP,TYPE) \
|
| 79 |
|
|
do { \
|
| 80 |
|
|
if (GET_MODE_CLASS (MODE) == MODE_INT \
|
| 81 |
|
|
&& GET_MODE_SIZE (MODE) < 2) \
|
| 82 |
|
|
(MODE) = HImode; \
|
| 83 |
|
|
} while (0)
|
| 84 |
|
|
|
| 85 |
|
|
#define PARM_BOUNDARY 16
|
| 86 |
|
|
|
| 87 |
|
|
#define STACK_BOUNDARY 16
|
| 88 |
|
|
|
| 89 |
|
|
#define FUNCTION_BOUNDARY 16
|
| 90 |
|
|
|
| 91 |
|
|
#define BIGGEST_ALIGNMENT 16
|
| 92 |
|
|
|
| 93 |
|
|
/* Defined in svr4.h. */
|
| 94 |
|
|
/* #define MAX_OFILE_ALIGNMENT */
|
| 95 |
|
|
|
| 96 |
|
|
#define DATA_ALIGNMENT(TYPE, ALIGN) \
|
| 97 |
|
|
(TREE_CODE (TYPE) == ARRAY_TYPE \
|
| 98 |
|
|
&& TYPE_MODE (TREE_TYPE (TYPE)) == QImode \
|
| 99 |
|
|
&& (ALIGN) < BITS_PER_WORD ? BITS_PER_WORD : (ALIGN))
|
| 100 |
|
|
|
| 101 |
|
|
#define CONSTANT_ALIGNMENT(EXP, ALIGN) \
|
| 102 |
|
|
(TREE_CODE (EXP) == STRING_CST \
|
| 103 |
|
|
&& (ALIGN) < BITS_PER_WORD ? BITS_PER_WORD : (ALIGN))
|
| 104 |
|
|
|
| 105 |
|
|
#define STRICT_ALIGNMENT 1
|
| 106 |
|
|
|
| 107 |
|
|
/* Defined in svr4.h. */
|
| 108 |
|
|
#define PCC_BITFIELD_TYPE_MATTERS 1
|
| 109 |
|
|
|
| 110 |
|
|
/* Layout of Source Language Data Types */
|
| 111 |
|
|
|
| 112 |
|
|
#define INT_TYPE_SIZE 16
|
| 113 |
|
|
|
| 114 |
|
|
#define SHORT_TYPE_SIZE 16
|
| 115 |
|
|
|
| 116 |
|
|
#define LONG_TYPE_SIZE 32
|
| 117 |
|
|
|
| 118 |
|
|
#define LONG_LONG_TYPE_SIZE 64
|
| 119 |
|
|
|
| 120 |
|
|
#define FLOAT_TYPE_SIZE 32
|
| 121 |
|
|
|
| 122 |
|
|
#define DOUBLE_TYPE_SIZE 64
|
| 123 |
|
|
|
| 124 |
|
|
#define LONG_DOUBLE_TYPE_SIZE 64
|
| 125 |
|
|
|
| 126 |
|
|
#define DEFAULT_SIGNED_CHAR 0
|
| 127 |
|
|
|
| 128 |
|
|
/* Defined in svr4.h. */
|
| 129 |
|
|
#define SIZE_TYPE "unsigned int"
|
| 130 |
|
|
|
| 131 |
|
|
/* Defined in svr4.h. */
|
| 132 |
|
|
#define PTRDIFF_TYPE "int"
|
| 133 |
|
|
|
| 134 |
|
|
/* Defined in svr4.h, to "long int". */
|
| 135 |
|
|
/* #define WCHAR_TYPE "long int" */
|
| 136 |
|
|
|
| 137 |
|
|
/* Defined in svr4.h. */
|
| 138 |
|
|
#undef WCHAR_TYPE_SIZE
|
| 139 |
|
|
#define WCHAR_TYPE_SIZE 32
|
| 140 |
|
|
|
| 141 |
|
|
/* Define this macro if the type of Objective-C selectors should be `int'.
|
| 142 |
|
|
|
| 143 |
|
|
If this macro is not defined, then selectors should have the type `struct
|
| 144 |
|
|
objc_selector *'. */
|
| 145 |
|
|
/* #define OBJC_INT_SELECTORS */
|
| 146 |
|
|
|
| 147 |
|
|
|
| 148 |
|
|
/* Register Basics */
|
| 149 |
|
|
|
| 150 |
|
|
#define FIRST_PSEUDO_REGISTER 19
|
| 151 |
|
|
|
| 152 |
|
|
#define FIXED_REGISTERS \
|
| 153 |
|
|
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1 }
|
| 154 |
|
|
|
| 155 |
|
|
#define CALL_USED_REGISTERS \
|
| 156 |
|
|
{ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1 }
|
| 157 |
|
|
|
| 158 |
|
|
|
| 159 |
|
|
/* Order of allocation of registers */
|
| 160 |
|
|
|
| 161 |
|
|
#define REG_ALLOC_ORDER { 7, 6, 5, 4, 3, 2, 1, 0, 9, 8, 10, 11, 12, 13, 14, 15, 16 }
|
| 162 |
|
|
|
| 163 |
|
|
|
| 164 |
|
|
/* How Values Fit in Registers */
|
| 165 |
|
|
|
| 166 |
|
|
#define HARD_REGNO_NREGS(REGNO, MODE) \
|
| 167 |
|
|
((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
|
| 168 |
|
|
|
| 169 |
|
|
#define HARD_REGNO_MODE_OK(REGNO, MODE) ((REGNO) != 16 || (MODE) == BImode)
|
| 170 |
|
|
|
| 171 |
|
|
/* A C expression that is nonzero if it is desirable to choose register
|
| 172 |
|
|
allocation so as to avoid move instructions between a value of mode MODE1
|
| 173 |
|
|
and a value of mode MODE2.
|
| 174 |
|
|
|
| 175 |
|
|
If `HARD_REGNO_MODE_OK (R, MODE1)' and `HARD_REGNO_MODE_OK (R, MODE2)' are
|
| 176 |
|
|
ever different for any R, then `MODES_TIEABLE_P (MODE1, MODE2)' must be
|
| 177 |
|
|
zero. */
|
| 178 |
|
|
#define MODES_TIEABLE_P(MODE1, MODE2) ((MODE1) != BImode && (MODE2) != BImode)
|
| 179 |
|
|
|
| 180 |
|
|
|
| 181 |
|
|
/* Register Classes */
|
| 182 |
|
|
|
| 183 |
|
|
enum reg_class
|
| 184 |
|
|
{
|
| 185 |
|
|
NO_REGS,
|
| 186 |
|
|
R0_REGS,
|
| 187 |
|
|
R1_REGS,
|
| 188 |
|
|
TWO_REGS,
|
| 189 |
|
|
R2_REGS,
|
| 190 |
|
|
EIGHT_REGS,
|
| 191 |
|
|
R8_REGS,
|
| 192 |
|
|
ICALL_REGS,
|
| 193 |
|
|
GENERAL_REGS,
|
| 194 |
|
|
ALL_REGS,
|
| 195 |
|
|
LIM_REG_CLASSES
|
| 196 |
|
|
};
|
| 197 |
|
|
|
| 198 |
|
|
#define N_REG_CLASSES ((int) LIM_REG_CLASSES)
|
| 199 |
|
|
|
| 200 |
|
|
#define IRA_COVER_CLASSES \
|
| 201 |
|
|
{ \
|
| 202 |
|
|
GENERAL_REGS, LIM_REG_CLASSES \
|
| 203 |
|
|
}
|
| 204 |
|
|
|
| 205 |
|
|
#define REG_CLASS_NAMES \
|
| 206 |
|
|
{ \
|
| 207 |
|
|
"NO_REGS", \
|
| 208 |
|
|
"R0_REGS", \
|
| 209 |
|
|
"R1_REGS", \
|
| 210 |
|
|
"TWO_REGS", \
|
| 211 |
|
|
"R2_REGS", \
|
| 212 |
|
|
"EIGHT_REGS", \
|
| 213 |
|
|
"R8_REGS", \
|
| 214 |
|
|
"ICALL_REGS", \
|
| 215 |
|
|
"GENERAL_REGS", \
|
| 216 |
|
|
"ALL_REGS" \
|
| 217 |
|
|
}
|
| 218 |
|
|
|
| 219 |
|
|
#define REG_CLASS_CONTENTS \
|
| 220 |
|
|
{ \
|
| 221 |
|
|
{ 0x00000 }, \
|
| 222 |
|
|
{ 0x00001 }, \
|
| 223 |
|
|
{ 0x00002 }, \
|
| 224 |
|
|
{ 0x00003 }, \
|
| 225 |
|
|
{ 0x00004 }, \
|
| 226 |
|
|
{ 0x000FF }, \
|
| 227 |
|
|
{ 0x00100 }, \
|
| 228 |
|
|
{ 0x00300 }, \
|
| 229 |
|
|
{ 0x6FFFF }, \
|
| 230 |
|
|
{ (1 << FIRST_PSEUDO_REGISTER) - 1 } \
|
| 231 |
|
|
}
|
| 232 |
|
|
|
| 233 |
|
|
#define REGNO_REG_CLASS(REGNO) \
|
| 234 |
|
|
( (REGNO) == 0 ? R0_REGS \
|
| 235 |
|
|
: (REGNO) == 1 ? R1_REGS \
|
| 236 |
|
|
: (REGNO) == 2 ? R2_REGS \
|
| 237 |
|
|
: (REGNO) < 8 ? EIGHT_REGS \
|
| 238 |
|
|
: (REGNO) == 8 ? R8_REGS \
|
| 239 |
|
|
: (REGNO) <= 18 ? GENERAL_REGS \
|
| 240 |
|
|
: ALL_REGS)
|
| 241 |
|
|
|
| 242 |
|
|
#define BASE_REG_CLASS GENERAL_REGS
|
| 243 |
|
|
|
| 244 |
|
|
#define INDEX_REG_CLASS GENERAL_REGS
|
| 245 |
|
|
|
| 246 |
|
|
/* The following letters are unavailable, due to being used as
|
| 247 |
|
|
constraints:
|
| 248 |
|
|
'0'..'9'
|
| 249 |
|
|
'<', '>'
|
| 250 |
|
|
'E', 'F', 'G', 'H'
|
| 251 |
|
|
'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P'
|
| 252 |
|
|
'Q', 'R', 'S', 'T', 'U'
|
| 253 |
|
|
'V', 'X'
|
| 254 |
|
|
'g', 'i', 'm', 'n', 'o', 'p', 'r', 's' */
|
| 255 |
|
|
|
| 256 |
|
|
#define REG_CLASS_FROM_LETTER(CHAR) \
|
| 257 |
|
|
( (CHAR) == 'a' ? R0_REGS \
|
| 258 |
|
|
: (CHAR) == 'b' ? R1_REGS \
|
| 259 |
|
|
: (CHAR) == 'c' ? R2_REGS \
|
| 260 |
|
|
: (CHAR) == 'd' ? R8_REGS \
|
| 261 |
|
|
: (CHAR) == 'e' ? EIGHT_REGS \
|
| 262 |
|
|
: (CHAR) == 't' ? TWO_REGS \
|
| 263 |
|
|
: (CHAR) == 'z' ? ICALL_REGS \
|
| 264 |
|
|
: NO_REGS)
|
| 265 |
|
|
|
| 266 |
|
|
#define REGNO_OK_FOR_BASE_P(NUM) 1
|
| 267 |
|
|
|
| 268 |
|
|
#define REGNO_OK_FOR_INDEX_P(NUM) REGNO_OK_FOR_BASE_P (NUM)
|
| 269 |
|
|
|
| 270 |
|
|
/* This declaration must be present. */
|
| 271 |
|
|
#define PREFERRED_RELOAD_CLASS(X, CLASS) \
|
| 272 |
|
|
xstormy16_preferred_reload_class (X, CLASS)
|
| 273 |
|
|
|
| 274 |
|
|
#define PREFERRED_OUTPUT_RELOAD_CLASS(X, CLASS) \
|
| 275 |
|
|
xstormy16_preferred_reload_class (X, CLASS)
|
| 276 |
|
|
|
| 277 |
|
|
/* This chip has the interesting property that only the first eight
|
| 278 |
|
|
registers can be moved to/from memory. */
|
| 279 |
|
|
#define SECONDARY_RELOAD_CLASS(CLASS, MODE, X) \
|
| 280 |
|
|
xstormy16_secondary_reload_class (CLASS, MODE, X)
|
| 281 |
|
|
|
| 282 |
|
|
/* Normally the compiler avoids choosing registers that have been explicitly
|
| 283 |
|
|
mentioned in the rtl as spill registers (these registers are normally those
|
| 284 |
|
|
used to pass parameters and return values). However, some machines have so
|
| 285 |
|
|
few registers of certain classes that there would not be enough registers to
|
| 286 |
|
|
use as spill registers if this were done.
|
| 287 |
|
|
|
| 288 |
|
|
Define `SMALL_REGISTER_CLASSES' to be an expression with a nonzero value on
|
| 289 |
|
|
these machines. When this macro has a nonzero value, the compiler allows
|
| 290 |
|
|
registers explicitly used in the rtl to be used as spill registers but
|
| 291 |
|
|
avoids extending the lifetime of these registers.
|
| 292 |
|
|
|
| 293 |
|
|
It is always safe to define this macro with a nonzero value, but if you
|
| 294 |
|
|
unnecessarily define it, you will reduce the amount of optimizations that
|
| 295 |
|
|
can be performed in some cases. If you do not define this macro with a
|
| 296 |
|
|
nonzero value when it is required, the compiler will run out of spill
|
| 297 |
|
|
registers and print a fatal error message. For most machines, you should
|
| 298 |
|
|
not define this macro at all. */
|
| 299 |
|
|
/* #define SMALL_REGISTER_CLASSES */
|
| 300 |
|
|
|
| 301 |
|
|
/* This declaration is required. */
|
| 302 |
|
|
#define CLASS_MAX_NREGS(CLASS, MODE) \
|
| 303 |
|
|
((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
|
| 304 |
|
|
|
| 305 |
|
|
/* If defined, a C expression for a class that contains registers which the
|
| 306 |
|
|
compiler must always access in a mode that is the same size as the mode in
|
| 307 |
|
|
which it loaded the register.
|
| 308 |
|
|
|
| 309 |
|
|
For the example, loading 32-bit integer or floating-point objects into
|
| 310 |
|
|
floating-point registers on the Alpha extends them to 64-bits. Therefore
|
| 311 |
|
|
loading a 64-bit object and then storing it as a 32-bit object does not
|
| 312 |
|
|
store the low-order 32-bits, as would be the case for a normal register.
|
| 313 |
|
|
Therefore, `alpha.h' defines this macro as `FLOAT_REGS'. */
|
| 314 |
|
|
/* #define CLASS_CANNOT_CHANGE_SIZE */
|
| 315 |
|
|
|
| 316 |
|
|
#define CONST_OK_FOR_LETTER_P(VALUE, C) \
|
| 317 |
|
|
( (C) == 'I' ? (VALUE) >= 0 && (VALUE) <= 3 \
|
| 318 |
|
|
: (C) == 'J' ? exact_log2 (VALUE) != -1 \
|
| 319 |
|
|
: (C) == 'K' ? exact_log2 (~(VALUE)) != -1 \
|
| 320 |
|
|
: (C) == 'L' ? (VALUE) >= 0 && (VALUE) <= 255 \
|
| 321 |
|
|
: (C) == 'M' ? (VALUE) >= -255 && (VALUE) <= 0 \
|
| 322 |
|
|
: (C) == 'N' ? (VALUE) >= -3 && (VALUE) <= 0 \
|
| 323 |
|
|
: (C) == 'O' ? (VALUE) >= 1 && (VALUE) <= 4 \
|
| 324 |
|
|
: (C) == 'P' ? (VALUE) >= -4 && (VALUE) <= -1 \
|
| 325 |
|
|
: 0 )
|
| 326 |
|
|
|
| 327 |
|
|
#define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C) 0
|
| 328 |
|
|
|
| 329 |
|
|
#define EXTRA_CONSTRAINT(VALUE, C) \
|
| 330 |
|
|
xstormy16_extra_constraint_p (VALUE, C)
|
| 331 |
|
|
|
| 332 |
|
|
|
| 333 |
|
|
/* Basic Stack Layout */
|
| 334 |
|
|
|
| 335 |
|
|
/* We want to use post-increment instructions to push things on the stack,
|
| 336 |
|
|
because we don't have any pre-increment ones. */
|
| 337 |
|
|
#define STACK_PUSH_CODE POST_INC
|
| 338 |
|
|
|
| 339 |
|
|
#define FRAME_GROWS_DOWNWARD 0
|
| 340 |
|
|
|
| 341 |
|
|
#define ARGS_GROW_DOWNWARD 1
|
| 342 |
|
|
|
| 343 |
|
|
#define STARTING_FRAME_OFFSET 0
|
| 344 |
|
|
|
| 345 |
|
|
#define FIRST_PARM_OFFSET(FUNDECL) 0
|
| 346 |
|
|
|
| 347 |
|
|
#define RETURN_ADDR_RTX(COUNT, FRAMEADDR) \
|
| 348 |
|
|
((COUNT) == 0 \
|
| 349 |
|
|
? gen_rtx_MEM (Pmode, arg_pointer_rtx) \
|
| 350 |
|
|
: NULL_RTX)
|
| 351 |
|
|
|
| 352 |
|
|
#define INCOMING_RETURN_ADDR_RTX \
|
| 353 |
|
|
gen_rtx_MEM (SImode, gen_rtx_PLUS (Pmode, stack_pointer_rtx, GEN_INT (-4)))
|
| 354 |
|
|
|
| 355 |
|
|
#define INCOMING_FRAME_SP_OFFSET (xstormy16_interrupt_function_p () ? -6 : -4)
|
| 356 |
|
|
|
| 357 |
|
|
|
| 358 |
|
|
/* Register That Address the Stack Frame. */
|
| 359 |
|
|
|
| 360 |
|
|
#define STATIC_CHAIN_REGNUM 1
|
| 361 |
|
|
#define HARD_FRAME_POINTER_REGNUM 13
|
| 362 |
|
|
#define STACK_POINTER_REGNUM 15
|
| 363 |
|
|
#define CARRY_REGNUM 16
|
| 364 |
|
|
#define FRAME_POINTER_REGNUM 17
|
| 365 |
|
|
#define ARG_POINTER_REGNUM 18
|
| 366 |
|
|
|
| 367 |
|
|
|
| 368 |
|
|
/* Eliminating the Frame Pointer and the Arg Pointer */
|
| 369 |
|
|
|
| 370 |
|
|
#define ELIMINABLE_REGS \
|
| 371 |
|
|
{ \
|
| 372 |
|
|
{FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}, \
|
| 373 |
|
|
{FRAME_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}, \
|
| 374 |
|
|
{ARG_POINTER_REGNUM, STACK_POINTER_REGNUM}, \
|
| 375 |
|
|
{ARG_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}, \
|
| 376 |
|
|
}
|
| 377 |
|
|
|
| 378 |
|
|
#define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
|
| 379 |
|
|
(OFFSET) = xstormy16_initial_elimination_offset (FROM, TO)
|
| 380 |
|
|
|
| 381 |
|
|
|
| 382 |
|
|
/* Passing Function Arguments on the Stack */
|
| 383 |
|
|
|
| 384 |
|
|
#define PUSH_ROUNDING(BYTES) (((BYTES) + 1) & ~1)
|
| 385 |
|
|
|
| 386 |
|
|
#define RETURN_POPS_ARGS(FUNDECL, FUNTYPE, STACK_SIZE) 0
|
| 387 |
|
|
|
| 388 |
|
|
|
| 389 |
|
|
/* Function Arguments in Registers */
|
| 390 |
|
|
|
| 391 |
|
|
#define NUM_ARGUMENT_REGISTERS 6
|
| 392 |
|
|
#define FIRST_ARGUMENT_REGISTER 2
|
| 393 |
|
|
|
| 394 |
|
|
#define XSTORMY16_WORD_SIZE(TYPE, MODE) \
|
| 395 |
|
|
((((TYPE) ? int_size_in_bytes (TYPE) : GET_MODE_SIZE (MODE)) \
|
| 396 |
|
|
+ 1) \
|
| 397 |
|
|
/ 2)
|
| 398 |
|
|
|
| 399 |
|
|
#define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \
|
| 400 |
|
|
xstormy16_function_arg (CUM, MODE, TYPE, NAMED)
|
| 401 |
|
|
|
| 402 |
|
|
/* For this platform, the value of CUMULATIVE_ARGS is the number of words
|
| 403 |
|
|
of arguments that have been passed in registers so far. */
|
| 404 |
|
|
#define CUMULATIVE_ARGS int
|
| 405 |
|
|
|
| 406 |
|
|
#define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT, N_NAMED_ARGS) \
|
| 407 |
|
|
(CUM) = 0
|
| 408 |
|
|
|
| 409 |
|
|
#define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED) \
|
| 410 |
|
|
((CUM) = xstormy16_function_arg_advance (CUM, MODE, TYPE, NAMED))
|
| 411 |
|
|
|
| 412 |
|
|
#define FUNCTION_ARG_REGNO_P(REGNO) \
|
| 413 |
|
|
((REGNO) >= FIRST_ARGUMENT_REGISTER \
|
| 414 |
|
|
&& (REGNO) < FIRST_ARGUMENT_REGISTER + NUM_ARGUMENT_REGISTERS)
|
| 415 |
|
|
|
| 416 |
|
|
|
| 417 |
|
|
/* How Scalar Function Values are Returned */
|
| 418 |
|
|
|
| 419 |
|
|
/* The number of the hard register that is used to return a scalar value from a
|
| 420 |
|
|
function call. */
|
| 421 |
|
|
#define RETURN_VALUE_REGNUM FIRST_ARGUMENT_REGISTER
|
| 422 |
|
|
|
| 423 |
|
|
#define FUNCTION_VALUE(VALTYPE, FUNC) \
|
| 424 |
|
|
xstormy16_function_value (VALTYPE, FUNC)
|
| 425 |
|
|
|
| 426 |
|
|
#define LIBCALL_VALUE(MODE) gen_rtx_REG (MODE, RETURN_VALUE_REGNUM)
|
| 427 |
|
|
|
| 428 |
|
|
#define FUNCTION_VALUE_REGNO_P(REGNO) ((REGNO) == RETURN_VALUE_REGNUM)
|
| 429 |
|
|
|
| 430 |
|
|
|
| 431 |
|
|
/* Function Entry and Exit */
|
| 432 |
|
|
|
| 433 |
|
|
#define EPILOGUE_USES(REGNO) \
|
| 434 |
|
|
xstormy16_epilogue_uses (REGNO)
|
| 435 |
|
|
|
| 436 |
|
|
|
| 437 |
|
|
/* Generating Code for Profiling. */
|
| 438 |
|
|
|
| 439 |
|
|
/* This declaration must be present, but it can be an abort if profiling is
|
| 440 |
|
|
not implemented. */
|
| 441 |
|
|
|
| 442 |
|
|
#define FUNCTION_PROFILER(FILE, LABELNO) xstormy16_function_profiler ()
|
| 443 |
|
|
|
| 444 |
|
|
|
| 445 |
|
|
/* If the target has particular reasons why a function cannot be inlined,
|
| 446 |
|
|
it may define the TARGET_CANNOT_INLINE_P. This macro takes one argument,
|
| 447 |
|
|
the DECL describing the function. The function should NULL if the function
|
| 448 |
|
|
*can* be inlined. Otherwise it should return a pointer to a string containing
|
| 449 |
|
|
a message describing why the function could not be inlined. The message will
|
| 450 |
|
|
displayed if the '-Winline' command line switch has been given. If the message
|
| 451 |
|
|
contains a '%s' sequence, this will be replaced by the name of the function. */
|
| 452 |
|
|
/* #define TARGET_CANNOT_INLINE_P(FN_DECL) xstormy16_cannot_inline_p (FN_DECL) */
|
| 453 |
|
|
|
| 454 |
|
|
/* Trampolines for Nested Functions. */
|
| 455 |
|
|
|
| 456 |
|
|
#define TRAMPOLINE_SIZE 8
|
| 457 |
|
|
#define TRAMPOLINE_ALIGNMENT 16
|
| 458 |
|
|
|
| 459 |
|
|
/* Define this macro to override the type used by the library routines to pick
|
| 460 |
|
|
up arguments of type `float'. (By default, they use a union of `float' and
|
| 461 |
|
|
`int'.)
|
| 462 |
|
|
|
| 463 |
|
|
The obvious choice would be `float'--but that won't work with traditional C
|
| 464 |
|
|
compilers that expect all arguments declared as `float' to arrive as
|
| 465 |
|
|
`double'. To avoid this conversion, the library routines ask for the value
|
| 466 |
|
|
as some other type and then treat it as a `float'. */
|
| 467 |
|
|
/* #define FLOAT_ARG_TYPE */
|
| 468 |
|
|
|
| 469 |
|
|
/* Define this macro to override the way library routines redesignate a `float'
|
| 470 |
|
|
argument as a `float' instead of the type it was passed as. The default is
|
| 471 |
|
|
an expression which takes the `float' field of the union. */
|
| 472 |
|
|
/* #define FLOATIFY(PASSED_VALUE) */
|
| 473 |
|
|
|
| 474 |
|
|
/* Define this macro to override the type used by the library routines to
|
| 475 |
|
|
return values that ought to have type `float'. (By default, they use
|
| 476 |
|
|
`int'.)
|
| 477 |
|
|
|
| 478 |
|
|
The obvious choice would be `float'--but that won't work with traditional C
|
| 479 |
|
|
compilers gratuitously convert values declared as `float' into `double'. */
|
| 480 |
|
|
/* #define FLOAT_VALUE_TYPE */
|
| 481 |
|
|
|
| 482 |
|
|
/* Define this macro to override the way the value of a `float'-returning
|
| 483 |
|
|
library routine should be packaged in order to return it. These functions
|
| 484 |
|
|
are actually declared to return type `FLOAT_VALUE_TYPE' (normally `int').
|
| 485 |
|
|
|
| 486 |
|
|
These values can't be returned as type `float' because traditional C
|
| 487 |
|
|
compilers would gratuitously convert the value to a `double'.
|
| 488 |
|
|
|
| 489 |
|
|
A local variable named `intify' is always available when the macro `INTIFY'
|
| 490 |
|
|
is used. It is a union of a `float' field named `f' and a field named `i'
|
| 491 |
|
|
whose type is `FLOAT_VALUE_TYPE' or `int'.
|
| 492 |
|
|
|
| 493 |
|
|
If you don't define this macro, the default definition works by copying the
|
| 494 |
|
|
value through that union. */
|
| 495 |
|
|
/* #define INTIFY(FLOAT_VALUE) */
|
| 496 |
|
|
|
| 497 |
|
|
/* Define this macro as the name of the data type corresponding to `SImode' in
|
| 498 |
|
|
the system's own C compiler.
|
| 499 |
|
|
|
| 500 |
|
|
You need not define this macro if that type is `long int', as it usually is. */
|
| 501 |
|
|
/* #define nongcc_SI_type */
|
| 502 |
|
|
|
| 503 |
|
|
/* Define this macro as the name of the data type corresponding to the
|
| 504 |
|
|
word_mode in the system's own C compiler.
|
| 505 |
|
|
|
| 506 |
|
|
You need not define this macro if that type is `long int', as it usually is. */
|
| 507 |
|
|
/* #define nongcc_word_type */
|
| 508 |
|
|
|
| 509 |
|
|
/* Define these macros to supply explicit C statements to carry out various
|
| 510 |
|
|
arithmetic operations on types `float' and `double' in the library routines
|
| 511 |
|
|
in `libgcc1.c'. See that file for a full list of these macros and their
|
| 512 |
|
|
arguments.
|
| 513 |
|
|
|
| 514 |
|
|
On most machines, you don't need to define any of these macros, because the
|
| 515 |
|
|
C compiler that comes with the system takes care of doing them. */
|
| 516 |
|
|
/* #define perform_... */
|
| 517 |
|
|
|
| 518 |
|
|
|
| 519 |
|
|
/* Addressing Modes */
|
| 520 |
|
|
|
| 521 |
|
|
#define HAVE_POST_INCREMENT 1
|
| 522 |
|
|
|
| 523 |
|
|
#define HAVE_PRE_DECREMENT 1
|
| 524 |
|
|
|
| 525 |
|
|
#define MAX_REGS_PER_ADDRESS 1
|
| 526 |
|
|
|
| 527 |
|
|
#ifdef REG_OK_STRICT
|
| 528 |
|
|
#define REG_OK_FOR_BASE_P(X) \
|
| 529 |
|
|
(REGNO_OK_FOR_BASE_P (REGNO (X)) && (REGNO (X) < FIRST_PSEUDO_REGISTER))
|
| 530 |
|
|
#else
|
| 531 |
|
|
#define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
|
| 532 |
|
|
#endif
|
| 533 |
|
|
|
| 534 |
|
|
#define REG_OK_FOR_INDEX_P(X) REG_OK_FOR_BASE_P (X)
|
| 535 |
|
|
|
| 536 |
|
|
/* On this chip, this is true if the address is valid with an offset
|
| 537 |
|
|
of 0 but not of 6, because in that case it cannot be used as an
|
| 538 |
|
|
address for DImode or DFmode, or if the address is a post-increment
|
| 539 |
|
|
or pre-decrement address.
|
| 540 |
|
|
*/
|
| 541 |
|
|
#define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR,LABEL) \
|
| 542 |
|
|
if (xstormy16_mode_dependent_address_p (ADDR)) \
|
| 543 |
|
|
goto LABEL
|
| 544 |
|
|
|
| 545 |
|
|
#define LEGITIMATE_CONSTANT_P(X) 1
|
| 546 |
|
|
|
| 547 |
|
|
|
| 548 |
|
|
/* Describing Relative Costs of Operations */
|
| 549 |
|
|
|
| 550 |
|
|
#define REGISTER_MOVE_COST(MODE, FROM, TO) 2
|
| 551 |
|
|
|
| 552 |
|
|
#define MEMORY_MOVE_COST(M,C,I) (5 + memory_move_secondary_cost (M, C, I))
|
| 553 |
|
|
|
| 554 |
|
|
#define BRANCH_COST(speed_p, predictable_p) 5
|
| 555 |
|
|
|
| 556 |
|
|
#define SLOW_BYTE_ACCESS 0
|
| 557 |
|
|
|
| 558 |
|
|
#define NO_FUNCTION_CSE
|
| 559 |
|
|
|
| 560 |
|
|
|
| 561 |
|
|
/* Dividing the output into sections. */
|
| 562 |
|
|
|
| 563 |
|
|
#define TEXT_SECTION_ASM_OP ".text"
|
| 564 |
|
|
|
| 565 |
|
|
#define DATA_SECTION_ASM_OP ".data"
|
| 566 |
|
|
|
| 567 |
|
|
#define BSS_SECTION_ASM_OP "\t.section\t.bss"
|
| 568 |
|
|
|
| 569 |
|
|
/* Define the pseudo-ops used to switch to the .ctors and .dtors sections.
|
| 570 |
|
|
There are no shared libraries on this target so these sections need
|
| 571 |
|
|
not be writable.
|
| 572 |
|
|
|
| 573 |
|
|
Defined in elfos.h. */
|
| 574 |
|
|
|
| 575 |
|
|
#undef CTORS_SECTION_ASM_OP
|
| 576 |
|
|
#undef DTORS_SECTION_ASM_OP
|
| 577 |
|
|
#define CTORS_SECTION_ASM_OP "\t.section\t.ctors,\"a\""
|
| 578 |
|
|
#define DTORS_SECTION_ASM_OP "\t.section\t.dtors,\"a\""
|
| 579 |
|
|
|
| 580 |
|
|
#define TARGET_ASM_INIT_SECTIONS xstormy16_asm_init_sections
|
| 581 |
|
|
|
| 582 |
|
|
#define JUMP_TABLES_IN_TEXT_SECTION 1
|
| 583 |
|
|
|
| 584 |
|
|
/* The Overall Framework of an Assembler File. */
|
| 585 |
|
|
|
| 586 |
|
|
#define ASM_COMMENT_START ";"
|
| 587 |
|
|
|
| 588 |
|
|
#define ASM_APP_ON "#APP\n"
|
| 589 |
|
|
|
| 590 |
|
|
#define ASM_APP_OFF "#NO_APP\n"
|
| 591 |
|
|
|
| 592 |
|
|
/* Output of Data. */
|
| 593 |
|
|
|
| 594 |
|
|
#define IS_ASM_LOGICAL_LINE_SEPARATOR(C, STR) ((C) == '|')
|
| 595 |
|
|
|
| 596 |
|
|
#define ASM_OUTPUT_ALIGNED_DECL_COMMON(STREAM, DECL, NAME, SIZE, ALIGNMENT) \
|
| 597 |
|
|
xstormy16_asm_output_aligned_common (STREAM, DECL, NAME, SIZE, ALIGNMENT, 1)
|
| 598 |
|
|
#define ASM_OUTPUT_ALIGNED_DECL_LOCAL(STREAM, DECL, NAME, SIZE, ALIGNMENT) \
|
| 599 |
|
|
xstormy16_asm_output_aligned_common (STREAM, DECL, NAME, SIZE, ALIGNMENT, 0)
|
| 600 |
|
|
|
| 601 |
|
|
|
| 602 |
|
|
/* Output and Generation of Labels. */
|
| 603 |
|
|
#define SYMBOL_FLAG_XSTORMY16_BELOW100 (SYMBOL_FLAG_MACH_DEP << 0)
|
| 604 |
|
|
|
| 605 |
|
|
#define ASM_OUTPUT_SYMBOL_REF(STREAM, SYMBOL) \
|
| 606 |
|
|
do { \
|
| 607 |
|
|
const char *rn = XSTR (SYMBOL, 0); \
|
| 608 |
|
|
if (SYMBOL_REF_FUNCTION_P (SYMBOL)) \
|
| 609 |
|
|
ASM_OUTPUT_LABEL_REF ((STREAM), rn); \
|
| 610 |
|
|
else \
|
| 611 |
|
|
assemble_name (STREAM, rn); \
|
| 612 |
|
|
} while (0)
|
| 613 |
|
|
|
| 614 |
|
|
#define ASM_OUTPUT_LABEL_REF(STREAM, NAME) \
|
| 615 |
|
|
do { \
|
| 616 |
|
|
fputs ("@fptr(", STREAM); \
|
| 617 |
|
|
assemble_name (STREAM, NAME); \
|
| 618 |
|
|
fputc (')', STREAM); \
|
| 619 |
|
|
} while (0)
|
| 620 |
|
|
|
| 621 |
|
|
/* Globalizing directive for a label. */
|
| 622 |
|
|
#define GLOBAL_ASM_OP "\t.globl "
|
| 623 |
|
|
|
| 624 |
|
|
|
| 625 |
|
|
/* Macros Controlling Initialization Routines. */
|
| 626 |
|
|
|
| 627 |
|
|
/* When you are using special sections for
|
| 628 |
|
|
initialization and termination functions, this macro also controls how
|
| 629 |
|
|
`crtstuff.c' and `libgcc2.c' arrange to run the initialization functions.
|
| 630 |
|
|
|
| 631 |
|
|
Defined in svr4.h. */
|
| 632 |
|
|
/* #define INIT_SECTION_ASM_OP */
|
| 633 |
|
|
|
| 634 |
|
|
/* Define this macro as a C statement to output on the stream STREAM the
|
| 635 |
|
|
assembler code to arrange to call the function named NAME at initialization
|
| 636 |
|
|
time.
|
| 637 |
|
|
|
| 638 |
|
|
Assume that NAME is the name of a C function generated automatically by the
|
| 639 |
|
|
compiler. This function takes no arguments. Use the function
|
| 640 |
|
|
`assemble_name' to output the name NAME; this performs any system-specific
|
| 641 |
|
|
syntactic transformations such as adding an underscore.
|
| 642 |
|
|
|
| 643 |
|
|
If you don't define this macro, nothing special is output to arrange to call
|
| 644 |
|
|
the function. This is correct when the function will be called in some
|
| 645 |
|
|
other manner--for example, by means of the `collect2' program, which looks
|
| 646 |
|
|
through the symbol table to find these functions by their names.
|
| 647 |
|
|
|
| 648 |
|
|
Defined in svr4.h. */
|
| 649 |
|
|
/* #define ASM_OUTPUT_CONSTRUCTOR(STREAM, NAME) */
|
| 650 |
|
|
|
| 651 |
|
|
/* This is like `ASM_OUTPUT_CONSTRUCTOR' but used for termination functions
|
| 652 |
|
|
rather than initialization functions.
|
| 653 |
|
|
|
| 654 |
|
|
Defined in svr4.h. */
|
| 655 |
|
|
/* #define ASM_OUTPUT_DESTRUCTOR(STREAM, NAME) */
|
| 656 |
|
|
|
| 657 |
|
|
/* Define this macro if the system uses ELF format object files.
|
| 658 |
|
|
|
| 659 |
|
|
Defined in svr4.h. */
|
| 660 |
|
|
/* #define OBJECT_FORMAT_ELF */
|
| 661 |
|
|
|
| 662 |
|
|
|
| 663 |
|
|
/* Output of Assembler Instructions. */
|
| 664 |
|
|
|
| 665 |
|
|
#define REGISTER_NAMES \
|
| 666 |
|
|
{ "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", \
|
| 667 |
|
|
"r11", "r12", "r13", "psw", "sp", "carry", "fp", "ap" }
|
| 668 |
|
|
|
| 669 |
|
|
#define ADDITIONAL_REGISTER_NAMES \
|
| 670 |
|
|
{ { "r14", 14 }, \
|
| 671 |
|
|
{ "r15", 15 } }
|
| 672 |
|
|
|
| 673 |
|
|
#define PRINT_OPERAND(STREAM, X, CODE) xstormy16_print_operand (STREAM, X, CODE)
|
| 674 |
|
|
|
| 675 |
|
|
#define PRINT_OPERAND_ADDRESS(STREAM, X) xstormy16_print_operand_address (STREAM, X)
|
| 676 |
|
|
|
| 677 |
|
|
/* USER_LABEL_PREFIX is defined in svr4.h. */
|
| 678 |
|
|
#define REGISTER_PREFIX ""
|
| 679 |
|
|
#define LOCAL_LABEL_PREFIX "."
|
| 680 |
|
|
#define USER_LABEL_PREFIX ""
|
| 681 |
|
|
#define IMMEDIATE_PREFIX "#"
|
| 682 |
|
|
|
| 683 |
|
|
#define ASM_OUTPUT_REG_PUSH(STREAM, REGNO) \
|
| 684 |
|
|
fprintf (STREAM, "\tpush %d\n", REGNO)
|
| 685 |
|
|
|
| 686 |
|
|
#define ASM_OUTPUT_REG_POP(STREAM, REGNO) \
|
| 687 |
|
|
fprintf (STREAM, "\tpop %d\n", REGNO)
|
| 688 |
|
|
|
| 689 |
|
|
|
| 690 |
|
|
/* Output of dispatch tables. */
|
| 691 |
|
|
|
| 692 |
|
|
/* This port does not use the ASM_OUTPUT_ADDR_VEC_ELT macro, because
|
| 693 |
|
|
this could cause label alignment to appear between the 'br' and the table,
|
| 694 |
|
|
which would be bad. Instead, it controls the output of the table
|
| 695 |
|
|
itself. */
|
| 696 |
|
|
#define ASM_OUTPUT_ADDR_VEC(LABEL, BODY) \
|
| 697 |
|
|
xstormy16_output_addr_vec (file, LABEL, BODY)
|
| 698 |
|
|
|
| 699 |
|
|
/* Alignment for ADDR_VECs is the same as for code. */
|
| 700 |
|
|
#define ADDR_VEC_ALIGN(ADDR_VEC) 1
|
| 701 |
|
|
|
| 702 |
|
|
|
| 703 |
|
|
/* Assembler Commands for Exception Regions. */
|
| 704 |
|
|
|
| 705 |
|
|
#define DWARF2_UNWIND_INFO 0
|
| 706 |
|
|
#define DWARF_CIE_DATA_ALIGNMENT 1
|
| 707 |
|
|
|
| 708 |
|
|
/* Don't use __builtin_setjmp for unwinding, since it's tricky to get
|
| 709 |
|
|
at the high 16 bits of an address. */
|
| 710 |
|
|
#define DONT_USE_BUILTIN_SETJMP
|
| 711 |
|
|
#define JMP_BUF_SIZE 8
|
| 712 |
|
|
|
| 713 |
|
|
/* Assembler Commands for Alignment. */
|
| 714 |
|
|
|
| 715 |
|
|
#define ASM_OUTPUT_ALIGN(STREAM, POWER) \
|
| 716 |
|
|
fprintf ((STREAM), "\t.p2align %d\n", (POWER))
|
| 717 |
|
|
|
| 718 |
|
|
|
| 719 |
|
|
/* Macros Affecting all Debug Formats. */
|
| 720 |
|
|
|
| 721 |
|
|
/* Defined in svr4.h. */
|
| 722 |
|
|
#undef PREFERRED_DEBUGGING_TYPE
|
| 723 |
|
|
#define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
|
| 724 |
|
|
|
| 725 |
|
|
|
| 726 |
|
|
/* Macros for SDB and Dwarf Output. */
|
| 727 |
|
|
|
| 728 |
|
|
/* Define this macro if addresses in Dwarf 2 debugging info should not
|
| 729 |
|
|
be the same size as pointers on the target architecture. The
|
| 730 |
|
|
macro's value should be the size, in bytes, to use for addresses in
|
| 731 |
|
|
the debugging info.
|
| 732 |
|
|
|
| 733 |
|
|
Some architectures use word addresses to refer to code locations,
|
| 734 |
|
|
but Dwarf 2 info always uses byte addresses. On such machines,
|
| 735 |
|
|
Dwarf 2 addresses need to be larger than the architecture's
|
| 736 |
|
|
pointers. */
|
| 737 |
|
|
#define DWARF2_ADDR_SIZE 4
|
| 738 |
|
|
|
| 739 |
|
|
|
| 740 |
|
|
/* Miscellaneous Parameters. */
|
| 741 |
|
|
|
| 742 |
|
|
#define CASE_VECTOR_MODE SImode
|
| 743 |
|
|
|
| 744 |
|
|
#define WORD_REGISTER_OPERATIONS
|
| 745 |
|
|
|
| 746 |
|
|
#define LOAD_EXTEND_OP(MODE) ZERO_EXTEND
|
| 747 |
|
|
|
| 748 |
|
|
#define MOVE_MAX 2
|
| 749 |
|
|
|
| 750 |
|
|
#define SHIFT_COUNT_TRUNCATED 1
|
| 751 |
|
|
|
| 752 |
|
|
#define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
|
| 753 |
|
|
|
| 754 |
|
|
#define Pmode HImode
|
| 755 |
|
|
|
| 756 |
|
|
#define FUNCTION_MODE HImode
|
| 757 |
|
|
|
| 758 |
|
|
#define NO_IMPLICIT_EXTERN_C
|
| 759 |
|
|
|
| 760 |
|
|
/* Defined in svr4.h. */
|
| 761 |
|
|
#define HANDLE_SYSV_PRAGMA 1
|
| 762 |
|
|
|
| 763 |
|
|
/* Define this if the target system supports the function `atexit' from the
|
| 764 |
|
|
ANSI C standard. If this is not defined, and `INIT_SECTION_ASM_OP' is not
|
| 765 |
|
|
defined, a default `exit' function will be provided to support C++.
|
| 766 |
|
|
|
| 767 |
|
|
Defined by svr4.h */
|
| 768 |
|
|
/* #define HAVE_ATEXIT */
|
| 769 |
|
|
|
| 770 |
|
|
/* A C statement which is executed by the Haifa scheduler after it has scheduled
|
| 771 |
|
|
an insn from the ready list. FILE is either a null pointer, or a stdio stream
|
| 772 |
|
|
to write any debug output to. VERBOSE is the verbose level provided by
|
| 773 |
|
|
-fsched-verbose-<n>. INSN is the instruction that was scheduled. MORE is the
|
| 774 |
|
|
number of instructions that can be issued in the current cycle. This macro
|
| 775 |
|
|
is responsible for updating the value of MORE (typically by (MORE)--). */
|
| 776 |
|
|
/* #define MD_SCHED_VARIABLE_ISSUE (FILE, VERBOSE, INSN, MORE) */
|
| 777 |
|
|
|
| 778 |
|
|
/* End of xstormy16.h */
|