OSDN Git Service

* config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Add target predefines.
[pf3gnuchains/gcc-fork.git] / gcc / config / m68k / m68k.h
index 0ac38cb..700f4d6 100644 (file)
@@ -1,5 +1,7 @@
-/* Definitions of target machine for GNU compiler.  Sun 68000/68020 version.
-   Copyright (C) 1987, 88, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
+/* Definitions of target machine for GNU compiler.
+   Sun 68000/68020 version.
+   Copyright (C) 1987, 1988, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+   2000, 2001, 2002, 2003 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -22,10 +24,65 @@ Boston, MA 02111-1307, USA.  */
 /* Note that some other tm.h files include this one and then override
    many of the definitions that relate to assembler syntax.  */
 
-
-/* Names to predefine in the preprocessor for this target machine.  */
-
-/* See sun3.h, sun2.h, isi.h for different CPP_PREDEFINES.  */
+/* Target CPU builtins.  */
+#define TARGET_CPU_CPP_BUILTINS()              \
+  do                                           \
+    {                                          \
+       builtin_define ("__m68k__");            \
+       builtin_define_std ("mc68000");         \
+       if (TARGET_68060)                       \
+         builtin_define_std ("mc68060");       \
+       else if (TARGET_68040)                  \
+         builtin_define_std ("mc68040");       \
+       else if (TARGET_68020)                  \
+           builtin_define_std ("mc68020");     \
+       if (TARGET_68881)                       \
+         builtin_define ("__HAVE_68881__");    \
+       if (TARGET_CPU32)                       \
+         {                                     \
+           builtin_define_std ("mc68332");     \
+           builtin_define_std ("mcpu32");      \
+         }                                     \
+       if (TARGET_COLDFIRE)                    \
+         builtin_define ("__mcoldfire__");     \
+       if (TARGET_5200)                        \
+         builtin_define ("__mcf5200__");       \
+       if (TARGET_528x)                        \
+         {                                     \
+           builtin_define ("__mcf528x__");     \
+           builtin_define ("__mcf5200__");     \
+         }                                     \
+       if (TARGET_CFV3)                        \
+         {                                     \
+           builtin_define ("__mcf5300__");     \
+           builtin_define ("__mcf5307__");     \
+         }                                     \
+       if (TARGET_CFV4)                        \
+         {                                     \
+           builtin_define ("__mcf5400__");     \
+           builtin_define ("__mcf5407__");     \
+         }                                     \
+       if (TARGET_CF_HWDIV)                    \
+         builtin_define ("__mcfhwdiv__");      \
+       if (flag_pic)                           \
+         builtin_define ("__pic__");           \
+       if (flag_pic > 1)                       \
+         builtin_define ("__PIC__");           \
+       builtin_assert ("cpu=m68k");            \
+       builtin_assert ("machine=m68k");        \
+    }                                          \
+  while (0)
+
+
+/* Classify the groups of pseudo-ops used to assemble QI, HI and SI
+   quantities.  */
+#define INT_OP_STANDARD        0       /* .byte, .short, .long */
+#define INT_OP_DOT_WORD        1       /* .byte, .word, .long */
+#define INT_OP_NO_DOT   2      /* byte, short, long */
+#define INT_OP_DC      3       /* dc.b, dc.w, dc.l */
+
+/* Set the default */
+#define INT_OP_GROUP INT_OP_DOT_WORD
 
 /* Print subsidiary information on the compiler version in use.  */
 #ifdef MOTOROLA
@@ -34,15 +91,6 @@ Boston, MA 02111-1307, USA.  */
 #define TARGET_VERSION fprintf (stderr, " (68k, MIT syntax)");
 #endif
 
-/* Define SUPPORT_SUN_FPA to include support for generating code for
-   the Sun Floating Point Accelerator, an optional product for Sun 3
-   machines.  By default, it is not defined.  Avoid defining it unless
-   you need to output code for the Sun3+FPA architecture, as it has the
-   effect of slowing down the register set operations in hard-reg-set.h
-   (total number of registers will exceed number of bits in a long,
-   if defined, causing the set operations to expand to loops).
-   SUPPORT_SUN_FPA is typically defined in sun3.h.  */
-
 /* Run-time compilation parameters selecting different hardware subsets.  */
 
 extern int target_flags;
@@ -57,7 +105,7 @@ extern int target_flags;
 #define MASK_68881     2
 #define TARGET_68881 (target_flags & MASK_68881)
 
-/* Compile using 68020 bitfield insns.  */
+/* Compile using 68020 bit-field insns.  */
 #define MASK_BITFIELD  4
 #define TARGET_BITFIELD (target_flags & MASK_BITFIELD)
 
@@ -78,20 +126,12 @@ extern int target_flags;
 #define MASK_SHORT     32
 #define TARGET_SHORT (target_flags & MASK_SHORT)
 
-/* Compile with special insns for Sun FPA.  */
-#define MASK_FPA       64
-#define TARGET_FPA (target_flags & MASK_FPA)
-
-/* Compile (actually, link) for Sun SKY board.  */
-#define MASK_SKY       128
-#define TARGET_SKY (target_flags & MASK_SKY)
-
 /* Optimize for 68040, but still allow execution on 68020
    (-m68020-40 or -m68040).
    The 68040 will execute all 68030 and 68881/2 instructions, but some
    of them must be emulated in software by the OS.  When TARGET_68040 is
    turned on, these instructions won't be used.  This code will still
-   run on a 68030 and 68881/2. */
+   run on a 68030 and 68881/2.  */
 #define MASK_68040     256
 #define TARGET_68040 (target_flags & MASK_68040)
 
@@ -104,7 +144,7 @@ extern int target_flags;
    The 68060 will execute all 68030 and 68881/2 instructions, but some
    of them must be emulated in software by the OS.  When TARGET_68060 is
    turned on, these instructions won't be used.  This code will still
-   run on a 68030 and 68881/2. */
+   run on a 68030 and 68881/2.  */
 #define MASK_68060     1024
 #define TARGET_68060 (target_flags & MASK_68060)
 
@@ -123,64 +163,145 @@ extern int target_flags;
        /* A 68020 without bitfields is a good heuristic for a CPU32 */
 #define TARGET_CPU32   (TARGET_68020 && !TARGET_BITFIELD)
 
+/* Use PC-relative addressing modes (without using a global offset table).
+   The m68000 supports 16-bit PC-relative addressing.
+   The m68020 supports 32-bit PC-relative addressing
+   (using outer displacements).
+
+   Under this model, all SYMBOL_REFs (and CONSTs) and LABEL_REFs are
+   treated as all containing an implicit PC-relative component, and hence
+   cannot be used directly as addresses for memory writes.  See the comments
+   in m68k.c for more information.  */
+#define MASK_PCREL     8192
+#define TARGET_PCREL   (target_flags & MASK_PCREL)
+
+/* Relax strict alignment.  */
+#define MASK_NO_STRICT_ALIGNMENT 16384
+#define TARGET_STRICT_ALIGNMENT  (~target_flags & MASK_NO_STRICT_ALIGNMENT)
+
+/* Build for ColdFire v3 */
+#define MASK_CFV3      0x8000
+#define TARGET_CFV3    (target_flags & MASK_CFV3)
+
+/* Build for ColdFire v4 */
+#define MASK_CFV4      0x10000
+#define TARGET_CFV4    (target_flags & MASK_CFV4)
+
+/* Divide support for ColdFire */
+#define MASK_CF_HWDIV  0x40000
+#define TARGET_CF_HWDIV        (target_flags & MASK_CF_HWDIV)
+
+/* Compile for mcf528x */
+#define MASK_528x      0x80000
+#define TARGET_528x (target_flags & MASK_528x)
+
+
+/* Is the target a coldfire */
+#define MASK_COLDFIRE  (MASK_5200|MASK_528x|MASK_CFV3|MASK_CFV4)
+#define TARGET_COLDFIRE        (target_flags & MASK_COLDFIRE)
+
+/* Which bits can be set by specifying a coldfire */
+#define MASK_ALL_CF_BITS       (MASK_COLDFIRE|MASK_CF_HWDIV)
+
 /* Macro to define tables used to set the flags.
    This is a list in braces of pairs in braces,
    each pair being { "NAME", VALUE }
    where VALUE is the bits to set or minus the bits to clear.
    An empty string NAME is used to identify the default VALUE.  */
 
-#define TARGET_SWITCHES  \
-  { { "68020", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY)},   \
-    { "c68020", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY)},  \
-    { "68020", (MASK_68020|MASK_BITFIELD)},                            \
-    { "c68020", (MASK_68020|MASK_BITFIELD)},                           \
-    { "68000", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY      \
-               |MASK_68020|MASK_BITFIELD|MASK_68881)},                 \
-    { "c68000", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY     \
-               |MASK_68020|MASK_BITFIELD|MASK_68881)},                 \
-    { "bitfield", MASK_BITFIELD},                                      \
-    { "nobitfield", - MASK_BITFIELD},                                  \
-    { "rtd", MASK_RTD},                                                        \
-    { "nortd", - MASK_RTD},                                            \
-    { "short", MASK_SHORT},                                            \
-    { "noshort", - MASK_SHORT},                                                \
-    { "fpa", -(MASK_SKY|MASK_68040_ONLY|MASK_68881)},                  \
-    { "fpa", MASK_FPA},                                                        \
-    { "nofpa", - MASK_FPA},                                            \
-    { "sky", -(MASK_FPA|MASK_68040_ONLY|MASK_68881)},                  \
-    { "sky", MASK_SKY},                                                        \
-    { "nosky", - MASK_SKY},                                            \
-    { "68881" - (MASK_FPA|MASK_SKY)},                                  \
-    { "68881", MASK_68881},                                            \
-    { "soft-float", - (MASK_FPA|MASK_SKY|MASK_68040_ONLY|MASK_68881)}, \
-    { "68020-40", -(MASK_5200|MASK_68060)},                            \
-    { "68020-40", (MASK_BITFIELD|MASK_68881|MASK_68020|MASK_68040)},   \
-    { "68020-60", -(MASK_5200|MASK_68040)},                            \
-    { "68020-60", (MASK_BITFIELD|MASK_68881|MASK_68020|MASK_68060)},   \
-    { "68030", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY)},   \
-    { "68030", (MASK_68020|MASK_BITFIELD)},                            \
-    { "68040", - (MASK_5200|MASK_68060)},                              \
+#define TARGET_SWITCHES                                                        \
+  { { "68020", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY),     \
+      N_("Generate code for a 68020") },                               \
+    { "c68020", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY),    \
+      N_("Generate code for a 68020") },                               \
+    { "68020", (MASK_68020|MASK_BITFIELD), "" },                       \
+    { "c68020", (MASK_68020|MASK_BITFIELD), "" },                      \
+    { "68000", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY       \
+               |MASK_68020|MASK_BITFIELD|MASK_68881),                  \
+      N_("Generate code for a 68000") },                               \
+    { "c68000", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY      \
+               |MASK_68020|MASK_BITFIELD|MASK_68881),                  \
+      N_("Generate code for a 68000") },                               \
+    { "bitfield", MASK_BITFIELD,                                       \
+      N_("Use the bit-field instructions") },                          \
+    { "nobitfield", - MASK_BITFIELD,                                   \
+      N_("Do not use the bit-field instructions") },                   \
+    { "rtd", MASK_RTD,                                                 \
+      N_("Use different calling convention using 'rtd'") },            \
+    { "nortd", - MASK_RTD,                                             \
+      N_("Use normal calling convention") },                           \
+    { "short", MASK_SHORT,                                             \
+      N_("Consider type `int' to be 16 bits wide") },                  \
+    { "noshort", - MASK_SHORT,                                         \
+      N_("Consider type `int' to be 32 bits wide") },                  \
+    { "68881", MASK_68881, "" },                                       \
+    { "soft-float", - (MASK_68040_ONLY|MASK_68881),                    \
+      N_("Generate code with library calls for floating point") },     \
+    { "68020-40", -(MASK_ALL_CF_BITS|MASK_68060|MASK_68040_ONLY),              \
+      N_("Generate code for a 68040, without any new instructions") }, \
+    { "68020-40", (MASK_BITFIELD|MASK_68881|MASK_68020|MASK_68040), ""},\
+    { "68020-60", -(MASK_ALL_CF_BITS|MASK_68040_ONLY),                         \
+      N_("Generate code for a 68060, without any new instructions") }, \
+    { "68020-60", (MASK_BITFIELD|MASK_68881|MASK_68020|MASK_68040      \
+                  |MASK_68060), "" },                                  \
+    { "68030", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY),     \
+      N_("Generate code for a 68030") },                               \
+    { "68030", (MASK_68020|MASK_BITFIELD), "" },                       \
+    { "68040", - (MASK_ALL_CF_BITS|MASK_68060),                                \
+      N_("Generate code for a 68040") },                               \
     { "68040", (MASK_68020|MASK_68881|MASK_BITFIELD                    \
-               |MASK_68040_ONLY|MASK_68040)},                          \
-    { "68060", - (MASK_5200|MASK_68040)},                              \
+               |MASK_68040_ONLY|MASK_68040), "" },                     \
+    { "68060", - (MASK_ALL_CF_BITS|MASK_68040),                                \
+      N_("Generate code for a 68060") },                               \
     { "68060", (MASK_68020|MASK_68881|MASK_BITFIELD                    \
-               |MASK_68040_ONLY|MASK_68060)},                          \
-    { "5200", - (MASK_68060|MASK_68040|MASK_68020|MASK_BITFIELD|MASK_68881)}, \
-    { "5200", (MASK_5200)},                                            \
-    { "68851", 0},                                                     \
-    { "no-68851", 0},                                                  \
-    { "68302", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY      \
-                 |MASK_68020|MASK_BITFIELD|MASK_68881)},               \
-    { "68332", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY      \
-                 |MASK_BITFIELD)},                                     \
-    { "68332", MASK_68020},                                            \
-    { "cpu32", - (MASK_5200|MASK_68060|MASK_68040|MASK_68040_ONLY      \
-                 |MASK_BITFIELD)},                                     \
-    { "cpu32", MASK_68020},                                            \
-    { "align-int", MASK_ALIGN_INT },                                   \
-    { "no-align-int", -MASK_ALIGN_INT },                               \
+               |MASK_68040_ONLY|MASK_68060), "" },                     \
+    { "5200", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY|MASK_68020     \
+               |MASK_BITFIELD|MASK_68881),                             \
+      N_("Generate code for a 520X") },                                        \
+    { "5200", (MASK_5200), "" },                                       \
+    { "5206e", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY|MASK_68020    \
+               |MASK_BITFIELD|MASK_68881),                             \
+      N_("Generate code for a 5206e") },                                       \
+    { "5206e", (MASK_5200|MASK_CF_HWDIV), "" },                                        \
+    { "528x", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY|MASK_68020     \
+               |MASK_BITFIELD|MASK_68881),                             \
+      N_("Generate code for a 528x") },                                        \
+    { "528x", (MASK_528x|MASK_CF_HWDIV), "" },                                 \
+    { "5307", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY|MASK_68020     \
+               |MASK_BITFIELD|MASK_68881),                             \
+      N_("Generate code for a 5307") },                                        \
+    { "5307", (MASK_CFV3|MASK_CF_HWDIV), "" },                                 \
+    { "5407", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY|MASK_68020     \
+               |MASK_BITFIELD|MASK_68881),                             \
+      N_("Generate code for a 5407") },                                        \
+    { "5407", (MASK_CFV4|MASK_CF_HWDIV), "" },                                 \
+    { "68851", 0,                                                      \
+      N_("Generate code for a 68851") },                               \
+    { "no-68851", 0,                                                   \
+      N_("Do no generate code for a 68851") },                         \
+    { "68302", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY       \
+                 |MASK_68020|MASK_BITFIELD|MASK_68881),                \
+      N_("Generate code for a 68302") },                               \
+    { "68332", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY       \
+                 |MASK_BITFIELD|MASK_68881),                           \
+      N_("Generate code for a 68332") },                               \
+    { "68332", MASK_68020, "" },                                       \
+    { "cpu32", - (MASK_ALL_CF_BITS|MASK_68060|MASK_68040|MASK_68040_ONLY       \
+                 |MASK_BITFIELD|MASK_68881),                           \
+      N_("Generate code for a cpu32") },                               \
+    { "cpu32", MASK_68020, "" },                                       \
+    { "align-int", MASK_ALIGN_INT,                                     \
+      N_("Align variables on a 32-bit boundary") },                    \
+    { "no-align-int", -MASK_ALIGN_INT,                                         \
+      N_("Align variables on a 16-bit boundary") },                    \
+    { "pcrel", MASK_PCREL,                                             \
+      N_("Generate pc-relative code") },                               \
+    { "strict-align", -MASK_NO_STRICT_ALIGNMENT,                       \
+      N_("Do not use unaligned memory references") },                  \
+    { "no-strict-align", MASK_NO_STRICT_ALIGNMENT,                     \
+      N_("Use unaligned memory references") },                         \
     SUBTARGET_SWITCHES                                                 \
