* config/tc-mips.c (macro_build_ldst_constoffset,load_register,macro):
[deliverable/binutils-gdb.git] / gas / config / tc-mips.c
index 329d1a495f0cbeb2dadc543788f6c556f2473b6a..cd1b424a5d778f3d2cbf3d6f1cd3a676d365eb62 100644 (file)
@@ -1,5 +1,5 @@
 /* tc-mips.c -- assemble code for a MIPS chip.
-   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
    Free Software Foundation, Inc.
    Contributed by the OSF and Ralph Campbell.
    Written by Keith Knowles and Ralph Campbell, working independently.
 #include "subsegs.h"
 #include "safe-ctype.h"
 
-#ifdef USE_STDARG
 #include <stdarg.h>
-#endif
-#ifdef USE_VARARGS
-#include <varargs.h>
-#endif
 
 #include "opcode/mips.h"
 #include "itbl-ops.h"
@@ -47,8 +42,8 @@
 
 #ifdef OBJ_MAYBE_ELF
 /* Clean up namespace so we can include obj-elf.h too.  */
-static int mips_output_flavor PARAMS ((void));
-static int mips_output_flavor () { return OUTPUT_FLAVOR; }
+static int mips_output_flavor (void);
+static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
 #undef OBJ_PROCESS_STAB
 #undef OUTPUT_FLAVOR
 #undef S_GET_ALIGN
@@ -79,6 +74,15 @@ static int mips_output_flavor () { return OUTPUT_FLAVOR; }
 
 int mips_flag_mdebug = -1;
 
+/* Control generation of .pdr sections.  Off by default on IRIX: the native
+   linker doesn't know about and discards them, but relocations against them
+   remain, leading to rld crashes.  */
+#ifdef TE_IRIX
+int mips_flag_pdr = FALSE;
+#else
+int mips_flag_pdr = TRUE;
+#endif
+
 #include "ecoff.h"
 
 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
@@ -131,6 +135,9 @@ enum mips_abi_level
 /* MIPS ABI we are using for this output file.  */
 static enum mips_abi_level mips_abi = NO_ABI;
 
+/* Whether or not we have code that can call pic code.  */
+int mips_abicalls = FALSE;
+
 /* This is the set of options which may be modified by the .set
    pseudo-op.  We use a struct so that .set push and .set pop are more
    reliable.  */
@@ -177,6 +184,9 @@ struct mips_set_options
      is passed but can changed if the assembler code uses .set mipsN.  */
   int gp32;
   int fp32;
+  /* MIPS architecture (CPU) type.  Changed by .set arch=FOO, the -march
+     command line option, and the default CPU.  */
+  int arch;
 };
 
 /* True if -mgp32 was passed.  */
@@ -191,7 +201,7 @@ static int file_mips_fp32 = -1;
 
 static struct mips_set_options mips_opts =
 {
-  ISA_UNKNOWN, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0
+  ISA_UNKNOWN, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, CPU_UNKNOWN
 };
 
 /* These variables are filled in with the masks of registers used.
@@ -216,15 +226,13 @@ static int file_ase_mips3d;
 static int file_ase_mdmx;
 
 /* The argument of the -march= flag.  The architecture we are assembling.  */
-static int mips_arch = CPU_UNKNOWN;
+static int file_mips_arch = CPU_UNKNOWN;
 static const char *mips_arch_string;
-static const struct mips_cpu_info *mips_arch_info;
 
 /* The argument of the -mtune= flag.  The architecture for which we
    are optimizing.  */
 static int mips_tune = CPU_UNKNOWN;
 static const char *mips_tune_string;
-static const struct mips_cpu_info *mips_tune_info;
 
 /* True when generating 32-bit code for a 64-bit processor.  */
 static int mips_32bitmode = 0;
@@ -258,6 +266,20 @@ static int mips_32bitmode = 0;
    || (ISA) == ISA_MIPS4             \
    || (ISA) == ISA_MIPS5             \
    || (ISA) == ISA_MIPS64            \
+   || (ISA) == ISA_MIPS64R2          \
+   )
+
+/* Return true if ISA supports 64-bit right rotate (dror et al.)
+   instructions.  */
+#define ISA_HAS_DROR(ISA) (    \
+   (ISA) == ISA_MIPS64R2       \
+   )
+
+/* Return true if ISA supports 32-bit right rotate (ror et al.)
+   instructions.  */
+#define ISA_HAS_ROR(ISA) (     \
+   (ISA) == ISA_MIPS32R2       \
+   || (ISA) == ISA_MIPS64R2    \
    )
 
 #define HAVE_32BIT_GPRS                                   \
@@ -283,6 +305,21 @@ static int mips_32bitmode = 0;
 
 #define HAVE_64BIT_ADDRESSES (! HAVE_32BIT_ADDRESSES)
 
+/* Addresses are loaded in different ways, depending on the address size
+   in use.  The n32 ABI Documentation also mandates the use of additions
+   with overflow checking, but existing implementations don't follow it.  */
+#define ADDRESS_ADD_INSN                                               \
+   (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
+
+#define ADDRESS_ADDI_INSN                                              \
+   (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
+
+#define ADDRESS_LOAD_INSN                                              \
+   (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
+
+#define ADDRESS_STORE_INSN                                             \
+   (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
+
 /* Return true if the given CPU supports the MIPS16 ASE.  */
 #define CPU_HAS_MIPS16(cpu)                                            \
    (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0         \
@@ -293,7 +330,7 @@ static int mips_32bitmode = 0;
                                 )
 
 /* Return true if the given CPU supports the MDMX ASE.  */
-#define CPU_HAS_MDMX(cpu)      (false                 \
+#define CPU_HAS_MDMX(cpu)      (FALSE                 \
                                 )
 
 /* True if CPU has a dror instruction.  */
@@ -306,26 +343,27 @@ static int mips_32bitmode = 0;
    reads from the HI and LO registers, and thus does not
    require nops to be inserted.  */
 
-#define hilo_interlocks (mips_arch == CPU_R4010                       \
-                         || mips_arch == CPU_VR5500                   \
-                         || mips_arch == CPU_SB1                      \
+#define hilo_interlocks (mips_opts.arch == CPU_R4010                       \
+                         || mips_opts.arch == CPU_VR5500                   \
+                         || mips_opts.arch == CPU_RM7000                   \
+                         || mips_opts.arch == CPU_SB1                      \
                          )
 
 /* Whether the processor uses hardware interlocks to protect reads
    from the GPRs, and thus does not require nops to be inserted.  */
 #define gpr_interlocks \
   (mips_opts.isa != ISA_MIPS1  \
-   || mips_arch == CPU_VR5400  \
-   || mips_arch == CPU_VR5500  \
-   || mips_arch == CPU_R3900)
+   || mips_opts.arch == CPU_VR5400  \
+   || mips_opts.arch == CPU_VR5500  \
+   || mips_opts.arch == CPU_R3900)
 
 /* As with other "interlocks" this is used by hardware that has FP
    (co-processor) interlocks.  */
 /* Itbl support may require additional care here.  */
-#define cop_interlocks (mips_arch == CPU_R4300                        \
-                        || mips_arch == CPU_VR5400                    \
-                        || mips_arch == CPU_VR5500                    \
-                        || mips_arch == CPU_SB1                       \
+#define cop_interlocks (mips_opts.arch == CPU_R4300                        \
+                        || mips_opts.arch == CPU_VR5400                    \
+                        || mips_opts.arch == CPU_VR5500                    \
+                        || mips_opts.arch == CPU_SB1                       \
                        )
 
 /* Is this a mfhi or mflo instruction?  */
@@ -383,7 +421,7 @@ static int g_switch_seen = 0;
 
    I don't know if a fix is needed for the SVR4_PIC mode.  I've only
    fixed it for the non-PIC mode.  KR 95/04/07  */
-static int nopic_need_relax PARAMS ((symbolS *, int));
+static int nopic_need_relax (symbolS *, int);
 
 /* handle of the OPCODE hash table */
 static struct hash_control *op_hash = NULL;
@@ -543,6 +581,11 @@ struct mips_hi_fixup
 
 static struct mips_hi_fixup *mips_hi_fixup_list;
 
+/* The frag containing the last explicit relocation operator.
+   Null if explicit relocations have not been used.  */
+
+static fragS *prev_reloc_op_frag;
+
 /* Map normal MIPS register numbers to mips16 register numbers.  */
 
 #define X ILLEGAL_REG
@@ -693,7 +736,7 @@ static int mips_relax_branch;
 
    It would be possible to generate a shorter sequence by losing the
    likely bit, generating something like:
-     
+
        bne reg1, reg2, 0f
        nop
        j[al] label
@@ -714,20 +757,18 @@ static int mips_relax_branch;
 
 
    but it's not clear that it would actually improve performance.  */
-#define RELAX_BRANCH_ENCODE(reloc_s2, uncond, likely, link, toofar) \
+#define RELAX_BRANCH_ENCODE(uncond, likely, link, toofar) \
   ((relax_substateT) \
    (0xc0000000 \
     | ((toofar) ? 1 : 0) \
     | ((link) ? 2 : 0) \
     | ((likely) ? 4 : 0) \
-    | ((uncond) ? 8 : 0) \
-    | ((reloc_s2) ? 16 : 0)))
+    | ((uncond) ? 8 : 0)))
 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
-#define RELAX_BRANCH_RELOC_S2(i) (((i) & 16) != 0)
 #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))
+#define RELAX_BRANCH_TOOFAR(i) (((i) & 1) != 0)
 
 /* For mips16 code, we use an entirely different form of relaxation.
    mips16 supports two versions of most instructions which take
@@ -782,131 +823,63 @@ static int mips_relax_branch;
 \f
 /* Prototypes for static functions.  */
 
-#ifdef __STDC__
-#define internalError() \
+#define internalError()                                                        \
     as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
-#else
-#define internalError() as_fatal (_("MIPS internal Error"));
-#endif
 
 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
 
-static int insn_uses_reg PARAMS ((struct mips_cl_insn *ip,
-                                 unsigned int reg, enum mips_regclass class));
-static int reg_needs_delay PARAMS ((unsigned int));
-static void mips16_mark_labels PARAMS ((void));
-static void append_insn PARAMS ((char *place,
-                                struct mips_cl_insn * ip,
-                                expressionS * p,
-                                bfd_reloc_code_real_type *r,
-                                boolean));
-static void mips_no_prev_insn PARAMS ((int));
-static void mips_emit_delays PARAMS ((boolean));
-#ifdef USE_STDARG
-static void macro_build PARAMS ((char *place, int *counter, expressionS * ep,
-                                const char *name, const char *fmt,
-                                ...));
-#else
-static void macro_build ();
-#endif
-static void mips16_macro_build PARAMS ((char *, int *, expressionS *,
-                                       const char *, const char *,
-                                       va_list));
-static void macro_build_jalr PARAMS ((int, expressionS *));
-static void macro_build_lui PARAMS ((char *place, int *counter,
-                                    expressionS * ep, int regnum));
-static void macro_build_ldst_constoffset PARAMS ((char *place, int *counter,
-                                                 expressionS * ep, const char *op,
-                                                 int valreg, int breg));
-static void set_at PARAMS ((int *counter, int reg, int unsignedp));
-static void check_absolute_expr PARAMS ((struct mips_cl_insn * ip,
-                                        expressionS *));
-static void load_register PARAMS ((int *, int, expressionS *, int));
-static void load_address PARAMS ((int *, int, expressionS *, int *));
-static void move_register PARAMS ((int *, int, int));
-static void macro PARAMS ((struct mips_cl_insn * ip));
-static void mips16_macro PARAMS ((struct mips_cl_insn * ip));
+static void append_insn
+  (char *place, struct mips_cl_insn *ip, expressionS *p,
+   bfd_reloc_code_real_type *r);
+static void mips_no_prev_insn (int);
+static void mips16_macro_build
+  (char *, int *, expressionS *, const char *, const char *, va_list);
+static void load_register (int *, int, expressionS *, int);
+static void macro (struct mips_cl_insn * ip);
+static void mips16_macro (struct mips_cl_insn * ip);
 #ifdef LOSING_COMPILER
-static void macro2 PARAMS ((struct mips_cl_insn * ip));
-#endif
-static void mips_ip PARAMS ((char *str, struct mips_cl_insn * ip));
-static void mips16_ip PARAMS ((char *str, struct mips_cl_insn * ip));
-static void mips16_immed PARAMS ((char *, unsigned int, int, offsetT, boolean,
-                                 boolean, boolean, unsigned long *,
-                                 boolean *, unsigned short *));
-static int my_getPercentOp PARAMS ((char **, unsigned int *, int *));
-static int my_getSmallParser PARAMS ((char **, unsigned int *, int *));
-static int my_getSmallExpression PARAMS ((expressionS *, char *));
-static void my_getExpression PARAMS ((expressionS *, char *));
-#ifdef OBJ_ELF
-static int support_64bit_objects PARAMS((void));
+static void macro2 (struct mips_cl_insn * ip);
 #endif
-static void mips_set_option_string PARAMS ((const char **, const char *));
-static symbolS *get_symbol PARAMS ((void));
-static void mips_align PARAMS ((int to, int fill, symbolS *label));
-static void s_align PARAMS ((int));
-static void s_change_sec PARAMS ((int));
-static void s_change_section PARAMS ((int));
-static void s_cons PARAMS ((int));
-static void s_float_cons PARAMS ((int));
-static void s_mips_globl PARAMS ((int));
-static void s_option PARAMS ((int));
-static void s_mipsset PARAMS ((int));
-static void s_abicalls PARAMS ((int));
-static void s_cpload PARAMS ((int));
-static void s_cpsetup PARAMS ((int));
-static void s_cplocal PARAMS ((int));
-static void s_cprestore PARAMS ((int));
-static void s_cpreturn PARAMS ((int));
-static void s_gpvalue PARAMS ((int));
-static void s_gpword PARAMS ((int));
-static void s_gpdword PARAMS ((int));
-static void s_cpadd PARAMS ((int));
-static void s_insn PARAMS ((int));
-static void md_obj_begin PARAMS ((void));
-static void md_obj_end PARAMS ((void));
-static long get_number PARAMS ((void));
-static void s_mips_ent PARAMS ((int));
-static void s_mips_end PARAMS ((int));
-static void s_mips_frame PARAMS ((int));
-static void s_mips_mask PARAMS ((int));
-static void s_mips_stab PARAMS ((int));
-static void s_mips_weakext PARAMS ((int));
-static void s_mips_file PARAMS ((int));
-static void s_mips_loc PARAMS ((int));
-static int mips16_extended_frag PARAMS ((fragS *, asection *, long));
+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
+  (char *, unsigned int, int, offsetT, bfd_boolean, bfd_boolean, bfd_boolean,
+   unsigned long *, bfd_boolean *, unsigned short *);
+static size_t my_getSmallExpression
+  (expressionS *, bfd_reloc_code_real_type *, char *);
+static void my_getExpression (expressionS *, char *);
+static void s_align (int);
+static void s_change_sec (int);
+static void s_change_section (int);
+static void s_cons (int);
+static void s_float_cons (int);
+static void s_mips_globl (int);
+static void s_option (int);
+static void s_mipsset (int);
+static void s_abicalls (int);
+static void s_cpload (int);
+static void s_cpsetup (int);
+static void s_cplocal (int);
+static void s_cprestore (int);
+static void s_cpreturn (int);
+static void s_gpvalue (int);
+static void s_gpword (int);
+static void s_gpdword (int);
+static void s_cpadd (int);
+static void s_insn (int);
+static void md_obj_begin (void);
+static void md_obj_end (void);
+static void s_mips_ent (int);
+static void s_mips_end (int);
+static void s_mips_frame (int);
+static void s_mips_mask (int reg_type);
+static void s_mips_stab (int);
+static void s_mips_weakext (int);
+static void s_mips_file (int);
+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 PARAMS ((const struct mips_opcode *));
-static void show PARAMS ((FILE *, const char *, int *, int *));
-#ifdef OBJ_ELF
-static int mips_need_elf_addend_fixup PARAMS ((fixS *));
-#endif
-
-/* Return values of my_getSmallExpression().  */
-
-enum small_ex_type
-{
-  S_EX_NONE = 0,
-  S_EX_REGISTER,
-
-  /* Direct relocation creation by %percent_op().  */
-  S_EX_HALF,
-  S_EX_HI,
-  S_EX_LO,
-  S_EX_GP_REL,
-  S_EX_GOT,
-  S_EX_CALL16,
-  S_EX_GOT_DISP,
-  S_EX_GOT_PAGE,
-  S_EX_GOT_OFST,
-  S_EX_GOT_HI,
-  S_EX_GOT_LO,
-  S_EX_NEG,
-  S_EX_HIGHER,
-  S_EX_HIGHEST,
-  S_EX_CALL_HI,
-  S_EX_CALL_LO
-};
+static int validate_mips_insn (const struct mips_opcode *);
 
 /* Table and functions used to map between CPU/ISA names, and
    ISA levels, and CPU numbers.  */
@@ -919,14 +892,9 @@ struct mips_cpu_info
   int cpu;                    /* CPU number (default CPU if ISA).  */
 };
 
-static void mips_set_architecture PARAMS ((const struct mips_cpu_info *));
-static void mips_set_tune PARAMS ((const struct mips_cpu_info *));
-static boolean mips_strict_matching_cpu_name_p PARAMS ((const char *,
-                                                       const char *));
-static boolean mips_matching_cpu_name_p PARAMS ((const char *, const char *));
-static const struct mips_cpu_info *mips_parse_cpu PARAMS ((const char *,
-                                                          const char *));
-static const struct mips_cpu_info *mips_cpu_info_from_isa PARAMS ((int));
+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);
+static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
 \f
 /* Pseudo-op table.
 
@@ -1019,10 +987,10 @@ static const pseudo_typeS mips_nonecoff_pseudo_table[] =
   { NULL, NULL, 0 },
 };
 
-extern void pop_insert PARAMS ((const pseudo_typeS *));
+extern void pop_insert (const pseudo_typeS *);
 
 void
-mips_pop_insert ()
+mips_pop_insert (void)
 {
   pop_insert (mips_pseudo_table);
   if (! ECOFF_DEBUGGING)
@@ -1040,10 +1008,10 @@ struct insn_label_list
 static struct insn_label_list *insn_labels;
 static struct insn_label_list *free_insn_labels;
 
-static void mips_clear_insn_labels PARAMS ((void));
+static void mips_clear_insn_labels (void);
 
 static inline void
-mips_clear_insn_labels ()
+mips_clear_insn_labels (void)
 {
   register struct insn_label_list **pl;
 
@@ -1059,6 +1027,7 @@ static char *expr_end;
    mips_ip.  */
 
 static expressionS imm_expr;
+static expressionS imm2_expr;
 static expressionS offset_expr;
 
 /* Relocs associated with imm_expr and offset_expr.  */
@@ -1068,13 +1037,9 @@ 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};
 
-/* This is set by mips_ip if imm_reloc is an unmatched HI16_S reloc.  */
-
-static boolean imm_unmatched_hi;
-
 /* These are set by mips16_ip if an explicit extension is used.  */
 
-static boolean mips16_small, mips16_ext;
+static bfd_boolean mips16_small, mips16_ext;
 
 #ifdef OBJ_ELF
 /* The pdr segment for per procedure frame/regmask info.  Not used for
@@ -1086,7 +1051,7 @@ static segT pdr_seg;
 /* The default target format to use.  */
 
 const char *
-mips_target_format ()
+mips_target_format (void)
 {
   switch (OUTPUT_FLAVOR)
     {
@@ -1129,13 +1094,13 @@ mips_target_format ()
    set up all the tables, etc. that the MD part of the assembler will need.  */
 
 void
-md_begin ()
+md_begin (void)
 {
   register const char *retval = NULL;
   int i = 0;
   int broken = 0;
 
-  if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, mips_arch))
+  if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
     as_warn (_("Could not set architecture and machine"));
 
   op_hash = hash_new ();
@@ -1144,7 +1109,7 @@ md_begin ()
     {
       const char *name = mips_opcodes[i].name;
 
-      retval = hash_insert (op_hash, name, (PTR) &mips_opcodes[i]);
+      retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
       if (retval != NULL)
        {
          fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
@@ -1171,7 +1136,7 @@ md_begin ()
     {
       const char *name = mips16_opcodes[i].name;
 
-      retval = hash_insert (mips16_op_hash, name, (PTR) &mips16_opcodes[i]);
+      retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
       if (retval != NULL)
        as_fatal (_("internal: can't hash `%s': %s"),
                  mips16_opcodes[i].name, retval);
@@ -1237,7 +1202,7 @@ md_begin ()
                                       &zero_address_frag));
     }
 
-  mips_no_prev_insn (false);
+  mips_no_prev_insn (FALSE);
 
   mips_gprmask = 0;
   mips_cprmask[0] = 0;
@@ -1328,7 +1293,7 @@ md_begin ()
            (void) bfd_set_section_alignment (stdoutput, sec, 2);
          }
 #ifdef OBJ_ELF
-       else if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
+       else if (OUTPUT_FLAVOR == bfd_target_elf_flavour && mips_flag_pdr)
          {
            pdr_seg = subseg_new (".pdr", (subsegT) 0);
            (void) bfd_set_section_flags (stdoutput, pdr_seg,
@@ -1347,22 +1312,21 @@ md_begin ()
 }
 
 void
-md_mips_end ()
+md_mips_end (void)
 {
   if (! ECOFF_DEBUGGING)
     md_obj_end ();
 }
 
 void
-md_assemble (str)
-     char *str;
+md_assemble (char *str)
 {
   struct mips_cl_insn insn;
   bfd_reloc_code_real_type unused_reloc[3]
     = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
 
   imm_expr.X_op = O_absent;
-  imm_unmatched_hi = false;
+  imm2_expr.X_op = O_absent;
   offset_expr.X_op = O_absent;
   imm_reloc[0] = BFD_RELOC_UNUSED;
   imm_reloc[1] = BFD_RELOC_UNUSED;
@@ -1396,22 +1360,43 @@ md_assemble (str)
   else
     {
       if (imm_expr.X_op != O_absent)
-       append_insn (NULL, &insn, &imm_expr, imm_reloc, imm_unmatched_hi);
+       append_insn (NULL, &insn, &imm_expr, imm_reloc);
       else if (offset_expr.X_op != O_absent)
-       append_insn (NULL, &insn, &offset_expr, offset_reloc, false);
+       append_insn (NULL, &insn, &offset_expr, offset_reloc);
       else
-       append_insn (NULL, &insn, NULL, unused_reloc, false);
+       append_insn (NULL, &insn, NULL, unused_reloc);
     }
 }
 
+/* Return true if the given relocation might need a matching %lo().
+   Note that R_MIPS_GOT16 relocations only need a matching %lo() when
+   applied to local symbols.  */
+
+static inline bfd_boolean
+reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
+{
+  return (reloc == BFD_RELOC_HI16_S
+         || reloc == BFD_RELOC_MIPS_GOT16);
+}
+
+/* Return true if the given fixup is followed by a matching R_MIPS_LO16
+   relocation.  */
+
+static inline bfd_boolean
+fixup_has_matching_lo_p (fixS *fixp)
+{
+  return (fixp->fx_next != NULL
+         && fixp->fx_next->fx_r_type == BFD_RELOC_LO16
+         && fixp->fx_addsy == fixp->fx_next->fx_addsy
+         && 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 (ip, reg, class)
-     struct mips_cl_insn *ip;
-     unsigned int reg;
-     enum mips_regclass class;
+insn_uses_reg (struct mips_cl_insn *ip, unsigned int reg,
+              enum mips_regclass class)
 {
   if (class == MIPS16_REG)
     {
@@ -1488,8 +1473,7 @@ insn_uses_reg (ip, reg, class)
    delay.  */
 
 static int
-reg_needs_delay (reg)
-     unsigned int reg;
+reg_needs_delay (unsigned int reg)
 {
   unsigned long prev_pinfo;
 
@@ -1522,7 +1506,7 @@ reg_needs_delay (reg)
    to make them odd again.  */
 
 static void
-mips16_mark_labels ()
+mips16_mark_labels (void)
 {
   if (mips_opts.mips16)
     {
@@ -1548,17 +1532,14 @@ mips16_mark_labels ()
    used with RELOC_TYPE.  */
 
 static void
-append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
-     char *place;
-     struct mips_cl_insn *ip;
-     expressionS *address_expr;
-     bfd_reloc_code_real_type *reloc_type;
-     boolean unmatched_hi;
+append_insn (char *place, struct mips_cl_insn *ip, expressionS *address_expr,
+            bfd_reloc_code_real_type *reloc_type)
 {
   register unsigned long prev_pinfo, pinfo;
   char *f;
   fixS *fixp[3];
   int nops = 0;
+  bfd_boolean force_new_frag = FALSE;
 
   /* Mark instruction labels in mips16 mode.  */
   mips16_mark_labels ();
@@ -1948,9 +1929,7 @@ append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
 
   if (place == NULL
       && address_expr
-      && ((*reloc_type == BFD_RELOC_16_PCREL
-          && address_expr->X_op != O_constant)
-         || *reloc_type == BFD_RELOC_16_PCREL_S2)
+      && *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
@@ -1967,8 +1946,7 @@ append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
                     (pinfo & INSN_UNCOND_BRANCH_DELAY) ? -1
                     : (pinfo & INSN_COND_BRANCH_LIKELY) ? 1 : 0), 4,
                    RELAX_BRANCH_ENCODE
-                   (*reloc_type == BFD_RELOC_16_PCREL_S2,
-                    pinfo & INSN_UNCOND_BRANCH_DELAY,
+                   (pinfo & INSN_UNCOND_BRANCH_DELAY,
                     pinfo & INSN_COND_BRANCH_LIKELY,
                     pinfo & INSN_WRITE_GPR_31,
                     0),
@@ -2025,7 +2003,8 @@ append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
              break;
 
            case BFD_RELOC_MIPS_HIGHEST:
-             tmp = (address_expr->X_add_number + 0x800080008000) >> 16;
+             tmp = (address_expr->X_add_number
+                    + ((valueT) 0x8000 << 32) + 0x80008000) >> 16;
              tmp >>= 16;
              ip->insn_opcode |= (tmp >> 16) & 0xffff;
              break;
@@ -2072,10 +2051,6 @@ append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
                 | ((address_expr->X_add_number & 0x3fffc) >> 2));
              break;
 
-           case BFD_RELOC_16_PCREL:
-             ip->insn_opcode |= address_expr->X_add_number & 0xffff;
-             break;
-
            case BFD_RELOC_16_PCREL_S2:
              goto need_reloc;
 
@@ -2089,112 +2064,78 @@ append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
          /* Don't generate a reloc if we are writing into a variant frag.  */
          if (place == NULL)
            {
-             fixp[0] = fix_new_exp (frag_now, f - frag_now->fr_literal, 4,
+             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]);
+             fixp[0] = fix_new_exp (frag_now, f - frag_now->fr_literal,
+                                    bfd_get_reloc_size(howto),
                                     address_expr,
-                                    (*reloc_type == BFD_RELOC_16_PCREL
-                                     || *reloc_type == BFD_RELOC_16_PCREL_S2),
+                                    reloc_type[0] == BFD_RELOC_16_PCREL_S2,
                                     reloc_type[0]);
 
              /* These relocations can have an addend that won't fit in
                 4 octets for 64bit assembly.  */
-             if (HAVE_64BIT_GPRS &&
-                 (*reloc_type == BFD_RELOC_16
-                  || *reloc_type == BFD_RELOC_32
-                  || *reloc_type == BFD_RELOC_MIPS_JMP
-                  || *reloc_type == BFD_RELOC_HI16_S
-                  || *reloc_type == BFD_RELOC_LO16
-                  || *reloc_type == BFD_RELOC_GPREL16
-                  || *reloc_type == BFD_RELOC_MIPS_LITERAL
-                  || *reloc_type == BFD_RELOC_GPREL32
-                  || *reloc_type == BFD_RELOC_64
-                  || *reloc_type == BFD_RELOC_CTOR
-                  || *reloc_type == BFD_RELOC_MIPS_SUB
-                  || *reloc_type == BFD_RELOC_MIPS_HIGHEST
-                  || *reloc_type == BFD_RELOC_MIPS_HIGHER
-                  || *reloc_type == BFD_RELOC_MIPS_SCN_DISP
-                  || *reloc_type == BFD_RELOC_MIPS_REL16
-                  || *reloc_type == BFD_RELOC_MIPS_RELGOT))
+             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_HI16_S
+                     || reloc_type[0] == BFD_RELOC_LO16
+                     || 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))
                fixp[0]->fx_no_overflow = 1;
 
-             if (unmatched_hi)
+             if (reloc_needs_lo_p (*reloc_type))
                {
                  struct mips_hi_fixup *hi_fixup;
 
-                 assert (*reloc_type == BFD_RELOC_HI16_S);
-                 hi_fixup = ((struct mips_hi_fixup *)
-                             xmalloc (sizeof (struct mips_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 = fixp[0];
                  hi_fixup->seg = now_seg;
-                 hi_fixup->next = mips_hi_fixup_list;
-                 mips_hi_fixup_list = hi_fixup;
                }
 
-             if (reloc_type[1] != BFD_RELOC_UNUSED)
-               {
-                 /* FIXME: This symbol can be one of
-                    RSS_UNDEF, RSS_GP, RSS_GP0, RSS_LOC.  */
-                 address_expr->X_op = O_absent;
-                 address_expr->X_add_symbol = 0;
-                 address_expr->X_add_number = 0;
-
-                 fixp[1] = fix_new_exp (frag_now, f - frag_now->fr_literal,
-                                        4, address_expr, false,
-                                        reloc_type[1]);
-
-                 /* These relocations can have an addend that won't fit in
-                    4 octets for 64bit assembly.  */
-                 if (HAVE_64BIT_GPRS &&
-                     (*reloc_type == BFD_RELOC_16
-                      || *reloc_type == BFD_RELOC_32
-                      || *reloc_type == BFD_RELOC_MIPS_JMP
-                      || *reloc_type == BFD_RELOC_HI16_S
-                      || *reloc_type == BFD_RELOC_LO16
-                      || *reloc_type == BFD_RELOC_GPREL16
-                      || *reloc_type == BFD_RELOC_MIPS_LITERAL
-                      || *reloc_type == BFD_RELOC_GPREL32
-                      || *reloc_type == BFD_RELOC_64
-                      || *reloc_type == BFD_RELOC_CTOR
-                      || *reloc_type == BFD_RELOC_MIPS_SUB
-                      || *reloc_type == BFD_RELOC_MIPS_HIGHEST
-                      || *reloc_type == BFD_RELOC_MIPS_HIGHER
-                      || *reloc_type == BFD_RELOC_MIPS_SCN_DISP
-                      || *reloc_type == BFD_RELOC_MIPS_REL16
-                      || *reloc_type == BFD_RELOC_MIPS_RELGOT))
-                   fixp[1]->fx_no_overflow = 1;
-
-                 if (reloc_type[2] != BFD_RELOC_UNUSED)
-                   {
-                     address_expr->X_op = O_absent;
-                     address_expr->X_add_symbol = 0;
-                     address_expr->X_add_number = 0;
-
-                     fixp[2] = fix_new_exp (frag_now,
-                                            f - frag_now->fr_literal, 4,
-                                            address_expr, false,
-                                            reloc_type[2]);
-
-                     /* These relocations can have an addend that won't fit in
-                        4 octets for 64bit assembly.  */
-                     if (HAVE_64BIT_GPRS &&
-                         (*reloc_type == BFD_RELOC_16
-                          || *reloc_type == BFD_RELOC_32
-                          || *reloc_type == BFD_RELOC_MIPS_JMP
-                          || *reloc_type == BFD_RELOC_HI16_S
-                          || *reloc_type == BFD_RELOC_LO16
-                          || *reloc_type == BFD_RELOC_GPREL16
-                          || *reloc_type == BFD_RELOC_MIPS_LITERAL
-                          || *reloc_type == BFD_RELOC_GPREL32
-                          || *reloc_type == BFD_RELOC_64
-                          || *reloc_type == BFD_RELOC_CTOR
-                          || *reloc_type == BFD_RELOC_MIPS_SUB
-                          || *reloc_type == BFD_RELOC_MIPS_HIGHEST
-                          || *reloc_type == BFD_RELOC_MIPS_HIGHER
-                          || *reloc_type == BFD_RELOC_MIPS_SCN_DISP
-                          || *reloc_type == BFD_RELOC_MIPS_REL16
-                          || *reloc_type == BFD_RELOC_MIPS_RELGOT))
-                       fixp[2]->fx_no_overflow = 1;
-                   }
-               }
+             /* 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)
+                 {
+                   address_expr->X_op = O_absent;
+                   address_expr->X_add_symbol = 0;
+                   address_expr->X_add_number = 0;
+
+                   fixp[i] = fix_new_exp (frag_now, fixp[0]->fx_where,
+                                          fixp[0]->fx_size, address_expr,
+                                          FALSE, reloc_type[i]);
+                 }
            }
        }
     }
@@ -2537,6 +2478,18 @@ append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
                      prev_insn_fixp[2]->fx_frag = frag_now;
                      prev_insn_fixp[2]->fx_where = f - frag_now->fr_literal;
                    }
+                 if (prev_insn_fixp[0] && HAVE_NEWABI
+                     && prev_insn_frag != frag_now
+                     && (prev_insn_fixp[0]->fx_r_type
+                         == BFD_RELOC_MIPS_GOT_DISP
+                         || (prev_insn_fixp[0]->fx_r_type
+                             == BFD_RELOC_MIPS_CALL16)))
+                   {
+                     /* To avoid confusion in tc_gen_reloc, we must
+                        ensure that this does not become a variant
+                        frag.  */
+                     force_new_frag = TRUE;
+                   }
                  if (fixp[0])
                    {
                      fixp[0]->fx_frag = prev_insn_frag;
@@ -2679,11 +2632,10 @@ append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
   /* We just output an insn, so the next one doesn't have a label.  */
   mips_clear_insn_labels ();
 
-  /* We must ensure that a fixup associated with an unmatched %hi
-     reloc does not become a variant frag.  Otherwise, the
-     rearrangement of %hi relocs in frob_file may confuse
-     tc_gen_reloc.  */
-  if (unmatched_hi)
+  /* We must ensure that the frag to which an instruction that was
+     moved from a non-variant frag doesn't become a variant frag,
+     otherwise tc_gen_reloc may get confused.  */
+  if (force_new_frag)
     {
       frag_wane (frag_now);
       frag_new (0);
@@ -2695,8 +2647,7 @@ append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
    know whether nops are needed before a noreorder section.  */
 
 static void
-mips_no_prev_insn (preserve)
-     int preserve;
+mips_no_prev_insn (int preserve)
 {
   if (! preserve)
     {
@@ -2725,8 +2676,7 @@ mips_no_prev_insn (preserve)
    instructions are to follow.  */
 
 static void
-mips_emit_delays (insns)
-     boolean insns;
+mips_emit_delays (bfd_boolean insns)
 {
   if (! mips_opts.noreorder)
     {
@@ -2847,34 +2797,15 @@ mips_emit_delays (insns)
    expression, the name of the instruction to build, an operand format
    string, and corresponding arguments.  */
 
-#ifdef USE_STDARG
-static void
-macro_build (char *place,
-            int *counter,
-            expressionS * ep,
-            const char *name,
-            const char *fmt,
-            ...)
-#else
 static void
-macro_build (place, counter, ep, name, fmt, va_alist)
-     char *place;
-     int *counter;
-     expressionS *ep;
-     const char *name;
-     const char *fmt;
-     va_dcl
-#endif
+macro_build (char *place, int *counter, expressionS *ep, const char *name,
+            const char *fmt, ...)
 {
   struct mips_cl_insn insn;
   bfd_reloc_code_real_type r[3];
   va_list args;
 
-#ifdef USE_STDARG
   va_start (args, fmt);
-#else
-  va_start (args);
-#endif
 
   /*
    * If the macro is about to expand into a second instruction,
@@ -2916,15 +2847,15 @@ macro_build (place, counter, ep, name, fmt, va_alist)
   /* Search until we get a match for NAME.  */
   while (1)
     {
-      /* It is assumed here that macros will never generate 
+      /* It is assumed here that macros will never generate
          MDMX or MIPS-3D instructions.  */
       if (strcmp (fmt, insn.insn_mo->args) == 0
          && insn.insn_mo->pinfo != INSN_MACRO
          && OPCODE_IS_MEMBER (insn.insn_mo,
                               (mips_opts.isa
                                | (file_ase_mips16 ? INSN_MIPS16 : 0)),
-                              mips_arch)
-         && (mips_arch != CPU_R4650 || (insn.insn_mo->pinfo & FP_D) == 0))
+                              mips_opts.arch)
+         && (mips_opts.arch != CPU_R4650 || (insn.insn_mo->pinfo & FP_D) == 0))
        break;
 
       ++insn.insn_mo;
@@ -2945,6 +2876,41 @@ macro_build (place, counter, ep, name, fmt, va_alist)
        case ')':
          continue;
 
+       case '+':
+         switch (*fmt++)
+           {
+           case 'A':
+           case 'E':
+             insn.insn_opcode |= (va_arg (args, int)
+                                  & OP_MASK_SHAMT) << OP_SH_SHAMT;
+             continue;
+
+           case 'B':
+           case 'F':
+             /* Note that in the macro case, these arguments are already
+                in MSB form.  (When handling the instruction in the
+                non-macro case, these arguments are sizes from which
+                MSB values must be calculated.)  */
+             insn.insn_opcode |= (va_arg (args, int)
+                                  & OP_MASK_INSMSB) << OP_SH_INSMSB;
+             continue;
+
+           case 'C':
+           case 'G':
+           case 'H':
+             /* Note that in the macro case, these arguments are already
+                in MSBD form.  (When handling the instruction in the
+                non-macro case, these arguments are sizes from which
+                MSBD values must be calculated.)  */
+             insn.insn_opcode |= (va_arg (args, int)
+                                  & OP_MASK_EXTMSBD) << OP_SH_EXTMSBD;
+             continue;
+
+           default:
+             internalError ();
+           }
+         continue;
+
        case 't':
        case 'w':
        case 'E':
@@ -2962,6 +2928,7 @@ macro_build (place, counter, ep, name, fmt, va_alist)
 
        case 'd':
        case 'G':
+       case 'K':
          insn.insn_opcode |= va_arg (args, int) << OP_SH_RD;
          continue;
 
@@ -3059,10 +3026,7 @@ macro_build (place, counter, ep, name, fmt, va_alist)
              ep = NULL;
            }
          else
-           if (mips_pic == EMBEDDED_PIC)
-             *r = BFD_RELOC_16_PCREL_S2;
-           else
-             *r = BFD_RELOC_16_PCREL;
+           *r = BFD_RELOC_16_PCREL_S2;
          continue;
 
        case 'a':
@@ -3082,17 +3046,13 @@ macro_build (place, counter, ep, name, fmt, va_alist)
   va_end (args);
   assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
 
-  append_insn (place, &insn, ep, r, false);
+  append_insn (place, &insn, ep, r);
 }
 
 static void
-mips16_macro_build (place, counter, ep, name, fmt, args)
-     char *place;
-     int *counter ATTRIBUTE_UNUSED;
-     expressionS *ep;
-     const char *name;
-     const char *fmt;
-     va_list args;
+mips16_macro_build (char *place, int *counter ATTRIBUTE_UNUSED,
+                   expressionS *ep, const char *name, const char *fmt,
+                   va_list args)
 {
   struct mips_cl_insn insn;
   bfd_reloc_code_real_type r[3]
@@ -3111,7 +3071,7 @@ mips16_macro_build (place, counter, ep, name, fmt, args)
     }
 
   insn.insn_opcode = insn.insn_mo->match;
-  insn.use_extend = false;
+  insn.use_extend = FALSE;
 
   for (;;)
     {
@@ -3189,8 +3149,8 @@ mips16_macro_build (place, counter, ep, name, fmt, args)
              *r = (int) BFD_RELOC_UNUSED + c;
            else
              {
-               mips16_immed (NULL, 0, c, ep->X_add_number, false, false,
-                             false, &insn.insn_opcode, &insn.use_extend,
+               mips16_immed (NULL, 0, c, ep->X_add_number, FALSE, FALSE,
+                             FALSE, &insn.insn_opcode, &insn.use_extend,
                              &insn.extend);
                ep = NULL;
                *r = BFD_RELOC_UNUSED;
@@ -3208,7 +3168,7 @@ mips16_macro_build (place, counter, ep, name, fmt, args)
 
   assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
 
-  append_insn (place, &insn, ep, r, false);
+  append_insn (place, &insn, ep, r);
 }
 
 /*
@@ -3216,33 +3176,26 @@ mips16_macro_build (place, counter, ep, name, fmt, args)
  * function.  This occurs in NewABI PIC code.
  */
 static void
-macro_build_jalr (icnt, ep)
-     int icnt;
-     expressionS *ep;
+macro_build_jalr (int icnt, expressionS *ep)
 {
-  char *f;
-  
+  char *f = NULL;
+
   if (HAVE_NEWABI)
     {
       frag_grow (4);
       f = frag_more (0);
     }
-  macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "jalr", "d,s",
-              RA, PIC_CALL_REG);
+  macro_build (NULL, &icnt, NULL, "jalr", "d,s", RA, PIC_CALL_REG);
   if (HAVE_NEWABI)
     fix_new_exp (frag_now, f - frag_now->fr_literal,
-                0, ep, false, BFD_RELOC_MIPS_JALR);
+                4, ep, FALSE, BFD_RELOC_MIPS_JALR);
 }
 
 /*
  * Generate a "lui" instruction.
  */
 static void
-macro_build_lui (place, counter, ep, regnum)
-     char *place;
-     int *counter;
-     expressionS *ep;
-     int regnum;
+macro_build_lui (char *place, int *counter, expressionS *ep, int regnum)
 {
   expressionS high_expr;
   struct mips_cl_insn insn;
@@ -3268,12 +3221,13 @@ macro_build_lui (place, counter, ep, regnum)
                                >> 16) & 0xffff;
       *r = BFD_RELOC_UNUSED;
     }
-  else if (! HAVE_NEWABI)
+  else
     {
       assert (ep->X_op == O_symbol);
       /* _gp_disp is a special case, used from s_cpload.  */
       assert (mips_pic == NO_PIC
-             || strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0);
+             || (! HAVE_NEWABI
+                 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0));
       *r = BFD_RELOC_HI16_S;
     }
 
@@ -3297,34 +3251,41 @@ macro_build_lui (place, counter, ep, regnum)
   if (*r == BFD_RELOC_UNUSED)
     {
       insn.insn_opcode |= high_expr.X_add_number;
-      append_insn (place, &insn, NULL, r, false);
+      append_insn (place, &insn, NULL, r);
     }
   else
-    append_insn (place, &insn, &high_expr, r, false);
+    append_insn (place, &insn, &high_expr, r);
 }
 
 /* Generate a sequence of instructions to do a load or store from a constant
    offset off of a base register (breg) into/from a target register (treg),
    using AT if necessary.  */
 static void
-macro_build_ldst_constoffset (place, counter, ep, op, treg, breg)
-     char *place;
-     int *counter;
-     expressionS *ep;
-     const char *op;
-     int treg, breg;
+macro_build_ldst_constoffset (char *place, int *counter, expressionS *ep,
+                             const char *op, int treg, int breg, int dbl)
 {
   assert (ep->X_op == O_constant);
 
+  /* Sign-extending 32-bit constants makes their handling easier.  */
+  if (! dbl && ! ((ep->X_add_number & ~((bfd_vma) 0x7fffffff))
+                 == ~((bfd_vma) 0x7fffffff)))
+    {
+      if (ep->X_add_number & ~((bfd_vma) 0xffffffff))
+       as_bad (_("too large constant specified"));
+
+    ep->X_add_number = (((ep->X_add_number & 0xffffffff) ^ 0x80000000)
+                       - 0x80000000);
+    }
+
   /* Right now, this routine can only handle signed 32-bit contants.  */
-  if (! IS_SEXT_32BIT_NUM(ep->X_add_number))
+  if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
     as_warn (_("operand overflow"));
 
   if (IS_SEXT_16BIT_NUM(ep->X_add_number))
     {
       /* Signed 16-bit offset will fit in the op.  Easy!  */
-      macro_build (place, counter, ep, op, "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, breg);
+      macro_build (place, counter, ep, op, "t,o(b)", treg, BFD_RELOC_LO16,
+                  breg);
     }
   else
     {
@@ -3336,13 +3297,12 @@ macro_build_ldst_constoffset (place, counter, ep, op, treg, breg)
       macro_build_lui (place, counter, ep, AT);
       if (place != NULL)
        place += 4;
-      macro_build (place, counter, (expressionS *) NULL,
-                  HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                  "d,v,t", AT, AT, breg);
+      macro_build (place, counter, NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT,
+                  breg);
       if (place != NULL)
        place += 4;
-      macro_build (place, counter, ep, op, "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, AT);
+      macro_build (place, counter, ep, op, "t,o(b)", treg, BFD_RELOC_LO16,
+                  AT);
 
       if (mips_opts.noat)
        as_warn (_("Macro used $at after \".set noat\""));
@@ -3354,22 +3314,17 @@ macro_build_ldst_constoffset (place, counter, ep, op, treg, breg)
  * if reg is less than the immediate expression.
  */
 static void
-set_at (counter, reg, unsignedp)
-     int *counter;
-     int reg;
-     int unsignedp;
+set_at (int *counter, int reg, int unsignedp)
 {
   if (imm_expr.X_op == O_constant
       && imm_expr.X_add_number >= -0x8000
       && imm_expr.X_add_number < 0x8000)
-    macro_build ((char *) NULL, counter, &imm_expr,
-                unsignedp ? "sltiu" : "slti",
-                "t,r,j", AT, reg, (int) BFD_RELOC_LO16);
+    macro_build (NULL, counter, &imm_expr, unsignedp ? "sltiu" : "slti",
+                "t,r,j", AT, reg, BFD_RELOC_LO16);
   else
     {
       load_register (counter, AT, &imm_expr, HAVE_64BIT_GPRS);
-      macro_build ((char *) NULL, counter, (expressionS *) NULL,
-                  unsignedp ? "sltu" : "slt",
+      macro_build (NULL, counter, NULL, unsignedp ? "sltu" : "slt",
                   "d,v,t", AT, reg, AT);
     }
 }
@@ -3377,9 +3332,7 @@ set_at (counter, reg, unsignedp)
 /* Warn if an expression is not a constant.  */
 
 static void
-check_absolute_expr (ip, ex)
-     struct mips_cl_insn *ip;
-     expressionS *ex;
+check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
 {
   if (ex->X_op == O_big)
     as_bad (_("unsupported large constant"));
@@ -3468,11 +3421,7 @@ check_absolute_expr (ip, ex)
  *  an absolute expression value into a register.
  */
 static void
-load_register (counter, reg, ep, dbl)
-     int *counter;
-     int reg;
-     expressionS *ep;
-     int dbl;
+load_register (int *counter, int reg, expressionS *ep, int dbl)
 {
   int freg;
   expressionS hi32, lo32;
@@ -3480,46 +3429,42 @@ load_register (counter, reg, ep, dbl)
   if (ep->X_op != O_big)
     {
       assert (ep->X_op == O_constant);
-      if (ep->X_add_number < 0x8000
-         && (ep->X_add_number >= 0
-             || (ep->X_add_number >= -0x8000
-                 && (! dbl
-                     || ! ep->X_unsigned
-                     || sizeof (ep->X_add_number) > 4))))
+
+      /* Sign-extending 32-bit constants makes their handling easier.  */
+      if (! dbl && ! ((ep->X_add_number & ~((bfd_vma) 0x7fffffff))
+                     == ~((bfd_vma) 0x7fffffff)))
+       {
+         if (ep->X_add_number & ~((bfd_vma) 0xffffffff))
+           as_bad (_("too large constant specified"));
+
+       ep->X_add_number = (((ep->X_add_number & 0xffffffff) ^ 0x80000000)
+                           - 0x80000000);
+       }
+
+      if (IS_SEXT_16BIT_NUM (ep->X_add_number))
        {
          /* We can handle 16 bit signed values with an addiu to
             $zero.  No need to ever use daddiu here, since $zero and
             the result are always correct in 32 bit mode.  */
-         macro_build ((char *) NULL, counter, ep, "addiu", "t,r,j", reg, 0,
-                      (int) BFD_RELOC_LO16);
+         macro_build (NULL, counter, ep, "addiu", "t,r,j", reg, 0,
+                      BFD_RELOC_LO16);
          return;
        }
       else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
        {
          /* We can handle 16 bit unsigned values with an ori to
              $zero.  */
-         macro_build ((char *) NULL, counter, ep, "ori", "t,r,i", reg, 0,
-                      (int) BFD_RELOC_LO16);
+         macro_build (NULL, counter, ep, "ori", "t,r,i", reg, 0,
+                      BFD_RELOC_LO16);
          return;
        }
-      else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)
-               && (! dbl
-                   || ! ep->X_unsigned
-                   || sizeof (ep->X_add_number) > 4
-                   || (ep->X_add_number & 0x80000000) == 0))
-              || ((HAVE_32BIT_GPRS || ! dbl)
-                  && (ep->X_add_number &~ (offsetT) 0xffffffff) == 0)
-              || (HAVE_32BIT_GPRS
-                  && ! dbl
-                  && ((ep->X_add_number &~ (offsetT) 0xffffffff)
-                      == ~ (offsetT) 0xffffffff)))
+      else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
        {
          /* 32 bit values require an lui.  */
-         macro_build ((char *) NULL, counter, ep, "lui", "t,u", reg,
-                      (int) BFD_RELOC_HI16);
+         macro_build (NULL, counter, ep, "lui", "t,u", reg, BFD_RELOC_HI16);
          if ((ep->X_add_number & 0xffff) != 0)
-           macro_build ((char *) NULL, counter, ep, "ori", "t,r,i", reg, reg,
-                        (int) BFD_RELOC_LO16);
+           macro_build (NULL, counter, ep, "ori", "t,r,i", reg, reg,
+                        BFD_RELOC_LO16);
          return;
        }
     }
@@ -3530,8 +3475,8 @@ load_register (counter, reg, ep, dbl)
     {
       as_bad (_("Number (0x%lx) larger than 32 bits"),
              (unsigned long) ep->X_add_number);
-      macro_build ((char *) NULL, counter, ep, "addiu", "t,r,j", reg, 0,
-                  (int) BFD_RELOC_LO16);
+      macro_build (NULL, counter, ep, "addiu", "t,r,j", reg, 0,
+                  BFD_RELOC_LO16);
       return;
     }
 
@@ -3568,17 +3513,17 @@ load_register (counter, reg, ep, dbl)
        {
          if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
            {
-             macro_build ((char *) NULL, counter, &lo32, "addiu", "t,r,j",
-                          reg, 0, (int) BFD_RELOC_LO16);
+             macro_build (NULL, counter, &lo32, "addiu", "t,r,j", reg, 0,
+                          BFD_RELOC_LO16);
              return;
            }
          if (lo32.X_add_number & 0x80000000)
            {
-             macro_build ((char *) NULL, counter, &lo32, "lui", "t,u", reg,
-                          (int) BFD_RELOC_HI16);
+             macro_build (NULL, counter, &lo32, "lui", "t,u", reg,
+                          BFD_RELOC_HI16);
              if (lo32.X_add_number & 0xffff)
-               macro_build ((char *) NULL, counter, &lo32, "ori", "t,r,i",
-                            reg, reg, (int) BFD_RELOC_LO16);
+               macro_build (NULL, counter, &lo32, "ori", "t,r,i", reg, reg,
+                            BFD_RELOC_LO16);
              return;
            }
        }
@@ -3612,10 +3557,9 @@ load_register (counter, reg, ep, dbl)
                                    | (lo32.X_add_number >> shift));
              else
                tmp.X_add_number = hi32.X_add_number >> (shift - 32);
-             macro_build ((char *) NULL, counter, &tmp,
-                          "ori", "t,r,i", reg, 0,
-                          (int) BFD_RELOC_LO16);
-             macro_build ((char *) NULL, counter, (expressionS *) NULL,
+             macro_build (NULL, counter, &tmp, "ori", "t,r,i", reg, 0,
+                          BFD_RELOC_LO16);
+             macro_build (NULL, counter, NULL,
                           (shift >= 32) ? "dsll32" : "dsll",
                           "d,w,<", reg, reg,
                           (shift >= 32) ? shift - 32 : shift);
@@ -3665,17 +3609,17 @@ load_register (counter, reg, ep, dbl)
                  ones.  */
              tmp.X_op = O_constant;
              tmp.X_add_number = (offsetT) -1;
-             macro_build ((char *) NULL, counter, &tmp, "addiu", "t,r,j",
-                          reg, 0, (int) BFD_RELOC_LO16);
+             macro_build (NULL, counter, &tmp, "addiu", "t,r,j", reg, 0,
+                          BFD_RELOC_LO16);
              if (bit != 0)
                {
                  bit += shift;
-                 macro_build ((char *) NULL, counter, (expressionS *) NULL,
+                 macro_build (NULL, counter, NULL,
                               (bit >= 32) ? "dsll32" : "dsll",
                               "d,w,<", reg, reg,
                               (bit >= 32) ? bit - 32 : bit);
                }
-             macro_build ((char *) NULL, counter, (expressionS *) NULL,
+             macro_build (NULL, counter, NULL,
                           (shift >= 32) ? "dsrl32" : "dsrl",
                           "d,w,<", reg, reg,
                           (shift >= 32) ? shift - 32 : shift);
@@ -3694,8 +3638,7 @@ load_register (counter, reg, ep, dbl)
     {
       if (freg != 0)
        {
-         macro_build ((char *) NULL, counter, (expressionS *) NULL,
-                      "dsll32", "d,w,<", reg, freg, 0);
+         macro_build (NULL, counter, NULL, "dsll32", "d,w,<", reg, freg, 0);
          freg = reg;
        }
     }
@@ -3705,40 +3648,33 @@ load_register (counter, reg, ep, dbl)
 
       if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
        {
-         macro_build ((char *) NULL, counter, &lo32, "lui", "t,u", reg,
-                      (int) BFD_RELOC_HI16);
-         macro_build ((char *) NULL, counter, (expressionS *) NULL,
-                      "dsrl32", "d,w,<", reg, reg, 0);
+         macro_build (NULL, counter, &lo32, "lui", "t,u", reg,
+                      BFD_RELOC_HI16);
+         macro_build (NULL, counter, NULL, "dsrl32", "d,w,<", reg, reg, 0);
          return;
        }
 
       if (freg != 0)
        {
-         macro_build ((char *) NULL, counter, (expressionS *) NULL, "dsll",
-                      "d,w,<", reg, freg, 16);
+         macro_build (NULL, counter, NULL, "dsll", "d,w,<", reg, freg, 16);
          freg = reg;
        }
       mid16 = lo32;
       mid16.X_add_number >>= 16;
-      macro_build ((char *) NULL, counter, &mid16, "ori", "t,r,i", reg,
-                  freg, (int) BFD_RELOC_LO16);
-      macro_build ((char *) NULL, counter, (expressionS *) NULL, "dsll",
-                  "d,w,<", reg, reg, 16);
+      macro_build (NULL, counter, &mid16, "ori", "t,r,i", reg, freg,
+                  BFD_RELOC_LO16);
+      macro_build (NULL, counter, NULL, "dsll", "d,w,<", reg, reg, 16);
       freg = reg;
     }
   if ((lo32.X_add_number & 0xffff) != 0)
-    macro_build ((char *) NULL, counter, &lo32, "ori", "t,r,i", reg, freg,
-                (int) BFD_RELOC_LO16);
+    macro_build (NULL, counter, &lo32, "ori", "t,r,i", reg, freg,
+                BFD_RELOC_LO16);
 }
 
 /* Load an address into a register.  */
 
 static void
-load_address (counter, reg, ep, used_at)
-     int *counter;
-     int reg;
-     expressionS *ep;
-     int *used_at;
+load_address (int *counter, int reg, expressionS *ep, int *used_at)
 {
   char *p = NULL;
 
@@ -3772,7 +3708,7 @@ load_address (counter, reg, ep, used_at)
           dsll32       $reg,0
           daddu        $reg,$reg,$at
 
-        If $at is already in use, we use an path which is suboptimal
+        If $at is already in use, we use a path which is suboptimal
         on superscalar processors.
           lui          $reg,<sym>              (BFD_RELOC_MIPS_HIGHEST)
           daddiu       $reg,<sym>              (BFD_RELOC_MIPS_HIGHER)
@@ -3789,33 +3725,29 @@ load_address (counter, reg, ep, used_at)
          if (*used_at == 0 && ! mips_opts.noat)
            {
              macro_build (p, counter, ep, "lui", "t,u",
-                          reg, (int) BFD_RELOC_MIPS_HIGHEST);
+                          reg, BFD_RELOC_MIPS_HIGHEST);
              macro_build (p, counter, ep, "lui", "t,u",
-                          AT, (int) BFD_RELOC_HI16_S);
+                          AT, BFD_RELOC_HI16_S);
              macro_build (p, counter, ep, "daddiu", "t,r,j",
-                          reg, reg, (int) BFD_RELOC_MIPS_HIGHER);
+                          reg, reg, BFD_RELOC_MIPS_HIGHER);
              macro_build (p, counter, ep, "daddiu", "t,r,j",
-                          AT, AT, (int) BFD_RELOC_LO16);
-             macro_build (p, counter, (expressionS *) NULL, "dsll32",
-                          "d,w,<", reg, reg, 0);
-             macro_build (p, counter, (expressionS *) NULL, "daddu",
-                          "d,v,t", reg, reg, AT);
+                          AT, AT, BFD_RELOC_LO16);
+             macro_build (p, counter, NULL, "dsll32", "d,w,<", reg, reg, 0);
+             macro_build (p, counter, NULL, "daddu", "d,v,t", reg, reg, AT);
              *used_at = 1;
            }
          else
            {
              macro_build (p, counter, ep, "lui", "t,u",
-                          reg, (int) BFD_RELOC_MIPS_HIGHEST);
+                          reg, BFD_RELOC_MIPS_HIGHEST);
              macro_build (p, counter, ep, "daddiu", "t,r,j",
-                          reg, reg, (int) BFD_RELOC_MIPS_HIGHER);
-             macro_build (p, counter, (expressionS *) NULL, "dsll",
-                          "d,w,<", reg, reg, 16);
+                          reg, reg, BFD_RELOC_MIPS_HIGHER);
+             macro_build (p, counter, NULL, "dsll", "d,w,<", reg, reg, 16);
              macro_build (p, counter, ep, "daddiu", "t,r,j",
-                          reg, reg, (int) BFD_RELOC_HI16_S);
-             macro_build (p, counter, (expressionS *) NULL, "dsll",
-                          "d,w,<", reg, reg, 16);
+                          reg, reg, BFD_RELOC_HI16_S);
+             macro_build (p, counter, NULL, "dsll", "d,w,<", reg, reg, 16);
              macro_build (p, counter, ep, "daddiu", "t,r,j",
-                          reg, reg, (int) BFD_RELOC_LO16);
+                          reg, reg, BFD_RELOC_LO16);
            }
        }
       else
@@ -3824,9 +3756,8 @@ load_address (counter, reg, ep, used_at)
              && ! nopic_need_relax (ep->X_add_symbol, 1))
            {
              frag_grow (20);
-             macro_build ((char *) NULL, counter, ep,
-                          HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j",
-                          reg, mips_gp_register, (int) BFD_RELOC_GPREL16);
+             macro_build (NULL, counter, ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
+                          mips_gp_register, BFD_RELOC_GPREL16);
              p = frag_var (rs_machine_dependent, 8, 0,
                            RELAX_ENCODE (4, 8, 0, 4, 0,
                                          mips_opts.warn_about_macros),
@@ -3835,9 +3766,8 @@ load_address (counter, reg, ep, used_at)
          macro_build_lui (p, counter, ep, reg);
          if (p != NULL)
            p += 4;
-         macro_build (p, counter, ep,
-                      HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                      "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
+         macro_build (p, counter, ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
+                      BFD_RELOC_LO16);
        }
     }
   else if (mips_pic == SVR4_PIC && ! mips_big_got)
@@ -3850,40 +3780,69 @@ load_address (counter, reg, ep, used_at)
           lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT16)
           nop
           addiu        $reg,$reg,<sym>         (BFD_RELOC_LO16)
+        If there is a constant, it must be added in after.
+
         If we have NewABI, we want
-          lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT_DISP)
-        If there is a constant, it must be added in after.  */
-      ex.X_add_number = ep->X_add_number;
-      ep->X_add_number = 0;
-      frag_grow (20);
+          lw           $reg,<sym+cst>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
+         unless we're referencing a global symbol with a non-zero
+         offset, in which case cst must be added separately.  */
       if (HAVE_NEWABI)
        {
-         macro_build ((char *) NULL, counter, ep,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", reg,
-                      (int) BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
+         frag_grow (12);
+
+         if (ep->X_add_number)
+           {
+             frag_now->tc_frag_data.tc_fr_offset =
+               ex.X_add_number = ep->X_add_number;
+             ep->X_add_number = 0;
+             macro_build (NULL, counter, ep, ADDRESS_LOAD_INSN, "t,o(b)",
+                          reg, BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
+             if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
+               as_bad (_("PIC code offset overflow (max 16 signed bits)"));
+             ex.X_op = O_constant;
+             macro_build (NULL, counter, &ex, ADDRESS_ADDI_INSN, "t,r,j",
+                          reg, reg, BFD_RELOC_LO16);
+             p = frag_var (rs_machine_dependent, 8, 0,
+                           RELAX_ENCODE (8, 4, 0, 0, 0,
+                                         mips_opts.warn_about_macros),
+                           ep->X_add_symbol, 0, NULL);
+             ep->X_add_number = ex.X_add_number;
+           }
+
+         macro_build (p, counter, ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
+                      BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
+
+         if (! p)
+           {
+             /* To avoid confusion in tc_gen_reloc, we must ensure
+                that this does not become a variant frag.  */
+             frag_wane (frag_now);
+             frag_new (0);
+           }
        }
       else
        {
-         macro_build ((char *) NULL, counter, ep,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)",
-                      reg, (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
-         macro_build ((char *) NULL, counter, (expressionS *) NULL, "nop", "");
+         ex.X_add_number = ep->X_add_number;
+         ep->X_add_number = 0;
+         frag_grow (20);
+         macro_build (NULL, counter, ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
+                      BFD_RELOC_MIPS_GOT16,
+                      mips_gp_register);
+         macro_build (NULL, counter, NULL, "nop", "");
          p = frag_var (rs_machine_dependent, 4, 0,
                        RELAX_ENCODE (0, 4, -8, 0, 0, mips_opts.warn_about_macros),
-                       ep->X_add_symbol, (offsetT) 0, (char *) NULL);
-         macro_build (p, counter, ep,
-                      HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                      "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
-       }
+                       ep->X_add_symbol, 0, NULL);
+         macro_build (p, counter, ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
+                      BFD_RELOC_LO16);
 
-      if (ex.X_add_number != 0)
-       {
-         if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
-           as_bad (_("PIC code offset overflow (max 16 signed bits)"));
-         ex.X_op = O_constant;
-         macro_build ((char *) NULL, counter, &ex,
-                      HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                      "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
+         if (ex.X_add_number != 0)
+           {
+             if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
+               as_bad (_("PIC code offset overflow (max 16 signed bits)"));
+             ex.X_op = O_constant;
+             macro_build (NULL, counter, &ex, ADDRESS_ADDI_INSN, "t,r,j",
+                          reg, reg, BFD_RELOC_LO16);
+           }
        }
     }
   else if (mips_pic == SVR4_PIC)
@@ -3896,40 +3855,64 @@ load_address (counter, reg, ep, used_at)
           lui          $reg,<sym>              (BFD_RELOC_MIPS_GOT_HI16)
           addu         $reg,$reg,$gp
           lw           $reg,<sym>($reg)        (BFD_RELOC_MIPS_GOT_LO16)
-        Otherwise, for a reference to a local symbol, we want
+
+        Otherwise, for a reference to a local symbol in old ABI, we want
           lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT16)
           nop
           addiu        $reg,$reg,<sym>         (BFD_RELOC_LO16)
-        If we have NewABI, we want
+        If there is a constant, it must be added in after.
+
+        In the NewABI, for local symbols, with or without offsets, we want:
           lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT_PAGE)
           addiu        $reg,$reg,<sym>         (BFD_RELOC_MIPS_GOT_OFST)
-        If there is a constant, it must be added in after.  */
-      ex.X_add_number = ep->X_add_number;
-      ep->X_add_number = 0;
+      */
       if (HAVE_NEWABI)
        {
-         macro_build ((char *) NULL, counter, ep,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", reg,
-                      (int) BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
-         macro_build (p, counter, ep,
-                      HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j",
-                      reg, reg, (int) BFD_RELOC_MIPS_GOT_OFST);
+         frag_grow (24);
+
+         frag_now->tc_frag_data.tc_fr_offset =
+           ex.X_add_number = ep->X_add_number;
+         ep->X_add_number = 0;
+         macro_build (NULL, counter, ep, "lui", "t,u", reg,
+                      BFD_RELOC_MIPS_GOT_HI16);
+         macro_build (NULL, counter, NULL, ADDRESS_ADD_INSN, "d,v,t", reg,
+                      reg, mips_gp_register);
+         macro_build (NULL, counter, ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
+                      BFD_RELOC_MIPS_GOT_LO16, reg);
+         if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
+           as_bad (_("PIC code offset overflow (max 16 signed bits)"));
+         else if (ex.X_add_number)
+           {
+             ex.X_op = O_constant;
+             macro_build (NULL, counter, &ex, ADDRESS_ADDI_INSN, "t,r,j",
+                          reg, reg, BFD_RELOC_LO16);
+           }
+
+         ep->X_add_number = ex.X_add_number;
+         p = frag_var (rs_machine_dependent, 8, 0,
+                       RELAX_ENCODE (ex.X_add_number ? 16 : 12, 8, 0, 4, 0,
+                                     mips_opts.warn_about_macros),
+                       ep->X_add_symbol, 0, NULL);
+         macro_build (p, counter, ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
+                      BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
+         macro_build (p + 4, counter, ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
+                      reg, BFD_RELOC_MIPS_GOT_OFST);
        }
       else
        {
+         ex.X_add_number = ep->X_add_number;
+         ep->X_add_number = 0;
          if (reg_needs_delay (mips_gp_register))
            off = 4;
          else
            off = 0;
          frag_grow (32);
-         macro_build ((char *) NULL, counter, ep, "lui", "t,u", reg,
-                      (int) BFD_RELOC_MIPS_GOT_HI16);
-         macro_build ((char *) NULL, counter, (expressionS *) NULL,
-                      HAVE_32BIT_ADDRESSES ? "addu" : "daddu", "d,v,t", reg,
+         macro_build (NULL, counter, ep, "lui", "t,u", reg,
+                      BFD_RELOC_MIPS_GOT_HI16);
+         macro_build (NULL, counter, NULL, ADDRESS_ADD_INSN, "d,v,t", reg,
                       reg, mips_gp_register);
-         macro_build ((char *) NULL, counter, ep,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                      "t,o(b)", reg, (int) BFD_RELOC_MIPS_GOT_LO16, reg);
+         macro_build (NULL, counter, ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
+                      BFD_RELOC_MIPS_GOT_LO16, reg);
          p = frag_var (rs_machine_dependent, 12 + off, 0,
                        RELAX_ENCODE (12, 12 + off, off, 8 + off, 0,
                                      mips_opts.warn_about_macros),
@@ -3940,28 +3923,25 @@ load_address (counter, reg, ep, used_at)
                 check is required because the lui which starts the main
                 instruction stream does not refer to $gp, and so will not
                 insert the nop which may be required.  */
-             macro_build (p, counter, (expressionS *) NULL, "nop", "");
+             macro_build (p, counter, NULL, "nop", "");
                p += 4;
            }
-         macro_build (p, counter, ep,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", reg,
-                      (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
+         macro_build (p, counter, ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
+                      BFD_RELOC_MIPS_GOT16, mips_gp_register);
          p += 4;
-         macro_build (p, counter, (expressionS *) NULL, "nop", "");
+         macro_build (p, counter, NULL, "nop", "");
          p += 4;
-         macro_build (p, counter, ep,
-                      HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                      "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
-       }
+         macro_build (p, counter, ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
+                      BFD_RELOC_LO16);
 
-      if (ex.X_add_number != 0)
-       {
-         if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
-           as_bad (_("PIC code offset overflow (max 16 signed bits)"));
-         ex.X_op = O_constant;
-         macro_build ((char *) NULL, counter, &ex,
-                      HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                      "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
+         if (ex.X_add_number != 0)
+           {
+             if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
+               as_bad (_("PIC code offset overflow (max 16 signed bits)"));
+             ex.X_op = O_constant;
+             macro_build (NULL, counter, &ex, ADDRESS_ADDI_INSN, "t,r,j",
+                          reg, reg, BFD_RELOC_LO16);
+           }
        }
     }
   else if (mips_pic == EMBEDDED_PIC)
@@ -3969,9 +3949,8 @@ load_address (counter, reg, ep, used_at)
       /* We always do
           addiu        $reg,$gp,<sym>          (BFD_RELOC_GPREL16)
        */
-      macro_build ((char *) NULL, counter, ep,
-                  HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                  "t,r,j", reg, mips_gp_register, (int) BFD_RELOC_GPREL16);
+      macro_build (NULL, counter, ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
+                  mips_gp_register, BFD_RELOC_GPREL16);
     }
   else
     abort ();
@@ -3980,13 +3959,9 @@ load_address (counter, reg, ep, used_at)
 /* Move the contents of register SOURCE into register DEST.  */
 
 static void
-move_register (counter, dest, source)
-     int *counter;
-     int dest;
-     int source;
+move_register (int *counter, int dest, int source)
 {
-  macro_build ((char *) NULL, counter, (expressionS *) NULL,
-              HAVE_32BIT_GPRS ? "addu" : "daddu",
+  macro_build (NULL, counter, NULL, HAVE_32BIT_GPRS ? "addu" : "daddu",
               "d,v,t", dest, source, 0);
 }
 
@@ -4009,8 +3984,7 @@ move_register (counter, dest, source)
  * we're missing.
  */
 static void
-macro (ip)
-     struct mips_cl_insn *ip;
+macro (struct mips_cl_insn *ip)
 {
   register int treg, sreg, dreg, breg;
   int tempreg;
@@ -4043,6 +4017,30 @@ macro (ip)
   expr1.X_add_symbol = NULL;
   expr1.X_add_number = 1;
 
+  /* Umatched fixups should not be put in the same frag as a relaxable
+     macro.  For example, suppose we have:
+
+       lui $4,%hi(l1)          # 1
+       la $5,l2                # 2
+       addiu $4,$4,%lo(l1)     # 3
+
+     If instructions 1 and 2 were put in the same frag, md_frob_file would
+     move the fixup for #1 after the fixups for the "unrelaxed" version of
+     #2.  This would confuse tc_gen_reloc, which expects the relocations
+     for #2 to be the last for that frag.
+
+     Also, if tc_gen_reloc sees certain relocations in a variant frag,
+     it assumes that they belong to a relaxable macro.  We mustn't put
+     other uses of such relocations into a variant frag.
+
+     To avoid both problems, finish the current frag it contains a
+     %reloc() operator.  The macro then goes into a new frag.  */
+  if (prev_reloc_op_frag == frag_now)
+    {
+      frag_wane (frag_now);
+      frag_new (0);
+    }
+
   switch (mask)
     {
     case M_DABS:
@@ -4053,19 +4051,18 @@ macro (ip)
         sub v0,$zero,$a0
         */
 
-      mips_emit_delays (true);
+      mips_emit_delays (TRUE);
       ++mips_opts.noreorder;
       mips_any_noreorder = 1;
 
       expr1.X_add_number = 8;
-      macro_build ((char *) NULL, &icnt, &expr1, "bgez", "s,p", sreg);
+      macro_build (NULL, &icnt, &expr1, "bgez", "s,p", sreg);
       if (dreg == sreg)
-       macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
-                    0);
+       macro_build (NULL, &icnt, NULL, "nop", "", 0);
       else
        move_register (&icnt, dreg, sreg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                  dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
+      macro_build (NULL, &icnt, NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0,
+                  sreg);
 
       --mips_opts.noreorder;
       return;
@@ -4092,13 +4089,12 @@ macro (ip)
          && imm_expr.X_add_number >= -0x8000
          && imm_expr.X_add_number < 0x8000)
        {
-         macro_build ((char *) NULL, &icnt, &imm_expr, s, "t,r,j", treg, sreg,
-                      (int) BFD_RELOC_LO16);
+         macro_build (NULL, &icnt, &imm_expr, s, "t,r,j", treg, sreg,
+                      BFD_RELOC_LO16);
          return;
        }
       load_register (&icnt, AT, &imm_expr, dbl);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d,v,t",
-                  treg, sreg, AT);
+      macro_build (NULL, &icnt, NULL, s2, "d,v,t", treg, sreg, AT);
       break;
 
     case M_AND_I:
@@ -4122,21 +4118,19 @@ macro (ip)
          && imm_expr.X_add_number < 0x10000)
        {
          if (mask != M_NOR_I)
-           macro_build ((char *) NULL, &icnt, &imm_expr, s, "t,r,i", treg,
-                        sreg, (int) BFD_RELOC_LO16);
+           macro_build (NULL, &icnt, &imm_expr, s, "t,r,i", treg, sreg,
+                        BFD_RELOC_LO16);
          else
            {
-             macro_build ((char *) NULL, &icnt, &imm_expr, "ori", "t,r,i",
-                          treg, sreg, (int) BFD_RELOC_LO16);
-             macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nor",
-                          "d,v,t", treg, treg, 0);
+             macro_build (NULL, &icnt, &imm_expr, "ori", "t,r,i", treg, sreg,
+                          BFD_RELOC_LO16);
+             macro_build (NULL, &icnt, NULL, "nor", "d,v,t", treg, treg, 0);
            }
          return;
        }
 
       load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d,v,t",
-                  treg, sreg, AT);
+      macro_build (NULL, &icnt, NULL, s2, "d,v,t", treg, sreg, AT);
       break;
 
     case M_BEQ_I:
@@ -4155,12 +4149,11 @@ macro (ip)
     beq_i:
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr, s, "s,t,p", sreg,
-                      0);
+         macro_build (NULL, &icnt, &offset_expr, s, "s,t,p", sreg, 0);
          return;
        }
       load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
-      macro_build ((char *) NULL, &icnt, &offset_expr, s, "s,t,p", sreg, AT);
+      macro_build (NULL, &icnt, &offset_expr, s, "s,t,p", sreg, AT);
       break;
 
     case M_BGEL:
@@ -4168,20 +4161,19 @@ macro (ip)
     case M_BGE:
       if (treg == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "bgezl" : "bgez", "s,p", sreg);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "bgezl" : "bgez",
+                      "s,p", sreg);
          return;
        }
       if (sreg == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "blezl" : "blez", "s,p", treg);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "blezl" : "blez",
+                      "s,p", treg);
          return;
        }
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
-                  AT, sreg, treg);
-      macro_build ((char *) NULL, &icnt, &offset_expr,
-                  likely ? "beql" : "beq", "s,t,p", AT, 0);
+      macro_build (NULL, &icnt, NULL, "slt", "d,v,t", AT, sreg, treg);
+      macro_build (NULL, &icnt, &offset_expr, likely ? "beql" : "beq",
+                  "s,t,p", AT, 0);
       break;
 
     case M_BGTL_I:
@@ -4207,16 +4199,14 @@ macro (ip)
              if (warn_nops)
                as_warn (_("Branch %s is always false (nop)"),
                         ip->insn_mo->name);
-             macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop",
-                          "", 0);
+             macro_build (NULL, &icnt, NULL, "nop", "", 0);
            }
          else
            {
              if (warn_nops)
                as_warn (_("Branch likely %s is always false"),
                         ip->insn_mo->name);
-             macro_build ((char *) NULL, &icnt, &offset_expr, "bnel",
-                          "s,t,p", 0, 0);
+             macro_build (NULL, &icnt, &offset_expr, "bnel", "s,t,p", 0, 0);
            }
          return;
        }
@@ -4230,14 +4220,14 @@ macro (ip)
        likely = 1;
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "bgezl" : "bgez", "s,p", sreg);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "bgezl" : "bgez",
+                      "s,p", sreg);
          return;
        }
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "bgtzl" : "bgtz", "s,p", sreg);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "bgtzl" : "bgtz",
+                      "s,p", sreg);
          return;
        }
       maxnum = 0x7fffffff;
@@ -4256,12 +4246,12 @@ macro (ip)
        do_true:
          /* result is always true */
          as_warn (_("Branch %s is always true"), ip->insn_mo->name);
-         macro_build ((char *) NULL, &icnt, &offset_expr, "b", "p");
+         macro_build (NULL, &icnt, &offset_expr, "b", "p");
          return;
        }
       set_at (&icnt, sreg, 0);
-      macro_build ((char *) NULL, &icnt, &offset_expr,
-                  likely ? "beql" : "beq", "s,t,p", AT, 0);
+      macro_build (NULL, &icnt, &offset_expr, likely ? "beql" : "beq",
+                  "s,t,p", AT, 0);
       break;
 
     case M_BGEUL:
@@ -4271,14 +4261,13 @@ macro (ip)
        goto do_true;
       if (sreg == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "beql" : "beq", "s,t,p", 0, treg);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "beql" : "beq",
+                      "s,t,p", 0, treg);
          return;
        }
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
-                  "d,v,t", AT, sreg, treg);
-      macro_build ((char *) NULL, &icnt, &offset_expr,
-                  likely ? "beql" : "beq", "s,t,p", AT, 0);
+      macro_build (NULL, &icnt, NULL, "sltu", "d,v,t", AT, sreg, treg);
+      macro_build (NULL, &icnt, &offset_expr, likely ? "beql" : "beq",
+                  "s,t,p", AT, 0);
       break;
 
     case M_BGTUL_I:
@@ -4301,13 +4290,13 @@ macro (ip)
        goto do_true;
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "bnel" : "bne", "s,t,p", sreg, 0);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "bnel" : "bne",
+                      "s,t,p", sreg, 0);
          return;
        }
       set_at (&icnt, sreg, 1);
-      macro_build ((char *) NULL, &icnt, &offset_expr,
-                  likely ? "beql" : "beq", "s,t,p", AT, 0);
+      macro_build (NULL, &icnt, &offset_expr, likely ? "beql" : "beq",
+                  "s,t,p", AT, 0);
       break;
 
     case M_BGTL:
@@ -4315,20 +4304,19 @@ macro (ip)
     case M_BGT:
       if (treg == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "bgtzl" : "bgtz", "s,p", sreg);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "bgtzl" : "bgtz",
+                      "s,p", sreg);
          return;
        }
       if (sreg == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "bltzl" : "bltz", "s,p", treg);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "bltzl" : "bltz",
+                      "s,p", treg);
          return;
        }
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
-                  AT, treg, sreg);
-      macro_build ((char *) NULL, &icnt, &offset_expr,
-                  likely ? "bnel" : "bne", "s,t,p", AT, 0);
+      macro_build (NULL, &icnt, NULL, "slt", "d,v,t", AT, treg, sreg);
+      macro_build (NULL, &icnt, &offset_expr, likely ? "bnel" : "bne",
+                  "s,t,p", AT, 0);
       break;
 
     case M_BGTUL:
@@ -4336,16 +4324,15 @@ macro (ip)
     case M_BGTU:
       if (treg == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "bnel" : "bne", "s,t,p", sreg, 0);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "bnel" : "bne",
+                      "s,t,p", sreg, 0);
          return;
        }
       if (sreg == 0)
        goto do_false;
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
-                  "d,v,t", AT, treg, sreg);
-      macro_build ((char *) NULL, &icnt, &offset_expr,
-                  likely ? "bnel" : "bne", "s,t,p", AT, 0);
+      macro_build (NULL, &icnt, NULL, "sltu", "d,v,t", AT, treg, sreg);
+      macro_build (NULL, &icnt, &offset_expr, likely ? "bnel" : "bne",
+                  "s,t,p", AT, 0);
       break;
 
     case M_BLEL:
@@ -4353,20 +4340,19 @@ macro (ip)
     case M_BLE:
       if (treg == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "blezl" : "blez", "s,p", sreg);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "blezl" : "blez",
+                      "s,p", sreg);
          return;
        }
       if (sreg == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "bgezl" : "bgez", "s,p", treg);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "bgezl" : "bgez",
+                      "s,p", treg);
          return;
        }
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
-                  AT, treg, sreg);
-      macro_build ((char *) NULL, &icnt, &offset_expr,
-                  likely ? "beql" : "beq", "s,t,p", AT, 0);
+      macro_build (NULL, &icnt, NULL, "slt", "d,v,t", AT, treg, sreg);
+      macro_build (NULL, &icnt, &offset_expr, likely ? "beql" : "beq",
+                  "s,t,p", AT, 0);
       break;
 
     case M_BLEL_I:
@@ -4394,19 +4380,19 @@ macro (ip)
        likely = 1;
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "bltzl" : "bltz", "s,p", sreg);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "bltzl" : "bltz",
+                      "s,p", sreg);
          return;
        }
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "blezl" : "blez", "s,p", sreg);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "blezl" : "blez",
+                      "s,p", sreg);
          return;
        }
       set_at (&icnt, sreg, 0);
-      macro_build ((char *) NULL, &icnt, &offset_expr,
-                  likely ? "bnel" : "bne", "s,t,p", AT, 0);
+      macro_build (NULL, &icnt, &offset_expr, likely ? "bnel" : "bne",
+                  "s,t,p", AT, 0);
       break;
 
     case M_BLEUL:
@@ -4414,16 +4400,15 @@ macro (ip)
     case M_BLEU:
       if (treg == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "beql" : "beq", "s,t,p", sreg, 0);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "beql" : "beq",
+                      "s,t,p", sreg, 0);
          return;
        }
       if (sreg == 0)
        goto do_true;
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
-                  "d,v,t", AT, treg, sreg);
-      macro_build ((char *) NULL, &icnt, &offset_expr,
-                  likely ? "beql" : "beq", "s,t,p", AT, 0);
+      macro_build (NULL, &icnt, NULL, "sltu", "d,v,t", AT, treg, sreg);
+      macro_build (NULL, &icnt, &offset_expr, likely ? "beql" : "beq",
+                  "s,t,p", AT, 0);
       break;
 
     case M_BLEUL_I:
@@ -4446,14 +4431,13 @@ macro (ip)
        goto do_false;
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "beql" : "beq",
+         macro_build (NULL, &icnt, &offset_expr, likely ? "beql" : "beq",
                       "s,t,p", sreg, 0);
          return;
        }
       set_at (&icnt, sreg, 1);
-      macro_build ((char *) NULL, &icnt, &offset_expr,
-                  likely ? "bnel" : "bne", "s,t,p", AT, 0);
+      macro_build (NULL, &icnt, &offset_expr, likely ? "bnel" : "bne",
+                  "s,t,p", AT, 0);
       break;
 
     case M_BLTL:
@@ -4461,20 +4445,19 @@ macro (ip)
     case M_BLT:
       if (treg == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "bltzl" : "bltz", "s,p", sreg);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "bltzl" : "bltz",
+                      "s,p", sreg);
          return;
        }
       if (sreg == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "bgtzl" : "bgtz", "s,p", treg);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "bgtzl" : "bgtz",
+                      "s,p", treg);
          return;
        }
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
-                  AT, sreg, treg);
-      macro_build ((char *) NULL, &icnt, &offset_expr,
-                  likely ? "bnel" : "bne", "s,t,p", AT, 0);
+      macro_build (NULL, &icnt, NULL, "slt", "d,v,t", AT, sreg, treg);
+      macro_build (NULL, &icnt, &offset_expr, likely ? "bnel" : "bne",
+                  "s,t,p", AT, 0);
       break;
 
     case M_BLTUL:
@@ -4484,17 +4467,113 @@ macro (ip)
        goto do_false;
       if (sreg == 0)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      likely ? "bnel" : "bne", "s,t,p", 0, treg);
+         macro_build (NULL, &icnt, &offset_expr, likely ? "bnel" : "bne",
+                      "s,t,p", 0, treg);
          return;
        }
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
-                  "d,v,t", AT, sreg,
-                  treg);
-      macro_build ((char *) NULL, &icnt, &offset_expr,
-                  likely ? "bnel" : "bne", "s,t,p", AT, 0);
+      macro_build (NULL, &icnt, NULL, "sltu", "d,v,t", AT, sreg, treg);
+      macro_build (NULL, &icnt, &offset_expr, likely ? "bnel" : "bne",
+                  "s,t,p", AT, 0);
       break;
 
+    case M_DEXT:
+      {
+       unsigned long pos;
+       unsigned long size;
+
+        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;
+         }
+
+       if (pos > 63)
+         {
+           as_bad (_("Improper position (%lu)"), pos);
+           pos = 1;
+         }
+        if (size == 0 || size > 64
+           || (pos + size - 1) > 63)
+         {
+           as_bad (_("Improper extract size (%lu, position %lu)"),
+                   size, pos);
+           size = 1;
+         }
+
+       if (size <= 32 && pos < 32)
+         {
+           s = "dext";
+           fmt = "t,r,+A,+C";
+         }
+       else if (size <= 32)
+         {
+           s = "dextu";
+           fmt = "t,r,+E,+H";
+         }
+       else
+         {
+           s = "dextm";
+           fmt = "t,r,+A,+G";
+         }
+       macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s,
+                    fmt, treg, sreg, pos, size - 1);
+      }
+      return;
+
+    case M_DINS:
+      {
+       unsigned long pos;
+       unsigned long size;
+
+        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;
+         }
+
+       if (pos > 63)
+         {
+           as_bad (_("Improper position (%lu)"), pos);
+           pos = 1;
+         }
+        if (size == 0 || size > 64
+           || (pos + size - 1) > 63)
+         {
+           as_bad (_("Improper insert size (%lu, position %lu)"),
+                   size, pos);
+           size = 1;
+         }
+
+       if (pos < 32 && (pos + size - 1) < 32)
+         {
+           s = "dins";
+           fmt = "t,r,+A,+B";
+         }
+       else if (pos >= 32)
+         {
+           s = "dinsu";
+           fmt = "t,r,+E,+F";
+         }
+       else
+         {
+           s = "dinsm";
+           fmt = "t,r,+A,+F";
+         }
+       macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s,
+                    fmt, treg, sreg, pos, pos + size - 1);
+      }
+      return;
+
     case M_DDIV_3:
       dbl = 1;
     case M_DIV_3:
@@ -4509,57 +4588,50 @@ macro (ip)
        {
          as_warn (_("Divide by zero."));
          if (mips_trap)
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
-                        "s,t,q", 0, 0, 7);
+           macro_build (NULL, &icnt, NULL, "teq", "s,t,q", 0, 0, 7);
          else
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
-                        "c", 7);
+           macro_build (NULL, &icnt, NULL, "break", "c", 7);
          return;
        }
 
-      mips_emit_delays (true);
+      mips_emit_delays (TRUE);
       ++mips_opts.noreorder;
       mips_any_noreorder = 1;
       if (mips_trap)
        {
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
-                      "s,t,q", treg, 0, 7);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                      dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
+         macro_build (NULL, &icnt, NULL, "teq", "s,t,q", treg, 0, 7);
+         macro_build (NULL, &icnt, NULL, dbl ? "ddiv" : "div", "z,s,t",
+                      sreg, treg);
        }
       else
        {
          expr1.X_add_number = 8;
-         macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, 0);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                      dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
-                      "c", 7);
+         macro_build (NULL, &icnt, &expr1, "bne", "s,t,p", treg, 0);
+         macro_build (NULL, &icnt, NULL, dbl ? "ddiv" : "div", "z,s,t",
+                      sreg, treg);
+         macro_build (NULL, &icnt,NULL, "break", "c", 7);
        }
       expr1.X_add_number = -1;
-      macro_build ((char *) NULL, &icnt, &expr1,
-                  dbl ? "daddiu" : "addiu",
-                  "t,r,j", AT, 0, (int) BFD_RELOC_LO16);
+      macro_build (NULL, &icnt, &expr1, dbl ? "daddiu" : "addiu", "t,r,j",
+                  AT, 0, BFD_RELOC_LO16);
       expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
-      macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, AT);
+      macro_build (NULL, &icnt, &expr1, "bne", "s,t,p", treg, AT);
       if (dbl)
        {
          expr1.X_add_number = 1;
-         macro_build ((char *) NULL, &icnt, &expr1, "daddiu", "t,r,j", AT, 0,
-                      (int) BFD_RELOC_LO16);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsll32",
-                      "d,w,<", AT, AT, 31);
+         macro_build (NULL, &icnt, &expr1, "daddiu", "t,r,j", AT, 0,
+                      BFD_RELOC_LO16);
+         macro_build (NULL, &icnt, NULL, "dsll32", "d,w,<", AT, AT, 31);
        }
       else
        {
          expr1.X_add_number = 0x80000000;
-         macro_build ((char *) NULL, &icnt, &expr1, "lui", "t,u", AT,
-                      (int) BFD_RELOC_HI16);
+         macro_build (NULL, &icnt, &expr1, "lui", "t,u", AT,
+                      BFD_RELOC_HI16);
        }
       if (mips_trap)
        {
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
-                      "s,t,q", sreg, AT, 6);
+         macro_build (NULL, &icnt, NULL, "teq", "s,t,q", sreg, AT, 6);
          /* We want to close the noreorder block as soon as possible, so
             that later insns are available for delay slot filling.  */
          --mips_opts.noreorder;
@@ -4567,18 +4639,16 @@ macro (ip)
       else
        {
          expr1.X_add_number = 8;
-         macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", sreg, AT);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
-                      0);
+         macro_build (NULL, &icnt, &expr1, "bne", "s,t,p", sreg, AT);
+         macro_build (NULL, &icnt, NULL, "nop", "", 0);
 
          /* We want to close the noreorder block as soon as possible, so
             that later insns are available for delay slot filling.  */
          --mips_opts.noreorder;
 
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
-                      "c", 6);
+         macro_build (NULL, &icnt, NULL, "break", "c", 6);
        }
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d", dreg);
+      macro_build (NULL, &icnt, NULL, s, "d", dreg);
       break;
 
     case M_DIV_3I:
@@ -4621,11 +4691,9 @@ macro (ip)
        {
          as_warn (_("Divide by zero."));
          if (mips_trap)
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
-                        "s,t,q", 0, 0, 7);
+           macro_build (NULL, &icnt, NULL, "teq", "s,t,q", 0, 0, 7);
          else
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
-                        "c", 7);
+           macro_build (NULL, &icnt, NULL, "break", "c", 7);
          return;
        }
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
@@ -4642,8 +4710,8 @@ macro (ip)
        {
          if (strcmp (s2, "mflo") == 0)
            {
-             macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                          dbl ? "dneg" : "neg", "d,w", dreg, sreg);
+             macro_build (NULL, &icnt, NULL, dbl ? "dneg" : "neg", "d,w",
+                          dreg, sreg);
            }
          else
            move_register (&icnt, dreg, 0);
@@ -4651,9 +4719,8 @@ macro (ip)
        }
 
       load_register (&icnt, AT, &imm_expr, dbl);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "z,s,t",
-                  sreg, AT);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d", dreg);
+      macro_build (NULL, &icnt, NULL, s, "z,s,t", sreg, AT);
+      macro_build (NULL, &icnt, NULL, s2, "d", dreg);
       break;
 
     case M_DIVU_3:
@@ -4672,15 +4739,13 @@ macro (ip)
       s = "ddivu";
       s2 = "mfhi";
     do_divu3:
-      mips_emit_delays (true);
+      mips_emit_delays (TRUE);
       ++mips_opts.noreorder;
       mips_any_noreorder = 1;
       if (mips_trap)
        {
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
-                      "s,t,q", treg, 0, 7);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "z,s,t",
-                      sreg, treg);
+         macro_build (NULL, &icnt, NULL, "teq", "s,t,q", treg, 0, 7);
+         macro_build (NULL, &icnt, 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.  */
          --mips_opts.noreorder;
@@ -4688,17 +4753,15 @@ macro (ip)
       else
        {
          expr1.X_add_number = 8;
-         macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, 0);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "z,s,t",
-                      sreg, treg);
+         macro_build (NULL, &icnt, &expr1, "bne", "s,t,p", treg, 0);
+         macro_build (NULL, &icnt, 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.  */
          --mips_opts.noreorder;
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
-                      "c", 7);
+         macro_build (NULL, &icnt, NULL, "break", "c", 7);
        }
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d", dreg);
+      macro_build (NULL, &icnt, NULL, s2, "d", dreg);
       return;
 
     case M_DLA_AB:
@@ -4717,9 +4780,9 @@ macro (ip)
          && offset_expr.X_add_number >= -0x8000
          && offset_expr.X_add_number < 0x8000)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
+         macro_build (NULL, &icnt, &offset_expr,
                       (dbl || HAVE_64BIT_ADDRESSES) ? "daddiu" : "addiu",
-                      "t,r,j", treg, sreg, (int) BFD_RELOC_LO16);
+                      "t,r,j", treg, sreg, BFD_RELOC_LO16);
          return;
        }
 
@@ -4759,20 +4822,20 @@ macro (ip)
            {
              tempreg = treg;
              used_at = 0;
-             macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
-                          tempreg, (int) BFD_RELOC_PCREL_HI16_S);
+             macro_build (NULL, &icnt, &offset_expr, "lui", "t,u", tempreg,
+                          BFD_RELOC_PCREL_HI16_S);
            }
          else
            {
-             macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
-                          tempreg, (int) BFD_RELOC_PCREL_HI16_S);
-             macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
+             macro_build (NULL, &icnt, &offset_expr, "lui", "t,u", tempreg,
+                          BFD_RELOC_PCREL_HI16_S);
+             macro_build (NULL, &icnt, NULL,
                           (dbl || HAVE_64BIT_ADDRESSES) ? "daddu" : "addu",
                           "d,v,t", tempreg, tempreg, breg);
            }
-         macro_build ((char *) NULL, &icnt, &offset_expr,
+         macro_build (NULL, &icnt, &offset_expr,
                       (dbl || HAVE_64BIT_ADDRESSES) ? "daddiu" : "addiu",
-                      "t,r,j", treg, tempreg, (int) BFD_RELOC_PCREL_LO16);
+                      "t,r,j", treg, tempreg, BFD_RELOC_PCREL_LO16);
          if (! used_at)
            return;
          break;
@@ -4808,7 +4871,7 @@ macro (ip)
              dsll32    $tempreg,0
              daddu     $tempreg,$tempreg,$at
 
-           If $at is already in use, we use an path which is suboptimal
+           If $at is already in use, we use a path which is suboptimal
            on superscalar processors.
              lui       $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
              daddiu    $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
@@ -4826,33 +4889,33 @@ macro (ip)
              if (used_at == 0 && ! mips_opts.noat)
                {
                  macro_build (p, &icnt, &offset_expr, "lui", "t,u",
-                              tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
+                              tempreg, BFD_RELOC_MIPS_HIGHEST);
                  macro_build (p, &icnt, &offset_expr, "lui", "t,u",
-                              AT, (int) BFD_RELOC_HI16_S);
+                              AT, BFD_RELOC_HI16_S);
                  macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
-                              tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
+                              tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
                  macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
-                              AT, AT, (int) BFD_RELOC_LO16);
-                 macro_build (p, &icnt, (expressionS *) NULL, "dsll32",
-                              "d,w,<", tempreg, tempreg, 0);
-                 macro_build (p, &icnt, (expressionS *) NULL, "daddu",
-                              "d,v,t", tempreg, tempreg, AT);
+                              AT, AT, BFD_RELOC_LO16);
+                 macro_build (p, &icnt, NULL, "dsll32", "d,w,<",
+                              tempreg, tempreg, 0);
+                 macro_build (p, &icnt, NULL, "daddu", "d,v,t",
+                              tempreg, tempreg, AT);
                  used_at = 1;
                }
              else
                {
                  macro_build (p, &icnt, &offset_expr, "lui", "t,u",
-                              tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
+                              tempreg, BFD_RELOC_MIPS_HIGHEST);
                  macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
-                              tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
-                 macro_build (p, &icnt, (expressionS *) NULL, "dsll", "d,w,<",
+                              tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
+                 macro_build (p, &icnt, NULL, "dsll", "d,w,<",
                               tempreg, tempreg, 16);
                  macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
-                              tempreg, tempreg, (int) BFD_RELOC_HI16_S);
-                 macro_build (p, &icnt, (expressionS *) NULL, "dsll", "d,w,<",
+                              tempreg, tempreg, BFD_RELOC_HI16_S);
+                 macro_build (p, &icnt, NULL, "dsll", "d,w,<",
                               tempreg, tempreg, 16);
                  macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
-                              tempreg, tempreg, (int) BFD_RELOC_LO16);
+                              tempreg, tempreg, BFD_RELOC_LO16);
                }
            }
          else
@@ -4861,9 +4924,9 @@ macro (ip)
                  && ! nopic_need_relax (offset_expr.X_add_symbol, 1))
                {
                  frag_grow (20);
-                 macro_build ((char *) NULL, &icnt, &offset_expr, "addiu",
+                 macro_build (NULL, &icnt, &offset_expr, ADDRESS_ADDI_INSN,
                               "t,r,j", tempreg, mips_gp_register,
-                              (int) BFD_RELOC_GPREL16);
+                              BFD_RELOC_GPREL16);
                  p = frag_var (rs_machine_dependent, 8, 0,
                                RELAX_ENCODE (4, 8, 0, 4, 0,
                                              mips_opts.warn_about_macros),
@@ -4872,11 +4935,11 @@ macro (ip)
              macro_build_lui (p, &icnt, &offset_expr, tempreg);
              if (p != NULL)
                p += 4;
-             macro_build (p, &icnt, &offset_expr, "addiu",
-                          "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
+             macro_build (p, &icnt, &offset_expr, ADDRESS_ADDI_INSN,
+                          "t,r,j", tempreg, tempreg, BFD_RELOC_LO16);
            }
        }
-      else if (mips_pic == SVR4_PIC && ! mips_big_got)
+      else if (mips_pic == SVR4_PIC && ! mips_big_got && ! HAVE_NEWABI)
        {
          int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
 
@@ -4908,13 +4971,6 @@ macro (ip)
             For a local symbol, we want the same instruction
             sequence, but we output a BFD_RELOC_LO16 reloc on the
             addiu instruction.
-
-            For NewABI, we want for local or external data addresses
-              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
-            For a local function symbol, we want
-              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_PAGE)
-              nop
-              addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
           */
 
          expr1.X_add_number = offset_expr.X_add_number;
@@ -4922,11 +4978,8 @@ macro (ip)
          frag_grow (32);
          if (expr1.X_add_number == 0 && tempreg == PIC_CALL_REG)
            lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
-         else if (HAVE_NEWABI)
-           lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_DISP;
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                      "t,o(b)", tempreg, lw_reloc_type, mips_gp_register);
+         macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
+                      tempreg, lw_reloc_type, mips_gp_register);
          if (expr1.X_add_number == 0)
            {
              int off;
@@ -4939,8 +4992,7 @@ macro (ip)
                  /* We're going to put in an addu instruction using
                     tempreg, so we may as well insert the nop right
                     now.  */
-                 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                              "nop", "");
+                 macro_build (NULL, &icnt, NULL, "nop", "");
                  off = 4;
                }
              p = frag_var (rs_machine_dependent, 8 - off, 0,
@@ -4951,12 +5003,11 @@ macro (ip)
                            offset_expr.X_add_symbol, 0, NULL);
              if (breg == 0)
                {
-                 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
+                 macro_build (p, &icnt, NULL, "nop", "");
                  p += 4;
                }
-             macro_build (p, &icnt, &expr1,
-                          HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                          "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
+             macro_build (p, &icnt, &expr1, ADDRESS_ADDI_INSN,
+                          "t,r,j", tempreg, tempreg, BFD_RELOC_LO16);
              /* FIXME: If breg == 0, and the next instruction uses
                 $tempreg, then if this variant case is used an extra
                 nop will be generated.  */
@@ -4964,11 +5015,9 @@ macro (ip)
          else if (expr1.X_add_number >= -0x8000
                   && expr1.X_add_number < 0x8000)
            {
-             macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                          "nop", "");
-             macro_build ((char *) NULL, &icnt, &expr1,
-                          HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                          "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
+             macro_build (NULL, &icnt, NULL, "nop", "");
+             macro_build (NULL, &icnt, &expr1, ADDRESS_ADDI_INSN,
+                          "t,r,j", tempreg, tempreg, BFD_RELOC_LO16);
              frag_var (rs_machine_dependent, 0, 0,
                        RELAX_ENCODE (0, 0, -12, -4, 0, 0),
                        offset_expr.X_add_symbol, 0, NULL);
@@ -4988,11 +5037,9 @@ macro (ip)
                off1 = 0;
              else
                {
-                 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                              "nop", "");
-                 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                              HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                              "d,v,t", treg, AT, breg);
+                 macro_build (NULL, &icnt, NULL, "nop", "");
+                 macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                              treg, AT, breg);
                  breg = 0;
                  tempreg = treg;
                  off1 = -8;
@@ -5005,90 +5052,204 @@ macro (ip)
              macro_build_lui (NULL, &icnt, &expr1, AT);
              mips_optimize = hold_mips_optimize;
 
-             macro_build ((char *) NULL, &icnt, &expr1,
-                          HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                          "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
-             macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                          HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                          "d,v,t", tempreg, tempreg, AT);
+             macro_build (NULL, &icnt, &expr1, ADDRESS_ADDI_INSN, "t,r,j",
+                          AT, AT, BFD_RELOC_LO16);
+             macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                          tempreg, tempreg, AT);
              frag_var (rs_machine_dependent, 0, 0,
                        RELAX_ENCODE (0, 0, -16 + off1, -8, 0, 0),
                        offset_expr.X_add_symbol, 0, NULL);
              used_at = 1;
            }
        }
-      else if (mips_pic == SVR4_PIC)
+      else if (mips_pic == SVR4_PIC && ! mips_big_got && HAVE_NEWABI)
        {
-         int gpdel;
-         char *p;
-         int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
-         int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
-         int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
+         char *p = NULL;
+         int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_DISP;
+         int adj = 0;
 
-         /* This is the large GOT case.  If this is a reference to an
-            external symbol, and there is no constant, we want
-              lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
-              addu     $tempreg,$tempreg,$gp
-              lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
+         /* If this is a reference to an external, and there is no
+            constant, or local symbol (*), with or without a
+            constant, we want
+              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
             or if tempreg is PIC_CALL_REG
-              lui      $tempreg,<sym>          (BFD_RELOC_MIPS_CALL_HI16)
-              addu     $tempreg,$tempreg,$gp
-              lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
-            For a local symbol, we want
-              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
-              nop
-              addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
+              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_CALL16)
 
             If we have a small constant, and this is a reference to
             an external symbol, we want
-              lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
-              addu     $tempreg,$tempreg,$gp
-              lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
-              nop
+              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
               addiu    $tempreg,$tempreg,<constant>
-            For a local symbol, we want
-              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
-              nop
-              addiu    $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
 
             If we have a large constant, and this is a reference to
             an external symbol, we want
-              lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
-              addu     $tempreg,$tempreg,$gp
-              lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
+              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
               lui      $at,<hiconstant>
               addiu    $at,$at,<loconstant>
               addu     $tempreg,$tempreg,$at
-            For a local symbol, we want
-              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
-              lui      $at,<hiconstant>
-              addiu    $at,$at,<loconstant>    (BFD_RELOC_LO16)
-              addu     $tempreg,$tempreg,$at
 
-            For NewABI, we want for local data addresses
-              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
-          */
+            (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
+            local symbols, even though it introduces an additional
+            instruction.  */
 
-         expr1.X_add_number = offset_expr.X_add_number;
-         offset_expr.X_add_number = 0;
-         frag_grow (52);
-         if (reg_needs_delay (mips_gp_register))
-           gpdel = 4;
-         else
-           gpdel = 0;
-         if (expr1.X_add_number == 0 && tempreg == PIC_CALL_REG)
+         frag_grow (28);
+         if (offset_expr.X_add_number == 0 && tempreg == PIC_CALL_REG)
+           lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
+         if (offset_expr.X_add_number)
            {
-             lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
+             frag_now->tc_frag_data.tc_fr_offset =
+               expr1.X_add_number = offset_expr.X_add_number;
+             offset_expr.X_add_number = 0;
+
+             macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN,
+                          "t,o(b)", tempreg, lw_reloc_type,
+                          mips_gp_register);
+
+             if (expr1.X_add_number >= -0x8000
+                 && expr1.X_add_number < 0x8000)
+               {
+                 macro_build (NULL, &icnt, &expr1, ADDRESS_ADDI_INSN,
+                              "t,r,j", tempreg, tempreg, BFD_RELOC_LO16);
+                 p = frag_var (rs_machine_dependent, 4, 0,
+                               RELAX_ENCODE (8, 4, 0, 0, 0, 0),
+                               offset_expr.X_add_symbol, 0, NULL);
+               }
+             else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
+               {
+                 int dreg;
+
+                 /* If we are going to add in a base register, and the
+                    target register and the base register are the same,
+                    then we are using AT as a temporary register.  Since
+                    we want to load the constant into AT, we add our
+                    current AT (from the global offset table) and the
+                    register into the register now, and pretend we were
+                    not using a base register.  */
+                 if (breg != treg)
+                   dreg = tempreg;
+                 else
+                   {
+                     assert (tempreg == AT);
+                     macro_build (NULL, &icnt,NULL, ADDRESS_ADD_INSN,
+                                  "d,v,t", treg, AT, breg);
+                     dreg = treg;
+                     adj = 4;
+                   }
+
+                 macro_build_lui (NULL, &icnt, &expr1, AT);
+                 macro_build (NULL, &icnt, &expr1, ADDRESS_ADDI_INSN,
+                              "t,r,j", AT, AT, BFD_RELOC_LO16);
+                 macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                              dreg, dreg, AT);
+
+                 p = frag_var (rs_machine_dependent, 4 + adj, 0,
+                               RELAX_ENCODE (16 + adj, 4 + adj,
+                                             0, 0, 0, 0),
+                               offset_expr.X_add_symbol, 0, NULL);
+
+                 used_at = 1;
+               }
+             else
+               as_bad (_("PIC code offset overflow (max 32 signed bits)"));
+
+             offset_expr.X_add_number = expr1.X_add_number;
+
+             macro_build (p, &icnt, &offset_expr, ADDRESS_LOAD_INSN,
+                          "t,o(b)", tempreg, BFD_RELOC_MIPS_GOT_DISP,
+                          mips_gp_register);
+             if (adj)
+               {
+                 macro_build (p + 4, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                              treg, tempreg, breg);
+                 breg = 0;
+                 tempreg = treg;
+               }
+           }
+         else
+           {
+             macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN,
+                          "t,o(b)", tempreg, lw_reloc_type,
+                          mips_gp_register);
+             if (lw_reloc_type != BFD_RELOC_MIPS_GOT_DISP)
+               p = frag_var (rs_machine_dependent, 0, 0,
+                             RELAX_ENCODE (0, 0, -4, 0, 0, 0),
+                             offset_expr.X_add_symbol, 0, NULL);
+           }
+
+         if (! p)
+           {
+             /* To avoid confusion in tc_gen_reloc, we must ensure
+                that this does not become a variant frag.  */
+             frag_wane (frag_now);
+             frag_new (0);
+           }
+       }
+      else if (mips_pic == SVR4_PIC && ! HAVE_NEWABI)
+       {
+         int gpdel;
+         char *p;
+         int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
+         int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
+         int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
+
+         /* This is the large GOT case.  If this is a reference to an
+            external symbol, and there is no constant, we want
+              lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
+              addu     $tempreg,$tempreg,$gp
+              lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
+            or if tempreg is PIC_CALL_REG
+              lui      $tempreg,<sym>          (BFD_RELOC_MIPS_CALL_HI16)
+              addu     $tempreg,$tempreg,$gp
+              lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
+            For a local symbol, we want
+              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
+              nop
+              addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
+
+            If we have a small constant, and this is a reference to
+            an external symbol, we want
+              lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
+              addu     $tempreg,$tempreg,$gp
+              lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
+              nop
+              addiu    $tempreg,$tempreg,<constant>
+            For a local symbol, we want
+              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
+              nop
+              addiu    $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
+
+            If we have a large constant, and this is a reference to
+            an external symbol, we want
+              lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
+              addu     $tempreg,$tempreg,$gp
+              lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
+              lui      $at,<hiconstant>
+              addiu    $at,$at,<loconstant>
+              addu     $tempreg,$tempreg,$at
+            For a local symbol, we want
+              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
+              lui      $at,<hiconstant>
+              addiu    $at,$at,<loconstant>    (BFD_RELOC_LO16)
+              addu     $tempreg,$tempreg,$at
+         */
+
+         expr1.X_add_number = offset_expr.X_add_number;
+         offset_expr.X_add_number = 0;
+         frag_grow (52);
+         if (reg_needs_delay (mips_gp_register))
+           gpdel = 4;
+         else
+           gpdel = 0;
+         if (expr1.X_add_number == 0 && tempreg == PIC_CALL_REG)
+           {
+             lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
              lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
            }
-         macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
+         macro_build (NULL, &icnt, &offset_expr, "lui", "t,u",
                       tempreg, lui_reloc_type);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                      HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                      "d,v,t", tempreg, tempreg, mips_gp_register);
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                      "t,o(b)", tempreg, lw_reloc_type, tempreg);
+         macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                      tempreg, tempreg, mips_gp_register);
+         macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
+                      tempreg, lw_reloc_type, tempreg);
          if (expr1.X_add_number == 0)
            {
              int off;
@@ -5100,8 +5261,7 @@ macro (ip)
                  /* We're going to put in an addu instruction using
                     tempreg, so we may as well insert the nop right
                     now.  */
-                 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                              "nop", "");
+                 macro_build (NULL, &icnt, NULL, "nop", "");
                  off = 4;
                }
 
@@ -5116,11 +5276,9 @@ macro (ip)
          else if (expr1.X_add_number >= -0x8000
                   && expr1.X_add_number < 0x8000)
            {
-             macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                          "nop", "");
-             macro_build ((char *) NULL, &icnt, &expr1,
-                          HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                          "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
+             macro_build (NULL, &icnt, NULL, "nop", "");
+             macro_build (NULL, &icnt, &expr1, ADDRESS_ADDI_INSN, "t,r,j",
+                          tempreg, tempreg, BFD_RELOC_LO16);
 
              p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
                            RELAX_ENCODE (20, 12 + gpdel, gpdel, 8 + gpdel, 0,
@@ -5148,11 +5306,9 @@ macro (ip)
              else
                {
                  assert (tempreg == AT);
-                 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                              "nop", "");
-                 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                              HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                              "d,v,t", treg, AT, breg);
+                 macro_build (NULL, &icnt, NULL, "nop", "");
+                 macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                              treg, AT, breg);
                  dreg = treg;
                  adj = 8;
                }
@@ -5164,12 +5320,10 @@ macro (ip)
              macro_build_lui (NULL, &icnt, &expr1, AT);
              mips_optimize = hold_mips_optimize;
 
-             macro_build ((char *) NULL, &icnt, &expr1,
-                          HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                          "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
-             macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                          HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                          "d,v,t", dreg, dreg, AT);
+             macro_build (NULL, &icnt, &expr1, ADDRESS_ADDI_INSN, "t,r,j",
+                          AT, AT, BFD_RELOC_LO16);
+             macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                          dreg, dreg, AT);
 
              p = frag_var (rs_machine_dependent, 16 + gpdel + adj, 0,
                            RELAX_ENCODE (24 + adj, 16 + gpdel + adj, gpdel,
@@ -5185,77 +5339,191 @@ macro (ip)
          if (gpdel > 0)
            {
              /* This is needed because this instruction uses $gp, but
-                 the first instruction on the main stream does not.  */
-             macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
+                the first instruction on the main stream does not.  */
+             macro_build (p, &icnt, NULL, "nop", "");
              p += 4;
            }
 
-         if (HAVE_NEWABI)
-           local_reloc_type = (int) BFD_RELOC_MIPS_GOT_DISP;
-         macro_build (p, &icnt, &offset_expr,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                      "t,o(b)", tempreg,
-                      local_reloc_type,
-                      mips_gp_register);
+         macro_build (p, &icnt, &offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
+                      tempreg, local_reloc_type, mips_gp_register);
          p += 4;
-         if (expr1.X_add_number == 0 && HAVE_NEWABI)
-           {
-             /* BFD_RELOC_MIPS_GOT_DISP is sufficient for newabi */
-           }
-        else
-          if (expr1.X_add_number >= -0x8000
+         if (expr1.X_add_number >= -0x8000
              && expr1.X_add_number < 0x8000)
            {
-             macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
+             macro_build (p, &icnt, NULL, "nop", "");
              p += 4;
-             macro_build (p, &icnt, &expr1,
-                          HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                          "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
+             macro_build (p, &icnt, &expr1, ADDRESS_ADDI_INSN,
+                          "t,r,j", tempreg, tempreg, BFD_RELOC_LO16);
              /* FIXME: If add_number is 0, and there was no base
-                 register, the external symbol case ended with a load,
-                 so if the symbol turns out to not be external, and
-                 the next instruction uses tempreg, an unnecessary nop
-                 will be inserted.  */
+                register, the external symbol case ended with a load,
+                so if the symbol turns out to not be external, and
+                the next instruction uses tempreg, an unnecessary nop
+                will be inserted.  */
            }
          else
            {
              if (breg == treg)
                {
                  /* We must add in the base register now, as in the
-                     external symbol case.  */
+                    external symbol case.  */
                  assert (tempreg == AT);
-                 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
+                 macro_build (p, &icnt, NULL, "nop", "");
                  p += 4;
-                 macro_build (p, &icnt, (expressionS *) NULL,
-                              HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                              "d,v,t", treg, AT, breg);
+                 macro_build (p, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                              treg, AT, breg);
                  p += 4;
                  tempreg = treg;
                  /* We set breg to 0 because we have arranged to add
-                     it in in both cases.  */
+                    it in in both cases.  */
                  breg = 0;
                }
 
              macro_build_lui (p, &icnt, &expr1, AT);
              p += 4;
-             macro_build (p, &icnt, &expr1,
-                          HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                          "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
+             macro_build (p, &icnt, &expr1, ADDRESS_ADDI_INSN, "t,r,j",
+                          AT, AT, BFD_RELOC_LO16);
              p += 4;
-             macro_build (p, &icnt, (expressionS *) NULL,
-                          HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                          "d,v,t", tempreg, tempreg, AT);
+             macro_build (p, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                          tempreg, tempreg, AT);
              p += 4;
            }
        }
+      else if (mips_pic == SVR4_PIC && HAVE_NEWABI)
+       {
+         char *p = NULL;
+         int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
+         int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
+         int adj = 0;
+
+         /* This is the large GOT case.  If this is a reference to an
+            external symbol, and there is no constant, we want
+              lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
+              add      $tempreg,$tempreg,$gp
+              lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
+            or if tempreg is PIC_CALL_REG
+              lui      $tempreg,<sym>          (BFD_RELOC_MIPS_CALL_HI16)
+              add      $tempreg,$tempreg,$gp
+              lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
+
+            If we have a small constant, and this is a reference to
+            an external symbol, we want
+              lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
+              add      $tempreg,$tempreg,$gp
+              lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
+              addi     $tempreg,$tempreg,<constant>
+
+            If we have a large constant, and this is a reference to
+            an external symbol, we want
+              lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
+              addu     $tempreg,$tempreg,$gp
+              lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
+              lui      $at,<hiconstant>
+              addi     $at,$at,<loconstant>
+              add      $tempreg,$tempreg,$at
+
+            If we have NewABI, and we know it's a local symbol, we want
+              lw       $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT_PAGE)
+              addiu    $reg,$reg,<sym>         (BFD_RELOC_MIPS_GOT_OFST)
+            otherwise we have to resort to GOT_HI16/GOT_LO16.  */
+
+         frag_grow (40);
+
+         frag_now->tc_frag_data.tc_fr_offset =
+           expr1.X_add_number = offset_expr.X_add_number;
+         offset_expr.X_add_number = 0;
+
+         if (expr1.X_add_number == 0 && tempreg == PIC_CALL_REG)
+           {
+             lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
+             lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
+           }
+         macro_build (NULL, &icnt, &offset_expr, "lui", "t,u",
+                      tempreg, lui_reloc_type);
+         macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                      tempreg, tempreg, mips_gp_register);
+         macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN,
+                      "t,o(b)", tempreg, lw_reloc_type, tempreg);
+
+         if (expr1.X_add_number == 0)
+           {
+             p = frag_var (rs_machine_dependent, 8, 0,
+                           RELAX_ENCODE (12, 8, 0, 4, 0,
+                                         mips_opts.warn_about_macros),
+                           offset_expr.X_add_symbol, 0, NULL);
+           }
+         else if (expr1.X_add_number >= -0x8000
+                  && expr1.X_add_number < 0x8000)
+           {
+             macro_build (NULL, &icnt, &expr1, ADDRESS_ADDI_INSN, "t,r,j",
+                          tempreg, tempreg, BFD_RELOC_LO16);
+             p = frag_var (rs_machine_dependent, 8, 0,
+                           RELAX_ENCODE (16, 8, 0, 4, 0,
+                                         mips_opts.warn_about_macros),
+                           offset_expr.X_add_symbol, 0, NULL);
+           }
+         else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
+           {
+             int dreg;
+
+             /* If we are going to add in a base register, and the
+                target register and the base register are the same,
+                then we are using AT as a temporary register.  Since
+                we want to load the constant into AT, we add our
+                current AT (from the global offset table) and the
+                register into the register now, and pretend we were
+                not using a base register.  */
+             if (breg != treg)
+               dreg = tempreg;
+             else
+               {
+                 assert (tempreg == AT);
+                 macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                              treg, AT, breg);
+                 dreg = treg;
+                 adj = 4;
+               }
+
+             /* Set mips_optimize around the lui instruction to avoid
+                inserting an unnecessary nop after the lw.  */
+             macro_build_lui (NULL, &icnt, &expr1, AT);
+             macro_build (NULL, &icnt, &expr1, ADDRESS_ADDI_INSN,
+                          "t,r,j", AT, AT, BFD_RELOC_LO16);
+             macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                          dreg, dreg, AT);
+
+             p = frag_var (rs_machine_dependent, 8 + adj, 0,
+                           RELAX_ENCODE (24 + adj, 8 + adj,
+                                         0, 4, 0,
+                                         (breg == 0
+                                          ? mips_opts.warn_about_macros
+                                          : 0)),
+                           offset_expr.X_add_symbol, 0, NULL);
+
+             used_at = 1;
+           }
+         else
+           as_bad (_("PIC code offset overflow (max 32 signed bits)"));
+
+         offset_expr.X_add_number = expr1.X_add_number;
+         macro_build (p, &icnt, &offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
+                      tempreg, BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
+         macro_build (p + 4, &icnt, &offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
+                      tempreg, tempreg, BFD_RELOC_MIPS_GOT_OFST);
+         if (adj)
+           {
+             macro_build (p + 8, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                          treg, tempreg, breg);
+             breg = 0;
+             tempreg = treg;
+           }
+       }
       else if (mips_pic == EMBEDDED_PIC)
        {
          /* We use
               addiu    $tempreg,$gp,<sym>      (BFD_RELOC_GPREL16)
             */
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j",
-                      tempreg, mips_gp_register, (int) BFD_RELOC_GPREL16);
+         macro_build (NULL, &icnt, &offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
+                      tempreg, mips_gp_register, BFD_RELOC_GPREL16);
        }
       else
        abort ();
@@ -5267,10 +5535,9 @@ macro (ip)
          if (mips_pic == EMBEDDED_PIC || mips_pic == NO_PIC)
            s = (dbl || HAVE_64BIT_ADDRESSES) ? "daddu" : "addu";
          else
-           s = HAVE_64BIT_ADDRESSES ? "daddu" : "addu";
+           s = ADDRESS_ADD_INSN;
 
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s,
-                      "d,v,t", treg, tempreg, breg);
+         macro_build (NULL, &icnt, NULL, s, "d,v,t", treg, tempreg, breg);
        }
 
       if (! used_at)
@@ -5283,9 +5550,9 @@ macro (ip)
         requires an absolute address.  We convert it to a b
         instruction.  */
       if (mips_pic == NO_PIC)
-       macro_build ((char *) NULL, &icnt, &offset_expr, "j", "a");
+       macro_build (NULL, &icnt, &offset_expr, "j", "a");
       else
-       macro_build ((char *) NULL, &icnt, &offset_expr, "b", "p");
+       macro_build (NULL, &icnt, &offset_expr, "b", "p");
       return;
 
       /* The jal instructions must be handled as macros because when
@@ -5297,15 +5564,13 @@ macro (ip)
     case M_JAL_2:
       if (mips_pic == NO_PIC
          || mips_pic == EMBEDDED_PIC)
-       macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "jalr",
-                    "d,s", dreg, sreg);
+       macro_build (NULL, &icnt, NULL, "jalr", "d,s", dreg, sreg);
       else if (mips_pic == SVR4_PIC)
        {
          if (sreg != PIC_CALL_REG)
            as_warn (_("MIPS PIC call to register other than $25"));
 
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "jalr",
-                      "d,s", dreg, sreg);
+         macro_build (NULL, &icnt, NULL, "jalr", "d,s", dreg, sreg);
          if (! HAVE_NEWABI)
            {
              if (mips_cprestore_offset < 0)
@@ -5325,9 +5590,11 @@ macro (ip)
                      mips_cprestore_valid = 1;
                    }
                  expr1.X_add_number = mips_cprestore_offset;
-                 macro_build_ldst_constoffset ((char *) NULL, &icnt, &expr1,
-                                               HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                                               mips_gp_register, mips_frame_reg);
+                 macro_build_ldst_constoffset (NULL, &icnt, &expr1,
+                                               ADDRESS_LOAD_INSN,
+                                               mips_gp_register,
+                                               mips_frame_reg,
+                                               HAVE_64BIT_ADDRESSES);
                }
            }
        }
@@ -5338,7 +5605,7 @@ macro (ip)
 
     case M_JAL_A:
       if (mips_pic == NO_PIC)
-       macro_build ((char *) NULL, &icnt, &offset_expr, "jal", "a");
+       macro_build (NULL, &icnt, &offset_expr, "jal", "a");
       else if (mips_pic == SVR4_PIC)
        {
          char *p;
@@ -5366,16 +5633,44 @@ macro (ip)
               jalr     $ra,$25
               nop
               lw $gp,cprestore($sp)
-            For NewABI, we want
-              lw       $25,<sym>($gp)          (BFD_RELOC_MIPS_GOT_DISP)
-              jalr     $ra,$25                 (BFD_RELOC_MIPS_JALR)
-          */
+
+            For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
+            sequences above, minus nops, unless the symbol is local,
+            which enables us to use GOT_PAGE/GOT_OFST (big got) or
+            GOT_DISP.  */
          if (HAVE_NEWABI)
            {
-             macro_build ((char *) NULL, &icnt, &offset_expr,
-                          HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                          "t,o(b)", PIC_CALL_REG,
-                          (int) BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
+             if (! mips_big_got)
+               {
+                 frag_grow (4);
+                 macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN,
+                              "t,o(b)", PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
+                              mips_gp_register);
+                 frag_var (rs_machine_dependent, 0, 0,
+                           RELAX_ENCODE (0, 0, -4, 0, 0, 0),
+                           offset_expr.X_add_symbol, 0, NULL);
+               }
+             else
+               {
+                 frag_grow (20);
+                 macro_build (NULL, &icnt, &offset_expr, "lui", "t,u",
+                              PIC_CALL_REG, BFD_RELOC_MIPS_CALL_HI16);
+                 macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                              PIC_CALL_REG, PIC_CALL_REG, mips_gp_register);
+                 macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN,
+                              "t,o(b)", PIC_CALL_REG,
+                              BFD_RELOC_MIPS_CALL_LO16, PIC_CALL_REG);
+                 p = frag_var (rs_machine_dependent, 8, 0,
+                               RELAX_ENCODE (12, 8, 0, 4, 0, 0),
+                               offset_expr.X_add_symbol, 0, NULL);
+                 macro_build (p, &icnt, &offset_expr, ADDRESS_LOAD_INSN,
+                              "t,o(b)", PIC_CALL_REG,
+                              BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
+                 macro_build (p + 4, &icnt, &offset_expr, ADDRESS_ADDI_INSN,
+                              "t,r,j", PIC_CALL_REG, PIC_CALL_REG,
+                              BFD_RELOC_MIPS_GOT_OFST);
+               }
+
              macro_build_jalr (icnt, &offset_expr);
            }
          else
@@ -5383,12 +5678,10 @@ macro (ip)
              frag_grow (40);
              if (! mips_big_got)
                {
-                 macro_build ((char *) NULL, &icnt, &offset_expr,
-                              HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                              "t,o(b)", PIC_CALL_REG,
-                              (int) BFD_RELOC_MIPS_CALL16, mips_gp_register);
-                 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                              "nop", "");
+                 macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN,
+                              "t,o(b)", PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
+                              mips_gp_register);
+                 macro_build (NULL, &icnt, NULL, "nop", "");
                  p = frag_var (rs_machine_dependent, 4, 0,
                                RELAX_ENCODE (0, 4, -8, 0, 0, 0),
                                offset_expr.X_add_symbol, 0, NULL);
@@ -5401,40 +5694,33 @@ macro (ip)
                    gpdel = 4;
                  else
                    gpdel = 0;
-                 macro_build ((char *) NULL, &icnt, &offset_expr, "lui",
-                              "t,u", PIC_CALL_REG,
-                              (int) BFD_RELOC_MIPS_CALL_HI16);
-                 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                              HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                              "d,v,t", PIC_CALL_REG, PIC_CALL_REG,
-                              mips_gp_register);
-                 macro_build ((char *) NULL, &icnt, &offset_expr,
-                              HAVE_32BIT_ADDRESSES ? "lw" : "ld",
+                 macro_build (NULL, &icnt, &offset_expr, "lui", "t,u",
+                              PIC_CALL_REG, BFD_RELOC_MIPS_CALL_HI16);
+                 macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                              PIC_CALL_REG, PIC_CALL_REG, mips_gp_register);
+                 macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN,
                               "t,o(b)", PIC_CALL_REG,
-                              (int) BFD_RELOC_MIPS_CALL_LO16, PIC_CALL_REG);
-                 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                              "nop", "");
+                              BFD_RELOC_MIPS_CALL_LO16, PIC_CALL_REG);
+                 macro_build (NULL, &icnt, NULL, "nop", "");
                  p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
                                RELAX_ENCODE (16, 12 + gpdel, gpdel,
                                              8 + gpdel, 0, 0),
                                offset_expr.X_add_symbol, 0, NULL);
                  if (gpdel > 0)
                    {
-                     macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
+                     macro_build (p, &icnt, NULL, "nop", "");
                      p += 4;
                    }
-                 macro_build (p, &icnt, &offset_expr,
-                              HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                              "t,o(b)", PIC_CALL_REG,
-                              (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
+                 macro_build (p, &icnt, &offset_expr, ADDRESS_LOAD_INSN,
+                              "t,o(b)", PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
+                              mips_gp_register);
                  p += 4;
-                 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
+                 macro_build (p, &icnt, NULL, "nop", "");
                  p += 4;
                }
-             macro_build (p, &icnt, &offset_expr,
-                          HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
+             macro_build (p, &icnt, &offset_expr, ADDRESS_ADDI_INSN,
                           "t,r,j", PIC_CALL_REG, PIC_CALL_REG,
-                          (int) BFD_RELOC_LO16);
+                          BFD_RELOC_LO16);
              macro_build_jalr (icnt, &offset_expr);
 
              if (mips_cprestore_offset < 0)
@@ -5454,18 +5740,19 @@ macro (ip)
                      mips_cprestore_valid = 1;
                    }
                  if (mips_opts.noreorder)
-                   macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                                "nop", "");
+                   macro_build (NULL, &icnt, NULL, "nop", "");
                  expr1.X_add_number = mips_cprestore_offset;
-                 macro_build_ldst_constoffset ((char *) NULL, &icnt, &expr1,
-                                               HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                                               mips_gp_register, mips_frame_reg);
+                 macro_build_ldst_constoffset (NULL, &icnt, &expr1,
+                                               ADDRESS_LOAD_INSN,
+                                               mips_gp_register,
+                                               mips_frame_reg,
+                                               HAVE_64BIT_ADDRESSES);
                }
            }
        }
       else if (mips_pic == EMBEDDED_PIC)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr, "bal", "p");
+         macro_build (NULL, &icnt, &offset_expr, "bal", "p");
          /* The linker may expand the call to a longer sequence which
             uses $at, so we must break rather than return.  */
          break;
@@ -5519,7 +5806,7 @@ macro (ip)
       lr = 1;
       goto ld;
     case M_LDC1_AB:
-      if (mips_arch == CPU_R4650)
+      if (mips_opts.arch == CPU_R4650)
        {
          as_bad (_("opcode not supported on this processor"));
          return;
@@ -5608,7 +5895,7 @@ macro (ip)
       s = "scd";
       goto st;
     case M_SDC1_AB:
-      if (mips_arch == CPU_R4650)
+      if (mips_opts.arch == CPU_R4650)
        {
          as_bad (_("opcode not supported on this processor"));
          return;
@@ -5649,6 +5936,22 @@ macro (ip)
       else
        fmt = "t,o(b)";
 
+      /* Sign-extending 32-bit constants makes their handling easier.
+         The HAVE_64BIT_GPRS... part is due to the linux kernel hack
+         described below.  */
+      if ((! HAVE_64BIT_ADDRESSES
+          && (! HAVE_64BIT_GPRS && offset_expr.X_op == O_constant))
+          && (offset_expr.X_op == O_constant)
+         && ! ((offset_expr.X_add_number & ~((bfd_vma) 0x7fffffff))
+               == ~((bfd_vma) 0x7fffffff)))
+       {
+         if (offset_expr.X_add_number & ~((bfd_vma) 0xffffffff))
+           as_bad (_("too large constant specified"));
+
+       offset_expr.X_add_number = (((offset_expr.X_add_number & 0xffffffff)
+                                    ^ 0x80000000) - 0x80000000);
+       }
+
       /* For embedded PIC, we allow loads where the offset is calculated
          by subtracting a symbol in the current segment from an unknown
          symbol, relative to a base register, e.g.:
@@ -5675,15 +5978,15 @@ macro (ip)
              nice to emit:
                 <op>    $treg,<sym>($breg)      (BFD_RELOC_PCREL_LO16)
              instead, but that seems quite difficult.  */
-          macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
-                       tempreg, (int) BFD_RELOC_PCREL_HI16_S);
-          macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
+          macro_build (NULL, &icnt, &offset_expr, "lui", "t,u", tempreg,
+                      BFD_RELOC_PCREL_HI16_S);
+          macro_build (NULL, &icnt, NULL,
                        ((bfd_arch_bits_per_address (stdoutput) == 32
                          || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
                         ? "addu" : "daddu"),
                        "d,v,t", tempreg, tempreg, breg);
-          macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt, treg,
-                       (int) BFD_RELOC_PCREL_LO16, tempreg);
+          macro_build (NULL, &icnt, &offset_expr, s, fmt, treg,
+                       BFD_RELOC_PCREL_LO16, tempreg);
           if (! used_at)
             return;
           break;
@@ -5764,10 +6067,29 @@ macro (ip)
             range is shifted down by 32768 here.  This code should
             probably attempt to generate 64-bit constants more
             efficiently in general.
-          */
-         if (HAVE_64BIT_ADDRESSES
-             && !(offset_expr.X_op == O_constant
-                  && IS_SEXT_32BIT_NUM (offset_expr.X_add_number + 0x8000)))
+
+            As an extension for architectures with 64-bit registers,
+            we don't truncate 64-bit addresses given as literal
+            constants down to 32 bits, to support existing practice
+            in the mips64 Linux (the kernel), that compiles source
+            files with -mabi=64, assembling them as o32 or n32 (with
+            -Wa,-32 or -Wa,-n32).  This is not beautiful, but since
+            the whole kernel is loaded into a memory region that is
+            addressible with sign-extended 32-bit addresses, it is
+            wasteful to compute the upper 32 bits of every
+            non-literal address, that takes more space and time.
+            Some day this should probably be implemented as an
+            assembler option, such that the kernel doesn't have to
+            use such ugly hacks, even though it will still have to
+            end up converting the binary to ELF32 for a number of
+            platforms whose boot loaders don't support ELF64
+            binaries.  */
+         if ((HAVE_64BIT_ADDRESSES
+              && ! (offset_expr.X_op == O_constant
+                    && IS_SEXT_32BIT_NUM (offset_expr.X_add_number + 0x8000)))
+             || (HAVE_64BIT_GPRS
+                 && offset_expr.X_op == O_constant
+                 && ! IS_SEXT_32BIT_NUM (offset_expr.X_add_number + 0x8000)))
            {
              p = NULL;
 
@@ -5777,44 +6099,48 @@ macro (ip)
              if (used_at == 0 && ! mips_opts.noat)
                {
                  macro_build (p, &icnt, &offset_expr, "lui", "t,u",
-                              tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
+                              tempreg, BFD_RELOC_MIPS_HIGHEST);
                  macro_build (p, &icnt, &offset_expr, "lui", "t,u",
-                              AT, (int) BFD_RELOC_HI16_S);
+                              AT, BFD_RELOC_HI16_S);
                  macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
-                              tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
+                              tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
                  if (breg != 0)
-                   macro_build (p, &icnt, (expressionS *) NULL, "daddu",
-                                "d,v,t", AT, AT, breg);
-                 macro_build (p, &icnt, (expressionS *) NULL, "dsll32",
-                              "d,w,<", tempreg, tempreg, 0);
-                 macro_build (p, &icnt, (expressionS *) NULL, "daddu",
-                              "d,v,t", tempreg, tempreg, AT);
-                 macro_build (p, &icnt, &offset_expr, s,
-                              fmt, treg, (int) BFD_RELOC_LO16, tempreg);
+                   macro_build (p, &icnt, NULL, "daddu", "d,v,t",
+                                AT, AT, breg);
+                 macro_build (p, &icnt, NULL, "dsll32", "d,w,<",
+                              tempreg, tempreg, 0);
+                 macro_build (p, &icnt, NULL, "daddu", "d,v,t",
+                              tempreg, tempreg, AT);
+                 macro_build (p, &icnt, &offset_expr, s, fmt, treg,
+                              BFD_RELOC_LO16, tempreg);
                  used_at = 1;
                }
              else
                {
                  macro_build (p, &icnt, &offset_expr, "lui", "t,u",
-                              tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
+                              tempreg, BFD_RELOC_MIPS_HIGHEST);
                  macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
-                              tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
-                 macro_build (p, &icnt, (expressionS *) NULL, "dsll",
-                              "d,w,<", tempreg, tempreg, 16);
+                              tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
+                 macro_build (p, &icnt, NULL, "dsll", "d,w,<",
+                              tempreg, tempreg, 16);
                  macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
-                              tempreg, tempreg, (int) BFD_RELOC_HI16_S);
-                 macro_build (p, &icnt, (expressionS *) NULL, "dsll",
-                              "d,w,<", tempreg, tempreg, 16);
+                              tempreg, tempreg, BFD_RELOC_HI16_S);
+                 macro_build (p, &icnt, NULL, "dsll", "d,w,<",
+                              tempreg, tempreg, 16);
                  if (breg != 0)
-                   macro_build (p, &icnt, (expressionS *) NULL, "daddu",
-                                "d,v,t", tempreg, tempreg, breg);
-                 macro_build (p, &icnt, &offset_expr, s,
-                              fmt, treg, (int) BFD_RELOC_LO16, tempreg);
+                   macro_build (p, &icnt, NULL, "daddu", "d,v,t",
+                                tempreg, tempreg, breg);
+                 macro_build (p, &icnt, &offset_expr, s, fmt, treg,
+                              BFD_RELOC_LO16, tempreg);
                }
 
              return;
            }
 
+         if (offset_expr.X_op == O_constant
+             && ! IS_SEXT_32BIT_NUM (offset_expr.X_add_number + 0x8000))
+           as_bad (_("load/store address overflow (max 32 bits)"));
+
          if (breg == 0)
            {
              if ((valueT) offset_expr.X_add_number > MAX_GPREL_OFFSET
@@ -5823,9 +6149,8 @@ macro (ip)
              else
                {
                  frag_grow (20);
-                 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
-                              treg, (int) BFD_RELOC_GPREL16,
-                              mips_gp_register);
+                 macro_build (NULL, &icnt, &offset_expr, s, fmt, treg,
+                              BFD_RELOC_GPREL16, mips_gp_register);
                  p = frag_var (rs_machine_dependent, 8, 0,
                                RELAX_ENCODE (4, 8, 0, 4, 0,
                                              (mips_opts.warn_about_macros
@@ -5838,7 +6163,7 @@ macro (ip)
              if (p != NULL)
                p += 4;
              macro_build (p, &icnt, &offset_expr, s, fmt, treg,
-                          (int) BFD_RELOC_LO16, tempreg);
+                          BFD_RELOC_LO16, tempreg);
            }
          else
            {
@@ -5848,11 +6173,10 @@ macro (ip)
              else
                {
                  frag_grow (28);
-                 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                              HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                              "d,v,t", tempreg, breg, mips_gp_register);
-                 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
-                              treg, (int) BFD_RELOC_GPREL16, tempreg);
+                 macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                              tempreg, breg, mips_gp_register);
+                 macro_build (NULL, &icnt, &offset_expr, s, fmt, treg,
+                              BFD_RELOC_GPREL16, tempreg);
                  p = frag_var (rs_machine_dependent, 12, 0,
                                RELAX_ENCODE (8, 12, 0, 8, 0, 0),
                                offset_expr.X_add_symbol, 0, NULL);
@@ -5860,13 +6184,12 @@ macro (ip)
              macro_build_lui (p, &icnt, &offset_expr, tempreg);
              if (p != NULL)
                p += 4;
-             macro_build (p, &icnt, (expressionS *) NULL,
-                          HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                          "d,v,t", tempreg, tempreg, breg);
+             macro_build (p, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                          tempreg, tempreg, breg);
              if (p != NULL)
                p += 4;
              macro_build (p, &icnt, &offset_expr, s, fmt, treg,
-                          (int) BFD_RELOC_LO16, tempreg);
+                          BFD_RELOC_LO16, tempreg);
            }
        }
       else if (mips_pic == SVR4_PIC && ! mips_big_got)
@@ -5883,8 +6206,11 @@ macro (ip)
               nop
               addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
               <op>     $treg,0($tempreg)
-            If we have NewABI, we want
-              lw       $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT_DISP)
+
+            For NewABI, we want
+              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_PAGE)
+              <op>     $treg,<sym>($tempreg)   (BFD_RELOC_MIPS_GOT_OFST)
+
             If there is a base register, we add it to $tempreg before
             the <op>.  If there is a constant, we stick it in the
             <op> instruction.  We don't handle constants larger than
@@ -5892,32 +6218,43 @@ macro (ip)
             (actually, we could handle them for the subset of cases
             in which we are not using $at).  */
          assert (offset_expr.X_op == O_symbol);
+         if (HAVE_NEWABI)
+           {
+             macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN,
+                          "t,o(b)", tempreg, BFD_RELOC_MIPS_GOT_PAGE,
+                          mips_gp_register);
+             if (breg != 0)
+               macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                            tempreg, tempreg, breg);
+             macro_build (NULL, &icnt, &offset_expr, s, fmt, treg,
+                          BFD_RELOC_MIPS_GOT_OFST, tempreg);
+
+             if (! used_at)
+               return;
+
+             break;
+           }
          expr1.X_add_number = offset_expr.X_add_number;
          offset_expr.X_add_number = 0;
-         if (HAVE_NEWABI)
-           lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_DISP;
          if (expr1.X_add_number < -0x8000
              || expr1.X_add_number >= 0x8000)
            as_bad (_("PIC code offset overflow (max 16 signed bits)"));
          frag_grow (20);
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", tempreg,
-                      (int) lw_reloc_type, mips_gp_register);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
+         macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
+                      tempreg, lw_reloc_type, mips_gp_register);
+         macro_build (NULL, &icnt, NULL, "nop", "");
          p = frag_var (rs_machine_dependent, 4, 0,
                        RELAX_ENCODE (0, 4, -8, 0, 0, 0),
                        offset_expr.X_add_symbol, 0, NULL);
-         macro_build (p, &icnt, &offset_expr,
-                      HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                      "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
+         macro_build (p, &icnt, &offset_expr, ADDRESS_ADDI_INSN,
+                      "t,r,j", tempreg, tempreg, BFD_RELOC_LO16);
          if (breg != 0)
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                        HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                        "d,v,t", tempreg, tempreg, breg);
-         macro_build ((char *) NULL, &icnt, &expr1, s, fmt, treg,
-                      (int) BFD_RELOC_LO16, tempreg);
+           macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                        tempreg, tempreg, breg);
+         macro_build (NULL, &icnt, &expr1, s, fmt, treg, BFD_RELOC_LO16,
+                      tempreg);
        }
-      else if (mips_pic == SVR4_PIC)
+      else if (mips_pic == SVR4_PIC && ! HAVE_NEWABI)
        {
          int gpdel;
          char *p;
@@ -5937,79 +6274,90 @@ macro (ip)
             <op> instruction.  We don't handle constants larger than
             16 bits, because we have no way to load the upper 16 bits
             (actually, we could handle them for the subset of cases
-            in which we are not using $at).
-
-            For NewABI, we want
-              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_PAGE)
-              addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
-              <op>     $treg,0($tempreg)
-          */
+            in which we are not using $at).  */
          assert (offset_expr.X_op == O_symbol);
          expr1.X_add_number = offset_expr.X_add_number;
          offset_expr.X_add_number = 0;
          if (expr1.X_add_number < -0x8000
              || expr1.X_add_number >= 0x8000)
            as_bad (_("PIC code offset overflow (max 16 signed bits)"));
-         if (HAVE_NEWABI)
-           {
-             macro_build ((char *) NULL, &icnt, &offset_expr,
-                          HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                          "t,o(b)", tempreg, BFD_RELOC_MIPS_GOT_PAGE,
-                          mips_gp_register);
-             macro_build ((char *) NULL, &icnt, &offset_expr,
-                          HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                          "t,r,j", tempreg, tempreg,
-                          BFD_RELOC_MIPS_GOT_OFST);
-             if (breg != 0)
-               macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                            HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                            "d,v,t", tempreg, tempreg, breg);
-             macro_build ((char *) NULL, &icnt, &expr1, s, fmt, treg,
-                          (int) BFD_RELOC_LO16, tempreg);
-
-             if (! used_at)
-               return;
-
-             break;
-           }
          if (reg_needs_delay (mips_gp_register))
            gpdel = 4;
          else
            gpdel = 0;
          frag_grow (36);
-         macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
-                      tempreg, (int) BFD_RELOC_MIPS_GOT_HI16);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                      HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                      "d,v,t", tempreg, tempreg, mips_gp_register);
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                      "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT_LO16,
-                      tempreg);
+         macro_build (NULL, &icnt, &offset_expr, "lui", "t,u", tempreg,
+                      BFD_RELOC_MIPS_GOT_HI16);
+         macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                      tempreg, tempreg, mips_gp_register);
+         macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
+                      tempreg, BFD_RELOC_MIPS_GOT_LO16, tempreg);
          p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
                        RELAX_ENCODE (12, 12 + gpdel, gpdel, 8 + gpdel, 0, 0),
                        offset_expr.X_add_symbol, 0, NULL);
          if (gpdel > 0)
            {
-             macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
+             macro_build (p, &icnt, NULL, "nop", "");
              p += 4;
            }
-         macro_build (p, &icnt, &offset_expr,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                      "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT16,
-                      mips_gp_register);
+         macro_build (p, &icnt, &offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
+                      tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
          p += 4;
-         macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
+         macro_build (p, &icnt, NULL, "nop", "");
          p += 4;
-         macro_build (p, &icnt, &offset_expr,
-                      HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
-                      "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
+         macro_build (p, &icnt, &offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
+                      tempreg, tempreg, BFD_RELOC_LO16);
+         if (breg != 0)
+           macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                        tempreg, tempreg, breg);
+         macro_build (NULL, &icnt, &expr1, s, fmt, treg, BFD_RELOC_LO16,
+                      tempreg);
+       }
+      else if (mips_pic == SVR4_PIC && HAVE_NEWABI)
+       {
+         char *p;
+         int bregsz = breg != 0 ? 4 : 0;
+
+         /* If this is a reference to an external symbol, we want
+              lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
+              add      $tempreg,$tempreg,$gp
+              lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
+              <op>     $treg,<ofst>($tempreg)
+            Otherwise, for local symbols, we want:
+              lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_PAGE)
+              <op>     $treg,<sym>($tempreg)   (BFD_RELOC_MIPS_GOT_OFST)  */
+         assert (offset_expr.X_op == O_symbol);
+         frag_now->tc_frag_data.tc_fr_offset =
+           expr1.X_add_number = offset_expr.X_add_number;
+         offset_expr.X_add_number = 0;
+         if (expr1.X_add_number < -0x8000
+             || expr1.X_add_number >= 0x8000)
+           as_bad (_("PIC code offset overflow (max 16 signed bits)"));
+         frag_grow (36);
+         macro_build (NULL, &icnt, &offset_expr, "lui", "t,u", tempreg,
+                      BFD_RELOC_MIPS_GOT_HI16);
+         macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                      tempreg, tempreg, mips_gp_register);
+         macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
+                      tempreg, BFD_RELOC_MIPS_GOT_LO16, tempreg);
          if (breg != 0)
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                        HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                        "d,v,t", tempreg, tempreg, breg);
-         macro_build ((char *) NULL, &icnt, &expr1, s, fmt, treg,
-                      (int) BFD_RELOC_LO16, tempreg);
+           macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                        tempreg, tempreg, breg);
+         macro_build (NULL, &icnt, &expr1, s, fmt, treg, BFD_RELOC_LO16,
+                      tempreg);
+
+         offset_expr.X_add_number = expr1.X_add_number;
+         p = frag_var (rs_machine_dependent, 12 + bregsz, 0,
+                       RELAX_ENCODE (16 + bregsz, 8 + bregsz,
+                                     0, 4 + bregsz, 0, 0),
+                       offset_expr.X_add_symbol, 0, NULL);
+         macro_build (p, &icnt, &offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
+                      tempreg, BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
+         if (breg != 0)
+           macro_build (p + 4, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                        tempreg, tempreg, breg);
+         macro_build (p + 4 + bregsz, &icnt, &offset_expr, s, fmt, treg,
+                      BFD_RELOC_MIPS_GOT_OFST, tempreg);
        }
       else if (mips_pic == EMBEDDED_PIC)
        {
@@ -6022,17 +6370,16 @@ macro (ip)
          assert (offset_expr.X_op == O_symbol);
          if (breg == 0)
            {
-             macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
-                          treg, (int) BFD_RELOC_GPREL16, mips_gp_register);
+             macro_build (NULL, &icnt, &offset_expr, s, fmt, treg,
+                          BFD_RELOC_GPREL16, mips_gp_register);
              used_at = 0;
            }
          else
            {
-             macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                          HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                          "d,v,t", tempreg, breg, mips_gp_register);
-             macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
-                          treg, (int) BFD_RELOC_GPREL16, tempreg);
+             macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                          tempreg, breg, mips_gp_register);
+             macro_build (NULL, &icnt, &offset_expr, s, fmt, treg,
+                          BFD_RELOC_GPREL16, tempreg);
            }
        }
       else
@@ -6056,8 +6403,7 @@ macro (ip)
       if (imm_expr.X_op == O_constant)
        {
          load_register (&icnt, AT, &imm_expr, 0);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                      "mtc1", "t,G", AT, treg);
+         macro_build (NULL, &icnt, NULL, "mtc1", "t,G", AT, treg);
          break;
        }
       else
@@ -6067,8 +6413,8 @@ macro (ip)
                                           (offset_expr.X_add_symbol)),
                             ".lit4") == 0
                  && offset_expr.X_add_number == 0);
-         macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
-                      treg, (int) BFD_RELOC_MIPS_LITERAL, mips_gp_register);
+         macro_build (NULL, &icnt, &offset_expr, "lwc1", "T,o(b)", treg,
+                      BFD_RELOC_MIPS_LITERAL, mips_gp_register);
          return;
        }
 
@@ -6120,18 +6466,15 @@ macro (ip)
        }
       else if (mips_pic == SVR4_PIC)
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                      "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16,
-                      mips_gp_register);
+         macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
+                      AT, BFD_RELOC_MIPS_GOT16, mips_gp_register);
        }
       else if (mips_pic == EMBEDDED_PIC)
        {
          /* For embedded PIC we pick up the entire address off $gp in
             a single instruction.  */
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j", AT,
-                      mips_gp_register, (int) BFD_RELOC_GPREL16);
+         macro_build (NULL, &icnt, &offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
+                      AT, mips_gp_register, BFD_RELOC_GPREL16);
          offset_expr.X_op = O_constant;
          offset_expr.X_add_number = 0;
        }
@@ -6140,19 +6483,19 @@ macro (ip)
 
       /* Now we load the register(s).  */
       if (HAVE_64BIT_GPRS)
-       macro_build ((char *) NULL, &icnt, &offset_expr, "ld", "t,o(b)",
-                    treg, (int) BFD_RELOC_LO16, AT);
+       macro_build (NULL, &icnt, &offset_expr, "ld", "t,o(b)", treg,
+                    BFD_RELOC_LO16, AT);
       else
        {
-         macro_build ((char *) NULL, &icnt, &offset_expr, "lw", "t,o(b)",
-                      treg, (int) BFD_RELOC_LO16, AT);
+         macro_build (NULL, &icnt, &offset_expr, "lw", "t,o(b)", treg,
+                      BFD_RELOC_LO16, AT);
          if (treg != RA)
            {
              /* FIXME: How in the world do we deal with the possible
                 overflow here?  */
              offset_expr.X_add_number += 4;
-             macro_build ((char *) NULL, &icnt, &offset_expr, "lw", "t,o(b)",
-                          treg + 1, (int) BFD_RELOC_LO16, AT);
+             macro_build (NULL, &icnt, &offset_expr, "lw", "t,o(b)",
+                          treg + 1, BFD_RELOC_LO16, AT);
            }
        }
 
@@ -6175,22 +6518,18 @@ macro (ip)
          if (HAVE_64BIT_FPRS)
            {
              assert (HAVE_64BIT_GPRS);
-             macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                          "dmtc1", "t,S", AT, treg);
+             macro_build (NULL, &icnt, NULL, "dmtc1", "t,S", AT, treg);
            }
          else
            {
-             macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                          "mtc1", "t,G", AT, treg + 1);
+             macro_build (NULL, &icnt, NULL, "mtc1", "t,G", AT, treg + 1);
              if (offset_expr.X_op == O_absent)
-               macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                            "mtc1", "t,G", 0, treg);
+               macro_build (NULL, &icnt, NULL, "mtc1", "t,G", 0, treg);
              else
                {
                  assert (offset_expr.X_op == O_constant);
                  load_register (&icnt, AT, &offset_expr, 0);
-                 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                              "mtc1", "t,G", AT, treg);
+                 macro_build (NULL, &icnt, NULL, "mtc1", "t,G", AT, treg);
                }
            }
          break;
@@ -6203,9 +6542,8 @@ macro (ip)
        {
          if (mips_opts.isa != ISA_MIPS1)
            {
-             macro_build ((char *) NULL, &icnt, &offset_expr, "ldc1",
-                          "T,o(b)", treg, (int) BFD_RELOC_MIPS_LITERAL,
-                          mips_gp_register);
+             macro_build (NULL, &icnt, &offset_expr, "ldc1", "T,o(b)", treg,
+                          BFD_RELOC_MIPS_LITERAL, mips_gp_register);
              return;
            }
          breg = mips_gp_register;
@@ -6216,9 +6554,8 @@ macro (ip)
        {
          assert (strcmp (s, RDATA_SECTION_NAME) == 0);
          if (mips_pic == SVR4_PIC)
-           macro_build ((char *) NULL, &icnt, &offset_expr,
-                        HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                        "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16,
+           macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN,
+                        "t,o(b)", AT, BFD_RELOC_MIPS_GOT16,
                         mips_gp_register);
          else
            {
@@ -6228,8 +6565,8 @@ macro (ip)
 
          if (mips_opts.isa != ISA_MIPS1)
            {
-             macro_build ((char *) NULL, &icnt, &offset_expr, "ldc1",
-                          "T,o(b)", treg, (int) BFD_RELOC_LO16, AT);
+             macro_build (NULL, &icnt, &offset_expr, "ldc1", "T,o(b)", treg,
+                          BFD_RELOC_LO16, AT);
 
              /* To avoid confusion in tc_gen_reloc, we must ensure
                 that this does not become a variant frag.  */
@@ -6244,7 +6581,7 @@ macro (ip)
        }
 
     case M_L_DOB:
-      if (mips_arch == CPU_R4650)
+      if (mips_opts.arch == CPU_R4650)
        {
          as_bad (_("opcode not supported on this processor"));
          return;
@@ -6254,15 +6591,13 @@ macro (ip)
       r = BFD_RELOC_LO16;
     dob:
       assert (mips_opts.isa == ISA_MIPS1);
-      macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
-                  target_big_endian ? treg + 1 : treg,
-                  (int) r, breg);
+      macro_build (NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
+                  target_big_endian ? treg + 1 : treg, r, breg);
       /* FIXME: A possible overflow which I don't know how to deal
         with.  */
       offset_expr.X_add_number += 4;
-      macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
-                  target_big_endian ? treg : treg + 1,
-                  (int) r, breg);
+      macro_build (NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
+                  target_big_endian ? treg : treg + 1, r, breg);
 
       /* To avoid confusion in tc_gen_reloc, we must ensure that this
         does not become a variant frag.  */
@@ -6285,7 +6620,7 @@ macro (ip)
        * But, the resulting address is the same after relocation so why
        * generate the extra instruction?
        */
-      if (mips_arch == CPU_R4650)
+      if (mips_opts.arch == CPU_R4650)
        {
          as_bad (_("opcode not supported on this processor"));
          return;
@@ -6303,7 +6638,7 @@ macro (ip)
       goto ldd_std;
 
     case M_S_DAB:
-      if (mips_arch == CPU_R4650)
+      if (mips_opts.arch == CPU_R4650)
        {
          as_bad (_("opcode not supported on this processor"));
          return;
@@ -6401,18 +6736,17 @@ macro (ip)
              else
                {
                  frag_grow (36);
-                 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                              HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                              "d,v,t", AT, breg, mips_gp_register);
+                 macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                              AT, breg, mips_gp_register);
                  tempreg = AT;
                  off = 4;
                  used_at = 1;
                }
 
              /* Itbl support may require additional care here.  */
-             macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
+             macro_build (NULL, &icnt, &offset_expr, s, fmt,
                           coproc ? treg + 1 : treg,
-                          (int) BFD_RELOC_GPREL16, tempreg);
+                          BFD_RELOC_GPREL16, tempreg);
              offset_expr.X_add_number += 4;
 
              /* Set mips_optimize to 2 to avoid inserting an
@@ -6420,9 +6754,9 @@ macro (ip)
              hold_mips_optimize = mips_optimize;
              mips_optimize = 2;
              /* Itbl support may require additional care here.  */
-             macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
+             macro_build (NULL, &icnt, &offset_expr, s, fmt,
                           coproc ? treg : treg + 1,
-                          (int) BFD_RELOC_GPREL16, tempreg);
+                          BFD_RELOC_GPREL16, tempreg);
              mips_optimize = hold_mips_optimize;
 
              p = frag_var (rs_machine_dependent, 12 + off, 0,
@@ -6456,16 +6790,15 @@ macro (ip)
            p += 4;
          if (breg != 0)
            {
-             macro_build (p, &icnt, (expressionS *) NULL,
-                          HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                          "d,v,t", AT, breg, AT);
+             macro_build (p, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                          AT, breg, AT);
              if (p != NULL)
                p += 4;
            }
          /* Itbl support may require additional care here.  */
          macro_build (p, &icnt, &offset_expr, s, fmt,
                       coproc ? treg + 1 : treg,
-                      (int) BFD_RELOC_LO16, AT);
+                      BFD_RELOC_LO16, AT);
          if (p != NULL)
            p += 4;
          /* FIXME: How do we handle overflow here?  */
@@ -6473,7 +6806,7 @@ macro (ip)
          /* Itbl support may require additional care here.  */
          macro_build (p, &icnt, &offset_expr, s, fmt,
                       coproc ? treg : treg + 1,
-                      (int) BFD_RELOC_LO16, AT);
+                      BFD_RELOC_LO16, AT);
        }
       else if (mips_pic == SVR4_PIC && ! mips_big_got)
        {
@@ -6503,18 +6836,15 @@ macro (ip)
          else
            off = 4;
          frag_grow (24 + off);
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", AT,
-                      (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
+         macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
+                      AT, BFD_RELOC_MIPS_GOT16, mips_gp_register);
+         macro_build (NULL, &icnt, NULL, "nop", "");
          if (breg != 0)
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                        HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                        "d,v,t", AT, breg, AT);
+           macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                        AT, breg, AT);
          /* Itbl support may require additional care here.  */
-         macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
-                      coproc ? treg + 1 : treg,
-                      (int) BFD_RELOC_LO16, AT);
+         macro_build (NULL, &icnt, &expr1, s, fmt, coproc ? treg + 1 : treg,
+                      BFD_RELOC_LO16, AT);
          expr1.X_add_number += 4;
 
          /* Set mips_optimize to 2 to avoid inserting an undesired
@@ -6522,9 +6852,8 @@ macro (ip)
          hold_mips_optimize = mips_optimize;
          mips_optimize = 2;
          /* Itbl support may require additional care here.  */
-         macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
-                      coproc ? treg : treg + 1,
-                      (int) BFD_RELOC_LO16, AT);
+         macro_build (NULL, &icnt, &expr1, s, fmt, coproc ? treg : treg + 1,
+                      BFD_RELOC_LO16, AT);
          mips_optimize = hold_mips_optimize;
 
          (void) frag_var (rs_machine_dependent, 0, 0,
@@ -6566,23 +6895,19 @@ macro (ip)
          else
            off = 4;
          frag_grow (56);
-         macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
-                      AT, (int) BFD_RELOC_MIPS_GOT_HI16);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                      HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                      "d,v,t", AT, AT, mips_gp_register);
-         macro_build ((char *) NULL, &icnt, &offset_expr,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                      "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT_LO16, AT);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
+         macro_build (NULL, &icnt, &offset_expr, "lui", "t,u", AT,
+                      BFD_RELOC_MIPS_GOT_HI16);
+         macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                      AT, AT, mips_gp_register);
+         macro_build (NULL, &icnt, &offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
+                      AT, BFD_RELOC_MIPS_GOT_LO16, AT);
+         macro_build (NULL, &icnt, NULL, "nop", "");
          if (breg != 0)
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                        HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                        "d,v,t", AT, breg, AT);
+           macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                        AT, breg, AT);
          /* Itbl support may require additional care here.  */
-         macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
-                      coproc ? treg + 1 : treg,
-                      (int) BFD_RELOC_LO16, AT);
+         macro_build (NULL, &icnt, &expr1, s, fmt, coproc ? treg + 1 : treg,
+                      BFD_RELOC_LO16, AT);
          expr1.X_add_number += 4;
 
          /* Set mips_optimize to 2 to avoid inserting an undesired
@@ -6590,9 +6915,8 @@ macro (ip)
          hold_mips_optimize = mips_optimize;
          mips_optimize = 2;
          /* Itbl support may require additional care here.  */
-         macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
-                      coproc ? treg : treg + 1,
-                      (int) BFD_RELOC_LO16, AT);
+         macro_build (NULL, &icnt, &expr1, s, fmt, coproc ? treg : treg + 1,
+                      BFD_RELOC_LO16, AT);
          mips_optimize = hold_mips_optimize;
          expr1.X_add_number -= 4;
 
@@ -6602,27 +6926,23 @@ macro (ip)
                        offset_expr.X_add_symbol, 0, NULL);
          if (gpdel > 0)
            {
-             macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
+             macro_build (p, &icnt, NULL, "nop", "");
              p += 4;
            }
-         macro_build (p, &icnt, &offset_expr,
-                      HAVE_32BIT_ADDRESSES ? "lw" : "ld",
-                      "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16,
-                      mips_gp_register);
+         macro_build (p, &icnt, &offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
+                      AT, BFD_RELOC_MIPS_GOT16, mips_gp_register);
          p += 4;
-         macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
+         macro_build (p, &icnt, NULL, "nop", "");
          p += 4;
          if (breg != 0)
            {
-             macro_build (p, &icnt, (expressionS *) NULL,
-                          HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                          "d,v,t", AT, breg, AT);
+             macro_build (p, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                          AT, breg, AT);
              p += 4;
            }
          /* Itbl support may require additional care here.  */
-         macro_build (p, &icnt, &expr1, s, fmt,
-                      coproc ? treg + 1 : treg,
-                      (int) BFD_RELOC_LO16, AT);
+         macro_build (p, &icnt, &expr1, s, fmt, coproc ? treg + 1 : treg,
+                      BFD_RELOC_LO16, AT);
          p += 4;
          expr1.X_add_number += 4;
 
@@ -6631,9 +6951,8 @@ macro (ip)
          hold_mips_optimize = mips_optimize;
          mips_optimize = 2;
          /* Itbl support may require additional care here.  */
-         macro_build (p, &icnt, &expr1, s, fmt,
-                      coproc ? treg : treg + 1,
-                      (int) BFD_RELOC_LO16, AT);
+         macro_build (p, &icnt, &expr1, s, fmt, coproc ? treg : treg + 1,
+                      BFD_RELOC_LO16, AT);
          mips_optimize = hold_mips_optimize;
        }
       else if (mips_pic == EMBEDDED_PIC)
@@ -6653,22 +6972,21 @@ macro (ip)
            }
          else
            {
-             macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                          HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                          "d,v,t", AT, breg, mips_gp_register);
+             macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                          AT, breg, mips_gp_register);
              tempreg = AT;
              used_at = 1;
            }
 
          /* Itbl support may require additional care here.  */
-         macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
+         macro_build (NULL, &icnt, &offset_expr, s, fmt,
                       coproc ? treg + 1 : treg,
-                      (int) BFD_RELOC_GPREL16, tempreg);
+                      BFD_RELOC_GPREL16, tempreg);
          offset_expr.X_add_number += 4;
          /* Itbl support may require additional care here.  */
-         macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
+         macro_build (NULL, &icnt, &offset_expr, s, fmt,
                       coproc ? treg : treg + 1,
-                      (int) BFD_RELOC_GPREL16, tempreg);
+                      BFD_RELOC_GPREL16, tempreg);
        }
       else
        abort ();
@@ -6685,11 +7003,11 @@ macro (ip)
       s = "sw";
     sd_ob:
       assert (HAVE_32BIT_ADDRESSES);
-      macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, breg);
+      macro_build (NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
+                  BFD_RELOC_LO16, breg);
       offset_expr.X_add_number += 4;
-      macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg + 1,
-                  (int) BFD_RELOC_LO16, breg);
+      macro_build (NULL, &icnt, &offset_expr, s, "t,o(b)", treg + 1,
+                  BFD_RELOC_LO16, breg);
       return;
 
    /* New code added to support COPZ instructions.
@@ -6723,8 +7041,7 @@ macro (ip)
     copz:
       /* For now we just do C (same as Cz).  The parameter will be
          stored in insn_opcode by mips_ip.  */
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "C",
-                  ip->insn_opcode);
+      macro_build (NULL, &icnt, NULL, s, "C", ip->insn_opcode);
       return;
 
     case M_MOVE:
@@ -6747,7 +7064,7 @@ macro (ip)
          s = ip->insn_mo->name;
          s2 = "cop3";
          coproc = ITBL_DECODE_PNUM (immed_expr);;
-         macro_build ((char *) NULL, &icnt, &immed_expr, s, "C");
+         macro_build (NULL, &icnt, &immed_expr, s, "C");
          return;
        }
       macro2 (ip);
@@ -6758,8 +7075,7 @@ macro (ip)
 }
 
 static void
-macro2 (ip)
-     struct mips_cl_insn *ip;
+macro2 (struct mips_cl_insn *ip)
 {
   register int treg, sreg, dreg, breg;
   int tempreg;
@@ -6797,10 +7113,9 @@ macro2 (ip)
     case M_DMUL:
       dbl = 1;
     case M_MUL:
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                  dbl ? "dmultu" : "multu", "s,t", sreg, treg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
-                  dreg);
+      macro_build (NULL, &icnt, NULL, dbl ? "dmultu" : "multu", "s,t",
+                  sreg, treg);
+      macro_build (NULL, &icnt, NULL, "mflo", "d", dreg);
       return;
 
     case M_DMUL_I:
@@ -6810,10 +7125,9 @@ macro2 (ip)
         not trying to be that fancy. GCC should do this for us
         anyway.  */
       load_register (&icnt, AT, &imm_expr, dbl);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                  dbl ? "dmult" : "mult", "s,t", sreg, AT);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
-                  dreg);
+      macro_build (NULL, &icnt, NULL, dbl ? "dmult" : "mult", "s,t",
+                  sreg, AT);
+      macro_build (NULL, &icnt, NULL, "mflo", "d", dreg);
       break;
 
     case M_DMULO_I:
@@ -6826,34 +7140,28 @@ macro2 (ip)
       dbl = 1;
     case M_MULO:
     do_mulo:
-      mips_emit_delays (true);
+      mips_emit_delays (TRUE);
       ++mips_opts.noreorder;
       mips_any_noreorder = 1;
       if (imm)
        load_register (&icnt, AT, &imm_expr, dbl);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                  dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
-                  dreg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                  dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mfhi", "d",
-                  AT);
+      macro_build (NULL, &icnt, NULL, dbl ? "dmult" : "mult", "s,t",
+                  sreg, imm ? AT : treg);
+      macro_build (NULL, &icnt, NULL, "mflo", "d", dreg);
+      macro_build (NULL, &icnt, NULL, dbl ? "dsra32" : "sra", "d,w,<",
+                  dreg, dreg, RA);
+      macro_build (NULL, &icnt, NULL, "mfhi", "d", AT);
       if (mips_trap)
-       macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "tne",
-                    "s,t,q", dreg, AT, 6);
+       macro_build (NULL, &icnt, NULL, "tne", "s,t,q", dreg, AT, 6);
       else
        {
          expr1.X_add_number = 8;
-         macro_build ((char *) NULL, &icnt, &expr1, "beq", "s,t,p", dreg,
-                      AT);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
-                      0);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
-                      "c", 6);
+         macro_build (NULL, &icnt, &expr1, "beq", "s,t,p", dreg, AT);
+         macro_build (NULL, &icnt, NULL, "nop", "", 0);
+         macro_build (NULL, &icnt, NULL, "break", "c", 6);
        }
       --mips_opts.noreorder;
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d", dreg);
+      macro_build (NULL, &icnt, NULL, "mflo", "d", dreg);
       break;
 
     case M_DMULOU_I:
@@ -6866,90 +7174,110 @@ macro2 (ip)
       dbl = 1;
     case M_MULOU:
     do_mulou:
-      mips_emit_delays (true);
+      mips_emit_delays (TRUE);
       ++mips_opts.noreorder;
       mips_any_noreorder = 1;
       if (imm)
        load_register (&icnt, AT, &imm_expr, dbl);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                  dbl ? "dmultu" : "multu",
-                  "s,t", sreg, imm ? AT : treg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mfhi", "d",
-                  AT);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
-                  dreg);
+      macro_build (NULL, &icnt, NULL, dbl ? "dmultu" : "multu", "s,t",
+                  sreg, imm ? AT : treg);
+      macro_build (NULL, &icnt, NULL, "mfhi", "d", AT);
+      macro_build (NULL, &icnt, NULL, "mflo", "d", dreg);
       if (mips_trap)
-       macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "tne",
-                    "s,t,q", AT, 0, 6);
+       macro_build (NULL, &icnt, NULL, "tne", "s,t,q", AT, 0, 6);
       else
        {
          expr1.X_add_number = 8;
-         macro_build ((char *) NULL, &icnt, &expr1, "beq", "s,t,p", AT, 0);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
-                      0);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
-                      "c", 6);
+         macro_build (NULL, &icnt, &expr1, "beq", "s,t,p", AT, 0);
+         macro_build (NULL, &icnt, NULL, "nop", "", 0);
+         macro_build (NULL, &icnt, NULL, "break", "c", 6);
        }
       --mips_opts.noreorder;
       break;
 
     case M_DROL:
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsubu",
-                  "d,v,t", AT, 0, treg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrlv",
-                  "d,t,s", AT, sreg, AT);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsllv",
-                  "d,t,s", dreg, sreg, treg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
-                  "d,v,t", dreg, dreg, AT);
+      if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
+       {
+         if (dreg == sreg)
+           {
+             tempreg = AT;
+             used_at = 1;
+           }
+         else
+           {
+             tempreg = dreg;
+             used_at = 0;
+           }
+         macro_build (NULL, &icnt, NULL, "dnegu", "d,w", tempreg, treg);
+         macro_build (NULL, &icnt, NULL, "drorv", "d,t,s", dreg, sreg,
+                      tempreg);
+         if (used_at)
+           break;
+         return;
+       }
+      macro_build (NULL, &icnt, NULL, "dsubu", "d,v,t", AT, 0, treg);
+      macro_build (NULL, &icnt, NULL, "dsrlv", "d,t,s", AT, sreg, AT);
+      macro_build (NULL, &icnt, NULL, "dsllv", "d,t,s", dreg, sreg, treg);
+      macro_build (NULL, &icnt, NULL, "or", "d,v,t", dreg, dreg, AT);
       break;
 
     case M_ROL:
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "subu",
-                  "d,v,t", AT, 0, treg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srlv",
-                  "d,t,s", AT, sreg, AT);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sllv",
-                  "d,t,s", dreg, sreg, treg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
-                  "d,v,t", dreg, dreg, AT);
+      if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
+       {
+         if (dreg == sreg)
+           {
+             tempreg = AT;
+             used_at = 1;
+           }
+         else
+           {
+             tempreg = dreg;
+             used_at = 0;
+           }
+         macro_build (NULL, &icnt, NULL, "negu", "d,w", tempreg, treg);
+         macro_build (NULL, &icnt, NULL, "rorv", "d,t,s", dreg, sreg,
+                      tempreg);
+         if (used_at)
+           break;
+         return;
+       }
+      macro_build (NULL, &icnt, NULL, "subu", "d,v,t", AT, 0, treg);
+      macro_build (NULL, &icnt, NULL, "srlv", "d,t,s", AT, sreg, AT);
+      macro_build (NULL, &icnt, NULL, "sllv", "d,t,s", dreg, sreg, treg);
+      macro_build (NULL, &icnt, NULL, "or", "d,v,t", dreg, dreg, AT);
       break;
 
     case M_DROL_I:
       {
        unsigned int rot;
+       char *l, *r;
 
        if (imm_expr.X_op != O_constant)
-         as_bad (_("rotate count too large"));
+         as_bad (_("Improper rotate count"));
        rot = imm_expr.X_add_number & 0x3f;
-       if (CPU_HAS_DROR (mips_arch))
+       if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
          {
            rot = (64 - rot) & 0x3f;
            if (rot >= 32)
-             macro_build ((char *) NULL, &icnt, NULL, "dror32",
-                          "d,w,<", dreg, sreg, rot - 32);
+             macro_build (NULL, &icnt, NULL, "dror32", "d,w,<",
+                          dreg, sreg, rot - 32);
            else
-             macro_build ((char *) NULL, &icnt, NULL, "dror",
-                          "d,w,<", dreg, sreg, rot);
-           break;
+             macro_build (NULL, &icnt, NULL, "dror", "d,w,<",
+                          dreg, sreg, rot);
+           return;
          }
        if (rot == 0)
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrl",
-                      "d,w,<", dreg, sreg, 0);
-       else
          {
-           char *l, *r;
-
-           l = (rot < 0x20) ? "dsll" : "dsll32";
-           r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
-           rot &= 0x1f;
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, l,
-                        "d,w,<", AT, sreg, rot);
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, r,
-                        "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
-                        "d,v,t", dreg, dreg, AT);
+           macro_build (NULL, &icnt, NULL, "dsrl", "d,w,<", dreg, sreg, 0);
+           return;
          }
+       l = (rot < 0x20) ? "dsll" : "dsll32";
+       r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
+       rot &= 0x1f;
+       macro_build (NULL, &icnt, NULL, l, "d,w,<", AT, sreg, rot);
+       macro_build (NULL, &icnt, NULL, r, "d,w,<", dreg, sreg,
+                    (0x20 - rot) & 0x1f);
+       macro_build (NULL, &icnt, NULL, "or", "d,v,t", dreg, dreg, AT);
       }
       break;
 
@@ -6958,75 +7286,80 @@ macro2 (ip)
        unsigned int rot;
 
        if (imm_expr.X_op != O_constant)
-         as_bad (_("rotate count too large"));
+         as_bad (_("Improper rotate count"));
        rot = imm_expr.X_add_number & 0x1f;
-       if (CPU_HAS_ROR (mips_arch))
+       if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
          {
-           macro_build ((char *) NULL, &icnt, NULL, "ror",
-                        "d,w,<", dreg, sreg, (32 - rot) & 0x1f);
-           break;
+           macro_build (NULL, &icnt, NULL, "ror", "d,w,<", dreg, sreg,
+                        (32 - rot) & 0x1f);
+           return;
          }
        if (rot == 0)
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
-                      "d,w,<", dreg, sreg, 0);
-       else
          {
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll",
-                        "d,w,<", AT, sreg, rot);
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
-                        "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
-                        "d,v,t", dreg, dreg, AT);
+           macro_build (NULL, &icnt, NULL, "srl", "d,w,<", dreg, sreg, 0);
+           return;
          }
+       macro_build (NULL, &icnt, NULL, "sll", "d,w,<", AT, sreg, rot);
+       macro_build (NULL, &icnt, NULL, "srl", "d,w,<", dreg, sreg,
+                    (0x20 - rot) & 0x1f);
+       macro_build (NULL, &icnt, NULL, "or", "d,v,t", dreg, dreg, AT);
       }
       break;
 
     case M_DROR:
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsubu",
-                  "d,v,t", AT, 0, treg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsllv",
-                  "d,t,s", AT, sreg, AT);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrlv",
-                  "d,t,s", dreg, sreg, treg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
-                  "d,v,t", dreg, dreg, AT);
+      if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
+       {
+         macro_build (NULL, &icnt, NULL, "drorv", "d,t,s", dreg, sreg, treg);
+         return;
+       }
+      macro_build (NULL, &icnt,NULL, "dsubu", "d,v,t", AT, 0, treg);
+      macro_build (NULL, &icnt, NULL, "dsllv", "d,t,s", AT, sreg, AT);
+      macro_build (NULL, &icnt, NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
+      macro_build (NULL, &icnt, NULL, "or", "d,v,t", dreg, dreg, AT);
       break;
 
     case M_ROR:
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "subu",
-                  "d,v,t", AT, 0, treg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sllv",
-                  "d,t,s", AT, sreg, AT);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srlv",
-                  "d,t,s", dreg, sreg, treg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
-                  "d,v,t", dreg, dreg, AT);
+      if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
+       {
+         macro_build (NULL, &icnt, NULL, "rorv", "d,t,s", dreg, sreg, treg);
+         return;
+       }
+      macro_build (NULL, &icnt, NULL, "subu", "d,v,t", AT, 0, treg);
+      macro_build (NULL, &icnt, NULL, "sllv", "d,t,s", AT, sreg, AT);
+      macro_build (NULL, &icnt, NULL, "srlv", "d,t,s", dreg, sreg, treg);
+      macro_build (NULL, &icnt, NULL, "or", "d,v,t", dreg, dreg, AT);
       break;
 
     case M_DROR_I:
       {
        unsigned int rot;
+       char *l, *r;
 
        if (imm_expr.X_op != O_constant)
-         as_bad (_("rotate count too large"));
+         as_bad (_("Improper rotate count"));
        rot = imm_expr.X_add_number & 0x3f;
+       if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
+         {
+           if (rot >= 32)
+             macro_build (NULL, &icnt, NULL, "dror32", "d,w,<",
+                          dreg, sreg, rot - 32);
+           else
+             macro_build (NULL, &icnt, NULL, "dror", "d,w,<",
+                          dreg, sreg, rot);
+           return;
+         }
        if (rot == 0)
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrl",
-                      "d,w,<", dreg, sreg, 0);
-       else
          {
-           char *l, *r;
-
-           r = (rot < 0x20) ? "dsrl" : "dsrl32";
-           l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
-           rot &= 0x1f;
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, r,
-                        "d,w,<", AT, sreg, rot);
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, l,
-                        "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
-                        "d,v,t", dreg, dreg, AT);
+           macro_build (NULL, &icnt, NULL, "dsrl", "d,w,<", dreg, sreg, 0);
+           return;
          }
+       r = (rot < 0x20) ? "dsrl" : "dsrl32";
+       l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
+       rot &= 0x1f;
+       macro_build ( NULL, &icnt,NULL, r, "d,w,<", AT, sreg, rot);
+       macro_build (NULL, &icnt, NULL, l, "d,w,<", dreg, sreg,
+                    (0x20 - rot) & 0x1f);
+       macro_build (NULL, &icnt, NULL, "or", "d,v,t", dreg, dreg, AT);
       }
       break;
 
@@ -7035,25 +7368,27 @@ macro2 (ip)
        unsigned int rot;
 
        if (imm_expr.X_op != O_constant)
-         as_bad (_("rotate count too large"));
+         as_bad (_("Improper rotate count"));
        rot = imm_expr.X_add_number & 0x1f;
+       if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
+         {
+           macro_build (NULL, &icnt, NULL, "ror", "d,w,<", dreg, sreg, rot);
+           return;
+         }
        if (rot == 0)
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
-                      "d,w,<", dreg, sreg, 0);
-       else
          {
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
-                        "d,w,<", AT, sreg, rot);
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll",
-                        "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
-           macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
-                        "d,v,t", dreg, dreg, AT);
+           macro_build (NULL, &icnt, NULL, "srl", "d,w,<", dreg, sreg, 0);
+           return;
          }
+       macro_build (NULL, &icnt, NULL, "srl", "d,w,<", AT, sreg, rot);
+       macro_build (NULL, &icnt, NULL, "sll", "d,w,<", dreg, sreg,
+                    (0x20 - rot) & 0x1f);
+       macro_build (NULL, &icnt, NULL, "or", "d,v,t", dreg, dreg, AT);
       }
       break;
 
     case M_S_DOB:
-      if (mips_arch == CPU_R4650)
+      if (mips_opts.arch == CPU_R4650)
        {
          as_bad (_("opcode not supported on this processor"));
          return;
@@ -7061,36 +7396,35 @@ macro2 (ip)
       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 ((char *) NULL, &icnt, &offset_expr, "swc1", "T,o(b)",
+      macro_build (NULL, &icnt, &offset_expr, "swc1", "T,o(b)",
                   target_big_endian ? treg + 1 : treg,
-                  (int) BFD_RELOC_LO16, breg);
+                  BFD_RELOC_LO16, breg);
       offset_expr.X_add_number += 4;
-      macro_build ((char *) NULL, &icnt, &offset_expr, "swc1", "T,o(b)",
+      macro_build (NULL, &icnt, &offset_expr, "swc1", "T,o(b)",
                   target_big_endian ? treg : treg + 1,
-                  (int) BFD_RELOC_LO16, breg);
+                  BFD_RELOC_LO16, breg);
       return;
 
     case M_SEQ:
       if (sreg == 0)
-       macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
-                    treg, (int) BFD_RELOC_LO16);
+       macro_build (NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg, treg,
+                    BFD_RELOC_LO16);
       else if (treg == 0)
-       macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
-                    sreg, (int) BFD_RELOC_LO16);
+       macro_build (NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg, sreg,
+                    BFD_RELOC_LO16);
       else
        {
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
-                      "d,v,t", dreg, sreg, treg);
-         macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
-                      dreg, (int) BFD_RELOC_LO16);
+         macro_build (NULL, &icnt, NULL, "xor", "d,v,t", dreg, sreg, treg);
+         macro_build (NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg, dreg,
+                      BFD_RELOC_LO16);
        }
       return;
 
     case M_SEQ_I:
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
        {
-         macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
-                      sreg, (int) BFD_RELOC_LO16);
+         macro_build (NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg, sreg,
+                      BFD_RELOC_LO16);
          return;
        }
       if (sreg == 0)
@@ -7104,8 +7438,8 @@ macro2 (ip)
          && imm_expr.X_add_number >= 0
          && imm_expr.X_add_number < 0x10000)
        {
-         macro_build ((char *) NULL, &icnt, &imm_expr, "xori", "t,r,i", dreg,
-                      sreg, (int) BFD_RELOC_LO16);
+         macro_build (NULL, &icnt, &imm_expr, "xori", "t,r,i", dreg, sreg,
+                      BFD_RELOC_LO16);
          used_at = 0;
        }
       else if (imm_expr.X_op == O_constant
@@ -7113,21 +7447,19 @@ macro2 (ip)
               && imm_expr.X_add_number < 0)
        {
          imm_expr.X_add_number = -imm_expr.X_add_number;
-         macro_build ((char *) NULL, &icnt, &imm_expr,
+         macro_build (NULL, &icnt, &imm_expr,
                       HAVE_32BIT_GPRS ? "addiu" : "daddiu",
-                      "t,r,j", dreg, sreg,
-                      (int) BFD_RELOC_LO16);
+                      "t,r,j", dreg, sreg, BFD_RELOC_LO16);
          used_at = 0;
        }
       else
        {
          load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
-                      "d,v,t", dreg, sreg, AT);
+         macro_build (NULL, &icnt, NULL, "xor", "d,v,t", dreg, sreg, AT);
          used_at = 1;
        }
-      macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg, dreg,
-                  (int) BFD_RELOC_LO16);
+      macro_build (NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg, dreg,
+                  BFD_RELOC_LO16);
       if (used_at)
        break;
       return;
@@ -7138,10 +7470,9 @@ macro2 (ip)
     case M_SGEU:
       s = "sltu";
     sge:
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
-                  dreg, sreg, treg);
-      macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
-                  (int) BFD_RELOC_LO16);
+      macro_build (NULL, &icnt, NULL, s, "d,v,t", dreg, sreg, treg);
+      macro_build (NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
+                  BFD_RELOC_LO16);
       return;
 
     case M_SGE_I:              /* sreg >= I <==> not (sreg < I) */
@@ -7150,21 +7481,20 @@ macro2 (ip)
          && imm_expr.X_add_number >= -0x8000
          && imm_expr.X_add_number < 0x8000)
        {
-         macro_build ((char *) NULL, &icnt, &imm_expr,
+         macro_build (NULL, &icnt, &imm_expr,
                       mask == M_SGE_I ? "slti" : "sltiu",
-                      "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
+                      "t,r,j", dreg, sreg, BFD_RELOC_LO16);
          used_at = 0;
        }
       else
        {
          load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                      mask == M_SGE_I ? "slt" : "sltu", "d,v,t", dreg, sreg,
-                      AT);
+         macro_build (NULL, &icnt, NULL, mask == M_SGE_I ? "slt" : "sltu",
+                      "d,v,t", dreg, sreg, AT);
          used_at = 1;
        }
-      macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
-                  (int) BFD_RELOC_LO16);
+      macro_build (NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
+                  BFD_RELOC_LO16);
       if (used_at)
        break;
       return;
@@ -7175,8 +7505,7 @@ macro2 (ip)
     case M_SGTU:
       s = "sltu";
     sgt:
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
-                  dreg, treg, sreg);
+      macro_build (NULL, &icnt, NULL, s, "d,v,t", dreg, treg, sreg);
       return;
 
     case M_SGT_I:              /* sreg > I  <==>  I < sreg */
@@ -7186,8 +7515,7 @@ macro2 (ip)
       s = "sltu";
     sgti:
       load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
-                  dreg, AT, sreg);
+      macro_build (NULL, &icnt, NULL, s, "d,v,t", dreg, AT, sreg);
       break;
 
     case M_SLE:        /* sreg <= treg  <==>  treg >= sreg  <==>  not (treg < sreg) */
@@ -7196,10 +7524,9 @@ macro2 (ip)
     case M_SLEU:
       s = "sltu";
     sle:
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
-                  dreg, treg, sreg);
-      macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
-                  (int) BFD_RELOC_LO16);
+      macro_build (NULL, &icnt, NULL, s, "d,v,t", dreg, treg, sreg);
+      macro_build (NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
+                  BFD_RELOC_LO16);
       return;
 
     case M_SLE_I:      /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
@@ -7209,10 +7536,9 @@ macro2 (ip)
       s = "sltu";
     slei:
       load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
-                  dreg, AT, sreg);
-      macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
-                  (int) BFD_RELOC_LO16);
+      macro_build (NULL, &icnt, NULL, s, "d,v,t", dreg, AT, sreg);
+      macro_build (NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
+                  BFD_RELOC_LO16);
       break;
 
     case M_SLT_I:
@@ -7220,13 +7546,12 @@ macro2 (ip)
          && imm_expr.X_add_number >= -0x8000
          && imm_expr.X_add_number < 0x8000)
        {
-         macro_build ((char *) NULL, &icnt, &imm_expr, "slti", "t,r,j",
-                      dreg, sreg, (int) BFD_RELOC_LO16);
+         macro_build (NULL, &icnt, &imm_expr, "slti", "t,r,j", dreg, sreg,
+                      BFD_RELOC_LO16);
          return;
        }
       load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
-                  dreg, sreg, AT);
+      macro_build (NULL, &icnt, NULL, "slt", "d,v,t", dreg, sreg, AT);
       break;
 
     case M_SLTU_I:
@@ -7234,53 +7559,47 @@ macro2 (ip)
          && imm_expr.X_add_number >= -0x8000
          && imm_expr.X_add_number < 0x8000)
        {
-         macro_build ((char *) NULL, &icnt, &imm_expr, "sltiu", "t,r,j",
-                      dreg, sreg, (int) BFD_RELOC_LO16);
+         macro_build (NULL, &icnt, &imm_expr, "sltiu", "t,r,j", dreg, sreg,
+                      BFD_RELOC_LO16);
          return;
        }
       load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
-                  "d,v,t", dreg, sreg, AT);
+      macro_build (NULL, &icnt, NULL, "sltu", "d,v,t", dreg, sreg, AT);
       break;
 
     case M_SNE:
       if (sreg == 0)
-       macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
-                    "d,v,t", dreg, 0, treg);
+       macro_build (NULL, &icnt,NULL, "sltu","d,v,t", dreg, 0, treg);
       else if (treg == 0)
-       macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
-                    "d,v,t", dreg, 0, sreg);
+       macro_build (NULL, &icnt, NULL, "sltu", "d,v,t", dreg, 0, sreg);
       else
        {
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
-                      "d,v,t", dreg, sreg, treg);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
-                      "d,v,t", dreg, 0, dreg);
+         macro_build (NULL, &icnt, NULL, "xor", "d,v,t", dreg, sreg, treg);
+         macro_build (NULL, &icnt, NULL, "sltu", "d,v,t", dreg, 0, dreg);
        }
       return;
 
     case M_SNE_I:
       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
        {
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
-                      "d,v,t", dreg, 0, sreg);
+         macro_build (NULL, &icnt, NULL, "sltu", "d,v,t", dreg, 0, sreg);
          return;
        }
       if (sreg == 0)
        {
          as_warn (_("Instruction %s: result is always true"),
                   ip->insn_mo->name);
-         macro_build ((char *) NULL, &icnt, &expr1,
+         macro_build (NULL, &icnt, &expr1,
                       HAVE_32BIT_GPRS ? "addiu" : "daddiu",
-                      "t,r,j", dreg, 0, (int) BFD_RELOC_LO16);
+                      "t,r,j", dreg, 0, BFD_RELOC_LO16);
          return;
        }
       if (imm_expr.X_op == O_constant
          && imm_expr.X_add_number >= 0
          && imm_expr.X_add_number < 0x10000)
        {
-         macro_build ((char *) NULL, &icnt, &imm_expr, "xori", "t,r,i",
-                      dreg, sreg, (int) BFD_RELOC_LO16);
+         macro_build (NULL, &icnt, &imm_expr, "xori", "t,r,i", dreg, sreg,
+                      BFD_RELOC_LO16);
          used_at = 0;
        }
       else if (imm_expr.X_op == O_constant
@@ -7288,20 +7607,18 @@ macro2 (ip)
               && imm_expr.X_add_number < 0)
        {
          imm_expr.X_add_number = -imm_expr.X_add_number;
-         macro_build ((char *) NULL, &icnt, &imm_expr,
+         macro_build (NULL, &icnt, &imm_expr,
                       HAVE_32BIT_GPRS ? "addiu" : "daddiu",
-                      "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
+                      "t,r,j", dreg, sreg, BFD_RELOC_LO16);
          used_at = 0;
        }
       else
        {
          load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
-         macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
-                      "d,v,t", dreg, sreg, AT);
+         macro_build (NULL, &icnt, NULL, "xor", "d,v,t", dreg, sreg, AT);
          used_at = 1;
        }
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
-                  "d,v,t", dreg, 0, dreg);
+      macro_build (NULL, &icnt, NULL, "sltu", "d,v,t", dreg, 0, dreg);
       if (used_at)
        break;
       return;
@@ -7314,14 +7631,13 @@ macro2 (ip)
          && imm_expr.X_add_number <= 0x8000)
        {
          imm_expr.X_add_number = -imm_expr.X_add_number;
-         macro_build ((char *) NULL, &icnt, &imm_expr,
-                      dbl ? "daddi" : "addi",
-                      "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
+         macro_build (NULL, &icnt, &imm_expr, dbl ? "daddi" : "addi",
+                      "t,r,j", dreg, sreg, BFD_RELOC_LO16);
          return;
        }
       load_register (&icnt, AT, &imm_expr, dbl);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                  dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
+      macro_build (NULL, &icnt, NULL, dbl ? "dsub" : "sub", "d,v,t",
+                  dreg, sreg, AT);
       break;
 
     case M_DSUBU_I:
@@ -7332,14 +7648,13 @@ macro2 (ip)
          && imm_expr.X_add_number <= 0x8000)
        {
          imm_expr.X_add_number = -imm_expr.X_add_number;
-         macro_build ((char *) NULL, &icnt, &imm_expr,
-                      dbl ? "daddiu" : "addiu",
-                      "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
+         macro_build (NULL, &icnt, &imm_expr, dbl ? "daddiu" : "addiu",
+                      "t,r,j", dreg, sreg, BFD_RELOC_LO16);
          return;
        }
       load_register (&icnt, AT, &imm_expr, dbl);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                  dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
+      macro_build (NULL, &icnt, NULL, dbl ? "dsubu" : "subu", "d,v,t",
+                  dreg, sreg, AT);
       break;
 
     case M_TEQ_I:
@@ -7361,8 +7676,7 @@ macro2 (ip)
       s = "tne";
     trap:
       load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "s,t", sreg,
-                  AT);
+      macro_build (NULL, &icnt, NULL, s, "s,t", sreg, AT);
       break;
 
     case M_TRUNCWS:
@@ -7375,28 +7689,25 @@ macro2 (ip)
        * Is the double cfc1 instruction a bug in the mips assembler;
        * or is there a reason for it?
        */
-      mips_emit_delays (true);
+      mips_emit_delays (TRUE);
       ++mips_opts.noreorder;
       mips_any_noreorder = 1;
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "cfc1", "t,G",
-                  treg, RA);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "cfc1", "t,G",
-                  treg, RA);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
+      macro_build (NULL, &icnt, NULL, "cfc1", "t,G", treg, RA);
+      macro_build (NULL, &icnt, NULL, "cfc1", "t,G", treg, RA);
+      macro_build (NULL, &icnt, NULL, "nop", "");
       expr1.X_add_number = 3;
-      macro_build ((char *) NULL, &icnt, &expr1, "ori", "t,r,i", AT, treg,
-                  (int) BFD_RELOC_LO16);
+      macro_build (NULL, &icnt, &expr1, "ori", "t,r,i", AT, treg,
+                  BFD_RELOC_LO16);
       expr1.X_add_number = 2;
-      macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", AT, AT,
-                    (int) BFD_RELOC_LO16);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "ctc1", "t,G",
-                  AT, RA);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-             mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S", dreg, sreg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "ctc1", "t,G",
-                  treg, RA);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
+      macro_build (NULL, &icnt, &expr1, "xori", "t,r,i", AT, AT,
+                  BFD_RELOC_LO16);
+      macro_build (NULL, &icnt, NULL, "ctc1", "t,G", AT, RA);
+      macro_build (NULL, &icnt, NULL, "nop", "");
+      macro_build (NULL, &icnt, NULL,
+                  mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s",
+                  "D,S", dreg, sreg);
+      macro_build (NULL, &icnt, NULL, "ctc1", "t,G", treg, RA);
+      macro_build (NULL, &icnt, NULL, "nop", "");
       --mips_opts.noreorder;
       break;
 
@@ -7408,21 +7719,18 @@ macro2 (ip)
     ulh:
       if (offset_expr.X_add_number >= 0x7fff)
        as_bad (_("operand overflow"));
-      /* avoid load delay */
       if (! target_big_endian)
        ++offset_expr.X_add_number;
-      macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, breg);
+      macro_build (NULL, &icnt, &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 ((char *) NULL, &icnt, &offset_expr, "lbu", "t,o(b)", AT,
-                  (int) BFD_RELOC_LO16, breg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll", "d,w,<",
-                  treg, treg, 8);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or", "d,v,t",
-                  treg, treg, AT);
+      macro_build (NULL, &icnt, &offset_expr, "lbu", "t,o(b)", treg,
+                  BFD_RELOC_LO16, breg);
+      macro_build (NULL, &icnt, NULL, "sll", "d,w,<", AT, AT, 8);
+      macro_build (NULL, &icnt, NULL, "or", "d,v,t", treg, treg, AT);
       break;
 
     case M_ULD:
@@ -7437,17 +7745,29 @@ macro2 (ip)
     ulw:
       if (offset_expr.X_add_number >= 0x8000 - off)
        as_bad (_("operand overflow"));
+      if (treg != breg)
+       tempreg = treg;
+      else
+       tempreg = AT;
       if (! target_big_endian)
        offset_expr.X_add_number += off;
-      macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, breg);
+      macro_build (NULL, &icnt, &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 ((char *) NULL, &icnt, &offset_expr, s2, "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, breg);
-      return;
+      macro_build (NULL, &icnt, &offset_expr, s2, "t,o(b)", tempreg,
+                  BFD_RELOC_LO16, breg);
+
+      /* If necessary, move the result in tempreg the final destination.  */
+      if (treg == tempreg)
+        return;
+      /* Protect second load's delay slot.  */
+      if (!gpr_interlocks)
+       macro_build (NULL, &icnt, NULL, "nop", "");
+      move_register (&icnt, treg, tempreg);
+      break;
 
     case M_ULD_A:
       s = "ldl";
@@ -7462,21 +7782,20 @@ macro2 (ip)
       used_at = 1;
       load_address (&icnt, AT, &offset_expr, &used_at);
       if (breg != 0)
-       macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                    HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                    "d,v,t", AT, AT, breg);
+       macro_build (NULL, &icnt, 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 ((char *) NULL, &icnt, &expr1, s, "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, AT);
+      macro_build (NULL, &icnt, &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 ((char *) NULL, &icnt, &expr1, s2, "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, AT);
+      macro_build (NULL, &icnt, &expr1, s2, "t,o(b)", treg,
+                  BFD_RELOC_LO16, AT);
       break;
 
     case M_ULH_A:
@@ -7484,24 +7803,21 @@ macro2 (ip)
       used_at = 1;
       load_address (&icnt, AT, &offset_expr, &used_at);
       if (breg != 0)
-       macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                    HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                    "d,v,t", AT, AT, breg);
+       macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                    AT, AT, breg);
       if (target_big_endian)
        expr1.X_add_number = 0;
-      macro_build ((char *) NULL, &icnt, &expr1,
-                  mask == M_ULH_A ? "lb" : "lbu", "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, AT);
+      macro_build (NULL, &icnt, &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 ((char *) NULL, &icnt, &expr1, "lbu", "t,o(b)", AT,
-                  (int) BFD_RELOC_LO16, AT);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll", "d,w,<",
-                  treg, treg, 8);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or", "d,v,t",
-                  treg, treg, AT);
+      macro_build (NULL, &icnt, &expr1, "lbu", "t,o(b)",
+                  AT, BFD_RELOC_LO16, AT);
+      macro_build (NULL, &icnt, NULL, "sll", "d,w,<", treg, treg, 8);
+      macro_build (NULL, &icnt, NULL, "or", "d,v,t", treg, treg, AT);
       break;
 
     case M_USH:
@@ -7509,16 +7825,15 @@ macro2 (ip)
        as_bad (_("operand overflow"));
       if (target_big_endian)
        ++offset_expr.X_add_number;
-      macro_build ((char *) NULL, &icnt, &offset_expr, "sb", "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, breg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl", "d,w,<",
-                  AT, treg, 8);
+      macro_build (NULL, &icnt, &offset_expr, "sb", "t,o(b)", treg,
+                  BFD_RELOC_LO16, breg);
+      macro_build (NULL, &icnt, NULL, "srl", "d,w,<", AT, treg, 8);
       if (target_big_endian)
        --offset_expr.X_add_number;
       else
        ++offset_expr.X_add_number;
-      macro_build ((char *) NULL, &icnt, &offset_expr, "sb", "t,o(b)", AT,
-                  (int) BFD_RELOC_LO16, breg);
+      macro_build (NULL, &icnt, &offset_expr, "sb", "t,o(b)", AT,
+                  BFD_RELOC_LO16, breg);
       break;
 
     case M_USD:
@@ -7535,14 +7850,14 @@ macro2 (ip)
        as_bad (_("operand overflow"));
       if (! target_big_endian)
        offset_expr.X_add_number += off;
-      macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, breg);
+      macro_build (NULL, &icnt, &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 ((char *) NULL, &icnt, &offset_expr, s2, "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, breg);
+      macro_build (NULL, &icnt, &offset_expr, s2, "t,o(b)", treg,
+                  BFD_RELOC_LO16, breg);
       return;
 
     case M_USD_A:
@@ -7558,52 +7873,47 @@ macro2 (ip)
       used_at = 1;
       load_address (&icnt, AT, &offset_expr, &used_at);
       if (breg != 0)
-       macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                    HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                    "d,v,t", AT, AT, breg);
+       macro_build (NULL, &icnt, 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 ((char *) NULL, &icnt, &expr1, s, "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, AT);
+      macro_build (NULL, &icnt, &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 ((char *) NULL, &icnt, &expr1, s2, "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, AT);
+      macro_build (NULL, &icnt, &expr1, s2, "t,o(b)", treg,
+                  BFD_RELOC_LO16, AT);
       break;
 
     case M_USH_A:
       used_at = 1;
       load_address (&icnt, AT, &offset_expr, &used_at);
       if (breg != 0)
-       macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                    HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-                    "d,v,t", AT, AT, breg);
+       macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+                    AT, AT, breg);
       if (! target_big_endian)
        expr1.X_add_number = 0;
-      macro_build ((char *) NULL, &icnt, &expr1, "sb", "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, AT);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl", "d,w,<",
-                  treg, treg, 8);
+      macro_build (NULL, &icnt, &expr1, "sb", "t,o(b)", treg,
+                  BFD_RELOC_LO16, AT);
+      macro_build (NULL, &icnt, NULL, "srl", "d,w,<", treg, treg, 8);
       if (! target_big_endian)
        expr1.X_add_number = 1;
       else
        expr1.X_add_number = 0;
-      macro_build ((char *) NULL, &icnt, &expr1, "sb", "t,o(b)", treg,
-                  (int) BFD_RELOC_LO16, AT);
+      macro_build (NULL, &icnt, &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 ((char *) NULL, &icnt, &expr1, "lbu", "t,o(b)", AT,
-                  (int) BFD_RELOC_LO16, AT);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll", "d,w,<",
-                  treg, treg, 8);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or", "d,v,t",
-                  treg, treg, AT);
+      macro_build (NULL, &icnt, &expr1, "lbu", "t,o(b)", AT,
+                  BFD_RELOC_LO16, AT);
+      macro_build (NULL, &icnt, NULL, "sll", "d,w,<", treg, treg, 8);
+      macro_build (NULL, &icnt, NULL, "or", "d,v,t", treg, treg, AT);
       break;
 
     default:
@@ -7619,8 +7929,7 @@ macro2 (ip)
 /* Implement macros in mips16 mode.  */
 
 static void
-mips16_macro (ip)
-     struct mips_cl_insn *ip;
+mips16_macro (struct mips_cl_insn *ip)
 {
   int mask;
   int xreg, yreg, zreg, tmp;
@@ -7659,23 +7968,21 @@ mips16_macro (ip)
     case M_REM_3:
       s = "mfhi";
     do_div3:
-      mips_emit_delays (true);
+      mips_emit_delays (TRUE);
       ++mips_opts.noreorder;
       mips_any_noreorder = 1;
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                  dbl ? "ddiv" : "div",
-                  "0,x,y", xreg, yreg);
+      macro_build (NULL, &icnt, NULL, dbl ? "ddiv" : "div", "0,x,y",
+                  xreg, yreg);
       expr1.X_add_number = 2;
-      macro_build ((char *) NULL, &icnt, &expr1, "bnez", "x,p", yreg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break", "6",
-                  7);
+      macro_build (NULL, &icnt, &expr1, "bnez", "x,p", yreg);
+      macro_build (NULL, &icnt, NULL, "break", "6", 7);
 
       /* FIXME: The normal code checks for of -1 / -0x80000000 here,
          since that causes an overflow.  We should do that as well,
          but I don't see how to do the comparisons without a temporary
          register.  */
       --mips_opts.noreorder;
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "x", zreg);
+      macro_build (NULL, &icnt, NULL, s, "x", zreg);
       break;
 
     case M_DIVU_3:
@@ -7694,26 +8001,23 @@ mips16_macro (ip)
       s = "ddivu";
       s2 = "mfhi";
     do_divu3:
-      mips_emit_delays (true);
+      mips_emit_delays (TRUE);
       ++mips_opts.noreorder;
       mips_any_noreorder = 1;
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "0,x,y",
-                  xreg, yreg);
+      macro_build (NULL, &icnt, NULL, s, "0,x,y", xreg, yreg);
       expr1.X_add_number = 2;
-      macro_build ((char *) NULL, &icnt, &expr1, "bnez", "x,p", yreg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
-                  "6", 7);
+      macro_build (NULL, &icnt, &expr1, "bnez", "x,p", yreg);
+      macro_build (NULL, &icnt, NULL, "break", "6", 7);
       --mips_opts.noreorder;
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "x", zreg);
+      macro_build (NULL, &icnt, NULL, s2, "x", zreg);
       break;
 
     case M_DMUL:
       dbl = 1;
     case M_MUL:
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                  dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "x",
-                  zreg);
+      macro_build (NULL, &icnt, NULL, dbl ? "dmultu" : "multu", "x,y",
+                  xreg, yreg);
+      macro_build (NULL, &icnt, NULL, "mflo", "x", zreg);
       return;
 
     case M_DSUBU_I:
@@ -7724,24 +8028,22 @@ mips16_macro (ip)
       if (imm_expr.X_op != O_constant)
        as_bad (_("Unsupported large constant"));
       imm_expr.X_add_number = -imm_expr.X_add_number;
-      macro_build ((char *) NULL, &icnt, &imm_expr,
-                  dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
+      macro_build (NULL, &icnt, &imm_expr, dbl ? "daddiu" : "addiu", "y,x,4",
+                  yreg, xreg);
       break;
 
     case M_SUBU_I_2:
       if (imm_expr.X_op != O_constant)
        as_bad (_("Unsupported large constant"));
       imm_expr.X_add_number = -imm_expr.X_add_number;
-      macro_build ((char *) NULL, &icnt, &imm_expr, "addiu",
-                  "x,k", xreg);
+      macro_build (NULL, &icnt, &imm_expr, "addiu", "x,k", xreg);
       break;
 
     case M_DSUBU_I_2:
       if (imm_expr.X_op != O_constant)
        as_bad (_("Unsupported large constant"));
       imm_expr.X_add_number = -imm_expr.X_add_number;
-      macro_build ((char *) NULL, &icnt, &imm_expr, "daddiu",
-                  "y,j", yreg);
+      macro_build (NULL, &icnt, &imm_expr, "daddiu", "y,j", yreg);
       break;
 
     case M_BEQ:
@@ -7790,9 +8092,8 @@ mips16_macro (ip)
       yreg = tmp;
 
     do_branch:
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "x,y",
-                  xreg, yreg);
-      macro_build ((char *) NULL, &icnt, &offset_expr, s2, "p");
+      macro_build (NULL, &icnt, NULL, s, "x,y", xreg, yreg);
+      macro_build (NULL, &icnt, &offset_expr, s2, "p");
       break;
 
     case M_BEQ_I:
@@ -7851,19 +8152,18 @@ mips16_macro (ip)
       ++imm_expr.X_add_number;
 
     do_branch_i:
-      macro_build ((char *) NULL, &icnt, &imm_expr, s, s3, xreg);
-      macro_build ((char *) NULL, &icnt, &offset_expr, s2, "p");
+      macro_build (NULL, &icnt, &imm_expr, s, s3, xreg);
+      macro_build (NULL, &icnt, &offset_expr, s2, "p");
       break;
 
     case M_ABS:
       expr1.X_add_number = 0;
-      macro_build ((char *) NULL, &icnt, &expr1, "slti", "x,8", yreg);
+      macro_build (NULL, &icnt, &expr1, "slti", "x,8", yreg);
       if (xreg != yreg)
        move_register (&icnt, xreg, yreg);
       expr1.X_add_number = 2;
-      macro_build ((char *) NULL, &icnt, &expr1, "bteqz", "p");
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-                  "neg", "x,w", xreg, xreg);
+      macro_build (NULL, &icnt, &expr1, "bteqz", "p");
+      macro_build (NULL, &icnt, NULL, "neg", "x,w", xreg, xreg);
     }
 }
 
@@ -7871,8 +8171,7 @@ mips16_macro (ip)
    by the match/mask part of the instruction definition, or by the
    operand list.  */
 static int
-validate_mips_insn (opc)
-     const struct mips_opcode *opc;
+validate_mips_insn (const struct mips_opcode *opc)
 {
   const char *p = opc->args;
   char c;
@@ -7891,6 +8190,25 @@ validate_mips_insn (opc)
       case ',': break;
       case '(': break;
       case ')': break;
+      case '+':
+       switch (c = *p++)
+         {
+         case 'A': USE_BITS (OP_MASK_SHAMT,    OP_SH_SHAMT);   break;
+         case 'B': USE_BITS (OP_MASK_INSMSB,   OP_SH_INSMSB);  break;
+         case 'C': USE_BITS (OP_MASK_EXTMSBD,  OP_SH_EXTMSBD); break;
+         case 'D': USE_BITS (OP_MASK_RD,       OP_SH_RD);
+                   USE_BITS (OP_MASK_SEL,      OP_SH_SEL);     break;
+         case 'E': USE_BITS (OP_MASK_SHAMT,    OP_SH_SHAMT);   break;
+         case 'F': USE_BITS (OP_MASK_INSMSB,   OP_SH_INSMSB);  break;
+         case 'G': USE_BITS (OP_MASK_EXTMSBD,  OP_SH_EXTMSBD); break;
+         case 'H': USE_BITS (OP_MASK_EXTMSBD,  OP_SH_EXTMSBD); break;
+         case 'I': break;
+         default:
+           as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
+                   c, opc->name, opc->args);
+           return 0;
+         }
+       break;
       case '<': USE_BITS (OP_MASK_SHAMT,       OP_SH_SHAMT);   break;
       case '>':        USE_BITS (OP_MASK_SHAMT,        OP_SH_SHAMT);   break;
       case 'A': break;
@@ -7903,6 +8221,7 @@ validate_mips_insn (opc)
       case 'H': USE_BITS (OP_MASK_SEL,         OP_SH_SEL);     break;
       case 'I': break;
       case 'J': USE_BITS (OP_MASK_CODE19,       OP_SH_CODE19);  break;
+      case 'K':        USE_BITS (OP_MASK_RD,           OP_SH_RD);      break;
       case 'L': break;
       case 'M':        USE_BITS (OP_MASK_CCC,          OP_SH_CCC);     break;
       case 'N':        USE_BITS (OP_MASK_BCC,          OP_SH_BCC);     break;
@@ -7966,9 +8285,7 @@ validate_mips_insn (opc)
    is an address expression.  */
 
 static void
-mips_ip (str, ip)
-     char *str;
-     struct mips_cl_insn *ip;
+mips_ip (char *str, struct mips_cl_insn *ip)
 {
   char *s;
   const char *args;
@@ -7977,6 +8294,8 @@ mips_ip (str, ip)
   char *argsStart;
   unsigned int regno;
   unsigned int lastregno = 0;
+  unsigned int lastpos = 0;
+  unsigned int limlo, limhi;
   char *s_reset;
   char save_c = 0;
 
@@ -8033,7 +8352,7 @@ mips_ip (str, ip)
   argsStart = s;
   for (;;)
     {
-      boolean ok;
+      bfd_boolean ok;
 
       assert (strcmp (insn->name, str) == 0);
 
@@ -8042,15 +8361,15 @@ mips_ip (str, ip)
                             | (file_ase_mips16 ? INSN_MIPS16 : 0)
                             | (mips_opts.ase_mdmx ? INSN_MDMX : 0)
                             | (mips_opts.ase_mips3d ? INSN_MIPS3D : 0)),
-                           mips_arch))
-       ok = true;
+                           mips_opts.arch))
+       ok = TRUE;
       else
-       ok = false;
+       ok = FALSE;
 
       if (insn->pinfo != INSN_MACRO)
        {
-         if (mips_arch == CPU_R4650 && (insn->pinfo & FP_D) != 0)
-           ok = false;
+         if (mips_opts.arch == CPU_R4650 && (insn->pinfo & FP_D) != 0)
+           ok = FALSE;
        }
 
       if (! ok)
@@ -8066,15 +8385,10 @@ mips_ip (str, ip)
              if (!insn_error)
                {
                  static char buf[100];
-                 if (mips_arch_info->is_isa)
-                   sprintf (buf,
-                            _("opcode not supported at this ISA level (%s)"),
-                            mips_cpu_info_from_isa (mips_opts.isa)->name);
-                 else
-                   sprintf (buf,
-                            _("opcode not supported on this processor: %s (%s)"),
-                            mips_arch_info->name,
-                            mips_cpu_info_from_isa (mips_opts.isa)->name);
+                 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)
@@ -8142,6 +8456,123 @@ mips_ip (str, ip)
                continue;
              break;
 
+           case '+':           /* Opcode extension character.  */
+             switch (*++args)
+               {
+               case 'A':               /* ins/ext position, becomes LSB.  */
+                 limlo = 0;
+                 limhi = 31;
+                 goto do_lsb;
+               case 'E':
+                 limlo = 32;
+                 limhi = 63;
+                 goto do_lsb;
+do_lsb:
+                 my_getExpression (&imm_expr, s);
+                 check_absolute_expr (ip, &imm_expr);
+                 if ((unsigned long) imm_expr.X_add_number < limlo
+                     || (unsigned long) imm_expr.X_add_number > limhi)
+                   {
+                     as_bad (_("Improper position (%lu)"),
+                             (unsigned long) imm_expr.X_add_number);
+                     imm_expr.X_add_number = limlo;
+                   }
+                 lastpos = imm_expr.X_add_number;
+                 ip->insn_opcode |= (imm_expr.X_add_number
+                                     & OP_MASK_SHAMT) << OP_SH_SHAMT;
+                 imm_expr.X_op = O_absent;
+                 s = expr_end;
+                 continue;
+
+               case 'B':               /* ins size, becomes MSB.  */
+                 limlo = 1;
+                 limhi = 32;
+                 goto do_msb;
+               case 'F':
+                 limlo = 33;
+                 limhi = 64;
+                 goto do_msb;
+do_msb:
+                 my_getExpression (&imm_expr, s);
+                 check_absolute_expr (ip, &imm_expr);
+                 /* Check for negative input so that small negative numbers
+                    will not succeed incorrectly.  The checks against
+                    (pos+size) transitively check "size" itself,
+                    assuming that "pos" is reasonable.  */
+                 if ((long) imm_expr.X_add_number < 0
+                     || ((unsigned long) imm_expr.X_add_number
+                         + lastpos) < limlo
+                     || ((unsigned long) imm_expr.X_add_number
+                         + lastpos) > limhi)
+                   {
+                     as_bad (_("Improper insert size (%lu, position %lu)"),
+                             (unsigned long) imm_expr.X_add_number,
+                             (unsigned long) lastpos);
+                     imm_expr.X_add_number = limlo - lastpos;
+                   }
+                 ip->insn_opcode |= ((lastpos + imm_expr.X_add_number - 1)
+                                     & OP_MASK_INSMSB) << OP_SH_INSMSB;
+                 imm_expr.X_op = O_absent;
+                 s = expr_end;
+                 continue;
+
+               case 'C':               /* ext size, becomes MSBD.  */
+                 limlo = 1;
+                 limhi = 32;
+                 goto do_msbd;
+               case 'G':
+                 limlo = 33;
+                 limhi = 64;
+                 goto do_msbd;
+               case 'H':
+                 limlo = 33;
+                 limhi = 64;
+                 goto do_msbd;
+do_msbd:
+                 my_getExpression (&imm_expr, s);
+                 check_absolute_expr (ip, &imm_expr);
+                 /* Check for negative input so that small negative numbers
+                    will not succeed incorrectly.  The checks against
+                    (pos+size) transitively check "size" itself,
+                    assuming that "pos" is reasonable.  */
+                 if ((long) imm_expr.X_add_number < 0
+                     || ((unsigned long) imm_expr.X_add_number
+                         + lastpos) < limlo
+                     || ((unsigned long) imm_expr.X_add_number
+                         + lastpos) > limhi)
+                   {
+                     as_bad (_("Improper extract size (%lu, position %lu)"),
+                             (unsigned long) imm_expr.X_add_number,
+                             (unsigned long) lastpos);
+                     imm_expr.X_add_number = limlo - lastpos;
+                   }
+                 ip->insn_opcode |= ((imm_expr.X_add_number - 1)
+                                     & OP_MASK_EXTMSBD) << OP_SH_EXTMSBD;
+                 imm_expr.X_op = O_absent;
+                 s = expr_end;
+                 continue;
+
+               case 'D':
+                 /* +D is for disassembly only; never match.  */
+                 break;
+
+               case 'I':
+                 /* "+I" is like "I", except that imm2_expr is used.  */
+                 my_getExpression (&imm2_expr, s);
+                 if (imm2_expr.X_op != O_big
+                     && imm2_expr.X_op != O_constant)
+                 insn_error = _("absolute expression required");
+                 s = expr_end;
+                 continue;
+
+               default:
+                 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
+                   *args, insn->name, insn->args);
+                 /* Further processing is fruitless.  */
+                 return;
+               }
+             break;
+
            case '<':           /* must be at least one digit */
              /*
               * According to the manual, if the shift amount is greater
@@ -8279,6 +8710,7 @@ mips_ip (str, ip)
            case 'w':           /* both dest and target */
            case 'E':           /* coprocessor target register */
            case 'G':           /* coprocessor destination register */
+           case 'K':           /* 'rdhwr' destination register */
            case 'x':           /* ignore register name */
            case 'z':           /* must be zero register */
            case 'U':           /* destination register (clo/clz).  */
@@ -8300,7 +8732,7 @@ mips_ip (str, ip)
                      if (regno > 31)
                        as_bad (_("Invalid register number (%d)"), regno);
                    }
-                 else if (*args == 'E' || *args == 'G')
+                 else if (*args == 'E' || *args == 'G' || *args == 'K')
                    goto notreg;
                  else
                    {
@@ -8374,7 +8806,8 @@ mips_ip (str, ip)
                  if (regno == AT
                      && ! mips_opts.noat
                      && *args != 'E'
-                     && *args != 'G')
+                     && *args != 'G'
+                     && *args != 'K')
                    as_warn (_("Used $at without \".set noat\""));
                  c = *args;
                  if (*s == ' ')
@@ -8404,6 +8837,7 @@ mips_ip (str, ip)
                      break;
                    case 'd':
                    case 'G':
+                   case 'K':
                      ip->insn_opcode |= regno << OP_SH_RD;
                      break;
                    case 'U':
@@ -8834,178 +9268,84 @@ mips_ip (str, ip)
            case 'i':           /* 16 bit unsigned immediate */
            case 'j':           /* 16 bit signed immediate */
              *imm_reloc = BFD_RELOC_LO16;
-             c = my_getSmallExpression (&imm_expr, s);
-             if (c != S_EX_NONE)
-               {
-                 if (c != S_EX_LO)
-                   {
-                     if (c == S_EX_HI)
-                       {
-                         *imm_reloc = BFD_RELOC_HI16_S;
-                         imm_unmatched_hi = true;
-                       }
-#ifdef OBJ_ELF
-                     else if (c == S_EX_HIGHEST)
-                       *imm_reloc = BFD_RELOC_MIPS_HIGHEST;
-                     else if (c == S_EX_HIGHER)
-                       *imm_reloc = BFD_RELOC_MIPS_HIGHER;
-                     else if (c == S_EX_GP_REL)
-                       {
-                         /* This occurs in NewABI only.  */
-                         c = my_getSmallExpression (&imm_expr, s);
-                         if (c != S_EX_NEG)
-                           as_bad (_("bad composition of relocations"));
-                         else
-                           {
-                             c = my_getSmallExpression (&imm_expr, s);
-                             if (c != S_EX_LO)
-                               as_bad (_("bad composition of relocations"));
-                             else
-                               {
-                                 imm_reloc[0] = BFD_RELOC_GPREL16;
-                                 imm_reloc[1] = BFD_RELOC_MIPS_SUB;
-                                 imm_reloc[2] = BFD_RELOC_LO16;
-                               }
-                           }
-                       }
-#endif
-                     else
-                       *imm_reloc = BFD_RELOC_HI16;
-                   }
-                 else if (imm_expr.X_op == O_constant)
-                   imm_expr.X_add_number &= 0xffff;
-               }
-             if (*args == 'i')
-               {
-                 if ((c == S_EX_NONE && imm_expr.X_op != O_constant)
-                     || ((imm_expr.X_add_number < 0
-                          || imm_expr.X_add_number >= 0x10000)
-                         && imm_expr.X_op == O_constant))
-                   {
-                     if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
-                         !strcmp (insn->name, insn[1].name))
-                       break;
-                     if (imm_expr.X_op == O_constant
-                         || imm_expr.X_op == O_big)
-                       as_bad (_("16 bit expression not in range 0..65535"));
-                   }
-               }
-             else
+             if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
                {
                  int more;
-                 offsetT max;
-
-                 /* The upper bound should be 0x8000, but
-                    unfortunately the MIPS assembler accepts numbers
-                    from 0x8000 to 0xffff and sign extends them, and
-                    we want to be compatible.  We only permit this
-                    extended range for an instruction which does not
-                    provide any further alternates, since those
-                    alternates may handle other cases.  People should
-                    use the numbers they mean, rather than relying on
-                    a mysterious sign extension.  */
-                 more = (insn + 1 < &mips_opcodes[NUMOPCODES] &&
-                         strcmp (insn->name, insn[1].name) == 0);
-                 if (more)
-                   max = 0x8000;
+                 offsetT minval, maxval;
+
+                 more = (insn + 1 < &mips_opcodes[NUMOPCODES]
+                         && strcmp (insn->name, insn[1].name) == 0);
+
+                 /* If the expression was written as an unsigned number,
+                    only treat it as signed if there are no more
+                    alternatives.  */
+                 if (more
+                     && *args == 'j'
+                     && sizeof (imm_expr.X_add_number) <= 4
+                     && imm_expr.X_op == O_constant
+                     && imm_expr.X_add_number < 0
+                     && imm_expr.X_unsigned
+                     && HAVE_64BIT_GPRS)
+                   break;
+
+                 /* For compatibility with older assemblers, we accept
+                    0x8000-0xffff as signed 16-bit numbers when only
+                    signed numbers are allowed.  */
+                 if (*args == 'i')
+                   minval = 0, maxval = 0xffff;
+                 else if (more)
+                   minval = -0x8000, maxval = 0x7fff;
                  else
-                   max = 0x10000;
-                 if ((c == S_EX_NONE && imm_expr.X_op != O_constant)
-                     || ((imm_expr.X_add_number < -0x8000
-                          || imm_expr.X_add_number >= max)
-                         && imm_expr.X_op == O_constant)
-                     || (more
-                         && imm_expr.X_add_number < 0
-                         && HAVE_64BIT_GPRS
-                         && imm_expr.X_unsigned
-                         && sizeof (imm_expr.X_add_number) <= 4))
+                   minval = -0x8000, maxval = 0xffff;
+
+                 if (imm_expr.X_op != O_constant
+                     || imm_expr.X_add_number < minval
+                     || imm_expr.X_add_number > maxval)
                    {
                      if (more)
                        break;
                      if (imm_expr.X_op == O_constant
                          || imm_expr.X_op == O_big)
-                       as_bad (_("16 bit expression not in range -32768..32767"));
+                       as_bad (_("expression out of range"));
                    }
                }
              s = expr_end;
              continue;
 
            case 'o':           /* 16 bit offset */
-             c = my_getSmallExpression (&offset_expr, s);
+             /* 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 (c == S_EX_NONE
+             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;
 
-             if (c == S_EX_HI)
-               {
-                 if (offset_expr.X_op != O_constant)
-                   break;
-                 offset_expr.X_add_number =
-                   (offset_expr.X_add_number >> 16) & 0xffff;
-               }
-             *offset_reloc = BFD_RELOC_LO16;
              s = expr_end;
              continue;
 
            case 'p':           /* pc relative offset */
-             if (mips_pic == EMBEDDED_PIC)
-               *offset_reloc = BFD_RELOC_16_PCREL_S2;
-             else
-               *offset_reloc = BFD_RELOC_16_PCREL;
+             *offset_reloc = BFD_RELOC_16_PCREL_S2;
              my_getExpression (&offset_expr, s);
              s = expr_end;
              continue;
 
            case 'u':           /* upper 16 bits */
-             c = my_getSmallExpression (&imm_expr, s);
-             *imm_reloc = BFD_RELOC_LO16;
-             if (c != S_EX_NONE)
-               {
-                 if (c != S_EX_LO)
-                   {
-                     if (c == S_EX_HI)
-                       {
-                         *imm_reloc = BFD_RELOC_HI16_S;
-                         imm_unmatched_hi = true;
-                       }
-#ifdef OBJ_ELF
-                     else if (c == S_EX_HIGHEST)
-                       *imm_reloc = BFD_RELOC_MIPS_HIGHEST;
-                     else if (c == S_EX_GP_REL)
-                       {
-                         /* This occurs in NewABI only.  */
-                         c = my_getSmallExpression (&imm_expr, s);
-                         if (c != S_EX_NEG)
-                           as_bad (_("bad composition of relocations"));
-                         else
-                           {
-                             c = my_getSmallExpression (&imm_expr, s);
-                             if (c != S_EX_HI)
-                               as_bad (_("bad composition of relocations"));
-                             else
-                               {
-                                 imm_reloc[0] = BFD_RELOC_GPREL16;
-                                 imm_reloc[1] = BFD_RELOC_MIPS_SUB;
-                                 imm_reloc[2] = BFD_RELOC_HI16_S;
-                               }
-                           }
-                       }
-#endif
-                     else
-                       *imm_reloc = BFD_RELOC_HI16;
-                   }
-                 else if (imm_expr.X_op == O_constant)
-                   imm_expr.X_add_number &= 0xffff;
-               }
-             else if (imm_expr.X_op == O_constant
-                      && (imm_expr.X_add_number < 0
-                          || imm_expr.X_add_number >= 0x10000))
+             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;
@@ -9030,7 +9370,18 @@ mips_ip (str, ip)
                }
              while (ISDIGIT (*s));
              if (regno > 7)
-               as_bad (_("invalid condition code register $fcc%d"), regno);
+               as_bad (_("Invalid condition code register $fcc%d"), regno);
+             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')
                ip->insn_opcode |= regno << OP_SH_BCC;
              else
@@ -9124,9 +9475,7 @@ mips_ip (str, ip)
    requested a small or extended instruction.  */
 
 static void
-mips16_ip (str, ip)
-     char *str;
-     struct mips_cl_insn *ip;
+mips16_ip (char *str, struct mips_cl_insn *ip)
 {
   char *s;
   const char *args;
@@ -9138,8 +9487,8 @@ mips16_ip (str, ip)
 
   insn_error = NULL;
 
-  mips16_small = false;
-  mips16_ext = false;
+  mips16_small = FALSE;
+  mips16_ext = FALSE;
 
   for (s = str; ISLOWER (*s); ++s)
     ;
@@ -9156,14 +9505,14 @@ mips16_ip (str, ip)
       if (s[1] == 't' && s[2] == ' ')
        {
          *s = '\0';
-         mips16_small = true;
+         mips16_small = TRUE;
          s += 3;
          break;
        }
       else if (s[1] == 'e' && s[2] == ' ')
        {
          *s = '\0';
-         mips16_ext = true;
+         mips16_ext = TRUE;
          s += 3;
          break;
        }
@@ -9174,7 +9523,7 @@ mips16_ip (str, ip)
     }
 
   if (mips_opts.noautoextend && ! mips16_ext)
-    mips16_small = true;
+    mips16_small = TRUE;
 
   if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
     {
@@ -9189,11 +9538,12 @@ mips16_ip (str, ip)
 
       ip->insn_mo = insn;
       ip->insn_opcode = insn->match;
-      ip->use_extend = false;
+      ip->use_extend = FALSE;
       imm_expr.X_op = O_absent;
       imm_reloc[0] = BFD_RELOC_UNUSED;
       imm_reloc[1] = BFD_RELOC_UNUSED;
       imm_reloc[2] = BFD_RELOC_UNUSED;
+      imm2_expr.X_op = O_absent;
       offset_expr.X_op = O_absent;
       offset_reloc[0] = BFD_RELOC_UNUSED;
       offset_reloc[1] = BFD_RELOC_UNUSED;
@@ -9221,7 +9571,7 @@ mips16_ip (str, ip)
                      && insn->pinfo != INSN_MACRO)
                    {
                      mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
-                                   imm_expr.X_add_number, true, mips16_small,
+                                   imm_expr.X_add_number, TRUE, mips16_small,
                                    mips16_ext, &ip->insn_opcode,
                                    &ip->use_extend, &ip->extend);
                      imm_expr.X_op = O_absent;
@@ -9459,10 +9809,10 @@ mips16_ip (str, ip)
                  my_getExpression (&imm_expr, s + sizeof "%gprel" - 1);
                  if (imm_expr.X_op == O_symbol)
                    {
-                     mips16_ext = true;
+                     mips16_ext = TRUE;
                      *imm_reloc = BFD_RELOC_MIPS16_GPREL;
                      s = expr_end;
-                     ip->use_extend = true;
+                     ip->use_extend = TRUE;
                      ip->extend = 0;
                      continue;
                    }
@@ -9732,22 +10082,14 @@ static const struct mips16_immed_operand mips16_immed_operands[] =
    WARN is true, warn if EXT does not match reality.  */
 
 static void
-mips16_immed (file, line, type, val, warn, small, ext, insn, use_extend,
-             extend)
-     char *file;
-     unsigned int line;
-     int type;
-     offsetT val;
-     boolean warn;
-     boolean small;
-     boolean ext;
-     unsigned long *insn;
-     boolean *use_extend;
-     unsigned short *extend;
+mips16_immed (char *file, unsigned int line, int type, offsetT val,
+             bfd_boolean warn, bfd_boolean small, bfd_boolean ext,
+             unsigned long *insn, bfd_boolean *use_extend,
+             unsigned short *extend)
 {
   register const struct mips16_immed_operand *op;
   int mintiny, maxtiny;
-  boolean needext;
+  bfd_boolean needext;
 
   op = mips16_immed_operands;
   while (op->type != type)
@@ -9782,9 +10124,9 @@ mips16_immed (file, line, type, val, warn, small, ext, insn, use_extend,
   if ((val & ((1 << op->shift) - 1)) != 0
       || val < (mintiny << op->shift)
       || val > (maxtiny << op->shift))
-    needext = true;
+    needext = TRUE;
   else
-    needext = false;
+    needext = FALSE;
 
   if (warn && ext && ! needext)
     as_warn_where (file, line,
@@ -9796,7 +10138,7 @@ mips16_immed (file, line, type, val, warn, small, ext, insn, use_extend,
     {
       int insnval;
 
-      *use_extend = false;
+      *use_extend = FALSE;
       insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
       insnval <<= op->op_shift;
       *insn |= insnval;
@@ -9820,7 +10162,7 @@ mips16_immed (file, line, type, val, warn, small, ext, insn, use_extend,
        as_bad_where (file, line,
                      _("operand value out of range for instruction"));
 
-      *use_extend = true;
+      *use_extend = TRUE;
       if (op->extbits == 16)
        {
          extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
@@ -9842,228 +10184,127 @@ mips16_immed (file, line, type, val, warn, small, ext, insn, use_extend,
     }
 }
 \f
-static struct percent_op_match
+static const struct percent_op_match
 {
-   const char *str;
-   const enum small_ex_type type;
+  const char *str;
+  bfd_reloc_code_real_type reloc;
 } percent_op[] =
 {
-  {"%lo", S_EX_LO},
+  {"%lo", BFD_RELOC_LO16},
 #ifdef OBJ_ELF
-  {"%call_hi", S_EX_CALL_HI},
-  {"%call_lo", S_EX_CALL_LO},
-  {"%call16", S_EX_CALL16},
-  {"%got_disp", S_EX_GOT_DISP},
-  {"%got_page", S_EX_GOT_PAGE},
-  {"%got_ofst", S_EX_GOT_OFST},
-  {"%got_hi", S_EX_GOT_HI},
-  {"%got_lo", S_EX_GOT_LO},
-  {"%got", S_EX_GOT},
-  {"%gp_rel", S_EX_GP_REL},
-  {"%half", S_EX_HALF},
-  {"%highest", S_EX_HIGHEST},
-  {"%higher", S_EX_HIGHER},
-  {"%neg", S_EX_NEG},
+  {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
+  {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
+  {"%call16", BFD_RELOC_MIPS_CALL16},
+  {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
+  {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
+  {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
+  {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
+  {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
+  {"%got", BFD_RELOC_MIPS_GOT16},
+  {"%gp_rel", BFD_RELOC_GPREL16},
+  {"%half", BFD_RELOC_16},
+  {"%highest", BFD_RELOC_MIPS_HIGHEST},
+  {"%higher", BFD_RELOC_MIPS_HIGHER},
+  {"%neg", BFD_RELOC_MIPS_SUB},
 #endif
-  {"%hi", S_EX_HI}
+  {"%hi", BFD_RELOC_HI16_S}
 };
 
-/* Parse small expression input.  STR gets adjusted to eat up whitespace.
-   It detects valid "%percent_op(...)" and "($reg)" strings.  Percent_op's
-   can be nested, this is handled by blanking the innermost, parsing the
-   rest by subsequent calls.  */
 
-static int
-my_getSmallParser (str, len, nestlevel)
-     char **str;
-     unsigned int *len;
-     int *nestlevel;
-{
-  *len = 0;
-  *str += strspn (*str, " \t");
-  /* Check for expression in parentheses.  */
-  if (**str == '(')
-    {
-      char *b = *str + 1 + strspn (*str + 1, " \t");
-      char *e;
+/* Return true if *STR points to a relocation operator.  When returning true,
+   move *STR over the operator and store its relocation code in *RELOC.
+   Leave both *STR and *RELOC alone when returning false.  */
 
-      /* Check for base register.  */
-      if (b[0] == '$')
-       {
-         if (strchr (b, ')')
-             && (e = b + strcspn (b, ") \t"))
-             && e - b > 1 && e - b < 4)
-           {
-             if ((e - b == 3
-                  && ((b[1] == 'f' && b[2] == 'p')
-                      || (b[1] == 's' && b[2] == 'p')
-                      || (b[1] == 'g' && b[2] == 'p')
-                      || (b[1] == 'a' && b[2] == 't')
-                      || (ISDIGIT (b[1])
-                          && ISDIGIT (b[2]))))
-                 || (ISDIGIT (b[1])))
-               {
-                 *len = strcspn (*str, ")") + 1;
-                 return S_EX_REGISTER;
-               }
-           }
-       }
-      /* Check for percent_op (in parentheses).  */
-      else if (b[0] == '%')
-       {
-         *str = b;
-         return my_getPercentOp (str, len, nestlevel);
-       }
+static bfd_boolean
+parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
+{
+  size_t i;
 
-      /* Some other expression in the parentheses, which can contain
-        parentheses itself. Attempt to find the matching one.  */
+  for (i = 0; i < ARRAY_SIZE (percent_op); i++)
+    if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
       {
-       int pcnt = 1;
-       char *s;
+       *str += strlen (percent_op[i].str);
+       *reloc = percent_op[i].reloc;
 
-       *len = 1;
-       for (s = *str + 1; *s && pcnt; s++, (*len)++)
+       /* Check whether the output BFD supports this relocation.
+          If not, issue an error and fall back on something safe.  */
+       if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
          {
-           if (*s == '(')
-             ++pcnt;
-           else if (*s == ')')
-             --pcnt;
+           as_bad ("relocation %s isn't supported by the current ABI",
+                   percent_op[i].str);
+           *reloc = BFD_RELOC_LO16;
          }
-      }
-    }
-  /* Check for percent_op (outside of parentheses).  */
-  else if (*str[0] == '%')
-    return my_getPercentOp (str, len, nestlevel);
-
-  /* Any other expression.  */
-  return S_EX_NONE;
-}
-
-static int
-my_getPercentOp (str, len, nestlevel)
-     char **str;
-     unsigned int *len;
-     int *nestlevel;
-{
-  char *tmp = *str + 1;
-  unsigned int i = 0;
-
-  while (ISALPHA (*tmp) || *tmp == '_')
-    {
-      *tmp = TOLOWER (*tmp);
-      tmp++;
-    }
-  while (i < (sizeof (percent_op) / sizeof (struct percent_op_match)))
-    {
-      if (strncmp (*str, percent_op[i].str, strlen (percent_op[i].str)))
-       i++;
-      else
-       {
-         int type = percent_op[i].type;
-
-         /* Only %hi and %lo are allowed for OldABI.  */
-         if (! HAVE_NEWABI && type != S_EX_HI && type != S_EX_LO)
-           return S_EX_NONE;
-
-         *len = strlen (percent_op[i].str);
-         ++(*nestlevel);
-         return type;
-       }
-    }
-  return S_EX_NONE;
+       return TRUE;
+      }
+  return FALSE;
 }
 
-static int
-my_getSmallExpression (ep, str)
-     expressionS *ep;
-     char *str;
-{
-  static char *oldstr = NULL;
-  int c = S_EX_NONE;
-  int oldc;
-  int nestlevel = -1;
-  unsigned int len;
 
-  /* Don't update oldstr if the last call had nested percent_op's. We need
-     it to parse the outer ones later.  */
-  if (! oldstr)
-    oldstr = str;
+/* Parse string STR as a 16-bit relocatable operand.  Store the
+   expression in *EP and the relocations in the array starting
+   at RELOC.  Return the number of relocation operators used.
+
+   On exit, EXPR_END points to the first character after the expression.
+   If no relocation operators are used, RELOC[0] is set to BFD_RELOC_LO16.  */
 
+static size_t
+my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
+                      char *str)
+{
+  bfd_reloc_code_real_type reversed_reloc[3];
+  size_t reloc_index, i;
+  int crux_depth, str_depth;
+  char *crux;
+
+  /* Search for the start of the main expression, recoding relocations
+     in REVERSED_RELOC.  End the loop with CRUX pointing to the start
+     of the main expression and with CRUX_DEPTH containing the number
+     of open brackets at that point.  */
+  reloc_index = -1;
+  str_depth = 0;
   do
     {
-      oldc = c;
-      c = my_getSmallParser (&str, &len, &nestlevel);
-      if (c != S_EX_NONE && c != S_EX_REGISTER)
-       str += len;
+      reloc_index++;
+      crux = str;
+      crux_depth = str_depth;
+
+      /* Skip over whitespace and brackets, keeping count of the number
+        of brackets.  */
+      while (*str == ' ' || *str == '\t' || *str == '(')
+       if (*str++ == '(')
+         str_depth++;
     }
-  while (c != S_EX_NONE && c != S_EX_REGISTER);
+  while (*str == '%'
+        && reloc_index < (HAVE_NEWABI ? 3 : 1)
+        && parse_relocation (&str, &reversed_reloc[reloc_index]));
 
-  if (nestlevel >= 0)
-    {
-      /* A percent_op was encountered.  Don't try to get an expression if
-        it is already blanked out.  */
-      if (*(str + strspn (str + 1, " )")) != ')')
-       {
-         char save;
+  my_getExpression (ep, crux);
+  str = expr_end;
 
-         /* Let my_getExpression() stop at the closing parenthesis.  */
-         save = *(str + len);
-         *(str + len) = '\0';
-         my_getExpression (ep, str);
-         *(str + len) = save;
-       }
-      if (nestlevel > 0)
-       {
-         /* Blank out including the % sign and the proper matching
-            parenthesis.  */
-         int pcnt = 1;
-         char *s = strrchr (oldstr, '%');
-         char *end;
+  /* Match every open bracket.  */
+  while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
+    if (*str++ == ')')
+      crux_depth--;
 
-         for (end = strchr (s, '(') + 1; *end && pcnt; end++)
-           {
-             if (*end == '(')
-               ++pcnt;
-             else if (*end == ')')
-               --pcnt;
-           }
+  if (crux_depth > 0)
+    as_bad ("unclosed '('");
 
-         memset (s, ' ', end - s);
-         str = oldstr;
-       }
-      else
-       expr_end = str + len;
+  expr_end = str;
 
-      c = oldc;
-    }
-  else if (c == S_EX_NONE)
-    {
-      my_getExpression (ep, str);
-    }
-  else if (c == S_EX_REGISTER)
-    {
-      ep->X_op = O_constant;
-      expr_end = str;
-      ep->X_add_symbol = NULL;
-      ep->X_op_symbol = NULL;
-      ep->X_add_number = 0;
-    }
+  if (reloc_index == 0)
+    reloc[0] = BFD_RELOC_LO16;
   else
     {
-      as_fatal (_("internal error"));
+      prev_reloc_op_frag = frag_now;
+      for (i = 0; i < reloc_index; i++)
+       reloc[i] = reversed_reloc[reloc_index - 1 - i];
     }
 
-  if (nestlevel <= 0)
-    /* All percent_op's have been handled.  */
-    oldstr = NULL;
-
-  return c;
+  return reloc_index;
 }
 
 static void
-my_getExpression (ep, str)
-     expressionS *ep;
-     char *str;
+my_getExpression (expressionS *ep, char *str)
 {
   char *save_in;
   valueT val;
@@ -10094,10 +10335,7 @@ my_getExpression (ep, str)
    returned, or NULL on OK.  */
 
 char *
-md_atof (type, litP, sizeP)
-     int type;
-     char *litP;
-     int *sizeP;
+md_atof (int type, char *litP, int *sizeP)
 {
   int prec;
   LITTLENUM_TYPE words[4];
@@ -10129,7 +10367,7 @@ md_atof (type, litP, sizeP)
     {
       for (i = prec - 1; i >= 0; i--)
        {
-         md_number_to_chars (litP, (valueT) words[i], 2);
+         md_number_to_chars (litP, words[i], 2);
          litP += 2;
        }
     }
@@ -10137,7 +10375,7 @@ md_atof (type, litP, sizeP)
     {
       for (i = 0; i < prec; i++)
        {
-         md_number_to_chars (litP, (valueT) words[i], 2);
+         md_number_to_chars (litP, words[i], 2);
          litP += 2;
        }
     }
@@ -10146,10 +10384,7 @@ md_atof (type, litP, sizeP)
 }
 
 void
-md_number_to_chars (buf, val, n)
-     char *buf;
-     valueT val;
-     int n;
+md_number_to_chars (char *buf, valueT val, int n)
 {
   if (target_big_endian)
     number_to_chars_bigendian (buf, val, n);
@@ -10161,6 +10396,7 @@ md_number_to_chars (buf, val, n)
 static int support_64bit_objects(void)
 {
   const char **list, **l;
+  int yes;
 
   list = bfd_target_list ();
   for (l = list; *l != NULL; l++)
@@ -10173,8 +10409,9 @@ static int support_64bit_objects(void)
        || strcmp (*l, "elf64-littlemips") == 0)
 #endif
       break;
+  yes = (*l != NULL);
   free (list);
-  return (*l != NULL);
+  return yes;
 }
 #endif /* OBJ_ELF */
 
@@ -10182,92 +10419,112 @@ const char *md_shortopts = "nO::g::G:";
 
 struct option md_longopts[] =
 {
-#define OPTION_MIPS1 (OPTION_MD_BASE + 1)
+  /* Options which specify architecture.  */
+#define OPTION_ARCH_BASE    (OPTION_MD_BASE)
+#define OPTION_MARCH (OPTION_ARCH_BASE + 0)
+  {"march", required_argument, NULL, OPTION_MARCH},
+#define OPTION_MTUNE (OPTION_ARCH_BASE + 1)
+  {"mtune", required_argument, NULL, OPTION_MTUNE},
+#define OPTION_MIPS1 (OPTION_ARCH_BASE + 2)
   {"mips0", no_argument, NULL, OPTION_MIPS1},
   {"mips1", no_argument, NULL, OPTION_MIPS1},
-#define OPTION_MIPS2 (OPTION_MD_BASE + 2)
+#define OPTION_MIPS2 (OPTION_ARCH_BASE + 3)
   {"mips2", no_argument, NULL, OPTION_MIPS2},
-#define OPTION_MIPS3 (OPTION_MD_BASE + 3)
+#define OPTION_MIPS3 (OPTION_ARCH_BASE + 4)
   {"mips3", no_argument, NULL, OPTION_MIPS3},
-#define OPTION_MIPS4 (OPTION_MD_BASE + 4)
+#define OPTION_MIPS4 (OPTION_ARCH_BASE + 5)
   {"mips4", no_argument, NULL, OPTION_MIPS4},
-#define OPTION_MIPS5 (OPTION_MD_BASE + 5)
+#define OPTION_MIPS5 (OPTION_ARCH_BASE + 6)
   {"mips5", no_argument, NULL, OPTION_MIPS5},
-#define OPTION_MIPS32 (OPTION_MD_BASE + 6)
+#define OPTION_MIPS32 (OPTION_ARCH_BASE + 7)
   {"mips32", no_argument, NULL, OPTION_MIPS32},
-#define OPTION_MIPS64 (OPTION_MD_BASE + 7)
+#define OPTION_MIPS64 (OPTION_ARCH_BASE + 8)
   {"mips64", no_argument, NULL, OPTION_MIPS64},
-#define OPTION_MEMBEDDED_PIC (OPTION_MD_BASE + 8)
+#define OPTION_MIPS32R2 (OPTION_ARCH_BASE + 9)
+  {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
+#define OPTION_MIPS64R2 (OPTION_ARCH_BASE + 10)
+  {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
+
+  /* Options which specify Application Specific Extensions (ASEs).  */
+#define OPTION_ASE_BASE (OPTION_ARCH_BASE + 11)
+#define OPTION_MIPS16 (OPTION_ASE_BASE + 0)
+  {"mips16", no_argument, NULL, OPTION_MIPS16},
+#define OPTION_NO_MIPS16 (OPTION_ASE_BASE + 1)
+  {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
+#define OPTION_MIPS3D (OPTION_ASE_BASE + 2)
+  {"mips3d", no_argument, NULL, OPTION_MIPS3D},
+#define OPTION_NO_MIPS3D (OPTION_ASE_BASE + 3)
+  {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
+#define OPTION_MDMX (OPTION_ASE_BASE + 4)
+  {"mdmx", no_argument, NULL, OPTION_MDMX},
+#define OPTION_NO_MDMX (OPTION_ASE_BASE + 5)
+  {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
+
+  /* Old-style architecture options.  Don't add more of these.  */
+#define OPTION_COMPAT_ARCH_BASE (OPTION_ASE_BASE + 6)
+#define OPTION_M4650 (OPTION_COMPAT_ARCH_BASE + 0)
+  {"m4650", no_argument, NULL, OPTION_M4650},
+#define OPTION_NO_M4650 (OPTION_COMPAT_ARCH_BASE + 1)
+  {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
+#define OPTION_M4010 (OPTION_COMPAT_ARCH_BASE + 2)
+  {"m4010", no_argument, NULL, OPTION_M4010},
+#define OPTION_NO_M4010 (OPTION_COMPAT_ARCH_BASE + 3)
+  {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
+#define OPTION_M4100 (OPTION_COMPAT_ARCH_BASE + 4)
+  {"m4100", no_argument, NULL, OPTION_M4100},
+#define OPTION_NO_M4100 (OPTION_COMPAT_ARCH_BASE + 5)
+  {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
+#define OPTION_M3900 (OPTION_COMPAT_ARCH_BASE + 6)
+  {"m3900", no_argument, NULL, OPTION_M3900},
+#define OPTION_NO_M3900 (OPTION_COMPAT_ARCH_BASE + 7)
+  {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
+
+  /* Options which enable bug fixes.  */
+#define OPTION_FIX_BASE    (OPTION_COMPAT_ARCH_BASE + 8)
+#define OPTION_M7000_HILO_FIX (OPTION_FIX_BASE + 0)
+  {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
+#define OPTION_MNO_7000_HILO_FIX (OPTION_FIX_BASE + 1)
+  {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
+  {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
+#define OPTION_FIX_VR4122 (OPTION_FIX_BASE + 2)
+#define OPTION_NO_FIX_VR4122 (OPTION_FIX_BASE + 3)
+  {"mfix-vr4122-bugs",    no_argument, NULL, OPTION_FIX_VR4122},
+  {"no-mfix-vr4122-bugs", no_argument, NULL, OPTION_NO_FIX_VR4122},
+
+  /* Miscellaneous options.  */
+#define OPTION_MISC_BASE (OPTION_FIX_BASE + 4)
+#define OPTION_MEMBEDDED_PIC (OPTION_MISC_BASE + 0)
   {"membedded-pic", no_argument, NULL, OPTION_MEMBEDDED_PIC},
-#define OPTION_TRAP (OPTION_MD_BASE + 9)
+#define OPTION_TRAP (OPTION_MISC_BASE + 1)
   {"trap", no_argument, NULL, OPTION_TRAP},
   {"no-break", no_argument, NULL, OPTION_TRAP},
-#define OPTION_BREAK (OPTION_MD_BASE + 10)
+#define OPTION_BREAK (OPTION_MISC_BASE + 2)
   {"break", no_argument, NULL, OPTION_BREAK},
   {"no-trap", no_argument, NULL, OPTION_BREAK},
-#define OPTION_EB (OPTION_MD_BASE + 11)
+#define OPTION_EB (OPTION_MISC_BASE + 3)
   {"EB", no_argument, NULL, OPTION_EB},
-#define OPTION_EL (OPTION_MD_BASE + 12)
+#define OPTION_EL (OPTION_MISC_BASE + 4)
   {"EL", no_argument, NULL, OPTION_EL},
-#define OPTION_MIPS16 (OPTION_MD_BASE + 13)
-  {"mips16", no_argument, NULL, OPTION_MIPS16},
-#define OPTION_NO_MIPS16 (OPTION_MD_BASE + 14)
-  {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
-#define OPTION_M7000_HILO_FIX (OPTION_MD_BASE + 15)
-  {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
-#define OPTION_MNO_7000_HILO_FIX (OPTION_MD_BASE + 16)
-  {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
-  {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
-#define OPTION_FP32 (OPTION_MD_BASE + 17)
+#define OPTION_FP32 (OPTION_MISC_BASE + 5)
   {"mfp32", no_argument, NULL, OPTION_FP32},
-#define OPTION_GP32 (OPTION_MD_BASE + 18)
+#define OPTION_GP32 (OPTION_MISC_BASE + 6)
   {"mgp32", no_argument, NULL, OPTION_GP32},
-#define OPTION_CONSTRUCT_FLOATS (OPTION_MD_BASE + 19)
+#define OPTION_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 7)
   {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
-#define OPTION_NO_CONSTRUCT_FLOATS (OPTION_MD_BASE + 20)
+#define OPTION_NO_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 8)
   {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
-#define OPTION_MARCH (OPTION_MD_BASE + 21)
-  {"march", required_argument, NULL, OPTION_MARCH},
-#define OPTION_MTUNE (OPTION_MD_BASE + 22)
-  {"mtune", required_argument, NULL, OPTION_MTUNE},
-#define OPTION_FP64 (OPTION_MD_BASE + 23)
+#define OPTION_FP64 (OPTION_MISC_BASE + 9)
   {"mfp64", no_argument, NULL, OPTION_FP64},
-#define OPTION_M4650 (OPTION_MD_BASE + 24)
-  {"m4650", no_argument, NULL, OPTION_M4650},
-#define OPTION_NO_M4650 (OPTION_MD_BASE + 25)
-  {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
-#define OPTION_M4010 (OPTION_MD_BASE + 26)
-  {"m4010", no_argument, NULL, OPTION_M4010},
-#define OPTION_NO_M4010 (OPTION_MD_BASE + 27)
-  {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
-#define OPTION_M4100 (OPTION_MD_BASE + 28)
-  {"m4100", no_argument, NULL, OPTION_M4100},
-#define OPTION_NO_M4100 (OPTION_MD_BASE + 29)
-  {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
-#define OPTION_M3900 (OPTION_MD_BASE + 30)
-  {"m3900", no_argument, NULL, OPTION_M3900},
-#define OPTION_NO_M3900 (OPTION_MD_BASE + 31)
-  {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
-#define OPTION_GP64 (OPTION_MD_BASE + 32)
+#define OPTION_GP64 (OPTION_MISC_BASE + 10)
   {"mgp64", no_argument, NULL, OPTION_GP64},
-#define OPTION_MIPS3D (OPTION_MD_BASE + 33)
-  {"mips3d", no_argument, NULL, OPTION_MIPS3D},
-#define OPTION_NO_MIPS3D (OPTION_MD_BASE + 34)
-  {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
-#define OPTION_MDMX (OPTION_MD_BASE + 35)
-  {"mdmx", no_argument, NULL, OPTION_MDMX},
-#define OPTION_NO_MDMX (OPTION_MD_BASE + 36)
-  {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
-#define OPTION_FIX_VR4122 (OPTION_MD_BASE + 37)
-#define OPTION_NO_FIX_VR4122 (OPTION_MD_BASE + 38)
-  {"mfix-vr4122-bugs",    no_argument, NULL, OPTION_FIX_VR4122},
-  {"no-mfix-vr4122-bugs", no_argument, NULL, OPTION_NO_FIX_VR4122},
-#define OPTION_RELAX_BRANCH (OPTION_MD_BASE + 39)
-#define OPTION_NO_RELAX_BRANCH (OPTION_MD_BASE + 40)
+#define OPTION_RELAX_BRANCH (OPTION_MISC_BASE + 11)
+#define OPTION_NO_RELAX_BRANCH (OPTION_MISC_BASE + 12)
   {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
   {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
+
+  /* ELF-specific options.  */
 #ifdef OBJ_ELF
-#define OPTION_ELF_BASE    (OPTION_MD_BASE + 41)
+#define OPTION_ELF_BASE    (OPTION_MISC_BASE + 13)
 #define OPTION_CALL_SHARED (OPTION_ELF_BASE + 0)
   {"KPIC",        no_argument, NULL, OPTION_CALL_SHARED},
   {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
@@ -10287,7 +10544,12 @@ struct option md_longopts[] =
   {"mdebug", no_argument, NULL, OPTION_MDEBUG},
 #define OPTION_NO_MDEBUG   (OPTION_ELF_BASE + 8)
   {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
+#define OPTION_PDR        (OPTION_ELF_BASE + 9)
+  {"mpdr", no_argument, NULL, OPTION_PDR},
+#define OPTION_NO_PDR     (OPTION_ELF_BASE + 10)
+  {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
 #endif /* OBJ_ELF */
+
   {NULL, no_argument, NULL, 0}
 };
 size_t md_longopts_size = sizeof (md_longopts);
@@ -10299,8 +10561,7 @@ size_t md_longopts_size = sizeof (md_longopts);
    in a later argument.  */
 
 static void
-mips_set_option_string (string_ptr, new_value)
-     const char **string_ptr, *new_value;
+mips_set_option_string (const char **string_ptr, const char *new_value)
 {
   if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
     as_warn (_("A different %s was already specified, is now %s"),
@@ -10311,9 +10572,7 @@ mips_set_option_string (string_ptr, new_value)
 }
 
 int
-md_parse_option (c, arg)
-     int c;
-     char *arg;
+md_parse_option (int c, char *arg)
 {
   switch (c)
     {
@@ -10388,6 +10647,14 @@ md_parse_option (c, arg)
       file_mips_isa = ISA_MIPS32;
       break;
 
+    case OPTION_MIPS32R2:
+      file_mips_isa = ISA_MIPS32R2;
+      break;
+
+    case OPTION_MIPS64R2:
+      file_mips_isa = ISA_MIPS64R2;
+      break;
+
     case OPTION_MIPS64:
       file_mips_isa = ISA_MIPS64;
       break;
@@ -10442,12 +10709,12 @@ md_parse_option (c, arg)
 
     case OPTION_MIPS16:
       mips_opts.mips16 = 1;
-      mips_no_prev_insn (false);
+      mips_no_prev_insn (FALSE);
       break;
 
     case OPTION_NO_MIPS16:
       mips_opts.mips16 = 0;
-      mips_no_prev_insn (false);
+      mips_no_prev_insn (FALSE);
       break;
 
     case OPTION_MIPS3D:
@@ -10495,6 +10762,7 @@ md_parse_option (c, arg)
          return 0;
        }
       mips_pic = SVR4_PIC;
+      mips_abicalls = TRUE;
       if (g_switch_seen && g_switch_value != 0)
        {
          as_bad (_("-G may not be used with SVR4 PIC code"));
@@ -10510,6 +10778,7 @@ md_parse_option (c, arg)
          return 0;
        }
       mips_pic = NO_PIC;
+      mips_abicalls = FALSE;
       break;
 
       /* The -xgot option tells the assembler to use 32 offsets when
@@ -10616,20 +10885,28 @@ md_parse_option (c, arg)
 #endif /* OBJ_ELF */
 
     case OPTION_M7000_HILO_FIX:
-      mips_7000_hilo_fix = true;
+      mips_7000_hilo_fix = TRUE;
       break;
 
     case OPTION_MNO_7000_HILO_FIX:
-      mips_7000_hilo_fix = false;
+      mips_7000_hilo_fix = FALSE;
       break;
 
 #ifdef OBJ_ELF
     case OPTION_MDEBUG:
-      mips_flag_mdebug = true;
+      mips_flag_mdebug = TRUE;
       break;
 
     case OPTION_NO_MDEBUG:
-      mips_flag_mdebug = false;
+      mips_flag_mdebug = FALSE;
+      break;
+
+    case OPTION_PDR:
+      mips_flag_pdr = TRUE;
+      break;
+
+    case OPTION_NO_PDR:
+      mips_flag_pdr = FALSE;
       break;
 #endif /* OBJ_ELF */
 
@@ -10644,13 +10921,12 @@ md_parse_option (c, arg)
    described by INFO.  */
 
 static void
-mips_set_architecture (info)
-     const struct mips_cpu_info *info;
+mips_set_architecture (const struct mips_cpu_info *info)
 {
   if (info != 0)
     {
-      mips_arch_info = info;
-      mips_arch = info->cpu;
+      file_mips_arch = info->cpu;
+      mips_opts.arch = info->cpu;
       mips_opts.isa = info->isa;
     }
 }
@@ -10659,20 +10935,19 @@ mips_set_architecture (info)
 /* Likewise for tuning.  */
 
 static void
-mips_set_tune (info)
-     const struct mips_cpu_info *info;
+mips_set_tune (const struct mips_cpu_info *info)
 {
   if (info != 0)
-    {
-      mips_tune_info = info;
-      mips_tune = info->cpu;
-    }
+    mips_tune = info->cpu;
 }
 
 
 void
-mips_after_parse_args ()
+mips_after_parse_args (void)
 {
+  const struct mips_cpu_info *arch_info = 0;
+  const struct mips_cpu_info *tune_info = 0;
+
   /* GP relative stuff not working for PE */
   if (strncmp (TARGET_OS, "pe", 2) == 0
       && g_switch_value != 0)
@@ -10682,47 +10957,53 @@ mips_after_parse_args ()
       g_switch_value = 0;
     }
 
+  if (mips_abi == NO_ABI)
+    mips_abi = MIPS_DEFAULT_ABI;
+
   /* The following code determines the architecture and register size.
      Similar code was added to GCC 3.3 (see override_options() in
      config/mips/mips.c).  The GAS and GCC code should be kept in sync
      as much as possible.  */
 
   if (mips_arch_string != 0)
-    mips_set_architecture (mips_parse_cpu ("-march", mips_arch_string));
-
-  if (mips_tune_string != 0)
-    mips_set_tune (mips_parse_cpu ("-mtune", mips_tune_string));
+    arch_info = mips_parse_cpu ("-march", mips_arch_string);
 
   if (file_mips_isa != ISA_UNKNOWN)
     {
       /* Handle -mipsN.  At this point, file_mips_isa contains the
-        ISA level specified by -mipsN, while mips_opts.isa contains
+        ISA level specified by -mipsN, while arch_info->isa contains
         the -march selection (if any).  */
-      if (mips_arch_info != 0)
+      if (arch_info != 0)
        {
          /* -march takes precedence over -mipsN, since it is more descriptive.
             There's no harm in specifying both as long as the ISA levels
             are the same.  */
-         if (file_mips_isa != mips_opts.isa)
+         if (file_mips_isa != arch_info->isa)
            as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
                    mips_cpu_info_from_isa (file_mips_isa)->name,
-                   mips_cpu_info_from_isa (mips_opts.isa)->name);
+                   mips_cpu_info_from_isa (arch_info->isa)->name);
        }
       else
-       mips_set_architecture (mips_cpu_info_from_isa (file_mips_isa));
+       arch_info = mips_cpu_info_from_isa (file_mips_isa);
     }
 
-  if (mips_arch_info == 0)
-    mips_set_architecture (mips_parse_cpu ("default CPU",
-                                          MIPS_CPU_STRING_DEFAULT));
+  if (arch_info == 0)
+    arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
 
-  if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (mips_opts.isa))
+  if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
     as_bad ("-march=%s is not compatible with the selected ABI",
-           mips_arch_info->name);
+           arch_info->name);
+
+  mips_set_architecture (arch_info);
+
+  /* Optimize for file_mips_arch, unless -mtune selects a different processor.  */
+  if (mips_tune_string != 0)
+    tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
 
-  /* Optimize for mips_arch, unless -mtune selects a different processor.  */
-  if (mips_tune_info == 0)
-    mips_set_tune (mips_arch_info);
+  if (tune_info == 0)
+    mips_set_tune (arch_info);
+  else
+    mips_set_tune (tune_info);
 
   if (file_mips_gp32 >= 0)
     {
@@ -10755,10 +11036,11 @@ mips_after_parse_args ()
 
   /* End of GCC-shared inference code.  */
 
-  /* ??? When do we want this flag to be set?   Who uses it?  */
-  if (file_mips_gp32 == 1
-      && mips_abi == NO_ABI
-      && ISA_HAS_64BIT_REGS (mips_opts.isa))
+  /* This flag is set when we have a 64-bit capable CPU but use only
+     32-bit wide registers.  Note that EABI does not use it.  */
+  if (ISA_HAS_64BIT_REGS (mips_opts.isa)
+      && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
+         || mips_abi == O32_ABI))
     mips_32bitmode = 1;
 
   if (mips_opts.isa == ISA_MIPS1 && mips_trap)
@@ -10767,11 +11049,11 @@ mips_after_parse_args ()
   /* If the selected architecture includes support for ASEs, enable
      generation of code for them.  */
   if (mips_opts.mips16 == -1)
-    mips_opts.mips16 = (CPU_HAS_MIPS16 (mips_arch)) ? 1 : 0;
+    mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
   if (mips_opts.ase_mips3d == -1)
-    mips_opts.ase_mips3d = (CPU_HAS_MIPS3D (mips_arch)) ? 1 : 0;
+    mips_opts.ase_mips3d = (CPU_HAS_MIPS3D (file_mips_arch)) ? 1 : 0;
   if (mips_opts.ase_mdmx == -1)
-    mips_opts.ase_mdmx = (CPU_HAS_MDMX (mips_arch)) ? 1 : 0;
+    mips_opts.ase_mdmx = (CPU_HAS_MDMX (file_mips_arch)) ? 1 : 0;
 
   file_mips_isa = mips_opts.isa;
   file_ase_mips16 = mips_opts.mips16;
@@ -10792,7 +11074,7 @@ mips_after_parse_args ()
 }
 \f
 void
-mips_init_after_args ()
+mips_init_after_args (void)
 {
   /* initialize opcodes */
   bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
@@ -10800,23 +11082,18 @@ mips_init_after_args ()
 }
 
 long
-md_pcrel_from (fixP)
-     fixS *fixP;
+md_pcrel_from (fixS *fixP)
 {
-  if (OUTPUT_FLAVOR != bfd_target_aout_flavour
-      && fixP->fx_addsy != (symbolS *) NULL
-      && ! S_IS_DEFINED (fixP->fx_addsy))
-    {
-      /* This makes a branch to an undefined symbol be a branch to the
-        current location.  */
-      if (mips_pic == EMBEDDED_PIC)
-       return 4;
-      else
-       return 1;
+  valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
+  switch (fixP->fx_r_type)
+    {
+    case BFD_RELOC_16_PCREL_S2:
+    case BFD_RELOC_MIPS_JMP:
+      /* Return the address of the delay slot.  */
+      return addr + 4;
+    default:
+      return addr;
     }
-
-  /* Return the address of the delay slot.  */
-  return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
 }
 
 /* This is called before the symbol table is processed.  In order to
@@ -10827,7 +11104,7 @@ md_pcrel_from (fixP)
    mips-tfile, in which case we must generate all local labels.  */
 
 void
-mips_frob_file_before_adjust ()
+mips_frob_file_before_adjust (void)
 {
 #ifndef NO_ECOFF_DEBUGGING
   if (ECOFF_DEBUGGING
@@ -10843,7 +11120,7 @@ mips_frob_file_before_adjust ()
    explicit use of the %hi modifier.  */
 
 void
-mips_frob_file ()
+mips_frob_file (void)
 {
   struct mips_hi_fixup *l;
 
@@ -10852,14 +11129,16 @@ mips_frob_file ()
       segment_info_type *seginfo;
       int pass;
 
-      assert (l->fixp->fx_r_type == BFD_RELOC_HI16_S);
+      assert (reloc_needs_lo_p (l->fixp->fx_r_type));
+
+      /* If a GOT16 relocation turns out to be against a global symbol,
+        there isn't supposed to be a matching LO.  */
+      if (l->fixp->fx_r_type == BFD_RELOC_MIPS_GOT16
+         && !pic_need_relax (l->fixp->fx_addsy, l->seg))
+       continue;
 
-      /* Check quickly whether the next fixup happens to be a matching
-         %lo.  */
-      if (l->fixp->fx_next != NULL
-         && l->fixp->fx_next->fx_r_type == BFD_RELOC_LO16
-         && l->fixp->fx_addsy == l->fixp->fx_next->fx_addsy
-         && l->fixp->fx_offset == l->fixp->fx_next->fx_offset)
+      /* Check quickly whether the next fixup happens to be a matching %lo.  */
+      if (fixup_has_matching_lo_p (l->fixp))
        continue;
 
       /* Look through the fixups for this segment for a matching %lo.
@@ -10881,9 +11160,8 @@ mips_frob_file ()
                  && f->fx_offset == l->fixp->fx_offset
                  && (pass == 1
                      || prev == NULL
-                     || prev->fx_r_type != BFD_RELOC_HI16_S
-                     || prev->fx_addsy != f->fx_addsy
-                     || prev->fx_offset !=  f->fx_offset))
+                     || !reloc_needs_lo_p (prev->fx_r_type)
+                     || !fixup_has_matching_lo_p (prev)))
                {
                  fixS **pf;
 
@@ -10941,12 +11219,9 @@ mips_frob_file ()
    We have to prevent gas from dropping them.  */
 
 int
-mips_force_relocation (fixp)
-     fixS *fixp;
+mips_force_relocation (fixS *fixp)
 {
-  if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
-      || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY
-      || S_FORCE_RELOC (fixp->fx_addsy))
+  if (generic_force_reloc (fixp))
     return 1;
 
   if (HAVE_NEWABI
@@ -10963,10 +11238,87 @@ mips_force_relocation (fixp)
              || fixp->fx_r_type == BFD_RELOC_PCREL_LO16));
 }
 
+/* This hook is called before a fix is simplified.  We don't really
+   decide whether to skip a fix here.  Rather, we turn global symbols
+   used as branch targets into local symbols, such that they undergo
+   simplification.  We can only do this if the symbol is defined and
+   it is in the same section as the branch.  If this doesn't hold, we
+   emit a better error message than just saying the relocation is not
+   valid for the selected object format.
+
+   FIXP is the fix-up we're going to try to simplify, SEG is the
+   segment in which the fix up occurs.  The return value should be
+   non-zero to indicate the fix-up is valid for further
+   simplifications.  */
+
+int
+mips_validate_fix (struct fix *fixP, asection *seg)
+{
+  /* There's a lot of discussion on whether it should be possible to
+     use R_MIPS_PC16 to represent branch relocations.  The outcome
+     seems to be that it can, but gas/bfd are very broken in creating
+     RELA relocations for this, so for now we only accept branches to
+     symbols in the same section.  Anything else is of dubious value,
+     since there's no guarantee that at link time the symbol would be
+     in range.  Even for branches to local symbols this is arguably
+     wrong, since it we assume the symbol is not going to be
+     overridden, which should be possible per ELF library semantics,
+     but then, there isn't a dynamic relocation that could be used to
+     this effect, and the target would likely be out of range as well.
+
+     Unfortunately, it seems that there is too much code out there
+     that relies on branches to symbols that are global to be resolved
+     as if they were local, like the IRIX tools do, so we do it as
+     well, but with a warning so that people are reminded to fix their
+     code.  If we ever get back to using R_MIPS_PC16 for branch
+     targets, this entire block should go away (and probably the
+     whole function).  */
+
+  if (fixP->fx_r_type == BFD_RELOC_16_PCREL_S2
+      && (((OUTPUT_FLAVOR == bfd_target_ecoff_flavour
+           || OUTPUT_FLAVOR == bfd_target_elf_flavour)
+          && mips_pic != EMBEDDED_PIC)
+         || bfd_reloc_type_lookup (stdoutput, BFD_RELOC_16_PCREL_S2) == NULL)
+      && fixP->fx_addsy)
+    {
+      if (! S_IS_DEFINED (fixP->fx_addsy))
+       {
+         as_bad_where (fixP->fx_file, fixP->fx_line,
+                       _("Cannot branch to undefined symbol."));
+         /* Avoid any further errors about this fixup.  */
+         fixP->fx_done = 1;
+       }
+      else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
+       {
+         as_bad_where (fixP->fx_file, fixP->fx_line,
+                       _("Cannot branch to symbol in another section."));
+         fixP->fx_done = 1;
+       }
+      else if (S_IS_EXTERNAL (fixP->fx_addsy))
+       {
+         symbolS *sym = fixP->fx_addsy;
+
+         if (mips_pic == SVR4_PIC)
+           as_warn_where (fixP->fx_file, fixP->fx_line,
+                          _("Pretending global symbol used as branch target is local."));
+
+         fixP->fx_addsy = symbol_create (S_GET_NAME (sym),
+                                         S_GET_SEGMENT (sym),
+                                         S_GET_VALUE (sym),
+                                         symbol_get_frag (sym));
+         copy_symbol_attributes (fixP->fx_addsy, sym);
+         S_CLEAR_EXTERNAL (fixP->fx_addsy);
+         assert (symbol_resolved_p (sym));
+         symbol_mark_resolved (fixP->fx_addsy);
+       }
+    }
+
+  return 1;
+}
+
 #ifdef OBJ_ELF
 static int
-mips_need_elf_addend_fixup (fixP)
-     fixS *fixP;
+mips_need_elf_addend_fixup (fixS *fixP)
 {
   if (S_GET_OTHER (fixP->fx_addsy) == STO_MIPS16)
     return 1;
@@ -10978,13 +11330,12 @@ mips_need_elf_addend_fixup (fixP)
          || S_IS_EXTERNAL (fixP->fx_addsy))
       && !S_IS_COMMON (fixP->fx_addsy))
     return 1;
-  if (symbol_used_in_reloc_p (fixP->fx_addsy)
-      && (((bfd_get_section_flags (stdoutput,
-                                  S_GET_SEGMENT (fixP->fx_addsy))
-           & (SEC_LINK_ONCE | SEC_MERGE)) != 0)
-         || !strncmp (segment_name (S_GET_SEGMENT (fixP->fx_addsy)),
-                      ".gnu.linkonce",
-                      sizeof (".gnu.linkonce") - 1)))
+  if (((bfd_get_section_flags (stdoutput,
+                              S_GET_SEGMENT (fixP->fx_addsy))
+       & (SEC_LINK_ONCE | SEC_MERGE)) != 0)
+      || !strncmp (segment_name (S_GET_SEGMENT (fixP->fx_addsy)),
+                  ".gnu.linkonce",
+                  sizeof (".gnu.linkonce") - 1))
     return 1;
   return 0;
 }
@@ -10993,131 +11344,83 @@ mips_need_elf_addend_fixup (fixP)
 /* Apply a fixup to the object file.  */
 
 void
-md_apply_fix3 (fixP, valP, seg)
-     fixS *fixP;
-     valueT *valP;
-     segT seg ATTRIBUTE_UNUSED;
+md_apply_fix3 (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
 {
   bfd_byte *buf;
   long insn;
-  valueT value;
   static int previous_fx_r_type = 0;
+  reloc_howto_type *howto;
 
-  /* FIXME: Maybe just return for all reloc types not listed below?
-     Eric Christopher says: "This is stupid, please rewrite md_apply_fix3. */
-  if (fixP->fx_r_type == BFD_RELOC_8)
-      return;
+  /* We ignore generic BFD relocations we don't know about.  */
+  howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
+  if (! howto)
+    return;
 
   assert (fixP->fx_size == 4
          || fixP->fx_r_type == BFD_RELOC_16
-         || fixP->fx_r_type == BFD_RELOC_32
-         || fixP->fx_r_type == BFD_RELOC_MIPS_JMP
-         || fixP->fx_r_type == BFD_RELOC_HI16_S
-         || fixP->fx_r_type == BFD_RELOC_LO16
-         || fixP->fx_r_type == BFD_RELOC_GPREL16
-         || fixP->fx_r_type == BFD_RELOC_MIPS_LITERAL
-         || fixP->fx_r_type == BFD_RELOC_GPREL32
          || 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_MIPS_HIGHEST
-         || fixP->fx_r_type == BFD_RELOC_MIPS_HIGHER
-         || fixP->fx_r_type == BFD_RELOC_MIPS_SCN_DISP
-         || fixP->fx_r_type == BFD_RELOC_MIPS_REL16
-         || fixP->fx_r_type == BFD_RELOC_MIPS_RELGOT
          || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
-         || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
-         || fixP->fx_r_type == BFD_RELOC_MIPS_JALR);
+         || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY);
 
-  value = *valP;
+  buf = (bfd_byte *) (fixP->fx_frag->fr_literal + fixP->fx_where);
 
   /* If we aren't adjusting this fixup to be against the section
      symbol, we need to adjust the value.  */
 #ifdef OBJ_ELF
   if (fixP->fx_addsy != NULL && OUTPUT_FLAVOR == bfd_target_elf_flavour)
     {
-      if (mips_need_elf_addend_fixup (fixP))
-       {
-         reloc_howto_type *howto;
-         valueT symval = S_GET_VALUE (fixP->fx_addsy);
-
-         value -= symval;
-
-         howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
-         if (value != 0 && howto->partial_inplace
-             && (! fixP->fx_pcrel || howto->pcrel_offset))
-           {
-             /* In this case, the bfd_install_relocation routine will
-                incorrectly add the symbol value back in.  We just want
-                the addend to appear in the object file.
-                
-                howto->pcrel_offset is added for R_MIPS_PC16, which is
-                generated for code like
-                
-                       globl g1 .text
-                       .text
-                       .space 20
-                g1:
-                x:
-                       bal g1
-              */
-             value -= symval;
-
-             /* Make sure the addend is still non-zero.  If it became zero
-                after the last operation, set it to a spurious value and
-                subtract the same value from the object file's contents.  */
-             if (value == 0)
-               {
-                 value = 8;
-
-                 /* The in-place addends for LO16 relocations are signed;
-                    leave the matching HI16 in-place addends as zero.  */
-                 if (fixP->fx_r_type != BFD_RELOC_HI16_S)
-                   {
-                     bfd_vma contents, mask, field;
-
-                     contents = bfd_get_bits (fixP->fx_frag->fr_literal
-                                              + fixP->fx_where,
-                                              fixP->fx_size * 8,
-                                              target_big_endian);
-
-                     /* MASK has bits set where the relocation should go.
-                        FIELD is -value, shifted into the appropriate place
-                        for this relocation.  */
-                     mask = 1 << (howto->bitsize - 1);
-                     mask = (((mask - 1) << 1) | 1) << howto->bitpos;
-                     field = (-value >> howto->rightshift) << howto->bitpos;
-
-                     bfd_put_bits ((field & mask) | (contents & ~mask),
-                                   fixP->fx_frag->fr_literal + fixP->fx_where,
-                                   fixP->fx_size * 8,
-                                   target_big_endian);
-                   }
-               }
-           }
+      if (mips_need_elf_addend_fixup (fixP)
+         && howto->partial_inplace
+         && fixP->fx_r_type != BFD_RELOC_GPREL16
+         && fixP->fx_r_type != BFD_RELOC_GPREL32
+         && fixP->fx_r_type != BFD_RELOC_MIPS16_GPREL)
+       {
+         /* In this case, the bfd_install_relocation routine will
+            incorrectly add the symbol value back in.  We just want
+            the addend to appear in the object file.
+
+            The condition above used to include
+            "&& (! fixP->fx_pcrel || howto->pcrel_offset)".
+
+            However, howto can't be trusted here, because we
+            might change the reloc type in tc_gen_reloc.  We can
+            check howto->partial_inplace because that conversion
+            happens to preserve howto->partial_inplace; but it
+            does not preserve howto->pcrel_offset.  I've just
+            eliminated the check, because all MIPS PC-relative
+            relocations are marked howto->pcrel_offset.
+
+            howto->pcrel_offset was originally added for
+            R_MIPS_PC16, which is generated for code like
+
+                   globl g1 .text
+                   .text
+                   .space 20
+            g1:
+            x:
+                   bal g1
+          */
+         *valP -= S_GET_VALUE (fixP->fx_addsy);
        }
 
       /* This code was generated using trial and error and so is
         fragile and not trustworthy.  If you change it, you should
         rerun the elf-rel, elf-rel2, and empic testcases and ensure
         they still pass.  */
-      if (fixP->fx_pcrel || fixP->fx_subsy != NULL)
+      if (fixP->fx_pcrel)
        {
-         value += fixP->fx_frag->fr_address + fixP->fx_where;
+         *valP += fixP->fx_frag->fr_address + fixP->fx_where;
 
          /* BFD's REL handling, for MIPS, is _very_ weird.
             This gives the right results, but it can't possibly
             be the way things are supposed to work.  */
-         if ((fixP->fx_r_type != BFD_RELOC_16_PCREL
-              && fixP->fx_r_type != BFD_RELOC_16_PCREL_S2)
-             || S_GET_SEGMENT (fixP->fx_addsy) != undefined_section)
-           value += fixP->fx_frag->fr_address + fixP->fx_where;
+         *valP += fixP->fx_frag->fr_address + fixP->fx_where;
        }
     }
 #endif
 
-  fixP->fx_addnumber = value;  /* Remember value for tc_gen_reloc.  */
-
   /* We are not done if this is a composite relocation to set up gp.  */
   if (fixP->fx_addsy == NULL && ! fixP->fx_pcrel
       && !(fixP->fx_r_type == BFD_RELOC_MIPS_SUB
@@ -11170,15 +11473,13 @@ md_apply_fix3 (fixP, valP, seg)
       /* We currently always generate a reloc against a symbol, which
          means that we don't want an addend even if the symbol is
          defined.  */
-      fixP->fx_addnumber = 0;
+      *valP = 0;
       break;
 
     case BFD_RELOC_PCREL_HI16_S:
       /* The addend for this is tricky if it is internal, so we just
         do everything here rather than in bfd_install_relocation.  */
-      if (OUTPUT_FLAVOR == bfd_target_elf_flavour
-         && !fixP->fx_done
-         && value != 0)
+      if (OUTPUT_FLAVOR == bfd_target_elf_flavour && !fixP->fx_done)
        break;
       if (fixP->fx_addsy
          && (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_SECTION_SYM) == 0)
@@ -11186,30 +11487,26 @@ md_apply_fix3 (fixP, valP, seg)
          /* For an external symbol adjust by the address to make it
             pcrel_offset.  We use the address of the RELLO reloc
             which follows this one.  */
-         value += (fixP->fx_next->fx_frag->fr_address
+         *valP += (fixP->fx_next->fx_frag->fr_address
                    + fixP->fx_next->fx_where);
        }
-      value = ((value + 0x8000) >> 16) & 0xffff;
-      buf = (bfd_byte *) fixP->fx_frag->fr_literal + fixP->fx_where;
+      *valP = ((*valP + 0x8000) >> 16) & 0xffff;
       if (target_big_endian)
        buf += 2;
-      md_number_to_chars ((char *) buf, value, 2);
+      md_number_to_chars (buf, *valP, 2);
       break;
 
     case BFD_RELOC_PCREL_LO16:
       /* The addend for this is tricky if it is internal, so we just
         do everything here rather than in bfd_install_relocation.  */
-      if (OUTPUT_FLAVOR == bfd_target_elf_flavour
-         && !fixP->fx_done
-         && value != 0)
+      if (OUTPUT_FLAVOR == bfd_target_elf_flavour && !fixP->fx_done)
        break;
       if (fixP->fx_addsy
          && (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_SECTION_SYM) == 0)
-       value += fixP->fx_frag->fr_address + fixP->fx_where;
-      buf = (bfd_byte *) fixP->fx_frag->fr_literal + fixP->fx_where;
+       *valP += fixP->fx_frag->fr_address + fixP->fx_where;
       if (target_big_endian)
        buf += 2;
-      md_number_to_chars ((char *) buf, value, 2);
+      md_number_to_chars (buf, *valP, 2);
       break;
 
     case BFD_RELOC_64:
@@ -11219,24 +11516,19 @@ md_apply_fix3 (fixP, valP, seg)
          || (mips_pic == EMBEDDED_PIC && SWITCH_TABLE (fixP)))
        {
          if (8 <= sizeof (valueT))
-           md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
-                               value, 8);
+           md_number_to_chars (buf, *valP, 8);
          else
            {
-             long w1, w2;
-             long hiv;
+             valueT hiv;
 
-             w1 = w2 = fixP->fx_where;
-             if (target_big_endian)
-               w1 += 4;
-             else
-               w2 += 4;
-             md_number_to_chars (fixP->fx_frag->fr_literal + w1, value, 4);
-             if ((value & 0x80000000) != 0)
+             if ((*valP & 0x80000000) != 0)
                hiv = 0xffffffff;
              else
                hiv = 0;
-             md_number_to_chars (fixP->fx_frag->fr_literal + w2, hiv, 4);
+             md_number_to_chars ((char *)(buf + target_big_endian ? 4 : 0),
+                                 *valP, 4);
+             md_number_to_chars ((char *)(buf + target_big_endian ? 0 : 4),
+                                 hiv, 4);
            }
        }
       break;
@@ -11250,8 +11542,7 @@ md_apply_fix3 (fixP, valP, seg)
         entry.  */
       if (fixP->fx_done
          || (mips_pic == EMBEDDED_PIC && SWITCH_TABLE (fixP)))
-       md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
-                           value, 4);
+       md_number_to_chars (buf, *valP, 4);
       break;
 
     case BFD_RELOC_16:
@@ -11259,8 +11550,7 @@ md_apply_fix3 (fixP, valP, seg)
          value now.  */
       assert (fixP->fx_size == 2);
       if (fixP->fx_done)
-       md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
-                           value, 2);
+       md_number_to_chars (buf, *valP, 2);
       break;
 
     case BFD_RELOC_LO16:
@@ -11268,85 +11558,69 @@ md_apply_fix3 (fixP, valP, seg)
         up deleting a LO16 reloc.  See the 'o' case in mips_ip.  */
       if (fixP->fx_done)
        {
-         if (value + 0x8000 > 0xffff)
+         if (*valP + 0x8000 > 0xffff)
            as_bad_where (fixP->fx_file, fixP->fx_line,
                          _("relocation overflow"));
-         buf = (bfd_byte *) fixP->fx_frag->fr_literal + fixP->fx_where;
          if (target_big_endian)
            buf += 2;
-         md_number_to_chars ((char *) buf, value, 2);
+         md_number_to_chars (buf, *valP, 2);
        }
       break;
 
     case BFD_RELOC_16_PCREL_S2:
-      if ((value & 0x3) != 0)
+      if ((*valP & 0x3) != 0)
        as_bad_where (fixP->fx_file, fixP->fx_line,
-                     _("Branch to odd address (%lx)"), (long) value);
-
-      /* Fall through.  */
+                     _("Branch to odd address (%lx)"), (long) *valP);
 
-    case BFD_RELOC_16_PCREL:
       /*
        * We need to save the bits in the instruction since fixup_segment()
        * might be deleting the relocation entry (i.e., a branch within
        * the current segment).
        */
-      if (!fixP->fx_done && value != 0)
+      if (! fixP->fx_done)
        break;
-      /* If 'value' is zero, the remaining reloc code won't actually
-        do the store, so it must be done here.  This is probably
-        a bug somewhere.  */
-      if (!fixP->fx_done
-         && (fixP->fx_r_type != BFD_RELOC_16_PCREL_S2
-             || fixP->fx_addsy == NULL                 /* ??? */
-             || ! S_IS_DEFINED (fixP->fx_addsy)))
-       value -= fixP->fx_frag->fr_address + fixP->fx_where;
-
-      value = (offsetT) value >> 2;
 
       /* update old instruction data */
-      buf = (bfd_byte *) (fixP->fx_where + fixP->fx_frag->fr_literal);
       if (target_big_endian)
        insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
       else
        insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
 
-      if (value + 0x8000 <= 0xffff)
-       insn |= value & 0xffff;
-      else
+      if (*valP + 0x20000 <= 0x3ffff)
+       {
+         insn |= (*valP >> 2) & 0xffff;
+         md_number_to_chars (buf, insn, 4);
+       }
+      else if (mips_pic == NO_PIC
+              && fixP->fx_done
+              && fixP->fx_frag->fr_address >= text_section->vma
+              && (fixP->fx_frag->fr_address
+                  < text_section->vma + text_section->_raw_size)
+              && ((insn & 0xffff0000) == 0x10000000     /* beq $0,$0 */
+                  || (insn & 0xffff0000) == 0x04010000  /* bgez $0 */
+                  || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
        {
          /* The branch offset is too large.  If this is an
              unconditional branch, and we are not generating PIC code,
              we can convert it to an absolute jump instruction.  */
-         if (mips_pic == NO_PIC
-             && fixP->fx_done
-             && fixP->fx_frag->fr_address >= text_section->vma
-             && (fixP->fx_frag->fr_address
-                 < text_section->vma + text_section->_raw_size)
-             && ((insn & 0xffff0000) == 0x10000000      /* beq $0,$0 */
-                 || (insn & 0xffff0000) == 0x04010000   /* bgez $0 */
-                 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
-           {
-             if ((insn & 0xffff0000) == 0x04110000)     /* bgezal $0 */
-               insn = 0x0c000000;      /* jal */
-             else
-               insn = 0x08000000;      /* j */
-             fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
-             fixP->fx_done = 0;
-             fixP->fx_addsy = section_symbol (text_section);
-             fixP->fx_addnumber = (value << 2) + md_pcrel_from (fixP);
-           }
+         if ((insn & 0xffff0000) == 0x04110000)         /* bgezal $0 */
+           insn = 0x0c000000;  /* jal */
          else
-           {
-             /* If we got here, we have branch-relaxation disabled,
-                and there's nothing we can do to fix this instruction
-                without turning it into a longer sequence.  */
-             as_bad_where (fixP->fx_file, fixP->fx_line,
-                           _("Branch out of range"));
-           }
+           insn = 0x08000000;  /* j */
+         fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
+         fixP->fx_done = 0;
+         fixP->fx_addsy = section_symbol (text_section);
+         *valP += md_pcrel_from (fixP);
+         md_number_to_chars (buf, insn, 4);
+       }
+      else
+       {
+         /* If we got here, we have branch-relaxation disabled,
+            and there's nothing we can do to fix this instruction
+            without turning it into a longer sequence.  */
+         as_bad_where (fixP->fx_file, fixP->fx_line,
+                       _("Branch out of range"));
        }
-
-      md_number_to_chars ((char *) buf, (valueT) insn, 4);
       break;
 
     case BFD_RELOC_VTABLE_INHERIT:
@@ -11364,12 +11638,14 @@ md_apply_fix3 (fixP, valP, seg)
     default:
       internalError ();
     }
+
+  /* Remember value for tc_gen_reloc.  */
+  fixP->fx_addnumber = *valP;
 }
 
 #if 0
 void
-printInsn (oc)
-     unsigned long oc;
+printInsn (unsigned long oc)
 {
   const struct mips_opcode *p;
   int treg, sreg, dreg, shamt;
@@ -11455,7 +11731,7 @@ printInsn (oc)
 #endif
 
 static symbolS *
-get_symbol ()
+get_symbol (void)
 {
   int c;
   char *name;
@@ -11472,12 +11748,9 @@ get_symbol ()
    also automatically adjusts any preceding label.  */
 
 static void
-mips_align (to, fill, label)
-     int to;
-     int fill;
-     symbolS *label;
+mips_align (int to, int fill, symbolS *label)
 {
-  mips_emit_delays (false);
+  mips_emit_delays (FALSE);
   frag_align (to, fill, 0);
   record_alignment (now_seg, to);
   if (label != NULL)
@@ -11492,8 +11765,7 @@ mips_align (to, fill, label)
    alignment used by the data creating pseudo-ops.  */
 
 static void
-s_align (x)
-     int x ATTRIBUTE_UNUSED;
+s_align (int x ATTRIBUTE_UNUSED)
 {
   register int temp;
   register long temp_fill;
@@ -11541,15 +11813,14 @@ s_align (x)
 }
 
 void
-mips_flush_pending_output ()
+mips_flush_pending_output (void)
 {
-  mips_emit_delays (false);
+  mips_emit_delays (FALSE);
   mips_clear_insn_labels ();
 }
 
 static void
-s_change_sec (sec)
-     int sec;
+s_change_sec (int sec)
 {
   segT seg;
 
@@ -11570,7 +11841,7 @@ s_change_sec (sec)
   obj_elf_section_change_hook ();
 #endif
 
-  mips_emit_delays (false);
+  mips_emit_delays (FALSE);
   switch (sec)
     {
     case 't':
@@ -11635,26 +11906,26 @@ s_change_sec (sec)
 
   auto_align = 1;
 }
-  
+
 void
-s_change_section (ignore)
-     int ignore ATTRIBUTE_UNUSED;
+s_change_section (int ignore ATTRIBUTE_UNUSED)
 {
 #ifdef OBJ_ELF
   char *section_name;
   char c;
-  char next_c;
+  char next_c = 0;
   int section_type;
   int section_flag;
   int section_entry_size;
   int section_alignment;
-  
+
   if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
     return;
 
   section_name = input_line_pointer;
   c = get_symbol_end ();
-  next_c = *(input_line_pointer + 1);
+  if (c)
+    next_c = *(input_line_pointer + 1);
 
   /* Do we have .section Name<,"flags">?  */
   if (c != ',' || (c == ',' && next_c == '"'))
@@ -11685,25 +11956,29 @@ s_change_section (ignore)
   else
     section_alignment = 0;
 
+  section_name = xstrdup (section_name);
+
   obj_elf_change_section (section_name, section_type, section_flag,
                          section_entry_size, 0, 0, 0);
+
+  if (now_seg->name != section_name)
+    free (section_name);
 #endif /* OBJ_ELF */
 }
 
 void
-mips_enable_auto_align ()
+mips_enable_auto_align (void)
 {
   auto_align = 1;
 }
 
 static void
-s_cons (log_size)
-     int log_size;
+s_cons (int log_size)
 {
   symbolS *label;
 
   label = insn_labels != NULL ? insn_labels->label : NULL;
-  mips_emit_delays (false);
+  mips_emit_delays (FALSE);
   if (log_size > 0 && auto_align)
     mips_align (log_size, 0, label);
   mips_clear_insn_labels ();
@@ -11711,14 +11986,13 @@ s_cons (log_size)
 }
 
 static void
-s_float_cons (type)
-     int type;
+s_float_cons (int type)
 {
   symbolS *label;
 
   label = insn_labels != NULL ? insn_labels->label : NULL;
 
-  mips_emit_delays (false);
+  mips_emit_delays (FALSE);
 
   if (auto_align)
     {
@@ -11740,8 +12014,7 @@ s_float_cons (type)
    considered to be the address of a function.  */
 
 static void
-s_mips_globl (x)
-     int x ATTRIBUTE_UNUSED;
+s_mips_globl (int x ATTRIBUTE_UNUSED)
 {
   char *name;
   int c;
@@ -11781,8 +12054,7 @@ s_mips_globl (x)
 }
 
 static void
-s_option (x)
-     int x ATTRIBUTE_UNUSED;
+s_option (int x ATTRIBUTE_UNUSED)
 {
   char *opt;
   char c;
@@ -11802,7 +12074,10 @@ s_option (x)
       if (i == 0)
        mips_pic = NO_PIC;
       else if (i == 2)
+       {
        mips_pic = SVR4_PIC;
+         mips_abicalls = TRUE;
+       }
       else
        as_bad (_(".option pic%d not supported"), i);
 
@@ -11834,8 +12109,7 @@ static struct mips_option_stack *mips_opts_stack;
 /* Handle the .set pseudo-op.  */
 
 static void
-s_mipsset (x)
-     int x ATTRIBUTE_UNUSED;
+s_mipsset (int x ATTRIBUTE_UNUSED)
 {
   char *name = input_line_pointer, ch;
 
@@ -11859,7 +12133,7 @@ s_mipsset (x)
     }
   else if (strcmp (name, "noreorder") == 0)
     {
-      mips_emit_delays (true);
+      mips_emit_delays (TRUE);
       mips_opts.noreorder = 1;
       mips_any_noreorder = 1;
     }
@@ -11911,29 +12185,73 @@ s_mipsset (x)
     mips_opts.ase_mdmx = 1;
   else if (strcmp (name, "nomdmx") == 0)
     mips_opts.ase_mdmx = 0;
-  else if (strncmp (name, "mips", 4) == 0)
-    {
-      int isa;
+  else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
+    {
+      int reset = 0;
+
+      /* Permit the user to change the ISA and architecture on the fly.
+        Needless to say, misuse can cause serious problems.  */
+      if (strcmp (name, "mips0") == 0)
+       {
+         reset = 1;
+         mips_opts.isa = file_mips_isa;
+       }
+      else if (strcmp (name, "mips1") == 0)
+       mips_opts.isa = ISA_MIPS1;
+      else if (strcmp (name, "mips2") == 0)
+       mips_opts.isa = ISA_MIPS2;
+      else if (strcmp (name, "mips3") == 0)
+       mips_opts.isa = ISA_MIPS3;
+      else if (strcmp (name, "mips4") == 0)
+       mips_opts.isa = ISA_MIPS4;
+      else if (strcmp (name, "mips5") == 0)
+       mips_opts.isa = ISA_MIPS5;
+      else if (strcmp (name, "mips32") == 0)
+       mips_opts.isa = ISA_MIPS32;
+      else if (strcmp (name, "mips32r2") == 0)
+       mips_opts.isa = ISA_MIPS32R2;
+      else if (strcmp (name, "mips64") == 0)
+       mips_opts.isa = ISA_MIPS64;
+      else if (strcmp (name, "mips64r2") == 0)
+       mips_opts.isa = ISA_MIPS64R2;
+      else if (strcmp (name, "arch=default") == 0)
+       {
+         reset = 1;
+         mips_opts.arch = file_mips_arch;
+         mips_opts.isa = file_mips_isa;
+       }
+      else if (strncmp (name, "arch=", 5) == 0)
+       {
+         const struct mips_cpu_info *p;
+
+         p = mips_parse_cpu("internal use", name + 5);
+         if (!p)
+           as_bad (_("unknown architecture %s"), name + 5);
+         else
+           {
+             mips_opts.arch = p->cpu;
+             mips_opts.isa = p->isa;
+           }
+       }
+      else
+       as_bad (_("unknown ISA level %s"), name + 4);
 
-      /* Permit the user to change the ISA on the fly.  Needless to
-        say, misuse can cause serious problems.  */
-      isa = atoi (name + 4);
-      switch (isa)
+      switch (mips_opts.isa)
        {
        case  0:
-         mips_opts.gp32 = file_mips_gp32;
-         mips_opts.fp32 = file_mips_fp32;
          break;
-       case  1:
-       case  2:
-       case 32:
+       case ISA_MIPS1:
+       case ISA_MIPS2:
+       case ISA_MIPS32:
+       case ISA_MIPS32R2:
          mips_opts.gp32 = 1;
          mips_opts.fp32 = 1;
          break;
-       case  3:
-       case  4:
-       case  5:
-       case 64:
+       case ISA_MIPS3:
+       case ISA_MIPS4:
+       case ISA_MIPS5:
+       case ISA_MIPS64:
+       case ISA_MIPS64R2:
          mips_opts.gp32 = 0;
          mips_opts.fp32 = 0;
          break;
@@ -11941,18 +12259,10 @@ s_mipsset (x)
          as_bad (_("unknown ISA level %s"), name + 4);
          break;
        }
-
-      switch (isa)
+      if (reset)
        {
-       case  0: mips_opts.isa = file_mips_isa;   break;
-       case  1: mips_opts.isa = ISA_MIPS1;       break;
-       case  2: mips_opts.isa = ISA_MIPS2;       break;
-       case  3: mips_opts.isa = ISA_MIPS3;       break;
-       case  4: mips_opts.isa = ISA_MIPS4;       break;
-       case  5: mips_opts.isa = ISA_MIPS5;       break;
-       case 32: mips_opts.isa = ISA_MIPS32;      break;
-       case 64: mips_opts.isa = ISA_MIPS64;      break;
-       default: as_bad (_("unknown ISA level %s"), name + 4); break;
+         mips_opts.gp32 = file_mips_gp32;
+         mips_opts.fp32 = file_mips_fp32;
        }
     }
   else if (strcmp (name, "autoextend") == 0)
@@ -11980,7 +12290,7 @@ s_mipsset (x)
          /* If we're changing the reorder mode we need to handle
              delay slots correctly.  */
          if (s->options.noreorder && ! mips_opts.noreorder)
-           mips_emit_delays (true);
+           mips_emit_delays (TRUE);
          else if (! s->options.noreorder && mips_opts.noreorder)
            {
              if (prev_nop_frag != NULL)
@@ -12008,10 +12318,10 @@ s_mipsset (x)
    .option pic2.  It means to generate SVR4 PIC calls.  */
 
 static void
-s_abicalls (ignore)
-     int ignore ATTRIBUTE_UNUSED;
+s_abicalls (int ignore ATTRIBUTE_UNUSED)
 {
   mips_pic = SVR4_PIC;
+  mips_abicalls = TRUE;
   if (USE_GLOBAL_POINTER_OPT)
     {
       if (g_switch_seen && g_switch_value != 0)
@@ -12033,8 +12343,7 @@ s_abicalls (ignore)
    The .cpload argument is normally $25 == $t9.  */
 
 static void
-s_cpload (ignore)
-     int ignore ATTRIBUTE_UNUSED;
+s_cpload (int ignore ATTRIBUTE_UNUSED)
 {
   expressionS ex;
   int icnt = 0;
@@ -12060,11 +12369,11 @@ s_cpload (ignore)
   symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
 
   macro_build_lui (NULL, &icnt, &ex, mips_gp_register);
-  macro_build ((char *) NULL, &icnt, &ex, "addiu", "t,r,j",
-              mips_gp_register, mips_gp_register, (int) BFD_RELOC_LO16);
+  macro_build (NULL, &icnt, &ex, "addiu", "t,r,j", mips_gp_register,
+              mips_gp_register, BFD_RELOC_LO16);
 
-  macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "addu", "d,v,t",
-              mips_gp_register, mips_gp_register, tc_get_register (0));
+  macro_build (NULL, &icnt, NULL, "addu", "d,v,t", mips_gp_register,
+              mips_gp_register, tc_get_register (0));
 
   demand_empty_rest_of_line ();
 }
@@ -12085,8 +12394,7 @@ s_cpload (ignore)
      daddu     $gp, $gp, $reg1
    $reg1 is normally $25 == $t9.  */
 static void
-s_cpsetup (ignore)
-     int ignore ATTRIBUTE_UNUSED;
+s_cpsetup (int ignore ATTRIBUTE_UNUSED)
 {
   expressionS ex_off;
   expressionS ex_sym;
@@ -12140,42 +12448,40 @@ s_cpsetup (ignore)
       ex_off.X_op_symbol = NULL;
       ex_off.X_add_number = mips_cpreturn_offset;
 
-      macro_build ((char *) NULL, &icnt, &ex_off, "sd", "t,o(b)",
-                  mips_gp_register, (int) BFD_RELOC_LO16, SP);
+      macro_build (NULL, &icnt, &ex_off, "sd", "t,o(b)", mips_gp_register,
+                  BFD_RELOC_LO16, SP);
     }
   else
-    macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "daddu",
-                "d,v,t", mips_cpreturn_register, mips_gp_register, 0);
+    macro_build (NULL, &icnt, NULL, "daddu", "d,v,t", mips_cpreturn_register,
+                mips_gp_register, 0);
 
   /* Ensure there's room for the next two instructions, so that `f'
      doesn't end up with an address in the wrong frag.  */
   frag_grow (8);
   f = frag_more (0);
-  macro_build ((char *) NULL, &icnt, &ex_sym, "lui", "t,u", mips_gp_register,
-              (int) BFD_RELOC_GPREL16);
+  macro_build (NULL, &icnt, &ex_sym, "lui", "t,u", mips_gp_register,
+              BFD_RELOC_GPREL16);
   fix_new (frag_now, f - frag_now->fr_literal,
-          0, NULL, 0, 0, BFD_RELOC_MIPS_SUB);
+          8, NULL, 0, 0, BFD_RELOC_MIPS_SUB);
   fix_new (frag_now, f - frag_now->fr_literal,
-          0, NULL, 0, 0, BFD_RELOC_HI16_S);
+          4, NULL, 0, 0, BFD_RELOC_HI16_S);
 
   f = frag_more (0);
-  macro_build ((char *) NULL, &icnt, &ex_sym, "addiu", "t,r,j",
-              mips_gp_register, mips_gp_register, (int) BFD_RELOC_GPREL16);
+  macro_build (NULL, &icnt, &ex_sym, "addiu", "t,r,j", mips_gp_register,
+              mips_gp_register, BFD_RELOC_GPREL16);
   fix_new (frag_now, f - frag_now->fr_literal,
-          0, NULL, 0, 0, BFD_RELOC_MIPS_SUB);
+          8, NULL, 0, 0, BFD_RELOC_MIPS_SUB);
   fix_new (frag_now, f - frag_now->fr_literal,
-          0, NULL, 0, 0, BFD_RELOC_LO16);
+          4, NULL, 0, 0, BFD_RELOC_LO16);
 
-  macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-              HAVE_64BIT_ADDRESSES ? "daddu" : "addu", "d,v,t",
-              mips_gp_register, mips_gp_register, reg1);
+  macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
+              mips_gp_register, reg1);
 
   demand_empty_rest_of_line ();
 }
 
 static void
-s_cplocal (ignore)
-     int ignore ATTRIBUTE_UNUSED;
+s_cplocal (int ignore ATTRIBUTE_UNUSED)
 {
   /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
    .cplocal is ignored.  */
@@ -12194,8 +12500,7 @@ s_cplocal (ignore)
    call $gp is restored from that location.  */
 
 static void
-s_cprestore (ignore)
-     int ignore ATTRIBUTE_UNUSED;
+s_cprestore (int ignore ATTRIBUTE_UNUSED)
 {
   expressionS ex;
   int icnt = 0;
@@ -12216,23 +12521,21 @@ s_cprestore (ignore)
   ex.X_op_symbol = NULL;
   ex.X_add_number = mips_cprestore_offset;
 
-  macro_build_ldst_constoffset ((char *) NULL, &icnt, &ex,
-                               HAVE_32BIT_ADDRESSES ? "sw" : "sd",
-                               mips_gp_register, SP);
+  macro_build_ldst_constoffset (NULL, &icnt, &ex, ADDRESS_STORE_INSN,
+                               mips_gp_register, SP, HAVE_64BIT_ADDRESSES);
 
   demand_empty_rest_of_line ();
 }
 
 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
-   was given in the preceeding .gpsetup, it results in:
+   was given in the preceeding .cpsetup, it results in:
      ld                $gp, offset($sp)
 
    If a register $reg2 was given there, it results in:
-     daddiu    $gp, $gp, $reg2
+     daddu     $gp, $reg2, $0
  */
 static void
-s_cpreturn (ignore)
-     int ignore ATTRIBUTE_UNUSED;
+s_cpreturn (int ignore ATTRIBUTE_UNUSED)
 {
   expressionS ex;
   int icnt = 0;
@@ -12252,12 +12555,12 @@ s_cpreturn (ignore)
       ex.X_op_symbol = NULL;
       ex.X_add_number = mips_cpreturn_offset;
 
-      macro_build ((char *) NULL, &icnt, &ex, "ld", "t,o(b)",
-                  mips_gp_register, (int) BFD_RELOC_LO16, SP);
+      macro_build (NULL, &icnt, &ex, "ld", "t,o(b)", mips_gp_register,
+                  BFD_RELOC_LO16, SP);
     }
   else
-    macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "daddu",
-                "d,v,t", mips_gp_register, mips_cpreturn_register, 0);
+    macro_build (NULL, &icnt, NULL, "daddu", "d,v,t", mips_gp_register,
+                mips_cpreturn_register, 0);
 
   demand_empty_rest_of_line ();
 }
@@ -12266,8 +12569,7 @@ s_cpreturn (ignore)
    code.  It sets the offset to use in gp_rel relocations.  */
 
 static void
-s_gpvalue (ignore)
-     int ignore ATTRIBUTE_UNUSED;
+s_gpvalue (int ignore ATTRIBUTE_UNUSED)
 {
   /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
      We also need NewABI support.  */
@@ -12286,8 +12588,7 @@ s_gpvalue (ignore)
    code.  It generates a 32 bit GP relative reloc.  */
 
 static void
-s_gpword (ignore)
-     int ignore ATTRIBUTE_UNUSED;
+s_gpword (int ignore ATTRIBUTE_UNUSED)
 {
   symbolS *label;
   expressionS ex;
@@ -12301,7 +12602,7 @@ s_gpword (ignore)
     }
 
   label = insn_labels != NULL ? insn_labels->label : NULL;
-  mips_emit_delays (true);
+  mips_emit_delays (TRUE);
   if (auto_align)
     mips_align (2, 0, label);
   mips_clear_insn_labels ();
@@ -12315,16 +12616,15 @@ s_gpword (ignore)
     }
 
   p = frag_more (4);
-  md_number_to_chars (p, (valueT) 0, 4);
-  fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, false,
+  md_number_to_chars (p, 0, 4);
+  fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
               BFD_RELOC_GPREL32);
 
   demand_empty_rest_of_line ();
 }
 
 static void
-s_gpdword (ignore)
-     int ignore ATTRIBUTE_UNUSED;
+s_gpdword (int ignore ATTRIBUTE_UNUSED)
 {
   symbolS *label;
   expressionS ex;
@@ -12338,7 +12638,7 @@ s_gpdword (ignore)
     }
 
   label = insn_labels != NULL ? insn_labels->label : NULL;
-  mips_emit_delays (true);
+  mips_emit_delays (TRUE);
   if (auto_align)
     mips_align (3, 0, label);
   mips_clear_insn_labels ();
@@ -12352,15 +12652,15 @@ s_gpdword (ignore)
     }
 
   p = frag_more (8);
-  md_number_to_chars (p, (valueT) 0, 8);
-  fix_new_exp (frag_now, p - frag_now->fr_literal, 8, &ex, false,
+  md_number_to_chars (p, 0, 8);
+  fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
               BFD_RELOC_GPREL32);
 
   /* GPREL32 composed with 64 gives a 64-bit GP offset.  */
   ex.X_op = O_absent;
   ex.X_add_symbol = 0;
   ex.X_add_number = 0;
-  fix_new_exp (frag_now, p - frag_now->fr_literal, 8, &ex, false,
+  fix_new_exp (frag_now, p - frag_now->fr_literal, 8, &ex, FALSE,
               BFD_RELOC_64);
 
   demand_empty_rest_of_line ();
@@ -12370,8 +12670,7 @@ s_gpdword (ignore)
    tables in SVR4 PIC code.  */
 
 static void
-s_cpadd (ignore)
-     int ignore ATTRIBUTE_UNUSED;
+s_cpadd (int ignore ATTRIBUTE_UNUSED)
 {
   int icnt = 0;
   int reg;
@@ -12385,9 +12684,8 @@ s_cpadd (ignore)
 
   /* Add $gp to the register named as an argument.  */
   reg = tc_get_register (0);
-  macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
-              HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
-              "d,v,t", reg, reg, mips_gp_register);
+  macro_build (NULL, &icnt, NULL, ADDRESS_ADD_INSN, "d,v,t",
+              reg, reg, mips_gp_register);
 
   demand_empty_rest_of_line ();
 }
@@ -12402,8 +12700,7 @@ s_cpadd (ignore)
    again.  */
 
 static void
-s_insn (ignore)
-     int ignore ATTRIBUTE_UNUSED;
+s_insn (int ignore ATTRIBUTE_UNUSED)
 {
   mips16_mark_labels ();
 
@@ -12417,8 +12714,7 @@ s_insn (ignore)
    really a mips16 text label.  */
 
 static void
-s_mips_stab (type)
-     int type;
+s_mips_stab (int type)
 {
   if (type == 'n')
     mips16_mark_labels ();
@@ -12430,8 +12726,7 @@ s_mips_stab (type)
  */
 
 static void
-s_mips_weakext (ignore)
-     int ignore ATTRIBUTE_UNUSED;
+s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
 {
   char *name;
   int c;
@@ -12480,8 +12775,7 @@ s_mips_weakext (ignore)
    register, so that we can record it in mips_frame_reg.  */
 
 int
-tc_get_register (frame)
-     int frame;
+tc_get_register (int frame)
 {
   int reg;
 
@@ -12560,9 +12854,7 @@ tc_get_register (frame)
 }
 
 valueT
-md_section_align (seg, addr)
-     asection *seg;
-     valueT addr;
+md_section_align (asection *seg, valueT addr)
 {
   int align = bfd_get_section_alignment (stdoutput, seg);
 
@@ -12586,9 +12878,7 @@ md_section_align (seg, addr)
    undefined earlier.)  */
 
 static int
-nopic_need_relax (sym, before_relaxing)
-     symbolS *sym;
-     int before_relaxing;
+nopic_need_relax (symbolS *sym, int before_relaxing)
 {
   if (sym == 0)
     return 0;
@@ -12652,14 +12942,67 @@ nopic_need_relax (sym, before_relaxing)
     return 1;
 }
 
+
+/* Return true if the given symbol should be considered local for SVR4 PIC.  */
+
+static bfd_boolean
+pic_need_relax (symbolS *sym, asection *segtype)
+{
+  asection *symsec;
+  bfd_boolean linkonce;
+
+  /* Handle the case of a symbol equated to another symbol.  */
+  while (symbol_equated_reloc_p (sym))
+    {
+      symbolS *n;
+
+      /* It's possible to get a loop here in a badly written
+        program.  */
+      n = symbol_get_value_expression (sym)->X_add_symbol;
+      if (n == sym)
+       break;
+      sym = n;
+    }
+
+  symsec = S_GET_SEGMENT (sym);
+
+  /* duplicate the test for LINK_ONCE sections as in adjust_reloc_syms */
+  linkonce = FALSE;
+  if (symsec != segtype && ! S_IS_LOCAL (sym))
+    {
+      if ((bfd_get_section_flags (stdoutput, symsec) & SEC_LINK_ONCE)
+         != 0)
+       linkonce = TRUE;
+
+      /* The GNU toolchain uses an extension for ELF: a section
+        beginning with the magic string .gnu.linkonce is a linkonce
+        section.  */
+      if (strncmp (segment_name (symsec), ".gnu.linkonce",
+                  sizeof ".gnu.linkonce" - 1) == 0)
+       linkonce = TRUE;
+    }
+
+  /* This must duplicate the test in adjust_reloc_syms.  */
+  return (symsec != &bfd_und_section
+         && symsec != &bfd_abs_section
+         && ! bfd_is_com_section (symsec)
+         && !linkonce
+#ifdef OBJ_ELF
+         /* A global or weak symbol is treated as external.  */
+         && (OUTPUT_FLAVOR != bfd_target_elf_flavour
+             || (! S_IS_WEAK (sym)
+                 && (! S_IS_EXTERNAL (sym)
+                     || mips_pic == EMBEDDED_PIC)))
+#endif
+         );
+}
+
+
 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
    extended opcode.  SEC is the section the frag is in.  */
 
 static int
-mips16_extended_frag (fragp, sec, stretch)
-     fragS *fragp;
-     asection *sec;
-     long stretch;
+mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
 {
   int type;
   register const struct mips16_immed_operand *op;
@@ -12859,12 +13202,9 @@ mips16_extended_frag (fragp, sec, stretch)
    whether an unconditional (-1), branch-likely (+1) or regular (0)
    branch is to be computed.  */
 static int
-relaxed_branch_length (fragp, sec, update)
-     fragS *fragp;
-     asection *sec;
-     int update;
+relaxed_branch_length (fragS *fragp, asection *sec, int update)
 {
-  boolean toofar;
+  bfd_boolean toofar;
   int length;
 
   if (fragp
@@ -12886,14 +13226,13 @@ relaxed_branch_length (fragp, sec, update)
     /* 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;
+    toofar = FALSE;
   else
-    toofar = true;
+    toofar = TRUE;
 
   if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
     fragp->fr_subtype
-      = RELAX_BRANCH_ENCODE (RELAX_BRANCH_RELOC_S2 (fragp->fr_subtype),
-                            RELAX_BRANCH_UNCOND (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);
@@ -12917,7 +13256,7 @@ relaxed_branch_length (fragp, sec, update)
       if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
        length += 8;
     }
-  
+
   return length;
 }
 
@@ -12927,18 +13266,15 @@ relaxed_branch_length (fragp, sec, update)
    decide whether we are using an extended opcode or not.  */
 
 int
-md_estimate_size_before_relax (fragp, segtype)
-     fragS *fragp;
-     asection *segtype;
+md_estimate_size_before_relax (fragS *fragp, asection *segtype)
 {
-  int change = 0;
-  boolean linkonce = false;
+  int change;
 
   if (RELAX_BRANCH_P (fragp->fr_subtype))
     {
 
-      fragp->fr_var = relaxed_branch_length (fragp, segtype, false);
-      
+      fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
+
       return fragp->fr_var;
     }
 
@@ -12948,60 +13284,9 @@ md_estimate_size_before_relax (fragp, segtype)
     return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
 
   if (mips_pic == NO_PIC)
-    {
-      change = nopic_need_relax (fragp->fr_symbol, 0);
-    }
+    change = nopic_need_relax (fragp->fr_symbol, 0);
   else if (mips_pic == SVR4_PIC)
-    {
-      symbolS *sym;
-      asection *symsec;
-
-      sym = fragp->fr_symbol;
-
-      /* Handle the case of a symbol equated to another symbol.  */
-      while (symbol_equated_reloc_p (sym))
-       {
-         symbolS *n;
-
-         /* It's possible to get a loop here in a badly written
-             program.  */
-         n = symbol_get_value_expression (sym)->X_add_symbol;
-         if (n == sym)
-           break;
-         sym = n;
-       }
-
-      symsec = S_GET_SEGMENT (sym);
-
-      /* duplicate the test for LINK_ONCE sections as in adjust_reloc_syms */
-      if (symsec != segtype && ! S_IS_LOCAL (sym))
-       {
-         if ((bfd_get_section_flags (stdoutput, symsec) & SEC_LINK_ONCE)
-             != 0)
-           linkonce = true;
-
-         /* The GNU toolchain uses an extension for ELF: a section
-            beginning with the magic string .gnu.linkonce is a linkonce
-            section.  */
-         if (strncmp (segment_name (symsec), ".gnu.linkonce",
-                      sizeof ".gnu.linkonce" - 1) == 0)
-           linkonce = true;
-       }
-
-      /* This must duplicate the test in adjust_reloc_syms.  */
-      change = (symsec != &bfd_und_section
-               && symsec != &bfd_abs_section
-               && ! bfd_is_com_section (symsec)
-               && !linkonce
-#ifdef OBJ_ELF
-               /* A global or weak symbol is treated as external.  */
-               && (OUTPUT_FLAVOR != bfd_target_elf_flavour
-                   || (! S_IS_WEAK (sym)
-                       && (! S_IS_EXTERNAL (sym)
-                           || mips_pic == EMBEDDED_PIC)))
-#endif
-               );
-    }
+    change = pic_need_relax (fragp->fr_symbol, segtype);
   else
     abort ();
 
@@ -13033,8 +13318,7 @@ md_estimate_size_before_relax (fragp, segtype)
    up a stub.  */
 
 int
-mips_fix_adjustable (fixp)
-     fixS *fixp;
+mips_fix_adjustable (fixS *fixp)
 {
   if (fixp->fx_r_type == BFD_RELOC_MIPS16_JMP)
     return 0;
@@ -13060,17 +13344,14 @@ mips_fix_adjustable (fixp)
    format.  */
 
 arelent **
-tc_gen_reloc (section, fixp)
-     asection *section ATTRIBUTE_UNUSED;
-     fixS *fixp;
+tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
 {
   static arelent *retval[4];
   arelent *reloc;
   bfd_reloc_code_real_type code;
 
-  reloc = retval[0] = (arelent *) xmalloc (sizeof (arelent));
-  retval[1] = NULL;
-
+  memset (retval, 0, sizeof(retval));
+  reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
   reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
   *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
   reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
@@ -13138,6 +13419,8 @@ tc_gen_reloc (section, fixp)
   if (fixp->fx_frag->fr_opcode != NULL
       && ((fixp->fx_r_type == BFD_RELOC_GPREL16
           && ! HAVE_NEWABI)
+         || (fixp->fx_r_type == BFD_RELOC_MIPS_GOT_DISP
+             && HAVE_NEWABI)
          || fixp->fx_r_type == BFD_RELOC_MIPS_GOT16
          || fixp->fx_r_type == BFD_RELOC_MIPS_CALL16
          || fixp->fx_r_type == BFD_RELOC_MIPS_GOT_HI16
@@ -13171,14 +13454,15 @@ tc_gen_reloc (section, fixp)
 
       fixp->fx_where = fixp->fx_frag->fr_opcode - fixp->fx_frag->fr_literal;
       reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
+      reloc->addend += fixp->fx_frag->tc_frag_data.tc_fr_offset;
       reloc2 = retval[1] = (arelent *) xmalloc (sizeof (arelent));
-      retval[2] = NULL;
       reloc2->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
       *reloc2->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
       reloc2->address = (reloc->address
                         + (RELAX_RELOC2 (fixp->fx_frag->fr_subtype)
                            - RELAX_RELOC1 (fixp->fx_frag->fr_subtype)));
-      reloc2->addend = fixp->fx_addnumber;
+      reloc2->addend = fixp->fx_addnumber - S_GET_VALUE (fixp->fx_addsy)
+       + fixp->fx_frag->tc_frag_data.tc_fr_offset;
       reloc2->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_LO16);
       assert (reloc2->howto != NULL);
 
@@ -13187,7 +13471,6 @@ tc_gen_reloc (section, fixp)
          arelent *reloc3;
 
          reloc3 = retval[2] = (arelent *) xmalloc (sizeof (arelent));
-         retval[3] = NULL;
          *reloc3 = *reloc2;
          reloc3->address += 4;
        }
@@ -13207,12 +13490,8 @@ tc_gen_reloc (section, fixp)
              break;
            case BFD_RELOC_MIPS_GOT_LO16:
            case BFD_RELOC_MIPS_CALL_LO16:
-             fixp->fx_r_type = BFD_RELOC_MIPS_GOT16;
-             break;
-           case BFD_RELOC_MIPS_CALL16:
              if (HAVE_NEWABI)
                {
-                 /* BFD_RELOC_MIPS_GOT16;*/
                  fixp->fx_r_type = BFD_RELOC_MIPS_GOT_PAGE;
                  reloc2->howto = bfd_reloc_type_lookup
                    (stdoutput, BFD_RELOC_MIPS_GOT_OFST);
@@ -13220,17 +13499,26 @@ tc_gen_reloc (section, fixp)
              else
                fixp->fx_r_type = BFD_RELOC_MIPS_GOT16;
              break;
+           case BFD_RELOC_MIPS_CALL16:
+           case BFD_RELOC_MIPS_GOT_OFST:
+           case BFD_RELOC_MIPS_GOT_DISP:
+             if (HAVE_NEWABI)
+               {
+                 /* It may seem nonsensical to relax GOT_DISP to
+                    GOT_DISP, but we're actually turning a GOT_DISP
+                    without offset into a GOT_DISP with an offset,
+                    getting rid of the separate addition, which we can
+                    do when the symbol is found to be local.  */
+                 fixp->fx_r_type = BFD_RELOC_MIPS_GOT_DISP;
+                 retval[1] = NULL;
+               }
+             else
+               fixp->fx_r_type = BFD_RELOC_MIPS_GOT16;
+             break;
            }
        }
       else
        abort ();
-
-      /* newabi uses R_MIPS_GOT_DISP for local symbols */
-      if (HAVE_NEWABI && BFD_RELOC_MIPS_GOT_LO16)
-       {
-         fixp->fx_r_type = BFD_RELOC_MIPS_GOT_DISP;
-         retval[1] = NULL;
-       }
     }
 
   /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
@@ -13277,19 +13565,6 @@ tc_gen_reloc (section, fixp)
        }
     }
 
-#ifdef OBJ_ELF
-  /* md_apply_fix3 has a double-subtraction hack to get
-     bfd_install_relocation to behave nicely.  GPREL relocations are
-     handled correctly without this hack, so undo it here.  We can't
-     stop md_apply_fix3 from subtracting twice in the first place since
-     the fake addend is required for variant frags above.  */
-  if (fixp->fx_addsy != NULL && OUTPUT_FLAVOR == bfd_target_elf_flavour
-      && (code == BFD_RELOC_GPREL16 || code == BFD_RELOC_MIPS16_GPREL)
-      && reloc->addend != 0
-      && mips_need_elf_addend_fixup (fixp))
-    reloc->addend += S_GET_VALUE (fixp->fx_addsy);
-#endif
-
   /* To support a PC relative reloc when generating embedded PIC code
      for ECOFF, we use a Cygnus extension.  We check for that here to
      make sure that we don't let such a reloc escape normally.  */
@@ -13316,16 +13591,13 @@ tc_gen_reloc (section, fixp)
    the current size of the frag should change.  */
 
 int
-mips_relax_frag (sec, fragp, stretch)
-     asection *sec;
-     fragS *fragp;
-     long stretch;
+mips_relax_frag (asection *sec, fragS *fragp, long stretch)
 {
   if (RELAX_BRANCH_P (fragp->fr_subtype))
     {
       offsetT old_var = fragp->fr_var;
-      
-      fragp->fr_var = relaxed_branch_length (fragp, sec, true);
+
+      fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
 
       return fragp->fr_var - old_var;
     }
@@ -13354,10 +13626,7 @@ mips_relax_frag (sec, fragp, stretch)
 /* Convert a machine dependent frag.  */
 
 void
-md_convert_frag (abfd, asec, fragp)
-     bfd *abfd ATTRIBUTE_UNUSED;
-     segT asec;
-     fragS *fragp;
+md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
 {
   int old, new;
   char *fixptr;
@@ -13368,14 +13637,14 @@ md_convert_frag (abfd, asec, fragp)
       unsigned long insn;
       expressionS exp;
       fixS *fixp;
-      
+
       buf = (bfd_byte *)fragp->fr_literal + fragp->fr_fix;
 
       if (target_big_endian)
        insn = bfd_getb32 (buf);
       else
        insn = bfd_getl32 (buf);
-         
+
       if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
        {
          /* We generate a fixup instead of applying it right now
@@ -13387,13 +13656,11 @@ md_convert_frag (abfd, asec, fragp)
 
          fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
                              4, &exp, 1,
-                             RELAX_BRANCH_RELOC_S2 (fragp->fr_subtype)
-                             ? BFD_RELOC_16_PCREL_S2
-                             : BFD_RELOC_16_PCREL);
+                             BFD_RELOC_16_PCREL_S2);
          fixp->fx_file = fragp->fr_file;
          fixp->fx_line = fragp->fr_line;
-         
-         md_number_to_chars ((char *)buf, insn, 4);
+
+         md_number_to_chars (buf, insn, 4);
          buf += 4;
        }
       else
@@ -13425,7 +13692,7 @@ md_convert_frag (abfd, asec, fragp)
                  assert ((insn & 0xfc0e0000) == 0x04000000);
                  insn ^= 0x00010000;
                  break;
-                 
+
                case 1:
                  /* beq        0x10000000      bne     0x14000000
                     blez       0x18000000      bgtz    0x1c000000 */
@@ -13462,14 +13729,14 @@ md_convert_frag (abfd, asec, fragp)
          /* Convert to instruction count.  */
          i >>= 2;
          /* Branch counts from the next instruction.  */
-         i--; 
+         i--;
          insn |= i;
          /* Branch over the jump.  */
-         md_number_to_chars ((char *)buf, insn, 4);
+         md_number_to_chars (buf, insn, 4);
          buf += 4;
 
          /* Nop */
-         md_number_to_chars ((char*)buf, 0, 4);
+         md_number_to_chars (buf, 0, 4);
          buf += 4;
 
          if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
@@ -13488,10 +13755,10 @@ md_convert_frag (abfd, asec, fragp)
                 delay slot.  */
 
              insn |= i;
-             md_number_to_chars ((char *)buf, insn, 4);
+             md_number_to_chars (buf, insn, 4);
              buf += 4;
 
-             md_number_to_chars ((char *)buf, 0, 4);
+             md_number_to_chars (buf, 0, 4);
              buf += 4;
            }
 
@@ -13510,7 +13777,7 @@ md_convert_frag (abfd, asec, fragp)
              fixp->fx_file = fragp->fr_file;
              fixp->fx_line = fragp->fr_line;
 
-             md_number_to_chars ((char*)buf, insn, 4);
+             md_number_to_chars (buf, insn, 4);
              buf += 4;
            }
          else
@@ -13532,13 +13799,13 @@ md_convert_frag (abfd, asec, fragp)
              fixp->fx_file = fragp->fr_file;
              fixp->fx_line = fragp->fr_line;
 
-             md_number_to_chars ((char*)buf, insn, 4);
+             md_number_to_chars (buf, insn, 4);
              buf += 4;
-             
+
              if (mips_opts.isa == ISA_MIPS1)
                {
                  /* nop */
-                 md_number_to_chars ((char*)buf, 0, 4);
+                 md_number_to_chars (buf, 0, 4);
                  buf += 4;
                }
 
@@ -13549,8 +13816,8 @@ md_convert_frag (abfd, asec, fragp)
                                  4, &exp, 0, BFD_RELOC_LO16);
              fixp->fx_file = fragp->fr_file;
              fixp->fx_line = fragp->fr_line;
-             
-             md_number_to_chars ((char*)buf, insn, 4);
+
+             md_number_to_chars (buf, insn, 4);
              buf += 4;
 
              /* j(al)r $at.  */
@@ -13559,7 +13826,7 @@ md_convert_frag (abfd, asec, fragp)
              else
                insn = 0x00200008;
 
-             md_number_to_chars ((char*)buf, insn, 4);
+             md_number_to_chars (buf, insn, 4);
              buf += 4;
            }
        }
@@ -13576,11 +13843,11 @@ md_convert_frag (abfd, asec, fragp)
     {
       int type;
       register const struct mips16_immed_operand *op;
-      boolean small, ext;
+      bfd_boolean small, ext;
       offsetT val;
       bfd_byte *buf;
       unsigned long insn;
-      boolean use_extend;
+      bfd_boolean use_extend;
       unsigned short extend;
 
       type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
@@ -13590,13 +13857,13 @@ md_convert_frag (abfd, asec, fragp)
 
       if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
        {
-         small = false;
-         ext = true;
+         small = FALSE;
+         ext = TRUE;
        }
       else
        {
-         small = true;
-         ext = false;
+         small = TRUE;
+         ext = FALSE;
        }
 
       resolve_symbol_value (fragp->fr_symbol);
@@ -13652,12 +13919,12 @@ md_convert_frag (abfd, asec, fragp)
 
       if (use_extend)
        {
-         md_number_to_chars ((char *) buf, 0xf000 | extend, 2);
+         md_number_to_chars (buf, 0xf000 | extend, 2);
          fragp->fr_fix += 2;
          buf += 2;
        }
 
-      md_number_to_chars ((char *) buf, insn, 2);
+      md_number_to_chars (buf, insn, 2);
       fragp->fr_fix += 2;
       buf += 2;
     }
@@ -13671,7 +13938,7 @@ md_convert_frag (abfd, asec, fragp)
       fixptr = fragp->fr_literal + fragp->fr_fix;
 
       if (new > 0)
-       memcpy (fixptr - old, fixptr, new);
+       memmove (fixptr - old, fixptr, new);
 
       fragp->fr_fix += new - old;
     }
@@ -13684,7 +13951,7 @@ md_convert_frag (abfd, asec, fragp)
    back to even for the convenience of the debugger.  */
 
 void
-mips_frob_file_after_relocs ()
+mips_frob_file_after_relocs (void)
 {
   asymbol **syms;
   unsigned int count, i;
@@ -13715,8 +13982,7 @@ mips_frob_file_after_relocs ()
    can not move it.  */
 
 void
-mips_define_label (sym)
-     symbolS *sym;
+mips_define_label (symbolS *sym)
 {
   struct insn_label_list *l;
 
@@ -13738,7 +14004,7 @@ mips_define_label (sym)
 /* Some special processing for a MIPS ELF file.  */
 
 void
-mips_elf_final_processing ()
+mips_elf_final_processing (void)
 {
   /* Write out the register information.  */
   if (mips_abi != N64_ABI)
@@ -13778,7 +14044,12 @@ mips_elf_final_processing ()
   if (mips_any_noreorder)
     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_CPIC;
+    }
+  if (mips_abicalls)
+    elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
 
   /* Set MIPS ELF flags for ASEs.  */
   if (file_ase_mips16)
@@ -13831,8 +14102,7 @@ static int numprocs;
 /* Fill in an rs_align_code fragment.  */
 
 void
-mips_handle_align (fragp)
-     fragS *fragp;
+mips_handle_align (fragS *fragp)
 {
   if (fragp->fr_type != rs_align_code)
     return;
@@ -13862,12 +14132,12 @@ mips_handle_align (fragp)
 }
 
 static void
-md_obj_begin ()
+md_obj_begin (void)
 {
 }
 
 static void
-md_obj_end ()
+md_obj_end (void)
 {
   /* check for premature end, nesting errors, etc */
   if (cur_proc_ptr)
@@ -13875,7 +14145,7 @@ md_obj_end ()
 }
 
 static long
-get_number ()
+get_number (void)
 {
   int negative = 0;
   long val = 0;
@@ -13930,8 +14200,7 @@ get_number ()
    case .file implies DWARF-2.  */
 
 static void
-s_mips_file (x)
-     int x ATTRIBUTE_UNUSED;
+s_mips_file (int x ATTRIBUTE_UNUSED)
 {
   static int first_file_directive = 0;
 
@@ -13962,8 +14231,7 @@ s_mips_file (x)
 /* The .loc directive, implying DWARF-2.  */
 
 static void
-s_mips_loc (x)
-     int x ATTRIBUTE_UNUSED;
+s_mips_loc (int x ATTRIBUTE_UNUSED)
 {
   if (!ECOFF_DEBUGGING)
     dwarf2_directive_loc (0);
@@ -13972,11 +14240,9 @@ s_mips_loc (x)
 /* The .end directive.  */
 
 static void
-s_mips_end (x)
-     int x ATTRIBUTE_UNUSED;
+s_mips_end (int x ATTRIBUTE_UNUSED)
 {
   symbolS *p;
-  int maybe_text;
 
   /* Following functions need their own .frame and .cprestore directives.  */
   mips_frame_reg_valid = 0;
@@ -13990,19 +14256,7 @@ s_mips_end (x)
   else
     p = NULL;
 
-#ifdef BFD_ASSEMBLER
-  if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
-    maybe_text = 1;
-  else
-    maybe_text = 0;
-#else
-  if (now_seg != data_section && now_seg != bss_section)
-    maybe_text = 1;
-  else
-    maybe_text = 0;
-#endif
-
-  if (!maybe_text)
+  if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
     as_warn (_(".end not in text section"));
 
   if (!cur_proc_ptr)
@@ -14027,7 +14281,8 @@ s_mips_end (x)
 
 #ifdef OBJ_ELF
   /* Generate a .pdr section.  */
-  if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
+  if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING
+      && mips_flag_pdr)
     {
       segT saved_seg = now_seg;
       subsegT saved_subseg = now_subseg;
@@ -14052,13 +14307,13 @@ s_mips_end (x)
 
       fragp = frag_more (7 * 4);
 
-      md_number_to_chars (fragp,      (valueT) cur_proc_ptr->reg_mask, 4);
-      md_number_to_chars (fragp +  4, (valueT) cur_proc_ptr->reg_offset, 4);
-      md_number_to_chars (fragp +  8, (valueT) cur_proc_ptr->fpreg_mask, 4);
-      md_number_to_chars (fragp + 12, (valueT) cur_proc_ptr->fpreg_offset, 4);
-      md_number_to_chars (fragp + 16, (valueT) cur_proc_ptr->frame_offset, 4);
-      md_number_to_chars (fragp + 20, (valueT) cur_proc_ptr->frame_reg, 4);
-      md_number_to_chars (fragp + 24, (valueT) cur_proc_ptr->pc_reg, 4);
+      md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
+      md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
+      md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
+      md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
+      md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
+      md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
+      md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
 
       subseg_set (saved_seg, saved_subseg);
     }
@@ -14070,11 +14325,9 @@ s_mips_end (x)
 /* The .aent and .ent directives.  */
 
 static void
-s_mips_ent (aent)
-     int aent;
+s_mips_ent (int aent)
 {
   symbolS *symbolP;
-  int maybe_text;
 
   symbolP = get_symbol ();
   if (*input_line_pointer == ',')
@@ -14084,19 +14337,7 @@ s_mips_ent (aent)
       || *input_line_pointer == '-')
     get_number ();
 
-#ifdef BFD_ASSEMBLER
-  if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
-    maybe_text = 1;
-  else
-    maybe_text = 0;
-#else
-  if (now_seg != data_section && now_seg != bss_section)
-    maybe_text = 1;
-  else
-    maybe_text = 0;
-#endif
-
-  if (!maybe_text)
+  if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
     as_warn (_(".ent or .aent not in text section."));
 
   if (!aent && cur_proc_ptr)
@@ -14132,8 +14373,7 @@ s_mips_ent (aent)
    symbol table (in the mdebug section).  */
 
 static void
-s_mips_frame (ignore)
-     int ignore ATTRIBUTE_UNUSED;
+s_mips_frame (int ignore ATTRIBUTE_UNUSED)
 {
 #ifdef OBJ_ELF
   if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
@@ -14176,8 +14416,7 @@ s_mips_frame (ignore)
    make reference to the ecoff symbol table (in the mdebug section).  */
 
 static void
-s_mips_mask (reg_type)
-     char reg_type;
+s_mips_mask (int reg_type)
 {
 #ifdef OBJ_ELF
   if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
@@ -14223,8 +14462,7 @@ s_mips_mask (reg_type)
 
 #if 0
 static void
-s_loc (x)
-     int x;
+s_loc (int x)
 {
   symbolS *symbolP;
   int lineno;
@@ -14257,7 +14495,9 @@ static const struct mips_cpu_info mips_cpu_info_table[] =
   { "mips4",          1,      ISA_MIPS4,      CPU_R8000 },
   { "mips5",          1,      ISA_MIPS5,      CPU_MIPS5 },
   { "mips32",         1,      ISA_MIPS32,     CPU_MIPS32 },
+  { "mips32r2",       1,      ISA_MIPS32R2,   CPU_MIPS32R2 },
   { "mips64",         1,      ISA_MIPS64,     CPU_MIPS64 },
+  { "mips64r2",       1,      ISA_MIPS64R2,   CPU_MIPS64R2 },
 
   /* MIPS I */
   { "r3000",          0,      ISA_MIPS1,      CPU_R3000 },
@@ -14293,10 +14533,11 @@ static const struct mips_cpu_info mips_cpu_info_table[] =
   { "rm5231",         0,      ISA_MIPS4,      CPU_R5000 },
   { "rm5261",         0,      ISA_MIPS4,      CPU_R5000 },
   { "rm5721",         0,      ISA_MIPS4,      CPU_R5000 },
-  { "r7000",          0,      ISA_MIPS4,      CPU_R5000 },
+  { "rm7000",         0,      ISA_MIPS4,      CPU_RM7000 },
+  { "rm9000",         0,      ISA_MIPS4,      CPU_RM7000 },
 
   /* MIPS 32 */
-  { "4kc",            0,      ISA_MIPS32,     CPU_MIPS32, },
+  { "4kc",            0,      ISA_MIPS32,     CPU_MIPS32 },
   { "4km",            0,      ISA_MIPS32,     CPU_MIPS32 },
   { "4kp",            0,      ISA_MIPS32,     CPU_MIPS32 },
 
@@ -14317,9 +14558,8 @@ static const struct mips_cpu_info mips_cpu_info_table[] =
 
    Note: this function is shared between GCC and GAS.  */
 
-static boolean
-mips_strict_matching_cpu_name_p (canonical, given)
-     const char *canonical, *given;
+static bfd_boolean
+mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
 {
   while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
     given++, canonical++;
@@ -14334,21 +14574,20 @@ mips_strict_matching_cpu_name_p (canonical, given)
 
    Note: this function is shared between GCC and GAS.  */
 
-static boolean
-mips_matching_cpu_name_p (canonical, given)
-     const char *canonical, *given;
+static bfd_boolean
+mips_matching_cpu_name_p (const char *canonical, const char *given)
 {
   /* First see if the name matches exactly, or with a final "000"
      turned into "k".  */
   if (mips_strict_matching_cpu_name_p (canonical, given))
-    return true;
+    return TRUE;
 
   /* If not, try comparing based on numerical designation alone.
      See if GIVEN is an unadorned number, or 'r' followed by a number.  */
   if (TOLOWER (*given) == 'r')
     given++;
   if (!ISDIGIT (*given))
-    return false;
+    return FALSE;
 
   /* Skip over some well-known prefixes in the canonical name,
      hoping to find a number there too.  */
@@ -14371,8 +14610,7 @@ mips_matching_cpu_name_p (canonical, given)
    A similar function exists in GCC.  */
 
 static const struct mips_cpu_info *
-mips_parse_cpu (option, cpu_string)
-     const char *option, *cpu_string;
+mips_parse_cpu (const char *option, const char *cpu_string)
 {
   const struct mips_cpu_info *p;
 
@@ -14418,8 +14656,7 @@ mips_parse_cpu (option, cpu_string)
    ISA_MIPS* enumeration).  */
 
 static const struct mips_cpu_info *
-mips_cpu_info_from_isa (isa)
-     int isa;
+mips_cpu_info_from_isa (int isa)
 {
   int i;
 
@@ -14430,13 +14667,21 @@ mips_cpu_info_from_isa (isa)
 
   return NULL;
 }
+
+static const struct mips_cpu_info *
+mips_cpu_info_from_arch (int arch)
+{
+  int i;
+
+  for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
+    if (arch == mips_cpu_info_table[i].cpu)
+      return (&mips_cpu_info_table[i]);
+
+  return NULL;
+}
 \f
 static void
-show (stream, string, col_p, first_p)
-     FILE *stream;
-     const char *string;
-     int *col_p;
-     int *first_p;
+show (FILE *stream, const char *string, int *col_p, int *first_p)
 {
   if (*first_p)
     {
@@ -14462,8 +14707,7 @@ show (stream, string, col_p, first_p)
 }
 
 void
-md_show_usage (stream)
-     FILE *stream;
+md_show_usage (FILE *stream)
 {
   int column, first;
   size_t i;
@@ -14483,7 +14727,9 @@ MIPS options:\n\
 -mips4                 generate MIPS ISA IV instructions\n\
 -mips5                  generate MIPS ISA V instructions\n\
 -mips32                 generate MIPS32 ISA instructions\n\
+-mips32r2               generate MIPS32 release 2 ISA instructions\n\
 -mips64                 generate MIPS64 ISA instructions\n\
+-mips64r2               generate MIPS64 release 2 ISA instructions\n\
 -march=CPU/-mtune=CPU  generate code/schedule for CPU, where CPU is one of:\n"));
 
   first = 1;
@@ -14523,6 +14769,7 @@ MIPS options:\n\
 -KPIC, -call_shared    generate SVR4 position independent code\n\
 -non_shared            do not generate position independent code\n\
 -xgot                  assume a 32 bit GOT\n\
+-mpdr, -mno-pdr                enable/disable creation of .pdr sections\n\
 -mabi=ABI              create ABI conformant object file for:\n"));
 
   first = 1;
@@ -14541,3 +14788,18 @@ MIPS options:\n\
 -64                    create 64 ABI object file\n"));
 #endif
 }
+
+enum dwarf2_format
+mips_dwarf2_format (void)
+{
+  if (mips_abi == N64_ABI)
+    {
+#ifdef TE_IRIX
+      return dwarf2_format_64bit_irix;
+#else
+      return dwarf2_format_64bit;
+#endif
+    }
+  else
+    return dwarf2_format_32bit;
+}
This page took 0.186347 seconds and 4 git commands to generate.