OSDN Git Service

* config/m68k/m68k.h (MASK_RTD, TARGET_RTD, RETURN_POPS_ARGS):
[pf3gnuchains/gcc-fork.git] / gcc / config / m68k / m68k.h
1 /* Definitions of target machine for GNU compiler.
2    Sun 68000/68020 version.
3    Copyright (C) 1987, 1988, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4    2000, 2001, 2002, 2003 Free Software Foundation, Inc.
5
6 This file is part of GNU CC.
7
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING.  If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23
24 /* Note that some other tm.h files include this one and then override
25    many of the definitions that relate to assembler syntax.  */
26
27 /* Target CPU builtins.  */
28 #define TARGET_CPU_CPP_BUILTINS()               \
29   do                                            \
30     {                                           \
31       builtin_define ("__m68k__");              \
32       builtin_define_std ("mc68000");           \
33       if (TARGET_68040_ONLY)                    \
34         {                                       \
35           if (TARGET_68060)                     \
36             builtin_define_std ("mc68060");     \
37           else                                  \
38             builtin_define_std ("mc68040");     \
39         }                                       \
40       else if (TARGET_68060) /* -m68020-60 */   \
41         {                                       \
42           builtin_define_std ("mc68060");       \
43           builtin_define_std ("mc68040");       \
44           builtin_define_std ("mc68030");       \
45           builtin_define_std ("mc68020");       \
46         }                                       \
47       else if (TARGET_68040) /* -m68020-40 */   \
48         {                                       \
49           builtin_define_std ("mc68040");       \
50           builtin_define_std ("mc68030");       \
51           builtin_define_std ("mc68020");       \
52         }                                       \
53       else if (TARGET_68030)                    \
54         builtin_define_std ("mc68030");         \
55       else if (TARGET_68020)                    \
56         builtin_define_std ("mc68020");         \
57       if (TARGET_68881)                         \
58         builtin_define ("__HAVE_68881__");      \
59       if (TARGET_CPU32)                         \
60         {                                       \
61           builtin_define_std ("mc68332");       \
62           builtin_define_std ("mcpu32");        \
63         }                                       \
64       if (TARGET_COLDFIRE)                      \
65         builtin_define ("__mcoldfire__");       \
66       if (TARGET_5200)                          \
67         builtin_define ("__mcf5200__");         \
68       if (TARGET_528x)                          \
69         {                                       \
70           builtin_define ("__mcf528x__");       \
71           builtin_define ("__mcf5200__");       \
72         }                                       \
73       if (TARGET_CFV3)                          \
74         {                                       \
75           builtin_define ("__mcf5300__");       \
76           builtin_define ("__mcf5307__");       \
77         }                                       \
78       if (TARGET_CFV4)                          \
79         {                                       \
80           builtin_define ("__mcf5400__");       \
81           builtin_define ("__mcf5407__");       \
82         }                                       \
83       if (TARGET_CF_HWDIV)                      \
84         builtin_define ("__mcfhwdiv__");        \
85       if (flag_pic)                             \
86         builtin_define ("__pic__");             \
87       if (flag_pic > 1)                         \
88         builtin_define ("__PIC__");             \
89       builtin_assert ("cpu=m68k");              \
90       builtin_assert ("machine=m68k");          \
91     }                                           \
92   while (0)
93
94
95 /* Classify the groups of pseudo-ops used to assemble QI, HI and SI
96    quantities.  */
97 #define INT_OP_STANDARD 0       /* .byte, .short, .long */
98 #define INT_OP_DOT_WORD 1       /* .byte, .word, .long */
99 #define INT_OP_NO_DOT   2       /* byte, short, long */
100 #define INT_OP_DC       3       /* dc.b, dc.w, dc.l */
101
102 /* Set the default */
103 #define INT_OP_GROUP INT_OP_DOT_WORD
104
105 /* Print subsidiary information on the compiler version in use.  */
106 #ifdef MOTOROLA
107 #define TARGET_VERSION fprintf (stderr, " (68k, Motorola syntax)");
108 #else
109 #define TARGET_VERSION fprintf (stderr, " (68k, MIT syntax)");
110 #endif
111
112 /* Run-time compilation parameters selecting different hardware subsets.  */
113
114 extern int target_flags;
115
116 /* Macros used in the machine description to test the flags.  */
117
118 /* Compile for a 68020 (not a 68000 or 68010).  */
119 #define MASK_68020      (1<<0)
120 #define TARGET_68020 (target_flags & MASK_68020)
121
122 /* Compile for a 68030.  This does not really make a difference in GCC,
123    it just enables the __mc68030__ predefine.  */
124 #define MASK_68030      (1<<1)
125 #define TARGET_68030 (target_flags & MASK_68030)
126
127 /* Optimize for 68040, but still allow execution on 68020
128    (-m68020-40 or -m68040).
129    The 68040 will execute all 68030 and 68881/2 instructions, but some
130    of them must be emulated in software by the OS.  When TARGET_68040 is
131    turned on, these instructions won't be used.  This code will still
132    run on a 68030 and 68881/2.  */
133 #define MASK_68040      (1<<2)  
134 #define TARGET_68040 (target_flags & MASK_68040)
135
136 /* Use the 68040-only fp instructions (-m68040 or -m68060).  */
137 #define MASK_68040_ONLY (1<<3)
138 #define TARGET_68040_ONLY (target_flags & MASK_68040_ONLY)
139
140 /* Optimize for 68060, but still allow execution on 68020
141    (-m68020-60 or -m68060).
142    The 68060 will execute all 68030 and 68881/2 instructions, but some
143    of them must be emulated in software by the OS.  When TARGET_68060 is
144    turned on, these instructions won't be used.  This code will still
145    run on a 68030 and 68881/2.  */
146 #define MASK_68060      (1<<4)
147 #define TARGET_68060 (target_flags & MASK_68060)
148
149 /* Compile for mcf5200 */
150 #define MASK_5200       (1<<5)
151 #define TARGET_5200 (target_flags & MASK_5200)
152
153 /* Build for ColdFire v3 */
154 #define MASK_CFV3       (1<<6)
155 #define TARGET_CFV3     (target_flags & MASK_CFV3)
156
157 /* Build for ColdFire v4 */
158 #define MASK_CFV4       (1<<7)
159 #define TARGET_CFV4     (target_flags & MASK_CFV4)
160
161 /* Compile for ColdFire 528x */
162 #define MASK_528x       (1<<8)
163 #define TARGET_528x     (target_flags & MASK_528x)
164
165 /* Divide support for ColdFire */
166 #define MASK_CF_HWDIV   (1<<9)
167 #define TARGET_CF_HWDIV (target_flags & MASK_CF_HWDIV)
168
169 /* Compile 68881 insns for floating point (not library calls).  */
170 #define MASK_68881      (1<<10)
171 #define TARGET_68881    (target_flags & MASK_68881)
172
173 /* Compile using 68020 bit-field insns.  */
174 #define MASK_BITFIELD   (1<<11)
175 #define TARGET_BITFIELD (target_flags & MASK_BITFIELD)
176
177 /* Compile with 16-bit `int'.  */
178 #define MASK_SHORT      (1<<12)
179 #define TARGET_SHORT    (target_flags & MASK_SHORT)
180
181 /* Align ints to a word boundary.  This breaks compatibility with the 
182    published ABI's for structures containing ints, but produces faster
183    code on cpus with 32 bit busses (020, 030, 040, 060, CPU32+, coldfire).
184    It's required for coldfire cpus without a misalignment module.  */
185 #define MASK_ALIGN_INT  (1<<13)
186 #define TARGET_ALIGN_INT (target_flags & MASK_ALIGN_INT)
187
188 /* Use PC-relative addressing modes (without using a global offset table).
189    The m68000 supports 16-bit PC-relative addressing.
190    The m68020 supports 32-bit PC-relative addressing
191    (using outer displacements).
192
193    Under this model, all SYMBOL_REFs (and CONSTs) and LABEL_REFs are
194    treated as all containing an implicit PC-relative component, and hence
195    cannot be used directly as addresses for memory writes.  See the comments
196    in m68k.c for more information.  */
197 #define MASK_PCREL      (1<<14)
198 #define TARGET_PCREL    (target_flags & MASK_PCREL)
199
200 /* Relax strict alignment.  */
201 #define MASK_NO_STRICT_ALIGNMENT (1<<15)
202 #define TARGET_STRICT_ALIGNMENT  (~target_flags & MASK_NO_STRICT_ALIGNMENT)
203
204 /* Compile using rtd insn calling sequence.
205    This will not work unless you use prototypes at least
206    for all functions that can take varying numbers of args.  */
207 #define MASK_RTD        (1<<16)
208 #define TARGET_RTD      (target_flags & MASK_RTD)
209
210 /* Compile for a CPU32.  A 68020 without bitfields is a good
211    heuristic for a CPU32.  */
212 #define TARGET_CPU32    (TARGET_68020 && !TARGET_BITFIELD)
213
214 /* Is the target a ColdFire?  */
215 #define MASK_COLDFIRE   (MASK_5200|MASK_528x|MASK_CFV3|MASK_CFV4)
216 #define TARGET_COLDFIRE (target_flags & MASK_COLDFIRE)
217
218 /* Which bits can be set by specifying a coldfire */
219 #define MASK_ALL_CF_BITS        (MASK_COLDFIRE|MASK_CF_HWDIV)
220
221 /* Macro to define tables used to set the flags.
222    This is a list in braces of pairs in braces,
223    each pair being { "NAME", VALUE }
224    where VALUE is the bits to set or minus the bits to clear.
225    An empty string NAME is used to identify the default VALUE.  */
226
227 #define TARGET_SWITCHES                                                 \
228   { { "68020", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY),      \
229       N_("Generate code for a 68020") },                                \
230     { "c68020", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY),     \
231       N_("Generate code for a 68020") },                                \
232     { "68020", (MASK_68020|MASK_BITFIELD), "" },                        \
233     { "c68020", (MASK_68020|MASK_BITFIELD), "" },                       \
234     { "68000", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY        \
235                 |MASK_68020|MASK_BITFIELD|MASK_68881),                  \
236       N_("Generate code for a 68000") },                                \
237     { "c68000", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY       \
238                 |MASK_68020|MASK_BITFIELD|MASK_68881),                  \
239       N_("Generate code for a 68000") },                                \
240     { "bitfield", MASK_BITFIELD,                                        \
241       N_("Use the bit-field instructions") },                           \
242     { "nobitfield", - MASK_BITFIELD,                                    \
243       N_("Do not use the bit-field instructions") },                    \
244     { "short", MASK_SHORT,                                              \
245       N_("Consider type `int' to be 16 bits wide") },                   \
246     { "noshort", - MASK_SHORT,                                          \
247       N_("Consider type `int' to be 32 bits wide") },                   \
248     { "68881", MASK_68881, "" },                                        \
249     { "soft-float", - (MASK_68040_ONLY|MASK_68881),                     \
250       N_("Generate code with library calls for floating point") },      \
251     { "68020-40", -(MASK_ALL_CF_BITS|MASK_68060|MASK_68040_ONLY),       \
252       N_("Generate code for a 68040, without any new instructions") },  \
253     { "68020-40", (MASK_BITFIELD|MASK_68881|MASK_68020|MASK_68040), ""},\
254     { "68020-60", -(MASK_ALL_CF_BITS|MASK_68040_ONLY),                  \
255       N_("Generate code for a 68060, without any new instructions") },  \
256     { "68020-60", (MASK_BITFIELD|MASK_68881|MASK_68020|MASK_68040       \
257                    |MASK_68060), "" },                                  \
258     { "68030", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY),      \
259       N_("Generate code for a 68030") },                                \
260     { "68030", (MASK_68020|MASK_68030|MASK_BITFIELD), "" },             \
261     { "68040", - (MASK_ALL_CF_BITS|MASK_68060),                         \
262       N_("Generate code for a 68040") },                                \
263     { "68040", (MASK_68020|MASK_68881|MASK_BITFIELD                     \
264                 |MASK_68040_ONLY|MASK_68040), "" },                     \
265     { "68060", - (MASK_ALL_CF_BITS|MASK_68040),                         \
266       N_("Generate code for a 68060") },                                \
267     { "68060", (MASK_68020|MASK_68881|MASK_BITFIELD                     \
268                 |MASK_68040_ONLY|MASK_68060), "" },                     \
269     { "5200", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY|MASK_68020      \
270                 |MASK_BITFIELD|MASK_68881),                             \
271       N_("Generate code for a 520X") },                                 \
272     { "5200", (MASK_5200), "" },                                        \
273     { "5206e", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY|MASK_68020     \
274                 |MASK_BITFIELD|MASK_68881),                             \
275       N_("Generate code for a 5206e") },                                \
276     { "5206e", (MASK_5200|MASK_CF_HWDIV), "" },                         \
277     { "528x", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY|MASK_68020      \
278                 |MASK_BITFIELD|MASK_68881),                             \
279       N_("Generate code for a 528x") },                                 \
280     { "528x", (MASK_528x|MASK_CF_HWDIV), "" },                          \
281     { "5307", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY|MASK_68020      \
282                 |MASK_BITFIELD|MASK_68881),                             \
283       N_("Generate code for a 5307") },                                 \
284     { "5307", (MASK_CFV3|MASK_CF_HWDIV), "" },                          \
285     { "5407", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY|MASK_68020      \
286                 |MASK_BITFIELD|MASK_68881),                             \
287       N_("Generate code for a 5407") },                                 \
288     { "5407", (MASK_CFV4|MASK_CF_HWDIV), "" },                          \
289     { "68851", 0,                                                       \
290       N_("Generate code for a 68851") },                                \
291     { "no-68851", 0,                                                    \
292       N_("Do no generate code for a 68851") },                          \
293     { "68302", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY        \
294                   |MASK_68020|MASK_BITFIELD|MASK_68881),                \
295       N_("Generate code for a 68302") },                                \
296     { "68332", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY        \
297                   |MASK_BITFIELD|MASK_68881),                           \
298       N_("Generate code for a 68332") },                                \
299     { "68332", MASK_68020, "" },                                        \
300     { "cpu32", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY        \
301                   |MASK_BITFIELD|MASK_68881),                           \
302       N_("Generate code for a cpu32") },                                \
303     { "cpu32", MASK_68020, "" },                                        \
304     { "align-int", MASK_ALIGN_INT,                                      \
305       N_("Align variables on a 32-bit boundary") },                     \
306     { "no-align-int", -MASK_ALIGN_INT,                                  \
307       N_("Align variables on a 16-bit boundary") },                     \
308     { "pcrel", MASK_PCREL,                                              \
309       N_("Generate pc-relative code") },                                \
310     { "strict-align", -MASK_NO_STRICT_ALIGNMENT,                        \
311       N_("Do not use unaligned memory references") },                   \
312     { "no-strict-align", MASK_NO_STRICT_ALIGNMENT,                      \
313       N_("Use unaligned memory references") },                          \
314     { "rtd", MASK_RTD,                                                  \
315       N_("Use different calling convention using 'rtd'") },             \
316     { "nortd", - MASK_RTD,                                              \
317       N_("Use normal calling convention") },                            \
318     SUBTARGET_SWITCHES                                                  \
319     { "", TARGET_DEFAULT, "" }}
320 /* TARGET_DEFAULT is defined in m68k-none.h, netbsd.h, etc.  */
321
322 /* This macro is similar to `TARGET_SWITCHES' but defines names of
323    command options that have values.  Its definition is an
324    initializer with a subgrouping for each command option.
325
326    Each subgrouping contains a string constant, that defines the
327    fixed part of the option name, and the address of a variable.  The
328    variable, type `char *', is set to the variable part of the given
329    option if the fixed part matches.  The actual option name is made
330    by appending `-m' to the specified name.  */
331 #define TARGET_OPTIONS                                                  \
332 { { "align-loops=",     &m68k_align_loops_string,                       \
333     N_("Loop code aligned to this power of 2"), 0},                     \
334   { "align-jumps=",     &m68k_align_jumps_string,                       \
335     N_("Jump targets are aligned to this power of 2"), 0},              \
336   { "align-functions=", &m68k_align_funcs_string,                       \
337     N_("Function starts are aligned to this power of 2"), 0},           \
338   SUBTARGET_OPTIONS                                                     \
339 }
340
341 /* Sometimes certain combinations of command options do not make
342    sense on a particular target machine.  You can define a macro
343    `OVERRIDE_OPTIONS' to take account of this.  This macro, if
344    defined, is executed once just after all the command options have
345    been parsed.
346
347    Don't use this macro to turn on various extra optimizations for
348    `-O'.  That is what `OPTIMIZATION_OPTIONS' is for.  */
349
350 #define OVERRIDE_OPTIONS   override_options()
351
352 /* These are meant to be redefined in the host dependent files */
353 #define SUBTARGET_SWITCHES
354 #define SUBTARGET_OPTIONS
355 #define SUBTARGET_OVERRIDE_OPTIONS
356 \f
357 /* target machine storage layout */
358
359 /* Define for XFmode extended real floating point support.  */
360 #define LONG_DOUBLE_TYPE_SIZE 96
361
362 /* Set the value of FLT_EVAL_METHOD in float.h.  When using 68040 fp
363    instructions, we get proper intermediate rounding, otherwise we 
364    get extended precision results.  */
365 #define TARGET_FLT_EVAL_METHOD (TARGET_68040_ONLY ? 0 : 2)
366
367 /* Define this if most significant bit is lowest numbered
368    in instructions that operate on numbered bit-fields.
369    This is true for 68020 insns such as bfins and bfexts.
370    We make it true always by avoiding using the single-bit insns
371    except in special cases with constant bit numbers.  */
372 #define BITS_BIG_ENDIAN 1
373
374 /* Define this if most significant byte of a word is the lowest numbered.  */
375 /* That is true on the 68000.  */
376 #define BYTES_BIG_ENDIAN 1
377
378 /* Define this if most significant word of a multiword number is the lowest
379    numbered.  */
380 /* For 68000 we can decide arbitrarily
381    since there are no machine instructions for them.
382    So let's be consistent.  */
383 #define WORDS_BIG_ENDIAN 1
384
385 /* Width of a word, in units (bytes).  */
386 #define UNITS_PER_WORD 4
387
388 /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
389 #define PARM_BOUNDARY (TARGET_SHORT ? 16 : 32)
390
391 /* Boundary (in *bits*) on which stack pointer should be aligned.  */
392 #define STACK_BOUNDARY 16
393
394 /* Allocation boundary (in *bits*) for the code of a function.  */
395 #define FUNCTION_BOUNDARY (1 << (m68k_align_funcs + 3))
396
397 /* Alignment of field after `int : 0' in a structure.  */
398 #define EMPTY_FIELD_BOUNDARY 16
399
400 /* No data type wants to be aligned rounder than this. 
401    Most published ABIs say that ints should be aligned on 16 bit
402    boundaries, but cpus with 32 bit busses get better performance
403    aligned on 32 bit boundaries.  Coldfires without a misalignment
404    module require 32 bit alignment.  */
405 #define BIGGEST_ALIGNMENT (TARGET_ALIGN_INT ? 32 : 16)
406
407 /* Set this nonzero if move instructions will actually fail to work
408    when given unaligned data.  */
409 #define STRICT_ALIGNMENT (TARGET_STRICT_ALIGNMENT)
410
411 /* Maximum power of 2 that code can be aligned to.  */
412 #define MAX_CODE_ALIGN  2                       /* 4 byte alignment */
413
414 /* Align loop starts for optimal branching.  */
415 #define LOOP_ALIGN(LABEL) (m68k_align_loops)
416
417 /* This is how to align an instruction for optimal branching.  */
418 #define LABEL_ALIGN_AFTER_BARRIER(LABEL) (m68k_align_jumps)
419
420 /* Define number of bits in most basic integer type.
421    (If undefined, default is BITS_PER_WORD).  */
422
423 #define INT_TYPE_SIZE (TARGET_SHORT ? 16 : 32)
424
425 /* Define these to avoid dependence on meaning of `int'.  */
426  
427 #define WCHAR_TYPE "long int"
428 #define WCHAR_TYPE_SIZE 32
429 \f
430 /* Standard register usage.  */
431
432 /* Number of actual hardware registers.
433    The hardware registers are assigned numbers for the compiler
434    from 0 to just below FIRST_PSEUDO_REGISTER.
435    All registers that the compiler knows about must be given numbers,
436    even those that are not normally considered general registers.
437    For the 68000, we give the data registers numbers 0-7,
438    the address registers numbers 010-017,
439    and the 68881 floating point registers numbers 020-027.  */
440 #define FIRST_PSEUDO_REGISTER 25
441
442 /* This defines the register which is used to hold the offset table for PIC.  */
443 #define PIC_OFFSET_TABLE_REGNUM (flag_pic ? 13 : INVALID_REGNUM)
444
445 /* 1 for registers that have pervasive standard uses
446    and are not available for the register allocator.
447    On the 68000, only the stack pointer is such.  */
448
449 #define FIXED_REGISTERS        \
450  {/* Data registers.  */       \
451   0, 0, 0, 0, 0, 0, 0, 0,      \
452                                \
453   /* Address registers.  */    \
454   0, 0, 0, 0, 0, 0, 0, 1,      \
455                                \
456   /* Floating point registers  \
457      (if available).  */       \
458   0, 0, 0, 0, 0, 0, 0, 0 }
459
460 /* 1 for registers not available across function calls.
461    These must include the FIXED_REGISTERS and also any
462    registers that can be used without being saved.
463    The latter must include the registers where values are returned
464    and the register where structure-value addresses are passed.
465    Aside from that, you can include as many other registers as you like.  */
466 #define CALL_USED_REGISTERS \
467  {1, 1, 0, 0, 0, 0, 0, 0,   \
468   1, 1, 0, 0, 0, 0, 0, 1,   \
469   1, 1, 0, 0, 0, 0, 0, 0 }
470
471
472 /* Make sure everything's fine if we *don't* have a given processor.
473    This assumes that putting a register in fixed_regs will keep the
474    compiler's mitts completely off it.  We don't bother to zero it out
475    of register classes.  */
476
477 #define CONDITIONAL_REGISTER_USAGE                              \
478 {                                                               \
479   int i;                                                        \
480   HARD_REG_SET x;                                               \
481   if (! TARGET_68881)                                           \
482     {                                                           \
483       COPY_HARD_REG_SET (x, reg_class_contents[(int)FP_REGS]);  \
484       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++ )              \
485        if (TEST_HARD_REG_BIT (x, i))                            \
486         fixed_regs[i] = call_used_regs[i] = 1;                  \
487     }                                                           \
488   if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM)                \
489     fixed_regs[PIC_OFFSET_TABLE_REGNUM]                         \
490       = call_used_regs[PIC_OFFSET_TABLE_REGNUM] = 1;            \
491 }
492
493 /* Return number of consecutive hard regs needed starting at reg REGNO
494    to hold something of mode MODE.
495    This is ordinarily the length in words of a value of mode MODE
496    but can be less for certain modes in special long registers.
497
498    On the 68000, ordinary registers hold 32 bits worth;
499    for the 68881 registers, a single register is always enough for
500    anything that can be stored in them at all.  */
501 #define HARD_REGNO_NREGS(REGNO, MODE)   \
502   ((REGNO) >= 16 ? GET_MODE_NUNITS (MODE)       \
503    : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
504
505 /* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
506    On the 68000, the cpu registers can hold any mode but the 68881 registers
507    can hold only SFmode or DFmode.  */
508
509 #define HARD_REGNO_MODE_OK(REGNO, MODE) \
510   (((REGNO) < 16                                        \
511     && !((REGNO) < 8 && (REGNO) + GET_MODE_SIZE (MODE) / 4 > 8))        \
512    || ((REGNO) >= 16 && (REGNO) < 24                                    \
513        && (GET_MODE_CLASS (MODE) == MODE_FLOAT          \
514            || GET_MODE_CLASS (MODE) == MODE_COMPLEX_FLOAT)              \
515        && GET_MODE_UNIT_SIZE (MODE) <= 12))
516
517
518 /* Value is 1 if it is a good idea to tie two pseudo registers
519    when one has mode MODE1 and one has mode MODE2.
520    If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
521    for any hard reg, then this must be 0 for correct output.  */
522 #define MODES_TIEABLE_P(MODE1, MODE2)                   \
523   (! TARGET_68881                                       \
524    || ((GET_MODE_CLASS (MODE1) == MODE_FLOAT            \
525         || GET_MODE_CLASS (MODE1) == MODE_COMPLEX_FLOAT)        \
526        == (GET_MODE_CLASS (MODE2) == MODE_FLOAT         \
527            || GET_MODE_CLASS (MODE2) == MODE_COMPLEX_FLOAT)))
528
529 /* Specify the registers used for certain standard purposes.
530    The values of these macros are register numbers.  */
531
532 /* m68000 pc isn't overloaded on a register.  */
533 /* #define PC_REGNUM  */
534
535 /* Register to use for pushing function arguments.  */
536 #define STACK_POINTER_REGNUM 15
537
538 /* Base register for access to local variables of the function.  */
539 #define FRAME_POINTER_REGNUM 14
540
541 /* Value should be nonzero if functions must have frame pointers.
542    Zero means the frame pointer need not be set up (and parms
543    may be accessed via the stack pointer) in functions that seem suitable.
544    This is computed in `reload', in reload1.c.  */
545 #define FRAME_POINTER_REQUIRED 0
546
547 /* Base register for access to arguments of the function.
548  * This isn't a hardware register. It will be eliminated to the
549  * stack pointer or frame pointer.
550  */
551 #define ARG_POINTER_REGNUM 24
552
553 /* Register in which static-chain is passed to a function.  */
554 #define STATIC_CHAIN_REGNUM 8
555
556 /* Register in which address to store a structure value
557    is passed to a function.  */
558 #define STRUCT_VALUE_REGNUM 9
559 \f
560 /* Define the classes of registers for register constraints in the
561    machine description.  Also define ranges of constants.
562
563    One of the classes must always be named ALL_REGS and include all hard regs.
564    If there is more than one class, another class must be named NO_REGS
565    and contain no registers.
566
567    The name GENERAL_REGS must be the name of a class (or an alias for
568    another name such as ALL_REGS).  This is the class of registers
569    that is allowed by "g" or "r" in a register constraint.
570    Also, registers outside this class are allocated only when
571    instructions express preferences for them.
572
573    The classes must be numbered in nondecreasing order; that is,
574    a larger-numbered class must never be contained completely
575    in a smaller-numbered class.
576
577    For any two classes, it is very desirable that there be another
578    class that represents their union.  */
579
580 /* The 68000 has three kinds of registers, so eight classes would be
581    a complete set.  One of them is not needed.  */
582
583 enum reg_class {
584   NO_REGS, DATA_REGS,
585   ADDR_REGS, FP_REGS,
586   GENERAL_REGS, DATA_OR_FP_REGS,
587   ADDR_OR_FP_REGS, ALL_REGS,
588   LIM_REG_CLASSES };
589
590 #define N_REG_CLASSES (int) LIM_REG_CLASSES
591
592 /* Give names of register classes as strings for dump file.  */
593
594 #define REG_CLASS_NAMES \
595  { "NO_REGS", "DATA_REGS",              \
596    "ADDR_REGS", "FP_REGS",              \
597    "GENERAL_REGS", "DATA_OR_FP_REGS",   \
598    "ADDR_OR_FP_REGS", "ALL_REGS" }
599
600 /* Define which registers fit in which classes.
601    This is an initializer for a vector of HARD_REG_SET
602    of length N_REG_CLASSES.  */
603
604 #define REG_CLASS_CONTENTS \
605 {                                       \
606   {0x00000000},  /* NO_REGS */          \
607   {0x000000ff},  /* DATA_REGS */        \
608   {0x0000ff00},  /* ADDR_REGS */        \
609   {0x00ff0000},  /* FP_REGS */          \
610   {0x0000ffff},  /* GENERAL_REGS */     \
611   {0x00ff00ff},  /* DATA_OR_FP_REGS */  \
612   {0x00ffff00},  /* ADDR_OR_FP_REGS */  \
613   {0x00ffffff},  /* ALL_REGS */         \
614 }
615
616 /* The same information, inverted:
617    Return the class number of the smallest class containing
618    reg number REGNO.  This could be a conditional expression
619    or could index an array.  */
620
621 #define REGNO_REG_CLASS(REGNO) (((REGNO)>>3)+1)
622
623 /* The class value for index registers, and the one for base regs.  */
624
625 #define INDEX_REG_CLASS GENERAL_REGS
626 #define BASE_REG_CLASS ADDR_REGS
627
628 /* Get reg_class from a letter such as appears in the machine description.
629    We do a trick here to modify the effective constraints on the
630    machine description; we zorch the constraint letters that aren't
631    appropriate for a specific target.  This allows us to guarantee
632    that a specific kind of register will not be used for a given target
633    without fiddling with the register classes above.  */
634
635 #define REG_CLASS_FROM_LETTER(C) \
636   ((C) == 'a' ? ADDR_REGS :                     \
637    ((C) == 'd' ? DATA_REGS :                    \
638     ((C) == 'f' ? (TARGET_68881 ? FP_REGS :     \
639                    NO_REGS) :                   \
640      NO_REGS)))
641
642 /* The letters I, J, K, L and M in a register constraint string
643    can be used to stand for particular ranges of immediate operands.
644    This macro defines what the ranges are.
645    C is the letter, and VALUE is a constant value.
646    Return 1 if VALUE is in the range specified by C.
647
648    For the 68000, `I' is used for the range 1 to 8
649    allowed as immediate shift counts and in addq.
650    `J' is used for the range of signed numbers that fit in 16 bits.
651    `K' is for numbers that moveq can't handle.
652    `L' is for range -8 to -1, range of values that can be added with subq.
653    `M' is for numbers that moveq+notb can't handle.
654    'N' is for range 24 to 31, rotatert:SI 8 to 1 expressed as rotate.
655    'O' is for 16 (for rotate using swap).
656    'P' is for range 8 to 15, rotatert:HI 8 to 1 expressed as rotate.  */
657
658 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
659   ((C) == 'I' ? (VALUE) > 0 && (VALUE) <= 8 : \
660    (C) == 'J' ? (VALUE) >= -0x8000 && (VALUE) <= 0x7FFF : \
661    (C) == 'K' ? (VALUE) < -0x80 || (VALUE) >= 0x80 : \
662    (C) == 'L' ? (VALUE) < 0 && (VALUE) >= -8 : \
663    (C) == 'M' ? (VALUE) < -0x100 || (VALUE) >= 0x100 : \
664    (C) == 'N' ? (VALUE) >= 24 && (VALUE) <= 31 : \
665    (C) == 'O' ? (VALUE) == 16 : \
666    (C) == 'P' ? (VALUE) >= 8 && (VALUE) <= 15 : 0)
667
668 /*
669  * A small bit of explanation:
670  * "G" defines all of the floating constants that are *NOT* 68881
671  * constants.  this is so 68881 constants get reloaded and the
672  * fpmovecr is used.
673  */
674 #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C)  \
675   ((C) == 'G' ? ! (TARGET_68881 && standard_68881_constant_p (VALUE)) : 0 )
676
677 /* A C expression that defines the optional machine-dependent constraint
678    letters that can be used to segregate specific types of operands,  
679    usually memory references, for the target machine.  It should return 1 if
680    VALUE corresponds to the operand type represented by the constraint letter
681    C.  If C is not defined as an extra constraint, the value returned should 
682    be 0 regardless of VALUE.  */
683
684 /* Letters in the range `Q' through `U' may be defined in a
685    machine-dependent fashion to stand for arbitrary operand types. 
686    The machine description macro `EXTRA_CONSTRAINT' is passed the
687    operand as its first argument and the constraint letter as its
688    second operand.
689
690    `Q' means address register indirect addressing mode.
691    `S' is for operands that satisfy 'm' when -mpcrel is in effect.
692    `T' is for operands that satisfy 's' when -mpcrel is not in effect.  */
693
694 #define EXTRA_CONSTRAINT(OP,CODE)                       \
695   (((CODE) == 'S')                                      \
696    ? (TARGET_PCREL                                      \
697       && GET_CODE (OP) == MEM                           \
698       && (GET_CODE (XEXP (OP, 0)) == SYMBOL_REF         \
699           || GET_CODE (XEXP (OP, 0)) == LABEL_REF       \
700           || GET_CODE (XEXP (OP, 0)) == CONST))         \
701    :                                                    \
702   (((CODE) == 'T')                                      \
703    ? ( !TARGET_PCREL                                    \
704       && (GET_CODE (OP) == SYMBOL_REF                   \
705           || GET_CODE (OP) == LABEL_REF                 \
706           || GET_CODE (OP) == CONST))                   \
707    :                                                    \
708   (((CODE) == 'Q')                                      \
709    ? (GET_CODE (OP) == MEM                              \
710       && GET_CODE (XEXP (OP, 0)) == REG)                \
711    :                                                    \
712    0)))
713
714 /* Given an rtx X being reloaded into a reg required to be
715    in class CLASS, return the class of reg to actually use.
716    In general this is just CLASS; but on some machines
717    in some cases it is preferable to use a more restrictive class.
718    On the 68000 series, use a data reg if possible when the
719    value is a constant in the range where moveq could be used
720    and we ensure that QImodes are reloaded into data regs.  */
721
722 #define PREFERRED_RELOAD_CLASS(X,CLASS)  \
723   ((GET_CODE (X) == CONST_INT                   \
724     && (unsigned) (INTVAL (X) + 0x80) < 0x100   \
725     && (CLASS) != ADDR_REGS)                    \
726    ? DATA_REGS                                  \
727    : (GET_MODE (X) == QImode && (CLASS) != ADDR_REGS) \
728    ? DATA_REGS                                  \
729    : (GET_CODE (X) == CONST_DOUBLE                                      \
730       && GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT)                   \
731    ? (TARGET_68881 && (CLASS == FP_REGS || CLASS == DATA_OR_FP_REGS)    \
732       ? FP_REGS : NO_REGS)                                              \
733    : (TARGET_PCREL                              \
734       && (GET_CODE (X) == SYMBOL_REF || GET_CODE (X) == CONST \
735           || GET_CODE (X) == LABEL_REF))        \
736    ? ADDR_REGS                                  \
737    : (CLASS))
738
739 /* Force QImode output reloads from subregs to be allocated to data regs,
740    since QImode stores from address regs are not supported.  We make the
741    assumption that if the class is not ADDR_REGS, then it must be a superset
742    of DATA_REGS.  */
743
744 #define LIMIT_RELOAD_CLASS(MODE, CLASS) \
745   (((MODE) == QImode && (CLASS) != ADDR_REGS)   \
746    ? DATA_REGS                                  \
747    : (CLASS))
748
749 /* Return the maximum number of consecutive registers
750    needed to represent mode MODE in a register of class CLASS.  */
751 /* On the 68000, this is the size of MODE in words,
752    except in the FP regs, where a single reg is always enough.  */
753 #define CLASS_MAX_NREGS(CLASS, MODE)    \
754  ((CLASS) == FP_REGS ? 1 \
755   : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
756
757 /* Moves between fp regs and other regs are two insns.  */
758 #define REGISTER_MOVE_COST(MODE, CLASS1, CLASS2)        \
759   (((CLASS1) == FP_REGS && (CLASS2) != FP_REGS)         \
760     || ((CLASS2) == FP_REGS && (CLASS1) != FP_REGS)     \
761     ? 4 : 2)
762 \f
763 /* Stack layout; function entry, exit and calling.  */
764
765 /* Define this if pushing a word on the stack
766    makes the stack pointer a smaller address.  */
767 #define STACK_GROWS_DOWNWARD
768
769 /* Define this if the nominal address of the stack frame
770    is at the high-address end of the local variables;
771    that is, each additional local variable allocated
772    goes at a more negative offset in the frame.  */
773 #define FRAME_GROWS_DOWNWARD
774
775 /* Offset within stack frame to start allocating local variables at.
776    If FRAME_GROWS_DOWNWARD, this is the offset to the END of the
777    first local allocated.  Otherwise, it is the offset to the BEGINNING
778    of the first local allocated.  */
779 #define STARTING_FRAME_OFFSET 0
780
781 /* If we generate an insn to push BYTES bytes,
782    this says how many the stack pointer really advances by.
783    On the 68000, sp@- in a byte insn really pushes a word.
784    On the 5200 (coldfire), sp@- in a byte insn pushes just a byte.  */
785 #define PUSH_ROUNDING(BYTES) (TARGET_COLDFIRE ? BYTES : ((BYTES) + 1) & ~1)
786
787 /* We want to avoid trying to push bytes.  */
788 #define MOVE_BY_PIECES_P(SIZE, ALIGN) \
789   (move_by_pieces_ninsns (SIZE, ALIGN) < MOVE_RATIO \
790     && (((SIZE) >=16 && (ALIGN) >= 16) || (TARGET_COLDFIRE)))
791
792 /* Offset of first parameter from the argument pointer register value.  */
793 #define FIRST_PARM_OFFSET(FNDECL) 8
794
795 /* Value is the number of byte of arguments automatically
796    popped when returning from a subroutine call.
797    FUNDECL is the declaration node of the function (as a tree),
798    FUNTYPE is the data type of the function (as a tree),
799    or for a library call it is an identifier node for the subroutine name.
800    SIZE is the number of bytes of arguments passed on the stack.
801
802    On the 68000, the RTS insn cannot pop anything.
803    On the 68010, the RTD insn may be used to pop them if the number
804      of args is fixed, but if the number is variable then the caller
805      must pop them all.  RTD can't be used for library calls now
806      because the library is compiled with the Unix compiler.
807    Use of RTD is a selectable option, since it is incompatible with
808    standard Unix calling sequences.  If the option is not selected,
809    the caller must always pop the args.  */
810
811 #define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE)   \
812   ((TARGET_RTD && (!(FUNDECL) || TREE_CODE (FUNDECL) != IDENTIFIER_NODE)        \
813     && (TYPE_ARG_TYPES (FUNTYPE) == 0                           \
814         || (TREE_VALUE (tree_last (TYPE_ARG_TYPES (FUNTYPE)))   \
815             == void_type_node)))                                \
816    ? (SIZE) : 0)
817
818 /* Define how to find the value returned by a function.
819    VALTYPE is the data type of the value (as a tree).
820    If the precise function being called is known, FUNC is its FUNCTION_DECL;
821    otherwise, FUNC is 0.  */
822
823 /* On the 68000 the return value is in D0 regardless.  */
824
825 #define FUNCTION_VALUE(VALTYPE, FUNC)  \
826   gen_rtx_REG (TYPE_MODE (VALTYPE), 0)
827
828 /* Define how to find the value returned by a library function
829    assuming the value has mode MODE.  */
830
831 /* On the 68000 the return value is in D0 regardless.  */
832
833 #define LIBCALL_VALUE(MODE)  gen_rtx_REG (MODE, 0)
834
835 /* 1 if N is a possible register number for a function value.
836    On the 68000, d0 is the only register thus used.  */
837
838 #define FUNCTION_VALUE_REGNO_P(N) ((N) == 0)
839
840 /* Define this to be true when FUNCTION_VALUE_REGNO_P is true for
841    more than one register.  */
842
843 #define NEEDS_UNTYPED_CALL 0
844
845 /* Define this if PCC uses the nonreentrant convention for returning
846    structure and union values.  */
847
848 #define PCC_STATIC_STRUCT_RETURN
849
850 /* 1 if N is a possible register number for function argument passing.
851    On the 68000, no registers are used in this way.  */
852
853 #define FUNCTION_ARG_REGNO_P(N) 0
854 \f
855 /* Define a data type for recording info about an argument list
856    during the scan of that argument list.  This data type should
857    hold all necessary information about the function itself
858    and about the args processed so far, enough to enable macros
859    such as FUNCTION_ARG to determine where the next arg should go.
860
861    On the m68k, this is a single integer, which is a number of bytes
862    of arguments scanned so far.  */
863
864 #define CUMULATIVE_ARGS int
865
866 /* Initialize a variable CUM of type CUMULATIVE_ARGS
867    for a call to a function whose data type is FNTYPE.
868    For a library call, FNTYPE is 0.
869
870    On the m68k, the offset starts at 0.  */
871
872 #define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME,INDIRECT)       \
873  ((CUM) = 0)
874
875 /* Update the data in CUM to advance over an argument
876    of mode MODE and data type TYPE.
877    (TYPE is null for libcalls where that information may not be available.)  */
878
879 #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED)    \
880  ((CUM) += ((MODE) != BLKmode                   \
881             ? (GET_MODE_SIZE (MODE) + 3) & ~3   \
882             : (int_size_in_bytes (TYPE) + 3) & ~3))
883
884 /* Define where to put the arguments to a function.
885    Value is zero to push the argument on the stack,
886    or a hard register in which to store the argument.
887
888    MODE is the argument's machine mode.
889    TYPE is the data type of the argument (as a tree).
890     This is null for libcalls where that information may
891     not be available.
892    CUM is a variable of type CUMULATIVE_ARGS which gives info about
893     the preceding args and about the function being called.
894    NAMED is nonzero if this argument is a named parameter
895     (otherwise it is an extra parameter matching an ellipsis).
896
897    On the m68k all args are always pushed.  */
898
899 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) 0
900
901 /* For an arg passed partly in registers and partly in memory,
902    this is the number of registers used.
903    For args passed entirely in registers or entirely in memory, zero.  */
904
905 #define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) 0
906
907 /* Output assembler code to FILE to increment profiler label # LABELNO
908    for profiling a function entry.  */
909
910 #define FUNCTION_PROFILER(FILE, LABELNO)  \
911   asm_fprintf (FILE, "\tlea %LLP%d,%Ra0\n\tjsr mcount\n", (LABELNO))
912
913 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
914    the stack pointer does not matter.  The value is tested only in
915    functions that have frame pointers.
916    No definition is equivalent to always zero.  */
917
918 #define EXIT_IGNORE_STACK 1
919
920 /* This is a hook for other tm files to change.  */
921 /* #define FUNCTION_EXTRA_EPILOGUE(FILE, SIZE) */
922
923 /* Determine if the epilogue should be output as RTL.
924    You should override this if you define FUNCTION_EXTRA_EPILOGUE.  */
925 #define USE_RETURN_INSN use_return_insn ()
926
927 /* Output assembler code for a block containing the constant parts
928    of a trampoline, leaving space for the variable parts.  */
929
930 /* On the 68k, the trampoline looks like this:
931      movl #STATIC,a0
932      jmp  FUNCTION
933
934    WARNING: Targets that may run on 68040+ cpus must arrange for
935    the instruction cache to be flushed.  Previous incarnations of
936    the m68k trampoline code attempted to get around this by either
937    using an out-of-line transfer function or pc-relative data, but
938    the fact remains that the code to jump to the transfer function
939    or the code to load the pc-relative data needs to be flushed
940    just as much as the "variable" portion of the trampoline.  
941    Recognizing that a cache flush is going to be required anyway,
942    dispense with such notions and build a smaller trampoline.  */
943
944 /* Since more instructions are required to move a template into
945    place than to create it on the spot, don't use a template.  */
946
947 /* Length in units of the trampoline for entering a nested function.  */
948
949 #define TRAMPOLINE_SIZE 12
950
951 /* Alignment required for a trampoline in bits.  */
952
953 #define TRAMPOLINE_ALIGNMENT 16
954
955 /* Targets redefine this to invoke code to either flush the cache,
956    or enable stack execution (or both).  */
957
958 #ifndef FINALIZE_TRAMPOLINE
959 #define FINALIZE_TRAMPOLINE(TRAMP)
960 #endif
961
962 /* Emit RTL insns to initialize the variable parts of a trampoline.
963    FNADDR is an RTX for the address of the function's pure code.
964    CXT is an RTX for the static chain value for the function.
965
966    We generate a two-instructions program at address TRAMP :
967         movea.l &CXT,%a0
968         jmp FNADDR                                      */
969
970 #define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT)                       \
971 {                                                                       \
972   emit_move_insn (gen_rtx_MEM (HImode, TRAMP), GEN_INT(0x207C));        \
973   emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 2)), CXT); \
974   emit_move_insn (gen_rtx_MEM (HImode, plus_constant (TRAMP, 6)),       \
975                   GEN_INT(0x4EF9));                                     \
976   emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 8)), FNADDR); \
977   FINALIZE_TRAMPOLINE(TRAMP);                                           \
978 }
979
980 /* This is the library routine that is used
981    to transfer control from the trampoline
982    to the actual nested function.
983    It is defined for backward compatibility,
984    for linking with object code that used the old
985    trampoline definition.  */
986
987 /* A colon is used with no explicit operands
988    to cause the template string to be scanned for %-constructs.  */
989 /* The function name __transfer_from_trampoline is not actually used.
990    The function definition just permits use of "asm with operands"
991    (though the operand list is empty).  */
992 #define TRANSFER_FROM_TRAMPOLINE                                \
993 void                                                            \
994 __transfer_from_trampoline ()                                   \
995 {                                                               \
996   register char *a0 asm ("%a0");                                \
997   asm (GLOBAL_ASM_OP "___trampoline");                          \
998   asm ("___trampoline:");                                       \
999   asm volatile ("move%.l %0,%@" : : "m" (a0[22]));              \
1000   asm volatile ("move%.l %1,%0" : "=a" (a0) : "m" (a0[18]));    \
1001   asm ("rts":);                                                 \
1002 }
1003 \f
1004 /* Definitions for register eliminations.
1005
1006    This is an array of structures.  Each structure initializes one pair
1007    of eliminable registers.  The "from" register number is given first,
1008    followed by "to".  Eliminations of the same "from" register are listed
1009    in order of preference.
1010
1011    There are two registers that can always be eliminated on the m68k.
1012    The frame pointer and the arg pointer can be replaced by either the
1013    hard frame pointer or to the stack pointer, depending upon the
1014    circumstances.  The hard frame pointer is not used before reload and
1015    so it is not eligible for elimination.  */
1016
1017 #define ELIMINABLE_REGS                                 \
1018 {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM },          \
1019  { ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM },  \
1020  { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM }}
1021
1022 /* Given FROM and TO register numbers, say whether this elimination is
1023    allowed.  Frame pointer elimination is automatically handled.
1024
1025    All other eliminations are valid.  */
1026
1027 #define CAN_ELIMINATE(FROM, TO) \
1028   ((TO) == STACK_POINTER_REGNUM ? ! frame_pointer_needed : 1)
1029
1030 /* Define the offset between two registers, one to be eliminated, and the other
1031    its replacement, at the start of a routine.  */
1032
1033 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET)                    \
1034   (OFFSET) = m68k_initial_elimination_offset(FROM, TO)
1035 \f
1036 /* Addressing modes, and classification of registers for them.  */
1037
1038 #define HAVE_POST_INCREMENT 1
1039
1040 #define HAVE_PRE_DECREMENT 1
1041
1042 /* Macros to check register numbers against specific register classes.  */
1043
1044 /* These assume that REGNO is a hard or pseudo reg number.
1045    They give nonzero only if REGNO is a hard reg of the suitable class
1046    or a pseudo reg currently allocated to a suitable hard reg.
1047    Since they use reg_renumber, they are safe only once reg_renumber
1048    has been allocated, which happens in local-alloc.c.  */
1049
1050 #define REGNO_OK_FOR_INDEX_P(REGNO) \
1051 ((REGNO) < 16 || (unsigned) reg_renumber[REGNO] < 16)
1052 #define REGNO_OK_FOR_BASE_P(REGNO) \
1053 (((REGNO) ^ 010) < 8 || (unsigned) (reg_renumber[REGNO] ^ 010) < 8)
1054 #define REGNO_OK_FOR_DATA_P(REGNO) \
1055 ((REGNO) < 8 || (unsigned) reg_renumber[REGNO] < 8)
1056 #define REGNO_OK_FOR_FP_P(REGNO) \
1057 (((REGNO) ^ 020) < 8 || (unsigned) (reg_renumber[REGNO] ^ 020) < 8)
1058
1059 /* Now macros that check whether X is a register and also,
1060    strictly, whether it is in a specified class.
1061
1062    These macros are specific to the 68000, and may be used only
1063    in code for printing assembler insns and in conditions for
1064    define_optimization.  */
1065
1066 /* 1 if X is a data register.  */
1067
1068 #define DATA_REG_P(X) (REG_P (X) && REGNO_OK_FOR_DATA_P (REGNO (X)))
1069
1070 /* 1 if X is an fp register.  */
1071
1072 #define FP_REG_P(X) (REG_P (X) && REGNO_OK_FOR_FP_P (REGNO (X)))
1073
1074 /* 1 if X is an address register  */
1075
1076 #define ADDRESS_REG_P(X) (REG_P (X) && REGNO_OK_FOR_BASE_P (REGNO (X)))
1077 \f
1078 /* Maximum number of registers that can appear in a valid memory address.  */
1079
1080 #define MAX_REGS_PER_ADDRESS 2
1081
1082 /* Recognize any constant value that is a valid address.  */
1083
1084 #define CONSTANT_ADDRESS_P(X)   \
1085   (GET_CODE (X) == LABEL_REF || GET_CODE (X) == SYMBOL_REF              \
1086    || GET_CODE (X) == CONST_INT || GET_CODE (X) == CONST                \
1087    || GET_CODE (X) == HIGH)
1088
1089 /* Nonzero if the constant value X is a legitimate general operand.
1090    It is given that X satisfies CONSTANT_P or is a CONST_DOUBLE.  */
1091
1092 #define LEGITIMATE_CONSTANT_P(X) (GET_MODE (X) != XFmode)
1093
1094 /* Nonzero if the constant value X is a legitimate general operand
1095    when generating PIC code.  It is given that flag_pic is on and 
1096    that X satisfies CONSTANT_P or is a CONST_DOUBLE.
1097
1098    PCREL_GENERAL_OPERAND_OK makes reload accept addresses that are
1099    accepted by insn predicates, but which would otherwise fail the
1100    `general_operand' test.  */
1101
1102 #ifndef REG_OK_STRICT
1103 #define PCREL_GENERAL_OPERAND_OK 0
1104 #else
1105 #define PCREL_GENERAL_OPERAND_OK (TARGET_PCREL)
1106 #endif
1107
1108 #define LEGITIMATE_PIC_OPERAND_P(X)     \
1109   (! symbolic_operand (X, VOIDmode)                             \
1110    || (GET_CODE (X) == SYMBOL_REF && SYMBOL_REF_FLAG (X))       \
1111    || PCREL_GENERAL_OPERAND_OK)
1112
1113 /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
1114    and check its validity for a certain class.
1115    We have two alternate definitions for each of them.
1116    The usual definition accepts all pseudo regs; the other rejects
1117    them unless they have been allocated suitable hard regs.
1118    The symbol REG_OK_STRICT causes the latter definition to be used.
1119
1120    Most source files want to accept pseudo regs in the hope that
1121    they will get allocated to the class that the insn wants them to be in.
1122    Source files for reload pass need to be strict.
1123    After reload, it makes no difference, since pseudo regs have
1124    been eliminated by then.  */
1125
1126 #ifndef REG_OK_STRICT
1127
1128 /* Nonzero if X is a hard reg that can be used as an index
1129    or if it is a pseudo reg.  */
1130 #define REG_OK_FOR_INDEX_P(X) ((REGNO (X) ^ 020) >= 8)
1131 /* Nonzero if X is a hard reg that can be used as a base reg
1132    or if it is a pseudo reg.  */
1133 #define REG_OK_FOR_BASE_P(X) ((REGNO (X) & ~027) != 0)
1134
1135 #else
1136
1137 /* Nonzero if X is a hard reg that can be used as an index.  */
1138 #define REG_OK_FOR_INDEX_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
1139 /* Nonzero if X is a hard reg that can be used as a base reg.  */
1140 #define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
1141
1142 #endif
1143 \f
1144 /* GO_IF_LEGITIMATE_ADDRESS recognizes an RTL expression
1145    that is a valid memory address for an instruction.
1146    The MODE argument is the machine mode for the MEM expression
1147    that wants to use this address.
1148
1149    When generating PIC, an address involving a SYMBOL_REF is legitimate
1150    if and only if it is the sum of pic_offset_table_rtx and the SYMBOL_REF.
1151    We use LEGITIMATE_PIC_OPERAND_P to throw out the illegitimate addresses,
1152    and we explicitly check for the sum of pic_offset_table_rtx and a SYMBOL_REF.
1153
1154    Likewise for a LABEL_REF when generating PIC.
1155
1156    The other macros defined here are used only in GO_IF_LEGITIMATE_ADDRESS.  */
1157
1158 /* Allow SUBREG everywhere we allow REG.  This results in better code.  It
1159    also makes function inlining work when inline functions are called with
1160    arguments that are SUBREGs.  */
1161
1162 #define LEGITIMATE_BASE_REG_P(X)   \
1163   ((GET_CODE (X) == REG && REG_OK_FOR_BASE_P (X))       \
1164    || (GET_CODE (X) == SUBREG                           \
1165        && GET_CODE (SUBREG_REG (X)) == REG              \
1166        && REG_OK_FOR_BASE_P (SUBREG_REG (X))))
1167
1168 #define INDIRECTABLE_1_ADDRESS_P(X)  \
1169   ((CONSTANT_ADDRESS_P (X) && (!flag_pic || LEGITIMATE_PIC_OPERAND_P (X))) \
1170    || LEGITIMATE_BASE_REG_P (X)                                         \
1171    || ((GET_CODE (X) == PRE_DEC || GET_CODE (X) == POST_INC)            \
1172        && LEGITIMATE_BASE_REG_P (XEXP (X, 0)))                          \
1173    || (GET_CODE (X) == PLUS                                             \
1174        && LEGITIMATE_BASE_REG_P (XEXP (X, 0))                           \
1175        && GET_CODE (XEXP (X, 1)) == CONST_INT                           \
1176        && (TARGET_68020                                                 \
1177            || ((unsigned) INTVAL (XEXP (X, 1)) + 0x8000) < 0x10000))    \
1178    || (GET_CODE (X) == PLUS && XEXP (X, 0) == pic_offset_table_rtx      \
1179        && flag_pic && GET_CODE (XEXP (X, 1)) == SYMBOL_REF)             \
1180    || (GET_CODE (X) == PLUS && XEXP (X, 0) == pic_offset_table_rtx      \
1181        && flag_pic && GET_CODE (XEXP (X, 1)) == LABEL_REF))
1182
1183 #define GO_IF_NONINDEXED_ADDRESS(X, ADDR)  \
1184 { if (INDIRECTABLE_1_ADDRESS_P (X)) goto ADDR; }
1185
1186 /* Only labels on dispatch tables are valid for indexing from.  */
1187 #define GO_IF_INDEXABLE_BASE(X, ADDR)                           \
1188 { rtx temp;                                                     \
1189   if (GET_CODE (X) == LABEL_REF                                 \
1190       && (temp = next_nonnote_insn (XEXP (X, 0))) != 0          \
1191       && GET_CODE (temp) == JUMP_INSN                           \
1192       && (GET_CODE (PATTERN (temp)) == ADDR_VEC                 \
1193           || GET_CODE (PATTERN (temp)) == ADDR_DIFF_VEC))       \
1194     goto ADDR;                                                  \
1195   if (LEGITIMATE_BASE_REG_P (X)) goto ADDR; }
1196
1197 #define GO_IF_INDEXING(X, ADDR) \
1198 { if (GET_CODE (X) == PLUS && LEGITIMATE_INDEX_P (XEXP (X, 0)))         \
1199     { GO_IF_INDEXABLE_BASE (XEXP (X, 1), ADDR); }                       \
1200   if (GET_CODE (X) == PLUS && LEGITIMATE_INDEX_P (XEXP (X, 1)))         \
1201     { GO_IF_INDEXABLE_BASE (XEXP (X, 0), ADDR); } }
1202
1203 #define GO_IF_INDEXED_ADDRESS(X, ADDR)   \
1204 { GO_IF_INDEXING (X, ADDR);                                             \
1205   if (GET_CODE (X) == PLUS)                                             \
1206     { if (GET_CODE (XEXP (X, 1)) == CONST_INT                           \
1207           && (TARGET_68020 || (unsigned) INTVAL (XEXP (X, 1)) + 0x80 < 0x100))          \
1208         { rtx go_temp = XEXP (X, 0); GO_IF_INDEXING (go_temp, ADDR); }  \
1209       if (GET_CODE (XEXP (X, 0)) == CONST_INT                           \
1210           && (TARGET_68020 || (unsigned) INTVAL (XEXP (X, 0)) + 0x80 < 0x100))          \
1211         { rtx go_temp = XEXP (X, 1); GO_IF_INDEXING (go_temp, ADDR); } } }
1212
1213 /* coldfire/5200 does not allow HImode index registers.  */
1214 #define LEGITIMATE_INDEX_REG_P(X)   \
1215   ((GET_CODE (X) == REG && REG_OK_FOR_INDEX_P (X))      \
1216    || (! TARGET_COLDFIRE                                        \
1217        && GET_CODE (X) == SIGN_EXTEND                   \
1218        && GET_CODE (XEXP (X, 0)) == REG                 \
1219        && GET_MODE (XEXP (X, 0)) == HImode              \
1220        && REG_OK_FOR_INDEX_P (XEXP (X, 0)))             \
1221    || (GET_CODE (X) == SUBREG                           \
1222        && GET_CODE (SUBREG_REG (X)) == REG              \
1223        && REG_OK_FOR_INDEX_P (SUBREG_REG (X))))
1224
1225 #define LEGITIMATE_INDEX_P(X)   \
1226    (LEGITIMATE_INDEX_REG_P (X)                          \
1227     || ((TARGET_68020 || TARGET_COLDFIRE) && GET_CODE (X) == MULT \
1228         && LEGITIMATE_INDEX_REG_P (XEXP (X, 0))         \
1229         && GET_CODE (XEXP (X, 1)) == CONST_INT          \
1230         && (INTVAL (XEXP (X, 1)) == 2                   \
1231             || INTVAL (XEXP (X, 1)) == 4                \
1232             || (INTVAL (XEXP (X, 1)) == 8 && !TARGET_COLDFIRE))))
1233
1234 /* If pic, we accept INDEX+LABEL, which is what do_tablejump makes.  */
1235 #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, ADDR)                         \
1236 { GO_IF_NONINDEXED_ADDRESS (X, ADDR);                                   \
1237   GO_IF_INDEXED_ADDRESS (X, ADDR);                                      \
1238   if (flag_pic && MODE == CASE_VECTOR_MODE && GET_CODE (X) == PLUS      \
1239       && LEGITIMATE_INDEX_P (XEXP (X, 0))                               \
1240       && GET_CODE (XEXP (X, 1)) == LABEL_REF)                           \
1241     goto ADDR; }
1242
1243 /* Don't call memory_address_noforce for the address to fetch
1244    the switch offset.  This address is ok as it stands (see above),
1245    but memory_address_noforce would alter it.  */
1246 #define PIC_CASE_VECTOR_ADDRESS(index) index
1247 \f
1248 /* Try machine-dependent ways of modifying an illegitimate address
1249    to be legitimate.  If we find one, return the new, valid address.
1250    This macro is used in only one place: `memory_address' in explow.c.
1251
1252    OLDX is the address as it was before break_out_memory_refs was called.
1253    In some cases it is useful to look at this to decide what needs to be done.
1254
1255    MODE and WIN are passed so that this macro can use
1256    GO_IF_LEGITIMATE_ADDRESS.
1257
1258    It is always safe for this macro to do nothing.  It exists to recognize
1259    opportunities to optimize the output.
1260
1261    For the 68000, we handle X+REG by loading X into a register R and
1262    using R+REG.  R will go in an address reg and indexing will be used.
1263    However, if REG is a broken-out memory address or multiplication,
1264    nothing needs to be done because REG can certainly go in an address reg.  */
1265
1266 #define COPY_ONCE(Y) if (!copied) { Y = copy_rtx (Y); copied = ch = 1; }
1267 #define LEGITIMIZE_ADDRESS(X,OLDX,MODE,WIN)   \
1268 { register int ch = (X) != (OLDX);                                      \
1269   if (GET_CODE (X) == PLUS)                                             \
1270     { int copied = 0;                                                   \
1271       if (GET_CODE (XEXP (X, 0)) == MULT)                               \
1272         { COPY_ONCE (X); XEXP (X, 0) = force_operand (XEXP (X, 0), 0);} \
1273       if (GET_CODE (XEXP (X, 1)) == MULT)                               \
1274         { COPY_ONCE (X); XEXP (X, 1) = force_operand (XEXP (X, 1), 0);} \
1275       if (ch && GET_CODE (XEXP (X, 1)) == REG                           \
1276           && GET_CODE (XEXP (X, 0)) == REG)                             \
1277         goto WIN;                                                       \
1278       if (ch) { GO_IF_LEGITIMATE_ADDRESS (MODE, X, WIN); }              \
1279       if (GET_CODE (XEXP (X, 0)) == REG                                 \
1280                || (GET_CODE (XEXP (X, 0)) == SIGN_EXTEND                \
1281                    && GET_CODE (XEXP (XEXP (X, 0), 0)) == REG           \
1282                    && GET_MODE (XEXP (XEXP (X, 0), 0)) == HImode))      \
1283         { register rtx temp = gen_reg_rtx (Pmode);                      \
1284           register rtx val = force_operand (XEXP (X, 1), 0);            \
1285           emit_move_insn (temp, val);                                   \
1286           COPY_ONCE (X);                                                \
1287           XEXP (X, 1) = temp;                                           \
1288           goto WIN; }                                                   \
1289       else if (GET_CODE (XEXP (X, 1)) == REG                            \
1290                || (GET_CODE (XEXP (X, 1)) == SIGN_EXTEND                \
1291                    && GET_CODE (XEXP (XEXP (X, 1), 0)) == REG           \
1292                    && GET_MODE (XEXP (XEXP (X, 1), 0)) == HImode))      \
1293         { register rtx temp = gen_reg_rtx (Pmode);                      \
1294           register rtx val = force_operand (XEXP (X, 0), 0);            \
1295           emit_move_insn (temp, val);                                   \
1296           COPY_ONCE (X);                                                \
1297           XEXP (X, 0) = temp;                                           \
1298           goto WIN; }}}
1299
1300 /* Go to LABEL if ADDR (a legitimate address expression)
1301    has an effect that depends on the machine mode it is used for.
1302    On the 68000, only predecrement and postincrement address depend thus
1303    (the amount of decrement or increment being the length of the operand).  */
1304
1305 #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR,LABEL)        \
1306  if (GET_CODE (ADDR) == POST_INC || GET_CODE (ADDR) == PRE_DEC) goto LABEL
1307 \f
1308 /* Specify the machine mode that this machine uses
1309    for the index in the tablejump instruction.  */
1310 #define CASE_VECTOR_MODE HImode
1311
1312 /* Define as C expression which evaluates to nonzero if the tablejump
1313    instruction expects the table to contain offsets from the address of the
1314    table.
1315    Do not define this if the table should contain absolute addresses.  */
1316 #define CASE_VECTOR_PC_RELATIVE 1
1317
1318 /* Define this as 1 if `char' should by default be signed; else as 0.  */
1319 #define DEFAULT_SIGNED_CHAR 1
1320
1321 /* Don't cse the address of the function being compiled.  */
1322 #define NO_RECURSIVE_FUNCTION_CSE
1323
1324 /* Max number of bytes we can move from memory to memory
1325    in one reasonably fast instruction.  */
1326 #define MOVE_MAX 4
1327
1328 /* Nonzero if access to memory by bytes is slow and undesirable.  */
1329 #define SLOW_BYTE_ACCESS 0
1330
1331 /* Value is 1 if truncating an integer of INPREC bits to OUTPREC bits
1332    is done just by pretending it is already truncated.  */
1333 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
1334
1335 /* We assume that the store-condition-codes instructions store 0 for false
1336    and some other value for true.  This is the value stored for true.  */
1337
1338 #define STORE_FLAG_VALUE (-1)
1339
1340 /* When a prototype says `char' or `short', really pass an `int'.  */
1341 #define PROMOTE_PROTOTYPES 1
1342
1343 /* Specify the machine mode that pointers have.
1344    After generation of rtl, the compiler makes no further distinction
1345    between pointers and any other objects of this machine mode.  */
1346 #define Pmode SImode
1347
1348 /* A function address in a call instruction
1349    is a byte address (for indexing purposes)
1350    so give the MEM rtx a byte's mode.  */
1351 #define FUNCTION_MODE QImode
1352
1353 \f
1354 /* Tell final.c how to eliminate redundant test instructions.  */
1355
1356 /* Here we define machine-dependent flags and fields in cc_status
1357    (see `conditions.h').  */
1358
1359 /* Set if the cc value is actually in the 68881, so a floating point
1360    conditional branch must be output.  */
1361 #define CC_IN_68881 04000
1362
1363 /* Store in cc_status the expressions that the condition codes will
1364    describe after execution of an instruction whose pattern is EXP.
1365    Do not alter them if the instruction would not alter the cc's.  */
1366
1367 /* On the 68000, all the insns to store in an address register fail to
1368    set the cc's.  However, in some cases these instructions can make it
1369    possibly invalid to use the saved cc's.  In those cases we clear out
1370    some or all of the saved cc's so they won't be used.  */
1371
1372 #define NOTICE_UPDATE_CC(EXP,INSN) notice_update_cc (EXP, INSN)
1373
1374 #define OUTPUT_JUMP(NORMAL, FLOAT, NO_OV)  \
1375 { if (cc_prev_status.flags & CC_IN_68881)                       \
1376     return FLOAT;                                               \
1377   if (cc_prev_status.flags & CC_NO_OVERFLOW)                    \
1378     return NO_OV;                                               \
1379   return NORMAL; }
1380 \f
1381 /* Control the assembler format that we output.  */
1382
1383 /* Output to assembler file text saying following lines
1384    may contain character constants, extra white space, comments, etc.  */
1385
1386 #define ASM_APP_ON "#APP\n"
1387
1388 /* Output to assembler file text saying following lines
1389    no longer contain unusual constructs.  */
1390
1391 #define ASM_APP_OFF "#NO_APP\n"
1392
1393 /* Output before read-only data.  */
1394
1395 #define TEXT_SECTION_ASM_OP "\t.text"
1396
1397 /* Output before writable data.  */
1398
1399 #define DATA_SECTION_ASM_OP "\t.data"
1400
1401 #define GLOBAL_ASM_OP "\t.globl\t"
1402
1403 /* Here are four prefixes that are used by asm_fprintf to
1404    facilitate customization for alternate assembler syntaxes.
1405    Machines with no likelihood of an alternate syntax need not
1406    define these and need not use asm_fprintf.  */
1407
1408 /* The prefix for register names.  Note that REGISTER_NAMES
1409    is supposed to include this prefix.  */
1410
1411 #define REGISTER_PREFIX ""
1412
1413 /* The prefix for local labels.  You should be able to define this as
1414    an empty string, or any arbitrary string (such as ".", ".L%", etc)
1415    without having to make any other changes to account for the specific
1416    definition.  Note it is a string literal, not interpreted by printf
1417    and friends.  */
1418
1419 #define LOCAL_LABEL_PREFIX ""
1420
1421 /* The prefix to add to user-visible assembler symbols.  */
1422
1423 #define USER_LABEL_PREFIX "_"
1424
1425 /* The prefix for immediate operands.  */
1426
1427 #define IMMEDIATE_PREFIX "#"
1428
1429 /* How to refer to registers in assembler output.
1430    This sequence is indexed by compiler's hard-register-number (see above).  */
1431
1432 #define REGISTER_NAMES \
1433 {"d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7",        \
1434  "a0", "a1", "a2", "a3", "a4", "a5", "a6", "sp",        \
1435  "fp0", "fp1", "fp2", "fp3", "fp4", "fp5", "fp6", "fp7", "argptr" }
1436
1437 /* How to renumber registers for dbx and gdb.
1438    On the Sun-3, the floating point registers have numbers
1439    18 to 25, not 16 to 23 as they do in the compiler.  */
1440
1441 #define DBX_REGISTER_NUMBER(REGNO) ((REGNO) < 16 ? (REGNO) : (REGNO) + 2)
1442
1443 /* Before the prologue, RA is at 0(%sp).  */
1444 #define INCOMING_RETURN_ADDR_RTX \
1445   gen_rtx_MEM (VOIDmode, gen_rtx_REG (VOIDmode, STACK_POINTER_REGNUM))
1446
1447 /* We must not use the DBX register numbers for the DWARF 2 CFA column
1448    numbers because that maps to numbers beyond FIRST_PSEUDO_REGISTER.
1449    Instead use the identity mapping.  */
1450 #define DWARF_FRAME_REGNUM(REG) REG
1451
1452 /* Before the prologue, the top of the frame is at 4(%sp).  */
1453 #define INCOMING_FRAME_SP_OFFSET 4
1454
1455 /* Describe how we implement __builtin_eh_return.  */
1456 #define EH_RETURN_DATA_REGNO(N) \
1457   ((N) < 2 ? (N) : INVALID_REGNUM)
1458 #define EH_RETURN_STACKADJ_RTX  gen_rtx_REG (Pmode, 8)
1459 #define EH_RETURN_HANDLER_RTX                                       \
1460   gen_rtx_MEM (Pmode,                                               \
1461                gen_rtx_PLUS (Pmode, arg_pointer_rtx,                \
1462                              plus_constant (EH_RETURN_STACKADJ_RTX, \
1463                                             UNITS_PER_WORD)))
1464
1465 /* Select a format to encode pointers in exception handling data.  CODE
1466    is 0 for data, 1 for code labels, 2 for function pointers.  GLOBAL is
1467    true if the symbol may be affected by dynamic relocations.  */
1468 #define ASM_PREFERRED_EH_DATA_FORMAT(CODE, GLOBAL)                         \
1469   (flag_pic                                                                \
1470    ? ((GLOBAL) ? DW_EH_PE_indirect : 0) | DW_EH_PE_pcrel | DW_EH_PE_sdata4 \
1471    : DW_EH_PE_absptr)
1472
1473 /* This is how to output a reference to a user-level label named NAME.
1474    `assemble_name' uses this.  */
1475
1476 #define ASM_OUTPUT_LABELREF(FILE,NAME)  \
1477   asm_fprintf (FILE, "%U%s", NAME)
1478
1479 /* This is how to store into the string LABEL
1480    the symbol_ref name of an internal numbered label where
1481    PREFIX is the class of label and NUM is the number within the class.
1482    This is suitable for output with `assemble_name'.  */
1483
1484 #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM)   \
1485   sprintf (LABEL, "*%s%s%ld", LOCAL_LABEL_PREFIX, PREFIX, (long)(NUM))
1486
1487 /* This is how to output an insn to push a register on the stack.
1488    It need not be very fast code.  */
1489
1490 #define ASM_OUTPUT_REG_PUSH(FILE,REGNO)  \
1491   asm_fprintf (FILE, "\tmovel %s,%Rsp@-\n", reg_names[REGNO])
1492
1493 /* This is how to output an insn to pop a register from the stack.
1494    It need not be very fast code.  */
1495
1496 #define ASM_OUTPUT_REG_POP(FILE,REGNO)  \
1497   asm_fprintf (FILE, "\tmovel %Rsp@+,%s\n", reg_names[REGNO])
1498
1499 /* This is how to output an element of a case-vector that is absolute.
1500    (The 68000 does not use such vectors,
1501    but we must define this macro anyway.)  */
1502
1503 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE)  \
1504   asm_fprintf (FILE, "\t.long %LL%d\n", VALUE)
1505
1506 /* This is how to output an element of a case-vector that is relative.  */
1507
1508 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL)  \
1509   asm_fprintf (FILE, "\t.word %LL%d-%LL%d\n", VALUE, REL)
1510
1511 /* This is how to output an assembler line
1512    that says to advance the location counter
1513    to a multiple of 2**LOG bytes.  */
1514
1515 /* We don't have a way to align to more than a two-byte boundary, so do the
1516    best we can and don't complain.  */
1517 #define ASM_OUTPUT_ALIGN(FILE,LOG)      \
1518   if ((LOG) >= 1)                       \
1519     fprintf (FILE, "\t.even\n");
1520
1521 #define ASM_OUTPUT_SKIP(FILE,SIZE)  \
1522   fprintf (FILE, "\t.skip %u\n", (int)(SIZE))
1523
1524 /* This says how to output an assembler line
1525    to define a global common symbol.  */
1526
1527 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED)  \
1528 ( fputs (".comm ", (FILE)),                     \
1529   assemble_name ((FILE), (NAME)),               \
1530   fprintf ((FILE), ",%u\n", (int)(ROUNDED)))
1531
1532 /* This says how to output an assembler line
1533    to define a local common symbol.  */
1534
1535 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED)  \
1536 ( fputs (".lcomm ", (FILE)),                    \
1537   assemble_name ((FILE), (NAME)),               \
1538   fprintf ((FILE), ",%u\n", (int)(ROUNDED)))
1539
1540 /* Output a float value (represented as a C double) as an immediate operand.
1541    This macro is a 68k-specific macro.  */
1542
1543 #define ASM_OUTPUT_FLOAT_OPERAND(CODE,FILE,VALUE)               \
1544  do {                                                           \
1545       if (CODE == 'f')                                          \
1546         {                                                       \
1547           char dstr[30];                                        \
1548           real_to_decimal (dstr, &(VALUE), sizeof (dstr), 9, 0); \
1549           asm_fprintf ((FILE), "%I0r%s", dstr);                 \
1550         }                                                       \
1551       else                                                      \
1552         {                                                       \
1553           long l;                                               \
1554           REAL_VALUE_TO_TARGET_SINGLE (VALUE, l);               \
1555           asm_fprintf ((FILE), "%I0x%lx", l);                   \
1556         }                                                       \
1557      } while (0)
1558
1559 /* Output a double value (represented as a C double) as an immediate operand.
1560    This macro is a 68k-specific macro.  */
1561 #define ASM_OUTPUT_DOUBLE_OPERAND(FILE,VALUE)                           \
1562  do { char dstr[30];                                                    \
1563       real_to_decimal (dstr, &(VALUE), sizeof (dstr), 0, 1);            \
1564       asm_fprintf (FILE, "%I0r%s", dstr);                               \
1565     } while (0)
1566
1567 /* Note, long double immediate operands are not actually
1568    generated by m68k.md.  */
1569 #define ASM_OUTPUT_LONG_DOUBLE_OPERAND(FILE,VALUE)                      \
1570  do { char dstr[30];                                                    \
1571       real_to_decimal (dstr, &(VALUE), sizeof (dstr), 0, 1);            \
1572       asm_fprintf (FILE, "%I0r%s", dstr);                               \
1573     } while (0)
1574
1575 /* Print operand X (an rtx) in assembler syntax to file FILE.
1576    CODE is a letter or dot (`z' in `%z0') or 0 if no letter was specified.
1577    For `%' followed by punctuation, CODE is the punctuation and X is null.
1578
1579    On the 68000, we use several CODE characters:
1580    '.' for dot needed in Motorola-style opcode names.
1581    '-' for an operand pushing on the stack:
1582        sp@-, -(sp) or -(%sp) depending on the style of syntax.
1583    '+' for an operand pushing on the stack:
1584        sp@+, (sp)+ or (%sp)+ depending on the style of syntax.
1585    '@' for a reference to the top word on the stack:
1586        sp@, (sp) or (%sp) depending on the style of syntax.
1587    '#' for an immediate operand prefix (# in MIT and Motorola syntax
1588        but & in SGS syntax).
1589    '!' for the fpcr register (used in some float-to-fixed conversions).
1590    '$' for the letter `s' in an op code, but only on the 68040.
1591    '&' for the letter `d' in an op code, but only on the 68040.
1592    '/' for register prefix needed by longlong.h.
1593
1594    'b' for byte insn (no effect, on the Sun; this is for the ISI).
1595    'd' to force memory addressing to be absolute, not relative.
1596    'f' for float insn (print a CONST_DOUBLE as a float rather than in hex)
1597    'o' for operands to go directly to output_operand_address (bypassing
1598        print_operand_address--used only for SYMBOL_REFs under TARGET_PCREL)
1599    'x' for float insn (print a CONST_DOUBLE as a float rather than in hex),
1600        or print pair of registers as rx:ry.  */
1601
1602 #define PRINT_OPERAND_PUNCT_VALID_P(CODE)                               \
1603   ((CODE) == '.' || (CODE) == '#' || (CODE) == '-'                      \
1604    || (CODE) == '+' || (CODE) == '@' || (CODE) == '!'                   \
1605    || (CODE) == '$' || (CODE) == '&' || (CODE) == '/')
1606
1607 /* A C compound statement to output to stdio stream STREAM the
1608    assembler syntax for an instruction operand X.  X is an RTL
1609    expression.
1610
1611    CODE is a value that can be used to specify one of several ways
1612    of printing the operand.  It is used when identical operands
1613    must be printed differently depending on the context.  CODE
1614    comes from the `%' specification that was used to request
1615    printing of the operand.  If the specification was just `%DIGIT'
1616    then CODE is 0; if the specification was `%LTR DIGIT' then CODE
1617    is the ASCII code for LTR.
1618
1619    If X is a register, this macro should print the register's name.
1620    The names can be found in an array `reg_names' whose type is
1621    `char *[]'.  `reg_names' is initialized from `REGISTER_NAMES'.
1622
1623    When the machine description has a specification `%PUNCT' (a `%'
1624    followed by a punctuation character), this macro is called with
1625    a null pointer for X and the punctuation character for CODE.
1626
1627    See m68k.c for the m68k specific codes.  */
1628
1629 #define PRINT_OPERAND(FILE, X, CODE) print_operand (FILE, X, CODE)
1630
1631 /* A C compound statement to output to stdio stream STREAM the
1632    assembler syntax for an instruction operand that is a memory
1633    reference whose address is ADDR.  ADDR is an RTL expression.  */
1634
1635 #define PRINT_OPERAND_ADDRESS(FILE, ADDR) print_operand_address (FILE, ADDR)
1636
1637 /* Variables in m68k.c */
1638 extern const char *m68k_align_loops_string;
1639 extern const char *m68k_align_jumps_string;
1640 extern const char *m68k_align_funcs_string;
1641 extern int m68k_align_loops;
1642 extern int m68k_align_jumps;
1643 extern int m68k_align_funcs;
1644 extern int m68k_last_compare_had_fp_operands;
1645
1646 \f
1647 /* Define the codes that are matched by predicates in m68k.c.  */
1648
1649 #define PREDICATE_CODES                                                 \
1650   {"general_src_operand", {CONST_INT, CONST_DOUBLE, CONST, SYMBOL_REF,  \
1651                            LABEL_REF, SUBREG, REG, MEM}},               \
1652   {"nonimmediate_src_operand", {SUBREG, REG, MEM}},                     \
1653   {"memory_src_operand", {SUBREG, MEM}},                                \
1654   {"not_sp_operand", {SUBREG, REG, MEM}},                               \
1655   {"pcrel_address", {SYMBOL_REF, LABEL_REF, CONST}},                    \
1656   {"const_uint32_operand", {CONST_INT, CONST_DOUBLE}},                  \
1657   {"const_sint32_operand", {CONST_INT}},                                \
1658   {"valid_dbcc_comparison_p", {EQ, NE, GTU, LTU, GEU, LEU,              \
1659                                GT, LT, GE, LE}},                        \
1660   {"extend_operator", {SIGN_EXTEND, ZERO_EXTEND}},
1661 \f
1662 /*
1663 Local variables:
1664 version-control: t
1665 End:
1666 */