-    { "", TARGET_DEFAULT}}
+    { "", TARGET_DEFAULT, "" }}
 /* TARGET_DEFAULT is defined in sun*.h and isi.h, etc.  */
 
 /* This macro is similar to `TARGET_SWITCHES' but defines names of
@@ -193,9 +314,12 @@ extern int target_flags;
    option if the fixed part matches.  The actual option name is made
    by appending `-m' to the specified name.  */
 #define TARGET_OPTIONS                                                 \
-{ { "align-loops=",    &m68k_align_loops_string },                     \
-  { "align-jumps=",    &m68k_align_jumps_string },                     \
-  { "align-functions=",        &m68k_align_funcs_string },                     \
+{ { "align-loops=",    &m68k_align_loops_string,                       \
+    N_("Loop code aligned to this power of 2"), 0},                    \
+  { "align-jumps=",    &m68k_align_jumps_string,                       \
+    N_("Jump targets are aligned to this power of 2"), 0},             \
+  { "align-functions=",        &m68k_align_funcs_string,                       \
+    N_("Function starts are aligned to this power of 2"), 0},          \
   SUBTARGET_OPTIONS                                                    \
 }
 
@@ -208,13 +332,7 @@ extern int target_flags;
    Don't use this macro to turn on various extra optimizations for
    `-O'.  That is what `OPTIMIZATION_OPTIONS' is for.  */
 
-#define OVERRIDE_OPTIONS               \
-{                                      \
-  override_options();                  \
-  if (! TARGET_68020 && flag_pic == 2) \
-    error("-fPIC is not currently supported on the 68000 or 68010\n"); \
-  SUBTARGET_OVERRIDE_OPTIONS;          \
-}
+#define OVERRIDE_OPTIONS   override_options()
 
 /* These are meant to be redefined in the host dependent files */
 #define SUBTARGET_SWITCHES
@@ -223,14 +341,13 @@ extern int target_flags;
 \f
 /* target machine storage layout */
 
-/* Define for XFmode extended real floating point support.
-   This will automatically cause REAL_ARITHMETIC to be defined.  */
+/* Define for XFmode extended real floating point support.  */
 #define LONG_DOUBLE_TYPE_SIZE 96
 
-/* Define if you don't want extended real, but do want to use the
-   software floating point emulator for REAL_ARITHMETIC and
-   decimal <-> binary conversion. */
-/* #define REAL_ARITHMETIC */
+/* Set the value of FLT_EVAL_METHOD in float.h.  When using 68040 fp
+   instructions, we get proper intermediate rounding, otherwise we 
+   get extended precision results.  */
+#define TARGET_FLT_EVAL_METHOD (TARGET_68040_ONLY ? 0 : 2)
 
 /* Define this if most significant bit is lowest numbered
    in instructions that operate on numbered bit-fields.
@@ -250,22 +367,9 @@ extern int target_flags;
    So let's be consistent.  */
 #define WORDS_BIG_ENDIAN 1
 
-/* number of bits in an addressable storage unit */
-#define BITS_PER_UNIT 8
-
-/* Width in bits of a "word", which is the contents of a machine register.
-   Note that this is not necessarily the width of data type `int';
-   if using 16-bit ints on a 68000, this would still be 32.
-   But on a machine with 16-bit registers, this would be 16.  */
-#define BITS_PER_WORD 32
-
 /* Width of a word, in units (bytes).  */
 #define UNITS_PER_WORD 4
 
-/* Width in bits of a pointer.
-   See also the macro `Pmode' defined below.  */
-#define POINTER_SIZE 32
-
 /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
 #define PARM_BOUNDARY (TARGET_SHORT ? 16 : 32)
 
@@ -280,43 +384,31 @@ extern int target_flags;
 
 /* No data type wants to be aligned rounder than this. 
    Most published ABIs say that ints should be aligned on 16 bit
-   boundries, but cpus with 32 bit busses get better performance
-   aligned on 32 bit boundries.  Coldfires without a misalignment
-   module require 32 bit alignment. */
+   boundaries, but cpus with 32 bit busses get better performance
+   aligned on 32 bit boundaries.  Coldfires without a misalignment
+   module require 32 bit alignment.  */
 #define BIGGEST_ALIGNMENT (TARGET_ALIGN_INT ? 32 : 16)
 
 /* Set this nonzero if move instructions will actually fail to work
    when given unaligned data.  */
-#define STRICT_ALIGNMENT 1
+#define STRICT_ALIGNMENT (TARGET_STRICT_ALIGNMENT)
 
 /* Maximum power of 2 that code can be aligned to.  */
 #define MAX_CODE_ALIGN 2                       /* 4 byte alignment */
 
 /* Align loop starts for optimal branching.  */
-#define ASM_OUTPUT_LOOP_ALIGN(FILE) ASM_OUTPUT_ALIGN ((FILE), m68k_align_loops)
-
-/* This is how to align an instruction for optimal branching. */
-#define ASM_OUTPUT_ALIGN_CODE(FILE) ASM_OUTPUT_ALIGN ((FILE), m68k_align_jumps)
+#define LOOP_ALIGN(LABEL) (m68k_align_loops)
 
-#define SELECT_RTX_SECTION(MODE, X)                                    \
-{                                                                      \
-  if (!flag_pic)                                                       \
-    readonly_data_section();                                           \
-  else if (LEGITIMATE_PIC_OPERAND_P (X))                               \
-    readonly_data_section();                                           \
-  else                                                                 \
-    data_section();                                                    \
-}
+/* This is how to align an instruction for optimal branching.  */
+#define LABEL_ALIGN_AFTER_BARRIER(LABEL) (m68k_align_jumps)
 
 /* Define number of bits in most basic integer type.
    (If undefined, default is BITS_PER_WORD).  */
 
 #define INT_TYPE_SIZE (TARGET_SHORT ? 16 : 32)
 
-/* Define these to avoid dependence on meaning of `int'.
-   Note that WCHAR_TYPE_SIZE is used in cexp.y,
-   where TARGET_SHORT is not available.  */
-
+/* Define these to avoid dependence on meaning of `int'.  */
 #define WCHAR_TYPE "long int"
 #define WCHAR_TYPE_SIZE 32
 \f
@@ -330,21 +422,10 @@ extern int target_flags;
    For the 68000, we give the data registers numbers 0-7,
    the address registers numbers 010-017,
    and the 68881 floating point registers numbers 020-027.  */
-#ifndef SUPPORT_SUN_FPA
-#define FIRST_PSEUDO_REGISTER 24
-#else
-#define FIRST_PSEUDO_REGISTER 56
-#endif
-
-/* This defines the register which is used to hold the offset table for PIC. */
-#define PIC_OFFSET_TABLE_REGNUM 13
-
-/* Used to output a (use pic_offset_table_rtx) so that we 
-   always save/restore a5 in functions that use PIC relocation
-   at *any* time during the compilation process. */
-#define FINALIZE_PIC finalize_pic()
+#define FIRST_PSEUDO_REGISTER 25
 
-#ifndef SUPPORT_SUN_FPA
+/* This defines the register which is used to hold the offset table for PIC.  */
+#define PIC_OFFSET_TABLE_REGNUM (flag_pic ? 13 : INVALID_REGNUM)
 
 /* 1 for registers that have pervasive standard uses
    and are not available for the register allocator.
@@ -372,82 +453,28 @@ extern int target_flags;
   1, 1, 0, 0, 0, 0, 0, 1,   \
   1, 1, 0, 0, 0, 0, 0, 0 }
 
-#else /* SUPPORT_SUN_FPA */
-
-/* 1 for registers that have pervasive standard uses
-   and are not available for the register allocator.
-   On the 68000, only the stack pointer is such.  */
-
-/* fpa0 is also reserved so that it can be used to move shit back and
-   forth between high fpa regs and everything else. */
-
-#define FIXED_REGISTERS        \
- {/* Data registers.  */       \
-  0, 0, 0, 0, 0, 0, 0, 0,      \
-                               \
-  /* Address registers.  */    \
-  0, 0, 0, 0, 0, 0, 0, 1,      \
-                               \
-  /* Floating point registers  \
-     (if available).  */       \
-  0, 0, 0, 0, 0, 0, 0, 0,      \
-                               \
-  /* Sun3 FPA registers.  */   \
-  1, 0, 0, 0, 0, 0, 0, 0,      \
-  0, 0, 0, 0, 0, 0, 0, 0,      \
-  0, 0, 0, 0, 0, 0, 0, 0,      \
-  0, 0, 0, 0, 0, 0, 0, 0 }
-
-/* 1 for registers not available across function calls.
-   These must include the FIXED_REGISTERS and also any
-   registers that can be used without being saved.
-   The latter must include the registers where values are returned
-   and the register where structure-value addresses are passed.
-   Aside from that, you can include as many other registers as you like.  */
-#define CALL_USED_REGISTERS \
- {1, 1, 0, 0, 0, 0, 0, 0, \
-  1, 1, 0, 0, 0, 0, 0, 1, \
-  1, 1, 0, 0, 0, 0, 0, 0, \
-  /* FPA registers.  */   \
-  1, 1, 1, 1, 0, 0, 0, 0, \
-  0, 0, 0, 0, 0, 0, 0, 0, \
-  0, 0, 0, 0, 0, 0, 0, 0, \
-  0, 0, 0, 0, 0, 0, 0, 0  }
-
-#endif /* defined SUPPORT_SUN_FPA */
-
 
 /* Make sure everything's fine if we *don't* have a given processor.
    This assumes that putting a register in fixed_regs will keep the
    compiler's mitts completely off it.  We don't bother to zero it out
-   of register classes.  If neither TARGET_FPA or TARGET_68881 is set,
-   the compiler won't touch since no instructions that use these
-   registers will be valid.  */
-
-#ifdef SUPPORT_SUN_FPA
-
-#define CONDITIONAL_REGISTER_USAGE \
-{                                              \
-  int i;                                       \
-  HARD_REG_SET x;                              \
-  if (!TARGET_FPA)                             \
-    {                                          \
-      COPY_HARD_REG_SET (x, reg_class_contents[(int)FPA_REGS]); \
-      for (i = 0; i < FIRST_PSEUDO_REGISTER; i++ ) \
-       if (TEST_HARD_REG_BIT (x, i))           \
-       fixed_regs[i] = call_used_regs[i] = 1;  \
-    }                                          \
-  if (TARGET_FPA)                              \
-    {                                          \
-      COPY_HARD_REG_SET (x, reg_class_contents[(int)FP_REGS]); \
-      for (i = 0; i < FIRST_PSEUDO_REGISTER; i++ ) \
-       if (TEST_HARD_REG_BIT (x, i))           \
-       fixed_regs[i] = call_used_regs[i] = 1;  \
-    }                                          \
+   of register classes.  */
+
+#define CONDITIONAL_REGISTER_USAGE                             \
+{                                                              \
+  int i;                                                       \
+  HARD_REG_SET x;                                              \
+  if (! TARGET_68881)                                          \
+    {                                                          \
+      COPY_HARD_REG_SET (x, reg_class_contents[(int)FP_REGS]); \
+      for (i = 0; i < FIRST_PSEUDO_REGISTER; i++ )             \
+       if (TEST_HARD_REG_BIT (x, i))                           \
+       fixed_regs[i] = call_used_regs[i] = 1;                  \
+    }                                                          \
+  if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM)               \
+    fixed_regs[PIC_OFFSET_TABLE_REGNUM]                                \
+      = call_used_regs[PIC_OFFSET_TABLE_REGNUM] = 1;           \
 }
 
-#endif /* defined SUPPORT_SUN_FPA */
-
 /* Return number of consecutive hard regs needed starting at reg REGNO
    to hold something of mode MODE.
    This is ordinarily the length in words of a value of mode MODE
@@ -460,43 +487,18 @@ extern int target_flags;
   ((REGNO) >= 16 ? GET_MODE_NUNITS (MODE)      \
    : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
 
-#ifndef SUPPORT_SUN_FPA
-
 /* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
    On the 68000, the cpu registers can hold any mode but the 68881 registers
-   can hold only SFmode or DFmode.  The 68881 registers can't hold anything
-   if 68881 use is disabled.  */
+   can hold only SFmode or DFmode.  */
 
 #define HARD_REGNO_MODE_OK(REGNO, MODE) \
   (((REGNO) < 16                                       \
-   && !((REGNO) < 8 && (REGNO) + GET_MODE_SIZE ((MODE)) / 4 > 8))      \
-   || ((REGNO) < 24                                    \
-       && TARGET_68881                                  \
+    && !((REGNO) < 8 && (REGNO) + GET_MODE_SIZE (MODE) / 4 > 8))       \
+   || ((REGNO) >= 16 && (REGNO) < 24                                   \
        && (GET_MODE_CLASS (MODE) == MODE_FLOAT         \
-          || GET_MODE_CLASS (MODE) == MODE_COMPLEX_FLOAT)))
-
-#else /* defined SUPPORT_SUN_FPA */
-
-/* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
-   On the 68000, the cpu registers can hold any mode but the 68881 registers
-   can hold only SFmode or DFmode.  And the 68881 registers can't hold anything
-   if 68881 use is disabled.  However, the Sun FPA register can
-   (apparently) hold whatever you feel like putting in them.
-   If using the fpa, don't put a double in d7/a0.  */
+          || GET_MODE_CLASS (MODE) == MODE_COMPLEX_FLOAT)              \
+       && GET_MODE_UNIT_SIZE (MODE) <= 12))
 
