OSDN Git Service

* config/m68k/m68k-none.h: Introduce new ColdFire archs.
[pf3gnuchains/gcc-fork.git] / gcc / config / m68k / m68k.md
index de3c846..1917717 100644 (file)
@@ -1,5 +1,6 @@
 ;;- Machine description for GNU compiler, Motorola 68000 Version
-;;  Copyright (C) 1987, 88, 93-97, 1998 Free Software Foundation, Inc.
+;;  Copyright (C) 1987, 1988, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003
+;;  Free Software Foundation, Inc.
 
 ;; This file is part of GNU CC.
 
@@ -23,7 +24,7 @@
 ;;- 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.
 ;;- 
 
 ;;- 'd' one of the data registers can be used.
 ;;- 'f' one of the m68881 registers can be used
 ;;- 'r' either a data or an address register can be used.
-;;- 'x' if one of the Sun FPA registers
-;;- 'y' if one of the Low Sun FPA registers (fpa0-fpa15).
 
 ;;- Immediate Floating point operator constraints
 ;;- 'G' a floating point constant that is *NOT* one of the standard
 ;;   68881 constant values (to force calling output_move_const_double
 ;;   to get it from rom if it is a 68881 constant).
-;;- 'H' one of the standard FPA constant values
 ;;
 ;;   See the functions standard_XXX_constant_p in output-m68k.c for more
 ;; info.
 ;;- "%$"    single-precision fp specifier ("s" or "")  f%$add.x fp0,fp1
 ;;- "%&"    double-precision fp specifier ("d" or "")  f%&add.x fp0,fp1
 
-;; UNSPEC usage:
-;; 1  This is a `sin' operation.  The mode of the UNSPEC is MODE_FLOAT.
-;;    operand 1 is the argument for `sin'.
-;; 2  This is a `cos' operation.  The mode of the UNSPEC is MODE_FLOAT.
-;;    operand 1 is the argument for `cos'.
-
 ;;- Information about 68040 port.
 
 ;;- The 68040 executes all 68030 and 68881/2 instructions, but some must
 ;;- 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.
 
-;;-            FPA port explanation:
-
-;;-            Usage of the Sun FPA and the 68881 together
-
-;;- The current port of gcc to the sun fpa disallows use of the m68881
-;;- instructions completely if code is targeted for the fpa.  This is
-;;- for the following reasons:
-
-;;- 1) Expressing the preference hierarchy (ie. use the fpa if you
-;;- can, the 68881 otherwise, and data registers only if you are
-;;- forced to it) is a bitch with the current constraint scheme,
-;;- especially since it would have to work for any combination of
-;;- -mfpa, -m68881.
-
-;;- 2) There are no instructions to move between the two types of
-;;- registers; the stack must be used as an intermediary.
-
-;;- It could indeed be done; I think the best way would be to have
-;;- separate patterns for TARGET_FPA (which implies a 68881),
-;;- TARGET_68881, and no floating point co-processor.  Use
-;;- define_expands for all of the named instruction patterns, and
-;;- include code in the FPA instruction to deal with the 68881 with
-;;- preferences specifically set to favor the fpa.  Some of this has
-;;- already been done:
-;;-
-;;-    1) Separation of most of the patterns out into a TARGET_FPA
-;;- case and a TARGET_68881 case (the exceptions are the patterns
-;;- which would need one define_expand and three define_insn's under
-;;- it (with a lot of duplicate code between them) to replace the
-;;- current single define_insn.  These are mov{[ds]f,[ds]i} and the
-;;- first two patterns in the md.
-;;-
-;;- Some would still have to be done:
-;;-
-;;-    1) Add code to the fpa patterns which correspond to 68881
-;;- patterns to deal with the 68881 case (including preferences!).
-;;- What you might actually do here is combine the fpa and 68881 code
-;;- back together into one pattern for those instructions where it's
-;;- absolutely necessary and save yourself some duplicate code.  I'm
-;;- not completely sure as to whether you could get away with doing
-;;- this only for the mov* insns, or if you'd have to do it for all
-;;- named insns.
-;;-    2) Add code to the mov{[ds]f,[ds]i} instructions to handle
-;;- moving between fpa regs and 68881 regs.
-
-;;- Since the fpa is more powerful than the 68881 and also has more
-;;- registers, and since I think the resultant md would be medium ugly
-;;- (lot's of duplicate code, ugly constraint strings), I elected not
-;;- to do this change.
-
-;;- Another reason why someone *might* want to do the change is to
-;;- control which register classes are accessed in a slightly cleaner
-;;- way than I have.  See the blurb on CONDITIONAL_REGISTER_USAGE in
-;;- the internals manual.
-
-;;- Yet another reason why someone might want to do this change is to
-;;- allow use of some of the 68881 insns which have no equivalent on
-;;- the fpa.  The sqrt instruction comes fairly quickly to mind.
-
-;;- If this is ever done, don't forget to change sun3.h so that
-;;- it *will* define __HAVE_68881__ when the FPA is in use.
-
-;;-            Condition code hack
-
-;;- When a floating point compare is done in the fpa, the resulting
-;;- condition codes are left in the fpastatus register.  The values in
-;;- this register must be moved into the 68000 cc register before any
-;;- jump is executed.  Once this has been done, regular jump
-;;- instructions are fine (ie. floating point jumps are not necessary.
-;;- They are only done if the cc is in the 68881).
-
-;;- The instructions that move the fpastatus register to the 68000
-;;- register clobber a data register (the move cannot be done direct).
-;;- These instructions might be bundled either with the compare
-;;- instruction, or the branch instruction.  If we were using both the
-;;- fpa and the 68881 together, we would wish to only mark the
-;;- register clobbered if we were doing the compare in the fpa, but I
-;;- think that that decision (whether to clobber the register or not)
-;;- must be done before register allocation (makes sense) and hence we
-;;- can't know if the floating point compare will be done in the fpa
-;;- or the fp.  So whenever we are asked for code that uses the fpa,
-;;- we will mark a data register as clobbered.  This is reasonable, as
-;;- almost all floating point compare operations done with fpa code
-;;- enabled will be done in the fpa.  It's even more reasonable since
-;;- we decided to make the 68881 and the fpa mutually exclusive.
-
-;;- We place to code to move the fpastatus register inside of a
-;;- define_expand so that we can do it conditionally based on whether
-;;- we are targeting an fpa or not.
-
-;;- This still leaves us with the question of where we wish to put the
-;;- code to move the fpastatus reg.  If we put it in the compare
-;;- instruction, we can restrict the clobbering of the register to
-;;- floating point compares, but we can't take advantage of floating
-;;- point subtracts & etc. that alter the fpastatus register.  If we
-;;- put it in the branch instruction, all branches compiled with fpa
-;;- code enabled will clobber a data register, but we will be able to
-;;- take advantage of fpa subtracts.  This balance favors putting the
-;;- code in with the compare instruction.
-
-;;- Note that if some enterprising hacker should decide to switch
-;;- this, he'll need to modify the code in NOTICE_UPDATE_CC.
-
-;;-            Usage of the top 16 fpa registers
-
-;;- The only locations which we may transfer fpa registers 16-31 from
-;;- or to are the fpa registers 0-15.  (68000 registers and memory
-;;- locations are impossible).  This causes problems in gcc, which
-;;- assumes that mov?? instructions require no additional registers
-;;- (see section 11.7) and since floating point moves *must* be
-;;- supported into general registers (see section 12.3 under
-;;- HARD_REGNO_OK_FOR_MODE_P) from anywhere.
-
-;;- My solution was to reserve fpa0 for moves into or out of these top
-;;- 16 registers and to disparage the choice to reload into or out of
-;;- these registers as much as I could.  That alternative is always
-;;- last in the list, so it will not be used unless all else fails.  I
-;;- will note that according to my current information, sun's compiler
-;;- doesn't use these top 16 registers at all.
-
-;;- There is another possible way to do it.  I *believe* that if you
-;;- make absolutely sure that the code will not be executed in the
-;;- reload pass, you can support the mov?? names with define_expands
-;;- which require new registers.  This may be possible by the
-;;- appropriate juggling of constraints.  I may come back to this later.
-
-;;-            Usage of constant RAM
-
-;;- This has been handled correctly (I believe) but the way I've done
-;;- it could use a little explanation.  The constant RAM can only be
-;;- accessed when the instruction is in "command register" mode.
-;;- "command register" mode means that no accessing of memory or the
-;;- 68000 registers is being done.  This can be expressed easily in
-;;- constraints, so generally the mode of the instruction is
-;;- determined by a branch off of which_alternative.  In outputting
-;;- instructions, a 'w' means to output an access to the constant ram
-;;- (if the arg is CONST_DOUBLE and is one of the available
-;;- constants), and 'x' means to output a register pair (if the arg is
-;;- a 68000 register) and a 'y' is the combination of the above two
-;;- processes.  You use a 'y' in two operand DF instructions where you
-;;- *know* the other operand is an fpa register, you use an 'x' in DF
-;;- instructions where the arg might be a 68000 register and the
-;;- instruction is *not* in "command register" mode, and you use a 'w'
-;;- in two situations: 1) The instruction *is* in command register
-;;- mode (and hence won't be accessing 68000 registers), or 2) The
-;;- instruction is a two operand SF instruction where you know the
-;;- other operand is an fpa register.
-
-;;-            Optimization issues
-
-;;- I actually think that I've included all of the fpa instructions
-;;- that should be included.  Note that if someone is interested in
-;;- doing serious floating point work on the sun fpa, I would advise
-;;- the use of the "asm" instruction in gcc to allow you to use the
-;;- sin, cos, and exponential functions on the fpa board.
-
-;;- END FPA Explanation Section.
-
-
 ;;- Some of these insn's are composites of several m68000 op codes.
 ;;- The assembler (or final @@??) insures that the appropriate one is
 ;;- selected.
+
+;; UNSPEC usage:
+
+(define_constants
+  [(UNSPEC_SIN  1)
+   (UNSPEC_COS  2)
+  ])
+
+;; UNSPEC_VOLATILE usage:
+
+(define_constants
+  [(UNSPECV_BLOCKAGE   0)
+  ])
 \f
 (define_insn ""
   [(set (match_operand:DF 0 "push_operand" "=m")
 {
   if (FP_REG_P (operands[1]))
     return \"fmove%.d %f1,%0\";
-  if (FPA_REG_P (operands[1]))
-    return \"fpmove%.d %1, %x0\";
   return output_move_double (operands);
 }")
 
   ""
   "*
 {
-#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
+  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.  */
 (define_expand "tstsf"
   [(set (cc0)
        (match_operand:SF 0 "general_operand" ""))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "
 {
   m68k_last_compare_had_fp_operands = 1;
-  if (TARGET_FPA)
-    {
-      emit_insn (gen_tstsf_fpa (operands[0]));
-      DONE;
-    }
 }")
 
-(define_insn "tstsf_fpa"
-  [(set (cc0)
-       (match_operand:SF 0 "general_operand" "xmdF"))
-   (clobber (match_scratch:SI 1 "=d"))]
-  "TARGET_FPA"
-  "fptst%.s %x0\;fpmove fpastatus,%1\;movw %1,cc")
-
 (define_insn ""
   [(set (cc0)
        (match_operand:SF 0 "general_operand" "fdm"))]
 (define_expand "tstdf"
   [(set (cc0)
        (match_operand:DF 0 "general_operand" ""))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "
 {
   m68k_last_compare_had_fp_operands = 1;
-  if (TARGET_FPA)
-    {
-      emit_insn (gen_tstsf_fpa (operands[0]));
-      DONE;
-    }
 }")
 
-(define_insn "tstdf_fpa"
-  [(set (cc0)
-       (match_operand:DF 0 "general_operand" "xrmF"))
-   (clobber (match_scratch:SI 1 "=d"))]
-  "TARGET_FPA"
-  "fptst%.d %x0\;fpmove fpastatus,%1\;movw %1,cc")
-
 (define_insn ""
   [(set (cc0)
        (match_operand:DF 0 "general_operand" "fm"))]
   "
 {
   m68k_last_compare_had_fp_operands = 0;
-  if (flag_pic && symbolic_operand (operands[1], SImode))
+  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 */
-      extern rtx legitimize_pic_address();
       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" "rKs,mr,>")
-                (match_operand:SI 1 "general_operand" "mr,rKs,>")))]
-  "!TARGET_5200"
+        (compare (match_operand:SI 0 "nonimmediate_operand" "rKT,rKs,mSr,mSa,>")
+                 (match_operand:SI 1 "general_src_operand" "mSr,mSa,KTr,Ksr,>")))]
+  "!TARGET_COLDFIRE"
   "*
 {
   if (GET_CODE (operands[0]) == MEM && GET_CODE (operands[1]) == MEM)
       return \"cmp%.l %d0,%d1\";
 #endif
     }
+  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
   [(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])
 
 (define_expand "cmphi"
   [(set (cc0)
-       (compare (match_operand:HI 0 "nonimmediate_operand" "")
-                (match_operand:HI 1 "general_operand" "")))]
-  "!TARGET_5200"
+        (compare (match_operand:HI 0 "nonimmediate_src_operand" "")
+                 (match_operand:HI 1 "general_src_operand" "")))]
+  "!TARGET_COLDFIRE"
   "m68k_last_compare_had_fp_operands = 0;")
 
 (define_insn ""
   [(set (cc0)
-       (compare (match_operand:HI 0 "nonimmediate_operand" "rnm,d,n,m,>")
-                (match_operand:HI 1 "general_operand" "d,rnm,m,n,>")))]
-  "!TARGET_5200"
+        (compare (match_operand:HI 0 "nonimmediate_src_operand" "rnmS,d,n,mS,>")
+                 (match_operand:HI 1 "general_src_operand" "d,rnmS,mS,n,>")))]
+  "!TARGET_COLDFIRE"
   "*
 {
   if (GET_CODE (operands[0]) == MEM && GET_CODE (operands[1]) == MEM)
 
 (define_expand "cmpqi"
   [(set (cc0)
-       (compare (match_operand:QI 0 "nonimmediate_operand" "")
-                (match_operand:QI 1 "general_operand" "")))]
-  "!TARGET_5200"
+        (compare (match_operand:QI 0 "nonimmediate_src_operand" "")
+                 (match_operand:QI 1 "general_src_operand" "")))]
+  "!TARGET_COLDFIRE"
   "m68k_last_compare_had_fp_operands = 0;")
 
 (define_insn ""
   [(set (cc0)
-       (compare (match_operand:QI 0 "nonimmediate_operand" "dn,md,>")
-                (match_operand:QI 1 "general_operand" "dm,nd,>")))]
-  "!TARGET_5200"
+        (compare (match_operand:QI 0 "nonimmediate_src_operand" "dn,dmS,>")
+                 (match_operand:QI 1 "general_src_operand" "dmS,nd,>")))]
+  "!TARGET_COLDFIRE"
   "*
 {
   if (GET_CODE (operands[0]) == MEM && GET_CODE (operands[1]) == MEM)
   [(set (cc0)
        (compare (match_operand:DF 0 "general_operand" "")
                 (match_operand:DF 1 "general_operand" "")))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "
 {
   m68k_last_compare_had_fp_operands = 1;
-  if (TARGET_FPA)
-    {
-      emit_insn (gen_cmpdf_fpa (operands[0], operands[1]));
-      DONE;
-    }
 }")
 
-(define_insn "cmpdf_fpa"
-  [(set (cc0)
-       (compare (match_operand:DF 0 "general_operand" "x,y")
-                (match_operand:DF 1 "general_operand" "xH,rmF")))
-   (clobber (match_scratch:SI 2 "=d,d"))]
-  "TARGET_FPA"
-  "fpcmp%.d %y1,%0\;fpmove fpastatus,%2\;movw %2,cc")
-
 (define_insn ""
   [(set (cc0)
        (compare (match_operand:DF 0 "general_operand" "f,mG")
  [(set (cc0)
        (compare (match_operand:SF 0 "general_operand" "")
                (match_operand:SF 1 "general_operand" "")))]
- "TARGET_68881 || TARGET_FPA"
+ "TARGET_68881"
  "
 {
   m68k_last_compare_had_fp_operands = 1;
-  if (TARGET_FPA)
-    {
-      emit_insn (gen_cmpsf_fpa (operands[0], operands[1]));
-      DONE;
-    }
 }")
 
-(define_insn "cmpsf_fpa"
-  [(set (cc0)
-       (compare (match_operand:SF 0 "general_operand" "x,y")
-                (match_operand:SF 1 "general_operand" "xH,rmF")))
-   (clobber (match_scratch:SI 2 "=d,d"))]
-  "TARGET_FPA"
-  "fpcmp%.s %w1,%x0\;fpmove fpastatus,%2\;movw %2,cc")
-
 (define_insn ""
   [(set (cc0)
        (compare (match_operand:SF 0 "general_operand" "f,mdG")
 ;; from a MEM at a constant bit position if we can't use this as a constraint.
 
 (define_insn ""
-  [(set (cc0) (zero_extract (match_operand:QI 0 "memory_operand" "o")
+  [(set (cc0) (zero_extract (match_operand:QI 0 "memory_src_operand" "oS")
                            (const_int 1)
                            (minus:SI (const_int 7)
                                      (match_operand:SI 1 "general_operand" "di"))))]
-  "!TARGET_5200"
+  "!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'
                            (const_int 1)
                            (minus:SI (const_int 7)
                                      (match_operand:SI 1 "general_operand" "d"))))]
-  "TARGET_5200"
+  "TARGET_COLDFIRE"
   "* { return output_btst (operands, operands[1], operands[0], insn, 7); }")
 
 (define_insn ""
   [(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]));
   [(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[0] = adj_offsettable_operand (operands[0],
-                                            INTVAL (operands[1]) / 8);
+      operands[0] = adjust_address (operands[0], QImode,
+                                   INTVAL (operands[1]) / 8);
       operands[1] = GEN_INT (7 - INTVAL (operands[1]) % 8);
       return output_btst (operands, operands[1], operands[0], insn, 7);
     }
   [(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[0] = adj_offsettable_operand (operands[0],
-                                            INTVAL (operands[1]) / 8);
+      operands[0] = adjust_address (operands[0], QImode,
+                                   INTVAL (operands[1]) / 8);
       operands[1] = GEN_INT (7 - INTVAL (operands[1]) % 8);
       return output_btst (operands, operands[1], operands[0], insn, 7);
     }
 
 ;This is never used.
 ;(define_insn "swapsi"
-;  [(set (match_operand:SI 0 "general_operand" "+r")
+;  [(set (match_operand:SI 0 "nonimmediate_operand" "+r")
 ;      (match_operand:SI 1 "general_operand" "+r"))
 ;   (set (match_dup 1) (match_dup 0))]
 ;  ""
 ;; into a data reg with moveq in order to store it elsewhere.
 
 (define_insn "movsi_const0"
-  [(set (match_operand:SI 0 "general_operand" "=g")
+  [(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_68020 || TARGET_COLDFIRE)
     || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0])))"
   "*
 {
        {
 #ifdef MOTOROLA
 #ifdef SGS
-         /* Many SGS assemblers croak on size specifiers for constants. */
+         /* Many SGS assemblers croak on size specifiers for constants.  */
          return \"lea 0,%0\";
 #else
          return \"lea 0.w,%0\";
        }
     }
   /* moveq is faster on the 68000.  */
-  if (DATA_REG_P (operands[0]) && (!TARGET_68020 && !TARGET_5200))
-#if defined(MOTOROLA) && !defined(CRDS)
-    return \"moveq%.l %#0,%0\";
-#else
+  if (DATA_REG_P (operands[0]) && (!TARGET_68020 && !TARGET_COLDFIRE))
     return \"moveq %#0,%0\";
-#endif
   return \"clr%.l %0\";
 }")
 
 ;; In both the PIC and non-PIC cases the patterns generated will
 ;; matched by the next define_insn.
 (define_expand "movsi"
-  [(set (match_operand:SI 0 "general_operand" "")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "")
        (match_operand:SI 1 "general_operand" ""))]
   ""
   "
 {
-  if (flag_pic && symbolic_operand (operands[1], SImode))
+  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 */
-      extern rtx legitimize_pic_address();
       rtx temp = reload_in_progress ? operands[0] : gen_reg_rtx (Pmode);
       operands[1] = legitimize_pic_address (operands[1], SImode, temp);
     }
+  else if (flag_pic && TARGET_PCREL && ! 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 (symbolic_operand (operands[0], 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,
+                              force_reg (SImode, XEXP (operands[0], 0)));
+    }
 }")
 
 ;; General case of fullword move.  The register constraints
 (define_insn ""
   ;; Notes: make sure no alternative allows g vs g.
   ;; We don't allow f-regs since fixed point cannot go in them.
-  ;; We do allow y and x regs since fixed point is allowed in them.
-  [(set (match_operand:SI 0 "general_operand" "=g,da,y,!*x*r*m")
-       (match_operand:SI 1 "general_operand" "daymKs,i,g,*x*r*m"))]
-  "!TARGET_5200"
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=g,d,a<")
+        (match_operand:SI 1 "general_src_operand" "daymSKT,n,i"))]
+
+  "!TARGET_COLDFIRE"
   "*
 {
-  if (which_alternative == 3)
-    return \"fpmove%.l %x1,fpa0\;fpmove%.l fpa0,%x0\";
-  if (FPA_REG_P (operands[1]) || FPA_REG_P (operands[0]))
-    return \"fpmove%.l %x1,%x0\";
   return output_move_simode (operands);
 }")
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=r<Q>,g")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=r<Q>,g")
        (match_operand:SI 1 "general_operand" "g,r<Q>"))]
-  "TARGET_5200"
+  "TARGET_COLDFIRE"
   "* return output_move_simode (operands);")
 
+;; Special case of fullword move, where we need to get a non-GOT PIC
+;; reference into an address register.
+(define_insn ""
+  [(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\";
+}")
+
 (define_expand "movhi"
-  [(set (match_operand:HI 0 "general_operand" "")
+  [(set (match_operand:HI 0 "nonimmediate_operand" "")
        (match_operand:HI 1 "general_operand" ""))]
   ""
   "")
 
 (define_insn ""
-  [(set (match_operand:HI 0 "general_operand" "=g")
-       (match_operand:HI 1 "general_operand" "g"))]
-  "!TARGET_5200"
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=g")
+        (match_operand:HI 1 "general_src_operand" "gS"))]
+  "!TARGET_COLDFIRE"
   "* return output_move_himode (operands);")
 
  (define_insn ""
-  [(set (match_operand:HI 0 "general_operand" "=r<Q>,g")
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=r<Q>,g")
        (match_operand:HI 1 "general_operand" "g,r<Q>"))]
-  "TARGET_5200"
+  "TARGET_COLDFIRE"
   "* return output_move_himode (operands);")
 
 (define_expand "movstricthi"
-  [(set (strict_low_part (match_operand:HI 0 "general_operand" ""))
-       (match_operand:HI 1 "general_operand" ""))]
+  [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" ""))
+        (match_operand:HI 1 "general_src_operand" ""))]
   ""
   "")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:HI 0 "general_operand" "+dm"))
-       (match_operand:HI 1 "general_operand" "rmn"))]
-  "!TARGET_5200"
+  [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+dm"))
+       (match_operand:HI 1 "general_src_operand" "rmSn"))]
+  "!TARGET_COLDFIRE"
   "* return output_move_stricthi (operands);")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:HI 0 "general_operand" "+d,m"))
-       (match_operand:HI 1 "general_operand" "rmn,r"))]
-  "TARGET_5200"
+  [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+d,m"))
+       (match_operand:HI 1 "general_src_operand" "rmn,r"))]
+  "TARGET_COLDFIRE"
   "* return output_move_stricthi (operands);")
 
 (define_expand "movqi"
-  [(set (match_operand:QI 0 "general_operand" "")
-       (match_operand:QI 1 "general_operand" ""))]
+  [(set (match_operand:QI 0 "nonimmediate_operand" "")
+        (match_operand:QI 1 "general_src_operand" ""))]
   ""
   "")
 
 (define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=d,*a,m")
-       (match_operand:QI 1 "general_operand" "dmi*a,di*a,dmi"))]
-  "!TARGET_5200"
+  [(set (match_operand:QI 0 "nonimmediate_operand" "=d,*a,m")
+       (match_operand:QI 1 "general_src_operand" "dmSi*a,di*a,dmSi"))]
+  "!TARGET_COLDFIRE"
   "* return output_move_qimode (operands);")
 
 (define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=d*a<Q>,d*am")
-       (match_operand:QI 1 "general_operand" "d*ami,d*a<Q>"))]
-  "TARGET_5200"
+  [(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_COLDFIRE"
   "* return output_move_qimode (operands);")
 
 (define_expand "movstrictqi"
-  [(set (strict_low_part (match_operand:QI 0 "general_operand" ""))
-       (match_operand:QI 1 "general_operand" ""))]
+  [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" ""))
+        (match_operand:QI 1 "general_src_operand" ""))]
   ""
   "")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:QI 0 "general_operand" "+dm"))
