OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / gcc / config / m68k / m68k.md
index 7d29741..91b95fb 100644 (file)
@@ -1,30 +1,31 @@
 ;;- Machine description for GNU compiler, Motorola 68000 Version
-;;  Copyright (C) 1987, 1988, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003
+;;  Copyright (C) 1987, 1988, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
+;;  2002, 2003, 2004, 2005, 2006
 ;;  Free Software Foundation, Inc.
 
-;; This file is part of GNU CC.
+;; This file is part of GCC.
 
-;; GNU CC is free software; you can redistribute it and/or modify
+;; GCC is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 2, or (at your option)
 ;; any later version.
 
-;; GNU CC is distributed in the hope that it will be useful,
+;; GCC is distributed in the hope that it will be useful,
 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU CC; see the file COPYING.  If not, write to
-;; the Free Software Foundation, 59 Temple Place - Suite 330,
-;; Boston, MA 02111-1307, USA.
+;; along with GCC; see the file COPYING.  If not, write to
+;; the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+;; Boston, MA 02110-1301, USA.
 
 ;;- Information about MCF5200 port.
 
 ;;- The MCF5200 "ColdFire" architecture is a reduced version of the
 ;;- 68k ISA.  Differences include reduced support for byte and word
 ;;- operands and the removal of BCD, bitfield, rotate, and integer
-;;- divide instructions.  The TARGET_5200 flag turns the use of the
+;;- divide instructions.  The TARGET_COLDFIRE flag turns the use of the
 ;;- removed opcodes and addressing modes off.
 ;;- 
 
@@ -45,7 +46,7 @@
 ;;- Operand classes for the register allocator:
 ;;- 'a' one of the address registers can be used.
 ;;- 'd' one of the data registers can be used.
-;;- 'f' one of the m68881 registers can be used
+;;- 'f' one of the m68881/fpu registers can be used
 ;;- 'r' either a data or an address register can be used.
 
 ;;- Immediate Floating point operator constraints
@@ -68,7 +69,6 @@
 
 ;;- Assembler specs:
 ;;- "%."    size separator ("." or "")                 move%.l d0,d1
-;;- "%#"    immediate separator ("#" or "")            move%.l %#0,d0
 ;;- "%-"    push operand "sp@-"                                move%.l d0,%-
 ;;- "%+"    pop operand "sp@+"                         move%.l d0,%+
 ;;- "%@"    top of stack "sp@"                         move%.l d0,%@
@@ -82,7 +82,7 @@
 ;;- be emulated in software by the OS.  It is faster to avoid these
 ;;- instructions and issue a library call rather than trapping into
 ;;- the kernel.  The affected instructions are fintrz and fscale.  The
-;;- TARGET_68040 flag turns the use of the opcodes off.
+;;- TUNE_68040 flag turns the use of the opcodes off.
 
 ;;- The '040 also implements a set of new floating-point instructions
 ;;- which specify the rounding precision in the opcode.  This finally
@@ -90,8 +90,7 @@
 ;;- issues of excess precision accumulating in the extended registers.
 ;;- By default, GCC does not use these instructions, since such code will
 ;;- not run on an '030.  To use these instructions, use the -m68040-only
-;;- switch.  By changing TARGET_DEFAULT to include TARGET_68040_ONLY,
-;;- you can make these instructions the default.
+;;- switch.
 
 ;;- These new instructions aren't directly in the md.  They are brought
 ;;- into play by defining "%$" and "%&" to expand to "s" and "d" rather
 ;;- instructions and issue a library call rather than trapping into
 ;;- the kernel.  The affected instructions are: divs.l <ea>,Dr:Dq;
 ;;- divu.l <ea>,Dr:Dq; muls.l <ea>,Dr:Dq; mulu.l <ea>,Dr:Dq; and
-;;- fscale.  The TARGET_68060 flag turns the use of the opcodes off.
+;;- fscale.  The TUNE_68060 flag turns the use of the opcodes off.
 
 ;;- Some of these insn's are composites of several m68000 op codes.
 ;;- The assembler (or final @@??) insures that the appropriate one is
 (define_constants
   [(UNSPECV_BLOCKAGE   0)
   ])
+
+;; Registers by name.
+(define_constants
+  [(A0_REG             8)
+   (SP_REG             15)
+  ])
+
+(include "predicates.md")
+\f
+;; Mode macros for floating point operations.
+;; Valid floating point modes
+(define_mode_macro FP [SF DF (XF "TARGET_68881")])
+;; Mnemonic infix to round result
+(define_mode_attr round [(SF "%$") (DF "%&") (XF "")])
+;; Mnemonic infix to round result for mul or div instruction
+(define_mode_attr round_mul [(SF "sgl") (DF "%&") (XF "")])
+;; Suffix specifying source operand format
+(define_mode_attr prec [(SF "s") (DF "d") (XF "x")])
+;; Allowable D registers
+(define_mode_attr dreg [(SF "d") (DF "") (XF "")])
+;; Allowable 68881 constant constraints
+(define_mode_attr const [(SF "F") (DF "G") (XF "")])
 \f
 (define_insn ""
   [(set (match_operand:DF 0 "push_operand" "=m")
        (match_operand:DF 1 "general_operand" "ro<>fyE"))]
   ""
-  "*
 {
   if (FP_REG_P (operands[1]))
-    return \"fmove%.d %f1,%0\";
+    return "fmove%.d %f1,%0";
   return output_move_double (operands);
-}")
+})
 
 (define_insn "pushdi"
   [(set (match_operand:DI 0 "push_operand" "=m")
        (match_operand:DI 1 "general_operand" "ro<>Fyi"))]
   ""
-  "*
 {
   return output_move_double (operands);
-}")
+})
 \f
 ;; We don't want to allow a constant operand for test insns because
 ;; (set (cc0) (const_int foo)) has no mode information.  Such insns will
    (clobber (match_scratch:SI 1 "=X,d"))
    (clobber (match_scratch:DI 2 "=d,X"))]
   ""
-  "*
 {
   if (which_alternative == 0)
     {
       xoperands[1] = operands[0];
       output_move_double (xoperands);
       cc_status.flags |= CC_REVERSED;
-      return \"neg%.l %R2\;negx%.l %2\";
+      return "neg%.l %R2\;negx%.l %2";
     }
   if (find_reg_note (insn, REG_DEAD, operands[0]))
     {
       cc_status.flags |= CC_REVERSED;
-      return \"neg%.l %R0\;negx%.l %0\";
+      return "neg%.l %R0\;negx%.l %0";
     }
   else
     /*
-    ** 'sub' clears %1, and also clears the X cc bit
-    ** 'tst' sets the Z cc bit according to the low part of the DImode operand
-    ** 'subx %1' (i.e. subx #0) acts as a (non-existent) tstx on the high part
+       'sub' clears %1, and also clears the X cc bit
+       'tst' sets the Z cc bit according to the low part of the DImode operand
+       'subx %1' (i.e. subx #0) acts as a (non-existent) tstx on the high part.
     */
-    return \"sub%.l %1,%1\;tst%.l %R0\;subx%.l %1,%0\";
-}")
+    return "sub%.l %1,%1\;tst%.l %R0\;subx%.l %1,%0";
+})
 
 (define_expand "tstsi"
   [(set (cc0)
   [(set (cc0)
        (match_operand:SI 0 "nonimmediate_operand" "rm"))]
   ""
-  "*
 {
-#ifdef ISI_OV
-  /* ISI's assembler fails to handle tstl a0.  */
-  if (! ADDRESS_REG_P (operands[0]))
-#else
-  if (TARGET_68020 || TARGET_5200 || ! ADDRESS_REG_P (operands[0]))
-#endif
-    return \"tst%.l %0\";
+  if (TARGET_68020 || TARGET_COLDFIRE || ! ADDRESS_REG_P (operands[0]))
+    return "tst%.l %0";
   /* If you think that the 68020 does not support tstl a0,
      reread page B-167 of the 68020 manual more carefully.  */
   /* On an address reg, cmpw may replace cmpl.  */
-#ifdef SGS_CMP_ORDER
-  return \"cmp%.w %0,%#0\";
-#else
-  return \"cmp%.w %#0,%0\";
-#endif
-}")
+  return "cmp%.w #0,%0";
+})
 
 ;; This can't use an address register, because comparisons
 ;; with address registers as second operand always test the whole word.
   ""
   "tst%.b %0")
 
-(define_expand "tstsf"
+(define_expand "tst<mode>"
   [(set (cc0)
-       (match_operand:SF 0 "general_operand" ""))]
-  "TARGET_68881"
-  "
+       (match_operand:FP 0 "general_operand" ""))]
+  "TARGET_HARD_FLOAT"
 {
   m68k_last_compare_had_fp_operands = 1;
-}")
+})
 
-(define_insn ""
+(define_insn "tst<mode>_68881"
   [(set (cc0)
-       (match_operand:SF 0 "general_operand" "fdm"))]
+       (match_operand:FP 0 "general_operand" "f<FP:dreg>m"))]
   "TARGET_68881"
-  "*
 {
   cc_status.flags = CC_IN_68881;
   if (FP_REG_P (operands[0]))
-    return \"ftst%.x %0\";
-  return \"ftst%.s %0\";
-}")
-
-(define_expand "tstdf"
-  [(set (cc0)
-       (match_operand:DF 0 "general_operand" ""))]
-  "TARGET_68881"
-  "
-{
-  m68k_last_compare_had_fp_operands = 1;
-}")
+    return "ftst%.x %0";
+  return "ftst%.<FP:prec> %0";
+})
 
-(define_insn ""
+(define_insn "tst<mode>_cf"
   [(set (cc0)
-       (match_operand:DF 0 "general_operand" "fm"))]
-  "TARGET_68881"
-  "*
+       (match_operand:FP 0 "general_operand" "f<FP:dreg><Q>U"))]
+  "TARGET_COLDFIRE_FPU"
 {
   cc_status.flags = CC_IN_68881;
   if (FP_REG_P (operands[0]))
-    return \"ftst%.x %0\";
-  return \"ftst%.d %0\";
-}")
+    return "ftst%.d %0";
+  return "ftst%.<FP:prec> %0";
+})
+
 \f
 ;; compare instructions.
 
                 (match_operand:DI 2 "general_operand" "d,0")))
    (clobber (match_operand:DI 0 "register_operand" "=d,d"))]
   ""
-  "*
 {
   if (rtx_equal_p (operands[0], operands[1]))
-    return \"sub%.l %R2,%R0\;subx%.l %2,%0\";
+    return "sub%.l %R2,%R0\;subx%.l %2,%0";
   else
     {
       cc_status.flags |= CC_REVERSED;
-      return \"sub%.l %R1,%R0\;subx%.l %1,%0\";
+      return "sub%.l %R1,%R0\;subx%.l %1,%0";
     }
-}")
+})
 
-;; This is the second "hook" for PIC code (in addition to movsi). See
-;; comment of movsi for a description of PIC handling.
 (define_expand "cmpsi"
   [(set (cc0)
        (compare (match_operand:SI 0 "nonimmediate_operand" "")
                 (match_operand:SI 1 "general_operand" "")))]
   ""
-  "
 {
   m68k_last_compare_had_fp_operands = 0;
-  if (flag_pic && !TARGET_PCREL && symbolic_operand (operands[1], SImode))
-    {
-      /* The source is an address which requires PIC relocation.
-         Call legitimize_pic_address with the source, mode, and a relocation
-         register (a new pseudo, or the final destination if reload_in_progress
-         is set).   Then fall through normally */
-      rtx temp = reload_in_progress ? operands[0] : gen_reg_rtx (Pmode);
-      operands[1] = legitimize_pic_address (operands[1], SImode, temp);
-    }
-}")
+})
 
 ;; A composite of the cmp, cmpa, cmpi & cmpm m68000 op codes.
 (define_insn ""
   [(set (cc0)
         (compare (match_operand:SI 0 "nonimmediate_operand" "rKT,rKs,mSr,mSa,>")
                  (match_operand:SI 1 "general_src_operand" "mSr,mSa,KTr,Ksr,>")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (GET_CODE (operands[0]) == MEM && GET_CODE (operands[1]) == MEM)
-#ifdef SGS_CMP_ORDER
-    return \"cmpm%.l %0,%1\";
-#else
-    return \"cmpm%.l %1,%0\";
-#endif
+    return "cmpm%.l %1,%0";
   if (REG_P (operands[1])
       || (!REG_P (operands[0]) && GET_CODE (operands[0]) != MEM))
-    { cc_status.flags |= CC_REVERSED;
-#ifdef SGS_CMP_ORDER
-      return \"cmp%.l %d1,%d0\";
-#else
-      return \"cmp%.l %d0,%d1\";
-#endif
+    {
+      cc_status.flags |= CC_REVERSED;
+      return "cmp%.l %d0,%d1";
     }
   if (ADDRESS_REG_P (operands[0])
       && GET_CODE (operands[1]) == CONST_INT
       && INTVAL (operands[1]) < 0x8000
       && INTVAL (operands[1]) >= -0x8000)
-    {
-#ifdef SGS_CMP_ORDER
-      return \"cmp%.w %0,%1\";
-#else
-      return \"cmp%.w %1,%0\";
-#endif
-    }
-#ifdef SGS_CMP_ORDER
-  return \"cmp%.l %d0,%d1\";
-#else
-  return \"cmp%.l %d1,%d0\";
-#endif
-}")
+    return "cmp%.w %1,%0";
+  return "cmp%.l %d1,%d0";
+})
 
 (define_insn ""
   [(set (cc0)
        (compare (match_operand:SI 0 "nonimmediate_operand" "mrKs,r")
                 (match_operand:SI 1 "general_operand" "r,mrKs")))]
-  "TARGET_5200"
-  "*
+  "TARGET_COLDFIRE"
 {
   if (REG_P (operands[1])
       || (!REG_P (operands[0]) && GET_CODE (operands[0]) != MEM))
-    { cc_status.flags |= CC_REVERSED;
-#ifdef SGS_CMP_ORDER
-      return \"cmp%.l %d1,%d0\";
-#else
-      return \"cmp%.l %d0,%d1\";
-#endif
+    {
+      cc_status.flags |= CC_REVERSED;
+      return "cmp%.l %d0,%d1";
     }
-#ifdef SGS_CMP_ORDER
-  return \"cmp%.l %d0,%d1\";
-#else
-  return \"cmp%.l %d1,%d0\";
-#endif
-}")
+  return "cmp%.l %d1,%d0";
+})
 
 (define_expand "cmphi"
   [(set (cc0)
         (compare (match_operand:HI 0 "nonimmediate_src_operand" "")
                  (match_operand:HI 1 "general_src_operand" "")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "m68k_last_compare_had_fp_operands = 0;")
 
 (define_insn ""
   [(set (cc0)
         (compare (match_operand:HI 0 "nonimmediate_src_operand" "rnmS,d,n,mS,>")
                  (match_operand:HI 1 "general_src_operand" "d,rnmS,mS,n,>")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (GET_CODE (operands[0]) == MEM && GET_CODE (operands[1]) == MEM)
-#ifdef SGS_CMP_ORDER
-    return \"cmpm%.w %0,%1\";
-#else
-    return \"cmpm%.w %1,%0\";
-#endif
+    return "cmpm%.w %1,%0";
   if ((REG_P (operands[1]) && !ADDRESS_REG_P (operands[1]))
       || (!REG_P (operands[0]) && GET_CODE (operands[0]) != MEM))
-    { cc_status.flags |= CC_REVERSED;
-#ifdef SGS_CMP_ORDER
-      return \"cmp%.w %d1,%d0\";
-#else
-      return \"cmp%.w %d0,%d1\";
-#endif
+    {
+      cc_status.flags |= CC_REVERSED;
+      return "cmp%.w %d0,%d1";
     }
-#ifdef SGS_CMP_ORDER
-  return \"cmp%.w %d0,%d1\";
-#else
-  return \"cmp%.w %d1,%d0\";
-#endif
-}")
+  return "cmp%.w %d1,%d0";
+})
 
 (define_expand "cmpqi"
   [(set (cc0)
         (compare (match_operand:QI 0 "nonimmediate_src_operand" "")
                  (match_operand:QI 1 "general_src_operand" "")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "m68k_last_compare_had_fp_operands = 0;")
 
 (define_insn ""
   [(set (cc0)
         (compare (match_operand:QI 0 "nonimmediate_src_operand" "dn,dmS,>")
                  (match_operand:QI 1 "general_src_operand" "dmS,nd,>")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (GET_CODE (operands[0]) == MEM && GET_CODE (operands[1]) == MEM)
-#ifdef SGS_CMP_ORDER
-    return \"cmpm%.b %0,%1\";
-#else
-    return \"cmpm%.b %1,%0\";
-#endif
+    return "cmpm%.b %1,%0";
   if (REG_P (operands[1])
       || (!REG_P (operands[0]) && GET_CODE (operands[0]) != MEM))
-    { cc_status.flags |= CC_REVERSED;
-#ifdef SGS_CMP_ORDER
-      return \"cmp%.b %d1,%d0\";
-#else
-      return \"cmp%.b %d0,%d1\";
-#endif
+    {
+      cc_status.flags |= CC_REVERSED;
+      return "cmp%.b %d0,%d1";
     }
-#ifdef SGS_CMP_ORDER
-  return \"cmp%.b %d0,%d1\";
-#else
-  return \"cmp%.b %d1,%d0\";
-#endif
-}")
+  return "cmp%.b %d1,%d0";
+})
 
-(define_expand "cmpdf"
+(define_expand "cmp<mode>"
   [(set (cc0)
-       (compare (match_operand:DF 0 "general_operand" "")
-                (match_operand:DF 1 "general_operand" "")))]
-  "TARGET_68881"
-  "
+       (compare (match_operand:FP 0 "general_operand" "")
+                (match_operand:FP 1 "general_operand" "")))]
+  "TARGET_HARD_FLOAT"
 {
   m68k_last_compare_had_fp_operands = 1;
-}")
+  if (TARGET_COLDFIRE && !reload_completed)
+    operands[1] = force_reg (<MODE>mode, operands[1]);
+})
 
-(define_insn ""
+(define_insn "cmp<mode>_68881"
   [(set (cc0)
-       (compare (match_operand:DF 0 "general_operand" "f,mG")
-                (match_operand:DF 1 "general_operand" "fmG,f")))]
+       (compare (match_operand:FP 0 "general_operand" "f,m<FP:const>")
+                (match_operand:FP 1 "general_operand" "f<FP:dreg>m<FP:const>,f")))]
   "TARGET_68881"
-  "*
 {
   cc_status.flags = CC_IN_68881;
-#ifdef SGS_CMP_ORDER
-  if (REG_P (operands[0]))
-    {
-      if (REG_P (operands[1]))
-       return \"fcmp%.x %0,%1\";
-      else
-        return \"fcmp%.d %0,%f1\";
-    }
-  cc_status.flags |= CC_REVERSED;
-  return \"fcmp%.d %1,%f0\";
-#else
-  if (REG_P (operands[0]))
+  if (FP_REG_P (operands[0]))
     {
-      if (REG_P (operands[1]))
-       return \"fcmp%.x %1,%0\";
+      if (FP_REG_P (operands[1]))
+       return "fcmp%.x %1,%0";
       else
-        return \"fcmp%.d %f1,%0\";
+        return "fcmp%.<FP:prec> %f1,%0";
     }
   cc_status.flags |= CC_REVERSED;
-  return \"fcmp%.d %f0,%1\";
-#endif
-}")
-
-(define_expand "cmpsf"
- [(set (cc0)
-       (compare (match_operand:SF 0 "general_operand" "")
-               (match_operand:SF 1 "general_operand" "")))]
- "TARGET_68881"
- "
-{
-  m68k_last_compare_had_fp_operands = 1;
-}")
+  return "fcmp%.<FP:prec> %f0,%1";
+})
 
-(define_insn ""
+(define_insn "cmp<mode>_cf"
   [(set (cc0)
-       (compare (match_operand:SF 0 "general_operand" "f,mdG")
-                (match_operand:SF 1 "general_operand" "fmdG,f")))]
-  "TARGET_68881"
-  "*
+       (compare (match_operand:FP 0 "general_operand" "f,<FP:dreg><Q>U")
+                (match_operand:FP 1 "general_operand" "f<FP:dreg><Q>U,f")))]
+  "TARGET_COLDFIRE_FPU"
 {
   cc_status.flags = CC_IN_68881;
-#ifdef SGS_CMP_ORDER
-  if (FP_REG_P (operands[0]))
-    {
-      if (FP_REG_P (operands[1]))
-       return \"fcmp%.x %0,%1\";
-      else
-        return \"fcmp%.s %0,%f1\";
-    }
-  cc_status.flags |= CC_REVERSED;
-  return \"fcmp%.s %1,%f0\";
-#else
   if (FP_REG_P (operands[0]))
     {
       if (FP_REG_P (operands[1]))
-       return \"fcmp%.x %1,%0\";
+       return "fcmp%.d %1,%0";
       else
-        return \"fcmp%.s %f1,%0\";
+       return "fcmp%.<FP:prec> %f1,%0";
     }
   cc_status.flags |= CC_REVERSED;
-  return \"fcmp%.s %f0,%1\";
-#endif
-}")
+  return "fcmp%.<FP:prec> %f0,%1";
+})
 \f
 ;; Recognizers for btst instructions.
 
-;; Coldfire/5200 only allows "<Q>" type addresses when the bit position is
+;; ColdFire/5200 only allows "<Q>" type addresses when the bit position is
 ;; specified as a constant, so we must disable all patterns that may extract
 ;; from a MEM at a constant bit position if we can't use this as a constraint.
 
                            (const_int 1)
                            (minus:SI (const_int 7)
                                      (match_operand:SI 1 "general_operand" "di"))))]
-  "!TARGET_5200"
-  "* { return output_btst (operands, operands[1], operands[0], insn, 7); }")
+  "!TARGET_COLDFIRE"
+{
+  return output_btst (operands, operands[1], operands[0], insn, 7);
+})
 
 ;; This is the same as the above pattern except for the constraints.  The 'i'
 ;; has been deleted.
                            (const_int 1)
                            (minus:SI (const_int 7)
                                      (match_operand:SI 1 "general_operand" "d"))))]
-  "TARGET_5200"
-  "* { return output_btst (operands, operands[1], operands[0], insn, 7); }")
+  "TARGET_COLDFIRE"
+{
+  return output_btst (operands, operands[1], operands[0], insn, 7);
+})
 
 (define_insn ""
   [(set (cc0) (zero_extract (match_operand:SI 0 "register_operand" "d")
                            (minus:SI (const_int 31)
                                      (match_operand:SI 1 "general_operand" "di"))))]
   ""
-  "* { return output_btst (operands, operands[1], operands[0], insn, 31); }")
+{
+  return output_btst (operands, operands[1], operands[0], insn, 31);
+})
 
 ;; The following two patterns are like the previous two
 ;; except that they use the fact that bit-number operands
                                       (match_operand:SI 1 "register_operand" "d")
                                       (const_int 7)))))]
   ""
-  "* { return output_btst (operands, operands[1], operands[0], insn, 7); }")
+{
+  return output_btst (operands, operands[1], operands[0], insn, 7);
+})
 
 (define_insn ""
   [(set (cc0) (zero_extract (match_operand:SI 0 "register_operand" "d")
                                       (match_operand:SI 1 "register_operand" "d")
                                       (const_int 31)))))]
   ""
-  "* { return output_btst (operands, operands[1], operands[0], insn, 31); }")
+{
+  return output_btst (operands, operands[1], operands[0], insn, 31);
+})
 
 ;; Nonoffsettable mem refs are ok in this one pattern
 ;; since we don't try to adjust them.
   [(set (cc0) (zero_extract (match_operand:QI 0 "memory_operand" "m")
                            (const_int 1)
                            (match_operand:SI 1 "const_int_operand" "n")))]
-  "(unsigned) INTVAL (operands[1]) < 8 && !TARGET_5200"
-  "*
+  "(unsigned) INTVAL (operands[1]) < 8 && !TARGET_COLDFIRE"
 {
   operands[1] = GEN_INT (7 - INTVAL (operands[1]));
   return output_btst (operands, operands[1], operands[0], insn, 7);
-}")
+})
 
 (define_insn ""
   [(set (cc0) (zero_extract (match_operand:SI 0 "register_operand" "do")
                            (const_int 1)
                            (match_operand:SI 1 "const_int_operand" "n")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (GET_CODE (operands[0]) == MEM)
     {
     }
   operands[1] = GEN_INT (31 - INTVAL (operands[1]));
   return output_btst (operands, operands[1], operands[0], insn, 31);
-}")
+})
 
 ;; This is the same as the above pattern except for the constraints.
 ;; The 'o' has been replaced with 'Q'.
   [(set (cc0) (zero_extract (match_operand:SI 0 "register_operand" "dQ")
                            (const_int 1)
                            (match_operand:SI 1 "const_int_operand" "n")))]
-  "TARGET_5200"
-  "*
+  "TARGET_COLDFIRE"
 {
   if (GET_CODE (operands[0]) == MEM)
     {
     }
   operands[1] = GEN_INT (31 - INTVAL (operands[1]));
   return output_btst (operands, operands[1], operands[0], insn, 31);
-}")
+})
 
 \f
 ;; move instructions
   [(set (match_operand:SI 0 "push_operand" "=m")
        (match_operand:SI 1 "const_int_operand" "J"))]
   "INTVAL (operands[1]) >= -0x8000 && INTVAL (operands[1]) < 0x8000"
-  "*
 {
   if (operands[1] == const0_rtx)
-    return \"clr%.l %0\";
-  return \"pea %a1\";
-}")
+    return "clr%.l %0";
+  if (valid_mov3q_const(operands[1]))
+    return "mov3q%.l %1,%-";
+  return "pea %a1";
+})
 
 ;This is never used.
 ;(define_insn "swapsi"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=g")
        (const_int 0))]
   ;; clr insns on 68000 read before writing.
-  ;; This isn't so on the 68010, but we have no TARGET_68010.
-  "((TARGET_68020 || TARGET_5200)
+  "((TARGET_68010 || TARGET_COLDFIRE)
     || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0])))"
-  "*
 {
   if (ADDRESS_REG_P (operands[0]))
     {
       /* On the '040, 'subl an,an' takes 2 clocks while lea takes only 1 */
-      if (!TARGET_68040 && !TARGET_68060)
-       return \"sub%.l %0,%0\";
+      if (TUNE_68040_60)
+       return MOTOROLA ? "lea 0.w,%0" : "lea 0:w,%0";
       else
-       {
-#ifdef MOTOROLA
-#ifdef SGS
-         /* Many SGS assemblers croak on size specifiers for constants.  */
-         return \"lea 0,%0\";
-#else
-         return \"lea 0.w,%0\";
-#endif
-#else
-         return \"lea 0:w,%0\";
-#endif
-       }
+       return "sub%.l %0,%0";
     }
   /* moveq is faster on the 68000.  */
-  if (DATA_REG_P (operands[0]) && (!TARGET_68020 && !TARGET_5200))
-#if defined(MOTOROLA)
-    return \"moveq%.l %#0,%0\";
-#else
-    return \"moveq %#0,%0\";
-#endif
-  return \"clr%.l %0\";
-}")
+  if (DATA_REG_P (operands[0]) && TUNE_68000_10)
+    return "moveq #0,%0";
+  return "clr%.l %0";
+})
 
 ;; General case of fullword move.
 ;;
   [(set (match_operand:SI 0 "nonimmediate_operand" "")
        (match_operand:SI 1 "general_operand" ""))]
   ""
-  "
 {
   if (flag_pic && !TARGET_PCREL && symbolic_operand (operands[1], SImode))
     {
        operands[0] = force_reg (SImode, XEXP (operands[0], 0));
       else if (GET_CODE (operands[0]) == MEM
               && symbolic_operand (XEXP (operands[0], 0), SImode))
-       operands[0] = gen_rtx (MEM, SImode,
+       operands[0] = gen_rtx_MEM (SImode,
                               force_reg (SImode, XEXP (operands[0], 0)));
     }
-}")
+})
 
 ;; General case of fullword move.  The register constraints
 ;; force integer constants in range for a moveq to be reloaded
   [(set (match_operand:SI 0 "nonimmediate_operand" "=g,d,a<")
         (match_operand:SI 1 "general_src_operand" "daymSKT,n,i"))]
 
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   return output_move_simode (operands);
-}")
+})
 
-(define_insn ""
-  [(set (match_operand:SI 0 "nonimmediate_operand" "=r<Q>,g")
-       (match_operand:SI 1 "general_operand" "g,r<Q>"))]
-  "TARGET_5200"
+(define_insn "*movsi_cf"
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=r<Q>,g,U")
+       (match_operand:SI 1 "general_operand" "g,r<Q>,U"))]
+  "TARGET_COLDFIRE && !TARGET_ISAB"
+  "* return output_move_simode (operands);")
+
+(define_insn "*movsi_cfv4"
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=r<Q>,g,U")
+       (match_operand:SI 1 "general_operand" "Rg,Rr<Q>,U"))]
+  "TARGET_ISAB"
   "* return output_move_simode (operands);")
 
 ;; Special case of fullword move, where we need to get a non-GOT PIC
   [(set (match_operand:SI 0 "nonimmediate_operand" "=a<")
         (match_operand:SI 1 "pcrel_address" ""))]
   "TARGET_PCREL"
-  "*
 {
   if (push_operand (operands[0], SImode))
-    return \"pea %a1\";
-  return \"lea %a1,%0\";
-}")
+    return "pea %a1";
+  return "lea %a1,%0";
+})
 
 (define_expand "movhi"
   [(set (match_operand:HI 0 "nonimmediate_operand" "")
 (define_insn ""
   [(set (match_operand:HI 0 "nonimmediate_operand" "=g")
         (match_operand:HI 1 "general_src_operand" "gS"))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "* return output_move_himode (operands);")
 
- (define_insn ""
-  [(set (match_operand:HI 0 "nonimmediate_operand" "=r<Q>,g")
-       (match_operand:HI 1 "general_operand" "g,r<Q>"))]
-  "TARGET_5200"
+(define_insn ""
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=r<Q>,g,U")
+       (match_operand:HI 1 "general_operand" "g,r<Q>,U"))]
+  "TARGET_COLDFIRE"
   "* return output_move_himode (operands);")
 
 (define_expand "movstricthi"
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+dm"))
        (match_operand:HI 1 "general_src_operand" "rmSn"))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "* return output_move_stricthi (operands);")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+d,m"))
        (match_operand:HI 1 "general_src_operand" "rmn,r"))]
-  "TARGET_5200"
+  "TARGET_COLDFIRE"
   "* return output_move_stricthi (operands);")
 
 (define_expand "movqi"
 (define_insn ""
   [(set (match_operand:QI 0 "nonimmediate_operand" "=d,*a,m")
        (match_operand:QI 1 "general_src_operand" "dmSi*a,di*a,dmSi"))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "* return output_move_qimode (operands);")
 
 (define_insn ""
-  [(set (match_operand:QI 0 "nonimmediate_operand" "=d<Q>,dm,d*a")
-       (match_operand:QI 1 "general_src_operand" "dmi,d<Q>,di*a"))]
-  "TARGET_5200"
+  [(set (match_operand:QI 0 "nonimmediate_operand" "=d<Q>,dm,U,d*a")
+       (match_operand:QI 1 "general_src_operand" "dmi,d<Q>,U,di*a"))]
+  "TARGET_COLDFIRE"
   "* return output_move_qimode (operands);")
 
 (define_expand "movstrictqi"
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+dm"))
        (match_operand:QI 1 "general_src_operand" "dmSn"))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "* return output_move_strictqi (operands);")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+d,m"))
        (match_operand:QI 1 "general_src_operand" "dmn,d"))]
-  "TARGET_5200"
+  "TARGET_COLDFIRE"
   "* return output_move_strictqi (operands);")
 
 (define_expand "pushqi1"
-  [(set (reg:SI 15) (plus:SI (reg:SI 15) (const_int -2)))
-   (set (mem:QI (plus:SI (reg:SI 15) (const_int 1)))
+  [(set (reg:SI SP_REG) (plus:SI (reg:SI SP_REG) (const_int -2)))
+   (set (mem:QI (plus:SI (reg:SI SP_REG) (const_int 1)))
        (match_operand:QI 0 "general_operand" ""))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "")
 
+(define_expand "reload_insf"
+  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
+        (match_operand:SF 1 "general_operand" "mf"))
+   (clobber (match_operand:SI 2 "register_operand" "=&a"))]
+  "TARGET_COLDFIRE_FPU"
+{
+  if (emit_move_sequence (operands, SFmode, operands[2]))
+    DONE;
+
+  /* We don't want the clobber emitted, so handle this ourselves. */
+  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
+  DONE;
+})
+
+(define_expand "reload_outsf"
+  [(set (match_operand:SF 0 "general_operand" "")
+        (match_operand:SF 1 "register_operand" "f"))
+   (clobber (match_operand:SI 2 "register_operand" "=&a"))]
+  "TARGET_COLDFIRE_FPU"
+{
+  if (emit_move_sequence (operands, SFmode, operands[2]))
+    DONE;
+
+  /* We don't want the clobber emitted, so handle this ourselves. */
+  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
+  DONE;
+})
+
 (define_expand "movsf"
   [(set (match_operand:SF 0 "nonimmediate_operand" "")
        (match_operand:SF 1 "general_operand" ""))]
 (define_insn ""
   [(set (match_operand:SF 0 "nonimmediate_operand" "=rmf")
        (match_operand:SF 1 "general_operand" "rmfF"))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (FP_REG_P (operands[0]))
     {
       if (FP_REG_P (operands[1]))
-       return \"f%$move%.x %1,%0\";
+       return "f%$move%.x %1,%0";
       else if (ADDRESS_REG_P (operands[1]))
-       return \"move%.l %1,%-\;f%$move%.s %+,%0\";
+       return "move%.l %1,%-\;f%$move%.s %+,%0";
       else if (GET_CODE (operands[1]) == CONST_DOUBLE)
        return output_move_const_single (operands);
-      return \"f%$move%.s %f1,%0\";
+      return "f%$move%.s %f1,%0";
     }
   if (FP_REG_P (operands[1]))
     {
       if (ADDRESS_REG_P (operands[0]))
-       return \"fmove%.s %1,%-\;move%.l %+,%0\";
-      return \"fmove%.s %f1,%0\";
+       return "fmove%.s %1,%-\;move%.l %+,%0";
+      return "fmove%.s %f1,%0";
     }
   if (operands[1] == CONST0_RTX (SFmode)
-      /* clr insns on 68000 read before writing.
-        This isn't so on the 68010, but we have no TARGET_68010.  */
-      && ((TARGET_68020 || TARGET_5200)
+      /* clr insns on 68000 read before writing.  */
+      && ((TARGET_68010 || TARGET_COLDFIRE)
          || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0]))))
     {
       if (ADDRESS_REG_P (operands[0]))
        {
          /* On the '040, 'subl an,an' takes 2 clocks while lea takes only 1 */
-         if (!TARGET_68040 && !TARGET_68060)
-           return \"sub%.l %0,%0\";
+         if (TUNE_68040_60)
+           return MOTOROLA ? "lea 0.w,%0" : "lea 0:w,%0";
          else
-           {
-#ifdef MOTOROLA
-#ifdef SGS
-             /* Many SGS assemblers croak on size specifiers for constants.  */
-             return \"lea 0,%0\";
-#else
-             return \"lea 0.w,%0\";
-#endif
-#else
-             return \"lea 0:w,%0\";
-#endif
-           }
+           return "sub%.l %0,%0";
        }
       /* moveq is faster on the 68000.  */
-      if (DATA_REG_P (operands[0]) && !(TARGET_68020 || TARGET_5200))
-       {
-#if defined(MOTOROLA)
-         return \"moveq%.l %#0,%0\";
-#else
-         return \"moveq %#0,%0\";
-#endif
-       }
-      return \"clr%.l %0\";
+      if (DATA_REG_P (operands[0]) && TUNE_68000_10)
+       return "moveq #0,%0";
+      return "clr%.l %0";
     }
-  return \"move%.l %1,%0\";
-}")
+  return "move%.l %1,%0";
+})
 
-(define_insn ""
+(define_insn "movsf_cf_soft"
   [(set (match_operand:SF 0 "nonimmediate_operand" "=r,g")
        (match_operand:SF 1 "general_operand" "g,r"))]
-  "TARGET_5200"
-  "* return \"move%.l %1,%0\";")
+  "TARGET_COLDFIRE && !TARGET_COLDFIRE_FPU"
+{
+  return "move%.l %1,%0";
+})
+
+(define_insn "movsf_cf_hard"
+  [(set (match_operand:SF 0 "nonimmediate_operand" "=r<Q>U, f,    f,mr,f,r<Q>,f
+,m")
+        (match_operand:SF 1 "general_operand"      " f,     r<Q>U,f,rm,F,F,   m
+,f"))]
+  "TARGET_COLDFIRE_FPU"
+{
+  if (which_alternative == 4 || which_alternative == 5) {
+    rtx xoperands[2];
+    REAL_VALUE_TYPE r;
+    long l;
+    REAL_VALUE_FROM_CONST_DOUBLE (r, operands[1]);
+    REAL_VALUE_TO_TARGET_SINGLE (r, l);
+    xoperands[0] = operands[0];
+    xoperands[1] = GEN_INT (l);
+    if (which_alternative == 5) {
+      if (l == 0) {
+        if (ADDRESS_REG_P (xoperands[0]))
+          output_asm_insn ("sub%.l %0,%0", xoperands);
+        else
+          output_asm_insn ("clr%.l %0", xoperands);
+      } else
+        if (GET_CODE (operands[0]) == MEM
+            && symbolic_operand (XEXP (operands[0], 0), SImode))
+          output_asm_insn ("move%.l %1,%-;move%.l %+,%0", xoperands);
+        else
+          output_asm_insn ("move%.l %1,%0", xoperands);
+      return "";
+    }
+    if (l != 0)
+      output_asm_insn ("move%.l %1,%-;fsmove%.s %+,%0", xoperands);
+    else
+      output_asm_insn ("clr%.l %-;fsmove%.s %+,%0", xoperands);
+    return "";
+  }
+  if (FP_REG_P (operands[0]))
+    {
+      if (ADDRESS_REG_P (operands[1]))
+        return "move%.l %1,%-;f%$smove%.s %+,%0";
+      if (FP_REG_P (operands[1]))
+        return "f%$move%.d %1,%0";
+      if (GET_CODE (operands[1]) == CONST_DOUBLE)
+        return output_move_const_single (operands);
+      return "f%$move%.s %f1,%0";
+    }
+  if (FP_REG_P (operands[1]))
+    {
+      if (ADDRESS_REG_P (operands[0]))
+        return "fmove%.s %1,%-;move%.l %+,%0";
+      return "fmove%.s %f1,%0";
+    }
+  if (operands[1] == CONST0_RTX (SFmode))
+    {
+      if (ADDRESS_REG_P (operands[0]))
+       return "sub%.l %0,%0";
+      return "clr%.l %0";
+    }
+  return "move%.l %1,%0";
+})
+
+(define_expand "reload_indf"
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
+        (match_operand:DF 1 "general_operand" "mf"))
+   (clobber (match_operand:SI 2 "register_operand" "=&a"))]
+  "TARGET_COLDFIRE_FPU"
+{
+  if (emit_move_sequence (operands, DFmode, operands[2]))
+    DONE;
+
+  /* We don't want the clobber emitted, so handle this ourselves. */
+  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
+  DONE;
+})
+
+(define_expand "reload_outdf"
+  [(set (match_operand:DF 0 "general_operand" "")
+        (match_operand:DF 1 "register_operand" "f"))
+   (clobber (match_operand:SI 2 "register_operand" "=&a"))]
+  "TARGET_COLDFIRE_FPU"
+{
+  if (emit_move_sequence (operands, DFmode, operands[2]))
+    DONE;
+
+  /* We don't want the clobber emitted, so handle this ourselves. */
+  emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
+  DONE;
+})
 
 (define_expand "movdf"
   [(set (match_operand:DF 0 "nonimmediate_operand" "")
        (match_operand:DF 1 "general_operand" ""))]
   ""
-  "")
+{
+  if (TARGET_COLDFIRE_FPU)
+    if (emit_move_sequence (operands, DFmode, 0))
+      DONE;
+})
 
 (define_insn ""
   [(set (match_operand:DF 0 "nonimmediate_operand" "=rm,rf,rf,&rof<>")
        (match_operand:DF 1 "general_operand" "*rf,m,0,*rofE<>"))]
 ;  [(set (match_operand:DF 0 "nonimmediate_operand" "=rm,&rf,&rof<>")
 ;      (match_operand:DF 1 "general_operand" "rf,m,rofF<>"))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (FP_REG_P (operands[0]))
     {
       if (FP_REG_P (operands[1]))
-       return \"f%&move%.x %1,%0\";
+       return "f%&move%.x %1,%0";
       if (REG_P (operands[1]))
        {
          rtx xoperands[2];
          xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
-         output_asm_insn (\"move%.l %1,%-\", xoperands);
-         output_asm_insn (\"move%.l %1,%-\", operands);
-         return \"f%&move%.d %+,%0\";
+         output_asm_insn ("move%.l %1,%-", xoperands);
+         output_asm_insn ("move%.l %1,%-", operands);
+         return "f%&move%.d %+,%0";
        }
       if (GET_CODE (operands[1]) == CONST_DOUBLE)
        return output_move_const_double (operands);
-      return \"f%&move%.d %f1,%0\";
+      return "f%&move%.d %f1,%0";
     }
   else if (FP_REG_P (operands[1]))
     {
       if (REG_P (operands[0]))
        {
-         output_asm_insn (\"fmove%.d %f1,%-\;move%.l %+,%0\", operands);
+         output_asm_insn ("fmove%.d %f1,%-\;move%.l %+,%0", operands);
          operands[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-         return \"move%.l %+,%0\";
+         return "move%.l %+,%0";
        }
       else
-        return \"fmove%.d %f1,%0\";
+        return "fmove%.d %f1,%0";
     }
   return output_move_double (operands);
-}")
+})
 
-(define_insn ""
+(define_insn "movdf_cf_soft"
   [(set (match_operand:DF 0 "nonimmediate_operand" "=r,g")
        (match_operand:DF 1 "general_operand" "g,r"))]
-  "TARGET_5200"
-  "* return output_move_double (operands);")
+  "TARGET_COLDFIRE && !TARGET_COLDFIRE_FPU"
+{
+  return output_move_double (operands);
+})
+
+(define_insn "movdf_cf_hard"
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=f,    <Q>U,r,f,r,r,m,f")
+        (match_operand:DF 1 "general_operand"      " f<Q>U,f,   f,r,r,m,r,E"))]
+  "TARGET_COLDFIRE_FPU"
+{
+  rtx xoperands[3];
+  REAL_VALUE_TYPE r;
+  long l[2];
+
+  switch (which_alternative)
+    {
+    default:
+      return "fmove%.d %1,%0";
+    case 2:
+      return "fmove%.d %1,%-;move%.l %+,%0;move%.l %+,%R0";
+    case 3:
+      return "move%.l %R1,%-;move%.l %1,%-;f%&move%.d %+,%0";
+    case 4:
+      return "move%.l %1,%0;move%.l %R1,%R0";
+    case 5: case 6:
+      return output_move_double (operands);
+    case 7:
+      REAL_VALUE_FROM_CONST_DOUBLE (r, operands[1]);
+      REAL_VALUE_TO_TARGET_DOUBLE (r, l);
+      xoperands[0] = operands[0];
+      xoperands[1] = GEN_INT (l[0]);
+      xoperands[2] = GEN_INT (l[1]);
+      if (operands[1] == CONST0_RTX (DFmode))
+       output_asm_insn ("clr%.l %-;clr%.l %-;fdmove%.d %+,%0",
+                       xoperands);
+      else
+       if (l[1] == 0)
+         output_asm_insn ("clr%.l %-;move%.l %1,%-;fdmove%.d %+,%0",
+                         xoperands);
+       else
+         output_asm_insn ("move%.l %2,%-;move%.l %1,%-;fdmove%.d %+,%0",
+                         xoperands);
+      return "";
+    }
+})
+
+;; ??? The XFmode patterns are schizophrenic about whether constants are
+;; allowed.  Most but not all have predicates and constraint that disallow
+;; constants.  Most but not all have output templates that handle constants.
+;; See also LEGITIMATE_CONSTANT_P.
 
 (define_expand "movxf"
   [(set (match_operand:XF 0 "nonimmediate_operand" "")
        (match_operand:XF 1 "general_operand" ""))]
   ""
-  "
 {
-  if (CONSTANT_P (operands[1]))
-    {
-      operands[1] = force_const_mem (XFmode, operands[1]);
-      if (! memory_address_p (XFmode, XEXP (operands[1], 0))
-         && ! reload_in_progress)
-       operands[1] = adjust_address (operands[1], XFmode, 0);
-    }
-  if (flag_pic && TARGET_PCREL && ! reload_in_progress)
+  /* We can't rewrite operands during reload.  */
+  if (! reload_in_progress)
     {
-      /* Don't allow writes to memory except via a register;
-        the m68k doesn't consider PC-relative addresses to be writable.  */
-      if (GET_CODE (operands[0]) == MEM
-         && symbolic_operand (XEXP (operands[0], 0), SImode))
-       operands[0] = gen_rtx (MEM, XFmode,
-                              force_reg (SImode, XEXP (operands[0], 0)));
+      if (CONSTANT_P (operands[1]))
+       {
+         operands[1] = force_const_mem (XFmode, operands[1]);
+         if (! memory_address_p (XFmode, XEXP (operands[1], 0)))
+           operands[1] = adjust_address (operands[1], XFmode, 0);
+       }
+      if (flag_pic && TARGET_PCREL)
+       {
+         /* Don't allow writes to memory except via a register; the
+            m68k doesn't consider PC-relative addresses to be writable.  */
+         if (GET_CODE (operands[0]) == MEM
+             && symbolic_operand (XEXP (operands[0], 0), SImode))
+           operands[0] = gen_rtx_MEM (XFmode,
+                                  force_reg (SImode, XEXP (operands[0], 0)));
+       }
     }
-}")
+})
 
 (define_insn ""
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f,m,f,!r,!f,!r")
-       (match_operand:XF 1 "nonimmediate_operand" "m,f,f,f,r,!r"))]
+  [(set (match_operand:XF 0 "nonimmediate_operand" "=f,m,f,!r,!f,!r,m,!r")
+       (match_operand:XF 1 "nonimmediate_operand" "m,f,f,f,r,!r,!r,m"))]
   "TARGET_68881"
-  "*
 {
   if (FP_REG_P (operands[0]))
     {
       if (FP_REG_P (operands[1]))
-       return \"fmove%.x %1,%0\";
+       return "fmove%.x %1,%0";
       if (REG_P (operands[1]))
        {
          rtx xoperands[2];
          xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 2);
-         output_asm_insn (\"move%.l %1,%-\", xoperands);
+         output_asm_insn ("move%.l %1,%-", xoperands);
          xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
-         output_asm_insn (\"move%.l %1,%-\", xoperands);
-         output_asm_insn (\"move%.l %1,%-\", operands);
-         return \"fmove%.x %+,%0\";
+         output_asm_insn ("move%.l %1,%-", xoperands);
+         output_asm_insn ("move%.l %1,%-", operands);
+         return "fmove%.x %+,%0";
        }
       if (GET_CODE (operands[1]) == CONST_DOUBLE)
-        return \"fmove%.x %1,%0\";
-      return \"fmove%.x %f1,%0\";
+        return "fmove%.x %1,%0";
+      return "fmove%.x %f1,%0";
     }
   if (FP_REG_P (operands[1]))
     {
       if (REG_P (operands[0]))
        {
-         output_asm_insn (\"fmove%.x %f1,%-\;move%.l %+,%0\", operands);
+         output_asm_insn ("fmove%.x %f1,%-\;move%.l %+,%0", operands);
          operands[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-         output_asm_insn (\"move%.l %+,%0\", operands);
+         output_asm_insn ("move%.l %+,%0", operands);
          operands[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-         return \"move%.l %+,%0\";
+         return "move%.l %+,%0";
        }
       /* Must be memory destination.  */
-      return \"fmove%.x %f1,%0\";
+      return "fmove%.x %f1,%0";
     }
   return output_move_double (operands);
-}
-")
+})
 
 (define_insn ""
   [(set (match_operand:XF 0 "nonimmediate_operand" "=rm,rf,&rof<>")
        (match_operand:XF 1 "nonimmediate_operand" "rf,m,rof<>"))]
-  "! TARGET_68881 && ! TARGET_5200"
-  "*
+  "! TARGET_68881 && ! TARGET_COLDFIRE"
 {
   if (FP_REG_P (operands[0]))
     {
       if (FP_REG_P (operands[1]))
-       return \"fmove%.x %1,%0\";
+       return "fmove%.x %1,%0";
       if (REG_P (operands[1]))
        {
          rtx xoperands[2];
          xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 2);
-         output_asm_insn (\"move%.l %1,%-\", xoperands);
+         output_asm_insn ("move%.l %1,%-", xoperands);
          xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
-         output_asm_insn (\"move%.l %1,%-\", xoperands);
-         output_asm_insn (\"move%.l %1,%-\", operands);
-         return \"fmove%.x %+,%0\";
+         output_asm_insn ("move%.l %1,%-", xoperands);
+         output_asm_insn ("move%.l %1,%-", operands);
+         return "fmove%.x %+,%0";
        }
       if (GET_CODE (operands[1]) == CONST_DOUBLE)
-        return \"fmove%.x %1,%0\";
-      return \"fmove%.x %f1,%0\";
+        return "fmove%.x %1,%0";
+      return "fmove%.x %f1,%0";
     }
   if (FP_REG_P (operands[1]))
     {
       if (REG_P (operands[0]))
         {
-          output_asm_insn (\"fmove%.x %f1,%-\;move%.l %+,%0\", operands);
+          output_asm_insn ("fmove%.x %f1,%-\;move%.l %+,%0", operands);
           operands[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-          output_asm_insn (\"move%.l %+,%0\", operands);
+          output_asm_insn ("move%.l %+,%0", operands);
           operands[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-          return \"move%.l %+,%0\";
+          return "move%.l %+,%0";
         }
       else
-        return \"fmove%.x %f1,%0\";
+        return "fmove%.x %f1,%0";
     }
   return output_move_double (operands);
-}
-")
+})
 
 (define_insn ""
   [(set (match_operand:XF 0 "nonimmediate_operand" "=r,g")
        (match_operand:XF 1 "nonimmediate_operand" "g,r"))]
-  "! TARGET_68881 && TARGET_5200"
+  "! TARGET_68881 && TARGET_COLDFIRE"
   "* return output_move_double (operands);")
 
 (define_expand "movdi"
 ;      (match_operand:DI 1 "general_operand" "r,m,roi<>,fF"))]
 ;  [(set (match_operand:DI 0 "nonimmediate_operand" "=rm,&rf,&ro<>,!&rm,!&f")
 ;      (match_operand:DI 1 "general_operand" "r,m,roi<>,fF,rfF"))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (FP_REG_P (operands[0]))
     {
       if (FP_REG_P (operands[1]))
-       return \"fmove%.x %1,%0\";
+       return "fmove%.x %1,%0";
       if (REG_P (operands[1]))
        {
          rtx xoperands[2];
          xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
-         output_asm_insn (\"move%.l %1,%-\", xoperands);
-         output_asm_insn (\"move%.l %1,%-\", operands);
-         return \"fmove%.d %+,%0\";
+         output_asm_insn ("move%.l %1,%-", xoperands);
+         output_asm_insn ("move%.l %1,%-", operands);
+         return "fmove%.d %+,%0";
        }
       if (GET_CODE (operands[1]) == CONST_DOUBLE)
        return output_move_const_double (operands);
-      return \"fmove%.d %f1,%0\";
+      return "fmove%.d %f1,%0";
     }
   else if (FP_REG_P (operands[1]))
     {
       if (REG_P (operands[0]))
        {
-         output_asm_insn (\"fmove%.d %f1,%-\;move%.l %+,%0\", operands);
+         output_asm_insn ("fmove%.d %f1,%-\;move%.l %+,%0", operands);
          operands[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-         return \"move%.l %+,%0\";
+         return "move%.l %+,%0";
        }
       else
-        return \"fmove%.d %f1,%0\";
+        return "fmove%.d %f1,%0";
     }
   return output_move_double (operands);
-}")
+})
 
 (define_insn ""
   [(set (match_operand:DI 0 "nonimmediate_operand" "=r,g")
        (match_operand:DI 1 "general_operand" "g,r"))]
-  "TARGET_5200"
+  "TARGET_COLDFIRE"
   "* return output_move_double (operands);")
 
 ;; Thus goes after the move instructions
        (truncate:QI
         (match_operand:SI 1 "general_src_operand" "doJS,i")))]
   ""
-  "*
 {
   if (GET_CODE (operands[0]) == REG)
     {
       /* Must clear condition codes, since the move.l bases them on
         the entire 32 bits, not just the desired 8 bits.  */
       CC_STATUS_INIT;
-      return \"move%.l %1,%0\";
+      return "move%.l %1,%0";
     }
   if (GET_CODE (operands[1]) == MEM)
     operands[1] = adjust_address (operands[1], QImode, 3);
-  return \"move%.b %1,%0\";
-}")
+  return "move%.b %1,%0";
+})
 
 (define_insn "trunchiqi2"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=dm,d")
        (truncate:QI
         (match_operand:HI 1 "general_src_operand" "doJS,i")))]
   ""
-  "*
 {
   if (GET_CODE (operands[0]) == REG
       && (GET_CODE (operands[1]) == MEM
       /* Must clear condition codes, since the move.w bases them on
         the entire 16 bits, not just the desired 8 bits.  */
       CC_STATUS_INIT;
-      return \"move%.w %1,%0\";
+      return "move%.w %1,%0";
     }
   if (GET_CODE (operands[0]) == REG)
     {
       /* Must clear condition codes, since the move.l bases them on
         the entire 32 bits, not just the desired 8 bits.  */
       CC_STATUS_INIT;
-      return \"move%.l %1,%0\";
+      return "move%.l %1,%0";
     }
   if (GET_CODE (operands[1]) == MEM)
     operands[1] = adjust_address (operands[1], QImode, 1);
-  return \"move%.b %1,%0\";
-}")
+  return "move%.b %1,%0";
+})
 
 (define_insn "truncsihi2"
   [(set (match_operand:HI 0 "nonimmediate_operand" "=dm,d")
        (truncate:HI
         (match_operand:SI 1 "general_src_operand" "roJS,i")))]
   ""
-  "*
 {
   if (GET_CODE (operands[0]) == REG)
     {
       /* Must clear condition codes, since the move.l bases them on
         the entire 32 bits, not just the desired 8 bits.  */
       CC_STATUS_INIT;
-      return \"move%.l %1,%0\";
+      return "move%.l %1,%0";
     }
   if (GET_CODE (operands[1]) == MEM)
     operands[1] = adjust_address (operands[1], QImode, 2);
-  return \"move%.w %1,%0\";
-}")
+  return "move%.w %1,%0";
+})
 \f
 ;; zero extension instructions
 
-(define_insn "zero_extendqidi2"
-  [(set (match_operand:DI 0 "nonimmediate_operand" "=&d")
-       (zero_extend:DI (match_operand:QI 1 "general_operand" "dm")))]
+;; two special patterns to match various post_inc/pre_dec patterns
+(define_insn_and_split "*zero_extend_inc"
+  [(set (match_operand 0 "post_inc_operand" "")
+       (zero_extend (match_operand 1 "register_operand" "")))]
+  "GET_MODE_CLASS (GET_MODE (operands[0])) == MODE_INT &&
+   GET_MODE_CLASS (GET_MODE (operands[1])) == MODE_INT &&
+   GET_MODE_SIZE (GET_MODE (operands[0])) == GET_MODE_SIZE (GET_MODE (operands[1])) * 2"
+  "#"
   ""
-  "*
+  [(set (match_dup 0)
+       (const_int 0))
+   (set (match_dup 0)
+       (match_dup 1))]
 {
-  CC_STATUS_INIT;
-  operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-  return \"moveq %#0,%0\;moveq %#0,%2\;move%.b %1,%2\";
-}")
+  operands[0] = adjust_address (operands[0], GET_MODE (operands[1]), 0);
+})
+
+(define_insn_and_split "*zero_extend_dec"
+  [(set (match_operand 0 "pre_dec_operand" "")
+       (zero_extend (match_operand 1 "register_operand" "")))]
+  "(GET_MODE (operands[0]) != HImode || XEXP (XEXP (operands[0], 0), 0) != stack_pointer_rtx) &&
+   GET_MODE_CLASS (GET_MODE (operands[0])) == MODE_INT &&
+   GET_MODE_CLASS (GET_MODE (operands[1])) == MODE_INT &&
+   GET_MODE_SIZE (GET_MODE (operands[0])) == GET_MODE_SIZE (GET_MODE (operands[1])) * 2"
+  "#"
+  ""
+  [(set (match_dup 0)
+       (match_dup 1))
+   (set (match_dup 0)
+       (const_int 0))]
+{
+  operands[0] = adjust_address (operands[0], GET_MODE (operands[1]), 0);
+})
 
-(define_insn "zero_extendhidi2"
-  [(set (match_operand:DI 0 "nonimmediate_operand" "=&d")
-       (zero_extend:DI (match_operand:HI 1 "general_operand" "rm")))]
+(define_insn_and_split "zero_extendqidi2"
+  [(set (match_operand:DI 0 "register_operand" "")
+       (zero_extend:DI (match_operand:QI 1 "nonimmediate_src_operand" "")))]
   ""
-  "*
+  "#"
+  ""
+  [(set (match_dup 2)
+       (zero_extend:SI (match_dup 1)))
+   (set (match_dup 3)
+       (const_int 0))]
 {
-  CC_STATUS_INIT;
-  operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-  return \"moveq %#0,%0\;moveq %#0,%2\;move%.w %1,%2\";
-}")
+  operands[2] = gen_lowpart (SImode, operands[0]);
+  operands[3] = gen_highpart (SImode, operands[0]);
+})
+
+(define_insn_and_split "zero_extendhidi2"
+  [(set (match_operand:DI 0 "register_operand" "")
+       (zero_extend:DI (match_operand:HI 1 "nonimmediate_src_operand" "")))]
+  ""
+  "#"
+  ""
+  [(set (match_dup 2)
+       (zero_extend:SI (match_dup 1)))
+   (set (match_dup 3)
+       (const_int 0))]
+{
+  operands[2] = gen_lowpart (SImode, operands[0]);
+  operands[3] = gen_highpart (SImode, operands[0]);
+})
 
-;; this is the canonical form for (lshiftrt:DI x 32)
 (define_expand "zero_extendsidi2"
   [(set (match_operand:DI 0 "nonimmediate_operand" "")
-    (zero_extend:DI (match_operand:SI 1 "general_operand" "")))]
+       (zero_extend:DI (match_operand:SI 1 "nonimmediate_src_operand" "")))]
   ""
-  "")
-
-(define_insn "*zero_extendsidi2_cf"
-  [(set (match_operand:DI 0 "nonimmediate_operand" "=r,m")
-    (zero_extend:DI (match_operand:SI 1 "general_operand" "rm,r")))]
-  "TARGET_5200"
-  "*
 {
-  CC_STATUS_INIT;
-  if (GET_CODE (operands[0]) == REG)
-    operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-  else if (GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
-    return \"move%.l %1,%0\;clr%.l %0\";
-  else if (GET_CODE (XEXP (operands[0], 0)) == POST_INC)
-    return \"clr%.l %0\;move%.l %1,%0\";
-  else
-    operands[2] = adjust_address (operands[0], SImode, 4);
-  if (GET_CODE (operands[1]) != REG || GET_CODE (operands[2]) != REG
-      || REGNO (operands[1]) != REGNO (operands[2]))
-    output_asm_insn (\"move%.l %1,%2\", operands);
-  if (ADDRESS_REG_P (operands[0]))
-    return \"sub%.l %0,%0\";
-  else
-    return \"clr%.l %0\";
-}")
+  if (GET_CODE (operands[0]) == MEM
+      && GET_CODE (operands[1]) == MEM)
+    operands[1] = force_reg (SImode, operands[1]);
+})
 
-(define_insn "*zero_extendsidi2"
-  [(set (match_operand:DI 0 "nonimmediate_operand" "=rm")
-    (zero_extend:DI (match_operand:SI 1 "general_operand" "rm")))]
-  "!TARGET_5200"
-  "*
+(define_insn_and_split "*zero_extendsidi2"
+  [(set (match_operand:DI 0 "nonimmediate_operand" "")
+       (zero_extend:DI (match_operand:SI 1 "nonimmediate_src_operand" "")))]
+  "GET_CODE (operands[0]) != MEM || GET_CODE (operands[1]) != MEM"
+  "#"
+  ""
+  [(set (match_dup 2)
+       (match_dup 1))
+   (set (match_dup 3)
+       (const_int 0))]
 {
-  CC_STATUS_INIT;
-  if (GET_CODE (operands[0]) == REG)
-    operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-  else if (GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
-    return \"move%.l %1,%0\;clr%.l %0\";
-  else if (GET_CODE (XEXP (operands[0], 0)) == POST_INC)
-    return \"clr%.l %0\;move%.l %1,%0\";
-  else
-    operands[2] = adjust_address (operands[0], SImode, 4);
-  if (GET_CODE (operands[1]) != REG || GET_CODE (operands[2]) != REG
-      || REGNO (operands[1]) != REGNO (operands[2]))
-    output_asm_insn (\"move%.l %1,%2\", operands);
-  if (ADDRESS_REG_P (operands[0]))
-    return \"sub%.l %0,%0\";
-  else
-    return \"clr%.l %0\";
-}")
+  operands[2] = gen_lowpart (SImode, operands[0]);
+  operands[3] = gen_highpart (SImode, operands[0]);
+})
 
-(define_expand "zero_extendhisi2"
-  [(set (match_operand:SI 0 "register_operand" "")
-       (const_int 0))
-   (set (strict_low_part (match_dup 2))
-       (match_operand:HI 1 "general_operand" ""))]
+(define_insn "*zero_extendhisi2_cf"
+  [(set (match_operand:SI 0 "register_operand" "=d")
+       (zero_extend:SI (match_operand:HI 1 "nonimmediate_src_operand" "rmS")))]
+  "TARGET_ISAB"
+  "mvz%.w %1,%0")
+
+(define_insn "zero_extendhisi2"
+  [(set (match_operand:SI 0 "register_operand" "=d")
+       (zero_extend:SI (match_operand:HI 1 "nonimmediate_src_operand" "rmS")))]
   ""
-  "
-{
-  operands[1] = make_safe_from (operands[1], operands[0]);
-  operands[2] = gen_lowpart_SUBREG (HImode, operands[0]);
-}")
+  "#")
 
 (define_expand "zero_extendqihi2"
   [(set (match_operand:HI 0 "register_operand" "")
-       (const_int 0))
-   (set (strict_low_part (match_dup 2))
-       (match_operand:QI 1 "general_operand" ""))]
-  ""
-  "
-{
-  operands[1] = make_safe_from (operands[1], operands[0]);
-  operands[2] = gen_lowpart_SUBREG (QImode, operands[0]);
-}")
+       (zero_extend:HI (match_operand:QI 1 "nonimmediate_src_operand" "")))]
+  "!TARGET_COLDFIRE"
+  "")
 
-(define_expand "zero_extendqisi2"
-  [(set (match_operand:SI 0 "register_operand" "")
-       (const_int 0))
-   (set (strict_low_part (match_dup 2))
-       (match_operand:QI 1 "general_operand" ""))]
-  ""
-  "
-{
-  operands[1] = make_safe_from (operands[1], operands[0]);
-  operands[2] = gen_lowpart_SUBREG (QImode, operands[0]);
-}")
-\f
-;; Patterns to recognize zero-extend insns produced by the combiner.
-;; We don't allow both operands in memory, because of aliasing problems.
-;; Explicitly disallow two memory operands via the condition since reloading
-;; of this case will result in worse code than the uncombined patterns.
+(define_insn "*zero_extendqihi2"
+  [(set (match_operand:HI 0 "register_operand" "=d")
+       (zero_extend:HI (match_operand:QI 1 "nonimmediate_src_operand" "dmS")))]
+  "!TARGET_COLDFIRE"
+  "#")
 
-(define_insn ""
-  [(set (match_operand:SI 0 "nonimmediate_operand" "=do<>,d<")
-       (zero_extend:SI (match_operand:HI 1 "nonimmediate_src_operand" "r,mS")))]
-  "GET_CODE (operands[0]) != MEM || GET_CODE (operands[1]) != MEM"
-  "*
-{
-  if (DATA_REG_P (operands[0]))
-    {
-      if (GET_CODE (operands[1]) == REG
-         && REGNO (operands[0]) == REGNO (operands[1]))
-       return \"and%.l %#0xFFFF,%0\";
-      if (reg_mentioned_p (operands[0], operands[1]))
-        return \"move%.w %1,%0\;and%.l %#0xFFFF,%0\";
-      return \"clr%.l %0\;move%.w %1,%0\";
-    }
-  else if (GET_CODE (operands[0]) == MEM
-          && GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
-    return \"move%.w %1,%0\;clr%.w %0\";
-  else if (GET_CODE (operands[0]) == MEM
-          && GET_CODE (XEXP (operands[0], 0)) == POST_INC)
-    return \"clr%.w %0\;move%.w %1,%0\";
-  else
-    {
-      output_asm_insn (\"clr%.w %0\", operands);
-      operands[0] = adjust_address (operands[0], HImode, 2);
-      return \"move%.w %1,%0\";
-    }
-}")
+(define_insn "*zero_extendqisi2_cfv4"
+  [(set (match_operand:SI 0 "register_operand" "=d")
+       (zero_extend:SI (match_operand:QI 1 "nonimmediate_src_operand" "dmS")))]
+  "TARGET_ISAB"
+  "mvz%.b %1,%0")
 
-(define_insn ""
-  [(set (match_operand:HI 0 "nonimmediate_operand" "=do<>,d")
-       (zero_extend:HI (match_operand:QI 1 "nonimmediate_src_operand" "d,mS")))]
-  "GET_CODE (operands[0]) != MEM || GET_CODE (operands[1]) != MEM"
-  "*
+(define_insn "zero_extendqisi2"
+  [(set (match_operand:SI 0 "register_operand" "=d")
+       (zero_extend:SI (match_operand:QI 1 "nonimmediate_src_operand" "dmS")))]
+  ""
+  "#")
+
+;; these two pattern split everything else which isn't matched by
+;; something else above
+(define_split
+  [(set (match_operand 0 "register_operand" "")
+       (zero_extend (match_operand 1 "nonimmediate_src_operand" "")))]
+  "!TARGET_ISAB
+   && reload_completed
+   && reg_mentioned_p (operands[0], operands[1])"
+  [(set (strict_low_part (match_dup 2))
+       (match_dup 1))
+   (set (match_dup 0)
+       (match_op_dup 4 [(match_dup 0) (match_dup 3)]))]
 {
-  if (DATA_REG_P (operands[0]))
-    {
-      if (GET_CODE (operands[1]) == REG
-         && REGNO (operands[0]) == REGNO (operands[1]))
-       return (!TARGET_5200 ? \"and%.w %#0xFF,%0\" : \"and%.l %#0xFF,%0\");
-      if (reg_mentioned_p (operands[0], operands[1]))
-       return (!TARGET_5200 ? \"move%.b %1,%0\;and%.w %#0xFF,%0\" 
-                            : \"move%.b %1,%0\;and%.l %#0xFF,%0\");
-      return \"clr%.w %0\;move%.b %1,%0\";
-    }
-  else if (GET_CODE (operands[0]) == MEM
-          && GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
-    {
-      if (REGNO (XEXP (XEXP (operands[0], 0), 0))
-         == STACK_POINTER_REGNUM)
-       {
-         output_asm_insn (\"clr%.w %-\", operands);
-         operands[0] = gen_rtx_MEM (GET_MODE (operands[0]),
-                                    plus_constant (stack_pointer_rtx, 1));
-         return \"move%.b %1,%0\";
-       }
-      else
-       return \"move%.b %1,%0\;clr%.b %0\";
-    }
-  else if (GET_CODE (operands[0]) == MEM
-          && GET_CODE (XEXP (operands[0], 0)) == POST_INC)
-    return \"clr%.b %0\;move%.b %1,%0\";
-  else
-    {
-      output_asm_insn (\"clr%.b %0\", operands);
-      operands[0] = adjust_address (operands[0], QImode, 1);
-      return \"move%.b %1,%0\";
-    }
-}")
+  operands[2] = gen_lowpart (GET_MODE (operands[1]), operands[0]);
+  operands[3] = GEN_INT (GET_MODE_MASK (GET_MODE (operands[1])));
+  operands[4] = gen_rtx_AND (GET_MODE (operands[0]), operands[0], operands[3]);
+})
 
-(define_insn ""
-  [(set (match_operand:SI 0 "nonimmediate_operand" "=do<>,d")
-       (zero_extend:SI (match_operand:QI 1 "nonimmediate_src_operand" "d,mS")))]
-  "GET_CODE (operands[0]) != MEM || GET_CODE (operands[1]) != MEM"
-  "*
+(define_split
+  [(set (match_operand 0 "register_operand" "")
+       (zero_extend (match_operand 1 "nonimmediate_src_operand" "")))]
+  "!TARGET_ISAB && reload_completed"
+  [(set (match_dup 0)
+       (const_int 0))
+   (set (strict_low_part (match_dup 2))
+       (match_dup 1))]
 {
-  if (DATA_REG_P (operands[0]))
-    {
-      if (GET_CODE (operands[1]) == REG
-         && REGNO (operands[0]) == REGNO (operands[1]))
-       return \"and%.l %#0xFF,%0\";
-      if (reg_mentioned_p (operands[0], operands[1]))
-        return \"move%.b %1,%0\;and%.l %#0xFF,%0\";
-      return \"clr%.l %0\;move%.b %1,%0\";
-    }
-  else if (GET_CODE (operands[0]) == MEM
-          && GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
-    {
-      operands[0] = XEXP (XEXP (operands[0], 0), 0);
-#ifdef MOTOROLA
-#ifdef SGS
-      return \"clr%.l -(%0)\;move%.b %1,3(%0)\";
-#else
-      return \"clr%.l -(%0)\;move%.b %1,(3,%0)\";
-#endif
-#else
-      return \"clrl %0@-\;moveb %1,%0@(3)\";
-#endif
-    }
-  else if (GET_CODE (operands[0]) == MEM
-          && GET_CODE (XEXP (operands[0], 0)) == POST_INC)
-    {
-      operands[0] = XEXP (XEXP (operands[0], 0), 0);
-#ifdef MOTOROLA
-#ifdef SGS
-      return \"clr%.l (%0)+\;move%.b %1,-1(%0)\";
-#else
-      return \"clr%.l (%0)+\;move%.b %1,(-1,%0)\";
-#endif
-#else
-      return \"clrl %0@+\;moveb %1,%0@(-1)\";
-#endif
-    }
-  else
-    {
-      output_asm_insn (\"clr%.l %0\", operands);
-      operands[0] = adjust_address (operands[0], QImode, 3);
-      return \"move%.b %1,%0\";
-    }
-}")
+  operands[2] = gen_lowpart (GET_MODE (operands[1]), operands[0]);
+})
 \f
 ;; sign extension instructions
 
   [(set (match_operand:DI 0 "nonimmediate_operand" "=d")
         (sign_extend:DI (match_operand:QI 1 "general_src_operand" "rmS")))]
   ""
-  "*
 {
   CC_STATUS_INIT;
   operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-  if (TARGET_68020 || TARGET_5200)
-    return \"move%.b %1,%2\;extb%.l %2\;smi %0\;extb%.l %0\";
+  if (TARGET_ISAB)
+    return "mvs%.b %1,%2\;smi %0\;extb%.l %0";
+  if (TARGET_68020 || TARGET_COLDFIRE)
+    {
+      if (ADDRESS_REG_P (operands[1]))
+       return "move%.w %1,%2\;extb%.l %2\;smi %0\;extb%.l %0";
+      else
+       return "move%.b %1,%2\;extb%.l %2\;smi %0\;extb%.l %0";
+    }
   else
-    return \"move%.b %1,%2\;ext%.w %0\;ext%.l %2\;move%.l %2,%0\;smi %0\";
-}")
+    {
+      if (ADDRESS_REG_P (operands[1]))
+       return "move%.w %1,%2\;ext%.w %2\;ext%.l %2\;move%.l %2,%0\;smi %0";
+      else
+       return "move%.b %1,%2\;ext%.w %2\;ext%.l %2\;move%.l %2,%0\;smi %0";
+    }
+})
 
 (define_insn "extendhidi2"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=d")
        (sign_extend:DI
         (match_operand:HI 1 "general_src_operand" "rmS")))]
   ""
-  "*
 {
   CC_STATUS_INIT;
   operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-  if (TARGET_68020 || TARGET_5200)
-    return \"move%.w %1,%2\;ext%.l %2\;smi %0\;extb%.l %0\";
+  if (TARGET_ISAB)
+    return "mvs%.w %1,%2\;smi %0\;extb%.l %0";
+  if (TARGET_68020 || TARGET_COLDFIRE)
+    return "move%.w %1,%2\;ext%.l %2\;smi %0\;extb%.l %0";
   else
-    return \"move%.w %1,%2\;ext%.l %2\;smi %0\;ext%.w %0\;ext%.l %0\";
-}")
+    return "move%.w %1,%2\;ext%.l %2\;smi %0\;ext%.w %0\;ext%.l %0";
+})
 
 (define_insn "extendsidi2"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=d")
        (sign_extend:DI
         (match_operand:SI 1 "general_operand" "rm")))]
   ""
-  "*
 {
   CC_STATUS_INIT;
   operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-  if (TARGET_68020 || TARGET_5200)
-    return \"move%.l %1,%2\;smi %0\;extb%.l %0\";
+  if (TARGET_68020 || TARGET_COLDFIRE)
+    return "move%.l %1,%2\;smi %0\;extb%.l %0";
   else
-    return \"move%.l %1,%2\;smi %0\;ext%.w %0\;ext%.l %0\";
-}")
+    return "move%.l %1,%2\;smi %0\;ext%.w %0\;ext%.l %0";
+})
 
 ;; Special case when one can avoid register clobbering, copy and test
 ;; Maybe there is a way to make that the general case, by forcing the
     (sign_extend:DI (plus:SI (match_operand:SI 1 "general_operand" "%rmn")
             (match_operand:SI 2 "general_operand" "rmn"))))]
   ""
-  "*
 {
   CC_STATUS_INIT;
   operands[3] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
     }
   if (GET_CODE (operands[1]) == REG
       && REGNO (operands[1]) == REGNO (operands[3]))
-    output_asm_insn (\"add%.l %2,%3\", operands);
+    output_asm_insn ("add%.l %2,%3", operands);
   else
-    output_asm_insn (\"move%.l %2,%3\;add%.l %1,%3\", operands);
-  if (TARGET_68020 || TARGET_5200)
-    return \"smi %0\;extb%.l %0\";
+    output_asm_insn ("move%.l %2,%3\;add%.l %1,%3", operands);
+  if (TARGET_68020 || TARGET_COLDFIRE)
+    return "smi %0\;extb%.l %0";
   else
-    return \"smi %0\;ext%.w %0\;ext%.l %0\";
-}")
+    return "smi %0\;ext%.w %0\;ext%.l %0";
+})
+
+(define_expand "extendhisi2"
+  [(set (match_operand:SI 0 "nonimmediate_operand" "")
+       (sign_extend:SI
+        (match_operand:HI 1 "nonimmediate_src_operand" "")))]
+  ""
+  "")
+
+(define_insn "*cfv4_extendhisi2"
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
+       (sign_extend:SI
+        (match_operand:HI 1 "nonimmediate_src_operand" "rmS")))]
+  "TARGET_ISAB"
+  "mvs%.w %1,%0")
 
-(define_insn "extendhisi2"
+(define_insn "*68k_extendhisi2"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=*d,a")
        (sign_extend:SI
         (match_operand:HI 1 "nonimmediate_src_operand" "0,rmS")))]
-  ""
-  "*
+  "!TARGET_ISAB"
 {
   if (ADDRESS_REG_P (operands[0]))
-    return \"move%.w %1,%0\";
-  return \"ext%.l %0\";
-}")
+    return "move%.w %1,%0";
+  return "ext%.l %0";
+})
 
 (define_insn "extendqihi2"
   [(set (match_operand:HI 0 "nonimmediate_operand" "=d")
   ""
   "ext%.w %0")
 
-(define_insn "extendqisi2"
+(define_expand "extendqisi2"
+  [(set (match_operand:SI 0 "nonimmediate_operand" "")
+       (sign_extend:SI (match_operand:QI 1 "nonimmediate_operand" "")))]
+  "TARGET_68020 || TARGET_COLDFIRE"
+  "")
+
+(define_insn "*cfv4_extendqisi2"
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
+       (sign_extend:SI (match_operand:QI 1 "nonimmediate_operand" "rms")))]
+  "TARGET_ISAB"
+  "mvs%.b %1,%0")
+
+(define_insn "*68k_extendqisi2"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (sign_extend:SI (match_operand:QI 1 "nonimmediate_operand" "0")))]
-  "TARGET_68020 || TARGET_5200"
+  "TARGET_68020 || (TARGET_COLDFIRE && !TARGET_ISAB)"
   "extb%.l %0")
 \f
 ;; Conversions between float and double.
   [(set (match_operand:DF 0 "nonimmediate_operand" "")
        (float_extend:DF
         (match_operand:SF 1 "general_operand" "")))]
-  "TARGET_68881"
+  "TARGET_HARD_FLOAT"
   "")
 
 (define_insn ""
        (float_extend:DF
          (match_operand:SF 1 "general_operand" "f,dmF")))]
   "TARGET_68881"
-  "*
 {
   if (FP_REG_P (operands[0]) && FP_REG_P (operands[1]))
     {
             NOTICE_UPDATE_CC has already assumed that the
             cc will be set.  So cancel what it did.  */
          cc_status = cc_prev_status;
-         return \"\";
+         return "";
        }
-      return \"f%&move%.x %1,%0\";
+      return "f%&move%.x %1,%0";
     }
   if (FP_REG_P (operands[0]))
-    return \"f%&move%.s %f1,%0\";
+    return "f%&move%.s %f1,%0";
   if (DATA_REG_P (operands[0]) && FP_REG_P (operands[1]))
     {
-      output_asm_insn (\"fmove%.d %f1,%-\;move%.l %+,%0\", operands);
+      output_asm_insn ("fmove%.d %f1,%-\;move%.l %+,%0", operands);
       operands[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-      return \"move%.l %+,%0\";
+      return "move%.l %+,%0";
+    }
+  return "fmove%.d %f1,%0";
+})
+
+(define_insn "extendsfdf2_cf"
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=f,f")
+       (float_extend:DF
+        (match_operand:SF 1 "general_operand" "f,<Q>U")))]
+  "TARGET_COLDFIRE_FPU"
+{
+  if (FP_REG_P (operands[0]) && FP_REG_P (operands[1]))
+    {
+      if (REGNO (operands[0]) == REGNO (operands[1]))
+       {
+         /* Extending float to double in an fp-reg is a no-op.
+            NOTICE_UPDATE_CC has already assumed that the
+            cc will be set.  So cancel what it did.  */
+         cc_status = cc_prev_status;
+         return "";
+       }
+      return "f%&move%.d %1,%0";
     }
-  return \"fmove%.d %f1,%0\";
-}")
+  return "f%&move%.s %f1,%0";
+})
 
 ;; This cannot output into an f-reg because there is no way to be
 ;; sure of truncating in that case.
   [(set (match_operand:SF 0 "nonimmediate_operand" "")
        (float_truncate:SF
          (match_operand:DF 1 "general_operand" "")))]
-  "TARGET_68881"
+  "TARGET_HARD_FLOAT"
   "")
 
 ;; On the '040 we can truncate in a register accurately and easily.
   [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
        (float_truncate:SF
          (match_operand:DF 1 "general_operand" "fmG")))]
-  "TARGET_68040_ONLY"
-  "*
+  "TARGET_68881 && TARGET_68040"
 {
   if (FP_REG_P (operands[1]))
-    return \"f%$move%.x %1,%0\";
-  return \"f%$move%.d %f1,%0\";
-}")
+    return "f%$move%.x %1,%0";
+  return "f%$move%.d %f1,%0";
+})
+
+(define_insn "truncdfsf2_cf"
+  [(set (match_operand:SF 0 "nonimmediate_operand" "=f,d<Q>U")
+       (float_truncate:SF
+         (match_operand:DF 1 "general_operand" "<Q>U,f")))]
+  "TARGET_COLDFIRE_FPU"
+  "@
+  f%$move%.d %1,%0
+  fmove%.s %1,%0")
 
 (define_insn ""
   [(set (match_operand:SF 0 "nonimmediate_operand" "=dm")
 ;; will be recognized as SImode (which is always valid)
 ;; rather than as QImode or HImode.
 
-(define_expand "floatsisf2"
-  [(set (match_operand:SF 0 "nonimmediate_operand" "")
-       (float:SF (match_operand:SI 1 "general_operand" "")))]
-  "TARGET_68881"
+(define_expand "floatsi<mode>2"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "")
+       (float:FP (match_operand:SI 1 "general_operand" "")))]
+  "TARGET_HARD_FLOAT"
   "")
 
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (float:SF (match_operand:SI 1 "general_operand" "dmi")))]
+(define_insn "floatsi<mode>2_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (float:FP (match_operand:SI 1 "general_operand" "dmi")))]
   "TARGET_68881"
-  "f%$move%.l %1,%0")
+  "f<FP:round>move%.l %1,%0")
 
-(define_expand "floatsidf2"
-  [(set (match_operand:DF 0 "nonimmediate_operand" "")
-       (float:DF (match_operand:SI 1 "general_operand" "")))]
-  "TARGET_68881"
-  "")
+(define_insn "floatsi<mode>2_cf"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (float:FP (match_operand:SI 1 "general_operand" "d<Q>U")))]
+  "TARGET_COLDFIRE_FPU"
+  "f<FP:prec>move%.l %1,%0")
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (float:DF (match_operand:SI 1 "general_operand" "dmi")))]
-  "TARGET_68881"
-  "f%&move%.l %1,%0")
 
-(define_insn "floathisf2"
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (float:SF (match_operand:HI 1 "general_operand" "dmn")))]
-  "TARGET_68881"
-  "f%$move%.w %1,%0")
+(define_expand "floathi<mode>2"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "")
+       (float:FP (match_operand:HI 1 "general_operand" "")))]
+  "TARGET_HARD_FLOAT"
+  "")
 
-(define_insn "floathidf2"
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (float:DF (match_operand:HI 1 "general_operand" "dmn")))]
+(define_insn "floathi<mode>2_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (float:FP (match_operand:HI 1 "general_operand" "dmn")))]
   "TARGET_68881"
   "fmove%.w %1,%0")
 
-(define_insn "floatqisf2"
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (float:SF (match_operand:QI 1 "general_operand" "dmn")))]
+(define_insn "floathi<mode>2_cf"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+        (float:FP (match_operand:HI 1 "general_operand" "d<Q>U")))]
+  "TARGET_COLDFIRE_FPU"
+  "fmove%.w %1,%0")
+
+
+(define_expand "floatqi<mode>2"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "")
+       (float:FP (match_operand:QI 1 "general_operand" "")))]
+  "TARGET_HARD_FLOAT"
+  "")
+
+(define_insn "floatqi<mode>2_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (float:FP (match_operand:QI 1 "general_operand" "dmn")))]
   "TARGET_68881"
   "fmove%.b %1,%0")
 
-(define_insn "floatqidf2"
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (float:DF (match_operand:QI 1 "general_operand" "dmn")))]
-  "TARGET_68881"
-  "f%&move%.b %1,%0")
+(define_insn "floatqi<mode>2_cf"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (float:FP (match_operand:QI 1 "general_operand" "d<Q>U")))]
+  "TARGET_COLDFIRE_FPU"
+  "fmove%.b %1,%0")
+
 
 ;; New routines to convert floating-point values to integers
 ;; to be used on the '040.  These should be faster than trapping
        (fix:SI (fix:DF (match_operand:DF 1 "register_operand" "f"))))
    (clobber (match_scratch:SI 2 "=d"))
    (clobber (match_scratch:SI 3 "=d"))]
-  "TARGET_68881 && TARGET_68040"
-  "*
+  "TARGET_68881 && TUNE_68040"
 {
   CC_STATUS_INIT;
-  return \"fmovem%.l %!,%2\;moveq %#16,%3\;or%.l %2,%3\;and%.w %#-33,%3\;fmovem%.l %3,%!\;fmove%.l %1,%0\;fmovem%.l %2,%!\";
-}")
+  return "fmovem%.l %!,%2\;moveq #16,%3\;or%.l %2,%3\;and%.w #-33,%3\;fmovem%.l %3,%!\;fmove%.l %1,%0\;fmovem%.l %2,%!";
+})
 
 (define_insn "fix_truncdfhi2"
   [(set (match_operand:HI 0 "nonimmediate_operand" "=dm")
        (fix:HI (fix:DF (match_operand:DF 1 "register_operand" "f"))))
    (clobber (match_scratch:SI 2 "=d"))
    (clobber (match_scratch:SI 3 "=d"))]
-  "TARGET_68881 && TARGET_68040"
-  "*
+  "TARGET_68881 && TUNE_68040"
 {
   CC_STATUS_INIT;
-  return \"fmovem%.l %!,%2\;moveq %#16,%3\;or%.l %2,%3\;and%.w %#-33,%3\;fmovem%.l %3,%!\;fmove%.w %1,%0\;fmovem%.l %2,%!\";
-}")
+  return "fmovem%.l %!,%2\;moveq #16,%3\;or%.l %2,%3\;and%.w #-33,%3\;fmovem%.l %3,%!\;fmove%.w %1,%0\;fmovem%.l %2,%!";
+})
 
 (define_insn "fix_truncdfqi2"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=dm")
        (fix:QI (fix:DF (match_operand:DF 1 "register_operand" "f"))))
    (clobber (match_scratch:SI 2 "=d"))
    (clobber (match_scratch:SI 3 "=d"))]
-  "TARGET_68881 && TARGET_68040"
-  "*
+  "TARGET_68881 && TUNE_68040"
 {
   CC_STATUS_INIT;
-  return \"fmovem%.l %!,%2\;moveq %#16,%3\;or%.l %2,%3\;and%.w %#-33,%3\;fmovem%.l %3,%!\;fmove%.b %1,%0\;fmovem%.l %2,%!\";
-}")
+  return "fmovem%.l %!,%2\;moveq #16,%3\;or%.l %2,%3\;and%.w #-33,%3\;fmovem%.l %3,%!\;fmove%.b %1,%0\;fmovem%.l %2,%!";
+})
 
 ;; Convert a float to a float whose value is an integer.
 ;; This is the first stage of converting it to an integer type.
 
-(define_insn "ftruncdf2"
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (fix:DF (match_operand:DF 1 "general_operand" "fFm")))]
-  "TARGET_68881 && !TARGET_68040"
-  "*
+(define_expand "ftrunc<mode>2"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "")
+       (fix:FP (match_operand:FP 1 "general_operand" "")))]
+  "TARGET_HARD_FLOAT && !TUNE_68040"
+  "")
+
+(define_insn "ftrunc<mode>2_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (fix:FP (match_operand:FP 1 "general_operand" "f<FP:dreg>m")))]
+  "TARGET_68881 && !TUNE_68040"
 {
   if (FP_REG_P (operands[1]))
-    return \"fintrz%.x %f1,%0\";
-  return \"fintrz%.d %f1,%0\";
-}")
+    return "fintrz%.x %f1,%0";
+  return "fintrz%.<FP:prec> %f1,%0";
+})
 
-(define_insn "ftruncsf2"
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (fix:SF (match_operand:SF 1 "general_operand" "dfFm")))]
-  "TARGET_68881 && !TARGET_68040"
-  "*
+(define_insn "ftrunc<mode>2_cf"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+        (fix:FP (match_operand:FP 1 "general_operand" "f<FP:dreg><Q>U")))]
+  "TARGET_COLDFIRE_FPU"
 {
   if (FP_REG_P (operands[1]))
-    return \"fintrz%.x %f1,%0\";
-  return \"fintrz%.s %f1,%0\";
-}")
+    return "fintrz%.d %f1,%0";
+  return "fintrz%.<FP:prec> %f1,%0";
+})
 
 ;; Convert a float whose value is an integer
 ;; to an actual integer.  Second stage of converting float to integer type.
-(define_insn "fixsfqi2"
+(define_expand "fix<mode>qi2"
+  [(set (match_operand:QI 0 "nonimmediate_operand" "")
+       (fix:QI (match_operand:FP 1 "general_operand" "")))]
+  "TARGET_HARD_FLOAT"
+  "")
+
+(define_insn "fix<mode>qi2_68881"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=dm")
-       (fix:QI (match_operand:SF 1 "general_operand" "f")))]
+       (fix:QI (match_operand:FP 1 "general_operand" "f")))]
   "TARGET_68881"
   "fmove%.b %1,%0")
 
-(define_insn "fixsfhi2"
-  [(set (match_operand:HI 0 "nonimmediate_operand" "=dm")
-       (fix:HI (match_operand:SF 1 "general_operand" "f")))]
-  "TARGET_68881"
-  "fmove%.w %1,%0")
-
-(define_insn "fixsfsi2"
-  [(set (match_operand:SI 0 "nonimmediate_operand" "=dm")
-       (fix:SI (match_operand:SF 1 "general_operand" "f")))]
-  "TARGET_68881"
-  "fmove%.l %1,%0")
-
-(define_insn "fixdfqi2"
-  [(set (match_operand:QI 0 "nonimmediate_operand" "=dm")
-       (fix:QI (match_operand:DF 1 "general_operand" "f")))]
-  "TARGET_68881"
+(define_insn "fix<mode>qi2_cf"
+  [(set (match_operand:QI 0 "nonimmediate_operand" "=d<Q>U")
+       (fix:QI (match_operand:FP 1 "general_operand" "f")))]
+  "TARGET_COLDFIRE_FPU"
   "fmove%.b %1,%0")
 
-(define_insn "fixdfhi2"
+(define_expand "fix<mode>hi2"
+  [(set (match_operand:HI 0 "nonimmediate_operand" "")
+       (fix:HI (match_operand:FP 1 "general_operand" "")))]
+  "TARGET_HARD_FLOAT"
+  "")
+
+(define_insn "fix<mode>hi2_68881"
   [(set (match_operand:HI 0 "nonimmediate_operand" "=dm")
-       (fix:HI (match_operand:DF 1 "general_operand" "f")))]
+       (fix:HI (match_operand:FP 1 "general_operand" "f")))]
   "TARGET_68881"
   "fmove%.w %1,%0")
 
-(define_insn "fixdfsi2"
+(define_insn "fix<mode>hi2_cf"
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=d<Q>U")
+       (fix:HI (match_operand:FP 1 "general_operand" "f")))]
+  "TARGET_COLDFIRE_FPU"
+  "fmove%.w %1,%0")
+
+(define_expand "fix<mode>si2"
+  [(set (match_operand:SI 0 "nonimmediate_operand" "")
+       (fix:SI (match_operand:FP 1 "general_operand" "")))]
+  "TARGET_HARD_FLOAT"
+  "")
+
+(define_insn "fix<mode>si2_68881"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=dm")
-       (fix:SI (match_operand:DF 1 "general_operand" "f")))]
+       (fix:SI (match_operand:FP 1 "general_operand" "f")))]
   "TARGET_68881"
   "fmove%.l %1,%0")
+
+(define_insn "fix<mode>si2_cf"
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=d<Q>U")
+       (fix:SI (match_operand:FP 1 "general_operand" "f")))]
+  "TARGET_COLDFIRE_FPU"
+  "fmove%.l %1,%0")
+
 \f
 ;; add instructions
 
         (match_dup 1)))
    (clobber (match_scratch:SI 2 "=d"))]
   ""
-  "*
 {
   operands[3] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   if (REG_P (operands[1]) && REGNO (operands[1]) == REGNO (operands[0]))
     return
-    \"move%.l %1,%2\;add%.l %2,%2\;subx%.l %2,%2\;sub%.l %2,%3\;subx%.l %2,%0\";
+    "move%.l %1,%2\;add%.l %2,%2\;subx%.l %2,%2\;sub%.l %2,%3\;subx%.l %2,%0";
   if (GET_CODE (operands[1]) == REG)
     operands[4] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
   else if (GET_CODE (XEXP (operands[1], 0)) == POST_INC
     operands[4] = adjust_address (operands[1], SImode, 4);
   if (GET_CODE (operands[1]) == MEM
    && GET_CODE (XEXP (operands[1], 0)) == PRE_DEC)
-    output_asm_insn (\"move%.l %4,%3\", operands);
-  output_asm_insn (\"move%.l %1,%0\;smi %2\", operands);
-  if (TARGET_68020 || TARGET_5200)
-    output_asm_insn (\"extb%.l %2\", operands);
+    output_asm_insn ("move%.l %4,%3", operands);
+  output_asm_insn ("move%.l %1,%0\;smi %2", operands);
+  if (TARGET_68020 || TARGET_COLDFIRE)
+    output_asm_insn ("extb%.l %2", operands);
   else
-    output_asm_insn (\"ext%.w %2\;ext%.l %2\", operands);
+    output_asm_insn ("ext%.w %2\;ext%.l %2", operands);
   if (GET_CODE (operands[1]) != MEM
    || GET_CODE (XEXP (operands[1], 0)) != PRE_DEC)
-    output_asm_insn (\"move%.l %4,%3\", operands);
-  return \"sub%.l %2,%3\;subx%.l %2,%0\";
-}")
+    output_asm_insn ("move%.l %4,%3", operands);
+  return "sub%.l %2,%3\;subx%.l %2,%0";
+})
 
 (define_insn "adddi_sexthishl32"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=o,a,*d,*d")
             (const_int 32))
         (match_operand:DI 2 "general_operand" "0,0,0,0")))
    (clobber (match_scratch:SI 3 "=&d,X,a,?d"))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   CC_STATUS_INIT;
   if (ADDRESS_REG_P (operands[0]))
-    return \"add%.w %1,%0\";
+    return "add%.w %1,%0";
   else if (ADDRESS_REG_P (operands[3]))
-    return \"move%.w %1,%3\;add%.l %3,%0\";
+    return "move%.w %1,%3\;add%.l %3,%0";
   else
-    return \"move%.w %1,%3\;ext%.l %3\;add%.l %3,%0\";
-} ")
+    return "move%.w %1,%3\;ext%.l %3\;add%.l %3,%0";
+})
 
 (define_insn "adddi_dilshr32"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=d,o")
             (const_int 32))
         (match_operand:DI 2 "general_operand" "0,0")))]
   ""
-  "*
 {
   CC_STATUS_INIT;
   if (GET_CODE (operands[0]) == REG)
     operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   else
     operands[2] = adjust_address (operands[0], SImode, 4);
-  return \"add%.l %1,%2\;negx%.l %0\;neg%.l %0\";
-} ")
+  return "add%.l %1,%2\;negx%.l %0\;neg%.l %0";
+})
 
 (define_insn "adddi_dishl32"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=r,o")
             (const_int 32))
         (match_operand:DI 2 "general_operand" "0,0")))]
   ""
-  "*
 {
   CC_STATUS_INIT;
   if (GET_CODE (operands[1]) == REG)
     operands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
   else
     operands[1] = adjust_address (operands[1], SImode, 4);
-  return \"add%.l %1,%0\";
-} ")
+  return "add%.l %1,%0";
+})
 
 (define_insn "adddi3"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=<,o<>,d,d,d")
                 (match_operand:DI 2 "general_operand" "<,d,no>,d,a")))
    (clobber (match_scratch:SI 3 "=X,&d,&d,X,&d"))]
   ""
-  "*
 {
   if (DATA_REG_P (operands[0]))
     {
       if (DATA_REG_P (operands[2]))
-       return \"add%.l %R2,%R0\;addx%.l %2,%0\";
+       return "add%.l %R2,%R0\;addx%.l %2,%0";
       else if (GET_CODE (operands[2]) == MEM
          && GET_CODE (XEXP (operands[2], 0)) == POST_INC)
-       return \"move%.l %2,%3\;add%.l %2,%R0\;addx%.l %3,%0\";
+       return "move%.l %2,%3\;add%.l %2,%R0\;addx%.l %3,%0";
       else
        {
          rtx high, low;
          if (GET_CODE (operands[1]) == CONST_INT)
            {
              if (INTVAL (operands[1]) > 0 && INTVAL (operands[1]) <= 8)
-               {
-#ifdef NO_ADDSUB_Q
-                 return \"add%.l %1,%R0\;addx%.l %3,%0\";
-#else
-                 return \"addq%.l %1,%R0\;addx%.l %3,%0\";
-#endif
-               }
+               return "addq%.l %1,%R0\;addx%.l %3,%0";
              else if (INTVAL (operands[1]) >= -8 && INTVAL (operands[1]) < 0)
                {
                  operands[1] = GEN_INT (-INTVAL (operands[1]));
-#ifdef NO_ADDSUB_Q
-                 return \"sub%.l %1,%R0\;subx%.l %3,%0\";
-#else
-                 return \"subq%.l %1,%R0\;subx%.l %3,%0\";
-#endif
+                 return "subq%.l %1,%R0\;subx%.l %3,%0";
                }
            }
-         return \"add%.l %1,%R0\;addx%.l %3,%0\";
+         return "add%.l %1,%R0\;addx%.l %3,%0";
        }
     }
-  else if (GET_CODE (operands[0]) == MEM)
+  else
     {
+      gcc_assert (GET_CODE (operands[0]) == MEM);
       if (GET_CODE (operands[2]) == MEM
          && GET_CODE (XEXP (operands[2], 0)) == PRE_DEC)
-       return \"add%.l %2,%0\;addx%.l %2,%0\";
+       return "add%.l %2,%0\;addx%.l %2,%0";
       CC_STATUS_INIT;
       if (GET_CODE (XEXP (operands[0], 0)) == POST_INC)
        {
          operands[1] = gen_rtx_MEM (SImode,
                                     plus_constant (XEXP(operands[0], 0), -8));
-         return \"move%.l %0,%3\;add%.l %R2,%0\;addx%.l %2,%3\;move%.l %3,%1\";
+         return "move%.l %0,%3\;add%.l %R2,%0\;addx%.l %2,%3\;move%.l %3,%1";
        }
       else if (GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
        {
          operands[1] = XEXP(operands[0], 0);
-         return \"add%.l %R2,%0\;move%.l %0,%3\;addx%.l %2,%3\;move%.l %3,%1\";
+         return "add%.l %R2,%0\;move%.l %0,%3\;addx%.l %2,%3\;move%.l %3,%1";
        }
       else
        {
          operands[1] = adjust_address (operands[0], SImode, 4);
-         return \"add%.l %R2,%1\;move%.l %0,%3\;addx%.l %2,%3\;move%.l %3,%0\";
+         return "add%.l %R2,%1\;move%.l %0,%3\;addx%.l %2,%3\;move%.l %3,%0";
        }
     }
-  else
-    abort ();
-} ")
+})
 
 (define_insn "addsi_lshrsi_31"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=dm")
             (const_int 31))
         (match_dup 1)))]
   ""
-  "*
 {
   operands[2] = operands[0];
   operands[3] = gen_label_rtx();
       else if (GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
         operands[2] = gen_rtx_MEM (SImode, XEXP (XEXP (operands[0], 0), 0));
     }
-  output_asm_insn (\"move%.l %1,%0\", operands);
-#ifdef MOTOROLA
-  output_asm_insn (\"jbpl %l3\", operands);
-#else
-  output_asm_insn (\"jpl %l3\", operands);
-#endif
-#ifndef NO_ADDSUB_Q
-  output_asm_insn (\"addq%.l %#1,%2\", operands);
-#else
-  output_asm_insn (\"add%.l %#1,%2\", operands);
-#endif
-  (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
+  output_asm_insn ("move%.l %1,%0", operands);
+  output_asm_insn (MOTOROLA ? "jbpl %l3" : "jpl %l3", operands);
+  output_asm_insn ("addq%.l #1,%2", operands);
+  (*targetm.asm_out.internal_label) (asm_out_file, "L",
                                CODE_LABEL_NUMBER (operands[3]));
-  return \"\";
-}")
+  return "";
+})
 
 (define_expand "addsi3"
   [(set (match_operand:SI 0 "nonimmediate_operand" "")
                  (match_operand:SI 2 "general_src_operand" "dIKLT,rJK,a,mSrIKLT,mSrIKLs")))]
 
 
-  "! TARGET_5200"
+  "! TARGET_COLDFIRE"
   "* return output_addsi3 (operands);")
 
 (define_insn "*addsi3_5200"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=m,?a,?a,r")
        (plus:SI (match_operand:SI 1 "general_operand" "%0,a,rJK,0")
-                (match_operand:SI 2 "general_src_operand" "d,rJK,a,mrIKLs")))]
-  "TARGET_5200"
+                (match_operand:SI 2 "general_src_operand" "dIL,rJK,a,mrIKLi")))]
+  "TARGET_COLDFIRE"
   "* return output_addsi3 (operands);")
 
 (define_insn ""
        (plus:SI (match_operand:SI 1 "general_operand" "0")
                 (sign_extend:SI
                  (match_operand:HI 2 "nonimmediate_src_operand" "rmS"))))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "add%.w %2,%0")
 
 (define_insn "addhi3"
   [(set (match_operand:HI 0 "nonimmediate_operand" "=m,r")
        (plus:HI (match_operand:HI 1 "general_operand" "%0,0")
                 (match_operand:HI 2 "general_src_operand" "dn,rmSn")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (GET_CODE (operands[2]) == CONST_INT)
     {
-#ifndef NO_ADDSUB_Q
       /* If the constant would be a negative number when interpreted as
         HImode, make it negative.  This is usually, but not always, done
         elsewhere in the compiler.  First check for constants out of range,
 
       if (INTVAL (operands[2]) > 0
          && INTVAL (operands[2]) <= 8)
-       return \"addq%.w %2,%0\";
+       return "addq%.w %2,%0";
       if (INTVAL (operands[2]) < 0
          && INTVAL (operands[2]) >= -8)
        {
          operands[2] = GEN_INT (- INTVAL (operands[2]));
-         return \"subq%.w %2,%0\";
+         return "subq%.w %2,%0";
        }
       /* On the CPU32 it is faster to use two addqw instructions to
         add a small integer (8 < N <= 16) to a register.  
         Likewise for subqw.  */
-      if (TARGET_CPU32 && REG_P (operands[0]))
+      if (TUNE_CPU32 && REG_P (operands[0]))
        {
          if (INTVAL (operands[2]) > 8
              && INTVAL (operands[2]) <= 16)
            {
              operands[2] = GEN_INT (INTVAL (operands[2]) - 8);
-             return \"addq%.w %#8,%0\;addq%.w %2,%0\";
+             return "addq%.w #8,%0\;addq%.w %2,%0";
            }
          if (INTVAL (operands[2]) < -8
              && INTVAL (operands[2]) >= -16)
            {
              operands[2] = GEN_INT (- INTVAL (operands[2]) - 8);
-             return \"subq%.w %#8,%0\;subq%.w %2,%0\";
+             return "subq%.w #8,%0\;subq%.w %2,%0";
            }
        }
-#endif
-      if (ADDRESS_REG_P (operands[0]) && !TARGET_68040)
-#ifdef MOTOROLA  
-           return \"lea (%c2,%0),%0\";
-#else
-           return \"lea %0@(%c2),%0\";
-#endif
+      if (ADDRESS_REG_P (operands[0]) && !TUNE_68040)
+       return MOTOROLA ? "lea (%c2,%0),%0" : "lea %0@(%c2),%0";
     }
-  return \"add%.w %2,%0\";
-}")
+  return "add%.w %2,%0";
+})
 
 ;; These insns must use MATCH_DUP instead of the more expected
 ;; use of a matching constraint because the "output" here is also
   [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+m,d"))
        (plus:HI (match_dup 0)
                 (match_operand:HI 1 "general_src_operand" "dn,rmSn")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (GET_CODE (operands[1]) == CONST_INT)
     {
-#ifndef NO_ADDSUB_Q
       /* If the constant would be a negative number when interpreted as
         HImode, make it negative.  This is usually, but not always, done
         elsewhere in the compiler.  First check for constants out of range,
 
       if (INTVAL (operands[1]) > 0
          && INTVAL (operands[1]) <= 8)
-       return \"addq%.w %1,%0\";
+       return "addq%.w %1,%0";
       if (INTVAL (operands[1]) < 0
          && INTVAL (operands[1]) >= -8)
        {
          operands[1] = GEN_INT (- INTVAL (operands[1]));
-         return \"subq%.w %1,%0\";
+         return "subq%.w %1,%0";
        }
       /* On the CPU32 it is faster to use two addqw instructions to
         add a small integer (8 < N <= 16) to a register. 
         Likewise for subqw.  */
-      if (TARGET_CPU32 && REG_P (operands[0]))
+      if (TUNE_CPU32 && REG_P (operands[0]))
        {
          if (INTVAL (operands[1]) > 8
              && INTVAL (operands[1]) <= 16)
            {
              operands[1] = GEN_INT (INTVAL (operands[1]) - 8);
-             return \"addq%.w %#8,%0\;addq%.w %1,%0\";
+             return "addq%.w #8,%0\;addq%.w %1,%0";
            }
          if (INTVAL (operands[1]) < -8
              && INTVAL (operands[1]) >= -16)
            {
              operands[1] = GEN_INT (- INTVAL (operands[1]) - 8);
-             return \"subq%.w %#8,%0\;subq%.w %1,%0\";
+             return "subq%.w #8,%0\;subq%.w %1,%0";
            }
        }
-#endif
-      if (ADDRESS_REG_P (operands[0]) && !TARGET_68040)
-#ifdef MOTOROLA  
-           return \"lea (%c1,%0),%0\";
-#else
-           return \"lea %0@(%c1),%0\";
-#endif
+      if (ADDRESS_REG_P (operands[0]) && !TUNE_68040)
+       return MOTOROLA ? "lea (%c1,%0),%0" : "lea %0@(%c1),%0";
     }
-  return \"add%.w %1,%0\";
-}")
+  return "add%.w %1,%0";
+})
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+m,d"))
        (plus:HI (match_operand:HI 1 "general_src_operand" "dn,rmSn")
                 (match_dup 0)))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (GET_CODE (operands[1]) == CONST_INT)
     {
-#ifndef NO_ADDSUB_Q
       /* If the constant would be a negative number when interpreted as
         HImode, make it negative.  This is usually, but not always, done
         elsewhere in the compiler.  First check for constants out of range,
 
       if (INTVAL (operands[1]) > 0
          && INTVAL (operands[1]) <= 8)
-       return \"addq%.w %1,%0\";
+       return "addq%.w %1,%0";
       if (INTVAL (operands[1]) < 0
          && INTVAL (operands[1]) >= -8)
        {
          operands[1] = GEN_INT (- INTVAL (operands[1]));
-         return \"subq%.w %1,%0\";
+         return "subq%.w %1,%0";
        }
       /* On the CPU32 it is faster to use two addqw instructions to
         add a small integer (8 < N <= 16) to a register.
         Likewise for subqw.  */
-      if (TARGET_CPU32 && REG_P (operands[0])) 
+      if (TUNE_CPU32 && REG_P (operands[0]))
        {
          if (INTVAL (operands[1]) > 8
              && INTVAL (operands[1]) <= 16)
            {
              operands[1] = GEN_INT (INTVAL (operands[1]) - 8);
-             return \"addq%.w %#8,%0\;addq%.w %1,%0\";
+             return "addq%.w #8,%0\;addq%.w %1,%0";
            }
          if (INTVAL (operands[1]) < -8
              && INTVAL (operands[1]) >= -16)
            {
              operands[1] = GEN_INT (- INTVAL (operands[1]) - 8);
-             return \"subq%.w %#8,%0\;subq%.w %1,%0\";
+             return "subq%.w #8,%0\;subq%.w %1,%0";
            }
        }
-#endif
-      if (ADDRESS_REG_P (operands[0]) && !TARGET_68040)
-#ifdef MOTOROLA  
-           return \"lea (%c1,%0),%0\";
-#else
-           return \"lea %0@(%c1),%0\";
-#endif
+      if (ADDRESS_REG_P (operands[0]) && !TUNE_68040)
+       return MOTOROLA ? "lea (%c1,%0),%0" : "lea %0@(%c1),%0";
     }
-  return \"add%.w %1,%0\";
-}")
+  return "add%.w %1,%0";
+})
 
 (define_insn "addqi3"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=m,d")
        (plus:QI (match_operand:QI 1 "general_operand" "%0,0")
                 (match_operand:QI 2 "general_src_operand" "dn,dmSn")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
-#ifndef NO_ADDSUB_Q
   if (GET_CODE (operands[2]) == CONST_INT)
     {
       if (INTVAL (operands[2]) >= 128)
 
       if (INTVAL (operands[2]) > 0
          && INTVAL (operands[2]) <= 8)
-       return \"addq%.b %2,%0\";
+       return "addq%.b %2,%0";
       if (INTVAL (operands[2]) < 0 && INTVAL (operands[2]) >= -8)
        {
         operands[2] = GEN_INT (- INTVAL (operands[2]));
-        return \"subq%.b %2,%0\";
+        return "subq%.b %2,%0";
        }
     }
-#endif
-  return \"add%.b %2,%0\";
-}")
+  return "add%.b %2,%0";
+})
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+m,d"))
        (plus:QI (match_dup 0)
                 (match_operand:QI 1 "general_src_operand" "dn,dmSn")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
-#ifndef NO_ADDSUB_Q
   if (GET_CODE (operands[1]) == CONST_INT)
     {
       if (INTVAL (operands[1]) >= 128)
 
       if (INTVAL (operands[1]) > 0
          && INTVAL (operands[1]) <= 8)
-       return \"addq%.b %1,%0\";
+       return "addq%.b %1,%0";
       if (INTVAL (operands[1]) < 0 && INTVAL (operands[1]) >= -8)
        {
         operands[1] = GEN_INT (- INTVAL (operands[1]));
-        return \"subq%.b %1,%0\";
+        return "subq%.b %1,%0";
        }
     }
-#endif
-  return \"add%.b %1,%0\";
-}")
+  return "add%.b %1,%0";
+})
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+m,d"))
        (plus:QI (match_operand:QI 1 "general_src_operand" "dn,dmSn")
                 (match_dup 0)))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
-#ifndef NO_ADDSUB_Q
   if (GET_CODE (operands[1]) == CONST_INT)
     {
       if (INTVAL (operands[1]) >= 128)
 
       if (INTVAL (operands[1]) > 0
          && INTVAL (operands[1]) <= 8)
-       return \"addq%.b %1,%0\";
+       return "addq%.b %1,%0";
       if (INTVAL (operands[1]) < 0 && INTVAL (operands[1]) >= -8)
        {
         operands[1] = GEN_INT (- INTVAL (operands[1]));
-        return \"subq%.b %1,%0\";
+        return "subq%.b %1,%0";
        }
     }
-#endif
-  return \"add%.b %1,%0\";
-}")
+  return "add%.b %1,%0";
+})
 
-(define_expand "adddf3"
-  [(set (match_operand:DF 0 "nonimmediate_operand" "")
-       (plus:DF (match_operand:DF 1 "general_operand" "")
-                (match_operand:DF 2 "general_operand" "")))]
-  "TARGET_68881"
+(define_expand "add<mode>3"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "")
+       (plus:FP (match_operand:FP 1 "general_operand" "")
+                (match_operand:FP 2 "general_operand" "")))]
+  "TARGET_HARD_FLOAT"
   "")
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (plus:DF (float:DF (match_operand:SI 2 "general_operand" "dmi"))
-                (match_operand:DF 1 "general_operand" "0")))]
+(define_insn "add<mode>3_floatsi_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (plus:FP (float:FP (match_operand:SI 2 "general_operand" "dmi"))
+                (match_operand:FP 1 "general_operand" "0")))]
   "TARGET_68881"
-  "f%&add%.l %2,%0")
+  "f<FP:round>add%.l %2,%0")
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (plus:DF (float:DF (match_operand:HI 2 "general_operand" "dmn"))
-                (match_operand:DF 1 "general_operand" "0")))]
+(define_insn "add<mode>3_floathi_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (plus:FP (float:FP (match_operand:HI 2 "general_operand" "dmn"))
+                (match_operand:FP 1 "general_operand" "0")))]
   "TARGET_68881"
-  "f%&add%.w %2,%0")
+  "f<FP:round>add%.w %2,%0")
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (plus:DF (float:DF (match_operand:QI 2 "general_operand" "dmn"))
-                (match_operand:DF 1 "general_operand" "0")))]
+(define_insn "add<mode>3_floatqi_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (plus:FP (float:FP (match_operand:QI 2 "general_operand" "dmn"))
+                (match_operand:FP 1 "general_operand" "0")))]
   "TARGET_68881"
-  "f%&add%.b %2,%0")
+  "f<FP:round>add%.b %2,%0")
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (plus:DF (match_operand:DF 1 "general_operand" "%0")
-                (match_operand:DF 2 "general_operand" "fmG")))]
+(define_insn "add<mode>3_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (plus:FP (match_operand:FP 1 "general_operand" "%0")
+                (match_operand:FP 2 "general_operand" "f<FP:dreg>m<FP:const>")))]
   "TARGET_68881"
-  "*
 {
-  if (REG_P (operands[2]))
-    return \"f%&add%.x %2,%0\";
-  return \"f%&add%.d %f2,%0\";
-}")
-
-(define_expand "addsf3"
-  [(set (match_operand:SF 0 "nonimmediate_operand" "")
-       (plus:SF (match_operand:SF 1 "general_operand" "")
-                (match_operand:SF 2 "general_operand" "")))]
-  "TARGET_68881"
-  "")
+  if (FP_REG_P (operands[2]))
+    return "f<FP:round>add%.x %2,%0";
+  return "f<FP:round>add%.<FP:prec> %f2,%0";
+})
 
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (plus:SF (float:SF (match_operand:SI 2 "general_operand" "dmi"))
-                (match_operand:SF 1 "general_operand" "0")))]
-  "TARGET_68881"
-  "f%$add%.l %2,%0")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (plus:SF (float:SF (match_operand:HI 2 "general_operand" "dmn"))
-                (match_operand:SF 1 "general_operand" "0")))]
-  "TARGET_68881"
-  "f%$add%.w %2,%0")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (plus:SF (float:SF (match_operand:QI 2 "general_operand" "dmn"))
-                (match_operand:SF 1 "general_operand" "0")))]
-  "TARGET_68881"
-  "f%$add%.b %2,%0")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (plus:SF (match_operand:SF 1 "general_operand" "%0")
-                (match_operand:SF 2 "general_operand" "fdmF")))]
-  "TARGET_68881"
-  "*
+(define_insn "add<mode>3_cf"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (plus:FP (match_operand:FP 1 "general_operand" "%0")
+                (match_operand:FP 2 "general_operand" "f<FP:dreg><Q>U")))]
+  "TARGET_COLDFIRE_FPU"
 {
-  if (REG_P (operands[2]) && ! DATA_REG_P (operands[2]))
-    return \"f%$add%.x %2,%0\";
-  return \"f%$add%.s %f2,%0\";
-}")
+  if (FP_REG_P (operands[2]))
+    return "f<FP:round>add%.d %2,%0";
+  return "f<FP:round>add%.<FP:prec> %2,%0";
+})
 \f
 ;; subtract instructions
 
         (ashift:DI (sign_extend:DI (match_operand:HI 2 "general_operand" "rm,rm,rm,rm"))
             (const_int 32))))
    (clobber (match_scratch:SI 3 "=&d,X,a,?d"))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   CC_STATUS_INIT;
   if (ADDRESS_REG_P (operands[0]))
-    return \"sub%.w %2,%0\";
+    return "sub%.w %2,%0";
   else if (ADDRESS_REG_P (operands[3]))
-    return \"move%.w %2,%3\;sub%.l %3,%0\";
+    return "move%.w %2,%3\;sub%.l %3,%0";
   else
-    return \"move%.w %2,%3\;ext%.l %3\;sub%.l %3,%0\";
-} ")
+    return "move%.w %2,%3\;ext%.l %3\;sub%.l %3,%0";
+})
 
 (define_insn "subdi_dishl32"
   [(set (match_operand:DI 0 "nonimmediate_operand" "+ro")
         (ashift:DI (match_operand:DI 1 "general_operand" "ro")
             (const_int 32))))]
   ""
-  "*
 {
   CC_STATUS_INIT;
   if (GET_CODE (operands[1]) == REG)
     operands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
   else
     operands[1] = adjust_address (operands[1], SImode, 4);
-  return \"sub%.l %1,%0\";
-} ")
+  return "sub%.l %1,%0";
+})
 
 (define_insn "subdi3"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=<,o<>,d,d,d")
                 (match_operand:DI 2 "general_operand" "<,d,no>,d,a")))
    (clobber (match_scratch:SI 3 "=X,&d,&d,X,&d"))]
   ""
-  "*
 {
   if (DATA_REG_P (operands[0]))
     {
       if (DATA_REG_P (operands[2]))
-       return \"sub%.l %R2,%R0\;subx%.l %2,%0\";
+       return "sub%.l %R2,%R0\;subx%.l %2,%0";
       else if (GET_CODE (operands[2]) == MEM
          && GET_CODE (XEXP (operands[2], 0)) == POST_INC)
        {
-         return \"move%.l %2,%3\;sub%.l %2,%R0\;subx%.l %3,%0\";
+         return "move%.l %2,%3\;sub%.l %2,%R0\;subx%.l %3,%0";
        }
       else
        {
          if (GET_CODE (operands[1]) == CONST_INT)
            {
              if (INTVAL (operands[1]) > 0 && INTVAL (operands[1]) <= 8)
-               {
-#ifdef NO_ADDSUB_Q
-                 return \"sub%.l %1,%R0\;subx%.l %3,%0\";
-#else
-                 return \"subq%.l %1,%R0\;subx%.l %3,%0\";
-#endif
-               }
+               return "subq%.l %1,%R0\;subx%.l %3,%0";
              else if (INTVAL (operands[1]) >= -8 && INTVAL (operands[1]) < 0)
                {
                  operands[1] = GEN_INT (-INTVAL (operands[1]));
-#ifdef NO_ADDSUB_Q
-                 return \"add%.l %1,%R0\;addx%.l %3,%0\";
-#else
-                 return \"addq%.l %1,%R0\;addx%.l %3,%0\";
-#endif
+                 return "addq%.l %1,%R0\;addx%.l %3,%0";
                }
            }
-         return \"sub%.l %1,%R0\;subx%.l %3,%0\";
+         return "sub%.l %1,%R0\;subx%.l %3,%0";
        }
     }
-  else if (GET_CODE (operands[0]) == MEM)
+  else
     {
+      gcc_assert (GET_CODE (operands[0]) == MEM);
       if (GET_CODE (operands[2]) == MEM
          && GET_CODE (XEXP (operands[2], 0)) == PRE_DEC)
-       return \"sub%.l %2,%0\;subx%.l %2,%0\";
+       return "sub%.l %2,%0\;subx%.l %2,%0";
       CC_STATUS_INIT;
       if (GET_CODE (XEXP (operands[0], 0)) == POST_INC)
        {
          operands[1]
            = gen_rtx_MEM (SImode, plus_constant (XEXP (operands[0], 0), -8));
-         return \"move%.l %0,%3\;sub%.l %R2,%0\;subx%.l %2,%3\;move%.l %3,%1\";
+         return "move%.l %0,%3\;sub%.l %R2,%0\;subx%.l %2,%3\;move%.l %3,%1";
        }
       else if (GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
        {
          operands[1] = XEXP(operands[0], 0);
-         return \"sub%.l %R2,%0\;move%.l %0,%3\;subx%.l %2,%3\;move%.l %3,%1\";
+         return "sub%.l %R2,%0\;move%.l %0,%3\;subx%.l %2,%3\;move%.l %3,%1";
        }
       else
        {
          operands[1] = adjust_address (operands[0], SImode, 4);
-         return \"sub%.l %R2,%1\;move%.l %0,%3\;subx%.l %2,%3\;move%.l %3,%0\";
+         return "sub%.l %R2,%1\;move%.l %0,%3\;subx%.l %2,%3\;move%.l %3,%0";
        }
     }
-  else
-    abort ();
-} ")
+})
 
 (define_insn "subsi3"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=m,d,a")
        (minus:SI (match_operand:SI 1 "general_operand" "0")
                  (sign_extend:SI
                   (match_operand:HI 2 "nonimmediate_src_operand" "rmS"))))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "sub%.w %2,%0")
 
 (define_insn "subhi3"
   [(set (match_operand:HI 0 "nonimmediate_operand" "=m,r")
        (minus:HI (match_operand:HI 1 "general_operand" "0,0")
                  (match_operand:HI 2 "general_src_operand" "dn,rmSn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "sub%.w %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+m,d"))
        (minus:HI (match_dup 0)
                  (match_operand:HI 1 "general_src_operand" "dn,rmSn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "sub%.w %1,%0")
 
 (define_insn "subqi3"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=m,d")
        (minus:QI (match_operand:QI 1 "general_operand" "0,0")
                  (match_operand:QI 2 "general_src_operand" "dn,dmSn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "sub%.b %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+m,d"))
        (minus:QI (match_dup 0)
                  (match_operand:QI 1 "general_src_operand" "dn,dmSn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "sub%.b %1,%0")
 
-(define_expand "subdf3"
-  [(set (match_operand:DF 0 "nonimmediate_operand" "")
-       (minus:DF (match_operand:DF 1 "general_operand" "")
-                 (match_operand:DF 2 "general_operand" "")))]
-  "TARGET_68881"
+(define_expand "sub<mode>3"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "")
+       (minus:FP (match_operand:FP 1 "general_operand" "")
+                 (match_operand:FP 2 "general_operand" "")))]
+  "TARGET_HARD_FLOAT"
   "")
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (minus:DF (match_operand:DF 1 "general_operand" "0")
-                 (float:DF (match_operand:SI 2 "general_operand" "dmi"))))]
+(define_insn "sub<mode>3_floatsi_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (minus:FP (match_operand:FP 1 "general_operand" "0")
+                 (float:FP (match_operand:SI 2 "general_operand" "dmi"))))]
   "TARGET_68881"
-  "f%&sub%.l %2,%0")
+  "f<FP:round>sub%.l %2,%0")
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (minus:DF (match_operand:DF 1 "general_operand" "0")
-                 (float:DF (match_operand:HI 2 "general_operand" "dmn"))))]
+(define_insn "sub<mode>3_floathi_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (minus:FP (match_operand:FP 1 "general_operand" "0")
+                 (float:FP (match_operand:HI 2 "general_operand" "dmn"))))]
   "TARGET_68881"
-  "f%&sub%.w %2,%0")
+  "f<FP:round>sub%.w %2,%0")
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (minus:DF (match_operand:DF 1 "general_operand" "0")
-                 (float:DF (match_operand:QI 2 "general_operand" "dmn"))))]
+(define_insn "sub<mode>3_floatqi_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (minus:FP (match_operand:FP 1 "general_operand" "0")
+                 (float:FP (match_operand:QI 2 "general_operand" "dmn"))))]
   "TARGET_68881"
-  "f%&sub%.b %2,%0")
+  "f<FP:round>sub%.b %2,%0")
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (minus:DF (match_operand:DF 1 "general_operand" "0")
-                 (match_operand:DF 2 "general_operand" "fmG")))]
+(define_insn "sub<mode>3_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (minus:FP (match_operand:FP 1 "general_operand" "0")
+                 (match_operand:FP 2 "general_operand" "f<FP:dreg>m<FP:const>")))]
   "TARGET_68881"
-  "*
 {
-  if (REG_P (operands[2]))
-    return \"f%&sub%.x %2,%0\";
-  return \"f%&sub%.d %f2,%0\";
-}")
-
-(define_expand "subsf3"
-  [(set (match_operand:SF 0 "nonimmediate_operand" "")
-       (minus:SF (match_operand:SF 1 "general_operand" "")
-                 (match_operand:SF 2 "general_operand" "")))]
-  "TARGET_68881"
-  "")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (minus:SF (match_operand:SF 1 "general_operand" "0")
-                 (float:SF (match_operand:SI 2 "general_operand" "dmi"))))]
-  "TARGET_68881"
-  "f%$sub%.l %2,%0")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (minus:SF (match_operand:SF 1 "general_operand" "0")
-                 (float:SF (match_operand:HI 2 "general_operand" "dmn"))))]
-  "TARGET_68881"
-  "f%$sub%.w %2,%0")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (minus:SF (match_operand:SF 1 "general_operand" "0")
-                 (float:SF (match_operand:QI 2 "general_operand" "dmn"))))]
-  "TARGET_68881"
-  "f%$sub%.b %2,%0")
+  if (FP_REG_P (operands[2]))
+    return "f<FP:round>sub%.x %2,%0";
+  return "f<FP:round>sub%.<FP:prec> %f2,%0";
+})
 
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (minus:SF (match_operand:SF 1 "general_operand" "0")
-                 (match_operand:SF 2 "general_operand" "fdmF")))]
-  "TARGET_68881"
-  "*
+(define_insn "sub<mode>3_cf"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+        (minus:FP (match_operand:FP 1 "general_operand" "0")
+                  (match_operand:FP 2 "general_operand" "f<FP:dreg><Q>U")))]
+  "TARGET_COLDFIRE_FPU"
 {
-  if (REG_P (operands[2]) && ! DATA_REG_P (operands[2]))
-    return \"f%$sub%.x %2,%0\";
-  return \"f%$sub%.s %f2,%0\";
-}")
+  if (FP_REG_P (operands[2]))
+    return "f<FP:round>sub%.d %2,%0";
+  return "f<FP:round>sub%.<FP:prec> %2,%0";
+})
 \f
 ;; multiply instructions
 
        (mult:HI (match_operand:HI 1 "general_operand" "%0")
                 (match_operand:HI 2 "general_src_operand" "dmSn")))]
   ""
-  "*
 {
-#if defined(MOTOROLA)
-  return \"muls%.w %2,%0\";
-#else
-  return \"muls %2,%0\";
-#endif
-}")
+  return MOTOROLA ? "muls%.w %2,%0" : "muls %2,%0";
+})
 
 (define_insn "mulhisi3"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
                 (sign_extend:SI
                  (match_operand:HI 2 "nonimmediate_src_operand" "dmS"))))]
   ""
-  "*
 {
-#if defined(MOTOROLA)
-  return \"muls%.w %2,%0\";
-#else
-  return \"muls %2,%0\";
-#endif
-}")
+  return MOTOROLA ? "muls%.w %2,%0" : "muls %2,%0";
+})
 
 (define_insn ""
   [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
                  (match_operand:HI 1 "nonimmediate_operand" "%0"))
                 (match_operand:SI 2 "const_int_operand" "n")))]
   "INTVAL (operands[2]) >= -0x8000 && INTVAL (operands[2]) <= 0x7fff"
-  "*
 {
-#if defined(MOTOROLA)
-  return \"muls%.w %2,%0\";
-#else
-  return \"muls %2,%0\";
-#endif
-}")
+  return MOTOROLA ? "muls%.w %2,%0" : "muls %2,%0";
+})
 
 (define_expand "mulsi3"
   [(set (match_operand:SI 0 "nonimmediate_operand" "")
        (mult:SI (match_operand:SI 1 "general_operand" "")
                 (match_operand:SI 2 "general_operand" "")))]
-  "TARGET_68020 || TARGET_5200"
+  "TARGET_68020 || TARGET_COLDFIRE"
   "")
 
 (define_insn ""
   [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (mult:SI (match_operand:SI 1 "general_operand" "%0")
                 (match_operand:SI 2 "general_operand" "d<Q>")))]
-  "TARGET_5200"
+  "TARGET_COLDFIRE"
   "muls%.l %2,%0")
 
 (define_insn "umulhisi3"
                 (zero_extend:SI
                  (match_operand:HI 2 "nonimmediate_src_operand" "dmS"))))]
   ""
-  "*
 {
-#if defined(MOTOROLA)
-  return \"mulu%.w %2,%0\";
-#else
-  return \"mulu %2,%0\";
-#endif
-}")
+  return MOTOROLA ? "mulu%.w %2,%0" : "mulu %2,%0";
+})
 
 (define_insn ""
   [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
                  (match_operand:HI 1 "nonimmediate_operand" "%0"))
                 (match_operand:SI 2 "const_int_operand" "n")))]
   "INTVAL (operands[2]) >= 0 && INTVAL (operands[2]) <= 0xffff"
-  "*
 {
-#if defined(MOTOROLA)
-  return \"mulu%.w %2,%0\";
-#else
-  return \"mulu %2,%0\";
-#endif
-}")
+  return MOTOROLA ? "mulu%.w %2,%0" : "mulu %2,%0";
+})
 
 ;; We need a separate DEFINE_EXPAND for u?mulsidi3 to be able to use the
 ;; proper matching constraint.  This is because the matching is between
          (truncate:SI (lshiftrt:DI (mult:DI (zero_extend:DI (match_dup 1))
                                             (zero_extend:DI (match_dup 2)))
                                    (const_int 32))))])]
-  "TARGET_68020 && !TARGET_68060 && !TARGET_5200"
+  "TARGET_68020 && !TUNE_68060 && !TARGET_COLDFIRE"
   "")
 
 (define_insn ""
        (truncate:SI (lshiftrt:DI (mult:DI (zero_extend:DI (match_dup 1))
                                           (zero_extend:DI (match_dup 2)))
                                  (const_int 32))))]
-  "TARGET_68020 && !TARGET_68060 && !TARGET_5200"
+  "TARGET_68020 && !TUNE_68060 && !TARGET_COLDFIRE"
   "mulu%.l %2,%3:%0")
 
 ; Match immediate case.  For 2.4 only match things < 2^31.
        (truncate:SI (lshiftrt:DI (mult:DI (zero_extend:DI (match_dup 1))
                                           (match_dup 2))
                                  (const_int 32))))]
-  "TARGET_68020 && !TARGET_68060 && !TARGET_5200
+  "TARGET_68020 && !TUNE_68060 && !TARGET_COLDFIRE
    && (unsigned) INTVAL (operands[2]) <= 0x7fffffff"
   "mulu%.l %2,%3:%0")
 
          (truncate:SI (lshiftrt:DI (mult:DI (sign_extend:DI (match_dup 1))
                                             (sign_extend:DI (match_dup 2)))
                                    (const_int 32))))])]
-  "TARGET_68020 && !TARGET_68060 && !TARGET_5200"
+  "TARGET_68020 && !TUNE_68060 && !TARGET_COLDFIRE"
   "")
 
 (define_insn ""
        (truncate:SI (lshiftrt:DI (mult:DI (sign_extend:DI (match_dup 1))
                                           (sign_extend:DI (match_dup 2)))
                                  (const_int 32))))]
-  "TARGET_68020 && !TARGET_68060 && !TARGET_5200"
+  "TARGET_68020 && !TUNE_68060 && !TARGET_COLDFIRE"
   "muls%.l %2,%3:%0")
 
 (define_insn ""
        (truncate:SI (lshiftrt:DI (mult:DI (sign_extend:DI (match_dup 1))
                                           (match_dup 2))
                                  (const_int 32))))]
-  "TARGET_68020 && !TARGET_68060 && !TARGET_5200"
+  "TARGET_68020 && !TUNE_68060 && !TARGET_COLDFIRE"
   "muls%.l %2,%3:%0")
 
 (define_expand "umulsi3_highpart"
                     (zero_extend:DI (match_operand:SI 2 "general_operand" "")))
            (const_int 32))))
      (clobber (match_dup 3))])]
-  "TARGET_68020 && !TARGET_68060 && !TARGET_5200"
-  "
+  "TARGET_68020 && !TUNE_68060 && !TARGET_COLDFIRE"
 {
   operands[3] = gen_reg_rtx (SImode);
 
                                             operands[1], operands[2]));
       DONE;
     }
-}")
+})
 
 (define_insn ""
   [(set (match_operand:SI 0 "register_operand" "=d")
                   (zero_extend:DI (match_operand:SI 3 "nonimmediate_operand" "dm")))
          (const_int 32))))
    (clobber (match_operand:SI 1 "register_operand" "=d"))]
-  "TARGET_68020 && !TARGET_68060 && !TARGET_5200"
+  "TARGET_68020 && !TUNE_68060 && !TARGET_COLDFIRE"
   "mulu%.l %3,%0:%1")
 
 (define_insn "const_umulsi3_highpart"
                   (match_operand:DI 3 "const_uint32_operand" "n"))
          (const_int 32))))
    (clobber (match_operand:SI 1 "register_operand" "=d"))]
-  "TARGET_68020 && !TARGET_68060 && !TARGET_5200"
+  "TARGET_68020 && !TUNE_68060 && !TARGET_COLDFIRE"
   "mulu%.l %3,%0:%1")
 
 (define_expand "smulsi3_highpart"
                     (sign_extend:DI (match_operand:SI 2 "general_operand" "")))
            (const_int 32))))
      (clobber (match_dup 3))])]
-  "TARGET_68020 && !TARGET_68060 && !TARGET_5200"
-  "
+  "TARGET_68020 && !TUNE_68060 && !TARGET_COLDFIRE"
 {
   operands[3] = gen_reg_rtx (SImode);
   if (GET_CODE (operands[2]) == CONST_INT)
                                             operands[1], operands[2]));
       DONE;
     }
-}")
+})
 
 (define_insn ""
   [(set (match_operand:SI 0 "register_operand" "=d")
                   (sign_extend:DI (match_operand:SI 3 "nonimmediate_operand" "dm")))
          (const_int 32))))
    (clobber (match_operand:SI 1 "register_operand" "=d"))]
-  "TARGET_68020 && !TARGET_68060 && !TARGET_5200"
+  "TARGET_68020 && !TUNE_68060 && !TARGET_COLDFIRE"
   "muls%.l %3,%0:%1")
 
 (define_insn "const_smulsi3_highpart"
                   (match_operand:DI 3 "const_sint32_operand" "n"))
          (const_int 32))))
    (clobber (match_operand:SI 1 "register_operand" "=d"))]
-  "TARGET_68020 && !TARGET_68060 && !TARGET_5200"
+  "TARGET_68020 && !TUNE_68060 && !TARGET_COLDFIRE"
   "muls%.l %3,%0:%1")
 
-(define_expand "muldf3"
-  [(set (match_operand:DF 0 "nonimmediate_operand" "")
-       (mult:DF (match_operand:DF 1 "general_operand" "")
-                (match_operand:DF 2 "general_operand" "")))]
-  "TARGET_68881"
+(define_expand "mul<mode>3"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "")
+       (mult:FP (match_operand:FP 1 "general_operand" "")
+                (match_operand:FP 2 "general_operand" "")))]
+  "TARGET_HARD_FLOAT"
   "")
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (mult:DF (float:DF (match_operand:SI 2 "general_operand" "dmi"))
-                (match_operand:DF 1 "general_operand" "0")))]
+(define_insn "mul<mode>3_floatsi_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (mult:FP (float:FP (match_operand:SI 2 "general_operand" "dmi"))
+                (match_operand:FP 1 "general_operand" "0")))]
   "TARGET_68881"
-  "f%&mul%.l %2,%0")
+{
+  return TARGET_68040
+        ? "f<FP:round>mul%.l %2,%0"
+        : "f<FP:round_mul>mul%.l %2,%0";
+})
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (mult:DF (float:DF (match_operand:HI 2 "general_operand" "dmn"))
-                (match_operand:DF 1 "general_operand" "0")))]
+(define_insn "mul<mode>3_floathi_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (mult:FP (float:FP (match_operand:HI 2 "general_operand" "dmn"))
+                (match_operand:FP 1 "general_operand" "0")))]
   "TARGET_68881"
-  "f%&mul%.w %2,%0")
+{
+  return TARGET_68040
+        ? "f<FP:round>mul%.w %2,%0"
+        : "f<FP:round_mul>mul%.w %2,%0";
+})
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (mult:DF (float:DF (match_operand:QI 2 "general_operand" "dmn"))
-                (match_operand:DF 1 "general_operand" "0")))]
+(define_insn "mul<mode>3_floatqi_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (mult:FP (float:FP (match_operand:QI 2 "general_operand" "dmn"))
+                (match_operand:FP 1 "general_operand" "0")))]
   "TARGET_68881"
-  "f%&mul%.b %2,%0")
+{
+  return TARGET_68040
+        ? "f<FP:round>mul%.b %2,%0"
+        : "f<FP:round_mul>mul%.b %2,%0";
+})
 
-(define_insn ""
+(define_insn "muldf_68881"
   [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
        (mult:DF (match_operand:DF 1 "general_operand" "%0")
                 (match_operand:DF 2 "general_operand" "fmG")))]
   "TARGET_68881"
-  "*
 {
   if (GET_CODE (operands[2]) == CONST_DOUBLE
-      && floating_exact_log2 (operands[2]) && !TARGET_68040 && !TARGET_68060)
+      && floating_exact_log2 (operands[2]) && !TUNE_68040_60)
     {
       int i = floating_exact_log2 (operands[2]);
       operands[2] = GEN_INT (i);
-      return \"fscale%.l %2,%0\";
+      return "fscale%.l %2,%0";
     }
   if (REG_P (operands[2]))
-    return \"f%&mul%.x %2,%0\";
-  return \"f%&mul%.d %f2,%0\";
-}")
-
-(define_expand "mulsf3"
-  [(set (match_operand:SF 0 "nonimmediate_operand" "")
-       (mult:SF (match_operand:SF 1 "general_operand" "")
-                (match_operand:SF 2 "general_operand" "")))]
-  "TARGET_68881"
-  "")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (mult:SF (float:SF (match_operand:SI 2 "general_operand" "dmi"))
-                (match_operand:SF 1 "general_operand" "0")))]
-  "TARGET_68881"
-  "*
-{
-  return (TARGET_68040_ONLY
-          ? \"fsmul%.l %2,%0\"
-          : \"fsglmul%.l %2,%0\");
-}")
+    return "f%&mul%.x %2,%0";
+  return "f%&mul%.d %f2,%0";
+})
 
-(define_insn ""
+(define_insn "mulsf_68881"
   [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (mult:SF (float:SF (match_operand:HI 2 "general_operand" "dmn"))
-                (match_operand:SF 1 "general_operand" "0")))]
+       (mult:SF (match_operand:SF 1 "general_operand" "%0")
+                (match_operand:SF 2 "general_operand" "fdmF")))]
   "TARGET_68881"
-  "*
 {
-  return (TARGET_68040_ONLY
-          ? \"fsmul%.w %2,%0\"
-          : \"fsglmul%.w %2,%0\");
-}")
+  if (FP_REG_P (operands[2]))
+    return (TARGET_68040
+           ? "fsmul%.x %2,%0"
+           : "fsglmul%.x %2,%0");
+  return (TARGET_68040
+         ? "fsmul%.s %f2,%0"
+         : "fsglmul%.s %f2,%0");
+})
 
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (mult:SF (float:SF (match_operand:QI 2 "general_operand" "dmn"))
-                (match_operand:SF 1 "general_operand" "0")))]
+(define_insn "mulxf3_68881"
+  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
+       (mult:XF (match_operand:XF 1 "nonimmediate_operand" "%0")
+                (match_operand:XF 2 "nonimmediate_operand" "fm")))]
   "TARGET_68881"
-  "*
 {
-  return (TARGET_68040_ONLY
-          ? \"fsmul%.b %2,%0\"
-          : \"fsglmul%.b %2,%0\");
-}")
+  return "fmul%.x %f2,%0";
+})
 
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (mult:SF (match_operand:SF 1 "general_operand" "%0")
-                (match_operand:SF 2 "general_operand" "fdmF")))]
-  "TARGET_68881"
-  "*
+(define_insn "fmul<mode>3_cf"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (mult:FP (match_operand:FP 1 "general_operand" "%0")
+                (match_operand:FP 2 "general_operand" "f<Q>U<FP:dreg>")))]
+  "TARGET_COLDFIRE_FPU"
 {
-#ifdef FSGLMUL_USE_S
-  if (REG_P (operands[2]) && ! DATA_REG_P (operands[2]))
-    return (TARGET_68040_ONLY
-           ? \"fsmul%.s %2,%0\"
-           : \"fsglmul%.s %2,%0\");
-#else
-  if (REG_P (operands[2]) && ! DATA_REG_P (operands[2]))
-    return (TARGET_68040_ONLY
-           ? \"fsmul%.x %2,%0\"
-           : \"fsglmul%.x %2,%0\");
-#endif
-  return (TARGET_68040_ONLY
-         ? \"fsmul%.s %f2,%0\"
-         : \"fsglmul%.s %f2,%0\");
-}")
+  if (FP_REG_P (operands[2]))
+    return "f<FP:prec>mul%.d %2,%0";
+  return "f<FP:prec>mul%.<FP:prec> %2,%0";
+})
 \f
 ;; divide instructions
 
-(define_expand "divdf3"
-  [(set (match_operand:DF 0 "nonimmediate_operand" "")
-       (div:DF (match_operand:DF 1 "general_operand" "")
-               (match_operand:DF 2 "general_operand" "")))]
-  "TARGET_68881"
+(define_expand "div<mode>3"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "")
+       (div:FP (match_operand:FP 1 "general_operand" "")
+               (match_operand:FP 2 "general_operand" "")))]
+  "TARGET_HARD_FLOAT"
   "")
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (div:DF (match_operand:DF 1 "general_operand" "0")
-               (float:DF (match_operand:SI 2 "general_operand" "dmi"))))]
-  "TARGET_68881"
-  "f%&div%.l %2,%0")
-
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (div:DF (match_operand:DF 1 "general_operand" "0")
-               (float:DF (match_operand:HI 2 "general_operand" "dmn"))))]
-  "TARGET_68881"
-  "f%&div%.w %2,%0")
-
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (div:DF (match_operand:DF 1 "general_operand" "0")
-               (float:DF (match_operand:QI 2 "general_operand" "dmn"))))]
-  "TARGET_68881"
-  "f%&div%.b %2,%0")
-
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (div:DF (match_operand:DF 1 "general_operand" "0")
-               (match_operand:DF 2 "general_operand" "fmG")))]
+(define_insn "div<mode>3_floatsi_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (div:FP (match_operand:FP 1 "general_operand" "0")
+               (float:FP (match_operand:SI 2 "general_operand" "dmi"))))]
   "TARGET_68881"
-  "*
 {
-  if (REG_P (operands[2]))
-    return \"f%&div%.x %2,%0\";
-  return \"f%&div%.d %f2,%0\";
-}")
-
-(define_expand "divsf3"
-  [(set (match_operand:SF 0 "nonimmediate_operand" "")
-       (div:SF (match_operand:SF 1 "general_operand" "")
-               (match_operand:SF 2 "general_operand" "")))]
-  "TARGET_68881"
-  "")
+  return TARGET_68040
+        ? "f<FP:round>div%.l %2,%0"
+        : "f<FP:round_mul>div%.l %2,%0";
+})
 
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (div:SF (match_operand:SF 1 "general_operand" "0")
-               (float:SF (match_operand:SI 2 "general_operand" "dmi"))))]
+(define_insn "div<mode>3_floathi_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (div:FP (match_operand:FP 1 "general_operand" "0")
+               (float:FP (match_operand:HI 2 "general_operand" "dmn"))))]
   "TARGET_68881"
-  "*
 {
-  return (TARGET_68040_ONLY
-          ? \"fsdiv%.l %2,%0\"
-          : \"fsgldiv%.l %2,%0\");
-}")
+  return TARGET_68040
+        ? "f<FP:round>div%.w %2,%0"
+        : "f<FP:round_mul>div%.w %2,%0";
+})
 
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (div:SF (match_operand:SF 1 "general_operand" "0")
-               (float:SF (match_operand:HI 2 "general_operand" "dmn"))))]
+(define_insn "div<mode>3_floatqi_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (div:FP (match_operand:FP 1 "general_operand" "0")
+               (float:FP (match_operand:QI 2 "general_operand" "dmn"))))]
   "TARGET_68881"
-  "*
 {
-  return (TARGET_68040_ONLY
-          ? \"fsdiv%.w %2,%0\"
-          : \"fsgldiv%.w %2,%0\");
-}")
+  return TARGET_68040
+        ? "f<FP:round>div%.b %2,%0"
+        : "f<FP:round_mul>div%.b %2,%0";
+})
 
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (div:SF (match_operand:SF 1 "general_operand" "0")
-               (float:SF (match_operand:QI 2 "general_operand" "dmn"))))]
+(define_insn "div<mode>3_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (div:FP (match_operand:FP 1 "general_operand" "0")
+               (match_operand:FP 2 "general_operand" "f<FP:dreg>m<FP:const>")))]
   "TARGET_68881"
-  "*
 {
-  return (TARGET_68040_ONLY
-          ? \"fsdiv%.b %2,%0\"
-          : \"fsgldiv%.b %2,%0\");
-}")
+  if (FP_REG_P (operands[2]))
+    return (TARGET_68040
+           ? "f<FP:round>div%.x %2,%0"
+           : "f<FP:round_mul>div%.x %2,%0");
+  return (TARGET_68040
+         ? "f<FP:round>div%.<FP:prec> %f2,%0"
+         : "f<FP:round_mul>div%.<FP:prec> %f2,%0");
+})
 
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (div:SF (match_operand:SF 1 "general_operand" "0")
-               (match_operand:SF 2 "general_operand" "fdmF")))]
-  "TARGET_68881"
-  "*
+(define_insn "div<mode>3_cf"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (div:FP (match_operand:FP 1 "general_operand" "0")
+               (match_operand:FP 2 "general_operand" "f<Q>U<FP:dreg>")))]
+  "TARGET_COLDFIRE_FPU"
 {
-#ifdef FSGLDIV_USE_S
-  if (REG_P (operands[2]) && ! DATA_REG_P (operands[2]))
-    return (TARGET_68040_ONLY
-           ? \"fsdiv%.s %2,%0\"
-           : \"fsgldiv%.s %2,%0\");
-#else
-  if (REG_P (operands[2]) && ! DATA_REG_P (operands[2]))
-    return (TARGET_68040_ONLY
-           ? \"fsdiv%.x %2,%0\"
-           : \"fsgldiv%.x %2,%0\");
-#endif
-  return (TARGET_68040_ONLY
-         ? \"fsdiv%.s %f2,%0\"
-         : \"fsgldiv%.s %f2,%0\");
-}")
+  if (FP_REG_P (operands[2]))
+    return "f<FP:prec>div%.d %2,%0";
+  return "f<FP:prec>div%.<FP:prec> %2,%0";
+})
 \f
 ;; Remainder instructions.
 
-(define_insn "divmodsi4"
+(define_expand "divmodsi4"
+  [(parallel
+    [(set (match_operand:SI 0 "nonimmediate_operand" "")
+          (div:SI (match_operand:SI 1 "general_operand" "")
+                  (match_operand:SI 2 "general_src_operand" "")))
+     (set (match_operand:SI 3 "nonimmediate_operand" "")
+          (mod:SI (match_dup 1) (match_dup 2)))])]
+  "TARGET_68020 || TARGET_CF_HWDIV"
+  "")
+
+(define_insn ""
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
+       (div:SI (match_operand:SI 1 "general_operand" "0")
+               (match_operand:SI 2 "general_src_operand" "d<Q>U")))
+   (set (match_operand:SI 3 "nonimmediate_operand" "=&d")
+       (mod:SI (match_dup 1) (match_dup 2)))]
+  "TARGET_CF_HWDIV"
+{
+  if (find_reg_note (insn, REG_UNUSED, operands[3]))
+    return "divs%.l %2,%0";
+  else if (find_reg_note (insn, REG_UNUSED, operands[0]))
+    return "rems%.l %2,%3:%0";
+  else
+    return "rems%.l %2,%3:%0\;divs%.l %2,%0";
+})
+
+(define_insn ""
   [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (div:SI (match_operand:SI 1 "general_operand" "0")
                (match_operand:SI 2 "general_src_operand" "dmSTK")))
    (set (match_operand:SI 3 "nonimmediate_operand" "=d")
        (mod:SI (match_dup 1) (match_dup 2)))]
-  "TARGET_68020 && !TARGET_5200"
-  "*
+  "TARGET_68020"
+{
+  if (find_reg_note (insn, REG_UNUSED, operands[3]))
+    return "divs%.l %2,%0";
+  else
+    return "divsl%.l %2,%3:%0";
+})
+
+(define_expand "udivmodsi4"
+  [(parallel
+    [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
+          (udiv:SI (match_operand:SI 1 "general_operand" "0")
+                   (match_operand:SI 2 "general_src_operand" "dmSTK")))
+     (set (match_operand:SI 3 "nonimmediate_operand" "=d")
+          (umod:SI (match_dup 1) (match_dup 2)))])]
+  "TARGET_68020 || TARGET_CF_HWDIV"
+  "")
+
+(define_insn ""
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
+       (udiv:SI (match_operand:SI 1 "general_operand" "0")
+                (match_operand:SI 2 "general_src_operand" "d<Q>U")))
+   (set (match_operand:SI 3 "nonimmediate_operand" "=&d")
+       (umod:SI (match_dup 1) (match_dup 2)))]
+  "TARGET_CF_HWDIV"
 {
   if (find_reg_note (insn, REG_UNUSED, operands[3]))
-    return \"divs%.l %2,%0\";
+    return "divu%.l %2,%0";
+  else if (find_reg_note (insn, REG_UNUSED, operands[0]))
+    return "remu%.l %2,%3:%0";
   else
-    return \"divsl%.l %2,%3:%0\";
-}")
+    return "remu%.l %2,%3:%0\;divu%.l %2,%0";
+})
 
-(define_insn "udivmodsi4"
+(define_insn ""
   [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (udiv:SI (match_operand:SI 1 "general_operand" "0")
                 (match_operand:SI 2 "general_src_operand" "dmSTK")))
    (set (match_operand:SI 3 "nonimmediate_operand" "=d")
        (umod:SI (match_dup 1) (match_dup 2)))]
-  "TARGET_68020 && !TARGET_5200"
-  "*
+  "TARGET_68020 && !TARGET_COLDFIRE"
 {
   if (find_reg_note (insn, REG_UNUSED, operands[3]))
-    return \"divu%.l %2,%0\";
+    return "divu%.l %2,%0";
   else
-    return \"divul%.l %2,%3:%0\";
-}")
+    return "divul%.l %2,%3:%0";
+})
 
 (define_insn "divmodhi4"
   [(set (match_operand:HI 0 "nonimmediate_operand" "=d")
                (match_operand:HI 2 "general_src_operand" "dmSKT")))
    (set (match_operand:HI 3 "nonimmediate_operand" "=d")
        (mod:HI (match_dup 1) (match_dup 2)))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE || TARGET_CF_HWDIV"
 {
-#ifdef MOTOROLA
-  output_asm_insn (\"ext%.l %0\;divs%.w %2,%0\", operands);
-#else
-  output_asm_insn (\"extl %0\;divs %2,%0\", operands);
-#endif
+  output_asm_insn (MOTOROLA ?
+    "ext%.l %0\;divs%.w %2,%0" :
+    "extl %0\;divs %2,%0",
+    operands);
   if (!find_reg_note(insn, REG_UNUSED, operands[3]))
     {
       CC_STATUS_INIT;
-      return \"move%.l %0,%3\;swap %3\";
+      return "move%.l %0,%3\;swap %3";
     }
   else
-    return \"\";
-}")
+    return "";
+})
 
 (define_insn "udivmodhi4"
   [(set (match_operand:HI 0 "nonimmediate_operand" "=d")
                 (match_operand:HI 2 "general_src_operand" "dmSKT")))
    (set (match_operand:HI 3 "nonimmediate_operand" "=d")
        (umod:HI (match_dup 1) (match_dup 2)))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE || TARGET_CF_HWDIV"
 {
-#ifdef MOTOROLA
-  output_asm_insn (\"and%.l %#0xFFFF,%0\;divu%.w %2,%0\", operands);
-#else
-  output_asm_insn (\"and%.l %#0xFFFF,%0\;divu %2,%0\", operands);
-#endif
+  if (TARGET_ISAB)
+    output_asm_insn (MOTOROLA ?
+      "mvz%.w %0,%0\;divu%.w %2,%0" :
+      "mvz%.w %0,%0\;divu %2,%0",
+      operands);
+  else
+    output_asm_insn (MOTOROLA ?
+      "and%.l #0xFFFF,%0\;divu%.w %2,%0" :
+      "and%.l #0xFFFF,%0\;divu %2,%0",
+      operands);
+
   if (!find_reg_note(insn, REG_UNUSED, operands[3]))
     {
       CC_STATUS_INIT;
-      return \"move%.l %0,%3\;swap %3\";
+      return "move%.l %0,%3\;swap %3";
     }
   else
-    return \"\";
-}")
+    return "";
+})
 \f
 ;; logical-and instructions
 
   [(set (match_operand:DI 0 "nonimmediate_operand" "=o,d")
        (and:DI (match_operand:DI 1 "general_operand" "%0,0")
                (match_operand:DI 2 "general_operand" "dn,don")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   CC_STATUS_INIT;
   /* We can get CONST_DOUBLE, but also const1_rtx etc.  */
       switch (INTVAL (hi))
        {
          case 0 :
-           output_asm_insn (\"clr%.l %0\", operands);
+           output_asm_insn ("clr%.l %0", operands);
            break;
          case -1 :
            break;
       switch (INTVAL (lo))
        {
          case 0 :
-           output_asm_insn (\"clr%.l %0\", operands);
+           output_asm_insn ("clr%.l %0", operands);
            break;
          case -1 :
            break;
            output_asm_insn (output_andsi3 (xoperands), xoperands);
            }
        }
-      return \"\";
+      return "";
     }
   if (GET_CODE (operands[0]) != REG)
     {
       operands[1] = adjust_address (operands[0], SImode, 4);
-      return \"and%.l %2,%0\;and%.l %R2,%1\";
+      return "and%.l %2,%0\;and%.l %R2,%1";
     }
   if (GET_CODE (operands[2]) != REG)
     {
       operands[1] = adjust_address (operands[2], SImode, 4);
-      return \"and%.l %2,%0\;and%.l %1,%R0\";
+      return "and%.l %2,%0\;and%.l %1,%R0";
     }
-  return \"and%.l %2,%0\;and%.l %R2,%R0\";
-}")
+  return "and%.l %2,%0\;and%.l %R2,%R0";
+})
 
 ;; Prevent AND from being made with sp.  This doesn't exist in the machine
 ;; and reload will cause inefficient code.  Since sp is a FIXED_REG, we
   ""
   "")
 
+;; produced by split operations after reload finished
+(define_insn "*andsi3_split"
+  [(set (match_operand:SI 0 "register_operand" "=d")
+       (and:SI (match_operand:SI 1 "register_operand" "0")
+               (match_operand:SI 2 "const_int_operand" "i")))]
+  "reload_completed && !TARGET_COLDFIRE"
+{
+  return output_andsi3 (operands);
+})
+
 (define_insn "andsi3_internal"
   [(set (match_operand:SI 0 "not_sp_operand" "=m,d")
        (and:SI (match_operand:SI 1 "general_operand" "%0,0")
                (match_operand:SI 2 "general_src_operand" "dKT,dmSM")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   return output_andsi3 (operands);
-}")
+})
 
 (define_insn "andsi3_5200"
   [(set (match_operand:SI 0 "not_sp_operand" "=m,d")
        (and:SI (match_operand:SI 1 "general_operand" "%0,0")
                (match_operand:SI 2 "general_src_operand" "d,dmsK")))]
-  "TARGET_5200"
-  "and%.l %2,%0")
+  "TARGET_COLDFIRE"
+{
+  if (TARGET_ISAB
+      && DATA_REG_P (operands[0])
+      && GET_CODE (operands[2]) == CONST_INT)
+    {
+      if (INTVAL (operands[2]) == 0x000000ff)
+        return "mvz%.b %0,%0";
+      else if (INTVAL (operands[2]) == 0x0000ffff)
+        return "mvz%.w %0,%0";
+    }
+  return output_andsi3 (operands);
+})
 
 (define_insn "andhi3"
   [(set (match_operand:HI 0 "nonimmediate_operand" "=m,d")
        (and:HI (match_operand:HI 1 "general_operand" "%0,0")
                (match_operand:HI 2 "general_src_operand" "dn,dmSn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "and%.w %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+m,d"))
        (and:HI (match_dup 0)
                (match_operand:HI 1 "general_src_operand" "dn,dmSn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "and%.w %1,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+m,d"))
        (and:HI (match_operand:HI 1 "general_src_operand" "dn,dmSn")
                (match_dup 0)))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "and%.w %1,%0")
 
 (define_insn "andqi3"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=m,d")
        (and:QI (match_operand:QI 1 "general_operand" "%0,0")
                (match_operand:QI 2 "general_src_operand" "dn,dmSn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "and%.b %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+m,d"))
        (and:QI (match_dup 0)
                (match_operand:QI 1 "general_src_operand" "dn,dmSn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "and%.b %1,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+m,d"))
        (and:QI (match_operand:QI 1 "general_src_operand" "dn,dmSn")
                (match_dup 0)))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "and%.b %1,%0")
 \f
 ;; inclusive-or instructions
   [(set (match_operand:DI 0 "nonimmediate_operand" "=o,d")
     (ior:DI (zero_extend:DI (match_operand 1 "general_operand" "dn,dmn"))
         (match_operand:DI 2 "general_operand" "0,0")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   int byte_mode;
 
   else
     operands[0] = adjust_address (operands[0], SImode, 4);
   if (GET_MODE (operands[1]) == SImode)
-    return \"or%.l %1,%0\";
+    return "or%.l %1,%0";
   byte_mode = (GET_MODE (operands[1]) == QImode);
   if (GET_CODE (operands[0]) == MEM)
     operands[0] = adjust_address (operands[0], byte_mode ? QImode : HImode,
                                  byte_mode ? 3 : 2);
   if (byte_mode)
-    return \"or%.b %1,%0\";
+    return "or%.b %1,%0";
   else
-    return \"or%.w %1,%0\";
-}")
+    return "or%.w %1,%0";
+})
 
 ;; "iordi3" is mainly here to help combine().
 (define_insn "iordi3"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=o,d")
        (ior:DI (match_operand:DI 1 "general_operand" "%0,0")
                (match_operand:DI 2 "general_operand" "dn,don")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   CC_STATUS_INIT;
   /* We can get CONST_DOUBLE, but also const1_rtx etc.  */
          case -1 :
            /* FIXME : a scratch register would be welcome here if operand[0]
               is not a register */
-           output_asm_insn (\"move%.l %#-1,%0\", operands);
+           output_asm_insn ("move%.l #-1,%0", operands);
            break;
          default :
            {
          case -1 :
            /* FIXME : a scratch register would be welcome here if operand[0]
               is not a register */
-           output_asm_insn (\"move%.l %#-1,%0\", operands);
+           output_asm_insn ("move%.l #-1,%0", operands);
            break;
          default :
            {
            output_asm_insn (output_iorsi3 (xoperands), xoperands);
            }
        }
-      return \"\";
+      return "";
     }
   if (GET_CODE (operands[0]) != REG)
     {
       operands[1] = adjust_address (operands[0], SImode, 4);
-      return \"or%.l %2,%0\;or%.l %R2,%1\";
+      return "or%.l %2,%0\;or%.l %R2,%1";
     }
   if (GET_CODE (operands[2]) != REG)
     {
       operands[1] = adjust_address (operands[2], SImode, 4);
-      return \"or%.l %2,%0\;or%.l %1,%R0\";
+      return "or%.l %2,%0\;or%.l %1,%R0";
     }
-  return \"or%.l %2,%0\;or%.l %R2,%R0\";
-}")
+  return "or%.l %2,%0\;or%.l %R2,%R0";
+})
 
 (define_expand "iorsi3"
   [(set (match_operand:SI 0 "nonimmediate_operand" "")
   [(set (match_operand:SI 0 "nonimmediate_operand" "=m,d")
        (ior:SI (match_operand:SI 1 "general_operand" "%0,0")
                 (match_operand:SI 2 "general_src_operand" "dKT,dmSMT")))]
-  "! TARGET_5200"
-  "*
+  "! TARGET_COLDFIRE"
 {
   return output_iorsi3 (operands);
-}")
+})
 
 (define_insn "iorsi3_5200"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=m,d")
        (ior:SI (match_operand:SI 1 "general_operand" "%0,0")
                (match_operand:SI 2 "general_src_operand" "d,dmsK")))]
-  "TARGET_5200"
-  "or%.l %2,%0")
+  "TARGET_COLDFIRE"
+{
+  return output_iorsi3 (operands);
+})
 
 (define_insn "iorhi3"
   [(set (match_operand:HI 0 "nonimmediate_operand" "=m,d")
        (ior:HI (match_operand:HI 1 "general_operand" "%0,0")
                (match_operand:HI 2 "general_src_operand" "dn,dmSn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "or%.w %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+m,d"))
        (ior:HI (match_dup 0)
                (match_operand:HI 1 "general_src_operand" "dn,dmSn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "or%.w %1,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+m,d"))
        (ior:HI (match_operand:HI 1 "general_src_operand" "dn,dmSn")
                (match_dup 0)))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "or%.w %1,%0")
 
 (define_insn "iorqi3"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=m,d")
        (ior:QI (match_operand:QI 1 "general_operand" "%0,0")
                 (match_operand:QI 2 "general_src_operand" "dn,dmSn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "or%.b %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+m,d"))
        (ior:QI (match_dup 0)
                 (match_operand:QI 1 "general_src_operand" "dn,dmSn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "or%.b %1,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+m,d"))
         (ior:QI (match_operand:QI 1 "general_src_operand" "dn,dmSn")
                (match_dup 0)))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "or%.b %1,%0")
 
 ;; On all 68k models, this makes faster code in a special case.
         (ashift:SI (match_operand:SI 2 "general_operand" "or")
             (const_int 16))))]
   ""
-  "*
 {
   CC_STATUS_INIT;
   if (GET_CODE (operands[2]) != REG)
       operands[2] = adjust_address (operands[2], HImode, 2);
   if (GET_CODE (operands[2]) != REG
   || REGNO (operands[2]) != REGNO (operands[0]))
-    output_asm_insn (\"move%.w %2,%0\", operands);
-  return \"swap %0\;mov%.w %1,%0\";
-}")
+    output_asm_insn ("move%.w %2,%0", operands);
+  return "swap %0\;mov%.w %1,%0";
+})
 
 (define_insn "iorsi_zext"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=o,d")
     (ior:SI (zero_extend:SI (match_operand 1 "general_operand" "dn,dmn"))
         (match_operand:SI 2 "general_operand" "0,0")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   int byte_mode;
 
     operands[0] = adjust_address (operands[0], byte_mode ? QImode : HImode,
                                  byte_mode ? 3 : 2);
   if (byte_mode)
-    return \"or%.b %1,%0\";
+    return "or%.b %1,%0";
   else
-    return \"or%.w %1,%0\";
-}")
+    return "or%.w %1,%0";
+})
 \f
 ;; xor instructions
 
   [(set (match_operand:DI 0 "nonimmediate_operand" "=od")
        (xor:DI (match_operand:DI 1 "general_operand" "%0")
                (match_operand:DI 2 "general_operand" "dn")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   CC_STATUS_INIT;
   /* We can get CONST_DOUBLE, but also const1_rtx etc.  */
          case 0 :
            break;
          case -1 :
-           output_asm_insn (\"not%.l %0\", operands);
+           output_asm_insn ("not%.l %0", operands);
            break;
          default :
            /* FIXME : a scratch register would be welcome here if
          case 0 :
            break;
          case -1 :
-           output_asm_insn (\"not%.l %0\", operands);
+           output_asm_insn ("not%.l %0", operands);
            break;
          default :
            /* FIXME : a scratch register would be welcome here if
            output_asm_insn (output_xorsi3 (xoperands), xoperands);
            }
        }
-      return \"\";
+      return "";
     }
   if (GET_CODE (operands[0]) != REG)
     {
       operands[1] = adjust_address (operands[0], SImode, 4);
-      return \"eor%.l %2,%0\;eor%.l %R2,%1\";
+      return "eor%.l %2,%0\;eor%.l %R2,%1";
     }
   if (GET_CODE (operands[2]) != REG)
     {
       operands[1] = adjust_address (operands[2], SImode, 4);
-      return \"eor%.l %2,%0\;eor%.l %1,%R0\";
+      return "eor%.l %2,%0\;eor%.l %1,%R0";
     }
-  return \"eor%.l %2,%0\;eor%.l %R2,%R0\";
-}")
+  return "eor%.l %2,%0\;eor%.l %R2,%R0";
+})
 
 (define_expand "xorsi3"
   [(set (match_operand:SI 0 "nonimmediate_operand" "")
        (xor:SI (match_operand:SI 1 "general_operand" "%0,0")
                 (match_operand:SI 2 "general_operand" "di,dKT")))]
 
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   return output_xorsi3 (operands);
-}")
+})
 
 (define_insn "xorsi3_5200"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=dm,d")
        (xor:SI (match_operand:SI 1 "general_operand" "%0,0")
                (match_operand:SI 2 "general_operand" "d,Ks")))]
-  "TARGET_5200"
-  "eor%.l %2,%0")
+  "TARGET_COLDFIRE"
+{
+  return output_xorsi3 (operands);
+})
 
 (define_insn "xorhi3"
   [(set (match_operand:HI 0 "nonimmediate_operand" "=dm")
        (xor:HI (match_operand:HI 1 "general_operand" "%0")
                (match_operand:HI 2 "general_operand" "dn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "eor%.w %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+dm"))
        (xor:HI (match_dup 0)
                (match_operand:HI 1 "general_operand" "dn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "eor%.w %1,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+dm"))
        (xor:HI (match_operand:HI 1 "general_operand" "dn")
                (match_dup 0)))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "eor%.w %1,%0")
 
 (define_insn "xorqi3"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=dm")
        (xor:QI (match_operand:QI 1 "general_operand" "%0")
                (match_operand:QI 2 "general_operand" "dn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "eor%.b %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+dm"))
        (xor:QI (match_dup 0)
                (match_operand:QI 1 "general_operand" "dn")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "eor%.b %1,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+dm"))
        (xor:QI (match_operand:QI 1 "general_operand" "dn")
                (match_dup 0)))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "eor%.b %1,%0")
 \f
 ;; negation instructions
   [(set (match_operand:DI 0 "nonimmediate_operand" "")
        (neg:DI (match_operand:DI 1 "general_operand" "")))]
   ""
-  "
 {
-  if (TARGET_5200)
+  if (TARGET_COLDFIRE)
     emit_insn (gen_negdi2_5200 (operands[0], operands[1]));
   else
     emit_insn (gen_negdi2_internal (operands[0], operands[1]));
   DONE;
-}")
+})
 
 (define_insn "negdi2_internal"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=<,do,!*a")
        (neg:DI (match_operand:DI 1 "general_operand" "0,0,0")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (which_alternative == 0)
-    return \"neg%.l %0\;negx%.l %0\";
+    return "neg%.l %0\;negx%.l %0";
   if (GET_CODE (operands[0]) == REG)
     operands[1] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   else
     operands[1] = adjust_address (operands[0], SImode, 4);
   if (ADDRESS_REG_P (operands[0]))
-    return \"exg %/d0,%1\;neg%.l %/d0\;exg %/d0,%1\;exg %/d0,%0\;negx%.l %/d0\;exg %/d0,%0\";
+    return "exg %/d0,%1\;neg%.l %/d0\;exg %/d0,%1\;exg %/d0,%0\;negx%.l %/d0\;exg %/d0,%0";
   else
-    return \"neg%.l %1\;negx%.l %0\";
-} ")
+    return "neg%.l %1\;negx%.l %0";
+})
 
 (define_insn "negdi2_5200"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=d")
        (neg:DI (match_operand:DI 1 "general_operand" "0")))]
-  "TARGET_5200"
-  "*
+  "TARGET_COLDFIRE"
 {
   operands[1] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-  return \"neg%.l %1\;negx%.l %0\";
-} ")
+  return "neg%.l %1\;negx%.l %0";
+})
 
 (define_expand "negsi2"
   [(set (match_operand:SI 0 "nonimmediate_operand" "")
        (neg:SI (match_operand:SI 1 "general_operand" "")))]
   ""
-  "
 {
-  if (TARGET_5200)
+  if (TARGET_COLDFIRE)
     emit_insn (gen_negsi2_5200 (operands[0], operands[1]));
   else
     emit_insn (gen_negsi2_internal (operands[0], operands[1]));
   DONE;
-}")
+})
 
 (define_insn "negsi2_internal"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=dm")
        (neg:SI (match_operand:SI 1 "general_operand" "0")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "neg%.l %0")
 
 (define_insn "negsi2_5200"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (neg:SI (match_operand:SI 1 "general_operand" "0")))]
-  "TARGET_5200"
+  "TARGET_COLDFIRE"
   "neg%.l %0")
 
 (define_insn "neghi2"
   [(set (match_operand:HI 0 "nonimmediate_operand" "=dm")
        (neg:HI (match_operand:HI 1 "general_operand" "0")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "neg%.w %0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+dm"))
        (neg:HI (match_dup 0)))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "neg%.w %0")
 
 (define_insn "negqi2"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=dm")
        (neg:QI (match_operand:QI 1 "general_operand" "0")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "neg%.b %0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+dm"))
        (neg:QI (match_dup 0)))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "neg%.b %0")
 
 ;; If using software floating point, just flip the sign bit.
   [(set (match_operand:SF 0 "nonimmediate_operand" "")
        (neg:SF (match_operand:SF 1 "general_operand" "")))]
   ""
-  "
 {
-  if (!TARGET_68881)
+  if (!TARGET_HARD_FLOAT)
     {
       rtx result;
       rtx target;
       target = operand_subword_force (operands[0], 0, SFmode);
       result = expand_binop (SImode, xor_optab,
                             operand_subword_force (operands[1], 0, SFmode),
-                            GEN_INT (0x80000000), target, 0, OPTAB_WIDEN);
-      if (result == 0)
-       abort ();
+                            GEN_INT (-2147483647 - 1), target, 0, OPTAB_WIDEN);
+      gcc_assert (result);
 
       if (result != target)
        emit_move_insn (result, target);
       emit_move_insn (operands[0], operands[0]);
       DONE;
     }
-}")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f,d")
-       (neg:SF (match_operand:SF 1 "general_operand" "fdmF,0")))]
-  "TARGET_68881"
-  "*
-{
-  if (DATA_REG_P (operands[0]))
-    {
-      operands[1] = GEN_INT (31);
-      return \"bchg %1,%0\";
-    }
-  if (REG_P (operands[1]) && ! DATA_REG_P (operands[1]))
-    return \"f%$neg%.x %1,%0\";
-  return \"f%$neg%.s %f1,%0\";
-}")
+})
 
 (define_expand "negdf2"
   [(set (match_operand:DF 0 "nonimmediate_operand" "")
        (neg:DF (match_operand:DF 1 "general_operand" "")))]
   ""
-  "
 {
-  if (!TARGET_68881)
+  if (!TARGET_HARD_FLOAT)
     {
       rtx result;
       rtx target;
       target = operand_subword (operands[0], 0, 1, DFmode);
       result = expand_binop (SImode, xor_optab,
                             operand_subword_force (operands[1], 0, DFmode),
-                            GEN_INT (0x80000000), target, 0, OPTAB_WIDEN);
-      if (result == 0)
-       abort ();
+                            GEN_INT (-2147483647 - 1), target, 0, OPTAB_WIDEN);
+      gcc_assert (result);
 
       if (result != target)
        emit_move_insn (result, target);
       emit_no_conflict_block (insns, operands[0], operands[1], 0, 0);
       DONE;
     }
-}")
+})
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f,d")
-       (neg:DF (match_operand:DF 1 "general_operand" "fmF,0")))]
-  "TARGET_68881"
-  "*
-{
-  if (DATA_REG_P (operands[0]))
+(define_expand "negxf2"
+  [(set (match_operand:XF 0 "nonimmediate_operand" "")
+       (neg:XF (match_operand:XF 1 "nonimmediate_operand" "")))]
+  ""
+{
+  if (!TARGET_68881)
+    {
+      rtx result;
+      rtx target;
+      rtx insns;
+
+      start_sequence ();
+      target = operand_subword (operands[0], 0, 1, XFmode);
+      result = expand_binop (SImode, xor_optab,
+                            operand_subword_force (operands[1], 0, XFmode),
+                            GEN_INT (-2147483647 - 1), target, 0, OPTAB_WIDEN);
+      gcc_assert (result);
+
+      if (result != target)
+       emit_move_insn (result, target);
+
+      emit_move_insn (operand_subword (operands[0], 1, 1, XFmode),
+                     operand_subword_force (operands[1], 1, XFmode));
+      emit_move_insn (operand_subword (operands[0], 2, 1, XFmode),
+                     operand_subword_force (operands[1], 2, XFmode));
+
+      insns = get_insns ();
+      end_sequence ();
+
+      emit_no_conflict_block (insns, operands[0], operands[1], 0, 0);
+      DONE;
+    }
+})
+
+(define_insn "neg<mode>2_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f,d")
+       (neg:FP (match_operand:FP 1 "general_operand" "f<FP:dreg>m<FP:const>,0")))]
+  "TARGET_68881"
+{
+  if (DATA_REG_P (operands[0]))
+    {
+      operands[1] = GEN_INT (31);
+      return "bchg %1,%0";
+    }
+  if (FP_REG_P (operands[1]))
+    return "f<FP:round>neg%.x %1,%0";
+  return "f<FP:round>neg%.<FP:prec> %f1,%0";
+})
+
+(define_insn "neg<mode>2_cf"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f,d")
+       (neg:FP (match_operand:FP 1 "general_operand" "f<FP:dreg><Q>U,0")))]
+  "TARGET_COLDFIRE_FPU"
+{
+  if (DATA_REG_P (operands[0]))
     {
       operands[1] = GEN_INT (31);
-      return \"bchg %1,%0\";
+      return "bchg %1,%0";
     }
-  if (REG_P (operands[1]) && ! DATA_REG_P (operands[1]))
-    return \"f%&neg%.x %1,%0\";
-  return \"f%&neg%.d %f1,%0\";
-}")
+  if (FP_REG_P (operands[1]))
+    return "f<FP:prec>neg%.d %1,%0";
+  return "f<FP:prec>neg%.<FP:prec> %1,%0";
+})
 \f
 ;; Sqrt instruction for the 68881
 
-(define_insn "sqrtsf2"
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (sqrt:SF (match_operand:SF 1 "general_operand" "fm")))]
+(define_expand "sqrt<mode>2"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "")
+       (sqrt:FP (match_operand:FP 1 "general_operand" "")))]
+  "TARGET_HARD_FLOAT"
+  "")
+
+(define_insn "sqrt<mode>2_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (sqrt:FP (match_operand:FP 1 "general_operand" "f<FP:dreg>m")))]
   "TARGET_68881"
-  "*
 {
   if (FP_REG_P (operands[1]))
-    return \"f%$sqrt%.x %1,%0\";
-  else
-    return \"f%$sqrt%.s %1,%0\";
-}")
+    return "f<FP:round>sqrt%.x %1,%0";
+  return "f<FP:round>sqrt%.<FP:prec> %1,%0";
+})
 
-(define_insn "sqrtdf2"
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (sqrt:DF (match_operand:DF 1 "general_operand" "fm")))]
-  "TARGET_68881"
-  "*
+(define_insn "sqrt<mode>2_cf"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (sqrt:FP (match_operand:FP 1 "general_operand" "f<FP:dreg><Q>U")))]
+  "TARGET_COLDFIRE_FPU"
 {
   if (FP_REG_P (operands[1]))
-    return \"f%&sqrt%.x %1,%0\";
-  else
-    return \"f%&sqrt%.d %1,%0\";
-}")
-
+    return "f<FP:prec>sqrt%.d %1,%0";
+  return "f<FP:prec>sqrt%.<FP:prec> %1,%0";
+})
 ;; Absolute value instructions
 ;; If using software floating point, just zero the sign bit.
 
   [(set (match_operand:SF 0 "nonimmediate_operand" "")
        (abs:SF (match_operand:SF 1 "general_operand" "")))]
   ""
-  "
 {
-  if (!TARGET_68881)
+  if (!TARGET_HARD_FLOAT)
     {
       rtx result;
       rtx target;
       result = expand_binop (SImode, and_optab,
                             operand_subword_force (operands[1], 0, SFmode),
                             GEN_INT (0x7fffffff), target, 0, OPTAB_WIDEN);
-      if (result == 0)
-       abort ();
+      gcc_assert (result);
 
       if (result != target)
        emit_move_insn (result, target);
       emit_move_insn (operands[0], operands[0]);
       DONE;
     }
-}")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (abs:SF (match_operand:SF 1 "general_operand" "fdmF")))]
-  "TARGET_68881"
-  "*
-{
-  if (REG_P (operands[1]) && ! DATA_REG_P (operands[1]))
-    return \"f%$abs%.x %1,%0\";
-  return \"f%$abs%.s %f1,%0\";
-}")
+})
 
 (define_expand "absdf2"
   [(set (match_operand:DF 0 "nonimmediate_operand" "")
        (abs:DF (match_operand:DF 1 "general_operand" "")))]
   ""
-  "
 {
-  if (!TARGET_68881)
+  if (!TARGET_HARD_FLOAT)
     {
       rtx result;
       rtx target;
       result = expand_binop (SImode, and_optab,
                             operand_subword_force (operands[1], 0, DFmode),
                             GEN_INT (0x7fffffff), target, 0, OPTAB_WIDEN);
-      if (result == 0)
-       abort ();
+      gcc_assert (result);
 
       if (result != target)
        emit_move_insn (result, target);
       emit_no_conflict_block (insns, operands[0], operands[1], 0, 0);
       DONE;
     }
-}")
+})
 
-(define_insn ""
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (abs:DF (match_operand:DF 1 "general_operand" "fmF")))]
+(define_expand "absxf2"
+  [(set (match_operand:XF 0 "nonimmediate_operand" "")
+       (abs:XF (match_operand:XF 1 "nonimmediate_operand" "")))]
+  ""
+{
+  if (!TARGET_68881)
+    {
+      rtx result;
+      rtx target;
+      rtx insns;
+
+      start_sequence ();
+      target = operand_subword (operands[0], 0, 1, XFmode);
+      result = expand_binop (SImode, and_optab,
+                            operand_subword_force (operands[1], 0, XFmode),
+                            GEN_INT (0x7fffffff), target, 0, OPTAB_WIDEN);
+      gcc_assert (result);
+
+      if (result != target)
+       emit_move_insn (result, target);
+
+      emit_move_insn (operand_subword (operands[0], 1, 1, XFmode),
+                     operand_subword_force (operands[1], 1, XFmode));
+      emit_move_insn (operand_subword (operands[0], 2, 1, XFmode),
+                     operand_subword_force (operands[1], 2, XFmode));
+
+      insns = get_insns ();
+      end_sequence ();
+
+      emit_no_conflict_block (insns, operands[0], operands[1], 0, 0);
+      DONE;
+    }
+})
+
+(define_insn "abs<mode>2_68881"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f,d")
+       (abs:FP (match_operand:FP 1 "general_operand" "f<FP:dreg>m<FP:const>,0")))]
   "TARGET_68881"
-  "*
 {
-  if (REG_P (operands[1]) && ! DATA_REG_P (operands[1]))
-    return \"f%&abs%.x %1,%0\";
-  return \"f%&abs%.d %f1,%0\";
-}")
+  if (DATA_REG_P (operands[0]))
+    {
+      operands[1] = GEN_INT (31);
+      return "bclr %1,%0";
+    }
+  if (FP_REG_P (operands[1]))
+    return "f<FP:round>abs%.x %1,%0";
+  return "f<FP:round>abs%.<FP:prec> %f1,%0";
+})
+
+(define_insn "abs<mode>2_cf"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f,d")
+       (abs:FP (match_operand:FP 1 "general_operand" "f<FP:dreg><Q>U,0")))]
+  "TARGET_COLDFIRE_FPU"
+{
+  if (DATA_REG_P (operands[0]))
+    {
+      operands[1] = GEN_INT (31);
+      return "bclr %1,%0";
+    }
+  if (FP_REG_P (operands[1]))
+    return "f<FP:prec>abs%.d %1,%0";
+  return "f<FP:prec>abs%.<FP:prec> %1,%0";
+})
 \f
 ;; one complement instructions
 
 (define_insn "one_cmpldi2"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=dm")
        (not:DI (match_operand:DI 1 "general_operand" "0")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   CC_STATUS_INIT;
   if (GET_CODE (operands[0]) == REG)
     operands[1] = operands[0];
   else
     operands[1] = adjust_address (operands[0], SImode, 4);
-  return \"not%.l %1\;not%.l %0\";
-}")
+  return "not%.l %1\;not%.l %0";
+})
 
 (define_expand "one_cmplsi2"
   [(set (match_operand:SI 0 "nonimmediate_operand" "")
        (not:SI (match_operand:SI 1 "general_operand" "")))]
   ""
-  "
 {
-  if (TARGET_5200)
+  if (TARGET_COLDFIRE)
     emit_insn (gen_one_cmplsi2_5200 (operands[0], operands[1]));
   else
     emit_insn (gen_one_cmplsi2_internal (operands[0], operands[1]));
   DONE;
-}")
+})
 
 (define_insn "one_cmplsi2_internal"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=dm")
        (not:SI (match_operand:SI 1 "general_operand" "0")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "not%.l %0")
 
 (define_insn "one_cmplsi2_5200"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (not:SI (match_operand:SI 1 "general_operand" "0")))]
-  "TARGET_5200"
+  "TARGET_COLDFIRE"
   "not%.l %0")
 
 (define_insn "one_cmplhi2"
   [(set (match_operand:HI 0 "nonimmediate_operand" "=dm")
        (not:HI (match_operand:HI 1 "general_operand" "0")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "not%.w %0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+dm"))
        (not:HI (match_dup 0)))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "not%.w %0")
 
 (define_insn "one_cmplqi2"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=dm")
        (not:QI (match_operand:QI 1 "general_operand" "0")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "not%.b %0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+dm"))
        (not:QI (match_dup 0)))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "not%.b %0")
 \f
 ;; arithmetic shift instructions
         [(match_operand:SI 1 "general_operand" "rm")])
       (const_int 32)))]
   ""
-  "*
 {
   CC_STATUS_INIT;
   if (GET_CODE (operands[0]) == REG)
   else
     operands[2] = adjust_address (operands[0], SImode, 4);
   if (ADDRESS_REG_P (operands[0]))
-    return \"move%.l %1,%0\;sub%.l %2,%2\";
+    return "move%.l %1,%0\;sub%.l %2,%2";
   else
-    return \"move%.l %1,%0\;clr%.l %2\";
-} ")
+    return "move%.l %1,%0\;clr%.l %2";
+})
 
 (define_insn "ashldi_sexthi"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=m,a*d")
         (const_int 32)))
     (clobber (match_scratch:SI 2 "=a,X"))]
   ""
-  "*
 {
   CC_STATUS_INIT;
   if (GET_CODE (operands[0]) == MEM)
     {
     if (GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
-      return \"clr%.l %0\;move%.w %1,%2\;move%.l %2,%0\";
+      return "clr%.l %0\;move%.w %1,%2\;move%.l %2,%0";
     else if (GET_CODE (XEXP (operands[0], 0)) == POST_INC)
-      return \"move%.w %1,%2\;move%.l %2,%0\;clr%.l %0\";
+      return "move%.w %1,%2\;move%.l %2,%0\;clr%.l %0";
     else
       {
        operands[3] = adjust_address (operands[0], SImode, 4);
-       return \"move%.w %1,%2\;move%.l %2,%0\;clr%.l %3\";
+       return "move%.w %1,%2\;move%.l %2,%0\;clr%.l %3";
       }
     }
   else if (DATA_REG_P (operands[0]))
-    return \"move%.w %1,%0\;ext%.l %0\;clr%.l %R0\";
+    return "move%.w %1,%0\;ext%.l %0\;clr%.l %R0";
   else
-    return \"move%.w %1,%0\;sub%.l %R0,%R0\";
-} ")
+    return "move%.w %1,%0\;sub%.l %R0,%R0";
+})
 
 (define_insn "ashldi_const32"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=rm")
        (ashift:DI (match_operand:DI 1 "general_operand" "ro")
                     (const_int 32)))]
   ""
-  "*
 {
   CC_STATUS_INIT;
   if (GET_CODE (operands[1]) == REG)
   if (GET_CODE (operands[0]) == REG)
     operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   else if (GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
-    return \"clr%.l %0\;move%.l %3,%0\";
+    return "clr%.l %0\;move%.l %3,%0";
   else if (GET_CODE (XEXP (operands[0], 0)) == POST_INC)
-    return \"move%.l %3,%0\;clr%.l %0\";
+    return "move%.l %3,%0\;clr%.l %0";
   else
     operands[2] = adjust_address (operands[0], SImode, 4);
   if (ADDRESS_REG_P (operands[2]))
-    return \"move%.l %3,%0\;sub%.l %2,%2\";
+    return "move%.l %3,%0\;sub%.l %2,%2";
   else
-    return \"move%.l %3,%0\;clr%.l %2\";
-} ")
+    return "move%.l %3,%0\;clr%.l %2";
+})
 
 ;; The predicate below must be general_operand, because ashldi3 allows that
 (define_insn "ashldi_const"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=d")
        (ashift:DI (match_operand:DI 1 "general_operand" "0")
                     (match_operand 2 "const_int_operand" "n")))]
-  "(!TARGET_5200
+  "(!TARGET_COLDFIRE
     && ((INTVAL (operands[2]) >= 1 && INTVAL (operands[2]) <= 3)
        || INTVAL (operands[2]) == 8 || INTVAL (operands[2]) == 16
        || (INTVAL (operands[2]) > 32 && INTVAL (operands[2]) <= 63)))"
-  "*
 {
   operands[1] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   if (INTVAL (operands[2]) == 1)
-    return \"add%.l %1,%1\;addx%.l %0,%0\";
+    return "add%.l %1,%1\;addx%.l %0,%0";
   else if (INTVAL (operands[2]) == 8)
-    return \"rol%.l %#8,%1\;rol%.l %#8,%0\;move%.b %1,%0\;clr%.b %1\";
+    return "rol%.l #8,%1\;rol%.l #8,%0\;move%.b %1,%0\;clr%.b %1";
   else if (INTVAL (operands[2]) == 16)
-    return \"swap %1\;swap %0\;move%.w %1,%0\;clr%.w %1\";
+    return "swap %1\;swap %0\;move%.w %1,%0\;clr%.w %1";
   else if (INTVAL (operands[2]) == 48)
-    return \"mov%.l %1,%0\;swap %0\;clr%.l %1\;clr%.w %0\";
+    return "mov%.l %1,%0\;swap %0\;clr%.l %1\;clr%.w %0";
   else if (INTVAL (operands[2]) == 2)
-    return \"add%.l %1,%1\;addx%.l %0,%0\;add%.l %1,%1\;addx%.l %0,%0\";
+    return "add%.l %1,%1\;addx%.l %0,%0\;add%.l %1,%1\;addx%.l %0,%0";
   else if (INTVAL (operands[2]) == 3)
-    return \"add%.l %1,%1\;addx%.l %0,%0\;add%.l %1,%1\;addx%.l %0,%0\;add%.l %1,%1\;addx%.l %0,%0\";
+    return "add%.l %1,%1\;addx%.l %0,%0\;add%.l %1,%1\;addx%.l %0,%0\;add%.l %1,%1\;addx%.l %0,%0";
   else /* 32 < INTVAL (operands[2]) <= 63 */
     {
       operands[2] = GEN_INT (INTVAL (operands[2]) - 32);
-      output_asm_insn (INTVAL (operands[2]) <= 8 ? \"asl%.l %2,%1\" :
-                       \"moveq %2,%0\;asl%.l %0,%1\", operands);
-      return \"mov%.l %1,%0\;moveq %#0,%1\";
+      output_asm_insn (INTVAL (operands[2]) <= 8 ? "asl%.l %2,%1" :
+                       "moveq %2,%0\;asl%.l %0,%1", operands);
+      return "mov%.l %1,%0\;moveq #0,%1";
     }
-} ")
+})
 
 (define_expand "ashldi3"
   [(set (match_operand:DI 0 "nonimmediate_operand" "")
        (ashift:DI (match_operand:DI 1 "general_operand" "")
                     (match_operand 2 "const_int_operand" "")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "
 {
   /* ???  This is a named pattern like this is not allowed to FAIL based
   [(set (match_operand:SI 0 "register_operand" "=d")
        (ashift:SI (match_operand:SI 1 "register_operand" "0")
                   (const_int 16)))]
-  "!TARGET_68060"
-  "*
+  "!TUNE_68060"
 {
   CC_STATUS_INIT;
-  return \"swap %0\;clr%.w %0\";
-}")
+  return "swap %0\;clr%.w %0";
+})
 
 ;; ashift patterns : use lsl instead of asl, because lsl always clears the
 ;; overflow bit, so we must not set CC_NO_OVERFLOW.
   [(set (match_operand:SI 0 "register_operand" "=d")
        (ashift:SI (match_operand:SI 1 "register_operand" "0")
                   (match_operand:SI 2 "const_int_operand" "n")))]
-  "(! TARGET_68020 && !TARGET_5200
-    && INTVAL (operands[2]) > 16 && INTVAL (operands[2]) <= 24)"
-  "*
+  "TUNE_68000_10
+   && INTVAL (operands[2]) > 16
+   && INTVAL (operands[2]) <= 24"
 {
   CC_STATUS_INIT;
 
   operands[2] = GEN_INT (INTVAL (operands[2]) - 16);
-  return \"lsl%.w %2,%0\;swap %0\;clr%.w %0\";
-}")
+  return "lsl%.w %2,%0\;swap %0\;clr%.w %0";
+})
 
 (define_insn "ashlsi3"
   [(set (match_operand:SI 0 "register_operand" "=d")
        (ashift:SI (match_operand:SI 1 "register_operand" "0")
                   (match_operand:SI 2 "general_operand" "dI")))]
   ""
-  "*
 {
   if (operands[2] == const1_rtx)
     {
       cc_status.flags = CC_NO_OVERFLOW;
-      return \"add%.l %0,%0\";
+      return "add%.l %0,%0";
     }
-  return \"lsl%.l %2,%0\";
-}")
+  return "lsl%.l %2,%0";
+})
 
 (define_insn "ashlhi3"
   [(set (match_operand:HI 0 "register_operand" "=d")
        (ashift:HI (match_operand:HI 1 "register_operand" "0")
                   (match_operand:HI 2 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "lsl%.w %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "register_operand" "+d"))
        (ashift:HI (match_dup 0)
                   (match_operand:HI 1 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "lsl%.w %1,%0")
 
 (define_insn "ashlqi3"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (ashift:QI (match_operand:QI 1 "register_operand" "0")
                   (match_operand:QI 2 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "lsl%.b %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "register_operand" "+d"))
        (ashift:QI (match_dup 0)
                   (match_operand:QI 1 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "lsl%.b %1,%0")
 
 ;; On most 68k models, this makes faster code in a special case.
   [(set (match_operand:SI 0 "register_operand" "=d")
        (ashiftrt:SI (match_operand:SI 1 "register_operand" "0")
                     (const_int 16)))]
-  "!TARGET_68060"
+  "!TUNE_68060"
   "swap %0\;ext%.l %0")
 
 ;; On the 68000, this makes faster code in a special case.
   [(set (match_operand:SI 0 "register_operand" "=d")
        (ashiftrt:SI (match_operand:SI 1 "register_operand" "0")
                     (match_operand:SI 2 "const_int_operand" "n")))]
-  "(! TARGET_68020 && !TARGET_5200
-    && INTVAL (operands[2]) > 16 && INTVAL (operands[2]) <= 24)"
-  "*
+  "TUNE_68000_10
+   && INTVAL (operands[2]) > 16
+   && INTVAL (operands[2]) <= 24"
 {
   operands[2] = GEN_INT (INTVAL (operands[2]) - 16);
-  return \"swap %0\;asr%.w %2,%0\;ext%.l %0\";
-}")
+  return "swap %0\;asr%.w %2,%0\;ext%.l %0";
+})
 
 (define_insn "subreghi1ashrdi_const32"
   [(set (match_operand:HI 0 "nonimmediate_operand" "=rm")
     (subreg:HI (ashiftrt:DI (match_operand:DI 1 "general_operand" "ro")
             (const_int 32)) 6))]
   ""
-  "*
 {
   if (GET_CODE (operands[1]) != REG)
     operands[1] = adjust_address (operands[1], HImode, 2);
-  return \"move%.w %1,%0\";
-} ")
+  return "move%.w %1,%0";
+})
 
 (define_insn "subregsi1ashrdi_const32"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=rm")
     (subreg:SI (ashiftrt:DI (match_operand:DI 1 "general_operand" "ro")
             (const_int 32)) 4))]
   ""
-  "*
 {
-  return \"move%.l %1,%0\";
-} ")
+  return "move%.l %1,%0";
+})
 
 (define_insn "ashrdi_const32"
-  [(set (match_operand:DI 0 "register_operand" "=d")
-       (ashiftrt:DI (match_operand:DI 1 "general_operand" "ro")
-                    (const_int 32)))]
-  ""
-  "*
-{
-  CC_STATUS_INIT;
-  operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-  if (TARGET_68020)
-    return \"move%.l %1,%2\;smi %0\;extb%.l %0\";
-  else
-    return \"move%.l %1,%2\;smi %0\;ext%.w %0\;ext%.l %0\";
-} ")
-
-(define_insn "ashrdi_const32_mem"
-  [(set (match_operand:DI 0 "nonimmediate_operand" "=o,<")
-       (ashiftrt:DI (match_operand:DI 1 "general_operand" "ro,ro")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=d,o,<")
+       (ashiftrt:DI (match_operand:DI 1 "general_operand" "ro,ro,ro")
                     (const_int 32)))
-   (clobber (match_scratch:SI 2 "=d,d"))]
+   (clobber (match_scratch:SI 2 "=X,d,d"))]
   ""
-  "*
 {
   CC_STATUS_INIT;
-  if (which_alternative == 1)
-    operands[3] = operands[0];
-  else
-    operands[3] = adjust_address (operands[0], SImode, 4);
-  if (TARGET_68020)
-    return \"move%.l %1,%3\;smi %2\;extb%.l %2\;move%.l %2,%0\";
+  if (which_alternative == 0)
+    {
+      operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
+      if (TARGET_68020)
+       return "move%.l %1,%2\;smi %0\;extb%.l %0";
+      else
+       return "move%.l %1,%2\;smi %0\;ext%.w %0\;ext%.l %0";
+    }
   else
-    return \"move%.l %1,%3\;smi %2\;ext%.w %2\;ext%.l %2\;move%.l %2,%0\";
-} ")
+    {
+      if (which_alternative == 2)
+       operands[3] = operands[0];
+      else if (which_alternative == 1)
+       operands[3] = adjust_address (operands[0], SImode, 4);
+      if (TARGET_68020)
+       return "move%.l %1,%3\;smi %2\;extb%.l %2\;move%.l %2,%0";
+      else
+       return "move%.l %1,%3\;smi %2\;ext%.w %2\;ext%.l %2\;move%.l %2,%0";
+    }
+})
 
 ;; The predicate below must be general_operand, because ashrdi3 allows that
 (define_insn "ashrdi_const"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=d")
        (ashiftrt:DI (match_operand:DI 1 "general_operand" "0")
-                    (match_operand 2 "const_int_operand" "n")))]
-  "(!TARGET_5200 
+                    (match_operand 2 "const_int_operand" "n")))
+   (clobber (match_scratch:SI 3 "=X"))]
+  "(!TARGET_COLDFIRE 
     && ((INTVAL (operands[2]) >= 1 && INTVAL (operands[2]) <= 3)
        || INTVAL (operands[2]) == 8 || INTVAL (operands[2]) == 16
        || INTVAL (operands[2]) == 31
        || (INTVAL (operands[2]) > 32 && INTVAL (operands[2]) <= 63)))"
-  "*
 {
   operands[1] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   if (INTVAL (operands[2]) == 63)
-    return \"add%.l %0,%0\;subx%.l %0,%0\;move%.l %0,%1\";
+    return "add%.l %0,%0\;subx%.l %0,%0\;move%.l %0,%1";
   CC_STATUS_INIT;
   if (INTVAL (operands[2]) == 1)
-    return \"asr%.l %#1,%0\;roxr%.l %#1,%1\";
+    return "asr%.l #1,%0\;roxr%.l #1,%1";
   else if (INTVAL (operands[2]) == 8)
-    return \"move%.b %0,%1\;asr%.l %#8,%0\;ror%.l %#8,%1\";
+    return "move%.b %0,%1\;asr%.l #8,%0\;ror%.l #8,%1";
   else if (INTVAL (operands[2]) == 16)
-    return \"move%.w %0,%1\;swap %0\;ext%.l %0\;swap %1\";
+    return "move%.w %0,%1\;swap %0\;ext%.l %0\;swap %1";
   else if (INTVAL (operands[2]) == 48)
-    return \"swap %0\;ext%.l %0\;move%.l %0,%1\;smi %0\;ext%.w %0\";
+    return "swap %0\;ext%.l %0\;move%.l %0,%1\;smi %0\;ext%.w %0";
   else if (INTVAL (operands[2]) == 31)
-    return \"add%.l %1,%1\;addx%.l %0,%0\;move%.l %0,%1\;subx%.l %0,%0\";
+    return "add%.l %1,%1\;addx%.l %0,%0\;move%.l %0,%1\;subx%.l %0,%0";
   else if (INTVAL (operands[2]) == 2)
-    return \"asr%.l %#1,%0\;roxr%.l %#1,%1\;asr%.l %#1,%0\;roxr%.l %#1,%1\";
+    return "asr%.l #1,%0\;roxr%.l #1,%1\;asr%.l #1,%0\;roxr%.l #1,%1";
   else if (INTVAL (operands[2]) == 3)
-    return \"asr%.l %#1,%0\;roxr%.l %#1,%1\;asr%.l %#1,%0\;roxr%.l %#1,%1\;asr%.l %#1,%0\;roxr%.l %#1,%1\";
+    return "asr%.l #1,%0\;roxr%.l #1,%1\;asr%.l #1,%0\;roxr%.l #1,%1\;asr%.l #1,%0\;roxr%.l #1,%1";
   else /* 32 < INTVAL (operands[2]) <= 63 */
     {
       operands[2] = GEN_INT (INTVAL (operands[2]) - 32);
-      output_asm_insn (INTVAL (operands[2]) <= 8 ? \"asr%.l %2,%0\" :
-                       \"moveq %2,%1\;asr%.l %1,%0\", operands);
-      output_asm_insn (\"mov%.l %0,%1\;smi %0\", operands);
-      return INTVAL (operands[2]) >= 15 ? \"ext%.w %d0\" :
-            TARGET_68020 ? \"extb%.l %0\" : \"ext%.w %0\;ext%.l %0\";
+      output_asm_insn (INTVAL (operands[2]) <= 8 ? "asr%.l %2,%0" :
+                       "moveq %2,%1\;asr%.l %1,%0", operands);
+      output_asm_insn ("mov%.l %0,%1\;smi %0", operands);
+      return INTVAL (operands[2]) >= 15 ? "ext%.w %d0" :
+            TARGET_68020 ? "extb%.l %0" : "ext%.w %0\;ext%.l %0";
     }
-} ")
+})
 
 (define_expand "ashrdi3"
-  [(set (match_operand:DI 0 "nonimmediate_operand" "")
-       (ashiftrt:DI (match_operand:DI 1 "general_operand" "")
-                    (match_operand 2 "const_int_operand" "")))]
-  "!TARGET_5200"
+  [(parallel [(set (match_operand:DI 0 "nonimmediate_operand" "")
+                  (ashiftrt:DI (match_operand:DI 1 "general_operand" "")
+                               (match_operand 2 "const_int_operand" "")))
+             (clobber (match_scratch:SI 3 ""))])]
+  "!TARGET_COLDFIRE"
   "
 {
   /* ???  This is a named pattern like this is not allowed to FAIL based
          && INTVAL (operands[2]) != 8 && INTVAL (operands[2]) != 16
          && (INTVAL (operands[2]) < 31 || INTVAL (operands[2]) > 63)))
     FAIL;
+  operands[3] = gen_rtx_SCRATCH (SImode);
 } ")
 
 ;; On all 68k models, this makes faster code in a special case.
        (ashiftrt:SI (match_operand:SI 1 "register_operand" "0")
                     (const_int 31)))]
   ""
-  "*
 {
-  return \"add%.l %0,%0\;subx%.l %0,%0\";
-}")
+  return "add%.l %0,%0\;subx%.l %0,%0";
+})
 
 (define_insn "ashrsi3"
   [(set (match_operand:SI 0 "register_operand" "=d")
   [(set (match_operand:HI 0 "register_operand" "=d")
        (ashiftrt:HI (match_operand:HI 1 "register_operand" "0")
                     (match_operand:HI 2 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "asr%.w %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "register_operand" "+d"))
        (ashiftrt:HI (match_dup 0)
                     (match_operand:HI 1 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "asr%.w %1,%0")
 
 (define_insn "ashrqi3"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (ashiftrt:QI (match_operand:QI 1 "register_operand" "0")
                     (match_operand:QI 2 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "asr%.b %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "register_operand" "+d"))
        (ashiftrt:QI (match_dup 0)
                     (match_operand:QI 1 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "asr%.b %1,%0")
 \f
 ;; logical shift instructions
 ;;            (subreg:SI (lshiftrt:DI (match_dup 0)
 ;;                    (const_int 32)) 4))]
 ;;  ""
-;;  "*
 ;;{
-;;  return \"move%.l %0,%1\";
-;;} ")
+;;  return "move%.l %0,%1";
+;;})
 ;;
 ;;(define_insn ""
 ;;        [(set (cc0)
 ;;            (lshiftrt:DI (match_dup 0)
 ;;                (const_int 32)))]
 ;;  ""
-;;  "*
 ;;{
 ;;  if (GET_CODE (operands[1]) == REG)
 ;;    operands[2] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
 ;;  else
 ;;    operands[2] = adjust_address (operands[1], SImode, 4);
-;;  return \"move%.l %0,%2\;clr%.l %1\";
-;;} ")
+;;  return "move%.l %0,%2\;clr%.l %1";
+;;})
 
 (define_insn "subreg1lshrdi_const32"
   [(set (match_operand:SI 0 "nonimmediate_operand" "=rm")
     (subreg:SI (lshiftrt:DI (match_operand:DI 1 "general_operand" "ro")
             (const_int 32)) 4))]
   ""
-  "*
 {
-  return \"move%.l %1,%0\";
-} ")
+  return "move%.l %1,%0";
+})
 
 (define_insn "lshrdi_const32"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=ro,<,>")
        (lshiftrt:DI (match_operand:DI 1 "general_operand" "ro,ro,ro")
                     (const_int 32)))]
   ""
-  "*
 {
   CC_STATUS_INIT;
   if (which_alternative == 1)
-    return \"move%.l %1,%0\;clr%.l %0\";
+    return "move%.l %1,%0\;clr%.l %0";
   if (which_alternative == 2)
-    return \"clr%.l %0\;move%.l %1,%0\";
+    return "clr%.l %0\;move%.l %1,%0";
   if (GET_CODE (operands[0]) == REG)
     operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   else
   else
     operands[3] = adjust_address (operands[1], SImode, 4);
   if (ADDRESS_REG_P (operands[0]))
-    return \"move%.l %1,%2\;sub%.l %0,%0\";
+    return "move%.l %1,%2\;sub%.l %0,%0";
   else
-    return \"move%.l %1,%2\;clr%.l %0\";
-} ")
+    return "move%.l %1,%2\;clr%.l %0";
+})
 
 ;; The predicate below must be general_operand, because lshrdi3 allows that
 (define_insn "lshrdi_const"
   [(set (match_operand:DI 0 "nonimmediate_operand" "=d")
        (lshiftrt:DI (match_operand:DI 1 "general_operand" "0")
                     (match_operand 2 "const_int_operand" "n")))]
-  "(!TARGET_5200
+  "(!TARGET_COLDFIRE
     && ((INTVAL (operands[2]) >= 1 && INTVAL (operands[2]) <= 3)
         || INTVAL (operands[2]) == 8 || INTVAL (operands[2]) == 16
         || (INTVAL (operands[2]) > 32 && INTVAL (operands[2]) <= 63)))"
-  "*
 {
   operands[1] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   if (INTVAL (operands[2]) == 63)
-    return \"add%.l %0,%0\;clr%.l %0\;clr%.l %1\;addx%.l %1,%1\";
+    return "add%.l %0,%0\;clr%.l %0\;clr%.l %1\;addx%.l %1,%1";
   CC_STATUS_INIT;
   if (INTVAL (operands[2]) == 1)
-    return \"lsr%.l %#1,%0\;roxr%.l %#1,%1\";
+    return "lsr%.l #1,%0\;roxr%.l #1,%1";
   else if (INTVAL (operands[2]) == 8)
-    return \"move%.b %0,%1\;lsr%.l %#8,%0\;ror%.l %#8,%1\";
+    return "move%.b %0,%1\;lsr%.l #8,%0\;ror%.l #8,%1";
   else if (INTVAL (operands[2]) == 16)
-    return \"move%.w %0,%1\;clr%.w %0\;swap %1\;swap %0\";
+    return "move%.w %0,%1\;clr%.w %0\;swap %1\;swap %0";
   else if (INTVAL (operands[2]) == 48)
-    return \"move%.l %0,%1\;clr%.w %1\;clr%.l %0\;swap %1\";
+    return "move%.l %0,%1\;clr%.w %1\;clr%.l %0\;swap %1";
   else if (INTVAL (operands[2]) == 2)
-    return \"lsr%.l %#1,%0\;roxr%.l %#1,%1\;lsr%.l %#1,%0\;roxr%.l %#1,%1\";
+    return "lsr%.l #1,%0\;roxr%.l #1,%1\;lsr%.l #1,%0\;roxr%.l #1,%1";
   else if (INTVAL (operands[2]) == 3)
-    return \"lsr%.l %#1,%0\;roxr%.l %#1,%1\;lsr%.l %#1,%0\;roxr%.l %#1,%1\;lsr%.l %#1,%0\;roxr%.l %#1,%1\";
+    return "lsr%.l #1,%0\;roxr%.l #1,%1\;lsr%.l #1,%0\;roxr%.l #1,%1\;lsr%.l #1,%0\;roxr%.l #1,%1";
   else /* 32 < INTVAL (operands[2]) <= 63 */
     {
       operands[2] = GEN_INT (INTVAL (operands[2]) - 32);
-      output_asm_insn (INTVAL (operands[2]) <= 8 ? \"lsr%.l %2,%0\" :
-                       \"moveq %2,%1\;lsr%.l %1,%0\", operands);
-      return \"mov%.l %0,%1\;moveq %#0,%0\";
+      output_asm_insn (INTVAL (operands[2]) <= 8 ? "lsr%.l %2,%0" :
+                       "moveq %2,%1\;lsr%.l %1,%0", operands);
+      return "mov%.l %0,%1\;moveq #0,%0";
     }
-} ")
+})
 
 (define_expand "lshrdi3"
   [(set (match_operand:DI 0 "nonimmediate_operand" "")
        (lshiftrt:DI (match_operand:DI 1 "general_operand" "")
                     (match_operand 2 "const_int_operand" "")))]
-  "!TARGET_5200"
-  "
+  "!TARGET_COLDFIRE"
 {
   /* ???  This is a named pattern like this is not allowed to FAIL based
      on its operands.  */
          && INTVAL (operands[2]) != 8 && INTVAL (operands[2]) != 16
          && (INTVAL (operands[2]) < 32 || INTVAL (operands[2]) > 63)))
     FAIL;
-} ")
+})
 
 ;; On all 68k models, this makes faster code in a special case.
 
        (lshiftrt:SI (match_operand:SI 1 "register_operand" "0")
                     (const_int 31)))]
   ""
-  "*
 {
-  return \"add%.l %0,%0\;subx%.l %0,%0\;neg%.l %0\";
-}")
+  return "add%.l %0,%0\;subx%.l %0,%0\;neg%.l %0";
+})
 
 ;; On most 68k models, this makes faster code in a special case.
 
   [(set (match_operand:SI 0 "register_operand" "=d")
        (lshiftrt:SI (match_operand:SI 1 "register_operand" "0")
                     (const_int 16)))]
-  "!TARGET_68060"
-  "*
+  "!TUNE_68060"
 {
   CC_STATUS_INIT;
-  return \"clr%.w %0\;swap %0\";
-}")
+  return "clr%.w %0\;swap %0";
+})
 
 ;; On the 68000, this makes faster code in a special case.
 
   [(set (match_operand:SI 0 "register_operand" "=d")
        (lshiftrt:SI (match_operand:SI 1 "register_operand" "0")
                     (match_operand:SI 2 "const_int_operand" "n")))]
-  "(! TARGET_68020 && !TARGET_5200
-    && INTVAL (operands[2]) > 16 && INTVAL (operands[2]) <= 24)"
-  "*
+  "TUNE_68000_10
+   && INTVAL (operands[2]) > 16
+   && INTVAL (operands[2]) <= 24"
 {
   /* I think lsr%.w sets the CC properly.  */
   operands[2] = GEN_INT (INTVAL (operands[2]) - 16);
-  return \"clr%.w %0\;swap %0\;lsr%.w %2,%0\";
-}")
+  return "clr%.w %0\;swap %0\;lsr%.w %2,%0";
+})
 
 (define_insn "lshrsi3"
   [(set (match_operand:SI 0 "register_operand" "=d")
   [(set (match_operand:HI 0 "register_operand" "=d")
        (lshiftrt:HI (match_operand:HI 1 "register_operand" "0")
                     (match_operand:HI 2 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "lsr%.w %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "register_operand" "+d"))
        (lshiftrt:HI (match_dup 0)
                     (match_operand:HI 1 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "lsr%.w %1,%0")
 
 (define_insn "lshrqi3"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (lshiftrt:QI (match_operand:QI 1 "register_operand" "0")
                     (match_operand:QI 2 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "lsr%.b %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "register_operand" "+d"))
        (lshiftrt:QI (match_dup 0)
                     (match_operand:QI 1 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "lsr%.b %1,%0")
 \f
 ;; rotate instructions
   [(set (match_operand:SI 0 "register_operand" "=d")
        (rotate:SI (match_operand:SI 1 "register_operand" "0")
                   (match_operand:SI 2 "general_operand" "dINO")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) == 16)
-    return \"swap %0\";
+    return "swap %0";
   else if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) >= 16)
     {
       operands[2] = GEN_INT (32 - INTVAL (operands[2]));
-      return \"ror%.l %2,%0\";
+      return "ror%.l %2,%0";
     }
   else
-    return \"rol%.l %2,%0\";
-}")
+    return "rol%.l %2,%0";
+})
 
 (define_insn "rotlhi3"
   [(set (match_operand:HI 0 "register_operand" "=d")
        (rotate:HI (match_operand:HI 1 "register_operand" "0")
                   (match_operand:HI 2 "general_operand" "dIP")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) >= 8)
     {
       operands[2] = GEN_INT (16 - INTVAL (operands[2]));
-      return \"ror%.w %2,%0\";
+      return "ror%.w %2,%0";
     }
   else
-    return \"rol%.w %2,%0\";
-}")
+    return "rol%.w %2,%0";
+})
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "register_operand" "+d"))
        (rotate:HI (match_dup 0)
                   (match_operand:HI 1 "general_operand" "dIP")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) >= 8)
     {
       operands[2] = GEN_INT (16 - INTVAL (operands[2]));
-      return \"ror%.w %2,%0\";
+      return "ror%.w %2,%0";
     }
   else
-    return \"rol%.w %2,%0\";
-}")
+    return "rol%.w %2,%0";
+})
 
 (define_insn "rotlqi3"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (rotate:QI (match_operand:QI 1 "register_operand" "0")
                   (match_operand:QI 2 "general_operand" "dI")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) >= 4)
     {
       operands[2] = GEN_INT (8 - INTVAL (operands[2]));
-      return \"ror%.b %2,%0\";
+      return "ror%.b %2,%0";
     }
   else
-    return \"rol%.b %2,%0\";
-}")
+    return "rol%.b %2,%0";
+})
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "register_operand" "+d"))
        (rotate:QI (match_dup 0)
                   (match_operand:QI 1 "general_operand" "dI")))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) >= 4)
     {
       operands[2] = GEN_INT (8 - INTVAL (operands[2]));
-      return \"ror%.b %2,%0\";
+      return "ror%.b %2,%0";
     }
   else
-    return \"rol%.b %2,%0\";
-}")
+    return "rol%.b %2,%0";
+})
 
 (define_insn "rotrsi3"
   [(set (match_operand:SI 0 "register_operand" "=d")
        (rotatert:SI (match_operand:SI 1 "register_operand" "0")
                     (match_operand:SI 2 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "ror%.l %2,%0")
 
 (define_insn "rotrhi3"
   [(set (match_operand:HI 0 "register_operand" "=d")
        (rotatert:HI (match_operand:HI 1 "register_operand" "0")
                     (match_operand:HI 2 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "ror%.w %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:HI 0 "register_operand" "+d"))
        (rotatert:HI (match_dup 0)
                     (match_operand:HI 1 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "ror%.w %1,%0")
 
 (define_insn "rotrqi3"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (rotatert:QI (match_operand:QI 1 "register_operand" "0")
                     (match_operand:QI 2 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "ror%.b %2,%0")
 
 (define_insn ""
   [(set (strict_low_part (match_operand:QI 0 "register_operand" "+d"))
        (rotatert:QI (match_dup 0)
                     (match_operand:QI 1 "general_operand" "dI")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "ror%.b %1,%0")
 \f
 
                (match_operand:SI 1 "general_operand" "d")) 3)
        (match_dup 0)))]
   ""
-  "*
 {
   CC_STATUS_INIT;
-  return \"bset %1,%0\";
-}")
+  return "bset %1,%0";
+})
 
 ;; set bit, bit number is (sign/zero)_extended from HImode/QImode
 (define_insn ""
                [(match_operand 1 "general_operand" "d")])) 3)
        (match_dup 0)))]
   ""
-  "*
 {
   CC_STATUS_INIT;
-  return \"bset %1,%0\";
-}")
+  return "bset %1,%0";
+})
 
 ;; clear bit, bit number is int
 (define_insn "bclrmemqi"
            (match_operand:SI 1 "general_operand" "d")))
     (const_int 0))]
   ""
-  "*
 {
   CC_STATUS_INIT;
-  return \"bclr %1,%0\";
-}")
+  return "bclr %1,%0";
+})
 
 ;; clear bit, bit number is (sign/zero)_extended from HImode/QImode
 (define_insn ""
                [(match_operand 1 "general_operand" "d")])))
     (const_int 0))]
   ""
-  "*
 {
   CC_STATUS_INIT;
-  return \"bclr %1,%0\";
-}")
+  return "bclr %1,%0";
+})
 
 ;; Special cases of bit-field insns which we should
 ;; recognize in preference to the general case.
 ; alignment of structure members is specified.
 ;
 ; The move is allowed to be odd byte aligned, because that's still faster
-; than an odd byte aligned bit field instruction.
+; than an odd byte aligned bit-field instruction.
 ;
 (define_insn ""
   [(set (zero_extract:SI (match_operand:QI 0 "memory_operand" "+o")
   "TARGET_68020 && TARGET_BITFIELD
    && (INTVAL (operands[1]) % 8) == 0
    && ! mode_dependent_address_p (XEXP (operands[0], 0))"
-  "*
 {
   operands[0]
     = adjust_address (operands[0], SImode, INTVAL (operands[1]) / 8);
 
-  return \"move%.l %2,%0\";
-}")
+  return "move%.l %2,%0";
+})
 
 (define_insn ""
   [(set (zero_extract:SI (match_operand:SI 0 "register_operand" "+do")
    && INTVAL (operands[2]) % INTVAL (operands[1]) == 0
    && (GET_CODE (operands[0]) == REG
        || ! mode_dependent_address_p (XEXP (operands[0], 0)))"
-  "*
 {
   if (REG_P (operands[0]))
     {
       if (INTVAL (operands[1]) + INTVAL (operands[2]) != 32)
-        return \"bfins %3,%0{%b2:%b1}\";
+        return "bfins %3,%0{%b2:%b1}";
     }
   else
     operands[0] = adjust_address (operands[0],
                                  (32 - INTVAL (operands[1])) / 8);
 
   if (INTVAL (operands[1]) == 8)
-    return \"move%.b %3,%0\";
-  return \"move%.w %3,%0\";
-}")
+    return "move%.b %3,%0";
+  return "move%.w %3,%0";
+})
 
 
 ;
 ; alignment of structure members is specified.
 ;
 ; The move is allowed to be odd byte aligned, because that's still faster
-; than an odd byte aligned bit field instruction.
+; than an odd byte aligned bit-field instruction.
 ;
 (define_insn ""
   [(set (match_operand:SI 0 "nonimmediate_operand" "=rm")
   "TARGET_68020 && TARGET_BITFIELD
    && (INTVAL (operands[2]) % 8) == 0
    && ! mode_dependent_address_p (XEXP (operands[1], 0))"
-  "*
 {
   operands[1]
     = adjust_address (operands[1], SImode, INTVAL (operands[2]) / 8);
 
-  return \"move%.l %1,%0\";
-}")
+  return "move%.l %1,%0";
+})
 
 (define_insn ""
   [(set (match_operand:SI 0 "nonimmediate_operand" "=&d")
    && INTVAL (operands[3]) % INTVAL (operands[2]) == 0
    && (GET_CODE (operands[1]) == REG
        || ! mode_dependent_address_p (XEXP (operands[1], 0)))"
-  "*
 {
   cc_status.flags |= CC_NOT_NEGATIVE;
   if (REG_P (operands[1]))
     {
       if (INTVAL (operands[2]) + INTVAL (operands[3]) != 32)
-       return \"bfextu %1{%b3:%b2},%0\";
+       return "bfextu %1{%b3:%b2},%0";
     }
   else
     operands[1]
       = adjust_address (operands[1], SImode, INTVAL (operands[3]) / 8);
 
-  output_asm_insn (\"clr%.l %0\", operands);
+  output_asm_insn ("clr%.l %0", operands);
   if (GET_CODE (operands[0]) == MEM)
     operands[0] = adjust_address (operands[0],
                                  INTVAL (operands[2]) == 8 ? QImode : HImode,
                                  (32 - INTVAL (operands[1])) / 8);
 
   if (INTVAL (operands[2]) == 8)
-    return \"move%.b %1,%0\";
-  return \"move%.w %1,%0\";
-}")
+    return "move%.b %1,%0";
+  return "move%.w %1,%0";
+})
 
 ;
 ; Special case for 32-bit field in memory.  This only occurs when 32-bit
 ; alignment of structure members is specified.
 ;
 ; The move is allowed to be odd byte aligned, because that's still faster
-; than an odd byte aligned bit field instruction.
+; than an odd byte aligned bit-field instruction.
 ;
 (define_insn ""
   [(set (match_operand:SI 0 "nonimmediate_operand" "=rm")
   "TARGET_68020 && TARGET_BITFIELD
    && (INTVAL (operands[2]) % 8) == 0
    && ! mode_dependent_address_p (XEXP (operands[1], 0))"
-  "*
 {
   operands[1]
     = adjust_address (operands[1], SImode, INTVAL (operands[2]) / 8);
 
-  return \"move%.l %1,%0\";
-}")
+  return "move%.l %1,%0";
+})
 
 (define_insn ""
   [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
    && INTVAL (operands[3]) % INTVAL (operands[2]) == 0
    && (GET_CODE (operands[1]) == REG
        || ! mode_dependent_address_p (XEXP (operands[1], 0)))"
-  "*
 {
   if (REG_P (operands[1]))
     {
       if (INTVAL (operands[2]) + INTVAL (operands[3]) != 32)
-       return \"bfexts %1{%b3:%b2},%0\";
+       return "bfexts %1{%b3:%b2},%0";
     }
   else
     operands[1]
                        INTVAL (operands[3]) / 8);
 
   if (INTVAL (operands[2]) == 8)
-    return \"move%.b %1,%0\;extb%.l %0\";
-  return \"move%.w %1,%0\;ext%.l %0\";
-}")
+    return "move%.b %1,%0\;extb%.l %0";
+  return "move%.w %1,%0\;ext%.l %0";
+})
 \f
-;; Bit field instructions, general cases.
+;; Bit-field instructions, general cases.
 ;; "o,d" constraint causes a nonoffsettable memref to match the "o"
 ;; so that its address is reloaded.
 
 (define_insn ""
   [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (sign_extract:SI (match_operand:QI 1 "memory_operand" "o")
-                        (match_operand:SI 2 "general_operand" "di")
-                        (match_operand:SI 3 "general_operand" "di")))]
+                        (match_operand:SI 2 "general_operand" "dn")
+                        (match_operand:SI 3 "general_operand" "dn")))]
   "TARGET_68020 && TARGET_BITFIELD"
   "bfexts %1{%b3:%b2},%0")
 
 (define_insn ""
   [(set (match_operand:SI 0 "nonimmediate_operand" "=d,d")
        (zero_extract:SI (match_operand:QI 1 "memory_operand" "o,d")
-                        (match_operand:SI 2 "general_operand" "di,di")
-                        (match_operand:SI 3 "general_operand" "di,di")))]
+                        (match_operand:SI 2 "general_operand" "dn,dn")
+                        (match_operand:SI 3 "general_operand" "dn,dn")))]
   "TARGET_68020 && TARGET_BITFIELD"
-  "*
 {
   if (GET_CODE (operands[2]) == CONST_INT)
     {
     {
       CC_STATUS_INIT;
     }
-  return \"bfextu %1{%b3:%b2},%0\";
-}")
+  return "bfextu %1{%b3:%b2},%0";
+})
 
 (define_insn ""
   [(set (zero_extract:SI (match_operand:QI 0 "memory_operand" "+o")
-                        (match_operand:SI 1 "general_operand" "di")
-                        (match_operand:SI 2 "general_operand" "di"))
+                        (match_operand:SI 1 "general_operand" "dn")
+                        (match_operand:SI 2 "general_operand" "dn"))
         (xor:SI (zero_extract:SI (match_dup 0) (match_dup 1) (match_dup 2))
                (match_operand 3 "const_int_operand" "n")))]
   "TARGET_68020 && TARGET_BITFIELD
    && (INTVAL (operands[3]) == -1
        || (GET_CODE (operands[1]) == CONST_INT
            && (~ INTVAL (operands[3]) & ((1 << INTVAL (operands[1]))- 1)) == 0))"
-  "*
 {
   CC_STATUS_INIT;
-  return \"bfchg %0{%b2:%b1}\";
-}")
+  return "bfchg %0{%b2:%b1}";
+})
 
 (define_insn ""
   [(set (zero_extract:SI (match_operand:QI 0 "memory_operand" "+o")
-                        (match_operand:SI 1 "general_operand" "di")
-                        (match_operand:SI 2 "general_operand" "di"))
+                        (match_operand:SI 1 "general_operand" "dn")
+                        (match_operand:SI 2 "general_operand" "dn"))
        (const_int 0))]
   "TARGET_68020 && TARGET_BITFIELD"
-  "*
 {
   CC_STATUS_INIT;
-  return \"bfclr %0{%b2:%b1}\";
-}")
+  return "bfclr %0{%b2:%b1}";
+})
 
 (define_insn ""
   [(set (zero_extract:SI (match_operand:QI 0 "memory_operand" "+o")
-                        (match_operand:SI 1 "general_operand" "di")
-                        (match_operand:SI 2 "general_operand" "di"))
+                        (match_operand:SI 1 "general_operand" "dn")
+                        (match_operand:SI 2 "general_operand" "dn"))
        (const_int -1))]
   "TARGET_68020 && TARGET_BITFIELD"
-  "*
 {
   CC_STATUS_INIT;
-  return \"bfset %0{%b2:%b1}\";
-}")
+  return "bfset %0{%b2:%b1}";
+})
 
 (define_expand "insv"
   [(set (zero_extract:SI (match_operand:SI 0 "nonimmediate_operand" "")
 
 (define_insn ""
   [(set (zero_extract:SI (match_operand:QI 0 "memory_operand" "+o")
-                        (match_operand:SI 1 "general_operand" "di")
-                        (match_operand:SI 2 "general_operand" "di"))
+                        (match_operand:SI 1 "general_operand" "dn")
+                        (match_operand:SI 2 "general_operand" "dn"))
        (match_operand:SI 3 "register_operand" "d"))]
   "TARGET_68020 && TARGET_BITFIELD"
   "bfins %3,%0{%b2:%b1}")
 
-;; Now recognize bit field insns that operate on registers
+;; Now recognize bit-field insns that operate on registers
 ;; (or at least were intended to do so).
 
 (define_insn ""
   [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (sign_extract:SI (match_operand:SI 1 "register_operand" "d")
-                        (match_operand:SI 2 "general_operand" "di")
-                        (match_operand:SI 3 "general_operand" "di")))]
+                        (match_operand:SI 2 "general_operand" "dn")
+                        (match_operand:SI 3 "general_operand" "dn")))]
   "TARGET_68020 && TARGET_BITFIELD"
   "bfexts %1{%b3:%b2},%0")
 
 (define_insn ""
   [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (zero_extract:SI (match_operand:SI 1 "register_operand" "d")
-                        (match_operand:SI 2 "general_operand" "di")
-                        (match_operand:SI 3 "general_operand" "di")))]
+                        (match_operand:SI 2 "general_operand" "dn")
+                        (match_operand:SI 3 "general_operand" "dn")))]
   "TARGET_68020 && TARGET_BITFIELD"
-  "*
 {
   if (GET_CODE (operands[2]) == CONST_INT)
     {
     {
       CC_STATUS_INIT;
     }
-  return \"bfextu %1{%b3:%b2},%0\";
-}")
+  return "bfextu %1{%b3:%b2},%0";
+})
 
 (define_insn ""
   [(set (zero_extract:SI (match_operand:SI 0 "register_operand" "+d")
-                        (match_operand:SI 1 "general_operand" "di")
-                        (match_operand:SI 2 "general_operand" "di"))
+                        (match_operand:SI 1 "general_operand" "dn")
+                        (match_operand:SI 2 "general_operand" "dn"))
        (const_int 0))]
   "TARGET_68020 && TARGET_BITFIELD"
-  "*
 {
   CC_STATUS_INIT;
-  return \"bfclr %0{%b2:%b1}\";
-}")
+  return "bfclr %0{%b2:%b1}";
+})
 
 (define_insn ""
   [(set (zero_extract:SI (match_operand:SI 0 "register_operand" "+d")
-                        (match_operand:SI 1 "general_operand" "di")
-                        (match_operand:SI 2 "general_operand" "di"))
+                        (match_operand:SI 1 "general_operand" "dn")
+                        (match_operand:SI 2 "general_operand" "dn"))
        (const_int -1))]
   "TARGET_68020 && TARGET_BITFIELD"
-  "*
 {
   CC_STATUS_INIT;
-  return \"bfset %0{%b2:%b1}\";
-}")
+  return "bfset %0{%b2:%b1}";
+})
 
 (define_insn ""
   [(set (zero_extract:SI (match_operand:SI 0 "register_operand" "+d")
-                        (match_operand:SI 1 "general_operand" "di")
-                        (match_operand:SI 2 "general_operand" "di"))
+                        (match_operand:SI 1 "general_operand" "dn")
+                        (match_operand:SI 2 "general_operand" "dn"))
        (match_operand:SI 3 "register_operand" "d"))]
   "TARGET_68020 && TARGET_BITFIELD"
-  "*
 {
 #if 0
   /* These special cases are now recognized by a specific pattern.  */
   if (GET_CODE (operands[1]) == CONST_INT && GET_CODE (operands[2]) == CONST_INT
       && INTVAL (operands[1]) == 16 && INTVAL (operands[2]) == 16)
-    return \"move%.w %3,%0\";
+    return "move%.w %3,%0";
   if (GET_CODE (operands[1]) == CONST_INT && GET_CODE (operands[2]) == CONST_INT
       && INTVAL (operands[1]) == 24 && INTVAL (operands[2]) == 8)
-    return \"move%.b %3,%0\";
+    return "move%.b %3,%0";
 #endif
-  return \"bfins %3,%0{%b2:%b1}\";
-}")
+  return "bfins %3,%0{%b2:%b1}";
+})
 \f
 ;; Special patterns for optimizing bit-field instructions.
 
   [(set (cc0)
        (zero_extract:SI (match_operand:QI 0 "memory_operand" "o")
                         (match_operand:SI 1 "const_int_operand" "n")
-                        (match_operand:SI 2 "general_operand" "di")))]
+                        (match_operand:SI 2 "general_operand" "dn")))]
   "TARGET_68020 && TARGET_BITFIELD"
-  "*
 {
   if (operands[1] == const1_rtx
       && GET_CODE (operands[2]) == CONST_INT)
     }
   if (INTVAL (operands[1]) != 32)
     cc_status.flags = CC_NOT_NEGATIVE;
-  return \"bftst %0{%b2:%b1}\";
-}")
+  return "bftst %0{%b2:%b1}";
+})
 
 
 ;;; now handle the register cases
   [(set (cc0)
        (zero_extract:SI (match_operand:SI 0 "register_operand" "d")
                         (match_operand:SI 1 "const_int_operand" "n")
-                        (match_operand:SI 2 "general_operand" "di")))]
+                        (match_operand:SI 2 "general_operand" "dn")))]
   "TARGET_68020 && TARGET_BITFIELD"
-  "*
 {
   if (operands[1] == const1_rtx
       && GET_CODE (operands[2]) == CONST_INT)
     }
   if (INTVAL (operands[1]) != 32)
     cc_status.flags = CC_NOT_NEGATIVE;
-  return \"bftst %0{%b2:%b1}\";
-}")
+  return "bftst %0{%b2:%b1}";
+})
 \f
 (define_insn "scc0_di"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=dm")
     (match_operator 1 "valid_dbcc_comparison_p"
       [(match_operand:DI 2 "general_operand" "ro") (const_int 0)]))]
-  "! TARGET_5200"
-  "*
+  "! TARGET_COLDFIRE"
 {
   return output_scc_di (operands[1], operands[2], const0_rtx, operands[0]);
-} ")
+})
 
 (define_insn "scc0_di_5200"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=d")
     (match_operator 1 "valid_dbcc_comparison_p"
       [(match_operand:DI 2 "general_operand" "ro") (const_int 0)]))]
-  "TARGET_5200"
-  "*
+  "TARGET_COLDFIRE"
 {
   return output_scc_di (operands[1], operands[2], const0_rtx, operands[0]);
-} ")
+})
 
 (define_insn "scc_di"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=dm,dm")
     (match_operator 1 "valid_dbcc_comparison_p"
       [(match_operand:DI 2 "general_operand" "ro,r")
        (match_operand:DI 3 "general_operand" "r,ro")]))]
-  "! TARGET_5200"
-  "*
+  "! TARGET_COLDFIRE"
 {
   return output_scc_di (operands[1], operands[2], operands[3], operands[0]);
-} ")
+})
 
 (define_insn "scc_di_5200"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=d,d")
     (match_operator 1 "valid_dbcc_comparison_p"
       [(match_operand:DI 2 "general_operand" "ro,r")
        (match_operand:DI 3 "general_operand" "r,ro")]))]
-  "TARGET_5200"
-  "*
+  "TARGET_COLDFIRE"
 {
   return output_scc_di (operands[1], operands[2], operands[3], operands[0]);
-} ")
+})
 
 ;; Note that operand 0 of an SCC insn is supported in the hardware as
 ;; memory, but we cannot allow it to be in memory in case the address
   [(set (match_operand:QI 0 "register_operand" "")
        (eq:QI (cc0) (const_int 0)))]
   ""
-  "
 {
-  if (TARGET_68060 && m68k_last_compare_had_fp_operands)
+  if ((TUNE_68060 || TARGET_COLDFIRE_FPU)
+      && m68k_last_compare_had_fp_operands)
     {
       m68k_last_compare_had_fp_operands = 0;
       FAIL;
     }
-}")
+})
 
 (define_insn ""
   [(set (match_operand:QI 0 "register_operand" "=d")
        (eq:QI (cc0) (const_int 0)))]
   ""
-  "*
+{
   cc_status = cc_prev_status;
-  OUTPUT_JUMP (\"seq %0\", \"fseq %0\", \"seq %0\");
-")
+  OUTPUT_JUMP ("seq %0", "fseq %0", "seq %0");
+})
 
 (define_expand "sne"
   [(set (match_operand:QI 0 "register_operand" "")
        (ne:QI (cc0) (const_int 0)))]
   ""
-  "
 {
-  if (TARGET_68060 && m68k_last_compare_had_fp_operands)
+  if ((TUNE_68060 || TARGET_COLDFIRE_FPU)
+      && m68k_last_compare_had_fp_operands)
     {
       m68k_last_compare_had_fp_operands = 0;
       FAIL;
     }
-}")
+})
 
 (define_insn ""
   [(set (match_operand:QI 0 "register_operand" "=d")
        (ne:QI (cc0) (const_int 0)))]
   ""
-  "*
+{
   cc_status = cc_prev_status;
-  OUTPUT_JUMP (\"sne %0\", \"fsne %0\", \"sne %0\");
-")
+  OUTPUT_JUMP ("sne %0", "fsne %0", "sne %0");
+})
 
 (define_expand "sgt"
   [(set (match_operand:QI 0 "register_operand" "")
        (gt:QI (cc0) (const_int 0)))]
   ""
-  "
 {
-  if (TARGET_68060 && m68k_last_compare_had_fp_operands)
+  if ((TUNE_68060 || TARGET_COLDFIRE_FPU)
+      && m68k_last_compare_had_fp_operands)
     {
       m68k_last_compare_had_fp_operands = 0;
       FAIL;
     }
-}")
+})
 
 (define_insn ""
   [(set (match_operand:QI 0 "register_operand" "=d")
        (gt:QI (cc0) (const_int 0)))]
   ""
-  "*
+{
   cc_status = cc_prev_status;
-  OUTPUT_JUMP (\"sgt %0\", \"fsgt %0\", 0);
-")
+  OUTPUT_JUMP ("sgt %0", "fsgt %0", 0);
+})
 
 (define_expand "sgtu"
   [(set (match_operand:QI 0 "register_operand" "")
   [(set (match_operand:QI 0 "register_operand" "=d")
        (gtu:QI (cc0) (const_int 0)))]
   ""
-  "*
-   cc_status = cc_prev_status;
-   return \"shi %0\"; ")
+{
+  cc_status = cc_prev_status;
+  return "shi %0";
+})
 
 (define_expand "slt"
   [(set (match_operand:QI 0 "register_operand" "")
        (lt:QI (cc0) (const_int 0)))]
   ""
-  "
 {
-  if (TARGET_68060 && m68k_last_compare_had_fp_operands)
+  if ((TUNE_68060 || TARGET_COLDFIRE_FPU)
+      && m68k_last_compare_had_fp_operands)
     {
       m68k_last_compare_had_fp_operands = 0;
       FAIL;
     }
-}")
+})
 
 (define_insn ""
   [(set (match_operand:QI 0 "register_operand" "=d")
        (lt:QI (cc0) (const_int 0)))]
   ""
-  "*
+{
    cc_status = cc_prev_status;
-   OUTPUT_JUMP (\"slt %0\", \"fslt %0\", \"smi %0\"); ")
+   OUTPUT_JUMP ("slt %0", "fslt %0", "smi %0");
+})
 
 (define_expand "sltu"
   [(set (match_operand:QI 0 "register_operand" "")
   [(set (match_operand:QI 0 "register_operand" "=d")
        (ltu:QI (cc0) (const_int 0)))]
   ""
-  "*
+{
    cc_status = cc_prev_status;
-   return \"scs %0\"; ")
+   return "scs %0";
+})
 
 (define_expand "sge"
   [(set (match_operand:QI 0 "register_operand" "")
        (ge:QI (cc0) (const_int 0)))]
   ""
-  "
 {
-  if (TARGET_68060 && m68k_last_compare_had_fp_operands)
+  if ((TUNE_68060 || TARGET_COLDFIRE_FPU)
+      && m68k_last_compare_had_fp_operands)
     {
       m68k_last_compare_had_fp_operands = 0;
       FAIL;
     }
-}")
+})
 
 (define_insn ""
   [(set (match_operand:QI 0 "register_operand" "=d")
        (ge:QI (cc0) (const_int 0)))]
   ""
-  "*
+{
    cc_status = cc_prev_status;
-   OUTPUT_JUMP (\"sge %0\", \"fsge %0\", \"spl %0\"); ")
+   OUTPUT_JUMP ("sge %0", "fsge %0", "spl %0");
+})
 
 (define_expand "sgeu"
   [(set (match_operand:QI 0 "register_operand" "")
   [(set (match_operand:QI 0 "register_operand" "=d")
        (geu:QI (cc0) (const_int 0)))]
   ""
-  "*
+{
    cc_status = cc_prev_status;
-   return \"scc %0\"; ")
+   return "scc %0";
+})
 
 (define_expand "sle"
   [(set (match_operand:QI 0 "register_operand" "")
        (le:QI (cc0) (const_int 0)))]
   ""
-  "
 {
-  if (TARGET_68060 && m68k_last_compare_had_fp_operands)
+  if ((TUNE_68060 || TARGET_COLDFIRE_FPU)
+      && m68k_last_compare_had_fp_operands)
     {
       m68k_last_compare_had_fp_operands = 0;
       FAIL;
     }
-}")
+})
 
 (define_insn ""
   [(set (match_operand:QI 0 "register_operand" "=d")
        (le:QI (cc0) (const_int 0)))]
   ""
-  "*
+{
   cc_status = cc_prev_status;
-  OUTPUT_JUMP (\"sle %0\", \"fsle %0\", 0);
-")
+  OUTPUT_JUMP ("sle %0", "fsle %0", 0);
+})
 
 (define_expand "sleu"
   [(set (match_operand:QI 0 "register_operand" "")
   [(set (match_operand:QI 0 "register_operand" "=d")
        (leu:QI (cc0) (const_int 0)))]
   ""
-  "*
+{
    cc_status = cc_prev_status;
-   return \"sls %0\"; ")
+   return "sls %0";
+})
 
 (define_expand "sordered"
   [(set (match_operand:QI 0 "register_operand" "")
        (ordered:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
-  if (! m68k_last_compare_had_fp_operands)
-    abort ();
+  gcc_assert (m68k_last_compare_had_fp_operands);
   m68k_last_compare_had_fp_operands = 0;
 })
 
 (define_insn "*sordered_1"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (ordered:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
   cc_status = cc_prev_status;
   return "fsor %0";
 (define_expand "sunordered"
   [(set (match_operand:QI 0 "register_operand" "")
        (unordered:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
-  if (! m68k_last_compare_had_fp_operands)
-    abort ();
+  gcc_assert (m68k_last_compare_had_fp_operands);
   m68k_last_compare_had_fp_operands = 0;
 })
 
 (define_insn "*sunordered_1"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (unordered:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
   cc_status = cc_prev_status;
   return "fsun %0";
 (define_expand "suneq"
   [(set (match_operand:QI 0 "register_operand" "")
        (uneq:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
-  if (! m68k_last_compare_had_fp_operands)
-    abort ();
+  gcc_assert (m68k_last_compare_had_fp_operands);
   m68k_last_compare_had_fp_operands = 0;
 })
 
 (define_insn "*suneq_1"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (uneq:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
   cc_status = cc_prev_status;
   return "fsueq %0";
 (define_expand "sunge"
   [(set (match_operand:QI 0 "register_operand" "")
        (unge:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
-  if (! m68k_last_compare_had_fp_operands)
-    abort ();
+  gcc_assert (m68k_last_compare_had_fp_operands);
   m68k_last_compare_had_fp_operands = 0;
 })
 
 (define_insn "*sunge_1"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (unge:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
   cc_status = cc_prev_status;
   return "fsuge %0";
 (define_expand "sungt"
   [(set (match_operand:QI 0 "register_operand" "")
        (ungt:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
-  if (! m68k_last_compare_had_fp_operands)
-    abort ();
+  gcc_assert (m68k_last_compare_had_fp_operands);
   m68k_last_compare_had_fp_operands = 0;
 })
 
 (define_insn "*sungt_1"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (ungt:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
   cc_status = cc_prev_status;
   return "fsugt %0";
 (define_expand "sunle"
   [(set (match_operand:QI 0 "register_operand" "")
        (unle:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
-  if (! m68k_last_compare_had_fp_operands)
-    abort ();
+  gcc_assert (m68k_last_compare_had_fp_operands);
   m68k_last_compare_had_fp_operands = 0;
 })
 
 (define_insn "*sunle_1"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (unle:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
   cc_status = cc_prev_status;
   return "fsule %0";
 (define_expand "sunlt"
   [(set (match_operand:QI 0 "register_operand" "")
        (unlt:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
-  if (! m68k_last_compare_had_fp_operands)
-    abort ();
+  gcc_assert (m68k_last_compare_had_fp_operands);
   m68k_last_compare_had_fp_operands = 0;
 })
 
 (define_insn "*sunlt_1"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (unlt:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
   cc_status = cc_prev_status;
   return "fsult %0";
 (define_expand "sltgt"
   [(set (match_operand:QI 0 "register_operand" "")
        (ltgt:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
-  if (! m68k_last_compare_had_fp_operands)
-    abort ();
+  gcc_assert (m68k_last_compare_had_fp_operands);
   m68k_last_compare_had_fp_operands = 0;
 })
 
 (define_insn "*sltgt_1"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (ltgt:QI (cc0) (const_int 0)))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
   cc_status = cc_prev_status;
   return "fsogl %0";
 (define_insn "*fsogt_1"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (not:QI (unle:QI (cc0) (const_int 0))))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
   cc_status = cc_prev_status;
   return "fsogt %0";
 (define_insn "*fsoge_1"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (not:QI (unlt:QI (cc0) (const_int 0))))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
   cc_status = cc_prev_status;
   return "fsoge %0";
 (define_insn "*fsolt_1"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (not:QI (unge:QI (cc0) (const_int 0))))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
   cc_status = cc_prev_status;
   return "fsolt %0";
 (define_insn "*fsole_1"
   [(set (match_operand:QI 0 "register_operand" "=d")
        (not:QI (ungt:QI (cc0) (const_int 0))))]
-  "TARGET_68881 && !TARGET_68060"
+  "TARGET_68881 && !TUNE_68060"
 {
   cc_status = cc_prev_status;
   return "fsole %0";
         (pc)))
    (clobber (match_scratch:SI 2 "=d,d"))]
   ""
-  "*
 {
   CC_STATUS_INIT;
   if (which_alternative == 1)
-#ifdef MOTOROLA
-    return \"move%.l %0,%2\;or%.l %0,%2\;jbeq %l1\";
-#else
-    return \"move%.l %0,%2\;or%.l %0,%2\;jeq %l1\";
-#endif
+    {
+      if (MOTOROLA)
+       return "move%.l %0,%2\;or%.l %0,%2\;jbeq %l1";
+      else
+       return "move%.l %0,%2\;or%.l %0,%2\;jeq %l1";
+    }
   if ((cc_prev_status.value1
       && rtx_equal_p (cc_prev_status.value1, operands[0]))
     || (cc_prev_status.value2
       && rtx_equal_p (cc_prev_status.value2, operands[0])))
     {
       cc_status = cc_prev_status;
-#ifdef MOTOROLA
-      return \"jbeq %l1\";
-#else
-      return \"jeq %l1\";
-#endif
+      return MOTOROLA ? "jbeq %l1" : "jeq %l1";
     }
   if (GET_CODE (operands[0]) == REG)
     operands[3] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
        {
          if (reg_overlap_mentioned_p (operands[2], operands[3]))
            {
-#ifdef MOTOROLA
-             return \"or%.l %0,%2\;jbeq %l1\";
-#else
-             return \"or%.l %0,%2\;jeq %l1\";
-#endif
+             if (MOTOROLA)
+               return "or%.l %0,%2\;jbeq %l1";
+             else
+               return "or%.l %0,%2\;jeq %l1";
            }
          else
            {
-#ifdef MOTOROLA
-             return \"or%.l %3,%2\;jbeq %l1\";
-#else
-             return \"or%.l %3,%2\;jeq %l1\";
-#endif
+             if (MOTOROLA)
+               return "or%.l %3,%2\;jbeq %l1";
+             else
+               return "or%.l %3,%2\;jeq %l1";
            }
        }
-#ifdef MOTOROLA
-      return \"move%.l %0,%2\;or%.l %3,%2\;jbeq %l1\";
-#else
-      return \"move%.l %0,%2\;or%.l %3,%2\;jeq %l1\";
-#endif
+      if (MOTOROLA)
+       return "move%.l %0,%2\;or%.l %3,%2\;jbeq %l1";
+      else
+       return "move%.l %0,%2\;or%.l %3,%2\;jeq %l1";
     }
   operands[4] = gen_label_rtx();
-  if (TARGET_68020 || TARGET_5200)
+  if (TARGET_68020 || TARGET_COLDFIRE)
     {
-#ifdef MOTOROLA
-      output_asm_insn (\"tst%.l %0\;jbne %l4\;tst%.l %3\;jbeq %l1\", operands);
-#else
-      output_asm_insn (\"tst%.l %0\;jne %l4\;tst%.l %3\;jeq %l1\", operands);
-#endif
+      if (MOTOROLA)
+       output_asm_insn ("tst%.l %0\;jbne %l4\;tst%.l %3\;jbeq %l1", operands);
+      else
+       output_asm_insn ("tst%.l %0\;jne %l4\;tst%.l %3\;jeq %l1", operands);
     }
   else
     {
-#ifdef MOTOROLA
-#ifdef SGS_CMP_ORDER
-      output_asm_insn (\"cmp%.w %0,%#0\;jbne %l4\;cmp%.w %3,%#0\;jbeq %l1\", operands);
-#else
-      output_asm_insn (\"cmp%.w %#0,%0\;jbne %l4\;cmp%.w %#0,%3\;jbeq %l1\", operands);
-#endif
-#else
-      output_asm_insn (\"cmp%.w %#0,%0\;jne %l4\;cmp%.w %#0,%3\;jeq %l1\", operands);
-#endif
+      if (MOTOROLA)
+       output_asm_insn ("cmp%.w #0,%0\;jbne %l4\;cmp%.w #0,%3\;jbeq %l1", operands);
+      else
+       output_asm_insn ("cmp%.w #0,%0\;jne %l4\;cmp%.w #0,%3\;jeq %l1", operands);
     }
-  (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
+  (*targetm.asm_out.internal_label) (asm_out_file, "L",
                                CODE_LABEL_NUMBER (operands[4]));
-  return \"\";
-} ")
+  return "";
+})
 
 (define_insn "bne0_di"
   [(set (pc)
         (pc)))
    (clobber (match_scratch:SI 2 "=d,X"))]
   ""
-  "*
 {
   if ((cc_prev_status.value1
       && rtx_equal_p (cc_prev_status.value1, operands[0]))
       && rtx_equal_p (cc_prev_status.value2, operands[0])))
     {
       cc_status = cc_prev_status;
-#ifdef MOTOROLA
-      return \"jbne %l1\";
-#else
-      return \"jne %l1\";
-#endif
+      return MOTOROLA ? "jbne %l1" : "jne %l1";
     }
   CC_STATUS_INIT;
   if (GET_CODE (operands[0]) == REG)
        {
          if (reg_overlap_mentioned_p (operands[2], operands[3]))
            {
-#ifdef MOTOROLA
-             return \"or%.l %0,%2\;jbne %l1\";
-#else
-             return \"or%.l %0,%2\;jne %l1\";
-#endif
+             if (MOTOROLA)
+               return "or%.l %0,%2\;jbne %l1";
+             else
+               return "or%.l %0,%2\;jne %l1";
            }
          else
            {
-#ifdef MOTOROLA
-             return \"or%.l %3,%2\;jbne %l1\";
-#else
-             return \"or%.l %3,%2\;jne %l1\";
-#endif
+             if (MOTOROLA)
+               return "or%.l %3,%2\;jbne %l1";
+             else
+               return "or%.l %3,%2\;jne %l1";
            }
        }
-#ifdef MOTOROLA
-      return \"move%.l %0,%2\;or%.l %3,%2\;jbne %l1\";
-#else
-      return \"move%.l %0,%2\;or%.l %3,%2\;jne %l1\";
-#endif
+      if (MOTOROLA)
+       return "move%.l %0,%2\;or%.l %3,%2\;jbne %l1";
+      else
+       return "move%.l %0,%2\;or%.l %3,%2\;jne %l1";
     }
-  if (TARGET_68020 || TARGET_5200)
+  if (TARGET_68020 || TARGET_COLDFIRE)
     {
-#ifdef MOTOROLA
-      return \"tst%.l %0\;jbne %l1\;tst%.l %3\;jbne %l1\";
-#else
-      return \"tst%.l %0\;jne %l1\;tst%.l %3\;jne %l1\";
-#endif
+      if (MOTOROLA)
+       return "tst%.l %0\;jbne %l1\;tst%.l %3\;jbne %l1";
+      else
+       return "tst%.l %0\;jne %l1\;tst%.l %3\;jne %l1";
     }
   else
     {
-#ifdef MOTOROLA
-#ifdef SGS_CMP_ORDER
-      return \"cmp%.w %0,%#0\;jbne %l1\;cmp%.w %3,%#0\;jbne %l1\";
-#else
-      return \"cmp%.w %#0,%0\;jbne %l1\;cmp%.w %#0,%3\;jbne %l1\";
-#endif
-#else
-      return \"cmp%.w %#0,%0\;jne %l1\;cmp%.w %#0,%3\;jne %l1\";
-#endif
+      if (MOTOROLA)
+       return "cmp%.w #0,%0\;jbne %l1\;cmp%.w #0,%3\;jbne %l1";
+      else
+       return "cmp%.w #0,%0\;jne %l1\;cmp%.w #0,%3\;jne %l1";
     }
-} ")
+})
 
 (define_insn "bge0_di"
   [(set (pc)
         (label_ref (match_operand 1 "" ""))
         (pc)))]
   ""
-  "*
 {
   if ((cc_prev_status.value1
       && rtx_equal_p (cc_prev_status.value1, operands[0]))
       cc_status = cc_prev_status;
       if (cc_status.flags & CC_REVERSED)
        {
-#ifdef MOTOROLA
-         return \"jble %l1\";
-#else
-         return \"jle %l1\";
-#endif
+         return MOTOROLA ? "jble %l1" : "jle %l1";
        }
       else
        {
-#ifdef MOTOROLA
-         return \"jbpl %l1\";
-#else
-         return \"jpl %l1\";
-#endif
+         return MOTOROLA ? "jbpl %l1" : "jpl %l1";
        }
     }
   CC_STATUS_INIT;
-  if (TARGET_68020 || TARGET_5200 || ! ADDRESS_REG_P (operands[0]))
-    output_asm_insn(\"tst%.l %0\", operands);
+  if (TARGET_68020 || TARGET_COLDFIRE || ! ADDRESS_REG_P (operands[0]))
+    output_asm_insn("tst%.l %0", operands);
   else
     {
       /* On an address reg, cmpw may replace cmpl.  */
-#ifdef SGS_CMP_ORDER
-      output_asm_insn(\"cmp%.w %0,%#0\", operands);
-#else
-      output_asm_insn(\"cmp%.w %#0,%0\", operands);
-#endif
+      output_asm_insn("cmp%.w #0,%0", operands);
     }
-
-#ifdef MOTOROLA
-  return \"jbpl %l1\";
-#else
-  return \"jpl %l1\";
-#endif
-} ")
+  return MOTOROLA ? "jbpl %l1" : "jpl %l1";
+})
 
 (define_insn "blt0_di"
   [(set (pc)
         (label_ref (match_operand 1 "" ""))
         (pc)))]
   ""
-  "*
 {
   if ((cc_prev_status.value1
       && rtx_equal_p (cc_prev_status.value1, operands[0]))
       cc_status = cc_prev_status;
       if (cc_status.flags & CC_REVERSED)
        {
-#ifdef MOTOROLA
-         return \"jbgt %l1\";
-#else
-         return \"jgt %l1\";
-#endif
+         return MOTOROLA ? "jbgt %l1" : "jgt %l1";
        }
       else
        {
-#ifdef MOTOROLA
-         return \"jbmi %l1\";
-#else
-         return \"jmi %l1\";
-#endif
+         return MOTOROLA ? "jbmi %l1" : "jmi %l1";
        }
     }
   CC_STATUS_INIT;
-  if (TARGET_68020 || TARGET_5200 || ! ADDRESS_REG_P (operands[0]))
-    output_asm_insn(\"tst%.l %0\", operands);
+  if (TARGET_68020 || TARGET_COLDFIRE || ! ADDRESS_REG_P (operands[0]))
+    output_asm_insn("tst%.l %0", operands);
   else
     {
       /* On an address reg, cmpw may replace cmpl.  */
-#ifdef SGS_CMP_ORDER
-      output_asm_insn(\"cmp%.w %0,%#0\", operands);
-#else
-      output_asm_insn(\"cmp%.w %#0,%0\", operands);
-#endif
+      output_asm_insn("cmp%.w #0,%0", operands);
     }
 
-#ifdef MOTOROLA
-  return \"jbmi %l1\";
-#else
-  return \"jmi %l1\";
-#endif
-} ")
+  return MOTOROLA ? "jbmi %l1" : "jmi %l1";
+})
 
 (define_insn "beq"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "*
 {
-#ifdef MOTOROLA
-  OUTPUT_JUMP (\"jbeq %l0\", \"fbeq %l0\", \"jbeq %l0\");
-#else
-  OUTPUT_JUMP (\"jeq %l0\", \"fjeq %l0\", \"jeq %l0\");
-#endif
-}")
+  if (MOTOROLA)
+    OUTPUT_JUMP ("jbeq %l0", "fbeq %l0", "jbeq %l0");
+  else
+    OUTPUT_JUMP ("jeq %l0", "fjeq %l0", "jeq %l0");
+})
 
 (define_insn "bne"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "*
 {
-#ifdef MOTOROLA
-  OUTPUT_JUMP (\"jbne %l0\", \"fbne %l0\", \"jbne %l0\");
-#else
-  OUTPUT_JUMP (\"jne %l0\", \"fjne %l0\", \"jne %l0\");
-#endif
-}")
+  if (MOTOROLA)
+    OUTPUT_JUMP ("jbne %l0", "fbne %l0", "jbne %l0");
+  else
+    OUTPUT_JUMP ("jne %l0", "fjne %l0", "jne %l0");
+})
 
 (define_insn "bgt"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "*
-#ifdef MOTOROLA
-  OUTPUT_JUMP (\"jbgt %l0\", \"fbgt %l0\", 0);
-#else
-  OUTPUT_JUMP (\"jgt %l0\", \"fjgt %l0\", 0);
-#endif
-")
+{
+  if (MOTOROLA)
+    OUTPUT_JUMP ("jbgt %l0", "fbgt %l0", 0);
+  else
+    OUTPUT_JUMP ("jgt %l0", "fjgt %l0", 0);
+})
 
 (define_insn "bgtu"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "*
-#ifdef MOTOROLA
-  return \"jbhi %l0\";
-#else
-  return \"jhi %l0\";
-#endif
-")
+{
+  return MOTOROLA ? "jbhi %l0" : "jhi %l0";
+})
 
 (define_insn "blt"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "*
-#ifdef MOTOROLA
-  OUTPUT_JUMP (\"jblt %l0\", \"fblt %l0\", \"jbmi %l0\");
-#else
-  OUTPUT_JUMP (\"jlt %l0\", \"fjlt %l0\", \"jmi %l0\");
-#endif
-")
+{
+  if (MOTOROLA)
+    OUTPUT_JUMP ("jblt %l0", "fblt %l0", "jbmi %l0");
+  else
+    OUTPUT_JUMP ("jlt %l0", "fjlt %l0", "jmi %l0");
+})
 
 (define_insn "bltu"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "*
-#ifdef MOTOROLA
-  return \"jbcs %l0\";
-#else
-  return \"jcs %l0\";
-#endif
-")
+{
+  return MOTOROLA ? "jbcs %l0" : "jcs %l0";
+})
 
 (define_insn "bge"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "*
-#ifdef MOTOROLA
-  OUTPUT_JUMP (\"jbge %l0\", \"fbge %l0\", \"jbpl %l0\");
-#else
-  OUTPUT_JUMP (\"jge %l0\", \"fjge %l0\", \"jpl %l0\");
-#endif
-")
+{
+  if (MOTOROLA)
+    OUTPUT_JUMP ("jbge %l0", "fbge %l0", "jbpl %l0");
+  else
+    OUTPUT_JUMP ("jge %l0", "fjge %l0", "jpl %l0");
+})
 
 (define_insn "bgeu"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "*
-#ifdef MOTOROLA
-  return \"jbcc %l0\";
-#else
-  return \"jcc %l0\";
-#endif
-")
+{
+  return MOTOROLA ? "jbcc %l0" : "jcc %l0";
+})
 
 (define_insn "ble"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "*
-#ifdef MOTOROLA
-  OUTPUT_JUMP (\"jble %l0\", \"fble %l0\", 0);
-#else
-  OUTPUT_JUMP (\"jle %l0\", \"fjle %l0\", 0);
-#endif
-")
+{
+  if (MOTOROLA)
+    OUTPUT_JUMP ("jble %l0", "fble %l0", 0);
+  else
+    OUTPUT_JUMP ("jle %l0", "fjle %l0", 0);
+})
 
 (define_insn "bleu"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "*
-#ifdef MOTOROLA
-  return \"jbls %l0\";
-#else
-  return \"jls %l0\";
-#endif
-")
+{
+  return MOTOROLA ? "jbls %l0" : "jls %l0";
+})
 
 (define_insn "bordered"
   [(set (pc)
                      (pc)))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fbor %l0";
-#else
-  return "fjor %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbor %l0" : "fjor %l0";
 })
 
 (define_insn "bunordered"
                      (pc)))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fbun %l0";
-#else
-  return "fjun %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbun %l0" : "fjun %l0";
 })
 
 (define_insn "buneq"
                      (pc)))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fbueq %l0";
-#else
-  return "fjueq %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbueq %l0" : "fjueq %l0";
 })
 
 (define_insn "bunge"
                      (pc)))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fbuge %l0";
-#else
-  return "fjuge %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbuge %l0" : "fjuge %l0";
 })
 
 (define_insn "bungt"
                      (pc)))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fbugt %l0";
-#else
-  return "fjugt %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbugt %l0" : "fjugt %l0";
 })
 
 (define_insn "bunle"
                      (pc)))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fbule %l0";
-#else
-  return "fjule %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbule %l0" : "fjule %l0";
 })
 
 (define_insn "bunlt"
                      (pc)))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fbult %l0";
-#else
-  return "fjult %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbult %l0" : "fjult %l0";
 })
 
 (define_insn "bltgt"
                      (pc)))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fbogl %l0";
-#else
-  return "fjogl %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbogl %l0" : "fjogl %l0";
 })
 \f
 ;; Negated conditional jump instructions.
                      (pc)
                      (label_ref (match_operand 0 "" ""))))]
   ""
-  "*
 {
-#ifdef MOTOROLA
-  OUTPUT_JUMP (\"jbne %l0\", \"fbne %l0\", \"jbne %l0\");
-#else
-  OUTPUT_JUMP (\"jne %l0\", \"fjne %l0\", \"jne %l0\");
-#endif
-}")
+  if (MOTOROLA)
+    OUTPUT_JUMP ("jbne %l0", "fbne %l0", "jbne %l0");
+  else
+    OUTPUT_JUMP ("jne %l0", "fjne %l0", "jne %l0");
+})
 
 (define_insn ""
   [(set (pc)
                      (pc)
                      (label_ref (match_operand 0 "" ""))))]
   ""
-  "*
 {
-#ifdef MOTOROLA
-  OUTPUT_JUMP (\"jbeq %l0\", \"fbeq %l0\", \"jbeq %l0\");
-#else
-  OUTPUT_JUMP (\"jeq %l0\", \"fjeq %l0\", \"jeq %l0\");
-#endif
-}")
+  if (MOTOROLA)
+    OUTPUT_JUMP ("jbeq %l0", "fbeq %l0", "jbeq %l0");
+  else
+    OUTPUT_JUMP ("jeq %l0", "fjeq %l0", "jeq %l0");
+})
 
 (define_insn ""
   [(set (pc)
                      (pc)
                      (label_ref (match_operand 0 "" ""))))]
   ""
-  "*
-#ifdef MOTOROLA
-  OUTPUT_JUMP (\"jble %l0\", \"fbngt %l0\", 0);
-#else
-  OUTPUT_JUMP (\"jle %l0\", \"fjngt %l0\", 0);
-#endif
-")
+{
+  if (MOTOROLA)
+    OUTPUT_JUMP ("jble %l0", "fbngt %l0", 0);
+  else
+    OUTPUT_JUMP ("jle %l0", "fjngt %l0", 0);
+})
 
 (define_insn ""
   [(set (pc)
                      (pc)
                      (label_ref (match_operand 0 "" ""))))]
   ""
-  "*
-#ifdef MOTOROLA
-  return \"jbls %l0\";
-#else
-  return \"jls %l0\";
-#endif
-")
+{
+  return MOTOROLA ? "jbls %l0" : "jls %l0";
+})
 
 (define_insn ""
   [(set (pc)
                      (pc)
                      (label_ref (match_operand 0 "" ""))))]
   ""
-  "*
-#ifdef MOTOROLA
-  OUTPUT_JUMP (\"jbge %l0\", \"fbnlt %l0\", \"jbpl %l0\");
-#else
-  OUTPUT_JUMP (\"jge %l0\", \"fjnlt %l0\", \"jpl %l0\");
-#endif
-")
+{
+  if (MOTOROLA)
+    OUTPUT_JUMP ("jbge %l0", "fbnlt %l0", "jbpl %l0");
+  else
+    OUTPUT_JUMP ("jge %l0", "fjnlt %l0", "jpl %l0");
+})
 
 (define_insn ""
   [(set (pc)
                      (pc)
                      (label_ref (match_operand 0 "" ""))))]
   ""
-  "*
-#ifdef MOTOROLA
-  return \"jbcc %l0\";
-#else
-  return \"jcc %l0\";
-#endif
-")
+{
+  return MOTOROLA ? "jbcc %l0" : "jcc %l0";
+})
 
 (define_insn ""
   [(set (pc)
                      (pc)
                      (label_ref (match_operand 0 "" ""))))]
   ""
-  "*
-#ifdef MOTOROLA
-  OUTPUT_JUMP (\"jblt %l0\", \"fbnge %l0\", \"jbmi %l0\");
-#else
-  OUTPUT_JUMP (\"jlt %l0\", \"fjnge %l0\", \"jmi %l0\");
-#endif
-")
+{
+  if (MOTOROLA)
+    OUTPUT_JUMP ("jblt %l0", "fbnge %l0", "jbmi %l0");
+  else
+    OUTPUT_JUMP ("jlt %l0", "fjnge %l0", "jmi %l0");
+})
 
 (define_insn ""
   [(set (pc)
                      (pc)
                      (label_ref (match_operand 0 "" ""))))]
   ""
-  "*
-#ifdef MOTOROLA
-  return \"jbcs %l0\";
-#else
-  return \"jcs %l0\";
-#endif
-")
+{
+  return MOTOROLA ? "jbcs %l0" : "jcs %l0";
+})
 
 (define_insn ""
   [(set (pc)
                      (pc)
                      (label_ref (match_operand 0 "" ""))))]
   ""
-  "*
-#ifdef MOTOROLA
-  OUTPUT_JUMP (\"jbgt %l0\", \"fbnle %l0\", 0);
-#else
-  OUTPUT_JUMP (\"jgt %l0\", \"fjnle %l0\", 0);
-#endif
-")
+{
+  if (MOTOROLA)
+    OUTPUT_JUMP ("jbgt %l0", "fbnle %l0", 0);
+  else
+    OUTPUT_JUMP ("jgt %l0", "fjnle %l0", 0);
+})
 
 (define_insn ""
   [(set (pc)
                      (pc)
                      (label_ref (match_operand 0 "" ""))))]
   ""
-  "*
-#ifdef MOTOROLA
-  return \"jbhi %l0\";
-#else
-  return \"jhi %l0\";
-#endif
-")
+{
+  return MOTOROLA ? "jbhi %l0" : "jhi %l0";
+})
 
 (define_insn "*bordered_rev"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fbun %l0";
-#else
-  return "fjun %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbun %l0" : "fjun %l0";
 })
 
 (define_insn "*bunordered_rev"
                      (label_ref (match_operand 0 "" ""))))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fbor %l0";
-#else
-  return "fjor %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbor %l0" : "fjor %l0";
 })
 
 (define_insn "*buneq_rev"
                      (label_ref (match_operand 0 "" ""))))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fbogl %l0";
-#else
-  return "fjogl %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbogl %l0" : "fjogl %l0";
 })
 
 (define_insn "*bunge_rev"
                      (label_ref (match_operand 0 "" ""))))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fbolt %l0";
-#else
-  return "fjolt %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbolt %l0" : "fjolt %l0";
+})
+
+(define_insn "*bungt_rev"
+  [(set (pc)
+       (if_then_else (ungt (cc0) (const_int 0))
+                     (pc)
+                     (label_ref (match_operand 0 "" ""))))]
+  "TARGET_68881"
+{
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbole %l0" : "fjole %l0";
 })
 
 (define_insn "*bunle_rev"
                      (label_ref (match_operand 0 "" ""))))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fbogt %l0";
-#else
-  return "fjogt %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbogt %l0" : "fjogt %l0";
 })
 
 (define_insn "*bunlt_rev"
                      (label_ref (match_operand 0 "" ""))))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fboge %l0";
-#else
-  return "fjoge %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fboge %l0" : "fjoge %l0";
 })
 
 (define_insn "*bltgt_rev"
                      (label_ref (match_operand 0 "" ""))))]
   "TARGET_68881"
 {
-  if (!(cc_prev_status.flags & CC_IN_68881))
-    abort ();
-#ifdef MOTOROLA
-  return "fbueq %l0";
-#else
-  return "fjueq %l0";
-#endif
+  gcc_assert (cc_prev_status.flags & CC_IN_68881);
+  return MOTOROLA ? "fbueq %l0" : "fjueq %l0";
 })
 \f
 ;; Unconditional and other jump instructions
   [(set (pc)
        (label_ref (match_operand 0 "" "")))]
   ""
-  "*
-#ifdef MOTOROLA
-  return \"jbra %l0\";
-#else
-  return \"jra %l0\";
-#endif
-")
+{
+  return MOTOROLA ? "jbra %l0" : "jra %l0";
+})
 
-;; We support two different ways of handling dispatch tables.
-;; The NeXT uses absolute tables, and other machines use relative.
-;; This define_expand can generate either kind.
 (define_expand "tablejump"
   [(parallel [(set (pc) (match_operand 0 "" ""))
              (use (label_ref (match_operand 1 "" "")))])]
   ""
-  "
 {
 #ifdef CASE_VECTOR_PC_RELATIVE
     operands[0] = gen_rtx_PLUS (SImode, pc_rtx,
                                gen_rtx_SIGN_EXTEND (SImode, operands[0]));
 #endif
-}")
+})
 
 ;; Jump to variable address from dispatch table of absolute addresses.
 (define_insn ""
   [(set (pc) (match_operand:SI 0 "register_operand" "a"))
    (use (label_ref (match_operand 1 "" "")))]
   ""
-  "*
-#ifdef MOTOROLA
-  return \"jmp (%0)\";
-#else
-  return \"jmp %0@\";
-#endif
-")
+{
+  return MOTOROLA ? "jmp (%0)" : "jmp %0@";
+})
 
 ;; Jump to variable address from dispatch table of relative addresses.
 (define_insn ""
                 (sign_extend:SI (match_operand:HI 0 "register_operand" "r"))))
    (use (label_ref (match_operand 1 "" "")))]
   ""
-  "*
+{
 #ifdef ASM_RETURN_CASE_JUMP
- ASM_RETURN_CASE_JUMP;
-#else
-#ifdef SGS
-#ifdef ASM_OUTPUT_CASE_LABEL
-  if (TARGET_5200) 
-    {
-      if (ADDRESS_REG_P (operands[0]))
-       return \"jmp 6(%%pc,%0.l)\";
-      else
-       return \"ext%.l %0\;jmp 6(%%pc,%0.l)\";
-    }
-  else
-    return \"jmp 6(%%pc,%0.w)\";
+  ASM_RETURN_CASE_JUMP;
 #else
-  if (TARGET_5200)
-    {
-      if (ADDRESS_REG_P (operands[0]))
-       return \"jmp 2(%%pc,%0.l)\";
-      else
-       return \"extl %0\;jmp 2(%%pc,%0.l)\";
-    }
-  else
-    return \"jmp 2(%%pc,%0.w)\";
-#endif
-#else /* not SGS */
-  if (TARGET_5200)
+  if (TARGET_COLDFIRE)
     {
       if (ADDRESS_REG_P (operands[0]))
-       {
-#ifdef MOTOROLA
-         return \"jmp (2,pc,%0.l)\";
-#else
-         return \"jmp pc@(2,%0:l)\";
-#endif
-       }
+       return MOTOROLA ? "jmp (2,pc,%0.l)" : "jmp pc@(2,%0:l)";
+      else if (MOTOROLA)
+       return "ext%.l %0\;jmp (2,pc,%0.l)";
       else
-       {
-#ifdef MOTOROLA
-         return \"ext%.l %0\;jmp (2,pc,%0.l)\";
-#else
-         return \"extl %0\;jmp pc@(2,%0:l)\";
-#endif
-       }
+       return "extl %0\;jmp pc@(2,%0:l)";
     }
   else
-    {
-#ifdef MOTOROLA
-      return \"jmp (2,pc,%0.w)\";
-#else
-      return \"jmp pc@(2,%0:w)\";
-#endif
-    }
-#endif
+    return MOTOROLA ? "jmp (2,pc,%0.w)" : "jmp pc@(2,%0:w)";
 #endif
-")
+})
 
 ;; Decrement-and-branch insns.
 (define_insn ""
    (set (match_dup 0)
        (plus:HI (match_dup 0)
                 (const_int -1)))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   CC_STATUS_INIT;
   if (DATA_REG_P (operands[0]))
-    return \"dbra %0,%l1\";
+    return "dbra %0,%l1";
   if (GET_CODE (operands[0]) == MEM)
-    {
-#ifdef MOTOROLA
-#ifdef NO_ADDSUB_Q
-      return \"sub%.w %#1,%0\;jbcc %l1\";
-#else
-      return \"subq%.w %#1,%0\;jbcc %l1\";
-#endif
-#else /* not MOTOROLA */
-      return \"subqw %#1,%0\;jcc %l1\";
-#endif
-    }
-#ifdef MOTOROLA
-#ifdef SGS_CMP_ORDER
-#ifdef NO_ADDSUB_Q
-  return \"sub%.w %#1,%0\;cmp%.w %0,%#-1\;jbne %l1\";
-#else
-  return \"subq%.w %#1,%0\;cmp%.w %0,%#-1\;jbne %l1\";
-#endif
-#else /* not SGS_CMP_ORDER */
-  return \"subq%.w %#1,%0\;cmp%.w %#-1,%0\;jbne %l1\";
-#endif
-#else /* not MOTOROLA */
-  return \"subqw %#1,%0\;cmpw %#-1,%0\;jne %l1\";
-#endif
-}")
+    return MOTOROLA ?
+      "subq%.w #1,%0\;jbcc %l1" :
+      "subqw #1,%0\;jcc %l1";
+  return MOTOROLA ?
+    "subq%.w #1,%0\;cmp%.w #-1,%0\;jbne %l1" :
+    "subqw #1,%0\;cmpw #-1,%0\;jne %l1";
+})
 
 (define_insn ""
   [(set (pc)
    (set (match_dup 0)
        (plus:SI (match_dup 0)
                 (const_int -1)))]
-  "!TARGET_5200"
-  "*
+  "!TARGET_COLDFIRE"
 {
   CC_STATUS_INIT;
-#ifdef MOTOROLA
-#ifdef NO_ADDSUB_Q
-  if (DATA_REG_P (operands[0]))
-    return \"dbra %0,%l1\;clr%.w %0\;sub%.l %#1,%0\;jbcc %l1\";
-  if (GET_CODE (operands[0]) == MEM)
-    return \"sub%.l %#1,%0\;jbcc %l1\";
-#else
-  if (DATA_REG_P (operands[0]))
-    return \"dbra %0,%l1\;clr%.w %0\;subq%.l %#1,%0\;jbcc %l1\";
-  if (GET_CODE (operands[0]) == MEM)
-    return \"subq%.l %#1,%0\;jbcc %l1\";
-#endif /* NO_ADDSUB_Q */
-#ifdef SGS_CMP_ORDER
-#ifdef NO_ADDSUB_Q
-  return \"sub.l %#1,%0\;cmp.l %0,%#-1\;jbne %l1\";
-#else
-  return \"subq.l %#1,%0\;cmp.l %0,%#-1\;jbne %l1\";
-#endif
-#else /* not SGS_CMP_ORDER */
-  return \"subq.l %#1,%0\;cmp.l %#-1,%0\;jbne %l1\";
-#endif /* not SGS_CMP_ORDER */
-#else /* not MOTOROLA */
   if (DATA_REG_P (operands[0]))
-    return \"dbra %0,%l1\;clr%.w %0\;subql %#1,%0\;jcc %l1\";
+    return MOTOROLA ?
+      "dbra %0,%l1\;clr%.w %0\;subq%.l #1,%0\;jbcc %l1" :
+      "dbra %0,%l1\;clr%.w %0\;subq%.l #1,%0\;jcc %l1";
   if (GET_CODE (operands[0]) == MEM)
-    return \"subql %#1,%0\;jcc %l1\";
-  return \"subql %#1,%0\;cmpl %#-1,%0\;jne %l1\";
-#endif /* not MOTOROLA */
-}")
+    return MOTOROLA ?
+      "subq%.l #1,%0\;jbcc %l1" :
+      "subq%.l #1,%0\;jcc %l1";
+  return MOTOROLA ?
+    "subq.l #1,%0\;cmp.l #-1,%0\;jbne %l1" :
+    "subql #1,%0\;cmpl #-1,%0\;jne %l1";
+})
 
 ;; Two dbra patterns that use REG_NOTES info generated by strength_reduce.
 
    (set (match_dup 0)
        (plus:HI (match_dup 0)
                 (const_int -1)))]
-  "!TARGET_5200 && find_reg_note (insn, REG_NONNEG, 0)"
-  "*
+  "!TARGET_COLDFIRE && find_reg_note (insn, REG_NONNEG, 0)"
 {
   CC_STATUS_INIT;
-#ifdef MOTOROLA
-#ifdef NO_ADDSUB_Q
-  if (DATA_REG_P (operands[0]))
-    return \"dbra %0,%l1\";
-  if (GET_CODE (operands[0]) == MEM)
-    return \"sub%.w %#1,%0\;jbcc %l1\";
-#else
-  if (DATA_REG_P (operands[0]))
-    return \"dbra %0,%l1\";
-  if (GET_CODE (operands[0]) == MEM)
-    return \"subq%.w %#1,%0\;jbcc %l1\";
-#endif
-#ifdef SGS_CMP_ORDER
-#ifdef NO_ADDSUB_Q
-  return \"sub.w %#1,%0\;cmp.w %0,%#-1\;jbne %l1\";
-#else
-  return \"subq.w %#1,%0\;cmp.w %0,%#-1\;jbne %l1\";
-#endif
-#else /* not SGS_CMP_ORDER */
-  return \"subq.w %#1,%0\;cmp.w %#-1,%0\;jbne %l1\";
-#endif /* not SGS_CMP_ORDER */
-#else /* not MOTOROLA */
   if (DATA_REG_P (operands[0]))
-    return \"dbra %0,%l1\";
+    return "dbra %0,%l1";
   if (GET_CODE (operands[0]) == MEM)
-    return \"subqw %#1,%0\;jcc %l1\";
-  return \"subqw %#1,%0\;cmpw %#-1,%0\;jne %l1\";
-#endif /* not MOTOROLA */
-}")
+    return MOTOROLA ?
+      "subq%.w #1,%0\;jbcc %l1" :
+      "subq%.w #1,%0\;jcc %l1";
+  return MOTOROLA ?
+    "subq.w #1,%0\;cmp.w #-1,%0\;jbne %l1" :
+    "subqw #1,%0\;cmpw #-1,%0\;jne %l1";
+})
 
 (define_expand "decrement_and_branch_until_zero"
   [(parallel [(set (pc)
    (set (match_dup 0)
        (plus:SI (match_dup 0)
                 (const_int -1)))]
-  "!TARGET_5200 && find_reg_note (insn, REG_NONNEG, 0)"
-  "*
+  "!TARGET_COLDFIRE && find_reg_note (insn, REG_NONNEG, 0)"
 {
   CC_STATUS_INIT;
-#ifdef MOTOROLA
-#ifdef NO_ADDSUB_Q
   if (DATA_REG_P (operands[0]))
-    return \"dbra %0,%l1\;clr%.w %0\;sub%.l %#1,%0\;jbcc %l1\";
+    return MOTOROLA ?
+      "dbra %0,%l1\;clr%.w %0\;subq%.l #1,%0\;jbcc %l1" :
+      "dbra %0,%l1\;clr%.w %0\;subql #1,%0\;jcc %l1";
   if (GET_CODE (operands[0]) == MEM)
-    return \"sub%.l %#1,%0\;jbcc %l1\";
-#else
-  if (DATA_REG_P (operands[0]))
-    return \"dbra %0,%l1\;clr%.w %0\;subq%.l %#1,%0\;jbcc %l1\";
-  if (GET_CODE (operands[0]) == MEM)
-    return \"subq%.l %#1,%0\;jbcc %l1\";
-#endif
-#ifdef SGS_CMP_ORDER
-#ifdef NO_ADDSUB_Q
-  return \"sub.l %#1,%0\;cmp.l %0,%#-1\;jbne %l1\";
-#else
-  return \"subq.l %#1,%0\;cmp.l %0,%#-1\;jbne %l1\";
-#endif
-#else /* not SGS_CMP_ORDER */
-  return \"subq.l %#1,%0\;cmp.l %#-1,%0\;jbne %l1\";
-#endif /* not SGS_CMP_ORDER */
-#else /* not MOTOROLA */
-  if (DATA_REG_P (operands[0]))
-    return \"dbra %0,%l1\;clr%.w %0\;subql %#1,%0\;jcc %l1\";
-  if (GET_CODE (operands[0]) == MEM)
-    return \"subql %#1,%0\;jcc %l1\";
-  return \"subql %#1,%0\;cmpl %#-1,%0\;jne %l1\";
-#endif /* not MOTOROLA */
-}")
-
-
-;; For PIC calls, in order to be able to support
-;; dynamic linker LAZY BINDING, all the procedure calls need to go
-;; through the PLT (Procedure Linkage Table) section in PIC mode.
-;;
-;; PIC calls are handled by loading the address of the function into a
-;; register (via movsi), then emitting a register indirect call using
-;; the "jsr" function call syntax.
-;;
-;; When outputting MIT syntax (e.g. on Suns), we add a bogus extra
-;; operand to the jbsr statement to indicate that this call should
-;; go through the PLT (why? because this is the way that Sun does it).
-;;
-;; We have different patterns for PIC calls and non-PIC calls.  The
-;; different patterns are only used to choose the right syntax.
-;;
-;; The svr4 m68k assembler recognizes this syntax: `bsr FUNC@PLTPC' and it
-;; will create the correct relocation entry (R_68K_PLT32) for `FUNC',
-;; that tells the linker editor to create an entry for `FUNC' in PLT
-;; section at link time. However, all global objects reference are still
-;; done by using `OBJ@GOT'. So, the goal here is to output the function
-;; call operand as `FUNC@PLTPC', but output object operand as `OBJ@GOT'.
-;; We need to have a way to differentiate these two different operands.
-;;
-;; The strategy I use here is to use SYMBOL_REF_FLAG to differentiate
-;; these two different operands. The macro LEGITIMATE_PIC_OPERAND_P needs
-;; to be changed to recognize function calls symbol_ref operand as a valid
-;; PIC operand (by checking whether SYMBOL_REF_FLAG is set). This will
-;; avoid the compiler to load this symbol_ref operand into a register.
-;; Remember, the operand "foo@PLTPC" cannot be called via jsr directly
-;; since the value is a PC relative offset, not a real address.
-;;
-;; All global objects are treated in the similar way as in SUN3. The only
-;; difference is: on m68k svr4, the reference of such global object needs
-;; to end with a suffix "@GOT" so the assembler and linker know to create
-;; an entry for it in GOT (Global Offset Table) section. This is done in
-;; m68k.c.
+    return MOTOROLA ?
+      "subq%.l #1,%0\;jbcc %l1" :
+      "subql #1,%0\;jcc %l1";
+  return MOTOROLA ?
+    "subq.l #1,%0\;cmp.l #-1,%0\;jbne %l1" :
+    "subql #1,%0\;cmpl #-1,%0\;jne %l1";
+})
 
 ;; Call subroutine with no return value.
 (define_expand "call"
   [(call (match_operand:QI 0 "memory_operand" "")
         (match_operand:SI 1 "general_operand" ""))]
   ;; Operand 1 not really used on the m68000.
-
   ""
-  "
 {
-  if (flag_pic && GET_CODE (XEXP (operands[0], 0)) == SYMBOL_REF)
-    SYMBOL_REF_FLAG (XEXP (operands[0], 0)) = 1;
-}")
-
-;; This is a normal call sequence.
-(define_insn ""
-  [(call (match_operand:QI 0 "memory_operand" "o")
-        (match_operand:SI 1 "general_operand" "g"))]
-  ;; Operand 1 not really used on the m68000.
-
-  "! flag_pic"
-  "*
-#if defined (MOTOROLA) && !defined (USE_GAS)
-#ifdef MOTOROLA_BSR
-  if (GET_CODE (operands[0]) == MEM
-      && GET_CODE (XEXP (operands[0], 0)) == SYMBOL_REF)
-    return \"bsr %0\";
-#endif
-  return \"jsr %0\";
-#else
-  return \"jbsr %0\";
-#endif
-")
+  operands[0] = m68k_legitimize_call_address (operands[0]);
+})
 
-;; This is a PIC call sequence.
-(define_insn ""
-  [(call (match_operand:QI 0 "memory_operand" "o")
-        (match_operand:SI 1 "general_operand" "g"))]
+(define_insn "*call"
+  [(call (mem:QI (match_operand:SI 0 "call_operand" "a,W"))
+        (match_operand:SI 1 "general_operand" "g,g"))]
   ;; Operand 1 not really used on the m68000.
-
-  "flag_pic"
-  "*
-  if (GET_CODE (operands[0]) == MEM
-      && GET_CODE (XEXP (operands[0], 0)) == SYMBOL_REF)
-    {
-      if (TARGET_PCREL) return \"bsr.l %o0\";
-#ifdef MOTOROLA
-#ifdef HPUX_ASM
-      return \"bsr.l %0\";
-#else
-#ifdef USE_GAS
-      return \"bsr.l %0@PLTPC\";
-#else
-      return \"bsr %0@PLTPC\";
-#endif
-#endif
-#else
-#ifdef USE_GAS
-      return \"bsr.l %0\";
-#else
-      /* The ',a1' is a dummy argument telling the Sun assembler we want PIC,
-        GAS just plain ignores it.  FIXME: not anymore, gas doesn't!  */
-      return \"jbsr %0,a1\";
-#endif
-#endif
-    }
-  return \"jsr %0\";
-")
+  ""
+{
+  return output_call (operands[0]);
+})
 
 ;; Call subroutine, returning value in operand 0
 ;; (which must be a hard register).
-;; See comments before "call" regarding PIC calls.
 (define_expand "call_value"
   [(set (match_operand 0 "" "")
        (call (match_operand:QI 1 "memory_operand" "")
-     (match_operand:SI 2 "general_operand" "")))]
+             (match_operand:SI 2 "general_operand" "")))]
   ;; Operand 2 not really used on the m68000.
   ""
-  "
 {
-  if (flag_pic && GET_CODE (XEXP (operands[1], 0)) == SYMBOL_REF)
-    SYMBOL_REF_FLAG (XEXP (operands[1], 0)) = 1;
-}")
-
-;; This is a normal call_value
-(define_insn ""
-  [(set (match_operand 0 "" "=rf")
-       (call (match_operand:QI 1 "memory_operand" "o")
-             (match_operand:SI 2 "general_operand" "g")))]
-  ;; Operand 2 not really used on the m68000.
-  "! flag_pic"
-  "*
-#if defined (MOTOROLA) && !defined (USE_GAS)
-#ifdef MOTOROLA_BSR
-  if (GET_CODE (operands[1]) == MEM
-      && GET_CODE (XEXP (operands[1], 0)) == SYMBOL_REF)
-    return \"bsr %1\";
-#endif
-  return \"jsr %1\";
-#else
-  return \"jbsr %1\";
-#endif
-")
+  operands[1] = m68k_legitimize_call_address (operands[1]);
+})
 
-;; This is a PIC call_value
-(define_insn ""
-  [(set (match_operand 0 "" "=rf")
-       (call (match_operand:QI 1 "memory_operand" "o")
-             (match_operand:SI 2 "general_operand" "g")))]
+(define_insn "*call_value"
+  [(set (match_operand 0 "" "=rf,rf")
+       (call (mem:QI (match_operand:SI 1 "call_operand" "a,W"))
+             (match_operand:SI 2 "general_operand" "g,g")))]
   ;; Operand 2 not really used on the m68000.
-  "flag_pic"
-  "*
-  if (GET_CODE (operands[1]) == MEM
-      && GET_CODE (XEXP (operands[1], 0)) == SYMBOL_REF)
-    {
-      if (TARGET_PCREL) return \"bsr.l %o1\";
-#ifdef MOTOROLA
-#ifdef HPUX_ASM
-      return \"bsr.l %1\";
-#else
-#ifdef USE_GAS
-      return \"bsr.l %1@PLTPC\";
-#else
-      return \"bsr %1@PLTPC\";
-#endif
-#endif
-#else
-#ifdef USE_GAS
-      return \"bsr.l %1\";
-#else
-      /* The ',a1' is a dummy argument telling the Sun assembler we want PIC
-         GAS just plain ignores it.  FIXME: Not anymore, gas doesn't!  */
-      return \"jbsr %1,a1\";
-#endif
-#endif
-    }
-  return \"jsr %1\";
-")
+  ""
+{
+  operands[0] = operands[1];
+  return output_call (operands[0]);
+})
 
 ;; Call subroutine returning any type.
 
              (match_operand 1 "" "")
              (match_operand 2 "" "")])]
   "NEEDS_UNTYPED_CALL"
-  "
 {
   int i;
 
   emit_insn (gen_blockage ());
 
   DONE;
-}")
+})
 
 ;; UNSPEC_VOLATILE is considered to use and clobber all hard registers and
 ;; all of memory.  This blocks insns from being moved across this point.
 (define_insn "return"
   [(return)]
   "USE_RETURN_INSN"
-  "*
 {
   if (current_function_pops_args == 0)
-    return \"rts\";
+    return "rts";
   operands[0] = GEN_INT (current_function_pops_args);
-  return \"rtd %0\";
-}")
+  return "rtd %0";
+})
 
 (define_insn "indirect_jump"
   [(set (pc) (match_operand:SI 0 "address_operand" "p"))]
   [(set (match_operand:SI 0 "nonimmediate_operand" "=a")
        (match_operand:QI 1 "address_operand" "p"))]
   ""
-  "*
 {
-#ifndef SGS_NO_LI
   /* Recognize an insn that refers to a table of offsets.  Such an insn will
      need to refer to a label on the insn.  So output one.  Use the
      label-number of the table of offsets to generate this label.  This code,
       && GET_CODE (XEXP (operands[1], 0)) != PLUS)
     {
       rtx labelref = XEXP (operands[1], 1);
-#if defined (MOTOROLA) && !defined (SGS_SWITCH_TABLES)
-#ifdef SGS
-      asm_fprintf (asm_out_file, \"\\tset %LLI%d,.+2\\n\",
-                  CODE_LABEL_NUMBER (XEXP (labelref, 0)));
-#else /* not SGS */
-      asm_fprintf (asm_out_file, \"\\t.set %LLI%d,.+2\\n\",
-                  CODE_LABEL_NUMBER (XEXP (labelref, 0)));
-#endif /* not SGS */
-#else /* SGS_SWITCH_TABLES or not MOTOROLA */
-      (*targetm.asm_out.internal_label) (asm_out_file, \"LI\",
-                                CODE_LABEL_NUMBER (XEXP (labelref, 0)));
-#ifdef SGS_SWITCH_TABLES
-      /* Set flag saying we need to define the symbol
-        LD%n (with value L%n-LI%n) at the end of the switch table.  */
-      switch_table_difference_label_flag = 1;
-#endif /* SGS_SWITCH_TABLES */
-#endif /* SGS_SWITCH_TABLES or not MOTOROLA */
-    }
-#endif /* SGS_NO_LI */
-
-  return \"lea %a1,%0\";
-}")
+      if (MOTOROLA)
+        asm_fprintf (asm_out_file, "\\t.set %LLI%d,.+2\\n",
+                    CODE_LABEL_NUMBER (XEXP (labelref, 0)));
+      else
+        (*targetm.asm_out.internal_label) (asm_out_file, "LI",
+                    CODE_LABEL_NUMBER (XEXP (labelref, 0)));
+    }
+  return "lea %a1,%0";
+})
 \f
 ;; This is the first machine-dependent peephole optimization.
 ;; It is useful when a floating value is returned from a function call
 ;; But it is mainly intended to test the support for these optimizations.
 
 (define_peephole
-  [(set (reg:SI 15) (plus:SI (reg:SI 15) (const_int 4)))
+  [(set (reg:SI SP_REG) (plus:SI (reg:SI SP_REG) (const_int 4)))
    (set (match_operand:DF 0 "register_operand" "=f")
        (match_operand:DF 1 "register_operand" "ad"))]
   "FP_REG_P (operands[0]) && ! FP_REG_P (operands[1])"
-  "*
 {
   rtx xoperands[2];
   xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
-  output_asm_insn (\"move%.l %1,%@\", xoperands);
-  output_asm_insn (\"move%.l %1,%-\", operands);
-  return \"fmove%.d %+,%0\";
-}
-")
+  output_asm_insn ("move%.l %1,%@", xoperands);
+  output_asm_insn ("move%.l %1,%-", operands);
+  return "fmove%.d %+,%0";
+})
 
 ;; Optimize a stack-adjust followed by a push of an argument.
 ;; This is said to happen frequently with -msoft-float
 ;; when there are consecutive library calls.
 
 (define_peephole
-  [(set (reg:SI 15) (plus:SI (reg:SI 15)
-                            (match_operand:SI 0 "const_int_operand" "n")))
+  [(set (reg:SI SP_REG) (plus:SI (reg:SI SP_REG)
+                                (match_operand:SI 0 "const_int_operand" "n")))
    (set (match_operand:SF 1 "push_operand" "=m")
        (match_operand:SF 2 "general_operand" "rmfF"))]
   "INTVAL (operands[0]) >= 4
    && ! reg_mentioned_p (stack_pointer_rtx, operands[2])"
-  "*
 {
   if (INTVAL (operands[0]) > 4)
     {
       rtx xoperands[2];
       xoperands[0] = stack_pointer_rtx;
       xoperands[1] = GEN_INT (INTVAL (operands[0]) - 4);
-#ifndef NO_ADDSUB_Q
       if (INTVAL (xoperands[1]) <= 8)
        {
-         if (!TARGET_5200)
-           output_asm_insn (\"addq%.w %1,%0\", xoperands);
+         if (!TARGET_COLDFIRE)
+           output_asm_insn ("addq%.w %1,%0", xoperands);
          else
-           output_asm_insn (\"addq%.l %1,%0\", xoperands);
+           output_asm_insn ("addq%.l %1,%0", xoperands);
        }
-      else if (TARGET_CPU32 && INTVAL (xoperands[1]) <= 16) 
+      else if (TUNE_CPU32 && INTVAL (xoperands[1]) <= 16)
        {
          xoperands[1] = GEN_INT (INTVAL (xoperands[1]) - 8);
-         output_asm_insn (\"addq%.w %#8,%0\;addq%.w %1,%0\", xoperands);
+         output_asm_insn ("addq%.w #8,%0\;addq%.w %1,%0", xoperands);
        }
-      else
-#endif
-        if (INTVAL (xoperands[1]) <= 0x7FFF)
+      else if (INTVAL (xoperands[1]) <= 0x7FFF)
         {
-         if (TARGET_68040)
-           output_asm_insn (\"add%.w %1,%0\", xoperands);
+         if (TUNE_68040)
+           output_asm_insn ("add%.w %1,%0", xoperands);
+         else if (MOTOROLA)
+           output_asm_insn ("lea (%c1,%0),%0", xoperands);
          else
-#ifdef MOTOROLA  
-           output_asm_insn (\"lea (%c1,%0),%0\", xoperands);
-#else
-           output_asm_insn (\"lea %0@(%c1),%0\", xoperands);
-#endif
+           output_asm_insn ("lea %0@(%c1),%0", xoperands);
         }
       else
-        output_asm_insn (\"add%.l %1,%0\", xoperands);
+        output_asm_insn ("add%.l %1,%0", xoperands);
     }
   if (FP_REG_P (operands[2]))
-    return \"fmove%.s %2,%@\";
-  return \"move%.l %2,%@\";
-}")
+    return "fmove%.s %2,%@";
+  return "move%.l %2,%@";
+})
 
 ;; Speed up stack adjust followed by a fullword fixedpoint push.
 
 (define_peephole
-  [(set (reg:SI 15) (plus:SI (reg:SI 15)
-                            (match_operand:SI 0 "const_int_operand" "n")))
+  [(set (reg:SI SP_REG) (plus:SI (reg:SI SP_REG)
+                                (match_operand:SI 0 "const_int_operand" "n")))
    (set (match_operand:SI 1 "push_operand" "=m")
        (match_operand:SI 2 "general_operand" "g"))]
   "INTVAL (operands[0]) >= 4
    && ! reg_mentioned_p (stack_pointer_rtx, operands[2])"
-  "*
 {
   if (INTVAL (operands[0]) > 4)
     {
       rtx xoperands[2];
       xoperands[0] = stack_pointer_rtx;
       xoperands[1] = GEN_INT (INTVAL (operands[0]) - 4);
-#ifndef NO_ADDSUB_Q
       if (INTVAL (xoperands[1]) <= 8)
        {
-         if (!TARGET_5200)
-           output_asm_insn (\"addq%.w %1,%0\", xoperands);
+         if (!TARGET_COLDFIRE)
+           output_asm_insn ("addq%.w %1,%0", xoperands);
          else
-           output_asm_insn (\"addq%.l %1,%0\", xoperands);
+           output_asm_insn ("addq%.l %1,%0", xoperands);
        }
-      else if (TARGET_CPU32 && INTVAL (xoperands[1]) <= 16)
+      else if (TUNE_CPU32 && INTVAL (xoperands[1]) <= 16)
        {
          xoperands[1] = GEN_INT (INTVAL (xoperands[1]) - 8);
-         output_asm_insn (\"addq%.w %#8,%0\;addq%.w %1,%0\", xoperands);
+         output_asm_insn ("addq%.w #8,%0\;addq%.w %1,%0", xoperands);
        }
-      else
-#endif
-        if (INTVAL (xoperands[1]) <= 0x7FFF)
+      else if (INTVAL (xoperands[1]) <= 0x7FFF)
         {
-         if (TARGET_68040)
-           output_asm_insn (\"add%.w %1,%0\", xoperands);
+         if (TUNE_68040)
+           output_asm_insn ("add%.w %1,%0", xoperands);
+         else if (MOTOROLA)
+           output_asm_insn ("lea (%c1,%0),%0", xoperands);
          else
-           {
-#ifdef MOTOROLA  
-             output_asm_insn (\"lea (%c1,%0),%0\", xoperands);
-#else
-             output_asm_insn (\"lea %0@(%c1),%0\", xoperands);
-#endif
-           }
+           output_asm_insn ("lea %0@(%c1),%0", xoperands);
         }
       else
-        output_asm_insn (\"add%.l %1,%0\", xoperands);
+        output_asm_insn ("add%.l %1,%0", xoperands);
     }
   if (operands[2] == const0_rtx)
-    return \"clr%.l %@\";
-  return \"move%.l %2,%@\";
-}")
+    return "clr%.l %@";
+  return "move%.l %2,%@";
+})
 
 ;; Speed up pushing a single byte but leaving four bytes of space.
 
 (define_peephole
-  [(set (mem:QI (pre_dec:SI (reg:SI 15)))
+  [(set (mem:QI (pre_dec:SI (reg:SI SP_REG)))
        (match_operand:QI 1 "general_operand" "dami"))
-   (set (reg:SI 15) (minus:SI (reg:SI 15) (const_int 2)))]
+   (set (reg:SI SP_REG) (minus:SI (reg:SI SP_REG) (const_int 2)))]
   "! reg_mentioned_p (stack_pointer_rtx, operands[1])"
-  "*
 {
   rtx xoperands[4];
 
   if (GET_CODE (operands[1]) == REG)
-    return \"move%.l %1,%-\";
+    return "move%.l %1,%-";
 
   xoperands[1] = operands[1];
   xoperands[2]
     = gen_rtx_MEM (QImode, plus_constant (stack_pointer_rtx, 3));
   xoperands[3] = stack_pointer_rtx;
-  if (!TARGET_5200)
-    output_asm_insn (\"subq%.w %#4,%3\;move%.b %1,%2\", xoperands);
+  if (!TARGET_COLDFIRE)
+    output_asm_insn ("subq%.w #4,%3\;move%.b %1,%2", xoperands);
   else
-    output_asm_insn (\"subq%.l %#4,%3\;move%.b %1,%2\", xoperands);
-  return \"\";
-}")
+    output_asm_insn ("subq%.l #4,%3\;move%.b %1,%2", xoperands);
+  return "";
+})
 
 (define_peephole
   [(set (match_operand:SI 0 "register_operand" "=d")
    (set (strict_low_part (subreg:HI (match_dup 0) 2))
        (match_operand:HI 1 "general_operand" "rmn"))]
   "strict_low_part_peephole_ok (HImode, prev_nonnote_insn (insn), operands[0])"
-  "*
 {
   if (GET_CODE (operands[1]) == CONST_INT)
     {
       if (operands[1] == const0_rtx
          && (DATA_REG_P (operands[0])
              || GET_CODE (operands[0]) == MEM)
-         /* clr insns on 68000 read before writing.
-            This isn't so on the 68010, but we have no TARGET_68010.  */
-         && ((TARGET_68020 || TARGET_5200)
+         /* clr insns on 68000 read before writing.  */
+         && ((TARGET_68010 || TARGET_COLDFIRE)
              || !(GET_CODE (operands[0]) == MEM
                   && MEM_VOLATILE_P (operands[0]))))
-       return \"clr%.w %0\";
+       return "clr%.w %0";
     }
-  return \"move%.w %1,%0\";
-}")
+  return "move%.w %1,%0";
+})
 
 ;; dbCC peepholes
 ;;
      (set (match_dup 0)
          (plus:HI (match_dup 0)
                   (const_int -1)))])]
-  "!TARGET_5200 && DATA_REG_P (operands[0]) && ! flags_in_68881 ()"
-  "*
+  "!TARGET_COLDFIRE && DATA_REG_P (operands[0]) && ! flags_in_68881 ()"
 {
   CC_STATUS_INIT;
   output_dbcc_and_branch (operands);
-  return \"\";
-}")
+  return "";
+})
 
 (define_peephole
   [(set (pc) (if_then_else (match_operator 3 "valid_dbcc_comparison_p"
      (set (match_dup 0)
          (plus:SI (match_dup 0)
                   (const_int -1)))])]
-  "!TARGET_5200 && DATA_REG_P (operands[0]) && ! flags_in_68881 ()"
-  "*
+  "!TARGET_COLDFIRE && DATA_REG_P (operands[0]) && ! flags_in_68881 ()"
 {
   CC_STATUS_INIT;
   output_dbcc_and_branch (operands);
-  return \"\";
-}")
+  return "";
+})
 
 (define_peephole
   [(set (pc) (if_then_else (match_operator 3 "valid_dbcc_comparison_p"
      (set (match_dup 0)
          (plus:HI (match_dup 0)
                   (const_int -1)))])]
-  "!TARGET_5200 && DATA_REG_P (operands[0]) && ! flags_in_68881 ()"
-  "*
+  "!TARGET_COLDFIRE && DATA_REG_P (operands[0]) && ! flags_in_68881 ()"
 {
   CC_STATUS_INIT;
   output_dbcc_and_branch (operands);
-  return \"\";
-}")
+  return "";
+})
 
 (define_peephole
   [(set (pc) (if_then_else (match_operator 3 "valid_dbcc_comparison_p"
      (set (match_dup 0)
          (plus:SI (match_dup 0)
                   (const_int -1)))])]
-  "!TARGET_5200 && DATA_REG_P (operands[0]) && ! flags_in_68881 ()"
-  "*
+  "!TARGET_COLDFIRE && DATA_REG_P (operands[0]) && ! flags_in_68881 ()"
 {
   CC_STATUS_INIT;
   output_dbcc_and_branch (operands);
-  return \"\";
-}")
+  return "";
+})
 
 \f
-(define_expand "tstxf"
-  [(set (cc0)
-       (match_operand:XF 0 "nonimmediate_operand" ""))]
-  "TARGET_68881"
-  "m68k_last_compare_had_fp_operands = 1;")
-
-(define_insn ""
-  [(set (cc0)
-       (match_operand:XF 0 "nonimmediate_operand" "fm"))]
-  "TARGET_68881"
-  "*
-{
-  cc_status.flags = CC_IN_68881;
-  return \"ftst%.x %0\";
-}")
-
-(define_expand "cmpxf"
-  [(set (cc0)
-       (compare (match_operand:XF 0 "nonimmediate_operand" "")
-                (match_operand:XF 1 "nonimmediate_operand" "")))]
-  "TARGET_68881"
-  "m68k_last_compare_had_fp_operands = 1;")
-
-(define_insn ""
-  [(set (cc0)
-       (compare (match_operand:XF 0 "nonimmediate_operand" "f,m")
-                (match_operand:XF 1 "nonimmediate_operand" "fm,f")))]
-  "TARGET_68881"
-  "*
-{
-  cc_status.flags = CC_IN_68881;
-#ifdef SGS_CMP_ORDER
-  if (REG_P (operands[0]))
-    {
-      if (REG_P (operands[1]))
-       return \"fcmp%.x %0,%1\";
-      else
-        return \"fcmp%.x %0,%f1\";
-    }
-  cc_status.flags |= CC_REVERSED;
-  return \"fcmp%.x %1,%f0\";
-#else
-  if (REG_P (operands[0]))
-    {
-      if (REG_P (operands[1]))
-       return \"fcmp%.x %1,%0\";
-      else
-        return \"fcmp%.x %f1,%0\";
-    }
-  cc_status.flags |= CC_REVERSED;
-  return \"fcmp%.x %f0,%1\";
-#endif
-}")
-
 (define_insn "extendsfxf2"
   [(set (match_operand:XF 0 "nonimmediate_operand" "=fm,f")
        (float_extend:XF (match_operand:SF 1 "general_operand" "f,rmF")))]
   "TARGET_68881"
-  "*
 {
   if (FP_REG_P (operands[0]) && FP_REG_P (operands[1]))
     {
             NOTICE_UPDATE_CC has already assumed that the
             cc will be set.  So cancel what it did.  */
          cc_status = cc_prev_status;
-         return \"\";
+         return "";
        }
-      return \"f%$move%.x %1,%0\";
+      return "f%$move%.x %1,%0";
     }
   if (FP_REG_P (operands[0]))
     {
       if (FP_REG_P (operands[1]))
-       return \"f%$move%.x %1,%0\";
+       return "f%$move%.x %1,%0";
       else if (ADDRESS_REG_P (operands[1]))
-       return \"move%.l %1,%-\;f%$move%.s %+,%0\";
+       return "move%.l %1,%-\;f%$move%.s %+,%0";
       else if (GET_CODE (operands[1]) == CONST_DOUBLE)
        return output_move_const_single (operands);
-      return \"f%$move%.s %f1,%0\";
+      return "f%$move%.s %f1,%0";
     }
-  return \"fmove%.x %f1,%0\";
-}")
+  return "fmove%.x %f1,%0";
+})
 
 
 (define_insn "extenddfxf2"
        (float_extend:XF
           (match_operand:DF 1 "general_operand" "f,rmE")))]
   "TARGET_68881"
-  "*
 {
   if (FP_REG_P (operands[0]) && FP_REG_P (operands[1]))
     {
             NOTICE_UPDATE_CC has already assumed that the
             cc will be set.  So cancel what it did.  */
          cc_status = cc_prev_status;
-         return \"\";
+         return "";
        }
-      return \"fmove%.x %1,%0\";
+      return "fmove%.x %1,%0";
     }
   if (FP_REG_P (operands[0]))
     {
        {
          rtx xoperands[2];
          xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
-         output_asm_insn (\"move%.l %1,%-\", xoperands);
-         output_asm_insn (\"move%.l %1,%-\", operands);
-         return \"f%&move%.d %+,%0\";
+         output_asm_insn ("move%.l %1,%-", xoperands);
+         output_asm_insn ("move%.l %1,%-", operands);
+         return "f%&move%.d %+,%0";
        }
       if (GET_CODE (operands[1]) == CONST_DOUBLE)
        return output_move_const_double (operands);
-      return \"f%&move%.d %f1,%0\";
+      return "f%&move%.d %f1,%0";
     }
-  return \"fmove%.x %f1,%0\";
-}")
+  return "fmove%.x %f1,%0";
+})
 
 (define_insn "truncxfdf2"
   [(set (match_operand:DF 0 "nonimmediate_operand" "=m,!r")
        (float_truncate:DF
           (match_operand:XF 1 "general_operand" "f,f")))]
   "TARGET_68881"
-  "*
 {
   if (REG_P (operands[0]))
     {
-      output_asm_insn (\"fmove%.d %f1,%-\;move%.l %+,%0\", operands);
+      output_asm_insn ("fmove%.d %f1,%-\;move%.l %+,%0", operands);
       operands[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-      return \"move%.l %+,%0\";
+      return "move%.l %+,%0";
     }
-  return \"fmove%.d %f1,%0\";
-}")
+  return "fmove%.d %f1,%0";
+})
 
 (define_insn "truncxfsf2"
   [(set (match_operand:SF 0 "nonimmediate_operand" "=dm")
   "TARGET_68881"
   "fmove%.s %f1,%0")
 
-(define_insn "floatsixf2"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (float:XF (match_operand:SI 1 "general_operand" "dmi")))]
-  "TARGET_68881"
-  "fmove%.l %1,%0")
-
-(define_insn "floathixf2"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (float:XF (match_operand:HI 1 "general_operand" "dmn")))]
-  "TARGET_68881"
-  "fmove%.w %1,%0")
-
-(define_insn "floatqixf2"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (float:XF (match_operand:QI 1 "general_operand" "dmn")))]
-  "TARGET_68881"
-  "fmove%.b %1,%0")
-
-(define_insn "ftruncxf2"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (fix:XF (match_operand:XF 1 "general_operand" "fFm")))]
-  "TARGET_68881"
-  "*
-{
-  if (FP_REG_P (operands[1]))
-    return \"fintrz%.x %f1,%0\";
-  return \"fintrz%.x %f1,%0\";
-}")
-
-(define_insn "fixxfqi2"
-  [(set (match_operand:QI 0 "nonimmediate_operand" "=dm")
-       (fix:QI (match_operand:XF 1 "general_operand" "f")))]
-  "TARGET_68881"
-  "fmove%.b %1,%0")
-
-(define_insn "fixxfhi2"
-  [(set (match_operand:HI 0 "nonimmediate_operand" "=dm")
-       (fix:HI (match_operand:XF 1 "general_operand" "f")))]
-  "TARGET_68881"
-  "fmove%.w %1,%0")
-
-(define_insn "fixxfsi2"
-  [(set (match_operand:SI 0 "nonimmediate_operand" "=dm")
-       (fix:SI (match_operand:XF 1 "general_operand" "f")))]
-  "TARGET_68881"
-  "fmove%.l %1,%0")
-
-(define_insn ""
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (plus:XF (float:XF (match_operand:SI 2 "general_operand" "dmi"))
-                (match_operand:XF 1 "nonimmediate_operand" "0")))]
-  "TARGET_68881"
-  "fadd%.l %2,%0")
-
-(define_insn ""
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (plus:XF (float:XF (match_operand:HI 2 "general_operand" "dmn"))
-                (match_operand:XF 1 "nonimmediate_operand" "0")))]
-  "TARGET_68881"
-  "fadd%.w %2,%0")
-
-(define_insn ""
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (plus:XF (float:XF (match_operand:QI 2 "general_operand" "dmn"))
-                (match_operand:XF 1 "general_operand" "0")))]
-  "TARGET_68881"
-  "fadd%.b %2,%0")
-
-(define_insn "addxf3"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (plus:XF (match_operand:XF 1 "nonimmediate_operand" "%0")
-                (match_operand:XF 2 "nonimmediate_operand" "fm")))]
-  "TARGET_68881"
-  "*
-{
-  if (REG_P (operands[2]))
-    return \"fadd%.x %2,%0\";
-  return \"fadd%.x %f2,%0\";
-}")
-
-(define_insn ""
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (minus:XF (match_operand:XF 1 "nonimmediate_operand" "0")
-                 (float:XF (match_operand:SI 2 "general_operand" "dmi"))))]
-  "TARGET_68881"
-  "fsub%.l %2,%0")
-
-(define_insn ""
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (minus:XF (match_operand:XF 1 "nonimmediate_operand" "0")
-                 (float:XF (match_operand:HI 2 "general_operand" "dmn"))))]
-  "TARGET_68881"
-  "fsub%.w %2,%0")
-
-(define_insn ""
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (minus:XF (match_operand:XF 1 "nonimmediate_operand" "0")
-                 (float:XF (match_operand:QI 2 "general_operand" "dmn"))))]
-  "TARGET_68881"
-  "fsub%.b %2,%0")
-
-(define_insn "subxf3"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (minus:XF (match_operand:XF 1 "nonimmediate_operand" "0")
-                 (match_operand:XF 2 "nonimmediate_operand" "fm")))]
-  "TARGET_68881"
-  "*
-{
-  if (REG_P (operands[2]))
-    return \"fsub%.x %2,%0\";
-  return \"fsub%.x %f2,%0\";
-}")
-
-(define_insn ""
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (mult:XF (float:XF (match_operand:SI 2 "general_operand" "dmi"))
-                (match_operand:XF 1 "nonimmediate_operand" "0")))]
-  "TARGET_68881"
-  "fmul%.l %2,%0")
-
-(define_insn ""
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (mult:XF (float:XF (match_operand:HI 2 "general_operand" "dmn"))
-                (match_operand:XF 1 "nonimmediate_operand" "0")))]
-  "TARGET_68881"
-  "fmul%.w %2,%0")
-
-(define_insn ""
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (mult:XF (float:XF (match_operand:QI 2 "general_operand" "dmn"))
-                (match_operand:XF 1 "nonimmediate_operand" "0")))]
-  "TARGET_68881"
-  "fmul%.b %2,%0")
-
-(define_insn "mulxf3"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (mult:XF (match_operand:XF 1 "nonimmediate_operand" "%0")
-                (match_operand:XF 2 "nonimmediate_operand" "fm")))]
-  "TARGET_68881"
-  "*
-{
-  if (REG_P (operands[2]))
-    return \"fmul%.x %2,%0\";
-  return \"fmul%.x %f2,%0\";
-}")
-
-(define_insn ""
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (div:XF (match_operand:XF 1 "nonimmediate_operand" "0")
-               (float:XF (match_operand:SI 2 "general_operand" "dmi"))))]
-  "TARGET_68881"
-  "fdiv%.l %2,%0")
-
-(define_insn ""
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (div:XF (match_operand:XF 1 "nonimmediate_operand" "0")
-               (float:XF (match_operand:HI 2 "general_operand" "dmn"))))]
-  "TARGET_68881"
-  "fdiv%.w %2,%0")
-
-(define_insn ""
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (div:XF (match_operand:XF 1 "nonimmediate_operand" "0")
-               (float:XF (match_operand:QI 2 "general_operand" "dmn"))))]
-  "TARGET_68881"
-  "fdiv%.b %2,%0")
-
-(define_insn "divxf3"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (div:XF (match_operand:XF 1 "nonimmediate_operand" "0")
-               (match_operand:XF 2 "nonimmediate_operand" "fm")))]
-  "TARGET_68881"
-  "*
-{
-  if (REG_P (operands[2]))
-    return \"fdiv%.x %2,%0\";
-  return \"fdiv%.x %f2,%0\";
-}")
-
-(define_expand "negxf2"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "")
-       (neg:XF (match_operand:XF 1 "nonimmediate_operand" "")))]
-  ""
-  "
-{
-  if (!TARGET_68881)
-    {
-      rtx result;
-      rtx target;
-      rtx insns;
-
-      start_sequence ();
-      target = operand_subword (operands[0], 0, 1, XFmode);
-      result = expand_binop (SImode, xor_optab,
-                            operand_subword_force (operands[1], 0, XFmode),
-                            GEN_INT (0x80000000), target, 0, OPTAB_WIDEN);
-      if (result == 0)
-       abort ();
-
-      if (result != target)
-       emit_move_insn (result, target);
-
-      emit_move_insn (operand_subword (operands[0], 1, 1, XFmode),
-                     operand_subword_force (operands[1], 1, XFmode));
-      emit_move_insn (operand_subword (operands[0], 2, 1, XFmode),
-                     operand_subword_force (operands[1], 2, XFmode));
-
-      insns = get_insns ();
-      end_sequence ();
-
-      emit_no_conflict_block (insns, operands[0], operands[1], 0, 0);
-      DONE;
-    }
-}")
-
-(define_insn "negxf2_68881"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (neg:XF (match_operand:XF 1 "nonimmediate_operand" "fm")))]
-  "TARGET_68881"
-  "*
-{
-  if (REG_P (operands[1]) && ! DATA_REG_P (operands[1]))
-    return \"fneg%.x %1,%0\";
-  return \"fneg%.x %f1,%0\";
-}")
-
-(define_expand "absxf2"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "")
-       (abs:XF (match_operand:XF 1 "nonimmediate_operand" "")))]
-  ""
-  "
-{
-  if (!TARGET_68881)
-    {
-      rtx result;
-      rtx target;
-      rtx insns;
-
-      start_sequence ();
-      target = operand_subword (operands[0], 0, 1, XFmode);
-      result = expand_binop (SImode, and_optab,
-                            operand_subword_force (operands[1], 0, XFmode),
-                            GEN_INT (0x7fffffff), target, 0, OPTAB_WIDEN);
-      if (result == 0)
-       abort ();
-
-      if (result != target)
-       emit_move_insn (result, target);
-
-      emit_move_insn (operand_subword (operands[0], 1, 1, XFmode),
-                     operand_subword_force (operands[1], 1, XFmode));
-      emit_move_insn (operand_subword (operands[0], 2, 1, XFmode),
-                     operand_subword_force (operands[1], 2, XFmode));
-
-      insns = get_insns ();
-      end_sequence ();
-
-      emit_no_conflict_block (insns, operands[0], operands[1], 0, 0);
-      DONE;
-    }
-}")
-
-(define_insn "absxf2_68881"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (abs:XF (match_operand:XF 1 "nonimmediate_operand" "fm")))]
-  "TARGET_68881"
-  "*
-{
-  if (REG_P (operands[1]) && ! DATA_REG_P (operands[1]))
-    return \"fabs%.x %1,%0\";
-  return \"fabs%.x %f1,%0\";
-}")
-
-(define_insn "sqrtxf2"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (sqrt:XF (match_operand:XF 1 "nonimmediate_operand" "fm")))]
-  "TARGET_68881"
-  "fsqrt%.x %1,%0")
-
-(define_insn "sinsf2"
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (unspec:SF [(match_operand:SF 1 "general_operand" "fm")] UNSPEC_SIN))]
-  "TARGET_68881 && flag_unsafe_math_optimizations"
-  "*
-{
-  if (FP_REG_P (operands[1]))
-    return \"fsin%.x %1,%0\";
-  else
-    return \"fsin%.s %1,%0\";
-}")
-
-(define_insn "sindf2"
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (unspec:DF [(match_operand:DF 1 "general_operand" "fm")] UNSPEC_SIN))]
+(define_insn "sin<mode>2"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (unspec:FP
+         [(match_operand:FP 1 "general_operand" "f<FP:dreg>m")] UNSPEC_SIN))]
   "TARGET_68881 && flag_unsafe_math_optimizations"
-  "*
 {
   if (FP_REG_P (operands[1]))
-    return \"fsin%.x %1,%0\";
+    return "fsin%.x %1,%0";
   else
-    return \"fsin%.d %1,%0\";
-}")
-
-(define_insn "sinxf2"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (unspec:XF [(match_operand:XF 1 "nonimmediate_operand" "fm")] UNSPEC_SIN))]
-  "TARGET_68881 && flag_unsafe_math_optimizations"
-  "fsin%.x %1,%0")
-
-(define_insn "cossf2"
-  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
-       (unspec:SF [(match_operand:SF 1 "general_operand" "fm")] UNSPEC_COS))]
-  "TARGET_68881 && flag_unsafe_math_optimizations"
-  "*
-{
-  if (FP_REG_P (operands[1]))
-    return \"fcos%.x %1,%0\";
-  else
-    return \"fcos%.s %1,%0\";
-}")
+    return "fsin%.<FP:prec> %1,%0";
+})
 
-(define_insn "cosdf2"
-  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
-       (unspec:DF [(match_operand:DF 1 "general_operand" "fm")] UNSPEC_COS))]
+(define_insn "cos<mode>2"
+  [(set (match_operand:FP 0 "nonimmediate_operand" "=f")
+       (unspec:FP
+         [(match_operand:FP 1 "general_operand" "f<FP:dreg>m")] UNSPEC_COS))]
   "TARGET_68881 && flag_unsafe_math_optimizations"
-  "*
 {
   if (FP_REG_P (operands[1]))
-    return \"fcos%.x %1,%0\";
+    return "fcos%.x %1,%0";
   else
-    return \"fcos%.d %1,%0\";
-}")
-
-(define_insn "cosxf2"
-  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
-       (unspec:XF [(match_operand:XF 1 "nonimmediate_operand" "fm")] UNSPEC_COS))]
-  "TARGET_68881 && flag_unsafe_math_optimizations"
-  "fcos%.x %1,%0")
+    return "fcos%.<FP:prec> %1,%0";
+})
 
 (define_insn "trap"
   [(trap_if (const_int -1) (const_int 7))]
   ""
-  "trap %#7")
+  "trap #7")
 
 (define_insn "conditional_trap"
   [(trap_if (match_operator 0 "valid_dbcc_comparison_p"
                            [(cc0) (const_int 0)])
            (match_operand:SI 1 "const_int_operand" "I"))]
   "TARGET_68020 && ! flags_in_68881 ()"
-  "*
 {
   switch (GET_CODE (operands[0]))
   {
-  case EQ:  return \"trapeq\";
-  case NE:  return \"trapne\";
-  case GT:  return \"trapgt\";
-  case GTU: return \"traphi\";
-  case LT:  return \"traplt\";
-  case LTU: return \"trapcs\";
-  case GE:  return \"trapge\";
-  case GEU: return \"trapcc\";
-  case LE:  return \"traple\";
-  case LEU: return \"trapls\";
-  default: abort();
+  case EQ:  return "trapeq";
+  case NE:  return "trapne";
+  case GT:  return "trapgt";
+  case GTU: return "traphi";
+  case LT:  return "traplt";
+  case LTU: return "trapcs";
+  case GE:  return "trapge";
+  case GEU: return "trapcc";
+  case LE:  return "traple";
+  case LEU: return "trapls";
+  default: gcc_unreachable ();
   }
-}")
+})