-#define HARD_REGNO_MODE_OK(REGNO, MODE) \
-(((REGNO) < 16                                                         \
-  && !(TARGET_FPA                                                      \
-       && GET_MODE_CLASS ((MODE)) != MODE_INT                          \
-       && GET_MODE_UNIT_SIZE ((MODE)) > 4                              \
-       && (REGNO) < 8 && (REGNO) + GET_MODE_SIZE ((MODE)) / 4 > 8      \
-       && (REGNO) % (GET_MODE_UNIT_SIZE ((MODE)) / 4) != 0))           \
- || ((REGNO) < 24                                                      \
-     ? TARGET_68881 && (GET_MODE_CLASS (MODE) == MODE_FLOAT            \
-                       || GET_MODE_CLASS (MODE) == MODE_COMPLEX_FLOAT) \
-     : ((REGNO) < 56 ? TARGET_FPA : 0)))
-
-#endif /* defined SUPPORT_SUN_FPA */
 
 /* Value is 1 if it is a good idea to tie two pseudo registers
    when one has mode MODE1 and one has mode MODE2.
@@ -527,8 +529,11 @@ extern int target_flags;
    This is computed in `reload', in reload1.c.  */
 #define FRAME_POINTER_REQUIRED 0
 
-/* Base register for access to arguments of the function.  */
-#define ARG_POINTER_REGNUM 14
+/* Base register for access to arguments of the function.
+ * This isn't a hardware register. It will be eliminated to the
+ * stack pointer or frame pointer.
+ */
+#define ARG_POINTER_REGNUM 24
 
 /* Register in which static-chain is passed to a function.  */
 #define STATIC_CHAIN_REGNUM 8
@@ -560,8 +565,6 @@ extern int target_flags;
 /* The 68000 has three kinds of registers, so eight classes would be
    a complete set.  One of them is not needed.  */
 
