OSDN Git Service

* config/chorus.h: Consistently define *_DEBUGGING_INFO with
[pf3gnuchains/gcc-fork.git] / gcc / config / h8300 / h8300.h
1 /* Definitions of target machine for GNU compiler.
2    Hitachi H8/300 version generating coff
3    Copyright (C) 1992, 1993, 1994, 1995, 1996, 1996, 1997, 1998, 1999,
4    2000, 2001, 2002 Free Software Foundation, Inc.
5    Contributed by Steve Chamberlain (sac@cygnus.com),
6    Jim Wilson (wilson@cygnus.com), and Doug Evans (dje@cygnus.com).
7
8 This file is part of GNU CC.
9
10 GNU CC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
14
15 GNU CC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GNU CC; see the file COPYING.  If not, write to
22 the Free Software Foundation, 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA.  */
24
25 #ifndef GCC_H8300_H
26 #define GCC_H8300_H
27
28 /* Which CPU to compile for.
29    We use int for CPU_TYPE to avoid lots of casts.  */
30 #if 0 /* defined in insn-attr.h, here for documentation */
31 enum attr_cpu { CPU_H8300, CPU_H8300H };
32 #endif
33 extern int cpu_type;
34
35 /* Various globals defined in h8300.c.  */
36
37 extern const char *h8_push_op, *h8_pop_op, *h8_mov_op;
38 extern const char * const *h8_reg_names;
39
40 /* Target CPU builtins.  */
41 #define TARGET_CPU_CPP_BUILTINS()                       \
42   do                                                    \
43     {                                                   \
44       if (TARGET_H8300H)                                \
45         {                                               \
46           builtin_define ("__H8300H__");                \
47           builtin_assert ("cpu=h8300h");                \
48           builtin_assert ("machine=h8300h");            \
49         }                                               \
50       else if (TARGET_H8300S)                           \
51         {                                               \
52           builtin_define ("__H8300S__");                \
53           builtin_assert ("cpu=h8300s");                \
54           builtin_assert ("machine=h8300s");            \
55         }                                               \
56       else                                              \
57         {                                               \
58           builtin_define ("__H8300__");                 \
59           builtin_assert ("cpu=h8300");                 \
60           builtin_assert ("machine=h8300");             \
61         }                                               \
62     }                                                   \
63   while (0)
64
65 #define LINK_SPEC "%{mh:-m h8300h} %{ms:-m h8300s}"
66
67 #define LIB_SPEC "%{mrelax:-relax} %{g:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}"
68
69 /* Print subsidiary information on the compiler version in use.  */
70
71 #define TARGET_VERSION fprintf (stderr, " (Hitachi H8/300)");
72
73 /* Run-time compilation parameters selecting different hardware subsets.  */
74
75 extern int target_flags;
76
77 /* Macros used in the machine description to test the flags.  */
78
79 /* Make int's 32 bits.  */
80 #define TARGET_INT32 (target_flags & 8)
81
82 /* Dump recorded insn lengths into the output file.  This helps debug the
83    md file.  */
84 #define TARGET_ADDRESSES (target_flags & 64)
85
86 /* Pass the first few arguments in registers.  */
87 #define TARGET_QUICKCALL (target_flags & 128)
88
89 /* Pretend byte accesses are slow.  */
90 #define TARGET_SLOWBYTE (target_flags & 256)
91
92 /* Dump each assembler insn's rtl into the output file.
93    This is for debugging the compiler only.  */
94 #define TARGET_RTL_DUMP (target_flags & 2048)
95
96 /* Select between the H8/300 and H8/300H CPUs.  */
97 #define TARGET_H8300    (! TARGET_H8300H && ! TARGET_H8300S)
98 #define TARGET_H8300H   (target_flags & 4096)
99 #define TARGET_H8300S   (target_flags & 1)
100
101 /* mac register and relevant instructions are available.  */
102 #define TARGET_MAC    (target_flags & 2)
103
104 /* Align all values on the H8/300H the same way as the H8/300.  Specifically,
105    32 bit and larger values are aligned on 16 bit boundaries.
106    This is all the hardware requires, but the default is 32 bits for the 300H.
107    ??? Now watch someone add hardware floating point requiring 32 bit
108    alignment.  */
109 #define TARGET_ALIGN_300 (target_flags & 8192)
110
111 /* Macro to define tables used to set the flags.
112    This is a list in braces of pairs in braces,
113    each pair being { "NAME", VALUE }
114    where VALUE is the bits to set or minus the bits to clear.
115    An empty string NAME is used to identify the default VALUE.  */
116
117 #define TARGET_SWITCHES  \
118   { {"s",               1,     N_("Generate H8/S code")},               \
119     {"no-s",            -1,    N_("Do not generate H8/S code")},        \
120     {"s2600",           2,     N_("Generate H8/S2600 code")},           \
121     {"no-s2600",        -2,    N_("Do not generate H8/S2600 code")},    \
122     {"int32",           8,     N_("Make integers 32 bits wide")},       \
123     {"addresses",       64,    NULL},                                   \
124     {"quickcall",       128,                                            \
125      N_("Use registers for argument passing")},                 \
126     {"no-quickcall",    -128,                                           \
127      N_("Do not use registers for argument passing")},                  \
128     {"slowbyte",        256,                                            \
129      N_("Consider access to byte sized memory slow")},                  \
130     {"relax",           1024,  N_("Enable linker relaxing")},           \
131     {"rtl-dump",        2048,  NULL},                                   \
132     {"h",               4096,  N_("Generate H8/300H code")},            \
133     {"no-h",            -4096, N_("Do not generate H8/300H code")},     \
134     {"align-300",       8192,  N_("Use H8/300 alignment rules")},       \
135     { "", TARGET_DEFAULT, NULL}}
136
137 #ifdef IN_LIBGCC2
138 #undef TARGET_H8300H
139 #undef TARGET_H8300S
140 /* If compiling libgcc2, make these compile time constants based on what
141    flags are we actually compiling with.  */
142 #ifdef __H8300H__
143 #define TARGET_H8300H   1
144 #else
145 #define TARGET_H8300H   0
146 #endif
147 #ifdef __H8300S__
148 #define TARGET_H8300S   1
149 #else
150 #define TARGET_H8300S   0
151 #endif
152 #endif /* !IN_LIBGCC2 */
153
154 /* Do things that must be done once at start up.  */
155
156 #define OVERRIDE_OPTIONS                        \
157   do                                            \
158     {                                           \
159       h8300_init_once ();                       \
160     }                                           \
161   while (0)
162
163 /* Default target_flags if no switches specified.  */
164
165 #ifndef TARGET_DEFAULT
166 #define TARGET_DEFAULT (128)    /* quickcall */
167 #endif
168
169 /* Show we can debug even without a frame pointer.  */
170 /* #define CAN_DEBUG_WITHOUT_FP */
171
172 /* Define this if addresses of constant functions
173    shouldn't be put through pseudo regs where they can be cse'd.
174    Desirable on machines where ordinary constants are expensive
175    but a CALL with constant address is cheap.
176
177    Calls through a register are cheaper than calls to named
178    functions; however, the register pressure this causes makes
179    CSEing of function addresses generally a lose.  */
180 #define NO_FUNCTION_CSE
181 \f
182 /* Target machine storage layout */
183
184 /* Define this if most significant bit is lowest numbered
185    in instructions that operate on numbered bit-fields.
186    This is not true on the H8/300.  */
187 #define BITS_BIG_ENDIAN 0
188
189 /* Define this if most significant byte of a word is the lowest numbered.  */
190 /* That is true on the H8/300.  */
191 #define BYTES_BIG_ENDIAN 1
192
193 /* Define this if most significant word of a multiword number is lowest
194    numbered.
195    This is true on an H8/300 (actually we can make it up, but we choose to
196    be consistent).  */
197 #define WORDS_BIG_ENDIAN 1
198
199 #define MAX_BITS_PER_WORD       32
200
201 /* Width of a word, in units (bytes).  */
202 #define UNITS_PER_WORD          (TARGET_H8300H || TARGET_H8300S ? 4 : 2)
203 #define MIN_UNITS_PER_WORD      2
204
205 #define SHORT_TYPE_SIZE 16
206 #define INT_TYPE_SIZE           (TARGET_INT32 ? 32 : 16)
207 #define LONG_TYPE_SIZE          32
208 #define LONG_LONG_TYPE_SIZE     32
209 #define FLOAT_TYPE_SIZE 32
210 #define DOUBLE_TYPE_SIZE        32
211 #define LONG_DOUBLE_TYPE_SIZE   DOUBLE_TYPE_SIZE
212
213 #define MAX_FIXED_MODE_SIZE     32
214
215 /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
216 #define PARM_BOUNDARY (TARGET_H8300H || TARGET_H8300S ? 32 : 16)
217
218 /* Allocation boundary (in *bits*) for the code of a function.  */
219 #define FUNCTION_BOUNDARY 16
220
221 /* Alignment of field after `int : 0' in a structure.  */
222 /* One can argue this should be 32 for -mint32, but since 32 bit ints only
223    need 16 bit alignment, this is left as is so that -mint32 doesn't change
224    structure layouts.  */
225 #define EMPTY_FIELD_BOUNDARY 16
226
227 /* A bitfield declared as `int' forces `int' alignment for the struct.  */
228 #define PCC_BITFIELD_TYPE_MATTERS  0
229
230 /* No data type wants to be aligned rounder than this.
231    32 bit values are aligned as such on the H8/300H and H8/S for speed.  */
232 #define BIGGEST_ALIGNMENT \
233 (((TARGET_H8300H || TARGET_H8300S) && ! TARGET_ALIGN_300) ? 32 : 16)
234
235 /* The stack goes in 16/32 bit lumps.  */
236 #define STACK_BOUNDARY (TARGET_H8300 ? 16 : 32)
237
238 /* Define this if move instructions will actually fail to work
239    when given unaligned data.  */
240 /* On the H8/300, longs can be aligned on halfword boundaries, but not
241    byte boundaries.  */
242 #define STRICT_ALIGNMENT 1
243 \f
244 /* Standard register usage.  */
245
246 /* Number of actual hardware registers.
247    The hardware registers are assigned numbers for the compiler
248    from 0 to just below FIRST_PSEUDO_REGISTER.
249
250    All registers that the compiler knows about must be given numbers,
251    even those that are not normally considered general registers.
252
253    Reg 9 does not correspond to any hardware register, but instead
254    appears in the RTL as an argument pointer prior to reload, and is
255    eliminated during reloading in favor of either the stack or frame
256    pointer.  */
257
258 #define FIRST_PSEUDO_REGISTER 11
259
260 /* 1 for registers that have pervasive standard uses
261    and are not available for the register allocator.  */
262
263 #define FIXED_REGISTERS \
264   { 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1}
265
266 /* 1 for registers not available across function calls.
267    These must include the FIXED_REGISTERS and also any
268    registers that can be used without being saved.
269    The latter must include the registers where values are returned
270    and the register where structure-value addresses are passed.
271    Aside from that, you can include as many other registers as you
272    like.
273
274    H8 destroys r0,r1,r2,r3.  */
275
276 #define CALL_USED_REGISTERS \
277   { 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1 }
278
279 #define REG_ALLOC_ORDER \
280   { 2, 3, 0, 1, 4, 5, 6, 8, 7, 9, 10}
281
282 #define CONDITIONAL_REGISTER_USAGE                      \
283 {                                                       \
284   if (!TARGET_MAC)                                      \
285     fixed_regs[MAC_REG] = call_used_regs[MAC_REG] = 1;  \
286 }
287
288 /* Return number of consecutive hard regs needed starting at reg REGNO
289    to hold something of mode MODE.
290
291    This is ordinarily the length in words of a value of mode MODE
292    but can be less for certain modes in special long registers.
293
294    We pretend the MAC register is 32bits -- we don't have any data
295    types on the H8 series to handle more than 32bits.  */
296
297 #define HARD_REGNO_NREGS(REGNO, MODE)   \
298    ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
299
300 /* Value is 1 if hard register REGNO can hold a value of machine-mode
301    MODE.
302
303    H8/300: If an even reg, then anything goes. Otherwise the mode must be QI
304            or HI.
305    H8/300H: Anything goes.  */
306
307 #define HARD_REGNO_MODE_OK(REGNO, MODE)                                 \
308   (TARGET_H8300                                                         \
309    ? ((((REGNO) & 1) == 0) || ((MODE) == HImode) || ((MODE) == QImode)) \
310    : (REGNO) == MAC_REG ? (MODE) == SImode : 1)
311
312 /* Value is 1 if it is a good idea to tie two pseudo registers
313    when one has mode MODE1 and one has mode MODE2.
314    If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
315    for any hard reg, then this must be 0 for correct output.  */
316 #define MODES_TIEABLE_P(MODE1, MODE2)                                     \
317   ((MODE1) == (MODE2)                                                     \
318    || (((MODE1) == QImode || (MODE1) == HImode                            \
319         || ((TARGET_H8300H || TARGET_H8300S) && (MODE1) == SImode))       \
320        &&  ((MODE2) == QImode || (MODE2) == HImode                        \
321             || ((TARGET_H8300H || TARGET_H8300S) && (MODE2) == SImode))))
322
323 /* Specify the registers used for certain standard purposes.
324    The values of these macros are register numbers.  */
325
326 /* H8/300 pc is not overloaded on a register.  */
327
328 /*#define PC_REGNUM 15*/
329
330 /* Register to use for pushing function arguments.  */
331 #define STACK_POINTER_REGNUM SP_REG
332
333 /* Base register for access to local variables of the function.  */
334 #define FRAME_POINTER_REGNUM FP_REG
335
336 /* Value should be nonzero if functions must have frame pointers.
337    Zero means the frame pointer need not be set up (and parms
338    may be accessed via the stack pointer) in functions that seem suitable.
339    This is computed in `reload', in reload1.c.  */
340 #define FRAME_POINTER_REQUIRED 0
341
342 /* Base register for access to arguments of the function.  */
343 #define ARG_POINTER_REGNUM AP_REG
344
345 /* Register in which static-chain is passed to a function.  */
346 #define STATIC_CHAIN_REGNUM SC_REG
347
348 /* Fake register that holds the address on the stack of the
349    current function's return address.  */
350 #define RETURN_ADDRESS_POINTER_REGNUM RAP_REG
351
352 /* A C expression whose value is RTL representing the value of the return
353    address for the frame COUNT steps up from the current frame.
354    FRAMEADDR is already the frame pointer of the COUNT frame, assuming
355    a stack layout with the frame pointer as the first saved register.  */
356 #define RETURN_ADDR_RTX(COUNT, FRAME) h8300_return_addr_rtx ((COUNT), (FRAME))
357 \f
358 /* Define the classes of registers for register constraints in the
359    machine description.  Also define ranges of constants.
360
361    One of the classes must always be named ALL_REGS and include all hard regs.
362    If there is more than one class, another class must be named NO_REGS
363    and contain no registers.
364
365    The name GENERAL_REGS must be the name of a class (or an alias for
366    another name such as ALL_REGS).  This is the class of registers
367    that is allowed by "g" or "r" in a register constraint.
368    Also, registers outside this class are allocated only when
369    instructions express preferences for them.
370
371    The classes must be numbered in nondecreasing order; that is,
372    a larger-numbered class must never be contained completely
373    in a smaller-numbered class.
374
375    For any two classes, it is very desirable that there be another
376    class that represents their union.  */
377
378 enum reg_class {
379   NO_REGS, GENERAL_REGS, MAC_REGS, ALL_REGS, LIM_REG_CLASSES
380 };
381
382 #define N_REG_CLASSES (int) LIM_REG_CLASSES
383
384 /* Give names of register classes as strings for dump file.  */
385
386 #define REG_CLASS_NAMES \
387 { "NO_REGS", "GENERAL_REGS", "MAC_REGS", "ALL_REGS", "LIM_REGS" }
388
389 /* Define which registers fit in which classes.
390    This is an initializer for a vector of HARD_REG_SET
391    of length N_REG_CLASSES.  */
392
393 #define REG_CLASS_CONTENTS                      \
394 {      {0},             /* No regs      */      \
395    {0x6ff},             /* GENERAL_REGS */      \
396    {0x100},             /* MAC_REGS */  \
397    {0x7ff},             /* ALL_REGS     */      \
398 }
399
400 /* The same information, inverted:
401    Return the class number of the smallest class containing
402    reg number REGNO.  This could be a conditional expression
403    or could index an array.  */
404
405 #define REGNO_REG_CLASS(REGNO) (REGNO != MAC_REG ? GENERAL_REGS : MAC_REGS)
406
407 /* The class value for index registers, and the one for base regs.  */
408
409 #define INDEX_REG_CLASS NO_REGS
410 #define BASE_REG_CLASS  GENERAL_REGS
411
412 /* Get reg_class from a letter such as appears in the machine description.
413
414    'a' is the MAC register.  */
415
416 #define REG_CLASS_FROM_LETTER(C) ((C) == 'a' ? MAC_REGS : NO_REGS)
417
418 /* The letters I, J, K, L, M, N, O, P in a register constraint string
419    can be used to stand for particular ranges of immediate operands.
420    This macro defines what the ranges are.
421    C is the letter, and VALUE is a constant value.
422    Return 1 if VALUE is in the range specified by C.  */
423
424 #define CONST_OK_FOR_I(VALUE) ((VALUE) == 0)
425 #define CONST_OK_FOR_J(VALUE) ((unsigned HOST_WIDE_INT) (VALUE) < 256)
426 #define CONST_OK_FOR_K(VALUE) ((VALUE) == 1 || (VALUE) == 2)
427 #define CONST_OK_FOR_L(VALUE)                           \
428   (TARGET_H8300H || TARGET_H8300S                       \
429    ? (VALUE) == 1 || (VALUE) == 2 || (VALUE) == 4       \
430    : (VALUE) == 1 || (VALUE) == 2)
431 #define CONST_OK_FOR_M(VALUE) ((VALUE) == 3 || (VALUE) == 4)
432 #define CONST_OK_FOR_N(VALUE)                           \
433   (TARGET_H8300H || TARGET_H8300S                       \
434    ? (VALUE) == -1 || (VALUE) == -2 || (VALUE) == -4    \
435    : (VALUE) == -1 || (VALUE) == -2)
436
437 #define CONST_OK_FOR_LETTER_P(VALUE, C)         \
438   ((C) == 'I' ? CONST_OK_FOR_I (VALUE) :        \
439    (C) == 'J' ? CONST_OK_FOR_J (VALUE) :        \
440    (C) == 'K' ? CONST_OK_FOR_K (VALUE) :        \
441    (C) == 'L' ? CONST_OK_FOR_L (VALUE) :        \
442    (C) == 'M' ? CONST_OK_FOR_M (VALUE) :        \
443    (C) == 'N' ? CONST_OK_FOR_N (VALUE) :        \
444    0)
445
446 /* Similar, but for floating constants, and defining letters G and H.
447    Here VALUE is the CONST_DOUBLE rtx itself.
448
449   `G' is a floating-point zero.  */
450
451 #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C)  \
452   ((C) == 'G' ? (VALUE) == CONST0_RTX (DFmode)  \
453    : 0)
454
455 /* Given an rtx X being reloaded into a reg required to be
456    in class CLASS, return the class of reg to actually use.
457    In general this is just CLASS; but on some machines
458    in some cases it is preferable to use a more restrictive class.  */
459
460 #define PREFERRED_RELOAD_CLASS(X, CLASS)  (CLASS)
461
462 /* Return the maximum number of consecutive registers
463    needed to represent mode MODE in a register of class CLASS.  */
464
465 /* On the H8, this is the size of MODE in words.  */
466
467 #define CLASS_MAX_NREGS(CLASS, MODE)    \
468   ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
469
470 /* Any SI register-to-register move may need to be reloaded,
471    so define REGISTER_MOVE_COST to be > 2 so that reload never
472    shortcuts.  */
473
474 #define REGISTER_MOVE_COST(MODE, CLASS1, CLASS2)  \
475   (CLASS1 == MAC_REGS || CLASS2 == MAC_REGS ? 6 : 3)
476 \f
477 /* Stack layout; function entry, exit and calling.  */
478
479 /* Define this if pushing a word on the stack
480    makes the stack pointer a smaller address.  */
481
482 #define STACK_GROWS_DOWNWARD
483
484 /* Define this if the nominal address of the stack frame
485    is at the high-address end of the local variables;
486    that is, each additional local variable allocated
487    goes at a more negative offset in the frame.  */
488
489 #define FRAME_GROWS_DOWNWARD
490
491 /* Offset within stack frame to start allocating local variables at.
492    If FRAME_GROWS_DOWNWARD, this is the offset to the END of the
493    first local allocated.  Otherwise, it is the offset to the BEGINNING
494    of the first local allocated.  */
495
496 #define STARTING_FRAME_OFFSET 0
497
498 /* If we generate an insn to push BYTES bytes,
499    this says how many the stack pointer really advances by.
500
501    On the H8/300, @-sp really pushes a byte if you ask it to - but that's
502    dangerous, so we claim that it always pushes a word, then we catch
503    the mov.b rx,@-sp and turn it into a mov.w rx,@-sp on output.
504
505    On the H8/300H, we simplify TARGET_QUICKCALL by setting this to 4
506    and doing a similar thing.  */
507
508 #define PUSH_ROUNDING(BYTES) \
509   (((BYTES) + PARM_BOUNDARY / 8 - 1) & -PARM_BOUNDARY / 8)
510
511 /* Offset of first parameter from the argument pointer register value.  */
512 /* Is equal to the size of the saved fp + pc, even if an fp isn't
513    saved since the value is used before we know.  */
514
515 #define FIRST_PARM_OFFSET(FNDECL) 0
516
517 /* Value is the number of bytes of arguments automatically
518    popped when returning from a subroutine call.
519    FUNDECL is the declaration node of the function (as a tree),
520    FUNTYPE is the data type of the function (as a tree),
521    or for a library call it is an identifier node for the subroutine name.
522    SIZE is the number of bytes of arguments passed on the stack.
523
524    On the H8 the return does not pop anything.  */
525
526 #define RETURN_POPS_ARGS(FUNDECL, FUNTYPE, SIZE) 0
527
528 /* Definitions for register eliminations.
529
530    This is an array of structures.  Each structure initializes one pair
531    of eliminable registers.  The "from" register number is given first,
532    followed by "to".  Eliminations of the same "from" register are listed
533    in order of preference.
534
535    We have two registers that can be eliminated on the h8300.  First, the
536    frame pointer register can often be eliminated in favor of the stack
537    pointer register.  Secondly, the argument pointer register can always be
538    eliminated; it is replaced with either the stack or frame pointer.  */
539
540 #define ELIMINABLE_REGS                                 \
541 {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM},           \
542  { ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM},           \
543  { RETURN_ADDRESS_POINTER_REGNUM, STACK_POINTER_REGNUM},\
544  { RETURN_ADDRESS_POINTER_REGNUM, FRAME_POINTER_REGNUM},\
545  { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}}
546
547 /* Given FROM and TO register numbers, say whether this elimination is allowed.
548    Frame pointer elimination is automatically handled.
549
550    For the h8300, if frame pointer elimination is being done, we would like to
551    convert ap and rp into sp, not fp.
552
553    All other eliminations are valid.  */
554
555 #define CAN_ELIMINATE(FROM, TO)                                 \
556  ((((FROM) == ARG_POINTER_REGNUM || (FROM) == RETURN_ADDRESS_POINTER_REGNUM) \
557    && (TO) == STACK_POINTER_REGNUM)                             \
558   ? ! frame_pointer_needed                                      \
559   : 1)
560
561 /* Define the offset between two registers, one to be eliminated, and the other
562    its replacement, at the start of a routine.  */
563
564 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
565   OFFSET = initial_offset (FROM, TO)
566
567 /* Define how to find the value returned by a function.
568    VALTYPE is the data type of the value (as a tree).
569    If the precise function being called is known, FUNC is its FUNCTION_DECL;
570    otherwise, FUNC is 0.
571
572    On the H8 the return value is in R0/R1.  */
573
574 #define FUNCTION_VALUE(VALTYPE, FUNC) \
575   gen_rtx_REG (TYPE_MODE (VALTYPE), 0)
576
577 /* Define how to find the value returned by a library function
578    assuming the value has mode MODE.  */
579
580 /* On the H8 the return value is in R0/R1.  */
581
582 #define LIBCALL_VALUE(MODE) \
583   gen_rtx_REG (MODE, 0)
584
585 /* 1 if N is a possible register number for a function value.
586    On the H8, R0 is the only register thus used.  */
587
588 #define FUNCTION_VALUE_REGNO_P(N) ((N) == 0)
589
590 /* Define this if PCC uses the nonreentrant convention for returning
591    structure and union values.  */
592
593 /*#define PCC_STATIC_STRUCT_RETURN*/
594
595 /* 1 if N is a possible register number for function argument passing.
596    On the H8, no registers are used in this way.  */
597
598 #define FUNCTION_ARG_REGNO_P(N) (TARGET_QUICKCALL ? N < 3 : 0)
599
600 /* Register in which address to store a structure value
601    is passed to a function.  */
602
603 #define STRUCT_VALUE 0
604
605 /* Return true if X should be returned in memory.  */
606 #define RETURN_IN_MEMORY(X) \
607   (TYPE_MODE (X) == BLKmode || GET_MODE_SIZE (TYPE_MODE (X)) > 4)
608
609 /* When defined, the compiler allows registers explicitly used in the
610    rtl to be used as spill registers but prevents the compiler from
611    extending the lifetime of these registers.  */
612
613 #define SMALL_REGISTER_CLASSES 1
614 \f
615 /* Define a data type for recording info about an argument list
616    during the scan of that argument list.  This data type should
617    hold all necessary information about the function itself
618    and about the args processed so far, enough to enable macros
619    such as FUNCTION_ARG to determine where the next arg should go.
620
621    On the H8/300, this is a two item struct, the first is the number
622    of bytes scanned so far and the second is the rtx of the called
623    library function if any.  */
624
625 #define CUMULATIVE_ARGS struct cum_arg
626 struct cum_arg
627 {
628   int nbytes;
629   struct rtx_def *libcall;
630 };
631
632 /* Initialize a variable CUM of type CUMULATIVE_ARGS
633    for a call to a function whose data type is FNTYPE.
634    For a library call, FNTYPE is 0.
635
636    On the H8/300, the offset starts at 0.  */
637
638 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT)    \
639  ((CUM).nbytes = 0, (CUM).libcall = LIBNAME)
640
641 /* Update the data in CUM to advance over an argument
642    of mode MODE and data type TYPE.
643    (TYPE is null for libcalls where that information may not be available.)  */
644
645 #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED)                    \
646  ((CUM).nbytes += ((MODE) != BLKmode                                    \
647   ? (GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) & -UNITS_PER_WORD       \
648   : (int_size_in_bytes (TYPE) + UNITS_PER_WORD - 1) & -UNITS_PER_WORD))
649
650 /* Define where to put the arguments to a function.
651    Value is zero to push the argument on the stack,
652    or a hard register in which to store the argument.
653
654    MODE is the argument's machine mode.
655    TYPE is the data type of the argument (as a tree).
656     This is null for libcalls where that information may
657     not be available.
658    CUM is a variable of type CUMULATIVE_ARGS which gives info about
659     the preceding args and about the function being called.
660    NAMED is nonzero if this argument is a named parameter
661     (otherwise it is an extra parameter matching an ellipsis).  */
662
663 /* On the H8/300 all normal args are pushed, unless -mquickcall in which
664    case the first 3 arguments are passed in registers.
665    See function `function_arg'.  */
666
667 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \
668   function_arg (&CUM, MODE, TYPE, NAMED)
669
670 /* Output assembler code to FILE to increment profiler label # LABELNO
671    for profiling a function entry.  */
672
673 #define FUNCTION_PROFILER(FILE, LABELNO)  \
674   fprintf (FILE, "\t%s\t#LP%d,%s\n\tjsr @mcount\n", \
675            h8_mov_op, (LABELNO), h8_reg_names[0]);
676
677 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
678    the stack pointer does not matter.  The value is tested only in
679    functions that have frame pointers.
680    No definition is equivalent to always zero.  */
681
682 #define EXIT_IGNORE_STACK 0
683
684 /* Output assembler code for a block containing the constant parts
685    of a trampoline, leaving space for the variable parts.
686
687    H8/300
688               vvvv context
689    1 0000 7900xxxx              mov.w   #0x1234,r3
690    2 0004 5A00xxxx              jmp     @0x1234
691               ^^^^ function
692
693    H8/300H
694               vvvvvvvv context
695    2 0000 7A00xxxxxxxx          mov.l   #0x12345678,er3
696    3 0006 5Axxxxxx              jmp     @0x123456
697             ^^^^^^ function
698 */
699
700 #define TRAMPOLINE_TEMPLATE(FILE)                               \
701   do                                                            \
702     {                                                           \
703       if (TARGET_H8300)                                         \
704         {                                                       \
705           fprintf (FILE, "\tmov.w       #0x1234,r3\n");         \
706           fprintf (FILE, "\tjmp @0x1234\n");                    \
707         }                                                       \
708       else                                                      \
709         {                                                       \
710           fprintf (FILE, "\tmov.l       #0x12345678,er3\n");    \
711           fprintf (FILE, "\tjmp @0x123456\n");                  \
712         }                                                       \
713     }                                                           \
714   while (0)
715
716 /* Length in units of the trampoline for entering a nested function.  */
717
718 #define TRAMPOLINE_SIZE (TARGET_H8300 ? 8 : 12)
719
720 /* Emit RTL insns to initialize the variable parts of a trampoline.
721    FNADDR is an RTX for the address of the function's pure code.
722    CXT is an RTX for the static chain value for the function.  */
723
724 #define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT)                           \
725 {                                                                           \
726   emit_move_insn (gen_rtx_MEM (Pmode, plus_constant ((TRAMP), 2)), CXT);    \
727   emit_move_insn (gen_rtx_MEM (Pmode, plus_constant ((TRAMP), 6)), FNADDR); \
728   if (TARGET_H8300H || TARGET_H8300S)                                       \
729     emit_move_insn (gen_rtx_MEM (QImode, plus_constant ((TRAMP), 6)),       \
730                     GEN_INT (0x5A));                                        \
731 }
732 \f
733 /* Addressing modes, and classification of registers for them.  */
734
735 #define HAVE_POST_INCREMENT 1
736 #define HAVE_PRE_DECREMENT 1
737
738 /* Macros to check register numbers against specific register classes.  */
739
740 /* These assume that REGNO is a hard or pseudo reg number.
741    They give nonzero only if REGNO is a hard reg of the suitable class
742    or a pseudo reg currently allocated to a suitable hard reg.
743    Since they use reg_renumber, they are safe only once reg_renumber
744    has been allocated, which happens in local-alloc.c.  */
745
746 #define REGNO_OK_FOR_INDEX_P(regno) 0
747
748 #define REGNO_OK_FOR_BASE_P(regno) \
749   (((regno) < FIRST_PSEUDO_REGISTER && regno != 8) || reg_renumber[regno] >= 0)
750 \f
751 /* Maximum number of registers that can appear in a valid memory address.  */
752
753 #define MAX_REGS_PER_ADDRESS 1
754
755 /* 1 if X is an rtx for a constant that is a valid address.  */
756
757 #define CONSTANT_ADDRESS_P(X)                                   \
758   (GET_CODE (X) == LABEL_REF || GET_CODE (X) == SYMBOL_REF      \
759    || (GET_CODE (X) == CONST_INT                                \
760        /* We handle signed and unsigned offsets here.  */       \
761        && INTVAL (X) > (TARGET_H8300 ? -0x10000 : -0x1000000)   \
762        && INTVAL (X) < (TARGET_H8300 ? 0x10000 : 0x1000000))    \
763    || ((GET_CODE (X) == HIGH || GET_CODE (X) == CONST)          \
764        && TARGET_H8300))
765
766 /* Nonzero if the constant value X is a legitimate general operand.
767    It is given that X satisfies CONSTANT_P or is a CONST_DOUBLE.  */
768
769 #define LEGITIMATE_CONSTANT_P(X) (GET_CODE (X) != CONST_DOUBLE)
770
771 /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
772    and check its validity for a certain class.
773    We have two alternate definitions for each of them.
774    The usual definition accepts all pseudo regs; the other rejects
775    them unless they have been allocated suitable hard regs.
776    The symbol REG_OK_STRICT causes the latter definition to be used.
777
778    Most source files want to accept pseudo regs in the hope that
779    they will get allocated to the class that the insn wants them to be in.
780    Source files for reload pass need to be strict.
781    After reload, it makes no difference, since pseudo regs have
782    been eliminated by then.  */
783
784 #ifndef REG_OK_STRICT
785
786 /* Nonzero if X is a hard reg that can be used as an index
787    or if it is a pseudo reg.  */
788 #define REG_OK_FOR_INDEX_P(X) 0
789 /* Nonzero if X is a hard reg that can be used as a base reg
790    or if it is a pseudo reg.  */
791 /* Don't use REGNO_OK_FOR_BASE_P here because it uses reg_renumber.  */
792 #define REG_OK_FOR_BASE_P(X) \
793         (REGNO (X) >= FIRST_PSEUDO_REGISTER || REGNO (X) != 8)
794 #define REG_OK_FOR_INDEX_P_STRICT(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
795 #define REG_OK_FOR_BASE_P_STRICT(X) REGNO_OK_FOR_BASE_P (REGNO (X))
796 #define STRICT 0
797
798 #else
799
800 /* Nonzero if X is a hard reg that can be used as an index.  */
801 #define REG_OK_FOR_INDEX_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
802 /* Nonzero if X is a hard reg that can be used as a base reg.  */
803 #define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
804 #define STRICT 1
805
806 #endif
807
808 /* Extra constraints.  */
809
810 #define OK_FOR_R(OP)                                    \
811   (GET_CODE (OP) == CONST_INT                           \
812    ? !h8300_shift_needs_scratch_p (INTVAL (OP), QImode) \
813    : 0)
814
815 #define OK_FOR_S(OP)                                    \
816   (GET_CODE (OP) == CONST_INT                           \
817    ? !h8300_shift_needs_scratch_p (INTVAL (OP), HImode) \
818    : 0)
819
820 #define OK_FOR_T(OP)                                    \
821   (GET_CODE (OP) == CONST_INT                           \
822    ? !h8300_shift_needs_scratch_p (INTVAL (OP), SImode) \
823    : 0)
824
825 /* Nonzero if X is a constant address suitable as an 8-bit absolute on
826    the H8/300H, which is a special case of the 'R' operand.  */
827
828 #define EIGHTBIT_CONSTANT_ADDRESS_P(X)                  \
829   (GET_CODE (X) == CONST_INT && TARGET_H8300H           \
830    && 0xffff00 <= INTVAL (X) && INTVAL (X) <= 0xffffff)
831
832 /* Nonzero if X is a constant address suitable as an 16-bit absolute
833    on the H8/300H.  */
834
835 #define TINY_CONSTANT_ADDRESS_P(X)                              \
836   (GET_CODE (X) == CONST_INT && TARGET_H8300H                   \
837    && ((0xff8000 <= INTVAL (X) && INTVAL (X) <= 0xffffff)       \
838        || (0x000000 <= INTVAL (X) && INTVAL (X) <= 0x007fff)))
839
840 /* 'U' if valid for a bset destination;
841    i.e. a register, register indirect, or the eightbit memory region
842    (a SYMBOL_REF with an SYMBOL_REF_FLAG set).
843
844    On the H8/S 'U' can also be a 16bit or 32bit absolute.  */
845 #define OK_FOR_U(OP)                                                    \
846   ((GET_CODE (OP) == REG && REG_OK_FOR_BASE_P (OP))                     \
847    || (GET_CODE (OP) == MEM && GET_CODE (XEXP (OP, 0)) == REG           \
848        && REG_OK_FOR_BASE_P (XEXP (OP, 0)))                             \
849    || (GET_CODE (OP) == MEM && GET_CODE (XEXP (OP, 0)) == SYMBOL_REF    \
850        && (TARGET_H8300S || SYMBOL_REF_FLAG (XEXP (OP, 0))))            \
851    || ((GET_CODE (OP) == MEM && GET_CODE (XEXP (OP, 0)) == CONST        \
852         && GET_CODE (XEXP (XEXP (OP, 0), 0)) == PLUS                    \
853         && GET_CODE (XEXP (XEXP (XEXP (OP, 0), 0), 0)) == SYMBOL_REF    \
854         && GET_CODE (XEXP (XEXP (XEXP (OP, 0), 0), 1)) == CONST_INT)    \
855         && (TARGET_H8300S                                               \
856             || SYMBOL_REF_FLAG (XEXP (XEXP (XEXP (OP, 0), 0), 0))))     \
857    || (GET_CODE (OP) == MEM                                             \
858        && EIGHTBIT_CONSTANT_ADDRESS_P (XEXP (OP, 0)))                   \
859    || (GET_CODE (OP) == MEM && TARGET_H8300S                            \
860        && GET_CODE (XEXP (OP, 0)) == CONST_INT))
861
862 #define EXTRA_CONSTRAINT(OP, C)                 \
863   ((C) == 'R' ? OK_FOR_R (OP) :                 \
864    (C) == 'S' ? OK_FOR_S (OP) :                 \
865    (C) == 'T' ? OK_FOR_T (OP) :                 \
866    (C) == 'U' ? OK_FOR_U (OP) :                 \
867    0)
868 \f
869 /* GO_IF_LEGITIMATE_ADDRESS recognizes an RTL expression
870    that is a valid memory address for an instruction.
871    The MODE argument is the machine mode for the MEM expression
872    that wants to use this address.
873
874    The other macros defined here are used only in GO_IF_LEGITIMATE_ADDRESS,
875    except for CONSTANT_ADDRESS_P which is actually
876    machine-independent.
877
878    On the H8/300, a legitimate address has the form
879    REG, REG+CONSTANT_ADDRESS or CONSTANT_ADDRESS.  */
880
881 /* Accept either REG or SUBREG where a register is valid.  */
882
883 #define RTX_OK_FOR_BASE_P(X)                            \
884   ((REG_P (X) && REG_OK_FOR_BASE_P (X))                 \
885    || (GET_CODE (X) == SUBREG && REG_P (SUBREG_REG (X)) \
886        && REG_OK_FOR_BASE_P (SUBREG_REG (X))))
887
888 #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, ADDR)         \
889   if (RTX_OK_FOR_BASE_P (X)) goto ADDR;                 \
890   if (CONSTANT_ADDRESS_P (X)) goto ADDR;                \
891   if (GET_CODE (X) == PLUS                              \
892       && CONSTANT_ADDRESS_P (XEXP (X, 1))               \
893       && RTX_OK_FOR_BASE_P (XEXP (X, 0))) goto ADDR;
894 \f
895 /* Try machine-dependent ways of modifying an illegitimate address
896    to be legitimate.  If we find one, return the new, valid address.
897    This macro is used in only one place: `memory_address' in explow.c.
898
899    OLDX is the address as it was before break_out_memory_refs was called.
900    In some cases it is useful to look at this to decide what needs to be done.
901
902    MODE and WIN are passed so that this macro can use
903    GO_IF_LEGITIMATE_ADDRESS.
904
905    It is always safe for this macro to do nothing.  It exists to recognize
906    opportunities to optimize the output.
907
908    For the H8/300, don't do anything.  */
909
910 #define LEGITIMIZE_ADDRESS(X, OLDX, MODE, WIN)  {}
911
912 /* Go to LABEL if ADDR (a legitimate address expression)
913    has an effect that depends on the machine mode it is used for.
914
915    On the H8/300, the predecrement and postincrement address depend thus
916    (the amount of decrement or increment being the length of the operand).  */
917
918 #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR, LABEL) \
919   if (GET_CODE (ADDR) == POST_INC || GET_CODE (ADDR) == PRE_DEC) goto LABEL;
920 \f
921 /* Specify the machine mode that this machine uses
922    for the index in the tablejump instruction.  */
923 #define CASE_VECTOR_MODE Pmode
924
925 /* Define as C expression which evaluates to nonzero if the tablejump
926    instruction expects the table to contain offsets from the address of the
927    table.
928    Do not define this if the table should contain absolute addresses.  */
929 /*#define CASE_VECTOR_PC_RELATIVE 1 */
930
931 /* Define this as 1 if `char' should by default be signed; else as 0.
932
933    On the H8/300, sign extension is expensive, so we'll say that chars
934    are unsigned.  */
935 #define DEFAULT_SIGNED_CHAR 0
936
937 /* This flag, if defined, says the same insns that convert to a signed fixnum
938    also convert validly to an unsigned one.  */
939 #define FIXUNS_TRUNC_LIKE_FIX_TRUNC
940
941 /* Max number of bytes we can move from memory to memory
942    in one reasonably fast instruction.  */
943 #define MOVE_MAX        (TARGET_H8300H || TARGET_H8300S ? 4 : 2)
944 #define MAX_MOVE_MAX    4
945
946 /* Nonzero if access to memory by bytes is slow and undesirable.  */
947 #define SLOW_BYTE_ACCESS TARGET_SLOWBYTE
948
949 /* Define if shifts truncate the shift count
950    which implies one can omit a sign-extension or zero-extension
951    of a shift count.  */
952 /* #define SHIFT_COUNT_TRUNCATED */
953
954 /* Value is 1 if truncating an integer of INPREC bits to OUTPREC bits
955    is done just by pretending it is already truncated.  */
956 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
957
958 /* Specify the machine mode that pointers have.
959    After generation of rtl, the compiler makes no further distinction
960    between pointers and any other objects of this machine mode.  */
961 #define Pmode (TARGET_H8300H || TARGET_H8300S ? SImode : HImode)
962
963 /* ANSI C types.
964    We use longs for the 300H because ints can be 16 or 32.
965    GCC requires SIZE_TYPE to be the same size as pointers.  */
966 #define SIZE_TYPE (TARGET_H8300 ? "unsigned int" : "long unsigned int")
967 #define PTRDIFF_TYPE (TARGET_H8300 ? "int" : "long int")
968
969 #define WCHAR_TYPE "short unsigned int"
970 #define WCHAR_TYPE_SIZE 16
971 #define MAX_WCHAR_TYPE_SIZE 16
972
973 /* A function address in a call instruction
974    is a byte address (for indexing purposes)
975    so give the MEM rtx a byte's mode.  */
976 #define FUNCTION_MODE QImode
977
978 #define ADJUST_INSN_LENGTH(INSN, LENGTH) \
979   LENGTH += h8300_adjust_insn_length (INSN, LENGTH);
980
981 /* Compute the cost of computing a constant rtl expression RTX
982    whose rtx-code is CODE.  The body of this macro is a portion
983    of a switch statement.  If the code is computed here,
984    return it with a return statement.  Otherwise, break from the switch.  */
985
986 #define DEFAULT_RTX_COSTS(RTX, CODE, OUTER_CODE) \
987   return (const_costs (RTX, CODE, OUTER_CODE));
988
989 #define BRANCH_COST 0
990
991 /* We say that MOD and DIV are so cheap because otherwise we'll
992    generate some really horrible code for division of a power of two.  */
993
994 /* Provide the costs of a rtl expression.  This is in the body of a
995    switch on CODE.  */
996 /* ??? Shifts need to have a *much* higher cost than this.  */
997
998 #define RTX_COSTS(RTX, CODE, OUTER_CODE)        \
999   case MOD:                                     \
1000   case DIV:                                     \
1001     return 60;                                  \
1002   case MULT:                                    \
1003     return 20;                                  \
1004   case ASHIFT:                                  \
1005   case ASHIFTRT:                                \
1006   case LSHIFTRT:                                \
1007   case ROTATE:                                  \
1008   case ROTATERT:                                \
1009     if (GET_MODE (RTX) == HImode) return 2;     \
1010     return 8;
1011
1012 /* Tell final.c how to eliminate redundant test instructions.  */
1013
1014 /* Here we define machine-dependent flags and fields in cc_status
1015    (see `conditions.h').  No extra ones are needed for the h8300.  */
1016
1017 /* Store in cc_status the expressions
1018    that the condition codes will describe
1019    after execution of an instruction whose pattern is EXP.
1020    Do not alter them if the instruction would not alter the cc's.  */
1021
1022 #define NOTICE_UPDATE_CC(EXP, INSN) notice_update_cc (EXP, INSN)
1023
1024 /* The add insns don't set overflow in a usable way.  */
1025 #define CC_OVERFLOW_UNUSABLE 01000
1026 /* The mov,and,or,xor insns don't set carry.  That's OK though as the
1027    Z bit is all we need when doing unsigned comparisons on the result of
1028    these insns (since they're always with 0).  However, conditions.h has
1029    CC_NO_OVERFLOW defined for this purpose.  Rename it to something more
1030    understandable.  */
1031 #define CC_NO_CARRY CC_NO_OVERFLOW
1032 \f
1033 /* Control the assembler format that we output.  */
1034
1035 /* Output at beginning/end of assembler file.  */
1036
1037 #define ASM_FILE_START(FILE) asm_file_start (FILE)
1038
1039 #define ASM_FILE_END(FILE) asm_file_end (FILE)
1040
1041 /* Output to assembler file text saying following lines
1042    may contain character constants, extra white space, comments, etc.  */
1043
1044 #define ASM_APP_ON "; #APP\n"
1045
1046 /* Output to assembler file text saying following lines
1047    no longer contain unusual constructs.  */
1048
1049 #define ASM_APP_OFF "; #NO_APP\n"
1050
1051 #define FILE_ASM_OP "\t.file\n"
1052 #define IDENT_ASM_OP "\t.ident\n"
1053
1054 /* The assembler op to get a word, 2 bytes for the H8/300, 4 for H8/300H.  */
1055 #define ASM_WORD_OP     (TARGET_H8300 ? "\t.word\t" : "\t.long\t")
1056
1057 #define TEXT_SECTION_ASM_OP "\t.section .text"
1058 #define DATA_SECTION_ASM_OP "\t.section .data"
1059 #define BSS_SECTION_ASM_OP "\t.section .bss"
1060 #define INIT_SECTION_ASM_OP "\t.section .init"
1061 #define READONLY_DATA_SECTION_ASM_OP "\t.section .rodata"
1062
1063 #undef DO_GLOBAL_CTORS_BODY
1064 #define DO_GLOBAL_CTORS_BODY                    \
1065 {                                               \
1066   typedef (*pfunc)();                           \
1067   extern pfunc __ctors[];                       \
1068   extern pfunc __ctors_end[];                   \
1069   pfunc *p;                                     \
1070   for (p = __ctors_end; p > __ctors; )          \
1071     {                                           \
1072       (*--p)();                                 \
1073     }                                           \
1074 }
1075
1076 #undef DO_GLOBAL_DTORS_BODY
1077 #define DO_GLOBAL_DTORS_BODY                    \
1078 {                                               \
1079   typedef (*pfunc)();                           \
1080   extern pfunc __dtors[];                       \
1081   extern pfunc __dtors_end[];                   \
1082   pfunc *p;                                     \
1083   for (p = __dtors; p < __dtors_end; p++)       \
1084     {                                           \
1085       (*p)();                                   \
1086     }                                           \
1087 }
1088
1089 #define TINY_DATA_NAME_P(NAME) (*(NAME) == '&')
1090
1091 /* How to refer to registers in assembler output.
1092    This sequence is indexed by compiler's hard-register-number (see above).  */
1093
1094 #define REGISTER_NAMES \
1095 { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "sp", "mac", "ap", "rap" }
1096
1097 #define ADDITIONAL_REGISTER_NAMES \
1098 { {"er0", 0}, {"er1", 1}, {"er2", 2}, {"er3", 3}, {"er4", 4}, \
1099   {"er5", 5}, {"er6", 6}, {"er7", 7}, {"r7", 7} }
1100
1101 #define SDB_DEBUGGING_INFO 1
1102 #define SDB_DELIM       "\n"
1103
1104 /* Support -gstabs.  */
1105
1106 #include "dbxcoff.h"
1107
1108 /* Override definition in dbxcoff.h.  */
1109 /* Generate a blank trailing N_SO to mark the end of the .o file, since
1110    we can't depend upon the linker to mark .o file boundaries with
1111    embedded stabs.  */
1112
1113 #undef DBX_OUTPUT_MAIN_SOURCE_FILE_END
1114 #define DBX_OUTPUT_MAIN_SOURCE_FILE_END(FILE, FILENAME)                 \
1115   fprintf (FILE,                                                        \
1116            "\t.text\n.stabs \"\",%d,0,0,.Letext\n.Letext:\n", N_SO)
1117
1118 /* Switch into a generic section.  */
1119 #define TARGET_ASM_NAMED_SECTION h8300_asm_named_section
1120
1121 #define ASM_OUTPUT_LABELREF(FILE, NAME)  \
1122   asm_fprintf ((FILE), "%U%s", (NAME) + (TINY_DATA_NAME_P (NAME) ? 1 : 0))
1123
1124 #define ASM_OUTPUT_EXTERNAL(FILE, DECL, NAME)
1125
1126 /* Globalizing directive for a label.  */
1127 #define GLOBAL_ASM_OP "\t.global "
1128
1129 #define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL) \
1130    ASM_OUTPUT_LABEL (FILE, NAME)
1131
1132 /* The prefix to add to user-visible assembler symbols.  */
1133
1134 #define USER_LABEL_PREFIX "_"
1135
1136 /* This is how to output an internal numbered label where
1137    PREFIX is the class of label and NUM is the number within the class.
1138
1139    N.B.: The h8300.md branch_true and branch_false patterns also know
1140    how to generate internal labels.  */
1141
1142 #define ASM_OUTPUT_INTERNAL_LABEL(FILE, PREFIX, NUM)    \
1143   fprintf (FILE, ".%s%d:\n", PREFIX, NUM)
1144
1145 /* This is how to store into the string LABEL
1146    the symbol_ref name of an internal numbered label where
1147    PREFIX is the class of label and NUM is the number within the class.
1148    This is suitable for output with `assemble_name'.  */
1149
1150 #define ASM_GENERATE_INTERNAL_LABEL(LABEL, PREFIX, NUM) \
1151   sprintf (LABEL, "*.%s%d", PREFIX, NUM)
1152
1153 /* This is how to output an insn to push a register on the stack.
1154    It need not be very fast code.  */
1155
1156 #define ASM_OUTPUT_REG_PUSH(FILE, REGNO) \
1157   fprintf (FILE, "\t%s\t%s\n", h8_push_op, h8_reg_names[REGNO])
1158
1159 /* This is how to output an insn to pop a register from the stack.
1160    It need not be very fast code.  */
1161
1162 #define ASM_OUTPUT_REG_POP(FILE, REGNO) \
1163   fprintf (FILE, "\t%s\t%s\n", h8_pop_op, h8_reg_names[REGNO])
1164
1165 /* This is how to output an element of a case-vector that is absolute.  */
1166
1167 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \
1168   fprintf (FILE, "%s.L%d\n", ASM_WORD_OP, VALUE)
1169
1170 /* This is how to output an element of a case-vector that is relative.  */
1171
1172 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL) \
1173   fprintf (FILE, "%s.L%d-.L%d\n", ASM_WORD_OP, VALUE, REL)
1174
1175 /* This is how to output an assembler line
1176    that says to advance the location counter
1177    to a multiple of 2**LOG bytes.  */
1178
1179 #define ASM_OUTPUT_ALIGN(FILE, LOG)             \
1180   if ((LOG) != 0)                               \
1181     fprintf (FILE, "\t.align %d\n", (LOG))
1182
1183 /* This is how to output an assembler line
1184    that says to advance the location counter by SIZE bytes.  */
1185
1186 #define ASM_OUTPUT_IDENT(FILE, NAME)                    \
1187   fprintf (FILE, "%s\"%s\"\n", IDENT_ASM_OP, NAME)
1188
1189 #define ASM_OUTPUT_SKIP(FILE, SIZE) \
1190   fprintf (FILE, "\t.space %d\n", (SIZE))
1191
1192 /* This says how to output an assembler line
1193    to define a global common symbol.  */
1194
1195 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED)    \
1196 ( fputs ("\t.comm ", (FILE)),                           \
1197   assemble_name ((FILE), (NAME)),                       \
1198   fprintf ((FILE), ",%d\n", (SIZE)))
1199
1200 /* This says how to output the assembler to define a global
1201    uninitialized but not common symbol.
1202    Try to use asm_output_bss to implement this macro.  */
1203
1204 #define ASM_OUTPUT_BSS(FILE, DECL, NAME, SIZE, ROUNDED)         \
1205   asm_output_bss ((FILE), (DECL), (NAME), (SIZE), (ROUNDED))
1206
1207 /* This says how to output an assembler line
1208    to define a local common symbol.  */
1209
1210 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED)     \
1211 ( fputs ("\t.lcomm ", (FILE)),                          \
1212   assemble_name ((FILE), (NAME)),                       \
1213   fprintf ((FILE), ",%d\n", (SIZE)))
1214
1215 /* Store in OUTPUT a string (made with alloca) containing
1216    an assembler-name for a local static variable named NAME.
1217    LABELNO is an integer which is different for each call.  */
1218
1219 #define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO)  \
1220 ( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 10),    \
1221   sprintf ((OUTPUT), "%s___%d", (NAME), (LABELNO)))
1222
1223 /* Print an instruction operand X on file FILE.
1224    Look in h8300.c for details.  */
1225
1226 #define PRINT_OPERAND_PUNCT_VALID_P(CODE) \
1227   ((CODE) == '#')
1228
1229 #define PRINT_OPERAND(FILE, X, CODE) print_operand (FILE, X, CODE)
1230
1231 /* Print a memory operand whose address is X, on file FILE.
1232    This uses a function in h8300.c.  */
1233
1234 #define PRINT_OPERAND_ADDRESS(FILE, ADDR) print_operand_address (FILE, ADDR)
1235
1236 /* H8300 specific pragmas.  */
1237 #define REGISTER_TARGET_PRAGMAS(PFILE)                                  \
1238   do                                                                    \
1239     {                                                                   \
1240       cpp_register_pragma (PFILE, 0, "saveall", h8300_pr_saveall);      \
1241       cpp_register_pragma (PFILE, 0, "interrupt", h8300_pr_interrupt);  \
1242     }                                                                   \
1243   while (0)
1244
1245 #define FINAL_PRESCAN_INSN(insn, operand, nop)  \
1246   final_prescan_insn (insn, operand, nop)
1247
1248 /* Define this macro if GNU CC should generate calls to the System V
1249    (and ANSI C) library functions `memcpy' and `memset' rather than
1250    the BSD functions `bcopy' and `bzero'.  */
1251
1252 #define TARGET_MEM_FUNCTIONS 1
1253
1254 #define MULHI3_LIBCALL  "__mulhi3"
1255 #define DIVHI3_LIBCALL  "__divhi3"
1256 #define UDIVHI3_LIBCALL "__udivhi3"
1257 #define MODHI3_LIBCALL  "__modhi3"
1258 #define UMODHI3_LIBCALL "__umodhi3"
1259
1260 /* Perform target dependent optabs initialization.  */
1261
1262 #define INIT_TARGET_OPTABS                                      \
1263   do                                                            \
1264     {                                                           \
1265       smul_optab->handlers[(int) HImode].libfunc                \
1266         = init_one_libfunc (MULHI3_LIBCALL);                    \
1267       sdiv_optab->handlers[(int) HImode].libfunc                \
1268         = init_one_libfunc (DIVHI3_LIBCALL);                    \
1269       udiv_optab->handlers[(int) HImode].libfunc                \
1270         = init_one_libfunc (UDIVHI3_LIBCALL);                   \
1271       smod_optab->handlers[(int) HImode].libfunc                \
1272         = init_one_libfunc (MODHI3_LIBCALL);                    \
1273       umod_optab->handlers[(int) HImode].libfunc                \
1274         = init_one_libfunc (UMODHI3_LIBCALL);                   \
1275     }                                                           \
1276   while (0)
1277
1278 #define MOVE_RATIO 3
1279
1280 #endif /* ! GCC_H8300_H */