OSDN Git Service

* mn10300.h (REG_CLASS_FROM_LETTER): Map 'y' to SP_REGS.
[pf3gnuchains/gcc-fork.git] / gcc / config / mn10300 / mn10300.h
1 /* Definitions of target machine for GNU compiler. Matsushita MN10300 series
2    Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
3    Contributed by Jeff Law (law@cygnus.com).
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 #include "svr4.h"
23
24 #undef ASM_SPEC
25 #undef ASM_FINAL_SPEC
26 #undef LIB_SPEC
27 #undef ENDFILE_SPEC
28 #undef LINK_SPEC
29 #undef STARTFILE_SPEC
30
31 /* Names to predefine in the preprocessor for this target machine.  */
32
33 #define CPP_PREDEFINES "-D__mn10300__ -D__MN10300__"
34
35 /* Run-time compilation parameters selecting different hardware subsets.  */
36
37 extern int target_flags;
38
39 /* Global registers known to hold the value zero.  */
40 extern struct rtx_def *zero_dreg;
41 extern struct rtx_def *zero_areg;
42
43 /* Macros used in the machine description to test the flags.  */
44
45 /* Macro to define tables used to set the flags.
46    This is a list in braces of pairs in braces,
47    each pair being { "NAME", VALUE }
48    where VALUE is the bits to set or minus the bits to clear.
49    An empty string NAME is used to identify the default VALUE.  */
50
51 /* Generate code to work around mul/mulq bugs on the mn10300.  */
52 #define TARGET_MULT_BUG                 (target_flags & 0x1)
53 #define TARGET_SWITCHES  \
54   {{ "mult-bug",        0x1},   \
55    { "no-mult-bug",     -0x1},  \
56    { "", TARGET_DEFAULT}}
57
58 #ifndef TARGET_DEFAULT
59 #define TARGET_DEFAULT 0x1
60 #endif
61
62 /* Print subsidiary information on the compiler version in use.  */
63
64 #define TARGET_VERSION fprintf (stderr, " (MN10300)");
65
66 \f
67 /* Target machine storage layout */
68
69 /* Define this if most significant bit is lowest numbered
70    in instructions that operate on numbered bit-fields.
71    This is not true on the Matsushita MN1003.  */
72 #define BITS_BIG_ENDIAN 0
73
74 /* Define this if most significant byte of a word is the lowest numbered.  */
75 /* This is not true on the Matsushita MN10300.  */
76 #define BYTES_BIG_ENDIAN 0
77
78 /* Define this if most significant word of a multiword number is lowest
79    numbered.
80    This is not true on the Matsushita MN10300.  */
81 #define WORDS_BIG_ENDIAN 0
82
83 /* Number of bits in an addressable storage unit */
84 #define BITS_PER_UNIT 8
85
86 /* Width in bits of a "word", which is the contents of a machine register.
87    Note that this is not necessarily the width of data type `int';
88    if using 16-bit ints on a 68000, this would still be 32.
89    But on a machine with 16-bit registers, this would be 16.  */
90 #define BITS_PER_WORD           32
91
92 /* Width of a word, in units (bytes).  */
93 #define UNITS_PER_WORD          4
94
95 /* Width in bits of a pointer.
96    See also the macro `Pmode' defined below.  */
97 #define POINTER_SIZE            32
98
99 /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
100 #define PARM_BOUNDARY           32
101
102 /* The stack goes in 32 bit lumps.  */
103 #define STACK_BOUNDARY          32
104
105 /* Allocation boundary (in *bits*) for the code of a function.
106    8 is the minimum boundary; it's unclear if bigger alignments
107    would improve performance.  */
108 #define FUNCTION_BOUNDARY 8
109
110 /* No data type wants to be aligned rounder than this.   */
111 #define BIGGEST_ALIGNMENT       32
112
113 /* Alignment of field after `int : 0' in a structure.  */
114 #define EMPTY_FIELD_BOUNDARY 32
115
116 /* Define this if move instructions will actually fail to work
117    when given unaligned data.  */
118 #define STRICT_ALIGNMENT 1
119
120 /* Define this as 1 if `char' should by default be signed; else as 0.  */
121 #define DEFAULT_SIGNED_CHAR 0
122
123 /* Define results of standard character escape sequences.  */
124 #define TARGET_BELL 007
125 #define TARGET_BS 010
126 #define TARGET_TAB 011
127 #define TARGET_NEWLINE 012
128 #define TARGET_VT 013
129 #define TARGET_FF 014
130 #define TARGET_CR 015
131 \f
132 /* Standard register usage.  */
133
134 /* Number of actual hardware registers.
135    The hardware registers are assigned numbers for the compiler
136    from 0 to just below FIRST_PSEUDO_REGISTER.
137
138    All registers that the compiler knows about must be given numbers,
139    even those that are not normally considered general registers.  */
140
141 #define FIRST_PSEUDO_REGISTER 10
142
143 /* 1 for registers that have pervasive standard uses
144    and are not available for the register allocator.  */
145
146 #define FIXED_REGISTERS \
147   { 0, 0, 0, 0, 0, 0, 0, 0, 1, 1}
148
149 /* 1 for registers not available across function calls.
150    These must include the FIXED_REGISTERS and also any
151    registers that can be used without being saved.
152    The latter must include the registers where values are returned
153    and the register where structure-value addresses are passed.
154    Aside from that, you can include as many other registers as you
155    like.  */
156
157 #define CALL_USED_REGISTERS \
158   { 1, 1, 0, 0, 1, 1, 0, 0, 1, 1}
159
160 #define REG_ALLOC_ORDER \
161   { 0, 1, 4, 5, 2, 3, 6, 7, 8, 9}
162
163 /* Return number of consecutive hard regs needed starting at reg REGNO
164    to hold something of mode MODE.
165
166    This is ordinarily the length in words of a value of mode MODE
167    but can be less for certain modes in special long registers.  */
168
169 #define HARD_REGNO_NREGS(REGNO, MODE)   \
170   ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
171
172 /* Value is 1 if hard register REGNO can hold a value of machine-mode
173    MODE.  */
174
175 #define HARD_REGNO_MODE_OK(REGNO, MODE) \
176  (REGNO_REG_CLASS (REGNO) == DATA_REGS                  \
177   ? ((REGNO) & 1) == 0 || GET_MODE_SIZE (MODE) <= 4     \
178   : ((REGNO) & 1) == 0 || GET_MODE_SIZE (MODE) == 4)
179
180 /* Value is 1 if it is a good idea to tie two pseudo registers
181    when one has mode MODE1 and one has mode MODE2.
182    If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
183    for any hard reg, then this must be 0 for correct output.  */
184 #define MODES_TIEABLE_P(MODE1, MODE2) \
185   (MODE1 == MODE2 || GET_MODE_SIZE (MODE1) <= 4 && GET_MODE_SIZE (MODE2) <= 4)
186
187 /* 4 data, and effectively 3 address registers is small as far as I'm
188    concerned.  */
189 #define SMALL_REGISTER_CLASSES 1
190 \f
191 /* Define the classes of registers for register constraints in the
192    machine description.  Also define ranges of constants.
193
194    One of the classes must always be named ALL_REGS and include all hard regs.
195    If there is more than one class, another class must be named NO_REGS
196    and contain no registers.
197
198    The name GENERAL_REGS must be the name of a class (or an alias for
199    another name such as ALL_REGS).  This is the class of registers
200    that is allowed by "g" or "r" in a register constraint.
201    Also, registers outside this class are allocated only when
202    instructions express preferences for them.
203
204    The classes must be numbered in nondecreasing order; that is,
205    a larger-numbered class must never be contained completely
206    in a smaller-numbered class.
207
208    For any two classes, it is very desirable that there be another
209    class that represents their union.  */
210    
211 enum reg_class {
212   NO_REGS, DATA_REGS, ADDRESS_REGS, SP_REGS,
213   DATA_OR_ADDRESS_REGS, SP_OR_ADDRESS_REGS, 
214   GENERAL_REGS, ALL_REGS, LIM_REG_CLASSES
215 };
216
217 #define N_REG_CLASSES (int) LIM_REG_CLASSES
218
219 /* Give names of register classes as strings for dump file.   */
220
221 #define REG_CLASS_NAMES \
222 { "NO_REGS", "DATA_REGS", "ADDRESS_REGS", \
223   "SP_REGS", "DATA_OR_ADDRESS_REGS", "SP_OR_ADDRESS_REGS", \
224   "GENERAL_REGS", "ALL_REGS", "LIM_REGS" }
225
226 /* Define which registers fit in which classes.
227    This is an initializer for a vector of HARD_REG_SET
228    of length N_REG_CLASSES.  */
229
230 #define REG_CLASS_CONTENTS                      \
231 {      0,               /* No regs      */      \
232    0x00f,               /* DATA_REGS */         \
233    0x1f0,               /* ADDRESS_REGS */      \
234    0x200,               /* SP_REGS */           \
235    0x1ff,               /* DATA_OR_ADDRESS_REGS */\
236    0x1f0,               /* SP_OR_ADDRESS_REGS */\
237    0x1ff,               /* GENERAL_REGS */      \
238    0x3ff,               /* ALL_REGS     */      \
239 }
240
241 /* The same information, inverted:
242    Return the class number of the smallest class containing
243    reg number REGNO.  This could be a conditional expression
244    or could index an array.  */
245
246 #define REGNO_REG_CLASS(REGNO) \
247   ((REGNO) < 4 ? DATA_REGS : \
248    (REGNO) < 9 ? ADDRESS_REGS : \
249     (REGNO) == 9 ? SP_REGS : 0)
250
251 /* The class value for index registers, and the one for base regs.  */
252 #define INDEX_REG_CLASS DATA_REGS
253 #define BASE_REG_CLASS  SP_OR_ADDRESS_REGS
254
255 /* Get reg_class from a letter such as appears in the machine description.  */
256
257 #define REG_CLASS_FROM_LETTER(C) \
258   ((C) == 'd' ? DATA_REGS : \
259    (C) == 'a' ? ADDRESS_REGS : \
260    (C) == 'y' ? SP_REGS : NO_REGS)
261
262 /* Macros to check register numbers against specific register classes.  */
263
264 /* These assume that REGNO is a hard or pseudo reg number.
265    They give nonzero only if REGNO is a hard reg of the suitable class
266    or a pseudo reg currently allocated to a suitable hard reg.
267    Since they use reg_renumber, they are safe only once reg_renumber
268    has been allocated, which happens in local-alloc.c.  */
269  
270 #define REGNO_OK_FOR_BASE_P(regno) \
271   (((regno) > 3 && regno < FIRST_PSEUDO_REGISTER)       \
272    || (reg_renumber[regno] > 3 && reg_renumber[regno] < FIRST_PSEUDO_REGISTER))
273
274 #define REGNO_OK_FOR_BIT_BASE_P(regno) \
275   (((regno) > 3 && regno < 10)  \
276    || (reg_renumber[regno] > 3 && reg_renumber[regno] < 10))
277
278 #define REGNO_OK_FOR_INDEX_P(regno) \
279   (((regno) >= 0 && regno < 4)  \
280    || (reg_renumber[regno] >= 0 && reg_renumber[regno] < 4))
281
282
283 /* Given an rtx X being reloaded into a reg required to be
284    in class CLASS, return the class of reg to actually use.
285    In general this is just CLASS; but on some machines
286    in some cases it is preferable to use a more restrictive class.  */
287
288 #define PREFERRED_RELOAD_CLASS(X,CLASS) \
289   (X == stack_pointer_rtx && CLASS != SP_REGS ? ADDRESS_REGS : CLASS)
290
291 #define PREFERRED_OUTPUT_RELOAD_CLASS(X,CLASS) \
292   (X == stack_pointer_rtx && CLASS != SP_REGS ? ADDRESS_REGS : CLASS)
293
294 #define LIMIT_RELOAD_CLASS(MODE, CLASS) \
295   ((MODE == QImode || MODE == HImode) ? DATA_REGS : CLASS)
296
297 #define SECONDARY_RELOAD_CLASS(CLASS,MODE,IN) \
298   secondary_reload_class(CLASS,MODE,IN)
299
300 /* Return the maximum number of consecutive registers
301    needed to represent mode MODE in a register of class CLASS.  */
302
303 #define CLASS_MAX_NREGS(CLASS, MODE)    \
304   ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
305
306 /* The letters I, J, K, L, M, N, O, P in a register constraint string
307    can be used to stand for particular ranges of immediate operands.
308    This macro defines what the ranges are.
309    C is the letter, and VALUE is a constant value.
310    Return 1 if VALUE is in the range specified by C.  */
311
312 #define INT_8_BITS(VALUE) ((unsigned) (VALUE) + 0x80 < 0x100)
313 #define INT_16_BITS(VALUE) ((unsigned) (VALUE) + 0x8000 < 0x10000)
314
315 #define CONST_OK_FOR_I(VALUE) ((VALUE) == 0)
316 #define CONST_OK_FOR_J(VALUE) ((VALUE) == 1)
317 #define CONST_OK_FOR_K(VALUE) ((VALUE) == 2)
318 #define CONST_OK_FOR_L(VALUE) ((VALUE) == 4)
319 #define CONST_OK_FOR_M(VALUE) ((VALUE) == 3)
320 #define CONST_OK_FOR_N(VALUE) ((VALUE) == 255 || (VALUE) == 65535)
321
322 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
323   ((C) == 'I' ? CONST_OK_FOR_I (VALUE) : \
324    (C) == 'J' ? CONST_OK_FOR_J (VALUE) : \
325    (C) == 'K' ? CONST_OK_FOR_K (VALUE) : \
326    (C) == 'L' ? CONST_OK_FOR_L (VALUE) : \
327    (C) == 'M' ? CONST_OK_FOR_M (VALUE) : \
328    (C) == 'N' ? CONST_OK_FOR_N (VALUE) : 0)
329
330
331 /* Similar, but for floating constants, and defining letters G and H.
332    Here VALUE is the CONST_DOUBLE rtx itself. 
333      
334   `G' is a floating-point zero.  */
335
336 #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C) \
337   ((C) == 'G' ? (GET_MODE_CLASS (GET_MODE (VALUE)) == MODE_FLOAT        \
338                  && (VALUE) == CONST0_RTX (GET_MODE (VALUE))) : 0)
339
340 \f
341 /* Stack layout; function entry, exit and calling.  */
342
343 /* Define this if pushing a word on the stack
344    makes the stack pointer a smaller address.  */
345
346 #define STACK_GROWS_DOWNWARD
347
348 /* Define this if the nominal address of the stack frame
349    is at the high-address end of the local variables;
350    that is, each additional local variable allocated
351    goes at a more negative offset in the frame.  */
352
353 #define FRAME_GROWS_DOWNWARD
354
355 /* Offset within stack frame to start allocating local variables at.
356    If FRAME_GROWS_DOWNWARD, this is the offset to the END of the
357    first local allocated.  Otherwise, it is the offset to the BEGINNING
358    of the first local allocated.  */
359
360 #define STARTING_FRAME_OFFSET 0
361
362 /* Offset of first parameter from the argument pointer register value.  */
363 /* Is equal to the size of the saved fp + pc, even if an fp isn't
364    saved since the value is used before we know.  */
365
366 #define FIRST_PARM_OFFSET(FNDECL) 4
367
368 /* Specify the registers used for certain standard purposes.
369    The values of these macros are register numbers.  */
370
371 /* Register to use for pushing function arguments.  */
372 #define STACK_POINTER_REGNUM 9
373
374 /* Base register for access to local variables of the function.  */
375 #define FRAME_POINTER_REGNUM 7
376
377 /* Base register for access to arguments of the function.  This
378    is a fake register and will be eliminated into either the frame
379    pointer or stack pointer.  */
380 #define ARG_POINTER_REGNUM 8
381
382 /* Register in which static-chain is passed to a function.  */
383 #define STATIC_CHAIN_REGNUM 5
384
385 #define ELIMINABLE_REGS                         \
386 {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM},   \
387  { ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM},   \
388  { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}}
389
390 #define CAN_ELIMINATE(FROM, TO) 1
391
392 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
393   OFFSET = initial_offset (FROM, TO)
394
395 /* We can debug without frame pointers on the mn10300, so eliminate
396    them whenever possible.  */
397 #define FRAME_POINTER_REQUIRED 0
398 #define CAN_DEBUG_WITHOUT_FP
399
400 /* A guess for the MN10300.  */
401 #define PROMOTE_PROTOTYPES 1
402
403 /* Value is the number of bytes of arguments automatically
404    popped when returning from a subroutine call.
405    FUNDECL is the declaration node of the function (as a tree),
406    FUNTYPE is the data type of the function (as a tree),
407    or for a library call it is an identifier node for the subroutine name.
408    SIZE is the number of bytes of arguments passed on the stack.  */
409
410 #define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE) 0
411
412 /* We use d0/d1 for passing parameters, so allocate 8 bytes of space
413    for a register flushback area.  */
414 #define REG_PARM_STACK_SPACE(DECL) 8
415 #define OUTGOING_REG_PARM_STACK_SPACE
416 #define ACCUMULATE_OUTGOING_ARGS
417
418 /* So we can allocate space for return pointers once for the function
419    instead of around every call.  */
420 #define STACK_POINTER_OFFSET 4
421
422 /* 1 if N is a possible register number for function argument passing.
423    On the MN10300, no registers are used in this way.  */
424
425 #define FUNCTION_ARG_REGNO_P(N) ((N) <= 1)
426
427 \f
428 /* Define a data type for recording info about an argument list
429    during the scan of that argument list.  This data type should
430    hold all necessary information about the function itself
431    and about the args processed so far, enough to enable macros
432    such as FUNCTION_ARG to determine where the next arg should go.
433
434    On the MN10300, this is a single integer, which is a number of bytes
435    of arguments scanned so far.  */
436
437 #define CUMULATIVE_ARGS struct cum_arg
438 struct cum_arg {int nbytes; };
439
440 /* Initialize a variable CUM of type CUMULATIVE_ARGS
441    for a call to a function whose data type is FNTYPE.
442    For a library call, FNTYPE is 0.
443
444    On the MN10300, the offset starts at 0.  */
445
446 #define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME,INDIRECT)       \
447  ((CUM).nbytes = 0)
448
449 /* Update the data in CUM to advance over an argument
450    of mode MODE and data type TYPE.
451    (TYPE is null for libcalls where that information may not be available.)  */
452
453 #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED)    \
454  ((CUM).nbytes += ((MODE) != BLKmode                    \
455                    ? (GET_MODE_SIZE (MODE) + 3) & ~3    \
456                    : (int_size_in_bytes (TYPE) + 3) & ~3))
457
458 /* Define where to put the arguments to a function.
459    Value is zero to push the argument on the stack,
460    or a hard register in which to store the argument.
461
462    MODE is the argument's machine mode.
463    TYPE is the data type of the argument (as a tree).
464     This is null for libcalls where that information may
465     not be available.
466    CUM is a variable of type CUMULATIVE_ARGS which gives info about
467     the preceding args and about the function being called.
468    NAMED is nonzero if this argument is a named parameter
469     (otherwise it is an extra parameter matching an ellipsis).  */
470
471 /* On the MN10300 all args are pushed.  */   
472
473 extern struct rtx_def *function_arg ();
474 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \
475   function_arg (&CUM, MODE, TYPE, NAMED)
476
477 #define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) \
478   function_arg_partial_nregs (&CUM, MODE, TYPE, NAMED)
479
480 \f
481 #define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED)          \
482   ((TYPE) && int_size_in_bytes (TYPE) > 8)
483  
484 #define FUNCTION_ARG_CALLEE_COPIES(CUM, MODE, TYPE, NAMED) \
485   ((TYPE) && int_size_in_bytes (TYPE) > 8)
486
487 /* Define how to find the value returned by a function.
488    VALTYPE is the data type of the value (as a tree).
489    If the precise function being called is known, FUNC is its FUNCTION_DECL;
490    otherwise, FUNC is 0.   */
491
492 #define FUNCTION_VALUE(VALTYPE, FUNC) \
493   gen_rtx (REG, TYPE_MODE (VALTYPE), POINTER_TYPE_P (VALTYPE) ? 4 : 0)
494
495 /* Define how to find the value returned by a library function
496    assuming the value has mode MODE.  */
497
498 #define LIBCALL_VALUE(MODE) gen_rtx (REG, MODE, 0)
499
500 /* 1 if N is a possible register number for a function value.  */
501
502 #define FUNCTION_VALUE_REGNO_P(N) ((N) == 0 || (N) == 4)
503
504 /* Return values > 8 bytes in length in memory.  */
505 #define DEFAULT_PCC_STRUCT_RETURN 0
506 #define RETURN_IN_MEMORY(TYPE)  \
507   (int_size_in_bytes (TYPE) > 8 || TYPE_MODE (TYPE) == BLKmode)
508
509 /* Register in which address to store a structure value
510    is passed to a function.  On the MN10300 it's passed as
511    the first parameter.  */
512
513 #define STRUCT_VALUE 0
514
515 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
516    the stack pointer does not matter.  The value is tested only in
517    functions that have frame pointers.
518    No definition is equivalent to always zero.  */
519
520 #define EXIT_IGNORE_STACK 1
521
522 /* Output assembler code to FILE to increment profiler label # LABELNO
523    for profiling a function entry.  */
524
525 #define FUNCTION_PROFILER(FILE, LABELNO) ;
526
527 #define TRAMPOLINE_TEMPLATE(FILE)                       \
528   do {                                                  \
529     fprintf (FILE, "\tadd -4,sp\n");                    \
530     fprintf (FILE, "\t.long 0x0004fffa\n");             \
531     fprintf (FILE, "\tmov (0,sp),a0\n");                \
532     fprintf (FILE, "\tadd 4,sp\n");                     \
533     fprintf (FILE, "\tmov (13,a0),a1\n");               \
534     fprintf (FILE, "\tmov (17,a0),a0\n");               \
535     fprintf (FILE, "\tjmp (a0)\n");                     \
536     fprintf (FILE, "\t.long 0\n");                      \
537     fprintf (FILE, "\t.long 0\n");                      \
538   } while (0)
539
540 /* Length in units of the trampoline for entering a nested function.  */
541
542 #define TRAMPOLINE_SIZE 0x1b
543
544 #define TRAMPOLINE_ALIGNMENT 32
545
546 /* Emit RTL insns to initialize the variable parts of a trampoline.
547    FNADDR is an RTX for the address of the function's pure code.
548    CXT is an RTX for the static chain value for the function.  */
549
550 #define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT)                       \
551 {                                                                       \
552   emit_move_insn (gen_rtx (MEM, SImode, plus_constant ((TRAMP), 0x14)), \
553                  (CXT));                                                \
554   emit_move_insn (gen_rtx (MEM, SImode, plus_constant ((TRAMP), 0x18)), \
555                  (FNADDR));                                             \
556 }
557 /* A C expression whose value is RTL representing the value of the return
558    address for the frame COUNT steps up from the current frame.
559
560    On the mn10300, the return address is not at a constant location
561    due to the frame layout.  Luckily, it is at a constant offset from
562    the argument pointer, so we define RETURN_ADDR_RTX to return a
563    MEM using arg_pointer_rtx.  Reload will replace arg_pointer_rtx
564    with a reference to the stack/frame pointer + an appropriate offset.  */
565
566 #define RETURN_ADDR_RTX(COUNT, FRAME)   \
567   ((COUNT == 0)                         \
568    ? gen_rtx (MEM, Pmode, arg_pointer_rtx) \
569    : (rtx) 0)
570
571 /* Emit code for a call to builtin_saveregs.  We must emit USE insns which
572    reference the 2 integer arg registers.
573    Ordinarily they are not call used registers, but they are for
574    _builtin_saveregs, so we must make this explicit.  */
575
576 extern struct rtx_def *mn10300_builtin_saveregs ();
577 #define EXPAND_BUILTIN_SAVEREGS(ARGLIST) mn10300_builtin_saveregs (ARGLIST)
578
579 /* Addressing modes, and classification of registers for them.  */
580
581 \f
582 /* 1 if X is an rtx for a constant that is a valid address.  */
583
584 #define CONSTANT_ADDRESS_P(X)   CONSTANT_P (X)
585
586 /* Extra constraints.  */
587  
588 #define OK_FOR_R(OP) \
589    (GET_CODE (OP) == MEM                                        \
590     && GET_MODE (OP) == QImode                                  \
591     && (CONSTANT_ADDRESS_P (XEXP (OP, 0))                       \
592         || (GET_CODE (XEXP (OP, 0)) == REG                      \
593             && REG_OK_FOR_BIT_BASE_P (XEXP (OP, 0))             \
594             && XEXP (OP, 0) != stack_pointer_rtx)               \
595         || (GET_CODE (XEXP (OP, 0)) == PLUS                     \
596             && GET_CODE (XEXP (XEXP (OP, 0), 0)) == REG         \
597             && REG_OK_FOR_BIT_BASE_P (XEXP (XEXP (OP, 0), 0))   \
598             && XEXP (XEXP (OP, 0), 0) != stack_pointer_rtx      \
599             && GET_CODE (XEXP (XEXP (OP, 0), 1)) == CONST_INT   \
600             && INT_8_BITS (INTVAL (XEXP (XEXP (OP, 0), 1))))))
601          
602 #define EXTRA_CONSTRAINT(OP, C) \
603  ((C) == 'R' ? OK_FOR_R (OP) : (C) == 'S' ? GET_CODE (OP) == SYMBOL_REF : 0)
604
605 /* Maximum number of registers that can appear in a valid memory address.  */
606
607 #define MAX_REGS_PER_ADDRESS 2
608
609 /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
610    and check its validity for a certain class.
611    We have two alternate definitions for each of them.
612    The usual definition accepts all pseudo regs; the other rejects
613    them unless they have been allocated suitable hard regs.
614    The symbol REG_OK_STRICT causes the latter definition to be used.
615
616    Most source files want to accept pseudo regs in the hope that
617    they will get allocated to the class that the insn wants them to be in.
618    Source files for reload pass need to be strict.
619    After reload, it makes no difference, since pseudo regs have
620    been eliminated by then.  */
621
622 #ifndef REG_OK_STRICT
623 /* Nonzero if X is a hard reg that can be used as an index
624    or if it is a pseudo reg.  */
625 #define REG_OK_FOR_INDEX_P(X)  \
626   ((REGNO (X) >= 0 && REGNO(X) <= 3) || REGNO (X) >= 10)
627 /* Nonzero if X is a hard reg that can be used as a base reg
628    or if it is a pseudo reg.  */
629 #define REG_OK_FOR_BASE_P(X) \
630   ((REGNO (X) >= 4 && REGNO(X) <= 9) || REGNO (X) >= 10)
631 #define REG_OK_FOR_BIT_BASE_P(X) \
632   ((REGNO (X) >= 4 && REGNO(X) <= 9))
633 #else
634 /* Nonzero if X is a hard reg that can be used as an index.  */
635 #define REG_OK_FOR_INDEX_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
636 /* Nonzero if X is a hard reg that can be used as a base reg.  */
637 #define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
638 /* Nonzero if X is a hard reg that can be used as a base reg.  */
639 #define REG_OK_FOR_BIT_BASE_P(X) REGNO_OK_FOR_BIT_BASE_P (REGNO (X))
640 #endif
641
642 \f
643 /* GO_IF_LEGITIMATE_ADDRESS recognizes an RTL expression
644    that is a valid memory address for an instruction.
645    The MODE argument is the machine mode for the MEM expression
646    that wants to use this address.
647
648    The other macros defined here are used only in GO_IF_LEGITIMATE_ADDRESS,
649    except for CONSTANT_ADDRESS_P which is actually
650    machine-independent.
651
652    On the mn10300, the value in the address register must be
653    in the same memory space/segment as the effective address.
654
655    This is problematical for reload since it does not understand
656    that base+index != index+base in a memory reference.
657
658    Note it is still possible to use reg+reg addressing modes,
659    it's just much more difficult.  For a discussion of a possible
660    workaround and solution, see the comments in pa.c before the
661    function record_unscaled_index_insn_codes.  */
662
663 /* Accept either REG or SUBREG where a register is valid.  */
664   
665 #define RTX_OK_FOR_BASE_P(X)                                    \
666   ((REG_P (X) && REG_OK_FOR_BASE_P (X))                         \
667    || (GET_CODE (X) == SUBREG && REG_P (SUBREG_REG (X))         \
668        && REG_OK_FOR_BASE_P (SUBREG_REG (X))))
669
670 #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, ADDR)         \
671 {                                                       \
672   if (CONSTANT_ADDRESS_P (X))                           \
673     goto ADDR;                                          \
674   if (RTX_OK_FOR_BASE_P (X))                            \
675     goto ADDR;                                          \
676   if (GET_CODE (X) == PLUS)                             \
677     {                                                   \
678       rtx base = 0, index = 0;                          \
679       if (REG_P (XEXP (X, 0))                           \
680           && REG_OK_FOR_BASE_P (XEXP (X, 0)))           \
681         base = XEXP (X, 0), index = XEXP (X, 1);        \
682       if (REG_P (XEXP (X, 1))                           \
683           && REG_OK_FOR_BASE_P (XEXP (X, 1)))           \
684         base = XEXP (X, 1), index = XEXP (X, 0);        \
685       if (base != 0 && index != 0)                      \
686         {                                               \
687           if (GET_CODE (index) == CONST_INT)            \
688             goto ADDR;                                  \
689         }                                               \
690     }                                                   \
691 }
692
693 \f
694 /* Try machine-dependent ways of modifying an illegitimate address
695    to be legitimate.  If we find one, return the new, valid address.
696    This macro is used in only one place: `memory_address' in explow.c.
697
698    OLDX is the address as it was before break_out_memory_refs was called.
699    In some cases it is useful to look at this to decide what needs to be done.
700
701    MODE and WIN are passed so that this macro can use
702    GO_IF_LEGITIMATE_ADDRESS.
703
704    It is always safe for this macro to do nothing.  It exists to recognize
705    opportunities to optimize the output.   */
706
707 extern struct rtx_def *legitimize_address ();
708 #define LEGITIMIZE_ADDRESS(X, OLDX, MODE, WIN)  \
709 { rtx orig_x = (X);                             \
710   (X) = legitimize_address (X, OLDX, MODE);     \
711   if ((X) != orig_x && memory_address_p (MODE, X)) \
712     goto WIN; }
713
714 /* Go to LABEL if ADDR (a legitimate address expression)
715    has an effect that depends on the machine mode it is used for.  */
716
717 #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR,LABEL)  {}
718
719 /* Nonzero if the constant value X is a legitimate general operand.
720    It is given that X satisfies CONSTANT_P or is a CONST_DOUBLE.  */
721
722 #define LEGITIMATE_CONSTANT_P(X) 1
723
724 \f
725 /* Tell final.c how to eliminate redundant test instructions.  */
726
727 /* Here we define machine-dependent flags and fields in cc_status
728    (see `conditions.h').  No extra ones are needed for the vax.  */
729
730 /* Store in cc_status the expressions
731    that the condition codes will describe
732    after execution of an instruction whose pattern is EXP.
733    Do not alter them if the instruction would not alter the cc's.  */
734
735 #define CC_OVERFLOW_UNUSABLE 0x200
736 #define CC_NO_CARRY CC_NO_OVERFLOW
737 #define NOTICE_UPDATE_CC(EXP, INSN) notice_update_cc(EXP, INSN)
738
739 /* Compute the cost of computing a constant rtl expression RTX
740    whose rtx-code is CODE.  The body of this macro is a portion
741    of a switch statement.  If the code is computed here,
742    return it with a return statement.  Otherwise, break from the switch.  */
743
744 #define CONST_COSTS(RTX,CODE,OUTER_CODE) \
745   case CONST_INT:                                                       \
746     /* Zeros are extremely cheap.  */                                   \
747     if (INTVAL (RTX) == 0 && OUTER_CODE == SET)                         \
748       return 0;                                                         \
749     /* If it fits in 8 bits, then it's still relatively cheap.  */      \
750     if (INT_8_BITS (INTVAL (RTX)))                                      \
751       return 1;                                                         \
752     /* This is the "base" cost, includes constants where either the     \
753        upper or lower 16bits are all zeros.  */                         \
754     if (INT_16_BITS (INTVAL (RTX))                                      \
755         || (INTVAL (RTX) & 0xffff) == 0                                 \
756         || (INTVAL (RTX) & 0xffff0000) == 0)                            \
757       return 2;                                                         \
758     return 4;                                                           \
759   /* These are more costly than a CONST_INT, but we can relax them,     \
760      so they're less costly than a CONST_DOUBLE.  */                    \
761   case CONST:                                                           \
762   case LABEL_REF:                                                       \
763   case SYMBOL_REF:                                                      \
764     return 6;                                                           \
765   /* We don't optimize CONST_DOUBLEs well nor do we relax them well,    \
766      so their cost is very high.  */                                    \
767   case CONST_DOUBLE:                                                    \
768     return 8;
769
770
771 #define REGISTER_MOVE_COST(CLASS1, CLASS2)  (CLASS1 != CLASS2 ? 4 : 2)
772
773 /* A crude cut at RTX_COSTS for the MN10300.  */
774
775 /* Provide the costs of a rtl expression.  This is in the body of a
776    switch on CODE.  */
777 #define RTX_COSTS(RTX,CODE,OUTER_CODE) \
778   case MOD:             \
779   case DIV:             \
780     return 8;           \
781   case MULT:            \
782     return 8;
783
784 /* Nonzero if access to memory by bytes or half words is no faster
785    than accessing full words.  */
786 #define SLOW_BYTE_ACCESS 1
787
788 /* Dispatch tables on the mn10300 are extremely expensive in terms of code
789    and readonly data size.  So we crank up the case threshold value to
790    encourage a series of if/else comparisons to implement many small switch
791    statements.  In theory, this value could be increased much more if we
792    were solely optimizing for space, but we keep it "reasonable" to avoid
793    serious code efficiency lossage.  */
794 #define CASE_VALUES_THRESHOLD 6
795
796 #define NO_FUNCTION_CSE
797
798 /* According expr.c, a value of around 6 should minimize code size, and
799    for the MN10300 series, that's our primary concern.  */
800 #define MOVE_RATIO 6
801
802 #define TEXT_SECTION_ASM_OP "\t.section .text"
803 #define DATA_SECTION_ASM_OP "\t.section .data"
804 #define BSS_SECTION_ASM_OP "\t.section .bss"
805
806 /* Output at beginning/end of assembler file.  */
807 #undef ASM_FILE_START
808 #define ASM_FILE_START(FILE) asm_file_start(FILE)
809
810 #define ASM_COMMENT_START "#"
811
812 /* Output to assembler file text saying following lines
813    may contain character constants, extra white space, comments, etc.  */
814
815 #define ASM_APP_ON "#APP\n"
816
817 /* Output to assembler file text saying following lines
818    no longer contain unusual constructs.  */
819
820 #define ASM_APP_OFF "#NO_APP\n"
821
822 /* This is how to output an assembler line defining a `double' constant.
823    It is .dfloat or .gfloat, depending.  */
824
825 #define ASM_OUTPUT_DOUBLE(FILE, VALUE)                  \
826 do { char dstr[30];                                     \
827      REAL_VALUE_TO_DECIMAL ((VALUE), "%.20e", dstr);    \
828      fprintf (FILE, "\t.double %s\n", dstr);            \
829    } while (0)
830
831
832 /* This is how to output an assembler line defining a `float' constant.  */
833 #define ASM_OUTPUT_FLOAT(FILE, VALUE)                   \
834 do { char dstr[30];                                     \
835      REAL_VALUE_TO_DECIMAL ((VALUE), "%.20e", dstr);    \
836      fprintf (FILE, "\t.float %s\n", dstr);             \
837    } while (0)
838
839 /* This is how to output an assembler line defining an `int' constant.  */
840
841 #define ASM_OUTPUT_INT(FILE, VALUE)             \
842 ( fprintf (FILE, "\t.long "),                   \
843   output_addr_const (FILE, (VALUE)),            \
844   fprintf (FILE, "\n"))
845
846 /* Likewise for `char' and `short' constants.  */
847
848 #define ASM_OUTPUT_SHORT(FILE, VALUE)           \
849 ( fprintf (FILE, "\t.hword "),                  \
850   output_addr_const (FILE, (VALUE)),            \
851   fprintf (FILE, "\n"))
852
853 #define ASM_OUTPUT_CHAR(FILE, VALUE)            \
854 ( fprintf (FILE, "\t.byte "),                   \
855   output_addr_const (FILE, (VALUE)),            \
856   fprintf (FILE, "\n"))
857
858 /* This is how to output an assembler line for a numeric constant byte.  */
859 #define ASM_OUTPUT_BYTE(FILE, VALUE)  \
860   fprintf (FILE, "\t.byte 0x%x\n", (VALUE))
861
862 /* Define the parentheses used to group arithmetic operations
863    in assembler code.  */
864
865 #define ASM_OPEN_PAREN "("
866 #define ASM_CLOSE_PAREN ")"
867
868 /* This says how to output the assembler to define a global
869    uninitialized but not common symbol.
870    Try to use asm_output_bss to implement this macro.  */
871
872 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
873   asm_output_aligned_bss ((FILE), (DECL), (NAME), (SIZE), (ALIGN))
874
875 /* This is how to output the definition of a user-level label named NAME,
876    such as the label on a static function or variable NAME.  */
877
878 #define ASM_OUTPUT_LABEL(FILE, NAME)    \
879   do { assemble_name (FILE, NAME); fputs (":\n", FILE); } while (0)
880
881 /* This is how to output a command to make the user-level label named NAME
882    defined for reference from other files.  */
883
884 #define ASM_GLOBALIZE_LABEL(FILE, NAME) \
885   do { fputs ("\t.global ", FILE); assemble_name (FILE, NAME); fputs ("\n", FILE);} while (0)
886
887 /* This is how to output a reference to a user-level label named NAME.
888    `assemble_name' uses this.  */
889
890 #undef ASM_OUTPUT_LABELREF
891 #define ASM_OUTPUT_LABELREF(FILE, NAME)           \
892   do {                                            \
893   char* real_name;                                \
894   STRIP_NAME_ENCODING (real_name, (NAME));        \
895   fprintf (FILE, "_%s", real_name);               \
896   } while (0)           
897
898 /* Store in OUTPUT a string (made with alloca) containing
899    an assembler-name for a local static variable named NAME.
900    LABELNO is an integer which is different for each call.  */
901
902 #define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO)  \
903 ( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 10),    \
904   sprintf ((OUTPUT), "%s___%d", (NAME), (LABELNO)))
905
906 /* This is how we tell the assembler that two symbols have the same value.  */
907
908 #define ASM_OUTPUT_DEF(FILE,NAME1,NAME2) \
909   do { assemble_name(FILE, NAME1);       \
910        fputs(" = ", FILE);               \
911        assemble_name(FILE, NAME2);       \
912        fputc('\n', FILE); } while (0)
913
914
915 /* How to refer to registers in assembler output.
916    This sequence is indexed by compiler's hard-register-number (see above).  */
917
918 #define REGISTER_NAMES \
919 { "d0", "d1", "d2", "d3", "a0", "a1", "a2", "a3", "ap", "sp" }
920
921 /* Print an instruction operand X on file FILE.
922    look in mn10300.c for details */
923
924 #define PRINT_OPERAND(FILE, X, CODE)  print_operand(FILE,X,CODE)
925
926 /* Print a memory operand whose address is X, on file FILE.
927    This uses a function in output-vax.c.  */
928
929 #define PRINT_OPERAND_ADDRESS(FILE, ADDR) print_operand_address (FILE, ADDR)
930
931 #define ASM_OUTPUT_REG_PUSH(FILE,REGNO)
932 #define ASM_OUTPUT_REG_POP(FILE,REGNO)
933
934 /* This is how to output an element of a case-vector that is absolute.  */
935
936 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \
937   asm_fprintf (FILE, "\t%s .L%d\n", ".long", VALUE)
938
939 /* This is how to output an element of a case-vector that is relative.  */
940
941 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL) \
942   fprintf (FILE, "\t%s .L%d-.L%d\n", ".long", VALUE, REL)
943
944 #define ASM_OUTPUT_ALIGN(FILE,LOG)      \
945   if ((LOG) != 0)                       \
946     fprintf (FILE, "\t.align %d\n", (LOG))
947
948 /* We don't have to worry about dbx compatibility for the mn10300.  */
949 #define DEFAULT_GDB_EXTENSIONS 1
950
951 /* Use stabs debugging info by default.  */
952 #undef PREFERRED_DEBUGGING_TYPE
953 #define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
954
955 #define DBX_REGISTER_NUMBER(REGNO) REGNO
956
957 /* Define to use software floating point emulator for REAL_ARITHMETIC and
958    decimal <-> binary conversion. */
959 #define REAL_ARITHMETIC
960
961 /* Specify the machine mode that this machine uses
962    for the index in the tablejump instruction.  */
963 #define CASE_VECTOR_MODE Pmode
964
965 /* Define this if the case instruction drops through after the table
966    when the index is out of range.  Don't define it if the case insn
967    jumps to the default label instead.  */
968 #define CASE_DROPS_THROUGH
969
970 /* Define if operations between registers always perform the operation
971    on the full register even if a narrower mode is specified.  */
972 #define WORD_REGISTER_OPERATIONS
973
974 #define LOAD_EXTEND_OP(MODE) ZERO_EXTEND
975
976 /* Specify the tree operation to be used to convert reals to integers.  */
977 #define IMPLICIT_FIX_EXPR FIX_ROUND_EXPR
978
979 /* This flag, if defined, says the same insns that convert to a signed fixnum
980    also convert validly to an unsigned one.  */
981 #define FIXUNS_TRUNC_LIKE_FIX_TRUNC
982
983 /* This is the kind of divide that is easiest to do in the general case.  */
984 #define EASY_DIV_EXPR TRUNC_DIV_EXPR
985
986 /* Max number of bytes we can move from memory to memory
987    in one reasonably fast instruction.  */
988 #define MOVE_MAX        4
989
990 /* Define if shifts truncate the shift count
991    which implies one can omit a sign-extension or zero-extension
992    of a shift count.  */
993 #define SHIFT_COUNT_TRUNCATED 1
994
995 /* Value is 1 if truncating an integer of INPREC bits to OUTPREC bits
996    is done just by pretending it is already truncated.  */
997 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
998
999 /* Specify the machine mode that pointers have.
1000    After generation of rtl, the compiler makes no further distinction
1001    between pointers and any other objects of this machine mode.  */
1002 #define Pmode SImode
1003
1004 /* A function address in a call instruction
1005    is a byte address (for indexing purposes)
1006    so give the MEM rtx a byte's mode.  */
1007 #define FUNCTION_MODE QImode
1008
1009 /* The assembler op to get a word.  */
1010
1011 #define FILE_ASM_OP "\t.file\n"
1012
1013 extern void asm_file_start ();
1014 extern int const_costs ();
1015 extern void print_operand ();
1016 extern void print_operand_address ();
1017 extern void expand_prologue ();
1018 extern void expand_epilogue ();
1019 extern void notice_update_cc ();
1020 extern int call_address_operand ();
1021 extern int impossible_plus_operand ();
1022 extern enum reg_class secondary_reload_class ();
1023 extern int initial_offset ();
1024 extern char *output_tst ();
1025 int symbolic_operand ();