-#ifndef SUPPORT_SUN_FPA
-
 enum reg_class {
   NO_REGS, DATA_REGS,
   ADDR_REGS, FP_REGS,
@@ -571,7 +574,7 @@ enum reg_class {
 
 #define N_REG_CLASSES (int) LIM_REG_CLASSES
 
-/* Give names of register classes as strings for dump file.   */
+/* Give names of register classes as strings for dump file.  */
 
 #define REG_CLASS_NAMES \
  { "NO_REGS", "DATA_REGS",              \
@@ -585,14 +588,14 @@ enum reg_class {
 
 #define REG_CLASS_CONTENTS \
 {                                      \
0x00000000,           /* NO_REGS */           \
0x000000ff,   /* DATA_REGS */         \
0x0000ff00,   /* ADDR_REGS */         \
0x00ff0000,   /* FP_REGS */           \
0x0000ffff,   /* GENERAL_REGS */      \
0x00ff00ff,   /* DATA_OR_FP_REGS */   \
0x00ffff00,    /* ADDR_OR_FP_REGS */   \
0x00ffffff,   /* ALL_REGS */          \
 {0x00000000},  /* NO_REGS */         \
 {0x000000ff},  /* DATA_REGS */       \
 {0x0000ff00},  /* ADDR_REGS */       \
 {0x00ff0000},  /* FP_REGS */         \
 {0x0000ffff},  /* GENERAL_REGS */    \
 {0x00ff00ff},  /* DATA_OR_FP_REGS */ \
 {0x00ffff00},  /* ADDR_OR_FP_REGS */ \
 {0x00ffffff},  /* ALL_REGS */                \
 }
 
 /* The same information, inverted:
@@ -602,68 +605,6 @@ enum reg_class {
 
 #define REGNO_REG_CLASS(REGNO) (((REGNO)>>3)+1)
 
-#else /* defined SUPPORT_SUN_FPA */
-
-/*
- * Notes on final choices:
- *
- *   1) Didn't feel any need to union-ize LOW_FPA_REGS with anything
- * else.
- *   2) Removed all unions that involve address registers with
- * floating point registers (left in unions of address and data with
- * floating point).
- *   3) Defined GENERAL_REGS as ADDR_OR_DATA_REGS.
- *   4) Defined ALL_REGS as FPA_OR_FP_OR_GENERAL_REGS.
- *   4) Left in everything else.
- */
-enum reg_class { NO_REGS, LO_FPA_REGS, FPA_REGS, FP_REGS,
-  FP_OR_FPA_REGS, DATA_REGS, DATA_OR_FPA_REGS, DATA_OR_FP_REGS,
-  DATA_OR_FP_OR_FPA_REGS, ADDR_REGS, GENERAL_REGS,
-  GENERAL_OR_FPA_REGS, GENERAL_OR_FP_REGS, ALL_REGS,
-  LIM_REG_CLASSES };
-
-#define N_REG_CLASSES (int) LIM_REG_CLASSES
-
-/* Give names of register classes as strings for dump file.   */
-
-#define REG_CLASS_NAMES \
- { "NO_REGS", "LO_FPA_REGS", "FPA_REGS", "FP_REGS",  \
-   "FP_OR_FPA_REGS", "DATA_REGS", "DATA_OR_FPA_REGS", "DATA_OR_FP_REGS",  \
-   "DATA_OR_FP_OR_FPA_REGS", "ADDR_REGS", "GENERAL_REGS",  \
-   "GENERAL_OR_FPA_REGS", "GENERAL_OR_FP_REGS", "ALL_REGS" }
-
-/* Define which registers fit in which classes.
-   This is an initializer for a vector of HARD_REG_SET
-   of length N_REG_CLASSES.  */
-
-#define REG_CLASS_CONTENTS \
-{                                                      \
- {0, 0},                       /* NO_REGS */           \
- {0xff000000, 0x000000ff},     /* LO_FPA_REGS */       \
- {0xff000000, 0x00ffffff},     /* FPA_REGS */          \
- {0x00ff0000, 0x00000000},     /* FP_REGS */           \
- {0xffff0000, 0x00ffffff},     /* FP_OR_FPA_REGS */    \
- {0x000000ff, 0x00000000},     /* DATA_REGS */         \
- {0xff0000ff, 0x00ffffff},     /* DATA_OR_FPA_REGS */  \
- {0x00ff00ff, 0x00000000},     /* DATA_OR_FP_REGS */   \
- {0xffff00ff, 0x00ffffff},     /* DATA_OR_FP_OR_FPA_REGS */\
- {0x0000ff00, 0x00000000},     /* ADDR_REGS */         \
- {0x0000ffff, 0x00000000},     /* GENERAL_REGS */      \
- {0xff00ffff, 0x00ffffff},     /* GENERAL_OR_FPA_REGS */\
- {0x00ffffff, 0x00000000},     /* GENERAL_OR_FP_REGS */\
- {0xffffffff, 0x00ffffff},     /* ALL_REGS */          \
-}
-
-/* The same information, inverted:
-   Return the class number of the smallest class containing
-   reg number REGNO.  This could be a conditional expression
-   or could index an array.  */
-
-extern enum reg_class regno_reg_class[];
-#define REGNO_REG_CLASS(REGNO) (regno_reg_class[(REGNO)>>3])
-
-#endif /* SUPPORT_SUN_FPA */
-
 /* The class value for index registers, and the one for base regs.  */
 
 #define INDEX_REG_CLASS GENERAL_REGS
@@ -674,9 +615,7 @@ extern enum reg_class regno_reg_class[];
    machine description; we zorch the constraint letters that aren't
    appropriate for a specific target.  This allows us to guarantee
    that a specific kind of register will not be used for a given target
-   without fiddling with the register classes above. */
-
-#ifndef SUPPORT_SUN_FPA
+   without fiddling with the register classes above.  */
 
 #define REG_CLASS_FROM_LETTER(C) \
   ((C) == 'a' ? ADDR_REGS :                    \
@@ -685,21 +624,6 @@ extern enum reg_class regno_reg_class[];
                   NO_REGS) :                   \
      NO_REGS)))
 
-#else /* defined SUPPORT_SUN_FPA */
-
-#define REG_CLASS_FROM_LETTER(C) \
-  ((C) == 'a' ? ADDR_REGS :                    \
-   ((C) == 'd' ? DATA_REGS :                   \
-    ((C) == 'f' ? (TARGET_68881 ? FP_REGS :    \
-                  NO_REGS) :                   \
-     ((C) == 'x' ? (TARGET_FPA ? FPA_REGS :    \
-                   NO_REGS) :                  \
-      ((C) == 'y' ? (TARGET_FPA ? LO_FPA_REGS :        \
-                    NO_REGS) :                 \
-       NO_REGS)))))
-
-#endif /* defined SUPPORT_SUN_FPA */
-
 /* The letters I, J, K, L and M in a register constraint string
    can be used to stand for particular ranges of immediate operands.
    This macro defines what the ranges are.
@@ -721,7 +645,7 @@ extern enum reg_class regno_reg_class[];
    (C) == 'J' ? (VALUE) >= -0x8000 && (VALUE) <= 0x7FFF : \
    (C) == 'K' ? (VALUE) < -0x80 || (VALUE) >= 0x80 : \
    (C) == 'L' ? (VALUE) < 0 && (VALUE) >= -8 : \
-   (C) == 'M' ? (VALUE) < -0x100 && (VALUE) >= 0x100 : \
+   (C) == 'M' ? (VALUE) < -0x100 || (VALUE) >= 0x100 : \
    (C) == 'N' ? (VALUE) >= 24 && (VALUE) <= 31 : \
    (C) == 'O' ? (VALUE) == 16 : \
    (C) == 'P' ? (VALUE) >= 8 && (VALUE) <= 15 : 0)
@@ -730,18 +654,10 @@ extern enum reg_class regno_reg_class[];
  * A small bit of explanation:
  * "G" defines all of the floating constants that are *NOT* 68881
  * constants.  this is so 68881 constants get reloaded and the
- * fpmovecr is used.  "H" defines *only* the class of constants that
- * the fpa can use, because these can be gotten at in any fpa
- * instruction and there is no need to force reloads.
+ * fpmovecr is used.
  */
-#ifndef SUPPORT_SUN_FPA
 #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C)  \
   ((C) == 'G' ? ! (TARGET_68881 && standard_68881_constant_p (VALUE)) : 0 )
-#else /* defined SUPPORT_SUN_FPA */
-#define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C)  \
-  ((C) == 'G' ? ! (TARGET_68881 && standard_68881_constant_p (VALUE)) : \
-   (C) == 'H' ? (TARGET_FPA && standard_sun_fpa_constant_p (VALUE)) : 0)
-#endif /* defined SUPPORT_SUN_FPA */
 
 /* A C expression that defines the optional machine-dependent constraint
    letters that can be used to segregate specific types of operands,  
@@ -750,11 +666,35 @@ extern enum reg_class regno_reg_class[];
    C.  If C is not defined as an extra constraint, the value returned should 
    be 0 regardless of VALUE.  */
 
-/* For the m68k, `Q' means address register indirect addressing mode. */
-
-#define EXTRA_CONSTRAINT(OP, C)        \
-  ((C) == 'Q' ? (GET_CODE (OP) == MEM && GET_CODE (XEXP (OP, 0)) == REG) : \
-   0 )
+/* Letters in the range `Q' through `U' may be defined in a
+   machine-dependent fashion to stand for arbitrary operand types. 
+   The machine description macro `EXTRA_CONSTRAINT' is passed the
+   operand as its first argument and the constraint letter as its
+   second operand.
+
+   `Q' means address register indirect addressing mode.
+   `S' is for operands that satisfy 'm' when -mpcrel is in effect.
+   `T' is for operands that satisfy 's' when -mpcrel is not in effect.  */
+
+#define EXTRA_CONSTRAINT(OP,CODE)                      \
+  (((CODE) == 'S')                                     \
+   ? (TARGET_PCREL                                     \
+      && GET_CODE (OP) == MEM                          \
+      && (GET_CODE (XEXP (OP, 0)) == SYMBOL_REF                \
+         || GET_CODE (XEXP (OP, 0)) == LABEL_REF       \
+         || GET_CODE (XEXP (OP, 0)) == CONST))         \
+   :                                                   \
+  (((CODE) == 'T')                                     \
+   ? ( !TARGET_PCREL                                   \
+      && (GET_CODE (OP) == SYMBOL_REF                  \
+         || GET_CODE (OP) == LABEL_REF                 \
+         || GET_CODE (OP) == CONST))                   \
+   :                                                   \
+  (((CODE) == 'Q')                                     \
+   ? (GET_CODE (OP) == MEM                             \
+      && GET_CODE (XEXP (OP, 0)) == REG)               \
+   :                                                   \
+   0)))
 
 /* Given an rtx X being reloaded into a reg required to be
    in class CLASS, return the class of reg to actually use.
@@ -762,10 +702,7 @@ extern enum reg_class regno_reg_class[];
    in some cases it is preferable to use a more restrictive class.
    On the 68000 series, use a data reg if possible when the
    value is a constant in the range where moveq could be used
-   and we ensure that QImodes are reloaded into data regs.
-   Also, if a floating constant needs reloading, put it in memory.
-   Don't do this for !G constants, since all patterns in the md file
-   expect them to be loaded into a register via fpmovecr.  See above.  */
+   and we ensure that QImodes are reloaded into data regs.  */
 
 #define PREFERRED_RELOAD_CLASS(X,CLASS)  \
   ((GET_CODE (X) == CONST_INT                  \
@@ -774,11 +711,14 @@ extern enum reg_class regno_reg_class[];
    ? DATA_REGS                                 \
    : (GET_MODE (X) == QImode && (CLASS) != ADDR_REGS) \
    ? DATA_REGS                                 \
-   : (GET_CODE (X) == CONST_DOUBLE             \
-      && GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT) \
-   ? (! CONST_DOUBLE_OK_FOR_LETTER_P (X, 'G')  \
-      && (CLASS == FP_REGS || CLASS == DATA_OR_FP_REGS) \
-      ? FP_REGS : NO_REGS)                     \
+   : (GET_CODE (X) == CONST_DOUBLE                                     \
+      && GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT)                  \
+   ? (TARGET_68881 && (CLASS == FP_REGS || CLASS == DATA_OR_FP_REGS)   \
+      ? FP_REGS : NO_REGS)                                             \
+   : (TARGET_PCREL                             \
+      && (GET_CODE (X) == SYMBOL_REF || GET_CODE (X) == CONST \
+         || GET_CODE (X) == LABEL_REF))        \
+   ? ADDR_REGS                                 \
    : (CLASS))
 
 /* Force QImode output reloads from subregs to be allocated to data regs,
@@ -795,34 +735,15 @@ extern enum reg_class regno_reg_class[];
    needed to represent mode MODE in a register of class CLASS.  */
 /* On the 68000, this is the size of MODE in words,
    except in the FP regs, where a single reg is always enough.  */
-#ifndef SUPPORT_SUN_FPA
-
 #define CLASS_MAX_NREGS(CLASS, MODE)   \
  ((CLASS) == FP_REGS ? 1 \
   : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
 
 /* Moves between fp regs and other regs are two insns.  */
-#define REGISTER_MOVE_COST(CLASS1, CLASS2)             \
+#define REGISTER_MOVE_COST(MODE, CLASS1, CLASS2)       \
   (((CLASS1) == FP_REGS && (CLASS2) != FP_REGS)                \
     || ((CLASS2) == FP_REGS && (CLASS1) != FP_REGS)    \
     ? 4 : 2)
-
-#else /* defined SUPPORT_SUN_FPA */
-
-#define CLASS_MAX_NREGS(CLASS, MODE)   \
- ((CLASS) == FP_REGS || (CLASS) == FPA_REGS || (CLASS) == LO_FPA_REGS ? 1 \
-  : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
-
-/* Moves between fp regs and other regs are two insns.  */
-/* Likewise for high fpa regs and other regs.  */
-#define REGISTER_MOVE_COST(CLASS1, CLASS2)             \
-  ((((CLASS1) == FP_REGS && (CLASS2) != FP_REGS)       \
-    || ((CLASS2) == FP_REGS && (CLASS1) != FP_REGS)    \
-    || ((CLASS1) == FPA_REGS && (CLASS2) != FPA_REGS)  \
-    || ((CLASS2) == FPA_REGS && (CLASS1) != FPA_REGS)) \
-   ? 4 : 2)
-
-#endif /* define SUPPORT_SUN_FPA */
 \f
 /* Stack layout; function entry, exit and calling.  */
 
@@ -830,11 +751,6 @@ extern enum reg_class regno_reg_class[];
    makes the stack pointer a smaller address.  */
 #define STACK_GROWS_DOWNWARD
 
-/* Nonzero if we need to generate stack-probe insns.
-   On most systems they are not needed.
-   When they are needed, define this as the stack offset to probe at.  */
-#define NEED_PROBE 0
-
 /* Define this if the nominal address of the stack frame
    is at the high-address end of the local variables;
    that is, each additional local variable allocated
@@ -851,7 +767,12 @@ extern enum reg_class regno_reg_class[];
    this says how many the stack pointer really advances by.
    On the 68000, sp@- in a byte insn really pushes a word.
    On the 5200 (coldfire), sp@- in a byte insn pushes just a byte.  */
-#define PUSH_ROUNDING(BYTES) (TARGET_5200 ? BYTES : ((BYTES) + 1) & ~1)
+#define PUSH_ROUNDING(BYTES) (TARGET_COLDFIRE ? BYTES : ((BYTES) + 1) & ~1)
+
+/* We want to avoid trying to push bytes.  */
+#define MOVE_BY_PIECES_P(SIZE, ALIGN) \
+  (move_by_pieces_ninsns (SIZE, ALIGN) < MOVE_RATIO \
+    && (((SIZE) >=16 && (ALIGN) >= 16) || (TARGET_COLDFIRE)))
 
 /* Offset of first parameter from the argument pointer register value.  */
 #define FIRST_PARM_OFFSET(FNDECL) 8
@@ -887,14 +808,14 @@ extern enum reg_class regno_reg_class[];
 /* On the 68000 the return value is in D0 regardless.  */
 
 #define FUNCTION_VALUE(VALTYPE, FUNC)  \
-  gen_rtx (REG, TYPE_MODE (VALTYPE), 0)
+  gen_rtx_REG (TYPE_MODE (VALTYPE), 0)
 
 /* Define how to find the value returned by a library function
    assuming the value has mode MODE.  */
 
 /* On the 68000 the return value is in D0 regardless.  */
 
-#define LIBCALL_VALUE(MODE)  gen_rtx (REG, MODE, 0)
+#define LIBCALL_VALUE(MODE)  gen_rtx_REG (MODE, 0)
 
 /* 1 if N is a possible register number for a function value.
    On the 68000, d0 is the only register thus used.  */
@@ -964,7 +885,7 @@ extern enum reg_class regno_reg_class[];
    It exists only to test register calling conventions.  */
 
 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \
-((TARGET_REGPARM && (CUM) < 8) ? gen_rtx (REG, (MODE), (CUM) / 4) : 0)
+((TARGET_REGPARM && (CUM) < 8) ? gen_rtx_REG ((MODE), (CUM) / 4) : 0)
 
 /* For an arg passed partly in registers and partly in memory,
    this is the number of registers used.
@@ -977,177 +898,12 @@ extern enum reg_class regno_reg_class[];
                      : GET_MODE_SIZE (MODE))))                 \
  ? 2 - (CUM) / 4 : 0)
 
-/* Generate the assembly code for function entry. */
-#define FUNCTION_PROLOGUE(FILE, SIZE) output_function_prologue(FILE, SIZE)
-
 /* Output assembler code to FILE to increment profiler label # LABELNO
    for profiling a function entry.  */
 
 #define FUNCTION_PROFILER(FILE, LABELNO)  \
   asm_fprintf (FILE, "\tlea %LLP%d,%Ra0\n\tjsr mcount\n", (LABELNO))
 
-/* Output assembler code to FILE to initialize this source file's
-   basic block profiling info, if that has not already been done.  */
-
-#define FUNCTION_BLOCK_PROFILER(FILE, BLOCK_OR_LABEL)  \
-do                                                     \
-  {                                                    \
-    switch (profile_block_flag)                                \
-      {                                                        \
-      case 2:                                          \
-        asm_fprintf (FILE, "\tpea %d\n\tpea %LLPBX0\n\tjsr %U__bb_init_trace_func\n\taddql %I8,%Rsp\n", \
-                           (BLOCK_OR_LABEL)); \
-        break;                                         \
-                                                       \
-      default:                                         \
-        asm_fprintf (FILE, "\ttstl %LLPBX0\n\tbne %LLPI%d\n\tpea %LLPBX0\n\tjsr %U__bb_init_func\n\taddql %I4,%Rsp\n%LLPI%d:\n", \
-                           (BLOCK_OR_LABEL), (BLOCK_OR_LABEL)); \
-        break;                                         \
-      }                                                        \
-  }                                                    \
-while(0)
-
-/* Output assembler code to FILE to increment the counter for
-   the BLOCKNO'th basic block in this source file.  */
-
-#define BLOCK_PROFILER(FILE, BLOCKNO)  \
-do                                                     \
-  {                                                    \
-    switch (profile_block_flag)                                \
-      {                                                        \
-      case 2:                                          \
-        asm_fprintf (FILE, "\tmovel %Ra1,%Rsp@-\n\tlea ___bb,%Ra1\n\tmovel %I%d,%Ra1@(0)\n\tmovel %I%LLPBX0,%Ra1@(4)\n\tmovel %Rsp@+,%Ra1\n\tjsr %U__bb_trace_func\n", \
-                           BLOCKNO);                   \
-        break;                                         \
-                                                       \
-      default:                                         \
-        asm_fprintf (FILE, "\taddql %I1,%LLPBX2+%d\n", 4 * BLOCKNO); \
-        break;                                         \
-      }                                                        \
-  }                                                    \
-while(0)
-
-/* Output assembler code to FILE to indicate return from 
-   a function during basic block profiling. */
-
-#define FUNCTION_BLOCK_PROFILER_EXIT(FILE)             \
-  asm_fprintf (FILE, "\tjsr %U__bb_trace_ret\n");
-
-/* Save all registers which may be clobbered by a function call.
-   MACHINE_STATE_SAVE and MACHINE_STATE_RESTORE are target-code macros,
-   used in libgcc2.c.  They may not refer to TARGET_* macros !!! */
-#if defined (__mc68010__) || defined(mc68010) \
-       || defined(__mc68020__) || defined(mc68020) \
-       || defined(__mc68030__) || defined(mc68030) \
-       || defined(__mc68040__) || defined(mc68040) \
-       || defined(__mc68332__) || defined(mc68332)
-#define MACHINE_STATE_m68010_up
-#endif
-
-#ifdef MOTOROLA
-#if defined(__mcf5200__)
-#define MACHINE_STATE_SAVE(id)         \
-    {                                  \
-      asm ("sub.l 20,%sp");            \
-      asm ("movm.l &0x0303,4(%sp)");   \
-      asm ("move.w %ccr,%d0");         \
-      asm ("movm.l &0x0001,(%sp)");    \
-    }
-#else /* !__mcf5200__ */
-#if defined(MACHINE_STATE_m68010_up)
-#ifdef __HPUX_ASM__
-/* HPUX assembler does not accept %ccr.  */
-#define MACHINE_STATE_SAVE(id)         \
-    {                                  \
-      asm ("move.w %cc,-(%sp)");       \
-      asm ("movm.l &0xc0c0,-(%sp)");   \
-    }
-#else /* ! __HPUX_ASM__ */
-#define MACHINE_STATE_SAVE(id)         \
-    {                                  \
-      asm ("move.w %ccr,-(%sp)");      \
-      asm ("movm.l &0xc0c0,-(%sp)");   \
-    }
-#endif /* __HPUX_ASM__ */
-#else /* !MACHINE_STATE_m68010_up */
-#define MACHINE_STATE_SAVE(id)         \
-    {                                  \
-      asm ("move.w %sr,-(%sp)");       \
-      asm ("movm.l &0xc0c0,-(%sp)");   \
-    }
-#endif /* MACHINE_STATE_m68010_up */
-#endif /* __mcf5200__ */
-#else /* !MOTOROLA */
-#if defined(__mcf5200__)
-#define MACHINE_STATE_SAVE(id)         \
-    {                                  \
-      asm ("subl %#20,%/sp" : );       \
-      asm ("movml %/d0/%/d1/%/a0/%/a1,%/sp@(4)" : ); \
-      asm ("movew %/cc,%/d0" : );      \
-      asm ("movml %/d0,%/sp@" : );     \
-    }
-#else /* !__mcf5200__ */
-#if defined(MACHINE_STATE_m68010_up)
-#define MACHINE_STATE_SAVE(id)         \
-    {                                  \
-      asm ("movew %/cc,%/sp@-" : );    \
-      asm ("moveml %/d0/%/d1/%/a0/%/a1,%/sp@-" : ); \
-    }
-#else /* !MACHINE_STATE_m68010_up */
-#define MACHINE_STATE_SAVE(id)         \
-    {                                  \
-      asm ("movew %/sr,%/sp@-" : );    \
-      asm ("moveml %/d0/%/d1/%/a0/%/a1,%/sp@-" : ); \
-    }
-#endif /* MACHINE_STATE_m68010_up */
-#endif /* __mcf5200__ */
-#endif /* MOTOROLA */
-
-/* Restore all registers saved by MACHINE_STATE_SAVE. */
-
-#ifdef MOTOROLA
-#if defined(__mcf5200__)
-#define MACHINE_STATE_RESTORE(id)      \
-    {                                  \
-      asm ("movm.l (%sp),&0x0001");    \
-      asm ("move.w %d0,%ccr");         \
-      asm ("movm.l 4(%sp),&0x0303");   \
-      asm ("add.l 20,%sp");            \
-    }
-#else /* !__mcf5200__ */
-#ifdef __HPUX_ASM__
-/* HPUX assembler does not accept %ccr.  */
-#define MACHINE_STATE_RESTORE(id)      \
-    {                                  \
-      asm ("movm.l (%sp)+,&0x0303");   \
-      asm ("move.w (%sp)+,%cc");       \
-    }
-#else /* ! __HPUX_ASM__ */
-#define MACHINE_STATE_RESTORE(id)      \
-    {                                  \
-      asm ("movm.l (%sp)+,&0x0303");   \
-      asm ("move.w (%sp)+,%ccr");      \
-    }
-#endif /* __HPUX_ASM__ */
-#endif /* __mcf5200__ */
-#else /* !MOTOROLA */
-#if defined(__mcf5200__)
-#define MACHINE_STATE_RESTORE(id)      \
-    {                                  \
-      asm ("movml %/sp@,%/d0" : );     \
-      asm ("movew %/d0,%/cc" : );      \
-      asm ("movml %/sp@(4),%/d0/%/d1/%/a0/%/a1" : ); \
-      asm ("addl %#20,%/sp" : );       \
-    }
-#else /* !__mcf5200__ */
-#define MACHINE_STATE_RESTORE(id)      \
-    {                                  \
-      asm ("moveml %/sp@+,%/d0/%/d1/%/a0/%/a1" : ); \
-      asm ("movew %/sp@+,%/cc" : );    \
-    }
-#endif /* __mcf5200__ */
-#endif /* MOTOROLA */
-
 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
    the stack pointer does not matter.  The value is tested only in
    functions that have frame pointers.
@@ -1155,9 +911,6 @@ while(0)
 
 #define EXIT_IGNORE_STACK 1
 
-/* Generate the assembly code for function exit. */
-#define FUNCTION_EPILOGUE(FILE, SIZE) output_function_epilogue (FILE, SIZE)
-  
 /* This is a hook for other tm files to change.  */
 /* #define FUNCTION_EXTRA_EPILOGUE(FILE, SIZE) */
 
@@ -1165,30 +918,6 @@ while(0)
    You should override this if you define FUNCTION_EXTRA_EPILOGUE.  */
 #define USE_RETURN_INSN use_return_insn ()
 
-/* Store in the variable DEPTH the initial difference between the
-   frame pointer reg contents and the stack pointer reg contents,
-   as of the start of the function body.  This depends on the layout
-   of the fixed parts of the stack frame and on how registers are saved.
-
-   On the 68k, if we have a frame, we must add one word to its length
-   to allow for the place that a6 is stored when we do have a frame pointer.
-   Otherwise, we would need to compute the offset from the frame pointer
-   of a local variable as a function of frame_pointer_needed, which
-   is hard.  */
-
-#define INITIAL_FRAME_POINTER_OFFSET(DEPTH)                    \
-{ int regno;                                                   \
-  int offset = -4;                                             \
-  for (regno = 16; regno < FIRST_PSEUDO_REGISTER; regno++)     \
-    if (regs_ever_live[regno] && ! call_used_regs[regno])      \
-      offset += 12;                                            \
-  for (regno = 0; regno < 16; regno++)                         \
-    if (regs_ever_live[regno] && ! call_used_regs[regno])      \
-      offset += 4;                                             \
-  (DEPTH) = (offset + ((get_frame_size () + 3) & -4)           \
-            + (get_frame_size () == 0 ? 0 : 4));               \
-}
-
 /* Output assembler code for a block containing the constant parts
    of a trampoline, leaving space for the variable parts.  */
 
@@ -1226,15 +955,19 @@ while(0)
 
 /* Emit RTL insns to initialize the variable parts of a trampoline.
    FNADDR is an RTX for the address of the function's pure code.
-   CXT is an RTX for the static chain value for the function.  */
+   CXT is an RTX for the static chain value for the function.
+
+   We generate a two-instructions program at address TRAMP :
+       movea.l &CXT,%a0
+       jmp FNADDR                                      */
 
 #define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT)                      \
 {                                                                      \
-  emit_move_insn (gen_rtx (MEM, HImode, TRAMP), GEN_INT(0x207C));      \
-  emit_move_insn (gen_rtx (MEM, SImode, plus_constant (TRAMP, 2)), CXT); \
-  emit_move_insn (gen_rtx (MEM, HImode, plus_constant (TRAMP, 6)),     \
+  emit_move_insn (gen_rtx_MEM (HImode, TRAMP), GEN_INT(0x207C));       \
+  emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 2)), CXT); \
+  emit_move_insn (gen_rtx_MEM (HImode, plus_constant (TRAMP, 6)),      \
                  GEN_INT(0x4EF9));                                     \
-  emit_move_insn (gen_rtx (MEM, SImode, plus_constant (TRAMP, 8)), FNADDR); \
+  emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 8)), FNADDR); \
   FINALIZE_TRAMPOLINE(TRAMP);                                          \
 }
 
