OSDN Git Service

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