OSDN Git Service

* defaults.h (FRAME_POINTER_REQUIRED): Provide default.
[pf3gnuchains/gcc-fork.git] / gcc / config / stormy16 / stormy16.h
1 /* Xstormy16 cpu description.
2    Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2007,
3    2008  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 \f
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 \f
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 \f
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 \f
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 \f
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 \f
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 \f
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 \f
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 \f
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 \f
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 \f
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 CAN_ELIMINATE(FROM, TO)                                         \
379  ((FROM) == ARG_POINTER_REGNUM && (TO) == STACK_POINTER_REGNUM          \
380   ? ! frame_pointer_needed                                              \
381   : 1)
382
383 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
384   (OFFSET) = xstormy16_initial_elimination_offset (FROM, TO)
385
386 \f
387 /* Passing Function Arguments on the Stack */
388
389 #define PUSH_ROUNDING(BYTES) (((BYTES) + 1) & ~1)
390
391 #define RETURN_POPS_ARGS(FUNDECL, FUNTYPE, STACK_SIZE) 0
392
393 \f
394 /* Function Arguments in Registers */
395
396 #define NUM_ARGUMENT_REGISTERS 6
397 #define FIRST_ARGUMENT_REGISTER 2
398
399 #define XSTORMY16_WORD_SIZE(TYPE, MODE)                         \
400   ((((TYPE) ? int_size_in_bytes (TYPE) : GET_MODE_SIZE (MODE))  \
401     + 1)                                                        \
402    / 2)
403
404 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \
405         xstormy16_function_arg (CUM, MODE, TYPE, NAMED)
406
407 /* For this platform, the value of CUMULATIVE_ARGS is the number of words
408    of arguments that have been passed in registers so far.  */
409 #define CUMULATIVE_ARGS int
410
411 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT, N_NAMED_ARGS) \
412   (CUM) = 0
413
414 #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED)                    \
415   ((CUM) = xstormy16_function_arg_advance (CUM, MODE, TYPE, NAMED))
416
417 #define FUNCTION_ARG_REGNO_P(REGNO)                                     \
418   ((REGNO) >= FIRST_ARGUMENT_REGISTER                                   \
419    && (REGNO) < FIRST_ARGUMENT_REGISTER + NUM_ARGUMENT_REGISTERS)
420
421 \f
422 /* How Scalar Function Values are Returned */
423
424 /* The number of the hard register that is used to return a scalar value from a
425    function call.  */
426 #define RETURN_VALUE_REGNUM     FIRST_ARGUMENT_REGISTER
427      
428 #define FUNCTION_VALUE(VALTYPE, FUNC) \
429   xstormy16_function_value (VALTYPE, FUNC)
430
431 #define LIBCALL_VALUE(MODE) gen_rtx_REG (MODE, RETURN_VALUE_REGNUM)
432
433 #define FUNCTION_VALUE_REGNO_P(REGNO) ((REGNO) == RETURN_VALUE_REGNUM)
434
435 \f
436 /* Function Entry and Exit */
437
438 #define EPILOGUE_USES(REGNO) \
439   xstormy16_epilogue_uses (REGNO)
440
441 \f
442 /* Generating Code for Profiling.  */
443
444 /* This declaration must be present, but it can be an abort if profiling is
445    not implemented.  */
446      
447 #define FUNCTION_PROFILER(FILE, LABELNO) xstormy16_function_profiler ()
448
449 \f
450 /* If the target has particular reasons why a function cannot be inlined,
451    it may define the TARGET_CANNOT_INLINE_P.  This macro takes one argument,
452    the DECL describing the function.  The function should NULL if the function
453    *can* be inlined.  Otherwise it should return a pointer to a string containing
454    a message describing why the function could not be inlined.  The message will
455    displayed if the '-Winline' command line switch has been given.  If the message
456    contains a '%s' sequence, this will be replaced by the name of the function.  */
457 /* #define TARGET_CANNOT_INLINE_P(FN_DECL) xstormy16_cannot_inline_p (FN_DECL) */
458 \f
459 /* Trampolines for Nested Functions.  */
460
461 #define TRAMPOLINE_SIZE 8
462
463 #define TRAMPOLINE_ALIGNMENT 16
464
465 #define INITIALIZE_TRAMPOLINE(ADDR, FNADDR, STATIC_CHAIN) \
466   xstormy16_initialize_trampoline (ADDR, FNADDR, STATIC_CHAIN)
467
468 \f
469 /* Define this macro to override the type used by the library routines to pick
470    up arguments of type `float'.  (By default, they use a union of `float' and
471    `int'.)
472
473    The obvious choice would be `float'--but that won't work with traditional C
474    compilers that expect all arguments declared as `float' to arrive as
475    `double'.  To avoid this conversion, the library routines ask for the value
476    as some other type and then treat it as a `float'.  */
477 /* #define FLOAT_ARG_TYPE */
478
479 /* Define this macro to override the way library routines redesignate a `float'
480    argument as a `float' instead of the type it was passed as.  The default is
481    an expression which takes the `float' field of the union.  */
482 /* #define FLOATIFY(PASSED_VALUE) */
483
484 /* Define this macro to override the type used by the library routines to
485    return values that ought to have type `float'.  (By default, they use
486    `int'.)
487
488    The obvious choice would be `float'--but that won't work with traditional C
489    compilers gratuitously convert values declared as `float' into `double'.  */
490 /* #define FLOAT_VALUE_TYPE */
491
492 /* Define this macro to override the way the value of a `float'-returning
493    library routine should be packaged in order to return it.  These functions
494    are actually declared to return type `FLOAT_VALUE_TYPE' (normally `int').
495
496    These values can't be returned as type `float' because traditional C
497    compilers would gratuitously convert the value to a `double'.
498
499    A local variable named `intify' is always available when the macro `INTIFY'
500    is used.  It is a union of a `float' field named `f' and a field named `i'
501    whose type is `FLOAT_VALUE_TYPE' or `int'.
502
503    If you don't define this macro, the default definition works by copying the
504    value through that union.  */
505 /* #define INTIFY(FLOAT_VALUE) */
506
507 /* Define this macro as the name of the data type corresponding to `SImode' in
508    the system's own C compiler.
509
510    You need not define this macro if that type is `long int', as it usually is.  */
511 /* #define nongcc_SI_type */
512
513 /* Define this macro as the name of the data type corresponding to the
514    word_mode in the system's own C compiler.
515
516    You need not define this macro if that type is `long int', as it usually is.  */
517 /* #define nongcc_word_type */
518
519 /* Define these macros to supply explicit C statements to carry out various
520    arithmetic operations on types `float' and `double' in the library routines
521    in `libgcc1.c'.  See that file for a full list of these macros and their
522    arguments.
523
524    On most machines, you don't need to define any of these macros, because the
525    C compiler that comes with the system takes care of doing them.  */
526 /* #define perform_...  */
527
528 \f
529 /* Addressing Modes */
530
531 #define HAVE_POST_INCREMENT 1
532
533 #define HAVE_PRE_DECREMENT 1
534
535 #define CONSTANT_ADDRESS_P(X) CONSTANT_P (X)
536
537 #define MAX_REGS_PER_ADDRESS 1
538
539 #ifdef REG_OK_STRICT
540 #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, LABEL)        \
541 do {                                                    \
542   if (xstormy16_legitimate_address_p (MODE, X, 1))      \
543     goto LABEL;                                         \
544 } while (0)
545 #else
546 #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, LABEL)        \
547 do {                                                    \
548   if (xstormy16_legitimate_address_p (MODE, X, 0))      \
549     goto LABEL;                                         \
550 } while (0)
551 #endif
552
553 #ifdef REG_OK_STRICT
554 #define REG_OK_FOR_BASE_P(X)                                               \
555   (REGNO_OK_FOR_BASE_P (REGNO (X)) && (REGNO (X) < FIRST_PSEUDO_REGISTER))
556 #else
557 #define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
558 #endif
559
560 #define REG_OK_FOR_INDEX_P(X) REG_OK_FOR_BASE_P (X)
561
562 /* On this chip, this is true if the address is valid with an offset
563    of 0 but not of 6, because in that case it cannot be used as an
564    address for DImode or DFmode, or if the address is a post-increment
565    or pre-decrement address.
566 */
567 #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR,LABEL)                        \
568   if (xstormy16_mode_dependent_address_p (ADDR))                                \
569     goto LABEL
570
571 #define LEGITIMATE_CONSTANT_P(X) 1
572
573 \f
574 /* Describing Relative Costs of Operations */
575
576 #define REGISTER_MOVE_COST(MODE, FROM, TO) 2
577
578 #define MEMORY_MOVE_COST(M,C,I) (5 + memory_move_secondary_cost (M, C, I))
579
580 #define BRANCH_COST(speed_p, predictable_p) 5
581
582 #define SLOW_BYTE_ACCESS 0
583
584 #define NO_FUNCTION_CSE
585
586 \f
587 /* Dividing the output into sections.  */
588
589 #define TEXT_SECTION_ASM_OP ".text"
590
591 #define DATA_SECTION_ASM_OP ".data"
592
593 #define BSS_SECTION_ASM_OP "\t.section\t.bss"
594
595 /* Define the pseudo-ops used to switch to the .ctors and .dtors sections.
596    There are no shared libraries on this target so these sections need
597    not be writable.
598
599    Defined in elfos.h.  */
600
601 #undef CTORS_SECTION_ASM_OP
602 #undef DTORS_SECTION_ASM_OP
603 #define CTORS_SECTION_ASM_OP    "\t.section\t.ctors,\"a\""
604 #define DTORS_SECTION_ASM_OP    "\t.section\t.dtors,\"a\""
605
606 #define TARGET_ASM_INIT_SECTIONS xstormy16_asm_init_sections
607
608 #define JUMP_TABLES_IN_TEXT_SECTION 1
609 \f
610 /* The Overall Framework of an Assembler File.  */
611
612 #define ASM_COMMENT_START ";"
613
614 #define ASM_APP_ON "#APP\n"
615
616 #define ASM_APP_OFF "#NO_APP\n"
617 \f
618 /* Output of Data.  */
619
620 #define IS_ASM_LOGICAL_LINE_SEPARATOR(C, STR) ((C) == '|')
621
622 #define ASM_OUTPUT_ALIGNED_DECL_COMMON(STREAM, DECL, NAME, SIZE, ALIGNMENT) \
623   xstormy16_asm_output_aligned_common (STREAM, DECL, NAME, SIZE, ALIGNMENT, 1)
624 #define ASM_OUTPUT_ALIGNED_DECL_LOCAL(STREAM, DECL, NAME, SIZE, ALIGNMENT) \
625   xstormy16_asm_output_aligned_common (STREAM, DECL, NAME, SIZE, ALIGNMENT, 0)
626
627 \f
628 /* Output and Generation of Labels.  */
629 #define SYMBOL_FLAG_XSTORMY16_BELOW100  (SYMBOL_FLAG_MACH_DEP << 0)
630
631 #define ASM_OUTPUT_SYMBOL_REF(STREAM, SYMBOL)                           \
632   do {                                                                  \
633     const char *rn = XSTR (SYMBOL, 0);                                  \
634     if (SYMBOL_REF_FUNCTION_P (SYMBOL))                                 \
635       ASM_OUTPUT_LABEL_REF ((STREAM), rn);                              \
636     else                                                                \
637       assemble_name (STREAM, rn);                                       \
638   } while (0)
639
640 #define ASM_OUTPUT_LABEL_REF(STREAM, NAME)      \
641 do  {                                           \
642   fputs ("@fptr(", STREAM);                     \
643   assemble_name (STREAM, NAME);                 \
644   fputc (')', STREAM);                          \
645 } while (0)
646
647 /* Globalizing directive for a label.  */
648 #define GLOBAL_ASM_OP "\t.globl "
649
650 \f
651 /* Macros Controlling Initialization Routines.  */
652
653 /* When you are using special sections for
654    initialization and termination functions, this macro also controls how
655    `crtstuff.c' and `libgcc2.c' arrange to run the initialization functions.
656
657    Defined in svr4.h.  */
658 /* #define INIT_SECTION_ASM_OP */
659
660 /* Define this macro as a C statement to output on the stream STREAM the
661    assembler code to arrange to call the function named NAME at initialization
662    time.
663
664    Assume that NAME is the name of a C function generated automatically by the
665    compiler.  This function takes no arguments.  Use the function
666    `assemble_name' to output the name NAME; this performs any system-specific
667    syntactic transformations such as adding an underscore.
668
669    If you don't define this macro, nothing special is output to arrange to call
670    the function.  This is correct when the function will be called in some
671    other manner--for example, by means of the `collect2' program, which looks
672    through the symbol table to find these functions by their names.
673
674    Defined in svr4.h.  */
675 /* #define ASM_OUTPUT_CONSTRUCTOR(STREAM, NAME) */
676
677 /* This is like `ASM_OUTPUT_CONSTRUCTOR' but used for termination functions
678    rather than initialization functions.
679
680    Defined in svr4.h.  */
681 /* #define ASM_OUTPUT_DESTRUCTOR(STREAM, NAME) */
682
683 /* Define this macro if the system uses ELF format object files.
684
685    Defined in svr4.h.  */
686 /* #define OBJECT_FORMAT_ELF */
687
688 \f
689 /* Output of Assembler Instructions.  */
690
691 #define REGISTER_NAMES                                                  \
692 { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10",    \
693   "r11", "r12", "r13", "psw", "sp", "carry", "fp", "ap" }
694
695 #define ADDITIONAL_REGISTER_NAMES               \
696   { { "r14", 14 },                              \
697     { "r15", 15 } }
698
699 #define PRINT_OPERAND(STREAM, X, CODE) xstormy16_print_operand (STREAM, X, CODE)
700
701 #define PRINT_OPERAND_ADDRESS(STREAM, X) xstormy16_print_operand_address (STREAM, X)
702
703 /* USER_LABEL_PREFIX is defined in svr4.h.  */
704 #define REGISTER_PREFIX ""
705 #define LOCAL_LABEL_PREFIX "."
706 #define USER_LABEL_PREFIX ""
707 #define IMMEDIATE_PREFIX "#"
708
709 #define ASM_OUTPUT_REG_PUSH(STREAM, REGNO) \
710   fprintf (STREAM, "\tpush %d\n", REGNO)
711
712 #define ASM_OUTPUT_REG_POP(STREAM, REGNO) \
713   fprintf (STREAM, "\tpop %d\n", REGNO)
714
715 \f
716 /* Output of dispatch tables.  */
717
718 /* This port does not use the ASM_OUTPUT_ADDR_VEC_ELT macro, because
719    this could cause label alignment to appear between the 'br' and the table,
720    which would be bad.  Instead, it controls the output of the table
721    itself.  */
722 #define ASM_OUTPUT_ADDR_VEC(LABEL, BODY) \
723   xstormy16_output_addr_vec (file, LABEL, BODY)
724
725 /* Alignment for ADDR_VECs is the same as for code.  */
726 #define ADDR_VEC_ALIGN(ADDR_VEC) 1
727
728 \f
729 /* Assembler Commands for Exception Regions.  */
730
731 #define DWARF2_UNWIND_INFO              0
732 #define DWARF_CIE_DATA_ALIGNMENT        1
733
734 /* Don't use __builtin_setjmp for unwinding, since it's tricky to get
735    at the high 16 bits of an address.  */
736 #define DONT_USE_BUILTIN_SETJMP
737 #define JMP_BUF_SIZE  8
738 \f
739 /* Assembler Commands for Alignment.  */
740
741 #define ASM_OUTPUT_ALIGN(STREAM, POWER) \
742   fprintf ((STREAM), "\t.p2align %d\n", (POWER))
743
744 \f
745 /* Macros Affecting all Debug Formats.  */
746
747 /* Defined in svr4.h.  */
748 #undef PREFERRED_DEBUGGING_TYPE
749 #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
750
751 \f
752 /* Macros for SDB and Dwarf Output.  */
753
754 /* Define this macro if addresses in Dwarf 2 debugging info should not
755    be the same size as pointers on the target architecture.  The
756    macro's value should be the size, in bytes, to use for addresses in
757    the debugging info.
758
759    Some architectures use word addresses to refer to code locations,
760    but Dwarf 2 info always uses byte addresses.  On such machines,
761    Dwarf 2 addresses need to be larger than the architecture's
762    pointers.  */
763 #define DWARF2_ADDR_SIZE 4
764
765 \f
766 /* Miscellaneous Parameters.  */
767
768 #define CASE_VECTOR_MODE SImode
769
770 #define WORD_REGISTER_OPERATIONS
771
772 #define LOAD_EXTEND_OP(MODE) ZERO_EXTEND
773
774 #define MOVE_MAX 2
775
776 #define SHIFT_COUNT_TRUNCATED 1
777
778 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
779
780 #define Pmode HImode
781
782 #define FUNCTION_MODE HImode
783
784 #define NO_IMPLICIT_EXTERN_C
785
786 /* Defined in svr4.h.  */
787 #define HANDLE_SYSV_PRAGMA 1
788
789 /* Define this if the target system supports the function `atexit' from the
790    ANSI C standard.  If this is not defined, and `INIT_SECTION_ASM_OP' is not
791    defined, a default `exit' function will be provided to support C++.
792
793    Defined by svr4.h */
794 /* #define HAVE_ATEXIT */
795
796 /* A C statement which is executed by the Haifa scheduler after it has scheduled
797    an insn from the ready list.  FILE is either a null pointer, or a stdio stream
798    to write any debug output to.  VERBOSE is the verbose level provided by
799    -fsched-verbose-<n>.  INSN is the instruction that was scheduled.  MORE is the
800    number of instructions that can be issued in the current cycle.  This macro
801    is responsible for updating the value of MORE (typically by (MORE)--).  */
802 /* #define MD_SCHED_VARIABLE_ISSUE (FILE, VERBOSE, INSN, MORE) */
803
804 \f
805 /* Define the information needed to generate branch and scc insns.  This is
806    stored from the compare operation.  Note that we can't use "rtx" here
807    since it hasn't been defined!  */
808
809 extern struct rtx_def *xstormy16_compare_op0, *xstormy16_compare_op1;
810
811 /* End of xstormy16.h */