@@ -1255,20 +988,50 @@ void                                                             \
 __transfer_from_trampoline ()                                  \
 {                                                              \
   register char *a0 asm ("%a0");                               \
-  asm (GLOBAL_ASM_OP " ___trampoline");                                \
+  asm (GLOBAL_ASM_OP "___trampoline");                         \
   asm ("___trampoline:");                                      \
   asm volatile ("move%.l %0,%@" : : "m" (a0[22]));             \
   asm volatile ("move%.l %1,%0" : "=a" (a0) : "m" (a0[18]));   \
   asm ("rts":);                                                        \
 }
 \f
+/* Definitions for register eliminations.
+
+   This is an array of structures.  Each structure initializes one pair
+   of eliminable registers.  The "from" register number is given first,
+   followed by "to".  Eliminations of the same "from" register are listed
+   in order of preference.
+
+   There are two registers that can always be eliminated on the m68k.
+   The frame pointer and the arg pointer can be replaced by either the
+   hard frame pointer or to the stack pointer, depending upon the
+   circumstances.  The hard frame pointer is not used before reload and
+   so it is not eligible for elimination.  */
+
+#define ELIMINABLE_REGS                                        \
+{{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM },         \
+ { ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM }, \
+ { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM }}
+
+/* Given FROM and TO register numbers, say whether this elimination is
+   allowed.  Frame pointer elimination is automatically handled.
+
+   All other eliminations are valid.  */
+
+#define CAN_ELIMINATE(FROM, TO) \
+  ((TO) == STACK_POINTER_REGNUM ? ! frame_pointer_needed : 1)
+
+/* Define the offset between two registers, one to be eliminated, and the other
+   its replacement, at the start of a routine.  */
+
+#define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET)                   \
+  (OFFSET) = m68k_initial_elimination_offset(FROM, TO)
+\f
 /* Addressing modes, and classification of registers for them.  */
 
-#define HAVE_POST_INCREMENT
-/* #define HAVE_POST_DECREMENT */
+#define HAVE_POST_INCREMENT 1
 
-#define HAVE_PRE_DECREMENT
-/* #define HAVE_PRE_INCREMENT */
+#define HAVE_PRE_DECREMENT 1
 
 /* Macros to check register numbers against specific register classes.  */
 
@@ -1286,10 +1049,6 @@ __transfer_from_trampoline ()                                    \
 ((REGNO) < 8 || (unsigned) reg_renumber[REGNO] < 8)
 #define REGNO_OK_FOR_FP_P(REGNO) \
 (((REGNO) ^ 020) < 8 || (unsigned) (reg_renumber[REGNO] ^ 020) < 8)