-       (match_operand:QI 1 "general_operand" "dmn"))]
-  "!TARGET_5200"
+  [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+dm"))
+       (match_operand:QI 1 "general_src_operand" "dmSn"))]
+  "!TARGET_COLDFIRE"
   "* return output_move_strictqi (operands);")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:QI 0 "general_operand" "+d,m"))
-       (match_operand:QI 1 "general_operand" "dmn,d"))]
-  "TARGET_5200"
+  [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+d,m"))
+       (match_operand:QI 1 "general_src_operand" "dmn,d"))]
+  "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)))
+       (match_operand:QI 0 "general_operand" ""))]
+  "!TARGET_COLDFIRE"
+  "")
+
 (define_expand "movsf"
-  [(set (match_operand:SF 0 "general_operand" "")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "")
        (match_operand:SF 1 "general_operand" ""))]
   ""
   "")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=rmf,x,y,rm,!x,!rm")
-       (match_operand:SF 1 "general_operand" "rmfF,xH,rmF,y,rm,x"))]
-;  [(set (match_operand:SF 0 "general_operand" "=rmf")
-;      (match_operand:SF 1 "general_operand" "rmfF"))]
-  "!TARGET_5200"
+  [(set (match_operand:SF 0 "nonimmediate_operand" "=rmf")
+       (match_operand:SF 1 "general_operand" "rmfF"))]
+  "!TARGET_COLDFIRE"
   "*
 {
-  if (which_alternative >= 4)
-    return \"fpmove%.s %1,fpa0\;fpmove%.s fpa0,%0\";
-  if (FPA_REG_P (operands[0]))
-    {
-      if (FPA_REG_P (operands[1]))
-       return \"fpmove%.s %x1,%x0\";
-      else if (GET_CODE (operands[1]) == CONST_DOUBLE)
-       return output_move_const_single (operands);
-      else if (FP_REG_P (operands[1]))
-        return \"fmove%.s %1,sp@-\;fpmove%.d sp@+, %0\";
-      return \"fpmove%.s %x1,%x0\";
-    }
-  if (FPA_REG_P (operands[1]))
-    {
-      if (FP_REG_P (operands[0]))
-       return \"fpmove%.s %x1,sp@-\;fmove%.s sp@+,%0\";
-      else
-       return \"fpmove%.s %x1,%x0\";
-    }
   if (FP_REG_P (operands[0]))
     {
       if (FP_REG_P (operands[1]))
   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)
+      && ((TARGET_68020 || TARGET_COLDFIRE)
          || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0]))))
     {
       if (ADDRESS_REG_P (operands[0]))
            {
 #ifdef MOTOROLA
 #ifdef SGS
-             /* Many SGS assemblers croak on size specifiers for constants. */
+             /* Many SGS assemblers croak on size specifiers for constants.  */
              return \"lea 0,%0\";
 #else
              return \"lea 0.w,%0\";
            }
        }
       /* moveq is faster on the 68000.  */
-      if (DATA_REG_P (operands[0]) && !(TARGET_68020 || TARGET_5200))
+      if (DATA_REG_P (operands[0]) && !(TARGET_68020 || TARGET_COLDFIRE))
        {
-#if defined(MOTOROLA) && !defined(CRDS)
-         return \"moveq%.l %#0,%0\";
-#else
          return \"moveq %#0,%0\";
-#endif
        }
       return \"clr%.l %0\";
     }
 }")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=r,g")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "=r,g")
        (match_operand:SF 1 "general_operand" "g,r"))]
-  "TARGET_5200"
+  "TARGET_COLDFIRE"
   "* return \"move%.l %1,%0\";")
 
 (define_expand "movdf"
-  [(set (match_operand:DF 0 "general_operand" "")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "")
        (match_operand:DF 1 "general_operand" ""))]
   ""
   "")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=rm,rf,rf,&rof<>,y,rm,x,!x,!rm")
-       (match_operand:DF 1 "general_operand" "rf,m,0,rofE<>,rmE,y,xH,rm,x"))]
-;  [(set (match_operand:DF 0 "general_operand" "=rm,&rf,&rof<>")
+  [(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 (which_alternative == 7)
-    return \"fpmove%.d %x1,fpa0\;fpmove%.d fpa0,%x0\";
-  if (FPA_REG_P (operands[0]))
-    {
-      if (GET_CODE (operands[1]) == CONST_DOUBLE)
-       return output_move_const_double (operands);
-      if (FP_REG_P (operands[1]))
-        return \"fmove%.d %1,sp@-\;fpmove%.d sp@+,%x0\";
-      return \"fpmove%.d %x1,%x0\";
-    }
-  else if (FPA_REG_P (operands[1]))
-    {
-      if (FP_REG_P(operands[0]))
-        return \"fpmove%.d %x1,sp@-\;fmoved sp@+,%0\";
-      else
-        return \"fpmove%.d %x1,%x0\";
-    }
   if (FP_REG_P (operands[0]))
     {
       if (FP_REG_P (operands[1]))
 }")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=r,g")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=r,g")
        (match_operand:DF 1 "general_operand" "g,r"))]
-  "TARGET_5200"
+  "TARGET_COLDFIRE"
   "* return output_move_double (operands);")
 
