Support R_SPARC_WDISP10 and R_SPARC_H34.
[external/binutils.git] / gas / config / tc-mips.c
index bf26235..449d8c3 100644 (file)
@@ -1,6 +1,6 @@
 /* tc-mips.c -- assemble code for a MIPS chip.
    Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-   2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
+   2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
    Free Software Foundation, Inc.
    Contributed by the OSF and Ralph Campbell.
    Written by Keith Knowles and Ralph Campbell, working independently.
@@ -91,6 +91,8 @@ static char *mips_regmask_frag;
 
 #define ZERO 0
 #define ATREG 1
+#define S0  16
+#define S7  23
 #define TREG 24
 #define PIC_CALL_REG 25
 #define KT0 26
@@ -121,6 +123,21 @@ extern int target_big_endian;
                            ? ".rodata" \
                            : (abort (), ""))
 
+/* Ways in which an instruction can be "appended" to the output.  */
+enum append_method {
+  /* Just add it normally.  */
+  APPEND_ADD,
+
+  /* Add it normally and then add a nop.  */
+  APPEND_ADD_WITH_NOP,
+
+  /* Turn an instruction with a delay slot into a "compact" version.  */
+  APPEND_ADD_COMPACT,
+
+  /* Insert the instruction before the last one.  */
+  APPEND_SWAP
+};
+
 /* Information about an instruction, including its format, operands
    and fixups.  */
 struct mips_cl_insn
@@ -156,6 +173,9 @@ struct mips_cl_insn
 
   /* True for mips16 instructions that jump to an absolute address.  */
   unsigned int mips16_absolute_jump_p : 1;
+
+  /* True if this instruction is complete.  */
+  unsigned int complete_p : 1;
 };
 
 /* The ABI to use.  */
@@ -198,11 +218,17 @@ struct mips_set_options
   int ase_dsp;
   int ase_dspr2;
   int ase_mt;
+  int ase_mcu;
   /* Whether we are assembling for the mips16 processor.  0 if we are
      not, 1 if we are, and -1 if the value has not been initialized.
      Changed by `.set mips16' and `.set nomips16', and the -mips16 and
      -nomips16 command line options, and the default CPU.  */
   int mips16;
+  /* Whether we are assembling for the mipsMIPS ASE.  0 if we are not,
+     1 if we are, and -1 if the value has not been initialized.  Changed
+     by `.set micromips' and `.set nomicromips', and the -mmicromips
+     and -mno-micromips command line options, and the default CPU.  */
+  int micromips;
   /* Non-zero if we should not reorder instructions.  Changed by `.set
      reorder' and `.set noreorder'.  */
   int noreorder;
@@ -267,8 +293,8 @@ static struct mips_set_options mips_opts =
 {
   /* isa */ ISA_UNKNOWN, /* ase_mips3d */ -1, /* ase_mdmx */ -1,
   /* ase_smartmips */ 0, /* ase_dsp */ -1, /* ase_dspr2 */ -1, /* ase_mt */ -1,
-  /* mips16 */ -1, /* noreorder */ 0, /* at */ ATREG,
-  /* warn_about_macros */ 0, /* nomove */ 0, /* nobopt */ 0,
+  /* ase_mcu */ -1, /* mips16 */ -1, /* micromips */ -1, /* noreorder */ 0,
+  /* at */ ATREG, /* warn_about_macros */ 0, /* nomove */ 0, /* nobopt */ 0,
   /* noautoextend */ 0, /* gp32 */ 0, /* fp32 */ 0, /* arch */ CPU_UNKNOWN,
   /* sym32 */ FALSE, /* soft_float */ FALSE, /* single_float */ FALSE
 };
@@ -282,8 +308,7 @@ unsigned long mips_cprmask[4];
 /* MIPS ISA we are using for this output file.  */
 static int file_mips_isa = ISA_UNKNOWN;
 
-/* True if -mips16 was passed or implied by arguments passed on the
-   command line (e.g., by -march).  */
+/* True if any MIPS16 code was produced.  */
 static int file_ase_mips16;
 
 #define ISA_SUPPORTS_MIPS16E (mips_opts.isa == ISA_MIPS32              \
@@ -291,6 +316,9 @@ static int file_ase_mips16;
                              || mips_opts.isa == ISA_MIPS64            \
                              || mips_opts.isa == ISA_MIPS64R2)
 
+/* True if any microMIPS code was produced.  */
+static int file_ase_micromips;
+
 /* True if we want to create R_MIPS_JALR for jalr $25.  */
 #ifdef TE_IRIX
 #define MIPS_JALR_HINT_P(EXPR) HAVE_NEWABI
@@ -341,6 +369,10 @@ static int file_ase_mt;
 #define ISA_SUPPORTS_MT_ASE (mips_opts.isa == ISA_MIPS32R2             \
                             || mips_opts.isa == ISA_MIPS64R2)
 
+#define ISA_SUPPORTS_MCU_ASE (mips_opts.isa == ISA_MIPS32R2            \
+                             || mips_opts.isa == ISA_MIPS64R2          \
+                             || mips_opts.micromips)
+
 /* The argument of the -march= flag.  The architecture we are assembling.  */
 static int file_mips_arch = CPU_UNKNOWN;
 static const char *mips_arch_string;
@@ -382,14 +414,19 @@ static int mips_32bitmode = 0;
 /* Return true if ISA supports 64-bit right rotate (dror et al.)
    instructions.  */
 #define ISA_HAS_DROR(ISA)              \
-  ((ISA) == ISA_MIPS64R2)
+  ((ISA) == ISA_MIPS64R2               \
+   || (mips_opts.micromips             \
+       && ISA_HAS_64BIT_REGS (ISA))    \
+   )
 
 /* Return true if ISA supports 32-bit right rotate (ror et al.)
    instructions.  */
 #define ISA_HAS_ROR(ISA)               \
   ((ISA) == ISA_MIPS32R2               \
    || (ISA) == ISA_MIPS64R2            \
-   || mips_opts.ase_smartmips)
+   || mips_opts.ase_smartmips          \
+   || mips_opts.micromips              \
+   )
 
 /* Return true if ISA supports single-precision floats in odd registers.  */
 #define ISA_HAS_ODD_SINGLE_FPR(ISA)    \
@@ -451,19 +488,25 @@ static int mips_32bitmode = 0;
    (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0         \
     || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
 
+/* Return true if the given CPU supports the microMIPS ASE.  */
+#define CPU_HAS_MICROMIPS(cpu) 0
+
 /* True if CPU has a dror instruction.  */
 #define CPU_HAS_DROR(CPU)      ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
 
 /* True if CPU has a ror instruction.  */
 #define CPU_HAS_ROR(CPU)       CPU_HAS_DROR (CPU)
 
+/* True if CPU is in the Octeon family */
+#define CPU_IS_OCTEON(CPU) ((CPU) == CPU_OCTEON || (CPU) == CPU_OCTEONP || (CPU) == CPU_OCTEON2)
+
 /* True if CPU has seq/sne and seqi/snei instructions.  */
-#define CPU_HAS_SEQ(CPU)       ((CPU) == CPU_OCTEON)
+#define CPU_HAS_SEQ(CPU)       (CPU_IS_OCTEON (CPU))
 
 /* True if CPU does not implement the all the coprocessor insns.  For these
    CPUs only those COP insns are accepted that are explicitly marked to be
    available on the CPU.  ISA membership for COP insns is ignored.  */
-#define NO_ISA_COP(CPU)                ((CPU) == CPU_OCTEON)
+#define NO_ISA_COP(CPU)                (CPU_IS_OCTEON (CPU))
 
 /* True if mflo and mfhi can be immediately followed by instructions
    which write to the HI and LO registers.
@@ -489,16 +532,19 @@ static int mips_32bitmode = 0;
    || mips_opts.arch == CPU_R16000                    \
    || mips_opts.arch == CPU_RM7000                    \
    || mips_opts.arch == CPU_VR5500                    \
+   || mips_opts.micromips                             \
    )
 
 /* Whether the processor uses hardware interlocks to protect reads
    from the GPRs after they are loaded from memory, and thus does not
    require nops to be inserted.  This applies to instructions marked
    INSN_LOAD_MEMORY_DELAY.  These nops are only required at MIPS ISA
-   level I.  */
-#define gpr_interlocks \
-  (mips_opts.isa != ISA_MIPS1  \
-   || mips_opts.arch == CPU_R3900)
+   level I and microMIPS mode instructions are always interlocked.  */
+#define gpr_interlocks                                \
+  (mips_opts.isa != ISA_MIPS1                         \
+   || mips_opts.arch == CPU_R3900                     \
+   || mips_opts.micromips                             \
+   )
 
 /* Whether the processor uses hardware interlocks to avoid delays
    required by coprocessor instructions, and thus does not require
@@ -506,21 +552,27 @@ static int mips_32bitmode = 0;
    INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
    between instructions marked INSN_WRITE_COND_CODE and ones marked
    INSN_READ_COND_CODE.  These nops are only required at MIPS ISA
-   levels I, II, and III.  */
+   levels I, II, and III and microMIPS mode instructions are always
+   interlocked.  */
 /* Itbl support may require additional care here.  */
 #define cop_interlocks                                \
   ((mips_opts.isa != ISA_MIPS1                        \
     && mips_opts.isa != ISA_MIPS2                     \
     && mips_opts.isa != ISA_MIPS3)                    \
    || mips_opts.arch == CPU_R4300                     \
+   || mips_opts.micromips                             \
    )
 
 /* Whether the processor uses hardware interlocks to protect reads
    from coprocessor registers after they are loaded from memory, and
    thus does not require nops to be inserted.  This applies to
    instructions marked INSN_COPROC_MEMORY_DELAY.  These nops are only
-   requires at MIPS ISA level I.  */
-#define cop_mem_interlocks (mips_opts.isa != ISA_MIPS1)
+   requires at MIPS ISA level I and microMIPS mode instructions are
+   always interlocked.  */
+#define cop_mem_interlocks                            \
+  (mips_opts.isa != ISA_MIPS1                         \
+   || mips_opts.micromips                             \
+   )
 
 /* Is this a mfhi or mflo instruction?  */
 #define MF_HILO_INSN(PINFO) \
@@ -535,6 +587,12 @@ static int mips_32bitmode = 0;
    && ((PINFO) & (FP_S | FP_D)) == 0                                   \
    && ((PINFO) & (INSN_COP | INSN_READ_COND_CODE | INSN_WRITE_COND_CODE)))
 
+/* Whether code compression (either of the MIPS16 or the microMIPS ASEs)
+   has been selected.  This implies, in particular, that addresses of text
+   labels have their LSB set.  */
+#define HAVE_CODE_COMPRESSION                                          \
+  ((mips_opts.mips16 | mips_opts.micromips) != 0)
+
 /* MIPS PIC level.  */
 
 enum mips_pic_level mips_pic;
@@ -591,6 +649,9 @@ static struct hash_control *op_hash = NULL;
 /* The opcode hash table we use for the mips16.  */
 static struct hash_control *mips16_op_hash = NULL;
 
+/* The opcode hash table we use for the microMIPS ASE.  */
+static struct hash_control *micromips_op_hash = NULL;
+
 /* This array holds the chars that always start a comment.  If the
     pre-processor is disabled, these aren't very useful */
 const char comment_chars[] = "#";
@@ -680,10 +741,17 @@ static int mips_debug = 0;
 static struct mips_cl_insn history[1 + MAX_NOPS];
 
 /* Nop instructions used by emit_nop.  */
-static struct mips_cl_insn nop_insn, mips16_nop_insn;
+static struct mips_cl_insn nop_insn;
+static struct mips_cl_insn mips16_nop_insn;
+static struct mips_cl_insn micromips_nop16_insn;
+static struct mips_cl_insn micromips_nop32_insn;
 
 /* The appropriate nop for the current mode.  */
-#define NOP_INSN (mips_opts.mips16 ? &mips16_nop_insn : &nop_insn)
+#define NOP_INSN (mips_opts.mips16 ? &mips16_nop_insn \
+                 : (mips_opts.micromips ? &micromips_nop16_insn : &nop_insn))
+
+/* The size of NOP_INSN in bytes.  */
+#define NOP_INSN_SIZE (HAVE_CODE_COMPRESSION ? 2 : 4)
 
 /* If this is set, it points to a frag holding nop instructions which
    were inserted before the start of a noreorder section.  If those
@@ -750,6 +818,96 @@ static const unsigned int mips16_to_32_reg_map[] =
   16, 17, 2, 3, 4, 5, 6, 7
 };
 
+/* Map normal MIPS register numbers to microMIPS register numbers.  */
+
+#define mips32_to_micromips_reg_b_map  mips32_to_16_reg_map
+#define mips32_to_micromips_reg_c_map  mips32_to_16_reg_map
+#define mips32_to_micromips_reg_d_map  mips32_to_16_reg_map
+#define mips32_to_micromips_reg_e_map  mips32_to_16_reg_map
+#define mips32_to_micromips_reg_f_map  mips32_to_16_reg_map
+#define mips32_to_micromips_reg_g_map  mips32_to_16_reg_map
+#define mips32_to_micromips_reg_l_map  mips32_to_16_reg_map
+
+#define X ILLEGAL_REG
+/* reg type h: 4, 5, 6.  */
+static const int mips32_to_micromips_reg_h_map[] =
+{
+  X, X, X, X, 4, 5, 6, X,
+  X, X, X, X, X, X, X, X,
+  X, X, X, X, X, X, X, X,
+  X, X, X, X, X, X, X, X
+};
+
+/* reg type m: 0, 17, 2, 3, 16, 18, 19, 20.  */
+static const int mips32_to_micromips_reg_m_map[] =
+{
+  0, X, 2, 3, X, X, X, X,
+  X, X, X, X, X, X, X, X,
+  4, 1, 5, 6, 7, X, X, X,
+  X, X, X, X, X, X, X, X
+};
+
+/* reg type q: 0, 2-7. 17.  */
+static const int mips32_to_micromips_reg_q_map[] =
+{
+  0, X, 2, 3, 4, 5, 6, 7,
+  X, X, X, X, X, X, X, X,
+  X, 1, X, X, X, X, X, X,
+  X, X, X, X, X, X, X, X
+};
+
+#define mips32_to_micromips_reg_n_map  mips32_to_micromips_reg_m_map
+#undef X
+
+/* Map microMIPS register numbers to normal MIPS register numbers.  */
+
+#define micromips_to_32_reg_b_map      mips16_to_32_reg_map
+#define micromips_to_32_reg_c_map      mips16_to_32_reg_map
+#define micromips_to_32_reg_d_map      mips16_to_32_reg_map
+#define micromips_to_32_reg_e_map      mips16_to_32_reg_map
+#define micromips_to_32_reg_f_map      mips16_to_32_reg_map
+#define micromips_to_32_reg_g_map      mips16_to_32_reg_map
+
+/* The microMIPS registers with type h.  */
+static const unsigned int micromips_to_32_reg_h_map[] =
+{
+  5, 5, 6, 4, 4, 4, 4, 4
+};
+
+/* The microMIPS registers with type i.  */
+static const unsigned int micromips_to_32_reg_i_map[] =
+{
+  6, 7, 7, 21, 22, 5, 6, 7
+};
+
+#define micromips_to_32_reg_l_map      mips16_to_32_reg_map
+
+/* The microMIPS registers with type m.  */
+static const unsigned int micromips_to_32_reg_m_map[] =
+{
+  0, 17, 2, 3, 16, 18, 19, 20
+};
+
+#define micromips_to_32_reg_n_map      micromips_to_32_reg_m_map
+
+/* The microMIPS registers with type q.  */
+static const unsigned int micromips_to_32_reg_q_map[] =
+{
+  0, 17, 2, 3, 4, 5, 6, 7
+};
+
+/* microMIPS imm type B.  */
+static const int micromips_imm_b_map[] =
+{
+  1, 4, 8, 12, 16, 20, 24, -1
+};
+
+/* microMIPS imm type C.  */
+static const int micromips_imm_c_map[] =
+{
+  128, 1, 2, 3, 4, 7, 8, 15, 16, 31, 32, 63, 64, 255, 32768, 65535
+};
+
 /* Classifies the kind of instructions we're interested in when
    implementing -mfix-vr4120.  */
 enum fix_vr4120_class
@@ -831,6 +989,18 @@ static int mips_relax_branch;
        Like RELAX_NOMACRO, but indicates that the macro appears in a branch
        delay slot.
 
+   RELAX_DELAY_SLOT_16BIT
+       Like RELAX_DELAY_SLOT, but indicates that the delay slot requires a
+       16-bit instruction.
+
+   RELAX_DELAY_SLOT_SIZE_FIRST
+       Like RELAX_DELAY_SLOT, but indicates that the first implementation of
+       the macro is of the wrong size for the branch delay slot.
+
+   RELAX_DELAY_SLOT_SIZE_SECOND
+       Like RELAX_DELAY_SLOT, but indicates that the second implementation of
+       the macro is of the wrong size for the branch delay slot.
+
    The frag's "opcode" points to the first fixup for relaxable code.
 
    Relaxable macros are generated using a sequence such as:
@@ -851,6 +1021,9 @@ static int mips_relax_branch;
 #define RELAX_SECOND_LONGER 0x20000
 #define RELAX_NOMACRO 0x40000
 #define RELAX_DELAY_SLOT 0x80000
+#define RELAX_DELAY_SLOT_16BIT 0x100000
+#define RELAX_DELAY_SLOT_SIZE_FIRST 0x200000
+#define RELAX_DELAY_SLOT_SIZE_SECOND 0x400000
 
 /* Branch without likely bit.  If label is out of range, we turn:
 
@@ -919,18 +1092,20 @@ static int mips_relax_branch;
 
 
    but it's not clear that it would actually improve performance.  */
-#define RELAX_BRANCH_ENCODE(uncond, likely, link, toofar) \
-  ((relax_substateT) \
-   (0xc0000000 \
-    | ((toofar) ? 1 : 0) \
-    | ((link) ? 2 : 0) \
-    | ((likely) ? 4 : 0) \
-    | ((uncond) ? 8 : 0)))
+#define RELAX_BRANCH_ENCODE(at, uncond, likely, link, toofar)  \
+  ((relax_substateT)                                           \
+   (0xc0000000                                                 \
+    | ((at) & 0x1f)                                            \
+    | ((toofar) ? 0x20 : 0)                                    \
+    | ((link) ? 0x40 : 0)                                      \
+    | ((likely) ? 0x80 : 0)                                    \
+    | ((uncond) ? 0x100 : 0)))
 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
-#define RELAX_BRANCH_UNCOND(i) (((i) & 8) != 0)
-#define RELAX_BRANCH_LIKELY(i) (((i) & 4) != 0)
-#define RELAX_BRANCH_LINK(i) (((i) & 2) != 0)
-#define RELAX_BRANCH_TOOFAR(i) (((i) & 1) != 0)
+#define RELAX_BRANCH_UNCOND(i) (((i) & 0x100) != 0)
+#define RELAX_BRANCH_LIKELY(i) (((i) & 0x80) != 0)
+#define RELAX_BRANCH_LINK(i) (((i) & 0x40) != 0)
+#define RELAX_BRANCH_TOOFAR(i) (((i) & 0x20) != 0)
+#define RELAX_BRANCH_AT(i) ((i) & 0x1f)
 
 /* For mips16 code, we use an entirely different form of relaxation.
    mips16 supports two versions of most instructions which take
@@ -972,6 +1147,52 @@ static int mips_relax_branch;
 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
 
+/* For microMIPS code, we use relaxation similar to one we use for
+   MIPS16 code.  Some instructions that take immediate values support
+   two encodings: a small one which takes some small value, and a
+   larger one which takes a 16 bit value.  As some branches also follow
+   this pattern, relaxing these values is required.
+
+   We can assemble both microMIPS and normal MIPS code in a single
+   object.  Therefore, we need to support this type of relaxation at
+   the same time that we support the relaxation described above.  We
+   use one of the high bits of the subtype field to distinguish these
+   cases.
+
+   The information we store for this type of relaxation is the argument
+   code found in the opcode file for this relocation, the register
+   selected as the assembler temporary, whether the branch is
+   unconditional, whether it is compact, whether it stores the link
+   address implicitly in $ra, whether relaxation of out-of-range 32-bit
+   branches to a sequence of instructions is enabled, and whether the
+   displacement of a branch is too large to fit as an immediate argument
+   of a 16-bit and a 32-bit branch, respectively.  */
+#define RELAX_MICROMIPS_ENCODE(type, at, uncond, compact, link,        \
+                              relax32, toofar16, toofar32)     \
+  (0x40000000                                                  \
+   | ((type) & 0xff)                                           \
+   | (((at) & 0x1f) << 8)                                      \
+   | ((uncond) ? 0x2000 : 0)                                   \
+   | ((compact) ? 0x4000 : 0)                                  \
+   | ((link) ? 0x8000 : 0)                                     \
+   | ((relax32) ? 0x10000 : 0)                                 \
+   | ((toofar16) ? 0x20000 : 0)                                        \
+   | ((toofar32) ? 0x40000 : 0))
+#define RELAX_MICROMIPS_P(i) (((i) & 0xc0000000) == 0x40000000)
+#define RELAX_MICROMIPS_TYPE(i) ((i) & 0xff)
+#define RELAX_MICROMIPS_AT(i) (((i) >> 8) & 0x1f)
+#define RELAX_MICROMIPS_UNCOND(i) (((i) & 0x2000) != 0)
+#define RELAX_MICROMIPS_COMPACT(i) (((i) & 0x4000) != 0)
+#define RELAX_MICROMIPS_LINK(i) (((i) & 0x8000) != 0)
+#define RELAX_MICROMIPS_RELAX32(i) (((i) & 0x10000) != 0)
+
+#define RELAX_MICROMIPS_TOOFAR16(i) (((i) & 0x20000) != 0)
+#define RELAX_MICROMIPS_MARK_TOOFAR16(i) ((i) | 0x20000)
+#define RELAX_MICROMIPS_CLEAR_TOOFAR16(i) ((i) & ~0x20000)
+#define RELAX_MICROMIPS_TOOFAR32(i) (((i) & 0x40000) != 0)
+#define RELAX_MICROMIPS_MARK_TOOFAR32(i) ((i) | 0x40000)
+#define RELAX_MICROMIPS_CLEAR_TOOFAR32(i) ((i) & ~0x40000)
+
 /* Is the given value a sign-extended 32-bit value?  */
 #define IS_SEXT_32BIT_NUM(x)                                           \
   (((x) &~ (offsetT) 0x7fffffff) == 0                                  \
@@ -982,6 +1203,10 @@ static int mips_relax_branch;
   (((x) &~ (offsetT) 0x7fff) == 0                                      \
    || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
 
+/* Is the given value a sign-extended 12-bit value?  */
+#define IS_SEXT_12BIT_NUM(x)                                           \
+  (((((x) & 0xfff) ^ 0x800LL) - 0x800LL) == (x))
+
 /* Is the given value a zero-extended 32-bit value?  Or a negated one?  */
 #define IS_ZEXT_32BIT_NUM(x)                                           \
   (((x) &~ (offsetT) 0xffffffff) == 0                                  \
@@ -1004,20 +1229,33 @@ static int mips_relax_branch;
    include/opcode/mips.h specifies operand fields using the macros
    OP_MASK_<FIELD> and OP_SH_<FIELD>.  The MIPS16 equivalents start
    with "MIPS16OP" instead of "OP".  */
-#define INSERT_OPERAND(FIELD, INSN, VALUE) \
-  INSERT_BITS ((INSN).insn_opcode, VALUE, OP_MASK_##FIELD, OP_SH_##FIELD)
+#define INSERT_OPERAND(MICROMIPS, FIELD, INSN, VALUE) \
+  do \
+    if (!(MICROMIPS)) \
+      INSERT_BITS ((INSN).insn_opcode, VALUE, \
+                  OP_MASK_##FIELD, OP_SH_##FIELD); \
+    else \
+      INSERT_BITS ((INSN).insn_opcode, VALUE, \
+                  MICROMIPSOP_MASK_##FIELD, MICROMIPSOP_SH_##FIELD); \
+  while (0)
 #define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
   INSERT_BITS ((INSN).insn_opcode, VALUE, \
                MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
 
 /* Extract the operand given by FIELD from mips_cl_insn INSN.  */
-#define EXTRACT_OPERAND(FIELD, INSN) \
-  EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD)
+#define EXTRACT_OPERAND(MICROMIPS, FIELD, INSN) \
+  (!(MICROMIPS) \
+   ? EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD) \
+   : EXTRACT_BITS ((INSN).insn_opcode, \
+                  MICROMIPSOP_MASK_##FIELD, MICROMIPSOP_SH_##FIELD))
 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
   EXTRACT_BITS ((INSN).insn_opcode, \
                MIPS16OP_MASK_##FIELD, \
                MIPS16OP_SH_##FIELD)
 \f
+/* Whether or not we are emitting a branch-likely macro.  */
+static bfd_boolean emit_branch_likely_macro = FALSE;
+
 /* Global variables used when generating relaxable macros.  See the
    comment above RELAX_ENCODE for more details about how relaxation
    is used.  */
@@ -1044,12 +1282,33 @@ static struct {
   /* True if the macro is in a branch delay slot.  */
   bfd_boolean delay_slot_p;
 
+  /* Set to the length in bytes required if the macro is in a delay slot
+     that requires a specific length of instruction, otherwise zero.  */
+  unsigned int delay_slot_length;
+
   /* For relaxable macros, sizes[0] is the length of the first alternative
      in bytes and sizes[1] is the length of the second alternative.
      For non-relaxable macros, both elements give the length of the
      macro in bytes.  */
   unsigned int sizes[2];
 
+  /* For relaxable macros, first_insn_sizes[0] is the length of the first
+     instruction of the first alternative in bytes and first_insn_sizes[1]
+     is the length of the first instruction of the second alternative.
+     For non-relaxable macros, both elements give the length of the first
+     instruction in bytes.
+
+     Set to zero if we haven't yet seen the first instruction.  */
+  unsigned int first_insn_sizes[2];
+
+  /* For relaxable macros, insns[0] is the number of instructions for the
+     first alternative and insns[1] is the number of instructions for the
+     second alternative.
+
+     For non-relaxable macros, both elements give the number of
+     instructions for the macro.  */
+  unsigned int insns[2];
+
   /* The first variant frag for this macro.  */
   fragS *first_frag;
 } mips_macro_warning;
@@ -1062,7 +1321,8 @@ static struct {
 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
 
 static void append_insn
-  (struct mips_cl_insn *, expressionS *, bfd_reloc_code_real_type *);
+  (struct mips_cl_insn *, expressionS *, bfd_reloc_code_real_type *,
+   bfd_boolean expansionp);
 static void mips_no_prev_insn (void);
 static void macro_build (expressionS *, const char *, const char *, ...);
 static void mips16_macro_build
@@ -1072,9 +1332,6 @@ static void macro_start (void);
 static void macro_end (void);
 static void macro (struct mips_cl_insn * ip);
 static void mips16_macro (struct mips_cl_insn * ip);
-#ifdef LOSING_COMPILER
-static void macro2 (struct mips_cl_insn * ip);
-#endif
 static void mips_ip (char *str, struct mips_cl_insn * ip);
 static void mips16_ip (char *str, struct mips_cl_insn * ip);
 static void mips16_immed
@@ -1099,6 +1356,8 @@ static void s_cprestore (int);
 static void s_cpreturn (int);
 static void s_dtprelword (int);
 static void s_dtpreldword (int);
+static void s_tprelword (int);
+static void s_tpreldword (int);
 static void s_gpvalue (int);
 static void s_gpword (int);
 static void s_gpdword (int);
@@ -1117,6 +1376,9 @@ static void s_mips_loc (int);
 static bfd_boolean pic_need_relax (symbolS *, asection *);
 static int relaxed_branch_length (fragS *, asection *, int);
 static int validate_mips_insn (const struct mips_opcode *);
+static int validate_micromips_insn (const struct mips_opcode *);
+static int relaxed_micromips_16bit_branch_length (fragS *, asection *, int);
+static int relaxed_micromips_32bit_branch_length (fragS *, asection *, int);
 
 /* Table and functions used to map between CPU/ISA names, and
    ISA levels, and CPU numbers.  */
@@ -1136,6 +1398,7 @@ struct mips_cpu_info
 #define MIPS_CPU_ASE_MIPS3D    0x0010  /* CPU implements MIPS-3D ASE */
 #define MIPS_CPU_ASE_MDMX      0x0020  /* CPU implements MDMX ASE */
 #define MIPS_CPU_ASE_DSPR2     0x0040  /* CPU implements DSP R2 ASE */
+#define MIPS_CPU_ASE_MCU       0x0080  /* CPU implements MCU ASE */
 
 static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
 static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
@@ -1174,6 +1437,8 @@ static const pseudo_typeS mips_pseudo_table[] =
   {"cpreturn", s_cpreturn, 0},
   {"dtprelword", s_dtprelword, 0},
   {"dtpreldword", s_dtpreldword, 0},
+  {"tprelword", s_tprelword, 0},
+  {"tpreldword", s_tpreldword, 0},
   {"gpvalue", s_gpvalue, 0},
   {"gpword", s_gpword, 0},
   {"gpdword", s_gpdword, 0},
@@ -1238,6 +1503,15 @@ static const pseudo_typeS mips_nonecoff_pseudo_table[] =
   { NULL, NULL, 0 },
 };
 
+/* Export the ABI address size for use by TC_ADDRESS_BYTES for the
+   purpose of the `.dc.a' internal pseudo-op.  */
+
+int
+mips_address_bytes (void)
+{
+  return HAVE_64BIT_ADDRESSES ? 8 : 4;
+}
+
 extern void pop_insert (const pseudo_typeS *);
 
 void
@@ -1260,6 +1534,8 @@ static struct insn_label_list *free_insn_labels;
 #define label_list tc_segment_info_data.labels
 
 static void mips_clear_insn_labels (void);
+static void mips_mark_labels (void);
+static void mips_compressed_mark_labels (void);
 
 static inline void
 mips_clear_insn_labels (void)
@@ -1278,6 +1554,14 @@ mips_clear_insn_labels (void)
     }
 }
 
+/* Mark instruction labels in MIPS16/microMIPS mode.  */
+
+static inline void
+mips_mark_labels (void)
+{
+  if (HAVE_CODE_COMPRESSION)
+    mips_compressed_mark_labels ();
+}
 \f
 static char *expr_end;
 
@@ -1295,9 +1579,11 @@ static bfd_reloc_code_real_type imm_reloc[3]
 static bfd_reloc_code_real_type offset_reloc[3]
   = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
 
-/* These are set by mips16_ip if an explicit extension is used.  */
+/* This is set to the resulting size of the instruction to be produced
+   by mips16_ip if an explicit extension is used or by mips_ip if an
+   explicit size is supplied.  */
 
-static bfd_boolean mips16_small, mips16_ext;
+static unsigned int forced_insn_length;
 
 #ifdef OBJ_ELF
 /* The pdr segment for per procedure frame/regmask info.  Not used for
@@ -1308,6 +1594,14 @@ static segT pdr_seg;
 
 /* The default target format to use.  */
 
+#if defined (TE_FreeBSD)
+#define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips-freebsd"
+#elif defined (TE_TMIPS)
+#define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips"
+#else
+#define ELF_TARGET(PREFIX, ENDIAN) PREFIX ENDIAN "mips"
+#endif
+
 const char *
 mips_target_format (void)
 {
@@ -1324,42 +1618,46 @@ mips_target_format (void)
                ? "elf32-bigmips-vxworks"
                : "elf32-littlemips-vxworks");
 #endif
-#ifdef TE_TMIPS
-      /* This is traditional mips.  */
-      return (target_big_endian
-             ? (HAVE_64BIT_OBJECTS
-                ? "elf64-tradbigmips"
-                : (HAVE_NEWABI
-                   ? "elf32-ntradbigmips" : "elf32-tradbigmips"))
-             : (HAVE_64BIT_OBJECTS
-                ? "elf64-tradlittlemips"
-                : (HAVE_NEWABI
-                   ? "elf32-ntradlittlemips" : "elf32-tradlittlemips")));
-#else
       return (target_big_endian
              ? (HAVE_64BIT_OBJECTS
-                ? "elf64-bigmips"
+                ? ELF_TARGET ("elf64-", "big")
                 : (HAVE_NEWABI
-                   ? "elf32-nbigmips" : "elf32-bigmips"))
+                   ? ELF_TARGET ("elf32-n", "big")
+                   : ELF_TARGET ("elf32-", "big")))
              : (HAVE_64BIT_OBJECTS
-                ? "elf64-littlemips"
+                ? ELF_TARGET ("elf64-", "little")
                 : (HAVE_NEWABI
-                   ? "elf32-nlittlemips" : "elf32-littlemips")));
-#endif
+                   ? ELF_TARGET ("elf32-n", "little")
+                   : ELF_TARGET ("elf32-", "little"))));
     default:
       abort ();
       return NULL;
     }
 }
 
+/* Return the length of a microMIPS instruction in bytes.  If bits of
+   the mask beyond the low 16 are 0, then it is a 16-bit instruction.
+   Otherwise assume a 32-bit instruction; 48-bit instructions (0x1f
+   major opcode) will require further modifications to the opcode
+   table.  */
+
+static inline unsigned int
+micromips_insn_length (const struct mips_opcode *mo)
+{
+  return (mo->mask >> 16) == 0 ? 2 : 4;
+}
+
 /* Return the length of instruction INSN.  */
 
 static inline unsigned int
 insn_length (const struct mips_cl_insn *insn)
 {
-  if (!mips_opts.mips16)
+  if (mips_opts.micromips)
+    return micromips_insn_length (insn->insn_mo);
+  else if (mips_opts.mips16)
+    return insn->mips16_absolute_jump_p || insn->use_extend ? 4 : 2;
+  else
     return 4;
-  return insn->mips16_absolute_jump_p || insn->use_extend ? 4 : 2;
 }
 
 /* Initialise INSN from opcode entry MO.  Leave its position unspecified.  */
@@ -1380,18 +1678,21 @@ create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
   insn->fixed_p = (mips_opts.noreorder > 0);
   insn->noreorder_p = (mips_opts.noreorder > 0);
   insn->mips16_absolute_jump_p = 0;
+  insn->complete_p = 0;
 }
 
-/* Record the current MIPS16 mode in now_seg.  */
+/* Record the current MIPS16/microMIPS mode in now_seg.  */
 
 static void
-mips_record_mips16_mode (void)
+mips_record_compressed_mode (void)
 {
   segment_info_type *si;
 
   si = seg_info (now_seg);
   if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
     si->tc_segment_info_data.mips16 = mips_opts.mips16;
+  if (si->tc_segment_info_data.micromips != mips_opts.micromips)
+    si->tc_segment_info_data.micromips = mips_opts.micromips;
 }
 
 /* Install INSN at the location specified by its "frag" and "where" fields.  */
@@ -1400,8 +1701,22 @@ static void
 install_insn (const struct mips_cl_insn *insn)
 {
   char *f = insn->frag->fr_literal + insn->where;
-  if (!mips_opts.mips16)
+  if (!HAVE_CODE_COMPRESSION)
     md_number_to_chars (f, insn->insn_opcode, 4);
+  else if (mips_opts.micromips)
+    {
+      unsigned int length = insn_length (insn);
+      if (length == 2)
+       md_number_to_chars (f, insn->insn_opcode, 2);
+      else if (length == 4)
+       {
+         md_number_to_chars (f, insn->insn_opcode >> 16, 2);
+         f += 2;
+         md_number_to_chars (f, insn->insn_opcode & 0xffff, 2);
+       }
+      else
+       as_bad (_("48-bit microMIPS instructions are not supported"));
+    }
   else if (insn->mips16_absolute_jump_p)
     {
       md_number_to_chars (f, insn->insn_opcode >> 16, 2);
@@ -1416,7 +1731,7 @@ install_insn (const struct mips_cl_insn *insn)
        }
       md_number_to_chars (f, insn->insn_opcode, 2);
     }
-  mips_record_mips16_mode ();
+  mips_record_compressed_mode ();
 }
 
 /* Move INSN to offset WHERE in FRAG.  Adjust the fixups accordingly
@@ -1480,15 +1795,6 @@ insert_into_history (unsigned int first, unsigned int n,
     }
 }
 
-/* Emit a nop instruction, recording it in the history buffer.  */
-
-static void
-emit_nop (void)
-{
-  add_fixed_insn (NOP_INSN);
-  insert_into_history (0, 1, NOP_INSN);
-}
-
 /* Initialize vr4120_conflicts.  There is a bit of duplication here:
    the idea is to make it obvious at a glance that each errata is
    included.  */
@@ -1769,6 +2075,10 @@ static const struct regname reg_names_n32n64[] = {
   {0, 0}
 };
 
+/* Check if S points at a valid register specifier according to TYPES.
+   If so, then return 1, advance S to consume the specifier and store
+   the register's number in REGNOP, otherwise return 0.  */
+
 static int
 reg_lookup (char **s, unsigned int types, unsigned int *regnop)
 {
@@ -1822,6 +2132,67 @@ reg_lookup (char **s, unsigned int types, unsigned int *regnop)
   return reg >= 0;
 }
 
+/* Check if S points at a valid register list according to TYPES.
+   If so, then return 1, advance S to consume the list and store
+   the registers present on the list as a bitmask of ones in REGLISTP,
+   otherwise return 0.  A valid list comprises a comma-separated
+   enumeration of valid single registers and/or dash-separated
+   contiguous register ranges as determined by their numbers.
+
+   As a special exception if one of s0-s7 registers is specified as
+   the range's lower delimiter and s8 (fp) is its upper one, then no
+   registers whose numbers place them between s7 and s8 (i.e. $24-$29)
+   are selected; they have to be listed separately if needed.  */
+
+static int
+reglist_lookup (char **s, unsigned int types, unsigned int *reglistp)
+{
+  unsigned int reglist = 0;
+  unsigned int lastregno;
+  bfd_boolean ok = TRUE;
+  unsigned int regmask;
+  char *s_endlist = *s;
+  char *s_reset = *s;
+  unsigned int regno;
+
+  while (reg_lookup (s, types, &regno))
+    {
+      lastregno = regno;
+      if (**s == '-')
+       {
+         (*s)++;
+         ok = reg_lookup (s, types, &lastregno);
+         if (ok && lastregno < regno)
+           ok = FALSE;
+         if (!ok)
+           break;
+       }
+
+      if (lastregno == FP && regno >= S0 && regno <= S7)
+       {
+         lastregno = S7;
+         reglist |= 1 << FP;
+       }
+      regmask = 1 << lastregno;
+      regmask = (regmask << 1) - 1;
+      regmask ^= (1 << regno) - 1;
+      reglist |= regmask;
+
+      s_endlist = *s;
+      if (**s != ',')
+       break;
+      (*s)++;
+    }
+
+  if (ok)
+    *s = s_endlist;
+  else
+    *s = s_reset;
+  if (reglistp)
+    *reglistp = reglist;
+  return ok && reglist != 0;
+}
+
 /* Return TRUE if opcode MO is valid on the currently selected ISA and
    architecture.  Use is_opcode_valid_16 for MIPS16 opcodes.  */
 
@@ -1845,6 +2216,8 @@ is_opcode_valid (const struct mips_opcode *mo)
     isa |= INSN_MIPS3D;
   if (mips_opts.ase_smartmips)
     isa |= INSN_SMARTMIPS;
+  if (mips_opts.ase_mcu)
+    isa |= INSN_MCU;
 
   /* Don't accept instructions based on the ISA if the CPU does not implement
      all the coprocessor insns. */
@@ -1887,6 +2260,43 @@ is_opcode_valid_16 (const struct mips_opcode *mo)
   return OPCODE_IS_MEMBER (mo, mips_opts.isa, mips_opts.arch) ? TRUE : FALSE;
 }
 
+/* Return TRUE if the size of the microMIPS opcode MO matches one
+   explicitly requested.  Always TRUE in the standard MIPS mode.  */
+
+static bfd_boolean
+is_size_valid (const struct mips_opcode *mo)
+{
+  if (!mips_opts.micromips)
+    return TRUE;
+
+  if (!forced_insn_length)
+    return TRUE;
+  if (mo->pinfo == INSN_MACRO)
+    return FALSE;
+  return forced_insn_length == micromips_insn_length (mo);
+}
+
+/* Return TRUE if the microMIPS opcode MO is valid for the delay slot
+   of the preceding instruction.  Always TRUE in the standard MIPS mode.  */
+
+static bfd_boolean
+is_delay_slot_valid (const struct mips_opcode *mo)
+{
+  if (!mips_opts.micromips)
+    return TRUE;
+
+  if (mo->pinfo == INSN_MACRO)
+    return TRUE;
+  if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
+      && micromips_insn_length (mo) != 4)
+    return FALSE;
+  if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
+      && micromips_insn_length (mo) != 2)
+    return FALSE;
+
+  return TRUE;
+}
+
 /* This function is called once, at assembler startup time.  It should set up
    all the tables, etc. that the MD part of the assembler will need.  */
 
@@ -1972,6 +2382,44 @@ md_begin (void)
             && strcmp (mips16_opcodes[i].name, name) == 0);
     }
 
+  micromips_op_hash = hash_new ();
+
+  i = 0;
+  while (i < bfd_micromips_num_opcodes)
+    {
+      const char *name = micromips_opcodes[i].name;
+
+      retval = hash_insert (micromips_op_hash, name,
+                           (void *) &micromips_opcodes[i]);
+      if (retval != NULL)
+       as_fatal (_("internal: can't hash `%s': %s"),
+                 micromips_opcodes[i].name, retval);
+      do
+        if (micromips_opcodes[i].pinfo != INSN_MACRO)
+          {
+            struct mips_cl_insn *micromips_nop_insn;
+
+            if (!validate_micromips_insn (&micromips_opcodes[i]))
+              broken = 1;
+
+           if (micromips_insn_length (micromips_opcodes + i) == 2)
+             micromips_nop_insn = &micromips_nop16_insn;
+           else if (micromips_insn_length (micromips_opcodes + i) == 4)
+             micromips_nop_insn = &micromips_nop32_insn;
+           else
+             continue;
+
+            if (micromips_nop_insn->insn_mo == NULL
+               && strcmp (name, "nop") == 0)
+              {
+                create_insn (micromips_nop_insn, micromips_opcodes + i);
+                micromips_nop_insn->fixed_p = 1;
+              }
+          }
+      while (++i < bfd_micromips_num_opcodes
+            && strcmp (micromips_opcodes[i].name, name) == 0);
+    }
+
   if (broken)
     as_fatal (_("Broken assembler.  No assembly attempted."));
 
@@ -2103,6 +2551,7 @@ md_begin (void)
 void
 md_mips_end (void)
 {
+  mips_emit_delays ();
   if (! ECOFF_DEBUGGING)
     md_obj_end ();
 }
@@ -2151,11 +2600,11 @@ md_assemble (char *str)
   else
     {
       if (imm_expr.X_op != O_absent)
-       append_insn (&insn, &imm_expr, imm_reloc);
+       append_insn (&insn, &imm_expr, imm_reloc, FALSE);
       else if (offset_expr.X_op != O_absent)
-       append_insn (&insn, &offset_expr, offset_reloc);
+       append_insn (&insn, &offset_expr, offset_reloc, FALSE);
       else
-       append_insn (&insn, NULL, unused_reloc);
+       append_insn (&insn, NULL, unused_reloc, FALSE);
     }
 }
 
@@ -2182,21 +2631,71 @@ mips16_reloc_p (bfd_reloc_code_real_type reloc)
 }
 
 static inline bfd_boolean
+micromips_reloc_p (bfd_reloc_code_real_type reloc)
+{
+  switch (reloc)
+    {
+    case BFD_RELOC_MICROMIPS_7_PCREL_S1:
+    case BFD_RELOC_MICROMIPS_10_PCREL_S1:
+    case BFD_RELOC_MICROMIPS_16_PCREL_S1:
+    case BFD_RELOC_MICROMIPS_GPREL16:
+    case BFD_RELOC_MICROMIPS_JMP:
+    case BFD_RELOC_MICROMIPS_HI16:
+    case BFD_RELOC_MICROMIPS_HI16_S:
+    case BFD_RELOC_MICROMIPS_LO16:
+    case BFD_RELOC_MICROMIPS_LITERAL:
+    case BFD_RELOC_MICROMIPS_GOT16:
+    case BFD_RELOC_MICROMIPS_CALL16:
+    case BFD_RELOC_MICROMIPS_GOT_HI16:
+    case BFD_RELOC_MICROMIPS_GOT_LO16:
+    case BFD_RELOC_MICROMIPS_CALL_HI16:
+    case BFD_RELOC_MICROMIPS_CALL_LO16:
+    case BFD_RELOC_MICROMIPS_SUB:
+    case BFD_RELOC_MICROMIPS_GOT_PAGE:
+    case BFD_RELOC_MICROMIPS_GOT_OFST:
+    case BFD_RELOC_MICROMIPS_GOT_DISP:
+    case BFD_RELOC_MICROMIPS_HIGHEST:
+    case BFD_RELOC_MICROMIPS_HIGHER:
+    case BFD_RELOC_MICROMIPS_SCN_DISP:
+    case BFD_RELOC_MICROMIPS_JALR:
+      return TRUE;
+
+    default:
+      return FALSE;
+    }
+}
+
+static inline bfd_boolean
+jmp_reloc_p (bfd_reloc_code_real_type reloc)
+{
+  return reloc == BFD_RELOC_MIPS_JMP || reloc == BFD_RELOC_MICROMIPS_JMP;
+}
+
+static inline bfd_boolean
 got16_reloc_p (bfd_reloc_code_real_type reloc)
 {
-  return reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16;
+  return (reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16
+         || reloc == BFD_RELOC_MICROMIPS_GOT16);
 }
 
 static inline bfd_boolean
 hi16_reloc_p (bfd_reloc_code_real_type reloc)
 {
-  return reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S;
+  return (reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S
+         || reloc == BFD_RELOC_MICROMIPS_HI16_S);
 }
 
 static inline bfd_boolean
 lo16_reloc_p (bfd_reloc_code_real_type reloc)
 {
-  return reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16;
+  return (reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16
+         || reloc == BFD_RELOC_MICROMIPS_LO16);
+}
+
+static inline bfd_boolean
+jalr_reloc_p (bfd_reloc_code_real_type reloc)
+{
+  return reloc == BFD_RELOC_MIPS_JALR || reloc == BFD_RELOC_MICROMIPS_JALR;
 }
 
 /* Return true if the given relocation might need a matching %lo().
@@ -2219,7 +2718,9 @@ reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
 static inline bfd_reloc_code_real_type
 matching_lo_reloc (bfd_reloc_code_real_type reloc)
 {
-  return mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16 : BFD_RELOC_LO16;
+  return (mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16
+         : (micromips_reloc_p (reloc) ? BFD_RELOC_MICROMIPS_LO16
+            : BFD_RELOC_LO16));
 }
 
 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
@@ -2234,78 +2735,6 @@ fixup_has_matching_lo_p (fixS *fixp)
          && fixp->fx_offset == fixp->fx_next->fx_offset);
 }
 
-/* See whether instruction IP reads register REG.  CLASS is the type
-   of register.  */
-
-static int
-insn_uses_reg (const struct mips_cl_insn *ip, unsigned int reg,
-              enum mips_regclass regclass)
-{
-  if (regclass == MIPS16_REG)
-    {
-      gas_assert (mips_opts.mips16);
-      reg = mips16_to_32_reg_map[reg];
-      regclass = MIPS_GR_REG;
-    }
-
-  /* Don't report on general register ZERO, since it never changes.  */
-  if (regclass == MIPS_GR_REG && reg == ZERO)
-    return 0;
-
-  if (regclass == MIPS_FP_REG)
-    {
-      gas_assert (! mips_opts.mips16);
-      /* If we are called with either $f0 or $f1, we must check $f0.
-        This is not optimal, because it will introduce an unnecessary
-        NOP between "lwc1 $f0" and "swc1 $f1".  To fix this we would
-        need to distinguish reading both $f0 and $f1 or just one of
-        them.  Note that we don't have to check the other way,
-        because there is no instruction that sets both $f0 and $f1
-        and requires a delay.  */
-      if ((ip->insn_mo->pinfo & INSN_READ_FPR_S)
-         && ((EXTRACT_OPERAND (FS, *ip) & ~(unsigned) 1)
-             == (reg &~ (unsigned) 1)))
-       return 1;
-      if ((ip->insn_mo->pinfo & INSN_READ_FPR_T)
-         && ((EXTRACT_OPERAND (FT, *ip) & ~(unsigned) 1)
-             == (reg &~ (unsigned) 1)))
-       return 1;
-    }
-  else if (! mips_opts.mips16)
-    {
-      if ((ip->insn_mo->pinfo & INSN_READ_GPR_S)
-         && EXTRACT_OPERAND (RS, *ip) == reg)
-       return 1;
-      if ((ip->insn_mo->pinfo & INSN_READ_GPR_T)
-         && EXTRACT_OPERAND (RT, *ip) == reg)
-       return 1;
-    }
-  else
-    {
-      if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X)
-         && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)] == reg)
-       return 1;
-      if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y)
-         && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)] == reg)
-       return 1;
-      if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z)
-         && (mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]
-             == reg))
-       return 1;
-      if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_T) && reg == TREG)
-       return 1;
-      if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_SP) && reg == SP)
-       return 1;
-      if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_31) && reg == RA)
-       return 1;
-      if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_GPR_X)
-         && MIPS16_EXTRACT_OPERAND (REGR32, *ip) == reg)
-       return 1;
-    }
-
-  return 0;
-}
-
 /* This function returns true if modifying a register requires a
    delay.  */
 
@@ -2325,34 +2754,43 @@ reg_needs_delay (unsigned int reg)
         delay the use of general register rt for one instruction.  */
       /* Itbl support may require additional care here.  */
       know (prev_pinfo & INSN_WRITE_GPR_T);
-      if (reg == EXTRACT_OPERAND (RT, history[0]))
+      if (reg == EXTRACT_OPERAND (mips_opts.micromips, RT, history[0]))
        return 1;
     }
 
   return 0;
 }
 
-/* Move all labels in insn_labels to the current insertion point.  */
+/* Move all labels in LABELS to the current insertion point.  TEXT_P
+   says whether the labels refer to text or data.  */
 
 static void
-mips_move_labels (void)
+mips_move_labels (struct insn_label_list *labels, bfd_boolean text_p)
 {
-  segment_info_type *si = seg_info (now_seg);
   struct insn_label_list *l;
   valueT val;
 
-  for (l = si->label_list; l != NULL; l = l->next)
+  for (l = labels; l != NULL; l = l->next)
     {
       gas_assert (S_GET_SEGMENT (l->label) == now_seg);
       symbol_set_frag (l->label, frag_now);
       val = (valueT) frag_now_fix ();
-      /* mips16 text labels are stored as odd.  */
-      if (mips_opts.mips16)
+      /* MIPS16/microMIPS text labels are stored as odd.  */
+      if (text_p && HAVE_CODE_COMPRESSION)
        ++val;
       S_SET_VALUE (l->label, val);
     }
 }
 
+/* Move all labels in insn_labels to the current insertion point
+   and treat them as text labels.  */
+
+static void
+mips_move_text_labels (void)
+{
+  mips_move_labels (seg_info (now_seg)->label_list, TRUE);
+}
+
 static bfd_boolean
 s_is_linkonce (symbolS *sym, segT from_seg)
 {
@@ -2375,22 +2813,21 @@ s_is_linkonce (symbolS *sym, segT from_seg)
   return linkonce;
 }
 
-/* Mark instruction labels in mips16 mode.  This permits the linker to
-   handle them specially, such as generating jalx instructions when
-   needed.  We also make them odd for the duration of the assembly, in
-   order to generate the right sort of code.  We will make them even
+/* Mark instruction labels in MIPS16/microMIPS mode.  This permits the
+   linker to handle them specially, such as generating jalx instructions
+   when needed.  We also make them odd for the duration of the assembly,
+   in order to generate the right sort of code.  We will make them even
    in the adjust_symtab routine, while leaving them marked.  This is
    convenient for the debugger and the disassembler.  The linker knows
    to make them odd again.  */
 
 static void
-mips16_mark_labels (void)
+mips_compressed_mark_labels (void)
 {
   segment_info_type *si = seg_info (now_seg);
   struct insn_label_list *l;
 
-  if (!mips_opts.mips16)
-    return;
+  gas_assert (HAVE_CODE_COMPRESSION);
 
   for (l = si->label_list; l != NULL; l = l->next)
    {
@@ -2398,13 +2835,18 @@ mips16_mark_labels (void)
 
 #if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF)
       if (IS_ELF)
-       S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
+       {
+         if (mips_opts.mips16)
+           S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
+         else
+           S_SET_OTHER (label, ELF_ST_SET_MICROMIPS (S_GET_OTHER (label)));
+       }
 #endif
       if ((S_GET_VALUE (label) & 1) == 0
        /* Don't adjust the address if the label is global or weak, or
           in a link-once section, since we'll be emitting symbol reloc
           references to it which will be patched up by the linker, and
-          the final value of the symbol may or may not be MIPS16.  */
+          the final value of the symbol may or may not be MIPS16/microMIPS.  */
          && ! S_IS_WEAK (label)
          && ! S_IS_EXTERNAL (label)
          && ! s_is_linkonce (label, now_seg))
@@ -2458,26 +2900,289 @@ relax_end (void)
   mips_relax.sequence = 0;
 }
 
-/* Classify an instruction according to the FIX_VR4120_* enumeration.
-   Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
-   by VR4120 errata.  */
+/* Return true if IP is a delayed branch or jump.  */
 
-static unsigned int
-classify_vr4120_insn (const char *name)
+static inline bfd_boolean
+delayed_branch_p (const struct mips_cl_insn *ip)
 {
-  if (strncmp (name, "macc", 4) == 0)
-    return FIX_VR4120_MACC;
-  if (strncmp (name, "dmacc", 5) == 0)
-    return FIX_VR4120_DMACC;
-  if (strncmp (name, "mult", 4) == 0)
-    return FIX_VR4120_MULT;
-  if (strncmp (name, "dmult", 5) == 0)
-    return FIX_VR4120_DMULT;
-  if (strstr (name, "div"))
-    return FIX_VR4120_DIV;
-  if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
-    return FIX_VR4120_MTHILO;
-  return NUM_FIX_VR4120_CLASSES;
+  return (ip->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
+                               | INSN_COND_BRANCH_DELAY
+                               | INSN_COND_BRANCH_LIKELY)) != 0;
+}
+
+/* Return true if IP is a compact branch or jump.  */
+
+static inline bfd_boolean
+compact_branch_p (const struct mips_cl_insn *ip)
+{
+  if (mips_opts.mips16)
+    return (ip->insn_mo->pinfo & (MIPS16_INSN_UNCOND_BRANCH
+                                 | MIPS16_INSN_COND_BRANCH)) != 0;
+  else
+    return (ip->insn_mo->pinfo2 & (INSN2_UNCOND_BRANCH
+                                  | INSN2_COND_BRANCH)) != 0;
+}
+
+/* Return true if IP is an unconditional branch or jump.  */
+
+static inline bfd_boolean
+uncond_branch_p (const struct mips_cl_insn *ip)
+{
+  return ((ip->insn_mo->pinfo & INSN_UNCOND_BRANCH_DELAY) != 0
+         || (mips_opts.mips16
+             ? (ip->insn_mo->pinfo & MIPS16_INSN_UNCOND_BRANCH) != 0
+             : (ip->insn_mo->pinfo2 & INSN2_UNCOND_BRANCH) != 0));
+}
+
+/* Return true if IP is a branch-likely instruction.  */
+
+static inline bfd_boolean
+branch_likely_p (const struct mips_cl_insn *ip)
+{
+  return (ip->insn_mo->pinfo & INSN_COND_BRANCH_LIKELY) != 0;
+}
+
+/* Return the type of nop that should be used to fill the delay slot
+   of delayed branch IP.  */
+
+static struct mips_cl_insn *
+get_delay_slot_nop (const struct mips_cl_insn *ip)
+{
+  if (mips_opts.micromips
+      && (ip->insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
+    return &micromips_nop32_insn;
+  return NOP_INSN;
+}
+
+/* Return the mask of core registers that IP reads or writes.  */
+
+static unsigned int
+gpr_mod_mask (const struct mips_cl_insn *ip)
+{
+  unsigned long pinfo2;
+  unsigned int mask;
+
+  mask = 0;
+  pinfo2 = ip->insn_mo->pinfo2;
+  if (mips_opts.micromips)
+    {
+      if (pinfo2 & INSN2_MOD_GPR_MD)
+       mask |= 1 << micromips_to_32_reg_d_map[EXTRACT_OPERAND (1, MD, *ip)];
+      if (pinfo2 & INSN2_MOD_GPR_MF)
+       mask |= 1 << micromips_to_32_reg_f_map[EXTRACT_OPERAND (1, MF, *ip)];
+      if (pinfo2 & INSN2_MOD_SP)
+       mask |= 1 << SP;
+    }
+  return mask;
+}
+
+/* Return the mask of core registers that IP reads.  */
+
+static unsigned int
+gpr_read_mask (const struct mips_cl_insn *ip)
+{
+  unsigned long pinfo, pinfo2;
+  unsigned int mask;
+
+  mask = gpr_mod_mask (ip);
+  pinfo = ip->insn_mo->pinfo;
+  pinfo2 = ip->insn_mo->pinfo2;
+  if (mips_opts.mips16)
+    {
+      if (pinfo & MIPS16_INSN_READ_X)
+       mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)];
+      if (pinfo & MIPS16_INSN_READ_Y)
+       mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)];
+      if (pinfo & MIPS16_INSN_READ_T)
+       mask |= 1 << TREG;
+      if (pinfo & MIPS16_INSN_READ_SP)
+       mask |= 1 << SP;
+      if (pinfo & MIPS16_INSN_READ_31)
+       mask |= 1 << RA;
+      if (pinfo & MIPS16_INSN_READ_Z)
+       mask |= 1 << (mips16_to_32_reg_map
+                     [MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]);
+      if (pinfo & MIPS16_INSN_READ_GPR_X)
+       mask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
+    }
+  else
+    {
+      if (pinfo2 & INSN2_READ_GPR_D)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
+      if (pinfo & INSN_READ_GPR_T)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
+      if (pinfo & INSN_READ_GPR_S)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
+      if (pinfo2 & INSN2_READ_GP)
+       mask |= 1 << GP;
+      if (pinfo2 & INSN2_READ_GPR_31)
+       mask |= 1 << RA;
+      if (pinfo2 & INSN2_READ_GPR_Z)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RZ, *ip);
+    }
+  if (mips_opts.micromips)
+    {
+      if (pinfo2 & INSN2_READ_GPR_MC)
+       mask |= 1 << micromips_to_32_reg_c_map[EXTRACT_OPERAND (1, MC, *ip)];
+      if (pinfo2 & INSN2_READ_GPR_ME)
+       mask |= 1 << micromips_to_32_reg_e_map[EXTRACT_OPERAND (1, ME, *ip)];
+      if (pinfo2 & INSN2_READ_GPR_MG)
+       mask |= 1 << micromips_to_32_reg_g_map[EXTRACT_OPERAND (1, MG, *ip)];
+      if (pinfo2 & INSN2_READ_GPR_MJ)
+       mask |= 1 << EXTRACT_OPERAND (1, MJ, *ip);
+      if (pinfo2 & INSN2_READ_GPR_MMN)
+       {
+         mask |= 1 << micromips_to_32_reg_m_map[EXTRACT_OPERAND (1, MM, *ip)];
+         mask |= 1 << micromips_to_32_reg_n_map[EXTRACT_OPERAND (1, MN, *ip)];
+       }
+      if (pinfo2 & INSN2_READ_GPR_MP)
+       mask |= 1 << EXTRACT_OPERAND (1, MP, *ip);
+      if (pinfo2 & INSN2_READ_GPR_MQ)
+       mask |= 1 << micromips_to_32_reg_q_map[EXTRACT_OPERAND (1, MQ, *ip)];
+    }
+  /* Don't include register 0.  */
+  return mask & ~1;
+}
+
+/* Return the mask of core registers that IP writes.  */
+
+static unsigned int
+gpr_write_mask (const struct mips_cl_insn *ip)
+{
+  unsigned long pinfo, pinfo2;
+  unsigned int mask;
+
+  mask = gpr_mod_mask (ip);
+  pinfo = ip->insn_mo->pinfo;
+  pinfo2 = ip->insn_mo->pinfo2;
+  if (mips_opts.mips16)
+    {
+      if (pinfo & MIPS16_INSN_WRITE_X)
+       mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)];
+      if (pinfo & MIPS16_INSN_WRITE_Y)
+       mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)];
+      if (pinfo & MIPS16_INSN_WRITE_Z)
+       mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RZ, *ip)];
+      if (pinfo & MIPS16_INSN_WRITE_T)
+       mask |= 1 << TREG;
+      if (pinfo & MIPS16_INSN_WRITE_SP)
+       mask |= 1 << SP;
+      if (pinfo & MIPS16_INSN_WRITE_31)
+       mask |= 1 << RA;
+      if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
+       mask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
+    }
+  else
+    {
+      if (pinfo & INSN_WRITE_GPR_D)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
+      if (pinfo & INSN_WRITE_GPR_T)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
+      if (pinfo & INSN_WRITE_GPR_S)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
+      if (pinfo & INSN_WRITE_GPR_31)
+       mask |= 1 << RA;
+      if (pinfo2 & INSN2_WRITE_GPR_Z)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RZ, *ip);
+    }
+  if (mips_opts.micromips)
+    {
+      if (pinfo2 & INSN2_WRITE_GPR_MB)
+       mask |= 1 << micromips_to_32_reg_b_map[EXTRACT_OPERAND (1, MB, *ip)];
+      if (pinfo2 & INSN2_WRITE_GPR_MHI)
+       {
+         mask |= 1 << micromips_to_32_reg_h_map[EXTRACT_OPERAND (1, MH, *ip)];
+         mask |= 1 << micromips_to_32_reg_i_map[EXTRACT_OPERAND (1, MI, *ip)];
+       }
+      if (pinfo2 & INSN2_WRITE_GPR_MJ)
+       mask |= 1 << EXTRACT_OPERAND (1, MJ, *ip);
+      if (pinfo2 & INSN2_WRITE_GPR_MP)
+       mask |= 1 << EXTRACT_OPERAND (1, MP, *ip);
+    }
+  /* Don't include register 0.  */
+  return mask & ~1;
+}
+
+/* Return the mask of floating-point registers that IP reads.  */
+
+static unsigned int
+fpr_read_mask (const struct mips_cl_insn *ip)
+{
+  unsigned long pinfo, pinfo2;
+  unsigned int mask;
+
+  mask = 0;
+  pinfo = ip->insn_mo->pinfo;
+  pinfo2 = ip->insn_mo->pinfo2;
+  if (!mips_opts.mips16)
+    {
+      if (pinfo2 & INSN2_READ_FPR_D)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FD, *ip);
+      if (pinfo & INSN_READ_FPR_S)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FS, *ip);
+      if (pinfo & INSN_READ_FPR_T)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FT, *ip);
+      if (pinfo & INSN_READ_FPR_R)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FR, *ip);
+      if (pinfo2 & INSN2_READ_FPR_Z)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FZ, *ip);
+    }
+  /* Conservatively treat all operands to an FP_D instruction are doubles.
+     (This is overly pessimistic for things like cvt.d.s.)  */
+  if (HAVE_32BIT_FPRS && (pinfo & FP_D))
+    mask |= mask << 1;
+  return mask;
+}
+
+/* Return the mask of floating-point registers that IP writes.  */
+
+static unsigned int
+fpr_write_mask (const struct mips_cl_insn *ip)
+{
+  unsigned long pinfo, pinfo2;
+  unsigned int mask;
+
+  mask = 0;
+  pinfo = ip->insn_mo->pinfo;
+  pinfo2 = ip->insn_mo->pinfo2;
+  if (!mips_opts.mips16)
+    {
+      if (pinfo & INSN_WRITE_FPR_D)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FD, *ip);
+      if (pinfo & INSN_WRITE_FPR_S)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FS, *ip);
+      if (pinfo & INSN_WRITE_FPR_T)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FT, *ip);
+      if (pinfo2 & INSN2_WRITE_FPR_Z)
+       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FZ, *ip);
+    }
+  /* Conservatively treat all operands to an FP_D instruction are doubles.
+     (This is overly pessimistic for things like cvt.s.d.)  */
+  if (HAVE_32BIT_FPRS && (pinfo & FP_D))
+    mask |= mask << 1;
+  return mask;
+}
+
+/* Classify an instruction according to the FIX_VR4120_* enumeration.
+   Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
+   by VR4120 errata.  */
+
+static unsigned int
+classify_vr4120_insn (const char *name)
+{
+  if (strncmp (name, "macc", 4) == 0)
+    return FIX_VR4120_MACC;
+  if (strncmp (name, "dmacc", 5) == 0)
+    return FIX_VR4120_DMACC;
+  if (strncmp (name, "mult", 4) == 0)
+    return FIX_VR4120_MULT;
+  if (strncmp (name, "dmult", 5) == 0)
+    return FIX_VR4120_DMULT;
+  if (strstr (name, "div"))
+    return FIX_VR4120_DIV;
+  if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
+    return FIX_VR4120_MTHILO;
+  return NUM_FIX_VR4120_CLASSES;
 }
 
 #define INSN_ERET  0x42000018
@@ -2492,16 +3197,17 @@ insns_between (const struct mips_cl_insn *insn1,
               const struct mips_cl_insn *insn2)
 {
   unsigned long pinfo1, pinfo2;
+  unsigned int mask;
 
   /* This function needs to know which pinfo flags are set for INSN2
      and which registers INSN2 uses.  The former is stored in PINFO2 and
-     the latter is tested via INSN2_USES_REG.  If INSN2 is null, PINFO2
-     will have every flag set and INSN2_USES_REG will always return true.  */
+     the latter is tested via INSN2_USES_GPR.  If INSN2 is null, PINFO2
+     will have every flag set and INSN2_USES_GPR will always return true.  */
   pinfo1 = insn1->insn_mo->pinfo;
   pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
 
-#define INSN2_USES_REG(REG, CLASS) \
-   (insn2 == NULL || insn_uses_reg (insn2, REG, CLASS))
+#define INSN2_USES_GPR(REG) \
+  (insn2 == NULL || (gpr_read_mask (insn2) & (1U << (REG))) != 0)
 
   /* For most targets, write-after-read dependencies on the HI and LO
      registers must be separated by at least two instructions.  */
@@ -2516,13 +3222,14 @@ insns_between (const struct mips_cl_insn *insn1,
   /* If we're working around r7000 errata, there must be two instructions
      between an mfhi or mflo and any instruction that uses the result.  */
   if (mips_7000_hilo_fix
+      && !mips_opts.micromips
       && MF_HILO_INSN (pinfo1)
-      && INSN2_USES_REG (EXTRACT_OPERAND (RD, *insn1), MIPS_GR_REG))
+      && INSN2_USES_GPR (EXTRACT_OPERAND (0, RD, *insn1)))
     return 2;
 
   /* If we're working around 24K errata, one instruction is required
      if an ERET or DERET is followed by a branch instruction.  */
-  if (mips_fix_24k)
+  if (mips_fix_24k && !mips_opts.micromips)
     {
       if (insn1->insn_opcode == INSN_ERET
          || insn1->insn_opcode == INSN_DERET)
@@ -2530,17 +3237,14 @@ insns_between (const struct mips_cl_insn *insn1,
          if (insn2 == NULL
              || insn2->insn_opcode == INSN_ERET
              || insn2->insn_opcode == INSN_DERET
-             || (insn2->insn_mo->pinfo
-                 & (INSN_UNCOND_BRANCH_DELAY
-                    | INSN_COND_BRANCH_DELAY
-                    | INSN_COND_BRANCH_LIKELY)) != 0)
+             || delayed_branch_p (insn2))
            return 1;
        }
     }
 
   /* If working around VR4120 errata, check for combinations that need
      a single intervening instruction.  */
-  if (mips_fix_vr4120)
+  if (mips_fix_vr4120 && !mips_opts.micromips)
     {
       unsigned int class1, class2;
 
@@ -2555,7 +3259,7 @@ insns_between (const struct mips_cl_insn *insn1,
        }
     }
 
-  if (!mips_opts.mips16)
+  if (!HAVE_CODE_COMPRESSION)
     {
       /* Check for GPR or coprocessor load delays.  All such delays
         are on the RT register.  */
@@ -2564,7 +3268,7 @@ insns_between (const struct mips_cl_insn *insn1,
          || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY)))
        {
          know (pinfo1 & INSN_WRITE_GPR_T);
-         if (INSN2_USES_REG (EXTRACT_OPERAND (RT, *insn1), MIPS_GR_REG))
+         if (INSN2_USES_GPR (EXTRACT_OPERAND (0, RT, *insn1)))
            return 1;
        }
 
@@ -2582,14 +3286,10 @@ insns_between (const struct mips_cl_insn *insn1,
          /* Handle cases where INSN1 writes to a known general coprocessor
             register.  There must be a one instruction delay before INSN2
             if INSN2 reads that register, otherwise no delay is needed.  */
-         if (pinfo1 & INSN_WRITE_FPR_T)
-           {
-             if (INSN2_USES_REG (EXTRACT_OPERAND (FT, *insn1), MIPS_FP_REG))
-               return 1;
-           }
-         else if (pinfo1 & INSN_WRITE_FPR_S)
+         mask = fpr_write_mask (insn1);
+         if (mask != 0)
            {
-             if (INSN2_USES_REG (EXTRACT_OPERAND (FS, *insn1), MIPS_FP_REG))
+             if (!insn2 || (mask & fpr_read_mask (insn2)) != 0)
                return 1;
            }
          else
@@ -2619,20 +3319,22 @@ insns_between (const struct mips_cl_insn *insn1,
        return 1;
     }
 
-#undef INSN2_USES_REG
+#undef INSN2_USES_GPR
 
   return 0;
 }
 
 /* Return the number of nops that would be needed to work around the
    VR4130 mflo/mfhi errata if instruction INSN immediately followed
-   the MAX_VR4130_NOPS instructions described by HIST.  */
+   the MAX_VR4130_NOPS instructions described by HIST.  Ignore hazards
+   that are contained within the first IGNORE instructions of HIST.  */
 
 static int
-nops_for_vr4130 (const struct mips_cl_insn *hist,
+nops_for_vr4130 (int ignore, const struct mips_cl_insn *hist,
                 const struct mips_cl_insn *insn)
 {
-  int i, j, reg;
+  int i, j;
+  unsigned int mask;
 
   /* Check if the instruction writes to HI or LO.  MTHI and MTLO
      are not affected by the errata.  */
@@ -2647,47 +3349,243 @@ nops_for_vr4130 (const struct mips_cl_insn *hist,
     if (MF_HILO_INSN (hist[i].insn_mo->pinfo))
       {
        /* Extract the destination register.  */
-       if (mips_opts.mips16)
-         reg = mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, hist[i])];
-       else
-         reg = EXTRACT_OPERAND (RD, hist[i]);
+       mask = gpr_write_mask (&hist[i]);
 
        /* No nops are needed if INSN reads that register.  */
-       if (insn != NULL && insn_uses_reg (insn, reg, MIPS_GR_REG))
+       if (insn != NULL && (gpr_read_mask (insn) & mask) != 0)
          return 0;
 
        /* ...or if any of the intervening instructions do.  */
        for (j = 0; j < i; j++)
-         if (insn_uses_reg (&hist[j], reg, MIPS_GR_REG))
+         if (gpr_read_mask (&hist[j]) & mask)
            return 0;
 
-       return MAX_VR4130_NOPS - i;
+       if (i >= ignore)
+         return MAX_VR4130_NOPS - i;
       }
   return 0;
 }
 
+#define BASE_REG_EQ(INSN1, INSN2)      \
+  ((((INSN1) >> OP_SH_RS) & OP_MASK_RS) \
+      == (((INSN2) >> OP_SH_RS) & OP_MASK_RS))
+
+/* Return the minimum alignment for this store instruction.  */
+
+static int
+fix_24k_align_to (const struct mips_opcode *mo)
+{
+  if (strcmp (mo->name, "sh") == 0)
+    return 2;
+
+  if (strcmp (mo->name, "swc1") == 0
+      || strcmp (mo->name, "swc2") == 0
+      || strcmp (mo->name, "sw") == 0
+      || strcmp (mo->name, "sc") == 0
+      || strcmp (mo->name, "s.s") == 0)
+    return 4;
+
+  if (strcmp (mo->name, "sdc1") == 0
+      || strcmp (mo->name, "sdc2") == 0
+      || strcmp (mo->name, "s.d") == 0)
+    return 8;
+
+  /* sb, swl, swr */
+  return 1;
+}
+
+struct fix_24k_store_info
+  {
+    /* Immediate offset, if any, for this store instruction.  */
+    short off;
+    /* Alignment required by this store instruction.  */
+    int align_to;
+    /* True for register offsets.  */
+    int register_offset;
+  };
+
+/* Comparison function used by qsort.  */
+
+static int
+fix_24k_sort (const void *a, const void *b)
+{
+  const struct fix_24k_store_info *pos1 = a;
+  const struct fix_24k_store_info *pos2 = b;
+
+  return (pos1->off - pos2->off);
+}
+
+/* INSN is a store instruction.  Try to record the store information
+   in STINFO.  Return false if the information isn't known.  */
+
+static bfd_boolean
+fix_24k_record_store_info (struct fix_24k_store_info *stinfo,
+                          const struct mips_cl_insn *insn)
+{
+  /* The instruction must have a known offset.  */
+  if (!insn->complete_p || !strstr (insn->insn_mo->args, "o("))
+    return FALSE;
+
+  stinfo->off = (insn->insn_opcode >> OP_SH_IMMEDIATE) & OP_MASK_IMMEDIATE;
+  stinfo->align_to = fix_24k_align_to (insn->insn_mo);
+  return TRUE;
+}
+
+/* Return the number of nops that would be needed to work around the 24k
+   "lost data on stores during refill" errata if instruction INSN
+   immediately followed the 2 instructions described by HIST.
+   Ignore hazards that are contained within the first IGNORE
+   instructions of HIST.
+
+   Problem: The FSB (fetch store buffer) acts as an intermediate buffer
+   for the data cache refills and store data. The following describes
+   the scenario where the store data could be lost.
+
+   * A data cache miss, due to either a load or a store, causing fill
+     data to be supplied by the memory subsystem
+   * The first three doublewords of fill data are returned and written
+     into the cache
+   * A sequence of four stores occurs in consecutive cycles around the
+     final doubleword of the fill:
+   * Store A
+   * Store B
+   * Store C
+   * Zero, One or more instructions
+   * Store D
+
+   The four stores A-D must be to different doublewords of the line that
+   is being filled. The fourth instruction in the sequence above permits
+   the fill of the final doubleword to be transferred from the FSB into
+   the cache. In the sequence above, the stores may be either integer
+   (sb, sh, sw, swr, swl, sc) or coprocessor (swc1/swc2, sdc1/sdc2,
+   swxc1, sdxc1, suxc1) stores, as long as the four stores are to
+   different doublewords on the line. If the floating point unit is
+   running in 1:2 mode, it is not possible to create the sequence above
+   using only floating point store instructions.
+
+   In this case, the cache line being filled is incorrectly marked
+   invalid, thereby losing the data from any store to the line that
+   occurs between the original miss and the completion of the five
+   cycle sequence shown above.
+
+   The workarounds are:
+
+   * Run the data cache in write-through mode.
+   * Insert a non-store instruction between
+     Store A and Store B or Store B and Store C.  */
+  
+static int
+nops_for_24k (int ignore, const struct mips_cl_insn *hist,
+             const struct mips_cl_insn *insn)
+{
+  struct fix_24k_store_info pos[3];
+  int align, i, base_offset;
+
+  if (ignore >= 2)
+    return 0;
+
+  /* If the previous instruction wasn't a store, there's nothing to
+     worry about.  */
+  if ((hist[0].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
+    return 0;
+
+  /* If the instructions after the previous one are unknown, we have
+     to assume the worst.  */
+  if (!insn)
+    return 1;
+
+  /* Check whether we are dealing with three consecutive stores.  */
+  if ((insn->insn_mo->pinfo & INSN_STORE_MEMORY) == 0
+      || (hist[1].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
+    return 0;
+
+  /* If we don't know the relationship between the store addresses,
+     assume the worst.  */
+  if (!BASE_REG_EQ (insn->insn_opcode, hist[0].insn_opcode)
+      || !BASE_REG_EQ (insn->insn_opcode, hist[1].insn_opcode))
+    return 1;
+
+  if (!fix_24k_record_store_info (&pos[0], insn)
+      || !fix_24k_record_store_info (&pos[1], &hist[0])
+      || !fix_24k_record_store_info (&pos[2], &hist[1]))
+    return 1;
+
+  qsort (&pos, 3, sizeof (struct fix_24k_store_info), fix_24k_sort);
+
+  /* Pick a value of ALIGN and X such that all offsets are adjusted by
+     X bytes and such that the base register + X is known to be aligned
+     to align bytes.  */
+
+  if (((insn->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == SP)
+    align = 8;
+  else
+    {
+      align = pos[0].align_to;
+      base_offset = pos[0].off;
+      for (i = 1; i < 3; i++)
+       if (align < pos[i].align_to)
+         {
+           align = pos[i].align_to;
+           base_offset = pos[i].off;
+         }
+      for (i = 0; i < 3; i++)
+       pos[i].off -= base_offset;
+    }
+
+  pos[0].off &= ~align + 1;
+  pos[1].off &= ~align + 1;
+  pos[2].off &= ~align + 1;
+
+  /* If any two stores write to the same chunk, they also write to the
+     same doubleword.  The offsets are still sorted at this point.  */
+  if (pos[0].off == pos[1].off || pos[1].off == pos[2].off)
+    return 0;
+
+  /* A range of at least 9 bytes is needed for the stores to be in
+     non-overlapping doublewords.  */
+  if (pos[2].off - pos[0].off <= 8)
+    return 0;
+
+  if (pos[2].off - pos[1].off >= 24
+      || pos[1].off - pos[0].off >= 24
+      || pos[2].off - pos[0].off >= 32)
+    return 0;
+
+  return 1;
+}
+
 /* Return the number of nops that would be needed if instruction INSN
    immediately followed the MAX_NOPS instructions given by HIST,
-   where HIST[0] is the most recent instruction.  If INSN is null,
-   return the worse-case number of nops for any instruction.  */
+   where HIST[0] is the most recent instruction.  Ignore hazards
+   between INSN and the first IGNORE instructions in HIST.
+
+   If INSN is null, return the worse-case number of nops for any
+   instruction.  */
 
 static int
-nops_for_insn (const struct mips_cl_insn *hist,
+nops_for_insn (int ignore, const struct mips_cl_insn *hist,
               const struct mips_cl_insn *insn)
 {
   int i, nops, tmp_nops;
 
   nops = 0;
-  for (i = 0; i < MAX_DELAY_NOPS; i++)
+  for (i = ignore; i < MAX_DELAY_NOPS; i++)
     {
       tmp_nops = insns_between (hist + i, insn) - i;
       if (tmp_nops > nops)
        nops = tmp_nops;
     }
 
-  if (mips_fix_vr4130)
+  if (mips_fix_vr4130 && !mips_opts.micromips)
+    {
+      tmp_nops = nops_for_vr4130 (ignore, hist, insn);
+      if (tmp_nops > nops)
+       nops = tmp_nops;
+    }
+
+  if (mips_fix_24k && !mips_opts.micromips)
     {
-      tmp_nops = nops_for_vr4130 (hist, insn);
+      tmp_nops = nops_for_24k (ignore, hist, insn);
       if (tmp_nops > nops)
        nops = tmp_nops;
     }
@@ -2697,10 +3595,12 @@ nops_for_insn (const struct mips_cl_insn *hist,
 
 /* The variable arguments provide NUM_INSNS extra instructions that
    might be added to HIST.  Return the largest number of nops that
-   would be needed after the extended sequence.  */
+   would be needed after the extended sequence, ignoring hazards
+   in the first IGNORE instructions.  */
 
 static int
-nops_for_sequence (int num_insns, const struct mips_cl_insn *hist, ...)
+nops_for_sequence (int num_insns, int ignore,
+                  const struct mips_cl_insn *hist, ...)
 {
   va_list args;
   struct mips_cl_insn buffer[MAX_NOPS];
@@ -2713,7 +3613,7 @@ nops_for_sequence (int num_insns, const struct mips_cl_insn *hist, ...)
   while (cursor > buffer)
     *--cursor = *va_arg (args, const struct mips_cl_insn *);
 
-  nops = nops_for_insn (buffer, NULL);
+  nops = nops_for_insn (ignore, buffer, NULL);
   va_end (args);
   return nops;
 }
@@ -2722,25 +3622,22 @@ nops_for_sequence (int num_insns, const struct mips_cl_insn *hist, ...)
    worst-case delay for the branch target.  */
 
 static int
-nops_for_insn_or_target (const struct mips_cl_insn *hist,
+nops_for_insn_or_target (int ignore, const struct mips_cl_insn *hist,
                         const struct mips_cl_insn *insn)
 {
   int nops, tmp_nops;
 
-  nops = nops_for_insn (hist, insn);
-  if (insn->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
-                             | INSN_COND_BRANCH_DELAY
-                             | INSN_COND_BRANCH_LIKELY))
+  nops = nops_for_insn (ignore, hist, insn);
+  if (delayed_branch_p (insn))
     {
-      tmp_nops = nops_for_sequence (2, hist, insn, NOP_INSN);
+      tmp_nops = nops_for_sequence (2, ignore ? ignore + 2 : 0,
+                                   hist, insn, get_delay_slot_nop (insn));
       if (tmp_nops > nops)
        nops = tmp_nops;
     }
-  else if (mips_opts.mips16
-          && (insn->insn_mo->pinfo & (MIPS16_INSN_UNCOND_BRANCH
-                                      | MIPS16_INSN_COND_BRANCH)))
+  else if (compact_branch_p (insn))
     {
-      tmp_nops = nops_for_sequence (1, hist, insn);
+      tmp_nops = nops_for_sequence (1, ignore ? ignore + 1 : 0, hist, insn);
       if (tmp_nops > nops)
        nops = tmp_nops;
     }
@@ -2752,6 +3649,7 @@ nops_for_insn_or_target (const struct mips_cl_insn *hist,
 static void
 fix_loongson2f_nop (struct mips_cl_insn * ip)
 {
+  gas_assert (!HAVE_CODE_COMPRESSION);
   if (strcmp (ip->insn_mo->name, "nop") == 0)
     ip->insn_opcode = LOONGSON2F_NOP_INSN;
 }
@@ -2762,6 +3660,7 @@ fix_loongson2f_nop (struct mips_cl_insn * ip)
 static void
 fix_loongson2f_jump (struct mips_cl_insn * ip)
 {
+  gas_assert (!HAVE_CODE_COMPRESSION);
   if (strcmp (ip->insn_mo->name, "j") == 0
       || strcmp (ip->insn_mo->name, "jr") == 0
       || strcmp (ip->insn_mo->name, "jalr") == 0)
@@ -2772,7 +3671,7 @@ fix_loongson2f_jump (struct mips_cl_insn * ip)
       if (! mips_opts.at)
         return;
 
-      sreg = EXTRACT_OPERAND (RS, *ip);
+      sreg = EXTRACT_OPERAND (0, RS, *ip);
       if (sreg == ZERO || sreg == KT0 || sreg == KT1 || sreg == ATREG)
         return;
 
@@ -2795,87 +3694,495 @@ fix_loongson2f (struct mips_cl_insn * ip)
     fix_loongson2f_jump (ip);
 }
 
-/* Output an instruction.  IP is the instruction information.
-   ADDRESS_EXPR is an operand of the instruction to be used with
-   RELOC_TYPE.  */
+/* IP is a branch that has a delay slot, and we need to fill it
+   automatically.   Return true if we can do that by swapping IP
+   with the previous instruction.  */
 
-static void
-append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
-            bfd_reloc_code_real_type *reloc_type)
+static bfd_boolean
+can_swap_branch_p (struct mips_cl_insn *ip)
 {
-  unsigned long prev_pinfo, pinfo;
-  relax_stateT prev_insn_frag_type = 0;
-  bfd_boolean relaxed_branch = FALSE;
-  segment_info_type *si = seg_info (now_seg);
+  unsigned long pinfo, pinfo2, prev_pinfo, prev_pinfo2;
+  unsigned int gpr_read, gpr_write, prev_gpr_read, prev_gpr_write;
 
-  if (mips_fix_loongson2f)
-    fix_loongson2f (ip);
+  /* -O2 and above is required for this optimization.  */
+  if (mips_optimize < 2)
+    return FALSE;
 
-  /* Mark instruction labels in mips16 mode.  */
-  mips16_mark_labels ();
+  /* If we have seen .set volatile or .set nomove, don't optimize.  */
+  if (mips_opts.nomove)
+    return FALSE;
 
-  prev_pinfo = history[0].insn_mo->pinfo;
-  pinfo = ip->insn_mo->pinfo;
+  /* We can't swap if the previous instruction's position is fixed.  */
+  if (history[0].fixed_p)
+    return FALSE;
 
-  if (mips_relax.sequence != 2 && !mips_opts.noreorder)
-    {
-      /* There are a lot of optimizations we could do that we don't.
-        In particular, we do not, in general, reorder instructions.
-        If you use gcc with optimization, it will reorder
-        instructions and generally do much more optimization then we
-        do here; repeating all that work in the assembler would only
-        benefit hand written assembly code, and does not seem worth
-        it.  */
-      int nops = (mips_optimize == 0
-                 ? nops_for_insn (history, NULL)
-                 : nops_for_insn_or_target (history, ip));
-      if (nops > 0)
-       {
-         fragS *old_frag;
-         unsigned long old_frag_offset;
-         int i;
+  /* If the previous previous insn was in a .set noreorder, we can't
+     swap.  Actually, the MIPS assembler will swap in this situation.
+     However, gcc configured -with-gnu-as will generate code like
 
-         old_frag = frag_now;
-         old_frag_offset = frag_now_fix ();
+       .set    noreorder
+       lw      $4,XXX
+       .set    reorder
+       INSN
+       bne     $4,$0,foo
 
-         for (i = 0; i < nops; i++)
-           emit_nop ();
+     in which we can not swap the bne and INSN.  If gcc is not configured
+     -with-gnu-as, it does not output the .set pseudo-ops.  */
+  if (history[1].noreorder_p)
+    return FALSE;
 
-         if (listing)
-           {
-             listing_prev_line ();
-             /* We may be at the start of a variant frag.  In case we
-                 are, make sure there is enough space for the frag
-                 after the frags created by listing_prev_line.  The
-                 argument to frag_grow here must be at least as large
-                 as the argument to all other calls to frag_grow in
-                 this file.  We don't have to worry about being in the
-                 middle of a variant frag, because the variants insert
-                 all needed nop instructions themselves.  */
-             frag_grow (40);
-           }
+  /* If the previous instruction had a fixup in mips16 mode, we can not swap.
+     This means that the previous instruction was a 4-byte one anyhow.  */
+  if (mips_opts.mips16 && history[0].fixp[0])
+    return FALSE;
 
-         mips_move_labels ();
+  /* If the branch is itself the target of a branch, we can not swap.
+     We cheat on this; all we check for is whether there is a label on
+     this instruction.  If there are any branches to anything other than
+     a label, users must use .set noreorder.  */
+  if (seg_info (now_seg)->label_list)
+    return FALSE;
 
-#ifndef NO_ECOFF_DEBUGGING
-         if (ECOFF_DEBUGGING)
-           ecoff_fix_loc (old_frag, old_frag_offset);
-#endif
-       }
-    }
-  else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
-    {
-      /* Work out how many nops in prev_nop_frag are needed by IP.  */
-      int nops = nops_for_insn_or_target (history, ip);
-      gas_assert (nops <= prev_nop_frag_holds);
+  /* If the previous instruction is in a variant frag other than this
+     branch's one, we cannot do the swap.  This does not apply to
+     MIPS16 code, which uses variant frags for different purposes.  */
+  if (!mips_opts.mips16
+      && history[0].frag
+      && history[0].frag->fr_type == rs_machine_dependent)
+    return FALSE;
 
-      /* Enforce NOPS as a minimum.  */
-      if (nops > prev_nop_frag_required)
-       prev_nop_frag_required = nops;
+  /* We do not swap with instructions that cannot architecturally
+     be placed in a branch delay slot, such as SYNC or ERET.  We
+     also refrain from swapping with a trap instruction, since it
+     complicates trap handlers to have the trap instruction be in
+     a delay slot.  */
+  prev_pinfo = history[0].insn_mo->pinfo;
+  if (prev_pinfo & INSN_NO_DELAY_SLOT)
+    return FALSE;
 
-      if (prev_nop_frag_holds == prev_nop_frag_required)
-       {
-         /* Settle for the current number of nops.  Update the history
+  /* Check for conflicts between the branch and the instructions
+     before the candidate delay slot.  */
+  if (nops_for_insn (0, history + 1, ip) > 0)
+    return FALSE;
+
+  /* Check for conflicts between the swapped sequence and the
+     target of the branch.  */
+  if (nops_for_sequence (2, 0, history + 1, ip, history) > 0)
+    return FALSE;
+
+  /* If the branch reads a register that the previous
+     instruction sets, we can not swap.  */
+  gpr_read = gpr_read_mask (ip);
+  prev_gpr_write = gpr_write_mask (&history[0]);
+  if (gpr_read & prev_gpr_write)
+    return FALSE;
+
+  /* If the branch writes a register that the previous
+     instruction sets, we can not swap.  */
+  gpr_write = gpr_write_mask (ip);
+  if (gpr_write & prev_gpr_write)
+    return FALSE;
+
+  /* If the branch writes a register that the previous
+     instruction reads, we can not swap.  */
+  prev_gpr_read = gpr_read_mask (&history[0]);
+  if (gpr_write & prev_gpr_read)
+    return FALSE;
+
+  /* If one instruction sets a condition code and the
+     other one uses a condition code, we can not swap.  */
+  pinfo = ip->insn_mo->pinfo;
+  if ((pinfo & INSN_READ_COND_CODE)
+      && (prev_pinfo & INSN_WRITE_COND_CODE))
+    return FALSE;
+  if ((pinfo & INSN_WRITE_COND_CODE)
+      && (prev_pinfo & INSN_READ_COND_CODE))
+    return FALSE;
+
+  /* If the previous instruction uses the PC, we can not swap.  */
+  prev_pinfo2 = history[0].insn_mo->pinfo2;
+  if (mips_opts.mips16 && (prev_pinfo & MIPS16_INSN_READ_PC))
+    return FALSE;
+  if (mips_opts.micromips && (prev_pinfo2 & INSN2_READ_PC))
+    return FALSE;
+
+  /* If the previous instruction has an incorrect size for a fixed
+     branch delay slot in microMIPS mode, we cannot swap.  */
+  pinfo2 = ip->insn_mo->pinfo2;
+  if (mips_opts.micromips
+      && (pinfo2 & INSN2_BRANCH_DELAY_16BIT)
+      && insn_length (history) != 2)
+    return FALSE;
+  if (mips_opts.micromips
+      && (pinfo2 & INSN2_BRANCH_DELAY_32BIT)
+      && insn_length (history) != 4)
+    return FALSE;
+
+  return TRUE;
+}
+
+/* Decide how we should add IP to the instruction stream.  */
+
+static enum append_method
+get_append_method (struct mips_cl_insn *ip)
+{
+  unsigned long pinfo;
+
+  /* The relaxed version of a macro sequence must be inherently
+     hazard-free.  */
+  if (mips_relax.sequence == 2)
+    return APPEND_ADD;
+
+  /* We must not dabble with instructions in a ".set norerorder" block.  */
+  if (mips_opts.noreorder)
+    return APPEND_ADD;
+
+  /* Otherwise, it's our responsibility to fill branch delay slots.  */
+  if (delayed_branch_p (ip))
+    {
+      if (!branch_likely_p (ip) && can_swap_branch_p (ip))
+       return APPEND_SWAP;
+
+      pinfo = ip->insn_mo->pinfo;
+      if (mips_opts.mips16
+         && ISA_SUPPORTS_MIPS16E
+         && (pinfo & (MIPS16_INSN_READ_X | MIPS16_INSN_READ_31)))
+       return APPEND_ADD_COMPACT;
+
+      return APPEND_ADD_WITH_NOP;
+    }
+
+  return APPEND_ADD;
+}
+
+/* IP is a MIPS16 instruction whose opcode we have just changed.
+   Point IP->insn_mo to the new opcode's definition.  */
+
+static void
+find_altered_mips16_opcode (struct mips_cl_insn *ip)
+{
+  const struct mips_opcode *mo, *end;
+
+  end = &mips16_opcodes[bfd_mips16_num_opcodes];
+  for (mo = ip->insn_mo; mo < end; mo++)
+    if ((ip->insn_opcode & mo->mask) == mo->match)
+      {
+       ip->insn_mo = mo;
+       return;
+      }
+  abort ();
+}
+
+/* For microMIPS macros, we need to generate a local number label
+   as the target of branches.  */
+#define MICROMIPS_LABEL_CHAR           '\037'
+static unsigned long micromips_target_label;
+static char micromips_target_name[32];
+
+static char *
+micromips_label_name (void)
+{
+  char *p = micromips_target_name;
+  char symbol_name_temporary[24];
+  unsigned long l;
+  int i;
+
+  if (*p)
+    return p;
+
+  i = 0;
+  l = micromips_target_label;
+#ifdef LOCAL_LABEL_PREFIX
+  *p++ = LOCAL_LABEL_PREFIX;
+#endif
+  *p++ = 'L';
+  *p++ = MICROMIPS_LABEL_CHAR;
+  do
+    {
+      symbol_name_temporary[i++] = l % 10 + '0';
+      l /= 10;
+    }
+  while (l != 0);
+  while (i > 0)
+    *p++ = symbol_name_temporary[--i];
+  *p = '\0';
+
+  return micromips_target_name;
+}
+
+static void
+micromips_label_expr (expressionS *label_expr)
+{
+  label_expr->X_op = O_symbol;
+  label_expr->X_add_symbol = symbol_find_or_make (micromips_label_name ());
+  label_expr->X_add_number = 0;
+}
+
+static void
+micromips_label_inc (void)
+{
+  micromips_target_label++;
+  *micromips_target_name = '\0';
+}
+
+static void
+micromips_add_label (void)
+{
+  symbolS *s;
+
+  s = colon (micromips_label_name ());
+  micromips_label_inc ();
+#if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF)
+  if (IS_ELF)
+    S_SET_OTHER (s, ELF_ST_SET_MICROMIPS (S_GET_OTHER (s)));
+#else
+  (void) s;
+#endif
+}
+
+/* If assembling microMIPS code, then return the microMIPS reloc
+   corresponding to the requested one if any.  Otherwise return
+   the reloc unchanged.  */
+
+static bfd_reloc_code_real_type
+micromips_map_reloc (bfd_reloc_code_real_type reloc)
+{
+  static const bfd_reloc_code_real_type relocs[][2] =
+    {
+      /* Keep sorted incrementally by the left-hand key.  */
+      { BFD_RELOC_16_PCREL_S2, BFD_RELOC_MICROMIPS_16_PCREL_S1 },
+      { BFD_RELOC_GPREL16, BFD_RELOC_MICROMIPS_GPREL16 },
+      { BFD_RELOC_MIPS_JMP, BFD_RELOC_MICROMIPS_JMP },
+      { BFD_RELOC_HI16, BFD_RELOC_MICROMIPS_HI16 },
+      { BFD_RELOC_HI16_S, BFD_RELOC_MICROMIPS_HI16_S },
+      { BFD_RELOC_LO16, BFD_RELOC_MICROMIPS_LO16 },
+      { BFD_RELOC_MIPS_LITERAL, BFD_RELOC_MICROMIPS_LITERAL },
+      { BFD_RELOC_MIPS_GOT16, BFD_RELOC_MICROMIPS_GOT16 },
+      { BFD_RELOC_MIPS_CALL16, BFD_RELOC_MICROMIPS_CALL16 },
+      { BFD_RELOC_MIPS_GOT_HI16, BFD_RELOC_MICROMIPS_GOT_HI16 },
+      { BFD_RELOC_MIPS_GOT_LO16, BFD_RELOC_MICROMIPS_GOT_LO16 },
+      { BFD_RELOC_MIPS_CALL_HI16, BFD_RELOC_MICROMIPS_CALL_HI16 },
+      { BFD_RELOC_MIPS_CALL_LO16, BFD_RELOC_MICROMIPS_CALL_LO16 },
+      { BFD_RELOC_MIPS_SUB, BFD_RELOC_MICROMIPS_SUB },
+      { BFD_RELOC_MIPS_GOT_PAGE, BFD_RELOC_MICROMIPS_GOT_PAGE },
+      { BFD_RELOC_MIPS_GOT_OFST, BFD_RELOC_MICROMIPS_GOT_OFST },
+      { BFD_RELOC_MIPS_GOT_DISP, BFD_RELOC_MICROMIPS_GOT_DISP },
+      { BFD_RELOC_MIPS_HIGHEST, BFD_RELOC_MICROMIPS_HIGHEST },
+      { BFD_RELOC_MIPS_HIGHER, BFD_RELOC_MICROMIPS_HIGHER },
+      { BFD_RELOC_MIPS_SCN_DISP, BFD_RELOC_MICROMIPS_SCN_DISP },
+      { BFD_RELOC_MIPS_TLS_GD, BFD_RELOC_MICROMIPS_TLS_GD },
+      { BFD_RELOC_MIPS_TLS_LDM, BFD_RELOC_MICROMIPS_TLS_LDM },
+      { BFD_RELOC_MIPS_TLS_DTPREL_HI16, BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16 },
+      { BFD_RELOC_MIPS_TLS_DTPREL_LO16, BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16 },
+      { BFD_RELOC_MIPS_TLS_GOTTPREL, BFD_RELOC_MICROMIPS_TLS_GOTTPREL },
+      { BFD_RELOC_MIPS_TLS_TPREL_HI16, BFD_RELOC_MICROMIPS_TLS_TPREL_HI16 },
+      { BFD_RELOC_MIPS_TLS_TPREL_LO16, BFD_RELOC_MICROMIPS_TLS_TPREL_LO16 }
+    };
+  bfd_reloc_code_real_type r;
+  size_t i;
+
+  if (!mips_opts.micromips)
+    return reloc;
+  for (i = 0; i < ARRAY_SIZE (relocs); i++)
+    {
+      r = relocs[i][0];
+      if (r > reloc)
+       return reloc;
+      if (r == reloc)
+       return relocs[i][1];
+    }
+  return reloc;
+}
+
+/* Output an instruction.  IP is the instruction information.
+   ADDRESS_EXPR is an operand of the instruction to be used with
+   RELOC_TYPE.  EXPANSIONP is true if the instruction is part of
+   a macro expansion.  */
+
+static void
+append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
+            bfd_reloc_code_real_type *reloc_type, bfd_boolean expansionp)
+{
+  unsigned long prev_pinfo2, pinfo;
+  bfd_boolean relaxed_branch = FALSE;
+  enum append_method method;
+  bfd_boolean relax32;
+  int branch_disp;
+
+  if (mips_fix_loongson2f && !HAVE_CODE_COMPRESSION)
+    fix_loongson2f (ip);
+
+  mips_mark_labels ();
+
+  file_ase_mips16 |= mips_opts.mips16;
+  file_ase_micromips |= mips_opts.micromips;
+
+  prev_pinfo2 = history[0].insn_mo->pinfo2;
+  pinfo = ip->insn_mo->pinfo;
+
+  if (mips_opts.micromips
+      && !expansionp
+      && (((prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
+          && micromips_insn_length (ip->insn_mo) != 2)
+         || ((prev_pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
+             && micromips_insn_length (ip->insn_mo) != 4)))
+    as_warn (_("Wrong size instruction in a %u-bit branch delay slot"),
+            (prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0 ? 16 : 32);
+
+  if (address_expr == NULL)
+    ip->complete_p = 1;
+  else if (*reloc_type <= BFD_RELOC_UNUSED
+          && address_expr->X_op == O_constant)
+    {
+      unsigned int tmp;
+
+      ip->complete_p = 1;
+      switch (*reloc_type)
+       {
+       case BFD_RELOC_32:
+         ip->insn_opcode |= address_expr->X_add_number;
+         break;
+
+       case BFD_RELOC_MIPS_HIGHEST:
+         tmp = (address_expr->X_add_number + 0x800080008000ull) >> 48;
+         ip->insn_opcode |= tmp & 0xffff;
+         break;
+
+       case BFD_RELOC_MIPS_HIGHER:
+         tmp = (address_expr->X_add_number + 0x80008000ull) >> 32;
+         ip->insn_opcode |= tmp & 0xffff;
+         break;
+
+       case BFD_RELOC_HI16_S:
+         tmp = (address_expr->X_add_number + 0x8000) >> 16;
+         ip->insn_opcode |= tmp & 0xffff;
+         break;
+
+       case BFD_RELOC_HI16:
+         ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
+         break;
+
+       case BFD_RELOC_UNUSED:
+       case BFD_RELOC_LO16:
+       case BFD_RELOC_MIPS_GOT_DISP:
+         ip->insn_opcode |= address_expr->X_add_number & 0xffff;
+         break;
+
+       case BFD_RELOC_MIPS_JMP:
+         {
+           int shift;
+
+           shift = mips_opts.micromips ? 1 : 2;
+           if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
+             as_bad (_("jump to misaligned address (0x%lx)"),
+                     (unsigned long) address_expr->X_add_number);
+           ip->insn_opcode |= ((address_expr->X_add_number >> shift)
+                               & 0x3ffffff);
+           ip->complete_p = 0;
+         }
+         break;
+
+       case BFD_RELOC_MIPS16_JMP:
+         if ((address_expr->X_add_number & 3) != 0)
+           as_bad (_("jump to misaligned address (0x%lx)"),
+                   (unsigned long) address_expr->X_add_number);
+         ip->insn_opcode |=
+           (((address_expr->X_add_number & 0x7c0000) << 3)
+              | ((address_expr->X_add_number & 0xf800000) >> 7)
+              | ((address_expr->X_add_number & 0x3fffc) >> 2));
+         ip->complete_p = 0;
+         break;
+
+       case BFD_RELOC_16_PCREL_S2:
+         {
+           int shift;
+
+           shift = mips_opts.micromips ? 1 : 2;
+           if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
+             as_bad (_("branch to misaligned address (0x%lx)"),
+                     (unsigned long) address_expr->X_add_number);
+           if (!mips_relax_branch)
+             {
+               if ((address_expr->X_add_number + (1 << (shift + 15)))
+                   & ~((1 << (shift + 16)) - 1))
+                 as_bad (_("branch address range overflow (0x%lx)"),
+                         (unsigned long) address_expr->X_add_number);
+               ip->insn_opcode |= ((address_expr->X_add_number >> shift)
+                                   & 0xffff);
+             }
+           ip->complete_p = 0;
+         }
+         break;
+
+       default:
+         internalError ();
+       }       
+    }
+
+  if (mips_relax.sequence != 2 && !mips_opts.noreorder)
+    {
+      /* There are a lot of optimizations we could do that we don't.
+        In particular, we do not, in general, reorder instructions.
+        If you use gcc with optimization, it will reorder
+        instructions and generally do much more optimization then we
+        do here; repeating all that work in the assembler would only
+        benefit hand written assembly code, and does not seem worth
+        it.  */
+      int nops = (mips_optimize == 0
+                 ? nops_for_insn (0, history, NULL)
+                 : nops_for_insn_or_target (0, history, ip));
+      if (nops > 0)
+       {
+         fragS *old_frag;
+         unsigned long old_frag_offset;
+         int i;
+
+         old_frag = frag_now;
+         old_frag_offset = frag_now_fix ();
+
+         for (i = 0; i < nops; i++)
+           add_fixed_insn (NOP_INSN);
+         insert_into_history (0, nops, NOP_INSN);
+
+         if (listing)
+           {
+             listing_prev_line ();
+             /* We may be at the start of a variant frag.  In case we
+                 are, make sure there is enough space for the frag
+                 after the frags created by listing_prev_line.  The
+                 argument to frag_grow here must be at least as large
+                 as the argument to all other calls to frag_grow in
+                 this file.  We don't have to worry about being in the
+                 middle of a variant frag, because the variants insert
+                 all needed nop instructions themselves.  */
+             frag_grow (40);
+           }
+
+         mips_move_text_labels ();
+
+#ifndef NO_ECOFF_DEBUGGING
+         if (ECOFF_DEBUGGING)
+           ecoff_fix_loc (old_frag, old_frag_offset);
+#endif
+       }
+    }
+  else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
+    {
+      int nops;
+
+      /* Work out how many nops in prev_nop_frag are needed by IP,
+        ignoring hazards generated by the first prev_nop_frag_since
+        instructions.  */
+      nops = nops_for_insn_or_target (prev_nop_frag_since, history, ip);
+      gas_assert (nops <= prev_nop_frag_holds);
+
+      /* Enforce NOPS as a minimum.  */
+      if (nops > prev_nop_frag_required)
+       prev_nop_frag_required = nops;
+
+      if (prev_nop_frag_holds == prev_nop_frag_required)
+       {
+         /* Settle for the current number of nops.  Update the history
             accordingly (for the benefit of any future .set reorder code).  */
          prev_nop_frag = NULL;
          insert_into_history (prev_nop_frag_since,
@@ -2885,61 +4192,103 @@ append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
        {
          /* Allow this instruction to replace one of the nops that was
             tentatively added to prev_nop_frag.  */
-         prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
+         prev_nop_frag->fr_fix -= NOP_INSN_SIZE;
          prev_nop_frag_holds--;
          prev_nop_frag_since++;
        }
     }
 
+  method = get_append_method (ip);
+  branch_disp = method == APPEND_SWAP ? insn_length (history) : 0;
+
 #ifdef OBJ_ELF
   /* The value passed to dwarf2_emit_insn is the distance between
      the beginning of the current instruction and the address that
-     should be recorded in the debug tables.  For MIPS16 debug info
-     we want to use ISA-encoded addresses, so we pass -1 for an
-     address higher by one than the current.  */
-  dwarf2_emit_insn (mips_opts.mips16 ? -1 : 0);
+     should be recorded in the debug tables.  This is normally the
+     current address.
+
+     For MIPS16/microMIPS debug info we want to use ISA-encoded
+     addresses, so we use -1 for an address higher by one than the
+     current one.
+
+     If the instruction produced is a branch that we will swap with
+     the preceding instruction, then we add the displacement by which
+     the branch will be moved backwards.  This is more appropriate
+     and for MIPS16/microMIPS code also prevents a debugger from
+     placing a breakpoint in the middle of the branch (and corrupting
+     code if software breakpoints are used).  */
+  dwarf2_emit_insn ((HAVE_CODE_COMPRESSION ? -1 : 0) + branch_disp);
 #endif
 
-  /* Record the frag type before frag_var.  */
-  if (history[0].frag)
-    prev_insn_frag_type = history[0].frag->fr_type;
-
-  if (address_expr
+  relax32 = (mips_relax_branch
+            /* Don't try branch relaxation within .set nomacro, or within
+               .set noat if we use $at for PIC computations.  If it turns
+               out that the branch was out-of-range, we'll get an error.  */
+            && !mips_opts.warn_about_macros
+            && (mips_opts.at || mips_pic == NO_PIC)
+            /* Don't relax BPOSGE32/64 as they have no complementing
+               branches.  */
+            && !(ip->insn_mo->membership & (INSN_DSP64 | INSN_DSP)));
+
+  if (!HAVE_CODE_COMPRESSION
+      && address_expr
+      && relax32
       && *reloc_type == BFD_RELOC_16_PCREL_S2
-      && (pinfo & INSN_UNCOND_BRANCH_DELAY || pinfo & INSN_COND_BRANCH_DELAY
-         || pinfo & INSN_COND_BRANCH_LIKELY)
-      && mips_relax_branch
-      /* Don't try branch relaxation within .set nomacro, or within
-        .set noat if we use $at for PIC computations.  If it turns
-        out that the branch was out-of-range, we'll get an error.  */
-      && !mips_opts.warn_about_macros
-      && (mips_opts.at || mips_pic == NO_PIC)
-      && !mips_opts.mips16)
+      && delayed_branch_p (ip))
     {
       relaxed_branch = TRUE;
       add_relaxed_insn (ip, (relaxed_branch_length
                             (NULL, NULL,
-                             (pinfo & INSN_UNCOND_BRANCH_DELAY) ? -1
-                             : (pinfo & INSN_COND_BRANCH_LIKELY) ? 1
+                             uncond_branch_p (ip) ? -1
+                             : branch_likely_p (ip) ? 1
                              : 0)), 4,
                        RELAX_BRANCH_ENCODE
-                       (pinfo & INSN_UNCOND_BRANCH_DELAY,
-                        pinfo & INSN_COND_BRANCH_LIKELY,
+                       (AT,
+                        uncond_branch_p (ip),
+                        branch_likely_p (ip),
                         pinfo & INSN_WRITE_GPR_31,
                         0),
                        address_expr->X_add_symbol,
                        address_expr->X_add_number);
       *reloc_type = BFD_RELOC_UNUSED;
     }
-  else if (*reloc_type > BFD_RELOC_UNUSED)
+  else if (mips_opts.micromips
+          && address_expr
+          && ((relax32 && *reloc_type == BFD_RELOC_16_PCREL_S2)
+              || *reloc_type > BFD_RELOC_UNUSED)
+          && (delayed_branch_p (ip) || compact_branch_p (ip))
+          /* Don't try branch relaxation when users specify
+             16-bit/32-bit instructions.  */
+          && !forced_insn_length)
+    {
+      bfd_boolean relax16 = *reloc_type > BFD_RELOC_UNUSED;
+      int type = relax16 ? *reloc_type - BFD_RELOC_UNUSED : 0;
+      int uncond = uncond_branch_p (ip) ? -1 : 0;
+      int compact = compact_branch_p (ip);
+      int al = pinfo & INSN_WRITE_GPR_31;
+      int length32;
+
+      gas_assert (address_expr != NULL);
+      gas_assert (!mips_relax.sequence);
+
+      relaxed_branch = TRUE;
+      length32 = relaxed_micromips_32bit_branch_length (NULL, NULL, uncond);
+      add_relaxed_insn (ip, relax32 ? length32 : 4, relax16 ? 2 : 4,
+                       RELAX_MICROMIPS_ENCODE (type, AT, uncond, compact, al,
+                                               relax32, 0, 0),
+                       address_expr->X_add_symbol,
+                       address_expr->X_add_number);
+      *reloc_type = BFD_RELOC_UNUSED;
+    }
+  else if (mips_opts.mips16 && *reloc_type > BFD_RELOC_UNUSED)
     {
       /* We need to set up a variant frag.  */
-      gas_assert (mips_opts.mips16 && address_expr != NULL);
+      gas_assert (address_expr != NULL);
       add_relaxed_insn (ip, 4, 0,
                        RELAX_MIPS16_ENCODE
                        (*reloc_type - BFD_RELOC_UNUSED,
-                        mips16_small, mips16_ext,
-                        prev_pinfo & INSN_UNCOND_BRANCH_DELAY,
+                        forced_insn_length == 2, forced_insn_length == 4,
+                        delayed_branch_p (&history[0]),
                         history[0].mips16_absolute_jump_p),
                        make_expr_symbol (address_expr), 0);
     }
@@ -2947,7 +4296,7 @@ append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
           && ! ip->use_extend
           && *reloc_type != BFD_RELOC_MIPS16_JMP)
     {
-      if ((pinfo & INSN_UNCOND_BRANCH_DELAY) == 0)
+      if (!delayed_branch_p (ip))
        /* Make sure there is enough room to swap this instruction with
           a following jump instruction.  */
        frag_grow (6);
@@ -2957,7 +4306,7 @@ append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
     {
       if (mips_opts.mips16
          && mips_opts.noreorder
-         && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0)
+         && delayed_branch_p (&history[0]))
        as_warn (_("extended instruction in delay slot"));
 
       if (mips_relax.sequence)
@@ -2967,13 +4316,23 @@ append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
             written so far.  */
          if (frag_room () < 4)
            relax_close_frag ();
-         mips_relax.sizes[mips_relax.sequence - 1] += 4;
+         mips_relax.sizes[mips_relax.sequence - 1] += insn_length (ip);
        }
 
       if (mips_relax.sequence != 2)
-       mips_macro_warning.sizes[0] += 4;
+       {
+         if (mips_macro_warning.first_insn_sizes[0] == 0)
+           mips_macro_warning.first_insn_sizes[0] = insn_length (ip);
+         mips_macro_warning.sizes[0] += insn_length (ip);
+         mips_macro_warning.insns[0]++;
+       }
       if (mips_relax.sequence != 1)
-       mips_macro_warning.sizes[1] += 4;
+       {
+         if (mips_macro_warning.first_insn_sizes[1] == 0)
+           mips_macro_warning.first_insn_sizes[1] = insn_length (ip);
+         mips_macro_warning.sizes[1] += insn_length (ip);
+         mips_macro_warning.insns[1]++;
+       }
 
       if (mips_opts.mips16)
        {
@@ -2983,444 +4342,185 @@ append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
       add_fixed_insn (ip);
     }
 
-  if (address_expr != NULL && *reloc_type <= BFD_RELOC_UNUSED)
+  if (!ip->complete_p && *reloc_type < BFD_RELOC_UNUSED)
     {
-      if (address_expr->X_op == O_constant)
-       {
-         unsigned int tmp;
-
-         switch (*reloc_type)
-           {
-           case BFD_RELOC_32:
-             ip->insn_opcode |= address_expr->X_add_number;
-             break;
-
-           case BFD_RELOC_MIPS_HIGHEST:
-             tmp = (address_expr->X_add_number + 0x800080008000ull) >> 48;
-             ip->insn_opcode |= tmp & 0xffff;
-             break;
-
-           case BFD_RELOC_MIPS_HIGHER:
-             tmp = (address_expr->X_add_number + 0x80008000ull) >> 32;
-             ip->insn_opcode |= tmp & 0xffff;
-             break;
-
-           case BFD_RELOC_HI16_S:
-             tmp = (address_expr->X_add_number + 0x8000) >> 16;
-             ip->insn_opcode |= tmp & 0xffff;
-             break;
-
-           case BFD_RELOC_HI16:
-             ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
-             break;
+      bfd_reloc_code_real_type final_type[3];
+      reloc_howto_type *howto0;
+      reloc_howto_type *howto;
+      int i;
 
-           case BFD_RELOC_UNUSED:
-           case BFD_RELOC_LO16:
-           case BFD_RELOC_MIPS_GOT_DISP:
-             ip->insn_opcode |= address_expr->X_add_number & 0xffff;
-             break;
+      /* Perform any necessary conversion to microMIPS relocations
+        and find out how many relocations there actually are.  */
+      for (i = 0; i < 3 && reloc_type[i] != BFD_RELOC_UNUSED; i++)
+       final_type[i] = micromips_map_reloc (reloc_type[i]);
 
-           case BFD_RELOC_MIPS_JMP:
-             if ((address_expr->X_add_number & 3) != 0)
-               as_bad (_("jump to misaligned address (0x%lx)"),
-                       (unsigned long) address_expr->X_add_number);
-             ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff;
-             break;
+      /* In a compound relocation, it is the final (outermost)
+        operator that determines the relocated field.  */
+      howto = howto0 = bfd_reloc_type_lookup (stdoutput, final_type[i - 1]);
 
-           case BFD_RELOC_MIPS16_JMP:
-             if ((address_expr->X_add_number & 3) != 0)
-               as_bad (_("jump to misaligned address (0x%lx)"),
-                       (unsigned long) address_expr->X_add_number);
-             ip->insn_opcode |=
-               (((address_expr->X_add_number & 0x7c0000) << 3)
-                | ((address_expr->X_add_number & 0xf800000) >> 7)
-                | ((address_expr->X_add_number & 0x3fffc) >> 2));
-             break;
+      if (howto == NULL)
+       {
+         /* To reproduce this failure try assembling gas/testsuites/
+            gas/mips/mips16-intermix.s with a mips-ecoff targeted
+            assembler.  */
+         as_bad (_("Unsupported MIPS relocation number %d"),
+                 final_type[i - 1]);
+         howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_16);
+       }
 
-           case BFD_RELOC_16_PCREL_S2:
-             if ((address_expr->X_add_number & 3) != 0)
-               as_bad (_("branch to misaligned address (0x%lx)"),
-                       (unsigned long) address_expr->X_add_number);
-             if (mips_relax_branch)
-               goto need_reloc;
-             if ((address_expr->X_add_number + 0x20000) & ~0x3ffff)
-               as_bad (_("branch address range overflow (0x%lx)"),
-                       (unsigned long) address_expr->X_add_number);
-             ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0xffff;
-             break;
+      if (i > 1)
+       howto0 = bfd_reloc_type_lookup (stdoutput, final_type[0]);
+      ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
+                                bfd_get_reloc_size (howto),
+                                address_expr,
+                                howto0 && howto0->pc_relative,
+                                final_type[0]);
+
+      /* Tag symbols that have a R_MIPS16_26 relocation against them.  */
+      if (final_type[0] == BFD_RELOC_MIPS16_JMP && ip->fixp[0]->fx_addsy)
+       *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
+
+      /* These relocations can have an addend that won't fit in
+        4 octets for 64bit assembly.  */
+      if (HAVE_64BIT_GPRS
+         && ! howto->partial_inplace
+         && (reloc_type[0] == BFD_RELOC_16
+             || reloc_type[0] == BFD_RELOC_32
+             || reloc_type[0] == BFD_RELOC_MIPS_JMP
+             || reloc_type[0] == BFD_RELOC_GPREL16
+             || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
+             || reloc_type[0] == BFD_RELOC_GPREL32
+             || reloc_type[0] == BFD_RELOC_64
+             || reloc_type[0] == BFD_RELOC_CTOR
+             || reloc_type[0] == BFD_RELOC_MIPS_SUB
+             || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
+             || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
+             || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
+             || reloc_type[0] == BFD_RELOC_MIPS_REL16
+             || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
+             || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
+             || hi16_reloc_p (reloc_type[0])
+             || lo16_reloc_p (reloc_type[0])))
+       ip->fixp[0]->fx_no_overflow = 1;
 
-           default:
-             internalError ();
-           }
+      if (mips_relax.sequence)
+       {
+         if (mips_relax.first_fixup == 0)
+           mips_relax.first_fixup = ip->fixp[0];
        }
-      else if (*reloc_type < BFD_RELOC_UNUSED)
-       need_reloc:
+      else if (reloc_needs_lo_p (*reloc_type))
        {
-         reloc_howto_type *howto;
-         int i;
-
-         /* In a compound relocation, it is the final (outermost)
-            operator that determines the relocated field.  */
-         for (i = 1; i < 3; i++)
-           if (reloc_type[i] == BFD_RELOC_UNUSED)
-             break;
-
-         howto = bfd_reloc_type_lookup (stdoutput, reloc_type[i - 1]);
-         if (howto == NULL)
-           {
-             /* To reproduce this failure try assembling gas/testsuites/
-                gas/mips/mips16-intermix.s with a mips-ecoff targeted
-                assembler.  */
-             as_bad (_("Unsupported MIPS relocation number %d"), reloc_type[i - 1]);
-             howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_16);
-           }
-         
-         ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
-                                    bfd_get_reloc_size (howto),
-                                    address_expr,
-                                    reloc_type[0] == BFD_RELOC_16_PCREL_S2,
-                                    reloc_type[0]);
-
-         /* Tag symbols that have a R_MIPS16_26 relocation against them.  */
-         if (reloc_type[0] == BFD_RELOC_MIPS16_JMP
-             && ip->fixp[0]->fx_addsy)
-           *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
-
-         /* These relocations can have an addend that won't fit in
-            4 octets for 64bit assembly.  */
-         if (HAVE_64BIT_GPRS
-             && ! howto->partial_inplace
-             && (reloc_type[0] == BFD_RELOC_16
-                 || reloc_type[0] == BFD_RELOC_32
-                 || reloc_type[0] == BFD_RELOC_MIPS_JMP
-                 || reloc_type[0] == BFD_RELOC_GPREL16
-                 || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
-                 || reloc_type[0] == BFD_RELOC_GPREL32
-                 || reloc_type[0] == BFD_RELOC_64
-                 || reloc_type[0] == BFD_RELOC_CTOR
-                 || reloc_type[0] == BFD_RELOC_MIPS_SUB
-                 || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
-                 || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
-                 || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
-                 || reloc_type[0] == BFD_RELOC_MIPS_REL16
-                 || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
-                 || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
-                 || hi16_reloc_p (reloc_type[0])
-                 || lo16_reloc_p (reloc_type[0])))
-           ip->fixp[0]->fx_no_overflow = 1;
+         struct mips_hi_fixup *hi_fixup;
 
-         if (mips_relax.sequence)
-           {
-             if (mips_relax.first_fixup == 0)
-               mips_relax.first_fixup = ip->fixp[0];
-           }
-         else if (reloc_needs_lo_p (*reloc_type))
+         /* Reuse the last entry if it already has a matching %lo.  */
+         hi_fixup = mips_hi_fixup_list;
+         if (hi_fixup == 0
+             || !fixup_has_matching_lo_p (hi_fixup->fixp))
            {
-             struct mips_hi_fixup *hi_fixup;
-
-             /* Reuse the last entry if it already has a matching %lo.  */
-             hi_fixup = mips_hi_fixup_list;
-             if (hi_fixup == 0
-                 || !fixup_has_matching_lo_p (hi_fixup->fixp))
-               {
-                 hi_fixup = ((struct mips_hi_fixup *)
-                             xmalloc (sizeof (struct mips_hi_fixup)));
-                 hi_fixup->next = mips_hi_fixup_list;
-                 mips_hi_fixup_list = hi_fixup;
-               }
-             hi_fixup->fixp = ip->fixp[0];
-             hi_fixup->seg = now_seg;
+             hi_fixup = ((struct mips_hi_fixup *)
+                         xmalloc (sizeof (struct mips_hi_fixup)));
+             hi_fixup->next = mips_hi_fixup_list;
+             mips_hi_fixup_list = hi_fixup;
            }
+         hi_fixup->fixp = ip->fixp[0];
+         hi_fixup->seg = now_seg;
+       }
 
-         /* Add fixups for the second and third relocations, if given.
-            Note that the ABI allows the second relocation to be
-            against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC.  At the
-            moment we only use RSS_UNDEF, but we could add support
-            for the others if it ever becomes necessary.  */
-         for (i = 1; i < 3; i++)
-           if (reloc_type[i] != BFD_RELOC_UNUSED)
-             {
-               ip->fixp[i] = fix_new (ip->frag, ip->where,
-                                      ip->fixp[0]->fx_size, NULL, 0,
-                                      FALSE, reloc_type[i]);
+      /* Add fixups for the second and third relocations, if given.
+        Note that the ABI allows the second relocation to be
+        against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC.  At the
+        moment we only use RSS_UNDEF, but we could add support
+        for the others if it ever becomes necessary.  */
+      for (i = 1; i < 3; i++)
+       if (reloc_type[i] != BFD_RELOC_UNUSED)
+         {
+           ip->fixp[i] = fix_new (ip->frag, ip->where,
+                                  ip->fixp[0]->fx_size, NULL, 0,
+                                  FALSE, final_type[i]);
 
-               /* Use fx_tcbit to mark compound relocs.  */
-               ip->fixp[0]->fx_tcbit = 1;
-               ip->fixp[i]->fx_tcbit = 1;
-             }
-       }
+           /* Use fx_tcbit to mark compound relocs.  */
+           ip->fixp[0]->fx_tcbit = 1;
+           ip->fixp[i]->fx_tcbit = 1;
+         }
     }
   install_insn (ip);
 
   /* Update the register mask information.  */
-  if (! mips_opts.mips16)
-    {
-      if (pinfo & INSN_WRITE_GPR_D)
-       mips_gprmask |= 1 << EXTRACT_OPERAND (RD, *ip);
-      if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0)
-       mips_gprmask |= 1 << EXTRACT_OPERAND (RT, *ip);
-      if (pinfo & INSN_READ_GPR_S)
-       mips_gprmask |= 1 << EXTRACT_OPERAND (RS, *ip);
-      if (pinfo & INSN_WRITE_GPR_31)
-       mips_gprmask |= 1 << RA;
-      if (pinfo & INSN_WRITE_FPR_D)
-       mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FD, *ip);
-      if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0)
-       mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FS, *ip);
-      if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0)
-       mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FT, *ip);
-      if ((pinfo & INSN_READ_FPR_R) != 0)
-       mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FR, *ip);
-      if (pinfo & INSN_COP)
-       {
-         /* We don't keep enough information to sort these cases out.
-            The itbl support does keep this information however, although
-            we currently don't support itbl fprmats as part of the cop
-            instruction.  May want to add this support in the future.  */
-       }
-      /* Never set the bit for $0, which is always zero.  */
-      mips_gprmask &= ~1 << 0;
-    }
-  else
+  mips_gprmask |= gpr_read_mask (ip) | gpr_write_mask (ip);
+  mips_cprmask[1] |= fpr_read_mask (ip) | fpr_write_mask (ip);
+
+  switch (method)
     {
-      if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X))
-       mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RX, *ip);
-      if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y))
-       mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RY, *ip);
-      if (pinfo & MIPS16_INSN_WRITE_Z)
-       mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RZ, *ip);
-      if (pinfo & (MIPS16_INSN_WRITE_T | MIPS16_INSN_READ_T))
-       mips_gprmask |= 1 << TREG;
-      if (pinfo & (MIPS16_INSN_WRITE_SP | MIPS16_INSN_READ_SP))
-       mips_gprmask |= 1 << SP;
-      if (pinfo & (MIPS16_INSN_WRITE_31 | MIPS16_INSN_READ_31))
-       mips_gprmask |= 1 << RA;
-      if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
-       mips_gprmask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
-      if (pinfo & MIPS16_INSN_READ_Z)
-       mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip);
-      if (pinfo & MIPS16_INSN_READ_GPR_X)
-       mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
-    }
+    case APPEND_ADD:
+      insert_into_history (0, 1, ip);
+      break;
 
-  if (mips_relax.sequence != 2 && !mips_opts.noreorder)
-    {
-      /* Filling the branch delay slot is more complex.  We try to
-        switch the branch with the previous instruction, which we can
-        do if the previous instruction does not set up a condition
-        that the branch tests and if the branch is not itself the
-        target of any branch.  */
-      if ((pinfo & INSN_UNCOND_BRANCH_DELAY)
-         || (pinfo & INSN_COND_BRANCH_DELAY))
-       {
-         if (mips_optimize < 2
-             /* If we have seen .set volatile or .set nomove, don't
-                optimize.  */
-             || mips_opts.nomove != 0
-             /* We can't swap if the previous instruction's position
-                is fixed.  */
-             || history[0].fixed_p
-             /* If the previous previous insn was in a .set
-                noreorder, we can't swap.  Actually, the MIPS
-                assembler will swap in this situation.  However, gcc
-                configured -with-gnu-as will generate code like
-                  .set noreorder
-                  lw   $4,XXX
-                  .set reorder
-                  INSN
-                  bne  $4,$0,foo
-                in which we can not swap the bne and INSN.  If gcc is
-                not configured -with-gnu-as, it does not output the
-                .set pseudo-ops.  */
-             || history[1].noreorder_p
-             /* If the branch is itself the target of a branch, we
-                can not swap.  We cheat on this; all we check for is
-                whether there is a label on this instruction.  If
-                there are any branches to anything other than a
-                label, users must use .set noreorder.  */
-             || si->label_list != NULL
-             /* If the previous instruction is in a variant frag
-                other than this branch's one, we cannot do the swap.
-                This does not apply to the mips16, which uses variant
-                frags for different purposes.  */
-             || (! mips_opts.mips16
-                 && prev_insn_frag_type == rs_machine_dependent)
-             /* Check for conflicts between the branch and the instructions
-                before the candidate delay slot.  */
-             || nops_for_insn (history + 1, ip) > 0
-             /* Check for conflicts between the swapped sequence and the
-                target of the branch.  */
-             || nops_for_sequence (2, history + 1, ip, history) > 0
-             /* We do not swap with a trap instruction, since it
-                complicates trap handlers to have the trap
-                instruction be in a delay slot.  */
-             || (prev_pinfo & INSN_TRAP)
-             /* If the branch reads a register that the previous
-                instruction sets, we can not swap.  */
-             || (! mips_opts.mips16
-                 && (prev_pinfo & INSN_WRITE_GPR_T)
-                 && insn_uses_reg (ip, EXTRACT_OPERAND (RT, history[0]),
-                                   MIPS_GR_REG))
-             || (! mips_opts.mips16
-                 && (prev_pinfo & INSN_WRITE_GPR_D)
-                 && insn_uses_reg (ip, EXTRACT_OPERAND (RD, history[0]),
-                                   MIPS_GR_REG))
-             || (mips_opts.mips16
-                 && (((prev_pinfo & MIPS16_INSN_WRITE_X)
-                      && (insn_uses_reg
-                          (ip, MIPS16_EXTRACT_OPERAND (RX, history[0]),
-                           MIPS16_REG)))
-                     || ((prev_pinfo & MIPS16_INSN_WRITE_Y)
-                         && (insn_uses_reg
-                             (ip, MIPS16_EXTRACT_OPERAND (RY, history[0]),
-                              MIPS16_REG)))
-                     || ((prev_pinfo & MIPS16_INSN_WRITE_Z)
-                         && (insn_uses_reg
-                             (ip, MIPS16_EXTRACT_OPERAND (RZ, history[0]),
-                              MIPS16_REG)))
-                     || ((prev_pinfo & MIPS16_INSN_WRITE_T)
-                         && insn_uses_reg (ip, TREG, MIPS_GR_REG))
-                     || ((prev_pinfo & MIPS16_INSN_WRITE_31)
-                         && insn_uses_reg (ip, RA, MIPS_GR_REG))
-                     || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
-                         && insn_uses_reg (ip,
-                                           MIPS16OP_EXTRACT_REG32R
-                                             (history[0].insn_opcode),
-                                           MIPS_GR_REG))))
-             /* If the branch writes a register that the previous
-                instruction sets, we can not swap (we know that
-                branches write only to RD or to $31).  */
-             || (! mips_opts.mips16
-                 && (prev_pinfo & INSN_WRITE_GPR_T)
-                 && (((pinfo & INSN_WRITE_GPR_D)
-                      && (EXTRACT_OPERAND (RT, history[0])
-                          == EXTRACT_OPERAND (RD, *ip)))
-                     || ((pinfo & INSN_WRITE_GPR_31)
-                         && EXTRACT_OPERAND (RT, history[0]) == RA)))
-             || (! mips_opts.mips16
-                 && (prev_pinfo & INSN_WRITE_GPR_D)
-                 && (((pinfo & INSN_WRITE_GPR_D)
-                      && (EXTRACT_OPERAND (RD, history[0])
-                          == EXTRACT_OPERAND (RD, *ip)))
-                     || ((pinfo & INSN_WRITE_GPR_31)
-                         && EXTRACT_OPERAND (RD, history[0]) == RA)))
-             || (mips_opts.mips16
-                 && (pinfo & MIPS16_INSN_WRITE_31)
-                 && ((prev_pinfo & MIPS16_INSN_WRITE_31)
-                     || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
-                         && (MIPS16OP_EXTRACT_REG32R (history[0].insn_opcode)
-                             == RA))))
-             /* If the branch writes a register that the previous
-                instruction reads, we can not swap (we know that
-                branches only write to RD or to $31).  */
-             || (! mips_opts.mips16
-                 && (pinfo & INSN_WRITE_GPR_D)
-                 && insn_uses_reg (&history[0],
-                                   EXTRACT_OPERAND (RD, *ip),
-                                   MIPS_GR_REG))
-             || (! mips_opts.mips16
-                 && (pinfo & INSN_WRITE_GPR_31)
-                 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
-             || (mips_opts.mips16
-                 && (pinfo & MIPS16_INSN_WRITE_31)
-                 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
-             /* If one instruction sets a condition code and the
-                 other one uses a condition code, we can not swap.  */
-             || ((pinfo & INSN_READ_COND_CODE)
-                 && (prev_pinfo & INSN_WRITE_COND_CODE))
-             || ((pinfo & INSN_WRITE_COND_CODE)
-                 && (prev_pinfo & INSN_READ_COND_CODE))
-             /* If the previous instruction uses the PC, we can not
-                 swap.  */
-             || (mips_opts.mips16
-                 && (prev_pinfo & MIPS16_INSN_READ_PC))
-             /* If the previous instruction had a fixup in mips16
-                 mode, we can not swap.  This normally means that the
-                 previous instruction was a 4 byte branch anyhow.  */
-             || (mips_opts.mips16 && history[0].fixp[0])
-             /* If the previous instruction is a sync, sync.l, or
-                sync.p, we can not swap.  */
-             || (prev_pinfo & INSN_SYNC)
-             /* If the previous instruction is an ERET or
-                DERET, avoid the swap.  */
-              || (history[0].insn_opcode == INSN_ERET)
-              || (history[0].insn_opcode == INSN_DERET))
-           {
-             if (mips_opts.mips16
-                 && (pinfo & INSN_UNCOND_BRANCH_DELAY)
-                 && (pinfo & (MIPS16_INSN_READ_X | MIPS16_INSN_READ_31))
-                 && ISA_SUPPORTS_MIPS16E)
-               {
-                 /* Convert MIPS16 jr/jalr into a "compact" jump.  */
-                 ip->insn_opcode |= 0x0080;
-                 install_insn (ip);
-                 insert_into_history (0, 1, ip);
-               } 
-             else
-               {
-                 /* We could do even better for unconditional branches to
-                    portions of this object file; we could pick up the
-                    instruction at the destination, put it in the delay
-                    slot, and bump the destination address.  */
-                 insert_into_history (0, 1, ip);
-                 emit_nop ();
-               }
-               
-             if (mips_relax.sequence)
-               mips_relax.sizes[mips_relax.sequence - 1] += 4;
-           }
-         else
-           {
-             /* It looks like we can actually do the swap.  */
-             struct mips_cl_insn delay = history[0];
-             if (mips_opts.mips16)
-               {
-                 know (delay.frag == ip->frag);
-                  move_insn (ip, delay.frag, delay.where);
-                 move_insn (&delay, ip->frag, ip->where + insn_length (ip));
-               }
-             else if (relaxed_branch)
-               {
-                 /* Add the delay slot instruction to the end of the
-                    current frag and shrink the fixed part of the
-                    original frag.  If the branch occupies the tail of
-                    the latter, move it backwards to cover the gap.  */
-                 delay.frag->fr_fix -= 4;
-                 if (delay.frag == ip->frag)
-                   move_insn (ip, ip->frag, ip->where - 4);
-                 add_fixed_insn (&delay);
-               }
-             else
-               {
-                 move_insn (&delay, ip->frag, ip->where);
-                 move_insn (ip, history[0].frag, history[0].where);
-               }
-             history[0] = *ip;
-             delay.fixed_p = 1;
-             insert_into_history (0, 1, &delay);
-           }
+    case APPEND_ADD_WITH_NOP:
+      {
+       struct mips_cl_insn *nop;
 
-         /* If that was an unconditional branch, forget the previous
-            insn information.  */
-         if (pinfo & INSN_UNCOND_BRANCH_DELAY)
-           {
-             mips_no_prev_insn ();
-           }
-       }
-      else if (pinfo & INSN_COND_BRANCH_LIKELY)
-       {
-         /* We don't yet optimize a branch likely.  What we should do
-            is look at the target, copy the instruction found there
-            into the delay slot, and increment the branch to jump to
-            the next instruction.  */
-         insert_into_history (0, 1, ip);
-         emit_nop ();
-       }
-      else
        insert_into_history (0, 1, ip);
+       nop = get_delay_slot_nop (ip);
+       add_fixed_insn (nop);
+       insert_into_history (0, 1, nop);
+       if (mips_relax.sequence)
+         mips_relax.sizes[mips_relax.sequence - 1] += insn_length (nop);
+      }
+      break;
+
+    case APPEND_ADD_COMPACT:
+      /* Convert MIPS16 jr/jalr into a "compact" jump.  */
+      gas_assert (mips_opts.mips16);
+      ip->insn_opcode |= 0x0080;
+      find_altered_mips16_opcode (ip);
+      install_insn (ip);
+      insert_into_history (0, 1, ip);
+      break;
+
+    case APPEND_SWAP:
+      {
+       struct mips_cl_insn delay = history[0];
+       if (mips_opts.mips16)
+         {
+           know (delay.frag == ip->frag);
+           move_insn (ip, delay.frag, delay.where);
+           move_insn (&delay, ip->frag, ip->where + insn_length (ip));
+         }
+       else if (relaxed_branch)
+         {
+           /* Add the delay slot instruction to the end of the
+              current frag and shrink the fixed part of the
+              original frag.  If the branch occupies the tail of
+              the latter, move it backwards to cover the gap.  */
+           delay.frag->fr_fix -= branch_disp;
+           if (delay.frag == ip->frag)
+             move_insn (ip, ip->frag, ip->where - branch_disp);
+           add_fixed_insn (&delay);
+         }
+       else
+         {
+           move_insn (&delay, ip->frag,
+                      ip->where - branch_disp + insn_length (ip));
+           move_insn (ip, history[0].frag, history[0].where);
+         }
+       history[0] = *ip;
+       delay.fixed_p = 1;
+       insert_into_history (0, 1, &delay);
+      }
+      break;
+    }
+
+  /* If we have just completed an unconditional branch, clear the history.  */
+  if ((delayed_branch_p (&history[1]) && uncond_branch_p (&history[1]))
+      || (compact_branch_p (&history[0]) && uncond_branch_p (&history[0])))
+    mips_no_prev_insn ();
+
+  /* We need to emit a label at the end of branch-likely macros.  */
+  if (emit_branch_likely_macro)
+    {
+      emit_branch_likely_macro = FALSE;
+      micromips_add_label ();
     }
-  else
-    insert_into_history (0, 1, ip);
 
   /* We just output an insn, so the next one doesn't have a label.  */
   mips_clear_insn_labels ();
@@ -3445,12 +4545,12 @@ mips_emit_delays (void)
 {
   if (! mips_opts.noreorder)
     {
-      int nops = nops_for_insn (history, NULL);
+      int nops = nops_for_insn (0, history, NULL);
       if (nops > 0)
        {
          while (nops-- > 0)
            add_fixed_insn (NOP_INSN);
-         mips_move_labels ();
+         mips_move_text_labels ();
        }
     }
   mips_no_prev_insn ();
@@ -3473,14 +4573,14 @@ start_noreorder (void)
       /* Insert any nops that might be needed between the .set noreorder
         block and the previous instructions.  We will later remove any
         nops that turn out not to be needed.  */
-      nops = nops_for_insn (history, NULL);
+      nops = nops_for_insn (0, history, NULL);
       if (nops > 0)
        {
          if (mips_optimize != 0)
            {
              /* Record the frag which holds the nop instructions, so
                  that we can remove them if we don't need them.  */
-             frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4);
+             frag_grow (nops * NOP_INSN_SIZE);
              prev_nop_frag = frag_now;
              prev_nop_frag_holds = nops;
              prev_nop_frag_required = 0;
@@ -3494,9 +4594,9 @@ start_noreorder (void)
             decrease the size of prev_nop_frag.  */
          frag_wane (frag_now);
          frag_new (0);
-         mips_move_labels ();
+         mips_move_text_labels ();
        }
-      mips16_mark_labels ();
+      mips_mark_labels ();
       mips_clear_insn_labels ();
     }
   mips_opts.noreorder++;
@@ -3508,14 +4608,13 @@ start_noreorder (void)
 static void
 end_noreorder (void)
 {
-
   mips_opts.noreorder--;
   if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
     {
       /* Commit to inserting prev_nop_frag_required nops and go back to
         handling nop insertion the .set reorder way.  */
       prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
-                               * (mips_opts.mips16 ? 2 : 4));
+                               * NOP_INSN_SIZE);
       insert_into_history (prev_nop_frag_since,
                           prev_nop_frag_required, NOP_INSN);
       prev_nop_frag = NULL;
@@ -3528,16 +4627,32 @@ static void
 macro_start (void)
 {
   memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
+  memset (&mips_macro_warning.first_insn_sizes, 0,
+         sizeof (mips_macro_warning.first_insn_sizes));
+  memset (&mips_macro_warning.insns, 0, sizeof (mips_macro_warning.insns));
   mips_macro_warning.delay_slot_p = (mips_opts.noreorder
-                                    && (history[0].insn_mo->pinfo
-                                        & (INSN_UNCOND_BRANCH_DELAY
-                                           | INSN_COND_BRANCH_DELAY
-                                           | INSN_COND_BRANCH_LIKELY)) != 0);
+                                    && delayed_branch_p (&history[0]));
+  switch (history[0].insn_mo->pinfo2
+         & (INSN2_BRANCH_DELAY_32BIT | INSN2_BRANCH_DELAY_16BIT))
+    {
+    case INSN2_BRANCH_DELAY_32BIT:
+      mips_macro_warning.delay_slot_length = 4;
+      break;
+    case INSN2_BRANCH_DELAY_16BIT:
+      mips_macro_warning.delay_slot_length = 2;
+      break;
+    default:
+      mips_macro_warning.delay_slot_length = 0;
+      break;
+    }
+  mips_macro_warning.first_frag = NULL;
 }
 
-/* Given that a macro is longer than 4 bytes, return the appropriate warning
-   for it.  Return null if no warning is needed.  SUBTYPE is a bitmask of
-   RELAX_DELAY_SLOT and RELAX_NOMACRO.  */
+/* Given that a macro is longer than one instruction or of the wrong size,
+   return the appropriate warning for it.  Return null if no warning is
+   needed.  SUBTYPE is a bitmask of RELAX_DELAY_SLOT, RELAX_DELAY_SLOT_16BIT,
+   RELAX_DELAY_SLOT_SIZE_FIRST, RELAX_DELAY_SLOT_SIZE_SECOND,
+   and RELAX_NOMACRO.  */
 
 static const char *
 macro_warning (relax_substateT subtype)
@@ -3547,6 +4662,13 @@ macro_warning (relax_substateT subtype)
             " in a branch delay slot");
   else if (subtype & RELAX_NOMACRO)
     return _("Macro instruction expanded into multiple instructions");
+  else if (subtype & (RELAX_DELAY_SLOT_SIZE_FIRST
+                     | RELAX_DELAY_SLOT_SIZE_SECOND))
+    return ((subtype & RELAX_DELAY_SLOT_16BIT)
+           ? _("Macro instruction expanded into a wrong size instruction"
+               " in a 16-bit branch delay slot")
+           : _("Macro instruction expanded into a wrong size instruction"
+               " in a 32-bit branch delay slot"));
   else
     return 0;
 }
@@ -3556,37 +4678,92 @@ macro_warning (relax_substateT subtype)
 static void
 macro_end (void)
 {
-  if (mips_macro_warning.sizes[0] > 4 || mips_macro_warning.sizes[1] > 4)
+  /* Relaxation warning flags.  */
+  relax_substateT subtype = 0;
+
+  /* Check delay slot size requirements.  */
+  if (mips_macro_warning.delay_slot_length == 2)
+    subtype |= RELAX_DELAY_SLOT_16BIT;
+  if (mips_macro_warning.delay_slot_length != 0)
     {
-      relax_substateT subtype;
+      if (mips_macro_warning.delay_slot_length
+         != mips_macro_warning.first_insn_sizes[0])
+       subtype |= RELAX_DELAY_SLOT_SIZE_FIRST;
+      if (mips_macro_warning.delay_slot_length
+         != mips_macro_warning.first_insn_sizes[1])
+       subtype |= RELAX_DELAY_SLOT_SIZE_SECOND;
+    }
 
-      /* Set up the relaxation warning flags.  */
-      subtype = 0;
-      if (mips_macro_warning.sizes[1] > mips_macro_warning.sizes[0])
+  /* Check instruction count requirements.  */
+  if (mips_macro_warning.insns[0] > 1 || mips_macro_warning.insns[1] > 1)
+    {
+      if (mips_macro_warning.insns[1] > mips_macro_warning.insns[0])
        subtype |= RELAX_SECOND_LONGER;
       if (mips_opts.warn_about_macros)
        subtype |= RELAX_NOMACRO;
       if (mips_macro_warning.delay_slot_p)
        subtype |= RELAX_DELAY_SLOT;
+    }
 
-      if (mips_macro_warning.sizes[0] > 4 && mips_macro_warning.sizes[1] > 4)
-       {
-         /* Either the macro has a single implementation or both
-            implementations are longer than 4 bytes.  Emit the
-            warning now.  */
-         const char *msg = macro_warning (subtype);
-         if (msg != 0)
-           as_warn ("%s", msg);
-       }
-      else
-       {
-         /* One implementation might need a warning but the other
-            definitely doesn't.  */
-         mips_macro_warning.first_frag->fr_subtype |= subtype;
-       }
+  /* If both alternatives fail to fill a delay slot correctly,
+     emit the warning now.  */
+  if ((subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0
+      && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0)
+    {
+      relax_substateT s;
+      const char *msg;
+
+      s = subtype & (RELAX_DELAY_SLOT_16BIT
+                    | RELAX_DELAY_SLOT_SIZE_FIRST
+                    | RELAX_DELAY_SLOT_SIZE_SECOND);
+      msg = macro_warning (s);
+      if (msg != NULL)
+       as_warn ("%s", msg);
+      subtype &= ~s;
+    }
+
+  /* If both implementations are longer than 1 instruction, then emit the
+     warning now.  */
+  if (mips_macro_warning.insns[0] > 1 && mips_macro_warning.insns[1] > 1)
+    {
+      relax_substateT s;
+      const char *msg;
+
+      s = subtype & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT);
+      msg = macro_warning (s);
+      if (msg != NULL)
+       as_warn ("%s", msg);
+      subtype &= ~s;
     }
+
+  /* If any flags still set, then one implementation might need a warning
+     and the other either will need one of a different kind or none at all.
+     Pass any remaining flags over to relaxation.  */
+  if (mips_macro_warning.first_frag != NULL)
+    mips_macro_warning.first_frag->fr_subtype |= subtype;
 }
 
+/* Instruction operand formats used in macros that vary between
+   standard MIPS and microMIPS code.  */
+
+static const char * const brk_fmt[2] = { "c", "mF" };
+static const char * const cop12_fmt[2] = { "E,o(b)", "E,~(b)" };
+static const char * const jalr_fmt[2] = { "d,s", "t,s" };
+static const char * const lui_fmt[2] = { "t,u", "s,u" };
+static const char * const mem12_fmt[2] = { "t,o(b)", "t,~(b)" };
+static const char * const mfhl_fmt[2] = { "d", "mj" };
+static const char * const shft_fmt[2] = { "d,w,<", "t,r,<" };
+static const char * const trap_fmt[2] = { "s,t,q", "s,t,|" };
+
+#define BRK_FMT (brk_fmt[mips_opts.micromips])
+#define COP12_FMT (cop12_fmt[mips_opts.micromips])
+#define JALR_FMT (jalr_fmt[mips_opts.micromips])
+#define LUI_FMT (lui_fmt[mips_opts.micromips])
+#define MEM12_FMT (mem12_fmt[mips_opts.micromips])
+#define MFHL_FMT (mfhl_fmt[mips_opts.micromips])
+#define SHFT_FMT (shft_fmt[mips_opts.micromips])
+#define TRAP_FMT (trap_fmt[mips_opts.micromips])
+
 /* Read a macro's relocation codes from *ARGS and store them in *R.
    The first argument in *ARGS will be either the code for a single
    relocation or -1 followed by the three codes that make up a
@@ -3613,9 +4790,11 @@ macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
 static void
 macro_build (expressionS *ep, const char *name, const char *fmt, ...)
 {
-  const struct mips_opcode *mo;
-  struct mips_cl_insn insn;
+  const struct mips_opcode *mo = NULL;
   bfd_reloc_code_real_type r[3];
+  const struct mips_opcode *amo;
+  struct hash_control *hash;
+  struct mips_cl_insn insn;
   va_list args;
 
   va_start (args, fmt);
@@ -3630,24 +4809,41 @@ macro_build (expressionS *ep, const char *name, const char *fmt, ...)
   r[0] = BFD_RELOC_UNUSED;
   r[1] = BFD_RELOC_UNUSED;
   r[2] = BFD_RELOC_UNUSED;
-  mo = (struct mips_opcode *) hash_find (op_hash, name);
-  gas_assert (mo);
-  gas_assert (strcmp (name, mo->name) == 0);
+  hash = mips_opts.micromips ? micromips_op_hash : op_hash;
+  amo = (struct mips_opcode *) hash_find (hash, name);
+  gas_assert (amo);
+  gas_assert (strcmp (name, amo->name) == 0);
 
-  while (1)
+  do
     {
       /* Search until we get a match for NAME.  It is assumed here that
-        macros will never generate MDMX, MIPS-3D, or MT instructions.  */
-      if (strcmp (fmt, mo->args) == 0
-         && mo->pinfo != INSN_MACRO
-         && is_opcode_valid (mo))
-       break;
+        macros will never generate MDMX, MIPS-3D, or MT instructions.
+        We try to match an instruction that fulfils the branch delay
+        slot instruction length requirement (if any) of the previous
+        instruction.  While doing this we record the first instruction
+        seen that matches all the other conditions and use it anyway
+        if the requirement cannot be met; we will issue an appropriate
+        warning later on.  */
+      if (strcmp (fmt, amo->args) == 0
+         && amo->pinfo != INSN_MACRO
+         && is_opcode_valid (amo)
+         && is_size_valid (amo))
+       {
+         if (is_delay_slot_valid (amo))
+           {
+             mo = amo;
+             break;
+           }
+         else if (!mo)
+           mo = amo;
+       }
 
-      ++mo;
-      gas_assert (mo->name);
-      gas_assert (strcmp (name, mo->name) == 0);
+      ++amo;
+      gas_assert (amo->name);
     }
+  while (strcmp (name, amo->name) == 0);
 
+  gas_assert (mo);
   create_insn (&insn, mo);
   for (;;)
     {
@@ -3666,7 +4862,8 @@ macro_build (expressionS *ep, const char *name, const char *fmt, ...)
            {
            case 'A':
            case 'E':
-             INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
+             INSERT_OPERAND (mips_opts.micromips,
+                             EXTLSB, insn, va_arg (args, int));
              continue;
 
            case 'B':
@@ -3675,7 +4872,8 @@ macro_build (expressionS *ep, const char *name, const char *fmt, ...)
                 in MSB form.  (When handling the instruction in the
                 non-macro case, these arguments are sizes from which
                 MSB values must be calculated.)  */
-             INSERT_OPERAND (INSMSB, insn, va_arg (args, int));
+             INSERT_OPERAND (mips_opts.micromips,
+                             INSMSB, insn, va_arg (args, int));
              continue;
 
            case 'C':
@@ -3685,11 +4883,13 @@ macro_build (expressionS *ep, const char *name, const char *fmt, ...)
                 in MSBD form.  (When handling the instruction in the
                 non-macro case, these arguments are sizes from which
                 MSBD values must be calculated.)  */
-             INSERT_OPERAND (EXTMSBD, insn, va_arg (args, int));
+             INSERT_OPERAND (mips_opts.micromips,
+                             EXTMSBD, insn, va_arg (args, int));
              continue;
 
            case 'Q':
-             INSERT_OPERAND (SEQI, insn, va_arg (args, int));
+             gas_assert (!mips_opts.micromips);
+             INSERT_OPERAND (0, SEQI, insn, va_arg (args, int));
              continue;
 
            default:
@@ -3698,103 +4898,118 @@ macro_build (expressionS *ep, const char *name, const char *fmt, ...)
          continue;
 
        case '2':
-         INSERT_OPERAND (BP, insn, va_arg (args, int));
+         gas_assert (!mips_opts.micromips);
+         INSERT_OPERAND (0, BP, insn, va_arg (args, int));
          continue;
 
+       case 'n':
+         gas_assert (mips_opts.micromips);
        case 't':
        case 'w':
        case 'E':
-         INSERT_OPERAND (RT, insn, va_arg (args, int));
+         INSERT_OPERAND (mips_opts.micromips, RT, insn, va_arg (args, int));
          continue;
 
        case 'c':
-         INSERT_OPERAND (CODE, insn, va_arg (args, int));
+         gas_assert (!mips_opts.micromips);
+         INSERT_OPERAND (0, CODE, insn, va_arg (args, int));
          continue;
 
-       case 'T':
        case 'W':
-         INSERT_OPERAND (FT, insn, va_arg (args, int));
+         gas_assert (!mips_opts.micromips);
+       case 'T':
+         INSERT_OPERAND (mips_opts.micromips, FT, insn, va_arg (args, int));
          continue;
 
-       case 'd':
        case 'G':
+         if (mips_opts.micromips)
+           INSERT_OPERAND (1, RS, insn, va_arg (args, int));
+         else
+           INSERT_OPERAND (0, RD, insn, va_arg (args, int));
+         continue;
+
        case 'K':
-         INSERT_OPERAND (RD, insn, va_arg (args, int));
+         gas_assert (!mips_opts.micromips);
+       case 'd':
+         INSERT_OPERAND (mips_opts.micromips, RD, insn, va_arg (args, int));
          continue;
 
        case 'U':
+         gas_assert (!mips_opts.micromips);
          {
            int tmp = va_arg (args, int);
 
-           INSERT_OPERAND (RT, insn, tmp);
-           INSERT_OPERAND (RD, insn, tmp);
-           continue;
+           INSERT_OPERAND (0, RT, insn, tmp);
+           INSERT_OPERAND (0, RD, insn, tmp);
          }
+         continue;
 
        case 'V':
        case 'S':
-         INSERT_OPERAND (FS, insn, va_arg (args, int));
+         gas_assert (!mips_opts.micromips);
+         INSERT_OPERAND (0, FS, insn, va_arg (args, int));
          continue;
 
        case 'z':
          continue;
 
        case '<':
-         INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
+         INSERT_OPERAND (mips_opts.micromips,
+                         SHAMT, insn, va_arg (args, int));
          continue;
 
        case 'D':
-         INSERT_OPERAND (FD, insn, va_arg (args, int));
+         gas_assert (!mips_opts.micromips);
+         INSERT_OPERAND (0, FD, insn, va_arg (args, int));
          continue;
 
        case 'B':
-         INSERT_OPERAND (CODE20, insn, va_arg (args, int));
+         gas_assert (!mips_opts.micromips);
+         INSERT_OPERAND (0, CODE20, insn, va_arg (args, int));
          continue;
 
        case 'J':
-         INSERT_OPERAND (CODE19, insn, va_arg (args, int));
+         gas_assert (!mips_opts.micromips);
+         INSERT_OPERAND (0, CODE19, insn, va_arg (args, int));
          continue;
 
        case 'q':
-         INSERT_OPERAND (CODE2, insn, va_arg (args, int));
+         gas_assert (!mips_opts.micromips);
+         INSERT_OPERAND (0, CODE2, insn, va_arg (args, int));
          continue;
 
        case 'b':
        case 's':
        case 'r':
        case 'v':
-         INSERT_OPERAND (RS, insn, va_arg (args, int));
+         INSERT_OPERAND (mips_opts.micromips, RS, insn, va_arg (args, int));
          continue;
 
        case 'i':
        case 'j':
-       case 'o':
          macro_read_relocs (&args, r);
          gas_assert (*r == BFD_RELOC_GPREL16
-                 || *r == BFD_RELOC_MIPS_LITERAL
-                 || *r == BFD_RELOC_MIPS_HIGHER
-                 || *r == BFD_RELOC_HI16_S
-                 || *r == BFD_RELOC_LO16
-                 || *r == BFD_RELOC_MIPS_GOT16
-                 || *r == BFD_RELOC_MIPS_CALL16
-                 || *r == BFD_RELOC_MIPS_GOT_DISP
-                 || *r == BFD_RELOC_MIPS_GOT_PAGE
-                 || *r == BFD_RELOC_MIPS_GOT_OFST
-                 || *r == BFD_RELOC_MIPS_GOT_LO16
-                 || *r == BFD_RELOC_MIPS_CALL_LO16);
+                     || *r == BFD_RELOC_MIPS_HIGHER
+                     || *r == BFD_RELOC_HI16_S
+                     || *r == BFD_RELOC_LO16
+                     || *r == BFD_RELOC_MIPS_GOT_OFST);
+         continue;
+
+       case 'o':
+         macro_read_relocs (&args, r);
          continue;
 
        case 'u':
          macro_read_relocs (&args, r);
          gas_assert (ep != NULL
-                 && (ep->X_op == O_constant
-                     || (ep->X_op == O_symbol
-                         && (*r == BFD_RELOC_MIPS_HIGHEST
-                             || *r == BFD_RELOC_HI16_S
-                             || *r == BFD_RELOC_HI16
-                             || *r == BFD_RELOC_GPREL16
-                             || *r == BFD_RELOC_MIPS_GOT_HI16
-                             || *r == BFD_RELOC_MIPS_CALL_HI16))));
+                     && (ep->X_op == O_constant
+                         || (ep->X_op == O_symbol
+                             && (*r == BFD_RELOC_MIPS_HIGHEST
+                                 || *r == BFD_RELOC_HI16_S
+                                 || *r == BFD_RELOC_HI16
+                                 || *r == BFD_RELOC_GPREL16
+                                 || *r == BFD_RELOC_MIPS_GOT_HI16
+                                 || *r == BFD_RELOC_MIPS_CALL_HI16))));
          continue;
 
        case 'p':
@@ -3809,6 +5024,10 @@ macro_build (expressionS *ep, const char *name, const char *fmt, ...)
           */
          if (ep->X_op == O_constant)
            {
+             /* For microMIPS we always use relocations for branches.
+                So we should not resolve immediate values.  */
+             gas_assert (!mips_opts.micromips);
+
              if ((ep->X_add_number & 3) != 0)
                as_bad (_("branch to misaligned address (0x%lx)"),
                        (unsigned long) ep->X_add_number);
@@ -3828,11 +5047,59 @@ macro_build (expressionS *ep, const char *name, const char *fmt, ...)
          continue;
 
        case 'C':
-         INSERT_OPERAND (COPZ, insn, va_arg (args, unsigned long));
+         gas_assert (!mips_opts.micromips);
+         INSERT_OPERAND (0, COPZ, insn, va_arg (args, unsigned long));
          continue;
 
        case 'k':
-         INSERT_OPERAND (CACHE, insn, va_arg (args, unsigned long));
+         INSERT_OPERAND (mips_opts.micromips,
+                         CACHE, insn, va_arg (args, unsigned long));
+         continue;
+
+       case '|':
+         gas_assert (mips_opts.micromips);
+         INSERT_OPERAND (1, TRAP, insn, va_arg (args, int));
+         continue;
+
+       case '.':
+         gas_assert (mips_opts.micromips);
+         INSERT_OPERAND (1, OFFSET10, insn, va_arg (args, int));
+         continue;
+
+       case '\\':
+         INSERT_OPERAND (mips_opts.micromips,
+                         3BITPOS, insn, va_arg (args, unsigned int));
+         continue;
+
+       case '~':
+         INSERT_OPERAND (mips_opts.micromips,
+                         OFFSET12, insn, va_arg (args, unsigned long));
+         continue;
+
+       case 'N':
+         gas_assert (mips_opts.micromips);
+         INSERT_OPERAND (1, BCC, insn, va_arg (args, int));
+         continue;
+
+       case 'm':       /* Opcode extension character.  */
+         gas_assert (mips_opts.micromips);
+         switch (*fmt++)
+           {
+           case 'j':
+             INSERT_OPERAND (1, MJ, insn, va_arg (args, int));
+             break;
+
+           case 'p':
+             INSERT_OPERAND (1, MP, insn, va_arg (args, int));
+             break;
+
+           case 'F':
+             INSERT_OPERAND (1, IMMF, insn, va_arg (args, int));
+             break;
+
+           default:
+             internalError ();
+           }
          continue;
 
        default:
@@ -3843,7 +5110,7 @@ macro_build (expressionS *ep, const char *name, const char *fmt, ...)
   va_end (args);
   gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
 
-  append_insn (&insn, ep, r);
+  append_insn (&insn, ep, r, TRUE);
 }
 
 static void
@@ -3962,7 +5229,7 @@ mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
 
   gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
 
-  append_insn (&insn, ep, r);
+  append_insn (&insn, ep, r, TRUE);
 }
 
 /*
@@ -3997,8 +5264,12 @@ normalize_address_expr (expressionS *ex)
  * function.  This occurs in NewABI PIC code.
  */
 static void
-macro_build_jalr (expressionS *ep)
+macro_build_jalr (expressionS *ep, int cprestore)
 {
+  static const bfd_reloc_code_real_type jalr_relocs[2]
+    = { BFD_RELOC_MIPS_JALR, BFD_RELOC_MICROMIPS_JALR };
+  bfd_reloc_code_real_type jalr_reloc = jalr_relocs[mips_opts.micromips];
+  const char *jalr;
   char *f = NULL;
 
   if (MIPS_JALR_HINT_P (ep))
@@ -4006,10 +5277,18 @@ macro_build_jalr (expressionS *ep)
       frag_grow (8);
       f = frag_more (0);
     }
-  macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
+  if (mips_opts.micromips)
+    {
+      jalr = mips_opts.noreorder && !cprestore ? "jalr" : "jalrs";
+      if (MIPS_JALR_HINT_P (ep))
+       macro_build (NULL, jalr, "t,s", RA, PIC_CALL_REG);
+      else
+       macro_build (NULL, jalr, "mj", PIC_CALL_REG);
+    }
+  else
+    macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
   if (MIPS_JALR_HINT_P (ep))
-    fix_new_exp (frag_now, f - frag_now->fr_literal,
-                4, ep, FALSE, BFD_RELOC_MIPS_JALR);
+    fix_new_exp (frag_now, f - frag_now->fr_literal, 4, ep, FALSE, jalr_reloc);
 }
 
 /*
@@ -4018,26 +5297,9 @@ macro_build_jalr (expressionS *ep)
 static void
 macro_build_lui (expressionS *ep, int regnum)
 {
-  expressionS high_expr;
-  const struct mips_opcode *mo;
-  struct mips_cl_insn insn;
-  bfd_reloc_code_real_type r[3]
-    = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
-  const char *name = "lui";
-  const char *fmt = "t,u";
-
   gas_assert (! mips_opts.mips16);
 
-  high_expr = *ep;
-
-  if (high_expr.X_op == O_constant)
-    {
-      /* We can compute the instruction now without a relocation entry.  */
-      high_expr.X_add_number = ((high_expr.X_add_number + 0x8000)
-                               >> 16) & 0xffff;
-      *r = BFD_RELOC_UNUSED;
-    }
-  else
+  if (ep->X_op != O_constant)
     {
       gas_assert (ep->X_op == O_symbol);
       /* _gp_disp is a special case, used from s_cpload.
@@ -4048,23 +5310,9 @@ macro_build_lui (expressionS *ep, int regnum)
              || (! mips_in_shared
                  && strcmp (S_GET_NAME (ep->X_add_symbol),
                              "__gnu_local_gp") == 0));
-      *r = BFD_RELOC_HI16_S;
     }
 
-  mo = hash_find (op_hash, name);
-  gas_assert (strcmp (name, mo->name) == 0);
-  gas_assert (strcmp (fmt, mo->args) == 0);
-  create_insn (&insn, mo);
-
-  insn.insn_opcode = insn.insn_mo->match;
-  INSERT_OPERAND (RT, insn, regnum);
-  if (*r == BFD_RELOC_UNUSED)
-    {
-      insn.insn_opcode |= high_expr.X_add_number;
-      append_insn (&insn, NULL, r);
-    }
-  else
-    append_insn (&insn, &high_expr, r);
+  macro_build (ep, "lui", LUI_FMT, regnum, BFD_RELOC_HI16_S);
 }
 
 /* Generate a sequence of instructions to do a load or store from a constant
@@ -4251,7 +5499,7 @@ load_register (int reg, expressionS *ep, int dbl)
       else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
        {
          /* 32 bit values require an lui.  */
-         macro_build (ep, "lui", "t,u", reg, BFD_RELOC_HI16);
+         macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
          if ((ep->X_add_number & 0xffff) != 0)
            macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
          return;
@@ -4308,7 +5556,7 @@ load_register (int reg, expressionS *ep, int dbl)
            }
          if (lo32.X_add_number & 0x80000000)
            {
-             macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
+             macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
              if (lo32.X_add_number & 0xffff)
                macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
              return;
@@ -4345,7 +5593,7 @@ load_register (int reg, expressionS *ep, int dbl)
              else
                tmp.X_add_number = hi32.X_add_number >> (shift - 32);
              macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
-             macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", "d,w,<",
+             macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", SHFT_FMT,
                           reg, reg, (shift >= 32) ? shift - 32 : shift);
              return;
            }
@@ -4397,10 +5645,10 @@ load_register (int reg, expressionS *ep, int dbl)
              if (bit != 0)
                {
                  bit += shift;
-                 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", "d,w,<",
+                 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", SHFT_FMT,
                               reg, reg, (bit >= 32) ? bit - 32 : bit);
                }
-             macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", "d,w,<",
+             macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", SHFT_FMT,
                           reg, reg, (shift >= 32) ? shift - 32 : shift);
              return;
            }
@@ -4417,7 +5665,7 @@ load_register (int reg, expressionS *ep, int dbl)
     {
       if (freg != 0)
        {
-         macro_build (NULL, "dsll32", "d,w,<", reg, freg, 0);
+         macro_build (NULL, "dsll32", SHFT_FMT, reg, freg, 0);
          freg = reg;
        }
     }
@@ -4427,20 +5675,20 @@ load_register (int reg, expressionS *ep, int dbl)
 
       if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
        {
-         macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
-         macro_build (NULL, "dsrl32", "d,w,<", reg, reg, 0);
+         macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
+         macro_build (NULL, "dsrl32", SHFT_FMT, reg, reg, 0);
          return;
        }
 
       if (freg != 0)
        {
-         macro_build (NULL, "dsll", "d,w,<", reg, freg, 16);
+         macro_build (NULL, "dsll", SHFT_FMT, reg, freg, 16);
          freg = reg;
        }
       mid16 = lo32;
       mid16.X_add_number >>= 16;
       macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
-      macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
+      macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
       freg = reg;
     }
   if ((lo32.X_add_number & 0xffff) != 0)
@@ -4513,23 +5761,23 @@ load_address (int reg, expressionS *ep, int *used_at)
 
          if (*used_at == 0 && mips_opts.at)
            {
-             macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
-             macro_build (ep, "lui", "t,u", AT, BFD_RELOC_HI16_S);
+             macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
+             macro_build (ep, "lui", LUI_FMT, AT, BFD_RELOC_HI16_S);
              macro_build (ep, "daddiu", "t,r,j", reg, reg,
                           BFD_RELOC_MIPS_HIGHER);
              macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
-             macro_build (NULL, "dsll32", "d,w,<", reg, reg, 0);
+             macro_build (NULL, "dsll32", SHFT_FMT, reg, reg, 0);
              macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
              *used_at = 1;
            }
          else
            {
-             macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
+             macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
              macro_build (ep, "daddiu", "t,r,j", reg, reg,
                           BFD_RELOC_MIPS_HIGHER);
-             macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
+             macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
              macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
-             macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
+             macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
              macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
            }
 
@@ -4639,7 +5887,7 @@ load_address (int reg, expressionS *ep, int *used_at)
          ex.X_add_number = ep->X_add_number;
          ep->X_add_number = 0;
          relax_start (ep->X_add_symbol);
-         macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
+         macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
          macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
                       reg, reg, mips_gp_register);
          macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
@@ -4666,7 +5914,7 @@ load_address (int reg, expressionS *ep, int *used_at)
          ex.X_add_number = ep->X_add_number;
          ep->X_add_number = 0;
          relax_start (ep->X_add_symbol);
-         macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
+         macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
          macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
                       reg, reg, mips_gp_register);
          macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
@@ -4709,8 +5957,14 @@ load_address (int reg, expressionS *ep, int *used_at)
 static void
 move_register (int dest, int source)
 {
-  macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
-              dest, source, 0);
+  /* Prefer to use a 16-bit microMIPS instruction unless the previous
+     instruction specifically requires a 32-bit one.  */
+  if (mips_opts.micromips
+      && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
+    macro_build (NULL, "move", "mp,mj", dest, source);
+  else
+    macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
+                dest, source, 0);
 }
 
 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
@@ -4788,6 +6042,200 @@ add_got_offset_hilo (int dest, expressionS *local, int tmp)
   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
 }
 
+/* Emit a sequence of instructions to emulate a branch likely operation.
+   BR is an ordinary branch corresponding to one to be emulated.  BRNEG
+   is its complementing branch with the original condition negated.
+   CALL is set if the original branch specified the link operation.
+   EP, FMT, SREG and TREG specify the usual macro_build() parameters.
+
+   Code like this is produced in the noreorder mode:
+
+       BRNEG   <args>, 1f
+        nop
+       b       <sym>
+        delay slot (executed only if branch taken)
+    1:
+
+   or, if CALL is set:
+
+       BRNEG   <args>, 1f
+        nop
+       bal     <sym>
+        delay slot (executed only if branch taken)
+    1:
+
+   In the reorder mode the delay slot would be filled with a nop anyway,
+   so code produced is simply:
+
+       BR      <args>, <sym>
+        nop
+
+   This function is used when producing code for the microMIPS ASE that
+   does not implement branch likely instructions in hardware.  */
+
+static void
+macro_build_branch_likely (const char *br, const char *brneg,
+                          int call, expressionS *ep, const char *fmt,
+                          unsigned int sreg, unsigned int treg)
+{
+  int noreorder = mips_opts.noreorder;
+  expressionS expr1;
+
+  gas_assert (mips_opts.micromips);
+  start_noreorder ();
+  if (noreorder)
+    {
+      micromips_label_expr (&expr1);
+      macro_build (&expr1, brneg, fmt, sreg, treg);
+      macro_build (NULL, "nop", "");
+      macro_build (ep, call ? "bal" : "b", "p");
+
+      /* Set to true so that append_insn adds a label.  */
+      emit_branch_likely_macro = TRUE;
+    }
+  else
+    {
+      macro_build (ep, br, fmt, sreg, treg);
+      macro_build (NULL, "nop", "");
+    }
+  end_noreorder ();
+}
+
+/* Emit a coprocessor branch-likely macro specified by TYPE, using CC as
+   the condition code tested.  EP specifies the branch target.  */
+
+static void
+macro_build_branch_ccl (int type, expressionS *ep, unsigned int cc)
+{
+  const int call = 0;
+  const char *brneg;
+  const char *br;
+
+  switch (type)
+    {
+    case M_BC1FL:
+      br = "bc1f";
+      brneg = "bc1t";
+      break;
+    case M_BC1TL:
+      br = "bc1t";
+      brneg = "bc1f";
+      break;
+    case M_BC2FL:
+      br = "bc2f";
+      brneg = "bc2t";
+      break;
+    case M_BC2TL:
+      br = "bc2t";
+      brneg = "bc2f";
+      break;
+    default:
+      abort ();
+    }
+  macro_build_branch_likely (br, brneg, call, ep, "N,p", cc, ZERO);
+}
+
+/* Emit a two-argument branch macro specified by TYPE, using SREG as
+   the register tested.  EP specifies the branch target.  */
+
+static void
+macro_build_branch_rs (int type, expressionS *ep, unsigned int sreg)
+{
+  const char *brneg = NULL;
+  const char *br;
+  int call = 0;
+
+  switch (type)
+    {
+    case M_BGEZ:
+      br = "bgez";
+      break;
+    case M_BGEZL:
+      br = mips_opts.micromips ? "bgez" : "bgezl";
+      brneg = "bltz";
+      break;
+    case M_BGEZALL:
+      gas_assert (mips_opts.micromips);
+      br = "bgezals";
+      brneg = "bltz";
+      call = 1;
+      break;
+    case M_BGTZ:
+      br = "bgtz";
+      break;
+    case M_BGTZL:
+      br = mips_opts.micromips ? "bgtz" : "bgtzl";
+      brneg = "blez";
+      break;
+    case M_BLEZ:
+      br = "blez";
+      break;
+    case M_BLEZL:
+      br = mips_opts.micromips ? "blez" : "blezl";
+      brneg = "bgtz";
+      break;
+    case M_BLTZ:
+      br = "bltz";
+      break;
+    case M_BLTZL:
+      br = mips_opts.micromips ? "bltz" : "bltzl";
+      brneg = "bgez";
+      break;
+    case M_BLTZALL:
+      gas_assert (mips_opts.micromips);
+      br = "bltzals";
+      brneg = "bgez";
+      call = 1;
+      break;
+    default:
+      abort ();
+    }
+  if (mips_opts.micromips && brneg)
+    macro_build_branch_likely (br, brneg, call, ep, "s,p", sreg, ZERO);
+  else
+    macro_build (ep, br, "s,p", sreg);
+}
+
+/* Emit a three-argument branch macro specified by TYPE, using SREG and
+   TREG as the registers tested.  EP specifies the branch target.  */
+
+static void
+macro_build_branch_rsrt (int type, expressionS *ep,
+                        unsigned int sreg, unsigned int treg)
+{
+  const char *brneg = NULL;
+  const int call = 0;
+  const char *br;
+
+  switch (type)
+    {
+    case M_BEQ:
+    case M_BEQ_I:
+      br = "beq";
+      break;
+    case M_BEQL:
+    case M_BEQL_I:
+      br = mips_opts.micromips ? "beq" : "beql";
+      brneg = "bne";
+      break;
+    case M_BNE:
+    case M_BNE_I:
+      br = "bne";
+      break;
+    case M_BNEL:
+    case M_BNEL_I:
+      br = mips_opts.micromips ? "bne" : "bnel";
+      brneg = "beq";
+      break;
+    default:
+      abort ();
+    }
+  if (mips_opts.micromips && brneg)
+    macro_build_branch_likely (br, brneg, call, ep, "s,t,p", sreg, treg);
+  else
+    macro_build (ep, br, "s,t,p", sreg, treg);
+}
+
 /*
  *                     Build macros
  *   This routine implements the seemingly endless macro or synthesized
@@ -4813,16 +6261,23 @@ macro (struct mips_cl_insn *ip)
   unsigned int tempreg;
   int mask;
   int used_at = 0;
+  expressionS label_expr;
   expressionS expr1;
+  expressionS *ep;
   const char *s;
   const char *s2;
   const char *fmt;
   int likely = 0;
-  int dbl = 0;
   int coproc = 0;
-  int lr = 0;
-  int imm = 0;
+  int off12 = 0;
   int call = 0;
+  int jals = 0;
+  int dbl = 0;
+  int imm = 0;
+  int ust = 0;
+  int lp = 0;
+  int ab = 0;
+  int off0 = 0;
   int off;
   offsetT maxnum;
   bfd_reloc_code_real_type r;
@@ -4830,11 +6285,16 @@ macro (struct mips_cl_insn *ip)
 
   gas_assert (! mips_opts.mips16);
 
-  treg = (ip->insn_opcode >> 16) & 0x1f;
-  dreg = (ip->insn_opcode >> 11) & 0x1f;
-  sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
+  treg = EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
+  dreg = EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
+  sreg = breg = EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
   mask = ip->insn_mo->mask;
 
+  label_expr.X_op = O_constant;
+  label_expr.X_op_symbol = NULL;
+  label_expr.X_add_symbol = NULL;
+  label_expr.X_add_number = 0;
+
   expr1.X_op = O_constant;
   expr1.X_op_symbol = NULL;
   expr1.X_add_symbol = NULL;
@@ -4845,20 +6305,26 @@ macro (struct mips_cl_insn *ip)
     case M_DABS:
       dbl = 1;
     case M_ABS:
-      /* bgez $a0,.+12
-        move v0,$a0
-        sub v0,$zero,$a0
-        */
+      /*    bgez    $a0,1f
+           move    v0,$a0
+           sub     v0,$zero,$a0
+        1:
+       */
 
       start_noreorder ();
 
-      expr1.X_add_number = 8;
-      macro_build (&expr1, "bgez", "s,p", sreg);
+      if (mips_opts.micromips)
+       micromips_label_expr (&label_expr);
+      else
+       label_expr.X_add_number = 8;
+      macro_build (&label_expr, "bgez", "s,p", sreg);
       if (dreg == sreg)
-       macro_build (NULL, "nop", "", 0);
+       macro_build (NULL, "nop", "");
       else
        move_register (dreg, sreg);
       macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
+      if (mips_opts.micromips)
+       micromips_add_label ();
 
       end_noreorder ();
       break;
@@ -4875,7 +6341,16 @@ macro (struct mips_cl_insn *ip)
       dbl = 1;
       s = "daddi";
       s2 = "dadd";
-      goto do_addi;
+      if (!mips_opts.micromips)
+       goto do_addi;
+      if (imm_expr.X_op == O_constant
+         && imm_expr.X_add_number >= -0x200
+         && imm_expr.X_add_number < 0x200)
+       {
+         macro_build (NULL, s, "t,r,.", treg, sreg, imm_expr.X_add_number);
+         break;
+       }
+      goto do_addi_i;
     case M_DADDU_I:
       dbl = 1;
       s = "daddiu";
@@ -4888,6 +6363,7 @@ macro (struct mips_cl_insn *ip)
          macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
          break;
        }
+    do_addi_i:
       used_at = 1;
       load_register (AT, &imm_expr, dbl);
       macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
@@ -4940,57 +6416,67 @@ macro (struct mips_cl_insn *ip)
          break;
        default:
          macro_build (NULL, "balign", "t,s,2", treg, sreg,
-                      (int)imm_expr.X_add_number);
+                      (int) imm_expr.X_add_number);
          break;
        }
       break;
 
+    case M_BC1FL:
+    case M_BC1TL:
+    case M_BC2FL:
+    case M_BC2TL:
+      gas_assert (mips_opts.micromips);
+      macro_build_branch_ccl (mask, &offset_expr,
+                             EXTRACT_OPERAND (1, BCC, *ip));
+      break;
+
     case M_BEQ_I:
-      s = "beq";
-      goto beq_i;
     case M_BEQL_I:
-      s = "beql";
-      likely = 1;
-      goto beq_i;
     case M_BNE_I:
-      s = "bne";
-      goto beq_i;
     case M_BNEL_I:
-      s = "bnel";
-      likely = 1;
-    beq_i:
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
+       treg = 0;
+      else
        {
-         macro_build (&offset_expr, s, "s,t,p", sreg, 0);
-         break;
+         treg = AT;
+         used_at = 1;
+         load_register (treg, &imm_expr, HAVE_64BIT_GPRS);
        }
-      used_at = 1;
-      load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
-      macro_build (&offset_expr, s, "s,t,p", sreg, AT);
+      /* Fall through.  */
+    case M_BEQL:
+    case M_BNEL:
+      macro_build_branch_rsrt (mask, &offset_expr, sreg, treg);
       break;
 
     case M_BGEL:
       likely = 1;
     case M_BGE:
       if (treg == 0)
+       macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, sreg);
+      else if (sreg == 0)
+       macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, treg);
+      else
        {
-         macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
-         break;
-       }
-      if (sreg == 0)
-       {
-         macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", treg);
-         break;
+         used_at = 1;
+         macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
+         macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
+                                  &offset_expr, AT, ZERO);
        }
-      used_at = 1;
-      macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
-      macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
+      break;
+
+    case M_BGEZL:
+    case M_BGEZALL:
+    case M_BGTZL:
+    case M_BLEZL:
+    case M_BLTZL:
+    case M_BLTZALL:
+      macro_build_branch_rs (mask, &offset_expr, sreg);
       break;
 
     case M_BGTL_I:
       likely = 1;
     case M_BGT_I:
-      /* check for > max integer */
+      /* Check for > max integer.  */
       maxnum = 0x7fffffff;
       if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
        {
@@ -5004,11 +6490,11 @@ macro (struct mips_cl_insn *ip)
          && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
        {
        do_false:
-         /* result is always false */
+         /* Result is always false.  */
          if (! likely)
-           macro_build (NULL, "nop", "", 0);
+           macro_build (NULL, "nop", "");
          else
-           macro_build (&offset_expr, "bnel", "s,t,p", 0, 0);
+           macro_build_branch_rsrt (M_BNEL, &offset_expr, ZERO, ZERO);
          break;
        }
       if (imm_expr.X_op != O_constant)
@@ -5021,12 +6507,14 @@ macro (struct mips_cl_insn *ip)
        likely = 1;
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
        {
-         macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
+         macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ,
+                                &offset_expr, sreg);
          break;
        }
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
        {
-         macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
+         macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ,
+                                &offset_expr, sreg);
          break;
        }
       maxnum = 0x7fffffff;
@@ -5050,7 +6538,8 @@ macro (struct mips_cl_insn *ip)
        }
       used_at = 1;
       set_at (sreg, 0);
-      macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
+      macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
+                              &offset_expr, AT, ZERO);
       break;
 
     case M_BGEUL:
@@ -5058,15 +6547,16 @@ macro (struct mips_cl_insn *ip)
     case M_BGEU:
       if (treg == 0)
        goto do_true;
-      if (sreg == 0)
+      else if (sreg == 0)
+       macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
+                                &offset_expr, ZERO, treg);
+      else
        {
-         macro_build (&offset_expr, likely ? "beql" : "beq",
-                      "s,t,p", 0, treg);
-         break;
+         used_at = 1;
+         macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
+         macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
+                                  &offset_expr, AT, ZERO);
        }
-      used_at = 1;
-      macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
-      macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
       break;
 
     case M_BGTUL_I:
@@ -5075,7 +6565,7 @@ macro (struct mips_cl_insn *ip)
       if (sreg == 0
          || (HAVE_32BIT_GPRS
              && imm_expr.X_op == O_constant
-             && imm_expr.X_add_number == (offsetT) 0xffffffff))
+             && imm_expr.X_add_number == -1))
        goto do_false;
       if (imm_expr.X_op != O_constant)
        as_bad (_("Unsupported large constant"));
@@ -5087,67 +6577,65 @@ macro (struct mips_cl_insn *ip)
        likely = 1;
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
        goto do_true;
-      if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
+      else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
+       macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
+                                &offset_expr, sreg, ZERO);
+      else
        {
-         macro_build (&offset_expr, likely ? "bnel" : "bne",
-                      "s,t,p", sreg, 0);
-         break;
+         used_at = 1;
+         set_at (sreg, 1);
+         macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
+                                  &offset_expr, AT, ZERO);
        }
-      used_at = 1;
-      set_at (sreg, 1);
-      macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
       break;
 
     case M_BGTL:
       likely = 1;
     case M_BGT:
       if (treg == 0)
+       macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, sreg);
+      else if (sreg == 0)
+       macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, treg);
+      else
        {
-         macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
-         break;
-       }
-      if (sreg == 0)
-       {
-         macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", treg);
-         break;
+         used_at = 1;
+         macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
+         macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
+                                  &offset_expr, AT, ZERO);
        }
-      used_at = 1;
-      macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
-      macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
       break;
 
     case M_BGTUL:
       likely = 1;
     case M_BGTU:
       if (treg == 0)
+       macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
+                                &offset_expr, sreg, ZERO);
+      else if (sreg == 0)
+       goto do_false;
+      else
        {
-         macro_build (&offset_expr, likely ? "bnel" : "bne",
-                      "s,t,p", sreg, 0);
-         break;
+         used_at = 1;
+         macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
+         macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
+                                  &offset_expr, AT, ZERO);
        }
-      if (sreg == 0)
-       goto do_false;
-      used_at = 1;
-      macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
-      macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
       break;
 
     case M_BLEL:
       likely = 1;
     case M_BLE:
       if (treg == 0)
+       macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, sreg);
+      else if (sreg == 0)
+       macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, treg);
+      else
        {
-         macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
-         break;
-       }
-      if (sreg == 0)
-       {
-         macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", treg);
-         break;
+         used_at = 1;
+         macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
+         macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
+                                  &offset_expr, AT, ZERO);
        }
-      used_at = 1;
-      macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
-      macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
       break;
 
     case M_BLEL_I:
@@ -5174,34 +6662,33 @@ macro (struct mips_cl_insn *ip)
       if (mask == M_BLTL_I)
        likely = 1;
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
+       macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, sreg);
+      else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
+       macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, sreg);
+      else
        {
-         macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
-         break;
-       }
-      if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
-       {
-         macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
-         break;
+         used_at = 1;
+         set_at (sreg, 0);
+         macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
+                                  &offset_expr, AT, ZERO);
        }
-      used_at = 1;
-      set_at (sreg, 0);
-      macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
       break;
 
     case M_BLEUL:
       likely = 1;
     case M_BLEU:
       if (treg == 0)
+       macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
+                                &offset_expr, sreg, ZERO);
+      else if (sreg == 0)
+       goto do_true;
+      else
        {
-         macro_build (&offset_expr, likely ? "beql" : "beq",
-                      "s,t,p", sreg, 0);
-         break;
+         used_at = 1;
+         macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
+         macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
+                                  &offset_expr, AT, ZERO);
        }
-      if (sreg == 0)
-       goto do_true;
-      used_at = 1;
-      macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
-      macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
       break;
 
     case M_BLEUL_I:
@@ -5210,7 +6697,7 @@ macro (struct mips_cl_insn *ip)
       if (sreg == 0
          || (HAVE_32BIT_GPRS
              && imm_expr.X_op == O_constant
-             && imm_expr.X_add_number == (offsetT) 0xffffffff))
+             && imm_expr.X_add_number == -1))
        goto do_true;
       if (imm_expr.X_op != O_constant)
        as_bad (_("Unsupported large constant"));
@@ -5222,33 +6709,32 @@ macro (struct mips_cl_insn *ip)
        likely = 1;
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
        goto do_false;
-      if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
+      else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
+       macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
+                                &offset_expr, sreg, ZERO);
+      else
        {
-         macro_build (&offset_expr, likely ? "beql" : "beq",
-                      "s,t,p", sreg, 0);
-         break;
+         used_at = 1;
+         set_at (sreg, 1);
+         macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
+                                  &offset_expr, AT, ZERO);
        }
-      used_at = 1;
-      set_at (sreg, 1);
-      macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
       break;
 
     case M_BLTL:
       likely = 1;
     case M_BLT:
       if (treg == 0)
+       macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, sreg);
+      else if (sreg == 0)
+       macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, treg);
+      else
        {
-         macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
-         break;
-       }
-      if (sreg == 0)
-       {
-         macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", treg);
-         break;
+         used_at = 1;
+         macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
+         macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
+                                  &offset_expr, AT, ZERO);
        }
-      used_at = 1;
-      macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
-      macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
       break;
 
     case M_BLTUL:
@@ -5256,43 +6742,44 @@ macro (struct mips_cl_insn *ip)
     case M_BLTU:
       if (treg == 0)
        goto do_false;
-      if (sreg == 0)
+      else if (sreg == 0)
+       macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
+                                &offset_expr, ZERO, treg);
+      else
        {
-         macro_build (&offset_expr, likely ? "bnel" : "bne",
-                      "s,t,p", 0, treg);
-         break;
+         used_at = 1;
+         macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
+         macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
+                                  &offset_expr, AT, ZERO);
        }
-      used_at = 1;
-      macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
-      macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
       break;
 
     case M_DEXT:
       {
-       unsigned long pos;
-       unsigned long size;
+       /* Use unsigned arithmetic.  */
+       addressT pos;
+       addressT size;
 
-        if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
+       if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
          {
            as_bad (_("Unsupported large constant"));
            pos = size = 1;
          }
        else
          {
-           pos = (unsigned long) imm_expr.X_add_number;
-           size = (unsigned long) imm2_expr.X_add_number;
+           pos = imm_expr.X_add_number;
+           size = imm2_expr.X_add_number;
          }
 
        if (pos > 63)
          {
-           as_bad (_("Improper position (%lu)"), pos);
+           as_bad (_("Improper position (%lu)"), (unsigned long) pos);
            pos = 1;
          }
-        if (size == 0 || size > 64
-           || (pos + size - 1) > 63)
+       if (size == 0 || size > 64 || (pos + size - 1) > 63)
          {
            as_bad (_("Improper extract size (%lu, position %lu)"),
-                   size, pos);
+                   (unsigned long) size, (unsigned long) pos);
            size = 1;
          }
 
@@ -5311,36 +6798,37 @@ macro (struct mips_cl_insn *ip)
            s = "dextm";
            fmt = "t,r,+A,+G";
          }
-       macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos, size - 1);
+       macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
+                    (int) (size - 1));
       }
       break;
 
     case M_DINS:
       {
-       unsigned long pos;
-       unsigned long size;
+       /* Use unsigned arithmetic.  */
+       addressT pos;
+       addressT size;
 
-        if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
+       if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
          {
            as_bad (_("Unsupported large constant"));
            pos = size = 1;
          }
        else
          {
-           pos = (unsigned long) imm_expr.X_add_number;
-           size = (unsigned long) imm2_expr.X_add_number;
+           pos = imm_expr.X_add_number;
+           size = imm2_expr.X_add_number;
          }
 
        if (pos > 63)
          {
-           as_bad (_("Improper position (%lu)"), pos);
+           as_bad (_("Improper position (%lu)"), (unsigned long) pos);
            pos = 1;
          }
-        if (size == 0 || size > 64
-           || (pos + size - 1) > 63)
+       if (size == 0 || size > 64 || (pos + size - 1) > 63)
          {
            as_bad (_("Improper insert size (%lu, position %lu)"),
-                   size, pos);
+                   (unsigned long) size, (unsigned long) pos);
            size = 1;
          }
 
@@ -5378,61 +6866,74 @@ macro (struct mips_cl_insn *ip)
        {
          as_warn (_("Divide by zero."));
          if (mips_trap)
-           macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
+           macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
          else
-           macro_build (NULL, "break", "c", 7);
+           macro_build (NULL, "break", BRK_FMT, 7);
          break;
        }
 
       start_noreorder ();
       if (mips_trap)
        {
-         macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
+         macro_build (NULL, "teq", TRAP_FMT, treg, ZERO, 7);
          macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
        }
       else
        {
-         expr1.X_add_number = 8;
-         macro_build (&expr1, "bne", "s,t,p", treg, 0);
+         if (mips_opts.micromips)
+           micromips_label_expr (&label_expr);
+         else
+           label_expr.X_add_number = 8;
+         macro_build (&label_expr, "bne", "s,t,p", treg, ZERO);
          macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
-         macro_build (NULL, "break", "c", 7);
+         macro_build (NULL, "break", BRK_FMT, 7);
+         if (mips_opts.micromips)
+           micromips_add_label ();
        }
       expr1.X_add_number = -1;
       used_at = 1;
       load_register (AT, &expr1, dbl);
-      expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
-      macro_build (&expr1, "bne", "s,t,p", treg, AT);
+      if (mips_opts.micromips)
+       micromips_label_expr (&label_expr);
+      else
+       label_expr.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
+      macro_build (&label_expr, "bne", "s,t,p", treg, AT);
       if (dbl)
        {
          expr1.X_add_number = 1;
          load_register (AT, &expr1, dbl);
-         macro_build (NULL, "dsll32", "d,w,<", AT, AT, 31);
+         macro_build (NULL, "dsll32", SHFT_FMT, AT, AT, 31);
        }
       else
        {
          expr1.X_add_number = 0x80000000;
-         macro_build (&expr1, "lui", "t,u", AT, BFD_RELOC_HI16);
+         macro_build (&expr1, "lui", LUI_FMT, AT, BFD_RELOC_HI16);
        }
       if (mips_trap)
        {
-         macro_build (NULL, "teq", "s,t,q", sreg, AT, 6);
+         macro_build (NULL, "teq", TRAP_FMT, sreg, AT, 6);
          /* We want to close the noreorder block as soon as possible, so
             that later insns are available for delay slot filling.  */
          end_noreorder ();
        }
       else
        {
-         expr1.X_add_number = 8;
-         macro_build (&expr1, "bne", "s,t,p", sreg, AT);
-         macro_build (NULL, "nop", "", 0);
+         if (mips_opts.micromips)
+           micromips_label_expr (&label_expr);
+         else
+           label_expr.X_add_number = 8;
+         macro_build (&label_expr, "bne", "s,t,p", sreg, AT);
+         macro_build (NULL, "nop", "");
 
          /* We want to close the noreorder block as soon as possible, so
             that later insns are available for delay slot filling.  */
          end_noreorder ();
 
-         macro_build (NULL, "break", "c", 6);
+         macro_build (NULL, "break", BRK_FMT, 6);
        }
-      macro_build (NULL, s, "d", dreg);
+      if (mips_opts.micromips)
+       micromips_add_label ();
+      macro_build (NULL, s, MFHL_FMT, dreg);
       break;
 
     case M_DIV_3I:
@@ -5475,9 +6976,9 @@ macro (struct mips_cl_insn *ip)
        {
          as_warn (_("Divide by zero."));
          if (mips_trap)
-           macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
+           macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
          else
-           macro_build (NULL, "break", "c", 7);
+           macro_build (NULL, "break", BRK_FMT, 7);
          break;
        }
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
@@ -5485,7 +6986,7 @@ macro (struct mips_cl_insn *ip)
          if (strcmp (s2, "mflo") == 0)
            move_register (dreg, sreg);
          else
-           move_register (dreg, 0);
+           move_register (dreg, ZERO);
          break;
        }
       if (imm_expr.X_op == O_constant
@@ -5497,14 +6998,14 @@ macro (struct mips_cl_insn *ip)
              macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
            }
          else
-           move_register (dreg, 0);
+           move_register (dreg, ZERO);
          break;
        }
 
       used_at = 1;
       load_register (AT, &imm_expr, dbl);
       macro_build (NULL, s, "z,s,t", sreg, AT);
-      macro_build (NULL, s2, "d", dreg);
+      macro_build (NULL, s2, MFHL_FMT, dreg);
       break;
 
     case M_DIVU_3:
@@ -5526,7 +7027,7 @@ macro (struct mips_cl_insn *ip)
       start_noreorder ();
       if (mips_trap)
        {
-         macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
+         macro_build (NULL, "teq", TRAP_FMT, treg, ZERO, 7);
          macro_build (NULL, s, "z,s,t", sreg, treg);
          /* We want to close the noreorder block as soon as possible, so
             that later insns are available for delay slot filling.  */
@@ -5534,16 +7035,21 @@ macro (struct mips_cl_insn *ip)
        }
       else
        {
-         expr1.X_add_number = 8;
-         macro_build (&expr1, "bne", "s,t,p", treg, 0);
+         if (mips_opts.micromips)
+           micromips_label_expr (&label_expr);
+         else
+           label_expr.X_add_number = 8;
+         macro_build (&label_expr, "bne", "s,t,p", treg, ZERO);
          macro_build (NULL, s, "z,s,t", sreg, treg);
 
          /* We want to close the noreorder block as soon as possible, so
             that later insns are available for delay slot filling.  */
          end_noreorder ();
-         macro_build (NULL, "break", "c", 7);
+         macro_build (NULL, "break", BRK_FMT, 7);
+         if (mips_opts.micromips)
+           micromips_add_label ();
        }
-      macro_build (NULL, s2, "d", dreg);
+      macro_build (NULL, s2, MFHL_FMT, dreg);
       break;
 
     case M_DLCA_AB:
@@ -5561,7 +7067,7 @@ macro (struct mips_cl_insn *ip)
       if (dbl && HAVE_32BIT_GPRS)
        as_warn (_("dla used to load 32-bit register"));
 
-      if (! dbl && HAVE_64BIT_OBJECTS)
+      if (!dbl && HAVE_64BIT_OBJECTS)
        as_warn (_("la used to load 64-bit address"));
 
       if (offset_expr.X_op == O_constant
@@ -5586,7 +7092,7 @@ macro (struct mips_cl_insn *ip)
       if (offset_expr.X_op != O_symbol
          && offset_expr.X_op != O_constant)
        {
-         as_bad (_("expression too complex"));
+         as_bad (_("Expression too complex"));
          offset_expr.X_op = O_constant;
        }
 
@@ -5634,28 +7140,28 @@ macro (struct mips_cl_insn *ip)
 
              if (used_at == 0 && mips_opts.at)
                {
-                 macro_build (&offset_expr, "lui", "t,u",
+                 macro_build (&offset_expr, "lui", LUI_FMT,
                               tempreg, BFD_RELOC_MIPS_HIGHEST);
-                 macro_build (&offset_expr, "lui", "t,u",
+                 macro_build (&offset_expr, "lui", LUI_FMT,
                               AT, BFD_RELOC_HI16_S);
                  macro_build (&offset_expr, "daddiu", "t,r,j",
                               tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
                  macro_build (&offset_expr, "daddiu", "t,r,j",
                               AT, AT, BFD_RELOC_LO16);
-                 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
+                 macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
                  macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
                  used_at = 1;
                }
              else
                {
-                 macro_build (&offset_expr, "lui", "t,u",
+                 macro_build (&offset_expr, "lui", LUI_FMT,
                               tempreg, BFD_RELOC_MIPS_HIGHEST);
                  macro_build (&offset_expr, "daddiu", "t,r,j",
                               tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
-                 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
+                 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
                  macro_build (&offset_expr, "daddiu", "t,r,j",
                               tempreg, tempreg, BFD_RELOC_HI16_S);
-                 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
+                 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
                  macro_build (&offset_expr, "daddiu", "t,r,j",
                               tempreg, tempreg, BFD_RELOC_LO16);
                }
@@ -5674,7 +7180,7 @@ macro (struct mips_cl_insn *ip)
                  relax_switch ();
                }
              if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
-               as_bad (_("offset too large"));
+               as_bad (_("Offset too large"));
              macro_build_lui (&offset_expr, tempreg);
              macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
                           tempreg, tempreg, BFD_RELOC_LO16);
@@ -5936,7 +7442,7 @@ macro (struct mips_cl_insn *ip)
              lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
              lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
            }
-         macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
+         macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
          macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
                       tempreg, tempreg, mips_gp_register);
          macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
@@ -6081,7 +7587,7 @@ macro (struct mips_cl_insn *ip)
              lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
              lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
            }
-         macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
+         macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
          macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
                       tempreg, tempreg, mips_gp_register);
          macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
@@ -6146,41 +7652,41 @@ macro (struct mips_cl_insn *ip)
       break;
 
     case M_MSGSND:
+      gas_assert (!mips_opts.micromips);
       {
        unsigned long temp = (treg << 16) | (0x01);
        macro_build (NULL, "c2", "C", temp);
       }
-      /* AT is not used, just return */
-      return;
+      break;
 
     case M_MSGLD:
+      gas_assert (!mips_opts.micromips);
       {
        unsigned long temp = (0x02);
        macro_build (NULL, "c2", "C", temp);
       }
-      /* AT is not used, just return */
-      return;
+      break;
 
     case M_MSGLD_T:
+      gas_assert (!mips_opts.micromips);
       {
        unsigned long temp = (treg << 16) | (0x02);
        macro_build (NULL, "c2", "C", temp);
       }
-      /* AT is not used, just return */
-      return;
+      break;
 
     case M_MSGWAIT:
+      gas_assert (!mips_opts.micromips);
       macro_build (NULL, "c2", "C", 3);
-      /* AT is not used, just return */
-      return;
+      break;
 
     case M_MSGWAIT_T:
+      gas_assert (!mips_opts.micromips);
       {
        unsigned long temp = (treg << 16) | 0x03;
        macro_build (NULL, "c2", "C", temp);
       }
-      /* AT is not used, just return */
-      return;
+      break;
 
     case M_J_A:
       /* The j instruction may not be used in PIC code, since it
@@ -6195,31 +7701,53 @@ macro (struct mips_cl_insn *ip)
       /* The jal instructions must be handled as macros because when
         generating PIC code they expand to multi-instruction
         sequences.  Normally they are simple instructions.  */
+    case M_JALS_1:
+      dreg = RA;
+      /* Fall through.  */
+    case M_JALS_2:
+      gas_assert (mips_opts.micromips);
+      jals = 1;
+      goto jal;
     case M_JAL_1:
       dreg = RA;
       /* Fall through.  */
     case M_JAL_2:
+    jal:
       if (mips_pic == NO_PIC)
-       macro_build (NULL, "jalr", "d,s", dreg, sreg);
+       {
+         s = jals ? "jalrs" : "jalr";
+         if (mips_opts.micromips && dreg == RA)
+           macro_build (NULL, s, "mj", sreg);
+         else
+           macro_build (NULL, s, JALR_FMT, dreg, sreg);
+       }
       else
        {
+         int cprestore = (mips_pic == SVR4_PIC && !HAVE_NEWABI
+                          && mips_cprestore_offset >= 0);
+
          if (sreg != PIC_CALL_REG)
            as_warn (_("MIPS PIC call to register other than $25"));
 
-         macro_build (NULL, "jalr", "d,s", dreg, sreg);
+         s = (mips_opts.micromips && (!mips_opts.noreorder || cprestore)
+              ? "jalrs" : "jalr");
+         if (mips_opts.micromips && dreg == RA)
+           macro_build (NULL, s, "mj", sreg);
+         else
+           macro_build (NULL, s, JALR_FMT, dreg, sreg);
          if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
            {
              if (mips_cprestore_offset < 0)
                as_warn (_("No .cprestore pseudo-op used in PIC code"));
              else
                {
-                 if (! mips_frame_reg_valid)
+                 if (!mips_frame_reg_valid)
                    {
                      as_warn (_("No .frame pseudo-op used in PIC code"));
                      /* Quiet this warning.  */
                      mips_frame_reg_valid = 1;
                    }
-                 if (! mips_cprestore_valid)
+                 if (!mips_cprestore_valid)
                    {
                      as_warn (_("No .cprestore pseudo-op used in PIC code"));
                      /* Quiet this warning.  */
@@ -6238,9 +7766,13 @@ macro (struct mips_cl_insn *ip)
 
       break;
 
+    case M_JALS_A:
+      gas_assert (mips_opts.micromips);
+      jals = 1;
+      /* Fall through.  */
     case M_JAL_A:
       if (mips_pic == NO_PIC)
-       macro_build (&offset_expr, "jal", "a");
+       macro_build (&offset_expr, jals ? "jals" : "jal", "a");
       else if (mips_pic == SVR4_PIC)
        {
          /* If this is a reference to an external symbol, and we are
@@ -6273,7 +7805,7 @@ macro (struct mips_cl_insn *ip)
             GOT_DISP.  */
          if (HAVE_NEWABI)
            {
-             if (! mips_big_got)
+             if (!mips_big_got)
                {
                  relax_start (offset_expr.X_add_symbol);
                  macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
@@ -6288,7 +7820,7 @@ macro (struct mips_cl_insn *ip)
              else
                {
                  relax_start (offset_expr.X_add_symbol);
-                 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
+                 macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
                               BFD_RELOC_MIPS_CALL_HI16);
                  macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
                               PIC_CALL_REG, mips_gp_register);
@@ -6305,12 +7837,12 @@ macro (struct mips_cl_insn *ip)
                  relax_end ();
                }
 
-             macro_build_jalr (&offset_expr);
+             macro_build_jalr (&offset_expr, 0);
            }
          else
            {
              relax_start (offset_expr.X_add_symbol);
-             if (! mips_big_got)
+             if (!mips_big_got)
                {
                  macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
                               PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
@@ -6323,7 +7855,7 @@ macro (struct mips_cl_insn *ip)
                  int gpdelay;
 
                  gpdelay = reg_needs_delay (mips_gp_register);
-                 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
+                 macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
                               BFD_RELOC_MIPS_CALL_HI16);
                  macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
                               PIC_CALL_REG, mips_gp_register);
@@ -6342,19 +7874,19 @@ macro (struct mips_cl_insn *ip)
              macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
                           PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
              relax_end ();
-             macro_build_jalr (&offset_expr);
+             macro_build_jalr (&offset_expr, mips_cprestore_offset >= 0);
 
              if (mips_cprestore_offset < 0)
                as_warn (_("No .cprestore pseudo-op used in PIC code"));
              else
                {
-                 if (! mips_frame_reg_valid)
+                 if (!mips_frame_reg_valid)
                    {
                      as_warn (_("No .frame pseudo-op used in PIC code"));
                      /* Quiet this warning.  */
                      mips_frame_reg_valid = 1;
                    }
-                 if (! mips_cprestore_valid)
+                 if (!mips_cprestore_valid)
                    {
                      as_warn (_("No .cprestore pseudo-op used in PIC code"));
                      /* Quiet this warning.  */
@@ -6377,187 +7909,369 @@ macro (struct mips_cl_insn *ip)
 
       break;
 
+    case M_ACLR_AB:
+      ab = 1;
+    case M_ACLR_OB:
+      s = "aclr";
+      treg = EXTRACT_OPERAND (mips_opts.micromips, 3BITPOS, *ip);
+      fmt = "\\,~(b)";
+      off12 = 1;
+      goto ld_st;
+    case M_ASET_AB:
+      ab = 1;
+    case M_ASET_OB:
+      s = "aset";
+      treg = EXTRACT_OPERAND (mips_opts.micromips, 3BITPOS, *ip);
+      fmt = "\\,~(b)";
+      off12 = 1;
+      goto ld_st;
     case M_LB_AB:
+      ab = 1;
       s = "lb";
+      fmt = "t,o(b)";
       goto ld;
     case M_LBU_AB:
+      ab = 1;
       s = "lbu";
+      fmt = "t,o(b)";
       goto ld;
     case M_LH_AB:
+      ab = 1;
       s = "lh";
+      fmt = "t,o(b)";
       goto ld;
     case M_LHU_AB:
+      ab = 1;
       s = "lhu";
+      fmt = "t,o(b)";
       goto ld;
     case M_LW_AB:
+      ab = 1;
       s = "lw";
+      fmt = "t,o(b)";
       goto ld;
     case M_LWC0_AB:
+      ab = 1;
+      gas_assert (!mips_opts.micromips);
       s = "lwc0";
+      fmt = "E,o(b)";
       /* Itbl support may require additional care here.  */
       coproc = 1;
-      goto ld;
+      goto ld_st;
     case M_LWC1_AB:
+      ab = 1;
       s = "lwc1";
+      fmt = "T,o(b)";
       /* Itbl support may require additional care here.  */
       coproc = 1;
-      goto ld;
+      goto ld_st;
     case M_LWC2_AB:
+      ab = 1;
+    case M_LWC2_OB:
       s = "lwc2";
+      fmt = COP12_FMT;
+      off12 = mips_opts.micromips;
       /* Itbl support may require additional care here.  */
       coproc = 1;
-      goto ld;
+      goto ld_st;
     case M_LWC3_AB:
+      ab = 1;
+      gas_assert (!mips_opts.micromips);
       s = "lwc3";
+      fmt = "E,o(b)";
       /* Itbl support may require additional care here.  */
       coproc = 1;
-      goto ld;
+      goto ld_st;
     case M_LWL_AB:
+      ab = 1;
+    case M_LWL_OB:
       s = "lwl";
-      lr = 1;
-      goto ld;
+      fmt = MEM12_FMT;
+      off12 = mips_opts.micromips;
+      goto ld_st;
     case M_LWR_AB:
+      ab = 1;
+    case M_LWR_OB:
       s = "lwr";
-      lr = 1;
-      goto ld;
+      fmt = MEM12_FMT;
+      off12 = mips_opts.micromips;
+      goto ld_st;
     case M_LDC1_AB:
+      ab = 1;
       s = "ldc1";
+      fmt = "T,o(b)";
       /* Itbl support may require additional care here.  */
       coproc = 1;
-      goto ld;
+      goto ld_st;
     case M_LDC2_AB:
+      ab = 1;
+    case M_LDC2_OB:
       s = "ldc2";
+      fmt = COP12_FMT;
+      off12 = mips_opts.micromips;
       /* Itbl support may require additional care here.  */
       coproc = 1;
-      goto ld;
+      goto ld_st;
     case M_LDC3_AB:
+      ab = 1;
       s = "ldc3";
+      fmt = "E,o(b)";
       /* Itbl support may require additional care here.  */
       coproc = 1;
-      goto ld;
+      goto ld_st;
     case M_LDL_AB:
+      ab = 1;
+    case M_LDL_OB:
       s = "ldl";
-      lr = 1;
-      goto ld;
+      fmt = MEM12_FMT;
+      off12 = mips_opts.micromips;
+      goto ld_st;
     case M_LDR_AB:
+      ab = 1;
+    case M_LDR_OB:
       s = "ldr";
-      lr = 1;
-      goto ld;
+      fmt = MEM12_FMT;
+      off12 = mips_opts.micromips;
+      goto ld_st;
     case M_LL_AB:
+      ab = 1;
+    case M_LL_OB:
       s = "ll";
+      fmt = MEM12_FMT;
+      off12 = mips_opts.micromips;
       goto ld;
     case M_LLD_AB:
+      ab = 1;
+    case M_LLD_OB:
       s = "lld";
+      fmt = MEM12_FMT;
+      off12 = mips_opts.micromips;
       goto ld;
     case M_LWU_AB:
+      ab = 1;
+    case M_LWU_OB:
       s = "lwu";
+      fmt = MEM12_FMT;
+      off12 = mips_opts.micromips;
+      goto ld;
+    case M_LWP_AB:
+      ab = 1;
+    case M_LWP_OB:
+      gas_assert (mips_opts.micromips);
+      s = "lwp";
+      fmt = "t,~(b)";
+      off12 = 1;
+      lp = 1;
+      goto ld;
+    case M_LDP_AB:
+      ab = 1;
+    case M_LDP_OB:
+      gas_assert (mips_opts.micromips);
+      s = "ldp";
+      fmt = "t,~(b)";
+      off12 = 1;
+      lp = 1;
+      goto ld;
+    case M_LWM_AB:
+      ab = 1;
+    case M_LWM_OB:
+      gas_assert (mips_opts.micromips);
+      s = "lwm";
+      fmt = "n,~(b)";
+      off12 = 1;
+      goto ld_st;
+    case M_LDM_AB:
+      ab = 1;
+    case M_LDM_OB:
+      gas_assert (mips_opts.micromips);
+      s = "ldm";
+      fmt = "n,~(b)";
+      off12 = 1;
+      goto ld_st;
+
     ld:
-      if (breg == treg || coproc || lr)
-       {
-         tempreg = AT;
-         used_at = 1;
-       }
+      if (breg == treg + lp)
+       goto ld_st;
       else
-       {
-         tempreg = treg;
-       }
-      goto ld_st;
+       tempreg = treg + lp;
+      goto ld_noat;
+
     case M_SB_AB:
+      ab = 1;
       s = "sb";
-      goto st;
+      fmt = "t,o(b)";
+      goto ld_st;
     case M_SH_AB:
+      ab = 1;
       s = "sh";
-      goto st;
+      fmt = "t,o(b)";
+      goto ld_st;
     case M_SW_AB:
+      ab = 1;
       s = "sw";
-      goto st;
+      fmt = "t,o(b)";
+      goto ld_st;
     case M_SWC0_AB:
+      ab = 1;
+      gas_assert (!mips_opts.micromips);
       s = "swc0";
+      fmt = "E,o(b)";
       /* Itbl support may require additional care here.  */
       coproc = 1;
-      goto st;
+      goto ld_st;
     case M_SWC1_AB:
+      ab = 1;
       s = "swc1";
+      fmt = "T,o(b)";
       /* Itbl support may require additional care here.  */
       coproc = 1;
-      goto st;
+      goto ld_st;
     case M_SWC2_AB:
+      ab = 1;
+    case M_SWC2_OB:
       s = "swc2";
+      fmt = COP12_FMT;
+      off12 = mips_opts.micromips;
       /* Itbl support may require additional care here.  */
       coproc = 1;
-      goto st;
+      goto ld_st;
     case M_SWC3_AB:
+      ab = 1;
+      gas_assert (!mips_opts.micromips);
       s = "swc3";
+      fmt = "E,o(b)";
       /* Itbl support may require additional care here.  */
       coproc = 1;
-      goto st;
+      goto ld_st;
     case M_SWL_AB:
+      ab = 1;
+    case M_SWL_OB:
       s = "swl";
-      goto st;
+      fmt = MEM12_FMT;
+      off12 = mips_opts.micromips;
+      goto ld_st;
     case M_SWR_AB:
+      ab = 1;
+    case M_SWR_OB:
       s = "swr";
-      goto st;
+      fmt = MEM12_FMT;
+      off12 = mips_opts.micromips;
+      goto ld_st;
     case M_SC_AB:
+      ab = 1;
+    case M_SC_OB:
       s = "sc";
-      goto st;
+      fmt = MEM12_FMT;
+      off12 = mips_opts.micromips;
+      goto ld_st;
     case M_SCD_AB:
+      ab = 1;
+    case M_SCD_OB:
       s = "scd";
-      goto st;
+      fmt = MEM12_FMT;
+      off12 = mips_opts.micromips;
+      goto ld_st;
     case M_CACHE_AB:
+      ab = 1;
+    case M_CACHE_OB:
       s = "cache";
-      goto st;
+      fmt = mips_opts.micromips ? "k,~(b)" : "k,o(b)";
+      off12 = mips_opts.micromips;
+      goto ld_st;
+    case M_PREF_AB:
+      ab = 1;
+    case M_PREF_OB:
+      s = "pref";
+      fmt = !mips_opts.micromips ? "k,o(b)" : "k,~(b)";
+      off12 = mips_opts.micromips;
+      goto ld_st;
     case M_SDC1_AB:
+      ab = 1;
       s = "sdc1";
+      fmt = "T,o(b)";
       coproc = 1;
       /* Itbl support may require additional care here.  */
-      goto st;
+      goto ld_st;
     case M_SDC2_AB:
+      ab = 1;
+    case M_SDC2_OB:
       s = "sdc2";
+      fmt = COP12_FMT;
+      off12 = mips_opts.micromips;
       /* Itbl support may require additional care here.  */
       coproc = 1;
-      goto st;
+      goto ld_st;
     case M_SDC3_AB:
+      ab = 1;
+      gas_assert (!mips_opts.micromips);
       s = "sdc3";
+      fmt = "E,o(b)";
       /* Itbl support may require additional care here.  */
       coproc = 1;
-      goto st;
+      goto ld_st;
     case M_SDL_AB:
+      ab = 1;
+    case M_SDL_OB:
       s = "sdl";
-      goto st;
+      fmt = MEM12_FMT;
+      off12 = mips_opts.micromips;
+      goto ld_st;
     case M_SDR_AB:
+      ab = 1;
+    case M_SDR_OB:
       s = "sdr";
-    st:
+      fmt = MEM12_FMT;
+      off12 = mips_opts.micromips;
+      goto ld_st;
+    case M_SWP_AB:
+      ab = 1;
+    case M_SWP_OB:
+      gas_assert (mips_opts.micromips);
+      s = "swp";
+      fmt = "t,~(b)";
+      off12 = 1;
+      goto ld_st;
+    case M_SDP_AB:
+      ab = 1;
+    case M_SDP_OB:
+      gas_assert (mips_opts.micromips);
+      s = "sdp";
+      fmt = "t,~(b)";
+      off12 = 1;
+      goto ld_st;
+    case M_SWM_AB:
+      ab = 1;
+    case M_SWM_OB:
+      gas_assert (mips_opts.micromips);
+      s = "swm";
+      fmt = "n,~(b)";
+      off12 = 1;
+      goto ld_st;
+    case M_SDM_AB:
+      ab = 1;
+    case M_SDM_OB:
+      gas_assert (mips_opts.micromips);
+      s = "sdm";
+      fmt = "n,~(b)";
+      off12 = 1;
+
+    ld_st:
       tempreg = AT;
       used_at = 1;
-    ld_st:
+    ld_noat:
       if (coproc
          && NO_ISA_COP (mips_opts.arch)
          && (ip->insn_mo->pinfo2 & (INSN2_M_FP_S | INSN2_M_FP_D)) == 0)
        {
-         as_bad (_("opcode not supported on this processor: %s"),
+         as_bad (_("Opcode not supported on this processor: %s"),
                  mips_cpu_info_from_arch (mips_opts.arch)->name);
          break;
        }
 
-      /* Itbl support may require additional care here.  */
-      if (mask == M_LWC1_AB
-         || mask == M_SWC1_AB
-         || mask == M_LDC1_AB
-         || mask == M_SDC1_AB
-         || mask == M_L_DAB
-         || mask == M_S_DAB)
-       fmt = "T,o(b)";
-      else if (mask == M_CACHE_AB)
-       fmt = "k,o(b)";
-      else if (coproc)
-       fmt = "E,o(b)";
-      else
-       fmt = "t,o(b)";
-
       if (offset_expr.X_op != O_constant
          && offset_expr.X_op != O_symbol)
        {
-         as_bad (_("expression too complex"));
+         as_bad (_("Expression too complex"));
          offset_expr.X_op = O_constant;
        }
 
@@ -6574,14 +8288,72 @@ macro (struct mips_cl_insn *ip)
         is in non PIC code.  */
       if (offset_expr.X_op == O_constant)
        {
-         expr1.X_add_number = ((offset_expr.X_add_number + 0x8000)
-                               & ~(bfd_vma) 0xffff);
+         int hipart = 0;
+
+         expr1.X_add_number = offset_expr.X_add_number;
          normalize_address_expr (&expr1);
-         load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
-         if (breg != 0)
-           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
-                        tempreg, tempreg, breg);
-         macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, tempreg);
+         if (!off12 && !IS_SEXT_16BIT_NUM (expr1.X_add_number))
+           {
+             expr1.X_add_number = ((expr1.X_add_number + 0x8000)
+                                   & ~(bfd_vma) 0xffff);
+             hipart = 1;
+           }
+         else if (off12 && !IS_SEXT_12BIT_NUM (expr1.X_add_number))
+           {
+             expr1.X_add_number = ((expr1.X_add_number + 0x800)
+                                   & ~(bfd_vma) 0xfff);
+             hipart = 1;
+           }
+         if (hipart)
+           {
+             load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
+             if (breg != 0)
+               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
+                            tempreg, tempreg, breg);
+             breg = tempreg;
+           }
+         if (off0)
+           {
+             if (offset_expr.X_add_number == 0)
+               tempreg = breg;
+             else
+               macro_build (&offset_expr, ADDRESS_ADDI_INSN,
+                            "t,r,j", tempreg, breg, BFD_RELOC_LO16);
+             macro_build (NULL, s, fmt, treg, tempreg);
+           }
+         else if (!off12)
+           macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, breg);
+         else
+           macro_build (NULL, s, fmt,
+                        treg, (unsigned long) offset_expr.X_add_number, breg);
+       }
+      else if (off12 || off0)
+       {
+         /* A 12-bit or 0-bit offset field is too narrow to be used
+            for a low-part relocation, so load the whole address into
+            the auxillary register.  In the case of "A(b)" addresses,
+            we first load absolute address "A" into the register and
+            then add base register "b".  In the case of "o(b)" addresses,
+            we simply need to add 16-bit offset "o" to base register "b", and
+            offset_reloc already contains the relocations associated
+            with "o".  */
+         if (ab)
+           {
+             load_address (tempreg, &offset_expr, &used_at);
+             if (breg != 0)
+               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
+                            tempreg, tempreg, breg);
+           }
+         else
+           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
+                        tempreg, breg, -1,
+                        offset_reloc[0], offset_reloc[1], offset_reloc[2]);
+         expr1.X_add_number = 0;
+         if (off0)
+           macro_build (NULL, s, fmt, treg, tempreg);
+         else
+           macro_build (NULL, s, fmt,
+                        treg, (unsigned long) expr1.X_add_number, tempreg);
        }
       else if (mips_pic == NO_PIC)
        {
@@ -6663,15 +8435,15 @@ macro (struct mips_cl_insn *ip)
 
              if (used_at == 0 && mips_opts.at)
                {
-                 macro_build (&offset_expr, "lui", "t,u", tempreg,
+                 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
                               BFD_RELOC_MIPS_HIGHEST);
-                 macro_build (&offset_expr, "lui", "t,u", AT,
+                 macro_build (&offset_expr, "lui", LUI_FMT, AT,
                               BFD_RELOC_HI16_S);
                  macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
                               tempreg, BFD_RELOC_MIPS_HIGHER);
                  if (breg != 0)
                    macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
-                 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
+                 macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
                  macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
                  macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16,
                               tempreg);
@@ -6679,14 +8451,14 @@ macro (struct mips_cl_insn *ip)
                }
              else
                {
-                 macro_build (&offset_expr, "lui", "t,u", tempreg,
+                 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
                               BFD_RELOC_MIPS_HIGHEST);
                  macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
                               tempreg, BFD_RELOC_MIPS_HIGHER);
-                 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
+                 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
                  macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
                               tempreg, BFD_RELOC_HI16_S);
-                 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
+                 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
                  if (breg != 0)
                    macro_build (NULL, "daddu", "d,v,t",
                                 tempreg, tempreg, breg);
@@ -6818,7 +8590,7 @@ macro (struct mips_cl_insn *ip)
            as_bad (_("PIC code offset overflow (max 16 signed bits)"));
          gpdelay = reg_needs_delay (mips_gp_register);
          relax_start (offset_expr.X_add_symbol);
-         macro_build (&offset_expr, "lui", "t,u", tempreg,
+         macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
                       BFD_RELOC_MIPS_GOT_HI16);
          macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
                       mips_gp_register);
@@ -6856,7 +8628,7 @@ macro (struct mips_cl_insn *ip)
              || expr1.X_add_number >= 0x8000)
            as_bad (_("PIC code offset overflow (max 16 signed bits)"));
          relax_start (offset_expr.X_add_symbol);
-         macro_build (&offset_expr, "lui", "t,u", tempreg,
+         macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
                       BFD_RELOC_MIPS_GOT_HI16);
          macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
                       mips_gp_register);
@@ -6903,10 +8675,10 @@ macro (struct mips_cl_insn *ip)
       else
        {
          gas_assert (offset_expr.X_op == O_symbol
-                 && strcmp (segment_name (S_GET_SEGMENT
-                                          (offset_expr.X_add_symbol)),
-                            ".lit4") == 0
-                 && offset_expr.X_add_number == 0);
+                     && strcmp (segment_name (S_GET_SEGMENT
+                                              (offset_expr.X_add_symbol)),
+                                ".lit4") == 0
+                     && offset_expr.X_add_number == 0);
          macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
                       BFD_RELOC_MIPS_LITERAL, mips_gp_register);
          break;
@@ -7018,11 +8790,11 @@ macro (struct mips_cl_insn *ip)
        }
 
       gas_assert (offset_expr.X_op == O_symbol
-             && offset_expr.X_add_number == 0);
+                 && offset_expr.X_add_number == 0);
       s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
       if (strcmp (s, ".lit8") == 0)
        {
-         if (mips_opts.isa != ISA_MIPS1)
+         if (mips_opts.isa != ISA_MIPS1 || mips_opts.micromips)
            {
              macro_build (&offset_expr, "ldc1", "T,o(b)", treg,
                           BFD_RELOC_MIPS_LITERAL, mips_gp_register);
@@ -7045,7 +8817,7 @@ macro (struct mips_cl_insn *ip)
              macro_build_lui (&offset_expr, AT);
            }
 
-         if (mips_opts.isa != ISA_MIPS1)
+         if (mips_opts.isa != ISA_MIPS1 || mips_opts.micromips)
            {
              macro_build (&offset_expr, "ldc1", "T,o(b)",
                           treg, BFD_RELOC_LO16, AT);
@@ -7061,6 +8833,7 @@ macro (struct mips_cl_insn *ip)
         to adjust when loading from memory.  */
       r = BFD_RELOC_LO16;
     dob:
+      gas_assert (!mips_opts.micromips);
       gas_assert (mips_opts.isa == ISA_MIPS1);
       macro_build (&offset_expr, "lwc1", "T,o(b)",
                   target_big_endian ? treg + 1 : treg, r, breg);
@@ -7071,7 +8844,20 @@ macro (struct mips_cl_insn *ip)
                   target_big_endian ? treg : treg + 1, r, breg);
       break;
 
+    case M_S_DOB:
+      gas_assert (!mips_opts.micromips);
+      gas_assert (mips_opts.isa == ISA_MIPS1);
+      /* Even on a big endian machine $fn comes before $fn+1.  We have
+        to adjust when storing to memory.  */
+      macro_build (&offset_expr, "swc1", "T,o(b)",
+                  target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg);
+      offset_expr.X_add_number += 4;
+      macro_build (&offset_expr, "swc1", "T,o(b)",
+                  target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg);
+      break;
+
     case M_L_DAB:
+      gas_assert (!mips_opts.micromips);
       /*
        * The MIPS assembler seems to check for X_add_number not
        * being double aligned and generating:
@@ -7085,55 +8871,52 @@ macro (struct mips_cl_insn *ip)
        */
       /* Itbl support may require additional care here.  */
       coproc = 1;
+      fmt = "T,o(b)";
       if (mips_opts.isa != ISA_MIPS1)
        {
          s = "ldc1";
-         goto ld;
+         goto ld_st;
        }
-
       s = "lwc1";
-      fmt = "T,o(b)";
       goto ldd_std;
 
     case M_S_DAB:
+      gas_assert (!mips_opts.micromips);
+      /* Itbl support may require additional care here.  */
+      coproc = 1;
+      fmt = "T,o(b)";
       if (mips_opts.isa != ISA_MIPS1)
        {
          s = "sdc1";
-         goto st;
+         goto ld_st;
        }
-
       s = "swc1";
-      fmt = "T,o(b)";
-      /* Itbl support may require additional care here.  */
-      coproc = 1;
       goto ldd_std;
 
     case M_LD_AB:
+      fmt = "t,o(b)";
       if (HAVE_64BIT_GPRS)
        {
          s = "ld";
          goto ld;
        }
-
       s = "lw";
-      fmt = "t,o(b)";
       goto ldd_std;
 
     case M_SD_AB:
+      fmt = "t,o(b)";
       if (HAVE_64BIT_GPRS)
        {
          s = "sd";
-         goto st;
+         goto ld_st;
        }
-
       s = "sw";
-      fmt = "t,o(b)";
 
     ldd_std:
       if (offset_expr.X_op != O_symbol
          && offset_expr.X_op != O_constant)
        {
-         as_bad (_("expression too complex"));
+         as_bad (_("Expression too complex"));
          offset_expr.X_op = O_constant;
        }
 
@@ -7150,11 +8933,10 @@ macro (struct mips_cl_insn *ip)
         to adjust when loading from memory.  We set coproc if we must
         load $fn+1 first.  */
       /* Itbl support may require additional care here.  */
-      if (! target_big_endian)
+      if (!target_big_endian)
        coproc = 0;
 
-      if (mips_pic == NO_PIC
-         || offset_expr.X_op == O_constant)
+      if (mips_pic == NO_PIC || offset_expr.X_op == O_constant)
        {
          /* If this is a reference to a GP relative symbol, we want
               <op>     $treg,<sym>($gp)        (BFD_RELOC_GPREL16)
@@ -7203,26 +8985,7 @@ macro (struct mips_cl_insn *ip)
 
              relax_switch ();
 
-             /* We just generated two relocs.  When tc_gen_reloc
-                handles this case, it will skip the first reloc and
-                handle the second.  The second reloc already has an
-                extra addend of 4, which we added above.  We must
-                subtract it out, and then subtract another 4 to make
-                the first reloc come out right.  The second reloc
-                will come out right because we are going to add 4 to
-                offset_expr when we build its instruction below.
-
-                If we have a symbol, then we don't want to include
-                the offset, because it will wind up being included
-                when we generate the reloc.  */
-
-             if (offset_expr.X_op == O_constant)
-               offset_expr.X_add_number -= 8;
-             else
-               {
-                 offset_expr.X_add_number = -4;
-                 offset_expr.X_op = O_constant;
-               }
+             offset_expr.X_add_number -= 4;
            }
          used_at = 1;
          macro_build_lui (&offset_expr, AT);
@@ -7313,7 +9076,7 @@ macro (struct mips_cl_insn *ip)
            as_bad (_("PIC code offset overflow (max 16 signed bits)"));
          gpdelay = reg_needs_delay (mips_gp_register);
          relax_start (offset_expr.X_add_symbol);
-         macro_build (&offset_expr, "lui", "t,u",
+         macro_build (&offset_expr, "lui", LUI_FMT,
                       AT, BFD_RELOC_MIPS_GOT_HI16);
          macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
                       AT, AT, mips_gp_register);
@@ -7372,15 +9135,34 @@ macro (struct mips_cl_insn *ip)
     case M_SD_OB:
       s = HAVE_64BIT_GPRS ? "sd" : "sw";
     sd_ob:
-      macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
+      macro_build (&offset_expr, s, "t,o(b)", treg,
+                  -1, offset_reloc[0], offset_reloc[1], offset_reloc[2],
+                  breg);
       if (!HAVE_64BIT_GPRS)
        {
          offset_expr.X_add_number += 4;
          macro_build (&offset_expr, s, "t,o(b)", treg + 1,
-                      BFD_RELOC_LO16, breg);
+                      -1, offset_reloc[0], offset_reloc[1], offset_reloc[2],
+                      breg);
        }
       break;
 
+       
+    case M_SAA_AB:
+      ab = 1;
+    case M_SAA_OB:
+      s = "saa";
+      off0 = 1;
+      fmt = "t,(b)";
+      goto ld_st;
+    case M_SAAD_AB:
+      ab = 1;
+    case M_SAAD_OB:
+      s = "saad";
+      off0 = 1;
+      fmt = "t,(b)";
+      goto ld_st;
+
    /* New code added to support COPZ instructions.
       This code builds table entries out of the macros in mip_opcodes.
       R4000 uses interlocks to handle coproc delays.
@@ -7410,10 +9192,11 @@ macro (struct mips_cl_insn *ip)
     case M_COP3:
       s = "c3";
     copz:
+      gas_assert (!mips_opts.micromips);
       if (NO_ISA_COP (mips_opts.arch)
          && (ip->insn_mo->pinfo2 & INSN2_M_FP_S) == 0)
        {
-         as_bad (_("opcode not supported on this processor: %s"),
+         as_bad (_("Opcode not supported on this processor: %s"),
                  mips_cpu_info_from_arch (mips_opts.arch)->name);
          break;
        }
@@ -7427,71 +9210,11 @@ macro (struct mips_cl_insn *ip)
       move_register (dreg, sreg);
       break;
 
-#ifdef LOSING_COMPILER
-    default:
-      /* Try and see if this is a new itbl instruction.
-         This code builds table entries out of the macros in mip_opcodes.
-         FIXME: For now we just assemble the expression and pass it's
-         value along as a 32-bit immediate.
-         We may want to have the assembler assemble this value,
-         so that we gain the assembler's knowledge of delay slots,
-         symbols, etc.
-         Would it be more efficient to use mask (id) here? */
-      if (itbl_have_entries
-         && (immed_expr = itbl_assemble (ip->insn_mo->name, "")))
-       {
-         s = ip->insn_mo->name;
-         s2 = "cop3";
-         coproc = ITBL_DECODE_PNUM (immed_expr);;
-         macro_build (&immed_expr, s, "C");
-         break;
-       }
-      macro2 (ip);
-      break;
-    }
-  if (!mips_opts.at && used_at)
-    as_bad (_("Macro used $at after \".set noat\""));
-}
-
-static void
-macro2 (struct mips_cl_insn *ip)
-{
-  unsigned int treg, sreg, dreg, breg;
-  unsigned int tempreg;
-  int mask;
-  int used_at;
-  expressionS expr1;
-  const char *s;
-  const char *s2;
-  const char *fmt;
-  int likely = 0;
-  int dbl = 0;
-  int coproc = 0;
-  int lr = 0;
-  int imm = 0;
-  int off;
-  offsetT maxnum;
-  bfd_reloc_code_real_type r;
-
-  treg = (ip->insn_opcode >> 16) & 0x1f;
-  dreg = (ip->insn_opcode >> 11) & 0x1f;
-  sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
-  mask = ip->insn_mo->mask;
-
-  expr1.X_op = O_constant;
-  expr1.X_op_symbol = NULL;
-  expr1.X_add_symbol = NULL;
-  expr1.X_add_number = 1;
-
-  switch (mask)
-    {
-#endif /* LOSING_COMPILER */
-
-    case M_DMUL:
-      dbl = 1;
-    case M_MUL:
-      macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
-      macro_build (NULL, "mflo", "d", dreg);
+    case M_DMUL:
+      dbl = 1;
+    case M_MUL:
+      macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
+      macro_build (NULL, "mflo", MFHL_FMT, dreg);
       break;
 
     case M_DMUL_I:
@@ -7503,7 +9226,7 @@ macro2 (struct mips_cl_insn *ip)
       used_at = 1;
       load_register (AT, &imm_expr, dbl);
       macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT);
-      macro_build (NULL, "mflo", "d", dreg);
+      macro_build (NULL, "mflo", MFHL_FMT, dreg);
       break;
 
     case M_DMULO_I:
@@ -7521,20 +9244,25 @@ macro2 (struct mips_cl_insn *ip)
       if (imm)
        load_register (AT, &imm_expr, dbl);
       macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
-      macro_build (NULL, "mflo", "d", dreg);
-      macro_build (NULL, dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA);
-      macro_build (NULL, "mfhi", "d", AT);
+      macro_build (NULL, "mflo", MFHL_FMT, dreg);
+      macro_build (NULL, dbl ? "dsra32" : "sra", SHFT_FMT, dreg, dreg, RA);
+      macro_build (NULL, "mfhi", MFHL_FMT, AT);
       if (mips_trap)
-       macro_build (NULL, "tne", "s,t,q", dreg, AT, 6);
+       macro_build (NULL, "tne", TRAP_FMT, dreg, AT, 6);
       else
        {
-         expr1.X_add_number = 8;
-         macro_build (&expr1, "beq", "s,t,p", dreg, AT);
-         macro_build (NULL, "nop", "", 0);
-         macro_build (NULL, "break", "c", 6);
+         if (mips_opts.micromips)
+           micromips_label_expr (&label_expr);
+         else
+           label_expr.X_add_number = 8;
+         macro_build (&label_expr, "beq", "s,t,p", dreg, AT);
+         macro_build (NULL, "nop", "");
+         macro_build (NULL, "break", BRK_FMT, 6);
+         if (mips_opts.micromips)
+           micromips_add_label ();
        }
       end_noreorder ();
-      macro_build (NULL, "mflo", "d", dreg);
+      macro_build (NULL, "mflo", MFHL_FMT, dreg);
       break;
 
     case M_DMULOU_I:
@@ -7553,16 +9281,21 @@ macro2 (struct mips_cl_insn *ip)
        load_register (AT, &imm_expr, dbl);
       macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
                   sreg, imm ? AT : treg);
-      macro_build (NULL, "mfhi", "d", AT);
-      macro_build (NULL, "mflo", "d", dreg);
+      macro_build (NULL, "mfhi", MFHL_FMT, AT);
+      macro_build (NULL, "mflo", MFHL_FMT, dreg);
       if (mips_trap)
-       macro_build (NULL, "tne", "s,t,q", AT, 0, 6);
+       macro_build (NULL, "tne", TRAP_FMT, AT, ZERO, 6);
       else
        {
-         expr1.X_add_number = 8;
-         macro_build (&expr1, "beq", "s,t,p", AT, 0);
-         macro_build (NULL, "nop", "", 0);
-         macro_build (NULL, "break", "c", 6);
+         if (mips_opts.micromips)
+           micromips_label_expr (&label_expr);
+         else
+           label_expr.X_add_number = 8;
+         macro_build (&label_expr, "beq", "s,t,p", AT, ZERO);
+         macro_build (NULL, "nop", "");
+         macro_build (NULL, "break", BRK_FMT, 6);
+         if (mips_opts.micromips)
+           micromips_add_label ();
        }
       end_noreorder ();
       break;
@@ -7584,7 +9317,7 @@ macro2 (struct mips_cl_insn *ip)
          break;
        }
       used_at = 1;
-      macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg);
+      macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
       macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT);
       macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg);
       macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
@@ -7607,7 +9340,7 @@ macro2 (struct mips_cl_insn *ip)
          break;
        }
       used_at = 1;
-      macro_build (NULL, "subu", "d,v,t", AT, 0, treg);
+      macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
       macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT);
       macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg);
       macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
@@ -7626,22 +9359,22 @@ macro2 (struct mips_cl_insn *ip)
          {
            rot = (64 - rot) & 0x3f;
            if (rot >= 32)
-             macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
+             macro_build (NULL, "dror32", SHFT_FMT, dreg, sreg, rot - 32);
            else
-             macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
+             macro_build (NULL, "dror", SHFT_FMT, dreg, sreg, rot);
            break;
          }
        if (rot == 0)
          {
-           macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
+           macro_build (NULL, "dsrl", SHFT_FMT, dreg, sreg, 0);
            break;
          }
        l = (rot < 0x20) ? "dsll" : "dsll32";
        rr = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
        rot &= 0x1f;
        used_at = 1;
-       macro_build (NULL, l, "d,w,<", AT, sreg, rot);
-       macro_build (NULL, rr, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
+       macro_build (NULL, l, SHFT_FMT, AT, sreg, rot);
+       macro_build (NULL, rr, SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
        macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
       }
       break;
@@ -7655,17 +9388,17 @@ macro2 (struct mips_cl_insn *ip)
        rot = imm_expr.X_add_number & 0x1f;
        if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
          {
-           macro_build (NULL, "ror", "d,w,<", dreg, sreg, (32 - rot) & 0x1f);
+           macro_build (NULL, "ror", SHFT_FMT, dreg, sreg, (32 - rot) & 0x1f);
            break;
          }
        if (rot == 0)
          {
-           macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
+           macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, 0);
            break;
          }
        used_at = 1;
-       macro_build (NULL, "sll", "d,w,<", AT, sreg, rot);
-       macro_build (NULL, "srl", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
+       macro_build (NULL, "sll", SHFT_FMT, AT, sreg, rot);
+       macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
        macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
       }
       break;
@@ -7677,7 +9410,7 @@ macro2 (struct mips_cl_insn *ip)
          break;
        }
       used_at = 1;
-      macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg);
+      macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
       macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT);
       macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
       macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
@@ -7690,7 +9423,7 @@ macro2 (struct mips_cl_insn *ip)
          break;
        }
       used_at = 1;
-      macro_build (NULL, "subu", "d,v,t", AT, 0, treg);
+      macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
       macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT);
       macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg);
       macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
@@ -7708,22 +9441,22 @@ macro2 (struct mips_cl_insn *ip)
        if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
          {
            if (rot >= 32)
-             macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
+             macro_build (NULL, "dror32", SHFT_FMT, dreg, sreg, rot - 32);
            else
-             macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
+             macro_build (NULL, "dror", SHFT_FMT, dreg, sreg, rot);
            break;
          }
        if (rot == 0)
          {
-           macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
+           macro_build (NULL, "dsrl", SHFT_FMT, dreg, sreg, 0);
            break;
          }
        rr = (rot < 0x20) ? "dsrl" : "dsrl32";
        l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
        rot &= 0x1f;
        used_at = 1;
-       macro_build (NULL, rr, "d,w,<", AT, sreg, rot);
-       macro_build (NULL, l, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
+       macro_build (NULL, rr, SHFT_FMT, AT, sreg, rot);
+       macro_build (NULL, l, SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
        macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
       }
       break;
@@ -7737,32 +9470,21 @@ macro2 (struct mips_cl_insn *ip)
        rot = imm_expr.X_add_number & 0x1f;
        if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
          {
-           macro_build (NULL, "ror", "d,w,<", dreg, sreg, rot);
+           macro_build (NULL, "ror", SHFT_FMT, dreg, sreg, rot);
            break;
          }
        if (rot == 0)
          {
-           macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
+           macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, 0);
            break;
          }
        used_at = 1;
-       macro_build (NULL, "srl", "d,w,<", AT, sreg, rot);
-       macro_build (NULL, "sll", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
+       macro_build (NULL, "srl", SHFT_FMT, AT, sreg, rot);
+       macro_build (NULL, "sll", SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
        macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
       }
       break;
 
-    case M_S_DOB:
-      gas_assert (mips_opts.isa == ISA_MIPS1);
-      /* Even on a big endian machine $fn comes before $fn+1.  We have
-        to adjust when storing to memory.  */
-      macro_build (&offset_expr, "swc1", "T,o(b)",
-                  target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg);
-      offset_expr.X_add_number += 4;
-      macro_build (&offset_expr, "swc1", "T,o(b)",
-                  target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg);
-      break;
-
     case M_SEQ:
       if (sreg == 0)
        macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
@@ -7988,38 +9710,45 @@ macro2 (struct mips_cl_insn *ip)
       macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
       break;
 
+    case M_SUB_I:
+      s = "addi";
+      s2 = "sub";
+      goto do_subi;
+    case M_SUBU_I:
+      s = "addiu";
+      s2 = "subu";
+      goto do_subi;
     case M_DSUB_I:
       dbl = 1;
-    case M_SUB_I:
+      s = "daddi";
+      s2 = "dsub";
+      if (!mips_opts.micromips)
+       goto do_subi;
       if (imm_expr.X_op == O_constant
-         && imm_expr.X_add_number > -0x8000
-         && imm_expr.X_add_number <= 0x8000)
+         && imm_expr.X_add_number > -0x200
+         && imm_expr.X_add_number <= 0x200)
        {
-         imm_expr.X_add_number = -imm_expr.X_add_number;
-         macro_build (&imm_expr, dbl ? "daddi" : "addi", "t,r,j",
-                      dreg, sreg, BFD_RELOC_LO16);
+         macro_build (NULL, s, "t,r,.", dreg, sreg, -imm_expr.X_add_number);
          break;
        }
-      used_at = 1;
-      load_register (AT, &imm_expr, dbl);
-      macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
-      break;
-
+      goto do_subi_i;
     case M_DSUBU_I:
       dbl = 1;
-    case M_SUBU_I:
+      s = "daddiu";
+      s2 = "dsubu";
+    do_subi:
       if (imm_expr.X_op == O_constant
          && imm_expr.X_add_number > -0x8000
          && imm_expr.X_add_number <= 0x8000)
        {
          imm_expr.X_add_number = -imm_expr.X_add_number;
-         macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "t,r,j",
-                      dreg, sreg, BFD_RELOC_LO16);
+         macro_build (&imm_expr, s, "t,r,j", dreg, sreg, BFD_RELOC_LO16);
          break;
        }
+    do_subi_i:
       used_at = 1;
       load_register (AT, &imm_expr, dbl);
-      macro_build (NULL, dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
+      macro_build (NULL, s2, "d,v,t", dreg, sreg, AT);
       break;
 
     case M_TEQ_I:
@@ -8047,6 +9776,7 @@ macro2 (struct mips_cl_insn *ip)
 
     case M_TRUNCWS:
     case M_TRUNCWD:
+      gas_assert (!mips_opts.micromips);
       gas_assert (mips_opts.isa == ISA_MIPS1);
       used_at = 1;
       sreg = (ip->insn_opcode >> 11) & 0x1f;   /* floating reg */
@@ -8073,192 +9803,168 @@ macro2 (struct mips_cl_insn *ip)
       end_noreorder ();
       break;
 
+    case M_ULH_A:
+      ab = 1;
     case M_ULH:
       s = "lb";
-      goto ulh;
+      s2 = "lbu";
+      off = 1;
+      goto uld_st;
+    case M_ULHU_A:
+      ab = 1;
     case M_ULHU:
       s = "lbu";
-    ulh:
-      used_at = 1;
-      if (offset_expr.X_add_number >= 0x7fff)
-       as_bad (_("operand overflow"));
-      if (! target_big_endian)
-       ++offset_expr.X_add_number;
-      macro_build (&offset_expr, s, "t,o(b)", AT, BFD_RELOC_LO16, breg);
-      if (! target_big_endian)
-       --offset_expr.X_add_number;
-      else
-       ++offset_expr.X_add_number;
-      macro_build (&offset_expr, "lbu", "t,o(b)", treg, BFD_RELOC_LO16, breg);
-      macro_build (NULL, "sll", "d,w,<", AT, AT, 8);
-      macro_build (NULL, "or", "d,v,t", treg, treg, AT);
-      break;
-
-    case M_ULD:
-      s = "ldl";
-      s2 = "ldr";
-      off = 7;
-      goto ulw;
+      s2 = "lbu";
+      off = 1;
+      goto uld_st;
+    case M_ULW_A:
+      ab = 1;
     case M_ULW:
       s = "lwl";
       s2 = "lwr";
+      off12 = mips_opts.micromips;
       off = 3;
-    ulw:
-      if (offset_expr.X_add_number >= 0x8000 - off)
-       as_bad (_("operand overflow"));
-      if (treg != breg)
-       tempreg = treg;
-      else
-       {
-         used_at = 1;
-         tempreg = AT;
-       }
-      if (! target_big_endian)
-       offset_expr.X_add_number += off;
-      macro_build (&offset_expr, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
-      if (! target_big_endian)
-       offset_expr.X_add_number -= off;
-      else
-       offset_expr.X_add_number += off;
-      macro_build (&offset_expr, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
-
-      /* If necessary, move the result in tempreg the final destination.  */
-      if (treg == tempreg)
-        break;
-      /* Protect second load's delay slot.  */
-      load_delay_nop ();
-      move_register (treg, tempreg);
-      break;
-
+      goto uld_st;
     case M_ULD_A:
+      ab = 1;
+    case M_ULD:
       s = "ldl";
       s2 = "ldr";
+      off12 = mips_opts.micromips;
       off = 7;
-      goto ulwa;
-    case M_ULW_A:
-      s = "lwl";
-      s2 = "lwr";
-      off = 3;
-    ulwa:
-      used_at = 1;
-      load_address (AT, &offset_expr, &used_at);
-      if (breg != 0)
-       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
-      if (! target_big_endian)
-       expr1.X_add_number = off;
-      else
-       expr1.X_add_number = 0;
-      macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
-      if (! target_big_endian)
-       expr1.X_add_number = 0;
-      else
-       expr1.X_add_number = off;
-      macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
-      break;
-
-    case M_ULH_A:
-    case M_ULHU_A:
-      used_at = 1;
-      load_address (AT, &offset_expr, &used_at);
-      if (breg != 0)
-       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
-      if (target_big_endian)
-       expr1.X_add_number = 0;
-      macro_build (&expr1, mask == M_ULH_A ? "lb" : "lbu", "t,o(b)",
-                  treg, BFD_RELOC_LO16, AT);
-      if (target_big_endian)
-       expr1.X_add_number = 1;
-      else
-       expr1.X_add_number = 0;
-      macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
-      macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
-      macro_build (NULL, "or", "d,v,t", treg, treg, AT);
-      break;
-
+      goto uld_st;
+    case M_USH_A:
+      ab = 1;
     case M_USH:
-      used_at = 1;
-      if (offset_expr.X_add_number >= 0x7fff)
-       as_bad (_("operand overflow"));
-      if (target_big_endian)
-       ++offset_expr.X_add_number;
-      macro_build (&offset_expr, "sb", "t,o(b)", treg, BFD_RELOC_LO16, breg);
-      macro_build (NULL, "srl", "d,w,<", AT, treg, 8);
-      if (target_big_endian)
-       --offset_expr.X_add_number;
-      else
-       ++offset_expr.X_add_number;
-      macro_build (&offset_expr, "sb", "t,o(b)", AT, BFD_RELOC_LO16, breg);
-      break;
-
-    case M_USD:
-      s = "sdl";
-      s2 = "sdr";
-      off = 7;
-      goto usw;
+      s = "sb";
+      s2 = "sb";
+      off = 1;
+      ust = 1;
+      goto uld_st;
+    case M_USW_A:
+      ab = 1;
     case M_USW:
       s = "swl";
       s2 = "swr";
+      off12 = mips_opts.micromips;
       off = 3;
-    usw:
-      if (offset_expr.X_add_number >= 0x8000 - off)
-       as_bad (_("operand overflow"));
-      if (! target_big_endian)
-       offset_expr.X_add_number += off;
-      macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
-      if (! target_big_endian)
-       offset_expr.X_add_number -= off;
-      else
-       offset_expr.X_add_number += off;
-      macro_build (&offset_expr, s2, "t,o(b)", treg, BFD_RELOC_LO16, breg);
-      break;
-
+      ust = 1;
+      goto uld_st;
     case M_USD_A:
+      ab = 1;
+    case M_USD:
       s = "sdl";
       s2 = "sdr";
+      off12 = mips_opts.micromips;
       off = 7;
-      goto uswa;
-    case M_USW_A:
-      s = "swl";
-      s2 = "swr";
-      off = 3;
-    uswa:
-      used_at = 1;
-      load_address (AT, &offset_expr, &used_at);
-      if (breg != 0)
-       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
-      if (! target_big_endian)
-       expr1.X_add_number = off;
+      ust = 1;
+
+    uld_st:
+      if (!ab && offset_expr.X_add_number >= 0x8000 - off)
+       as_bad (_("Operand overflow"));
+
+      ep = &offset_expr;
+      expr1.X_add_number = 0;
+      if (ab)
+       {
+         used_at = 1;
+         tempreg = AT;
+         load_address (tempreg, ep, &used_at);
+         if (breg != 0)
+           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
+                        tempreg, tempreg, breg);
+         breg = tempreg;
+         tempreg = treg;
+         ep = &expr1;
+       }
+      else if (off12
+              && (offset_expr.X_op != O_constant
+                  || !IS_SEXT_12BIT_NUM (offset_expr.X_add_number)
+                  || !IS_SEXT_12BIT_NUM (offset_expr.X_add_number + off)))
+       {
+         used_at = 1;
+         tempreg = AT;
+         macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", tempreg, breg,
+                      -1, offset_reloc[0], offset_reloc[1], offset_reloc[2]);
+         breg = tempreg;
+         tempreg = treg;
+         ep = &expr1;
+       }
+      else if (!ust && treg == breg)
+       {
+         used_at = 1;
+         tempreg = AT;
+       }
+      else
+       tempreg = treg;
+
+      if (off == 1)
+       goto ulh_sh;
+
+      if (!target_big_endian)
+       ep->X_add_number += off;
+      if (!off12)
+       macro_build (ep, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
+      else
+       macro_build (NULL, s, "t,~(b)",
+                    tempreg, (unsigned long) ep->X_add_number, breg);
+
+      if (!target_big_endian)
+       ep->X_add_number -= off;
       else
-       expr1.X_add_number = 0;
-      macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
-      if (! target_big_endian)
-       expr1.X_add_number = 0;
+       ep->X_add_number += off;
+      if (!off12)
+       macro_build (ep, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
       else
-       expr1.X_add_number = off;
-      macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
+       macro_build (NULL, s2, "t,~(b)",
+                    tempreg, (unsigned long) ep->X_add_number, breg);
+
+      /* If necessary, move the result in tempreg to the final destination.  */
+      if (!ust && treg != tempreg)
+        {
+         /* Protect second load's delay slot.  */
+         load_delay_nop ();
+         move_register (treg, tempreg);
+       }
       break;
 
-    case M_USH_A:
+    ulh_sh:
       used_at = 1;
-      load_address (AT, &offset_expr, &used_at);
-      if (breg != 0)
-       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
-      if (! target_big_endian)
-       expr1.X_add_number = 0;
-      macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
-      macro_build (NULL, "srl", "d,w,<", treg, treg, 8);
-      if (! target_big_endian)
-       expr1.X_add_number = 1;
+      if (target_big_endian == ust)
+       ep->X_add_number += off;
+      tempreg = ust || ab ? treg : AT;
+      macro_build (ep, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
+
+      /* For halfword transfers we need a temporary register to shuffle
+         bytes.  Unfortunately for M_USH_A we have none available before
+         the next store as AT holds the base address.  We deal with this
+         case by clobbering TREG and then restoring it as with ULH.  */
+      tempreg = ust == ab ? treg : AT;
+      if (ust)
+       macro_build (NULL, "srl", SHFT_FMT, tempreg, treg, 8);
+
+      if (target_big_endian == ust)
+       ep->X_add_number -= off;
       else
-       expr1.X_add_number = 0;
-      macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
-      if (! target_big_endian)
-       expr1.X_add_number = 0;
-      else
-       expr1.X_add_number = 1;
-      macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
-      macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
-      macro_build (NULL, "or", "d,v,t", treg, treg, AT);
+       ep->X_add_number += off;
+      macro_build (ep, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
+
+      /* For M_USH_A re-retrieve the LSB.  */
+      if (ust && ab)
+       {
+         if (target_big_endian)
+           ep->X_add_number += off;
+         else
+           ep->X_add_number -= off;
+         macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
+       }
+      /* For ULH and M_USH_A OR the LSB in.  */
+      if (!ust || ab)
+       {
+         tempreg = !ab ? AT : treg;
+         macro_build (NULL, "sll", SHFT_FMT, tempreg, tempreg, 8);
+         macro_build (NULL, "or", "d,v,t", treg, treg, AT);
+       }
       break;
 
     default:
@@ -8552,6 +10258,11 @@ validate_mips_insn (const struct mips_opcode *opc)
          case 'Q': USE_BITS (OP_MASK_SEQI,     OP_SH_SEQI);    break;
          case 's': USE_BITS (OP_MASK_CINSLM1,  OP_SH_CINSLM1); break;
          case 'S': USE_BITS (OP_MASK_CINSLM1,  OP_SH_CINSLM1); break;
+         case 'z': USE_BITS (OP_MASK_RZ,       OP_SH_RZ);      break;
+         case 'Z': USE_BITS (OP_MASK_FZ,       OP_SH_FZ);      break;
+         case 'a': USE_BITS (OP_MASK_OFFSET_A, OP_SH_OFFSET_A); break;
+         case 'b': USE_BITS (OP_MASK_OFFSET_B, OP_SH_OFFSET_B); break;
+         case 'c': USE_BITS (OP_MASK_OFFSET_C, OP_SH_OFFSET_C); break;
 
          default:
            as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
@@ -8631,6 +10342,8 @@ validate_mips_insn (const struct mips_opcode *opc)
       case '$': USE_BITS (OP_MASK_MT_H,                OP_SH_MT_H);    break;
       case '*': USE_BITS (OP_MASK_MTACC_T,     OP_SH_MTACC_T); break;
       case '&': USE_BITS (OP_MASK_MTACC_D,     OP_SH_MTACC_D); break;
+      case '\\': USE_BITS (OP_MASK_3BITPOS,    OP_SH_3BITPOS); break;
+      case '~': USE_BITS (OP_MASK_OFFSET12,    OP_SH_OFFSET12); break;
       case 'g': USE_BITS (OP_MASK_RD,          OP_SH_RD);      break;
       default:
        as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
@@ -8647,6 +10360,192 @@ validate_mips_insn (const struct mips_opcode *opc)
   return 1;
 }
 
+/* For consistency checking, verify that the length implied matches the
+   major opcode and that all bits are specified either by the match/mask
+   part of the instruction definition, or by the operand list.  */
+
+static int
+validate_micromips_insn (const struct mips_opcode *opc)
+{
+  unsigned long match = opc->match;
+  unsigned long mask = opc->mask;
+  const char *p = opc->args;
+  unsigned long insn_bits;
+  unsigned long used_bits;
+  unsigned long major;
+  unsigned int length;
+  char e;
+  char c;
+
+  if ((mask & match) != match)
+    {
+      as_bad (_("Internal error: bad microMIPS opcode (mask error): %s %s"),
+             opc->name, opc->args);
+      return 0;
+    }
+  length = micromips_insn_length (opc);
+  if (length != 2 && length != 4)
+    {
+      as_bad (_("Internal error: bad microMIPS opcode (incorrect length: %u): "
+               "%s %s"), length, opc->name, opc->args);
+      return 0;
+    }
+  major = match >> (10 + 8 * (length - 2));
+  if ((length == 2 && (major & 7) != 1 && (major & 6) != 2)
+      || (length == 4 && (major & 7) != 0 && (major & 4) != 4))
+    {
+      as_bad (_("Internal error: bad microMIPS opcode "
+               "(opcode/length mismatch): %s %s"), opc->name, opc->args);
+      return 0;
+    }
+
+  /* Shift piecewise to avoid an overflow where unsigned long is 32-bit.  */
+  insn_bits = 1 << 4 * length;
+  insn_bits <<= 4 * length;
+  insn_bits -= 1;
+  used_bits = mask;
+#define USE_BITS(field) \
+  (used_bits |= MICROMIPSOP_MASK_##field << MICROMIPSOP_SH_##field)
+  while (*p)
+    switch (c = *p++)
+      {
+      case ',': break;
+      case '(': break;
+      case ')': break;
+      case '+':
+       e = c;
+       switch (c = *p++)
+         {
+         case 'A': USE_BITS (EXTLSB);  break;
+         case 'B': USE_BITS (INSMSB);  break;
+         case 'C': USE_BITS (EXTMSBD); break;
+         case 'D': USE_BITS (RS);      USE_BITS (SEL); break;
+         case 'E': USE_BITS (EXTLSB);  break;
+         case 'F': USE_BITS (INSMSB);  break;
+         case 'G': USE_BITS (EXTMSBD); break;
+         case 'H': USE_BITS (EXTMSBD); break;
+         default:
+           as_bad (_("Internal error: bad mips opcode "
+                     "(unknown extension operand type `%c%c'): %s %s"),
+                   e, c, opc->name, opc->args);
+           return 0;
+         }
+       break;
+      case 'm':
+       e = c;
+       switch (c = *p++)
+         {
+         case 'A': USE_BITS (IMMA);    break;
+         case 'B': USE_BITS (IMMB);    break;
+         case 'C': USE_BITS (IMMC);    break;
+         case 'D': USE_BITS (IMMD);    break;
+         case 'E': USE_BITS (IMME);    break;
+         case 'F': USE_BITS (IMMF);    break;
+         case 'G': USE_BITS (IMMG);    break;
+         case 'H': USE_BITS (IMMH);    break;
+         case 'I': USE_BITS (IMMI);    break;
+         case 'J': USE_BITS (IMMJ);    break;
+         case 'L': USE_BITS (IMML);    break;
+         case 'M': USE_BITS (IMMM);    break;
+         case 'N': USE_BITS (IMMN);    break;
+         case 'O': USE_BITS (IMMO);    break;
+         case 'P': USE_BITS (IMMP);    break;
+         case 'Q': USE_BITS (IMMQ);    break;
+         case 'U': USE_BITS (IMMU);    break;
+         case 'W': USE_BITS (IMMW);    break;
+         case 'X': USE_BITS (IMMX);    break;
+         case 'Y': USE_BITS (IMMY);    break;
+         case 'Z': break;
+         case 'a': break;
+         case 'b': USE_BITS (MB);      break;
+         case 'c': USE_BITS (MC);      break;
+         case 'd': USE_BITS (MD);      break;
+         case 'e': USE_BITS (ME);      break;
+         case 'f': USE_BITS (MF);      break;
+         case 'g': USE_BITS (MG);      break;
+         case 'h': USE_BITS (MH);      break;
+         case 'i': USE_BITS (MI);      break;
+         case 'j': USE_BITS (MJ);      break;
+         case 'l': USE_BITS (ML);      break;
+         case 'm': USE_BITS (MM);      break;
+         case 'n': USE_BITS (MN);      break;
+         case 'p': USE_BITS (MP);      break;
+         case 'q': USE_BITS (MQ);      break;
+         case 'r': break;
+         case 's': break;
+         case 't': break;
+         case 'x': break;
+         case 'y': break;
+         case 'z': break;
+         default:
+           as_bad (_("Internal error: bad mips opcode "
+                     "(unknown extension operand type `%c%c'): %s %s"),
+                   e, c, opc->name, opc->args);
+           return 0;
+         }
+       break;
+      case '.': USE_BITS (OFFSET10);   break;
+      case '1': USE_BITS (STYPE);      break;
+      case '<': USE_BITS (SHAMT);      break;
+      case '>': USE_BITS (SHAMT);      break;
+      case 'B': USE_BITS (CODE10);     break;
+      case 'C': USE_BITS (COPZ);       break;
+      case 'D': USE_BITS (FD);         break;
+      case 'E': USE_BITS (RT);         break;
+      case 'G': USE_BITS (RS);         break;
+      case 'H': USE_BITS (SEL);                break;
+      case 'K': USE_BITS (RS);         break;
+      case 'M': USE_BITS (CCC);                break;
+      case 'N': USE_BITS (BCC);                break;
+      case 'R': USE_BITS (FR);         break;
+      case 'S': USE_BITS (FS);         break;
+      case 'T': USE_BITS (FT);         break;
+      case 'V': USE_BITS (FS);         break;
+      case '\\': USE_BITS (3BITPOS);   break;
+      case 'a': USE_BITS (TARGET);     break;
+      case 'b': USE_BITS (RS);         break;
+      case 'c': USE_BITS (CODE);       break;
+      case 'd': USE_BITS (RD);         break;
+      case 'h': USE_BITS (PREFX);      break;
+      case 'i': USE_BITS (IMMEDIATE);  break;
+      case 'j': USE_BITS (DELTA);      break;
+      case 'k': USE_BITS (CACHE);      break;
+      case 'n': USE_BITS (RT);         break;
+      case 'o': USE_BITS (DELTA);      break;
+      case 'p': USE_BITS (DELTA);      break;
+      case 'q': USE_BITS (CODE2);      break;
+      case 'r': USE_BITS (RS);         break;
+      case 's': USE_BITS (RS);         break;
+      case 't': USE_BITS (RT);         break;
+      case 'u': USE_BITS (IMMEDIATE);  break;
+      case 'v': USE_BITS (RS);         break;
+      case 'w': USE_BITS (RT);         break;
+      case 'y': USE_BITS (RS3);                break;
+      case 'z': break;
+      case '|': USE_BITS (TRAP);       break;
+      case '~': USE_BITS (OFFSET12);   break;
+      default:
+       as_bad (_("Internal error: bad microMIPS opcode "
+                 "(unknown operand type `%c'): %s %s"),
+               c, opc->name, opc->args);
+       return 0;
+      }
+#undef USE_BITS
+  if (used_bits != insn_bits)
+    {
+      if (~used_bits & insn_bits)
+       as_bad (_("Internal error: bad microMIPS opcode "
+                 "(bits 0x%lx undefined): %s %s"),
+               ~used_bits & insn_bits, opc->name, opc->args);
+      if (used_bits & ~insn_bits)
+       as_bad (_("Internal error: bad microMIPS opcode "
+                 "(bits 0x%lx defined): %s %s"),
+               used_bits & ~insn_bits, opc->name, opc->args);
+      return 0;
+    }
+  return 1;
+}
+
 /* UDI immediates.  */
 struct mips_immed {
   char         type;
@@ -8703,6 +10602,17 @@ mips_oddfpreg_ok (const struct mips_opcode *insn, int argnum)
   return 0;
 }
 
+/* Check if EXPR is a constant between MIN (inclusive) and MAX (exclusive)
+   taking bits from BIT up.  */
+static int
+expr_const_in_range (expressionS *ep, offsetT min, offsetT max, int bit)
+{
+  return (ep->X_op == O_constant
+         && (ep->X_add_number & ((1 << bit) - 1)) == 0
+         && ep->X_add_number >= min << bit
+         && ep->X_add_number < max << bit);
+}
+
 /* This routine assembles an instruction into its binary format.  As a
    side effect, it sets one of the global variables imm_reloc or
    offset_reloc to the type of relocation to do if one of the operands
@@ -8711,102 +10621,139 @@ mips_oddfpreg_ok (const struct mips_opcode *insn, int argnum)
 static void
 mips_ip (char *str, struct mips_cl_insn *ip)
 {
+  bfd_boolean wrong_delay_slot_insns = FALSE;
+  bfd_boolean need_delay_slot_ok = TRUE;
+  struct mips_opcode *firstinsn = NULL;
+  const struct mips_opcode *past;
+  struct hash_control *hash;
   char *s;
   const char *args;
   char c = 0;
   struct mips_opcode *insn;
   char *argsStart;
   unsigned int regno;
-  unsigned int lastregno = 0;
+  unsigned int lastregno;
+  unsigned int destregno = 0;
   unsigned int lastpos = 0;
   unsigned int limlo, limhi;
   char *s_reset;
-  char save_c = 0;
   offsetT min_range, max_range;
+  long opend;
+  char *name;
   int argnum;
   unsigned int rtype;
+  char *dot;
+  long end;
 
   insn_error = NULL;
 
-  /* If the instruction contains a '.', we first try to match an instruction
-     including the '.'.  Then we try again without the '.'.  */
+  if (mips_opts.micromips)
+    {
+      hash = micromips_op_hash;
+      past = &micromips_opcodes[bfd_micromips_num_opcodes];
+    }
+  else
+    {
+      hash = op_hash;
+      past = &mips_opcodes[NUMOPCODES];
+    }
+  forced_insn_length = 0;
   insn = NULL;
-  for (s = str; *s != '\0' && !ISSPACE (*s); ++s)
+
+  /* We first try to match an instruction up to a space or to the end.  */
+  for (end = 0; str[end] != '\0' && !ISSPACE (str[end]); end++)
     continue;
 
-  /* If we stopped on whitespace, then replace the whitespace with null for
-     the call to hash_find.  Save the character we replaced just in case we
-     have to re-parse the instruction.  */
-  if (ISSPACE (*s))
+  /* Make a copy of the instruction so that we can fiddle with it.  */
+  name = alloca (end + 1);
+  memcpy (name, str, end);
+  name[end] = '\0';
+
+  for (;;)
     {
-      save_c = *s;
-      *s++ = '\0';
-    }
+      insn = (struct mips_opcode *) hash_find (hash, name);
 
-  insn = (struct mips_opcode *) hash_find (op_hash, str);
+      if (insn != NULL || !mips_opts.micromips)
+       break;
+      if (forced_insn_length)
+       break;
 
-  /* If we didn't find the instruction in the opcode table, try again, but
-     this time with just the instruction up to, but not including the
-     first '.'.  */
+      /* See if there's an instruction size override suffix,
+         either `16' or `32', at the end of the mnemonic proper,
+         that defines the operation, i.e. before the first `.'
+         character if any.  Strip it and retry.  */
+      dot = strchr (name, '.');
+      opend = dot != NULL ? dot - name : end;
+      if (opend < 3)
+       break;
+      if (name[opend - 2] == '1' && name[opend - 1] == '6')
+       forced_insn_length = 2;
+      else if (name[opend - 2] == '3' && name[opend - 1] == '2')
+       forced_insn_length = 4;
+      else
+       break;
+      memcpy (name + opend - 2, name + opend, end - opend + 1);
+    }
   if (insn == NULL)
     {
-      /* Restore the character we overwrite above (if any).  */
-      if (save_c)
-       *(--s) = save_c;
-
-      /* Scan up to the first '.' or whitespace.  */
-      for (s = str;
-          *s != '\0' && *s != '.' && !ISSPACE (*s);
-          ++s)
-       continue;
-
-      /* If we did not find a '.', then we can quit now.  */
-      if (*s != '.')
-       {
-         insn_error = _("unrecognized opcode");
-         return;
-       }
-
-      /* Lookup the instruction in the hash table.  */
-      *s++ = '\0';
-      if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL)
-       {
-         insn_error = _("unrecognized opcode");
-         return;
-       }
+      insn_error = _("Unrecognized opcode");
+      return;
     }
 
-  argsStart = s;
+  /* For microMIPS instructions placed in a fixed-length branch delay slot
+     we make up to two passes over the relevant fragment of the opcode
+     table.  First we try instructions that meet the delay slot's length
+     requirement.  If none matched, then we retry with the remaining ones
+     and if one matches, then we use it and then issue an appropriate
+     warning later on.  */
+  argsStart = s = str + end;
   for (;;)
     {
+      bfd_boolean delay_slot_ok;
+      bfd_boolean size_ok;
       bfd_boolean ok;
 
-      gas_assert (strcmp (insn->name, str) == 0);
+      gas_assert (strcmp (insn->name, name) == 0);
 
       ok = is_opcode_valid (insn);
-      if (! ok)
+      size_ok = is_size_valid (insn);
+      delay_slot_ok = is_delay_slot_valid (insn);
+      if (!delay_slot_ok && !wrong_delay_slot_insns)
        {
-         if (insn + 1 < &mips_opcodes[NUMOPCODES]
-             && strcmp (insn->name, insn[1].name) == 0)
+         firstinsn = insn;
+         wrong_delay_slot_insns = TRUE;
+       }
+      if (!ok || !size_ok || delay_slot_ok != need_delay_slot_ok)
+       {
+         static char buf[256];
+
+         if (insn + 1 < past && strcmp (insn->name, insn[1].name) == 0)
            {
              ++insn;
              continue;
            }
-         else
+         if (wrong_delay_slot_insns && need_delay_slot_ok)
            {
-             if (!insn_error)
-               {
-                 static char buf[100];
-                 sprintf (buf,
-                          _("opcode not supported on this processor: %s (%s)"),
-                          mips_cpu_info_from_arch (mips_opts.arch)->name,
-                          mips_cpu_info_from_isa (mips_opts.isa)->name);
-                 insn_error = buf;
-               }
-             if (save_c)
-               *(--s) = save_c;
-             return;
+             gas_assert (firstinsn);
+             need_delay_slot_ok = FALSE;
+             past = insn + 1;
+             insn = firstinsn;
+             continue;
            }
+
+         if (insn_error)
+           return;
+
+         if (!ok)
+           sprintf (buf, _("Opcode not supported on this processor: %s (%s)"),
+                    mips_cpu_info_from_arch (mips_opts.arch)->name,
+                    mips_cpu_info_from_isa (mips_opts.isa)->name);
+         else
+           sprintf (buf, _("Unrecognized %u-bit version of microMIPS opcode"),
+                    8 * forced_insn_length);
+         insn_error = buf;
+
+         return;
        }
 
       create_insn (ip, insn);
@@ -8826,7 +10773,8 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                return;
              break;
 
-           case '2': /* dsp 2-bit unsigned immediate in bit 11 */
+           case '2': /* DSP 2-bit unsigned immediate in bit 11.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              if ((unsigned long) imm_expr.X_add_number != 1
@@ -8835,12 +10783,13 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                  as_bad (_("BALIGN immediate not 1 or 3 (%lu)"),
                          (unsigned long) imm_expr.X_add_number);
                }
-             INSERT_OPERAND (BP, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (0, BP, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
-           case '3': /* dsp 3-bit unsigned immediate in bit 21 */
+           case '3': /* DSP 3-bit unsigned immediate in bit 21.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              if (imm_expr.X_add_number & ~OP_MASK_SA3)
@@ -8848,12 +10797,13 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                  as_bad (_("DSP immediate not in range 0..%d (%lu)"),
                          OP_MASK_SA3, (unsigned long) imm_expr.X_add_number);
                }
-             INSERT_OPERAND (SA3, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (0, SA3, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
-           case '4': /* dsp 4-bit unsigned immediate in bit 21 */
+           case '4': /* DSP 4-bit unsigned immediate in bit 21.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              if (imm_expr.X_add_number & ~OP_MASK_SA4)
@@ -8861,12 +10811,13 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                  as_bad (_("DSP immediate not in range 0..%d (%lu)"),
                          OP_MASK_SA4, (unsigned long) imm_expr.X_add_number);
                }
-             INSERT_OPERAND (SA4, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (0, SA4, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
-           case '5': /* dsp 8-bit unsigned immediate in bit 16 */
+           case '5': /* DSP 8-bit unsigned immediate in bit 16.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              if (imm_expr.X_add_number & ~OP_MASK_IMM8)
@@ -8874,12 +10825,13 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                  as_bad (_("DSP immediate not in range 0..%d (%lu)"),
                          OP_MASK_IMM8, (unsigned long) imm_expr.X_add_number);
                }
-             INSERT_OPERAND (IMM8, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (0, IMM8, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
-           case '6': /* dsp 5-bit unsigned immediate in bit 21 */
+           case '6': /* DSP 5-bit unsigned immediate in bit 21.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              if (imm_expr.X_add_number & ~OP_MASK_RS)
@@ -8887,25 +10839,27 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                  as_bad (_("DSP immediate not in range 0..%d (%lu)"),
                          OP_MASK_RS, (unsigned long) imm_expr.X_add_number);
                }
-             INSERT_OPERAND (RS, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (0, RS, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
-           case '7': /* four dsp accumulators in bits 11,12 */ 
+           case '7': /* Four DSP accumulators in bits 11,12.  */
+             gas_assert (!mips_opts.micromips);
              if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
                  s[3] >= '0' && s[3] <= '3')
                {
                  regno = s[3] - '0';
                  s += 4;
-                 INSERT_OPERAND (DSPACC, *ip, regno);
+                 INSERT_OPERAND (0, DSPACC, *ip, regno);
                  continue;
                }
              else
                as_bad (_("Invalid dsp acc register"));
              break;
 
-           case '8': /* dsp 6-bit unsigned immediate in bit 11 */
+           case '8': /* DSP 6-bit unsigned immediate in bit 11.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              if (imm_expr.X_add_number & ~OP_MASK_WRDSP)
@@ -8914,25 +10868,27 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                          OP_MASK_WRDSP,
                          (unsigned long) imm_expr.X_add_number);
                }
-             INSERT_OPERAND (WRDSP, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (0, WRDSP, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
-           case '9': /* four dsp accumulators in bits 21,22 */
+           case '9': /* Four DSP accumulators in bits 21,22.  */
+             gas_assert (!mips_opts.micromips);
              if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
                  s[3] >= '0' && s[3] <= '3')
                {
                  regno = s[3] - '0';
                  s += 4;
-                 INSERT_OPERAND (DSPACC_S, *ip, regno);
+                 INSERT_OPERAND (0, DSPACC_S, *ip, regno);
                  continue;
                }
              else
                as_bad (_("Invalid dsp acc register"));
              break;
 
-           case '0': /* dsp 6-bit signed immediate in bit 20 */
+           case '0': /* DSP 6-bit signed immediate in bit 20.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              min_range = -((OP_MASK_DSPSFT + 1) >> 1);
@@ -8944,12 +10900,13 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                          (long) min_range, (long) max_range,
                          (long) imm_expr.X_add_number);
                }
-             INSERT_OPERAND (DSPSFT, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (0, DSPSFT, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
-           case '\'': /* dsp 6-bit unsigned immediate in bit 16 */
+           case '\'': /* DSP 6-bit unsigned immediate in bit 16.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              if (imm_expr.X_add_number & ~OP_MASK_RDDSP)
@@ -8958,12 +10915,13 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                          OP_MASK_RDDSP,
                          (unsigned long) imm_expr.X_add_number);
                }
-             INSERT_OPERAND (RDDSP, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (0, RDDSP, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
-           case ':': /* dsp 7-bit signed immediate in bit 19 */
+           case ':': /* DSP 7-bit signed immediate in bit 19.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              min_range = -((OP_MASK_DSPSFT_7 + 1) >> 1);
@@ -8975,12 +10933,13 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                          (long) min_range, (long) max_range,
                          (long) imm_expr.X_add_number);
                }
-             INSERT_OPERAND (DSPSFT_7, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (0, DSPSFT_7, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
-           case '@': /* dsp 10-bit signed immediate in bit 16 */
+           case '@': /* DSP 10-bit signed immediate in bit 16.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              min_range = -((OP_MASK_IMM10 + 1) >> 1);
@@ -8992,59 +10951,82 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                          (long) min_range, (long) max_range,
                          (long) imm_expr.X_add_number);
                }
-             INSERT_OPERAND (IMM10, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (0, IMM10, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
             case '!': /* MT usermode flag bit.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              if (imm_expr.X_add_number & ~OP_MASK_MT_U)
                as_bad (_("MT usermode bit not 0 or 1 (%lu)"),
                        (unsigned long) imm_expr.X_add_number);
-             INSERT_OPERAND (MT_U, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (0, MT_U, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
             case '$': /* MT load high flag bit.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              if (imm_expr.X_add_number & ~OP_MASK_MT_H)
                as_bad (_("MT load high bit not 0 or 1 (%lu)"),
                        (unsigned long) imm_expr.X_add_number);
-             INSERT_OPERAND (MT_H, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (0, MT_H, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
-           case '*': /* four dsp accumulators in bits 18,19 */ 
+           case '*': /* Four DSP accumulators in bits 18,19.  */
+             gas_assert (!mips_opts.micromips);
              if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
                  s[3] >= '0' && s[3] <= '3')
                {
                  regno = s[3] - '0';
                  s += 4;
-                 INSERT_OPERAND (MTACC_T, *ip, regno);
+                 INSERT_OPERAND (0, MTACC_T, *ip, regno);
                  continue;
                }
              else
                as_bad (_("Invalid dsp/smartmips acc register"));
              break;
 
-           case '&': /* four dsp accumulators in bits 13,14 */ 
+           case '&': /* Four DSP accumulators in bits 13,14.  */
+             gas_assert (!mips_opts.micromips);
              if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
                  s[3] >= '0' && s[3] <= '3')
                {
                  regno = s[3] - '0';
                  s += 4;
-                 INSERT_OPERAND (MTACC_D, *ip, regno);
+                 INSERT_OPERAND (0, MTACC_D, *ip, regno);
                  continue;
                }
              else
                as_bad (_("Invalid dsp/smartmips acc register"));
              break;
 
+           case '\\':          /* 3-bit bit position.  */
+             {
+               unsigned long mask = (mips_opts.micromips
+                                     ? MICROMIPSOP_MASK_3BITPOS
+                                     : OP_MASK_3BITPOS);
+
+               my_getExpression (&imm_expr, s);
+               check_absolute_expr (ip, &imm_expr);
+               if ((unsigned long) imm_expr.X_add_number > mask)
+                 as_warn (_("Bit position for %s not in range 0..%lu (%lu)"),
+                          ip->insn_mo->name,
+                          mask, (unsigned long) imm_expr.X_add_number);
+               INSERT_OPERAND (mips_opts.micromips,
+                               3BITPOS, *ip, imm_expr.X_add_number);
+               imm_expr.X_op = O_absent;
+               s = expr_end;
+             }
+             continue;
+
            case ',':
              ++argnum;
              if (*s++ == *args)
@@ -9054,19 +11036,20 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                {
                case 'r':
                case 'v':
-                 INSERT_OPERAND (RS, *ip, lastregno);
+                 INSERT_OPERAND (mips_opts.micromips, RS, *ip, lastregno);
                  continue;
 
                case 'w':
-                 INSERT_OPERAND (RT, *ip, lastregno);
+                 INSERT_OPERAND (mips_opts.micromips, RT, *ip, lastregno);
                  continue;
 
                case 'W':
-                 INSERT_OPERAND (FT, *ip, lastregno);
+                 gas_assert (!mips_opts.micromips);
+                 INSERT_OPERAND (0, FT, *ip, lastregno);
                  continue;
 
                case 'V':
-                 INSERT_OPERAND (FS, *ip, lastregno);
+                 INSERT_OPERAND (mips_opts.micromips, FS, *ip, lastregno);
                  continue;
                }
              break;
@@ -9077,14 +11060,23 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                 we must have a left paren.  */
              /* This is dependent on the next operand specifier
                 is a base register specification.  */
-             gas_assert (args[1] == 'b' || args[1] == '5'
-                     || args[1] == '-' || args[1] == '4');
-             if (*s == '\0')
+             gas_assert (args[1] == 'b'
+                         || (mips_opts.micromips
+                             && args[1] == 'm'
+                             && (args[2] == 'l' || args[2] == 'n'
+                                 || args[2] == 's' || args[2] == 'a')));
+             if (*s == '\0' && args[1] == 'b')
                return;
+             /* Fall through.  */
 
-           case ')':           /* these must match exactly */
-           case '[':
+           case ')':           /* These must match exactly.  */
+             if (*s++ == *args)
+               continue;
+             break;
+
+           case '[':           /* These must match exactly.  */
            case ']':
+             gas_assert (!mips_opts.micromips);
              if (*s++ == *args)
                continue;
              break;
@@ -9096,6 +11088,7 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                case '2':
                case '3':
                case '4':
+                 gas_assert (!mips_opts.micromips);
                  {
                    const struct mips_immed *imm = mips_immed;
 
@@ -9111,7 +11104,7 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                                 imm->desc ? imm->desc : ip->insn_mo->name,
                                 (unsigned long) imm_expr.X_add_number,
                                 (unsigned long) imm_expr.X_add_number);
-                             imm_expr.X_add_number &= imm->mask;
+                       imm_expr.X_add_number &= imm->mask;
                      }
                    ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number
                                        << imm->shift);
@@ -9119,7 +11112,7 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                    s = expr_end;
                  }
                  continue;
-                 
+
                case 'A':               /* ins/ext position, becomes LSB.  */
                  limlo = 0;
                  limhi = 31;
@@ -9128,7 +11121,7 @@ mips_ip (char *str, struct mips_cl_insn *ip)
                  limlo = 32;
                  limhi = 63;
                  goto do_lsb;
-do_lsb:
+               do_lsb:
                  my_getExpression (&imm_expr, s);
                  check_absolute_expr (ip, &imm_expr);
                  if ((unsigned long) imm_expr.X_add_number < limlo
@@ -9139,7 +11132,8 @@ do_lsb:
                      imm_expr.X_add_number = limlo;
                    }
                  lastpos = imm_expr.X_add_number;
-                 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
+                 INSERT_OPERAND (mips_opts.micromips,
+                                 EXTLSB, *ip, imm_expr.X_add_number);
                  imm_expr.X_op = O_absent;
                  s = expr_end;
                  continue;
@@ -9152,7 +11146,7 @@ do_lsb:
                  limlo = 33;
                  limhi = 64;
                  goto do_msb;
-do_msb:
+               do_msb:
                  my_getExpression (&imm_expr, s);
                  check_absolute_expr (ip, &imm_expr);
                  /* Check for negative input so that small negative numbers
@@ -9170,8 +11164,8 @@ do_msb:
                              (unsigned long) lastpos);
                      imm_expr.X_add_number = limlo - lastpos;
                    }
-                 INSERT_OPERAND (INSMSB, *ip,
-                                lastpos + imm_expr.X_add_number - 1);
+                 INSERT_OPERAND (mips_opts.micromips, INSMSB, *ip,
+                                 lastpos + imm_expr.X_add_number - 1);
                  imm_expr.X_op = O_absent;
                  s = expr_end;
                  continue;
@@ -9188,7 +11182,7 @@ do_msb:
                  limlo = 33;
                  limhi = 64;
                  goto do_msbd;
-do_msbd:
+               do_msbd:
                  my_getExpression (&imm_expr, s);
                  check_absolute_expr (ip, &imm_expr);
                  /* Check for negative input so that small negative numbers
@@ -9206,7 +11200,8 @@ do_msbd:
                              (unsigned long) lastpos);
                      imm_expr.X_add_number = limlo - lastpos;
                    }
-                 INSERT_OPERAND (EXTMSBD, *ip, imm_expr.X_add_number - 1);
+                 INSERT_OPERAND (mips_opts.micromips,
+                                 EXTMSBD, *ip, imm_expr.X_add_number - 1);
                  imm_expr.X_op = O_absent;
                  s = expr_end;
                  continue;
@@ -9227,10 +11222,12 @@ do_msbd:
                  continue;
 
                case 'T': /* Coprocessor register.  */
+                 gas_assert (!mips_opts.micromips);
                  /* +T is for disassembly only; never match.  */
                  break;
 
                case 't': /* Coprocessor register number.  */
+                 gas_assert (!mips_opts.micromips);
                  if (s[0] == '$' && ISDIGIT (s[1]))
                    {
                      ++s;
@@ -9246,7 +11243,7 @@ do_msbd:
                        as_bad (_("Invalid register number (%d)"), regno);
                      else
                        {
-                         INSERT_OPERAND (RT, *ip, regno);
+                         INSERT_OPERAND (0, RT, *ip, regno);
                          continue;
                        }
                    }
@@ -9257,6 +11254,7 @@ do_msbd:
                case 'x':
                  /* bbit[01] and bbit[01]32 bit index.  Give error if index
                     is not in the valid range.  */
+                 gas_assert (!mips_opts.micromips);
                  my_getExpression (&imm_expr, s);
                  check_absolute_expr (ip, &imm_expr);
                  if ((unsigned) imm_expr.X_add_number > 31)
@@ -9265,7 +11263,7 @@ do_msbd:
                              (unsigned long) imm_expr.X_add_number);
                      imm_expr.X_add_number = 0;
                    }
-                 INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number);
+                 INSERT_OPERAND (0, BBITIND, *ip, imm_expr.X_add_number);
                  imm_expr.X_op = O_absent;
                  s = expr_end;
                  continue;
@@ -9274,12 +11272,13 @@ do_msbd:
                  /* bbit[01] bit index when bbit is used but we generate
                     bbit[01]32 because the index is over 32.  Move to the
                     next candidate if index is not in the valid range.  */
+                 gas_assert (!mips_opts.micromips);
                  my_getExpression (&imm_expr, s);
                  check_absolute_expr (ip, &imm_expr);
                  if ((unsigned) imm_expr.X_add_number < 32
                      || (unsigned) imm_expr.X_add_number > 63)
                    break;
-                 INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number - 32);
+                 INSERT_OPERAND (0, BBITIND, *ip, imm_expr.X_add_number - 32);
                  imm_expr.X_op = O_absent;
                  s = expr_end;
                  continue;
@@ -9287,6 +11286,7 @@ do_msbd:
                case 'p':
                  /* cins, cins32, exts and exts32 position field.  Give error
                     if it's not in the valid range.  */
+                 gas_assert (!mips_opts.micromips);
                  my_getExpression (&imm_expr, s);
                  check_absolute_expr (ip, &imm_expr);
                  if ((unsigned) imm_expr.X_add_number > 31)
@@ -9297,7 +11297,7 @@ do_msbd:
                    }
                  /* Make the pos explicit to simplify +S.  */
                  lastpos = imm_expr.X_add_number + 32;
-                 INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number);
+                 INSERT_OPERAND (0, CINSPOS, *ip, imm_expr.X_add_number);
                  imm_expr.X_op = O_absent;
                  s = expr_end;
                  continue;
@@ -9305,19 +11305,21 @@ do_msbd:
                case 'P':
                  /* cins, cins32, exts and exts32 position field.  Move to
                     the next candidate if it's not in the valid range.  */
+                 gas_assert (!mips_opts.micromips);
                  my_getExpression (&imm_expr, s);
                  check_absolute_expr (ip, &imm_expr);
                  if ((unsigned) imm_expr.X_add_number < 32
                      || (unsigned) imm_expr.X_add_number > 63)
                    break;
                  lastpos = imm_expr.X_add_number;
-                 INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number - 32);
+                 INSERT_OPERAND (0, CINSPOS, *ip, imm_expr.X_add_number - 32);
                  imm_expr.X_op = O_absent;
                  s = expr_end;
                  continue;
 
                case 's':
                  /* cins and exts length-minus-one field.  */
+                 gas_assert (!mips_opts.micromips);
                  my_getExpression (&imm_expr, s);
                  check_absolute_expr (ip, &imm_expr);
                  if ((unsigned long) imm_expr.X_add_number > 31)
@@ -9326,7 +11328,7 @@ do_msbd:
                              (unsigned long) imm_expr.X_add_number);
                      imm_expr.X_add_number = 0;
                    }
-                 INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number);
+                 INSERT_OPERAND (0, CINSLM1, *ip, imm_expr.X_add_number);
                  imm_expr.X_op = O_absent;
                  s = expr_end;
                  continue;
@@ -9334,6 +11336,7 @@ do_msbd:
                case 'S':
                  /* cins32/exts32 and cins/exts aliasing cint32/exts32
                     length-minus-one field.  */
+                 gas_assert (!mips_opts.micromips);
                  my_getExpression (&imm_expr, s);
                  check_absolute_expr (ip, &imm_expr);
                  if ((long) imm_expr.X_add_number < 0
@@ -9343,13 +11346,14 @@ do_msbd:
                              (unsigned long) imm_expr.X_add_number);
                      imm_expr.X_add_number = 0;
                    }
-                 INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number);
+                 INSERT_OPERAND (0, CINSLM1, *ip, imm_expr.X_add_number);
                  imm_expr.X_op = O_absent;
                  s = expr_end;
                  continue;
 
                case 'Q':
                  /* seqi/snei immediate field.  */
+                 gas_assert (!mips_opts.micromips);
                  my_getExpression (&imm_expr, s);
                  check_absolute_expr (ip, &imm_expr);
                  if ((long) imm_expr.X_add_number < -512
@@ -9359,19 +11363,142 @@ do_msbd:
                               (long) imm_expr.X_add_number);
                      imm_expr.X_add_number = 0;
                    }
-                 INSERT_OPERAND (SEQI, *ip, imm_expr.X_add_number);
+                 INSERT_OPERAND (0, SEQI, *ip, imm_expr.X_add_number);
+                 imm_expr.X_op = O_absent;
+                 s = expr_end;
+                 continue;
+
+               case 'a': /* 8-bit signed offset in bit 6 */
+                 gas_assert (!mips_opts.micromips);
+                 my_getExpression (&imm_expr, s);
+                 check_absolute_expr (ip, &imm_expr);
+                 min_range = -((OP_MASK_OFFSET_A + 1) >> 1);
+                 max_range = ((OP_MASK_OFFSET_A + 1) >> 1) - 1;
+                 if (imm_expr.X_add_number < min_range
+                     || imm_expr.X_add_number > max_range)
+                   {
+                     as_bad (_("Offset not in range %ld..%ld (%ld)"),
+                             (long) min_range, (long) max_range,
+                             (long) imm_expr.X_add_number);
+                   }
+                 INSERT_OPERAND (0, OFFSET_A, *ip, imm_expr.X_add_number);
+                 imm_expr.X_op = O_absent;
+                 s = expr_end;
+                 continue;
+
+               case 'b': /* 8-bit signed offset in bit 3 */
+                 gas_assert (!mips_opts.micromips);
+                 my_getExpression (&imm_expr, s);
+                 check_absolute_expr (ip, &imm_expr);
+                 min_range = -((OP_MASK_OFFSET_B + 1) >> 1);
+                 max_range = ((OP_MASK_OFFSET_B + 1) >> 1) - 1;
+                 if (imm_expr.X_add_number < min_range
+                     || imm_expr.X_add_number > max_range)
+                   {
+                     as_bad (_("Offset not in range %ld..%ld (%ld)"),
+                             (long) min_range, (long) max_range,
+                             (long) imm_expr.X_add_number);
+                   }
+                 INSERT_OPERAND (0, OFFSET_B, *ip, imm_expr.X_add_number);
+                 imm_expr.X_op = O_absent;
+                 s = expr_end;
+                 continue;
+
+               case 'c': /* 9-bit signed offset in bit 6 */
+                 gas_assert (!mips_opts.micromips);
+                 my_getExpression (&imm_expr, s);
+                 check_absolute_expr (ip, &imm_expr);
+                 min_range = -((OP_MASK_OFFSET_C + 1) >> 1);
+                 max_range = ((OP_MASK_OFFSET_C + 1) >> 1) - 1;
+                 /* We check the offset range before adjusted.  */
+                 min_range <<= 4;
+                 max_range <<= 4;
+                 if (imm_expr.X_add_number < min_range
+                     || imm_expr.X_add_number > max_range)
+                   {
+                     as_bad (_("Offset not in range %ld..%ld (%ld)"),
+                             (long) min_range, (long) max_range,
+                             (long) imm_expr.X_add_number);
+                   }
+                 if (imm_expr.X_add_number & 0xf)
+                   {
+                     as_bad (_("Offset not 16 bytes alignment (%ld)"),
+                             (long) imm_expr.X_add_number);
+                   }
+                 /* Right shift 4 bits to adjust the offset operand.  */
+                 INSERT_OPERAND (0, OFFSET_C, *ip,
+                                 imm_expr.X_add_number >> 4);
                  imm_expr.X_op = O_absent;
                  s = expr_end;
                  continue;
 
+               case 'z':
+                 gas_assert (!mips_opts.micromips);
+                 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
+                   break;
+                 if (regno == AT && mips_opts.at)
+                   {
+                     if (mips_opts.at == ATREG)
+                       as_warn (_("used $at without \".set noat\""));
+                     else
+                       as_warn (_("used $%u with \".set at=$%u\""),
+                                regno, mips_opts.at);
+                   }
+                 INSERT_OPERAND (0, RZ, *ip, regno);
+                 continue;
+
+               case 'Z':
+                 gas_assert (!mips_opts.micromips);
+                 if (!reg_lookup (&s, RTYPE_FPU, &regno))
+                   break;
+                 INSERT_OPERAND (0, FZ, *ip, regno);
+                 continue;
+
                default:
-                 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
-                   *args, insn->name, insn->args);
+                 as_bad (_("Internal error: bad %s opcode "
+                           "(unknown extension operand type `+%c'): %s %s"),
+                         mips_opts.micromips ? "microMIPS" : "MIPS",
+                         *args, insn->name, insn->args);
                  /* Further processing is fruitless.  */
                  return;
                }
              break;
 
+           case '.':           /* 10-bit offset.  */
+             gas_assert (mips_opts.micromips);
+           case '~':           /* 12-bit offset.  */
+             {
+               int shift = *args == '.' ? 9 : 11;
+               size_t i;
+
+               /* Check whether there is only a single bracketed expression
+                  left.  If so, it must be the base register and the
+                  constant must be zero.  */
+               if (*s == '(' && strchr (s + 1, '(') == 0)
+                 continue;
+
+               /* If this value won't fit into the offset, then go find
+                  a macro that will generate a 16- or 32-bit offset code
+                  pattern.  */
+               i = my_getSmallExpression (&imm_expr, imm_reloc, s);
+               if ((i == 0 && (imm_expr.X_op != O_constant
+                               || imm_expr.X_add_number >= 1 << shift
+                               || imm_expr.X_add_number < -1 << shift))
+                   || i > 0)
+                 {
+                   imm_expr.X_op = O_absent;
+                   break;
+                 }
+               if (shift == 9)
+                 INSERT_OPERAND (1, OFFSET10, *ip, imm_expr.X_add_number);
+               else
+                 INSERT_OPERAND (mips_opts.micromips,
+                                 OFFSET12, *ip, imm_expr.X_add_number);
+               imm_expr.X_op = O_absent;
+               s = expr_end;
+             }
+             continue;
+
            case '<':           /* must be at least one digit */
              /*
               * According to the manual, if the shift amount is greater
@@ -9384,7 +11511,8 @@ do_msbd:
              if ((unsigned long) imm_expr.X_add_number > 31)
                as_warn (_("Improper shift amount (%lu)"),
                         (unsigned long) imm_expr.X_add_number);
-             INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (mips_opts.micromips,
+                             SHAMT, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
@@ -9395,23 +11523,27 @@ do_msbd:
              if ((unsigned long) imm_expr.X_add_number < 32
                  || (unsigned long) imm_expr.X_add_number > 63)
                break;
-             INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number - 32);
+             INSERT_OPERAND (mips_opts.micromips,
+                             SHAMT, *ip, imm_expr.X_add_number - 32);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
-           case 'k':           /* cache code */
-           case 'h':           /* prefx code */
-           case '1':           /* sync type */
+           case 'k':           /* CACHE code.  */
+           case 'h':           /* PREFX code.  */
+           case '1':           /* SYNC type.  */
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              if ((unsigned long) imm_expr.X_add_number > 31)
                as_warn (_("Invalid value for `%s' (%lu)"),
                         ip->insn_mo->name,
                         (unsigned long) imm_expr.X_add_number);
-             if (*args == 'k')
+             switch (*args)
                {
-                 if (mips_fix_cn63xxp1 && strcmp ("pref", insn->name) == 0)
+               case 'k':
+                 if (mips_fix_cn63xxp1
+                     && !mips_opts.micromips
+                     && strcmp ("pref", insn->name) == 0)
                    switch (imm_expr.X_add_number)
                      {
                      case 5:
@@ -9428,119 +11560,191 @@ do_msbd:
                        imm_expr.X_add_number = 28;
                        break;
                      }
-                 INSERT_OPERAND (CACHE, *ip, imm_expr.X_add_number);
+                 INSERT_OPERAND (mips_opts.micromips,
+                                 CACHE, *ip, imm_expr.X_add_number);
+                 break;
+               case 'h':
+                 INSERT_OPERAND (mips_opts.micromips,
+                                 PREFX, *ip, imm_expr.X_add_number);
+                 break;
+               case '1':
+                 INSERT_OPERAND (mips_opts.micromips,
+                                 STYPE, *ip, imm_expr.X_add_number);
+                 break;
                }
-             else if (*args == 'h')
-               INSERT_OPERAND (PREFX, *ip, imm_expr.X_add_number);
-             else
-               INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
-           case 'c':           /* break code */
-             my_getExpression (&imm_expr, s);
-             check_absolute_expr (ip, &imm_expr);
-             if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE)
-               as_warn (_("Code for %s not in range 0..1023 (%lu)"),
-                        ip->insn_mo->name,
-                        (unsigned long) imm_expr.X_add_number);
-             INSERT_OPERAND (CODE, *ip, imm_expr.X_add_number);
-             imm_expr.X_op = O_absent;
-             s = expr_end;
+           case 'c':           /* BREAK code.  */
+             {
+               unsigned long mask = (mips_opts.micromips
+                                     ? MICROMIPSOP_MASK_CODE
+                                     : OP_MASK_CODE);
+
+               my_getExpression (&imm_expr, s);
+               check_absolute_expr (ip, &imm_expr);
+               if ((unsigned long) imm_expr.X_add_number > mask)
+                 as_warn (_("Code for %s not in range 0..%lu (%lu)"),
+                          ip->insn_mo->name,
+                          mask, (unsigned long) imm_expr.X_add_number);
+               INSERT_OPERAND (mips_opts.micromips,
+                               CODE, *ip, imm_expr.X_add_number);
+               imm_expr.X_op = O_absent;
+               s = expr_end;
+             }
              continue;
 
-           case 'q':           /* lower break code */
-             my_getExpression (&imm_expr, s);
-             check_absolute_expr (ip, &imm_expr);
-             if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE2)
-               as_warn (_("Lower code for %s not in range 0..1023 (%lu)"),
-                        ip->insn_mo->name,
-                        (unsigned long) imm_expr.X_add_number);
-             INSERT_OPERAND (CODE2, *ip, imm_expr.X_add_number);
-             imm_expr.X_op = O_absent;
-             s = expr_end;
+           case 'q':           /* Lower BREAK code.  */
+             {
+               unsigned long mask = (mips_opts.micromips
+                                     ? MICROMIPSOP_MASK_CODE2
+                                     : OP_MASK_CODE2);
+
+               my_getExpression (&imm_expr, s);
+               check_absolute_expr (ip, &imm_expr);
+               if ((unsigned long) imm_expr.X_add_number > mask)
+                 as_warn (_("Lower code for %s not in range 0..%lu (%lu)"),
+                          ip->insn_mo->name,
+                          mask, (unsigned long) imm_expr.X_add_number);
+               INSERT_OPERAND (mips_opts.micromips,
+                               CODE2, *ip, imm_expr.X_add_number);
+               imm_expr.X_op = O_absent;
+               s = expr_end;
+             }
              continue;
 
-           case 'B':           /* 20-bit syscall/break code.  */
-             my_getExpression (&imm_expr, s);
-             check_absolute_expr (ip, &imm_expr);
-             if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20)
-               as_warn (_("Code for %s not in range 0..1048575 (%lu)"),
-                        ip->insn_mo->name,
-                        (unsigned long) imm_expr.X_add_number);
-             INSERT_OPERAND (CODE20, *ip, imm_expr.X_add_number);
-             imm_expr.X_op = O_absent;
-             s = expr_end;
+           case 'B':           /* 20- or 10-bit syscall/break/wait code.  */
+             {
+               unsigned long mask = (mips_opts.micromips
+                                     ? MICROMIPSOP_MASK_CODE10
+                                     : OP_MASK_CODE20);
+
+               my_getExpression (&imm_expr, s);
+               check_absolute_expr (ip, &imm_expr);
+               if ((unsigned long) imm_expr.X_add_number > mask)
+                 as_warn (_("Code for %s not in range 0..%lu (%lu)"),
+                          ip->insn_mo->name,
+                          mask, (unsigned long) imm_expr.X_add_number);
+               if (mips_opts.micromips)
+                 INSERT_OPERAND (1, CODE10, *ip, imm_expr.X_add_number);
+               else
+                 INSERT_OPERAND (0, CODE20, *ip, imm_expr.X_add_number);
+               imm_expr.X_op = O_absent;
+               s = expr_end;
+             }
              continue;
 
-           case 'C':           /* Coprocessor code */
-             my_getExpression (&imm_expr, s);
-             check_absolute_expr (ip, &imm_expr);
-             if ((unsigned long) imm_expr.X_add_number > OP_MASK_COPZ)
-               {
-                 as_warn (_("Coproccesor code > 25 bits (%lu)"),
+           case 'C':           /* 25- or 23-bit coprocessor code.  */
+             {
+               unsigned long mask = (mips_opts.micromips
+                                     ? MICROMIPSOP_MASK_COPZ
+                                     : OP_MASK_COPZ);
+
+               my_getExpression (&imm_expr, s);
+               check_absolute_expr (ip, &imm_expr);
+               if ((unsigned long) imm_expr.X_add_number > mask)
+                 as_warn (_("Coproccesor code > %u bits (%lu)"),
+                          mips_opts.micromips ? 23U : 25U,
                           (unsigned long) imm_expr.X_add_number);
-                 imm_expr.X_add_number &= OP_MASK_COPZ;
-               }
-             INSERT_OPERAND (COPZ, *ip, imm_expr.X_add_number);
-             imm_expr.X_op = O_absent;
-             s = expr_end;
+               INSERT_OPERAND (mips_opts.micromips,
+                               COPZ, *ip, imm_expr.X_add_number);
+               imm_expr.X_op = O_absent;
+               s = expr_end;
+             }
              continue;
 
-           case 'J':           /* 19-bit wait code.  */
+           case 'J':           /* 19-bit WAIT code.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
-               {
-                 as_warn (_("Illegal 19-bit code (%lu)"),
+               {
+                 as_warn (_("Illegal 19-bit code (%lu)"),
                           (unsigned long) imm_expr.X_add_number);
-                 imm_expr.X_add_number &= OP_MASK_CODE19;
-               }
-             INSERT_OPERAND (CODE19, *ip, imm_expr.X_add_number);
+                 imm_expr.X_add_number &= OP_MASK_CODE19;
+               }
+             INSERT_OPERAND (0, CODE19, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
            case 'P':           /* Performance register.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
                as_warn (_("Invalid performance register (%lu)"),
                         (unsigned long) imm_expr.X_add_number);
-             INSERT_OPERAND (PERFREG, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (0, PERFREG, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
            case 'G':           /* Coprocessor destination register.  */
-             if (((ip->insn_opcode >> OP_SH_OP) & OP_MASK_OP) == OP_OP_COP0)
-               ok = reg_lookup (&s, RTYPE_NUM | RTYPE_CP0, &regno);
-             else
-               ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
-             INSERT_OPERAND (RD, *ip, regno);
-             if (ok) 
-               {
-                 lastregno = regno;
-                 continue;
-               }
-             else
-               break;
+             {
+               unsigned long opcode = ip->insn_opcode;
+               unsigned long mask;
+               unsigned int types;
+               int cop0;
+
+               if (mips_opts.micromips)
+                 {
+                   mask = ~((MICROMIPSOP_MASK_RT << MICROMIPSOP_SH_RT)
+                            | (MICROMIPSOP_MASK_RS << MICROMIPSOP_SH_RS)
+                            | (MICROMIPSOP_MASK_SEL << MICROMIPSOP_SH_SEL));
+                   opcode &= mask;
+                   switch (opcode)
+                     {
+                     case 0x000000fc:                          /* mfc0  */
+                     case 0x000002fc:                          /* mtc0  */
+                     case 0x580000fc:                          /* dmfc0 */
+                     case 0x580002fc:                          /* dmtc0 */
+                       cop0 = 1;
+                       break;
+                     default:
+                       cop0 = 0;
+                       break;
+                     }
+                 }
+               else
+                 {
+                   opcode = (opcode >> OP_SH_OP) & OP_MASK_OP;
+                   cop0 = opcode == OP_OP_COP0;
+                 }
+               types = RTYPE_NUM | (cop0 ? RTYPE_CP0 : RTYPE_GP);
+               ok = reg_lookup (&s, types, &regno);
+               if (mips_opts.micromips)
+                 INSERT_OPERAND (1, RS, *ip, regno);
+               else
+                 INSERT_OPERAND (0, RD, *ip, regno);
+               if (ok)
+                 {
+                   lastregno = regno;
+                   continue;
+                 }
+             }
+             break;
 
-           case 'b':           /* base register */
-           case 'd':           /* destination register */
-           case 's':           /* source register */
-           case 't':           /* target register */
-           case 'r':           /* both target and source */
-           case 'v':           /* both dest and source */
-           case 'w':           /* both dest and target */
-           case 'E':           /* coprocessor target register */
-           case 'K':           /* 'rdhwr' destination register */
-           case 'x':           /* ignore register name */
-           case 'z':           /* must be zero register */
-           case 'U':           /* destination register (clo/clz).  */
-           case 'g':           /* coprocessor destination register */
-             s_reset = s;            
+           case 'y':           /* ALNV.PS source register.  */
+             gas_assert (mips_opts.micromips);
+             goto do_reg;
+           case 'x':           /* Ignore register name.  */
+           case 'U':           /* Destination register (CLO/CLZ).  */
+           case 'g':           /* Coprocessor destination register.  */
+             gas_assert (!mips_opts.micromips);
+           case 'b':           /* Base register.  */
+           case 'd':           /* Destination register.  */
+           case 's':           /* Source register.  */
+           case 't':           /* Target register.  */
+           case 'r':           /* Both target and source.  */
+           case 'v':           /* Both dest and source.  */
+           case 'w':           /* Both dest and target.  */
+           case 'E':           /* Coprocessor target register.  */
+           case 'K':           /* RDHWR destination register.  */
+           case 'z':           /* Must be zero register.  */
+           do_reg:
+             s_reset = s;
              if (*args == 'E' || *args == 'K')
                ok = reg_lookup (&s, RTYPE_NUM, &regno);
              else
@@ -9549,9 +11753,9 @@ do_msbd:
                  if (regno == AT && mips_opts.at)
                    {
                      if (mips_opts.at == ATREG)
-                       as_warn (_("used $at without \".set noat\""));
+                       as_warn (_("Used $at without \".set noat\""));
                      else
-                       as_warn (_("used $%u with \".set at=$%u\""),
+                       as_warn (_("Used $%u with \".set at=$%u\""),
                                 regno, mips_opts.at);
                    }
                }
@@ -9576,41 +11780,58 @@ do_msbd:
                  if (c == 's' && !strncmp (ip->insn_mo->name, "jalr", 4))
                    {
                      if (regno == lastregno)
-                       {
-                         insn_error = _("source and destination must be different");
+                       {
+                         insn_error
+                           = _("Source and destination must be different");
                          continue;
-                       }
+                       }
                      if (regno == 31 && lastregno == 0xffffffff)
-                       {
-                         insn_error = _("a destination register must be supplied");
+                       {
+                         insn_error
+                           = _("A destination register must be supplied");
                          continue;
-                       }
+                       }
                    }
-       /* Now that we have assembled one operand, we use the args string
-        * to figure out where it goes in the instruction.  */
+                 /* Now that we have assembled one operand, we use the args
+                    string to figure out where it goes in the instruction.  */
                  switch (c)
                    {
                    case 'r':
                    case 's':
                    case 'v':
                    case 'b':
-                     INSERT_OPERAND (RS, *ip, regno);
+                     INSERT_OPERAND (mips_opts.micromips, RS, *ip, regno);
                      break;
-                   case 'd':
-                   case 'G':
+
                    case 'K':
+                     if (mips_opts.micromips)
+                       INSERT_OPERAND (1, RS, *ip, regno);
+                     else
+                       INSERT_OPERAND (0, RD, *ip, regno);
+                     break;
+
+                   case 'd':
                    case 'g':
-                     INSERT_OPERAND (RD, *ip, regno);
+                     INSERT_OPERAND (mips_opts.micromips, RD, *ip, regno);
                      break;
+
                    case 'U':
-                     INSERT_OPERAND (RD, *ip, regno);
-                     INSERT_OPERAND (RT, *ip, regno);
+                     gas_assert (!mips_opts.micromips);
+                     INSERT_OPERAND (0, RD, *ip, regno);
+                     INSERT_OPERAND (0, RT, *ip, regno);
                      break;
+
                    case 'w':
                    case 't':
                    case 'E':
-                     INSERT_OPERAND (RT, *ip, regno);
+                     INSERT_OPERAND (mips_opts.micromips, RT, *ip, regno);
+                     break;
+
+                   case 'y':
+                     gas_assert (mips_opts.micromips);
+                     INSERT_OPERAND (1, RS3, *ip, regno);
                      break;
+
                    case 'x':
                      /* This case exists because on the r3000 trunc
                         expands into a macro which requires a gp
@@ -9620,17 +11841,13 @@ do_msbd:
                         is MIPS_ISA2 and uses 'x', and the macro
                         version is MIPS_ISA1 and uses 't'.  */
                      break;
+
                    case 'z':
                      /* This case is for the div instruction, which
                         acts differently if the destination argument
                         is $0.  This only matches $0, and is checked
                         outside the switch.  */
                      break;
-                   case 'D':
-                     /* Itbl operand; not yet implemented. FIXME ?? */
-                     break;
-                     /* What about all other operands like 'i', which
-                        can be specified in the opcode table? */
                    }
                  lastregno = regno;
                  continue;
@@ -9639,21 +11856,23 @@ do_msbd:
                {
                case 'r':
                case 'v':
-                 INSERT_OPERAND (RS, *ip, lastregno);
+                 INSERT_OPERAND (mips_opts.micromips, RS, *ip, lastregno);
                  continue;
+
                case 'w':
-                 INSERT_OPERAND (RT, *ip, lastregno);
+                 INSERT_OPERAND (mips_opts.micromips, RT, *ip, lastregno);
                  continue;
                }
              break;
 
            case 'O':           /* MDMX alignment immediate constant.  */
+             gas_assert (!mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
              if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
                as_warn (_("Improper align amount (%ld), using low bits"),
                         (long) imm_expr.X_add_number);
-             INSERT_OPERAND (ALN, *ip, imm_expr.X_add_number);
+             INSERT_OPERAND (0, ALN, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
@@ -9662,12 +11881,13 @@ do_msbd:
              if (s[0] != '$')
                {
                  /* MDMX Immediate.  */
+                 gas_assert (!mips_opts.micromips);
                  my_getExpression (&imm_expr, s);
                  check_absolute_expr (ip, &imm_expr);
                  if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
                    as_warn (_("Invalid MDMX Immediate (%ld)"),
                             (long) imm_expr.X_add_number);
-                 INSERT_OPERAND (FT, *ip, imm_expr.X_add_number);
+                 INSERT_OPERAND (0, FT, *ip, imm_expr.X_add_number);
                  if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
                    ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
                  else
@@ -9681,12 +11901,13 @@ do_msbd:
            case 'Y':           /* MDMX source register.  */
            case 'Z':           /* MDMX target register.  */
              is_mdmx = 1;
-           case 'D':           /* floating point destination register */
-           case 'S':           /* floating point source register */
-           case 'T':           /* floating point target register */
-           case 'R':           /* floating point source register */
-           case 'V':
            case 'W':
+             gas_assert (!mips_opts.micromips);
+           case 'D':           /* Floating point destination register.  */
+           case 'S':           /* Floating point source register.  */
+           case 'T':           /* Floating point target register.  */
+           case 'R':           /* Floating point source register.  */
+           case 'V':
              rtype = RTYPE_FPU;
              if (is_mdmx
                  || (mips_opts.ase_mdmx
@@ -9702,7 +11923,7 @@ do_msbd:
                {
                  if ((regno & 1) != 0
                      && HAVE_32BIT_FPRS
-                     && ! mips_oddfpreg_ok (ip->insn_mo, argnum))
+                     && !mips_oddfpreg_ok (ip->insn_mo, argnum))
                    as_warn (_("Float register should be even, was %d"),
                             regno);
 
@@ -9722,13 +11943,15 @@ do_msbd:
                    {
                    case 'D':
                    case 'X':
-                     INSERT_OPERAND (FD, *ip, regno);
+                     INSERT_OPERAND (mips_opts.micromips, FD, *ip, regno);
                      break;
+
                    case 'V':
                    case 'S':
                    case 'Y':
-                     INSERT_OPERAND (FS, *ip, regno);
+                     INSERT_OPERAND (mips_opts.micromips, FS, *ip, regno);
                      break;
+
                    case 'Q':
                      /* This is like 'Z', but also needs to fix the MDMX
                         vector/scalar select bits.  Note that the
@@ -9763,14 +11986,15 @@ do_msbd:
                            ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
                                                OP_SH_VSEL);
                        }
-                      /* Fall through */
+                      /* Fall through */
                    case 'W':
                    case 'T':
                    case 'Z':
-                     INSERT_OPERAND (FT, *ip, regno);
+                     INSERT_OPERAND (mips_opts.micromips, FT, *ip, regno);
                      break;
+
                    case 'R':
-                     INSERT_OPERAND (FR, *ip, regno);
+                     INSERT_OPERAND (mips_opts.micromips, FR, *ip, regno);
                      break;
                    }
                  lastregno = regno;
@@ -9780,10 +12004,11 @@ do_msbd:
              switch (*args++)
                {
                case 'V':
-                 INSERT_OPERAND (FS, *ip, lastregno);
+                 INSERT_OPERAND (mips_opts.micromips, FS, *ip, lastregno);
                  continue;
+
                case 'W':
-                 INSERT_OPERAND (FT, *ip, lastregno);
+                 INSERT_OPERAND (mips_opts.micromips, FT, *ip, lastregno);
                  continue;
                }
              break;
@@ -9870,35 +12095,35 @@ do_msbd:
                            || (temp[2] == 0 && temp[3] == 0))))
                  {
                    imm_expr.X_op = O_constant;
-                   if (! target_big_endian)
+                   if (!target_big_endian)
                      imm_expr.X_add_number = bfd_getl32 (temp);
                    else
                      imm_expr.X_add_number = bfd_getb32 (temp);
                  }
                else if (length > 4
-                        && ! mips_disable_float_construction
+                        && !mips_disable_float_construction
                         /* Constants can only be constructed in GPRs and
                            copied to FPRs if the GPRs are at least as wide
                            as the FPRs.  Force the constant into memory if
                            we are using 64-bit FPRs but the GPRs are only
                            32 bits wide.  */
                         && (using_gprs
-                            || ! (HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
+                            || !(HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
                         && ((temp[0] == 0 && temp[1] == 0)
                             || (temp[2] == 0 && temp[3] == 0))
                         && ((temp[4] == 0 && temp[5] == 0)
                             || (temp[6] == 0 && temp[7] == 0)))
                  {
                    /* The value is simple enough to load with a couple of
-                       instructions.  If using 32-bit registers, set
-                       imm_expr to the high order 32 bits and offset_expr to
-                       the low order 32 bits.  Otherwise, set imm_expr to
-                       the entire 64 bit constant.  */
+                      instructions.  If using 32-bit registers, set
+                      imm_expr to the high order 32 bits and offset_expr to
+                      the low order 32 bits.  Otherwise, set imm_expr to
+                      the entire 64 bit constant.  */
                    if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
                      {
                        imm_expr.X_op = O_constant;
                        offset_expr.X_op = O_constant;
-                       if (! target_big_endian)
+                       if (!target_big_endian)
                          {
                            imm_expr.X_add_number = bfd_getl32 (temp + 4);
                            offset_expr.X_add_number = bfd_getl32 (temp);
@@ -9914,7 +12139,7 @@ do_msbd:
                    else if (sizeof (imm_expr.X_add_number) > 4)
                      {
                        imm_expr.X_op = O_constant;
-                       if (! target_big_endian)
+                       if (!target_big_endian)
                          imm_expr.X_add_number = bfd_getl64 (temp);
                        else
                          imm_expr.X_add_number = bfd_getb64 (temp);
@@ -9923,7 +12148,7 @@ do_msbd:
                      {
                        imm_expr.X_op = O_big;
                        imm_expr.X_add_number = 4;
-                       if (! target_big_endian)
+                       if (!target_big_endian)
                          {
                            generic_bignum[0] = bfd_getl16 (temp);
                            generic_bignum[1] = bfd_getl16 (temp + 2);
@@ -9994,15 +12219,15 @@ do_msbd:
              }
              continue;
 
-           case 'i':           /* 16 bit unsigned immediate */
-           case 'j':           /* 16 bit signed immediate */
+           case 'i':           /* 16-bit unsigned immediate.  */
+           case 'j':           /* 16-bit signed immediate.  */
              *imm_reloc = BFD_RELOC_LO16;
              if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
                {
                  int more;
                  offsetT minval, maxval;
 
-                 more = (insn + 1 < &mips_opcodes[NUMOPCODES]
+                 more = (insn + 1 < past
                          && strcmp (insn->name, insn[1].name) == 0);
 
                  /* If the expression was written as an unsigned number,
@@ -10035,155 +12260,928 @@ do_msbd:
                        break;
                      if (imm_expr.X_op == O_constant
                          || imm_expr.X_op == O_big)
-                       as_bad (_("expression out of range"));
+                       as_bad (_("Expression out of range"));
                    }
                }
              s = expr_end;
              continue;
 
-           case 'o':           /* 16 bit offset */
-             /* Check whether there is only a single bracketed expression
-                left.  If so, it must be the base register and the
-                constant must be zero.  */
-             if (*s == '(' && strchr (s + 1, '(') == 0)
-               {
-                 offset_expr.X_op = O_constant;
-                 offset_expr.X_add_number = 0;
+           case 'o':           /* 16-bit offset.  */
+             offset_reloc[0] = BFD_RELOC_LO16;
+             offset_reloc[1] = BFD_RELOC_UNUSED;
+             offset_reloc[2] = BFD_RELOC_UNUSED;
+
+             /* Check whether there is only a single bracketed expression
+                left.  If so, it must be the base register and the
+                constant must be zero.  */
+             if (*s == '(' && strchr (s + 1, '(') == 0)
+               {
+                 offset_expr.X_op = O_constant;
+                 offset_expr.X_add_number = 0;
+                 continue;
+               }
+
+             /* If this value won't fit into a 16 bit offset, then go
+                find a macro that will generate the 32 bit offset
+                code pattern.  */
+             if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
+                 && (offset_expr.X_op != O_constant
+                     || offset_expr.X_add_number >= 0x8000
+                     || offset_expr.X_add_number < -0x8000))
+               break;
+
+             s = expr_end;
+             continue;
+
+           case 'p':           /* PC-relative offset.  */
+             *offset_reloc = BFD_RELOC_16_PCREL_S2;
+             my_getExpression (&offset_expr, s);
+             s = expr_end;
+             continue;
+
+           case 'u':           /* Upper 16 bits.  */
+             if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0
+                 && imm_expr.X_op == O_constant
+                 && (imm_expr.X_add_number < 0
+                     || imm_expr.X_add_number >= 0x10000))
+               as_bad (_("lui expression (%lu) not in range 0..65535"),
+                       (unsigned long) imm_expr.X_add_number);
+             s = expr_end;
+             continue;
+
+           case 'a':           /* 26-bit address.  */
+             *offset_reloc = BFD_RELOC_MIPS_JMP;
+             my_getExpression (&offset_expr, s);
+             s = expr_end;
+             continue;
+
+           case 'N':           /* 3-bit branch condition code.  */
+           case 'M':           /* 3-bit compare condition code.  */
+             rtype = RTYPE_CCC;
+             if (ip->insn_mo->pinfo & (FP_D | FP_S))
+               rtype |= RTYPE_FCC;
+             if (!reg_lookup (&s, rtype, &regno))
+               break;
+             if ((strcmp (str + strlen (str) - 3, ".ps") == 0
+                  || strcmp (str + strlen (str) - 5, "any2f") == 0
+                  || strcmp (str + strlen (str) - 5, "any2t") == 0)
+                 && (regno & 1) != 0)
+               as_warn (_("Condition code register should be even for %s, "
+                          "was %d"),
+                        str, regno);
+             if ((strcmp (str + strlen (str) - 5, "any4f") == 0
+                  || strcmp (str + strlen (str) - 5, "any4t") == 0)
+                 && (regno & 3) != 0)
+               as_warn (_("Condition code register should be 0 or 4 for %s, "
+                          "was %d"),
+                        str, regno);
+             if (*args == 'N')
+               INSERT_OPERAND (mips_opts.micromips, BCC, *ip, regno);
+             else
+               INSERT_OPERAND (mips_opts.micromips, CCC, *ip, regno);
+             continue;
+
+           case 'H':
+             if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
+               s += 2;
+             if (ISDIGIT (*s))
+               {
+                 c = 0;
+                 do
+                   {
+                     c *= 10;
+                     c += *s - '0';
+                     ++s;
+                   }
+                 while (ISDIGIT (*s));
+               }
+             else
+               c = 8; /* Invalid sel value.  */
+
+             if (c > 7)
+               as_bad (_("Invalid coprocessor sub-selection value (0-7)"));
+             INSERT_OPERAND (mips_opts.micromips, SEL, *ip, c);
+             continue;
+
+           case 'e':
+             gas_assert (!mips_opts.micromips);
+             /* Must be at least one digit.  */
+             my_getExpression (&imm_expr, s);
+             check_absolute_expr (ip, &imm_expr);
+
+             if ((unsigned long) imm_expr.X_add_number
+                 > (unsigned long) OP_MASK_VECBYTE)
+               {
+                 as_bad (_("bad byte vector index (%ld)"),
+                          (long) imm_expr.X_add_number);
+                 imm_expr.X_add_number = 0;
+               }
+
+             INSERT_OPERAND (0, VECBYTE, *ip, imm_expr.X_add_number);
+             imm_expr.X_op = O_absent;
+             s = expr_end;
+             continue;
+
+           case '%':
+             gas_assert (!mips_opts.micromips);
+             my_getExpression (&imm_expr, s);
+             check_absolute_expr (ip, &imm_expr);
+
+             if ((unsigned long) imm_expr.X_add_number
+                 > (unsigned long) OP_MASK_VECALIGN)
+               {
+                 as_bad (_("bad byte vector index (%ld)"),
+                          (long) imm_expr.X_add_number);
+                 imm_expr.X_add_number = 0;
+               }
+
+             INSERT_OPERAND (0, VECALIGN, *ip, imm_expr.X_add_number);
+             imm_expr.X_op = O_absent;
+             s = expr_end;
+             continue;
+
+           case 'm':           /* Opcode extension character.  */
+             gas_assert (mips_opts.micromips);
+             c = *++args;
+             switch (c)
+               {
+               case 'r':
+                 if (strncmp (s, "$pc", 3) == 0)
+                   {
+                     s += 3;
+                     continue;
+                   }
+                 break;
+
+               case 'a':
+               case 'b':
+               case 'c':
+               case 'd':
+               case 'e':
+               case 'f':
+               case 'g':
+               case 'h':
+               case 'i':
+               case 'j':
+               case 'l':
+               case 'm':
+               case 'n':
+               case 'p':
+               case 'q':
+               case 's':
+               case 't':
+               case 'x':
+               case 'y':
+               case 'z':
+                 s_reset = s;
+                 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
+                 if (regno == AT && mips_opts.at)
+                   {
+                     if (mips_opts.at == ATREG)
+                       as_warn (_("Used $at without \".set noat\""));
+                     else
+                       as_warn (_("Used $%u with \".set at=$%u\""),
+                                regno, mips_opts.at);
+                   }
+                 if (!ok)
+                   {
+                     if (c == 'c')
+                       {
+                         gas_assert (args[1] == ',');
+                         regno = lastregno;
+                         ++args;
+                       }
+                     else if (c == 't')
+                       {
+                         gas_assert (args[1] == ',');
+                         ++args;
+                         continue;                     /* Nothing to do.  */
+                       }
+                     else
+                       break;
+                   }
+
+                 if (c == 'j' && !strncmp (ip->insn_mo->name, "jalr", 4))
+                   {
+                     if (regno == lastregno)
+                       {
+                         insn_error
+                           = _("Source and destination must be different");
+                         continue;
+                       }
+                     if (regno == 31 && lastregno == 0xffffffff)
+                       {
+                         insn_error
+                           = _("A destination register must be supplied");
+                         continue;
+                       }
+                   }
+
+                 if (*s == ' ')
+                   ++s;
+                 if (args[1] != *s)
+                   {
+                     if (c == 'e')
+                       {
+                         gas_assert (args[1] == ',');
+                         regno = lastregno;
+                         s = s_reset;
+                         ++args;
+                       }
+                     else if (c == 't')
+                       {
+                         gas_assert (args[1] == ',');
+                         s = s_reset;
+                         ++args;
+                         continue;                     /* Nothing to do.  */
+                       }
+                   }
+
+                 /* Make sure regno is the same as lastregno.  */
+                 if (c == 't' && regno != lastregno)
+                   break;
+
+                 /* Make sure regno is the same as destregno.  */
+                 if (c == 'x' && regno != destregno)
+                   break;
+
+                 /* We need to save regno, before regno maps to the
+                    microMIPS register encoding.  */
+                 lastregno = regno;
+
+                 if (c == 'f')
+                   destregno = regno;
+
+                 switch (c)
+                   {
+                     case 'a':
+                       if (regno != GP)
+                         regno = ILLEGAL_REG;
+                       break;
+
+                     case 'b':
+                       regno = mips32_to_micromips_reg_b_map[regno];
+                       break;
+
+                     case 'c':
+                       regno = mips32_to_micromips_reg_c_map[regno];
+                       break;
+
+                     case 'd':
+                       regno = mips32_to_micromips_reg_d_map[regno];
+                       break;
+
+                     case 'e':
+                       regno = mips32_to_micromips_reg_e_map[regno];
+                       break;
+
+                     case 'f':
+                       regno = mips32_to_micromips_reg_f_map[regno];
+                       break;
+
+                     case 'g':
+                       regno = mips32_to_micromips_reg_g_map[regno];
+                       break;
+
+                     case 'h':
+                       regno = mips32_to_micromips_reg_h_map[regno];
+                       break;
+
+                     case 'i':
+                       switch (EXTRACT_OPERAND (1, MI, *ip))
+                         {
+                           case 4:
+                             if (regno == 21)
+                               regno = 3;
+                             else if (regno == 22)
+                               regno = 4;
+                             else if (regno == 5)
+                               regno = 5;
+                             else if (regno == 6)
+                               regno = 6;
+                             else if (regno == 7)
+                               regno = 7;
+                             else
+                               regno = ILLEGAL_REG;
+                             break;
+
+                           case 5:
+                             if (regno == 6)
+                               regno = 0;
+                             else if (regno == 7)
+                               regno = 1;
+                             else
+                               regno = ILLEGAL_REG;
+                             break;
+
+                           case 6:
+                             if (regno == 7)
+                               regno = 2;
+                             else
+                               regno = ILLEGAL_REG;
+                             break;
+
+                           default:
+                             regno = ILLEGAL_REG;
+                             break;
+                         }
+                       break;
+
+                     case 'l':
+                       regno = mips32_to_micromips_reg_l_map[regno];
+                       break;
+
+                     case 'm':
+                       regno = mips32_to_micromips_reg_m_map[regno];
+                       break;
+
+                     case 'n':
+                       regno = mips32_to_micromips_reg_n_map[regno];
+                       break;
+
+                     case 'q':
+                       regno = mips32_to_micromips_reg_q_map[regno];
+                       break;
+
+                     case 's':
+                       if (regno != SP)
+                         regno = ILLEGAL_REG;
+                       break;
+
+                     case 'y':
+                       if (regno != 31)
+                         regno = ILLEGAL_REG;
+                       break;
+
+                     case 'z':
+                       if (regno != ZERO)
+                         regno = ILLEGAL_REG;
+                       break;
+
+                     case 'j': /* Do nothing.  */
+                     case 'p':
+                     case 't':
+                     case 'x':
+                       break;
+
+                     default:
+                       internalError ();
+                   }
+
+                 if (regno == ILLEGAL_REG)
+                   break;
+
+                 switch (c)
+                   {
+                     case 'b':
+                       INSERT_OPERAND (1, MB, *ip, regno);
+                       break;
+
+                     case 'c':
+                       INSERT_OPERAND (1, MC, *ip, regno);
+                       break;
+
+                     case 'd':
+                       INSERT_OPERAND (1, MD, *ip, regno);
+                       break;
+
+                     case 'e':
+                       INSERT_OPERAND (1, ME, *ip, regno);
+                       break;
+
+                     case 'f':
+                       INSERT_OPERAND (1, MF, *ip, regno);
+                       break;
+
+                     case 'g':
+                       INSERT_OPERAND (1, MG, *ip, regno);
+                       break;
+
+                     case 'h':
+                       INSERT_OPERAND (1, MH, *ip, regno);
+                       break;
+
+                     case 'i':
+                       INSERT_OPERAND (1, MI, *ip, regno);
+                       break;
+
+                     case 'j':
+                       INSERT_OPERAND (1, MJ, *ip, regno);
+                       break;
+
+                     case 'l':
+                       INSERT_OPERAND (1, ML, *ip, regno);
+                       break;
+
+                     case 'm':
+                       INSERT_OPERAND (1, MM, *ip, regno);
+                       break;
+
+                     case 'n':
+                       INSERT_OPERAND (1, MN, *ip, regno);
+                       break;
+
+                     case 'p':
+                       INSERT_OPERAND (1, MP, *ip, regno);
+                       break;
+
+                     case 'q':
+                       INSERT_OPERAND (1, MQ, *ip, regno);
+                       break;
+
+                     case 'a': /* Do nothing.  */
+                     case 's': /* Do nothing.  */
+                     case 't': /* Do nothing.  */
+                     case 'x': /* Do nothing.  */
+                     case 'y': /* Do nothing.  */
+                     case 'z': /* Do nothing.  */
+                       break;
+
+                     default:
+                       internalError ();
+                   }
+                 continue;
+
+               case 'A':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   /* Check whether there is only a single bracketed
+                      expression left.  If so, it must be the base register
+                      and the constant must be zero.  */
+                   if (*s == '(' && strchr (s + 1, '(') == 0)
+                     {
+                       INSERT_OPERAND (1, IMMA, *ip, 0);
+                       continue;
+                     }
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, -64, 64, 2))
+                     break;
+
+                   imm = ep.X_add_number >> 2;
+                   INSERT_OPERAND (1, IMMA, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
+
+               case 'B':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || ep.X_op != O_constant)
+                     break;
+
+                   for (imm = 0; imm < 8; imm++)
+                     if (micromips_imm_b_map[imm] == ep.X_add_number)
+                       break;
+                   if (imm >= 8)
+                     break;
+
+                   INSERT_OPERAND (1, IMMB, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
+
+               case 'C':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || ep.X_op != O_constant)
+                     break;
+
+                   for (imm = 0; imm < 16; imm++)
+                     if (micromips_imm_c_map[imm] == ep.X_add_number)
+                       break;
+                   if (imm >= 16)
+                     break;
+
+                   INSERT_OPERAND (1, IMMC, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
+
+               case 'D':       /* pc relative offset */
+               case 'E':       /* pc relative offset */
+                 my_getExpression (&offset_expr, s);
+                 if (offset_expr.X_op == O_register)
+                   break;
+
+                 if (!forced_insn_length)
+                   *offset_reloc = (int) BFD_RELOC_UNUSED + c;
+                 else if (c == 'D')
+                   *offset_reloc = BFD_RELOC_MICROMIPS_10_PCREL_S1;
+                 else
+                   *offset_reloc = BFD_RELOC_MICROMIPS_7_PCREL_S1;
+                 s = expr_end;
+                 continue;
+
+               case 'F':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, 0, 16, 0))
+                     break;
+
+                   imm = ep.X_add_number;
+                   INSERT_OPERAND (1, IMMF, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
+
+               case 'G':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   /* Check whether there is only a single bracketed
+                      expression left.  If so, it must be the base register
+                      and the constant must be zero.  */
+                   if (*s == '(' && strchr (s + 1, '(') == 0)
+                     {
+                       INSERT_OPERAND (1, IMMG, *ip, 0);
+                       continue;
+                     }
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, -1, 15, 0))
+                     break;
+
+                   imm = ep.X_add_number & 15;
+                   INSERT_OPERAND (1, IMMG, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
+
+               case 'H':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   /* Check whether there is only a single bracketed
+                      expression left.  If so, it must be the base register
+                      and the constant must be zero.  */
+                   if (*s == '(' && strchr (s + 1, '(') == 0)
+                     {
+                       INSERT_OPERAND (1, IMMH, *ip, 0);
+                       continue;
+                     }
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, 0, 16, 1))
+                     break;
+
+                   imm = ep.X_add_number >> 1;
+                   INSERT_OPERAND (1, IMMH, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
+
+               case 'I':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, -1, 127, 0))
+                     break;
+
+                   imm = ep.X_add_number & 127;
+                   INSERT_OPERAND (1, IMMI, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
+
+               case 'J':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   /* Check whether there is only a single bracketed
+                      expression left.  If so, it must be the base register
+                      and the constant must be zero.  */
+                   if (*s == '(' && strchr (s + 1, '(') == 0)
+                     {
+                       INSERT_OPERAND (1, IMMJ, *ip, 0);
+                       continue;
+                     }
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, 0, 16, 2))
+                     break;
+
+                   imm = ep.X_add_number >> 2;
+                   INSERT_OPERAND (1, IMMJ, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
+
+               case 'L':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   /* Check whether there is only a single bracketed
+                      expression left.  If so, it must be the base register
+                      and the constant must be zero.  */
+                   if (*s == '(' && strchr (s + 1, '(') == 0)
+                     {
+                       INSERT_OPERAND (1, IMML, *ip, 0);
+                       continue;
+                     }
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, 0, 16, 0))
+                     break;
+
+                   imm = ep.X_add_number;
+                   INSERT_OPERAND (1, IMML, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
+
+               case 'M':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, 1, 9, 0))
+                     break;
+
+                   imm = ep.X_add_number & 7;
+                   INSERT_OPERAND (1, IMMM, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
+
+               case 'N':       /* Register list for lwm and swm.  */
+                 {
+                   /* A comma-separated list of registers and/or
+                      dash-separated contiguous ranges including
+                      both ra and a set of one or more registers
+                      starting at s0 up to s3 which have to be
+                      consecutive, e.g.:
+
+                      s0, ra
+                      s0, s1, ra, s2, s3
+                      s0-s2, ra
+
+                      and any permutations of these.  */
+                   unsigned int reglist;
+                   int imm;
+
+                   if (!reglist_lookup (&s, RTYPE_NUM | RTYPE_GP, &reglist))
+                     break;
+
+                   if ((reglist & 0xfff1ffff) != 0x80010000)
+                     break;
+
+                   reglist = (reglist >> 17) & 7;
+                   reglist += 1;
+                   if ((reglist & -reglist) != reglist)
+                     break;
+
+                   imm = ffs (reglist) - 1;
+                   INSERT_OPERAND (1, IMMN, *ip, imm);
+                 }
+                 continue;
+
+               case 'O':       /* sdbbp 4-bit code.  */
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, 0, 16, 0))
+                     break;
+
+                   imm = ep.X_add_number;
+                   INSERT_OPERAND (1, IMMO, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
+
+               case 'P':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, 0, 32, 2))
+                     break;
+
+                   imm = ep.X_add_number >> 2;
+                   INSERT_OPERAND (1, IMMP, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
+
+               case 'Q':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, -0x400000, 0x400000, 2))
+                     break;
+
+                   imm = ep.X_add_number >> 2;
+                   INSERT_OPERAND (1, IMMQ, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
+
+               case 'U':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   /* Check whether there is only a single bracketed
+                      expression left.  If so, it must be the base register
+                      and the constant must be zero.  */
+                   if (*s == '(' && strchr (s + 1, '(') == 0)
+                     {
+                       INSERT_OPERAND (1, IMMU, *ip, 0);
+                       continue;
+                     }
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, 0, 32, 2))
+                     break;
+
+                   imm = ep.X_add_number >> 2;
+                   INSERT_OPERAND (1, IMMU, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
+
+               case 'W':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, 0, 64, 2))
+                     break;
+
+                   imm = ep.X_add_number >> 2;
+                   INSERT_OPERAND (1, IMMW, *ip, imm);
+                 }
+                 s = expr_end;
                  continue;
-               }
 
-             /* If this value won't fit into a 16 bit offset, then go
-                find a macro that will generate the 32 bit offset
-                code pattern.  */
-             if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
-                 && (offset_expr.X_op != O_constant
-                     || offset_expr.X_add_number >= 0x8000
-                     || offset_expr.X_add_number < -0x8000))
-               break;
+               case 'X':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
 
-             s = expr_end;
-             continue;
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, -8, 8, 0))
+                     break;
 
-           case 'p':           /* pc relative offset */
-             *offset_reloc = BFD_RELOC_16_PCREL_S2;
-             my_getExpression (&offset_expr, s);
-             s = expr_end;
-             continue;
+                   imm = ep.X_add_number;
+                   INSERT_OPERAND (1, IMMX, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
 
-           case 'u':           /* upper 16 bits */
-             if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0
-                 && imm_expr.X_op == O_constant
-                 && (imm_expr.X_add_number < 0
-                     || imm_expr.X_add_number >= 0x10000))
-               as_bad (_("lui expression not in range 0..65535"));
-             s = expr_end;
-             continue;
+               case 'Y':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+                   int imm;
 
-           case 'a':           /* 26 bit address */
-             my_getExpression (&offset_expr, s);
-             s = expr_end;
-             *offset_reloc = BFD_RELOC_MIPS_JMP;
-             continue;
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || expr_const_in_range (&ep, -2, 2, 2)
+                       || !expr_const_in_range (&ep, -258, 258, 2))
+                     break;
 
-           case 'N':           /* 3 bit branch condition code */
-           case 'M':           /* 3 bit compare condition code */
-             rtype = RTYPE_CCC;
-             if (ip->insn_mo->pinfo & (FP_D| FP_S))
-               rtype |= RTYPE_FCC;
-             if (!reg_lookup (&s, rtype, &regno))
-               break;
-             if ((strcmp(str + strlen(str) - 3, ".ps") == 0
-                  || strcmp(str + strlen(str) - 5, "any2f") == 0
-                  || strcmp(str + strlen(str) - 5, "any2t") == 0)
-                 && (regno & 1) != 0)
-               as_warn (_("Condition code register should be even for %s, was %d"),
-                        str, regno);
-             if ((strcmp(str + strlen(str) - 5, "any4f") == 0
-                  || strcmp(str + strlen(str) - 5, "any4t") == 0)
-                 && (regno & 3) != 0)
-               as_warn (_("Condition code register should be 0 or 4 for %s, was %d"),
-                        str, regno);
-             if (*args == 'N')
-               INSERT_OPERAND (BCC, *ip, regno);
-             else
-               INSERT_OPERAND (CCC, *ip, regno);
-             continue;
+                   imm = ep.X_add_number >> 2;
+                   imm = ((imm >> 1) & ~0xff) | (imm & 0xff);
+                   INSERT_OPERAND (1, IMMY, *ip, imm);
+                 }
+                 s = expr_end;
+                 continue;
 
-           case 'H':
-             if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
-               s += 2;
-             if (ISDIGIT (*s))
-               {
-                 c = 0;
-                 do
-                   {
-                     c *= 10;
-                     c += *s - '0';
-                     ++s;
-                   }
-                 while (ISDIGIT (*s));
+               case 'Z':
+                 {
+                   bfd_reloc_code_real_type r[3];
+                   expressionS ep;
+
+                   if (my_getSmallExpression (&ep, r, s) > 0
+                       || !expr_const_in_range (&ep, 0, 1, 0))
+                     break;
+                 }
+                 s = expr_end;
+                 continue;
+
+               default:
+                 as_bad (_("Internal error: bad microMIPS opcode "
+                           "(unknown extension operand type `m%c'): %s %s"),
+                         *args, insn->name, insn->args);
+                 /* Further processing is fruitless.  */
+                 return;
                }
-             else
-               c = 8; /* Invalid sel value.  */
+             break;
 
-             if (c > 7)
-               as_bad (_("invalid coprocessor sub-selection value (0-7)"));
-             ip->insn_opcode |= c;
-             continue;
+           case 'n':           /* Register list for 32-bit lwm and swm.  */
+             gas_assert (mips_opts.micromips);
+             {
+               /* A comma-separated list of registers and/or
+                  dash-separated contiguous ranges including
+                  at least one of ra and a set of one or more
+                  registers starting at s0 up to s7 and then
+                  s8 which have to be consecutive, e.g.:
+
+                  ra
+                  s0
+                  ra, s0, s1, s2
+                  s0-s8
+                  s0-s5, ra
+
+                  and any permutations of these.  */
+               unsigned int reglist;
+               int imm;
+               int ra;
+
+               if (!reglist_lookup (&s, RTYPE_NUM | RTYPE_GP, &reglist))
+                 break;
 
-           case 'e':
-             /* Must be at least one digit.  */
-             my_getExpression (&imm_expr, s);
-             check_absolute_expr (ip, &imm_expr);
+               if ((reglist & 0x3f00ffff) != 0)
+                 break;
 
-             if ((unsigned long) imm_expr.X_add_number
-                 > (unsigned long) OP_MASK_VECBYTE)
-               {
-                 as_bad (_("bad byte vector index (%ld)"),
-                          (long) imm_expr.X_add_number);
-                 imm_expr.X_add_number = 0;
-               }
+               ra = (reglist >> 27) & 0x10;
+               reglist = ((reglist >> 22) & 0x100) | ((reglist >> 16) & 0xff);
+               reglist += 1;
+               if ((reglist & -reglist) != reglist)
+                 break;
 
-             INSERT_OPERAND (VECBYTE, *ip, imm_expr.X_add_number);
-             imm_expr.X_op = O_absent;
-             s = expr_end;
+               imm = (ffs (reglist) - 1) | ra;
+               INSERT_OPERAND (1, RT, *ip, imm);
+               imm_expr.X_op = O_absent;
+             }
              continue;
 
-           case '%':
+           case '|':           /* 4-bit trap code.  */
+             gas_assert (mips_opts.micromips);
              my_getExpression (&imm_expr, s);
              check_absolute_expr (ip, &imm_expr);
-
              if ((unsigned long) imm_expr.X_add_number
-                 > (unsigned long) OP_MASK_VECALIGN)
-               {
-                 as_bad (_("bad byte vector index (%ld)"),
-                          (long) imm_expr.X_add_number);
-                 imm_expr.X_add_number = 0;
-               }
-
-             INSERT_OPERAND (VECALIGN, *ip, imm_expr.X_add_number);
+                 > MICROMIPSOP_MASK_TRAP)
+               as_bad (_("Trap code (%lu) for %s not in 0..15 range"),
+                       (unsigned long) imm_expr.X_add_number,
+                       ip->insn_mo->name);
+             INSERT_OPERAND (1, TRAP, *ip, imm_expr.X_add_number);
              imm_expr.X_op = O_absent;
              s = expr_end;
              continue;
 
            default:
-             as_bad (_("bad char = '%c'\n"), *args);
+             as_bad (_("Bad char = '%c'\n"), *args);
              internalError ();
            }
          break;
        }
       /* Args don't match.  */
-      if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
-         !strcmp (insn->name, insn[1].name))
+      s = argsStart;
+      insn_error = _("Illegal operands");
+      if (insn + 1 < past && !strcmp (insn->name, insn[1].name))
        {
          ++insn;
-         s = argsStart;
-         insn_error = _("illegal operands");
          continue;
        }
-      if (save_c)
-       *(--argsStart) = save_c;
-      insn_error = _("illegal operands");
+      else if (wrong_delay_slot_insns && need_delay_slot_ok)
+       {
+         gas_assert (firstinsn);
+         need_delay_slot_ok = FALSE;
+         past = insn + 1;
+         insn = firstinsn;
+         continue;
+       }
       return;
     }
 }
@@ -10192,10 +13190,10 @@ do_msbd:
 
 /* This routine assembles an instruction into its binary format when
    assembling for the mips16.  As a side effect, it sets one of the
-   global variables imm_reloc or offset_reloc to the type of
-   relocation to do if one of the operands is an address expression.
-   It also sets mips16_small and mips16_ext if the user explicitly
-   requested a small or extended instruction.  */
+   global variables imm_reloc or offset_reloc to the type of relocation
+   to do if one of the operands is an address expression.  It also sets
+   forced_insn_length to the resulting instruction size in bytes if the
+   user explicitly requested a small or extended instruction.  */
 
 static void
 mips16_ip (char *str, struct mips_cl_insn *ip)
@@ -10211,8 +13209,7 @@ mips16_ip (char *str, struct mips_cl_insn *ip)
 
   insn_error = NULL;
 
-  mips16_small = FALSE;
-  mips16_ext = FALSE;
+  forced_insn_length = 0;
 
   for (s = str; ISLOWER (*s); ++s)
     ;
@@ -10229,14 +13226,14 @@ mips16_ip (char *str, struct mips_cl_insn *ip)
       if (s[1] == 't' && s[2] == ' ')
        {
          *s = '\0';
-         mips16_small = TRUE;
+         forced_insn_length = 2;
          s += 3;
          break;
        }
       else if (s[1] == 'e' && s[2] == ' ')
        {
          *s = '\0';
-         mips16_ext = TRUE;
+         forced_insn_length = 4;
          s += 3;
          break;
        }
@@ -10246,8 +13243,8 @@ mips16_ip (char *str, struct mips_cl_insn *ip)
       return;
     }
 
-  if (mips_opts.noautoextend && ! mips16_ext)
-    mips16_small = TRUE;
+  if (mips_opts.noautoextend && !forced_insn_length)
+    forced_insn_length = 2;
 
   if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
     {
@@ -10277,7 +13274,7 @@ mips16_ip (char *str, struct mips_cl_insn *ip)
                {
                  static char buf[100];
                  sprintf (buf,
-                          _("opcode not supported on this processor: %s (%s)"),
+                          _("Opcode not supported on this processor: %s (%s)"),
                           mips_cpu_info_from_arch (mips_opts.arch)->name,
                           mips_cpu_info_from_isa (mips_opts.isa)->name);
                  insn_error = buf;
@@ -10347,8 +13344,8 @@ mips16_ip (char *str, struct mips_cl_insn *ip)
                      *offset_reloc = BFD_RELOC_UNUSED;
 
                      mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
-                                   tmp, TRUE, mips16_small,
-                                   mips16_ext, &ip->insn_opcode,
+                                   tmp, TRUE, forced_insn_length == 2,
+                                   forced_insn_length == 4, &ip->insn_opcode,
                                    &ip->use_extend, &ip->extend);
                      imm_expr.X_op = O_absent;
                      *imm_reloc = BFD_RELOC_UNUSED;
@@ -10528,7 +13525,7 @@ mips16_ip (char *str, struct mips_cl_insn *ip)
                {
                  if (imm_expr.X_op != O_constant)
                    {
-                     mips16_ext = TRUE;
+                     forced_insn_length = 4;
                      ip->use_extend = TRUE;
                      ip->extend = 0;
                    }
@@ -11089,7 +14086,14 @@ static const struct percent_op_match mips16_percent_op[] =
   {"%gprel", BFD_RELOC_MIPS16_GPREL},
   {"%got", BFD_RELOC_MIPS16_GOT16},
   {"%call16", BFD_RELOC_MIPS16_CALL16},
-  {"%hi", BFD_RELOC_MIPS16_HI16_S}
+  {"%hi", BFD_RELOC_MIPS16_HI16_S},
+  {"%tlsgd", BFD_RELOC_MIPS16_TLS_GD},
+  {"%tlsldm", BFD_RELOC_MIPS16_TLS_LDM},
+  {"%dtprel_hi", BFD_RELOC_MIPS16_TLS_DTPREL_HI16},
+  {"%dtprel_lo", BFD_RELOC_MIPS16_TLS_DTPREL_LO16},
+  {"%tprel_hi", BFD_RELOC_MIPS16_TLS_TPREL_HI16},
+  {"%tprel_lo", BFD_RELOC_MIPS16_TLS_TPREL_LO16},
+  {"%gottprel", BFD_RELOC_MIPS16_TLS_GOTTPREL}
 };
 
 
@@ -11203,26 +14207,12 @@ static void
 my_getExpression (expressionS *ep, char *str)
 {
   char *save_in;
-  valueT val;
 
   save_in = input_line_pointer;
   input_line_pointer = str;
   expression (ep);
   expr_end = input_line_pointer;
   input_line_pointer = save_in;
-
-  /* If we are in mips16 mode, and this is an expression based on `.',
-     then we bump the value of the symbol by 1 since that is how other
-     text symbols are handled.  We don't bother to handle complex
-     expressions, just `.' plus or minus a constant.  */
-  if (mips_opts.mips16
-      && ep->X_op == O_symbol
-      && strcmp (S_GET_NAME (ep->X_add_symbol), FAKE_LABEL_NAME) == 0
-      && S_GET_SEGMENT (ep->X_add_symbol) == now_seg
-      && symbol_get_frag (ep->X_add_symbol) == frag_now
-      && symbol_constant_p (ep->X_add_symbol)
-      && (val = S_GET_VALUE (ep->X_add_symbol)) == frag_now_fix ())
-    S_SET_VALUE (ep->X_add_symbol, val + 1);
 }
 
 char *
@@ -11248,14 +14238,8 @@ static int support_64bit_objects(void)
 
   list = bfd_target_list ();
   for (l = list; *l != NULL; l++)
-#ifdef TE_TMIPS
-    /* This is traditional mips */
-    if (strcmp (*l, "elf64-tradbigmips") == 0
-       || strcmp (*l, "elf64-tradlittlemips") == 0)
-#else
-    if (strcmp (*l, "elf64-bigmips") == 0
-       || strcmp (*l, "elf64-littlemips") == 0)
-#endif
+    if (strcmp (*l, ELF_TARGET ("elf64-", "big")) == 0
+       || strcmp (*l, ELF_TARGET ("elf64-", "little")) == 0)
       break;
   yes = (*l != NULL);
   free (list);
@@ -11292,6 +14276,10 @@ enum options
     OPTION_NO_SMARTMIPS,
     OPTION_DSPR2,
     OPTION_NO_DSPR2,
+    OPTION_MICROMIPS,
+    OPTION_NO_MICROMIPS,
+    OPTION_MCU,
+    OPTION_NO_MCU,
     OPTION_COMPAT_ARCH_BASE,
     OPTION_M4650,
     OPTION_NO_M4650,
@@ -11384,6 +14372,10 @@ struct option md_longopts[] =
   {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS},
   {"mdspr2", no_argument, NULL, OPTION_DSPR2},
   {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2},
+  {"mmicromips", no_argument, NULL, OPTION_MICROMIPS},
+  {"mno-micromips", no_argument, NULL, OPTION_NO_MICROMIPS},
+  {"mmcu", no_argument, NULL, OPTION_MCU},
+  {"mno-mcu", no_argument, NULL, OPTION_NO_MCU},
 
   /* Old-style architecture options.  Don't add more of these.  */
   {"m4650", no_argument, NULL, OPTION_M4650},
@@ -11638,7 +14630,35 @@ md_parse_option (int c, char *arg)
       mips_opts.ase_mt = 0;
       break;
 
+    case OPTION_MCU:
+      mips_opts.ase_mcu = 1;
+      break;
+
+    case OPTION_NO_MCU:
+      mips_opts.ase_mcu = 0;
+      break;
+
+    case OPTION_MICROMIPS:
+      if (mips_opts.mips16 == 1)
+       {
+         as_bad (_("-mmicromips cannot be used with -mips16"));
+         return 0;
+       }
+      mips_opts.micromips = 1;
+      mips_no_prev_insn ();
+      break;
+
+    case OPTION_NO_MICROMIPS:
+      mips_opts.micromips = 0;
+      mips_no_prev_insn ();
+      break;
+
     case OPTION_MIPS16:
+      if (mips_opts.micromips == 1)
+       {
+         as_bad (_("-mips16 cannot be used with -micromips"));
+         return 0;
+       }
       mips_opts.mips16 = 1;
       mips_no_prev_insn ();
       break;
@@ -12076,6 +15096,8 @@ mips_after_parse_args (void)
      generation of code for them.  */
   if (mips_opts.mips16 == -1)
     mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
+  if (mips_opts.micromips == -1)
+    mips_opts.micromips = (CPU_HAS_MICROMIPS (file_mips_arch)) ? 1 : 0;
   if (mips_opts.ase_mips3d == -1)
     mips_opts.ase_mips3d = ((arch_info->flags & MIPS_CPU_ASE_MIPS3D)
                            && file_mips_fp32 == 0) ? 1 : 0;
@@ -12115,8 +15137,13 @@ mips_after_parse_args (void)
     as_warn (_("%s ISA does not support MT ASE"),
             mips_cpu_info_from_isa (mips_opts.isa)->name);
 
+  if (mips_opts.ase_mcu == -1)
+    mips_opts.ase_mcu = (arch_info->flags & MIPS_CPU_ASE_MCU) ? 1 : 0;
+  if (mips_opts.ase_mcu && !ISA_SUPPORTS_MCU_ASE)
+      as_warn (_("%s ISA does not support MCU ASE"),
+              mips_cpu_info_from_isa (mips_opts.isa)->name);
+
   file_mips_isa = mips_opts.isa;
-  file_ase_mips16 = mips_opts.mips16;
   file_ase_mips3d = mips_opts.ase_mips3d;
   file_ase_mdmx = mips_opts.ase_mdmx;
   file_ase_smartmips = mips_opts.ase_smartmips;
@@ -12153,10 +15180,18 @@ md_pcrel_from (fixS *fixP)
   valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
   switch (fixP->fx_r_type)
     {
+    case BFD_RELOC_MICROMIPS_7_PCREL_S1:
+    case BFD_RELOC_MICROMIPS_10_PCREL_S1:
+      /* Return the address of the delay slot.  */
+      return addr + 2;
+
+    case BFD_RELOC_MICROMIPS_16_PCREL_S1:
+    case BFD_RELOC_MICROMIPS_JMP:
     case BFD_RELOC_16_PCREL_S2:
     case BFD_RELOC_MIPS_JMP:
       /* Return the address of the delay slot.  */
       return addr + 4;
+
     default:
       /* We have no relocation type for PC relative MIPS16 instructions.  */
       if (fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != now_seg)
@@ -12316,6 +15351,13 @@ mips_force_relocation (fixS *fixp)
   if (generic_force_reloc (fixp))
     return 1;
 
+  /* We want to keep BFD_RELOC_MICROMIPS_*_PCREL_S1 relocation,
+     so that the linker relaxation can update targets.  */
+  if (fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
+      || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
+      || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1)
+    return 1;
+
   if (HAVE_NEWABI
       && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr
       && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB
@@ -12340,18 +15382,23 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
   if (! howto)
     return;
 
-  gas_assert (fixP->fx_size == 4
-         || fixP->fx_r_type == BFD_RELOC_16
-         || fixP->fx_r_type == BFD_RELOC_64
-         || fixP->fx_r_type == BFD_RELOC_CTOR
-         || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
-         || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
-         || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
-         || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
+  gas_assert (fixP->fx_size == 2
+             || fixP->fx_size == 4
+             || fixP->fx_r_type == BFD_RELOC_16
+             || fixP->fx_r_type == BFD_RELOC_64
+             || fixP->fx_r_type == BFD_RELOC_CTOR
+             || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
+             || fixP->fx_r_type == BFD_RELOC_MICROMIPS_SUB
+             || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
+             || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
+             || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
 
   buf = (bfd_byte *) (fixP->fx_frag->fr_literal + fixP->fx_where);
 
-  gas_assert (!fixP->fx_pcrel || fixP->fx_r_type == BFD_RELOC_16_PCREL_S2);
+  gas_assert (!fixP->fx_pcrel || fixP->fx_r_type == BFD_RELOC_16_PCREL_S2
+             || fixP->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
+             || fixP->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
+             || fixP->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1);
 
   /* Don't treat parts of a composite relocation as done.  There are two
      reasons for this:
@@ -12375,8 +15422,24 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
     case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
     case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
     case BFD_RELOC_MIPS_TLS_GOTTPREL:
+    case BFD_RELOC_MIPS_TLS_TPREL32:
+    case BFD_RELOC_MIPS_TLS_TPREL64:
     case BFD_RELOC_MIPS_TLS_TPREL_HI16:
     case BFD_RELOC_MIPS_TLS_TPREL_LO16:
+    case BFD_RELOC_MICROMIPS_TLS_GD:
+    case BFD_RELOC_MICROMIPS_TLS_LDM:
+    case BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16:
+    case BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16:
+    case BFD_RELOC_MICROMIPS_TLS_GOTTPREL:
+    case BFD_RELOC_MICROMIPS_TLS_TPREL_HI16:
+    case BFD_RELOC_MICROMIPS_TLS_TPREL_LO16:
+    case BFD_RELOC_MIPS16_TLS_GD:
+    case BFD_RELOC_MIPS16_TLS_LDM:
+    case BFD_RELOC_MIPS16_TLS_DTPREL_HI16:
+    case BFD_RELOC_MIPS16_TLS_DTPREL_LO16:
+    case BFD_RELOC_MIPS16_TLS_GOTTPREL:
+    case BFD_RELOC_MIPS16_TLS_TPREL_HI16:
+    case BFD_RELOC_MIPS16_TLS_TPREL_LO16:
       S_SET_THREAD_LOCAL (fixP->fx_addsy);
       /* fall through */
 
@@ -12413,6 +15476,25 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
     case BFD_RELOC_MIPS16_HI16:
     case BFD_RELOC_MIPS16_HI16_S:
     case BFD_RELOC_MIPS16_JMP:
+    case BFD_RELOC_MICROMIPS_JMP:
+    case BFD_RELOC_MICROMIPS_GOT_DISP:
+    case BFD_RELOC_MICROMIPS_GOT_PAGE:
+    case BFD_RELOC_MICROMIPS_GOT_OFST:
+    case BFD_RELOC_MICROMIPS_SUB:
+    case BFD_RELOC_MICROMIPS_HIGHEST:
+    case BFD_RELOC_MICROMIPS_HIGHER:
+    case BFD_RELOC_MICROMIPS_SCN_DISP:
+    case BFD_RELOC_MICROMIPS_JALR:
+    case BFD_RELOC_MICROMIPS_HI16:
+    case BFD_RELOC_MICROMIPS_HI16_S:
+    case BFD_RELOC_MICROMIPS_GPREL16:
+    case BFD_RELOC_MICROMIPS_LITERAL:
+    case BFD_RELOC_MICROMIPS_CALL16:
+    case BFD_RELOC_MICROMIPS_GOT16:
+    case BFD_RELOC_MICROMIPS_GOT_HI16:
+    case BFD_RELOC_MICROMIPS_GOT_LO16:
+    case BFD_RELOC_MICROMIPS_CALL_HI16:
+    case BFD_RELOC_MICROMIPS_CALL_LO16:
       /* Nothing needed to do.  The value comes from the reloc entry.  */
       break;
 
@@ -12451,6 +15533,7 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
 
     case BFD_RELOC_LO16:
     case BFD_RELOC_MIPS16_LO16:
+    case BFD_RELOC_MICROMIPS_LO16:
       /* FIXME: Now that embedded-PIC is gone, some of this code/comment
         may be safe to remove, but if so it's not obvious.  */
       /* When handling an embedded PIC switch statement, we can wind
@@ -12460,7 +15543,10 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
          if (*valP + 0x8000 > 0xffff)
            as_bad_where (fixP->fx_file, fixP->fx_line,
                          _("relocation overflow"));
-         if (target_big_endian)
+         /* 32-bit microMIPS instructions are divided into two halfwords.
+            Relocations always refer to the second halfword, regardless
+            of endianness.  */
+         if (target_big_endian || fixP->fx_r_type == BFD_RELOC_MICROMIPS_LO16)
            buf += 2;
          md_number_to_chars ((char *) buf, *valP, 2);
        }
@@ -12520,6 +15606,20 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
        }
       break;
 
+    case BFD_RELOC_MICROMIPS_7_PCREL_S1:
+    case BFD_RELOC_MICROMIPS_10_PCREL_S1:
+    case BFD_RELOC_MICROMIPS_16_PCREL_S1:
+      /* We adjust the offset back to even.  */
+      if ((*valP & 0x1) != 0)
+       --(*valP);
+
+      if (! fixP->fx_done)
+       break;
+
+      /* Should never visit here, because we keep the relocation.  */
+      abort ();
+      break;
+
     case BFD_RELOC_VTABLE_INHERIT:
       fixP->fx_done = 0;
       if (fixP->fx_addsy
@@ -12558,25 +15658,27 @@ get_symbol (void)
    fill byte should be used, FILL points to an integer that contains
    that byte, otherwise FILL is null.
 
-   The MIPS assembler also automatically adjusts any preceding
-   label.  */
+   This function used to have the comment:
+
+      The MIPS assembler also automatically adjusts any preceding label.
+
+   The implementation therefore applied the adjustment to a maximum of
+   one label.  However, other label adjustments are applied to batches
+   of labels, and adjusting just one caused problems when new labels
+   were added for the sake of debugging or unwind information.
+   We therefore adjust all preceding labels (given as LABELS) instead.  */
 
 static void
-mips_align (int to, int *fill, symbolS *label)
+mips_align (int to, int *fill, struct insn_label_list *labels)
 {
   mips_emit_delays ();
-  mips_record_mips16_mode ();
+  mips_record_compressed_mode ();
   if (fill == NULL && subseg_text_p (now_seg))
     frag_align_code (to, 0);
   else
     frag_align (to, fill ? *fill : 0, 0);
   record_alignment (now_seg, to);
-  if (label != NULL)
-    {
-      gas_assert (S_GET_SEGMENT (label) == now_seg);
-      symbol_set_frag (label, frag_now);
-      S_SET_VALUE (label, (valueT) frag_now_fix ());
-    }
+  mips_move_labels (labels, FALSE);
 }
 
 /* Align to a given power of two.  .align 0 turns off the automatic
@@ -12618,7 +15720,7 @@ s_align (int x ATTRIBUTE_UNUSED)
       struct insn_label_list *l = si->label_list;
       /* Auto alignment should be switched on by next section change.  */
       auto_align = 1;
-      mips_align (temp, fill_ptr, l != NULL ? l->label : NULL);
+      mips_align (temp, fill_ptr, l);
     }
   else
     {
@@ -12788,14 +15890,12 @@ s_cons (int log_size)
 {
   segment_info_type *si = seg_info (now_seg);
   struct insn_label_list *l = si->label_list;
-  symbolS *label;
 
-  label = l != NULL ? l->label : NULL;
   mips_emit_delays ();
   if (log_size > 0 && auto_align)
-    mips_align (log_size, 0, label);
-  mips_clear_insn_labels ();
+    mips_align (log_size, 0, l);
   cons (1 << log_size);
+  mips_clear_insn_labels ();
 }
 
 static void
@@ -12803,23 +15903,19 @@ s_float_cons (int type)
 {
   segment_info_type *si = seg_info (now_seg);
   struct insn_label_list *l = si->label_list;
-  symbolS *label;
-
-  label = l != NULL ? l->label : NULL;
 
   mips_emit_delays ();
 
   if (auto_align)
     {
       if (type == 'd')
-       mips_align (3, 0, label);
+       mips_align (3, 0, l);
       else
-       mips_align (2, 0, label);
+       mips_align (2, 0, l);
     }
 
-  mips_clear_insn_labels ();
-
   float_cons (type);
+  mips_clear_insn_labels ();
 }
 
 /* Handle .globl.  We need to override it because on Irix 5 you are
@@ -12905,7 +16001,7 @@ s_option (int x ATTRIBUTE_UNUSED)
        mips_pic = NO_PIC;
       else if (i == 2)
        {
-       mips_pic = SVR4_PIC;
+         mips_pic = SVR4_PIC;
          mips_abicalls = TRUE;
        }
       else
@@ -13031,10 +16127,22 @@ s_mipsset (int x ATTRIBUTE_UNUSED)
     mips_opts.single_float = 0;
   else if (strcmp (name, "mips16") == 0
           || strcmp (name, "MIPS-16") == 0)
-    mips_opts.mips16 = 1;
+    {
+      if (mips_opts.micromips == 1)
+       as_fatal (_("`mips16' cannot be used with `micromips'"));
+      mips_opts.mips16 = 1;
+    }
   else if (strcmp (name, "nomips16") == 0
           || strcmp (name, "noMIPS-16") == 0)
     mips_opts.mips16 = 0;
+  else if (strcmp (name, "micromips") == 0)
+    {
+      if (mips_opts.mips16 == 1)
+       as_fatal (_("`micromips' cannot be used with `mips16'"));
+      mips_opts.micromips = 1;
+    }
+  else if (strcmp (name, "nomicromips") == 0)
+    mips_opts.micromips = 0;
   else if (strcmp (name, "smartmips") == 0)
     {
       if (!ISA_SUPPORTS_SMARTMIPS)
@@ -13087,6 +16195,10 @@ s_mipsset (int x ATTRIBUTE_UNUSED)
     }
   else if (strcmp (name, "nomt") == 0)
     mips_opts.ase_mt = 0;
+  else if (strcmp (name, "mcu") == 0)
+    mips_opts.ase_mcu = 1;
+  else if (strcmp (name, "nomcu") == 0)
+    mips_opts.ase_mcu = 0;
   else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
     {
       int reset = 0;
@@ -13375,7 +16487,7 @@ s_cpsetup (int ignore ATTRIBUTE_UNUSED)
 
   if (mips_in_shared || HAVE_64BIT_SYMBOLS)
     {
-      macro_build (&ex_sym, "lui", "t,u", mips_gp_register,
+      macro_build (&ex_sym, "lui", LUI_FMT, mips_gp_register,
                   -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
                   BFD_RELOC_HI16_S);
 
@@ -13494,12 +16606,14 @@ s_cpreturn (int ignore ATTRIBUTE_UNUSED)
   demand_empty_rest_of_line ();
 }
 
-/* Handle the .dtprelword and .dtpreldword pseudo-ops.  They generate
-   a 32-bit or 64-bit DTP-relative relocation (BYTES says which) for
-   use in DWARF debug information.  */
+/* Handle a .dtprelword, .dtpreldword, .tprelword, or .tpreldword
+   pseudo-op; DIRSTR says which. The pseudo-op generates a BYTES-size
+   DTP- or TP-relative relocation of type RTYPE, for use in either DWARF
+   debug information or MIPS16 TLS.  */
 
 static void
-s_dtprel_internal (size_t bytes)
+s_tls_rel_directive (const size_t bytes, const char *dirstr,
+                    bfd_reloc_code_real_type rtype)
 {
   expressionS ex;
   char *p;
@@ -13508,20 +16622,15 @@ s_dtprel_internal (size_t bytes)
 
   if (ex.X_op != O_symbol)
     {
-      as_bad (_("Unsupported use of %s"), (bytes == 8
-                                          ? ".dtpreldword"
-                                          : ".dtprelword"));
+      as_bad (_("Unsupported use of %s"), dirstr);
       ignore_rest_of_line ();
     }
 
   p = frag_more (bytes);
   md_number_to_chars (p, 0, bytes);
-  fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE,
-              (bytes == 8
-               ? BFD_RELOC_MIPS_TLS_DTPREL64
-               : BFD_RELOC_MIPS_TLS_DTPREL32));
-
+  fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE, rtype);
   demand_empty_rest_of_line ();
+  mips_clear_insn_labels ();
 }
 
 /* Handle .dtprelword.  */
@@ -13529,7 +16638,7 @@ s_dtprel_internal (size_t bytes)
 static void
 s_dtprelword (int ignore ATTRIBUTE_UNUSED)
 {
-  s_dtprel_internal (4);
+  s_tls_rel_directive (4, ".dtprelword", BFD_RELOC_MIPS_TLS_DTPREL32);
 }
 
 /* Handle .dtpreldword.  */
@@ -13537,7 +16646,23 @@ s_dtprelword (int ignore ATTRIBUTE_UNUSED)
 static void
 s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
 {
-  s_dtprel_internal (8);
+  s_tls_rel_directive (8, ".dtpreldword", BFD_RELOC_MIPS_TLS_DTPREL64);
+}
+
+/* Handle .tprelword.  */
+
+static void
+s_tprelword (int ignore ATTRIBUTE_UNUSED)
+{
+  s_tls_rel_directive (4, ".tprelword", BFD_RELOC_MIPS_TLS_TPREL32);
+}
+
+/* Handle .tpreldword.  */
+
+static void
+s_tpreldword (int ignore ATTRIBUTE_UNUSED)
+{
+  s_tls_rel_directive (8, ".tpreldword", BFD_RELOC_MIPS_TLS_TPREL64);
 }
 
 /* Handle the .gpvalue pseudo-op.  This is used when generating NewABI PIC
@@ -13567,7 +16692,6 @@ s_gpword (int ignore ATTRIBUTE_UNUSED)
 {
   segment_info_type *si;
   struct insn_label_list *l;
-  symbolS *label;
   expressionS ex;
   char *p;
 
@@ -13580,13 +16704,12 @@ s_gpword (int ignore ATTRIBUTE_UNUSED)
 
   si = seg_info (now_seg);
   l = si->label_list;
-  label = l != NULL ? l->label : NULL;
   mips_emit_delays ();
   if (auto_align)
-    mips_align (2, 0, label);
-  mips_clear_insn_labels ();
+    mips_align (2, 0, l);
 
   expression (&ex);
+  mips_clear_insn_labels ();
 
   if (ex.X_op != O_symbol || ex.X_add_number != 0)
     {
@@ -13607,7 +16730,6 @@ s_gpdword (int ignore ATTRIBUTE_UNUSED)
 {
   segment_info_type *si;
   struct insn_label_list *l;
-  symbolS *label;
   expressionS ex;
   char *p;
 
@@ -13620,13 +16742,12 @@ s_gpdword (int ignore ATTRIBUTE_UNUSED)
 
   si = seg_info (now_seg);
   l = si->label_list;
-  label = l != NULL ? l->label : NULL;
   mips_emit_delays ();
   if (auto_align)
-    mips_align (3, 0, label);
-  mips_clear_insn_labels ();
+    mips_align (3, 0, l);
 
   expression (&ex);
+  mips_clear_insn_labels ();
 
   if (ex.X_op != O_symbol || ex.X_add_number != 0)
     {
@@ -13671,7 +16792,7 @@ s_cpadd (int ignore ATTRIBUTE_UNUSED)
 }
 
 /* Handle the .insn pseudo-op.  This marks instruction labels in
-   mips16 mode.  This permits the linker to handle them specially,
+   mips16/micromips mode.  This permits the linker to handle them specially,
    such as generating jalx instructions when needed.  We also make
    them odd for the duration of the assembly, in order to generate the
    right sort of code.  We will make them even in the adjust_symtab
@@ -13682,7 +16803,7 @@ s_cpadd (int ignore ATTRIBUTE_UNUSED)
 static void
 s_insn (int ignore ATTRIBUTE_UNUSED)
 {
-  mips16_mark_labels ();
+  mips_mark_labels ();
 
   demand_empty_rest_of_line ();
 }
@@ -13697,7 +16818,7 @@ static void
 s_mips_stab (int type)
 {
   if (type == 'n')
-    mips16_mark_labels ();
+    mips_mark_labels ();
 
   s_stab (type);
 }
@@ -14087,24 +17208,90 @@ mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
          return 1;
        }
     }
-  else if (symsec != absolute_section && sec != NULL)
-    as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
+  else if (symsec != absolute_section && sec != NULL)
+    as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
+
+  if ((val & ((1 << op->shift) - 1)) != 0
+      || val < (mintiny << op->shift)
+      || val > (maxtiny << op->shift))
+    return 1;
+  else
+    return 0;
+}
+
+/* Compute the length of a branch sequence, and adjust the
+   RELAX_BRANCH_TOOFAR bit accordingly.  If FRAGP is NULL, the
+   worst-case length is computed, with UPDATE being used to indicate
+   whether an unconditional (-1), branch-likely (+1) or regular (0)
+   branch is to be computed.  */
+static int
+relaxed_branch_length (fragS *fragp, asection *sec, int update)
+{
+  bfd_boolean toofar;
+  int length;
+
+  if (fragp
+      && S_IS_DEFINED (fragp->fr_symbol)
+      && sec == S_GET_SEGMENT (fragp->fr_symbol))
+    {
+      addressT addr;
+      offsetT val;
+
+      val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
+
+      addr = fragp->fr_address + fragp->fr_fix + 4;
+
+      val -= addr;
+
+      toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
+    }
+  else if (fragp)
+    /* If the symbol is not defined or it's in a different segment,
+       assume the user knows what's going on and emit a short
+       branch.  */
+    toofar = FALSE;
+  else
+    toofar = TRUE;
+
+  if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
+    fragp->fr_subtype
+      = RELAX_BRANCH_ENCODE (RELAX_BRANCH_AT (fragp->fr_subtype),
+                            RELAX_BRANCH_UNCOND (fragp->fr_subtype),
+                            RELAX_BRANCH_LIKELY (fragp->fr_subtype),
+                            RELAX_BRANCH_LINK (fragp->fr_subtype),
+                            toofar);
+
+  length = 4;
+  if (toofar)
+    {
+      if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
+       length += 8;
+
+      if (mips_pic != NO_PIC)
+       {
+         /* Additional space for PIC loading of target address.  */
+         length += 8;
+         if (mips_opts.isa == ISA_MIPS1)
+           /* Additional space for $at-stabilizing nop.  */
+           length += 4;
+       }
+
+      /* If branch is conditional.  */
+      if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
+       length += 8;
+    }
 
-  if ((val & ((1 << op->shift) - 1)) != 0
-      || val < (mintiny << op->shift)
-      || val > (maxtiny << op->shift))
-    return 1;
-  else
-    return 0;
+  return length;
 }
 
 /* Compute the length of a branch sequence, and adjust the
-   RELAX_BRANCH_TOOFAR bit accordingly.  If FRAGP is NULL, the
+   RELAX_MICROMIPS_TOOFAR32 bit accordingly.  If FRAGP is NULL, the
    worst-case length is computed, with UPDATE being used to indicate
-   whether an unconditional (-1), branch-likely (+1) or regular (0)
-   branch is to be computed.  */
+   whether an unconditional (-1), or regular (0) branch is to be
+   computed.  */
+
 static int
-relaxed_branch_length (fragS *fragp, asection *sec, int update)
+relaxed_micromips_32bit_branch_length (fragS *fragp, asection *sec, int update)
 {
   bfd_boolean toofar;
   int length;
@@ -14117,12 +17304,16 @@ relaxed_branch_length (fragS *fragp, asection *sec, int update)
       offsetT val;
 
       val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
+      /* Ignore the low bit in the target, since it will be set
+        for a text label.  */
+      if ((val & 1) != 0)
+       --val;
 
       addr = fragp->fr_address + fragp->fr_fix + 4;
 
       val -= addr;
 
-      toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
+      toofar = val < - (0x8000 << 1) || val >= (0x8000 << 1);
     }
   else if (fragp)
     /* If the symbol is not defined or it's in a different segment,
@@ -14132,36 +17323,120 @@ relaxed_branch_length (fragS *fragp, asection *sec, int update)
   else
     toofar = TRUE;
 
-  if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
-    fragp->fr_subtype
-      = RELAX_BRANCH_ENCODE (RELAX_BRANCH_UNCOND (fragp->fr_subtype),
-                            RELAX_BRANCH_LIKELY (fragp->fr_subtype),
-                            RELAX_BRANCH_LINK (fragp->fr_subtype),
-                            toofar);
+  if (fragp && update
+      && toofar != RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
+    fragp->fr_subtype = (toofar
+                        ? RELAX_MICROMIPS_MARK_TOOFAR32 (fragp->fr_subtype)
+                        : RELAX_MICROMIPS_CLEAR_TOOFAR32 (fragp->fr_subtype));
 
   length = 4;
   if (toofar)
     {
-      if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
-       length += 8;
+      bfd_boolean compact_known = fragp != NULL;
+      bfd_boolean compact = FALSE;
+      bfd_boolean uncond;
+
+      if (compact_known)
+       compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
+      if (fragp)
+       uncond = RELAX_MICROMIPS_UNCOND (fragp->fr_subtype);
+      else
+       uncond = update < 0;
 
+      /* If label is out of range, we turn branch <br>:
+
+               <br>    label                   # 4 bytes
+           0:
+
+         into:
+
+               j       label                   # 4 bytes
+               nop                             # 2 bytes if compact && !PIC
+           0:
+       */
+      if (mips_pic == NO_PIC && (!compact_known || compact))
+       length += 2;
+
+      /* If assembling PIC code, we further turn:
+
+                       j       label                   # 4 bytes
+
+         into:
+
+                       lw/ld   at, %got(label)(gp)     # 4 bytes
+                       d/addiu at, %lo(label)          # 4 bytes
+                       jr/c    at                      # 2 bytes
+       */
       if (mips_pic != NO_PIC)
-       {
-         /* Additional space for PIC loading of target address.  */
-         length += 8;
-         if (mips_opts.isa == ISA_MIPS1)
-           /* Additional space for $at-stabilizing nop.  */
-           length += 4;
-       }
+       length += 6;
 
-      /* If branch is conditional.  */
-      if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
-       length += 8;
+      /* If branch <br> is conditional, we prepend negated branch <brneg>:
+
+                       <brneg> 0f                      # 4 bytes
+                       nop                             # 2 bytes if !compact
+       */
+      if (!uncond)
+       length += (compact_known && compact) ? 4 : 6;
     }
 
   return length;
 }
 
+/* Compute the length of a branch, and adjust the RELAX_MICROMIPS_TOOFAR16
+   bit accordingly.  */
+
+static int
+relaxed_micromips_16bit_branch_length (fragS *fragp, asection *sec, int update)
+{
+  bfd_boolean toofar;
+
+  if (fragp
+      && S_IS_DEFINED (fragp->fr_symbol)
+      && sec == S_GET_SEGMENT (fragp->fr_symbol))
+    {
+      addressT addr;
+      offsetT val;
+      int type;
+
+      val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
+      /* Ignore the low bit in the target, since it will be set
+        for a text label.  */
+      if ((val & 1) != 0)
+       --val;
+
+      /* Assume this is a 2-byte branch.  */
+      addr = fragp->fr_address + fragp->fr_fix + 2;
+
+      /* We try to avoid the infinite loop by not adding 2 more bytes for
+        long branches.  */
+
+      val -= addr;
+
+      type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
+      if (type == 'D')
+       toofar = val < - (0x200 << 1) || val >= (0x200 << 1);
+      else if (type == 'E')
+       toofar = val < - (0x40 << 1) || val >= (0x40 << 1);
+      else
+       abort ();
+    }
+  else
+    /* If the symbol is not defined or it's in a different segment,
+       we emit a normal 32-bit branch.  */
+    toofar = TRUE;
+
+  if (fragp && update
+      && toofar != RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
+    fragp->fr_subtype
+      = toofar ? RELAX_MICROMIPS_MARK_TOOFAR16 (fragp->fr_subtype)
+              : RELAX_MICROMIPS_CLEAR_TOOFAR16 (fragp->fr_subtype);
+
+  if (toofar)
+    return 4;
+
+  return 2;
+}
+
 /* Estimate the size of a frag before relaxing.  Unless this is the
    mips16, we are not really relaxing here, and the final size is
    encoded in the subtype information.  For the mips16, we have to
@@ -14185,6 +17460,19 @@ md_estimate_size_before_relax (fragS *fragp, asection *segtype)
        into infinite loops.  We change it only in mips_relax_frag().  */
     return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
 
+  if (RELAX_MICROMIPS_P (fragp->fr_subtype))
+    {
+      int length = 4;
+
+      if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
+       length = relaxed_micromips_16bit_branch_length (fragp, segtype, FALSE);
+      if (length == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
+       length = relaxed_micromips_32bit_branch_length (fragp, segtype, FALSE);
+      fragp->fr_var = length;
+
+      return length;
+    }
+
   if (mips_pic == NO_PIC)
     change = nopic_need_relax (fragp->fr_symbol, 0);
   else if (mips_pic == SVR4_PIC)
@@ -14237,8 +17525,12 @@ mips_fix_adjustable (fixS *fixp)
       && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
     return 0;
 
-  /* There is no place to store an in-place offset for JALR relocations.  */
-  if (fixp->fx_r_type == BFD_RELOC_MIPS_JALR && HAVE_IN_PLACE_ADDENDS)
+  /* There is no place to store an in-place offset for JALR relocations.
+     Likewise an in-range offset of PC-relative relocations may overflow
+     the in-place relocatable field if recalculated against the start
+     address of the symbol's containing section.  */
+  if (HAVE_IN_PLACE_ADDENDS
+      && (fixp->fx_pcrel || jalr_reloc_p (fixp->fx_r_type)))
     return 0;
 
 #ifdef OBJ_ELF
@@ -14268,12 +17560,14 @@ mips_fix_adjustable (fixS *fixp)
 
      There is a further restriction:
 
-       5. We cannot reduce R_MIPS16_26 relocations against MIPS16 symbols
-         on targets with in-place addends; the relocation field cannot
+       5. We cannot reduce jump relocations (R_MIPS_26, R_MIPS16_26 or
+         R_MICROMIPS_26_S1) against MIPS16 or microMIPS symbols on
+         targets with in-place addends; the relocation field cannot
          encode the low bit.
 
-     For simplicity, we deal with (3)-(5) by not reducing _any_ relocation
-     against a MIPS16 symbol.
+     For simplicity, we deal with (3)-(4) by not reducing _any_ relocation
+     against a MIPS16 symbol.  We deal with (5) by by not reducing any
+     such relocations on REL targets.
 
      We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
      relocation against some symbol R, no relocation against R may be
@@ -14285,7 +17579,10 @@ mips_fix_adjustable (fixS *fixp)
   if (IS_ELF
       && fixp->fx_subsy == NULL
       && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
-         || *symbol_get_tc (fixp->fx_addsy)))
+         || *symbol_get_tc (fixp->fx_addsy)
+         || (HAVE_IN_PLACE_ADDENDS
+             && ELF_ST_IS_MICROMIPS (S_GET_OTHER (fixp->fx_addsy))
+             && jmp_reloc_p (fixp->fx_r_type))))
     return 0;
 #endif
 
@@ -14310,7 +17607,10 @@ tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
 
   if (fixp->fx_pcrel)
     {
-      gas_assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2);
+      gas_assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2
+                 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
+                 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
+                 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1);
 
       /* At this point, fx_addnumber is "symbol offset - pcrel address".
         Relocations want only the symbol offset.  */
@@ -14364,6 +17664,20 @@ mips_relax_frag (asection *sec, fragS *fragp, long stretch)
       return fragp->fr_var - old_var;
     }
 
+  if (RELAX_MICROMIPS_P (fragp->fr_subtype))
+    {
+      offsetT old_var = fragp->fr_var;
+      offsetT new_var = 4;
+
+      if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
+       new_var = relaxed_micromips_16bit_branch_length (fragp, sec, TRUE);
+      if (new_var == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
+       new_var = relaxed_micromips_32bit_branch_length (fragp, sec, TRUE);
+      fragp->fr_var = new_var;
+
+      return new_var - old_var;
+    }
+
   if (! RELAX_MIPS16_P (fragp->fr_subtype))
     return 0;
 
@@ -14426,7 +17740,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
          int i;
 
          as_warn_where (fragp->fr_file, fragp->fr_line,
-                        _("relaxed out-of-range branch into a jump"));
+                        _("Relaxed out-of-range branch into a jump"));
 
          if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
            goto uncond;
@@ -14540,8 +17854,11 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
            }
          else
            {
+             unsigned long at = RELAX_BRANCH_AT (fragp->fr_subtype);
+
              /* lw/ld $at, <sym>($gp)  R_MIPS_GOT16 */
-             insn = HAVE_64BIT_ADDRESSES ? 0xdf810000 : 0x8f810000;
+             insn = HAVE_64BIT_ADDRESSES ? 0xdf800000 : 0x8f800000;
+             insn |= at << OP_SH_RT;
              exp.X_op = O_symbol;
              exp.X_add_symbol = fragp->fr_symbol;
              exp.X_add_number = fragp->fr_offset;
@@ -14568,7 +17885,8 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
                }
 
              /* d/addiu $at, $at, <sym>  R_MIPS_LO16 */
-             insn = HAVE_64BIT_ADDRESSES ? 0x64210000 : 0x24210000;
+             insn = HAVE_64BIT_ADDRESSES ? 0x64000000 : 0x24000000;
+             insn |= at << OP_SH_RS | at << OP_SH_RT;
 
              fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
                                  4, &exp, FALSE, BFD_RELOC_LO16);
@@ -14580,9 +17898,10 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
 
              /* j(al)r $at.  */
              if (RELAX_BRANCH_LINK (fragp->fr_subtype))
-               insn = 0x0020f809;
+               insn = 0x0000f809;
              else
-               insn = 0x00200008;
+               insn = 0x00000008;
+             insn |= at << OP_SH_RS;
 
              md_number_to_chars ((char *) buf, insn, 4);
              buf += 4;
@@ -14597,6 +17916,272 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
       return;
     }
 
+  /* Relax microMIPS branches.  */
+  if (RELAX_MICROMIPS_P (fragp->fr_subtype))
+    {
+      bfd_byte *buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix);
+      bfd_boolean compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
+      bfd_boolean al = RELAX_MICROMIPS_LINK (fragp->fr_subtype);
+      int type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
+      bfd_boolean short_ds;
+      unsigned long insn;
+      expressionS exp;
+      fixS *fixp;
+
+      exp.X_op = O_symbol;
+      exp.X_add_symbol = fragp->fr_symbol;
+      exp.X_add_number = fragp->fr_offset;
+
+      fragp->fr_fix += fragp->fr_var;
+
+      /* Handle 16-bit branches that fit or are forced to fit.  */
+      if (type != 0 && !RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
+       {
+         /* We generate a fixup instead of applying it right now,
+            because if there is linker relaxation, we're going to
+            need the relocations.  */
+         if (type == 'D')
+           fixp = fix_new_exp (fragp,
+                               buf - (bfd_byte *) fragp->fr_literal,
+                               2, &exp, TRUE,
+                               BFD_RELOC_MICROMIPS_10_PCREL_S1);
+         else if (type == 'E')
+           fixp = fix_new_exp (fragp,
+                               buf - (bfd_byte *) fragp->fr_literal,
+                               2, &exp, TRUE,
+                               BFD_RELOC_MICROMIPS_7_PCREL_S1);
+         else
+           abort ();
+
+         fixp->fx_file = fragp->fr_file;
+         fixp->fx_line = fragp->fr_line;
+
+         /* These relocations can have an addend that won't fit in
+            2 octets.  */
+         fixp->fx_no_overflow = 1;
+
+         return;
+       }
+
+      /* Handle 32-bit branches that fit or are forced to fit.  */
+      if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
+         || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
+       {
+         /* We generate a fixup instead of applying it right now,
+            because if there is linker relaxation, we're going to
+            need the relocations.  */
+         fixp = fix_new_exp (fragp, buf - (bfd_byte *) fragp->fr_literal,
+                             4, &exp, TRUE, BFD_RELOC_MICROMIPS_16_PCREL_S1);
+         fixp->fx_file = fragp->fr_file;
+         fixp->fx_line = fragp->fr_line;
+
+         if (type == 0)
+           return;
+       }
+
+      /* Relax 16-bit branches to 32-bit branches.  */
+      if (type != 0)
+       {
+         if (target_big_endian)
+           insn = bfd_getb16 (buf);
+         else
+           insn = bfd_getl16 (buf);
+
+         if ((insn & 0xfc00) == 0xcc00)                /* b16  */
+           insn = 0x94000000;                          /* beq  */
+         else if ((insn & 0xdc00) == 0x8c00)           /* beqz16/bnez16  */
+           {
+             unsigned long regno;
+
+             regno = (insn >> MICROMIPSOP_SH_MD) & MICROMIPSOP_MASK_MD;
+             regno = micromips_to_32_reg_d_map [regno];
+             insn = ((insn & 0x2000) << 16) | 0x94000000;      /* beq/bne  */
+             insn |= regno << MICROMIPSOP_SH_RS;
+           }
+         else
+           abort ();
+
+         /* Nothing else to do, just write it out.  */
+         if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
+             || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
+           {
+             md_number_to_chars ((char *) buf, insn >> 16, 2);
+             buf += 2;
+             md_number_to_chars ((char *) buf, insn & 0xffff, 2);
+             buf += 2;
+
+             gas_assert (buf == ((bfd_byte *) fragp->fr_literal
+                                 + fragp->fr_fix));
+             return;
+           }
+       }
+      else
+       {
+         unsigned long next;
+
+         if (target_big_endian)
+           {
+             insn = bfd_getb16 (buf);
+             next = bfd_getb16 (buf + 2);
+           }
+         else
+           {
+             insn = bfd_getl16 (buf);
+             next = bfd_getl16 (buf + 2);
+           }
+         insn = (insn << 16) | next;
+       }
+
+      /* Relax 32-bit branches to a sequence of instructions.  */
+      as_warn_where (fragp->fr_file, fragp->fr_line,
+                    _("Relaxed out-of-range branch into a jump"));
+
+      /* Set the short-delay-slot bit.  */
+      short_ds = al && (insn & 0x02000000) != 0;
+
+      if (!RELAX_MICROMIPS_UNCOND (fragp->fr_subtype))
+       {
+         symbolS *l;
+
+         /* Reverse the branch.  */
+         if ((insn & 0xfc000000) == 0x94000000                 /* beq  */
+             || (insn & 0xfc000000) == 0xb4000000)             /* bne  */
+           insn ^= 0x20000000;
+         else if ((insn & 0xffe00000) == 0x40000000            /* bltz  */
+                  || (insn & 0xffe00000) == 0x40400000         /* bgez  */
+                  || (insn & 0xffe00000) == 0x40800000         /* blez  */
+                  || (insn & 0xffe00000) == 0x40c00000         /* bgtz  */
+                  || (insn & 0xffe00000) == 0x40a00000         /* bnezc  */
+                  || (insn & 0xffe00000) == 0x40e00000         /* beqzc  */
+                  || (insn & 0xffe00000) == 0x40200000         /* bltzal  */
+                  || (insn & 0xffe00000) == 0x40600000         /* bgezal  */
+                  || (insn & 0xffe00000) == 0x42200000         /* bltzals  */
+                  || (insn & 0xffe00000) == 0x42600000)        /* bgezals  */
+           insn ^= 0x00400000;
+         else if ((insn & 0xffe30000) == 0x43800000            /* bc1f  */
+                  || (insn & 0xffe30000) == 0x43a00000         /* bc1t  */
+                  || (insn & 0xffe30000) == 0x42800000         /* bc2f  */
+                  || (insn & 0xffe30000) == 0x42a00000)        /* bc2t  */
+           insn ^= 0x00200000;
+         else
+           abort ();
+
+         if (al)
+           {
+             /* Clear the and-link and short-delay-slot bits.  */
+             gas_assert ((insn & 0xfda00000) == 0x40200000);
+
+             /* bltzal  0x40200000     bgezal  0x40600000  */
+             /* bltzals 0x42200000     bgezals 0x42600000  */
+             insn &= ~0x02200000;
+           }
+
+         /* Make a label at the end for use with the branch.  */
+         l = symbol_new (micromips_label_name (), asec, fragp->fr_fix, fragp);
+         micromips_label_inc ();
+#if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF)
+         if (IS_ELF)
+           S_SET_OTHER (l, ELF_ST_SET_MICROMIPS (S_GET_OTHER (l)));
+#endif
+
+         /* Refer to it.  */
+         fixp = fix_new (fragp, buf - (bfd_byte *) fragp->fr_literal,
+                         4, l, 0, TRUE, BFD_RELOC_MICROMIPS_16_PCREL_S1);
+         fixp->fx_file = fragp->fr_file;
+         fixp->fx_line = fragp->fr_line;
+
+         /* Branch over the jump.  */
+         md_number_to_chars ((char *) buf, insn >> 16, 2);
+         buf += 2;
+         md_number_to_chars ((char *) buf, insn & 0xffff, 2);
+         buf += 2;
+
+         if (!compact)
+           {
+             /* nop  */
+             insn = 0x0c00;
+             md_number_to_chars ((char *) buf, insn, 2);
+             buf += 2;
+           }
+       }
+
+      if (mips_pic == NO_PIC)
+       {
+         unsigned long jal = short_ds ? 0x74000000 : 0xf4000000; /* jal/s  */
+
+         /* j/jal/jals <sym>  R_MICROMIPS_26_S1  */
+         insn = al ? jal : 0xd4000000;
+
+         fixp = fix_new_exp (fragp, buf - (bfd_byte *) fragp->fr_literal,
+                             4, &exp, FALSE, BFD_RELOC_MICROMIPS_JMP);
+         fixp->fx_file = fragp->fr_file;
+         fixp->fx_line = fragp->fr_line;
+
+         md_number_to_chars ((char *) buf, insn >> 16, 2);
+         buf += 2;
+         md_number_to_chars ((char *) buf, insn & 0xffff, 2);
+         buf += 2;
+
+         if (compact)
+           {
+             /* nop  */
+             insn = 0x0c00;
+             md_number_to_chars ((char *) buf, insn, 2);
+             buf += 2;
+           }
+       }
+      else
+       {
+         unsigned long at = RELAX_MICROMIPS_AT (fragp->fr_subtype);
+         unsigned long jalr = short_ds ? 0x45e0 : 0x45c0;      /* jalr/s  */
+         unsigned long jr = compact ? 0x45a0 : 0x4580;         /* jr/c  */
+
+         /* lw/ld $at, <sym>($gp)  R_MICROMIPS_GOT16  */
+         insn = HAVE_64BIT_ADDRESSES ? 0xdc1c0000 : 0xfc1c0000;
+         insn |= at << MICROMIPSOP_SH_RT;
+
+         if (exp.X_add_number)
+           {
+             exp.X_add_symbol = make_expr_symbol (&exp);
+             exp.X_add_number = 0;
+           }
+
+         fixp = fix_new_exp (fragp, buf - (bfd_byte *) fragp->fr_literal,
+                             4, &exp, FALSE, BFD_RELOC_MICROMIPS_GOT16);
+         fixp->fx_file = fragp->fr_file;
+         fixp->fx_line = fragp->fr_line;
+
+         md_number_to_chars ((char *) buf, insn >> 16, 2);
+         buf += 2;
+         md_number_to_chars ((char *) buf, insn & 0xffff, 2);
+         buf += 2;
+
+         /* d/addiu $at, $at, <sym>  R_MICROMIPS_LO16  */
+         insn = HAVE_64BIT_ADDRESSES ? 0x5c000000 : 0x30000000;
+         insn |= at << MICROMIPSOP_SH_RT | at << MICROMIPSOP_SH_RS;
+
+         fixp = fix_new_exp (fragp, buf - (bfd_byte *) fragp->fr_literal,
+                             4, &exp, FALSE, BFD_RELOC_MICROMIPS_LO16);
+         fixp->fx_file = fragp->fr_file;
+         fixp->fx_line = fragp->fr_line;
+
+         md_number_to_chars ((char *) buf, insn >> 16, 2);
+         buf += 2;
+         md_number_to_chars ((char *) buf, insn & 0xffff, 2);
+         buf += 2;
+
+         /* jr/jrc/jalr/jalrs $at  */
+         insn = al ? jalr : jr;
+         insn |= at << MICROMIPSOP_SH_MJ;
+
+         md_number_to_chars ((char *) buf, insn & 0xffff, 2);
+         buf += 2;
+       }
+
+      gas_assert (buf == (bfd_byte *) fragp->fr_literal + fragp->fr_fix);
+      return;
+    }
+
   if (RELAX_MIPS16_P (fragp->fr_subtype))
     {
       int type;
@@ -14624,8 +18209,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
          ext = FALSE;
        }
 
-      resolve_symbol_value (fragp->fr_symbol);
-      val = S_GET_VALUE (fragp->fr_symbol);
+      val = resolve_symbol_value (fragp->fr_symbol);
       if (op->pcrel)
        {
          addressT addr;
@@ -14688,20 +18272,45 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
     }
   else
     {
+      relax_substateT subtype = fragp->fr_subtype;
+      bfd_boolean second_longer = (subtype & RELAX_SECOND_LONGER) != 0;
+      bfd_boolean use_second = (subtype & RELAX_USE_SECOND) != 0;
       int first, second;
       fixS *fixp;
 
-      first = RELAX_FIRST (fragp->fr_subtype);
-      second = RELAX_SECOND (fragp->fr_subtype);
+      first = RELAX_FIRST (subtype);
+      second = RELAX_SECOND (subtype);
       fixp = (fixS *) fragp->fr_opcode;
 
+      /* If the delay slot chosen does not match the size of the instruction,
+         then emit a warning.  */
+      if ((!use_second && (subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0)
+          || (use_second && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0))
+       {
+         relax_substateT s;
+         const char *msg;
+
+         s = subtype & (RELAX_DELAY_SLOT_16BIT
+                        | RELAX_DELAY_SLOT_SIZE_FIRST
+                        | RELAX_DELAY_SLOT_SIZE_SECOND);
+         msg = macro_warning (s);
+         if (msg != NULL)
+           as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
+         subtype &= ~s;
+       }
+
       /* Possibly emit a warning if we've chosen the longer option.  */
-      if (((fragp->fr_subtype & RELAX_USE_SECOND) != 0)
-         == ((fragp->fr_subtype & RELAX_SECOND_LONGER) != 0))
+      if (use_second == second_longer)
        {
-         const char *msg = macro_warning (fragp->fr_subtype);
-         if (msg != 0)
+         relax_substateT s;
+         const char *msg;
+
+         s = (subtype
+              & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT));
+         msg = macro_warning (s);
+         if (msg != NULL)
            as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
+         subtype &= ~s;
        }
 
       /* Go through all the fixups for the first sequence.  Disable them
@@ -14711,7 +18320,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
             && fixp->fx_frag == fragp
             && fixp->fx_where < fragp->fr_fix - second)
        {
-         if (fragp->fr_subtype & RELAX_USE_SECOND)
+         if (subtype & RELAX_USE_SECOND)
            fixp->fx_done = 1;
          fixp = fixp->fx_next;
        }
@@ -14721,7 +18330,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
         addresses to account for the relaxation.  */
       while (fixp && fixp->fx_frag == fragp)
        {
-         if (fragp->fr_subtype & RELAX_USE_SECOND)
+         if (subtype & RELAX_USE_SECOND)
            fixp->fx_where -= first;
          else
            fixp->fx_done = 1;
@@ -14729,7 +18338,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
        }
 
       /* Now modify the frag contents.  */
-      if (fragp->fr_subtype & RELAX_USE_SECOND)
+      if (subtype & RELAX_USE_SECOND)
        {
          char *start;
 
@@ -14760,27 +18369,27 @@ mips_frob_file_after_relocs (void)
   syms = bfd_get_outsymbols (stdoutput);
   count = bfd_get_symcount (stdoutput);
   for (i = 0; i < count; i++, syms++)
-    {
-      if (ELF_ST_IS_MIPS16 (elf_symbol (*syms)->internal_elf_sym.st_other)
-         && ((*syms)->value & 1) != 0)
-       {
-         (*syms)->value &= ~1;
-         /* If the symbol has an odd size, it was probably computed
-            incorrectly, so adjust that as well.  */
-         if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
-           ++elf_symbol (*syms)->internal_elf_sym.st_size;
-       }
-    }
+    if (ELF_ST_IS_COMPRESSED (elf_symbol (*syms)->internal_elf_sym.st_other)
+       && ((*syms)->value & 1) != 0)
+      {
+       (*syms)->value &= ~1;
+       /* If the symbol has an odd size, it was probably computed
+          incorrectly, so adjust that as well.  */
+       if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
+         ++elf_symbol (*syms)->internal_elf_sym.st_size;
+      }
 }
 
 #endif
 
-/* This function is called whenever a label is defined.  It is used
-   when handling branch delays; if a branch has a label, we assume we
-   can not move it.  */
+/* This function is called whenever a label is defined, including fake
+   labels instantiated off the dot special symbol.  It is used when
+   handling branch delays; if a branch has a label, we assume we cannot
+   move it.  This also bumps the value of the symbol by 1 in compressed
+   code.  */
 
 void
-mips_define_label (symbolS *sym)
+mips_record_label (symbolS *sym)
 {
   segment_info_type *si = seg_info (now_seg);
   struct insn_label_list *l;
@@ -14796,7 +18405,15 @@ mips_define_label (symbolS *sym)
   l->label = sym;
   l->next = si->label_list;
   si->label_list = l;
+}
+
+/* This function is called as tc_frob_label() whenever a label is defined
+   and adds a DWARF-2 record we only want for true labels.  */
 
+void
+mips_define_label (symbolS *sym)
+{
+  mips_record_label (sym);
 #ifdef OBJ_ELF
   dwarf2_emit_label (sym);
 #endif
@@ -14848,7 +18465,7 @@ mips_elf_final_processing (void)
     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
   if (mips_pic != NO_PIC)
     {
-    elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
+      elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
       elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
     }
   if (mips_abicalls)
@@ -14862,6 +18479,8 @@ mips_elf_final_processing (void)
      file_ase_mt is true.  */
   if (file_ase_mips16)
     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
+  if (file_ase_micromips)
+    elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MICROMIPS;
 #if 0 /* XXX FIXME */
   if (file_ase_mips3d)
     elf_elfheader (stdoutput)->e_flags |= ???;
@@ -14914,21 +18533,31 @@ static procS cur_proc;
 static procS *cur_proc_ptr;
 static int numprocs;
 
-/* Implement NOP_OPCODE.  We encode a MIPS16 nop as "1" and a normal
-   nop as "0".  */
+/* Implement NOP_OPCODE.  We encode a MIPS16 nop as "1", a microMIPS nop
+   as "2", and a normal nop as "0".  */
+
+#define NOP_OPCODE_MIPS                0
+#define NOP_OPCODE_MIPS16      1
+#define NOP_OPCODE_MICROMIPS   2
 
 char
 mips_nop_opcode (void)
 {
-  return seg_info (now_seg)->tc_segment_info_data.mips16;
+  if (seg_info (now_seg)->tc_segment_info_data.micromips)
+    return NOP_OPCODE_MICROMIPS;
+  else if (seg_info (now_seg)->tc_segment_info_data.mips16)
+    return NOP_OPCODE_MIPS16;
+  else
+    return NOP_OPCODE_MIPS;
 }
 
-/* Fill in an rs_align_code fragment.  This only needs to do something
-   for MIPS16 code, where 0 is not a nop.  */
+/* Fill in an rs_align_code fragment.  Unlike elsewhere we want to use
+   32-bit microMIPS NOPs here (if applicable).  */
 
 void
 mips_handle_align (fragS *fragp)
 {
+  char nop_opcode;
   char *p;
   int bytes, size, excess;
   valueT opcode;
@@ -14937,26 +18566,52 @@ mips_handle_align (fragS *fragp)
     return;
 
   p = fragp->fr_literal + fragp->fr_fix;
-  if (*p)
+  nop_opcode = *p;
+  switch (nop_opcode)
     {
+    case NOP_OPCODE_MICROMIPS:
+      opcode = micromips_nop32_insn.insn_opcode;
+      size = 4;
+      break;
+    case NOP_OPCODE_MIPS16:
       opcode = mips16_nop_insn.insn_opcode;
       size = 2;
-    }
-  else
-    {
+      break;
+    case NOP_OPCODE_MIPS:
+    default:
       opcode = nop_insn.insn_opcode;
       size = 4;
+      break;
     }
 
   bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
   excess = bytes % size;
-  if (excess != 0)
+
+  /* Handle the leading part if we're not inserting a whole number of
+     instructions, and make it the end of the fixed part of the frag.
+     Try to fit in a short microMIPS NOP if applicable and possible,
+     and use zeroes otherwise.  */
+  gas_assert (excess < 4);
+  fragp->fr_fix += excess;
+  switch (excess)
     {
-      /* If we're not inserting a whole number of instructions,
-        pad the end of the fixed part of the frag with zeros.  */
-      memset (p, 0, excess);
-      p += excess;
-      fragp->fr_fix += excess;
+    case 3:
+      *p++ = '\0';
+      /* Fall through.  */
+    case 2:
+      if (nop_opcode == NOP_OPCODE_MICROMIPS)
+       {
+         md_number_to_chars (p, micromips_nop16_insn.insn_opcode, 2);
+         p += 2;
+         break;
+       }
+      *p++ = '\0';
+      /* Fall through.  */
+    case 1:
+      *p++ = '\0';
+      /* Fall through.  */
+    case 0:
+      break;
     }
 
   md_number_to_chars (p, opcode, size);
@@ -15374,6 +19029,12 @@ static const struct mips_cpu_info mips_cpu_info_table[] =
   { "4ksd",           MIPS_CPU_ASE_SMARTMIPS,  ISA_MIPS32R2,   CPU_MIPS32R2 },
   { "m4k",            0,                       ISA_MIPS32R2,   CPU_MIPS32R2 },
   { "m4kp",           0,                       ISA_MIPS32R2,   CPU_MIPS32R2 },
+  { "m14k",           MIPS_CPU_ASE_MCU,                ISA_MIPS32R2,   CPU_MIPS32R2 },
+  { "m14kc",          MIPS_CPU_ASE_MCU,                ISA_MIPS32R2,   CPU_MIPS32R2 },
+  { "m14ke",          MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2 | MIPS_CPU_ASE_MCU,
+                                               ISA_MIPS32R2,   CPU_MIPS32R2 },
+  { "m14kec",         MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2 | MIPS_CPU_ASE_MCU,
+                                               ISA_MIPS32R2,   CPU_MIPS32R2 },
   { "24kc",           0,                       ISA_MIPS32R2,   CPU_MIPS32R2 },
   { "24kf2_1",        0,                       ISA_MIPS32R2,   CPU_MIPS32R2 },
   { "24kf",           0,                       ISA_MIPS32R2,   CPU_MIPS32R2 },
@@ -15441,15 +19102,24 @@ static const struct mips_cpu_info mips_cpu_info_table[] =
   /* Broadcom SB-1A CPU core */
   { "sb1a",           MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
                                                ISA_MIPS64,     CPU_SB1 },
+  
+  { "loongson3a",     0,                       ISA_MIPS64,     CPU_LOONGSON_3A },
 
   /* MIPS 64 Release 2 */
 
   /* Cavium Networks Octeon CPU core */
   { "octeon",        0,      ISA_MIPS64R2,   CPU_OCTEON },
+  { "octeon+",       0,      ISA_MIPS64R2,   CPU_OCTEONP },
+  { "octeon2",       0,      ISA_MIPS64R2,   CPU_OCTEON2 },
 
   /* RMI Xlr */
   { "xlr",           0,      ISA_MIPS64,     CPU_XLR },
 
+  /* Broadcom XLP.
+     XLP is mostly like XLR, with the prominent exception that it is
+     MIPS64R2 rather than MIPS64.  */
+  { "xlp",           0,      ISA_MIPS64R2,     CPU_XLR },
+
   /* End marker */
   { NULL, 0, 0, 0 }
 };
@@ -15657,6 +19327,9 @@ MIPS options:\n\
 -mips16                        generate mips16 instructions\n\
 -no-mips16             do not generate mips16 instructions\n"));
   fprintf (stream, _("\
+-mmicromips            generate microMIPS instructions\n\
+-mno-micromips         do not generate microMIPS instructions\n"));
+  fprintf (stream, _("\
 -msmartmips            generate smartmips instructions\n\
 -mno-smartmips         do not generate smartmips instructions\n"));  
   fprintf (stream, _("\
@@ -15669,6 +19342,9 @@ MIPS options:\n\
 -mmt                   generate MT instructions\n\
 -mno-mt                        do not generate MT instructions\n"));
   fprintf (stream, _("\
+-mmcu                  generate MCU instructions\n\
+-mno-mcu               do not generate MCU instructions\n"));
+  fprintf (stream, _("\
 -mfix-loongson2f-jump  work around Loongson2F JUMP instructions\n\
 -mfix-loongson2f-nop   work around Loongson2F NOP errata\n\
 -mfix-vr4120           work around certain VR4120 errata\n\