-#ifdef SUPPORT_SUN_FPA
-#define REGNO_OK_FOR_FPA_P(REGNO) \
-(((REGNO) >= 24 && (REGNO) < 56) || (reg_renumber[REGNO] >= 24 && reg_renumber[REGNO] < 56))
-#endif
 
 /* Now macros that check whether X is a register and also,
    strictly, whether it is in a specified class.
@@ -1309,14 +1068,6 @@ __transfer_from_trampoline ()                                    \
 /* 1 if X is an address register  */
 
 #define ADDRESS_REG_P(X) (REG_P (X) && REGNO_OK_FOR_BASE_P (REGNO (X)))
-
-#ifdef SUPPORT_SUN_FPA
-/* 1 if X is a register in the Sun FPA.  */
-#define FPA_REG_P(X) (REG_P (X) && REGNO_OK_FOR_FPA_P (REGNO (X)))
-#else
-/* Answer must be no if we don't have an FPA.  */
-#define FPA_REG_P(X) 0
-#endif
 \f
 /* Maximum number of registers that can appear in a valid memory address.  */
 
@@ -1332,19 +1083,26 @@ __transfer_from_trampoline ()                                   \
 /* Nonzero if the constant value X is a legitimate general operand.
    It is given that X satisfies CONSTANT_P or is a CONST_DOUBLE.  */
 
-#define LEGITIMATE_CONSTANT_P(X) 1
+#define LEGITIMATE_CONSTANT_P(X) (GET_MODE (X) != XFmode)
 
 /* Nonzero if the constant value X is a legitimate general operand
    when generating PIC code.  It is given that flag_pic is on and 
-   that X satisfies CONSTANT_P or is a CONST_DOUBLE.  */
+   that X satisfies CONSTANT_P or is a CONST_DOUBLE.
+
+   PCREL_GENERAL_OPERAND_OK makes reload accept addresses that are
+   accepted by insn predicates, but which would otherwise fail the
+   `general_operand' test.  */
+
+#ifndef REG_OK_STRICT
+#define PCREL_GENERAL_OPERAND_OK 0
+#else
+#define PCREL_GENERAL_OPERAND_OK (TARGET_PCREL)
+#endif
 
 #define LEGITIMATE_PIC_OPERAND_P(X)    \
-  ((! symbolic_operand (X, VOIDmode)                           \
-    && ! (GET_CODE (X) == CONST_DOUBLE && CONST_DOUBLE_MEM (X) \
-         && GET_CODE (CONST_DOUBLE_MEM (X)) == MEM             \
-         && symbolic_operand (XEXP (CONST_DOUBLE_MEM (X), 0),  \
-                              VOIDmode)))                      \
-   || (GET_CODE (X) == SYMBOL_REF && SYMBOL_REF_FLAG (X)))
+  (! symbolic_operand (X, VOIDmode)                            \
+   || (GET_CODE (X) == SYMBOL_REF && SYMBOL_REF_FLAG (X))      \
+   || PCREL_GENERAL_OPERAND_OK)
 
 /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
    and check its validity for a certain class.
@@ -1409,20 +1167,12 @@ __transfer_from_trampoline ()                                   \
    || (GET_CODE (X) == PLUS                                            \
        && LEGITIMATE_BASE_REG_P (XEXP (X, 0))                          \
        && GET_CODE (XEXP (X, 1)) == CONST_INT                          \
-       && ((unsigned) INTVAL (XEXP (X, 1)) + 0x8000) < 0x10000)                \
+       && (TARGET_68020                                                        \
+          || ((unsigned) INTVAL (XEXP (X, 1)) + 0x8000) < 0x10000))    \
    || (GET_CODE (X) == PLUS && XEXP (X, 0) == pic_offset_table_rtx     \
        && flag_pic && GET_CODE (XEXP (X, 1)) == SYMBOL_REF)            \
    || (GET_CODE (X) == PLUS && XEXP (X, 0) == pic_offset_table_rtx     \
-       && flag_pic && GET_CODE (XEXP (X, 1)) == LABEL_REF))            \
-
-#if 0
-/* This should replace the last two (non-pic) lines
-   except that Sun's assembler does not seem to handle such operands.  */
-       && (TARGET_68020 ? CONSTANT_ADDRESS_P (XEXP (X, 1))             \
-          : (GET_CODE (XEXP (X, 1)) == CONST_INT                       \
-             && ((unsigned) INTVAL (XEXP (X, 1)) + 0x8000) < 0x10000))))
-#endif
-
+       && flag_pic && GET_CODE (XEXP (X, 1)) == LABEL_REF))
 
 #define GO_IF_NONINDEXED_ADDRESS(X, ADDR)  \
 { if (INDIRECTABLE_1_ADDRESS_P (X)) goto ADDR; }
@@ -1448,15 +1198,17 @@ __transfer_from_trampoline ()                                   \
 { GO_IF_INDEXING (X, ADDR);                                            \
   if (GET_CODE (X) == PLUS)                                            \
     { if (GET_CODE (XEXP (X, 1)) == CONST_INT                          \
-         && (unsigned) INTVAL (XEXP (X, 1)) + 0x80 < 0x100)            \
+         && (TARGET_68020 || (unsigned) INTVAL (XEXP (X, 1)) + 0x80 < 0x100))          \
        { rtx go_temp = XEXP (X, 0); GO_IF_INDEXING (go_temp, ADDR); }  \
       if (GET_CODE (XEXP (X, 0)) == CONST_INT                          \
-         && (unsigned) INTVAL (XEXP (X, 0)) + 0x80 < 0x100)            \
+         && (TARGET_68020 || (unsigned) INTVAL (XEXP (X, 0)) + 0x80 < 0x100))          \
        { rtx go_temp = XEXP (X, 1); GO_IF_INDEXING (go_temp, ADDR); } } }
 
+/* coldfire/5200 does not allow HImode index registers.  */
 #define LEGITIMATE_INDEX_REG_P(X)   \
   ((GET_CODE (X) == REG && REG_OK_FOR_INDEX_P (X))     \
-   || (GET_CODE (X) == SIGN_EXTEND                     \
+   || (! TARGET_COLDFIRE                                       \
+       && GET_CODE (X) == SIGN_EXTEND                  \
        && GET_CODE (XEXP (X, 0)) == REG                        \
        && GET_MODE (XEXP (X, 0)) == HImode             \
        && REG_OK_FOR_INDEX_P (XEXP (X, 0)))            \
@@ -1466,12 +1218,12 @@ __transfer_from_trampoline ()                                   \
 
 #define LEGITIMATE_INDEX_P(X)   \
    (LEGITIMATE_INDEX_REG_P (X)                         \
-    || ((TARGET_68020 || TARGET_5200) && GET_CODE (X) == MULT \
+    || ((TARGET_68020 || TARGET_COLDFIRE) && GET_CODE (X) == MULT \
        && LEGITIMATE_INDEX_REG_P (XEXP (X, 0))         \
        && GET_CODE (XEXP (X, 1)) == CONST_INT          \
        && (INTVAL (XEXP (X, 1)) == 2                   \
            || INTVAL (XEXP (X, 1)) == 4                \
-           || (INTVAL (XEXP (X, 1)) == 8 && !TARGET_5200))))
+           || (INTVAL (XEXP (X, 1)) == 8 && !TARGET_COLDFIRE))))
 
 /* If pic, we accept INDEX+LABEL, which is what do_tablejump makes.  */
 #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, ADDR)                                \
@@ -1551,16 +1303,11 @@ __transfer_from_trampoline ()                                   \
    for the index in the tablejump instruction.  */
 #define CASE_VECTOR_MODE HImode
 
-/* Define this if the tablejump instruction expects the table
-   to contain offsets from the address of the table.
+/* Define as C expression which evaluates to nonzero if the tablejump
+   instruction expects the table to contain offsets from the address of the
+   table.
    Do not define this if the table should contain absolute addresses.  */
-#define CASE_VECTOR_PC_RELATIVE
-
-/* Specify the tree operation to be used to convert reals to integers.  */
-#define IMPLICIT_FIX_EXPR FIX_ROUND_EXPR
-
-/* This is the kind of divide that is easiest to do in the general case.  */
-#define EASY_DIV_EXPR TRUNC_DIV_EXPR
+#define CASE_VECTOR_PC_RELATIVE 1
 
 /* Define this as 1 if `char' should by default be signed; else as 0.  */
 #define DEFAULT_SIGNED_CHAR 1
@@ -1572,9 +1319,6 @@ __transfer_from_trampoline ()                                     \
    in one reasonably fast instruction.  */
 #define MOVE_MAX 4
 
-/* Define this if zero-extension is slow (more than one real instruction).  */
-#define SLOW_ZERO_EXTEND
-
 /* Nonzero if access to memory by bytes is slow and undesirable.  */
 #define SLOW_BYTE_ACCESS 0
 
@@ -1585,10 +1329,10 @@ __transfer_from_trampoline ()                                   \
 /* We assume that the store-condition-codes instructions store 0 for false
    and some other value for true.  This is the value stored for true.  */
 
-#define STORE_FLAG_VALUE -1
+#define STORE_FLAG_VALUE (-1)
 
 /* When a prototype says `char' or `short', really pass an `int'.  */
-#define PROMOTE_PROTOTYPES
+#define PROMOTE_PROTOTYPES 1
 
 /* Specify the machine mode that pointers have.
    After generation of rtl, the compiler makes no further distinction
@@ -1600,90 +1344,6 @@ __transfer_from_trampoline ()                                    \
    so give the MEM rtx a byte's mode.  */
 #define FUNCTION_MODE QImode
 
-/* Compute the cost of computing a constant rtl expression RTX
-   whose rtx-code is CODE.  The body of this macro is a portion
-   of a switch statement.  If the code is computed here,
-   return it with a return statement.  Otherwise, break from the switch.  */
-
-#define CONST_COSTS(RTX,CODE,OUTER_CODE) \
-  case CONST_INT:                                              \
-    /* Constant zero is super cheap due to clr instruction.  */        \
-    if (RTX == const0_rtx) return 0;                           \
-    /* if ((OUTER_CODE) == SET) */                             \
-      return const_int_cost(RTX);                              \
-  case CONST:                                                  \
-  case LABEL_REF:                                              \
-  case SYMBOL_REF:                                             \
-    return 3;                                                  \
-  case CONST_DOUBLE:                                           \
-    return 5;
-
-/* Compute the cost of various arithmetic operations.
-   These are vaguely right for a 68020.  */
-/* The costs for long multiply have been adjusted to
-   work properly in synth_mult on the 68020,
-   relative to an average of the time for add and the time for shift,
-   taking away a little more because sometimes move insns are needed.  */
-/* div?.w is relatively cheaper on 68000 counted in COSTS_N_INSNS terms.  */
-#define MULL_COST (TARGET_68060 ? 2 : TARGET_68040 ? 5 : 13)
-#define MULW_COST (TARGET_68060 ? 2 : TARGET_68040 ? 3 : TARGET_68020 ? 8 : 5)
-#define DIVW_COST (TARGET_68020 ? 27 : 12)
-
-#define RTX_COSTS(X,CODE,OUTER_CODE)                           \
-  case PLUS:                                                   \
-    /* An lea costs about three times as much as a simple add.  */  \
-    if (GET_MODE (X) == SImode                                 \
-       && GET_CODE (XEXP (X, 1)) == REG                        \
-       && GET_CODE (XEXP (X, 0)) == MULT                       \
-       && GET_CODE (XEXP (XEXP (X, 0), 0)) == REG              \
-       && GET_CODE (XEXP (XEXP (X, 0), 1)) == CONST_INT        \
-       && (INTVAL (XEXP (XEXP (X, 0), 1)) == 2                 \
-           || INTVAL (XEXP (XEXP (X, 0), 1)) == 4              \
-           || INTVAL (XEXP (XEXP (X, 0), 1)) == 8))            \
-      return COSTS_N_INSNS (3);         /* lea an@(dx:l:i),am */       \
-    break;                                                     \
-  case ASHIFT:                                                 \
-  case ASHIFTRT:                                               \
-  case LSHIFTRT:                                               \
-    if (TARGET_68060)                                          \
-      return COSTS_N_INSNS(1);                                 \
-    if (! TARGET_68020)                                                        \
-      {                                                                        \
-       if (GET_CODE (XEXP (X, 1)) == CONST_INT)                        \
-         {                                                             \
-           if (INTVAL (XEXP (X, 1)) < 16)                              \
-             return COSTS_N_INSNS (2) + INTVAL (XEXP (X, 1)) / 2;      \
-           else                                                        \
-             /* We're using clrw + swap for these cases.  */           \
-             return COSTS_N_INSNS (4) + (INTVAL (XEXP (X, 1)) - 16) / 2; \
-         }                                                             \
-       return COSTS_N_INSNS (10); /* worst case */                     \
-      }                                                                        \
-    /* A shift by a big integer takes an extra instruction.  */ \
-    if (GET_CODE (XEXP (X, 1)) == CONST_INT                    \
-       && (INTVAL (XEXP (X, 1)) == 16))                        \
-      return COSTS_N_INSNS (2);         /* clrw;swap */                \
-    if (GET_CODE (XEXP (X, 1)) == CONST_INT                    \
-       && !(INTVAL (XEXP (X, 1)) > 0                           \
-            && INTVAL (XEXP (X, 1)) <= 8))                     \
-      return COSTS_N_INSNS (3);         /* lsr #i,dn */                \
-    break;                                                     \
-  case MULT:                                                   \
-    if ((GET_CODE (XEXP (X, 0)) == ZERO_EXTEND                 \
-        || GET_CODE (XEXP (X, 0)) == SIGN_EXTEND)              \
-       && GET_MODE (X) == SImode)                              \
-      return COSTS_N_INSNS (MULW_COST);                                \
-    if (GET_MODE (X) == QImode || GET_MODE (X) == HImode)      \
-      return COSTS_N_INSNS (MULW_COST);                                \
-    else                                                       \
-      return COSTS_N_INSNS (MULL_COST);                                \
-  case DIV:                                                    \
-  case UDIV:                                                   \
-  case MOD:                                                    \
-  case UMOD:                                                   \
-    if (GET_MODE (X) == QImode || GET_MODE (X) == HImode)      \
-      return COSTS_N_INSNS (DIVW_COST); /* div.w */            \
-    return COSTS_N_INSNS (43);  /* div.l */
 \f
 /* Tell final.c how to eliminate redundant test instructions.  */
 