+;; ??? 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]))
+  /* We can't rewrite operands during reload.  */
+  if (! reload_in_progress)
     {
-      operands[1] = force_const_mem (XFmode, operands[1]);
-      if (! memory_address_p (XFmode, XEXP (operands[1], 0))
-         && ! reload_in_progress)
-       operands[1] = change_address (operands[1], XFmode,
-                                     XEXP (operands[1], 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")
-       (match_operand:XF 1 "nonimmediate_operand" "m,f,f,f,r"))]
+  [(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"))]
   "TARGET_68881"
   "*
 {
         return \"fmove%.x %1,%0\";
       return \"fmove%.x %f1,%0\";
     }
-  if (REG_P (operands[0]))
+  if (FP_REG_P (operands[1]))
     {
-      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);
-      operands[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
-      return \"move%.l %+,%0\";
+      if (REG_P (operands[0]))
+       {
+         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);
+         operands[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
+         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]))
 (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"
   ;; Let's see if it really still needs to handle fp regs, and, if so, why.
-  [(set (match_operand:DI 0 "general_operand" "")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "")
        (match_operand:DI 1 "general_operand" ""))]
   ""
   "")
 ;; movdi can apply to fp regs in some cases
 (define_insn ""
   ;; Let's see if it really still needs to handle fp regs, and, if so, why.
-  [(set (match_operand:DI 0 "general_operand" "=rm,r,&ro<>,y,rm,!*x,!rm")
-       (match_operand:DI 1 "general_operand" "rF,m,roi<>F,rmiF,y,rmF,*x"))]
-;  [(set (match_operand:DI 0 "general_operand" "=rm,&r,&ro<>,!&rm,!&f,y,rm,x,!x,!rm")
-;      (match_operand:DI 1 "general_operand" "r,m,roi<>,fF,rfmF,rmi,y,rm,x"))]
-;  [(set (match_operand:DI 0 "general_operand" "=rm,&rf,&ro<>,!&rm,!&f")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=rm,r,&ro<>")
+       (match_operand:DI 1 "general_operand" "rF,m,roi<>F"))]
+;  [(set (match_operand:DI 0 "nonimmediate_operand" "=rm,&r,&ro<>,!&rm,!&f")
+;      (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 (which_alternative == 8)
-    return \"fpmove%.d %x1,fpa0\;fpmove%.d fpa0,%x0\";
-  if (FPA_REG_P (operands[0]) || FPA_REG_P (operands[1]))
-    return \"fpmove%.d %x1,%x0\";
   if (FP_REG_P (operands[0]))
     {
       if (FP_REG_P (operands[1]))
 }")
 
 (define_insn ""
-  [(set (match_operand:DI 0 "general_operand" "=r,g")
+  [(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
 \f
 ;; truncation instructions
 (define_insn "truncsiqi2"
-  [(set (match_operand:QI 0 "general_operand" "=dm,d")
+  [(set (match_operand:QI 0 "nonimmediate_operand" "=dm,d")
        (truncate:QI
-        (match_operand:SI 1 "general_operand" "doJ,i")))]
+        (match_operand:SI 1 "general_src_operand" "doJS,i")))]
   ""
   "*
 {
       return \"move%.l %1,%0\";
     }
   if (GET_CODE (operands[1]) == MEM)
-    operands[1] = adj_offsettable_operand (operands[1], 3);
+    operands[1] = adjust_address (operands[1], QImode, 3);
   return \"move%.b %1,%0\";
 }")
 
 (define_insn "trunchiqi2"
-  [(set (match_operand:QI 0 "general_operand" "=dm,d")
+  [(set (match_operand:QI 0 "nonimmediate_operand" "=dm,d")
        (truncate:QI
-        (match_operand:HI 1 "general_operand" "doJ,i")))]
+        (match_operand:HI 1 "general_src_operand" "doJS,i")))]
   ""
   "*
 {
       return \"move%.l %1,%0\";
     }
   if (GET_CODE (operands[1]) == MEM)
-    operands[1] = adj_offsettable_operand (operands[1], 1);
+    operands[1] = adjust_address (operands[1], QImode, 1);
   return \"move%.b %1,%0\";
 }")
 
 (define_insn "truncsihi2"
-  [(set (match_operand:HI 0 "general_operand" "=dm,d")
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=dm,d")
        (truncate:HI
-        (match_operand:SI 1 "general_operand" "roJ,i")))]
+        (match_operand:SI 1 "general_src_operand" "roJS,i")))]
   ""
   "*
 {
       return \"move%.l %1,%0\";
     }
   if (GET_CODE (operands[1]) == MEM)
-    operands[1] = adj_offsettable_operand (operands[1], 2);
+    operands[1] = adjust_address (operands[1], QImode, 2);
   return \"move%.w %1,%0\";
 }")
 \f
 ;; zero extension instructions
 
 (define_insn "zero_extendqidi2"
-  [(set (match_operand:DI 0 "general_operand" "=&d")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=&d")
        (zero_extend:DI (match_operand:QI 1 "general_operand" "dm")))]
   ""
   "*
 {
   CC_STATUS_INIT;
-  operands[2] = gen_rtx (REG, SImode, REGNO (operands[0]) + 1);
+  operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   return \"moveq %#0,%0\;moveq %#0,%2\;move%.b %1,%2\";
 }")
 
 (define_insn "zero_extendhidi2"
-  [(set (match_operand:DI 0 "general_operand" "=&d")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=&d")
        (zero_extend:DI (match_operand:HI 1 "general_operand" "rm")))]
   ""
   "*
 {
   CC_STATUS_INIT;
-  operands[2] = gen_rtx (REG, SImode, REGNO (operands[0]) + 1);
+  operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   return \"moveq %#0,%0\;moveq %#0,%2\;move%.w %1,%2\";
 }")
 
 ;; this is the canonical form for (lshiftrt:DI x 32)
-(define_insn "zero_extendsidi2"
-  [(set (match_operand:DI 0 "general_operand" "rm")
-    (zero_extend:DI (match_operand:SI 1 "general_operand" "rm")))]
+(define_expand "zero_extendsidi2"
+  [(set (match_operand:DI 0 "nonimmediate_operand" "")
+    (zero_extend:DI (match_operand:SI 1 "general_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_COLDFIRE"
+  "*
+{
+  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\";
+}")
+
+(define_insn "*zero_extendsidi2"
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=rm")
+    (zero_extend:DI (match_operand:SI 1 "general_operand" "rm")))]
+  "!TARGET_COLDFIRE"
   "*
 {
   CC_STATUS_INIT;
   else if (GET_CODE (XEXP (operands[0], 0)) == POST_INC)
     return \"clr%.l %0\;move%.l %1,%0\";
   else
-    operands[2] = adj_offsettable_operand (operands[0], 4);
-  if (GET_CODE (operands[1]) != REG || GET_CODE (operands[1]) != REG
+    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]))
   "
 {
   operands[1] = make_safe_from (operands[1], operands[0]);
-  if (GET_CODE (operands[0]) == SUBREG)
-    operands[2] = gen_rtx_SUBREG (HImode, SUBREG_REG (operands[0]),
-                                 SUBREG_WORD (operands[0]));
-  else
-    operands[2] = gen_rtx_SUBREG (HImode, operands[0], 0);
+  operands[2] = gen_lowpart_SUBREG (HImode, operands[0]);
 }")
 
 (define_expand "zero_extendqihi2"
   "
 {
   operands[1] = make_safe_from (operands[1], operands[0]);
-  if (GET_CODE (operands[0]) == SUBREG)
-    operands[2] = gen_rtx_SUBREG (QImode, SUBREG_REG (operands[0]),
-                                 SUBREG_WORD (operands[0]));
-  else
-    operands[2] = gen_rtx_SUBREG (QImode, operands[0], 0);
+  operands[2] = gen_lowpart_SUBREG (QImode, operands[0]);
 }")
 
 (define_expand "zero_extendqisi2"
   "
 {
   operands[1] = make_safe_from (operands[1], operands[0]);
-  if (GET_CODE (operands[0]) == SUBREG)
-    operands[2] = gen_rtx_SUBREG (QImode, SUBREG_REG (operands[0]),
-                                 SUBREG_WORD (operands[0]));
-  else
-    operands[2] = gen_rtx_SUBREG (QImode, operands[0], 0);
+  operands[2] = gen_lowpart_SUBREG (QImode, operands[0]);
 }")
 \f
 ;; Patterns to recognize zero-extend insns produced by the combiner.
 ;; of this case will result in worse code than the uncombined patterns.
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=do<>,d<")
-       (zero_extend:SI (match_operand:HI 1 "nonimmediate_operand" "r,m")))]
+  [(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"
   "*
 {
   else
     {
       output_asm_insn (\"clr%.w %0\", operands);
-      operands[0] = adj_offsettable_operand (operands[0], 2);
+      operands[0] = adjust_address (operands[0], HImode, 2);
       return \"move%.w %1,%0\";
     }
 }")
 
 (define_insn ""
-  [(set (match_operand:HI 0 "general_operand" "=do<>,d")
-       (zero_extend:HI (match_operand:QI 1 "nonimmediate_operand" "d,m")))]
+  [(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"
   "*
 {
     {
       if (GET_CODE (operands[1]) == REG
          && REGNO (operands[0]) == REGNO (operands[1]))
-       return (!TARGET_5200 ? \"and%.w %#0xFF,%0\" : \"and%.l %#0xFF,%0\");
+       return (!TARGET_COLDFIRE ? \"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\" 
+       return (!TARGET_COLDFIRE ? \"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
     {
       output_asm_insn (\"clr%.b %0\", operands);
-      operands[0] = adj_offsettable_operand (operands[0], 1);
+      operands[0] = adjust_address (operands[0], QImode, 1);
       return \"move%.b %1,%0\";
     }
 }")
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=do<>,d")
-       (zero_extend:SI (match_operand:QI 1 "nonimmediate_operand" "d,m")))]
+  [(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"
   "*
 {
   else
     {
       output_asm_insn (\"clr%.l %0\", operands);
-      operands[0] = adj_offsettable_operand (operands[0], 3);
+      operands[0] = adjust_address (operands[0], QImode, 3);
       return \"move%.b %1,%0\";
     }
 }")
 ;; sign extension instructions
 
 (define_insn "extendqidi2"
-  [(set (match_operand:DI 0 "general_operand" "=d")
-       (sign_extend:DI
-        (match_operand:QI 1 "general_operand" "rm")))]
+  [(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)
+  if (TARGET_68020 || TARGET_COLDFIRE)
     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\";
 }")
 
 (define_insn "extendhidi2"
-  [(set (match_operand:DI 0 "general_operand" "=d")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=d")
        (sign_extend:DI
-        (match_operand:HI 1 "general_operand" "rm")))]
+        (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)
+  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\";
 }")
 
 (define_insn "extendsidi2"
-  [(set (match_operand:DI 0 "general_operand" "=d")
+  [(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)
+  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\";
     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)
+  if (TARGET_68020 || TARGET_COLDFIRE)
     return \"smi %0\;extb%.l %0\";
   else
     return \"smi %0\;ext%.w %0\;ext%.l %0\";
 }")
 
 (define_insn "extendhisi2"
-  [(set (match_operand:SI 0 "general_operand" "=*d,a")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=*d,a")
        (sign_extend:SI
-        (match_operand:HI 1 "nonimmediate_operand" "0,rm")))]
+        (match_operand:HI 1 "nonimmediate_src_operand" "0,rmS")))]
   ""
   "*
 {
 }")
 
 (define_insn "extendqihi2"
-  [(set (match_operand:HI 0 "general_operand" "=d")
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=d")
        (sign_extend:HI (match_operand:QI 1 "nonimmediate_operand" "0")))]
   ""
   "ext%.w %0")
 
 (define_insn "extendqisi2"
-  [(set (match_operand:SI 0 "general_operand" "=d")
+  [(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"
   "extb%.l %0")
 \f
 ;; Conversions between float and double.
 
 (define_expand "extendsfdf2"
-  [(set (match_operand:DF 0 "general_operand" "")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "")
        (float_extend:DF
         (match_operand:SF 1 "general_operand" "")))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=x,y")
-       (float_extend:DF
-        (match_operand:SF 1 "general_operand" "xH,rmF")))]
-  "TARGET_FPA"
-  "fpstod %w1,%0")
-
-(define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=*fdm,f")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=*fdm,f")
        (float_extend:DF
          (match_operand:SF 1 "general_operand" "f,dmF")))]
   "TARGET_68881"
 
 ;; This cannot output into an f-reg because there is no way to be
 ;; sure of truncating in that case.
-;; But on the Sun FPA, we can be sure.
 (define_expand "truncdfsf2"
-  [(set (match_operand:SF 0 "general_operand" "")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "")
        (float_truncate:SF
          (match_operand:DF 1 "general_operand" "")))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "")
 
-(define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=x,y")
-       (float_truncate:SF
-         (match_operand:DF 1 "general_operand" "xH,rmF")))]
-  "TARGET_FPA"
-  "fpdtos %y1,%0")
-
 ;; On the '040 we can truncate in a register accurately and easily.
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
        (float_truncate:SF
          (match_operand:DF 1 "general_operand" "fmG")))]
   "TARGET_68040_ONLY"
 }")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=dm")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "=dm")
        (float_truncate:SF
          (match_operand:DF 1 "general_operand" "f")))]
   "TARGET_68881"
 ;; rather than as QImode or HImode.
 
 (define_expand "floatsisf2"
-  [(set (match_operand:SF 0 "general_operand" "")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "")
        (float:SF (match_operand:SI 1 "general_operand" "")))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=y,x")
-       (float:SF (match_operand:SI 1 "general_operand" "rmi,x")))]
-  "TARGET_FPA"
-  "fpltos %1,%0")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
        (float:SF (match_operand:SI 1 "general_operand" "dmi")))]
   "TARGET_68881"
   "f%$move%.l %1,%0")
 
 (define_expand "floatsidf2"
-  [(set (match_operand:DF 0 "general_operand" "")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "")
        (float:DF (match_operand:SI 1 "general_operand" "")))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=y,x")
-       (float:DF (match_operand:SI 1 "general_operand" "rmi,x")))]
-  "TARGET_FPA"
-  "fpltod %1,%0")
-
-(define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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_insn "floathidf2"
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
        (float:DF (match_operand:HI 1 "general_operand" "dmn")))]
   "TARGET_68881"
   "fmove%.w %1,%0")
 
 (define_insn "floatqisf2"
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
        (float:SF (match_operand:QI 1 "general_operand" "dmn")))]
   "TARGET_68881"
   "fmove%.b %1,%0")
 
 (define_insn "floatqidf2"
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
        (float:DF (match_operand:QI 1 "general_operand" "dmn")))]
   "TARGET_68881"
   "f%&move%.b %1,%0")
 ;; than calling the subroutines fixsfsi or fixdfsi.
 
 (define_insn "fix_truncdfsi2"
-  [(set (match_operand:SI 0 "general_operand" "=dm")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=dm")
        (fix:SI (fix:DF (match_operand:DF 1 "register_operand" "f"))))
    (clobber (match_scratch:SI 2 "=d"))
    (clobber (match_scratch:SI 3 "=d"))]
 }")
 
 (define_insn "fix_truncdfhi2"
-  [(set (match_operand:HI 0 "general_operand" "=dm")
+  [(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"))]
 }")
 
 (define_insn "fix_truncdfqi2"
-  [(set (match_operand:QI 0 "general_operand" "=dm")
+  [(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"))]
 ;; This is the first stage of converting it to an integer type.
 
 (define_insn "ftruncdf2"
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
        (fix:DF (match_operand:DF 1 "general_operand" "fFm")))]
   "TARGET_68881 && !TARGET_68040"
   "*
 }")
 
 (define_insn "ftruncsf2"
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
        (fix:SF (match_operand:SF 1 "general_operand" "dfFm")))]
   "TARGET_68881 && !TARGET_68040"
   "*
 ;; Convert a float whose value is an integer
 ;; to an actual integer.  Second stage of converting float to integer type.
 (define_insn "fixsfqi2"
-  [(set (match_operand:QI 0 "general_operand" "=dm")
+  [(set (match_operand:QI 0 "nonimmediate_operand" "=dm")
        (fix:QI (match_operand:SF 1 "general_operand" "f")))]
   "TARGET_68881"
   "fmove%.b %1,%0")
 
 (define_insn "fixsfhi2"
-  [(set (match_operand:HI 0 "general_operand" "=dm")
+  [(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 "general_operand" "=dm")
+  [(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 "general_operand" "=dm")
+  [(set (match_operand:QI 0 "nonimmediate_operand" "=dm")
        (fix:QI (match_operand:DF 1 "general_operand" "f")))]
   "TARGET_68881"
   "fmove%.b %1,%0")
 
 (define_insn "fixdfhi2"
-  [(set (match_operand:HI 0 "general_operand" "=dm")
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=dm")
        (fix:HI (match_operand:DF 1 "general_operand" "f")))]
   "TARGET_68881"
   "fmove%.w %1,%0")
 
 (define_insn "fixdfsi2"
-  [(set (match_operand:SI 0 "general_operand" "=dm")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=dm")
        (fix:SI (match_operand:DF 1 "general_operand" "f")))]
   "TARGET_68881"
   "fmove%.l %1,%0")
-
-;; Convert a float to an integer.
-;; On the Sun FPA, this is done in one step.
-
-(define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=x,y")
-       (fix:SI (fix:SF (match_operand:SF 1 "general_operand" "xH,rmF"))))]
-  "TARGET_FPA"
-  "fpstol %w1,%0")
-
-(define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=x,y")
-       (fix:SI (fix:DF (match_operand:DF 1 "general_operand" "xH,rmF"))))]
-  "TARGET_FPA"
-  "fpdtol %y1,%0")
 \f
 ;; add instructions
 
 (define_insn "adddi_lshrdi_63"
-  [(set (match_operand:DI 0 "general_operand" "=d")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=d")
     (plus:DI (lshiftrt:DI (match_operand:DI 1 "general_operand" "rm")
             (const_int 63))
         (match_dup 1)))
         || GET_CODE (XEXP (operands[1], 0)) == PRE_DEC)
     operands[4] = operands[1];
   else
-    operands[4] = adj_offsettable_operand (operands[1], 4);
+    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)
+  if (TARGET_68020 || TARGET_COLDFIRE)
     output_asm_insn (\"extb%.l %2\", operands);
   else
     output_asm_insn (\"ext%.w %2\;ext%.l %2\", operands);
 }")
 
 (define_insn "adddi_sexthishl32"
-  [(set (match_operand:DI 0 "general_operand" "=o,a,*d,*d")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=o,a,*d,*d")
     (plus:DI (ashift:DI (sign_extend:DI
           (match_operand:HI 1 "general_operand" "rm,rm,rm,rm"))
             (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;
 } ")
 
 (define_insn "adddi_dilshr32"
-  [(set (match_operand:DI 0 "general_operand" "=d,o")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=d,o")
 ;;    (plus:DI (match_operand:DI 2 "general_operand" "%0")
 ;;     (lshiftrt:DI (match_operand:DI 1 "general_operand" "ro")
 ;;            (const_int 32))))]
-    (plus:DI (lshiftrt:DI (match_operand:DI 1 "general_operand" "o,r")
+    (plus:DI (lshiftrt:DI (match_operand:DI 1 "general_operand" "ro,d")
             (const_int 32))
         (match_operand:DI 2 "general_operand" "0,0")))]
   ""
   if (GET_CODE (operands[0]) == REG)
     operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   else
-    operands[2] = adj_offsettable_operand (operands[0], 4);
+    operands[2] = adjust_address (operands[0], SImode, 4);
   return \"add%.l %1,%2\;negx%.l %0\;neg%.l %0\";
 } ")
 
 (define_insn "adddi_dishl32"
-  [(set (match_operand:DI 0 "general_operand" "=r,o")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=r,o")
 ;;    (plus:DI (match_operand:DI 2 "general_operand" "%0")
 ;;     (ashift:DI (match_operand:DI 1 "general_operand" "ro")
 ;;            (const_int 32))))]
-    (plus:DI (ashift:DI (match_operand:DI 1 "general_operand" "o,r")
+    (plus:DI (ashift:DI (match_operand:DI 1 "general_operand" "ro,d")
             (const_int 32))
         (match_operand:DI 2 "general_operand" "0,0")))]
   ""
   if (GET_CODE (operands[1]) == REG)
     operands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
   else
-    operands[1] = adj_offsettable_operand (operands[1], 4);
+    operands[1] = adjust_address (operands[1], SImode, 4);
   return \"add%.l %1,%0\";
 } ")
 
 (define_insn "adddi3"
-  [(set (match_operand:DI 0 "general_operand" "=<,o<>,d,d,d")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=<,o<>,d,d,d")
        (plus:DI (match_operand:DI 1 "general_operand" "%0,0,0,0,0")
                 (match_operand:DI 2 "general_operand" "<,d,no>,d,a")))
    (clobber (match_scratch:SI 3 "=X,&d,&d,X,&d"))]
        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;
          rtx xoperands[2];
+
          if (GET_CODE (operands[2]) == REG)
-           operands[1] = gen_rtx_REG (SImode, REGNO (operands[2]) + 1);
-         else if (GET_CODE (operands[2]) == CONST_DOUBLE)
            {
-             operands[1] = GEN_INT (CONST_DOUBLE_LOW (operands[2]));
-             operands[2] = GEN_INT (CONST_DOUBLE_HIGH (operands[2]));
+             low = gen_rtx_REG (SImode, REGNO (operands[2]) + 1);
+             high = operands[2];
            }
-         else if (GET_CODE (operands[2]) == CONST_INT)
+         else if (CONSTANT_P (operands[2]))
+           split_double (operands[2], &high, &low);
+         else
            {
-             operands[1] = operands[2];
-             operands[2] = INTVAL (operands[2]) < 0 ? constm1_rtx : const0_rtx;
+             low = adjust_address (operands[2], SImode, 4);
+             high = operands[2];
            }
-         else
-           operands[1] = adj_offsettable_operand (operands[2], 4);
+
+         operands[1] = low, operands[2] = high;
          xoperands[0] = operands[3];
          if (GET_CODE (operands[1]) == CONST_INT
              && INTVAL (operands[1]) >= -8 && INTVAL (operands[1]) < 0)
            xoperands[1] = GEN_INT (-INTVAL (operands[2]) - 1);
          else
            xoperands[1] = operands[2];
+
          output_asm_insn (output_move_simode (xoperands), xoperands);
          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 \"add%.l %1,%R0\;addx%.l %3,%0\";
       CC_STATUS_INIT;
       if (GET_CODE (XEXP (operands[0], 0)) == POST_INC)
        {
-         operands[1]
-           = gen_rtx_MEM (SImode,
-                          gen_rtx_PLUS (VOIDmode, XEXP(operands[0], 0),
-                                        GEN_INT (-8)));
+         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\";
        }
       else if (GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
        }
       else
        {
-         operands[1] = adj_offsettable_operand (operands[0], 4);
+         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\";
        }
     }
 } ")
 
 (define_insn "addsi_lshrsi_31"
-  [(set (match_operand:SI 0 "general_operand" "=dm")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=dm")
     (plus:SI (lshiftrt:SI (match_operand:SI 1 "general_operand" "rm")
             (const_int 31))
         (match_dup 1)))]
 #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
-  ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, \"L\",
+  (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
                                CODE_LABEL_NUMBER (operands[3]));
   return \"\";
 }")
 
 (define_expand "addsi3"
-  [(set (match_operand:SI 0 "general_operand" "")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "")
        (plus:SI (match_operand:SI 1 "general_operand" "")
-                (match_operand:SI 2 "general_operand" "")))]
+                (match_operand:SI 2 "general_src_operand" "")))]
   ""
   "")
 
 ;; This is needed since they are not themselves reloaded,
 ;; so commutativity won't apply to them.
 (define_insn "*addsi3_internal"
-  [(set (match_operand:SI 0 "general_operand" "=m,?a,?a,r")
-       (plus:SI (match_operand:SI 1 "general_operand" "%0,a,rJK,0")
-                (match_operand:SI 2 "general_operand" "dIKLs,rJK,a,mrIKLs")))]
-  "! TARGET_5200"
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=m,?a,?a,d,a")
+        (plus:SI (match_operand:SI 1 "general_operand" "%0,a,rJK,0,0")
+                 (match_operand:SI 2 "general_src_operand" "dIKLT,rJK,a,mSrIKLT,mSrIKLs")))]
+
+
+  "! TARGET_COLDFIRE"
   "* return output_addsi3 (operands);")
 
 (define_insn "*addsi3_5200"
-  [(set (match_operand:SI 0 "general_operand" "=m,?a,?a,r")
+  [(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_operand" "d,rJK,a,mrIKLs")))]
-  "TARGET_5200"
+                (match_operand:SI 2 "general_src_operand" "d,rJK,a,mrIKLs")))]
+  "TARGET_COLDFIRE"
   "* return output_addsi3 (operands);")
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=a")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=a")
        (plus:SI (match_operand:SI 1 "general_operand" "0")
                 (sign_extend:SI
-                 (match_operand:HI 2 "nonimmediate_operand" "rm"))))]
-  "!TARGET_5200"
+                 (match_operand:HI 2 "nonimmediate_src_operand" "rmS"))))]
+  "!TARGET_COLDFIRE"
   "add%.w %2,%0")
 
 (define_insn "addhi3"
-  [(set (match_operand:HI 0 "general_operand" "=m,r")
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=m,r")
        (plus:HI (match_operand:HI 1 "general_operand" "%0,0")
-                (match_operand:HI 2 "general_operand" "dn,rmn")))]
-  "!TARGET_5200"
+                (match_operand:HI 2 "general_src_operand" "dn,rmSn")))]
+  "!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)
        {
-         operands[2] = GEN_INT (-INTVAL (operands[2]));
+         operands[2] = GEN_INT (- INTVAL (operands[2]));
          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. */
+        Likewise for subqw.  */
       if (TARGET_CPU32 && REG_P (operands[0]))
        {
          if (INTVAL (operands[2]) > 8
          if (INTVAL (operands[2]) < -8
              && INTVAL (operands[2]) >= -16)
            {
-             operands[2] = GEN_INT (-INTVAL (operands[2]) - 8);
+             operands[2] = GEN_INT (- INTVAL (operands[2]) - 8);
              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\";
 ;; operand in both positions.
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:HI 0 "general_operand" "+m,d"))
+  [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+m,d"))
        (plus:HI (match_dup 0)
-                (match_operand:HI 1 "general_operand" "dn,rmn")))]
-  "!TARGET_5200"
+                (match_operand:HI 1 "general_src_operand" "dn,rmSn")))]
+  "!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)
        {
-         operands[1] = GEN_INT (-INTVAL (operands[1]));
+         operands[1] = GEN_INT (- INTVAL (operands[1]));
          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. */
+        Likewise for subqw.  */
       if (TARGET_CPU32 && REG_P (operands[0]))
        {
          if (INTVAL (operands[1]) > 8
          if (INTVAL (operands[1]) < -8
              && INTVAL (operands[1]) >= -16)
            {
-             operands[1] = GEN_INT (-INTVAL (operands[1]) - 8);
+             operands[1] = GEN_INT (- INTVAL (operands[1]) - 8);
              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\";
 }")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:HI 0 "general_operand" "+m,d"))
-       (plus:HI (match_operand:HI 1 "general_operand" "dn,rmn")
+  [(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)
        {
-         operands[1] = GEN_INT (-INTVAL (operands[1]));
+         operands[1] = GEN_INT (- INTVAL (operands[1]));
          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. */
+        Likewise for subqw.  */
       if (TARGET_CPU32 && REG_P (operands[0])) 
        {
          if (INTVAL (operands[1]) > 8
          if (INTVAL (operands[1]) < -8
              && INTVAL (operands[1]) >= -16)
            {
-             operands[1] = GEN_INT (-INTVAL (operands[1]) - 8);
+             operands[1] = GEN_INT (- INTVAL (operands[1]) - 8);
              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\";
 }")
 
 (define_insn "addqi3"
-  [(set (match_operand:QI 0 "general_operand" "=m,d")
+  [(set (match_operand:QI 0 "nonimmediate_operand" "=m,d")
        (plus:QI (match_operand:QI 1 "general_operand" "%0,0")
-                (match_operand:QI 2 "general_operand" "dn,dmn")))]
-  "!TARGET_5200"
+                (match_operand:QI 2 "general_src_operand" "dn,dmSn")))]
+  "!TARGET_COLDFIRE"
   "*
 {
-#ifndef NO_ADDSUB_Q
   if (GET_CODE (operands[2]) == CONST_INT)
     {
       if (INTVAL (operands[2]) >= 128)
        return \"addq%.b %2,%0\";
       if (INTVAL (operands[2]) < 0 && INTVAL (operands[2]) >= -8)
        {
-        operands[2] = GEN_INT (-INTVAL (operands[2]));
+        operands[2] = GEN_INT (- INTVAL (operands[2]));
         return \"subq%.b %2,%0\";
        }
     }
-#endif
   return \"add%.b %2,%0\";
 }")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:QI 0 "general_operand" "+m,d"))
+  [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+m,d"))
        (plus:QI (match_dup 0)
-                (match_operand:QI 1 "general_operand" "dn,dmn")))]
-  "!TARGET_5200"
+                (match_operand:QI 1 "general_src_operand" "dn,dmSn")))]
+  "!TARGET_COLDFIRE"
   "*
 {
-#ifndef NO_ADDSUB_Q
   if (GET_CODE (operands[1]) == CONST_INT)
     {
       if (INTVAL (operands[1]) >= 128)
        return \"addq%.b %1,%0\";
       if (INTVAL (operands[1]) < 0 && INTVAL (operands[1]) >= -8)
        {
-        operands[1] = GEN_INT (-INTVAL (operands[1]));
+        operands[1] = GEN_INT (- INTVAL (operands[1]));
         return \"subq%.b %1,%0\";
        }
     }
-#endif
   return \"add%.b %1,%0\";
 }")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:QI 0 "general_operand" "+m,d"))
-       (plus:QI (match_operand:QI 1 "general_operand" "dn,dmn")
+  [(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)
        return \"addq%.b %1,%0\";
       if (INTVAL (operands[1]) < 0 && INTVAL (operands[1]) >= -8)
        {
-        operands[1] = GEN_INT (-INTVAL (operands[1]));
+        operands[1] = GEN_INT (- INTVAL (operands[1]));
         return \"subq%.b %1,%0\";
        }
     }
-#endif
   return \"add%.b %1,%0\";
 }")
 
 (define_expand "adddf3"
-  [(set (match_operand:DF 0 "general_operand" "")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "")
        (plus:DF (match_operand:DF 1 "general_operand" "")
                 (match_operand:DF 2 "general_operand" "")))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=x,y")
-       (plus:DF (match_operand:DF 1 "general_operand" "%xH,y")
-                (match_operand:DF 2 "general_operand" "xH,dmF")))]
-  "TARGET_FPA"
-  "*
-{
-  if (rtx_equal_p (operands[0], operands[1]))
-    return \"fpadd%.d %y2,%0\";
-  if (rtx_equal_p (operands[0], operands[2]))
-    return \"fpadd%.d %y1,%0\";
-  if (which_alternative == 0)
-    return \"fpadd3%.d %w2,%w1,%0\";
-  return \"fpadd3%.d %x2,%x1,%0\";
-}")
-
-(define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(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")))]
   "TARGET_68881"
   "f%&add%.l %2,%0")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(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")))]
   "TARGET_68881"
   "f%&add%.w %2,%0")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(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")))]
   "TARGET_68881"
   "f%&add%.b %2,%0")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
        (plus:DF (match_operand:DF 1 "general_operand" "%0")
                 (match_operand:DF 2 "general_operand" "fmG")))]
   "TARGET_68881"
 }")
 
 (define_expand "addsf3"
-  [(set (match_operand:SF 0 "general_operand" "")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "")
        (plus:SF (match_operand:SF 1 "general_operand" "")
                 (match_operand:SF 2 "general_operand" "")))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=x,y")
-       (plus:SF (match_operand:SF 1 "general_operand" "%xH,y")
-                (match_operand:SF 2 "general_operand" "xH,rmF")))]
-  "TARGET_FPA"
-  "*
-{
-  if (rtx_equal_p (operands[0], operands[1]))
-    return \"fpadd%.s %w2,%0\";
-  if (rtx_equal_p (operands[0], operands[2]))
-    return \"fpadd%.s %w1,%0\";
-  if (which_alternative == 0)
-    return \"fpadd3%.s %w2,%w1,%0\";
-  return \"fpadd3%.s %2,%1,%0\";
-}")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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"
 ;; subtract instructions
 
 (define_insn "subdi_sexthishl32"
-  [(set (match_operand:DI 0 "general_operand" "=o,a,*d,*d")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=o,a,*d,*d")
     (minus:DI (match_operand:DI 1 "general_operand" "0,0,0,0")
         (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;
 } ")
 
 (define_insn "subdi_dishl32"
-  [(set (match_operand:DI 0 "general_operand" "+ro")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "+ro")
     (minus:DI (match_dup 0)
         (ashift:DI (match_operand:DI 1 "general_operand" "ro")
             (const_int 32))))]
   if (GET_CODE (operands[1]) == REG)
     operands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
   else
-    operands[1] = adj_offsettable_operand (operands[1], 4);
+    operands[1] = adjust_address (operands[1], SImode, 4);
   return \"sub%.l %1,%0\";
 } ")
 
 (define_insn "subdi3"
-  [(set (match_operand:DI 0 "general_operand" "=<,o<>,d,d,d")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=<,o<>,d,d,d")
        (minus:DI (match_operand:DI 1 "general_operand" "0,0,0,0,0")
                 (match_operand:DI 2 "general_operand" "<,d,no>,d,a")))
    (clobber (match_scratch:SI 3 "=X,&d,&d,X,&d"))]
        }
       else
        {
+         rtx high, low;
          rtx xoperands[2];
+
          if (GET_CODE (operands[2]) == REG)
-           operands[1] = gen_rtx_REG (SImode, REGNO (operands[2]) + 1);
-         else if (GET_CODE (operands[2]) == CONST_DOUBLE)
            {
-             operands[1] = GEN_INT (CONST_DOUBLE_LOW (operands[2]));
-             operands[2] = GEN_INT (CONST_DOUBLE_HIGH (operands[2]));
+             low = gen_rtx_REG (SImode, REGNO (operands[2]) + 1);
+             high = operands[2];
            }
-         else if (GET_CODE (operands[2]) == CONST_INT)
+         else if (CONSTANT_P (operands[2]))
+           split_double (operands[2], &high, &low);
+         else
            {
-             operands[1] = operands[2];
-             operands[2] = INTVAL (operands[2]) < 0 ? constm1_rtx : const0_rtx;
+             low = adjust_address (operands[2], SImode, 4);
+             high = operands[2];
            }
-         else
-           operands[1] = adj_offsettable_operand (operands[2], 4);
+
+         operands[1] = low, operands[2] = high;
          xoperands[0] = operands[3];
          if (GET_CODE (operands[1]) == CONST_INT
              && INTVAL (operands[1]) >= -8 && INTVAL (operands[1]) < 0)
            xoperands[1] = GEN_INT (-INTVAL (operands[2]) - 1);
          else
            xoperands[1] = operands[2];
+
          output_asm_insn (output_move_simode (xoperands), xoperands);
          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 \"sub%.l %1,%R0\;subx%.l %3,%0\";
       if (GET_CODE (XEXP (operands[0], 0)) == POST_INC)
        {
          operands[1]
-           = gen_rtx_MEM (SImode,
-                          gen_rtx_PLUS (VOIDmode, XEXP(operands[0], 0),
-                                        GEN_INT (-8)));
+           = 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\";
        }
       else if (GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
        }
       else
        {
-         operands[1] = adj_offsettable_operand (operands[0], 4);
+         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\";
        }
     }
 } ")
 
 (define_insn "subsi3"
-  [(set (match_operand:SI 0 "general_operand" "=m,r")
-       (minus:SI (match_operand:SI 1 "general_operand" "0,0")
-                 (match_operand:SI 2 "general_operand" "ds,mrs")))]
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=m,d,a")
+       (minus:SI (match_operand:SI 1 "general_operand" "0,0,0")
+                 (match_operand:SI 2 "general_src_operand" "dT,mSrT,mSrs")))]
   ""
   "sub%.l %2,%0")
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=a")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=a")
        (minus:SI (match_operand:SI 1 "general_operand" "0")
                  (sign_extend:SI
-                  (match_operand:HI 2 "nonimmediate_operand" "rm"))))]
-  "!TARGET_5200"
+                  (match_operand:HI 2 "nonimmediate_src_operand" "rmS"))))]
+  "!TARGET_COLDFIRE"
   "sub%.w %2,%0")
 
 (define_insn "subhi3"
-  [(set (match_operand:HI 0 "general_operand" "=m,r")
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=m,r")
        (minus:HI (match_operand:HI 1 "general_operand" "0,0")
-                 (match_operand:HI 2 "general_operand" "dn,rmn")))]
-  "!TARGET_5200"
+                 (match_operand:HI 2 "general_src_operand" "dn,rmSn")))]
+  "!TARGET_COLDFIRE"
   "sub%.w %2,%0")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:HI 0 "general_operand" "+m,d"))
