OSDN Git Service

3d46ee9c37c84acd55e8d0948fd9a64fe11b0aee
[pf3gnuchains/gcc-fork.git] / gcc / config / m68k / m68k.h
1 /* Definitions of target machine for GCC for Motorola 680x0/ColdFire.
2    Copyright (C) 1987, 1988, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3    2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC 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 GCC 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 GCC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA.  */
21
22 /* We need to have MOTOROLA always defined (either 0 or 1) because we use
23    if-statements and ?: on it.  This way we have compile-time error checking
24    for both the MOTOROLA and MIT code paths.  We do rely on the host compiler
25    to optimize away all constant tests.  */
26 #if MOTOROLA  /* Use the Motorola assembly syntax.  */
27 # define TARGET_VERSION fprintf (stderr, " (68k, Motorola syntax)")
28 #else
29 # define MOTOROLA 0  /* Use the MIT assembly syntax.  */
30 # define TARGET_VERSION fprintf (stderr, " (68k, MIT syntax)")
31 #endif
32
33 /* Handle --with-cpu default option from configure script.  */
34 #define OPTION_DEFAULT_SPECS                                            \
35   { "cpu",   "%{!mc68000:%{!m68000:%{!m68302:%{!m68010:%{!mc68020:%{!m68020:\
36 %{!m68030:%{!m68040:%{!m68020-40:%{!m68020-60:%{!m68060:%{!mcpu32:\
37 %{!m68332:%{!m5200:%{!m5206e:%{!m528x:%{!m5307:%{!m5407:%{!mcfv4e:\
38 %{!mcpu=*:%{!march=*:-%(VALUE)}}}}}}}}}}}}}}}}}}}}}" },
39
40 /* Pass flags to gas indicating which type of processor we have.  This
41    can be simplified when we can rely on the assembler supporting .cpu
42    and .arch directives.  */
43
44 #define ASM_CPU_SPEC "\
45 %{m68851}%{mno-68851} %{m68881}%{mno-68881} %{msoft-float:-mno-float} \
46 %{m68000}%{m68302}%{mc68000}%{m68010}%{m68020}%{mc68020}%{m68030}\
47 %{m68040}%{m68020-40:-m68040}%{m68020-60:-m68040}\
48 %{m68060}%{mcpu32}%{m68332}%{m5200}%{m5206e}%{m528x}%{m5307}%{m5407}%{mcfv4e}\
49 %{mcpu=*:-mcpu=%*}%{march=*:-march=%*}\
50 "
51
52 #define ASM_SPEC "%(asm_cpu_spec)"
53
54 #define EXTRA_SPECS                                     \
55   { "asm_cpu_spec", ASM_CPU_SPEC },                     \
56   SUBTARGET_EXTRA_SPECS
57
58 #define SUBTARGET_EXTRA_SPECS
59
60 /* Note that some other tm.h files include this one and then override
61    many of the definitions that relate to assembler syntax.  */
62
63 #define TARGET_CPU_CPP_BUILTINS()                                       \
64   do                                                                    \
65     {                                                                   \
66       builtin_define ("__m68k__");                                      \
67       builtin_define_std ("mc68000");                                   \
68       /* The other mc680x0 macros have traditionally been derived       \
69          from the tuning setting.  For example, -m68020-60 defines      \
70          m68060, even though it generates pure 68020 code.  */          \
71       switch (m68k_tune)                                                \
72         {                                                               \
73         case u68010:                                                    \
74           builtin_define_std ("mc68010");                               \
75           break;                                                        \
76                                                                         \
77         case u68020:                                                    \
78           builtin_define_std ("mc68020");                               \
79           break;                                                        \
80                                                                         \
81         case u68030:                                                    \
82           builtin_define_std ("mc68030");                               \
83           break;                                                        \
84                                                                         \
85         case u68040:                                                    \
86           builtin_define_std ("mc68040");                               \
87           break;                                                        \
88                                                                         \
89         case u68060:                                                    \
90           builtin_define_std ("mc68060");                               \
91           break;                                                        \
92                                                                         \
93         case u68020_60:                                                 \
94           builtin_define_std ("mc68060");                               \
95           /* Fall through.  */                                          \
96         case u68020_40:                                                 \
97           builtin_define_std ("mc68040");                               \
98           builtin_define_std ("mc68030");                               \
99           builtin_define_std ("mc68020");                               \
100           break;                                                        \
101                                                                         \
102         case ucpu32:                                                    \
103           builtin_define_std ("mc68332");                               \
104           builtin_define_std ("mcpu32");                                \
105           builtin_define_std ("mc68020");                               \
106           break;                                                        \
107                                                                         \
108         case ucfv2:                                                     \
109           builtin_define ("__mcfv2__");                                 \
110           break;                                                        \
111                                                                         \
112         case ucfv3:                                                     \
113           builtin_define ("__mcfv3__");                                 \
114           break;                                                        \
115                                                                         \
116         case ucfv4:                                                     \
117           builtin_define ("__mcfv4__");                                 \
118           break;                                                        \
119                                                                         \
120         case ucfv4e:                                                    \
121           builtin_define ("__mcfv4e__");                                \
122           break;                                                        \
123                                                                         \
124         case ucfv5:                                                     \
125           builtin_define ("__mcfv5__");                                 \
126           break;                                                        \
127                                                                         \
128         default:                                                        \
129           break;                                                        \
130         }                                                               \
131                                                                         \
132       if (TARGET_68881)                                                 \
133         builtin_define ("__HAVE_68881__");                              \
134                                                                         \
135       if (TARGET_COLDFIRE)                                              \
136         {                                                               \
137           const char *tmp;                                              \
138                                                                         \
139           tmp = m68k_cpp_cpu_ident ("cf");                              \
140           if (tmp)                                                      \
141             builtin_define (tmp);                                       \
142           tmp = m68k_cpp_cpu_family ("cf");                             \
143           if (tmp)                                                      \
144             builtin_define (tmp);                                       \
145           builtin_define ("__mcoldfire__");                             \
146                                                                         \
147           if (TARGET_ISAC)                                              \
148             builtin_define ("__mcfisac__");                             \
149           else if (TARGET_ISAB)                                         \
150             {                                                           \
151               builtin_define ("__mcfisab__");                           \
152               /* ISA_B: Legacy 5407 defines.  */                        \
153               builtin_define ("__mcf5400__");                           \
154               builtin_define ("__mcf5407__");                           \
155             }                                                           \
156           else if (TARGET_ISAAPLUS)                                     \
157             {                                                           \
158               builtin_define ("__mcfisaaplus__");                       \
159               /* ISA_A+: legacy defines.  */                            \
160               builtin_define ("__mcf528x__");                           \
161               builtin_define ("__mcf5200__");                           \
162             }                                                           \
163           else                                                          \
164             {                                                           \
165               builtin_define ("__mcfisaa__");                           \
166               /* ISA_A: legacy defines.  */                             \
167               switch (m68k_tune)                                        \
168                 {                                                       \
169                 case ucfv2:                                             \
170                   builtin_define ("__mcf5200__");                       \
171                   break;                                                \
172                                                                         \
173                 case ucfv3:                                             \
174                   builtin_define ("__mcf5307__");                       \
175                   builtin_define ("__mcf5300__");                       \
176                   break;                                                \
177                                                                         \
178                 default:                                                \
179                   break;                                                \
180                 }                                                       \
181             }                                                           \
182         }                                                               \
183                                                                         \
184       if (TARGET_COLDFIRE_FPU)                                          \
185         builtin_define ("__mcffpu__");                                  \
186                                                                         \
187       if (TARGET_CF_HWDIV)                                              \
188         builtin_define ("__mcfhwdiv__");                                \
189                                                                         \
190       builtin_assert ("cpu=m68k");                                      \
191       builtin_assert ("machine=m68k");                                  \
192     }                                                                   \
193   while (0)
194
195 /* Classify the groups of pseudo-ops used to assemble QI, HI and SI
196    quantities.  */
197 #define INT_OP_STANDARD 0       /* .byte, .short, .long */
198 #define INT_OP_DOT_WORD 1       /* .byte, .word, .long */
199 #define INT_OP_NO_DOT   2       /* byte, short, long */
200 #define INT_OP_DC       3       /* dc.b, dc.w, dc.l */
201
202 /* Set the default.  */
203 #define INT_OP_GROUP INT_OP_DOT_WORD
204
205 /* Bit values used by m68k-devices.def to identify processor capabilities.  */
206 #define FL_BITFIELD  (1 << 0)    /* Support bitfield instructions.  */
207 #define FL_68881     (1 << 1)    /* (Default) support for 68881/2.  */
208 #define FL_COLDFIRE  (1 << 2)    /* ColdFire processor.  */
209 #define FL_CF_HWDIV  (1 << 3)    /* ColdFire hardware divide supported.  */
210 #define FL_CF_MAC    (1 << 4)    /* ColdFire MAC unit supported.  */
211 #define FL_CF_EMAC   (1 << 5)    /* ColdFire eMAC unit supported.  */
212 #define FL_CF_EMAC_B (1 << 6)    /* ColdFire eMAC-B unit supported.  */
213 #define FL_CF_USP    (1 << 7)    /* ColdFire User Stack Pointer supported.  */
214 #define FL_CF_FPU    (1 << 8)    /* ColdFire FPU supported.  */
215 #define FL_ISA_68000 (1 << 9)
216 #define FL_ISA_68010 (1 << 10)
217 #define FL_ISA_68020 (1 << 11)
218 #define FL_ISA_68040 (1 << 12)
219 #define FL_ISA_A     (1 << 13)
220 #define FL_ISA_APLUS (1 << 14)
221 #define FL_ISA_B     (1 << 15)
222 #define FL_ISA_C     (1 << 16)
223 #define FL_MMU       0   /* Used by multilib machinery.  */
224
225 #define TARGET_68010            ((m68k_cpu_flags & FL_ISA_68010) != 0)
226 #define TARGET_68020            ((m68k_cpu_flags & FL_ISA_68020) != 0)
227 #define TARGET_68040            ((m68k_cpu_flags & FL_ISA_68040) != 0)
228 #define TARGET_COLDFIRE         ((m68k_cpu_flags & FL_COLDFIRE) != 0)
229 #define TARGET_COLDFIRE_FPU     (m68k_fpu == FPUTYPE_COLDFIRE)
230 #define TARGET_68881            (m68k_fpu == FPUTYPE_68881)
231
232 /* Size (in bytes) of FPU registers.  */
233 #define TARGET_FP_REG_SIZE      (TARGET_COLDFIRE ? 8 : 12)
234
235 #define TARGET_ISAAPLUS         ((m68k_cpu_flags & FL_ISA_APLUS) != 0)
236 #define TARGET_ISAB             ((m68k_cpu_flags & FL_ISA_B) != 0)
237 #define TARGET_ISAC             ((m68k_cpu_flags & FL_ISA_C) != 0)
238
239 #define TUNE_68000      (m68k_tune == u68000)
240 #define TUNE_68010      (m68k_tune == u68010)
241 #define TUNE_68000_10   (TUNE_68000 || TUNE_68010)
242 #define TUNE_68030      (m68k_tune == u68030 \
243                          || m68k_tune == u68020_40 \
244                          || m68k_tune == u68020_60)
245 #define TUNE_68040      (m68k_tune == u68040 \
246                          || m68k_tune == u68020_40 \
247                          || m68k_tune == u68020_60)
248 #define TUNE_68060      (m68k_tune == u68060 || m68k_tune == u68020_60)
249 #define TUNE_68040_60   (TUNE_68040 || TUNE_68060)
250 #define TUNE_CPU32      (m68k_tune == ucpu32)
251 #define TUNE_CFV2       (m68k_tune == ucfv2)
252
253 #define OVERRIDE_OPTIONS   override_options()
254
255 /* These are meant to be redefined in the host dependent files */
256 #define SUBTARGET_OVERRIDE_OPTIONS
257 \f
258 /* target machine storage layout */
259
260 /* "long double" is the same as "double" on ColdFire targets.  */
261
262 #define LONG_DOUBLE_TYPE_SIZE (TARGET_COLDFIRE ? 64 : 80)
263
264 /* We need to know the size of long double at compile-time in libgcc2.  */
265
266 #ifdef __mcoldfire__
267 #define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 64
268 #else
269 #define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 80
270 #endif
271
272 /* Set the value of FLT_EVAL_METHOD in float.h.  When using 68040 fp
273    instructions, we get proper intermediate rounding, otherwise we
274    get extended precision results.  */
275 #define TARGET_FLT_EVAL_METHOD ((TARGET_68040 || ! TARGET_68881) ? 0 : 2)
276
277 #define BITS_BIG_ENDIAN 1
278 #define BYTES_BIG_ENDIAN 1
279 #define WORDS_BIG_ENDIAN 1
280
281 #define UNITS_PER_WORD 4
282
283 #define PARM_BOUNDARY (TARGET_SHORT ? 16 : 32)
284 #define STACK_BOUNDARY 16
285 #define FUNCTION_BOUNDARY 16
286 #define EMPTY_FIELD_BOUNDARY 16
287
288 /* No data type wants to be aligned rounder than this.
289    Most published ABIs say that ints should be aligned on 16 bit
290    boundaries, but CPUs with 32-bit busses get better performance
291    aligned on 32-bit boundaries.  ColdFires without a misalignment
292    module require 32-bit alignment.  */
293 #define BIGGEST_ALIGNMENT (TARGET_ALIGN_INT ? 32 : 16)
294
295 #define STRICT_ALIGNMENT (TARGET_STRICT_ALIGNMENT)
296
297 #define INT_TYPE_SIZE (TARGET_SHORT ? 16 : 32)
298
299 /* Define these to avoid dependence on meaning of `int'.  */
300 #define WCHAR_TYPE "long int"
301 #define WCHAR_TYPE_SIZE 32
302
303 /* Maximum number of library IDs we permit with -mid-shared-library.  */
304 #define MAX_LIBRARY_ID 255
305
306 \f
307 /* Standard register usage.  */
308
309 /* For the m68k, we give the data registers numbers 0-7,
310    the address registers numbers 010-017 (8-15),
311    and the 68881 floating point registers numbers 020-027 (16-24).
312    We also have a fake `arg-pointer' register 030 (25) used for
313    register elimination.  */
314 #define FIRST_PSEUDO_REGISTER 25
315
316 /* All m68k targets (except AmigaOS) use %a5 as the PIC register  */
317 #define PIC_OFFSET_TABLE_REGNUM (flag_pic ? 13 : INVALID_REGNUM)
318
319 /* 1 for registers that have pervasive standard uses
320    and are not available for the register allocator.
321    On the m68k, only the stack pointer is such.
322    Our fake arg-pointer is obviously fixed as well.  */
323 #define FIXED_REGISTERS        \
324  {/* Data registers.  */       \
325   0, 0, 0, 0, 0, 0, 0, 0,      \
326                                \
327   /* Address registers.  */    \
328   0, 0, 0, 0, 0, 0, 0, 1,      \
329                                \
330   /* Floating point registers  \
331      (if available).  */       \
332   0, 0, 0, 0, 0, 0, 0, 0,      \
333                                \
334   /* Arg pointer.  */          \
335   1 }
336
337 /* 1 for registers not available across function calls.
338    These must include the FIXED_REGISTERS and also any
339    registers that can be used without being saved.
340    The latter must include the registers where values are returned
341    and the register where structure-value addresses are passed.
342    Aside from that, you can include as many other registers as you like.  */
343 #define CALL_USED_REGISTERS     \
344  {/* Data registers.  */        \
345   1, 1, 0, 0, 0, 0, 0, 0,       \
346                                 \
347   /* Address registers.  */     \
348   1, 1, 0, 0, 0, 0, 0, 1,       \
349                                 \
350   /* Floating point registers   \
351      (if available).  */        \
352   1, 1, 0, 0, 0, 0, 0, 0,       \
353                                 \
354   /* Arg pointer.  */           \
355   1 }
356
357 #define REG_ALLOC_ORDER         \
358 { /* d0/d1/a0/a1 */             \
359   0, 1, 8, 9,                   \
360   /* d2-d7 */                   \
361   2, 3, 4, 5, 6, 7,             \
362   /* a2-a7/arg */               \
363   10, 11, 12, 13, 14, 15, 24,   \
364   /* fp0-fp7 */                 \
365   16, 17, 18, 19, 20, 21, 22, 23\
366 }
367
368
369 /* Make sure everything's fine if we *don't* have a given processor.
370    This assumes that putting a register in fixed_regs will keep the
371    compiler's mitts completely off it.  We don't bother to zero it out
372    of register classes.  */
373 #define CONDITIONAL_REGISTER_USAGE                              \
374 {                                                               \
375   int i;                                                        \
376   HARD_REG_SET x;                                               \
377   if (!TARGET_HARD_FLOAT)                                       \
378     {                                                           \
379       COPY_HARD_REG_SET (x, reg_class_contents[(int)FP_REGS]);  \
380       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)               \
381         if (TEST_HARD_REG_BIT (x, i))                           \
382           fixed_regs[i] = call_used_regs[i] = 1;                \
383     }                                                           \
384   if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM)                \
385     fixed_regs[PIC_OFFSET_TABLE_REGNUM]                         \
386       = call_used_regs[PIC_OFFSET_TABLE_REGNUM] = 1;            \
387 }
388
389 /* On the m68k, ordinary registers hold 32 bits worth;
390    for the 68881 registers, a single register is always enough for
391    anything that can be stored in them at all.  */
392 #define HARD_REGNO_NREGS(REGNO, MODE)   \
393   ((REGNO) >= 16 ? GET_MODE_NUNITS (MODE)       \
394    : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
395
396 /* A C expression that is nonzero if hard register NEW_REG can be
397    considered for use as a rename register for OLD_REG register.  */
398
399 #define HARD_REGNO_RENAME_OK(OLD_REG, NEW_REG) \
400   m68k_hard_regno_rename_ok (OLD_REG, NEW_REG)
401
402 /* Value is true if hard register REGNO can hold a value of machine-mode MODE.
403    On the 68000, the cpu registers can hold any mode except bytes in
404    address registers, the 68881 registers can hold only SFmode or DFmode.  */
405
406 #define HARD_REGNO_MODE_OK(REGNO, MODE) \
407   m68k_regno_mode_ok ((REGNO), (MODE))
408
409 #define MODES_TIEABLE_P(MODE1, MODE2)                   \
410   (! TARGET_HARD_FLOAT                                  \
411    || ((GET_MODE_CLASS (MODE1) == MODE_FLOAT            \
412         || GET_MODE_CLASS (MODE1) == MODE_COMPLEX_FLOAT)        \
413        == (GET_MODE_CLASS (MODE2) == MODE_FLOAT         \
414            || GET_MODE_CLASS (MODE2) == MODE_COMPLEX_FLOAT)))
415
416 /* Specify the registers used for certain standard purposes.
417    The values of these macros are register numbers.  */
418
419 #define STACK_POINTER_REGNUM 15
420
421 /* Most m68k targets use %a6 as a frame pointer.  The AmigaOS
422    ABI uses %a6 for shared library calls, therefore the frame
423    pointer is shifted to %a5 on this target.  */
424 #define FRAME_POINTER_REGNUM 14
425
426 #define FRAME_POINTER_REQUIRED 0
427
428 /* Base register for access to arguments of the function.
429  * This isn't a hardware register. It will be eliminated to the
430  * stack pointer or frame pointer.
431  */
432 #define ARG_POINTER_REGNUM 24
433
434 #define STATIC_CHAIN_REGNUM 8
435
436 /* Register in which address to store a structure value
437    is passed to a function.  */
438 #define M68K_STRUCT_VALUE_REGNUM 9
439
440 \f
441
442 /* The m68k has three kinds of registers, so eight classes would be
443    a complete set.  One of them is not needed.  */
444 enum reg_class {
445   NO_REGS, DATA_REGS,
446   ADDR_REGS, FP_REGS,
447   GENERAL_REGS, DATA_OR_FP_REGS,
448   ADDR_OR_FP_REGS, ALL_REGS,
449   LIM_REG_CLASSES };
450
451 #define N_REG_CLASSES (int) LIM_REG_CLASSES
452
453 #define REG_CLASS_NAMES \
454  { "NO_REGS", "DATA_REGS",              \
455    "ADDR_REGS", "FP_REGS",              \
456    "GENERAL_REGS", "DATA_OR_FP_REGS",   \
457    "ADDR_OR_FP_REGS", "ALL_REGS" }
458
459 #define REG_CLASS_CONTENTS \
460 {                                       \
461   {0x00000000},  /* NO_REGS */          \
462   {0x000000ff},  /* DATA_REGS */        \
463   {0x0100ff00},  /* ADDR_REGS */        \
464   {0x00ff0000},  /* FP_REGS */          \
465   {0x0100ffff},  /* GENERAL_REGS */     \
466   {0x00ff00ff},  /* DATA_OR_FP_REGS */  \
467   {0x01ffff00},  /* ADDR_OR_FP_REGS */  \
468   {0x01ffffff},  /* ALL_REGS */         \
469 }
470
471 extern enum reg_class regno_reg_class[];
472 #define REGNO_REG_CLASS(REGNO) (regno_reg_class[(REGNO)])
473 #define INDEX_REG_CLASS GENERAL_REGS
474 #define BASE_REG_CLASS ADDR_REGS
475
476 /* We do a trick here to modify the effective constraints on the
477    machine description; we zorch the constraint letters that aren't
478    appropriate for a specific target.  This allows us to guarantee
479    that a specific kind of register will not be used for a given target
480    without fiddling with the register classes above.  */
481 #define REG_CLASS_FROM_LETTER(C) \
482   ((C) == 'a' ? ADDR_REGS :                     \
483    ((C) == 'd' ? DATA_REGS :                    \
484     ((C) == 'f' ? (TARGET_HARD_FLOAT ?          \
485                    FP_REGS : NO_REGS) :         \
486      NO_REGS)))
487
488 /* For the m68k, `I' is used for the range 1 to 8
489    allowed as immediate shift counts and in addq.
490    `J' is used for the range of signed numbers that fit in 16 bits.
491    `K' is for numbers that moveq can't handle.
492    `L' is for range -8 to -1, range of values that can be added with subq.
493    `M' is for numbers that moveq+notb can't handle.
494    'N' is for range 24 to 31, rotatert:SI 8 to 1 expressed as rotate.
495    'O' is for 16 (for rotate using swap).
496    'P' is for range 8 to 15, rotatert:HI 8 to 1 expressed as rotate.  */
497 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
498   ((C) == 'I' ? (VALUE) > 0 && (VALUE) <= 8 : \
499    (C) == 'J' ? (VALUE) >= -0x8000 && (VALUE) <= 0x7FFF : \
500    (C) == 'K' ? (VALUE) < -0x80 || (VALUE) >= 0x80 : \
501    (C) == 'L' ? (VALUE) < 0 && (VALUE) >= -8 : \
502    (C) == 'M' ? (VALUE) < -0x100 || (VALUE) >= 0x100 : \
503    (C) == 'N' ? (VALUE) >= 24 && (VALUE) <= 31 : \
504    (C) == 'O' ? (VALUE) == 16 : \
505    (C) == 'P' ? (VALUE) >= 8 && (VALUE) <= 15 : 0)
506
507 /* "G" defines all of the floating constants that are *NOT* 68881
508    constants.  This is so 68881 constants get reloaded and the
509    fpmovecr is used.  */
510 #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C)  \
511   ((C) == 'G' ? ! (TARGET_68881 && standard_68881_constant_p (VALUE)) : 0 )
512
513 /* `Q' means address register indirect addressing mode.
514    `S' is for operands that satisfy 'm' when -mpcrel is in effect.
515    `T' is for operands that satisfy 's' when -mpcrel is not in effect.
516    `U' is for register offset addressing.  */
517 #define EXTRA_CONSTRAINT(OP,CODE)                       \
518   (((CODE) == 'S')                                      \
519    ? (TARGET_PCREL                                      \
520       && GET_CODE (OP) == MEM                           \
521       && (GET_CODE (XEXP (OP, 0)) == SYMBOL_REF         \
522           || GET_CODE (XEXP (OP, 0)) == LABEL_REF       \
523           || GET_CODE (XEXP (OP, 0)) == CONST))         \
524    :                                                    \
525   (((CODE) == 'T')                                      \
526    ? ( !TARGET_PCREL                                    \
527       && (GET_CODE (OP) == SYMBOL_REF                   \
528           || GET_CODE (OP) == LABEL_REF                 \
529           || GET_CODE (OP) == CONST))                   \
530    :                                                    \
531   (((CODE) == 'Q')                                      \
532    ? (GET_CODE (OP) == MEM                              \
533       && GET_CODE (XEXP (OP, 0)) == REG)                \
534    :                                                    \
535   (((CODE) == 'U')                                      \
536    ? (GET_CODE (OP) == MEM                              \
537       && GET_CODE (XEXP (OP, 0)) == PLUS                \
538       && GET_CODE (XEXP (XEXP (OP, 0), 0)) == REG       \
539       && GET_CODE (XEXP (XEXP (OP, 0), 1)) == CONST_INT) \
540    :                                                    \
541    0))))
542
543 /* On the m68k, use a data reg if possible when the
544    value is a constant in the range where moveq could be used
545    and we ensure that QImodes are reloaded into data regs.  */
546 #define PREFERRED_RELOAD_CLASS(X,CLASS)  \
547   ((GET_CODE (X) == CONST_INT                   \
548     && (unsigned) (INTVAL (X) + 0x80) < 0x100   \
549     && (CLASS) != ADDR_REGS)                    \
550    ? DATA_REGS                                  \
551    : (GET_MODE (X) == QImode && (CLASS) != ADDR_REGS) \
552    ? DATA_REGS                                  \
553    : (GET_CODE (X) == CONST_DOUBLE                                      \
554       && GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT)                   \
555    ? (TARGET_HARD_FLOAT && (CLASS == FP_REGS || CLASS == DATA_OR_FP_REGS) \
556       ? FP_REGS : NO_REGS)                                              \
557    : (TARGET_PCREL                              \
558       && (GET_CODE (X) == SYMBOL_REF || GET_CODE (X) == CONST \
559           || GET_CODE (X) == LABEL_REF))        \
560    ? ADDR_REGS                                  \
561    : (CLASS))
562
563 /* Force QImode output reloads from subregs to be allocated to data regs,
564    since QImode stores from address regs are not supported.  We make the
565    assumption that if the class is not ADDR_REGS, then it must be a superset
566    of DATA_REGS.  */
567 #define LIMIT_RELOAD_CLASS(MODE, CLASS) \
568   (((MODE) == QImode && (CLASS) != ADDR_REGS)   \
569    ? DATA_REGS                                  \
570    : (CLASS))
571
572 /* On the m68k, this is the size of MODE in words,
573    except in the FP regs, where a single reg is always enough.  */
574 #define CLASS_MAX_NREGS(CLASS, MODE)    \
575  ((CLASS) == FP_REGS ? 1 \
576   : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
577
578 /* Moves between fp regs and other regs are two insns.  */
579 #define REGISTER_MOVE_COST(MODE, CLASS1, CLASS2)        \
580   ((((CLASS1) == FP_REGS) != ((CLASS2) == FP_REGS)) ? 4 : 2)
581 \f
582 /* Stack layout; function entry, exit and calling.  */
583
584 #define STACK_GROWS_DOWNWARD 1
585 #define FRAME_GROWS_DOWNWARD 1
586 #define STARTING_FRAME_OFFSET 0
587
588 /* On the 680x0, sp@- in a byte insn really pushes a word.
589    On the ColdFire, sp@- in a byte insn pushes just a byte.  */
590 #define PUSH_ROUNDING(BYTES) (TARGET_COLDFIRE ? BYTES : ((BYTES) + 1) & ~1)
591
592 #define FIRST_PARM_OFFSET(FNDECL) 8
593
594 /* On the 68000, the RTS insn cannot pop anything.
595    On the 68010, the RTD insn may be used to pop them if the number
596      of args is fixed, but if the number is variable then the caller
597      must pop them all.  RTD can't be used for library calls now
598      because the library is compiled with the Unix compiler.
599    Use of RTD is a selectable option, since it is incompatible with
600    standard Unix calling sequences.  If the option is not selected,
601    the caller must always pop the args.  */
602 #define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE)   \
603   ((TARGET_RTD && (!(FUNDECL) || TREE_CODE (FUNDECL) != IDENTIFIER_NODE)        \
604     && (TYPE_ARG_TYPES (FUNTYPE) == 0                           \
605         || (TREE_VALUE (tree_last (TYPE_ARG_TYPES (FUNTYPE)))   \
606             == void_type_node)))                                \
607    ? (SIZE) : 0)
608
609 /* On the m68k the return value defaults to D0.  */
610 #define FUNCTION_VALUE(VALTYPE, FUNC)  \
611   gen_rtx_REG (TYPE_MODE (VALTYPE), 0)
612
613 /* On the m68k the return value defaults to D0.  */
614 #define LIBCALL_VALUE(MODE)  gen_rtx_REG (MODE, 0)
615
616 /* On the m68k, D0 is usually the only register used.  */
617 #define FUNCTION_VALUE_REGNO_P(N) ((N) == 0)
618
619 /* Define this to be true when FUNCTION_VALUE_REGNO_P is true for
620    more than one register.
621    XXX This macro is m68k specific and used only for m68kemb.h.  */
622 #define NEEDS_UNTYPED_CALL 0
623
624 /* On the m68k, all arguments are usually pushed on the stack.  */
625 #define FUNCTION_ARG_REGNO_P(N) 0
626 \f
627 /* On the m68k, this is a single integer, which is a number of bytes
628    of arguments scanned so far.  */
629 #define CUMULATIVE_ARGS int
630
631 /* On the m68k, the offset starts at 0.  */
632 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT, N_NAMED_ARGS) \
633  ((CUM) = 0)
634
635 #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED)    \
636  ((CUM) += ((MODE) != BLKmode                   \
637             ? (GET_MODE_SIZE (MODE) + 3) & ~3   \
638             : (int_size_in_bytes (TYPE) + 3) & ~3))
639
640 /* On the m68k all args are always pushed.  */
641 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) 0
642
643 #define FUNCTION_PROFILER(FILE, LABELNO)  \
644   asm_fprintf (FILE, "\tlea %LLP%d,%Ra0\n\tjsr mcount\n", (LABELNO))
645
646 #define EXIT_IGNORE_STACK 1
647
648 /* Determine if the epilogue should be output as RTL.
649    You should override this if you define FUNCTION_EXTRA_EPILOGUE.
650
651    XXX This macro is m68k-specific and only used in m68k.md.  */
652 #define USE_RETURN_INSN use_return_insn ()
653
654 /* Output assembler code for a block containing the constant parts
655    of a trampoline, leaving space for the variable parts.
656
657    On the m68k, the trampoline looks like this:
658      movl #STATIC,a0
659      jmp  FUNCTION
660
661    WARNING: Targets that may run on 68040+ cpus must arrange for
662    the instruction cache to be flushed.  Previous incarnations of
663    the m68k trampoline code attempted to get around this by either
664    using an out-of-line transfer function or pc-relative data, but
665    the fact remains that the code to jump to the transfer function
666    or the code to load the pc-relative data needs to be flushed
667    just as much as the "variable" portion of the trampoline.
668    Recognizing that a cache flush is going to be required anyway,
669    dispense with such notions and build a smaller trampoline.
670
671    Since more instructions are required to move a template into
672    place than to create it on the spot, don't use a template.  */
673
674 #define TRAMPOLINE_SIZE 12
675 #define TRAMPOLINE_ALIGNMENT 16
676
677 /* Targets redefine this to invoke code to either flush the cache,
678    or enable stack execution (or both).  */
679 #ifndef FINALIZE_TRAMPOLINE
680 #define FINALIZE_TRAMPOLINE(TRAMP)
681 #endif
682
683 /* We generate a two-instructions program at address TRAMP :
684         movea.l &CXT,%a0
685         jmp FNADDR  */
686 #define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT)                       \
687 {                                                                       \
688   emit_move_insn (gen_rtx_MEM (HImode, TRAMP), GEN_INT(0x207C));        \
689   emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 2)), CXT); \
690   emit_move_insn (gen_rtx_MEM (HImode, plus_constant (TRAMP, 6)),       \
691                   GEN_INT(0x4EF9));                                     \
692   emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 8)), FNADDR); \
693   FINALIZE_TRAMPOLINE(TRAMP);                                           \
694 }
695
696 /* This is the library routine that is used to transfer control from the
697    trampoline to the actual nested function.  It is defined for backward
698    compatibility, for linking with object code that used the old trampoline
699    definition.
700
701    A colon is used with no explicit operands to cause the template string
702    to be scanned for %-constructs.
703
704    The function name __transfer_from_trampoline is not actually used.
705    The function definition just permits use of "asm with operands"
706    (though the operand list is empty).  */
707 #define TRANSFER_FROM_TRAMPOLINE                                \
708 void                                                            \
709 __transfer_from_trampoline ()                                   \
710 {                                                               \
711   register char *a0 asm ("%a0");                                \
712   asm (GLOBAL_ASM_OP "___trampoline");                          \
713   asm ("___trampoline:");                                       \
714   asm volatile ("move%.l %0,%@" : : "m" (a0[22]));              \
715   asm volatile ("move%.l %1,%0" : "=a" (a0) : "m" (a0[18]));    \
716   asm ("rts":);                                                 \
717 }
718 \f
719 /* There are two registers that can always be eliminated on the m68k.
720    The frame pointer and the arg pointer can be replaced by either the
721    hard frame pointer or to the stack pointer, depending upon the
722    circumstances.  The hard frame pointer is not used before reload and
723    so it is not eligible for elimination.  */
724 #define ELIMINABLE_REGS                                 \
725 {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM },          \
726  { ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM },          \
727  { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM }}
728
729 #define CAN_ELIMINATE(FROM, TO) \
730   ((TO) == STACK_POINTER_REGNUM ? ! frame_pointer_needed : 1)
731
732 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET)                    \
733   (OFFSET) = m68k_initial_elimination_offset(FROM, TO)
734 \f
735 /* Addressing modes, and classification of registers for them.  */
736
737 #define HAVE_POST_INCREMENT 1
738 #define HAVE_PRE_DECREMENT 1
739
740 /* Macros to check register numbers against specific register classes.  */
741
742 /* True for data registers, D0 through D7.  */
743 #define DATA_REGNO_P(REGNO) ((unsigned int) (REGNO) < 8)
744
745 /* True for address registers, A0 through A7.  */
746 #define ADDRESS_REGNO_P(REGNO) (((unsigned int) (REGNO) - 8) < 8)
747
748 /* True for integer registers, D0 through D7 and A0 through A7.  */
749 #define INT_REGNO_P(REGNO) ((unsigned int) (REGNO) < 16)
750
751 /* True for floating point registers, FP0 through FP7.  */
752 #define FP_REGNO_P(REGNO) (((unsigned int) (REGNO) - 16) < 8)
753
754 #define REGNO_OK_FOR_INDEX_P(REGNO)                     \
755   (INT_REGNO_P (REGNO)                                  \
756    || INT_REGNO_P (reg_renumber[REGNO]))
757
758 #define REGNO_OK_FOR_BASE_P(REGNO)                      \
759   (ADDRESS_REGNO_P (REGNO)                              \
760    || ADDRESS_REGNO_P (reg_renumber[REGNO]))
761
762 #define REGNO_OK_FOR_DATA_P(REGNO)                      \
763   (DATA_REGNO_P (REGNO)                                 \
764    || DATA_REGNO_P (reg_renumber[REGNO]))
765
766 #define REGNO_OK_FOR_FP_P(REGNO)                        \
767   (FP_REGNO_P (REGNO)                                   \
768    || FP_REGNO_P (reg_renumber[REGNO]))
769
770 /* Now macros that check whether X is a register and also,
771    strictly, whether it is in a specified class.
772
773    These macros are specific to the m68k, and may be used only
774    in code for printing assembler insns and in conditions for
775    define_optimization.  */
776
777 /* 1 if X is a data register.  */
778 #define DATA_REG_P(X) (REG_P (X) && REGNO_OK_FOR_DATA_P (REGNO (X)))
779
780 /* 1 if X is an fp register.  */
781 #define FP_REG_P(X) (REG_P (X) && REGNO_OK_FOR_FP_P (REGNO (X)))
782
783 /* 1 if X is an address register  */
784 #define ADDRESS_REG_P(X) (REG_P (X) && REGNO_OK_FOR_BASE_P (REGNO (X)))
785 \f
786
787 #define MAX_REGS_PER_ADDRESS 2
788
789 #define CONSTANT_ADDRESS_P(X)   \
790   (GET_CODE (X) == LABEL_REF || GET_CODE (X) == SYMBOL_REF              \
791    || GET_CODE (X) == CONST_INT || GET_CODE (X) == CONST                \
792    || GET_CODE (X) == HIGH)
793
794 /* Nonzero if the constant value X is a legitimate general operand.
795    It is given that X satisfies CONSTANT_P or is a CONST_DOUBLE.  */
796 #define LEGITIMATE_CONSTANT_P(X) (GET_MODE (X) != XFmode)
797
798 #ifndef REG_OK_STRICT
799 #define PCREL_GENERAL_OPERAND_OK 0
800 #else
801 #define PCREL_GENERAL_OPERAND_OK (TARGET_PCREL)
802 #endif
803
804 #define LEGITIMATE_PIC_OPERAND_P(X)     \
805   (! symbolic_operand (X, VOIDmode)                             \
806    || (GET_CODE (X) == SYMBOL_REF && SYMBOL_REF_FLAG (X))       \
807    || PCREL_GENERAL_OPERAND_OK)
808
809 #ifndef REG_OK_STRICT
810
811 /* Nonzero if X is a hard reg that can be used as an index
812    or if it is a pseudo reg.  */
813 #define REG_OK_FOR_INDEX_P(X) !FP_REGNO_P (REGNO (X))
814 /* Nonzero if X is a hard reg that can be used as a base reg
815    or if it is a pseudo reg.  */
816 #define REG_OK_FOR_BASE_P(X) \
817   (!DATA_REGNO_P (REGNO (X)) && !FP_REGNO_P (REGNO (X)))
818
819 #else
820
821 /* Nonzero if X is a hard reg that can be used as an index.  */
822 #define REG_OK_FOR_INDEX_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
823 /* Nonzero if X is a hard reg that can be used as a base reg.  */
824 #define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
825
826 #endif
827 \f
828 /* GO_IF_LEGITIMATE_ADDRESS recognizes an RTL expression
829    that is a valid memory address for an instruction.
830    The MODE argument is the machine mode for the MEM expression
831    that wants to use this address.
832
833    When generating PIC, an address involving a SYMBOL_REF is legitimate
834    if and only if it is the sum of pic_offset_table_rtx and the SYMBOL_REF.
835    We use LEGITIMATE_PIC_OPERAND_P to throw out the illegitimate addresses,
836    and we explicitly check for the sum of pic_offset_table_rtx and a SYMBOL_REF.
837
838    Likewise for a LABEL_REF when generating PIC.
839
840    The other macros defined here are used only in GO_IF_LEGITIMATE_ADDRESS.  */
841
842 /* Allow SUBREG everywhere we allow REG.  This results in better code.  It
843    also makes function inlining work when inline functions are called with
844    arguments that are SUBREGs.  */
845
846 #define LEGITIMATE_BASE_REG_P(X)   \
847   ((GET_CODE (X) == REG && REG_OK_FOR_BASE_P (X))       \
848    || (GET_CODE (X) == SUBREG                           \
849        && GET_CODE (SUBREG_REG (X)) == REG              \
850        && REG_OK_FOR_BASE_P (SUBREG_REG (X))))
851
852 #define INDIRECTABLE_1_ADDRESS_P(X)  \
853   ((CONSTANT_ADDRESS_P (X) && (!flag_pic || LEGITIMATE_PIC_OPERAND_P (X))) \
854    || LEGITIMATE_BASE_REG_P (X)                                         \
855    || ((GET_CODE (X) == PRE_DEC || GET_CODE (X) == POST_INC)            \
856        && LEGITIMATE_BASE_REG_P (XEXP (X, 0)))                          \
857    || (GET_CODE (X) == PLUS                                             \
858        && LEGITIMATE_BASE_REG_P (XEXP (X, 0))                           \
859        && GET_CODE (XEXP (X, 1)) == CONST_INT                           \
860        && (TARGET_68020                                                 \
861            || ((unsigned) INTVAL (XEXP (X, 1)) + 0x8000) < 0x10000))    \
862    || (GET_CODE (X) == PLUS && XEXP (X, 0) == pic_offset_table_rtx      \
863        && flag_pic && GET_CODE (XEXP (X, 1)) == SYMBOL_REF)             \
864    || (GET_CODE (X) == PLUS && XEXP (X, 0) == pic_offset_table_rtx      \
865        && flag_pic && GET_CODE (XEXP (X, 1)) == LABEL_REF))
866
867 #define GO_IF_NONINDEXED_ADDRESS(X, ADDR)  \
868 { if (INDIRECTABLE_1_ADDRESS_P (X)) goto ADDR; }
869
870 /* Only labels on dispatch tables are valid for indexing from.  */
871 #define GO_IF_INDEXABLE_BASE(X, ADDR)                           \
872 { rtx temp;                                                     \
873   if (GET_CODE (X) == LABEL_REF                                 \
874       && (temp = next_nonnote_insn (XEXP (X, 0))) != 0          \
875       && GET_CODE (temp) == JUMP_INSN                           \
876       && (GET_CODE (PATTERN (temp)) == ADDR_VEC                 \
877           || GET_CODE (PATTERN (temp)) == ADDR_DIFF_VEC))       \
878     goto ADDR;                                                  \
879   if (LEGITIMATE_BASE_REG_P (X)) goto ADDR; }
880
881 #define GO_IF_INDEXING(X, ADDR) \
882 { if (GET_CODE (X) == PLUS && LEGITIMATE_INDEX_P (XEXP (X, 0)))         \
883     { GO_IF_INDEXABLE_BASE (XEXP (X, 1), ADDR); }                       \
884   if (GET_CODE (X) == PLUS && LEGITIMATE_INDEX_P (XEXP (X, 1)))         \
885     { GO_IF_INDEXABLE_BASE (XEXP (X, 0), ADDR); } }
886
887 #define GO_IF_INDEXED_ADDRESS(X, ADDR)   \
888 { GO_IF_INDEXING (X, ADDR);                                             \
889   if (GET_CODE (X) == PLUS)                                             \
890     { if (GET_CODE (XEXP (X, 1)) == CONST_INT                           \
891           && (TARGET_68020 || (unsigned) INTVAL (XEXP (X, 1)) + 0x80 < 0x100))          \
892         { rtx go_temp = XEXP (X, 0); GO_IF_INDEXING (go_temp, ADDR); }  \
893       if (GET_CODE (XEXP (X, 0)) == CONST_INT                           \
894           && (TARGET_68020 || (unsigned) INTVAL (XEXP (X, 0)) + 0x80 < 0x100))          \
895         { rtx go_temp = XEXP (X, 1); GO_IF_INDEXING (go_temp, ADDR); } } }
896
897 /* ColdFire/5200 does not allow HImode index registers.  */
898 #define LEGITIMATE_INDEX_REG_P(X)   \
899   ((GET_CODE (X) == REG && REG_OK_FOR_INDEX_P (X))      \
900    || (! TARGET_COLDFIRE                                        \
901        && GET_CODE (X) == SIGN_EXTEND                   \
902        && GET_CODE (XEXP (X, 0)) == REG                 \
903        && GET_MODE (XEXP (X, 0)) == HImode              \
904        && REG_OK_FOR_INDEX_P (XEXP (X, 0)))             \
905    || (GET_CODE (X) == SUBREG                           \
906        && GET_CODE (SUBREG_REG (X)) == REG              \
907        && REG_OK_FOR_INDEX_P (SUBREG_REG (X))))
908
909 #define LEGITIMATE_INDEX_P(X)   \
910    (LEGITIMATE_INDEX_REG_P (X)                          \
911     || ((TARGET_68020 || TARGET_COLDFIRE) && GET_CODE (X) == MULT \
912         && LEGITIMATE_INDEX_REG_P (XEXP (X, 0))         \
913         && GET_CODE (XEXP (X, 1)) == CONST_INT          \
914         && (INTVAL (XEXP (X, 1)) == 2                   \
915             || INTVAL (XEXP (X, 1)) == 4                \
916             || (INTVAL (XEXP (X, 1)) == 8               \
917                 && (TARGET_COLDFIRE_FPU || !TARGET_COLDFIRE)))))
918
919 /* Coldfire FPU only accepts addressing modes 2-5 */
920 #define GO_IF_COLDFIRE_FPU_LEGITIMATE_ADDRESS(MODE, X, ADDR)            \
921 { if (LEGITIMATE_BASE_REG_P (X)                                         \
922       || ((GET_CODE (X) == PRE_DEC || GET_CODE (X) == POST_INC)         \
923           && LEGITIMATE_BASE_REG_P (XEXP (X, 0)))                       \
924       || ((GET_CODE (X) == PLUS) && LEGITIMATE_BASE_REG_P (XEXP (X, 0)) \
925           && (GET_CODE (XEXP (X, 1)) == CONST_INT)                      \
926           && ((((unsigned) INTVAL (XEXP (X, 1)) + 0x8000) < 0x10000)))) \
927   goto ADDR;}
928
929 /* If pic, we accept INDEX+LABEL, which is what do_tablejump makes.  */
930 #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, ADDR)                         \
931 { if (TARGET_COLDFIRE_FPU && (GET_MODE_CLASS (MODE) == MODE_FLOAT))     \
932     {                                                                   \
933       GO_IF_COLDFIRE_FPU_LEGITIMATE_ADDRESS (MODE, X, ADDR);            \
934     }                                                                   \
935   else                                                                  \
936     {                                                                   \
937       GO_IF_NONINDEXED_ADDRESS (X, ADDR);                               \
938       GO_IF_INDEXED_ADDRESS (X, ADDR);                                  \
939       if (flag_pic && MODE == CASE_VECTOR_MODE && GET_CODE (X) == PLUS  \
940           && LEGITIMATE_INDEX_P (XEXP (X, 0))                           \
941           && GET_CODE (XEXP (X, 1)) == LABEL_REF)                       \
942         goto ADDR;                                                      \
943     }}
944
945 /* Don't call memory_address_noforce for the address to fetch
946    the switch offset.  This address is ok as it stands (see above),
947    but memory_address_noforce would alter it.  */
948 #define PIC_CASE_VECTOR_ADDRESS(index) index
949 \f
950 /* For the 68000, we handle X+REG by loading X into a register R and
951    using R+REG.  R will go in an address reg and indexing will be used.
952    However, if REG is a broken-out memory address or multiplication,
953    nothing needs to be done because REG can certainly go in an address reg.  */
954 #define COPY_ONCE(Y) if (!copied) { Y = copy_rtx (Y); copied = ch = 1; }
955 #define LEGITIMIZE_ADDRESS(X,OLDX,MODE,WIN)   \
956 { register int ch = (X) != (OLDX);                                      \
957   if (GET_CODE (X) == PLUS)                                             \
958     { int copied = 0;                                                   \
959       if (GET_CODE (XEXP (X, 0)) == MULT)                               \
960         { COPY_ONCE (X); XEXP (X, 0) = force_operand (XEXP (X, 0), 0);} \
961       if (GET_CODE (XEXP (X, 1)) == MULT)                               \
962         { COPY_ONCE (X); XEXP (X, 1) = force_operand (XEXP (X, 1), 0);} \
963       if (ch && GET_CODE (XEXP (X, 1)) == REG                           \
964           && GET_CODE (XEXP (X, 0)) == REG)                             \
965         { if (TARGET_COLDFIRE_FPU                                       \
966               && GET_MODE_CLASS (MODE) == MODE_FLOAT)                   \
967             { COPY_ONCE (X); X = force_operand (X, 0);}                 \
968           goto WIN; }                                                   \
969       if (ch) { GO_IF_LEGITIMATE_ADDRESS (MODE, X, WIN); }              \
970       if (GET_CODE (XEXP (X, 0)) == REG                                 \
971                || (GET_CODE (XEXP (X, 0)) == SIGN_EXTEND                \
972                    && GET_CODE (XEXP (XEXP (X, 0), 0)) == REG           \
973                    && GET_MODE (XEXP (XEXP (X, 0), 0)) == HImode))      \
974         { register rtx temp = gen_reg_rtx (Pmode);                      \
975           register rtx val = force_operand (XEXP (X, 1), 0);            \
976           emit_move_insn (temp, val);                                   \
977           COPY_ONCE (X);                                                \
978           XEXP (X, 1) = temp;                                           \
979           if (TARGET_COLDFIRE_FPU && GET_MODE_CLASS (MODE) == MODE_FLOAT \
980               && GET_CODE (XEXP (X, 0)) == REG)                         \
981             X = force_operand (X, 0);                                   \
982           goto WIN; }                                                   \
983       else if (GET_CODE (XEXP (X, 1)) == REG                            \
984                || (GET_CODE (XEXP (X, 1)) == SIGN_EXTEND                \
985                    && GET_CODE (XEXP (XEXP (X, 1), 0)) == REG           \
986                    && GET_MODE (XEXP (XEXP (X, 1), 0)) == HImode))      \
987         { register rtx temp = gen_reg_rtx (Pmode);                      \
988           register rtx val = force_operand (XEXP (X, 0), 0);            \
989           emit_move_insn (temp, val);                                   \
990           COPY_ONCE (X);                                                \
991           XEXP (X, 0) = temp;                                           \
992           if (TARGET_COLDFIRE_FPU && GET_MODE_CLASS (MODE) == MODE_FLOAT \
993               && GET_CODE (XEXP (X, 1)) == REG)                         \
994             X = force_operand (X, 0);                                   \
995           goto WIN; }}}
996
997 /* On the 68000, only predecrement and postincrement address depend thus
998    (the amount of decrement or increment being the length of the operand).
999    These are now treated generically in recog.c.  */
1000 #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR,LABEL)
1001 \f
1002 #define CASE_VECTOR_MODE HImode
1003 #define CASE_VECTOR_PC_RELATIVE 1
1004
1005 #define DEFAULT_SIGNED_CHAR 1
1006 #define MOVE_MAX 4
1007 #define SLOW_BYTE_ACCESS 0
1008
1009 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
1010
1011 #define STORE_FLAG_VALUE (-1)
1012
1013 #define Pmode SImode
1014 #define FUNCTION_MODE QImode
1015
1016 \f
1017 /* Tell final.c how to eliminate redundant test instructions.  */
1018
1019 /* Here we define machine-dependent flags and fields in cc_status
1020    (see `conditions.h').  */
1021
1022 /* Set if the cc value is actually in the 68881, so a floating point
1023    conditional branch must be output.  */
1024 #define CC_IN_68881 04000
1025
1026 /* On the 68000, all the insns to store in an address register fail to
1027    set the cc's.  However, in some cases these instructions can make it
1028    possibly invalid to use the saved cc's.  In those cases we clear out
1029    some or all of the saved cc's so they won't be used.  */
1030 #define NOTICE_UPDATE_CC(EXP,INSN) notice_update_cc (EXP, INSN)
1031
1032 #define OUTPUT_JUMP(NORMAL, FLOAT, NO_OV)  \
1033 do { if (cc_prev_status.flags & CC_IN_68881)                    \
1034     return FLOAT;                                               \
1035   if (cc_prev_status.flags & CC_NO_OVERFLOW)                    \
1036     return NO_OV;                                               \
1037   return NORMAL; } while (0)
1038 \f
1039 /* Control the assembler format that we output.  */
1040
1041 #define ASM_APP_ON "#APP\n"
1042 #define ASM_APP_OFF "#NO_APP\n"
1043 #define TEXT_SECTION_ASM_OP "\t.text"
1044 #define DATA_SECTION_ASM_OP "\t.data"
1045 #define GLOBAL_ASM_OP "\t.globl\t"
1046 #define REGISTER_PREFIX ""
1047 #define LOCAL_LABEL_PREFIX ""
1048 #define USER_LABEL_PREFIX "_"
1049 #define IMMEDIATE_PREFIX "#"
1050
1051 #define REGISTER_NAMES \
1052 {REGISTER_PREFIX"d0", REGISTER_PREFIX"d1", REGISTER_PREFIX"d2", \
1053  REGISTER_PREFIX"d3", REGISTER_PREFIX"d4", REGISTER_PREFIX"d5", \
1054  REGISTER_PREFIX"d6", REGISTER_PREFIX"d7",                      \
1055  REGISTER_PREFIX"a0", REGISTER_PREFIX"a1", REGISTER_PREFIX"a2", \
1056  REGISTER_PREFIX"a3", REGISTER_PREFIX"a4", REGISTER_PREFIX"a5", \
1057  REGISTER_PREFIX"a6", REGISTER_PREFIX"sp",                      \
1058  REGISTER_PREFIX"fp0", REGISTER_PREFIX"fp1", REGISTER_PREFIX"fp2", \
1059  REGISTER_PREFIX"fp3", REGISTER_PREFIX"fp4", REGISTER_PREFIX"fp5", \
1060  REGISTER_PREFIX"fp6", REGISTER_PREFIX"fp7", REGISTER_PREFIX"argptr" }
1061
1062 #define M68K_FP_REG_NAME REGISTER_PREFIX"fp"
1063
1064 /* Return a register name by index, handling %fp nicely.
1065    We don't replace %fp for targets that don't map it to %a6
1066    since it may confuse GAS.  */
1067 #define M68K_REGNAME(r) ( \
1068   ((FRAME_POINTER_REGNUM == 14) \
1069     && ((r) == FRAME_POINTER_REGNUM) \
1070     && frame_pointer_needed) ? \
1071     M68K_FP_REG_NAME : reg_names[(r)])
1072
1073 /* On the Sun-3, the floating point registers have numbers
1074    18 to 25, not 16 to 23 as they do in the compiler.  */
1075 #define DBX_REGISTER_NUMBER(REGNO) ((REGNO) < 16 ? (REGNO) : (REGNO) + 2)
1076
1077 /* Before the prologue, RA is at 0(%sp).  */
1078 #define INCOMING_RETURN_ADDR_RTX \
1079   gen_rtx_MEM (VOIDmode, gen_rtx_REG (VOIDmode, STACK_POINTER_REGNUM))
1080
1081 /* After the prologue, RA is at 4(AP) in the current frame.  */
1082 #define RETURN_ADDR_RTX(COUNT, FRAME)                                      \
1083   ((COUNT) == 0                                                            \
1084    ? gen_rtx_MEM (Pmode, plus_constant (arg_pointer_rtx, UNITS_PER_WORD)) \
1085    : gen_rtx_MEM (Pmode, plus_constant (FRAME, UNITS_PER_WORD)))
1086
1087 /* We must not use the DBX register numbers for the DWARF 2 CFA column
1088    numbers because that maps to numbers beyond FIRST_PSEUDO_REGISTER.
1089    Instead use the identity mapping.  */
1090 #define DWARF_FRAME_REGNUM(REG) REG
1091
1092 /* Before the prologue, the top of the frame is at 4(%sp).  */
1093 #define INCOMING_FRAME_SP_OFFSET 4
1094
1095 /* Describe how we implement __builtin_eh_return.  */
1096 #define EH_RETURN_DATA_REGNO(N) \
1097   ((N) < 2 ? (N) : INVALID_REGNUM)
1098 #define EH_RETURN_STACKADJ_RTX  gen_rtx_REG (Pmode, A0_REG)
1099 #define EH_RETURN_HANDLER_RTX                                       \
1100   gen_rtx_MEM (Pmode,                                               \
1101                gen_rtx_PLUS (Pmode, arg_pointer_rtx,                \
1102                              plus_constant (EH_RETURN_STACKADJ_RTX, \
1103                                             UNITS_PER_WORD)))
1104
1105 /* Select a format to encode pointers in exception handling data.  CODE
1106    is 0 for data, 1 for code labels, 2 for function pointers.  GLOBAL is
1107    true if the symbol may be affected by dynamic relocations.
1108
1109    TARGET_ID_SHARED_LIBRARY and TARGET_SEP_DATA are designed to support
1110    a read-only text segment without imposing a fixed gap between the
1111    text and data segments.  As a result, the text segment cannot refer
1112    to anything in the data segment, even in PC-relative form.  Because
1113    .eh_frame refers to both code and data, it follows that .eh_frame
1114    must be in the data segment itself, and that the offset between
1115    .eh_frame and code will not be a link-time constant.
1116
1117    In theory, we could create a read-only .eh_frame by using DW_EH_PE_pcrel
1118    | DW_EH_PE_indirect for all code references.  However, gcc currently
1119    handles indirect references using a per-TU constant pool.  This means
1120    that if a function and its eh_frame are removed by the linker, the
1121    eh_frame's indirect references to the removed function will not be
1122    removed, leading to an unresolved symbol error.
1123
1124    It isn't clear that any -msep-data or -mid-shared-library target
1125    would benefit from a read-only .eh_frame anyway.  In particular,
1126    no known target that supports these options has a feature like
1127    PT_GNU_RELRO.  Without any such feature to motivate them, indirect
1128    references would be unnecessary bloat, so we simply use an absolute
1129    pointer for code and global references.  We still use pc-relative
1130    references to data, as this avoids a relocation.  */
1131 #define ASM_PREFERRED_EH_DATA_FORMAT(CODE, GLOBAL)                         \
1132   (flag_pic                                                                \
1133    && !((TARGET_ID_SHARED_LIBRARY || TARGET_SEP_DATA)                      \
1134         && ((GLOBAL) || (CODE)))                                           \
1135    ? ((GLOBAL) ? DW_EH_PE_indirect : 0) | DW_EH_PE_pcrel | DW_EH_PE_sdata4 \
1136    : DW_EH_PE_absptr)
1137
1138 #define ASM_OUTPUT_LABELREF(FILE,NAME)  \
1139   asm_fprintf (FILE, "%U%s", NAME)
1140
1141 #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM)   \
1142   sprintf (LABEL, "*%s%s%ld", LOCAL_LABEL_PREFIX, PREFIX, (long)(NUM))
1143
1144 #define ASM_OUTPUT_REG_PUSH(FILE,REGNO)                 \
1145   asm_fprintf (FILE, (MOTOROLA                          \
1146                       ? "\tmove.l %s,-(%Rsp)\n"         \
1147                       : "\tmovel %s,%Rsp@-\n"),         \
1148                reg_names[REGNO])
1149
1150 #define ASM_OUTPUT_REG_POP(FILE,REGNO)                  \
1151   asm_fprintf (FILE, (MOTOROLA                          \
1152                       ? "\tmove.l (%Rsp)+,%s\n"         \
1153                       : "\tmovel %Rsp@+,%s\n"),         \
1154                reg_names[REGNO])
1155
1156 /* The m68k does not use absolute case-vectors, but we must define this macro
1157    anyway.  */
1158 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE)  \
1159   asm_fprintf (FILE, "\t.long %LL%d\n", VALUE)
1160
1161 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL)  \
1162   asm_fprintf (FILE, "\t.word %LL%d-%LL%d\n", VALUE, REL)
1163
1164 /* We don't have a way to align to more than a two-byte boundary, so do the
1165    best we can and don't complain.  */
1166 #define ASM_OUTPUT_ALIGN(FILE,LOG)      \
1167   if ((LOG) >= 1)                       \
1168     fprintf (FILE, "\t.even\n");
1169
1170 #define ASM_OUTPUT_SKIP(FILE,SIZE)  \
1171   fprintf (FILE, "\t.skip %u\n", (int)(SIZE))
1172
1173 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED)  \
1174 ( fputs (".comm ", (FILE)),                     \
1175   assemble_name ((FILE), (NAME)),               \
1176   fprintf ((FILE), ",%u\n", (int)(ROUNDED)))
1177
1178 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED)  \
1179 ( fputs (".lcomm ", (FILE)),                    \
1180   assemble_name ((FILE), (NAME)),               \
1181   fprintf ((FILE), ",%u\n", (int)(ROUNDED)))
1182
1183 /* Output a float value (represented as a C double) as an immediate operand.
1184    This macro is m68k-specific.  */
1185 #define ASM_OUTPUT_FLOAT_OPERAND(CODE,FILE,VALUE)               \
1186  do {                                                           \
1187       if (CODE == 'f')                                          \
1188         {                                                       \
1189           char dstr[30];                                        \
1190           real_to_decimal (dstr, &(VALUE), sizeof (dstr), 9, 0); \
1191           asm_fprintf ((FILE), "%I0r%s", dstr);                 \
1192         }                                                       \
1193       else                                                      \
1194         {                                                       \
1195           long l;                                               \
1196           REAL_VALUE_TO_TARGET_SINGLE (VALUE, l);               \
1197           asm_fprintf ((FILE), "%I0x%lx", l);                   \
1198         }                                                       \
1199      } while (0)
1200
1201 /* Output a double value (represented as a C double) as an immediate operand.
1202    This macro is m68k-specific.  */
1203 #define ASM_OUTPUT_DOUBLE_OPERAND(FILE,VALUE)                           \
1204  do { char dstr[30];                                                    \
1205       real_to_decimal (dstr, &(VALUE), sizeof (dstr), 0, 1);            \
1206       asm_fprintf (FILE, "%I0r%s", dstr);                               \
1207     } while (0)
1208
1209 /* Note, long double immediate operands are not actually
1210    generated by m68k.md.  */
1211 #define ASM_OUTPUT_LONG_DOUBLE_OPERAND(FILE,VALUE)                      \
1212  do { char dstr[30];                                                    \
1213       real_to_decimal (dstr, &(VALUE), sizeof (dstr), 0, 1);            \
1214       asm_fprintf (FILE, "%I0r%s", dstr);                               \
1215     } while (0)
1216
1217 /* On the 68000, we use several CODE characters:
1218    '.' for dot needed in Motorola-style opcode names.
1219    '-' for an operand pushing on the stack:
1220        sp@-, -(sp) or -(%sp) depending on the style of syntax.
1221    '+' for an operand pushing on the stack:
1222        sp@+, (sp)+ or (%sp)+ depending on the style of syntax.
1223    '@' for a reference to the top word on the stack:
1224        sp@, (sp) or (%sp) depending on the style of syntax.
1225    '#' for an immediate operand prefix (# in MIT and Motorola syntax
1226        but & in SGS syntax).
1227    '!' for the fpcr register (used in some float-to-fixed conversions).
1228    '$' for the letter `s' in an op code, but only on the 68040.
1229    '&' for the letter `d' in an op code, but only on the 68040.
1230    '/' for register prefix needed by longlong.h.
1231
1232    'b' for byte insn (no effect, on the Sun; this is for the ISI).
1233    'd' to force memory addressing to be absolute, not relative.
1234    'f' for float insn (print a CONST_DOUBLE as a float rather than in hex)
1235    'o' for operands to go directly to output_operand_address (bypassing
1236        print_operand_address--used only for SYMBOL_REFs under TARGET_PCREL)
1237    'x' for float insn (print a CONST_DOUBLE as a float rather than in hex),
1238        or print pair of registers as rx:ry.  */
1239
1240 #define PRINT_OPERAND_PUNCT_VALID_P(CODE)                               \
1241   ((CODE) == '.' || (CODE) == '#' || (CODE) == '-'                      \
1242    || (CODE) == '+' || (CODE) == '@' || (CODE) == '!'                   \
1243    || (CODE) == '$' || (CODE) == '&' || (CODE) == '/')
1244
1245
1246 /* See m68k.c for the m68k specific codes.  */
1247 #define PRINT_OPERAND(FILE, X, CODE) print_operand (FILE, X, CODE)
1248
1249 #define PRINT_OPERAND_ADDRESS(FILE, ADDR) print_operand_address (FILE, ADDR)
1250
1251 /* Values used in the MICROARCH argument to M68K_DEVICE.  */
1252 enum uarch_type
1253 {
1254   u68000,
1255   u68010,
1256   u68020,
1257   u68020_40,
1258   u68020_60,
1259   u68030,
1260   u68040,
1261   u68060,
1262   ucpu32,
1263   ucfv2,
1264   ucfv3,
1265   ucfv4,
1266   ucfv4e,
1267   ucfv5,
1268   unk_arch
1269 };
1270
1271 /* An enumeration of all supported target devices.  */
1272 enum target_device
1273 {
1274 #define M68K_DEVICE(NAME,ENUM_VALUE,FAMILY,MULTILIB,MICROARCH,ISA,FLAGS) \
1275   ENUM_VALUE,
1276 #include "m68k-devices.def"
1277 #undef M68K_DEVICE
1278   unk_device
1279 };
1280
1281 enum fpu_type
1282 {
1283   FPUTYPE_NONE,
1284   FPUTYPE_68881,
1285   FPUTYPE_COLDFIRE
1286 };
1287
1288 /* Variables in m68k.c; see there for details.  */
1289 extern const char *m68k_library_id_string;
1290 extern int m68k_last_compare_had_fp_operands;
1291 extern enum target_device m68k_cpu;
1292 extern enum uarch_type m68k_tune;
1293 extern enum fpu_type m68k_fpu;
1294 extern unsigned int m68k_cpu_flags;