OSDN Git Service

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