+  [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+m,d"))
        (minus:HI (match_dup 0)
-                 (match_operand:HI 1 "general_operand" "dn,rmn")))]
-  "!TARGET_5200"
+                 (match_operand:HI 1 "general_src_operand" "dn,rmSn")))]
+  "!TARGET_COLDFIRE"
   "sub%.w %1,%0")
 
 (define_insn "subqi3"
-  [(set (match_operand:QI 0 "general_operand" "=m,d")
+  [(set (match_operand:QI 0 "nonimmediate_operand" "=m,d")
        (minus:QI (match_operand:QI 1 "general_operand" "0,0")
-                 (match_operand:QI 2 "general_operand" "dn,dmn")))]
-  "!TARGET_5200"
+                 (match_operand:QI 2 "general_src_operand" "dn,dmSn")))]
+  "!TARGET_COLDFIRE"
   "sub%.b %2,%0")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:QI 0 "general_operand" "+m,d"))
+  [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+m,d"))
        (minus:QI (match_dup 0)
-                 (match_operand:QI 1 "general_operand" "dn,dmn")))]
-  "!TARGET_5200"
+                 (match_operand:QI 1 "general_src_operand" "dn,dmSn")))]
+  "!TARGET_COLDFIRE"
   "sub%.b %1,%0")
 
 (define_expand "subdf3"
-  [(set (match_operand:DF 0 "general_operand" "")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "")
        (minus:DF (match_operand:DF 1 "general_operand" "")
                  (match_operand:DF 2 "general_operand" "")))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=x,y,y")
-       (minus:DF (match_operand:DF 1 "general_operand" "xH,y,dmF")
-                 (match_operand:DF 2 "general_operand" "xH,dmF,0")))]
-  "TARGET_FPA"
-  "*
-{
-  if (rtx_equal_p (operands[0], operands[2]))
-    return \"fprsub%.d %y1,%0\";
-  if (rtx_equal_p (operands[0], operands[1]))
-    return \"fpsub%.d %y2,%0\";
-  if (which_alternative == 0)
-    return \"fpsub3%.d %w2,%w1,%0\";
-  return \"fpsub3%.d %x2,%x1,%0\";
-}")
-
-(define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(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"))))]
   "TARGET_68881"
   "f%&sub%.l %2,%0")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(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"))))]
   "TARGET_68881"
   "f%&sub%.w %2,%0")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(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"))))]
   "TARGET_68881"
   "f%&sub%.b %2,%0")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
        (minus:DF (match_operand:DF 1 "general_operand" "0")
                  (match_operand:DF 2 "general_operand" "fmG")))]
   "TARGET_68881"
 }")
 
 (define_expand "subsf3"
-  [(set (match_operand:SF 0 "general_operand" "")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "")
        (minus:SF (match_operand:SF 1 "general_operand" "")
                  (match_operand:SF 2 "general_operand" "")))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=x,y,y")
-       (minus:SF (match_operand:SF 1 "general_operand" "xH,y,rmF")
-                 (match_operand:SF 2 "general_operand" "xH,rmF,0")))]
-  "TARGET_FPA"
-  "*
-{
-  if (rtx_equal_p (operands[0], operands[2]))
-    return \"fprsub%.s %w1,%0\";
-  if (rtx_equal_p (operands[0], operands[1]))
-    return \"fpsub%.s %w2,%0\";
-  if (which_alternative == 0)
-    return \"fpsub3%.s %w2,%w1,%0\";
-  return \"fpsub3%.s %2,%1,%0\";
-}")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(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"
 ;; multiply instructions
 
 (define_insn "mulhi3"
-  [(set (match_operand:HI 0 "general_operand" "=d")
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=d")
        (mult:HI (match_operand:HI 1 "general_operand" "%0")
-                (match_operand:HI 2 "general_operand" "dmn")))]
+                (match_operand:HI 2 "general_src_operand" "dmSn")))]
   ""
   "*
 {
-#if defined(MOTOROLA) && !defined(CRDS)
+#if defined(MOTOROLA)
   return \"muls%.w %2,%0\";
 #else
   return \"muls %2,%0\";
 }")
 
 (define_insn "mulhisi3"
-  [(set (match_operand:SI 0 "general_operand" "=d")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (mult:SI (sign_extend:SI
                  (match_operand:HI 1 "nonimmediate_operand" "%0"))
                 (sign_extend:SI
-                 (match_operand:HI 2 "nonimmediate_operand" "dm"))))]
+                 (match_operand:HI 2 "nonimmediate_src_operand" "dmS"))))]
   ""
   "*
 {
-#if defined(MOTOROLA) && !defined(CRDS)
+#if defined(MOTOROLA)
   return \"muls%.w %2,%0\";
 #else
   return \"muls %2,%0\";
 }")
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=d")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (mult:SI (sign_extend:SI
                  (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) && !defined(CRDS)
+#if defined(MOTOROLA)
   return \"muls%.w %2,%0\";
 #else
   return \"muls %2,%0\";
 }")
 
 (define_expand "mulsi3"
-  [(set (match_operand:SI 0 "general_operand" "")
+  [(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 "general_operand" "=d")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (mult:SI (match_operand:SI 1 "general_operand" "%0")
-                (match_operand:SI 2 "general_operand" "dmsK")))]
+                 (match_operand:SI 2 "general_src_operand" "dmSTK")))]
+
   "TARGET_68020"
   "muls%.l %2,%0")
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=d")
+  [(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"
-  [(set (match_operand:SI 0 "general_operand" "=d")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (mult:SI (zero_extend:SI
                  (match_operand:HI 1 "nonimmediate_operand" "%0"))
                 (zero_extend:SI
-                 (match_operand:HI 2 "nonimmediate_operand" "dm"))))]
+                 (match_operand:HI 2 "nonimmediate_src_operand" "dmS"))))]
   ""
   "*
 {
-#if defined(MOTOROLA) && !defined(CRDS)
+#if defined(MOTOROLA)
   return \"mulu%.w %2,%0\";
 #else
   return \"mulu %2,%0\";
 }")
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=d")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (mult:SI (zero_extend:SI
                  (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) && !defined(CRDS)
+#if defined(MOTOROLA)
   return \"mulu%.w %2,%0\";
 #else
   return \"mulu %2,%0\";
 ;; the high-numbered word of the DImode operand[0] and operand[1].
 (define_expand "umulsidi3"
   [(parallel
-    [(set (subreg:SI (match_operand:DI 0 "register_operand" "") 1)
+    [(set (subreg:SI (match_operand:DI 0 "register_operand" "") 4)
          (mult:SI (match_operand:SI 1 "register_operand" "")
-                  (match_operand:SI 2 "nonimmediate_operand" "")))
+                  (match_operand:SI 2 "register_operand" "")))
      (set (subreg:SI (match_dup 0) 0)
          (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 && !TARGET_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 && !TARGET_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 && !TARGET_68060 && !TARGET_COLDFIRE
    && (unsigned) INTVAL (operands[2]) <= 0x7fffffff"
   "mulu%.l %2,%3:%0")
 
 (define_expand "mulsidi3"
   [(parallel
-    [(set (subreg:SI (match_operand:DI 0 "register_operand" "") 1)
+    [(set (subreg:SI (match_operand:DI 0 "register_operand" "") 4)
          (mult:SI (match_operand:SI 1 "register_operand" "")
-                  (match_operand:SI 2 "nonimmediate_operand" "")))
+                  (match_operand:SI 2 "register_operand" "")))
      (set (subreg:SI (match_dup 0) 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 && !TARGET_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 && !TARGET_68060 && !TARGET_COLDFIRE"
   "muls%.l %2,%3:%0")
 
 (define_insn ""
   [(set (match_operand:SI 0 "register_operand" "=d")
        (mult:SI (match_operand:SI 1 "register_operand" "%0")
-                (match_operand:SI 2 "const_sint32_operand" "")))
+                (match_operand:SI 2 "const_int_operand" "n")))
    (set (match_operand:SI 3 "register_operand" "=d")
        (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 && !TARGET_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 && !TARGET_68060 && !TARGET_COLDFIRE"
   "
 {
   operands[3] = gen_reg_rtx (SImode);
-  if (GET_CODE (operands[2]) == CONST_INT
-      || GET_CODE (operands[2]) == CONST_DOUBLE)
+
+  if (GET_CODE (operands[2]) == CONST_INT)
     {
-      if (! const_uint32_operand (operands[2], VOIDmode))
-       abort ();
+      operands[2] = immed_double_const (INTVAL (operands[2]) & 0xffffffff,
+                                       0, DImode);
+
       /* We have to adjust the operand order for the matching constraints.  */
       emit_insn (gen_const_umulsi3_highpart (operands[0], operands[3],
                                             operands[1], operands[2]));
                   (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 && !TARGET_68060 && !TARGET_COLDFIRE"
   "mulu%.l %3,%0:%1")
 
 (define_insn "const_umulsi3_highpart"
        (truncate:SI
         (lshiftrt:DI
          (mult:DI (zero_extend:DI (match_operand:SI 2 "register_operand" "1"))
-                  (match_operand 3 "const_uint32_operand" ""))
+                  (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 && !TARGET_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 && !TARGET_68060 && !TARGET_COLDFIRE"
   "
 {
   operands[3] = gen_reg_rtx (SImode);
-  if (GET_CODE (operands[2]) == CONST_INT
-      || GET_CODE (operands[2]) == CONST_DOUBLE)
+  if (GET_CODE (operands[2]) == CONST_INT)
     {
-      if (! const_sint32_operand (operands[2], VOIDmode))
-       abort ();
       /* We have to adjust the operand order for the matching constraints.  */
       emit_insn (gen_const_smulsi3_highpart (operands[0], operands[3],
                                             operands[1], operands[2]));
                   (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 && !TARGET_68060 && !TARGET_COLDFIRE"
   "muls%.l %3,%0:%1")
 
 (define_insn "const_smulsi3_highpart"
        (truncate:SI
         (lshiftrt:DI
          (mult:DI (sign_extend:DI (match_operand:SI 2 "register_operand" "1"))
-                  (match_operand 3 "const_sint32_operand" ""))
+                  (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 && !TARGET_68060 && !TARGET_COLDFIRE"
   "muls%.l %3,%0:%1")
 
 (define_expand "muldf3"
-  [(set (match_operand:DF 0 "general_operand" "")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "")
        (mult:DF (match_operand:DF 1 "general_operand" "")
                 (match_operand:DF 2 "general_operand" "")))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=x,y")
-       (mult:DF (match_operand:DF 1 "general_operand" "%xH,y")
-                (match_operand:DF 2 "general_operand" "xH,rmF")))]
-  "TARGET_FPA"
-  "*
-{
-  if (rtx_equal_p (operands[1], operands[2]))
-    return \"fpsqr%.d %y1,%0\";
-  if (rtx_equal_p (operands[0], operands[1]))
-    return \"fpmul%.d %y2,%0\";
-  if (rtx_equal_p (operands[0], operands[2]))
-    return \"fpmul%.d %y1,%0\";
-  if (which_alternative == 0)
-    return \"fpmul3%.d %w2,%w1,%0\";
-  return \"fpmul3%.d %x2,%x1,%0\";
-}")
-
-(define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(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")))]
   "TARGET_68881"
   "f%&mul%.l %2,%0")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(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")))]
   "TARGET_68881"
   "f%&mul%.w %2,%0")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(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")))]
   "TARGET_68881"
   "f%&mul%.b %2,%0")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(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"
 }")
 
 (define_expand "mulsf3"
-  [(set (match_operand:SF 0 "general_operand" "")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "")
        (mult:SF (match_operand:SF 1 "general_operand" "")
                 (match_operand:SF 2 "general_operand" "")))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=x,y")
-       (mult:SF (match_operand:SF 1 "general_operand" "%xH,y")
-                (match_operand:SF 2 "general_operand" "xH,rmF")))]
-  "TARGET_FPA"
-  "*
-{
-  if (rtx_equal_p (operands[1], operands[2]))
-    return \"fpsqr%.s %w1,%0\";
-  if (rtx_equal_p (operands[0], operands[1]))
-    return \"fpmul%.s %w2,%0\";
-  if (rtx_equal_p (operands[0], operands[2]))
-    return \"fpmul%.s %w1,%0\";
-  if (which_alternative == 0)
-    return \"fpmul3%.s %w2,%w1,%0\";
-  return \"fpmul3%.s %2,%1,%0\";
-}")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(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"
 }")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(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")))]
   "TARGET_68881"
 }")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(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")))]
   "TARGET_68881"
 }")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(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"
   "*
 {
-#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\");
 ;; divide instructions
 
 (define_expand "divdf3"
-  [(set (match_operand:DF 0 "general_operand" "")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "")
        (div:DF (match_operand:DF 1 "general_operand" "")
                (match_operand:DF 2 "general_operand" "")))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=x,y,y")
-       (div:DF (match_operand:DF 1 "general_operand" "xH,y,rmF")
-               (match_operand:DF 2 "general_operand" "xH,rmF,0")))]
-  "TARGET_FPA"
-  "*
-{
-  if (rtx_equal_p (operands[0], operands[2]))
-    return \"fprdiv%.d %y1,%0\";
-  if (rtx_equal_p (operands[0], operands[1]))
-    return \"fpdiv%.d %y2,%0\";
-  if (which_alternative == 0)
-    return \"fpdiv3%.d %w2,%w1,%0\";
-  return \"fpdiv3%.d %x2,%x1,%x0\";
-}")
-
-(define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
        (div:DF (match_operand:DF 1 "general_operand" "0")
                (match_operand:DF 2 "general_operand" "fmG")))]
   "TARGET_68881"
 }")
 
 (define_expand "divsf3"
-  [(set (match_operand:SF 0 "general_operand" "")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "")
        (div:SF (match_operand:SF 1 "general_operand" "")
                (match_operand:SF 2 "general_operand" "")))]
-  "TARGET_68881 || TARGET_FPA"
+  "TARGET_68881"
   "")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=x,y,y")
-       (div:SF (match_operand:SF 1 "general_operand" "xH,y,rmF")
-               (match_operand:SF 2 "general_operand" "xH,rmF,0")))]
-  "TARGET_FPA"
-  "*
-{
-  if (rtx_equal_p (operands[0], operands[1]))
-    return \"fpdiv%.s %w2,%0\";
-  if (rtx_equal_p (operands[0], operands[2]))
-    return \"fprdiv%.s %w1,%0\";
-  if (which_alternative == 0)
-    return \"fpdiv3%.s %w2,%w1,%0\";
-  return \"fpdiv3%.s %2,%1,%0\";
-}")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f")
-       (div:SF (match_operand:SF 1 "general_operand" "0")
-               (float:SF (match_operand:SI 2 "general_operand" "dmi"))))]
-  "TARGET_68881"
+  [(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"))))]
+  "TARGET_68881"
   "*
 {
   return (TARGET_68040_ONLY
 }")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(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"))))]
   "TARGET_68881"
 }")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(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"))))]
   "TARGET_68881"
 }")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(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"
   "*
 {
-#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\");
 \f
 ;; Remainder instructions.
 
-(define_insn "divmodsi4"
-  [(set (match_operand:SI 0 "general_operand" "=d")
+(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_operand" "dmsK")))
-   (set (match_operand:SI 3 "general_operand" "=d")
+               (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 \"divsl%.l %2,%3:%0\";
 }")
 
-(define_insn "udivmodsi4"
-  [(set (match_operand:SI 0 "general_operand" "=d")
+(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 \"divu%.l %2,%0\";
+  else if (find_reg_note (insn, REG_UNUSED, operands[0]))
+    return \"remu%.l %2,%3:%0\";
+  else
+    return \"remu%.l %2,%3:%0\;divu%.l %2,%0\";
+}")
+
+(define_insn ""
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (udiv:SI (match_operand:SI 1 "general_operand" "0")
-                (match_operand:SI 2 "general_operand" "dmsK")))
-   (set (match_operand:SI 3 "general_operand" "=d")
+                (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]))
 }")
 
 (define_insn "divmodhi4"
-  [(set (match_operand:HI 0 "general_operand" "=d")
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=d")
        (div:HI (match_operand:HI 1 "general_operand" "0")
-               (match_operand:HI 2 "general_operand" "dmsK")))
-   (set (match_operand:HI 3 "general_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
 }")
 
 (define_insn "udivmodhi4"
-  [(set (match_operand:HI 0 "general_operand" "=d")
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=d")
        (udiv:HI (match_operand:HI 1 "general_operand" "0")
-                (match_operand:HI 2 "general_operand" "dmsK")))
-   (set (match_operand:HI 3 "general_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
 
 ;; "anddi3" is mainly here to help combine().
 (define_insn "anddi3"
-  [(set (match_operand:DI 0 "general_operand" "=o,d")
+  [(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_COLDFIRE"
   "*
 {
   CC_STATUS_INIT;
-  /* We can get CONST_DOUBLE, but also const1_rtx etc. */
-  if (GET_CODE (operands[2]) == CONST_DOUBLE
-     || GET_CODE (operands[2]) == CONST_INT)
+  /* We can get CONST_DOUBLE, but also const1_rtx etc.  */
+  if (CONSTANT_P (operands[2]))
     {
       rtx hi, lo;
 
-      if (GET_CODE (operands[2]) == CONST_DOUBLE)
-       {
-         hi = GEN_INT (CONST_DOUBLE_HIGH (operands[2]));
-         lo = GEN_INT (CONST_DOUBLE_LOW (operands[2]));
-       }
-      else
-       {
-         lo = operands[2];
-         hi = INTVAL (lo) < 0 ? constm1_rtx : const0_rtx;
-       }
+      split_double (operands[2], &hi, &lo);
+
       switch (INTVAL (hi))
        {
          case 0 :
       if (GET_CODE (operands[0]) == REG)
        operands[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
       else
-       operands[0] = adj_offsettable_operand (operands[0], 4);
+       operands[0] = adjust_address (operands[0], SImode, 4);
       switch (INTVAL (lo))
        {
          case 0 :
     }
   if (GET_CODE (operands[0]) != REG)
     {
-      operands[1] = adj_offsettable_operand (operands[0], 4);
+      operands[1] = adjust_address (operands[0], SImode, 4);
       return \"and%.l %2,%0\;and%.l %R2,%1\";
     }
   if (GET_CODE (operands[2]) != REG)
     {
-      operands[1] = adj_offsettable_operand (operands[2], 4);
+      operands[1] = adjust_address (operands[2], SImode, 4);
       return \"and%.l %2,%0\;and%.l %1,%R0\";
     }
   return \"and%.l %2,%0\;and%.l %R2,%R0\";
 ;; can't allocate pseudos into it.
 
 (define_expand "andsi3"
-  [(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_operand" "dKs,dmMs")))]
+  [(set (match_operand:SI 0 "not_sp_operand" "")
+       (and:SI (match_operand:SI 1 "general_operand" "")
+               (match_operand:SI 2 "general_src_operand" "")))]
   ""
   "")
 
 (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_operand" "dKs,dmMs")))]
-  "!TARGET_5200"
+               (match_operand:SI 2 "general_src_operand" "dKT,dmSM")))]
+  "!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_operand" "d,dmsK")))]
-  "TARGET_5200"
+               (match_operand:SI 2 "general_src_operand" "d,dmsK")))]
+  "TARGET_COLDFIRE"
   "and%.l %2,%0")
 
 (define_insn "andhi3"
-  [(set (match_operand:HI 0 "general_operand" "=m,d")
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=m,d")
        (and:HI (match_operand:HI 1 "general_operand" "%0,0")
-               (match_operand:HI 2 "general_operand" "dn,dmn")))]
-  "!TARGET_5200"
+               (match_operand:HI 2 "general_src_operand" "dn,dmSn")))]
+  "!TARGET_COLDFIRE"
   "and%.w %2,%0")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:HI 0 "general_operand" "+m,d"))
+  [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+m,d"))
        (and:HI (match_dup 0)
-               (match_operand:HI 1 "general_operand" "dn,dmn")))]
-  "!TARGET_5200"
+               (match_operand:HI 1 "general_src_operand" "dn,dmSn")))]
+  "!TARGET_COLDFIRE"
   "and%.w %1,%0")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:HI 0 "general_operand" "+m,d"))
-       (and:HI (match_operand:HI 1 "general_operand" "dn,dmn")
+  [(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 "general_operand" "=m,d")
+  [(set (match_operand:QI 0 "nonimmediate_operand" "=m,d")
        (and:QI (match_operand:QI 1 "general_operand" "%0,0")
-               (match_operand:QI 2 "general_operand" "dn,dmn")))]
-  "!TARGET_5200"
+               (match_operand:QI 2 "general_src_operand" "dn,dmSn")))]
+  "!TARGET_COLDFIRE"
   "and%.b %2,%0")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:QI 0 "general_operand" "+m,d"))