@@ -1714,11 +1374,6 @@ __transfer_from_trampoline ()                                    \
 \f
 /* Control the assembler format that we output.  */
 
-/* Output at beginning of assembler file.  */
-
-#define ASM_FILE_START(FILE)   \
-  fprintf (FILE, "#NO_APP\n");
-
 /* Output to assembler file text saying following lines
    may contain character constants, extra white space, comments, etc.  */
 
@@ -1731,11 +1386,13 @@ __transfer_from_trampoline ()                                   \
 
 /* Output before read-only data.  */
 
-#define TEXT_SECTION_ASM_OP ".text"
+#define TEXT_SECTION_ASM_OP "\t.text"
 
 /* Output before writable data.  */
 
-#define DATA_SECTION_ASM_OP ".data"
+#define DATA_SECTION_ASM_OP "\t.data"
+
+#define GLOBAL_ASM_OP "\t.globl\t"
 
 /* Here are four prefixes that are used by asm_fprintf to
    facilitate customization for alternate assembler syntaxes.
@@ -1751,7 +1408,7 @@ __transfer_from_trampoline ()                                     \
    an empty string, or any arbitrary string (such as ".", ".L%", etc)
    without having to make any other changes to account for the specific
    definition.  Note it is a string literal, not interpreted by printf
-   and friends. */
+   and friends.  */
 
 #define LOCAL_LABEL_PREFIX ""
 
@@ -1766,25 +1423,10 @@ __transfer_from_trampoline ()                                   \
 /* How to refer to registers in assembler output.
    This sequence is indexed by compiler's hard-register-number (see above).  */
 
-#ifndef SUPPORT_SUN_FPA
-
-#define REGISTER_NAMES \
-{"d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7",       \
- "a0", "a1", "a2", "a3", "a4", "a5", "a6", "sp",       \
- "fp0", "fp1", "fp2", "fp3", "fp4", "fp5", "fp6", "fp7" }
-
-#else /* SUPPORTED_SUN_FPA */
-
 #define REGISTER_NAMES \
 {"d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7",       \
  "a0", "a1", "a2", "a3", "a4", "a5", "a6", "sp",       \
- "fp0", "fp1", "fp2", "fp3", "fp4", "fp5", "fp6", "fp7", \
- "fpa0", "fpa1", "fpa2", "fpa3", "fpa4", "fpa5", "fpa6", "fpa7", \
- "fpa8", "fpa9", "fpa10", "fpa11", "fpa12", "fpa13", "fpa14", "fpa15", \
- "fpa16", "fpa17", "fpa18", "fpa19", "fpa20", "fpa21", "fpa22", "fpa23", \
- "fpa24", "fpa25", "fpa26", "fpa27", "fpa28", "fpa29", "fpa30", "fpa31" }
-
-#endif /* defined SUPPORT_SUN_FPA */
+ "fp0", "fp1", "fp2", "fp3", "fp4", "fp5", "fp6", "fp7", "argptr" }
 
 /* How to renumber registers for dbx and gdb.
    On the Sun-3, the floating point registers have numbers
@@ -1792,32 +1434,41 @@ __transfer_from_trampoline ()                                   \
 
 #define DBX_REGISTER_NUMBER(REGNO) ((REGNO) < 16 ? (REGNO) : (REGNO) + 2)
 
-/* This is how to output the definition of a user-level label named NAME,
-   such as the label on a static function or variable NAME.  */
-
-#define ASM_OUTPUT_LABEL(FILE,NAME)    \
-  do { assemble_name (FILE, NAME); fputs (":\n", FILE); } while (0)
-
-/* This is how to output a command to make the user-level label named NAME
-   defined for reference from other files.  */
-
-#define GLOBAL_ASM_OP ".globl"
-#define ASM_GLOBALIZE_LABEL(FILE,NAME) \
-  do { fprintf (FILE, "%s ", GLOBAL_ASM_OP);           \
-       assemble_name (FILE, NAME);                     \
-       fputs ("\n", FILE);} while (0)
+/* Before the prologue, RA is at 0(%sp).  */
+#define INCOMING_RETURN_ADDR_RTX \
+  gen_rtx_MEM (VOIDmode, gen_rtx_REG (VOIDmode, STACK_POINTER_REGNUM))
+
+/* We must not use the DBX register numbers for the DWARF 2 CFA column
+   numbers because that maps to numbers beyond FIRST_PSEUDO_REGISTER.
+   Instead use the identity mapping.  */
+#define DWARF_FRAME_REGNUM(REG) REG
+
+/* Before the prologue, the top of the frame is at 4(%sp).  */
+#define INCOMING_FRAME_SP_OFFSET 4
+
+/* Describe how we implement __builtin_eh_return.  */
+#define EH_RETURN_DATA_REGNO(N) \
+  ((N) < 2 ? (N) : INVALID_REGNUM)
+#define EH_RETURN_STACKADJ_RTX gen_rtx_REG (Pmode, 8)
+#define EH_RETURN_HANDLER_RTX                                      \
+  gen_rtx_MEM (Pmode,                                              \
+              gen_rtx_PLUS (Pmode, arg_pointer_rtx,                \
+                            plus_constant (EH_RETURN_STACKADJ_RTX, \
+                                           UNITS_PER_WORD)))
+
+/* Select a format to encode pointers in exception handling data.  CODE
+   is 0 for data, 1 for code labels, 2 for function pointers.  GLOBAL is
+   true if the symbol may be affected by dynamic relocations.  */
+#define ASM_PREFERRED_EH_DATA_FORMAT(CODE, GLOBAL)                        \
+  (flag_pic                                                               \
+   ? ((GLOBAL) ? DW_EH_PE_indirect : 0) | DW_EH_PE_pcrel | DW_EH_PE_sdata4 \
+   : DW_EH_PE_absptr)
 
 /* This is how to output a reference to a user-level label named NAME.
    `assemble_name' uses this.  */
 
 #define ASM_OUTPUT_LABELREF(FILE,NAME) \
-  asm_fprintf (FILE, "%0U%s", NAME)
-
-/* This is how to output an internal numbered label where
-   PREFIX is the class of label and NUM is the number within the class.  */
-
-#define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM)     \
-  asm_fprintf (FILE, "%0L%s%d:\n", PREFIX, NUM)
+  asm_fprintf (FILE, "%U%s", NAME)
 
 /* This is how to store into the string LABEL
    the symbol_ref name of an internal numbered label where
@@ -1825,61 +1476,7 @@ __transfer_from_trampoline ()                                    \
    This is suitable for output with `assemble_name'.  */
 
 #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM)  \
-  sprintf (LABEL, "*%s%s%d", LOCAL_LABEL_PREFIX, PREFIX, NUM)
-
-/* This is how to output a `long double' extended real constant. */
-  
-#define ASM_OUTPUT_LONG_DOUBLE(FILE,VALUE)                             \
-do { long l[3];                                                                \
-     REAL_VALUE_TO_TARGET_LONG_DOUBLE (VALUE, l);                      \
-     if (sizeof (int) == sizeof (long))                                        \
-       fprintf (FILE, "\t.long 0x%x,0x%x,0x%x\n", l[0], l[1], l[2]);   \
-     else                                                              \
-       fprintf (FILE, "\t.long 0x%lx,0x%lx,0x%lx\n", l[0], l[1], l[2]);        \
-   } while (0)
-  
-/* This is how to output an assembler line defining a `double' constant.  */
-
-#define ASM_OUTPUT_DOUBLE(FILE,VALUE)                          \
-  do { char dstr[30];                                          \
-       REAL_VALUE_TO_DECIMAL (VALUE, "%.20g", dstr);           \
-       fprintf (FILE, "\t.double 0r%s\n", dstr);               \
-     } while (0)
-
-/* This is how to output an assembler line defining a `float' constant.  */
-
-#define ASM_OUTPUT_FLOAT(FILE,VALUE)                   \
-do { long l;                                           \
-     REAL_VALUE_TO_TARGET_SINGLE (VALUE, l);           \
-     if (sizeof (int) == sizeof (long))                        \
-       fprintf (FILE, "\t.long 0x%x\n", l);            \
-     else                                              \
-       fprintf (FILE, "\t.long 0x%lx\n", l);           \
-   } while (0)
-
-/* This is how to output an assembler line defining an `int' constant.  */
-
-#define ASM_OUTPUT_INT(FILE,VALUE)  \
-( fprintf (FILE, "\t.long "),                  \
-  output_addr_const (FILE, (VALUE)),           \
-  fprintf (FILE, "\n"))
-
-/* Likewise for `char' and `short' constants.  */
-
-#define ASM_OUTPUT_SHORT(FILE,VALUE)  \
-( fprintf (FILE, "\t.word "),                  \
-  output_addr_const (FILE, (VALUE)),           \
-  fprintf (FILE, "\n"))
-
-#define ASM_OUTPUT_CHAR(FILE,VALUE)  \
-( fprintf (FILE, "\t.byte "),                  \
-  output_addr_const (FILE, (VALUE)),           \
-  fprintf (FILE, "\n"))
-
-/* This is how to output an assembler line for a numeric constant byte.  */
-
-#define ASM_OUTPUT_BYTE(FILE,VALUE)  \
-  fprintf (FILE, "\t.byte 0x%x\n", (VALUE))
+  sprintf (LABEL, "*%s%s%ld", LOCAL_LABEL_PREFIX, PREFIX, (long)(NUM))
 
 /* This is how to output an insn to push a register on the stack.
    It need not be very fast code.  */
@@ -1902,7 +1499,7 @@ do { long l;                                              \
 
 /* This is how to output an element of a case-vector that is relative.  */
 
-#define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, VALUE, REL)  \
+#define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL)  \
   asm_fprintf (FILE, "\t.word %LL%d-%LL%d\n", VALUE, REL)
 
 /* This is how to output an assembler line
@@ -1916,7 +1513,7 @@ do { long l;                                              \
     fprintf (FILE, "\t.even\n");
 
 #define ASM_OUTPUT_SKIP(FILE,SIZE)  \
-  fprintf (FILE, "\t.skip %u\n", (SIZE))
+  fprintf (FILE, "\t.skip %u\n", (int)(SIZE))
 
 /* This says how to output an assembler line
    to define a global common symbol.  */
@@ -1924,7 +1521,7 @@ do { long l;                                              \
 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED)  \
 ( fputs (".comm ", (FILE)),                    \
   assemble_name ((FILE), (NAME)),              \
-  fprintf ((FILE), ",%u\n", (ROUNDED)))
+  fprintf ((FILE), ",%u\n", (int)(ROUNDED)))
 
 /* This says how to output an assembler line
    to define a local common symbol.  */
