OSDN Git Service

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