+  [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+m,d"))
        (and:QI (match_dup 0)
-               (match_operand:QI 1 "general_operand" "dn,dmn")))]
-  "!TARGET_5200"
+               (match_operand:QI 1 "general_src_operand" "dn,dmSn")))]
+  "!TARGET_COLDFIRE"
   "and%.b %1,%0")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:QI 0 "general_operand" "+m,d"))
-       (and:QI (match_operand:QI 1 "general_operand" "dn,dmn")
+  [(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
 
 (define_insn "iordi_zext"
-  [(set (match_operand:DI 0 "general_operand" "=o,d")
+  [(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;
 
   CC_STATUS_INIT;
   if (GET_CODE (operands[0]) == REG)
-    operands[0] = gen_rtx (REG, SImode, REGNO (operands[0]) + 1);
+    operands[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   else
-    operands[0] = adj_offsettable_operand (operands[0], 4);
+    operands[0] = adjust_address (operands[0], SImode, 4);
   if (GET_MODE (operands[1]) == SImode)
     return \"or%.l %1,%0\";
   byte_mode = (GET_MODE (operands[1]) == QImode);
   if (GET_CODE (operands[0]) == MEM)
-    operands[0] = adj_offsettable_operand (operands[0], byte_mode ? 3 : 2);
+    operands[0] = adjust_address (operands[0], byte_mode ? QImode : HImode,
+                                 byte_mode ? 3 : 2);
   if (byte_mode)
     return \"or%.b %1,%0\";
   else
 
 ;; "iordi3" is mainly here to help combine().
 (define_insn "iordi3"
-  [(set (match_operand:DI 0 "general_operand" "=o,d")
+  [(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. */
-  if (GET_CODE (operands[2]) == CONST_DOUBLE
-     || GET_CODE (operands[2]) == CONST_INT)
+  /* We can get CONST_DOUBLE, but also const1_rtx etc.  */
+  if (CONSTANT_P (operands[2]))
     {
       rtx hi, lo;
 
-      if (GET_CODE (operands[2]) == CONST_DOUBLE)
-       {
-         hi = GEN_INT (CONST_DOUBLE_HIGH (operands[2]));
-         lo = GEN_INT (CONST_DOUBLE_LOW (operands[2]));
-       }
-      else
-       {
-         lo = operands[2];
-         hi = INTVAL (lo) < 0 ? constm1_rtx : const0_rtx;
-       }
+      split_double (operands[2], &hi, &lo);
+
       switch (INTVAL (hi))
        {
          case 0 :
       if (GET_CODE (operands[0]) == REG)
        operands[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
       else
-       operands[0] = adj_offsettable_operand (operands[0], 4);
+       operands[0] = adjust_address (operands[0], SImode, 4);
       switch (INTVAL (lo))
        {
          case 0 :
          case -1 :
            /* FIXME : a scratch register would be welcome here if operand[0]
               is not a register */
-           output_asm_insn (\"move%.l %#-1,%R0\", operands);
+           output_asm_insn (\"move%.l %#-1,%0\", operands);
            break;
          default :
            {
     }
   if (GET_CODE (operands[0]) != REG)
     {
-      operands[1] = adj_offsettable_operand (operands[0], 4);
+      operands[1] = adjust_address (operands[0], SImode, 4);
       return \"or%.l %2,%0\;or%.l %R2,%1\";
     }
   if (GET_CODE (operands[2]) != REG)
     {
-      operands[1] = adj_offsettable_operand (operands[2], 4);
+      operands[1] = adjust_address (operands[2], SImode, 4);
       return \"or%.l %2,%0\;or%.l %1,%R0\";
     }
   return \"or%.l %2,%0\;or%.l %R2,%R0\";
 }")
 
 (define_expand "iorsi3"
-  [(set (match_operand:SI 0 "general_operand" "")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "")
        (ior:SI (match_operand:SI 1 "general_operand" "")
-               (match_operand:SI 2 "general_operand" "")))]
+               (match_operand:SI 2 "general_src_operand" "")))]
   ""
   "")
 
 (define_insn "iorsi3_internal"
-  [(set (match_operand:SI 0 "general_operand" "=m,d")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=m,d")
        (ior:SI (match_operand:SI 1 "general_operand" "%0,0")
-               (match_operand:SI 2 "general_operand" "dKs,dmMs")))]
-  "! TARGET_5200"
+                (match_operand:SI 2 "general_src_operand" "dKT,dmSMT")))]
+  "! TARGET_COLDFIRE"
   "*
 {
   return output_iorsi3 (operands);
 }")
 
 (define_insn "iorsi3_5200"
-  [(set (match_operand:SI 0 "general_operand" "=m,d")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=m,d")
        (ior:SI (match_operand:SI 1 "general_operand" "%0,0")
-               (match_operand:SI 2 "general_operand" "d,dmsK")))]
-  "TARGET_5200"
+               (match_operand:SI 2 "general_src_operand" "d,dmsK")))]
+  "TARGET_COLDFIRE"
   "or%.l %2,%0")
 
 (define_insn "iorhi3"
-  [(set (match_operand:HI 0 "general_operand" "=m,d")
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=m,d")
        (ior:HI (match_operand:HI 1 "general_operand" "%0,0")
-               (match_operand:HI 2 "general_operand" "dn,dmn")))]
-  "!TARGET_5200"
+               (match_operand:HI 2 "general_src_operand" "dn,dmSn")))]
+  "!TARGET_COLDFIRE"
   "or%.w %2,%0")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:HI 0 "general_operand" "+m,d"))
+  [(set (strict_low_part (match_operand:HI 0 "nonimmediate_operand" "+m,d"))
        (ior:HI (match_dup 0)
-               (match_operand:HI 1 "general_operand" "dn,dmn")))]
-  "!TARGET_5200"
+               (match_operand:HI 1 "general_src_operand" "dn,dmSn")))]
+  "!TARGET_COLDFIRE"
   "or%.w %1,%0")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:HI 0 "general_operand" "+m,d"))
-       (ior:HI (match_operand:HI 1 "general_operand" "dn,dmn")
+  [(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 "general_operand" "=m,d")
+  [(set (match_operand:QI 0 "nonimmediate_operand" "=m,d")
        (ior:QI (match_operand:QI 1 "general_operand" "%0,0")
-               (match_operand:QI 2 "general_operand" "dn,dmn")))]
-  "!TARGET_5200"
+                (match_operand:QI 2 "general_src_operand" "dn,dmSn")))]
+  "!TARGET_COLDFIRE"
   "or%.b %2,%0")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:QI 0 "general_operand" "+m,d"))