@@ -1932,30 +1529,7 @@ do { long l;                                             \
 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED)  \
 ( fputs (".lcomm ", (FILE)),                   \
   assemble_name ((FILE), (NAME)),              \
-  fprintf ((FILE), ",%u\n", (ROUNDED)))
-
-/* Store in OUTPUT a string (made with alloca) containing
-   an assembler-name for a local static variable named NAME.
-   LABELNO is an integer which is different for each call.  */
-
-#define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO) \
-( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 10),   \
-  sprintf ((OUTPUT), "%s.%d", (NAME), (LABELNO)))
-
-/* Define the parentheses used to group arithmetic operations
-   in assembler code.  */
-
-#define ASM_OPEN_PAREN "("
-#define ASM_CLOSE_PAREN ")"
-
-/* Define results of standard character escape sequences.  */
-#define TARGET_BELL 007
-#define TARGET_BS 010
-#define TARGET_TAB 011
-#define TARGET_NEWLINE 012
-#define TARGET_VT 013
-#define TARGET_FF 014
-#define TARGET_CR 015
+  fprintf ((FILE), ",%u\n", (int)(ROUNDED)))
 
 /* Output a float value (represented as a C double) as an immediate operand.
    This macro is a 68k-specific macro.  */
@@ -1965,17 +1539,14 @@ do { long l;                                            \
       if (CODE == 'f')                                         \
         {                                                      \
           char dstr[30];                                       \
-          REAL_VALUE_TO_DECIMAL (VALUE, "%.9g", dstr);         \
+         real_to_decimal (dstr, &(VALUE), sizeof (dstr), 9, 0); \
           asm_fprintf ((FILE), "%I0r%s", dstr);                        \
         }                                                      \
       else                                                     \
         {                                                      \
           long l;                                              \
           REAL_VALUE_TO_TARGET_SINGLE (VALUE, l);              \
-          if (sizeof (int) == sizeof (long))                   \
-            asm_fprintf ((FILE), "%I0x%x", l);                 \
-          else                                                 \
-            asm_fprintf ((FILE), "%I0x%lx", l);                        \
+          asm_fprintf ((FILE), "%I0x%lx", l);                  \
         }                                                      \
      } while (0)
 
@@ -1983,7 +1554,7 @@ do { long l;                                              \
    This macro is a 68k-specific macro.  */
 #define ASM_OUTPUT_DOUBLE_OPERAND(FILE,VALUE)                          \
  do { char dstr[30];                                                   \
-      REAL_VALUE_TO_DECIMAL (VALUE, "%.20g", dstr);                    \
+      real_to_decimal (dstr, &(VALUE), sizeof (dstr), 0, 1);           \
       asm_fprintf (FILE, "%I0r%s", dstr);                              \
     } while (0)
 
@@ -1991,7 +1562,7 @@ do { long l;                                              \
    generated by m68k.md.  */
 #define ASM_OUTPUT_LONG_DOUBLE_OPERAND(FILE,VALUE)                     \
  do { char dstr[30];                                                   \
-      REAL_VALUE_TO_DECIMAL (VALUE, "%.20g", dstr);                    \
+      real_to_decimal (dstr, &(VALUE), sizeof (dstr), 0, 1);           \
       asm_fprintf (FILE, "%I0r%s", dstr);                              \
     } while (0)
 
@@ -2017,13 +1588,10 @@ do { long l;                                            \
    'b' for byte insn (no effect, on the Sun; this is for the ISI).
    'd' to force memory addressing to be absolute, not relative.
    'f' for float insn (print a CONST_DOUBLE as a float rather than in hex)
-   'w' for FPA insn (print a CONST_DOUBLE as a SunFPA constant rather
-       than directly).  Second part of 'y' below.
+   'o' for operands to go directly to output_operand_address (bypassing
+       print_operand_address--used only for SYMBOL_REFs under TARGET_PCREL)
    'x' for float insn (print a CONST_DOUBLE as a float rather than in hex),
-       or print pair of registers as rx:ry.
-   'y' for a FPA insn (print pair of registers as rx:ry).  This also outputs
-       CONST_DOUBLE's as SunFPA constant RAM registers if
-       possible, so it should not be used except for the SunFPA. */
+       or print pair of registers as rx:ry.  */
 
 #define PRINT_OPERAND_PUNCT_VALID_P(CODE)                              \
   ((CODE) == '.' || (CODE) == '#' || (CODE) == '-'                     \
@@ -2056,196 +1624,35 @@ do { long l;                                           \
 
 /* A C compound statement to output to stdio stream STREAM the
    assembler syntax for an instruction operand that is a memory
-   reference whose address is ADDR.  ADDR is an RTL expression.
-
-   On some machines, the syntax for a symbolic address depends on
-   the section that the address refers to.  On these machines,
-   define the macro `ENCODE_SECTION_INFO' to store the information
-   into the `symbol_ref', and then check for it here.  */
+   reference whose address is ADDR.  ADDR is an RTL expression.  */
 
 #define PRINT_OPERAND_ADDRESS(FILE, ADDR) print_operand_address (FILE, ADDR)
 
-
-/* Definitions for generating bytecode */
-
-/* Just so it's known this target is supported by the bytecode generator.
-   If this define isn't found anywhere in the target config files, then
-   dummy stubs are supplied by bytecode.h, and any attempt to use
-   -fbytecode will result in an error message. */
-
-#define TARGET_SUPPORTS_BYTECODE
-
-/* Minimal segment alignment within sections is 8 units. */
-#define MACHINE_SEG_ALIGN 3
-
-/* Integer alignment is two units. */
-#define INT_ALIGN 2
-
-/* Pointer alignment is eight units. */
-#define PTR_ALIGN 3
-
-/* Global symbols begin with `_' */
-#define NAMES_HAVE_UNDERSCORES
-
-/* BC_xxx below are similar to their ASM_xxx counterparts above. */
-#define BC_GLOBALIZE_LABEL(FP, NAME) bc_globalize_label(NAME)
-
-#define BC_OUTPUT_COMMON(FP, NAME, SIZE, ROUNDED) \
-  do { bc_emit_common(NAME, ROUNDED); bc_globalize_label(NAME); } while (0)
-
-#define BC_OUTPUT_BSS(FP, NAME, SIZE, ROUNDED) \
-  do { bc_data (); bc_emit_labeldef(NAME); bc_emit_skip (SIZE); } while (0)
-
-#define BC_OUTPUT_LOCAL(FP, NAME, SIZE, ROUNDED) \
-  bc_emit_common(NAME, ROUNDED)
-
-#define BC_OUTPUT_ALIGN(FP, ALIGN) bc_align(ALIGN)
-
-#define BC_OUTPUT_LABEL(FP, NAME) bc_emit_labeldef(NAME)
-
-#define BC_OUTPUT_SKIP(FP, SIZE) bc_emit_skip(SIZE)
-
-#define BC_OUTPUT_LABELREF(FP, NAME)                                         \
-  do {                                                                       \
-    char *foo = (char *) xmalloc(strlen(NAME) + 2);                          \
-    strcpy(foo, "_");                                                        \
-    strcat(foo, NAME);                                                       \
-    bc_emit_labelref (foo);                                                  \
-    free (foo);                                                                      \
-  } while (0)
-
-#define BC_OUTPUT_FLOAT(FP, VAL)                                             \
-  do {                                                                       \
-    float F = VAL;                                                           \
-    bc_emit ((char *) &F, sizeof F);                                         \
-  } while (0)
-
-#define BC_OUTPUT_DOUBLE(FP, VAL)                                            \
-  do {                                                                       \
-    double D = VAL;                                                          \
-    bc_emit ((char *) &D, sizeof D);                                         \
-  } while (0)
-
-#define BC_OUTPUT_BYTE(FP, VAL)                                              \
-  do {                                                                       \
-    char C = VAL;                                                            \
-    bc_emit (&C, 1);                                                         \
-  } while (0)
-
-
-#define BC_OUTPUT_FILE ASM_OUTPUT_FILE
-#define BC_OUTPUT_ASCII ASM_OUTPUT_ASCII
-#define BC_OUTPUT_IDENT ASM_OUTPUT_IDENT
-
-/* Same as XSTR, but for bytecode */
-#define BCXSTR(RTX)  ((RTX)->bc_label)
-
-
-/* Flush bytecode buffer onto file */
-#define BC_WRITE_FILE(FP) \
-{ \
-  fprintf (FP, ".text\n"); \
-  bc_seg_write (bc_text_seg, FP); \
-  fprintf(FP, "\n.data\n"); \
-  bc_seg_write (bc_data_seg, FP); \
-  bc_sym_write (FP);  /* do .globl, .bss, etc. */ \
-}
-
-/* Write one symbol */
-#define BC_WRITE_SEGSYM(SEGSYM, FP) \
-{ \
-  prsym (FP, (SEGSYM)->sym->name); \
-  fprintf (FP, ":\n"); \
-}
-
-
-/* Write one reloc entry */
-#define BC_WRITE_RELOC_ENTRY(SEGRELOC, FP, OFFSET) \
-{ \
-  fprintf (FP, "\t.long "); \
-  prsym (FP, (SEGRELOC)->sym->name); \
-  fprintf (FP, " + %d\n", OFFSET); \
-}
-
-/* Start new line of bytecodes */
-#define BC_START_BYTECODE_LINE(FP) \
-{ \
-  fprintf (FP, "\t.byte"); \
-}
-
-/* Write one bytecode */
-#define BC_WRITE_BYTECODE(SEP, VAL, FP) \
-{ \
-  fprintf (FP, "%c0x%02X", (SEP), (VAL) & 0xff); \
-}
-
-/* Write one bytecode RTL entry */
-#define BC_WRITE_RTL(R, FP) \
-{ \
-  fprintf (FP, "%s+%d/0x%08X\n", (R)->label, (R)->offset, (R)->bc_label); \
-}
-
-
-/* Emit function entry trampoline */
-#define BC_EMIT_TRAMPOLINE(TRAMPSEG, CALLINFO) \
-{ \
-  short insn; \
- \
-  /* Push a reference to the callinfo structure.  */ \
-  insn = 0x4879;               /* pea xxx.L */ \
-  seg_data (TRAMPSEG, (char *) &insn, sizeof insn); \
-  seg_refsym (TRAMPSEG, CALLINFO, 0); \
- \
-  /* Call __interp, pop arguments, and return.  */ \
-  insn = 0x4eb9;               /* jsr xxx.L  */ \
-  seg_data (TRAMPSEG, (char *) &insn, sizeof insn); \
-  seg_refsym (TRAMPSEG, "__callint", 0); \
-  insn = 0x588f;               /* addql #4, sp */ \
-  seg_data (TRAMPSEG, (char *) &insn, sizeof insn); \
-  insn = 0x4e75;               /* rts */ \
-  seg_data (TRAMPSEG, (char *) &insn, sizeof insn); \
-}
-
-
-
-#if 0
-#define VALIDATE_STACK()  if (stack_depth < 0) abort ();
-#else
-#if 0
-#define VALIDATE_STACK() \
-  fprintf (stderr, " %%%d%%", stack_depth);
-#endif
-#endif
-
-/* Define functions defined in aux-output.c and used in templates.  */
-
-extern char *output_move_const_into_data_reg ();
-extern char *output_move_simode_const ();
-extern char *output_move_simode ();
-extern char *output_move_himode ();
-extern char *output_move_qimode ();
-extern char *output_move_stricthi ();
-extern char *output_move_strictqi ();
-extern char *output_move_double ();
-extern char *output_move_const_single ();
-extern char *output_move_const_double ();
-extern char *output_btst ();
-extern char *output_scc_di ();
-extern char *output_addsi3 ();
-extern char *output_andsi3 ();
-extern char *output_iorsi3 ();
-extern char *output_xorsi3 ();
-
 /* Variables in m68k.c */
-extern char *m68k_align_loops_string;
-extern char *m68k_align_jumps_string;
-extern char *m68k_align_funcs_string;
+extern const char *m68k_align_loops_string;
+extern const char *m68k_align_jumps_string;
+extern const char *m68k_align_funcs_string;
 extern int m68k_align_loops;
 extern int m68k_align_jumps;
 extern int m68k_align_funcs;
 extern int m68k_last_compare_had_fp_operands;
 
 \f
+/* Define the codes that are matched by predicates in m68k.c.  */
+
+#define PREDICATE_CODES                                                        \
+  {"general_src_operand", {CONST_INT, CONST_DOUBLE, CONST, SYMBOL_REF, \
+                          LABEL_REF, SUBREG, REG, MEM}},               \
+  {"nonimmediate_src_operand", {SUBREG, REG, MEM}},                    \
+  {"memory_src_operand", {SUBREG, MEM}},                               \
+  {"not_sp_operand", {SUBREG, REG, MEM}},                              \
+  {"pcrel_address", {SYMBOL_REF, LABEL_REF, CONST}},                   \
+  {"const_uint32_operand", {CONST_INT, CONST_DOUBLE}},                 \
+  {"const_sint32_operand", {CONST_INT}},                               \
+  {"valid_dbcc_comparison_p", {EQ, NE, GTU, LTU, GEU, LEU,             \
+                              GT, LT, GE, LE}},                        \
+  {"extend_operator", {SIGN_EXTEND, ZERO_EXTEND}},
+\f
 /*
 Local variables:
 version-control: t