+  [(set (strict_low_part (match_operand:QI 0 "nonimmediate_operand" "+m,d"))
        (ior:QI (match_dup 0)
-               (match_operand:QI 1 "general_operand" "dn,dmn")))]
-  "!TARGET_5200"
+                (match_operand:QI 1 "general_src_operand" "dn,dmSn")))]
+  "!TARGET_COLDFIRE"
   "or%.b %1,%0")
 
 (define_insn ""
-  [(set (strict_low_part (match_operand:QI 0 "general_operand" "+m,d"))
-       (ior:QI (match_operand:QI 1 "general_operand" "dn,dmn")
+  [(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.
 ;; See also ashlsi_16, ashrsi_16 and lshrsi_16.
 
 (define_insn "iorsi_zexthi_ashl16"
-  [(set (match_operand:SI 0 "general_operand" "=&d")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=&d")
     (ior:SI (zero_extend:SI (match_operand:HI 1 "general_operand" "rmn"))
         (ashift:SI (match_operand:SI 2 "general_operand" "or")
             (const_int 16))))]
 {
   CC_STATUS_INIT;
   if (GET_CODE (operands[2]) != REG)
-      operands[2] = adj_offsettable_operand (operands[2], 2);
+      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);
 }")
 
 (define_insn "iorsi_zext"
-  [(set (match_operand:SI 0 "general_operand" "=o,d")
+  [(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;
   CC_STATUS_INIT;
   byte_mode = (GET_MODE (operands[1]) == QImode);
   if (GET_CODE (operands[0]) == MEM)
-    operands[0] = adj_offsettable_operand (operands[0], byte_mode ? 3 : 2);
+    operands[0] = adjust_address (operands[0], byte_mode ? QImode : HImode,
+                                 byte_mode ? 3 : 2);
   if (byte_mode)
     return \"or%.b %1,%0\";
   else
 
 ;; "xordi3" is mainly here to help combine().
 (define_insn "xordi3"
-  [(set (match_operand:DI 0 "general_operand" "=od")
+  [(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_COLDFIRE"
   "*
 {
   CC_STATUS_INIT;
-  /* We can get CONST_DOUBLE, but also const1_rtx etc. */
-  if (GET_CODE (operands[2]) == CONST_DOUBLE
-     || GET_CODE (operands[2]) == CONST_INT)
+  /* We can get CONST_DOUBLE, but also const1_rtx etc.  */
+
+  if (CONSTANT_P (operands[2]))
     {
       rtx hi, lo;
 
-      if (GET_CODE (operands[2]) == CONST_DOUBLE)
-       {
-         hi = GEN_INT (CONST_DOUBLE_HIGH (operands[2]));
-         lo = GEN_INT (CONST_DOUBLE_LOW (operands[2]));
-       }
-      else
-       {
-         lo = operands[2];
-         hi = INTVAL (lo) < 0 ? constm1_rtx : const0_rtx;
-       }
+      split_double (operands[2], &hi, &lo);
+
       switch (INTVAL (hi))
        {
          case 0 :
       if (GET_CODE (operands[0]) == REG)
        operands[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
       else
-       operands[0] = adj_offsettable_operand (operands[0], 4);
+       operands[0] = adjust_address (operands[0], SImode, 4);
       switch (INTVAL (lo))
        {
          case 0 :
     }
   if (GET_CODE (operands[0]) != REG)
     {
-      operands[1] = adj_offsettable_operand (operands[0], 4);
+      operands[1] = adjust_address (operands[0], SImode, 4);
       return \"eor%.l %2,%0\;eor%.l %R2,%1\";
     }
   if (GET_CODE (operands[2]) != REG)
     {
-      operands[1] = adj_offsettable_operand (operands[2], 4);
+      operands[1] = adjust_address (operands[2], SImode, 4);
       return \"eor%.l %2,%0\;eor%.l %1,%R0\";
     }
   return \"eor%.l %2,%0\;eor%.l %R2,%R0\";
 }")
 
 (define_expand "xorsi3"
-  [(set (match_operand:SI 0 "general_operand" "")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "")
        (xor:SI (match_operand:SI 1 "general_operand" "")
                (match_operand:SI 2 "general_operand" "")))]
   ""
   "")
 
 (define_insn "xorsi3_internal"
-  [(set (match_operand:SI 0 "general_operand" "=do,m")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=do,m")
        (xor:SI (match_operand:SI 1 "general_operand" "%0,0")
-               (match_operand:SI 2 "general_operand" "di,dKs")))]
-  "!TARGET_5200"
+                (match_operand:SI 2 "general_operand" "di,dKT")))]
+
+  "!TARGET_COLDFIRE"
   "*
 {
   return output_xorsi3 (operands);
 }")
 
 (define_insn "xorsi3_5200"
-  [(set (match_operand:SI 0 "general_operand" "=dm,d")
+  [(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"
+  "TARGET_COLDFIRE"
   "eor%.l %2,%0")
 
 (define_insn "xorhi3"
-  [(set (match_operand:HI 0 "general_operand" "=dm")
+  [(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 "general_operand" "+dm"))
+  [(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 "general_operand" "+dm"))
+  [(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 "general_operand" "=dm")
+  [(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 "general_operand" "+dm"))
+  [(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 "general_operand" "+dm"))
+  [(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
 
 (define_expand "negdi2"
-  [(set (match_operand:DI 0 "general_operand" "")
+  [(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]));
 }")
 
 (define_insn "negdi2_internal"
-  [(set (match_operand:DI 0 "general_operand" "=<,do,!*a")
+  [(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)
   if (GET_CODE (operands[0]) == REG)
     operands[1] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   else
-    operands[1] = adj_offsettable_operand (operands[0], 4);
+    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\";
   else
 } ")
 
 (define_insn "negdi2_5200"
-  [(set (match_operand:DI 0 "general_operand" "=d")
+  [(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);
 } ")
 
 (define_expand "negsi2"
-  [(set (match_operand:SI 0 "general_operand" "")
+  [(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]));
 }")
 
 (define_insn "negsi2_internal"
-  [(set (match_operand:SI 0 "general_operand" "=dm")
+  [(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 "general_operand" "=d")
+  [(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 "general_operand" "=dm")
+  [(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 "general_operand" "+dm"))
+  [(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 "general_operand" "=dm")
+  [(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 "general_operand" "+dm"))
+  [(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.
 
 (define_expand "negsf2"
-  [(set (match_operand:SF 0 "general_operand" "")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "")
        (neg:SF (match_operand:SF 1 "general_operand" "")))]
   ""
   "
 {
-  if (!TARGET_FPA && !TARGET_68881)
+  if (!TARGET_68881)
     {
       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);
+                            GEN_INT (0x80000000), target, 0, OPTAB_WIDEN);
       if (result == 0)
        abort ();
 
 }")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=x,y")
-       (neg:SF (match_operand:SF 1 "general_operand" "xH,rmF")))]
-  "TARGET_FPA"
-  "fpneg%.s %w1,%0")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f,d")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "=f,d")
        (neg:SF (match_operand:SF 1 "general_operand" "fdmF,0")))]
   "TARGET_68881"
   "*
 }")
 
 (define_expand "negdf2"
-  [(set (match_operand:DF 0 "general_operand" "")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "")
        (neg:DF (match_operand:DF 1 "general_operand" "")))]
   ""
   "
 {
-  if (!TARGET_FPA && !TARGET_68881)
+  if (!TARGET_68881)
     {
       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);
+                            GEN_INT (0x80000000), target, 0, OPTAB_WIDEN);
       if (result == 0)
        abort ();
 
 }")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=x,y")
-       (neg:DF (match_operand:DF 1 "general_operand" "xH,rmF")))]
-  "TARGET_FPA"
-  "fpneg%.d %y1, %0")
-
-(define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f,d")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=f,d")
        (neg:DF (match_operand:DF 1 "general_operand" "fmF,0")))]
   "TARGET_68881"
   "*
 ;; Sqrt instruction for the 68881
 
 (define_insn "sqrtsf2"
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
        (sqrt:SF (match_operand:SF 1 "general_operand" "fm")))]
   "TARGET_68881"
   "*
 }")
 
 (define_insn "sqrtdf2"
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
        (sqrt:DF (match_operand:DF 1 "general_operand" "fm")))]
   "TARGET_68881"
   "*
 ;; If using software floating point, just zero the sign bit.
 
 (define_expand "abssf2"
-  [(set (match_operand:SF 0 "general_operand" "")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "")
        (abs:SF (match_operand:SF 1 "general_operand" "")))]
   ""
   "
 {
-  if (!TARGET_FPA && !TARGET_68881)
+  if (!TARGET_68881)
     {
       rtx result;
       rtx target;
       target = operand_subword_force (operands[0], 0, SFmode);
       result = expand_binop (SImode, and_optab,
                             operand_subword_force (operands[1], 0, SFmode),
-                            GEN_INT(0x7fffffff), target, 0, OPTAB_WIDEN);
+                            GEN_INT (0x7fffffff), target, 0, OPTAB_WIDEN);
       if (result == 0)
        abort ();
 
 }")
 
 (define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=x,y")
-       (abs:SF (match_operand:SF 1 "general_operand" "xH,rmF")))]
-  "TARGET_FPA"
-  "fpabs%.s %y1,%0")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "general_operand" "=f")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "=f")
        (abs:SF (match_operand:SF 1 "general_operand" "fdmF")))]
   "TARGET_68881"
   "*
 }")
 
 (define_expand "absdf2"
-  [(set (match_operand:DF 0 "general_operand" "")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "")
        (abs:DF (match_operand:DF 1 "general_operand" "")))]
   ""
   "
 {
-  if (!TARGET_FPA && !TARGET_68881)
+  if (!TARGET_68881)
     {
       rtx result;
       rtx target;
       target = operand_subword (operands[0], 0, 1, DFmode);
       result = expand_binop (SImode, and_optab,
                             operand_subword_force (operands[1], 0, DFmode),
-                            GEN_INT(0x7fffffff), target, 0, OPTAB_WIDEN);
+                            GEN_INT (0x7fffffff), target, 0, OPTAB_WIDEN);
       if (result == 0)
        abort ();
 
 }")
 
 (define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=x,y")
-       (abs:DF (match_operand:DF 1 "general_operand" "xH,rmF")))]
-  "TARGET_FPA"
-  "fpabs%.d %y1,%0")
-
-(define_insn ""
-  [(set (match_operand:DF 0 "general_operand" "=f")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
        (abs:DF (match_operand:DF 1 "general_operand" "fmF")))]
   "TARGET_68881"
   "*
 
 ;; "one_cmpldi2" is mainly here to help combine().
 (define_insn "one_cmpldi2"
-  [(set (match_operand:DI 0 "general_operand" "=dm")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=dm")
        (not:DI (match_operand:DI 1 "general_operand" "0")))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "*
 {
   CC_STATUS_INIT;
         || GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
     operands[1] = operands[0];
   else
-    operands[1] = adj_offsettable_operand (operands[0], 4);
+    operands[1] = adjust_address (operands[0], SImode, 4);
   return \"not%.l %1\;not%.l %0\";
 }")
 
 (define_expand "one_cmplsi2"
-  [(set (match_operand:SI 0 "general_operand" "")
+  [(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]));
 }")
 
 (define_insn "one_cmplsi2_internal"
-  [(set (match_operand:SI 0 "general_operand" "=dm")
+  [(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 "general_operand" "=d")
+  [(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 "general_operand" "=dm")
+  [(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 "general_operand" "+dm"))
+  [(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 "general_operand" "=dm")
+  [(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 "general_operand" "+dm"))
+  [(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
 ;; We don't need the shift memory by 1 bit instruction
 
 (define_insn "ashldi_extsi"
-  [(set (match_operand:DI 0 "general_operand" "=ro")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=ro")
     (ashift:DI
       (match_operator:DI 2 "extend_operator"
         [(match_operand:SI 1 "general_operand" "rm")])
   if (GET_CODE (operands[0]) == REG)
     operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   else
-    operands[2] = adj_offsettable_operand (operands[0], 4);
+    operands[2] = adjust_address (operands[0], SImode, 4);
   if (ADDRESS_REG_P (operands[0]))
     return \"move%.l %1,%0\;sub%.l %2,%2\";
   else
 } ")
 
 (define_insn "ashldi_sexthi"
-  [(set (match_operand:DI 0 "general_operand" "=m,a*d")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=m,a*d")
     (ashift:DI (sign_extend:DI (match_operand:HI 1 "general_operand" "rm,rm"))
         (const_int 32)))
     (clobber (match_scratch:SI 2 "=a,X"))]
       return \"move%.w %1,%2\;move%.l %2,%0\;clr%.l %0\";
     else
       {
-       operands[3] = adj_offsettable_operand (operands[0], 4);
+       operands[3] = adjust_address (operands[0], SImode, 4);
        return \"move%.w %1,%2\;move%.l %2,%0\;clr%.l %3\";
       }
     }
 } ")
 
 (define_insn "ashldi_const32"
-  [(set (match_operand:DI 0 "general_operand" "=rm")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=rm")
        (ashift:DI (match_operand:DI 1 "general_operand" "ro")
                     (const_int 32)))]
   ""
   if (GET_CODE (operands[1]) == REG)
     operands[3] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
   else
-    operands[3] = adj_offsettable_operand (operands[1], 4);
+    operands[3] = adjust_address (operands[1], SImode, 4);
   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)
   else if (GET_CODE (XEXP (operands[0], 0)) == POST_INC)
     return \"move%.l %3,%0\;clr%.l %0\";
   else
-    operands[2] = adj_offsettable_operand (operands[0], 4);
+    operands[2] = adjust_address (operands[0], SImode, 4);
   if (ADDRESS_REG_P (operands[2]))
     return \"move%.l %3,%0\;sub%.l %2,%2\";
   else
 
 ;; The predicate below must be general_operand, because ashldi3 allows that
 (define_insn "ashldi_const"
-  [(set (match_operand:DI 0 "general_operand" "=d")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=d")
        (ashift:DI (match_operand:DI 1 "general_operand" "0")
                     (match_operand 2 "const_int_operand" "n")))]
-  "((INTVAL (operands[2]) >= 1 && INTVAL (operands[2]) <= 3)
-    || INTVAL (operands[2]) == 8 || INTVAL (operands[2]) == 16
-    || (INTVAL (operands[2]) > 32 && INTVAL (operands[2]) <= 63))"
+  "(!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);
 } ")
 
 (define_expand "ashldi3"
-  [(set (match_operand:DI 0 "general_operand" "")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "")
        (ashift:DI (match_operand:DI 1 "general_operand" "")
                     (match_operand 2 "const_int_operand" "")))]
-  ""
+  "!TARGET_COLDFIRE"
   "
 {
+  /* ???  This is a named pattern like this is not allowed to FAIL based
+     on its operands.  */
   if (GET_CODE (operands[2]) != CONST_INT
-  || ((INTVAL (operands[2]) < 1 || INTVAL (operands[2]) > 3)
-     && INTVAL (operands[2]) != 8 && INTVAL (operands[2]) != 16
-     && (INTVAL (operands[2]) < 32 || INTVAL (operands[2]) > 63)))
+      || ((INTVAL (operands[2]) < 1 || INTVAL (operands[2]) > 3)
+         && INTVAL (operands[2]) != 8 && INTVAL (operands[2]) != 16
+         && (INTVAL (operands[2]) < 32 || INTVAL (operands[2]) > 63)))
     FAIL;
 } ")
 
   [(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
+  "(! TARGET_68020 && !TARGET_COLDFIRE
     && INTVAL (operands[2]) > 16 && INTVAL (operands[2]) <= 24)"
   "*
 {
   [(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")
                     (match_operand:SI 2 "const_int_operand" "n")))]
-  "(! TARGET_68020 && !TARGET_5200
+  "(! TARGET_68020 && !TARGET_COLDFIRE
     && INTVAL (operands[2]) > 16 && INTVAL (operands[2]) <= 24)"
   "*
 {
 }")
 
 (define_insn "subreghi1ashrdi_const32"
-  [(set (match_operand:HI 0 "general_operand" "=rm")
+  [(set (match_operand:HI 0 "nonimmediate_operand" "=rm")
     (subreg:HI (ashiftrt:DI (match_operand:DI 1 "general_operand" "ro")
-            (const_int 32)) 1))]
+            (const_int 32)) 6))]
   ""
   "*
 {
   if (GET_CODE (operands[1]) != REG)
-    operands[1] = adj_offsettable_operand (operands[1], 2);
+    operands[1] = adjust_address (operands[1], HImode, 2);
   return \"move%.w %1,%0\";
 } ")
 
 (define_insn "subregsi1ashrdi_const32"
-  [(set (match_operand:SI 0 "general_operand" "=rm")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=rm")
     (subreg:SI (ashiftrt:DI (match_operand:DI 1 "general_operand" "ro")
-            (const_int 32)) 1))]
+            (const_int 32)) 4))]
   ""
   "*
 {
 } ")
 
 (define_insn "ashrdi_const32_mem"
-  [(set (match_operand:DI 0 "general_operand" "=o,<")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=o,<")
        (ashiftrt:DI (match_operand:DI 1 "general_operand" "ro,ro")
                     (const_int 32)))
    (clobber (match_scratch:SI 2 "=d,d"))]
   if (which_alternative == 1)
     operands[3] = operands[0];
   else
-    operands[3] = adj_offsettable_operand (operands[0], 4);
+    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
 
 ;; The predicate below must be general_operand, because ashrdi3 allows that
 (define_insn "ashrdi_const"
-  [(set (match_operand:DI 0 "general_operand" "=d")
+  [(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 
+  "(!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))"
+       || 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);
   else if (INTVAL (operands[2]) == 8)
     return \"move%.b %0,%1\;asr%.l %#8,%0\;ror%.l %#8,%1\";
   else if (INTVAL (operands[2]) == 16)
-    return \"move%.w %0,%1\;clr%.w %0\;swap %1\;ext%.l %0\";
+    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\";
   else if (INTVAL (operands[2]) == 31)
 } ")
 
 (define_expand "ashrdi3"
-  [(set (match_operand:DI 0 "general_operand" "")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "")
        (ashiftrt: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.  */
   if (GET_CODE (operands[2]) != CONST_INT
-  || ((INTVAL (operands[2]) < 1 || INTVAL (operands[2]) > 3)
-     && INTVAL (operands[2]) != 8 && INTVAL (operands[2]) != 16
-     && (INTVAL (operands[2]) < 31 || INTVAL (operands[2]) > 63)))
+      || ((INTVAL (operands[2]) < 1 || INTVAL (operands[2]) > 3)
+         && INTVAL (operands[2]) != 8 && INTVAL (operands[2]) != 16
+         && (INTVAL (operands[2]) < 31 || INTVAL (operands[2]) > 63)))
     FAIL;
 } ")
 
   [(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
 ;;(define_insn ""
 ;;        [(set (cc0)
 ;;            (subreg:SI (lshiftrt:DI (match_operand:DI 0 "general_operand" "ro")
-;;                    (const_int 32)) 1))
-;;        (set (match_operand:SI 1 "general_operand" "=dm")
+;;                    (const_int 32)) 4))
+;;        (set (match_operand:SI 1 "nonimmediate_operand" "=dm")
 ;;            (subreg:SI (lshiftrt:DI (match_dup 0)
-;;                    (const_int 32)) 1))]
+;;                    (const_int 32)) 4))]
 ;;  ""
 ;;  "*
 ;;{
 ;;        [(set (cc0)
 ;;            (subreg:SI (lshiftrt:DI (match_operand:DI 0 "general_operand" "ro")
 ;;                    (const_int 32)) 0))
-;;        (set (match_operand:DI 1 "general_operand" "=do")
+;;        (set (match_operand:DI 1 "nonimmediate_operand" "=do")
 ;;            (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] = adj_offsettable_operand (operands[1], 4);
+;;    operands[2] = adjust_address (operands[1], SImode, 4);
 ;;  return \"move%.l %0,%2\;clr%.l %1\";
 ;;} ")
 
 (define_insn "subreg1lshrdi_const32"
-  [(set (match_operand:SI 0 "general_operand" "=rm")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=rm")
     (subreg:SI (lshiftrt:DI (match_operand:DI 1 "general_operand" "ro")
-            (const_int 32)) 1))]
+            (const_int 32)) 4))]
   ""
   "*
 {
 } ")
 
 (define_insn "lshrdi_const32"
-  [(set (match_operand:DI 0 "general_operand" "=ro,<,>")
+  [(set (match_operand:DI 0 "nonimmediate_operand" "=ro,<,>")
        (lshiftrt:DI (match_operand:DI 1 "general_operand" "ro,ro,ro")
                     (const_int 32)))]
   ""
   if (GET_CODE (operands[0]) == REG)
     operands[2] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   else
-    operands[2] = adj_offsettable_operand (operands[0], 4);
+    operands[2] = adjust_address (operands[0], SImode, 4);
   if (GET_CODE (operands[1]) == REG)
     operands[3] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
   else
-    operands[3] = adj_offsettable_operand (operands[1], 4);
+    operands[3] = adjust_address (operands[1], SImode, 4);
   if (ADDRESS_REG_P (operands[0]))
     return \"move%.l %1,%2\;sub%.l %0,%0\";
   else
 
 ;; The predicate below must be general_operand, because lshrdi3 allows that
 (define_insn "lshrdi_const"
-  [(set (match_operand:DI 0 "general_operand" "=d")
+  [(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))"
+        || 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);
 } ")
 
 (define_expand "lshrdi3"
-  [(set (match_operand:DI 0 "general_operand" "")
+  [(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.  */
   if (GET_CODE (operands[2]) != CONST_INT
-  || ((INTVAL (operands[2]) < 1 || INTVAL (operands[2]) > 3)
-     && INTVAL (operands[2]) != 8 && INTVAL (operands[2]) != 16
-     && (INTVAL (operands[2]) < 32 || INTVAL (operands[2]) > 63)))
+      || ((INTVAL (operands[2]) < 1 || INTVAL (operands[2]) > 3)
+         && INTVAL (operands[2]) != 8 && INTVAL (operands[2]) != 16
+         && (INTVAL (operands[2]) < 32 || INTVAL (operands[2]) > 63)))
     FAIL;
 } ")
 
   [(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
+  "(! TARGET_68020 && !TARGET_COLDFIRE
     && INTVAL (operands[2]) > 16 && INTVAL (operands[2]) <= 24)"
   "*
 {
   [(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)
   [(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)
   [(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)
   [(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)
   [(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)
   [(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
 
 (define_insn "bsetmemqi"
   [(set (match_operand:QI 0 "memory_operand" "+m")
        (ior:QI (subreg:QI (ashift:SI (const_int 1)
-               (match_operand:SI 1 "general_operand" "d")) 0)
+               (match_operand:SI 1 "general_operand" "d")) 3)
        (match_dup 0)))]
   ""
   "*
   [(set (match_operand:QI 0 "memory_operand" "+m")
        (ior:QI (subreg:QI (ashift:SI (const_int 1)
            (match_operator:SI 2 "extend_operator"
-               [(match_operand 1 "general_operand" "d")])) 0)
+               [(match_operand 1 "general_operand" "d")])) 3)
        (match_dup 0)))]
   ""
   "*
 (define_insn ""
   [(set (zero_extract:SI (match_operand:QI 0 "memory_operand" "+o")
                         (const_int 32)
-                        (match_operand:SI 2 "const_int_operand" "n"))
-       (match_operand:SI 3 "general_operand" "rmi"))]
+                        (match_operand:SI 1 "const_int_operand" "n"))
+       (match_operand:SI 2 "general_src_operand" "rmSi"))]
   "TARGET_68020 && TARGET_BITFIELD
-   && (INTVAL (operands[2]) % 8) == 0
+   && (INTVAL (operands[1]) % 8) == 0
    && ! mode_dependent_address_p (XEXP (operands[0], 0))"
   "*
 {
   operands[0]
-    = adj_offsettable_operand (operands[0], INTVAL (operands[2]) / 8);
+    = adjust_address (operands[0], SImode, INTVAL (operands[1]) / 8);
 
-  return \"move%.l %3,%0\";
+  return \"move%.l %2,%0\";
 }")
 
 (define_insn ""
         return \"bfins %3,%0{%b2:%b1}\";
     }
   else
-    operands[0]
-      = adj_offsettable_operand (operands[0], INTVAL (operands[2]) / 8);
+    operands[0] = adjust_address (operands[0],
+                                 INTVAL (operands[1]) == 8 ? QImode : HImode,
+                                 INTVAL (operands[2]) / 8);
 
   if (GET_CODE (operands[3]) == MEM)
-    operands[3] = adj_offsettable_operand (operands[3],
-                                          (32 - INTVAL (operands[1])) / 8);
+    operands[3] = adjust_address (operands[3],
+                                 INTVAL (operands[1]) == 8 ? QImode : HImode,
+                                 (32 - INTVAL (operands[1])) / 8);
+
   if (INTVAL (operands[1]) == 8)
     return \"move%.b %3,%0\";
   return \"move%.w %3,%0\";
 ; than an odd byte aligned bit field instruction.
 ;
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=rm")
-       (zero_extract:SI (match_operand:QI 1 "memory_operand" "o")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=rm")
+       (zero_extract:SI (match_operand:QI 1 "memory_src_operand" "oS")
                         (const_int 32)
-                        (match_operand:SI 3 "const_int_operand" "n")))]
+                        (match_operand:SI 2 "const_int_operand" "n")))]
   "TARGET_68020 && TARGET_BITFIELD
-   && (INTVAL (operands[3]) % 8) == 0
+   && (INTVAL (operands[2]) % 8) == 0
    && ! mode_dependent_address_p (XEXP (operands[1], 0))"
   "*
 {
   operands[1]
-    = adj_offsettable_operand (operands[1], INTVAL (operands[3]) / 8);
+    = adjust_address (operands[1], SImode, INTVAL (operands[2]) / 8);
 
   return \"move%.l %1,%0\";
 }")
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=&d")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=&d")
        (zero_extract:SI (match_operand:SI 1 "register_operand" "do")
                         (match_operand:SI 2 "const_int_operand" "n")
                         (match_operand:SI 3 "const_int_operand" "n")))]
     }
   else
     operands[1]
-      = adj_offsettable_operand (operands[1], INTVAL (operands[3]) / 8);
+      = adjust_address (operands[1], SImode, INTVAL (operands[3]) / 8);
 
   output_asm_insn (\"clr%.l %0\", operands);
   if (GET_CODE (operands[0]) == MEM)
-    operands[0] = adj_offsettable_operand (operands[0],
-                                          (32 - INTVAL (operands[1])) / 8);
+    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\";
 ; than an odd byte aligned bit field instruction.
 ;
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=rm")
-       (sign_extract:SI (match_operand:QI 1 "memory_operand" "o")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=rm")
+       (sign_extract:SI (match_operand:QI 1 "memory_src_operand" "oS")
                         (const_int 32)
-                        (match_operand:SI 3 "const_int_operand" "n")))]
+                        (match_operand:SI 2 "const_int_operand" "n")))]
   "TARGET_68020 && TARGET_BITFIELD
-   && (INTVAL (operands[3]) % 8) == 0
+   && (INTVAL (operands[2]) % 8) == 0
    && ! mode_dependent_address_p (XEXP (operands[1], 0))"
   "*
 {
   operands[1]
-    = adj_offsettable_operand (operands[1], INTVAL (operands[3]) / 8);
+    = adjust_address (operands[1], SImode, INTVAL (operands[2]) / 8);
 
   return \"move%.l %1,%0\";
 }")
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=d")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "=d")
        (sign_extract:SI (match_operand:SI 1 "register_operand" "do")
                         (match_operand:SI 2 "const_int_operand" "n")
                         (match_operand:SI 3 "const_int_operand" "n")))]
     }
   else
     operands[1]
-      = adj_offsettable_operand (operands[1], INTVAL (operands[3]) / 8);
+      = adjust_address (operands[1],
+                       INTVAL (operands[2]) == 8 ? QImode : HImode,
+                       INTVAL (operands[3]) / 8);
 
   if (INTVAL (operands[2]) == 8)
     return \"move%.b %1,%0\;extb%.l %0\";
 ;; so that its address is reloaded.
 
 (define_expand "extv"
-  [(set (match_operand:SI 0 "general_operand" "")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "")
        (sign_extract:SI (match_operand:SI 1 "general_operand" "")
                         (match_operand:SI 2 "general_operand" "")
                         (match_operand:SI 3 "general_operand" "")))]
   "")
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=d")
+  [(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")))]
   "bfexts %1{%b3:%b2},%0")
 
 (define_expand "extzv"
-  [(set (match_operand:SI 0 "general_operand" "")
+  [(set (match_operand:SI 0 "nonimmediate_operand" "")
        (zero_extract:SI (match_operand:SI 1 "general_operand" "")
                         (match_operand:SI 2 "general_operand" "")
                         (match_operand:SI 3 "general_operand" "")))]
   "")
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=d,d")
+  [(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")))]
 }")
 
 (define_expand "insv"
-  [(set (zero_extract:SI (match_operand:SI 0 "general_operand" "")
+  [(set (zero_extract:SI (match_operand:SI 0 "nonimmediate_operand" "")
                         (match_operand:SI 1 "general_operand" "")
                         (match_operand:SI 2 "general_operand" ""))
        (match_operand:SI 3 "register_operand" ""))]
 ;; (or at least were intended to do so).
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=d")
+  [(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")))]
   "bfexts %1{%b3:%b2},%0")
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=d")
+  [(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")))]
       int width = GET_CODE (operands[0]) == REG ? 31 : 7;
       return output_btst (operands,
                          GEN_INT (width - INTVAL (operands[2])),
-                         operands[0],
-                         insn, 1000);
+                         operands[0], insn, 1000);
       /* Pass 1000 as SIGNPOS argument so that btst will
          not think we are testing the sign bit for an `and'
         and assume that nonzero implies a negative result.  */
       && GET_CODE (operands[2]) == CONST_INT)
     {
       int width = GET_CODE (operands[0]) == REG ? 31 : 7;
-      return output_btst (operands,
-                         GEN_INT (width - INTVAL (operands[2])),
-                         operands[0],
-                         insn, 1000);
+      return output_btst (operands, GEN_INT (width - INTVAL (operands[2])),
+                         operands[0], insn, 1000);
       /* Pass 1000 as SIGNPOS argument so that btst will
          not think we are testing the sign bit for an `and'
         and assume that nonzero implies a negative result.  */
 }")
 \f
 (define_insn "scc0_di"
-  [(set (match_operand:QI 0 "general_operand" "=dm")
+  [(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 "general_operand" "=d")
+  [(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 "general_operand" "=dm,dm")
+  [(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 "general_operand" "=d,d")
+  [(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
+;; needs to be reloaded.
+
 (define_expand "seq"
-  [(set (match_operand:QI 0 "general_operand" "")
+  [(set (match_operand:QI 0 "register_operand" "")
        (eq:QI (cc0) (const_int 0)))]
   ""
   "
 }")
 
 (define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=dm")
-       (eq:QI (cc0) (const_int 0)))]
-  "! TARGET_5200"
-  "*
-  cc_status = cc_prev_status;
-  OUTPUT_JUMP (\"seq %0\", \"fseq %0\", \"seq %0\");
-")
-
-(define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=d")
+  [(set (match_operand:QI 0 "register_operand" "=d")
        (eq:QI (cc0) (const_int 0)))]
-  "TARGET_5200"
+  ""
   "*
   cc_status = cc_prev_status;
   OUTPUT_JUMP (\"seq %0\", \"fseq %0\", \"seq %0\");
 ")
 
 (define_expand "sne"
-  [(set (match_operand:QI 0 "general_operand" "")
+  [(set (match_operand:QI 0 "register_operand" "")
        (ne:QI (cc0) (const_int 0)))]
   ""
   "
 }")
 
 (define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=dm")
-       (ne:QI (cc0) (const_int 0)))]
-  "! TARGET_5200"
-  "*
-  cc_status = cc_prev_status;
-  OUTPUT_JUMP (\"sne %0\", \"fsne %0\", \"sne %0\");
-")
-
-(define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=d")
+  [(set (match_operand:QI 0 "register_operand" "=d")
        (ne:QI (cc0) (const_int 0)))]
-  "TARGET_5200"
+  ""
   "*
   cc_status = cc_prev_status;
   OUTPUT_JUMP (\"sne %0\", \"fsne %0\", \"sne %0\");
 ")
 
 (define_expand "sgt"
-  [(set (match_operand:QI 0 "general_operand" "")
+  [(set (match_operand:QI 0 "register_operand" "")
        (gt:QI (cc0) (const_int 0)))]
   ""
   "
 }")
 
 (define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=dm")
-       (gt:QI (cc0) (const_int 0)))]
-  "! TARGET_5200"
-  "*
-  cc_status = cc_prev_status;
-  OUTPUT_JUMP (\"sgt %0\", \"fsgt %0\", 0);
-")
-
-(define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=d")
+  [(set (match_operand:QI 0 "register_operand" "=d")
        (gt:QI (cc0) (const_int 0)))]
-  "TARGET_5200"
+  ""
   "*
   cc_status = cc_prev_status;
   OUTPUT_JUMP (\"sgt %0\", \"fsgt %0\", 0);
 ")
 
 (define_expand "sgtu"
-  [(set (match_operand:QI 0 "general_operand" "")
+  [(set (match_operand:QI 0 "register_operand" "")
        (gtu:QI (cc0) (const_int 0)))]
   ""
   "")
 
 (define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=dm")
-       (gtu:QI (cc0) (const_int 0)))]
-  "! TARGET_5200"
-  "* cc_status = cc_prev_status;
-     return \"shi %0\"; ")
-
-(define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=d")
+  [(set (match_operand:QI 0 "register_operand" "=d")
        (gtu:QI (cc0) (const_int 0)))]
-  "TARGET_5200"
-  "* cc_status = cc_prev_status;
-     return \"shi %0\"; ")
+  ""
+  "*
+   cc_status = cc_prev_status;
+   return \"shi %0\"; ")
 
 (define_expand "slt"
-  [(set (match_operand:QI 0 "general_operand" "")
+  [(set (match_operand:QI 0 "register_operand" "")
        (lt:QI (cc0) (const_int 0)))]
   ""
   "
 }")
 
 (define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=dm")
-       (lt:QI (cc0) (const_int 0)))]
-  "! TARGET_5200"
-  "* cc_status = cc_prev_status;
-     OUTPUT_JUMP (\"slt %0\", \"fslt %0\", \"smi %0\"); ")
-
-(define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=d")
+  [(set (match_operand:QI 0 "register_operand" "=d")
        (lt:QI (cc0) (const_int 0)))]
-  "TARGET_5200"
-  "* cc_status = cc_prev_status;
-     OUTPUT_JUMP (\"slt %0\", \"fslt %0\", \"smi %0\"); ")
+  ""
+  "*
+   cc_status = cc_prev_status;
+   OUTPUT_JUMP (\"slt %0\", \"fslt %0\", \"smi %0\"); ")
 
 (define_expand "sltu"
-  [(set (match_operand:QI 0 "general_operand" "")
+  [(set (match_operand:QI 0 "register_operand" "")
        (ltu:QI (cc0) (const_int 0)))]
   ""
   "")
 
 (define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=dm")
-       (ltu:QI (cc0) (const_int 0)))]
-  "! TARGET_5200"
-  "* cc_status = cc_prev_status;
-     return \"scs %0\"; ")
-
-(define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=d")
+  [(set (match_operand:QI 0 "register_operand" "=d")
        (ltu:QI (cc0) (const_int 0)))]
-  "TARGET_5200"
-  "* cc_status = cc_prev_status;
-     return \"scs %0\"; ")
+  ""
+  "*
+   cc_status = cc_prev_status;
+   return \"scs %0\"; ")
 
 (define_expand "sge"
-  [(set (match_operand:QI 0 "general_operand" "")
+  [(set (match_operand:QI 0 "register_operand" "")
        (ge:QI (cc0) (const_int 0)))]
   ""
   "
 }")
 
 (define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=dm")
-       (ge:QI (cc0) (const_int 0)))]
-  "! TARGET_5200"
-  "* cc_status = cc_prev_status;
-     OUTPUT_JUMP (\"sge %0\", \"fsge %0\", \"spl %0\"); ")
-
-(define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=d")
+  [(set (match_operand:QI 0 "register_operand" "=d")
        (ge:QI (cc0) (const_int 0)))]
-  "TARGET_5200"
-  "* cc_status = cc_prev_status;
-     OUTPUT_JUMP (\"sge %0\", \"fsge %0\", \"spl %0\"); ")
+  ""
+  "*
+   cc_status = cc_prev_status;
+   OUTPUT_JUMP (\"sge %0\", \"fsge %0\", \"spl %0\"); ")
 
 (define_expand "sgeu"
-  [(set (match_operand:QI 0 "general_operand" "")
+  [(set (match_operand:QI 0 "register_operand" "")
        (geu:QI (cc0) (const_int 0)))]
   ""
   "")
 
 (define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=dm")
-       (geu:QI (cc0) (const_int 0)))]
-  "! TARGET_5200"
-  "* cc_status = cc_prev_status;
-     return \"scc %0\"; ")
-
-(define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=d")
+  [(set (match_operand:QI 0 "register_operand" "=d")
        (geu:QI (cc0) (const_int 0)))]
-  "TARGET_5200"
-  "* cc_status = cc_prev_status;
-     return \"scc %0\"; ")
+  ""
+  "*
+   cc_status = cc_prev_status;
+   return \"scc %0\"; ")
 
 (define_expand "sle"
-  [(set (match_operand:QI 0 "general_operand" "")
+  [(set (match_operand:QI 0 "register_operand" "")
        (le:QI (cc0) (const_int 0)))]
   ""
   "
 }")
 
 (define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=dm")
-       (le:QI (cc0) (const_int 0)))]
-  "! TARGET_5200"
-  "*
-  cc_status = cc_prev_status;
-  OUTPUT_JUMP (\"sle %0\", \"fsle %0\", 0);
-")
-
-(define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=d")
+  [(set (match_operand:QI 0 "register_operand" "=d")
        (le:QI (cc0) (const_int 0)))]
-  "TARGET_5200"
+  ""
   "*
   cc_status = cc_prev_status;
   OUTPUT_JUMP (\"sle %0\", \"fsle %0\", 0);
 ")
 
 (define_expand "sleu"
-  [(set (match_operand:QI 0 "general_operand" "")
+  [(set (match_operand:QI 0 "register_operand" "")
        (leu:QI (cc0) (const_int 0)))]
   ""
   "")
 
 (define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=dm")
+  [(set (match_operand:QI 0 "register_operand" "=d")
        (leu:QI (cc0) (const_int 0)))]
-  "! TARGET_5200"
-  "* cc_status = cc_prev_status;
-     return \"sls %0\"; ")
+  ""
+  "*
+   cc_status = cc_prev_status;
+   return \"sls %0\"; ")
 
-(define_insn ""
-  [(set (match_operand:QI 0 "general_operand" "=d")
-       (leu:QI (cc0) (const_int 0)))]
-  "TARGET_5200"
-  "* cc_status = cc_prev_status;
-     return \"sls %0\"; ")
+(define_expand "sordered"
+  [(set (match_operand:QI 0 "register_operand" "")
+       (ordered:QI (cc0) (const_int 0)))]
+  "TARGET_68881 && !TARGET_68060"
+{
+  if (! m68k_last_compare_had_fp_operands)
+    abort ();
+  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"
+{
+  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"
+{
+  if (! m68k_last_compare_had_fp_operands)
+    abort ();
+  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"
+{
+  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"
+{
+  if (! m68k_last_compare_had_fp_operands)
+    abort ();
+  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"
+{
+  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"
+{
+  if (! m68k_last_compare_had_fp_operands)
+    abort ();
+  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"
+{
+  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"
+{
+  if (! m68k_last_compare_had_fp_operands)
+    abort ();
+  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"
+{
+  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"
+{
+  if (! m68k_last_compare_had_fp_operands)
+    abort ();
+  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"
+{
+  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"
+{
+  if (! m68k_last_compare_had_fp_operands)
+    abort ();
+  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"
+{
+  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"
+{
+  if (! m68k_last_compare_had_fp_operands)
+    abort ();
+  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"
+{
+  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"
+{
+  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"
+{
+  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"
+{
+  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"
+{
+  cc_status = cc_prev_status;
+  return "fsole %0";
+})
 \f
 ;; Basic conditional jump instructions.
 
   if (GET_CODE (operands[0]) == REG)
     operands[3] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   else
-    operands[3] = adj_offsettable_operand (operands[0], 4);
+    operands[3] = adjust_address (operands[0], SImode, 4);
   if (! ADDRESS_REG_P (operands[0]))
     {
+      if (reg_overlap_mentioned_p (operands[2], operands[0]))
+       {
+         if (reg_overlap_mentioned_p (operands[2], operands[3]))
+           {
 #ifdef MOTOROLA
-      return \"move%.l %0,%2\;or%.l %3,%2\;jbeq %l1\";
+             return \"or%.l %0,%2\;jbeq %l1\";
 #else
-      return \"move%.l %0,%2\;or%.l %3,%2\;jeq %l1\";
+             return \"or%.l %0,%2\;jeq %l1\";
 #endif
-    }
-  operands[4] = gen_label_rtx();
-  if (TARGET_68020 || TARGET_5200)
-    {
+           }
+         else
+           {
+#ifdef MOTOROLA
+             return \"or%.l %3,%2\;jbeq %l1\";
+#else
+             return \"or%.l %3,%2\;jeq %l1\";
+#endif
+           }
+       }
+#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
+    }
+  operands[4] = gen_label_rtx();
+  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 (\"cmp%.w %#0,%0\;jne %l4\;cmp%.w %#0,%3\;jeq %l1\", operands);
 #endif
     }
-  ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, \"L\",
+  (*targetm.asm_out.internal_label) (asm_out_file, \"L\",
                                CODE_LABEL_NUMBER (operands[4]));
   return \"\";
 } ")
   if (GET_CODE (operands[0]) == REG)
     operands[3] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
   else
-    operands[3] = adj_offsettable_operand (operands[0], 4);
+    operands[3] = adjust_address (operands[0], SImode, 4);
   if (!ADDRESS_REG_P (operands[0]))
     {
+      if (reg_overlap_mentioned_p (operands[2], operands[0]))
+       {
+         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
+           }
+         else
+           {
+#ifdef MOTOROLA
+             return \"or%.l %3,%2\;jbne %l1\";
+#else
+             return \"or%.l %3,%2\;jne %l1\";
+#endif
+           }
+       }
 #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 (TARGET_68020 || TARGET_5200)
+  if (TARGET_68020 || TARGET_COLDFIRE)
     {
 #ifdef MOTOROLA
       return \"tst%.l %0\;jbne %l1\;tst%.l %3\;jbne %l1\";
        }
     }
   CC_STATUS_INIT;
-  if (TARGET_68020 || TARGET_5200 || ! ADDRESS_REG_P (operands[0]))
+  if (TARGET_68020 || TARGET_COLDFIRE || ! ADDRESS_REG_P (operands[0]))
     output_asm_insn(\"tst%.l %0\", operands);
   else
     {
        }
     }
   CC_STATUS_INIT;
-  if (TARGET_68020 || TARGET_5200 || ! ADDRESS_REG_P (operands[0]))
+  if (TARGET_68020 || TARGET_COLDFIRE || ! ADDRESS_REG_P (operands[0]))
     output_asm_insn(\"tst%.l %0\", operands);
   else
     {
   return \"jls %l0\";
 #endif
 ")
+
+(define_insn "bordered"
+  [(set (pc)
+       (if_then_else (ordered (cc0) (const_int 0))
+                     (label_ref (match_operand 0 "" ""))
+                     (pc)))]
+  "TARGET_68881"
+{
+  if (!(cc_prev_status.flags & CC_IN_68881))
+    abort ();
+#ifdef MOTOROLA
+  return "fbor %l0";
+#else
+  return "fjor %l0";
+#endif
+})
+
+(define_insn "bunordered"
+  [(set (pc)
+       (if_then_else (unordered (cc0) (const_int 0))
+                     (label_ref (match_operand 0 "" ""))
+                     (pc)))]
+  "TARGET_68881"
+{
+  if (!(cc_prev_status.flags & CC_IN_68881))
+    abort ();
+#ifdef MOTOROLA
+  return "fbun %l0";
+#else
+  return "fjun %l0";
+#endif
+})
+
+(define_insn "buneq"
+  [(set (pc)
+       (if_then_else (uneq (cc0) (const_int 0))
+                     (label_ref (match_operand 0 "" ""))
+                     (pc)))]
+  "TARGET_68881"
+{
+  if (!(cc_prev_status.flags & CC_IN_68881))
+    abort ();
+#ifdef MOTOROLA
+  return "fbueq %l0";
+#else
+  return "fjueq %l0";
+#endif
+})
+
+(define_insn "bunge"
+  [(set (pc)
+       (if_then_else (unge (cc0) (const_int 0))
+                     (label_ref (match_operand 0 "" ""))
+                     (pc)))]
+  "TARGET_68881"
+{
+  if (!(cc_prev_status.flags & CC_IN_68881))
+    abort ();
+#ifdef MOTOROLA
+  return "fbuge %l0";
+#else
+  return "fjuge %l0";
+#endif
+})
+
+(define_insn "bungt"
+  [(set (pc)
+       (if_then_else (ungt (cc0) (const_int 0))
+                     (label_ref (match_operand 0 "" ""))
+                     (pc)))]
+  "TARGET_68881"
+{
+  if (!(cc_prev_status.flags & CC_IN_68881))
+    abort ();
+#ifdef MOTOROLA
+  return "fbugt %l0";
+#else
+  return "fjugt %l0";
+#endif
+})
+
+(define_insn "bunle"
+  [(set (pc)
+       (if_then_else (unle (cc0) (const_int 0))
+                     (label_ref (match_operand 0 "" ""))
+                     (pc)))]
+  "TARGET_68881"
+{
+  if (!(cc_prev_status.flags & CC_IN_68881))
+    abort ();
+#ifdef MOTOROLA
+  return "fbule %l0";
+#else
+  return "fjule %l0";
+#endif
+})
+
+(define_insn "bunlt"
+  [(set (pc)
+       (if_then_else (unlt (cc0) (const_int 0))
+                     (label_ref (match_operand 0 "" ""))
+                     (pc)))]
+  "TARGET_68881"
+{
+  if (!(cc_prev_status.flags & CC_IN_68881))
+    abort ();
+#ifdef MOTOROLA
+  return "fbult %l0";
+#else
+  return "fjult %l0";
+#endif
+})
+
+(define_insn "bltgt"
+  [(set (pc)
+       (if_then_else (ltgt (cc0) (const_int 0))
+                     (label_ref (match_operand 0 "" ""))
+                     (pc)))]
+  "TARGET_68881"
+{
+  if (!(cc_prev_status.flags & CC_IN_68881))
+    abort ();
+#ifdef MOTOROLA
+  return "fbogl %l0";
+#else
+  return "fjogl %l0";
+#endif
+})
 \f
 ;; Negated conditional jump instructions.
 
   return \"jhi %l0\";
 #endif
 ")
+
+(define_insn "*bordered_rev"
+  [(set (pc)
+       (if_then_else (ordered (cc0) (const_int 0))
+                     (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
+})
+
+(define_insn "*bunordered_rev"
+  [(set (pc)
+       (if_then_else (unordered (cc0) (const_int 0))
+                     (pc)
+                     (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
+})
+
+(define_insn "*buneq_rev"
+  [(set (pc)
+       (if_then_else (uneq (cc0) (const_int 0))
+                     (pc)
+                     (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
+})
+
+(define_insn "*bunge_rev"
+  [(set (pc)
+       (if_then_else (unge (cc0) (const_int 0))
+                     (pc)
+                     (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
+})
+
+(define_insn "*bunle_rev"
+  [(set (pc)
+       (if_then_else (unle (cc0) (const_int 0))
+                     (pc)
+                     (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
+})
+
+(define_insn "*bunlt_rev"
+  [(set (pc)
+       (if_then_else (unlt (cc0) (const_int 0))
+                     (pc)
+                     (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
+})
+
+(define_insn "*bltgt_rev"
+  [(set (pc)
+       (if_then_else (ltgt (cc0) (const_int 0))
+                     (pc)
+                     (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
+})
 \f
 ;; Unconditional and other jump instructions
 (define_insn "jump"
 #else
 #ifdef SGS
 #ifdef ASM_OUTPUT_CASE_LABEL
-  if (TARGET_5200) 
-    return \"ext%.l %0\;jmp 6(%%pc,%0.l)\";
+  if (TARGET_COLDFIRE) 
+    {
+      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)\";
 #else
-  if (TARGET_5200)
+  if (TARGET_COLDFIRE)
     {
-#ifdef CRDS
-      return \"ext%.l %0\;jmp 2(pc,%0.l)\";
-#else
-      return \"extl %0\;jmp 2(%%pc,%0.l)\";
-#endif  /* end !CRDS */
+      if (ADDRESS_REG_P (operands[0]))
+       return \"jmp 2(%%pc,%0.l)\";
+      else
+       return \"extl %0\;jmp 2(%%pc,%0.l)\";
     }
   else
-    {
-#ifdef CRDS
-      return \"jmp 2(pc,%0.w)\";
-#else
-      return \"jmp 2(%%pc,%0.w)\";
-#endif  /* end !CRDS */
-    }
+    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
+       }
+      else
+       {
 #ifdef MOTOROLA
-      return \"ext%.l %0\;jmp (2,pc,%0.l)\";
+         return \"ext%.l %0\;jmp (2,pc,%0.l)\";
 #else
-      return \"extl %0\;jmp pc@(2,%0:l)\";
+         return \"extl %0\;jmp pc@(2,%0:l)\";
 #endif
+       }
     }
   else
     {
 (define_insn ""
   [(set (pc)
        (if_then_else
-        (ne (match_operand:HI 0 "general_operand" "+d*g")
+        (ne (match_operand:HI 0 "nonimmediate_operand" "+d*g")
             (const_int 0))
         (label_ref (match_operand 1 "" ""))
         (pc)))
    (set (match_dup 0)
        (plus:HI (match_dup 0)
                 (const_int -1)))]
-  "!TARGET_5200"
+  "!TARGET_COLDFIRE"
   "*
 {
   CC_STATUS_INIT;
   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
 (define_insn ""
   [(set (pc)
        (if_then_else
-        (ne (match_operand:SI 0 "general_operand" "+d*g")
+        (ne (match_operand:SI 0 "nonimmediate_operand" "+d*g")
             (const_int 0))
         (label_ref (match_operand 1 "" ""))
         (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 */
 (define_insn ""
   [(set (pc)
        (if_then_else
-         (ge (plus:HI (match_operand:HI 0 "general_operand" "+d*am")
+         (ge (plus:HI (match_operand:HI 0 "nonimmediate_operand" "+d*am")
                       (const_int -1))
              (const_int 0))
          (label_ref (match_operand 1 "" ""))
    (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 */
 (define_expand "decrement_and_branch_until_zero"
   [(parallel [(set (pc)
                   (if_then_else
-                   (ge (plus:SI (match_operand:SI 0 "general_operand" "")
+                   (ge (plus:SI (match_operand:SI 0 "nonimmediate_operand" "")
                                 (const_int -1))
                        (const_int 0))
                    (label_ref (match_operand 1 "" ""))
 (define_insn ""
   [(set (pc)
        (if_then_else
-         (ge (plus:SI (match_operand:SI 0 "general_operand" "+d*am")
+         (ge (plus:SI (match_operand:SI 0 "nonimmediate_operand" "+d*am")
                       (const_int -1))
              (const_int 0))
          (label_ref (match_operand 1 "" ""))
    (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\";
-  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 */
   "! 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\";
   "*
   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\";
+      return \"bsr.l %0\";
 #else
 #ifdef USE_GAS
-    return \"bsr.l %0@PLTPC\";
+      return \"bsr.l %0@PLTPC\";
 #else
-    return \"bsr %0@PLTPC\";
+      return \"bsr %0@PLTPC\";
 #endif
 #endif
 #else
-    /* The ',a1' is a dummy argument telling the Sun assembler we want PIC,
-       GAS just plain ignores it.  */
-    return \"jbsr %0,a1\";
+#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\";
 ")
 
   "! 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\";
   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\";
 #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.  */
+         GAS just plain ignores it.  FIXME: Not anymore, gas doesn't!  */
       return \"jbsr %1,a1\";
 #endif
+#endif
     }
   return \"jsr %1\";
 ")
 {
   int i;
 
-  emit_call_insn (gen_call (operands[0], const0_rtx, NULL, const0_rtx));
+  emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, const0_rtx));
 
   for (i = 0; i < XVECLEN (operands[2], 0); i++)
     {
 ;; all of memory.  This blocks insns from being moved across this point.
 
 (define_insn "blockage"
-  [(unspec_volatile [(const_int 0)] 0)]
+  [(unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)]
   ""
   "")
 
   ""
   "nop")
 
-(define_insn "probe"
- [(reg:SI 15)]
- "NEED_PROBE"
- "*
-{
-  operands[0] = gen_rtx_PLUS (SImode, stack_pointer_rtx,
-                             GEN_INT (NEED_PROBE));
-  return \"tstl %a0\";
-}")
-
 ;; Used for frameless functions which save no regs and allocate no locals.
 (define_insn "return"
   [(return)]
 ;; This should not be used unless the add/sub insns can't be.
 
 (define_insn ""
-  [(set (match_operand:SI 0 "general_operand" "=a")
+  [(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,
                   CODE_LABEL_NUMBER (XEXP (labelref, 0)));
 #endif /* not SGS */
 #else /* SGS_SWITCH_TABLES or not MOTOROLA */
-      ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, \"LI\",
+      (*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
 #endif /* SGS_SWITCH_TABLES */
 #endif /* SGS_SWITCH_TABLES or not MOTOROLA */
     }
-#endif /* SGS_NO_LI */
 
   return \"lea %a1,%0\";
 }")
       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)
+         if (!TARGET_COLDFIRE)
            output_asm_insn (\"addq%.w %1,%0\", xoperands);
          else
            output_asm_insn (\"addq%.l %1,%0\", xoperands);
          xoperands[1] = GEN_INT (INTVAL (xoperands[1]) - 8);
          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);
       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)
+         if (!TARGET_COLDFIRE)
            output_asm_insn (\"addq%.w %1,%0\", xoperands);
          else
            output_asm_insn (\"addq%.l %1,%0\", xoperands);
          xoperands[1] = GEN_INT (INTVAL (xoperands[1]) - 8);
          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);
 
   xoperands[1] = operands[1];
   xoperands[2]
-    = gen_rtx_MEM (QImode,
-                  gen_rtx_PLUS (VOIDmode, stack_pointer_rtx,
-                                GEN_INT (3)));
+    = gen_rtx_MEM (QImode, plus_constant (stack_pointer_rtx, 3));
   xoperands[3] = stack_pointer_rtx;
-  if (!TARGET_5200)
+  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);
 (define_peephole
   [(set (match_operand:SI 0 "register_operand" "=d")
        (const_int 0))
-   (set (strict_low_part (subreg:HI (match_dup 0) 0))
+   (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])"
   "*
              || 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)
+         && ((TARGET_68020 || TARGET_COLDFIRE)
              || !(GET_CODE (operands[0]) == MEM
                   && MEM_VOLATILE_P (operands[0]))))
        return \"clr%.w %0\";
 ;;
 ;; Which moves the jCC condition outside the inner loop for free.
 ;;
+
 (define_peephole
   [(set (pc) (if_then_else (match_operator 3 "valid_dbcc_comparison_p"
                              [(cc0) (const_int 0)])
    (parallel
     [(set (pc)
          (if_then_else
-           (ge (plus:HI (match_operand:HI 0 "register_operand" "+d")
+           (ne (match_operand:HI 0 "register_operand" "")
+               (const_int 0))
+           (label_ref (match_operand 1 "" ""))
+           (pc)))
+     (set (match_dup 0)
+         (plus:HI (match_dup 0)
+                  (const_int -1)))])]
+  "!TARGET_COLDFIRE && DATA_REG_P (operands[0]) && ! flags_in_68881 ()"
+  "*
+{
+  CC_STATUS_INIT;
+  output_dbcc_and_branch (operands);
+  return \"\";
+}")
+
+(define_peephole
+  [(set (pc) (if_then_else (match_operator 3 "valid_dbcc_comparison_p"
+                             [(cc0) (const_int 0)])
+                           (label_ref (match_operand 2 "" ""))
+                           (pc)))
+   (parallel
+    [(set (pc)
+         (if_then_else
+           (ne (match_operand:SI 0 "register_operand" "")
+               (const_int 0))
+           (label_ref (match_operand 1 "" ""))
+           (pc)))
+     (set (match_dup 0)
+         (plus:SI (match_dup 0)
+                  (const_int -1)))])]
+  "!TARGET_COLDFIRE && DATA_REG_P (operands[0]) && ! flags_in_68881 ()"
+  "*
+{
+  CC_STATUS_INIT;
+  output_dbcc_and_branch (operands);
+  return \"\";
+}")
+
+(define_peephole
+  [(set (pc) (if_then_else (match_operator 3 "valid_dbcc_comparison_p"
+                             [(cc0) (const_int 0)])
+                           (label_ref (match_operand 2 "" ""))
+                           (pc)))
+   (parallel
+    [(set (pc)
+         (if_then_else
+           (ge (plus:HI (match_operand:HI 0 "register_operand" "")
                         (const_int -1))
                (const_int 0))
            (label_ref (match_operand 1 "" ""))
      (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;
    (parallel
     [(set (pc)
          (if_then_else
-           (ge (plus:SI (match_operand:SI 0 "register_operand" "+d")
+           (ge (plus:SI (match_operand:SI 0 "register_operand" "")
                         (const_int -1))
                (const_int 0))
            (label_ref (match_operand 1 "" ""))
      (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;
 }")
 
 \f
-;; FPA multiply and add.
-(define_insn ""
-  [(set (match_operand:DF 0 "register_operand" "=x,y,y")
-       (plus:DF (mult:DF (match_operand:DF 1 "general_operand" "%x,dmF,y")
-                         (match_operand:DF 2 "general_operand" "xH,y,y"))
-                (match_operand:DF 3 "general_operand" "xH,y,dmF")))]
-   "TARGET_FPA"
-   "@
-    fpma%.d %1,%w2,%w3,%0
-    fpma%.d %x1,%x2,%x3,%0
-    fpma%.d %x1,%x2,%x3,%0")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "register_operand" "=x,y,y")
-       (plus:SF (mult:SF (match_operand:SF 1 "general_operand" "%x,ydmF,y")
-                         (match_operand:SF 2 "general_operand" "xH,y,ydmF"))
-                (match_operand:SF 3 "general_operand" "xH,ydmF,ydmF")))]
-   "TARGET_FPA"
-   "@
-    fpma%.s %1,%w2,%w3,%0
-    fpma%.s %1,%2,%3,%0
-    fpma%.s %1,%2,%3,%0")
-
-;; FPA Multiply and subtract
-(define_insn ""
-  [(set (match_operand:DF 0 "register_operand" "=x,y,y")
-       (minus:DF (match_operand:DF 1 "general_operand" "xH,rmF,y")
-                 (mult:DF (match_operand:DF 2 "general_operand" "%xH,y,y")
-                          (match_operand:DF 3 "general_operand" "x,y,rmF"))))]
-  "TARGET_FPA"
-  "@
-   fpms%.d %3,%w2,%w1,%0
-   fpms%.d %x3,%2,%x1,%0
-   fpms%.d %x3,%2,%x1,%0")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "register_operand" "=x,y,y")
-       (minus:SF (match_operand:SF 1 "general_operand" "xH,rmF,yrmF")
-                 (mult:SF (match_operand:SF 2 "general_operand" "%xH,rmF,y")
-                          (match_operand:SF 3 "general_operand" "x,y,yrmF"))))]
-  "TARGET_FPA"
-  "@
-   fpms%.s %3,%w2,%w1,%0
-   fpms%.s %3,%2,%1,%0
-   fpms%.s %3,%2,%1,%0")
-
-(define_insn ""
-  [(set (match_operand:DF 0 "register_operand" "=x,y,y")
-       (minus:DF (mult:DF (match_operand:DF 1 "general_operand" "%xH,y,y")
-                          (match_operand:DF 2 "general_operand" "x,y,rmF"))
-                 (match_operand:DF 3 "general_operand" "xH,rmF,y")))]
-  "TARGET_FPA"
-  "@
-   fpmr%.d %2,%w1,%w3,%0
-   fpmr%.d %x2,%1,%x3,%0
-   fpmr%.d %x2,%1,%x3,%0")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "register_operand" "=x,y,y")
-       (minus:SF (mult:SF (match_operand:SF 1 "general_operand" "%xH,rmF,y")
-                          (match_operand:SF 2 "general_operand" "x,y,yrmF"))
-                 (match_operand:SF 3 "general_operand" "xH,rmF,yrmF")))]
-  "TARGET_FPA"
-  "@
-   fpmr%.s %2,%w1,%w3,%0
-   fpmr%.s %x2,%1,%x3,%0
-   fpmr%.s %x2,%1,%x3,%0")
-
-;; FPA Add and multiply
-(define_insn ""
-  [(set (match_operand:DF 0 "register_operand" "=x,y,y")
-       (mult:DF (plus:DF (match_operand:DF 1 "general_operand" "%xH,y,y")
-                         (match_operand:DF 2 "general_operand" "x,y,rmF"))
-                (match_operand:DF 3 "general_operand" "xH,rmF,y")))]
-  "TARGET_FPA"
-  "@
-   fpam%.d %2,%w1,%w3,%0
-   fpam%.d %x2,%1,%x3,%0
-   fpam%.d %x2,%1,%x3,%0")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "register_operand" "=x,y,y")
-       (mult:SF (plus:SF (match_operand:SF 1 "general_operand" "%xH,rmF,y")
-                         (match_operand:SF 2 "general_operand" "x,y,yrmF"))
-                (match_operand:SF 3 "general_operand" "xH,rmF,yrmF")))]
-  "TARGET_FPA"
-  "@
-   fpam%.s %2,%w1,%w3,%0
-   fpam%.s %x2,%1,%x3,%0
-   fpam%.s %x2,%1,%x3,%0")
-
-;;FPA Subtract and multiply
-(define_insn ""
-  [(set (match_operand:DF 0 "register_operand" "=x,y,y")
-       (mult:DF (minus:DF (match_operand:DF 1 "general_operand" "xH,y,y")
-                          (match_operand:DF 2 "general_operand" "x,y,rmF"))
-                (match_operand:DF 3 "general_operand" "xH,rmF,y")))]
-  "TARGET_FPA"
-  "@
-   fpsm%.d %2,%w1,%w3,%0
-   fpsm%.d %x2,%1,%x3,%0
-   fpsm%.d %x2,%1,%x3,%0")
-
-(define_insn ""
-  [(set (match_operand:DF 0 "register_operand" "=x,y,y")
-       (mult:DF (match_operand:DF 1 "general_operand" "xH,rmF,y")
-                (minus:DF (match_operand:DF 2 "general_operand" "xH,y,y")
-                          (match_operand:DF 3 "general_operand" "x,y,rmF"))))]
-  "TARGET_FPA"
-  "@
-   fpsm%.d %3,%w2,%w1,%0
-   fpsm%.d %x3,%2,%x1,%0
-   fpsm%.d %x3,%2,%x1,%0")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "register_operand" "=x,y,y")
-       (mult:SF (minus:SF (match_operand:SF 1 "general_operand" "xH,rmF,y")
-                          (match_operand:SF 2 "general_operand" "x,y,yrmF"))
-                (match_operand:SF 3 "general_operand" "xH,rmF,yrmF")))]
-  "TARGET_FPA"
-  "@
-   fpsm%.s %2,%w1,%w3,%0
-   fpsm%.s %x2,%1,%x3,%0
-   fpsm%.s %x2,%1,%x3,%0")
-
-(define_insn ""
-  [(set (match_operand:SF 0 "register_operand" "=x,y,y")
-       (mult:SF (match_operand:SF 1 "general_operand" "xH,rmF,yrmF")
-                (minus:SF (match_operand:SF 2 "general_operand" "xH,rmF,y")
-                          (match_operand:SF 3 "general_operand" "x,y,yrmF"))))]
-  "TARGET_FPA"
-  "@
-   fpsm%.s %3,%w2,%w1,%0
-   fpsm%.s %x3,%2,%x1,%0
-   fpsm%.s %x3,%2,%x1,%0")
-
 (define_expand "tstxf"
   [(set (cc0)
        (match_operand:XF 0 "nonimmediate_operand" ""))]
 }")
 
 (define_insn "extendsfxf2"
-  [(set (match_operand:XF 0 "general_operand" "=fm,f")
-       (float_extend:XF (match_operand:SF 1 "general_operand" "f,m")))]
+  [(set (match_operand:XF 0 "nonimmediate_operand" "=fm,f")
+       (float_extend:XF (match_operand:SF 1 "general_operand" "f,rmF")))]
   "TARGET_68881"
   "*
 {
       return \"f%$move%.x %1,%0\";
     }
   if (FP_REG_P (operands[0]))
-    return \"f%$move%.s %f1,%0\";
+    {
+      if (FP_REG_P (operands[1]))
+       return \"f%$move%.x %1,%0\";
+      else if (ADDRESS_REG_P (operands[1]))
+       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 \"fmove%.x %f1,%0\";
 }")
 
 
 (define_insn "extenddfxf2"
-  [(set (match_operand:XF 0 "general_operand" "=fm,f")
+  [(set (match_operand:XF 0 "nonimmediate_operand" "=fm,f")
        (float_extend:XF
-          (match_operand:DF 1 "general_operand" "f,m")))]
+          (match_operand:DF 1 "general_operand" "f,rmE")))]
   "TARGET_68881"
   "*
 {
       return \"fmove%.x %1,%0\";
     }
   if (FP_REG_P (operands[0]))
-    return \"f%&move%.d %f1,%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\";
+       }
+      if (GET_CODE (operands[1]) == CONST_DOUBLE)
+       return output_move_const_double (operands);
+      return \"f%&move%.d %f1,%0\";
+    }
   return \"fmove%.x %f1,%0\";
 }")
 
 (define_insn "truncxfdf2"
-  [(set (match_operand:DF 0 "general_operand" "=m,!r")
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=m,!r")
        (float_truncate:DF
           (match_operand:XF 1 "general_operand" "f,f")))]
   "TARGET_68881"
 }")
 
 (define_insn "truncxfsf2"
-  [(set (match_operand:SF 0 "general_operand" "=dm")
+  [(set (match_operand:SF 0 "nonimmediate_operand" "=dm")
        (float_truncate:SF
          (match_operand:XF 1 "general_operand" "f")))]
   "TARGET_68881"
   "fmove%.s %f1,%0")
 
 (define_insn "floatsixf2"
-  [(set (match_operand:XF 0 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
        (fix:XF (match_operand:XF 1 "general_operand" "fFm")))]
   "TARGET_68881"
   "*
 }")
 
 (define_insn "fixxfqi2"
-  [(set (match_operand:QI 0 "general_operand" "=dm")
+  [(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 "general_operand" "=dm")
+  [(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 "general_operand" "=dm")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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"
 }")
 
 (define_insn ""
-  [(set (match_operand:XF 0 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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"
 }")
 
 (define_insn ""
-  [(set (match_operand:XF 0 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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"
 }")
 
 (define_insn ""
-  [(set (match_operand:XF 0 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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 "general_operand" "=f")
+  [(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"
 }")
 
 (define_expand "negxf2"
-  [(set (match_operand:XF 0 "general_operand" "")
+  [(set (match_operand:XF 0 "nonimmediate_operand" "")
        (neg:XF (match_operand:XF 1 "nonimmediate_operand" "")))]
   ""
   "
 {
-  /* ??? There isn't an FPA define_insn so we could handle it here too.
-     For now we don't (paranoia).  */
   if (!TARGET_68881)
     {
       rtx result;
       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);
+                            GEN_INT (0x80000000), target, 0, OPTAB_WIDEN);
       if (result == 0)
        abort ();
 
 }")
 
 (define_insn "negxf2_68881"
-  [(set (match_operand:XF 0 "general_operand" "=f")
+  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
        (neg:XF (match_operand:XF 1 "nonimmediate_operand" "fm")))]
   "TARGET_68881"
   "*
 }")
 
 (define_expand "absxf2"
-  [(set (match_operand:XF 0 "general_operand" "")
+  [(set (match_operand:XF 0 "nonimmediate_operand" "")
        (abs:XF (match_operand:XF 1 "nonimmediate_operand" "")))]
   ""
   "
 {
-  /* ??? There isn't an FPA define_insn so we could handle it here too.
-     For now we don't (paranoia).  */
   if (!TARGET_68881)
     {
       rtx result;
       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);
+                            GEN_INT (0x7fffffff), target, 0, OPTAB_WIDEN);
       if (result == 0)
        abort ();
 
 }")
 
 (define_insn "absxf2_68881"
-  [(set (match_operand:XF 0 "general_operand" "=f")
+  [(set (match_operand:XF 0 "nonimmediate_operand" "=f")
        (abs:XF (match_operand:XF 1 "nonimmediate_operand" "fm")))]
   "TARGET_68881"
   "*
 }")
 
 (define_insn "sqrtxf2"
-  [(set (match_operand:XF 0 "general_operand" "=f")
+  [(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 "general_operand" "=f")
-       (unspec:SF [(match_operand:SF 1 "general_operand" "fm")] 1))]
-  "TARGET_68881 && flag_fast_math"
+  [(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]))
 }")
 
 (define_insn "sindf2"
-  [(set (match_operand:DF 0 "general_operand" "=f")
-       (unspec:DF [(match_operand:DF 1 "general_operand" "fm")] 1))]
-  "TARGET_68881 && flag_fast_math"
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
+       (unspec:DF [(match_operand:DF 1 "general_operand" "fm")] UNSPEC_SIN))]
+  "TARGET_68881 && flag_unsafe_math_optimizations"
   "*
 {
   if (FP_REG_P (operands[1]))
 }")
 
 (define_insn "sinxf2"
-  [(set (match_operand:XF 0 "general_operand" "=f")
-       (unspec:XF [(match_operand:XF 1 "nonimmediate_operand" "fm")] 1))]
-  "TARGET_68881 && flag_fast_math"
+  [(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 "general_operand" "=f")
-       (unspec:SF [(match_operand:SF 1 "general_operand" "fm")] 2))]
-  "TARGET_68881 && flag_fast_math"
+  [(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]))
 }")
 
 (define_insn "cosdf2"
-  [(set (match_operand:DF 0 "general_operand" "=f")
-       (unspec:DF [(match_operand:DF 1 "general_operand" "fm")] 2))]
-  "TARGET_68881 && flag_fast_math"
+  [(set (match_operand:DF 0 "nonimmediate_operand" "=f")
+       (unspec:DF [(match_operand:DF 1 "general_operand" "fm")] UNSPEC_COS))]
+  "TARGET_68881 && flag_unsafe_math_optimizations"
   "*
 {
   if (FP_REG_P (operands[1]))
 }")
 
 (define_insn "cosxf2"
-  [(set (match_operand:XF 0 "general_operand" "=f")
-       (unspec:XF [(match_operand:XF 1 "nonimmediate_operand" "fm")] 2))]
-  "TARGET_68881 && flag_fast_math"
+  [(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")
+
+(define_insn "trap"
+  [(trap_if (const_int -1) (const_int 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();
+  }
+}")