include/opcode/
[external/binutils.git] / gas / config / tc-mips.c
1 /* tc-mips.c -- assemble code for a MIPS chip.
2    Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3    2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4    Free Software Foundation, Inc.
5    Contributed by the OSF and Ralph Campbell.
6    Written by Keith Knowles and Ralph Campbell, working independently.
7    Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
8    Support.
9
10    This file is part of GAS.
11
12    GAS is free software; you can redistribute it and/or modify
13    it under the terms of the GNU General Public License as published by
14    the Free Software Foundation; either version 3, or (at your option)
15    any later version.
16
17    GAS is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20    GNU General Public License for more details.
21
22    You should have received a copy of the GNU General Public License
23    along with GAS; see the file COPYING.  If not, write to the Free
24    Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
25    02110-1301, USA.  */
26
27 #include "as.h"
28 #include "config.h"
29 #include "subsegs.h"
30 #include "safe-ctype.h"
31
32 #include "opcode/mips.h"
33 #include "itbl-ops.h"
34 #include "dwarf2dbg.h"
35 #include "dw2gencfi.h"
36
37 #ifdef DEBUG
38 #define DBG(x) printf x
39 #else
40 #define DBG(x)
41 #endif
42
43 #ifdef OBJ_MAYBE_ELF
44 /* Clean up namespace so we can include obj-elf.h too.  */
45 static int mips_output_flavor (void);
46 static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
47 #undef OBJ_PROCESS_STAB
48 #undef OUTPUT_FLAVOR
49 #undef S_GET_ALIGN
50 #undef S_GET_SIZE
51 #undef S_SET_ALIGN
52 #undef S_SET_SIZE
53 #undef obj_frob_file
54 #undef obj_frob_file_after_relocs
55 #undef obj_frob_symbol
56 #undef obj_pop_insert
57 #undef obj_sec_sym_ok_for_reloc
58 #undef OBJ_COPY_SYMBOL_ATTRIBUTES
59
60 #include "obj-elf.h"
61 /* Fix any of them that we actually care about.  */
62 #undef OUTPUT_FLAVOR
63 #define OUTPUT_FLAVOR mips_output_flavor()
64 #endif
65
66 #if defined (OBJ_ELF)
67 #include "elf/mips.h"
68 #endif
69
70 #ifndef ECOFF_DEBUGGING
71 #define NO_ECOFF_DEBUGGING
72 #define ECOFF_DEBUGGING 0
73 #endif
74
75 int mips_flag_mdebug = -1;
76
77 /* Control generation of .pdr sections.  Off by default on IRIX: the native
78    linker doesn't know about and discards them, but relocations against them
79    remain, leading to rld crashes.  */
80 #ifdef TE_IRIX
81 int mips_flag_pdr = FALSE;
82 #else
83 int mips_flag_pdr = TRUE;
84 #endif
85
86 #include "ecoff.h"
87
88 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
89 static char *mips_regmask_frag;
90 #endif
91
92 #define ZERO 0
93 #define ATREG 1
94 #define TREG 24
95 #define PIC_CALL_REG 25
96 #define KT0 26
97 #define KT1 27
98 #define GP  28
99 #define SP  29
100 #define FP  30
101 #define RA  31
102
103 #define ILLEGAL_REG (32)
104
105 #define AT  mips_opts.at
106
107 /* Allow override of standard little-endian ECOFF format.  */
108
109 #ifndef ECOFF_LITTLE_FORMAT
110 #define ECOFF_LITTLE_FORMAT "ecoff-littlemips"
111 #endif
112
113 extern int target_big_endian;
114
115 /* The name of the readonly data section.  */
116 #define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_ecoff_flavour \
117                             ? ".rdata" \
118                             : OUTPUT_FLAVOR == bfd_target_coff_flavour \
119                             ? ".rdata" \
120                             : OUTPUT_FLAVOR == bfd_target_elf_flavour \
121                             ? ".rodata" \
122                             : (abort (), ""))
123
124 /* Ways in which an instruction can be "appended" to the output.  */
125 enum append_method {
126   /* Just add it normally.  */
127   APPEND_ADD,
128
129   /* Add it normally and then add a nop.  */
130   APPEND_ADD_WITH_NOP,
131
132   /* Turn an instruction with a delay slot into a "compact" version.  */
133   APPEND_ADD_COMPACT,
134
135   /* Insert the instruction before the last one.  */
136   APPEND_SWAP
137 };
138
139 /* Information about an instruction, including its format, operands
140    and fixups.  */
141 struct mips_cl_insn
142 {
143   /* The opcode's entry in mips_opcodes or mips16_opcodes.  */
144   const struct mips_opcode *insn_mo;
145
146   /* True if this is a mips16 instruction and if we want the extended
147      form of INSN_MO.  */
148   bfd_boolean use_extend;
149
150   /* The 16-bit extension instruction to use when USE_EXTEND is true.  */
151   unsigned short extend;
152
153   /* The 16-bit or 32-bit bitstring of the instruction itself.  This is
154      a copy of INSN_MO->match with the operands filled in.  */
155   unsigned long insn_opcode;
156
157   /* The frag that contains the instruction.  */
158   struct frag *frag;
159
160   /* The offset into FRAG of the first instruction byte.  */
161   long where;
162
163   /* The relocs associated with the instruction, if any.  */
164   fixS *fixp[3];
165
166   /* True if this entry cannot be moved from its current position.  */
167   unsigned int fixed_p : 1;
168
169   /* True if this instruction occurred in a .set noreorder block.  */
170   unsigned int noreorder_p : 1;
171
172   /* True for mips16 instructions that jump to an absolute address.  */
173   unsigned int mips16_absolute_jump_p : 1;
174
175   /* True if this instruction is complete.  */
176   unsigned int complete_p : 1;
177 };
178
179 /* The ABI to use.  */
180 enum mips_abi_level
181 {
182   NO_ABI = 0,
183   O32_ABI,
184   O64_ABI,
185   N32_ABI,
186   N64_ABI,
187   EABI_ABI
188 };
189
190 /* MIPS ABI we are using for this output file.  */
191 static enum mips_abi_level mips_abi = NO_ABI;
192
193 /* Whether or not we have code that can call pic code.  */
194 int mips_abicalls = FALSE;
195
196 /* Whether or not we have code which can be put into a shared
197    library.  */
198 static bfd_boolean mips_in_shared = TRUE;
199
200 /* This is the set of options which may be modified by the .set
201    pseudo-op.  We use a struct so that .set push and .set pop are more
202    reliable.  */
203
204 struct mips_set_options
205 {
206   /* MIPS ISA (Instruction Set Architecture) level.  This is set to -1
207      if it has not been initialized.  Changed by `.set mipsN', and the
208      -mipsN command line option, and the default CPU.  */
209   int isa;
210   /* Enabled Application Specific Extensions (ASEs).  These are set to -1
211      if they have not been initialized.  Changed by `.set <asename>', by
212      command line options, and based on the default architecture.  */
213   int ase_mips3d;
214   int ase_mdmx;
215   int ase_smartmips;
216   int ase_dsp;
217   int ase_dspr2;
218   int ase_mt;
219   /* Whether we are assembling for the mips16 processor.  0 if we are
220      not, 1 if we are, and -1 if the value has not been initialized.
221      Changed by `.set mips16' and `.set nomips16', and the -mips16 and
222      -nomips16 command line options, and the default CPU.  */
223   int mips16;
224   /* Non-zero if we should not reorder instructions.  Changed by `.set
225      reorder' and `.set noreorder'.  */
226   int noreorder;
227   /* Non-zero if we should not permit the register designated "assembler
228      temporary" to be used in instructions.  The value is the register
229      number, normally $at ($1).  Changed by `.set at=REG', `.set noat'
230      (same as `.set at=$0') and `.set at' (same as `.set at=$1').  */
231   unsigned int at;
232   /* Non-zero if we should warn when a macro instruction expands into
233      more than one machine instruction.  Changed by `.set nomacro' and
234      `.set macro'.  */
235   int warn_about_macros;
236   /* Non-zero if we should not move instructions.  Changed by `.set
237      move', `.set volatile', `.set nomove', and `.set novolatile'.  */
238   int nomove;
239   /* Non-zero if we should not optimize branches by moving the target
240      of the branch into the delay slot.  Actually, we don't perform
241      this optimization anyhow.  Changed by `.set bopt' and `.set
242      nobopt'.  */
243   int nobopt;
244   /* Non-zero if we should not autoextend mips16 instructions.
245      Changed by `.set autoextend' and `.set noautoextend'.  */
246   int noautoextend;
247   /* Restrict general purpose registers and floating point registers
248      to 32 bit.  This is initially determined when -mgp32 or -mfp32
249      is passed but can changed if the assembler code uses .set mipsN.  */
250   int gp32;
251   int fp32;
252   /* MIPS architecture (CPU) type.  Changed by .set arch=FOO, the -march
253      command line option, and the default CPU.  */
254   int arch;
255   /* True if ".set sym32" is in effect.  */
256   bfd_boolean sym32;
257   /* True if floating-point operations are not allowed.  Changed by .set
258      softfloat or .set hardfloat, by command line options -msoft-float or
259      -mhard-float.  The default is false.  */
260   bfd_boolean soft_float;
261
262   /* True if only single-precision floating-point operations are allowed.
263      Changed by .set singlefloat or .set doublefloat, command-line options
264      -msingle-float or -mdouble-float.  The default is false.  */
265   bfd_boolean single_float;
266 };
267
268 /* This is the struct we use to hold the current set of options.  Note
269    that we must set the isa field to ISA_UNKNOWN and the ASE fields to
270    -1 to indicate that they have not been initialized.  */
271
272 /* True if -mgp32 was passed.  */
273 static int file_mips_gp32 = -1;
274
275 /* True if -mfp32 was passed.  */
276 static int file_mips_fp32 = -1;
277
278 /* 1 if -msoft-float, 0 if -mhard-float.  The default is 0.  */
279 static int file_mips_soft_float = 0;
280
281 /* 1 if -msingle-float, 0 if -mdouble-float.  The default is 0.   */
282 static int file_mips_single_float = 0;
283
284 static struct mips_set_options mips_opts =
285 {
286   /* isa */ ISA_UNKNOWN, /* ase_mips3d */ -1, /* ase_mdmx */ -1,
287   /* ase_smartmips */ 0, /* ase_dsp */ -1, /* ase_dspr2 */ -1, /* ase_mt */ -1,
288   /* mips16 */ -1, /* noreorder */ 0, /* at */ ATREG,
289   /* warn_about_macros */ 0, /* nomove */ 0, /* nobopt */ 0,
290   /* noautoextend */ 0, /* gp32 */ 0, /* fp32 */ 0, /* arch */ CPU_UNKNOWN,
291   /* sym32 */ FALSE, /* soft_float */ FALSE, /* single_float */ FALSE
292 };
293
294 /* These variables are filled in with the masks of registers used.
295    The object format code reads them and puts them in the appropriate
296    place.  */
297 unsigned long mips_gprmask;
298 unsigned long mips_cprmask[4];
299
300 /* MIPS ISA we are using for this output file.  */
301 static int file_mips_isa = ISA_UNKNOWN;
302
303 /* True if any MIPS16 code was produced.  */
304 static int file_ase_mips16;
305
306 #define ISA_SUPPORTS_MIPS16E (mips_opts.isa == ISA_MIPS32               \
307                               || mips_opts.isa == ISA_MIPS32R2          \
308                               || mips_opts.isa == ISA_MIPS64            \
309                               || mips_opts.isa == ISA_MIPS64R2)
310
311 /* True if we want to create R_MIPS_JALR for jalr $25.  */
312 #ifdef TE_IRIX
313 #define MIPS_JALR_HINT_P(EXPR) HAVE_NEWABI
314 #else
315 /* As a GNU extension, we use R_MIPS_JALR for o32 too.  However,
316    because there's no place for any addend, the only acceptable
317    expression is a bare symbol.  */
318 #define MIPS_JALR_HINT_P(EXPR) \
319   (!HAVE_IN_PLACE_ADDENDS \
320    || ((EXPR)->X_op == O_symbol && (EXPR)->X_add_number == 0))
321 #endif
322
323 /* True if -mips3d was passed or implied by arguments passed on the
324    command line (e.g., by -march).  */
325 static int file_ase_mips3d;
326
327 /* True if -mdmx was passed or implied by arguments passed on the
328    command line (e.g., by -march).  */
329 static int file_ase_mdmx;
330
331 /* True if -msmartmips was passed or implied by arguments passed on the
332    command line (e.g., by -march).  */
333 static int file_ase_smartmips;
334
335 #define ISA_SUPPORTS_SMARTMIPS (mips_opts.isa == ISA_MIPS32             \
336                                 || mips_opts.isa == ISA_MIPS32R2)
337
338 /* True if -mdsp was passed or implied by arguments passed on the
339    command line (e.g., by -march).  */
340 static int file_ase_dsp;
341
342 #define ISA_SUPPORTS_DSP_ASE (mips_opts.isa == ISA_MIPS32R2             \
343                               || mips_opts.isa == ISA_MIPS64R2)
344
345 #define ISA_SUPPORTS_DSP64_ASE (mips_opts.isa == ISA_MIPS64R2)
346
347 /* True if -mdspr2 was passed or implied by arguments passed on the
348    command line (e.g., by -march).  */
349 static int file_ase_dspr2;
350
351 #define ISA_SUPPORTS_DSPR2_ASE (mips_opts.isa == ISA_MIPS32R2           \
352                                 || mips_opts.isa == ISA_MIPS64R2)
353
354 /* True if -mmt was passed or implied by arguments passed on the
355    command line (e.g., by -march).  */
356 static int file_ase_mt;
357
358 #define ISA_SUPPORTS_MT_ASE (mips_opts.isa == ISA_MIPS32R2              \
359                              || mips_opts.isa == ISA_MIPS64R2)
360
361 /* The argument of the -march= flag.  The architecture we are assembling.  */
362 static int file_mips_arch = CPU_UNKNOWN;
363 static const char *mips_arch_string;
364
365 /* The argument of the -mtune= flag.  The architecture for which we
366    are optimizing.  */
367 static int mips_tune = CPU_UNKNOWN;
368 static const char *mips_tune_string;
369
370 /* True when generating 32-bit code for a 64-bit processor.  */
371 static int mips_32bitmode = 0;
372
373 /* True if the given ABI requires 32-bit registers.  */
374 #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
375
376 /* Likewise 64-bit registers.  */
377 #define ABI_NEEDS_64BIT_REGS(ABI)       \
378   ((ABI) == N32_ABI                     \
379    || (ABI) == N64_ABI                  \
380    || (ABI) == O64_ABI)
381
382 /*  Return true if ISA supports 64 bit wide gp registers.  */
383 #define ISA_HAS_64BIT_REGS(ISA)         \
384   ((ISA) == ISA_MIPS3                   \
385    || (ISA) == ISA_MIPS4                \
386    || (ISA) == ISA_MIPS5                \
387    || (ISA) == ISA_MIPS64               \
388    || (ISA) == ISA_MIPS64R2)
389
390 /*  Return true if ISA supports 64 bit wide float registers.  */
391 #define ISA_HAS_64BIT_FPRS(ISA)         \
392   ((ISA) == ISA_MIPS3                   \
393    || (ISA) == ISA_MIPS4                \
394    || (ISA) == ISA_MIPS5                \
395    || (ISA) == ISA_MIPS32R2             \
396    || (ISA) == ISA_MIPS64               \
397    || (ISA) == ISA_MIPS64R2)
398
399 /* Return true if ISA supports 64-bit right rotate (dror et al.)
400    instructions.  */
401 #define ISA_HAS_DROR(ISA)               \
402   ((ISA) == ISA_MIPS64R2)
403
404 /* Return true if ISA supports 32-bit right rotate (ror et al.)
405    instructions.  */
406 #define ISA_HAS_ROR(ISA)                \
407   ((ISA) == ISA_MIPS32R2                \
408    || (ISA) == ISA_MIPS64R2             \
409    || mips_opts.ase_smartmips)
410
411 /* Return true if ISA supports single-precision floats in odd registers.  */
412 #define ISA_HAS_ODD_SINGLE_FPR(ISA)     \
413   ((ISA) == ISA_MIPS32                  \
414    || (ISA) == ISA_MIPS32R2             \
415    || (ISA) == ISA_MIPS64               \
416    || (ISA) == ISA_MIPS64R2)
417
418 /* Return true if ISA supports move to/from high part of a 64-bit
419    floating-point register. */
420 #define ISA_HAS_MXHC1(ISA)              \
421   ((ISA) == ISA_MIPS32R2                \
422    || (ISA) == ISA_MIPS64R2)
423
424 #define HAVE_32BIT_GPRS                            \
425     (mips_opts.gp32 || !ISA_HAS_64BIT_REGS (mips_opts.isa))
426
427 #define HAVE_32BIT_FPRS                            \
428     (mips_opts.fp32 || !ISA_HAS_64BIT_FPRS (mips_opts.isa))
429
430 #define HAVE_64BIT_GPRS (!HAVE_32BIT_GPRS)
431 #define HAVE_64BIT_FPRS (!HAVE_32BIT_FPRS)
432
433 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
434
435 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
436
437 /* True if relocations are stored in-place.  */
438 #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
439
440 /* The ABI-derived address size.  */
441 #define HAVE_64BIT_ADDRESSES \
442   (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
443 #define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
444
445 /* The size of symbolic constants (i.e., expressions of the form
446    "SYMBOL" or "SYMBOL + OFFSET").  */
447 #define HAVE_32BIT_SYMBOLS \
448   (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
449 #define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
450
451 /* Addresses are loaded in different ways, depending on the address size
452    in use.  The n32 ABI Documentation also mandates the use of additions
453    with overflow checking, but existing implementations don't follow it.  */
454 #define ADDRESS_ADD_INSN                                                \
455    (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
456
457 #define ADDRESS_ADDI_INSN                                               \
458    (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
459
460 #define ADDRESS_LOAD_INSN                                               \
461    (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
462
463 #define ADDRESS_STORE_INSN                                              \
464    (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
465
466 /* Return true if the given CPU supports the MIPS16 ASE.  */
467 #define CPU_HAS_MIPS16(cpu)                                             \
468    (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0          \
469     || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
470
471 /* True if CPU has a dror instruction.  */
472 #define CPU_HAS_DROR(CPU)       ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
473
474 /* True if CPU has a ror instruction.  */
475 #define CPU_HAS_ROR(CPU)        CPU_HAS_DROR (CPU)
476
477 /* True if CPU has seq/sne and seqi/snei instructions.  */
478 #define CPU_HAS_SEQ(CPU)        ((CPU) == CPU_OCTEON)
479
480 /* True if CPU does not implement the all the coprocessor insns.  For these
481    CPUs only those COP insns are accepted that are explicitly marked to be
482    available on the CPU.  ISA membership for COP insns is ignored.  */
483 #define NO_ISA_COP(CPU)         ((CPU) == CPU_OCTEON)
484
485 /* True if mflo and mfhi can be immediately followed by instructions
486    which write to the HI and LO registers.
487
488    According to MIPS specifications, MIPS ISAs I, II, and III need
489    (at least) two instructions between the reads of HI/LO and
490    instructions which write them, and later ISAs do not.  Contradicting
491    the MIPS specifications, some MIPS IV processor user manuals (e.g.
492    the UM for the NEC Vr5000) document needing the instructions between
493    HI/LO reads and writes, as well.  Therefore, we declare only MIPS32,
494    MIPS64 and later ISAs to have the interlocks, plus any specific
495    earlier-ISA CPUs for which CPU documentation declares that the
496    instructions are really interlocked.  */
497 #define hilo_interlocks \
498   (mips_opts.isa == ISA_MIPS32                        \
499    || mips_opts.isa == ISA_MIPS32R2                   \
500    || mips_opts.isa == ISA_MIPS64                     \
501    || mips_opts.isa == ISA_MIPS64R2                   \
502    || mips_opts.arch == CPU_R4010                     \
503    || mips_opts.arch == CPU_R10000                    \
504    || mips_opts.arch == CPU_R12000                    \
505    || mips_opts.arch == CPU_R14000                    \
506    || mips_opts.arch == CPU_R16000                    \
507    || mips_opts.arch == CPU_RM7000                    \
508    || mips_opts.arch == CPU_VR5500                    \
509    )
510
511 /* Whether the processor uses hardware interlocks to protect reads
512    from the GPRs after they are loaded from memory, and thus does not
513    require nops to be inserted.  This applies to instructions marked
514    INSN_LOAD_MEMORY_DELAY.  These nops are only required at MIPS ISA
515    level I.  */
516 #define gpr_interlocks \
517   (mips_opts.isa != ISA_MIPS1  \
518    || mips_opts.arch == CPU_R3900)
519
520 /* Whether the processor uses hardware interlocks to avoid delays
521    required by coprocessor instructions, and thus does not require
522    nops to be inserted.  This applies to instructions marked
523    INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
524    between instructions marked INSN_WRITE_COND_CODE and ones marked
525    INSN_READ_COND_CODE.  These nops are only required at MIPS ISA
526    levels I, II, and III.  */
527 /* Itbl support may require additional care here.  */
528 #define cop_interlocks                                \
529   ((mips_opts.isa != ISA_MIPS1                        \
530     && mips_opts.isa != ISA_MIPS2                     \
531     && mips_opts.isa != ISA_MIPS3)                    \
532    || mips_opts.arch == CPU_R4300                     \
533    )
534
535 /* Whether the processor uses hardware interlocks to protect reads
536    from coprocessor registers after they are loaded from memory, and
537    thus does not require nops to be inserted.  This applies to
538    instructions marked INSN_COPROC_MEMORY_DELAY.  These nops are only
539    requires at MIPS ISA level I.  */
540 #define cop_mem_interlocks (mips_opts.isa != ISA_MIPS1)
541
542 /* Is this a mfhi or mflo instruction?  */
543 #define MF_HILO_INSN(PINFO) \
544   ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
545
546 /* Returns true for a (non floating-point) coprocessor instruction.  Reading
547    or writing the condition code is only possible on the coprocessors and
548    these insns are not marked with INSN_COP.  Thus for these insns use the
549    condition-code flags.  */
550 #define COP_INSN(PINFO)                                                 \
551   (PINFO != INSN_MACRO                                                  \
552    && ((PINFO) & (FP_S | FP_D)) == 0                                    \
553    && ((PINFO) & (INSN_COP | INSN_READ_COND_CODE | INSN_WRITE_COND_CODE)))
554
555 /* MIPS PIC level.  */
556
557 enum mips_pic_level mips_pic;
558
559 /* 1 if we should generate 32 bit offsets from the $gp register in
560    SVR4_PIC mode.  Currently has no meaning in other modes.  */
561 static int mips_big_got = 0;
562
563 /* 1 if trap instructions should used for overflow rather than break
564    instructions.  */
565 static int mips_trap = 0;
566
567 /* 1 if double width floating point constants should not be constructed
568    by assembling two single width halves into two single width floating
569    point registers which just happen to alias the double width destination
570    register.  On some architectures this aliasing can be disabled by a bit
571    in the status register, and the setting of this bit cannot be determined
572    automatically at assemble time.  */
573 static int mips_disable_float_construction;
574
575 /* Non-zero if any .set noreorder directives were used.  */
576
577 static int mips_any_noreorder;
578
579 /* Non-zero if nops should be inserted when the register referenced in
580    an mfhi/mflo instruction is read in the next two instructions.  */
581 static int mips_7000_hilo_fix;
582
583 /* The size of objects in the small data section.  */
584 static unsigned int g_switch_value = 8;
585 /* Whether the -G option was used.  */
586 static int g_switch_seen = 0;
587
588 #define N_RMASK 0xc4
589 #define N_VFP   0xd4
590
591 /* If we can determine in advance that GP optimization won't be
592    possible, we can skip the relaxation stuff that tries to produce
593    GP-relative references.  This makes delay slot optimization work
594    better.
595
596    This function can only provide a guess, but it seems to work for
597    gcc output.  It needs to guess right for gcc, otherwise gcc
598    will put what it thinks is a GP-relative instruction in a branch
599    delay slot.
600
601    I don't know if a fix is needed for the SVR4_PIC mode.  I've only
602    fixed it for the non-PIC mode.  KR 95/04/07  */
603 static int nopic_need_relax (symbolS *, int);
604
605 /* handle of the OPCODE hash table */
606 static struct hash_control *op_hash = NULL;
607
608 /* The opcode hash table we use for the mips16.  */
609 static struct hash_control *mips16_op_hash = NULL;
610
611 /* This array holds the chars that always start a comment.  If the
612     pre-processor is disabled, these aren't very useful */
613 const char comment_chars[] = "#";
614
615 /* This array holds the chars that only start a comment at the beginning of
616    a line.  If the line seems to have the form '# 123 filename'
617    .line and .file directives will appear in the pre-processed output */
618 /* Note that input_file.c hand checks for '#' at the beginning of the
619    first line of the input file.  This is because the compiler outputs
620    #NO_APP at the beginning of its output.  */
621 /* Also note that C style comments are always supported.  */
622 const char line_comment_chars[] = "#";
623
624 /* This array holds machine specific line separator characters.  */
625 const char line_separator_chars[] = ";";
626
627 /* Chars that can be used to separate mant from exp in floating point nums */
628 const char EXP_CHARS[] = "eE";
629
630 /* Chars that mean this number is a floating point constant */
631 /* As in 0f12.456 */
632 /* or    0d1.2345e12 */
633 const char FLT_CHARS[] = "rRsSfFdDxXpP";
634
635 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
636    changed in read.c .  Ideally it shouldn't have to know about it at all,
637    but nothing is ideal around here.
638  */
639
640 static char *insn_error;
641
642 static int auto_align = 1;
643
644 /* When outputting SVR4 PIC code, the assembler needs to know the
645    offset in the stack frame from which to restore the $gp register.
646    This is set by the .cprestore pseudo-op, and saved in this
647    variable.  */
648 static offsetT mips_cprestore_offset = -1;
649
650 /* Similar for NewABI PIC code, where $gp is callee-saved.  NewABI has some
651    more optimizations, it can use a register value instead of a memory-saved
652    offset and even an other register than $gp as global pointer.  */
653 static offsetT mips_cpreturn_offset = -1;
654 static int mips_cpreturn_register = -1;
655 static int mips_gp_register = GP;
656 static int mips_gprel_offset = 0;
657
658 /* Whether mips_cprestore_offset has been set in the current function
659    (or whether it has already been warned about, if not).  */
660 static int mips_cprestore_valid = 0;
661
662 /* This is the register which holds the stack frame, as set by the
663    .frame pseudo-op.  This is needed to implement .cprestore.  */
664 static int mips_frame_reg = SP;
665
666 /* Whether mips_frame_reg has been set in the current function
667    (or whether it has already been warned about, if not).  */
668 static int mips_frame_reg_valid = 0;
669
670 /* To output NOP instructions correctly, we need to keep information
671    about the previous two instructions.  */
672
673 /* Whether we are optimizing.  The default value of 2 means to remove
674    unneeded NOPs and swap branch instructions when possible.  A value
675    of 1 means to not swap branches.  A value of 0 means to always
676    insert NOPs.  */
677 static int mips_optimize = 2;
678
679 /* Debugging level.  -g sets this to 2.  -gN sets this to N.  -g0 is
680    equivalent to seeing no -g option at all.  */
681 static int mips_debug = 0;
682
683 /* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata.  */
684 #define MAX_VR4130_NOPS 4
685
686 /* The maximum number of NOPs needed to fill delay slots.  */
687 #define MAX_DELAY_NOPS 2
688
689 /* The maximum number of NOPs needed for any purpose.  */
690 #define MAX_NOPS 4
691
692 /* A list of previous instructions, with index 0 being the most recent.
693    We need to look back MAX_NOPS instructions when filling delay slots
694    or working around processor errata.  We need to look back one
695    instruction further if we're thinking about using history[0] to
696    fill a branch delay slot.  */
697 static struct mips_cl_insn history[1 + MAX_NOPS];
698
699 /* Nop instructions used by emit_nop.  */
700 static struct mips_cl_insn nop_insn, mips16_nop_insn;
701
702 /* The appropriate nop for the current mode.  */
703 #define NOP_INSN (mips_opts.mips16 ? &mips16_nop_insn : &nop_insn)
704
705 /* If this is set, it points to a frag holding nop instructions which
706    were inserted before the start of a noreorder section.  If those
707    nops turn out to be unnecessary, the size of the frag can be
708    decreased.  */
709 static fragS *prev_nop_frag;
710
711 /* The number of nop instructions we created in prev_nop_frag.  */
712 static int prev_nop_frag_holds;
713
714 /* The number of nop instructions that we know we need in
715    prev_nop_frag.  */
716 static int prev_nop_frag_required;
717
718 /* The number of instructions we've seen since prev_nop_frag.  */
719 static int prev_nop_frag_since;
720
721 /* For ECOFF and ELF, relocations against symbols are done in two
722    parts, with a HI relocation and a LO relocation.  Each relocation
723    has only 16 bits of space to store an addend.  This means that in
724    order for the linker to handle carries correctly, it must be able
725    to locate both the HI and the LO relocation.  This means that the
726    relocations must appear in order in the relocation table.
727
728    In order to implement this, we keep track of each unmatched HI
729    relocation.  We then sort them so that they immediately precede the
730    corresponding LO relocation.  */
731
732 struct mips_hi_fixup
733 {
734   /* Next HI fixup.  */
735   struct mips_hi_fixup *next;
736   /* This fixup.  */
737   fixS *fixp;
738   /* The section this fixup is in.  */
739   segT seg;
740 };
741
742 /* The list of unmatched HI relocs.  */
743
744 static struct mips_hi_fixup *mips_hi_fixup_list;
745
746 /* The frag containing the last explicit relocation operator.
747    Null if explicit relocations have not been used.  */
748
749 static fragS *prev_reloc_op_frag;
750
751 /* Map normal MIPS register numbers to mips16 register numbers.  */
752
753 #define X ILLEGAL_REG
754 static const int mips32_to_16_reg_map[] =
755 {
756   X, X, 2, 3, 4, 5, 6, 7,
757   X, X, X, X, X, X, X, X,
758   0, 1, X, X, X, X, X, X,
759   X, X, X, X, X, X, X, X
760 };
761 #undef X
762
763 /* Map mips16 register numbers to normal MIPS register numbers.  */
764
765 static const unsigned int mips16_to_32_reg_map[] =
766 {
767   16, 17, 2, 3, 4, 5, 6, 7
768 };
769
770 /* Classifies the kind of instructions we're interested in when
771    implementing -mfix-vr4120.  */
772 enum fix_vr4120_class
773 {
774   FIX_VR4120_MACC,
775   FIX_VR4120_DMACC,
776   FIX_VR4120_MULT,
777   FIX_VR4120_DMULT,
778   FIX_VR4120_DIV,
779   FIX_VR4120_MTHILO,
780   NUM_FIX_VR4120_CLASSES
781 };
782
783 /* ...likewise -mfix-loongson2f-jump.  */
784 static bfd_boolean mips_fix_loongson2f_jump;
785
786 /* ...likewise -mfix-loongson2f-nop.  */
787 static bfd_boolean mips_fix_loongson2f_nop;
788
789 /* True if -mfix-loongson2f-nop or -mfix-loongson2f-jump passed.  */
790 static bfd_boolean mips_fix_loongson2f;
791
792 /* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
793    there must be at least one other instruction between an instruction
794    of type X and an instruction of type Y.  */
795 static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
796
797 /* True if -mfix-vr4120 is in force.  */
798 static int mips_fix_vr4120;
799
800 /* ...likewise -mfix-vr4130.  */
801 static int mips_fix_vr4130;
802
803 /* ...likewise -mfix-24k.  */
804 static int mips_fix_24k;
805
806 /* ...likewise -mfix-cn63xxp1 */
807 static bfd_boolean mips_fix_cn63xxp1;
808
809 /* We don't relax branches by default, since this causes us to expand
810    `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
811    fail to compute the offset before expanding the macro to the most
812    efficient expansion.  */
813
814 static int mips_relax_branch;
815 \f
816 /* The expansion of many macros depends on the type of symbol that
817    they refer to.  For example, when generating position-dependent code,
818    a macro that refers to a symbol may have two different expansions,
819    one which uses GP-relative addresses and one which uses absolute
820    addresses.  When generating SVR4-style PIC, a macro may have
821    different expansions for local and global symbols.
822
823    We handle these situations by generating both sequences and putting
824    them in variant frags.  In position-dependent code, the first sequence
825    will be the GP-relative one and the second sequence will be the
826    absolute one.  In SVR4 PIC, the first sequence will be for global
827    symbols and the second will be for local symbols.
828
829    The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
830    SECOND are the lengths of the two sequences in bytes.  These fields
831    can be extracted using RELAX_FIRST() and RELAX_SECOND().  In addition,
832    the subtype has the following flags:
833
834    RELAX_USE_SECOND
835         Set if it has been decided that we should use the second
836         sequence instead of the first.
837
838    RELAX_SECOND_LONGER
839         Set in the first variant frag if the macro's second implementation
840         is longer than its first.  This refers to the macro as a whole,
841         not an individual relaxation.
842
843    RELAX_NOMACRO
844         Set in the first variant frag if the macro appeared in a .set nomacro
845         block and if one alternative requires a warning but the other does not.
846
847    RELAX_DELAY_SLOT
848         Like RELAX_NOMACRO, but indicates that the macro appears in a branch
849         delay slot.
850
851    The frag's "opcode" points to the first fixup for relaxable code.
852
853    Relaxable macros are generated using a sequence such as:
854
855       relax_start (SYMBOL);
856       ... generate first expansion ...
857       relax_switch ();
858       ... generate second expansion ...
859       relax_end ();
860
861    The code and fixups for the unwanted alternative are discarded
862    by md_convert_frag.  */
863 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
864
865 #define RELAX_FIRST(X) (((X) >> 8) & 0xff)
866 #define RELAX_SECOND(X) ((X) & 0xff)
867 #define RELAX_USE_SECOND 0x10000
868 #define RELAX_SECOND_LONGER 0x20000
869 #define RELAX_NOMACRO 0x40000
870 #define RELAX_DELAY_SLOT 0x80000
871
872 /* Branch without likely bit.  If label is out of range, we turn:
873
874         beq reg1, reg2, label
875         delay slot
876
877    into
878
879         bne reg1, reg2, 0f
880         nop
881         j label
882      0: delay slot
883
884    with the following opcode replacements:
885
886         beq <-> bne
887         blez <-> bgtz
888         bltz <-> bgez
889         bc1f <-> bc1t
890
891         bltzal <-> bgezal  (with jal label instead of j label)
892
893    Even though keeping the delay slot instruction in the delay slot of
894    the branch would be more efficient, it would be very tricky to do
895    correctly, because we'd have to introduce a variable frag *after*
896    the delay slot instruction, and expand that instead.  Let's do it
897    the easy way for now, even if the branch-not-taken case now costs
898    one additional instruction.  Out-of-range branches are not supposed
899    to be common, anyway.
900
901    Branch likely.  If label is out of range, we turn:
902
903         beql reg1, reg2, label
904         delay slot (annulled if branch not taken)
905
906    into
907
908         beql reg1, reg2, 1f
909         nop
910         beql $0, $0, 2f
911         nop
912      1: j[al] label
913         delay slot (executed only if branch taken)
914      2:
915
916    It would be possible to generate a shorter sequence by losing the
917    likely bit, generating something like:
918
919         bne reg1, reg2, 0f
920         nop
921         j[al] label
922         delay slot (executed only if branch taken)
923      0:
924
925         beql -> bne
926         bnel -> beq
927         blezl -> bgtz
928         bgtzl -> blez
929         bltzl -> bgez
930         bgezl -> bltz
931         bc1fl -> bc1t
932         bc1tl -> bc1f
933
934         bltzall -> bgezal  (with jal label instead of j label)
935         bgezall -> bltzal  (ditto)
936
937
938    but it's not clear that it would actually improve performance.  */
939 #define RELAX_BRANCH_ENCODE(at, uncond, likely, link, toofar)   \
940   ((relax_substateT)                                            \
941    (0xc0000000                                                  \
942     | ((at) & 0x1f)                                             \
943     | ((toofar) ? 0x20 : 0)                                     \
944     | ((link) ? 0x40 : 0)                                       \
945     | ((likely) ? 0x80 : 0)                                     \
946     | ((uncond) ? 0x100 : 0)))
947 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
948 #define RELAX_BRANCH_UNCOND(i) (((i) & 0x100) != 0)
949 #define RELAX_BRANCH_LIKELY(i) (((i) & 0x80) != 0)
950 #define RELAX_BRANCH_LINK(i) (((i) & 0x40) != 0)
951 #define RELAX_BRANCH_TOOFAR(i) (((i) & 0x20) != 0)
952 #define RELAX_BRANCH_AT(i) ((i) & 0x1f)
953
954 /* For mips16 code, we use an entirely different form of relaxation.
955    mips16 supports two versions of most instructions which take
956    immediate values: a small one which takes some small value, and a
957    larger one which takes a 16 bit value.  Since branches also follow
958    this pattern, relaxing these values is required.
959
960    We can assemble both mips16 and normal MIPS code in a single
961    object.  Therefore, we need to support this type of relaxation at
962    the same time that we support the relaxation described above.  We
963    use the high bit of the subtype field to distinguish these cases.
964
965    The information we store for this type of relaxation is the
966    argument code found in the opcode file for this relocation, whether
967    the user explicitly requested a small or extended form, and whether
968    the relocation is in a jump or jal delay slot.  That tells us the
969    size of the value, and how it should be stored.  We also store
970    whether the fragment is considered to be extended or not.  We also
971    store whether this is known to be a branch to a different section,
972    whether we have tried to relax this frag yet, and whether we have
973    ever extended a PC relative fragment because of a shift count.  */
974 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
975   (0x80000000                                                   \
976    | ((type) & 0xff)                                            \
977    | ((small) ? 0x100 : 0)                                      \
978    | ((ext) ? 0x200 : 0)                                        \
979    | ((dslot) ? 0x400 : 0)                                      \
980    | ((jal_dslot) ? 0x800 : 0))
981 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
982 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
983 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
984 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
985 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
986 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
987 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
988 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
989 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
990 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
991 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
992 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
993
994 /* Is the given value a sign-extended 32-bit value?  */
995 #define IS_SEXT_32BIT_NUM(x)                                            \
996   (((x) &~ (offsetT) 0x7fffffff) == 0                                   \
997    || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
998
999 /* Is the given value a sign-extended 16-bit value?  */
1000 #define IS_SEXT_16BIT_NUM(x)                                            \
1001   (((x) &~ (offsetT) 0x7fff) == 0                                       \
1002    || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
1003
1004 /* Is the given value a zero-extended 32-bit value?  Or a negated one?  */
1005 #define IS_ZEXT_32BIT_NUM(x)                                            \
1006   (((x) &~ (offsetT) 0xffffffff) == 0                                   \
1007    || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
1008
1009 /* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
1010    VALUE << SHIFT.  VALUE is evaluated exactly once.  */
1011 #define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
1012   (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
1013               | (((VALUE) & (MASK)) << (SHIFT)))
1014
1015 /* Extract bits MASK << SHIFT from STRUCT and shift them right
1016    SHIFT places.  */
1017 #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
1018   (((STRUCT) >> (SHIFT)) & (MASK))
1019
1020 /* Change INSN's opcode so that the operand given by FIELD has value VALUE.
1021    INSN is a mips_cl_insn structure and VALUE is evaluated exactly once.
1022
1023    include/opcode/mips.h specifies operand fields using the macros
1024    OP_MASK_<FIELD> and OP_SH_<FIELD>.  The MIPS16 equivalents start
1025    with "MIPS16OP" instead of "OP".  */
1026 #define INSERT_OPERAND(FIELD, INSN, VALUE) \
1027   INSERT_BITS ((INSN).insn_opcode, VALUE, OP_MASK_##FIELD, OP_SH_##FIELD)
1028 #define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
1029   INSERT_BITS ((INSN).insn_opcode, VALUE, \
1030                 MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
1031
1032 /* Extract the operand given by FIELD from mips_cl_insn INSN.  */
1033 #define EXTRACT_OPERAND(FIELD, INSN) \
1034   EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD)
1035 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
1036   EXTRACT_BITS ((INSN).insn_opcode, \
1037                 MIPS16OP_MASK_##FIELD, \
1038                 MIPS16OP_SH_##FIELD)
1039 \f
1040 /* Global variables used when generating relaxable macros.  See the
1041    comment above RELAX_ENCODE for more details about how relaxation
1042    is used.  */
1043 static struct {
1044   /* 0 if we're not emitting a relaxable macro.
1045      1 if we're emitting the first of the two relaxation alternatives.
1046      2 if we're emitting the second alternative.  */
1047   int sequence;
1048
1049   /* The first relaxable fixup in the current frag.  (In other words,
1050      the first fixup that refers to relaxable code.)  */
1051   fixS *first_fixup;
1052
1053   /* sizes[0] says how many bytes of the first alternative are stored in
1054      the current frag.  Likewise sizes[1] for the second alternative.  */
1055   unsigned int sizes[2];
1056
1057   /* The symbol on which the choice of sequence depends.  */
1058   symbolS *symbol;
1059 } mips_relax;
1060 \f
1061 /* Global variables used to decide whether a macro needs a warning.  */
1062 static struct {
1063   /* True if the macro is in a branch delay slot.  */
1064   bfd_boolean delay_slot_p;
1065
1066   /* For relaxable macros, sizes[0] is the length of the first alternative
1067      in bytes and sizes[1] is the length of the second alternative.
1068      For non-relaxable macros, both elements give the length of the
1069      macro in bytes.  */
1070   unsigned int sizes[2];
1071
1072   /* The first variant frag for this macro.  */
1073   fragS *first_frag;
1074 } mips_macro_warning;
1075 \f
1076 /* Prototypes for static functions.  */
1077
1078 #define internalError()                                                 \
1079     as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
1080
1081 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
1082
1083 static void append_insn
1084   (struct mips_cl_insn *, expressionS *, bfd_reloc_code_real_type *);
1085 static void mips_no_prev_insn (void);
1086 static void macro_build (expressionS *, const char *, const char *, ...);
1087 static void mips16_macro_build
1088   (expressionS *, const char *, const char *, va_list *);
1089 static void load_register (int, expressionS *, int);
1090 static void macro_start (void);
1091 static void macro_end (void);
1092 static void macro (struct mips_cl_insn * ip);
1093 static void mips16_macro (struct mips_cl_insn * ip);
1094 static void mips_ip (char *str, struct mips_cl_insn * ip);
1095 static void mips16_ip (char *str, struct mips_cl_insn * ip);
1096 static void mips16_immed
1097   (char *, unsigned int, int, offsetT, bfd_boolean, bfd_boolean, bfd_boolean,
1098    unsigned long *, bfd_boolean *, unsigned short *);
1099 static size_t my_getSmallExpression
1100   (expressionS *, bfd_reloc_code_real_type *, char *);
1101 static void my_getExpression (expressionS *, char *);
1102 static void s_align (int);
1103 static void s_change_sec (int);
1104 static void s_change_section (int);
1105 static void s_cons (int);
1106 static void s_float_cons (int);
1107 static void s_mips_globl (int);
1108 static void s_option (int);
1109 static void s_mipsset (int);
1110 static void s_abicalls (int);
1111 static void s_cpload (int);
1112 static void s_cpsetup (int);
1113 static void s_cplocal (int);
1114 static void s_cprestore (int);
1115 static void s_cpreturn (int);
1116 static void s_dtprelword (int);
1117 static void s_dtpreldword (int);
1118 static void s_gpvalue (int);
1119 static void s_gpword (int);
1120 static void s_gpdword (int);
1121 static void s_cpadd (int);
1122 static void s_insn (int);
1123 static void md_obj_begin (void);
1124 static void md_obj_end (void);
1125 static void s_mips_ent (int);
1126 static void s_mips_end (int);
1127 static void s_mips_frame (int);
1128 static void s_mips_mask (int reg_type);
1129 static void s_mips_stab (int);
1130 static void s_mips_weakext (int);
1131 static void s_mips_file (int);
1132 static void s_mips_loc (int);
1133 static bfd_boolean pic_need_relax (symbolS *, asection *);
1134 static int relaxed_branch_length (fragS *, asection *, int);
1135 static int validate_mips_insn (const struct mips_opcode *);
1136
1137 /* Table and functions used to map between CPU/ISA names, and
1138    ISA levels, and CPU numbers.  */
1139
1140 struct mips_cpu_info
1141 {
1142   const char *name;           /* CPU or ISA name.  */
1143   int flags;                  /* ASEs available, or ISA flag.  */
1144   int isa;                    /* ISA level.  */
1145   int cpu;                    /* CPU number (default CPU if ISA).  */
1146 };
1147
1148 #define MIPS_CPU_IS_ISA         0x0001  /* Is this an ISA?  (If 0, a CPU.) */
1149 #define MIPS_CPU_ASE_SMARTMIPS  0x0002  /* CPU implements SmartMIPS ASE */
1150 #define MIPS_CPU_ASE_DSP        0x0004  /* CPU implements DSP ASE */
1151 #define MIPS_CPU_ASE_MT         0x0008  /* CPU implements MT ASE */
1152 #define MIPS_CPU_ASE_MIPS3D     0x0010  /* CPU implements MIPS-3D ASE */
1153 #define MIPS_CPU_ASE_MDMX       0x0020  /* CPU implements MDMX ASE */
1154 #define MIPS_CPU_ASE_DSPR2      0x0040  /* CPU implements DSP R2 ASE */
1155
1156 static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1157 static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1158 static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
1159 \f
1160 /* Pseudo-op table.
1161
1162    The following pseudo-ops from the Kane and Heinrich MIPS book
1163    should be defined here, but are currently unsupported: .alias,
1164    .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1165
1166    The following pseudo-ops from the Kane and Heinrich MIPS book are
1167    specific to the type of debugging information being generated, and
1168    should be defined by the object format: .aent, .begin, .bend,
1169    .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1170    .vreg.
1171
1172    The following pseudo-ops from the Kane and Heinrich MIPS book are
1173    not MIPS CPU specific, but are also not specific to the object file
1174    format.  This file is probably the best place to define them, but
1175    they are not currently supported: .asm0, .endr, .lab, .struct.  */
1176
1177 static const pseudo_typeS mips_pseudo_table[] =
1178 {
1179   /* MIPS specific pseudo-ops.  */
1180   {"option", s_option, 0},
1181   {"set", s_mipsset, 0},
1182   {"rdata", s_change_sec, 'r'},
1183   {"sdata", s_change_sec, 's'},
1184   {"livereg", s_ignore, 0},
1185   {"abicalls", s_abicalls, 0},
1186   {"cpload", s_cpload, 0},
1187   {"cpsetup", s_cpsetup, 0},
1188   {"cplocal", s_cplocal, 0},
1189   {"cprestore", s_cprestore, 0},
1190   {"cpreturn", s_cpreturn, 0},
1191   {"dtprelword", s_dtprelword, 0},
1192   {"dtpreldword", s_dtpreldword, 0},
1193   {"gpvalue", s_gpvalue, 0},
1194   {"gpword", s_gpword, 0},
1195   {"gpdword", s_gpdword, 0},
1196   {"cpadd", s_cpadd, 0},
1197   {"insn", s_insn, 0},
1198
1199   /* Relatively generic pseudo-ops that happen to be used on MIPS
1200      chips.  */
1201   {"asciiz", stringer, 8 + 1},
1202   {"bss", s_change_sec, 'b'},
1203   {"err", s_err, 0},
1204   {"half", s_cons, 1},
1205   {"dword", s_cons, 3},
1206   {"weakext", s_mips_weakext, 0},
1207   {"origin", s_org, 0},
1208   {"repeat", s_rept, 0},
1209
1210   /* For MIPS this is non-standard, but we define it for consistency.  */
1211   {"sbss", s_change_sec, 'B'},
1212
1213   /* These pseudo-ops are defined in read.c, but must be overridden
1214      here for one reason or another.  */
1215   {"align", s_align, 0},
1216   {"byte", s_cons, 0},
1217   {"data", s_change_sec, 'd'},
1218   {"double", s_float_cons, 'd'},
1219   {"float", s_float_cons, 'f'},
1220   {"globl", s_mips_globl, 0},
1221   {"global", s_mips_globl, 0},
1222   {"hword", s_cons, 1},
1223   {"int", s_cons, 2},
1224   {"long", s_cons, 2},
1225   {"octa", s_cons, 4},
1226   {"quad", s_cons, 3},
1227   {"section", s_change_section, 0},
1228   {"short", s_cons, 1},
1229   {"single", s_float_cons, 'f'},
1230   {"stabn", s_mips_stab, 'n'},
1231   {"text", s_change_sec, 't'},
1232   {"word", s_cons, 2},
1233
1234   { "extern", ecoff_directive_extern, 0},
1235
1236   { NULL, NULL, 0 },
1237 };
1238
1239 static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1240 {
1241   /* These pseudo-ops should be defined by the object file format.
1242      However, a.out doesn't support them, so we have versions here.  */
1243   {"aent", s_mips_ent, 1},
1244   {"bgnb", s_ignore, 0},
1245   {"end", s_mips_end, 0},
1246   {"endb", s_ignore, 0},
1247   {"ent", s_mips_ent, 0},
1248   {"file", s_mips_file, 0},
1249   {"fmask", s_mips_mask, 'F'},
1250   {"frame", s_mips_frame, 0},
1251   {"loc", s_mips_loc, 0},
1252   {"mask", s_mips_mask, 'R'},
1253   {"verstamp", s_ignore, 0},
1254   { NULL, NULL, 0 },
1255 };
1256
1257 /* Export the ABI address size for use by TC_ADDRESS_BYTES for the
1258    purpose of the `.dc.a' internal pseudo-op.  */
1259
1260 int
1261 mips_address_bytes (void)
1262 {
1263   return HAVE_64BIT_ADDRESSES ? 8 : 4;
1264 }
1265
1266 extern void pop_insert (const pseudo_typeS *);
1267
1268 void
1269 mips_pop_insert (void)
1270 {
1271   pop_insert (mips_pseudo_table);
1272   if (! ECOFF_DEBUGGING)
1273     pop_insert (mips_nonecoff_pseudo_table);
1274 }
1275 \f
1276 /* Symbols labelling the current insn.  */
1277
1278 struct insn_label_list
1279 {
1280   struct insn_label_list *next;
1281   symbolS *label;
1282 };
1283
1284 static struct insn_label_list *free_insn_labels;
1285 #define label_list tc_segment_info_data.labels
1286
1287 static void mips_clear_insn_labels (void);
1288
1289 static inline void
1290 mips_clear_insn_labels (void)
1291 {
1292   register struct insn_label_list **pl;
1293   segment_info_type *si;
1294
1295   if (now_seg)
1296     {
1297       for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1298         ;
1299       
1300       si = seg_info (now_seg);
1301       *pl = si->label_list;
1302       si->label_list = NULL;
1303     }
1304 }
1305
1306 \f
1307 static char *expr_end;
1308
1309 /* Expressions which appear in instructions.  These are set by
1310    mips_ip.  */
1311
1312 static expressionS imm_expr;
1313 static expressionS imm2_expr;
1314 static expressionS offset_expr;
1315
1316 /* Relocs associated with imm_expr and offset_expr.  */
1317
1318 static bfd_reloc_code_real_type imm_reloc[3]
1319   = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1320 static bfd_reloc_code_real_type offset_reloc[3]
1321   = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1322
1323 /* These are set by mips16_ip if an explicit extension is used.  */
1324
1325 static bfd_boolean mips16_small, mips16_ext;
1326
1327 #ifdef OBJ_ELF
1328 /* The pdr segment for per procedure frame/regmask info.  Not used for
1329    ECOFF debugging.  */
1330
1331 static segT pdr_seg;
1332 #endif
1333
1334 /* The default target format to use.  */
1335
1336 #if defined (TE_FreeBSD)
1337 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips-freebsd"
1338 #elif defined (TE_TMIPS)
1339 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips"
1340 #else
1341 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX ENDIAN "mips"
1342 #endif
1343
1344 const char *
1345 mips_target_format (void)
1346 {
1347   switch (OUTPUT_FLAVOR)
1348     {
1349     case bfd_target_ecoff_flavour:
1350       return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT;
1351     case bfd_target_coff_flavour:
1352       return "pe-mips";
1353     case bfd_target_elf_flavour:
1354 #ifdef TE_VXWORKS
1355       if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI)
1356         return (target_big_endian
1357                 ? "elf32-bigmips-vxworks"
1358                 : "elf32-littlemips-vxworks");
1359 #endif
1360       return (target_big_endian
1361               ? (HAVE_64BIT_OBJECTS
1362                  ? ELF_TARGET ("elf64-", "big")
1363                  : (HAVE_NEWABI
1364                     ? ELF_TARGET ("elf32-n", "big")
1365                     : ELF_TARGET ("elf32-", "big")))
1366               : (HAVE_64BIT_OBJECTS
1367                  ? ELF_TARGET ("elf64-", "little")
1368                  : (HAVE_NEWABI
1369                     ? ELF_TARGET ("elf32-n", "little")
1370                     : ELF_TARGET ("elf32-", "little"))));
1371     default:
1372       abort ();
1373       return NULL;
1374     }
1375 }
1376
1377 /* Return the length of instruction INSN.  */
1378
1379 static inline unsigned int
1380 insn_length (const struct mips_cl_insn *insn)
1381 {
1382   if (!mips_opts.mips16)
1383     return 4;
1384   return insn->mips16_absolute_jump_p || insn->use_extend ? 4 : 2;
1385 }
1386
1387 /* Initialise INSN from opcode entry MO.  Leave its position unspecified.  */
1388
1389 static void
1390 create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
1391 {
1392   size_t i;
1393
1394   insn->insn_mo = mo;
1395   insn->use_extend = FALSE;
1396   insn->extend = 0;
1397   insn->insn_opcode = mo->match;
1398   insn->frag = NULL;
1399   insn->where = 0;
1400   for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1401     insn->fixp[i] = NULL;
1402   insn->fixed_p = (mips_opts.noreorder > 0);
1403   insn->noreorder_p = (mips_opts.noreorder > 0);
1404   insn->mips16_absolute_jump_p = 0;
1405   insn->complete_p = 0;
1406 }
1407
1408 /* Record the current MIPS16 mode in now_seg.  */
1409
1410 static void
1411 mips_record_mips16_mode (void)
1412 {
1413   segment_info_type *si;
1414
1415   si = seg_info (now_seg);
1416   if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
1417     si->tc_segment_info_data.mips16 = mips_opts.mips16;
1418 }
1419
1420 /* Install INSN at the location specified by its "frag" and "where" fields.  */
1421
1422 static void
1423 install_insn (const struct mips_cl_insn *insn)
1424 {
1425   char *f = insn->frag->fr_literal + insn->where;
1426   if (!mips_opts.mips16)
1427     md_number_to_chars (f, insn->insn_opcode, 4);
1428   else if (insn->mips16_absolute_jump_p)
1429     {
1430       md_number_to_chars (f, insn->insn_opcode >> 16, 2);
1431       md_number_to_chars (f + 2, insn->insn_opcode & 0xffff, 2);
1432     }
1433   else
1434     {
1435       if (insn->use_extend)
1436         {
1437           md_number_to_chars (f, 0xf000 | insn->extend, 2);
1438           f += 2;
1439         }
1440       md_number_to_chars (f, insn->insn_opcode, 2);
1441     }
1442   mips_record_mips16_mode ();
1443 }
1444
1445 /* Move INSN to offset WHERE in FRAG.  Adjust the fixups accordingly
1446    and install the opcode in the new location.  */
1447
1448 static void
1449 move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
1450 {
1451   size_t i;
1452
1453   insn->frag = frag;
1454   insn->where = where;
1455   for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1456     if (insn->fixp[i] != NULL)
1457       {
1458         insn->fixp[i]->fx_frag = frag;
1459         insn->fixp[i]->fx_where = where;
1460       }
1461   install_insn (insn);
1462 }
1463
1464 /* Add INSN to the end of the output.  */
1465
1466 static void
1467 add_fixed_insn (struct mips_cl_insn *insn)
1468 {
1469   char *f = frag_more (insn_length (insn));
1470   move_insn (insn, frag_now, f - frag_now->fr_literal);
1471 }
1472
1473 /* Start a variant frag and move INSN to the start of the variant part,
1474    marking it as fixed.  The other arguments are as for frag_var.  */
1475
1476 static void
1477 add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
1478                   relax_substateT subtype, symbolS *symbol, offsetT offset)
1479 {
1480   frag_grow (max_chars);
1481   move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
1482   insn->fixed_p = 1;
1483   frag_var (rs_machine_dependent, max_chars, var,
1484             subtype, symbol, offset, NULL);
1485 }
1486
1487 /* Insert N copies of INSN into the history buffer, starting at
1488    position FIRST.  Neither FIRST nor N need to be clipped.  */
1489
1490 static void
1491 insert_into_history (unsigned int first, unsigned int n,
1492                      const struct mips_cl_insn *insn)
1493 {
1494   if (mips_relax.sequence != 2)
1495     {
1496       unsigned int i;
1497
1498       for (i = ARRAY_SIZE (history); i-- > first;)
1499         if (i >= first + n)
1500           history[i] = history[i - n];
1501         else
1502           history[i] = *insn;
1503     }
1504 }
1505
1506 /* Emit a nop instruction, recording it in the history buffer.  */
1507
1508 static void
1509 emit_nop (void)
1510 {
1511   add_fixed_insn (NOP_INSN);
1512   insert_into_history (0, 1, NOP_INSN);
1513 }
1514
1515 /* Initialize vr4120_conflicts.  There is a bit of duplication here:
1516    the idea is to make it obvious at a glance that each errata is
1517    included.  */
1518
1519 static void
1520 init_vr4120_conflicts (void)
1521 {
1522 #define CONFLICT(FIRST, SECOND) \
1523     vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
1524
1525   /* Errata 21 - [D]DIV[U] after [D]MACC */
1526   CONFLICT (MACC, DIV);
1527   CONFLICT (DMACC, DIV);
1528
1529   /* Errata 23 - Continuous DMULT[U]/DMACC instructions.  */
1530   CONFLICT (DMULT, DMULT);
1531   CONFLICT (DMULT, DMACC);
1532   CONFLICT (DMACC, DMULT);
1533   CONFLICT (DMACC, DMACC);
1534
1535   /* Errata 24 - MT{LO,HI} after [D]MACC */
1536   CONFLICT (MACC, MTHILO);
1537   CONFLICT (DMACC, MTHILO);
1538
1539   /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
1540      instruction is executed immediately after a MACC or DMACC
1541      instruction, the result of [either instruction] is incorrect."  */
1542   CONFLICT (MACC, MULT);
1543   CONFLICT (MACC, DMULT);
1544   CONFLICT (DMACC, MULT);
1545   CONFLICT (DMACC, DMULT);
1546
1547   /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
1548      executed immediately after a DMULT, DMULTU, DIV, DIVU,
1549      DDIV or DDIVU instruction, the result of the MACC or
1550      DMACC instruction is incorrect.".  */
1551   CONFLICT (DMULT, MACC);
1552   CONFLICT (DMULT, DMACC);
1553   CONFLICT (DIV, MACC);
1554   CONFLICT (DIV, DMACC);
1555
1556 #undef CONFLICT
1557 }
1558
1559 struct regname {
1560   const char *name;
1561   unsigned int num;
1562 };
1563
1564 #define RTYPE_MASK      0x1ff00
1565 #define RTYPE_NUM       0x00100
1566 #define RTYPE_FPU       0x00200
1567 #define RTYPE_FCC       0x00400
1568 #define RTYPE_VEC       0x00800
1569 #define RTYPE_GP        0x01000
1570 #define RTYPE_CP0       0x02000
1571 #define RTYPE_PC        0x04000
1572 #define RTYPE_ACC       0x08000
1573 #define RTYPE_CCC       0x10000
1574 #define RNUM_MASK       0x000ff
1575 #define RWARN           0x80000
1576
1577 #define GENERIC_REGISTER_NUMBERS \
1578     {"$0",      RTYPE_NUM | 0},  \
1579     {"$1",      RTYPE_NUM | 1},  \
1580     {"$2",      RTYPE_NUM | 2},  \
1581     {"$3",      RTYPE_NUM | 3},  \
1582     {"$4",      RTYPE_NUM | 4},  \
1583     {"$5",      RTYPE_NUM | 5},  \
1584     {"$6",      RTYPE_NUM | 6},  \
1585     {"$7",      RTYPE_NUM | 7},  \
1586     {"$8",      RTYPE_NUM | 8},  \
1587     {"$9",      RTYPE_NUM | 9},  \
1588     {"$10",     RTYPE_NUM | 10}, \
1589     {"$11",     RTYPE_NUM | 11}, \
1590     {"$12",     RTYPE_NUM | 12}, \
1591     {"$13",     RTYPE_NUM | 13}, \
1592     {"$14",     RTYPE_NUM | 14}, \
1593     {"$15",     RTYPE_NUM | 15}, \
1594     {"$16",     RTYPE_NUM | 16}, \
1595     {"$17",     RTYPE_NUM | 17}, \
1596     {"$18",     RTYPE_NUM | 18}, \
1597     {"$19",     RTYPE_NUM | 19}, \
1598     {"$20",     RTYPE_NUM | 20}, \
1599     {"$21",     RTYPE_NUM | 21}, \
1600     {"$22",     RTYPE_NUM | 22}, \
1601     {"$23",     RTYPE_NUM | 23}, \
1602     {"$24",     RTYPE_NUM | 24}, \
1603     {"$25",     RTYPE_NUM | 25}, \
1604     {"$26",     RTYPE_NUM | 26}, \
1605     {"$27",     RTYPE_NUM | 27}, \
1606     {"$28",     RTYPE_NUM | 28}, \
1607     {"$29",     RTYPE_NUM | 29}, \
1608     {"$30",     RTYPE_NUM | 30}, \
1609     {"$31",     RTYPE_NUM | 31} 
1610
1611 #define FPU_REGISTER_NAMES       \
1612     {"$f0",     RTYPE_FPU | 0},  \
1613     {"$f1",     RTYPE_FPU | 1},  \
1614     {"$f2",     RTYPE_FPU | 2},  \
1615     {"$f3",     RTYPE_FPU | 3},  \
1616     {"$f4",     RTYPE_FPU | 4},  \
1617     {"$f5",     RTYPE_FPU | 5},  \
1618     {"$f6",     RTYPE_FPU | 6},  \
1619     {"$f7",     RTYPE_FPU | 7},  \
1620     {"$f8",     RTYPE_FPU | 8},  \
1621     {"$f9",     RTYPE_FPU | 9},  \
1622     {"$f10",    RTYPE_FPU | 10}, \
1623     {"$f11",    RTYPE_FPU | 11}, \
1624     {"$f12",    RTYPE_FPU | 12}, \
1625     {"$f13",    RTYPE_FPU | 13}, \
1626     {"$f14",    RTYPE_FPU | 14}, \
1627     {"$f15",    RTYPE_FPU | 15}, \
1628     {"$f16",    RTYPE_FPU | 16}, \
1629     {"$f17",    RTYPE_FPU | 17}, \
1630     {"$f18",    RTYPE_FPU | 18}, \
1631     {"$f19",    RTYPE_FPU | 19}, \
1632     {"$f20",    RTYPE_FPU | 20}, \
1633     {"$f21",    RTYPE_FPU | 21}, \
1634     {"$f22",    RTYPE_FPU | 22}, \
1635     {"$f23",    RTYPE_FPU | 23}, \
1636     {"$f24",    RTYPE_FPU | 24}, \
1637     {"$f25",    RTYPE_FPU | 25}, \
1638     {"$f26",    RTYPE_FPU | 26}, \
1639     {"$f27",    RTYPE_FPU | 27}, \
1640     {"$f28",    RTYPE_FPU | 28}, \
1641     {"$f29",    RTYPE_FPU | 29}, \
1642     {"$f30",    RTYPE_FPU | 30}, \
1643     {"$f31",    RTYPE_FPU | 31}
1644
1645 #define FPU_CONDITION_CODE_NAMES \
1646     {"$fcc0",   RTYPE_FCC | 0},  \
1647     {"$fcc1",   RTYPE_FCC | 1},  \
1648     {"$fcc2",   RTYPE_FCC | 2},  \
1649     {"$fcc3",   RTYPE_FCC | 3},  \
1650     {"$fcc4",   RTYPE_FCC | 4},  \
1651     {"$fcc5",   RTYPE_FCC | 5},  \
1652     {"$fcc6",   RTYPE_FCC | 6},  \
1653     {"$fcc7",   RTYPE_FCC | 7}
1654
1655 #define COPROC_CONDITION_CODE_NAMES         \
1656     {"$cc0",    RTYPE_FCC | RTYPE_CCC | 0}, \
1657     {"$cc1",    RTYPE_FCC | RTYPE_CCC | 1}, \
1658     {"$cc2",    RTYPE_FCC | RTYPE_CCC | 2}, \
1659     {"$cc3",    RTYPE_FCC | RTYPE_CCC | 3}, \
1660     {"$cc4",    RTYPE_FCC | RTYPE_CCC | 4}, \
1661     {"$cc5",    RTYPE_FCC | RTYPE_CCC | 5}, \
1662     {"$cc6",    RTYPE_FCC | RTYPE_CCC | 6}, \
1663     {"$cc7",    RTYPE_FCC | RTYPE_CCC | 7}
1664
1665 #define N32N64_SYMBOLIC_REGISTER_NAMES \
1666     {"$a4",     RTYPE_GP | 8},  \
1667     {"$a5",     RTYPE_GP | 9},  \
1668     {"$a6",     RTYPE_GP | 10}, \
1669     {"$a7",     RTYPE_GP | 11}, \
1670     {"$ta0",    RTYPE_GP | 8},  /* alias for $a4 */ \
1671     {"$ta1",    RTYPE_GP | 9},  /* alias for $a5 */ \
1672     {"$ta2",    RTYPE_GP | 10}, /* alias for $a6 */ \
1673     {"$ta3",    RTYPE_GP | 11}, /* alias for $a7 */ \
1674     {"$t0",     RTYPE_GP | 12}, \
1675     {"$t1",     RTYPE_GP | 13}, \
1676     {"$t2",     RTYPE_GP | 14}, \
1677     {"$t3",     RTYPE_GP | 15}
1678
1679 #define O32_SYMBOLIC_REGISTER_NAMES \
1680     {"$t0",     RTYPE_GP | 8},  \
1681     {"$t1",     RTYPE_GP | 9},  \
1682     {"$t2",     RTYPE_GP | 10}, \
1683     {"$t3",     RTYPE_GP | 11}, \
1684     {"$t4",     RTYPE_GP | 12}, \
1685     {"$t5",     RTYPE_GP | 13}, \
1686     {"$t6",     RTYPE_GP | 14}, \
1687     {"$t7",     RTYPE_GP | 15}, \
1688     {"$ta0",    RTYPE_GP | 12}, /* alias for $t4 */ \
1689     {"$ta1",    RTYPE_GP | 13}, /* alias for $t5 */ \
1690     {"$ta2",    RTYPE_GP | 14}, /* alias for $t6 */ \
1691     {"$ta3",    RTYPE_GP | 15}  /* alias for $t7 */ 
1692
1693 /* Remaining symbolic register names */
1694 #define SYMBOLIC_REGISTER_NAMES \
1695     {"$zero",   RTYPE_GP | 0},  \
1696     {"$at",     RTYPE_GP | 1},  \
1697     {"$AT",     RTYPE_GP | 1},  \
1698     {"$v0",     RTYPE_GP | 2},  \
1699     {"$v1",     RTYPE_GP | 3},  \
1700     {"$a0",     RTYPE_GP | 4},  \
1701     {"$a1",     RTYPE_GP | 5},  \
1702     {"$a2",     RTYPE_GP | 6},  \
1703     {"$a3",     RTYPE_GP | 7},  \
1704     {"$s0",     RTYPE_GP | 16}, \
1705     {"$s1",     RTYPE_GP | 17}, \
1706     {"$s2",     RTYPE_GP | 18}, \
1707     {"$s3",     RTYPE_GP | 19}, \
1708     {"$s4",     RTYPE_GP | 20}, \
1709     {"$s5",     RTYPE_GP | 21}, \
1710     {"$s6",     RTYPE_GP | 22}, \
1711     {"$s7",     RTYPE_GP | 23}, \
1712     {"$t8",     RTYPE_GP | 24}, \
1713     {"$t9",     RTYPE_GP | 25}, \
1714     {"$k0",     RTYPE_GP | 26}, \
1715     {"$kt0",    RTYPE_GP | 26}, \
1716     {"$k1",     RTYPE_GP | 27}, \
1717     {"$kt1",    RTYPE_GP | 27}, \
1718     {"$gp",     RTYPE_GP | 28}, \
1719     {"$sp",     RTYPE_GP | 29}, \
1720     {"$s8",     RTYPE_GP | 30}, \
1721     {"$fp",     RTYPE_GP | 30}, \
1722     {"$ra",     RTYPE_GP | 31}
1723
1724 #define MIPS16_SPECIAL_REGISTER_NAMES \
1725     {"$pc",     RTYPE_PC | 0}
1726
1727 #define MDMX_VECTOR_REGISTER_NAMES \
1728     /* {"$v0",  RTYPE_VEC | 0},  clash with REG 2 above */ \
1729     /* {"$v1",  RTYPE_VEC | 1},  clash with REG 3 above */ \
1730     {"$v2",     RTYPE_VEC | 2},  \
1731     {"$v3",     RTYPE_VEC | 3},  \
1732     {"$v4",     RTYPE_VEC | 4},  \
1733     {"$v5",     RTYPE_VEC | 5},  \
1734     {"$v6",     RTYPE_VEC | 6},  \
1735     {"$v7",     RTYPE_VEC | 7},  \
1736     {"$v8",     RTYPE_VEC | 8},  \
1737     {"$v9",     RTYPE_VEC | 9},  \
1738     {"$v10",    RTYPE_VEC | 10}, \
1739     {"$v11",    RTYPE_VEC | 11}, \
1740     {"$v12",    RTYPE_VEC | 12}, \
1741     {"$v13",    RTYPE_VEC | 13}, \
1742     {"$v14",    RTYPE_VEC | 14}, \
1743     {"$v15",    RTYPE_VEC | 15}, \
1744     {"$v16",    RTYPE_VEC | 16}, \
1745     {"$v17",    RTYPE_VEC | 17}, \
1746     {"$v18",    RTYPE_VEC | 18}, \
1747     {"$v19",    RTYPE_VEC | 19}, \
1748     {"$v20",    RTYPE_VEC | 20}, \
1749     {"$v21",    RTYPE_VEC | 21}, \
1750     {"$v22",    RTYPE_VEC | 22}, \
1751     {"$v23",    RTYPE_VEC | 23}, \
1752     {"$v24",    RTYPE_VEC | 24}, \
1753     {"$v25",    RTYPE_VEC | 25}, \
1754     {"$v26",    RTYPE_VEC | 26}, \
1755     {"$v27",    RTYPE_VEC | 27}, \
1756     {"$v28",    RTYPE_VEC | 28}, \
1757     {"$v29",    RTYPE_VEC | 29}, \
1758     {"$v30",    RTYPE_VEC | 30}, \
1759     {"$v31",    RTYPE_VEC | 31}
1760
1761 #define MIPS_DSP_ACCUMULATOR_NAMES \
1762     {"$ac0",    RTYPE_ACC | 0}, \
1763     {"$ac1",    RTYPE_ACC | 1}, \
1764     {"$ac2",    RTYPE_ACC | 2}, \
1765     {"$ac3",    RTYPE_ACC | 3}
1766
1767 static const struct regname reg_names[] = {
1768   GENERIC_REGISTER_NUMBERS,
1769   FPU_REGISTER_NAMES,
1770   FPU_CONDITION_CODE_NAMES,
1771   COPROC_CONDITION_CODE_NAMES,
1772
1773   /* The $txx registers depends on the abi,
1774      these will be added later into the symbol table from
1775      one of the tables below once mips_abi is set after 
1776      parsing of arguments from the command line. */
1777   SYMBOLIC_REGISTER_NAMES,
1778
1779   MIPS16_SPECIAL_REGISTER_NAMES,
1780   MDMX_VECTOR_REGISTER_NAMES,
1781   MIPS_DSP_ACCUMULATOR_NAMES,
1782   {0, 0}
1783 };
1784
1785 static const struct regname reg_names_o32[] = {
1786   O32_SYMBOLIC_REGISTER_NAMES,
1787   {0, 0}
1788 };
1789
1790 static const struct regname reg_names_n32n64[] = {
1791   N32N64_SYMBOLIC_REGISTER_NAMES,
1792   {0, 0}
1793 };
1794
1795 static int
1796 reg_lookup (char **s, unsigned int types, unsigned int *regnop)
1797 {
1798   symbolS *symbolP;
1799   char *e;
1800   char save_c;
1801   int reg = -1;
1802
1803   /* Find end of name.  */
1804   e = *s;
1805   if (is_name_beginner (*e))
1806     ++e;
1807   while (is_part_of_name (*e))
1808     ++e;
1809
1810   /* Terminate name.  */
1811   save_c = *e;
1812   *e = '\0';
1813
1814   /* Look for a register symbol.  */
1815   if ((symbolP = symbol_find (*s)) && S_GET_SEGMENT (symbolP) == reg_section)
1816     {
1817       int r = S_GET_VALUE (symbolP);
1818       if (r & types)
1819         reg = r & RNUM_MASK;
1820       else if ((types & RTYPE_VEC) && (r & ~1) == (RTYPE_GP | 2))
1821         /* Convert GP reg $v0/1 to MDMX reg $v0/1!  */
1822         reg = (r & RNUM_MASK) - 2;
1823     }
1824   /* Else see if this is a register defined in an itbl entry.  */
1825   else if ((types & RTYPE_GP) && itbl_have_entries)
1826     {
1827       char *n = *s;
1828       unsigned long r;
1829
1830       if (*n == '$')
1831         ++n;
1832       if (itbl_get_reg_val (n, &r))
1833         reg = r & RNUM_MASK;
1834     }
1835
1836   /* Advance to next token if a register was recognised.  */
1837   if (reg >= 0)
1838     *s = e;
1839   else if (types & RWARN)
1840     as_warn (_("Unrecognized register name `%s'"), *s);
1841
1842   *e = save_c;
1843   if (regnop)
1844     *regnop = reg;
1845   return reg >= 0;
1846 }
1847
1848 /* Return TRUE if opcode MO is valid on the currently selected ISA and
1849    architecture.  Use is_opcode_valid_16 for MIPS16 opcodes.  */
1850
1851 static bfd_boolean
1852 is_opcode_valid (const struct mips_opcode *mo)
1853 {
1854   int isa = mips_opts.isa;
1855   int fp_s, fp_d;
1856
1857   if (mips_opts.ase_mdmx)
1858     isa |= INSN_MDMX;
1859   if (mips_opts.ase_dsp)
1860     isa |= INSN_DSP;
1861   if (mips_opts.ase_dsp && ISA_SUPPORTS_DSP64_ASE)
1862     isa |= INSN_DSP64;
1863   if (mips_opts.ase_dspr2)
1864     isa |= INSN_DSPR2;
1865   if (mips_opts.ase_mt)
1866     isa |= INSN_MT;
1867   if (mips_opts.ase_mips3d)
1868     isa |= INSN_MIPS3D;
1869   if (mips_opts.ase_smartmips)
1870     isa |= INSN_SMARTMIPS;
1871
1872   /* Don't accept instructions based on the ISA if the CPU does not implement
1873      all the coprocessor insns. */
1874   if (NO_ISA_COP (mips_opts.arch)
1875       && COP_INSN (mo->pinfo))
1876     isa = 0;
1877
1878   if (!OPCODE_IS_MEMBER (mo, isa, mips_opts.arch))
1879     return FALSE;
1880
1881   /* Check whether the instruction or macro requires single-precision or
1882      double-precision floating-point support.  Note that this information is
1883      stored differently in the opcode table for insns and macros.  */
1884   if (mo->pinfo == INSN_MACRO)
1885     {
1886       fp_s = mo->pinfo2 & INSN2_M_FP_S;
1887       fp_d = mo->pinfo2 & INSN2_M_FP_D;
1888     }
1889   else
1890     {
1891       fp_s = mo->pinfo & FP_S;
1892       fp_d = mo->pinfo & FP_D;
1893     }
1894
1895   if (fp_d && (mips_opts.soft_float || mips_opts.single_float))
1896     return FALSE;
1897
1898   if (fp_s && mips_opts.soft_float)
1899     return FALSE;
1900
1901   return TRUE;
1902 }
1903
1904 /* Return TRUE if the MIPS16 opcode MO is valid on the currently
1905    selected ISA and architecture.  */
1906
1907 static bfd_boolean
1908 is_opcode_valid_16 (const struct mips_opcode *mo)
1909 {
1910   return OPCODE_IS_MEMBER (mo, mips_opts.isa, mips_opts.arch) ? TRUE : FALSE;
1911 }
1912
1913 /* This function is called once, at assembler startup time.  It should set up
1914    all the tables, etc. that the MD part of the assembler will need.  */
1915
1916 void
1917 md_begin (void)
1918 {
1919   const char *retval = NULL;
1920   int i = 0;
1921   int broken = 0;
1922
1923   if (mips_pic != NO_PIC)
1924     {
1925       if (g_switch_seen && g_switch_value != 0)
1926         as_bad (_("-G may not be used in position-independent code"));
1927       g_switch_value = 0;
1928     }
1929
1930   if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
1931     as_warn (_("Could not set architecture and machine"));
1932
1933   op_hash = hash_new ();
1934
1935   for (i = 0; i < NUMOPCODES;)
1936     {
1937       const char *name = mips_opcodes[i].name;
1938
1939       retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
1940       if (retval != NULL)
1941         {
1942           fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
1943                    mips_opcodes[i].name, retval);
1944           /* Probably a memory allocation problem?  Give up now.  */
1945           as_fatal (_("Broken assembler.  No assembly attempted."));
1946         }
1947       do
1948         {
1949           if (mips_opcodes[i].pinfo != INSN_MACRO)
1950             {
1951               if (!validate_mips_insn (&mips_opcodes[i]))
1952                 broken = 1;
1953               if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1954                 {
1955                   create_insn (&nop_insn, mips_opcodes + i);
1956                   if (mips_fix_loongson2f_nop)
1957                     nop_insn.insn_opcode = LOONGSON2F_NOP_INSN;
1958                   nop_insn.fixed_p = 1;
1959                 }
1960             }
1961           ++i;
1962         }
1963       while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
1964     }
1965
1966   mips16_op_hash = hash_new ();
1967
1968   i = 0;
1969   while (i < bfd_mips16_num_opcodes)
1970     {
1971       const char *name = mips16_opcodes[i].name;
1972
1973       retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
1974       if (retval != NULL)
1975         as_fatal (_("internal: can't hash `%s': %s"),
1976                   mips16_opcodes[i].name, retval);
1977       do
1978         {
1979           if (mips16_opcodes[i].pinfo != INSN_MACRO
1980               && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
1981                   != mips16_opcodes[i].match))
1982             {
1983               fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
1984                        mips16_opcodes[i].name, mips16_opcodes[i].args);
1985               broken = 1;
1986             }
1987           if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1988             {
1989               create_insn (&mips16_nop_insn, mips16_opcodes + i);
1990               mips16_nop_insn.fixed_p = 1;
1991             }
1992           ++i;
1993         }
1994       while (i < bfd_mips16_num_opcodes
1995              && strcmp (mips16_opcodes[i].name, name) == 0);
1996     }
1997
1998   if (broken)
1999     as_fatal (_("Broken assembler.  No assembly attempted."));
2000
2001   /* We add all the general register names to the symbol table.  This
2002      helps us detect invalid uses of them.  */
2003   for (i = 0; reg_names[i].name; i++) 
2004     symbol_table_insert (symbol_new (reg_names[i].name, reg_section,
2005                                      reg_names[i].num, /* & RNUM_MASK, */
2006                                      &zero_address_frag));
2007   if (HAVE_NEWABI)
2008     for (i = 0; reg_names_n32n64[i].name; i++) 
2009       symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section,
2010                                        reg_names_n32n64[i].num, /* & RNUM_MASK, */
2011                                        &zero_address_frag));
2012   else
2013     for (i = 0; reg_names_o32[i].name; i++) 
2014       symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section,
2015                                        reg_names_o32[i].num, /* & RNUM_MASK, */
2016                                        &zero_address_frag));
2017
2018   mips_no_prev_insn ();
2019
2020   mips_gprmask = 0;
2021   mips_cprmask[0] = 0;
2022   mips_cprmask[1] = 0;
2023   mips_cprmask[2] = 0;
2024   mips_cprmask[3] = 0;
2025
2026   /* set the default alignment for the text section (2**2) */
2027   record_alignment (text_section, 2);
2028
2029   bfd_set_gp_size (stdoutput, g_switch_value);
2030
2031 #ifdef OBJ_ELF
2032   if (IS_ELF)
2033     {
2034       /* On a native system other than VxWorks, sections must be aligned
2035          to 16 byte boundaries.  When configured for an embedded ELF
2036          target, we don't bother.  */
2037       if (strncmp (TARGET_OS, "elf", 3) != 0
2038           && strncmp (TARGET_OS, "vxworks", 7) != 0)
2039         {
2040           (void) bfd_set_section_alignment (stdoutput, text_section, 4);
2041           (void) bfd_set_section_alignment (stdoutput, data_section, 4);
2042           (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
2043         }
2044
2045       /* Create a .reginfo section for register masks and a .mdebug
2046          section for debugging information.  */
2047       {
2048         segT seg;
2049         subsegT subseg;
2050         flagword flags;
2051         segT sec;
2052
2053         seg = now_seg;
2054         subseg = now_subseg;
2055
2056         /* The ABI says this section should be loaded so that the
2057            running program can access it.  However, we don't load it
2058            if we are configured for an embedded target */
2059         flags = SEC_READONLY | SEC_DATA;
2060         if (strncmp (TARGET_OS, "elf", 3) != 0)
2061           flags |= SEC_ALLOC | SEC_LOAD;
2062
2063         if (mips_abi != N64_ABI)
2064           {
2065             sec = subseg_new (".reginfo", (subsegT) 0);
2066
2067             bfd_set_section_flags (stdoutput, sec, flags);
2068             bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
2069
2070             mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
2071           }
2072         else
2073           {
2074             /* The 64-bit ABI uses a .MIPS.options section rather than
2075                .reginfo section.  */
2076             sec = subseg_new (".MIPS.options", (subsegT) 0);
2077             bfd_set_section_flags (stdoutput, sec, flags);
2078             bfd_set_section_alignment (stdoutput, sec, 3);
2079
2080             /* Set up the option header.  */
2081             {
2082               Elf_Internal_Options opthdr;
2083               char *f;
2084
2085               opthdr.kind = ODK_REGINFO;
2086               opthdr.size = (sizeof (Elf_External_Options)
2087                              + sizeof (Elf64_External_RegInfo));
2088               opthdr.section = 0;
2089               opthdr.info = 0;
2090               f = frag_more (sizeof (Elf_External_Options));
2091               bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
2092                                              (Elf_External_Options *) f);
2093
2094               mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
2095             }
2096           }
2097
2098         if (ECOFF_DEBUGGING)
2099           {
2100             sec = subseg_new (".mdebug", (subsegT) 0);
2101             (void) bfd_set_section_flags (stdoutput, sec,
2102                                           SEC_HAS_CONTENTS | SEC_READONLY);
2103             (void) bfd_set_section_alignment (stdoutput, sec, 2);
2104           }
2105         else if (mips_flag_pdr)
2106           {
2107             pdr_seg = subseg_new (".pdr", (subsegT) 0);
2108             (void) bfd_set_section_flags (stdoutput, pdr_seg,
2109                                           SEC_READONLY | SEC_RELOC
2110                                           | SEC_DEBUGGING);
2111             (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
2112           }
2113
2114         subseg_set (seg, subseg);
2115       }
2116     }
2117 #endif /* OBJ_ELF */
2118
2119   if (! ECOFF_DEBUGGING)
2120     md_obj_begin ();
2121
2122   if (mips_fix_vr4120)
2123     init_vr4120_conflicts ();
2124 }
2125
2126 void
2127 md_mips_end (void)
2128 {
2129   mips_emit_delays ();
2130   if (! ECOFF_DEBUGGING)
2131     md_obj_end ();
2132 }
2133
2134 void
2135 md_assemble (char *str)
2136 {
2137   struct mips_cl_insn insn;
2138   bfd_reloc_code_real_type unused_reloc[3]
2139     = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
2140
2141   imm_expr.X_op = O_absent;
2142   imm2_expr.X_op = O_absent;
2143   offset_expr.X_op = O_absent;
2144   imm_reloc[0] = BFD_RELOC_UNUSED;
2145   imm_reloc[1] = BFD_RELOC_UNUSED;
2146   imm_reloc[2] = BFD_RELOC_UNUSED;
2147   offset_reloc[0] = BFD_RELOC_UNUSED;
2148   offset_reloc[1] = BFD_RELOC_UNUSED;
2149   offset_reloc[2] = BFD_RELOC_UNUSED;
2150
2151   if (mips_opts.mips16)
2152     mips16_ip (str, &insn);
2153   else
2154     {
2155       mips_ip (str, &insn);
2156       DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
2157             str, insn.insn_opcode));
2158     }
2159
2160   if (insn_error)
2161     {
2162       as_bad ("%s `%s'", insn_error, str);
2163       return;
2164     }
2165
2166   if (insn.insn_mo->pinfo == INSN_MACRO)
2167     {
2168       macro_start ();
2169       if (mips_opts.mips16)
2170         mips16_macro (&insn);
2171       else
2172         macro (&insn);
2173       macro_end ();
2174     }
2175   else
2176     {
2177       if (imm_expr.X_op != O_absent)
2178         append_insn (&insn, &imm_expr, imm_reloc);
2179       else if (offset_expr.X_op != O_absent)
2180         append_insn (&insn, &offset_expr, offset_reloc);
2181       else
2182         append_insn (&insn, NULL, unused_reloc);
2183     }
2184 }
2185
2186 /* Convenience functions for abstracting away the differences between
2187    MIPS16 and non-MIPS16 relocations.  */
2188
2189 static inline bfd_boolean
2190 mips16_reloc_p (bfd_reloc_code_real_type reloc)
2191 {
2192   switch (reloc)
2193     {
2194     case BFD_RELOC_MIPS16_JMP:
2195     case BFD_RELOC_MIPS16_GPREL:
2196     case BFD_RELOC_MIPS16_GOT16:
2197     case BFD_RELOC_MIPS16_CALL16:
2198     case BFD_RELOC_MIPS16_HI16_S:
2199     case BFD_RELOC_MIPS16_HI16:
2200     case BFD_RELOC_MIPS16_LO16:
2201       return TRUE;
2202
2203     default:
2204       return FALSE;
2205     }
2206 }
2207
2208 static inline bfd_boolean
2209 got16_reloc_p (bfd_reloc_code_real_type reloc)
2210 {
2211   return reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16;
2212 }
2213
2214 static inline bfd_boolean
2215 hi16_reloc_p (bfd_reloc_code_real_type reloc)
2216 {
2217   return reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S;
2218 }
2219
2220 static inline bfd_boolean
2221 lo16_reloc_p (bfd_reloc_code_real_type reloc)
2222 {
2223   return reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16;
2224 }
2225
2226 /* Return true if the given relocation might need a matching %lo().
2227    This is only "might" because SVR4 R_MIPS_GOT16 relocations only
2228    need a matching %lo() when applied to local symbols.  */
2229
2230 static inline bfd_boolean
2231 reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
2232 {
2233   return (HAVE_IN_PLACE_ADDENDS
2234           && (hi16_reloc_p (reloc)
2235               /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
2236                  all GOT16 relocations evaluate to "G".  */
2237               || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC)));
2238 }
2239
2240 /* Return the type of %lo() reloc needed by RELOC, given that
2241    reloc_needs_lo_p.  */
2242
2243 static inline bfd_reloc_code_real_type
2244 matching_lo_reloc (bfd_reloc_code_real_type reloc)
2245 {
2246   return mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16 : BFD_RELOC_LO16;
2247 }
2248
2249 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
2250    relocation.  */
2251
2252 static inline bfd_boolean
2253 fixup_has_matching_lo_p (fixS *fixp)
2254 {
2255   return (fixp->fx_next != NULL
2256           && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type)
2257           && fixp->fx_addsy == fixp->fx_next->fx_addsy
2258           && fixp->fx_offset == fixp->fx_next->fx_offset);
2259 }
2260
2261 /* This function returns true if modifying a register requires a
2262    delay.  */
2263
2264 static int
2265 reg_needs_delay (unsigned int reg)
2266 {
2267   unsigned long prev_pinfo;
2268
2269   prev_pinfo = history[0].insn_mo->pinfo;
2270   if (! mips_opts.noreorder
2271       && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
2272            && ! gpr_interlocks)
2273           || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
2274               && ! cop_interlocks)))
2275     {
2276       /* A load from a coprocessor or from memory.  All load delays
2277          delay the use of general register rt for one instruction.  */
2278       /* Itbl support may require additional care here.  */
2279       know (prev_pinfo & INSN_WRITE_GPR_T);
2280       if (reg == EXTRACT_OPERAND (RT, history[0]))
2281         return 1;
2282     }
2283
2284   return 0;
2285 }
2286
2287 /* Move all labels in insn_labels to the current insertion point.  */
2288
2289 static void
2290 mips_move_labels (void)
2291 {
2292   segment_info_type *si = seg_info (now_seg);
2293   struct insn_label_list *l;
2294   valueT val;
2295
2296   for (l = si->label_list; l != NULL; l = l->next)
2297     {
2298       gas_assert (S_GET_SEGMENT (l->label) == now_seg);
2299       symbol_set_frag (l->label, frag_now);
2300       val = (valueT) frag_now_fix ();
2301       /* mips16 text labels are stored as odd.  */
2302       if (mips_opts.mips16)
2303         ++val;
2304       S_SET_VALUE (l->label, val);
2305     }
2306 }
2307
2308 static bfd_boolean
2309 s_is_linkonce (symbolS *sym, segT from_seg)
2310 {
2311   bfd_boolean linkonce = FALSE;
2312   segT symseg = S_GET_SEGMENT (sym);
2313
2314   if (symseg != from_seg && !S_IS_LOCAL (sym))
2315     {
2316       if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE))
2317         linkonce = TRUE;
2318 #ifdef OBJ_ELF
2319       /* The GNU toolchain uses an extension for ELF: a section
2320          beginning with the magic string .gnu.linkonce is a
2321          linkonce section.  */
2322       if (strncmp (segment_name (symseg), ".gnu.linkonce",
2323                    sizeof ".gnu.linkonce" - 1) == 0)
2324         linkonce = TRUE;
2325 #endif
2326     }
2327   return linkonce;
2328 }
2329
2330 /* Mark instruction labels in mips16 mode.  This permits the linker to
2331    handle them specially, such as generating jalx instructions when
2332    needed.  We also make them odd for the duration of the assembly, in
2333    order to generate the right sort of code.  We will make them even
2334    in the adjust_symtab routine, while leaving them marked.  This is
2335    convenient for the debugger and the disassembler.  The linker knows
2336    to make them odd again.  */
2337
2338 static void
2339 mips16_mark_labels (void)
2340 {
2341   segment_info_type *si = seg_info (now_seg);
2342   struct insn_label_list *l;
2343
2344   if (!mips_opts.mips16)
2345     return;
2346
2347   for (l = si->label_list; l != NULL; l = l->next)
2348    {
2349       symbolS *label = l->label;
2350
2351 #if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF)
2352       if (IS_ELF)
2353         S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
2354 #endif
2355       if ((S_GET_VALUE (label) & 1) == 0
2356         /* Don't adjust the address if the label is global or weak, or
2357            in a link-once section, since we'll be emitting symbol reloc
2358            references to it which will be patched up by the linker, and
2359            the final value of the symbol may or may not be MIPS16.  */
2360           && ! S_IS_WEAK (label)
2361           && ! S_IS_EXTERNAL (label)
2362           && ! s_is_linkonce (label, now_seg))
2363         S_SET_VALUE (label, S_GET_VALUE (label) | 1);
2364     }
2365 }
2366
2367 /* End the current frag.  Make it a variant frag and record the
2368    relaxation info.  */
2369
2370 static void
2371 relax_close_frag (void)
2372 {
2373   mips_macro_warning.first_frag = frag_now;
2374   frag_var (rs_machine_dependent, 0, 0,
2375             RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
2376             mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
2377
2378   memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
2379   mips_relax.first_fixup = 0;
2380 }
2381
2382 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
2383    See the comment above RELAX_ENCODE for more details.  */
2384
2385 static void
2386 relax_start (symbolS *symbol)
2387 {
2388   gas_assert (mips_relax.sequence == 0);
2389   mips_relax.sequence = 1;
2390   mips_relax.symbol = symbol;
2391 }
2392
2393 /* Start generating the second version of a relaxable sequence.
2394    See the comment above RELAX_ENCODE for more details.  */
2395
2396 static void
2397 relax_switch (void)
2398 {
2399   gas_assert (mips_relax.sequence == 1);
2400   mips_relax.sequence = 2;
2401 }
2402
2403 /* End the current relaxable sequence.  */
2404
2405 static void
2406 relax_end (void)
2407 {
2408   gas_assert (mips_relax.sequence == 2);
2409   relax_close_frag ();
2410   mips_relax.sequence = 0;
2411 }
2412
2413 /* Return the mask of core registers that IP reads.  */
2414
2415 static unsigned int
2416 gpr_read_mask (const struct mips_cl_insn *ip)
2417 {
2418   unsigned long pinfo, pinfo2;
2419   unsigned int mask;
2420
2421   mask = 0;
2422   pinfo = ip->insn_mo->pinfo;
2423   pinfo2 = ip->insn_mo->pinfo2;
2424   if (mips_opts.mips16)
2425     {
2426       if (pinfo & MIPS16_INSN_READ_X)
2427         mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)];
2428       if (pinfo & MIPS16_INSN_READ_Y)
2429         mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)];
2430       if (pinfo & MIPS16_INSN_READ_T)
2431         mask |= 1 << TREG;
2432       if (pinfo & MIPS16_INSN_READ_SP)
2433         mask |= 1 << SP;
2434       if (pinfo & MIPS16_INSN_READ_31)
2435         mask |= 1 << RA;
2436       if (pinfo & MIPS16_INSN_READ_Z)
2437         mask |= 1 << (mips16_to_32_reg_map
2438                       [MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]);
2439       if (pinfo & MIPS16_INSN_READ_GPR_X)
2440         mask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
2441     }
2442   else
2443     {
2444       if (pinfo2 & INSN2_READ_GPR_D)
2445         mask |= 1 << EXTRACT_OPERAND (RD, *ip);
2446       if (pinfo & INSN_READ_GPR_T)
2447         mask |= 1 << EXTRACT_OPERAND (RT, *ip);
2448       if (pinfo & INSN_READ_GPR_S)
2449         mask |= 1 << EXTRACT_OPERAND (RS, *ip);
2450       if (pinfo2 & INSN2_READ_GPR_Z)
2451         mask |= 1 << EXTRACT_OPERAND (RZ, *ip);
2452     }
2453   /* Don't include register 0.  */
2454   return mask & ~1;
2455 }
2456
2457 /* Return the mask of core registers that IP writes.  */
2458
2459 static unsigned int
2460 gpr_write_mask (const struct mips_cl_insn *ip)
2461 {
2462   unsigned long pinfo, pinfo2;
2463   unsigned int mask;
2464
2465   mask = 0;
2466   pinfo = ip->insn_mo->pinfo;
2467   pinfo2 = ip->insn_mo->pinfo2;
2468   if (mips_opts.mips16)
2469     {
2470       if (pinfo & MIPS16_INSN_WRITE_X)
2471         mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)];
2472       if (pinfo & MIPS16_INSN_WRITE_Y)
2473         mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)];
2474       if (pinfo & MIPS16_INSN_WRITE_Z)
2475         mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RZ, *ip)];
2476       if (pinfo & MIPS16_INSN_WRITE_T)
2477         mask |= 1 << TREG;
2478       if (pinfo & MIPS16_INSN_WRITE_SP)
2479         mask |= 1 << SP;
2480       if (pinfo & MIPS16_INSN_WRITE_31)
2481         mask |= 1 << RA;
2482       if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
2483         mask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
2484     }
2485   else
2486     {
2487       if (pinfo & INSN_WRITE_GPR_D)
2488         mask |= 1 << EXTRACT_OPERAND (RD, *ip);
2489       if (pinfo & INSN_WRITE_GPR_T)
2490         mask |= 1 << EXTRACT_OPERAND (RT, *ip);
2491       if (pinfo & INSN_WRITE_GPR_31)
2492         mask |= 1 << RA;
2493       if (pinfo2 & INSN2_WRITE_GPR_Z)
2494         mask |= 1 << EXTRACT_OPERAND (RZ, *ip);
2495     }
2496   /* Don't include register 0.  */
2497   return mask & ~1;
2498 }
2499
2500 /* Return the mask of floating-point registers that IP reads.  */
2501
2502 static unsigned int
2503 fpr_read_mask (const struct mips_cl_insn *ip)
2504 {
2505   unsigned long pinfo, pinfo2;
2506   unsigned int mask;
2507
2508   mask = 0;
2509   pinfo = ip->insn_mo->pinfo;
2510   pinfo2 = ip->insn_mo->pinfo2;
2511   if (!mips_opts.mips16)
2512     {
2513       if (pinfo & INSN_READ_FPR_S)
2514         mask |= 1 << EXTRACT_OPERAND (FS, *ip);
2515       if (pinfo & INSN_READ_FPR_T)
2516         mask |= 1 << EXTRACT_OPERAND (FT, *ip);
2517       if (pinfo & INSN_READ_FPR_R)
2518         mask |= 1 << EXTRACT_OPERAND (FR, *ip);
2519       if (pinfo2 & INSN2_READ_FPR_Z)
2520         mask |= 1 << EXTRACT_OPERAND (FZ, *ip);
2521     }
2522   /* Conservatively treat all operands to an FP_D instruction are doubles.
2523      (This is overly pessimistic for things like cvt.d.s.)  */
2524   if (HAVE_32BIT_FPRS && (pinfo & FP_D))
2525     mask |= mask << 1;
2526   return mask;
2527 }
2528
2529 /* Return the mask of floating-point registers that IP writes.  */
2530
2531 static unsigned int
2532 fpr_write_mask (const struct mips_cl_insn *ip)
2533 {
2534   unsigned long pinfo, pinfo2;
2535   unsigned int mask;
2536
2537   mask = 0;
2538   pinfo = ip->insn_mo->pinfo;
2539   pinfo2 = ip->insn_mo->pinfo2;
2540   if (!mips_opts.mips16)
2541     {
2542       if (pinfo & INSN_WRITE_FPR_D)
2543         mask |= 1 << EXTRACT_OPERAND (FD, *ip);
2544       if (pinfo & INSN_WRITE_FPR_S)
2545         mask |= 1 << EXTRACT_OPERAND (FS, *ip);
2546       if (pinfo & INSN_WRITE_FPR_T)
2547         mask |= 1 << EXTRACT_OPERAND (FT, *ip);
2548       if (pinfo2 & INSN2_WRITE_FPR_Z)
2549         mask |= 1 << EXTRACT_OPERAND (FZ, *ip);
2550     }
2551   /* Conservatively treat all operands to an FP_D instruction are doubles.
2552      (This is overly pessimistic for things like cvt.s.d.)  */
2553   if (HAVE_32BIT_FPRS && (pinfo & FP_D))
2554     mask |= mask << 1;
2555   return mask;
2556 }
2557
2558 /* Classify an instruction according to the FIX_VR4120_* enumeration.
2559    Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
2560    by VR4120 errata.  */
2561
2562 static unsigned int
2563 classify_vr4120_insn (const char *name)
2564 {
2565   if (strncmp (name, "macc", 4) == 0)
2566     return FIX_VR4120_MACC;
2567   if (strncmp (name, "dmacc", 5) == 0)
2568     return FIX_VR4120_DMACC;
2569   if (strncmp (name, "mult", 4) == 0)
2570     return FIX_VR4120_MULT;
2571   if (strncmp (name, "dmult", 5) == 0)
2572     return FIX_VR4120_DMULT;
2573   if (strstr (name, "div"))
2574     return FIX_VR4120_DIV;
2575   if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
2576     return FIX_VR4120_MTHILO;
2577   return NUM_FIX_VR4120_CLASSES;
2578 }
2579
2580 #define INSN_ERET  0x42000018
2581 #define INSN_DERET 0x4200001f
2582
2583 /* Return the number of instructions that must separate INSN1 and INSN2,
2584    where INSN1 is the earlier instruction.  Return the worst-case value
2585    for any INSN2 if INSN2 is null.  */
2586
2587 static unsigned int
2588 insns_between (const struct mips_cl_insn *insn1,
2589                const struct mips_cl_insn *insn2)
2590 {
2591   unsigned long pinfo1, pinfo2;
2592   unsigned int mask;
2593
2594   /* This function needs to know which pinfo flags are set for INSN2
2595      and which registers INSN2 uses.  The former is stored in PINFO2 and
2596      the latter is tested via INSN2_USES_GPR.  If INSN2 is null, PINFO2
2597      will have every flag set and INSN2_USES_GPR will always return true.  */
2598   pinfo1 = insn1->insn_mo->pinfo;
2599   pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
2600
2601 #define INSN2_USES_GPR(REG) \
2602   (insn2 == NULL || (gpr_read_mask (insn2) & (1U << (REG))) != 0)
2603
2604   /* For most targets, write-after-read dependencies on the HI and LO
2605      registers must be separated by at least two instructions.  */
2606   if (!hilo_interlocks)
2607     {
2608       if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
2609         return 2;
2610       if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
2611         return 2;
2612     }
2613
2614   /* If we're working around r7000 errata, there must be two instructions
2615      between an mfhi or mflo and any instruction that uses the result.  */
2616   if (mips_7000_hilo_fix
2617       && MF_HILO_INSN (pinfo1)
2618       && INSN2_USES_GPR (EXTRACT_OPERAND (RD, *insn1)))
2619     return 2;
2620
2621   /* If we're working around 24K errata, one instruction is required
2622      if an ERET or DERET is followed by a branch instruction.  */
2623   if (mips_fix_24k)
2624     {
2625       if (insn1->insn_opcode == INSN_ERET
2626           || insn1->insn_opcode == INSN_DERET)
2627         {
2628           if (insn2 == NULL
2629               || insn2->insn_opcode == INSN_ERET
2630               || insn2->insn_opcode == INSN_DERET
2631               || (insn2->insn_mo->pinfo
2632                   & (INSN_UNCOND_BRANCH_DELAY
2633                      | INSN_COND_BRANCH_DELAY
2634                      | INSN_COND_BRANCH_LIKELY)) != 0)
2635             return 1;
2636         }
2637     }
2638
2639   /* If working around VR4120 errata, check for combinations that need
2640      a single intervening instruction.  */
2641   if (mips_fix_vr4120)
2642     {
2643       unsigned int class1, class2;
2644
2645       class1 = classify_vr4120_insn (insn1->insn_mo->name);
2646       if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
2647         {
2648           if (insn2 == NULL)
2649             return 1;
2650           class2 = classify_vr4120_insn (insn2->insn_mo->name);
2651           if (vr4120_conflicts[class1] & (1 << class2))
2652             return 1;
2653         }
2654     }
2655
2656   if (!mips_opts.mips16)
2657     {
2658       /* Check for GPR or coprocessor load delays.  All such delays
2659          are on the RT register.  */
2660       /* Itbl support may require additional care here.  */
2661       if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY_DELAY))
2662           || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY)))
2663         {
2664           know (pinfo1 & INSN_WRITE_GPR_T);
2665           if (INSN2_USES_GPR (EXTRACT_OPERAND (RT, *insn1)))
2666             return 1;
2667         }
2668
2669       /* Check for generic coprocessor hazards.
2670
2671          This case is not handled very well.  There is no special
2672          knowledge of CP0 handling, and the coprocessors other than
2673          the floating point unit are not distinguished at all.  */
2674       /* Itbl support may require additional care here. FIXME!
2675          Need to modify this to include knowledge about
2676          user specified delays!  */
2677       else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE_DELAY))
2678                || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
2679         {
2680           /* Handle cases where INSN1 writes to a known general coprocessor
2681              register.  There must be a one instruction delay before INSN2
2682              if INSN2 reads that register, otherwise no delay is needed.  */
2683           mask = fpr_write_mask (insn1);
2684           if (mask != 0)
2685             {
2686               if (!insn2 || (mask & fpr_read_mask (insn2)) != 0)
2687                 return 1;
2688             }
2689           else
2690             {
2691               /* Read-after-write dependencies on the control registers
2692                  require a two-instruction gap.  */
2693               if ((pinfo1 & INSN_WRITE_COND_CODE)
2694                   && (pinfo2 & INSN_READ_COND_CODE))
2695                 return 2;
2696
2697               /* We don't know exactly what INSN1 does.  If INSN2 is
2698                  also a coprocessor instruction, assume there must be
2699                  a one instruction gap.  */
2700               if (pinfo2 & INSN_COP)
2701                 return 1;
2702             }
2703         }
2704
2705       /* Check for read-after-write dependencies on the coprocessor
2706          control registers in cases where INSN1 does not need a general
2707          coprocessor delay.  This means that INSN1 is a floating point
2708          comparison instruction.  */
2709       /* Itbl support may require additional care here.  */
2710       else if (!cop_interlocks
2711                && (pinfo1 & INSN_WRITE_COND_CODE)
2712                && (pinfo2 & INSN_READ_COND_CODE))
2713         return 1;
2714     }
2715
2716 #undef INSN2_USES_GPR
2717
2718   return 0;
2719 }
2720
2721 /* Return the number of nops that would be needed to work around the
2722    VR4130 mflo/mfhi errata if instruction INSN immediately followed
2723    the MAX_VR4130_NOPS instructions described by HIST.  Ignore hazards
2724    that are contained within the first IGNORE instructions of HIST.  */
2725
2726 static int
2727 nops_for_vr4130 (int ignore, const struct mips_cl_insn *hist,
2728                  const struct mips_cl_insn *insn)
2729 {
2730   int i, j;
2731   unsigned int mask;
2732
2733   /* Check if the instruction writes to HI or LO.  MTHI and MTLO
2734      are not affected by the errata.  */
2735   if (insn != 0
2736       && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
2737           || strcmp (insn->insn_mo->name, "mtlo") == 0
2738           || strcmp (insn->insn_mo->name, "mthi") == 0))
2739     return 0;
2740
2741   /* Search for the first MFLO or MFHI.  */
2742   for (i = 0; i < MAX_VR4130_NOPS; i++)
2743     if (MF_HILO_INSN (hist[i].insn_mo->pinfo))
2744       {
2745         /* Extract the destination register.  */
2746         mask = gpr_write_mask (&hist[i]);
2747
2748         /* No nops are needed if INSN reads that register.  */
2749         if (insn != NULL && (gpr_read_mask (insn) & mask) != 0)
2750           return 0;
2751
2752         /* ...or if any of the intervening instructions do.  */
2753         for (j = 0; j < i; j++)
2754           if (gpr_read_mask (&hist[j]) & mask)
2755             return 0;
2756
2757         if (i >= ignore)
2758           return MAX_VR4130_NOPS - i;
2759       }
2760   return 0;
2761 }
2762
2763 #define BASE_REG_EQ(INSN1, INSN2)       \
2764   ((((INSN1) >> OP_SH_RS) & OP_MASK_RS) \
2765       == (((INSN2) >> OP_SH_RS) & OP_MASK_RS))
2766
2767 /* Return the minimum alignment for this store instruction.  */
2768
2769 static int
2770 fix_24k_align_to (const struct mips_opcode *mo)
2771 {
2772   if (strcmp (mo->name, "sh") == 0)
2773     return 2;
2774
2775   if (strcmp (mo->name, "swc1") == 0
2776       || strcmp (mo->name, "swc2") == 0
2777       || strcmp (mo->name, "sw") == 0
2778       || strcmp (mo->name, "sc") == 0
2779       || strcmp (mo->name, "s.s") == 0)
2780     return 4;
2781
2782   if (strcmp (mo->name, "sdc1") == 0
2783       || strcmp (mo->name, "sdc2") == 0
2784       || strcmp (mo->name, "s.d") == 0)
2785     return 8;
2786
2787   /* sb, swl, swr */
2788   return 1;
2789 }
2790
2791 struct fix_24k_store_info
2792   {
2793     /* Immediate offset, if any, for this store instruction.  */
2794     short off;
2795     /* Alignment required by this store instruction.  */
2796     int align_to;
2797     /* True for register offsets.  */
2798     int register_offset;
2799   };
2800
2801 /* Comparison function used by qsort.  */
2802
2803 static int
2804 fix_24k_sort (const void *a, const void *b)
2805 {
2806   const struct fix_24k_store_info *pos1 = a;
2807   const struct fix_24k_store_info *pos2 = b;
2808
2809   return (pos1->off - pos2->off);
2810 }
2811
2812 /* INSN is a store instruction.  Try to record the store information
2813    in STINFO.  Return false if the information isn't known.  */
2814
2815 static bfd_boolean
2816 fix_24k_record_store_info (struct fix_24k_store_info *stinfo,
2817                            const struct mips_cl_insn *insn)
2818 {
2819   /* The instruction must have a known offset.  */
2820   if (!insn->complete_p || !strstr (insn->insn_mo->args, "o("))
2821     return FALSE;
2822
2823   stinfo->off = (insn->insn_opcode >> OP_SH_IMMEDIATE) & OP_MASK_IMMEDIATE;
2824   stinfo->align_to = fix_24k_align_to (insn->insn_mo);
2825   return TRUE;
2826 }
2827
2828 /* Return the number of nops that would be needed to work around the 24k
2829    "lost data on stores during refill" errata if instruction INSN
2830    immediately followed the 2 instructions described by HIST.
2831    Ignore hazards that are contained within the first IGNORE
2832    instructions of HIST.
2833
2834    Problem: The FSB (fetch store buffer) acts as an intermediate buffer
2835    for the data cache refills and store data. The following describes
2836    the scenario where the store data could be lost.
2837
2838    * A data cache miss, due to either a load or a store, causing fill
2839      data to be supplied by the memory subsystem
2840    * The first three doublewords of fill data are returned and written
2841      into the cache
2842    * A sequence of four stores occurs in consecutive cycles around the
2843      final doubleword of the fill:
2844    * Store A
2845    * Store B
2846    * Store C
2847    * Zero, One or more instructions
2848    * Store D
2849
2850    The four stores A-D must be to different doublewords of the line that
2851    is being filled. The fourth instruction in the sequence above permits
2852    the fill of the final doubleword to be transferred from the FSB into
2853    the cache. In the sequence above, the stores may be either integer
2854    (sb, sh, sw, swr, swl, sc) or coprocessor (swc1/swc2, sdc1/sdc2,
2855    swxc1, sdxc1, suxc1) stores, as long as the four stores are to
2856    different doublewords on the line. If the floating point unit is
2857    running in 1:2 mode, it is not possible to create the sequence above
2858    using only floating point store instructions.
2859
2860    In this case, the cache line being filled is incorrectly marked
2861    invalid, thereby losing the data from any store to the line that
2862    occurs between the original miss and the completion of the five
2863    cycle sequence shown above.
2864
2865    The workarounds are:
2866
2867    * Run the data cache in write-through mode.
2868    * Insert a non-store instruction between
2869      Store A and Store B or Store B and Store C.  */
2870   
2871 static int
2872 nops_for_24k (int ignore, const struct mips_cl_insn *hist,
2873               const struct mips_cl_insn *insn)
2874 {
2875   struct fix_24k_store_info pos[3];
2876   int align, i, base_offset;
2877
2878   if (ignore >= 2)
2879     return 0;
2880
2881   /* If the previous instruction wasn't a store, there's nothing to
2882      worry about.  */
2883   if ((hist[0].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
2884     return 0;
2885
2886   /* If the instructions after the previous one are unknown, we have
2887      to assume the worst.  */
2888   if (!insn)
2889     return 1;
2890
2891   /* Check whether we are dealing with three consecutive stores.  */
2892   if ((insn->insn_mo->pinfo & INSN_STORE_MEMORY) == 0
2893       || (hist[1].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
2894     return 0;
2895
2896   /* If we don't know the relationship between the store addresses,
2897      assume the worst.  */
2898   if (!BASE_REG_EQ (insn->insn_opcode, hist[0].insn_opcode)
2899       || !BASE_REG_EQ (insn->insn_opcode, hist[1].insn_opcode))
2900     return 1;
2901
2902   if (!fix_24k_record_store_info (&pos[0], insn)
2903       || !fix_24k_record_store_info (&pos[1], &hist[0])
2904       || !fix_24k_record_store_info (&pos[2], &hist[1]))
2905     return 1;
2906
2907   qsort (&pos, 3, sizeof (struct fix_24k_store_info), fix_24k_sort);
2908
2909   /* Pick a value of ALIGN and X such that all offsets are adjusted by
2910      X bytes and such that the base register + X is known to be aligned
2911      to align bytes.  */
2912
2913   if (((insn->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == SP)
2914     align = 8;
2915   else
2916     {
2917       align = pos[0].align_to;
2918       base_offset = pos[0].off;
2919       for (i = 1; i < 3; i++)
2920         if (align < pos[i].align_to)
2921           {
2922             align = pos[i].align_to;
2923             base_offset = pos[i].off;
2924           }
2925       for (i = 0; i < 3; i++)
2926         pos[i].off -= base_offset;
2927     }
2928
2929   pos[0].off &= ~align + 1;
2930   pos[1].off &= ~align + 1;
2931   pos[2].off &= ~align + 1;
2932
2933   /* If any two stores write to the same chunk, they also write to the
2934      same doubleword.  The offsets are still sorted at this point.  */
2935   if (pos[0].off == pos[1].off || pos[1].off == pos[2].off)
2936     return 0;
2937
2938   /* A range of at least 9 bytes is needed for the stores to be in
2939      non-overlapping doublewords.  */
2940   if (pos[2].off - pos[0].off <= 8)
2941     return 0;
2942
2943   if (pos[2].off - pos[1].off >= 24
2944       || pos[1].off - pos[0].off >= 24
2945       || pos[2].off - pos[0].off >= 32)
2946     return 0;
2947
2948   return 1;
2949 }
2950
2951 /* Return the number of nops that would be needed if instruction INSN
2952    immediately followed the MAX_NOPS instructions given by HIST,
2953    where HIST[0] is the most recent instruction.  Ignore hazards
2954    between INSN and the first IGNORE instructions in HIST.
2955
2956    If INSN is null, return the worse-case number of nops for any
2957    instruction.  */
2958
2959 static int
2960 nops_for_insn (int ignore, const struct mips_cl_insn *hist,
2961                const struct mips_cl_insn *insn)
2962 {
2963   int i, nops, tmp_nops;
2964
2965   nops = 0;
2966   for (i = ignore; i < MAX_DELAY_NOPS; i++)
2967     {
2968       tmp_nops = insns_between (hist + i, insn) - i;
2969       if (tmp_nops > nops)
2970         nops = tmp_nops;
2971     }
2972
2973   if (mips_fix_vr4130)
2974     {
2975       tmp_nops = nops_for_vr4130 (ignore, hist, insn);
2976       if (tmp_nops > nops)
2977         nops = tmp_nops;
2978     }
2979
2980   if (mips_fix_24k)
2981     {
2982       tmp_nops = nops_for_24k (ignore, hist, insn);
2983       if (tmp_nops > nops)
2984         nops = tmp_nops;
2985     }
2986
2987   return nops;
2988 }
2989
2990 /* The variable arguments provide NUM_INSNS extra instructions that
2991    might be added to HIST.  Return the largest number of nops that
2992    would be needed after the extended sequence, ignoring hazards
2993    in the first IGNORE instructions.  */
2994
2995 static int
2996 nops_for_sequence (int num_insns, int ignore,
2997                    const struct mips_cl_insn *hist, ...)
2998 {
2999   va_list args;
3000   struct mips_cl_insn buffer[MAX_NOPS];
3001   struct mips_cl_insn *cursor;
3002   int nops;
3003
3004   va_start (args, hist);
3005   cursor = buffer + num_insns;
3006   memcpy (cursor, hist, (MAX_NOPS - num_insns) * sizeof (*cursor));
3007   while (cursor > buffer)
3008     *--cursor = *va_arg (args, const struct mips_cl_insn *);
3009
3010   nops = nops_for_insn (ignore, buffer, NULL);
3011   va_end (args);
3012   return nops;
3013 }
3014
3015 /* Like nops_for_insn, but if INSN is a branch, take into account the
3016    worst-case delay for the branch target.  */
3017
3018 static int
3019 nops_for_insn_or_target (int ignore, const struct mips_cl_insn *hist,
3020                          const struct mips_cl_insn *insn)
3021 {
3022   int nops, tmp_nops;
3023
3024   nops = nops_for_insn (ignore, hist, insn);
3025   if (insn->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
3026                               | INSN_COND_BRANCH_DELAY
3027                               | INSN_COND_BRANCH_LIKELY))
3028     {
3029       tmp_nops = nops_for_sequence (2, ignore ? ignore + 2 : 0,
3030                                     hist, insn, NOP_INSN);
3031       if (tmp_nops > nops)
3032         nops = tmp_nops;
3033     }
3034   else if (mips_opts.mips16
3035            && (insn->insn_mo->pinfo & (MIPS16_INSN_UNCOND_BRANCH
3036                                        | MIPS16_INSN_COND_BRANCH)))
3037     {
3038       tmp_nops = nops_for_sequence (1, ignore ? ignore + 1 : 0, hist, insn);
3039       if (tmp_nops > nops)
3040         nops = tmp_nops;
3041     }
3042   return nops;
3043 }
3044
3045 /* Fix NOP issue: Replace nops by "or at,at,zero".  */
3046
3047 static void
3048 fix_loongson2f_nop (struct mips_cl_insn * ip)
3049 {
3050   if (strcmp (ip->insn_mo->name, "nop") == 0)
3051     ip->insn_opcode = LOONGSON2F_NOP_INSN;
3052 }
3053
3054 /* Fix Jump Issue: Eliminate instruction fetch from outside 256M region
3055                    jr target pc &= 'hffff_ffff_cfff_ffff.  */
3056
3057 static void
3058 fix_loongson2f_jump (struct mips_cl_insn * ip)
3059 {
3060   if (strcmp (ip->insn_mo->name, "j") == 0
3061       || strcmp (ip->insn_mo->name, "jr") == 0
3062       || strcmp (ip->insn_mo->name, "jalr") == 0)
3063     {
3064       int sreg;
3065       expressionS ep;
3066
3067       if (! mips_opts.at)
3068         return;
3069
3070       sreg = EXTRACT_OPERAND (RS, *ip);
3071       if (sreg == ZERO || sreg == KT0 || sreg == KT1 || sreg == ATREG)
3072         return;
3073
3074       ep.X_op = O_constant;
3075       ep.X_add_number = 0xcfff0000;
3076       macro_build (&ep, "lui", "t,u", ATREG, BFD_RELOC_HI16);
3077       ep.X_add_number = 0xffff;
3078       macro_build (&ep, "ori", "t,r,i", ATREG, ATREG, BFD_RELOC_LO16);
3079       macro_build (NULL, "and", "d,v,t", sreg, sreg, ATREG);
3080     }
3081 }
3082
3083 static void
3084 fix_loongson2f (struct mips_cl_insn * ip)
3085 {
3086   if (mips_fix_loongson2f_nop)
3087     fix_loongson2f_nop (ip);
3088
3089   if (mips_fix_loongson2f_jump)
3090     fix_loongson2f_jump (ip);
3091 }
3092
3093 /* IP is a branch that has a delay slot, and we need to fill it
3094    automatically.   Return true if we can do that by swapping IP
3095    with the previous instruction.  */
3096
3097 static bfd_boolean
3098 can_swap_branch_p (struct mips_cl_insn *ip)
3099 {
3100   unsigned long pinfo, prev_pinfo;
3101   unsigned int gpr_read, gpr_write, prev_gpr_read, prev_gpr_write;
3102
3103   /* -O2 and above is required for this optimization.  */
3104   if (mips_optimize < 2)
3105     return FALSE;
3106
3107   /* If we have seen .set volatile or .set nomove, don't optimize.  */
3108   if (mips_opts.nomove)
3109     return FALSE;
3110
3111   /* We can't swap if the previous instruction's position is fixed.  */
3112   if (history[0].fixed_p)
3113     return FALSE;
3114
3115   /* If the previous previous insn was in a .set noreorder, we can't
3116      swap.  Actually, the MIPS assembler will swap in this situation.
3117      However, gcc configured -with-gnu-as will generate code like
3118
3119         .set    noreorder
3120         lw      $4,XXX
3121         .set    reorder
3122         INSN
3123         bne     $4,$0,foo
3124
3125      in which we can not swap the bne and INSN.  If gcc is not configured
3126      -with-gnu-as, it does not output the .set pseudo-ops.  */
3127   if (history[1].noreorder_p)
3128     return FALSE;
3129
3130   /* If the previous instruction had a fixup in mips16 mode, we can not
3131      swap.  This normally means that the previous instruction was a 4
3132      byte branch anyhow.  */
3133   if (mips_opts.mips16 && history[0].fixp[0])
3134     return FALSE;
3135
3136   /* If the branch is itself the target of a branch, we can not swap.
3137      We cheat on this; all we check for is whether there is a label on
3138      this instruction.  If there are any branches to anything other than
3139      a label, users must use .set noreorder.  */
3140   if (seg_info (now_seg)->label_list)
3141     return FALSE;
3142
3143   /* If the previous instruction is in a variant frag other than this
3144      branch's one, we cannot do the swap.  This does not apply to the
3145      mips16, which uses variant frags for different purposes.  */
3146   if (!mips_opts.mips16
3147       && history[0].frag
3148       && history[0].frag->fr_type == rs_machine_dependent)
3149     return FALSE;
3150
3151   /* We do not swap with instructions that cannot architecturally
3152      be placed in a branch delay slot, such as SYNC or ERET.  We
3153      also refrain from swapping with a trap instruction, since it
3154      complicates trap handlers to have the trap instruction be in
3155      a delay slot.  */
3156   prev_pinfo = history[0].insn_mo->pinfo;
3157   if (prev_pinfo & INSN_NO_DELAY_SLOT)
3158     return FALSE;
3159
3160   /* Check for conflicts between the branch and the instructions
3161      before the candidate delay slot.  */
3162   if (nops_for_insn (0, history + 1, ip) > 0)
3163     return FALSE;
3164
3165   /* Check for conflicts between the swapped sequence and the
3166      target of the branch.  */
3167   if (nops_for_sequence (2, 0, history + 1, ip, history) > 0)
3168     return FALSE;
3169
3170   /* If the branch reads a register that the previous
3171      instruction sets, we can not swap.  */
3172   gpr_read = gpr_read_mask (ip);
3173   prev_gpr_write = gpr_write_mask (&history[0]);
3174   if (gpr_read & prev_gpr_write)
3175     return FALSE;
3176
3177   /* If the branch writes a register that the previous
3178      instruction sets, we can not swap.  */
3179   gpr_write = gpr_write_mask (ip);
3180   if (gpr_write & prev_gpr_write)
3181     return FALSE;
3182
3183   /* If the branch writes a register that the previous
3184      instruction reads, we can not swap.  */
3185   prev_gpr_read = gpr_read_mask (&history[0]);
3186   if (gpr_write & prev_gpr_read)
3187     return FALSE;
3188
3189   /* If one instruction sets a condition code and the
3190      other one uses a condition code, we can not swap.  */
3191   pinfo = ip->insn_mo->pinfo;
3192   if ((pinfo & INSN_READ_COND_CODE)
3193       && (prev_pinfo & INSN_WRITE_COND_CODE))
3194     return FALSE;
3195   if ((pinfo & INSN_WRITE_COND_CODE)
3196       && (prev_pinfo & INSN_READ_COND_CODE))
3197     return FALSE;
3198
3199   /* If the previous instruction uses the PC, we can not swap.  */
3200   if (mips_opts.mips16 && (prev_pinfo & MIPS16_INSN_READ_PC))
3201     return FALSE;
3202
3203   return TRUE;
3204 }
3205
3206 /* Decide how we should add IP to the instruction stream.  */
3207
3208 static enum append_method
3209 get_append_method (struct mips_cl_insn *ip)
3210 {
3211   unsigned long pinfo;
3212
3213   /* The relaxed version of a macro sequence must be inherently
3214      hazard-free.  */
3215   if (mips_relax.sequence == 2)
3216     return APPEND_ADD;
3217
3218   /* We must not dabble with instructions in a ".set norerorder" block.  */
3219   if (mips_opts.noreorder)
3220     return APPEND_ADD;
3221
3222   /* Otherwise, it's our responsibility to fill branch delay slots.  */
3223   pinfo = ip->insn_mo->pinfo;
3224   if ((pinfo & INSN_UNCOND_BRANCH_DELAY)
3225       || (pinfo & INSN_COND_BRANCH_DELAY))
3226     {
3227       if (can_swap_branch_p (ip))
3228         return APPEND_SWAP;
3229
3230       if (mips_opts.mips16
3231           && ISA_SUPPORTS_MIPS16E
3232           && (pinfo & INSN_UNCOND_BRANCH_DELAY)
3233           && (pinfo & (MIPS16_INSN_READ_X | MIPS16_INSN_READ_31)))
3234         return APPEND_ADD_COMPACT;
3235
3236       return APPEND_ADD_WITH_NOP;
3237     }
3238
3239   /* We don't bother trying to track the target of branches, so there's
3240      nothing we can use to fill a branch-likely slot.  */
3241   if (pinfo & INSN_COND_BRANCH_LIKELY)
3242     return APPEND_ADD_WITH_NOP;
3243
3244   return APPEND_ADD;
3245 }
3246
3247 /* IP is a MIPS16 instruction whose opcode we have just changed.
3248    Point IP->insn_mo to the new opcode's definition.  */
3249
3250 static void
3251 find_altered_mips16_opcode (struct mips_cl_insn *ip)
3252 {
3253   const struct mips_opcode *mo, *end;
3254
3255   end = &mips16_opcodes[bfd_mips16_num_opcodes];
3256   for (mo = ip->insn_mo; mo < end; mo++)
3257     if ((ip->insn_opcode & mo->mask) == mo->match)
3258       {
3259         ip->insn_mo = mo;
3260         return;
3261       }
3262   abort ();
3263 }
3264
3265 /* Output an instruction.  IP is the instruction information.
3266    ADDRESS_EXPR is an operand of the instruction to be used with
3267    RELOC_TYPE.  */
3268
3269 static void
3270 append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
3271              bfd_reloc_code_real_type *reloc_type)
3272 {
3273   unsigned long prev_pinfo, pinfo;
3274   bfd_boolean relaxed_branch = FALSE;
3275   enum append_method method;
3276
3277   if (mips_fix_loongson2f)
3278     fix_loongson2f (ip);
3279
3280   /* Mark instruction labels in mips16 mode.  */
3281   mips16_mark_labels ();
3282
3283   file_ase_mips16 |= mips_opts.mips16;
3284
3285   prev_pinfo = history[0].insn_mo->pinfo;
3286   pinfo = ip->insn_mo->pinfo;
3287
3288   if (address_expr == NULL)
3289     ip->complete_p = 1;
3290   else if (*reloc_type <= BFD_RELOC_UNUSED
3291            && address_expr->X_op == O_constant)
3292     {
3293       unsigned int tmp;
3294
3295       ip->complete_p = 1;
3296       switch (*reloc_type)
3297         {
3298         case BFD_RELOC_32:
3299           ip->insn_opcode |= address_expr->X_add_number;
3300           break;
3301
3302         case BFD_RELOC_MIPS_HIGHEST:
3303           tmp = (address_expr->X_add_number + 0x800080008000ull) >> 48;
3304           ip->insn_opcode |= tmp & 0xffff;
3305           break;
3306
3307         case BFD_RELOC_MIPS_HIGHER:
3308           tmp = (address_expr->X_add_number + 0x80008000ull) >> 32;
3309           ip->insn_opcode |= tmp & 0xffff;
3310           break;
3311
3312         case BFD_RELOC_HI16_S:
3313           tmp = (address_expr->X_add_number + 0x8000) >> 16;
3314           ip->insn_opcode |= tmp & 0xffff;
3315           break;
3316
3317         case BFD_RELOC_HI16:
3318           ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
3319           break;
3320
3321         case BFD_RELOC_UNUSED:
3322         case BFD_RELOC_LO16:
3323         case BFD_RELOC_MIPS_GOT_DISP:
3324           ip->insn_opcode |= address_expr->X_add_number & 0xffff;
3325           break;
3326
3327         case BFD_RELOC_MIPS_JMP:
3328           if ((address_expr->X_add_number & 3) != 0)
3329             as_bad (_("jump to misaligned address (0x%lx)"),
3330                     (unsigned long) address_expr->X_add_number);
3331           ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff;
3332           ip->complete_p = 0;
3333           break;
3334
3335         case BFD_RELOC_MIPS16_JMP:
3336           if ((address_expr->X_add_number & 3) != 0)
3337             as_bad (_("jump to misaligned address (0x%lx)"),
3338                     (unsigned long) address_expr->X_add_number);
3339           ip->insn_opcode |=
3340             (((address_expr->X_add_number & 0x7c0000) << 3)
3341                | ((address_expr->X_add_number & 0xf800000) >> 7)
3342                | ((address_expr->X_add_number & 0x3fffc) >> 2));
3343           ip->complete_p = 0;
3344           break;
3345
3346         case BFD_RELOC_16_PCREL_S2:
3347           if ((address_expr->X_add_number & 3) != 0)
3348             as_bad (_("branch to misaligned address (0x%lx)"),
3349                     (unsigned long) address_expr->X_add_number);
3350           if (!mips_relax_branch)
3351             {
3352               if ((address_expr->X_add_number + 0x20000) & ~0x3ffff)
3353                 as_bad (_("branch address range overflow (0x%lx)"),
3354                         (unsigned long) address_expr->X_add_number);
3355               ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0xffff;
3356             }
3357           ip->complete_p = 0;
3358           break;
3359
3360         default:
3361           internalError ();
3362         }       
3363     }
3364
3365   if (mips_relax.sequence != 2 && !mips_opts.noreorder)
3366     {
3367       /* There are a lot of optimizations we could do that we don't.
3368          In particular, we do not, in general, reorder instructions.
3369          If you use gcc with optimization, it will reorder
3370          instructions and generally do much more optimization then we
3371          do here; repeating all that work in the assembler would only
3372          benefit hand written assembly code, and does not seem worth
3373          it.  */
3374       int nops = (mips_optimize == 0
3375                   ? nops_for_insn (0, history, NULL)
3376                   : nops_for_insn_or_target (0, history, ip));
3377       if (nops > 0)
3378         {
3379           fragS *old_frag;
3380           unsigned long old_frag_offset;
3381           int i;
3382
3383           old_frag = frag_now;
3384           old_frag_offset = frag_now_fix ();
3385
3386           for (i = 0; i < nops; i++)
3387             emit_nop ();
3388
3389           if (listing)
3390             {
3391               listing_prev_line ();
3392               /* We may be at the start of a variant frag.  In case we
3393                  are, make sure there is enough space for the frag
3394                  after the frags created by listing_prev_line.  The
3395                  argument to frag_grow here must be at least as large
3396                  as the argument to all other calls to frag_grow in
3397                  this file.  We don't have to worry about being in the
3398                  middle of a variant frag, because the variants insert
3399                  all needed nop instructions themselves.  */
3400               frag_grow (40);
3401             }
3402
3403           mips_move_labels ();
3404
3405 #ifndef NO_ECOFF_DEBUGGING
3406           if (ECOFF_DEBUGGING)
3407             ecoff_fix_loc (old_frag, old_frag_offset);
3408 #endif
3409         }
3410     }
3411   else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
3412     {
3413       int nops;
3414
3415       /* Work out how many nops in prev_nop_frag are needed by IP,
3416          ignoring hazards generated by the first prev_nop_frag_since
3417          instructions.  */
3418       nops = nops_for_insn_or_target (prev_nop_frag_since, history, ip);
3419       gas_assert (nops <= prev_nop_frag_holds);
3420
3421       /* Enforce NOPS as a minimum.  */
3422       if (nops > prev_nop_frag_required)
3423         prev_nop_frag_required = nops;
3424
3425       if (prev_nop_frag_holds == prev_nop_frag_required)
3426         {
3427           /* Settle for the current number of nops.  Update the history
3428              accordingly (for the benefit of any future .set reorder code).  */
3429           prev_nop_frag = NULL;
3430           insert_into_history (prev_nop_frag_since,
3431                                prev_nop_frag_holds, NOP_INSN);
3432         }
3433       else
3434         {
3435           /* Allow this instruction to replace one of the nops that was
3436              tentatively added to prev_nop_frag.  */
3437           prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
3438           prev_nop_frag_holds--;
3439           prev_nop_frag_since++;
3440         }
3441     }
3442
3443   method = get_append_method (ip);
3444
3445 #ifdef OBJ_ELF
3446   /* The value passed to dwarf2_emit_insn is the distance between
3447      the beginning of the current instruction and the address that
3448      should be recorded in the debug tables.  This is normally the
3449      current address.
3450
3451      For MIPS16 debug info we want to use ISA-encoded addresses,
3452      so we use -1 for an address higher by one than the current one.
3453
3454      If the instruction produced is a branch that we will swap with
3455      the preceding instruction, then we add the displacement by which
3456      the branch will be moved backwards.  This is more appropriate
3457      and for MIPS16 code also prevents a debugger from placing a
3458      breakpoint in the middle of the branch (and corrupting code if
3459      software breakpoints are used).  */
3460   dwarf2_emit_insn ((mips_opts.mips16 ? -1 : 0)
3461                     + (method == APPEND_SWAP ? insn_length (history) : 0));
3462 #endif
3463
3464   if (address_expr
3465       && *reloc_type == BFD_RELOC_16_PCREL_S2
3466       && (pinfo & INSN_UNCOND_BRANCH_DELAY || pinfo & INSN_COND_BRANCH_DELAY
3467           || pinfo & INSN_COND_BRANCH_LIKELY)
3468       && mips_relax_branch
3469       /* Don't try branch relaxation within .set nomacro, or within
3470          .set noat if we use $at for PIC computations.  If it turns
3471          out that the branch was out-of-range, we'll get an error.  */
3472       && !mips_opts.warn_about_macros
3473       && (mips_opts.at || mips_pic == NO_PIC)
3474       /* Don't relax BPOSGE32/64 as they have no complementing branches.  */
3475       && !(ip->insn_mo->membership & (INSN_DSP64 | INSN_DSP))
3476       && !mips_opts.mips16)
3477     {
3478       relaxed_branch = TRUE;
3479       add_relaxed_insn (ip, (relaxed_branch_length
3480                              (NULL, NULL,
3481                               (pinfo & INSN_UNCOND_BRANCH_DELAY) ? -1
3482                               : (pinfo & INSN_COND_BRANCH_LIKELY) ? 1
3483                               : 0)), 4,
3484                         RELAX_BRANCH_ENCODE
3485                         (AT,
3486                          pinfo & INSN_UNCOND_BRANCH_DELAY,
3487                          pinfo & INSN_COND_BRANCH_LIKELY,
3488                          pinfo & INSN_WRITE_GPR_31,
3489                          0),
3490                         address_expr->X_add_symbol,
3491                         address_expr->X_add_number);
3492       *reloc_type = BFD_RELOC_UNUSED;
3493     }
3494   else if (*reloc_type > BFD_RELOC_UNUSED)
3495     {
3496       /* We need to set up a variant frag.  */
3497       gas_assert (mips_opts.mips16 && address_expr != NULL);
3498       add_relaxed_insn (ip, 4, 0,
3499                         RELAX_MIPS16_ENCODE
3500                         (*reloc_type - BFD_RELOC_UNUSED,
3501                          mips16_small, mips16_ext,
3502                          prev_pinfo & INSN_UNCOND_BRANCH_DELAY,
3503                          history[0].mips16_absolute_jump_p),
3504                         make_expr_symbol (address_expr), 0);
3505     }
3506   else if (mips_opts.mips16
3507            && ! ip->use_extend
3508            && *reloc_type != BFD_RELOC_MIPS16_JMP)
3509     {
3510       if ((pinfo & INSN_UNCOND_BRANCH_DELAY) == 0)
3511         /* Make sure there is enough room to swap this instruction with
3512            a following jump instruction.  */
3513         frag_grow (6);
3514       add_fixed_insn (ip);
3515     }
3516   else
3517     {
3518       if (mips_opts.mips16
3519           && mips_opts.noreorder
3520           && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0)
3521         as_warn (_("extended instruction in delay slot"));
3522
3523       if (mips_relax.sequence)
3524         {
3525           /* If we've reached the end of this frag, turn it into a variant
3526              frag and record the information for the instructions we've
3527              written so far.  */
3528           if (frag_room () < 4)
3529             relax_close_frag ();
3530           mips_relax.sizes[mips_relax.sequence - 1] += 4;
3531         }
3532
3533       if (mips_relax.sequence != 2)
3534         mips_macro_warning.sizes[0] += 4;
3535       if (mips_relax.sequence != 1)
3536         mips_macro_warning.sizes[1] += 4;
3537
3538       if (mips_opts.mips16)
3539         {
3540           ip->fixed_p = 1;
3541           ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
3542         }
3543       add_fixed_insn (ip);
3544     }
3545
3546   if (!ip->complete_p && *reloc_type < BFD_RELOC_UNUSED)
3547     {
3548       reloc_howto_type *howto;
3549       int i;
3550
3551       /* In a compound relocation, it is the final (outermost)
3552          operator that determines the relocated field.  */
3553       for (i = 1; i < 3; i++)
3554         if (reloc_type[i] == BFD_RELOC_UNUSED)
3555           break;
3556
3557       howto = bfd_reloc_type_lookup (stdoutput, reloc_type[i - 1]);
3558       if (howto == NULL)
3559         {
3560           /* To reproduce this failure try assembling gas/testsuites/
3561              gas/mips/mips16-intermix.s with a mips-ecoff targeted
3562              assembler.  */
3563           as_bad (_("Unsupported MIPS relocation number %d"), reloc_type[i - 1]);
3564           howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_16);
3565         }
3566           
3567       ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
3568                                  bfd_get_reloc_size (howto),
3569                                  address_expr,
3570                                  reloc_type[0] == BFD_RELOC_16_PCREL_S2,
3571                                  reloc_type[0]);
3572
3573       /* Tag symbols that have a R_MIPS16_26 relocation against them.  */
3574       if (reloc_type[0] == BFD_RELOC_MIPS16_JMP
3575           && ip->fixp[0]->fx_addsy)
3576         *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
3577
3578       /* These relocations can have an addend that won't fit in
3579          4 octets for 64bit assembly.  */
3580       if (HAVE_64BIT_GPRS
3581           && ! howto->partial_inplace
3582           && (reloc_type[0] == BFD_RELOC_16
3583               || reloc_type[0] == BFD_RELOC_32
3584               || reloc_type[0] == BFD_RELOC_MIPS_JMP
3585               || reloc_type[0] == BFD_RELOC_GPREL16
3586               || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
3587               || reloc_type[0] == BFD_RELOC_GPREL32
3588               || reloc_type[0] == BFD_RELOC_64
3589               || reloc_type[0] == BFD_RELOC_CTOR
3590               || reloc_type[0] == BFD_RELOC_MIPS_SUB
3591               || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
3592               || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
3593               || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
3594               || reloc_type[0] == BFD_RELOC_MIPS_REL16
3595               || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
3596               || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
3597               || hi16_reloc_p (reloc_type[0])
3598               || lo16_reloc_p (reloc_type[0])))
3599         ip->fixp[0]->fx_no_overflow = 1;
3600
3601       if (mips_relax.sequence)
3602         {
3603           if (mips_relax.first_fixup == 0)
3604             mips_relax.first_fixup = ip->fixp[0];
3605         }
3606       else if (reloc_needs_lo_p (*reloc_type))
3607         {
3608           struct mips_hi_fixup *hi_fixup;
3609
3610           /* Reuse the last entry if it already has a matching %lo.  */
3611           hi_fixup = mips_hi_fixup_list;
3612           if (hi_fixup == 0
3613               || !fixup_has_matching_lo_p (hi_fixup->fixp))
3614             {
3615               hi_fixup = ((struct mips_hi_fixup *)
3616                           xmalloc (sizeof (struct mips_hi_fixup)));
3617               hi_fixup->next = mips_hi_fixup_list;
3618               mips_hi_fixup_list = hi_fixup;
3619             }
3620           hi_fixup->fixp = ip->fixp[0];
3621           hi_fixup->seg = now_seg;
3622         }
3623
3624       /* Add fixups for the second and third relocations, if given.
3625          Note that the ABI allows the second relocation to be
3626          against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC.  At the
3627          moment we only use RSS_UNDEF, but we could add support
3628          for the others if it ever becomes necessary.  */
3629       for (i = 1; i < 3; i++)
3630         if (reloc_type[i] != BFD_RELOC_UNUSED)
3631           {
3632             ip->fixp[i] = fix_new (ip->frag, ip->where,
3633                                    ip->fixp[0]->fx_size, NULL, 0,
3634                                    FALSE, reloc_type[i]);
3635
3636             /* Use fx_tcbit to mark compound relocs.  */
3637             ip->fixp[0]->fx_tcbit = 1;
3638             ip->fixp[i]->fx_tcbit = 1;
3639           }
3640     }
3641   install_insn (ip);
3642
3643   /* Update the register mask information.  */
3644   mips_gprmask |= gpr_read_mask (ip) | gpr_write_mask (ip);
3645   mips_cprmask[1] |= fpr_read_mask (ip) | fpr_write_mask (ip);
3646
3647   switch (method)
3648     {
3649     case APPEND_ADD:
3650       insert_into_history (0, 1, ip);
3651       break;
3652
3653     case APPEND_ADD_WITH_NOP:
3654       insert_into_history (0, 1, ip);
3655       emit_nop ();
3656       if (mips_relax.sequence)
3657         mips_relax.sizes[mips_relax.sequence - 1] += 4;
3658       break;
3659
3660     case APPEND_ADD_COMPACT:
3661       /* Convert MIPS16 jr/jalr into a "compact" jump.  */
3662       gas_assert (mips_opts.mips16);
3663       ip->insn_opcode |= 0x0080;
3664       find_altered_mips16_opcode (ip);
3665       install_insn (ip);
3666       insert_into_history (0, 1, ip);
3667       break;
3668
3669     case APPEND_SWAP:
3670       {
3671         struct mips_cl_insn delay = history[0];
3672         if (mips_opts.mips16)
3673           {
3674             know (delay.frag == ip->frag);
3675             move_insn (ip, delay.frag, delay.where);
3676             move_insn (&delay, ip->frag, ip->where + insn_length (ip));
3677           }
3678         else if (relaxed_branch)
3679           {
3680             /* Add the delay slot instruction to the end of the
3681                current frag and shrink the fixed part of the
3682                original frag.  If the branch occupies the tail of
3683                the latter, move it backwards to cover the gap.  */
3684             delay.frag->fr_fix -= 4;
3685             if (delay.frag == ip->frag)
3686               move_insn (ip, ip->frag, ip->where - 4);
3687             add_fixed_insn (&delay);
3688           }
3689         else
3690           {
3691             move_insn (&delay, ip->frag, ip->where);
3692             move_insn (ip, history[0].frag, history[0].where);
3693           }
3694         history[0] = *ip;
3695         delay.fixed_p = 1;
3696         insert_into_history (0, 1, &delay);
3697       }
3698       break;
3699     }
3700
3701   /* If we have just completed an unconditional branch, clear the history.  */
3702   if ((history[1].insn_mo->pinfo & INSN_UNCOND_BRANCH_DELAY)
3703       || (mips_opts.mips16
3704           && (history[0].insn_mo->pinfo & MIPS16_INSN_UNCOND_BRANCH)))
3705     mips_no_prev_insn ();
3706
3707   /* We just output an insn, so the next one doesn't have a label.  */
3708   mips_clear_insn_labels ();
3709 }
3710
3711 /* Forget that there was any previous instruction or label.  */
3712
3713 static void
3714 mips_no_prev_insn (void)
3715 {
3716   prev_nop_frag = NULL;
3717   insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
3718   mips_clear_insn_labels ();
3719 }
3720
3721 /* This function must be called before we emit something other than
3722    instructions.  It is like mips_no_prev_insn except that it inserts
3723    any NOPS that might be needed by previous instructions.  */
3724
3725 void
3726 mips_emit_delays (void)
3727 {
3728   if (! mips_opts.noreorder)
3729     {
3730       int nops = nops_for_insn (0, history, NULL);
3731       if (nops > 0)
3732         {
3733           while (nops-- > 0)
3734             add_fixed_insn (NOP_INSN);
3735           mips_move_labels ();
3736         }
3737     }
3738   mips_no_prev_insn ();
3739 }
3740
3741 /* Start a (possibly nested) noreorder block.  */
3742
3743 static void
3744 start_noreorder (void)
3745 {
3746   if (mips_opts.noreorder == 0)
3747     {
3748       unsigned int i;
3749       int nops;
3750
3751       /* None of the instructions before the .set noreorder can be moved.  */
3752       for (i = 0; i < ARRAY_SIZE (history); i++)
3753         history[i].fixed_p = 1;
3754
3755       /* Insert any nops that might be needed between the .set noreorder
3756          block and the previous instructions.  We will later remove any
3757          nops that turn out not to be needed.  */
3758       nops = nops_for_insn (0, history, NULL);
3759       if (nops > 0)
3760         {
3761           if (mips_optimize != 0)
3762             {
3763               /* Record the frag which holds the nop instructions, so
3764                  that we can remove them if we don't need them.  */
3765               frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4);
3766               prev_nop_frag = frag_now;
3767               prev_nop_frag_holds = nops;
3768               prev_nop_frag_required = 0;
3769               prev_nop_frag_since = 0;
3770             }
3771
3772           for (; nops > 0; --nops)
3773             add_fixed_insn (NOP_INSN);
3774
3775           /* Move on to a new frag, so that it is safe to simply
3776              decrease the size of prev_nop_frag.  */
3777           frag_wane (frag_now);
3778           frag_new (0);
3779           mips_move_labels ();
3780         }
3781       mips16_mark_labels ();
3782       mips_clear_insn_labels ();
3783     }
3784   mips_opts.noreorder++;
3785   mips_any_noreorder = 1;
3786 }
3787
3788 /* End a nested noreorder block.  */
3789
3790 static void
3791 end_noreorder (void)
3792 {
3793
3794   mips_opts.noreorder--;
3795   if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
3796     {
3797       /* Commit to inserting prev_nop_frag_required nops and go back to
3798          handling nop insertion the .set reorder way.  */
3799       prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
3800                                 * (mips_opts.mips16 ? 2 : 4));
3801       insert_into_history (prev_nop_frag_since,
3802                            prev_nop_frag_required, NOP_INSN);
3803       prev_nop_frag = NULL;
3804     }
3805 }
3806
3807 /* Set up global variables for the start of a new macro.  */
3808
3809 static void
3810 macro_start (void)
3811 {
3812   memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
3813   mips_macro_warning.delay_slot_p = (mips_opts.noreorder
3814                                      && (history[0].insn_mo->pinfo
3815                                          & (INSN_UNCOND_BRANCH_DELAY
3816                                             | INSN_COND_BRANCH_DELAY
3817                                             | INSN_COND_BRANCH_LIKELY)) != 0);
3818 }
3819
3820 /* Given that a macro is longer than 4 bytes, return the appropriate warning
3821    for it.  Return null if no warning is needed.  SUBTYPE is a bitmask of
3822    RELAX_DELAY_SLOT and RELAX_NOMACRO.  */
3823
3824 static const char *
3825 macro_warning (relax_substateT subtype)
3826 {
3827   if (subtype & RELAX_DELAY_SLOT)
3828     return _("Macro instruction expanded into multiple instructions"
3829              " in a branch delay slot");
3830   else if (subtype & RELAX_NOMACRO)
3831     return _("Macro instruction expanded into multiple instructions");
3832   else
3833     return 0;
3834 }
3835
3836 /* Finish up a macro.  Emit warnings as appropriate.  */
3837
3838 static void
3839 macro_end (void)
3840 {
3841   if (mips_macro_warning.sizes[0] > 4 || mips_macro_warning.sizes[1] > 4)
3842     {
3843       relax_substateT subtype;
3844
3845       /* Set up the relaxation warning flags.  */
3846       subtype = 0;
3847       if (mips_macro_warning.sizes[1] > mips_macro_warning.sizes[0])
3848         subtype |= RELAX_SECOND_LONGER;
3849       if (mips_opts.warn_about_macros)
3850         subtype |= RELAX_NOMACRO;
3851       if (mips_macro_warning.delay_slot_p)
3852         subtype |= RELAX_DELAY_SLOT;
3853
3854       if (mips_macro_warning.sizes[0] > 4 && mips_macro_warning.sizes[1] > 4)
3855         {
3856           /* Either the macro has a single implementation or both
3857              implementations are longer than 4 bytes.  Emit the
3858              warning now.  */
3859           const char *msg = macro_warning (subtype);
3860           if (msg != 0)
3861             as_warn ("%s", msg);
3862         }
3863       else
3864         {
3865           /* One implementation might need a warning but the other
3866              definitely doesn't.  */
3867           mips_macro_warning.first_frag->fr_subtype |= subtype;
3868         }
3869     }
3870 }
3871
3872 /* Read a macro's relocation codes from *ARGS and store them in *R.
3873    The first argument in *ARGS will be either the code for a single
3874    relocation or -1 followed by the three codes that make up a
3875    composite relocation.  */
3876
3877 static void
3878 macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
3879 {
3880   int i, next;
3881
3882   next = va_arg (*args, int);
3883   if (next >= 0)
3884     r[0] = (bfd_reloc_code_real_type) next;
3885   else
3886     for (i = 0; i < 3; i++)
3887       r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
3888 }
3889
3890 /* Build an instruction created by a macro expansion.  This is passed
3891    a pointer to the count of instructions created so far, an
3892    expression, the name of the instruction to build, an operand format
3893    string, and corresponding arguments.  */
3894
3895 static void
3896 macro_build (expressionS *ep, const char *name, const char *fmt, ...)
3897 {
3898   const struct mips_opcode *mo;
3899   struct mips_cl_insn insn;
3900   bfd_reloc_code_real_type r[3];
3901   va_list args;
3902
3903   va_start (args, fmt);
3904
3905   if (mips_opts.mips16)
3906     {
3907       mips16_macro_build (ep, name, fmt, &args);
3908       va_end (args);
3909       return;
3910     }
3911
3912   r[0] = BFD_RELOC_UNUSED;
3913   r[1] = BFD_RELOC_UNUSED;
3914   r[2] = BFD_RELOC_UNUSED;
3915   mo = (struct mips_opcode *) hash_find (op_hash, name);
3916   gas_assert (mo);
3917   gas_assert (strcmp (name, mo->name) == 0);
3918
3919   while (1)
3920     {
3921       /* Search until we get a match for NAME.  It is assumed here that
3922          macros will never generate MDMX, MIPS-3D, or MT instructions.  */
3923       if (strcmp (fmt, mo->args) == 0
3924           && mo->pinfo != INSN_MACRO
3925           && is_opcode_valid (mo))
3926         break;
3927
3928       ++mo;
3929       gas_assert (mo->name);
3930       gas_assert (strcmp (name, mo->name) == 0);
3931     }
3932
3933   create_insn (&insn, mo);
3934   for (;;)
3935     {
3936       switch (*fmt++)
3937         {
3938         case '\0':
3939           break;
3940
3941         case ',':
3942         case '(':
3943         case ')':
3944           continue;
3945
3946         case '+':
3947           switch (*fmt++)
3948             {
3949             case 'A':
3950             case 'E':
3951               INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
3952               continue;
3953
3954             case 'B':
3955             case 'F':
3956               /* Note that in the macro case, these arguments are already
3957                  in MSB form.  (When handling the instruction in the
3958                  non-macro case, these arguments are sizes from which
3959                  MSB values must be calculated.)  */
3960               INSERT_OPERAND (INSMSB, insn, va_arg (args, int));
3961               continue;
3962
3963             case 'C':
3964             case 'G':
3965             case 'H':
3966               /* Note that in the macro case, these arguments are already
3967                  in MSBD form.  (When handling the instruction in the
3968                  non-macro case, these arguments are sizes from which
3969                  MSBD values must be calculated.)  */
3970               INSERT_OPERAND (EXTMSBD, insn, va_arg (args, int));
3971               continue;
3972
3973             case 'Q':
3974               INSERT_OPERAND (SEQI, insn, va_arg (args, int));
3975               continue;
3976
3977             default:
3978               internalError ();
3979             }
3980           continue;
3981
3982         case '2':
3983           INSERT_OPERAND (BP, insn, va_arg (args, int));
3984           continue;
3985
3986         case 't':
3987         case 'w':
3988         case 'E':
3989           INSERT_OPERAND (RT, insn, va_arg (args, int));
3990           continue;
3991
3992         case 'c':
3993           INSERT_OPERAND (CODE, insn, va_arg (args, int));
3994           continue;
3995
3996         case 'T':
3997         case 'W':
3998           INSERT_OPERAND (FT, insn, va_arg (args, int));
3999           continue;
4000
4001         case 'd':
4002         case 'G':
4003         case 'K':
4004           INSERT_OPERAND (RD, insn, va_arg (args, int));
4005           continue;
4006
4007         case 'U':
4008           {
4009             int tmp = va_arg (args, int);
4010
4011             INSERT_OPERAND (RT, insn, tmp);
4012             INSERT_OPERAND (RD, insn, tmp);
4013             continue;
4014           }
4015
4016         case 'V':
4017         case 'S':
4018           INSERT_OPERAND (FS, insn, va_arg (args, int));
4019           continue;
4020
4021         case 'z':
4022           continue;
4023
4024         case '<':
4025           INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
4026           continue;
4027
4028         case 'D':
4029           INSERT_OPERAND (FD, insn, va_arg (args, int));
4030           continue;
4031
4032         case 'B':
4033           INSERT_OPERAND (CODE20, insn, va_arg (args, int));
4034           continue;
4035
4036         case 'J':
4037           INSERT_OPERAND (CODE19, insn, va_arg (args, int));
4038           continue;
4039
4040         case 'q':
4041           INSERT_OPERAND (CODE2, insn, va_arg (args, int));
4042           continue;
4043
4044         case 'b':
4045         case 's':
4046         case 'r':
4047         case 'v':
4048           INSERT_OPERAND (RS, insn, va_arg (args, int));
4049           continue;
4050
4051         case 'i':
4052         case 'j':
4053           macro_read_relocs (&args, r);
4054           gas_assert (*r == BFD_RELOC_GPREL16
4055                       || *r == BFD_RELOC_MIPS_HIGHER
4056                       || *r == BFD_RELOC_HI16_S
4057                       || *r == BFD_RELOC_LO16
4058                       || *r == BFD_RELOC_MIPS_GOT_OFST);
4059           continue;
4060
4061         case 'o':
4062           macro_read_relocs (&args, r);
4063           continue;
4064
4065         case 'u':
4066           macro_read_relocs (&args, r);
4067           gas_assert (ep != NULL
4068                       && (ep->X_op == O_constant
4069                           || (ep->X_op == O_symbol
4070                               && (*r == BFD_RELOC_MIPS_HIGHEST
4071                                   || *r == BFD_RELOC_HI16_S
4072                                   || *r == BFD_RELOC_HI16
4073                                   || *r == BFD_RELOC_GPREL16
4074                                   || *r == BFD_RELOC_MIPS_GOT_HI16
4075                                   || *r == BFD_RELOC_MIPS_CALL_HI16))));
4076           continue;
4077
4078         case 'p':
4079           gas_assert (ep != NULL);
4080
4081           /*
4082            * This allows macro() to pass an immediate expression for
4083            * creating short branches without creating a symbol.
4084            *
4085            * We don't allow branch relaxation for these branches, as
4086            * they should only appear in ".set nomacro" anyway.
4087            */
4088           if (ep->X_op == O_constant)
4089             {
4090               if ((ep->X_add_number & 3) != 0)
4091                 as_bad (_("branch to misaligned address (0x%lx)"),
4092                         (unsigned long) ep->X_add_number);
4093               if ((ep->X_add_number + 0x20000) & ~0x3ffff)
4094                 as_bad (_("branch address range overflow (0x%lx)"),
4095                         (unsigned long) ep->X_add_number);
4096               insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
4097               ep = NULL;
4098             }
4099           else
4100             *r = BFD_RELOC_16_PCREL_S2;
4101           continue;
4102
4103         case 'a':
4104           gas_assert (ep != NULL);
4105           *r = BFD_RELOC_MIPS_JMP;
4106           continue;
4107
4108         case 'C':
4109           INSERT_OPERAND (COPZ, insn, va_arg (args, unsigned long));
4110           continue;
4111
4112         case 'k':
4113           INSERT_OPERAND (CACHE, insn, va_arg (args, unsigned long));
4114           continue;
4115
4116         default:
4117           internalError ();
4118         }
4119       break;
4120     }
4121   va_end (args);
4122   gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
4123
4124   append_insn (&insn, ep, r);
4125 }
4126
4127 static void
4128 mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
4129                     va_list *args)
4130 {
4131   struct mips_opcode *mo;
4132   struct mips_cl_insn insn;
4133   bfd_reloc_code_real_type r[3]
4134     = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
4135
4136   mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
4137   gas_assert (mo);
4138   gas_assert (strcmp (name, mo->name) == 0);
4139
4140   while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
4141     {
4142       ++mo;
4143       gas_assert (mo->name);
4144       gas_assert (strcmp (name, mo->name) == 0);
4145     }
4146
4147   create_insn (&insn, mo);
4148   for (;;)
4149     {
4150       int c;
4151
4152       c = *fmt++;
4153       switch (c)
4154         {
4155         case '\0':
4156           break;
4157
4158         case ',':
4159         case '(':
4160         case ')':
4161           continue;
4162
4163         case 'y':
4164         case 'w':
4165           MIPS16_INSERT_OPERAND (RY, insn, va_arg (*args, int));
4166           continue;
4167
4168         case 'x':
4169         case 'v':
4170           MIPS16_INSERT_OPERAND (RX, insn, va_arg (*args, int));
4171           continue;
4172
4173         case 'z':
4174           MIPS16_INSERT_OPERAND (RZ, insn, va_arg (*args, int));
4175           continue;
4176
4177         case 'Z':
4178           MIPS16_INSERT_OPERAND (MOVE32Z, insn, va_arg (*args, int));
4179           continue;
4180
4181         case '0':
4182         case 'S':
4183         case 'P':
4184         case 'R':
4185           continue;
4186
4187         case 'X':
4188           MIPS16_INSERT_OPERAND (REGR32, insn, va_arg (*args, int));
4189           continue;
4190
4191         case 'Y':
4192           {
4193             int regno;
4194
4195             regno = va_arg (*args, int);
4196             regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
4197             MIPS16_INSERT_OPERAND (REG32R, insn, regno);
4198           }
4199           continue;
4200
4201         case '<':
4202         case '>':
4203         case '4':
4204         case '5':
4205         case 'H':
4206         case 'W':
4207         case 'D':
4208         case 'j':
4209         case '8':
4210         case 'V':
4211         case 'C':
4212         case 'U':
4213         case 'k':
4214         case 'K':
4215         case 'p':
4216         case 'q':
4217           {
4218             gas_assert (ep != NULL);
4219
4220             if (ep->X_op != O_constant)
4221               *r = (int) BFD_RELOC_UNUSED + c;
4222             else
4223               {
4224                 mips16_immed (NULL, 0, c, ep->X_add_number, FALSE, FALSE,
4225                               FALSE, &insn.insn_opcode, &insn.use_extend,
4226                               &insn.extend);
4227                 ep = NULL;
4228                 *r = BFD_RELOC_UNUSED;
4229               }
4230           }
4231           continue;
4232
4233         case '6':
4234           MIPS16_INSERT_OPERAND (IMM6, insn, va_arg (*args, int));
4235           continue;
4236         }
4237
4238       break;
4239     }
4240
4241   gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
4242
4243   append_insn (&insn, ep, r);
4244 }
4245
4246 /*
4247  * Sign-extend 32-bit mode constants that have bit 31 set and all
4248  * higher bits unset.
4249  */
4250 static void
4251 normalize_constant_expr (expressionS *ex)
4252 {
4253   if (ex->X_op == O_constant
4254       && IS_ZEXT_32BIT_NUM (ex->X_add_number))
4255     ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
4256                         - 0x80000000);
4257 }
4258
4259 /*
4260  * Sign-extend 32-bit mode address offsets that have bit 31 set and
4261  * all higher bits unset.
4262  */
4263 static void
4264 normalize_address_expr (expressionS *ex)
4265 {
4266   if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
4267         || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
4268       && IS_ZEXT_32BIT_NUM (ex->X_add_number))
4269     ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
4270                         - 0x80000000);
4271 }
4272
4273 /*
4274  * Generate a "jalr" instruction with a relocation hint to the called
4275  * function.  This occurs in NewABI PIC code.
4276  */
4277 static void
4278 macro_build_jalr (expressionS *ep)
4279 {
4280   char *f = NULL;
4281
4282   if (MIPS_JALR_HINT_P (ep))
4283     {
4284       frag_grow (8);
4285       f = frag_more (0);
4286     }
4287   macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
4288   if (MIPS_JALR_HINT_P (ep))
4289     fix_new_exp (frag_now, f - frag_now->fr_literal,
4290                  4, ep, FALSE, BFD_RELOC_MIPS_JALR);
4291 }
4292
4293 /*
4294  * Generate a "lui" instruction.
4295  */
4296 static void
4297 macro_build_lui (expressionS *ep, int regnum)
4298 {
4299   expressionS high_expr;
4300   const struct mips_opcode *mo;
4301   struct mips_cl_insn insn;
4302   bfd_reloc_code_real_type r[3]
4303     = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
4304   const char *name = "lui";
4305   const char *fmt = "t,u";
4306
4307   gas_assert (! mips_opts.mips16);
4308
4309   high_expr = *ep;
4310
4311   if (high_expr.X_op == O_constant)
4312     {
4313       /* We can compute the instruction now without a relocation entry.  */
4314       high_expr.X_add_number = ((high_expr.X_add_number + 0x8000)
4315                                 >> 16) & 0xffff;
4316       *r = BFD_RELOC_UNUSED;
4317     }
4318   else
4319     {
4320       gas_assert (ep->X_op == O_symbol);
4321       /* _gp_disp is a special case, used from s_cpload.
4322          __gnu_local_gp is used if mips_no_shared.  */
4323       gas_assert (mips_pic == NO_PIC
4324               || (! HAVE_NEWABI
4325                   && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
4326               || (! mips_in_shared
4327                   && strcmp (S_GET_NAME (ep->X_add_symbol),
4328                              "__gnu_local_gp") == 0));
4329       *r = BFD_RELOC_HI16_S;
4330     }
4331
4332   mo = hash_find (op_hash, name);
4333   gas_assert (strcmp (name, mo->name) == 0);
4334   gas_assert (strcmp (fmt, mo->args) == 0);
4335   create_insn (&insn, mo);
4336
4337   insn.insn_opcode = insn.insn_mo->match;
4338   INSERT_OPERAND (RT, insn, regnum);
4339   if (*r == BFD_RELOC_UNUSED)
4340     {
4341       insn.insn_opcode |= high_expr.X_add_number;
4342       append_insn (&insn, NULL, r);
4343     }
4344   else
4345     append_insn (&insn, &high_expr, r);
4346 }
4347
4348 /* Generate a sequence of instructions to do a load or store from a constant
4349    offset off of a base register (breg) into/from a target register (treg),
4350    using AT if necessary.  */
4351 static void
4352 macro_build_ldst_constoffset (expressionS *ep, const char *op,
4353                               int treg, int breg, int dbl)
4354 {
4355   gas_assert (ep->X_op == O_constant);
4356
4357   /* Sign-extending 32-bit constants makes their handling easier.  */
4358   if (!dbl)
4359     normalize_constant_expr (ep);
4360
4361   /* Right now, this routine can only handle signed 32-bit constants.  */
4362   if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
4363     as_warn (_("operand overflow"));
4364
4365   if (IS_SEXT_16BIT_NUM(ep->X_add_number))
4366     {
4367       /* Signed 16-bit offset will fit in the op.  Easy!  */
4368       macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
4369     }
4370   else
4371     {
4372       /* 32-bit offset, need multiple instructions and AT, like:
4373            lui      $tempreg,const_hi       (BFD_RELOC_HI16_S)
4374            addu     $tempreg,$tempreg,$breg
4375            <op>     $treg,const_lo($tempreg)   (BFD_RELOC_LO16)
4376          to handle the complete offset.  */
4377       macro_build_lui (ep, AT);
4378       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
4379       macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
4380
4381       if (!mips_opts.at)
4382         as_bad (_("Macro used $at after \".set noat\""));
4383     }
4384 }
4385
4386 /*                      set_at()
4387  * Generates code to set the $at register to true (one)
4388  * if reg is less than the immediate expression.
4389  */
4390 static void
4391 set_at (int reg, int unsignedp)
4392 {
4393   if (imm_expr.X_op == O_constant
4394       && imm_expr.X_add_number >= -0x8000
4395       && imm_expr.X_add_number < 0x8000)
4396     macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
4397                  AT, reg, BFD_RELOC_LO16);
4398   else
4399     {
4400       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4401       macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
4402     }
4403 }
4404
4405 /* Warn if an expression is not a constant.  */
4406
4407 static void
4408 check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
4409 {
4410   if (ex->X_op == O_big)
4411     as_bad (_("unsupported large constant"));
4412   else if (ex->X_op != O_constant)
4413     as_bad (_("Instruction %s requires absolute expression"),
4414             ip->insn_mo->name);
4415
4416   if (HAVE_32BIT_GPRS)
4417     normalize_constant_expr (ex);
4418 }
4419
4420 /* Count the leading zeroes by performing a binary chop. This is a
4421    bulky bit of source, but performance is a LOT better for the
4422    majority of values than a simple loop to count the bits:
4423        for (lcnt = 0; (lcnt < 32); lcnt++)
4424          if ((v) & (1 << (31 - lcnt)))
4425            break;
4426   However it is not code size friendly, and the gain will drop a bit
4427   on certain cached systems.
4428 */
4429 #define COUNT_TOP_ZEROES(v)             \
4430   (((v) & ~0xffff) == 0                 \
4431    ? ((v) & ~0xff) == 0                 \
4432      ? ((v) & ~0xf) == 0                \
4433        ? ((v) & ~0x3) == 0              \
4434          ? ((v) & ~0x1) == 0            \
4435            ? !(v)                       \
4436              ? 32                       \
4437              : 31                       \
4438            : 30                         \
4439          : ((v) & ~0x7) == 0            \
4440            ? 29                         \
4441            : 28                         \
4442        : ((v) & ~0x3f) == 0             \
4443          ? ((v) & ~0x1f) == 0           \
4444            ? 27                         \
4445            : 26                         \
4446          : ((v) & ~0x7f) == 0           \
4447            ? 25                         \
4448            : 24                         \
4449      : ((v) & ~0xfff) == 0              \
4450        ? ((v) & ~0x3ff) == 0            \
4451          ? ((v) & ~0x1ff) == 0          \
4452            ? 23                         \
4453            : 22                         \
4454          : ((v) & ~0x7ff) == 0          \
4455            ? 21                         \
4456            : 20                         \
4457        : ((v) & ~0x3fff) == 0           \
4458          ? ((v) & ~0x1fff) == 0         \
4459            ? 19                         \
4460            : 18                         \
4461          : ((v) & ~0x7fff) == 0         \
4462            ? 17                         \
4463            : 16                         \
4464    : ((v) & ~0xffffff) == 0             \
4465      ? ((v) & ~0xfffff) == 0            \
4466        ? ((v) & ~0x3ffff) == 0          \
4467          ? ((v) & ~0x1ffff) == 0        \
4468            ? 15                         \
4469            : 14                         \
4470          : ((v) & ~0x7ffff) == 0        \
4471            ? 13                         \
4472            : 12                         \
4473        : ((v) & ~0x3fffff) == 0         \
4474          ? ((v) & ~0x1fffff) == 0       \
4475            ? 11                         \
4476            : 10                         \
4477          : ((v) & ~0x7fffff) == 0       \
4478            ? 9                          \
4479            : 8                          \
4480      : ((v) & ~0xfffffff) == 0          \
4481        ? ((v) & ~0x3ffffff) == 0        \
4482          ? ((v) & ~0x1ffffff) == 0      \
4483            ? 7                          \
4484            : 6                          \
4485          : ((v) & ~0x7ffffff) == 0      \
4486            ? 5                          \
4487            : 4                          \
4488        : ((v) & ~0x3fffffff) == 0       \
4489          ? ((v) & ~0x1fffffff) == 0     \
4490            ? 3                          \
4491            : 2                          \
4492          : ((v) & ~0x7fffffff) == 0     \
4493            ? 1                          \
4494            : 0)
4495
4496 /*                      load_register()
4497  *  This routine generates the least number of instructions necessary to load
4498  *  an absolute expression value into a register.
4499  */
4500 static void
4501 load_register (int reg, expressionS *ep, int dbl)
4502 {
4503   int freg;
4504   expressionS hi32, lo32;
4505
4506   if (ep->X_op != O_big)
4507     {
4508       gas_assert (ep->X_op == O_constant);
4509
4510       /* Sign-extending 32-bit constants makes their handling easier.  */
4511       if (!dbl)
4512         normalize_constant_expr (ep);
4513
4514       if (IS_SEXT_16BIT_NUM (ep->X_add_number))
4515         {
4516           /* We can handle 16 bit signed values with an addiu to
4517              $zero.  No need to ever use daddiu here, since $zero and
4518              the result are always correct in 32 bit mode.  */
4519           macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
4520           return;
4521         }
4522       else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
4523         {
4524           /* We can handle 16 bit unsigned values with an ori to
4525              $zero.  */
4526           macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
4527           return;
4528         }
4529       else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
4530         {
4531           /* 32 bit values require an lui.  */
4532           macro_build (ep, "lui", "t,u", reg, BFD_RELOC_HI16);
4533           if ((ep->X_add_number & 0xffff) != 0)
4534             macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
4535           return;
4536         }
4537     }
4538
4539   /* The value is larger than 32 bits.  */
4540
4541   if (!dbl || HAVE_32BIT_GPRS)
4542     {
4543       char value[32];
4544
4545       sprintf_vma (value, ep->X_add_number);
4546       as_bad (_("Number (0x%s) larger than 32 bits"), value);
4547       macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
4548       return;
4549     }
4550
4551   if (ep->X_op != O_big)
4552     {
4553       hi32 = *ep;
4554       hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
4555       hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
4556       hi32.X_add_number &= 0xffffffff;
4557       lo32 = *ep;
4558       lo32.X_add_number &= 0xffffffff;
4559     }
4560   else
4561     {
4562       gas_assert (ep->X_add_number > 2);
4563       if (ep->X_add_number == 3)
4564         generic_bignum[3] = 0;
4565       else if (ep->X_add_number > 4)
4566         as_bad (_("Number larger than 64 bits"));
4567       lo32.X_op = O_constant;
4568       lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
4569       hi32.X_op = O_constant;
4570       hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
4571     }
4572
4573   if (hi32.X_add_number == 0)
4574     freg = 0;
4575   else
4576     {
4577       int shift, bit;
4578       unsigned long hi, lo;
4579
4580       if (hi32.X_add_number == (offsetT) 0xffffffff)
4581         {
4582           if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
4583             {
4584               macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
4585               return;
4586             }
4587           if (lo32.X_add_number & 0x80000000)
4588             {
4589               macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
4590               if (lo32.X_add_number & 0xffff)
4591                 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
4592               return;
4593             }
4594         }
4595
4596       /* Check for 16bit shifted constant.  We know that hi32 is
4597          non-zero, so start the mask on the first bit of the hi32
4598          value.  */
4599       shift = 17;
4600       do
4601         {
4602           unsigned long himask, lomask;
4603
4604           if (shift < 32)
4605             {
4606               himask = 0xffff >> (32 - shift);
4607               lomask = (0xffff << shift) & 0xffffffff;
4608             }
4609           else
4610             {
4611               himask = 0xffff << (shift - 32);
4612               lomask = 0;
4613             }
4614           if ((hi32.X_add_number & ~(offsetT) himask) == 0
4615               && (lo32.X_add_number & ~(offsetT) lomask) == 0)
4616             {
4617               expressionS tmp;
4618
4619               tmp.X_op = O_constant;
4620               if (shift < 32)
4621                 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
4622                                     | (lo32.X_add_number >> shift));
4623               else
4624                 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
4625               macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
4626               macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", "d,w,<",
4627                            reg, reg, (shift >= 32) ? shift - 32 : shift);
4628               return;
4629             }
4630           ++shift;
4631         }
4632       while (shift <= (64 - 16));
4633
4634       /* Find the bit number of the lowest one bit, and store the
4635          shifted value in hi/lo.  */
4636       hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
4637       lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
4638       if (lo != 0)
4639         {
4640           bit = 0;
4641           while ((lo & 1) == 0)
4642             {
4643               lo >>= 1;
4644               ++bit;
4645             }
4646           lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
4647           hi >>= bit;
4648         }
4649       else
4650         {
4651           bit = 32;
4652           while ((hi & 1) == 0)
4653             {
4654               hi >>= 1;
4655               ++bit;
4656             }
4657           lo = hi;
4658           hi = 0;
4659         }
4660
4661       /* Optimize if the shifted value is a (power of 2) - 1.  */
4662       if ((hi == 0 && ((lo + 1) & lo) == 0)
4663           || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
4664         {
4665           shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
4666           if (shift != 0)
4667             {
4668               expressionS tmp;
4669
4670               /* This instruction will set the register to be all
4671                  ones.  */
4672               tmp.X_op = O_constant;
4673               tmp.X_add_number = (offsetT) -1;
4674               macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
4675               if (bit != 0)
4676                 {
4677                   bit += shift;
4678                   macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", "d,w,<",
4679                                reg, reg, (bit >= 32) ? bit - 32 : bit);
4680                 }
4681               macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", "d,w,<",
4682                            reg, reg, (shift >= 32) ? shift - 32 : shift);
4683               return;
4684             }
4685         }
4686
4687       /* Sign extend hi32 before calling load_register, because we can
4688          generally get better code when we load a sign extended value.  */
4689       if ((hi32.X_add_number & 0x80000000) != 0)
4690         hi32.X_add_number |= ~(offsetT) 0xffffffff;
4691       load_register (reg, &hi32, 0);
4692       freg = reg;
4693     }
4694   if ((lo32.X_add_number & 0xffff0000) == 0)
4695     {
4696       if (freg != 0)
4697         {
4698           macro_build (NULL, "dsll32", "d,w,<", reg, freg, 0);
4699           freg = reg;
4700         }
4701     }
4702   else
4703     {
4704       expressionS mid16;
4705
4706       if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
4707         {
4708           macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
4709           macro_build (NULL, "dsrl32", "d,w,<", reg, reg, 0);
4710           return;
4711         }
4712
4713       if (freg != 0)
4714         {
4715           macro_build (NULL, "dsll", "d,w,<", reg, freg, 16);
4716           freg = reg;
4717         }
4718       mid16 = lo32;
4719       mid16.X_add_number >>= 16;
4720       macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
4721       macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4722       freg = reg;
4723     }
4724   if ((lo32.X_add_number & 0xffff) != 0)
4725     macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
4726 }
4727
4728 static inline void
4729 load_delay_nop (void)
4730 {
4731   if (!gpr_interlocks)
4732     macro_build (NULL, "nop", "");
4733 }
4734
4735 /* Load an address into a register.  */
4736
4737 static void
4738 load_address (int reg, expressionS *ep, int *used_at)
4739 {
4740   if (ep->X_op != O_constant
4741       && ep->X_op != O_symbol)
4742     {
4743       as_bad (_("expression too complex"));
4744       ep->X_op = O_constant;
4745     }
4746
4747   if (ep->X_op == O_constant)
4748     {
4749       load_register (reg, ep, HAVE_64BIT_ADDRESSES);
4750       return;
4751     }
4752
4753   if (mips_pic == NO_PIC)
4754     {
4755       /* If this is a reference to a GP relative symbol, we want
4756            addiu        $reg,$gp,<sym>          (BFD_RELOC_GPREL16)
4757          Otherwise we want
4758            lui          $reg,<sym>              (BFD_RELOC_HI16_S)
4759            addiu        $reg,$reg,<sym>         (BFD_RELOC_LO16)
4760          If we have an addend, we always use the latter form.
4761
4762          With 64bit address space and a usable $at we want
4763            lui          $reg,<sym>              (BFD_RELOC_MIPS_HIGHEST)
4764            lui          $at,<sym>               (BFD_RELOC_HI16_S)
4765            daddiu       $reg,<sym>              (BFD_RELOC_MIPS_HIGHER)
4766            daddiu       $at,<sym>               (BFD_RELOC_LO16)
4767            dsll32       $reg,0
4768            daddu        $reg,$reg,$at
4769
4770          If $at is already in use, we use a path which is suboptimal
4771          on superscalar processors.
4772            lui          $reg,<sym>              (BFD_RELOC_MIPS_HIGHEST)
4773            daddiu       $reg,<sym>              (BFD_RELOC_MIPS_HIGHER)
4774            dsll         $reg,16
4775            daddiu       $reg,<sym>              (BFD_RELOC_HI16_S)
4776            dsll         $reg,16
4777            daddiu       $reg,<sym>              (BFD_RELOC_LO16)
4778
4779          For GP relative symbols in 64bit address space we can use
4780          the same sequence as in 32bit address space.  */
4781       if (HAVE_64BIT_SYMBOLS)
4782         {
4783           if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
4784               && !nopic_need_relax (ep->X_add_symbol, 1))
4785             {
4786               relax_start (ep->X_add_symbol);
4787               macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
4788                            mips_gp_register, BFD_RELOC_GPREL16);
4789               relax_switch ();
4790             }
4791
4792           if (*used_at == 0 && mips_opts.at)
4793             {
4794               macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
4795               macro_build (ep, "lui", "t,u", AT, BFD_RELOC_HI16_S);
4796               macro_build (ep, "daddiu", "t,r,j", reg, reg,
4797                            BFD_RELOC_MIPS_HIGHER);
4798               macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
4799               macro_build (NULL, "dsll32", "d,w,<", reg, reg, 0);
4800               macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
4801               *used_at = 1;
4802             }
4803           else
4804             {
4805               macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
4806               macro_build (ep, "daddiu", "t,r,j", reg, reg,
4807                            BFD_RELOC_MIPS_HIGHER);
4808               macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4809               macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
4810               macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4811               macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
4812             }
4813
4814           if (mips_relax.sequence)
4815             relax_end ();
4816         }
4817       else
4818         {
4819           if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
4820               && !nopic_need_relax (ep->X_add_symbol, 1))
4821             {
4822               relax_start (ep->X_add_symbol);
4823               macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
4824                            mips_gp_register, BFD_RELOC_GPREL16);
4825               relax_switch ();
4826             }
4827           macro_build_lui (ep, reg);
4828           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
4829                        reg, reg, BFD_RELOC_LO16);
4830           if (mips_relax.sequence)
4831             relax_end ();
4832         }
4833     }
4834   else if (!mips_big_got)
4835     {
4836       expressionS ex;
4837
4838       /* If this is a reference to an external symbol, we want
4839            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT16)
4840          Otherwise we want
4841            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT16)
4842            nop
4843            addiu        $reg,$reg,<sym>         (BFD_RELOC_LO16)
4844          If there is a constant, it must be added in after.
4845
4846          If we have NewABI, we want
4847            lw           $reg,<sym+cst>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
4848          unless we're referencing a global symbol with a non-zero
4849          offset, in which case cst must be added separately.  */
4850       if (HAVE_NEWABI)
4851         {
4852           if (ep->X_add_number)
4853             {
4854               ex.X_add_number = ep->X_add_number;
4855               ep->X_add_number = 0;
4856               relax_start (ep->X_add_symbol);
4857               macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4858                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4859               if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4860                 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4861               ex.X_op = O_constant;
4862               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
4863                            reg, reg, BFD_RELOC_LO16);
4864               ep->X_add_number = ex.X_add_number;
4865               relax_switch ();
4866             }
4867           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4868                        BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4869           if (mips_relax.sequence)
4870             relax_end ();
4871         }
4872       else
4873         {
4874           ex.X_add_number = ep->X_add_number;
4875           ep->X_add_number = 0;
4876           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4877                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
4878           load_delay_nop ();
4879           relax_start (ep->X_add_symbol);
4880           relax_switch ();
4881           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4882                        BFD_RELOC_LO16);
4883           relax_end ();
4884
4885           if (ex.X_add_number != 0)
4886             {
4887               if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4888                 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4889               ex.X_op = O_constant;
4890               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
4891                            reg, reg, BFD_RELOC_LO16);
4892             }
4893         }
4894     }
4895   else if (mips_big_got)
4896     {
4897       expressionS ex;
4898
4899       /* This is the large GOT case.  If this is a reference to an
4900          external symbol, we want
4901            lui          $reg,<sym>              (BFD_RELOC_MIPS_GOT_HI16)
4902            addu         $reg,$reg,$gp
4903            lw           $reg,<sym>($reg)        (BFD_RELOC_MIPS_GOT_LO16)
4904
4905          Otherwise, for a reference to a local symbol in old ABI, we want
4906            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT16)
4907            nop
4908            addiu        $reg,$reg,<sym>         (BFD_RELOC_LO16)
4909          If there is a constant, it must be added in after.
4910
4911          In the NewABI, for local symbols, with or without offsets, we want:
4912            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT_PAGE)
4913            addiu        $reg,$reg,<sym>         (BFD_RELOC_MIPS_GOT_OFST)
4914       */
4915       if (HAVE_NEWABI)
4916         {
4917           ex.X_add_number = ep->X_add_number;
4918           ep->X_add_number = 0;
4919           relax_start (ep->X_add_symbol);
4920           macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
4921           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
4922                        reg, reg, mips_gp_register);
4923           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
4924                        reg, BFD_RELOC_MIPS_GOT_LO16, reg);
4925           if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4926             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4927           else if (ex.X_add_number)
4928             {
4929               ex.X_op = O_constant;
4930               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4931                            BFD_RELOC_LO16);
4932             }
4933
4934           ep->X_add_number = ex.X_add_number;
4935           relax_switch ();
4936           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4937                        BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
4938           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4939                        BFD_RELOC_MIPS_GOT_OFST);
4940           relax_end ();
4941         }
4942       else
4943         {
4944           ex.X_add_number = ep->X_add_number;
4945           ep->X_add_number = 0;
4946           relax_start (ep->X_add_symbol);
4947           macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
4948           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
4949                        reg, reg, mips_gp_register);
4950           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
4951                        reg, BFD_RELOC_MIPS_GOT_LO16, reg);
4952           relax_switch ();
4953           if (reg_needs_delay (mips_gp_register))
4954             {
4955               /* We need a nop before loading from $gp.  This special
4956                  check is required because the lui which starts the main
4957                  instruction stream does not refer to $gp, and so will not
4958                  insert the nop which may be required.  */
4959               macro_build (NULL, "nop", "");
4960             }
4961           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4962                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
4963           load_delay_nop ();
4964           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4965                        BFD_RELOC_LO16);
4966           relax_end ();
4967
4968           if (ex.X_add_number != 0)
4969             {
4970               if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4971                 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4972               ex.X_op = O_constant;
4973               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4974                            BFD_RELOC_LO16);
4975             }
4976         }
4977     }
4978   else
4979     abort ();
4980
4981   if (!mips_opts.at && *used_at == 1)
4982     as_bad (_("Macro used $at after \".set noat\""));
4983 }
4984
4985 /* Move the contents of register SOURCE into register DEST.  */
4986
4987 static void
4988 move_register (int dest, int source)
4989 {
4990   macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
4991                dest, source, 0);
4992 }
4993
4994 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
4995    LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
4996    The two alternatives are:
4997
4998    Global symbol                Local sybmol
4999    -------------                ------------
5000    lw DEST,%got(SYMBOL)         lw DEST,%got(SYMBOL + OFFSET)
5001    ...                          ...
5002    addiu DEST,DEST,OFFSET       addiu DEST,DEST,%lo(SYMBOL + OFFSET)
5003
5004    load_got_offset emits the first instruction and add_got_offset
5005    emits the second for a 16-bit offset or add_got_offset_hilo emits
5006    a sequence to add a 32-bit offset using a scratch register.  */
5007
5008 static void
5009 load_got_offset (int dest, expressionS *local)
5010 {
5011   expressionS global;
5012
5013   global = *local;
5014   global.X_add_number = 0;
5015
5016   relax_start (local->X_add_symbol);
5017   macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
5018                BFD_RELOC_MIPS_GOT16, mips_gp_register);
5019   relax_switch ();
5020   macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
5021                BFD_RELOC_MIPS_GOT16, mips_gp_register);
5022   relax_end ();
5023 }
5024
5025 static void
5026 add_got_offset (int dest, expressionS *local)
5027 {
5028   expressionS global;
5029
5030   global.X_op = O_constant;
5031   global.X_op_symbol = NULL;
5032   global.X_add_symbol = NULL;
5033   global.X_add_number = local->X_add_number;
5034
5035   relax_start (local->X_add_symbol);
5036   macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
5037                dest, dest, BFD_RELOC_LO16);
5038   relax_switch ();
5039   macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
5040   relax_end ();
5041 }
5042
5043 static void
5044 add_got_offset_hilo (int dest, expressionS *local, int tmp)
5045 {
5046   expressionS global;
5047   int hold_mips_optimize;
5048
5049   global.X_op = O_constant;
5050   global.X_op_symbol = NULL;
5051   global.X_add_symbol = NULL;
5052   global.X_add_number = local->X_add_number;
5053
5054   relax_start (local->X_add_symbol);
5055   load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
5056   relax_switch ();
5057   /* Set mips_optimize around the lui instruction to avoid
5058      inserting an unnecessary nop after the lw.  */
5059   hold_mips_optimize = mips_optimize;
5060   mips_optimize = 2;
5061   macro_build_lui (&global, tmp);
5062   mips_optimize = hold_mips_optimize;
5063   macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
5064   relax_end ();
5065
5066   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
5067 }
5068
5069 /*
5070  *                      Build macros
5071  *   This routine implements the seemingly endless macro or synthesized
5072  * instructions and addressing modes in the mips assembly language. Many
5073  * of these macros are simple and are similar to each other. These could
5074  * probably be handled by some kind of table or grammar approach instead of
5075  * this verbose method. Others are not simple macros but are more like
5076  * optimizing code generation.
5077  *   One interesting optimization is when several store macros appear
5078  * consecutively that would load AT with the upper half of the same address.
5079  * The ensuing load upper instructions are ommited. This implies some kind
5080  * of global optimization. We currently only optimize within a single macro.
5081  *   For many of the load and store macros if the address is specified as a
5082  * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
5083  * first load register 'at' with zero and use it as the base register. The
5084  * mips assembler simply uses register $zero. Just one tiny optimization
5085  * we're missing.
5086  */
5087 static void
5088 macro (struct mips_cl_insn *ip)
5089 {
5090   unsigned int treg, sreg, dreg, breg;
5091   unsigned int tempreg;
5092   int mask;
5093   int used_at = 0;
5094   expressionS expr1;
5095   const char *s;
5096   const char *s2;
5097   const char *fmt;
5098   int likely = 0;
5099   int dbl = 0;
5100   int coproc = 0;
5101   int lr = 0;
5102   int imm = 0;
5103   int call = 0;
5104   int off;
5105   offsetT maxnum;
5106   bfd_reloc_code_real_type r;
5107   int hold_mips_optimize;
5108
5109   gas_assert (! mips_opts.mips16);
5110
5111   treg = EXTRACT_OPERAND (RT, *ip);
5112   dreg = EXTRACT_OPERAND (RD, *ip);
5113   sreg = breg = EXTRACT_OPERAND (RS, *ip);
5114   mask = ip->insn_mo->mask;
5115
5116   expr1.X_op = O_constant;
5117   expr1.X_op_symbol = NULL;
5118   expr1.X_add_symbol = NULL;
5119   expr1.X_add_number = 1;
5120
5121   switch (mask)
5122     {
5123     case M_DABS:
5124       dbl = 1;
5125     case M_ABS:
5126       /* bgez $a0,.+12
5127          move v0,$a0
5128          sub v0,$zero,$a0
5129          */
5130
5131       start_noreorder ();
5132
5133       expr1.X_add_number = 8;
5134       macro_build (&expr1, "bgez", "s,p", sreg);
5135       if (dreg == sreg)
5136         macro_build (NULL, "nop", "");
5137       else
5138         move_register (dreg, sreg);
5139       macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
5140
5141       end_noreorder ();
5142       break;
5143
5144     case M_ADD_I:
5145       s = "addi";
5146       s2 = "add";
5147       goto do_addi;
5148     case M_ADDU_I:
5149       s = "addiu";
5150       s2 = "addu";
5151       goto do_addi;
5152     case M_DADD_I:
5153       dbl = 1;
5154       s = "daddi";
5155       s2 = "dadd";
5156       goto do_addi;
5157     case M_DADDU_I:
5158       dbl = 1;
5159       s = "daddiu";
5160       s2 = "daddu";
5161     do_addi:
5162       if (imm_expr.X_op == O_constant
5163           && imm_expr.X_add_number >= -0x8000
5164           && imm_expr.X_add_number < 0x8000)
5165         {
5166           macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
5167           break;
5168         }
5169       used_at = 1;
5170       load_register (AT, &imm_expr, dbl);
5171       macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
5172       break;
5173
5174     case M_AND_I:
5175       s = "andi";
5176       s2 = "and";
5177       goto do_bit;
5178     case M_OR_I:
5179       s = "ori";
5180       s2 = "or";
5181       goto do_bit;
5182     case M_NOR_I:
5183       s = "";
5184       s2 = "nor";
5185       goto do_bit;
5186     case M_XOR_I:
5187       s = "xori";
5188       s2 = "xor";
5189     do_bit:
5190       if (imm_expr.X_op == O_constant
5191           && imm_expr.X_add_number >= 0
5192           && imm_expr.X_add_number < 0x10000)
5193         {
5194           if (mask != M_NOR_I)
5195             macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16);
5196           else
5197             {
5198               macro_build (&imm_expr, "ori", "t,r,i",
5199                            treg, sreg, BFD_RELOC_LO16);
5200               macro_build (NULL, "nor", "d,v,t", treg, treg, 0);
5201             }
5202           break;
5203         }
5204
5205       used_at = 1;
5206       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
5207       macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
5208       break;
5209
5210     case M_BALIGN:
5211       switch (imm_expr.X_add_number)
5212         {
5213         case 0:
5214           macro_build (NULL, "nop", "");
5215           break;
5216         case 2:
5217           macro_build (NULL, "packrl.ph", "d,s,t", treg, treg, sreg);
5218           break;
5219         default:
5220           macro_build (NULL, "balign", "t,s,2", treg, sreg,
5221                        (int) imm_expr.X_add_number);
5222           break;
5223         }
5224       break;
5225
5226     case M_BEQ_I:
5227       s = "beq";
5228       goto beq_i;
5229     case M_BEQL_I:
5230       s = "beql";
5231       likely = 1;
5232       goto beq_i;
5233     case M_BNE_I:
5234       s = "bne";
5235       goto beq_i;
5236     case M_BNEL_I:
5237       s = "bnel";
5238       likely = 1;
5239     beq_i:
5240       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5241         {
5242           macro_build (&offset_expr, s, "s,t,p", sreg, ZERO);
5243           break;
5244         }
5245       used_at = 1;
5246       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
5247       macro_build (&offset_expr, s, "s,t,p", sreg, AT);
5248       break;
5249
5250     case M_BGEL:
5251       likely = 1;
5252     case M_BGE:
5253       if (treg == 0)
5254         {
5255           macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
5256           break;
5257         }
5258       if (sreg == 0)
5259         {
5260           macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", treg);
5261           break;
5262         }
5263       used_at = 1;
5264       macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
5265       macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
5266       break;
5267
5268     case M_BGTL_I:
5269       likely = 1;
5270     case M_BGT_I:
5271       /* Check for > max integer.  */
5272       maxnum = 0x7fffffff;
5273       if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
5274         {
5275           maxnum <<= 16;
5276           maxnum |= 0xffff;
5277           maxnum <<= 16;
5278           maxnum |= 0xffff;
5279         }
5280       if (imm_expr.X_op == O_constant
5281           && imm_expr.X_add_number >= maxnum
5282           && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
5283         {
5284         do_false:
5285           /* Result is always false.  */
5286           if (! likely)
5287             macro_build (NULL, "nop", "");
5288           else
5289             macro_build (&offset_expr, "bnel", "s,t,p", ZERO, ZERO);
5290           break;
5291         }
5292       if (imm_expr.X_op != O_constant)
5293         as_bad (_("Unsupported large constant"));
5294       ++imm_expr.X_add_number;
5295       /* FALLTHROUGH */
5296     case M_BGE_I:
5297     case M_BGEL_I:
5298       if (mask == M_BGEL_I)
5299         likely = 1;
5300       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5301         {
5302           macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
5303           break;
5304         }
5305       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5306         {
5307           macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
5308           break;
5309         }
5310       maxnum = 0x7fffffff;
5311       if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
5312         {
5313           maxnum <<= 16;
5314           maxnum |= 0xffff;
5315           maxnum <<= 16;
5316           maxnum |= 0xffff;
5317         }
5318       maxnum = - maxnum - 1;
5319       if (imm_expr.X_op == O_constant
5320           && imm_expr.X_add_number <= maxnum
5321           && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
5322         {
5323         do_true:
5324           /* result is always true */
5325           as_warn (_("Branch %s is always true"), ip->insn_mo->name);
5326           macro_build (&offset_expr, "b", "p");
5327           break;
5328         }
5329       used_at = 1;
5330       set_at (sreg, 0);
5331       macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
5332       break;
5333
5334     case M_BGEUL:
5335       likely = 1;
5336     case M_BGEU:
5337       if (treg == 0)
5338         goto do_true;
5339       if (sreg == 0)
5340         {
5341           macro_build (&offset_expr, likely ? "beql" : "beq",
5342                        "s,t,p", ZERO, treg);
5343           break;
5344         }
5345       used_at = 1;
5346       macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
5347       macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
5348       break;
5349
5350     case M_BGTUL_I:
5351       likely = 1;
5352     case M_BGTU_I:
5353       if (sreg == 0
5354           || (HAVE_32BIT_GPRS
5355               && imm_expr.X_op == O_constant
5356               && imm_expr.X_add_number == -1))
5357         goto do_false;
5358       if (imm_expr.X_op != O_constant)
5359         as_bad (_("Unsupported large constant"));
5360       ++imm_expr.X_add_number;
5361       /* FALLTHROUGH */
5362     case M_BGEU_I:
5363     case M_BGEUL_I:
5364       if (mask == M_BGEUL_I)
5365         likely = 1;
5366       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5367         goto do_true;
5368       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5369         {
5370           macro_build (&offset_expr, likely ? "bnel" : "bne",
5371                        "s,t,p", sreg, ZERO);
5372           break;
5373         }
5374       used_at = 1;
5375       set_at (sreg, 1);
5376       macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
5377       break;
5378
5379     case M_BGTL:
5380       likely = 1;
5381     case M_BGT:
5382       if (treg == 0)
5383         {
5384           macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
5385           break;
5386         }
5387       if (sreg == 0)
5388         {
5389           macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", treg);
5390           break;
5391         }
5392       used_at = 1;
5393       macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
5394       macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
5395       break;
5396
5397     case M_BGTUL:
5398       likely = 1;
5399     case M_BGTU:
5400       if (treg == 0)
5401         {
5402           macro_build (&offset_expr, likely ? "bnel" : "bne",
5403                        "s,t,p", sreg, ZERO);
5404           break;
5405         }
5406       if (sreg == 0)
5407         goto do_false;
5408       used_at = 1;
5409       macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
5410       macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
5411       break;
5412
5413     case M_BLEL:
5414       likely = 1;
5415     case M_BLE:
5416       if (treg == 0)
5417         {
5418           macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
5419           break;
5420         }
5421       if (sreg == 0)
5422         {
5423           macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", treg);
5424           break;
5425         }
5426       used_at = 1;
5427       macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
5428       macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
5429       break;
5430
5431     case M_BLEL_I:
5432       likely = 1;
5433     case M_BLE_I:
5434       maxnum = 0x7fffffff;
5435       if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
5436         {
5437           maxnum <<= 16;
5438           maxnum |= 0xffff;
5439           maxnum <<= 16;
5440           maxnum |= 0xffff;
5441         }
5442       if (imm_expr.X_op == O_constant
5443           && imm_expr.X_add_number >= maxnum
5444           && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
5445         goto do_true;
5446       if (imm_expr.X_op != O_constant)
5447         as_bad (_("Unsupported large constant"));
5448       ++imm_expr.X_add_number;
5449       /* FALLTHROUGH */
5450     case M_BLT_I:
5451     case M_BLTL_I:
5452       if (mask == M_BLTL_I)
5453         likely = 1;
5454       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5455         {
5456           macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
5457           break;
5458         }
5459       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5460         {
5461           macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
5462           break;
5463         }
5464       used_at = 1;
5465       set_at (sreg, 0);
5466       macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
5467       break;
5468
5469     case M_BLEUL:
5470       likely = 1;
5471     case M_BLEU:
5472       if (treg == 0)
5473         {
5474           macro_build (&offset_expr, likely ? "beql" : "beq",
5475                        "s,t,p", sreg, ZERO);
5476           break;
5477         }
5478       if (sreg == 0)
5479         goto do_true;
5480       used_at = 1;
5481       macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
5482       macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
5483       break;
5484
5485     case M_BLEUL_I:
5486       likely = 1;
5487     case M_BLEU_I:
5488       if (sreg == 0
5489           || (HAVE_32BIT_GPRS
5490               && imm_expr.X_op == O_constant
5491               && imm_expr.X_add_number == -1))
5492         goto do_true;
5493       if (imm_expr.X_op != O_constant)
5494         as_bad (_("Unsupported large constant"));
5495       ++imm_expr.X_add_number;
5496       /* FALLTHROUGH */
5497     case M_BLTU_I:
5498     case M_BLTUL_I:
5499       if (mask == M_BLTUL_I)
5500         likely = 1;
5501       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5502         goto do_false;
5503       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5504         {
5505           macro_build (&offset_expr, likely ? "beql" : "beq",
5506                        "s,t,p", sreg, ZERO);
5507           break;
5508         }
5509       used_at = 1;
5510       set_at (sreg, 1);
5511       macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
5512       break;
5513
5514     case M_BLTL:
5515       likely = 1;
5516     case M_BLT:
5517       if (treg == 0)
5518         {
5519           macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
5520           break;
5521         }
5522       if (sreg == 0)
5523         {
5524           macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", treg);
5525           break;
5526         }
5527       used_at = 1;
5528       macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
5529       macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
5530       break;
5531
5532     case M_BLTUL:
5533       likely = 1;
5534     case M_BLTU:
5535       if (treg == 0)
5536         goto do_false;
5537       if (sreg == 0)
5538         {
5539           macro_build (&offset_expr, likely ? "bnel" : "bne",
5540                        "s,t,p", ZERO, treg);
5541           break;
5542         }
5543       used_at = 1;
5544       macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
5545       macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
5546       break;
5547
5548     case M_DEXT:
5549       {
5550         /* Use unsigned arithmetic.  */
5551         addressT pos;
5552         addressT size;
5553
5554         if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
5555           {
5556             as_bad (_("Unsupported large constant"));
5557             pos = size = 1;
5558           }
5559         else
5560           {
5561             pos = imm_expr.X_add_number;
5562             size = imm2_expr.X_add_number;
5563           }
5564
5565         if (pos > 63)
5566           {
5567             as_bad (_("Improper position (%lu)"), (unsigned long) pos);
5568             pos = 1;
5569           }
5570         if (size == 0 || size > 64 || (pos + size - 1) > 63)
5571           {
5572             as_bad (_("Improper extract size (%lu, position %lu)"),
5573                     (unsigned long) size, (unsigned long) pos);
5574             size = 1;
5575           }
5576
5577         if (size <= 32 && pos < 32)
5578           {
5579             s = "dext";
5580             fmt = "t,r,+A,+C";
5581           }
5582         else if (size <= 32)
5583           {
5584             s = "dextu";
5585             fmt = "t,r,+E,+H";
5586           }
5587         else
5588           {
5589             s = "dextm";
5590             fmt = "t,r,+A,+G";
5591           }
5592         macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
5593                      (int) (size - 1));
5594       }
5595       break;
5596
5597     case M_DINS:
5598       {
5599         /* Use unsigned arithmetic.  */
5600         addressT pos;
5601         addressT size;
5602
5603         if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
5604           {
5605             as_bad (_("Unsupported large constant"));
5606             pos = size = 1;
5607           }
5608         else
5609           {
5610             pos = imm_expr.X_add_number;
5611             size = imm2_expr.X_add_number;
5612           }
5613
5614         if (pos > 63)
5615           {
5616             as_bad (_("Improper position (%lu)"), (unsigned long) pos);
5617             pos = 1;
5618           }
5619         if (size == 0 || size > 64 || (pos + size - 1) > 63)
5620           {
5621             as_bad (_("Improper insert size (%lu, position %lu)"),
5622                     (unsigned long) size, (unsigned long) pos);
5623             size = 1;
5624           }
5625
5626         if (pos < 32 && (pos + size - 1) < 32)
5627           {
5628             s = "dins";
5629             fmt = "t,r,+A,+B";
5630           }
5631         else if (pos >= 32)
5632           {
5633             s = "dinsu";
5634             fmt = "t,r,+E,+F";
5635           }
5636         else
5637           {
5638             s = "dinsm";
5639             fmt = "t,r,+A,+F";
5640           }
5641         macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
5642                      (int) (pos + size - 1));
5643       }
5644       break;
5645
5646     case M_DDIV_3:
5647       dbl = 1;
5648     case M_DIV_3:
5649       s = "mflo";
5650       goto do_div3;
5651     case M_DREM_3:
5652       dbl = 1;
5653     case M_REM_3:
5654       s = "mfhi";
5655     do_div3:
5656       if (treg == 0)
5657         {
5658           as_warn (_("Divide by zero."));
5659           if (mips_trap)
5660             macro_build (NULL, "teq", "s,t,q", ZERO, ZERO, 7);
5661           else
5662             macro_build (NULL, "break", "c", 7);
5663           break;
5664         }
5665
5666       start_noreorder ();
5667       if (mips_trap)
5668         {
5669           macro_build (NULL, "teq", "s,t,q", treg, ZERO, 7);
5670           macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
5671         }
5672       else
5673         {
5674           expr1.X_add_number = 8;
5675           macro_build (&expr1, "bne", "s,t,p", treg, ZERO);
5676           macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
5677           macro_build (NULL, "break", "c", 7);
5678         }
5679       expr1.X_add_number = -1;
5680       used_at = 1;
5681       load_register (AT, &expr1, dbl);
5682       expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
5683       macro_build (&expr1, "bne", "s,t,p", treg, AT);
5684       if (dbl)
5685         {
5686           expr1.X_add_number = 1;
5687           load_register (AT, &expr1, dbl);
5688           macro_build (NULL, "dsll32", "d,w,<", AT, AT, 31);
5689         }
5690       else
5691         {
5692           expr1.X_add_number = 0x80000000;
5693           macro_build (&expr1, "lui", "t,u", AT, BFD_RELOC_HI16);
5694         }
5695       if (mips_trap)
5696         {
5697           macro_build (NULL, "teq", "s,t,q", sreg, AT, 6);
5698           /* We want to close the noreorder block as soon as possible, so
5699              that later insns are available for delay slot filling.  */
5700           end_noreorder ();
5701         }
5702       else
5703         {
5704           expr1.X_add_number = 8;
5705           macro_build (&expr1, "bne", "s,t,p", sreg, AT);
5706           macro_build (NULL, "nop", "");
5707
5708           /* We want to close the noreorder block as soon as possible, so
5709              that later insns are available for delay slot filling.  */
5710           end_noreorder ();
5711
5712           macro_build (NULL, "break", "c", 6);
5713         }
5714       macro_build (NULL, s, "d", dreg);
5715       break;
5716
5717     case M_DIV_3I:
5718       s = "div";
5719       s2 = "mflo";
5720       goto do_divi;
5721     case M_DIVU_3I:
5722       s = "divu";
5723       s2 = "mflo";
5724       goto do_divi;
5725     case M_REM_3I:
5726       s = "div";
5727       s2 = "mfhi";
5728       goto do_divi;
5729     case M_REMU_3I:
5730       s = "divu";
5731       s2 = "mfhi";
5732       goto do_divi;
5733     case M_DDIV_3I:
5734       dbl = 1;
5735       s = "ddiv";
5736       s2 = "mflo";
5737       goto do_divi;
5738     case M_DDIVU_3I:
5739       dbl = 1;
5740       s = "ddivu";
5741       s2 = "mflo";
5742       goto do_divi;
5743     case M_DREM_3I:
5744       dbl = 1;
5745       s = "ddiv";
5746       s2 = "mfhi";
5747       goto do_divi;
5748     case M_DREMU_3I:
5749       dbl = 1;
5750       s = "ddivu";
5751       s2 = "mfhi";
5752     do_divi:
5753       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5754         {
5755           as_warn (_("Divide by zero."));
5756           if (mips_trap)
5757             macro_build (NULL, "teq", "s,t,q", ZERO, ZERO, 7);
5758           else
5759             macro_build (NULL, "break", "c", 7);
5760           break;
5761         }
5762       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5763         {
5764           if (strcmp (s2, "mflo") == 0)
5765             move_register (dreg, sreg);
5766           else
5767             move_register (dreg, ZERO);
5768           break;
5769         }
5770       if (imm_expr.X_op == O_constant
5771           && imm_expr.X_add_number == -1
5772           && s[strlen (s) - 1] != 'u')
5773         {
5774           if (strcmp (s2, "mflo") == 0)
5775             {
5776               macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
5777             }
5778           else
5779             move_register (dreg, ZERO);
5780           break;
5781         }
5782
5783       used_at = 1;
5784       load_register (AT, &imm_expr, dbl);
5785       macro_build (NULL, s, "z,s,t", sreg, AT);
5786       macro_build (NULL, s2, "d", dreg);
5787       break;
5788
5789     case M_DIVU_3:
5790       s = "divu";
5791       s2 = "mflo";
5792       goto do_divu3;
5793     case M_REMU_3:
5794       s = "divu";
5795       s2 = "mfhi";
5796       goto do_divu3;
5797     case M_DDIVU_3:
5798       s = "ddivu";
5799       s2 = "mflo";
5800       goto do_divu3;
5801     case M_DREMU_3:
5802       s = "ddivu";
5803       s2 = "mfhi";
5804     do_divu3:
5805       start_noreorder ();
5806       if (mips_trap)
5807         {
5808           macro_build (NULL, "teq", "s,t,q", treg, ZERO, 7);
5809           macro_build (NULL, s, "z,s,t", sreg, treg);
5810           /* We want to close the noreorder block as soon as possible, so
5811              that later insns are available for delay slot filling.  */
5812           end_noreorder ();
5813         }
5814       else
5815         {
5816           expr1.X_add_number = 8;
5817           macro_build (&expr1, "bne", "s,t,p", treg, ZERO);
5818           macro_build (NULL, s, "z,s,t", sreg, treg);
5819
5820           /* We want to close the noreorder block as soon as possible, so
5821              that later insns are available for delay slot filling.  */
5822           end_noreorder ();
5823           macro_build (NULL, "break", "c", 7);
5824         }
5825       macro_build (NULL, s2, "d", dreg);
5826       break;
5827
5828     case M_DLCA_AB:
5829       dbl = 1;
5830     case M_LCA_AB:
5831       call = 1;
5832       goto do_la;
5833     case M_DLA_AB:
5834       dbl = 1;
5835     case M_LA_AB:
5836     do_la:
5837       /* Load the address of a symbol into a register.  If breg is not
5838          zero, we then add a base register to it.  */
5839
5840       if (dbl && HAVE_32BIT_GPRS)
5841         as_warn (_("dla used to load 32-bit register"));
5842
5843       if (!dbl && HAVE_64BIT_OBJECTS)
5844         as_warn (_("la used to load 64-bit address"));
5845
5846       if (offset_expr.X_op == O_constant
5847           && offset_expr.X_add_number >= -0x8000
5848           && offset_expr.X_add_number < 0x8000)
5849         {
5850           macro_build (&offset_expr, ADDRESS_ADDI_INSN,
5851                        "t,r,j", treg, sreg, BFD_RELOC_LO16);
5852           break;
5853         }
5854
5855       if (mips_opts.at && (treg == breg))
5856         {
5857           tempreg = AT;
5858           used_at = 1;
5859         }
5860       else
5861         {
5862           tempreg = treg;
5863         }
5864
5865       if (offset_expr.X_op != O_symbol
5866           && offset_expr.X_op != O_constant)
5867         {
5868           as_bad (_("Expression too complex"));
5869           offset_expr.X_op = O_constant;
5870         }
5871
5872       if (offset_expr.X_op == O_constant)
5873         load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
5874       else if (mips_pic == NO_PIC)
5875         {
5876           /* If this is a reference to a GP relative symbol, we want
5877                addiu    $tempreg,$gp,<sym>      (BFD_RELOC_GPREL16)
5878              Otherwise we want
5879                lui      $tempreg,<sym>          (BFD_RELOC_HI16_S)
5880                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5881              If we have a constant, we need two instructions anyhow,
5882              so we may as well always use the latter form.
5883
5884              With 64bit address space and a usable $at we want
5885                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
5886                lui      $at,<sym>               (BFD_RELOC_HI16_S)
5887                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
5888                daddiu   $at,<sym>               (BFD_RELOC_LO16)
5889                dsll32   $tempreg,0
5890                daddu    $tempreg,$tempreg,$at
5891
5892              If $at is already in use, we use a path which is suboptimal
5893              on superscalar processors.
5894                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
5895                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
5896                dsll     $tempreg,16
5897                daddiu   $tempreg,<sym>          (BFD_RELOC_HI16_S)
5898                dsll     $tempreg,16
5899                daddiu   $tempreg,<sym>          (BFD_RELOC_LO16)
5900
5901              For GP relative symbols in 64bit address space we can use
5902              the same sequence as in 32bit address space.  */
5903           if (HAVE_64BIT_SYMBOLS)
5904             {
5905               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5906                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5907                 {
5908                   relax_start (offset_expr.X_add_symbol);
5909                   macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5910                                tempreg, mips_gp_register, BFD_RELOC_GPREL16);
5911                   relax_switch ();
5912                 }
5913
5914               if (used_at == 0 && mips_opts.at)
5915                 {
5916                   macro_build (&offset_expr, "lui", "t,u",
5917                                tempreg, BFD_RELOC_MIPS_HIGHEST);
5918                   macro_build (&offset_expr, "lui", "t,u",
5919                                AT, BFD_RELOC_HI16_S);
5920                   macro_build (&offset_expr, "daddiu", "t,r,j",
5921                                tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
5922                   macro_build (&offset_expr, "daddiu", "t,r,j",
5923                                AT, AT, BFD_RELOC_LO16);
5924                   macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
5925                   macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
5926                   used_at = 1;
5927                 }
5928               else
5929                 {
5930                   macro_build (&offset_expr, "lui", "t,u",
5931                                tempreg, BFD_RELOC_MIPS_HIGHEST);
5932                   macro_build (&offset_expr, "daddiu", "t,r,j",
5933                                tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
5934                   macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5935                   macro_build (&offset_expr, "daddiu", "t,r,j",
5936                                tempreg, tempreg, BFD_RELOC_HI16_S);
5937                   macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5938                   macro_build (&offset_expr, "daddiu", "t,r,j",
5939                                tempreg, tempreg, BFD_RELOC_LO16);
5940                 }
5941
5942               if (mips_relax.sequence)
5943                 relax_end ();
5944             }
5945           else
5946             {
5947               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5948                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5949                 {
5950                   relax_start (offset_expr.X_add_symbol);
5951                   macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5952                                tempreg, mips_gp_register, BFD_RELOC_GPREL16);
5953                   relax_switch ();
5954                 }
5955               if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
5956                 as_bad (_("Offset too large"));
5957               macro_build_lui (&offset_expr, tempreg);
5958               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5959                            tempreg, tempreg, BFD_RELOC_LO16);
5960               if (mips_relax.sequence)
5961                 relax_end ();
5962             }
5963         }
5964       else if (!mips_big_got && !HAVE_NEWABI)
5965         {
5966           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
5967
5968           /* If this is a reference to an external symbol, and there
5969              is no constant, we want
5970                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
5971              or for lca or if tempreg is PIC_CALL_REG
5972                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_CALL16)
5973              For a local symbol, we want
5974                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
5975                nop
5976                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5977
5978              If we have a small constant, and this is a reference to
5979              an external symbol, we want
5980                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
5981                nop
5982                addiu    $tempreg,$tempreg,<constant>
5983              For a local symbol, we want the same instruction
5984              sequence, but we output a BFD_RELOC_LO16 reloc on the
5985              addiu instruction.
5986
5987              If we have a large constant, and this is a reference to
5988              an external symbol, we want
5989                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
5990                lui      $at,<hiconstant>
5991                addiu    $at,$at,<loconstant>
5992                addu     $tempreg,$tempreg,$at
5993              For a local symbol, we want the same instruction
5994              sequence, but we output a BFD_RELOC_LO16 reloc on the
5995              addiu instruction.
5996            */
5997
5998           if (offset_expr.X_add_number == 0)
5999             {
6000               if (mips_pic == SVR4_PIC
6001                   && breg == 0
6002                   && (call || tempreg == PIC_CALL_REG))
6003                 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
6004
6005               relax_start (offset_expr.X_add_symbol);
6006               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6007                            lw_reloc_type, mips_gp_register);
6008               if (breg != 0)
6009                 {
6010                   /* We're going to put in an addu instruction using
6011                      tempreg, so we may as well insert the nop right
6012                      now.  */
6013                   load_delay_nop ();
6014                 }
6015               relax_switch ();
6016               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6017                            tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
6018               load_delay_nop ();
6019               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6020                            tempreg, tempreg, BFD_RELOC_LO16);
6021               relax_end ();
6022               /* FIXME: If breg == 0, and the next instruction uses
6023                  $tempreg, then if this variant case is used an extra
6024                  nop will be generated.  */
6025             }
6026           else if (offset_expr.X_add_number >= -0x8000
6027                    && offset_expr.X_add_number < 0x8000)
6028             {
6029               load_got_offset (tempreg, &offset_expr);
6030               load_delay_nop ();
6031               add_got_offset (tempreg, &offset_expr);
6032             }
6033           else
6034             {
6035               expr1.X_add_number = offset_expr.X_add_number;
6036               offset_expr.X_add_number =
6037                 ((offset_expr.X_add_number + 0x8000) & 0xffff) - 0x8000;
6038               load_got_offset (tempreg, &offset_expr);
6039               offset_expr.X_add_number = expr1.X_add_number;
6040               /* If we are going to add in a base register, and the
6041                  target register and the base register are the same,
6042                  then we are using AT as a temporary register.  Since
6043                  we want to load the constant into AT, we add our
6044                  current AT (from the global offset table) and the
6045                  register into the register now, and pretend we were
6046                  not using a base register.  */
6047               if (breg == treg)
6048                 {
6049                   load_delay_nop ();
6050                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6051                                treg, AT, breg);
6052                   breg = 0;
6053                   tempreg = treg;
6054                 }
6055               add_got_offset_hilo (tempreg, &offset_expr, AT);
6056               used_at = 1;
6057             }
6058         }
6059       else if (!mips_big_got && HAVE_NEWABI)
6060         {
6061           int add_breg_early = 0;
6062
6063           /* If this is a reference to an external, and there is no
6064              constant, or local symbol (*), with or without a
6065              constant, we want
6066                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
6067              or for lca or if tempreg is PIC_CALL_REG
6068                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_CALL16)
6069
6070              If we have a small constant, and this is a reference to
6071              an external symbol, we want
6072                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
6073                addiu    $tempreg,$tempreg,<constant>
6074
6075              If we have a large constant, and this is a reference to
6076              an external symbol, we want
6077                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
6078                lui      $at,<hiconstant>
6079                addiu    $at,$at,<loconstant>
6080                addu     $tempreg,$tempreg,$at
6081
6082              (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
6083              local symbols, even though it introduces an additional
6084              instruction.  */
6085
6086           if (offset_expr.X_add_number)
6087             {
6088               expr1.X_add_number = offset_expr.X_add_number;
6089               offset_expr.X_add_number = 0;
6090
6091               relax_start (offset_expr.X_add_symbol);
6092               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6093                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
6094
6095               if (expr1.X_add_number >= -0x8000
6096                   && expr1.X_add_number < 0x8000)
6097                 {
6098                   macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
6099                                tempreg, tempreg, BFD_RELOC_LO16);
6100                 }
6101               else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
6102                 {
6103                   /* If we are going to add in a base register, and the
6104                      target register and the base register are the same,
6105                      then we are using AT as a temporary register.  Since
6106                      we want to load the constant into AT, we add our
6107                      current AT (from the global offset table) and the
6108                      register into the register now, and pretend we were
6109                      not using a base register.  */
6110                   if (breg != treg)
6111                     dreg = tempreg;
6112                   else
6113                     {
6114                       gas_assert (tempreg == AT);
6115                       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6116                                    treg, AT, breg);
6117                       dreg = treg;
6118                       add_breg_early = 1;
6119                     }
6120
6121                   load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
6122                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6123                                dreg, dreg, AT);
6124
6125                   used_at = 1;
6126                 }
6127               else
6128                 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
6129
6130               relax_switch ();
6131               offset_expr.X_add_number = expr1.X_add_number;
6132
6133               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6134                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
6135               if (add_breg_early)
6136                 {
6137                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6138                                treg, tempreg, breg);
6139                   breg = 0;
6140                   tempreg = treg;
6141                 }
6142               relax_end ();
6143             }
6144           else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
6145             {
6146               relax_start (offset_expr.X_add_symbol);
6147               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6148                            BFD_RELOC_MIPS_CALL16, mips_gp_register);
6149               relax_switch ();
6150               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6151                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
6152               relax_end ();
6153             }
6154           else
6155             {
6156               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6157                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
6158             }
6159         }
6160       else if (mips_big_got && !HAVE_NEWABI)
6161         {
6162           int gpdelay;
6163           int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
6164           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
6165           int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
6166
6167           /* This is the large GOT case.  If this is a reference to an
6168              external symbol, and there is no constant, we want
6169                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
6170                addu     $tempreg,$tempreg,$gp
6171                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6172              or for lca or if tempreg is PIC_CALL_REG
6173                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_CALL_HI16)
6174                addu     $tempreg,$tempreg,$gp
6175                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
6176              For a local symbol, we want
6177                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
6178                nop
6179                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6180
6181              If we have a small constant, and this is a reference to
6182              an external symbol, we want
6183                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
6184                addu     $tempreg,$tempreg,$gp
6185                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6186                nop
6187                addiu    $tempreg,$tempreg,<constant>
6188              For a local symbol, we want
6189                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
6190                nop
6191                addiu    $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
6192
6193              If we have a large constant, and this is a reference to
6194              an external symbol, we want
6195                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
6196                addu     $tempreg,$tempreg,$gp
6197                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6198                lui      $at,<hiconstant>
6199                addiu    $at,$at,<loconstant>
6200                addu     $tempreg,$tempreg,$at
6201              For a local symbol, we want
6202                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
6203                lui      $at,<hiconstant>
6204                addiu    $at,$at,<loconstant>    (BFD_RELOC_LO16)
6205                addu     $tempreg,$tempreg,$at
6206           */
6207
6208           expr1.X_add_number = offset_expr.X_add_number;
6209           offset_expr.X_add_number = 0;
6210           relax_start (offset_expr.X_add_symbol);
6211           gpdelay = reg_needs_delay (mips_gp_register);
6212           if (expr1.X_add_number == 0 && breg == 0
6213               && (call || tempreg == PIC_CALL_REG))
6214             {
6215               lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
6216               lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
6217             }
6218           macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
6219           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6220                        tempreg, tempreg, mips_gp_register);
6221           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6222                        tempreg, lw_reloc_type, tempreg);
6223           if (expr1.X_add_number == 0)
6224             {
6225               if (breg != 0)
6226                 {
6227                   /* We're going to put in an addu instruction using
6228                      tempreg, so we may as well insert the nop right
6229                      now.  */
6230                   load_delay_nop ();
6231                 }
6232             }
6233           else if (expr1.X_add_number >= -0x8000
6234                    && expr1.X_add_number < 0x8000)
6235             {
6236               load_delay_nop ();
6237               macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
6238                            tempreg, tempreg, BFD_RELOC_LO16);
6239             }
6240           else
6241             {
6242               /* If we are going to add in a base register, and the
6243                  target register and the base register are the same,
6244                  then we are using AT as a temporary register.  Since
6245                  we want to load the constant into AT, we add our
6246                  current AT (from the global offset table) and the
6247                  register into the register now, and pretend we were
6248                  not using a base register.  */
6249               if (breg != treg)
6250                 dreg = tempreg;
6251               else
6252                 {
6253                   gas_assert (tempreg == AT);
6254                   load_delay_nop ();
6255                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6256                                treg, AT, breg);
6257                   dreg = treg;
6258                 }
6259
6260               load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
6261               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
6262
6263               used_at = 1;
6264             }
6265           offset_expr.X_add_number =
6266             ((expr1.X_add_number + 0x8000) & 0xffff) - 0x8000;
6267           relax_switch ();
6268
6269           if (gpdelay)
6270             {
6271               /* This is needed because this instruction uses $gp, but
6272                  the first instruction on the main stream does not.  */
6273               macro_build (NULL, "nop", "");
6274             }
6275
6276           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6277                        local_reloc_type, mips_gp_register);
6278           if (expr1.X_add_number >= -0x8000
6279               && expr1.X_add_number < 0x8000)
6280             {
6281               load_delay_nop ();
6282               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6283                            tempreg, tempreg, BFD_RELOC_LO16);
6284               /* FIXME: If add_number is 0, and there was no base
6285                  register, the external symbol case ended with a load,
6286                  so if the symbol turns out to not be external, and
6287                  the next instruction uses tempreg, an unnecessary nop
6288                  will be inserted.  */
6289             }
6290           else
6291             {
6292               if (breg == treg)
6293                 {
6294                   /* We must add in the base register now, as in the
6295                      external symbol case.  */
6296                   gas_assert (tempreg == AT);
6297                   load_delay_nop ();
6298                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6299                                treg, AT, breg);
6300                   tempreg = treg;
6301                   /* We set breg to 0 because we have arranged to add
6302                      it in in both cases.  */
6303                   breg = 0;
6304                 }
6305
6306               macro_build_lui (&expr1, AT);
6307               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6308                            AT, AT, BFD_RELOC_LO16);
6309               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6310                            tempreg, tempreg, AT);
6311               used_at = 1;
6312             }
6313           relax_end ();
6314         }
6315       else if (mips_big_got && HAVE_NEWABI)
6316         {
6317           int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
6318           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
6319           int add_breg_early = 0;
6320
6321           /* This is the large GOT case.  If this is a reference to an
6322              external symbol, and there is no constant, we want
6323                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
6324                add      $tempreg,$tempreg,$gp
6325                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6326              or for lca or if tempreg is PIC_CALL_REG
6327                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_CALL_HI16)
6328                add      $tempreg,$tempreg,$gp
6329                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
6330
6331              If we have a small constant, and this is a reference to
6332              an external symbol, we want
6333                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
6334                add      $tempreg,$tempreg,$gp
6335                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6336                addi     $tempreg,$tempreg,<constant>
6337
6338              If we have a large constant, and this is a reference to
6339              an external symbol, we want
6340                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
6341                addu     $tempreg,$tempreg,$gp
6342                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6343                lui      $at,<hiconstant>
6344                addi     $at,$at,<loconstant>
6345                add      $tempreg,$tempreg,$at
6346
6347              If we have NewABI, and we know it's a local symbol, we want
6348                lw       $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT_PAGE)
6349                addiu    $reg,$reg,<sym>         (BFD_RELOC_MIPS_GOT_OFST)
6350              otherwise we have to resort to GOT_HI16/GOT_LO16.  */
6351
6352           relax_start (offset_expr.X_add_symbol);
6353
6354           expr1.X_add_number = offset_expr.X_add_number;
6355           offset_expr.X_add_number = 0;
6356
6357           if (expr1.X_add_number == 0 && breg == 0
6358               && (call || tempreg == PIC_CALL_REG))
6359             {
6360               lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
6361               lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
6362             }
6363           macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
6364           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6365                        tempreg, tempreg, mips_gp_register);
6366           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6367                        tempreg, lw_reloc_type, tempreg);
6368
6369           if (expr1.X_add_number == 0)
6370             ;
6371           else if (expr1.X_add_number >= -0x8000
6372                    && expr1.X_add_number < 0x8000)
6373             {
6374               macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
6375                            tempreg, tempreg, BFD_RELOC_LO16);
6376             }
6377           else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
6378             {
6379               /* If we are going to add in a base register, and the
6380                  target register and the base register are the same,
6381                  then we are using AT as a temporary register.  Since
6382                  we want to load the constant into AT, we add our
6383                  current AT (from the global offset table) and the
6384                  register into the register now, and pretend we were
6385                  not using a base register.  */
6386               if (breg != treg)
6387                 dreg = tempreg;
6388               else
6389                 {
6390                   gas_assert (tempreg == AT);
6391                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6392                                treg, AT, breg);
6393                   dreg = treg;
6394                   add_breg_early = 1;
6395                 }
6396
6397               load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
6398               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
6399
6400               used_at = 1;
6401             }
6402           else
6403             as_bad (_("PIC code offset overflow (max 32 signed bits)"));
6404
6405           relax_switch ();
6406           offset_expr.X_add_number = expr1.X_add_number;
6407           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6408                        BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6409           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6410                        tempreg, BFD_RELOC_MIPS_GOT_OFST);
6411           if (add_breg_early)
6412             {
6413               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6414                            treg, tempreg, breg);
6415               breg = 0;
6416               tempreg = treg;
6417             }
6418           relax_end ();
6419         }
6420       else
6421         abort ();
6422
6423       if (breg != 0)
6424         macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", treg, tempreg, breg);
6425       break;
6426
6427     case M_MSGSND:
6428       {
6429         unsigned long temp = (treg << 16) | (0x01);
6430         macro_build (NULL, "c2", "C", temp);
6431       }
6432       break;
6433
6434     case M_MSGLD:
6435       {
6436         unsigned long temp = (0x02);
6437         macro_build (NULL, "c2", "C", temp);
6438       }
6439       break;
6440
6441     case M_MSGLD_T:
6442       {
6443         unsigned long temp = (treg << 16) | (0x02);
6444         macro_build (NULL, "c2", "C", temp);
6445       }
6446       break;
6447
6448     case M_MSGWAIT:
6449       macro_build (NULL, "c2", "C", 3);
6450       break;
6451
6452     case M_MSGWAIT_T:
6453       {
6454         unsigned long temp = (treg << 16) | 0x03;
6455         macro_build (NULL, "c2", "C", temp);
6456       }
6457       break;
6458
6459     case M_J_A:
6460       /* The j instruction may not be used in PIC code, since it
6461          requires an absolute address.  We convert it to a b
6462          instruction.  */
6463       if (mips_pic == NO_PIC)
6464         macro_build (&offset_expr, "j", "a");
6465       else
6466         macro_build (&offset_expr, "b", "p");
6467       break;
6468
6469       /* The jal instructions must be handled as macros because when
6470          generating PIC code they expand to multi-instruction
6471          sequences.  Normally they are simple instructions.  */
6472     case M_JAL_1:
6473       dreg = RA;
6474       /* Fall through.  */
6475     case M_JAL_2:
6476       if (mips_pic == NO_PIC)
6477         macro_build (NULL, "jalr", "d,s", dreg, sreg);
6478       else
6479         {
6480           if (sreg != PIC_CALL_REG)
6481             as_warn (_("MIPS PIC call to register other than $25"));
6482
6483           macro_build (NULL, "jalr", "d,s", dreg, sreg);
6484           if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
6485             {
6486               if (mips_cprestore_offset < 0)
6487                 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6488               else
6489                 {
6490                   if (!mips_frame_reg_valid)
6491                     {
6492                       as_warn (_("No .frame pseudo-op used in PIC code"));
6493                       /* Quiet this warning.  */
6494                       mips_frame_reg_valid = 1;
6495                     }
6496                   if (!mips_cprestore_valid)
6497                     {
6498                       as_warn (_("No .cprestore pseudo-op used in PIC code"));
6499                       /* Quiet this warning.  */
6500                       mips_cprestore_valid = 1;
6501                     }
6502                   if (mips_opts.noreorder)
6503                     macro_build (NULL, "nop", "");
6504                   expr1.X_add_number = mips_cprestore_offset;
6505                   macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
6506                                                 mips_gp_register,
6507                                                 mips_frame_reg,
6508                                                 HAVE_64BIT_ADDRESSES);
6509                 }
6510             }
6511         }
6512
6513       break;
6514
6515     case M_JAL_A:
6516       if (mips_pic == NO_PIC)
6517         macro_build (&offset_expr, "jal", "a");
6518       else if (mips_pic == SVR4_PIC)
6519         {
6520           /* If this is a reference to an external symbol, and we are
6521              using a small GOT, we want
6522                lw       $25,<sym>($gp)          (BFD_RELOC_MIPS_CALL16)
6523                nop
6524                jalr     $ra,$25
6525                nop
6526                lw       $gp,cprestore($sp)
6527              The cprestore value is set using the .cprestore
6528              pseudo-op.  If we are using a big GOT, we want
6529                lui      $25,<sym>               (BFD_RELOC_MIPS_CALL_HI16)
6530                addu     $25,$25,$gp
6531                lw       $25,<sym>($25)          (BFD_RELOC_MIPS_CALL_LO16)
6532                nop
6533                jalr     $ra,$25
6534                nop
6535                lw       $gp,cprestore($sp)
6536              If the symbol is not external, we want
6537                lw       $25,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
6538                nop
6539                addiu    $25,$25,<sym>           (BFD_RELOC_LO16)
6540                jalr     $ra,$25
6541                nop
6542                lw $gp,cprestore($sp)
6543
6544              For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
6545              sequences above, minus nops, unless the symbol is local,
6546              which enables us to use GOT_PAGE/GOT_OFST (big got) or
6547              GOT_DISP.  */
6548           if (HAVE_NEWABI)
6549             {
6550               if (!mips_big_got)
6551                 {
6552                   relax_start (offset_expr.X_add_symbol);
6553                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6554                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
6555                                mips_gp_register);
6556                   relax_switch ();
6557                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6558                                PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
6559                                mips_gp_register);
6560                   relax_end ();
6561                 }
6562               else
6563                 {
6564                   relax_start (offset_expr.X_add_symbol);
6565                   macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
6566                                BFD_RELOC_MIPS_CALL_HI16);
6567                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
6568                                PIC_CALL_REG, mips_gp_register);
6569                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6570                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
6571                                PIC_CALL_REG);
6572                   relax_switch ();
6573                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6574                                PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
6575                                mips_gp_register);
6576                   macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6577                                PIC_CALL_REG, PIC_CALL_REG,
6578                                BFD_RELOC_MIPS_GOT_OFST);
6579                   relax_end ();
6580                 }
6581
6582               macro_build_jalr (&offset_expr);
6583             }
6584           else
6585             {
6586               relax_start (offset_expr.X_add_symbol);
6587               if (!mips_big_got)
6588                 {
6589                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6590                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
6591                                mips_gp_register);
6592                   load_delay_nop ();
6593                   relax_switch ();
6594                 }
6595               else
6596                 {
6597                   int gpdelay;
6598
6599                   gpdelay = reg_needs_delay (mips_gp_register);
6600                   macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
6601                                BFD_RELOC_MIPS_CALL_HI16);
6602                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
6603                                PIC_CALL_REG, mips_gp_register);
6604                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6605                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
6606                                PIC_CALL_REG);
6607                   load_delay_nop ();
6608                   relax_switch ();
6609                   if (gpdelay)
6610                     macro_build (NULL, "nop", "");
6611                 }
6612               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6613                            PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
6614                            mips_gp_register);
6615               load_delay_nop ();
6616               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6617                            PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
6618               relax_end ();
6619               macro_build_jalr (&offset_expr);
6620
6621               if (mips_cprestore_offset < 0)
6622                 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6623               else
6624                 {
6625                   if (!mips_frame_reg_valid)
6626                     {
6627                       as_warn (_("No .frame pseudo-op used in PIC code"));
6628                       /* Quiet this warning.  */
6629                       mips_frame_reg_valid = 1;
6630                     }
6631                   if (!mips_cprestore_valid)
6632                     {
6633                       as_warn (_("No .cprestore pseudo-op used in PIC code"));
6634                       /* Quiet this warning.  */
6635                       mips_cprestore_valid = 1;
6636                     }
6637                   if (mips_opts.noreorder)
6638                     macro_build (NULL, "nop", "");
6639                   expr1.X_add_number = mips_cprestore_offset;
6640                   macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
6641                                                 mips_gp_register,
6642                                                 mips_frame_reg,
6643                                                 HAVE_64BIT_ADDRESSES);
6644                 }
6645             }
6646         }
6647       else if (mips_pic == VXWORKS_PIC)
6648         as_bad (_("Non-PIC jump used in PIC library"));
6649       else
6650         abort ();
6651
6652       break;
6653
6654     case M_LB_AB:
6655       s = "lb";
6656       goto ld;
6657     case M_LBU_AB:
6658       s = "lbu";
6659       goto ld;
6660     case M_LH_AB:
6661       s = "lh";
6662       goto ld;
6663     case M_LHU_AB:
6664       s = "lhu";
6665       goto ld;
6666     case M_LW_AB:
6667       s = "lw";
6668       goto ld;
6669     case M_LWC0_AB:
6670       s = "lwc0";
6671       /* Itbl support may require additional care here.  */
6672       coproc = 1;
6673       goto ld;
6674     case M_LWC1_AB:
6675       s = "lwc1";
6676       /* Itbl support may require additional care here.  */
6677       coproc = 1;
6678       goto ld;
6679     case M_LWC2_AB:
6680       s = "lwc2";
6681       /* Itbl support may require additional care here.  */
6682       coproc = 1;
6683       goto ld;
6684     case M_LWC3_AB:
6685       s = "lwc3";
6686       /* Itbl support may require additional care here.  */
6687       coproc = 1;
6688       goto ld;
6689     case M_LWL_AB:
6690       s = "lwl";
6691       lr = 1;
6692       goto ld;
6693     case M_LWR_AB:
6694       s = "lwr";
6695       lr = 1;
6696       goto ld;
6697     case M_LDC1_AB:
6698       s = "ldc1";
6699       /* Itbl support may require additional care here.  */
6700       coproc = 1;
6701       goto ld;
6702     case M_LDC2_AB:
6703       s = "ldc2";
6704       /* Itbl support may require additional care here.  */
6705       coproc = 1;
6706       goto ld;
6707     case M_LDC3_AB:
6708       s = "ldc3";
6709       /* Itbl support may require additional care here.  */
6710       coproc = 1;
6711       goto ld;
6712     case M_LDL_AB:
6713       s = "ldl";
6714       lr = 1;
6715       goto ld;
6716     case M_LDR_AB:
6717       s = "ldr";
6718       lr = 1;
6719       goto ld;
6720     case M_LL_AB:
6721       s = "ll";
6722       goto ld;
6723     case M_LLD_AB:
6724       s = "lld";
6725       goto ld;
6726     case M_LWU_AB:
6727       s = "lwu";
6728     ld:
6729       if (breg == treg || coproc || lr)
6730         {
6731           tempreg = AT;
6732           used_at = 1;
6733         }
6734       else
6735         {
6736           tempreg = treg;
6737         }
6738       goto ld_st;
6739     case M_SB_AB:
6740       s = "sb";
6741       goto st;
6742     case M_SH_AB:
6743       s = "sh";
6744       goto st;
6745     case M_SW_AB:
6746       s = "sw";
6747       goto st;
6748     case M_SWC0_AB:
6749       s = "swc0";
6750       /* Itbl support may require additional care here.  */
6751       coproc = 1;
6752       goto st;
6753     case M_SWC1_AB:
6754       s = "swc1";
6755       /* Itbl support may require additional care here.  */
6756       coproc = 1;
6757       goto st;
6758     case M_SWC2_AB:
6759       s = "swc2";
6760       /* Itbl support may require additional care here.  */
6761       coproc = 1;
6762       goto st;
6763     case M_SWC3_AB:
6764       s = "swc3";
6765       /* Itbl support may require additional care here.  */
6766       coproc = 1;
6767       goto st;
6768     case M_SWL_AB:
6769       s = "swl";
6770       goto st;
6771     case M_SWR_AB:
6772       s = "swr";
6773       goto st;
6774     case M_SC_AB:
6775       s = "sc";
6776       goto st;
6777     case M_SCD_AB:
6778       s = "scd";
6779       goto st;
6780     case M_CACHE_AB:
6781       s = "cache";
6782       goto st;
6783     case M_PREF_AB:
6784       s = "pref";
6785       goto st;
6786     case M_SDC1_AB:
6787       s = "sdc1";
6788       coproc = 1;
6789       /* Itbl support may require additional care here.  */
6790       goto st;
6791     case M_SDC2_AB:
6792       s = "sdc2";
6793       /* Itbl support may require additional care here.  */
6794       coproc = 1;
6795       goto st;
6796     case M_SDC3_AB:
6797       s = "sdc3";
6798       /* Itbl support may require additional care here.  */
6799       coproc = 1;
6800       goto st;
6801     case M_SDL_AB:
6802       s = "sdl";
6803       goto st;
6804     case M_SDR_AB:
6805       s = "sdr";
6806     st:
6807       tempreg = AT;
6808       used_at = 1;
6809     ld_st:
6810       if (coproc
6811           && NO_ISA_COP (mips_opts.arch)
6812           && (ip->insn_mo->pinfo2 & (INSN2_M_FP_S | INSN2_M_FP_D)) == 0)
6813         {
6814           as_bad (_("Opcode not supported on this processor: %s"),
6815                   mips_cpu_info_from_arch (mips_opts.arch)->name);
6816           break;
6817         }
6818
6819       /* Itbl support may require additional care here.  */
6820       if (mask == M_LWC1_AB
6821           || mask == M_SWC1_AB
6822           || mask == M_LDC1_AB
6823           || mask == M_SDC1_AB
6824           || mask == M_L_DAB
6825           || mask == M_S_DAB)
6826         fmt = "T,o(b)";
6827       else if (mask == M_CACHE_AB || mask == M_PREF_AB)
6828         fmt = "k,o(b)";
6829       else if (coproc)
6830         fmt = "E,o(b)";
6831       else
6832         fmt = "t,o(b)";
6833
6834       if (offset_expr.X_op != O_constant
6835           && offset_expr.X_op != O_symbol)
6836         {
6837           as_bad (_("Expression too complex"));
6838           offset_expr.X_op = O_constant;
6839         }
6840
6841       if (HAVE_32BIT_ADDRESSES
6842           && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
6843         {
6844           char value [32];
6845
6846           sprintf_vma (value, offset_expr.X_add_number);
6847           as_bad (_("Number (0x%s) larger than 32 bits"), value);
6848         }
6849
6850       /* A constant expression in PIC code can be handled just as it
6851          is in non PIC code.  */
6852       if (offset_expr.X_op == O_constant)
6853         {
6854           expr1.X_add_number = offset_expr.X_add_number;
6855           normalize_address_expr (&expr1);
6856           if (!IS_SEXT_16BIT_NUM (expr1.X_add_number))
6857             {
6858               expr1.X_add_number = ((expr1.X_add_number + 0x8000)
6859                                     & ~(bfd_vma) 0xffff);
6860               load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
6861               if (breg != 0)
6862                 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6863                              tempreg, tempreg, breg);
6864               breg = tempreg;
6865             }
6866           macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, breg);
6867         }
6868       else if (mips_pic == NO_PIC)
6869         {
6870           /* If this is a reference to a GP relative symbol, and there
6871              is no base register, we want
6872                <op>     $treg,<sym>($gp)        (BFD_RELOC_GPREL16)
6873              Otherwise, if there is no base register, we want
6874                lui      $tempreg,<sym>          (BFD_RELOC_HI16_S)
6875                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_LO16)
6876              If we have a constant, we need two instructions anyhow,
6877              so we always use the latter form.
6878
6879              If we have a base register, and this is a reference to a
6880              GP relative symbol, we want
6881                addu     $tempreg,$breg,$gp
6882                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_GPREL16)
6883              Otherwise we want
6884                lui      $tempreg,<sym>          (BFD_RELOC_HI16_S)
6885                addu     $tempreg,$tempreg,$breg
6886                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_LO16)
6887              With a constant we always use the latter case.
6888
6889              With 64bit address space and no base register and $at usable,
6890              we want
6891                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
6892                lui      $at,<sym>               (BFD_RELOC_HI16_S)
6893                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
6894                dsll32   $tempreg,0
6895                daddu    $tempreg,$at
6896                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_LO16)
6897              If we have a base register, we want
6898                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
6899                lui      $at,<sym>               (BFD_RELOC_HI16_S)
6900                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
6901                daddu    $at,$breg
6902                dsll32   $tempreg,0
6903                daddu    $tempreg,$at
6904                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_LO16)
6905
6906              Without $at we can't generate the optimal path for superscalar
6907              processors here since this would require two temporary registers.
6908                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
6909                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
6910                dsll     $tempreg,16
6911                daddiu   $tempreg,<sym>          (BFD_RELOC_HI16_S)
6912                dsll     $tempreg,16
6913                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_LO16)
6914              If we have a base register, we want
6915                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
6916                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
6917                dsll     $tempreg,16
6918                daddiu   $tempreg,<sym>          (BFD_RELOC_HI16_S)
6919                dsll     $tempreg,16
6920                daddu    $tempreg,$tempreg,$breg
6921                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_LO16)
6922
6923              For GP relative symbols in 64bit address space we can use
6924              the same sequence as in 32bit address space.  */
6925           if (HAVE_64BIT_SYMBOLS)
6926             {
6927               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6928                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
6929                 {
6930                   relax_start (offset_expr.X_add_symbol);
6931                   if (breg == 0)
6932                     {
6933                       macro_build (&offset_expr, s, fmt, treg,
6934                                    BFD_RELOC_GPREL16, mips_gp_register);
6935                     }
6936                   else
6937                     {
6938                       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6939                                    tempreg, breg, mips_gp_register);
6940                       macro_build (&offset_expr, s, fmt, treg,
6941                                    BFD_RELOC_GPREL16, tempreg);
6942                     }
6943                   relax_switch ();
6944                 }
6945
6946               if (used_at == 0 && mips_opts.at)
6947                 {
6948                   macro_build (&offset_expr, "lui", "t,u", tempreg,
6949                                BFD_RELOC_MIPS_HIGHEST);
6950                   macro_build (&offset_expr, "lui", "t,u", AT,
6951                                BFD_RELOC_HI16_S);
6952                   macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6953                                tempreg, BFD_RELOC_MIPS_HIGHER);
6954                   if (breg != 0)
6955                     macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
6956                   macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
6957                   macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
6958                   macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16,
6959                                tempreg);
6960                   used_at = 1;
6961                 }
6962               else
6963                 {
6964                   macro_build (&offset_expr, "lui", "t,u", tempreg,
6965                                BFD_RELOC_MIPS_HIGHEST);
6966                   macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6967                                tempreg, BFD_RELOC_MIPS_HIGHER);
6968                   macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
6969                   macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6970                                tempreg, BFD_RELOC_HI16_S);
6971                   macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
6972                   if (breg != 0)
6973                     macro_build (NULL, "daddu", "d,v,t",
6974                                  tempreg, tempreg, breg);
6975                   macro_build (&offset_expr, s, fmt, treg,
6976                                BFD_RELOC_LO16, tempreg);
6977                 }
6978
6979               if (mips_relax.sequence)
6980                 relax_end ();
6981               break;
6982             }
6983
6984           if (breg == 0)
6985             {
6986               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6987                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
6988                 {
6989                   relax_start (offset_expr.X_add_symbol);
6990                   macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16,
6991                                mips_gp_register);
6992                   relax_switch ();
6993                 }
6994               macro_build_lui (&offset_expr, tempreg);
6995               macro_build (&offset_expr, s, fmt, treg,
6996                            BFD_RELOC_LO16, tempreg);
6997               if (mips_relax.sequence)
6998                 relax_end ();
6999             }
7000           else
7001             {
7002               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
7003                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
7004                 {
7005                   relax_start (offset_expr.X_add_symbol);
7006                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7007                                tempreg, breg, mips_gp_register);
7008                   macro_build (&offset_expr, s, fmt, treg,
7009                                BFD_RELOC_GPREL16, tempreg);
7010                   relax_switch ();
7011                 }
7012               macro_build_lui (&offset_expr, tempreg);
7013               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7014                            tempreg, tempreg, breg);
7015               macro_build (&offset_expr, s, fmt, treg,
7016                            BFD_RELOC_LO16, tempreg);
7017               if (mips_relax.sequence)
7018                 relax_end ();
7019             }
7020         }
7021       else if (!mips_big_got)
7022         {
7023           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
7024
7025           /* If this is a reference to an external symbol, we want
7026                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
7027                nop
7028                <op>     $treg,0($tempreg)
7029              Otherwise we want
7030                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
7031                nop
7032                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7033                <op>     $treg,0($tempreg)
7034
7035              For NewABI, we want
7036                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_PAGE)
7037                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_MIPS_GOT_OFST)
7038
7039              If there is a base register, we add it to $tempreg before
7040              the <op>.  If there is a constant, we stick it in the
7041              <op> instruction.  We don't handle constants larger than
7042              16 bits, because we have no way to load the upper 16 bits
7043              (actually, we could handle them for the subset of cases
7044              in which we are not using $at).  */
7045           gas_assert (offset_expr.X_op == O_symbol);
7046           if (HAVE_NEWABI)
7047             {
7048               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7049                            BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
7050               if (breg != 0)
7051                 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7052                              tempreg, tempreg, breg);
7053               macro_build (&offset_expr, s, fmt, treg,
7054                            BFD_RELOC_MIPS_GOT_OFST, tempreg);
7055               break;
7056             }
7057           expr1.X_add_number = offset_expr.X_add_number;
7058           offset_expr.X_add_number = 0;
7059           if (expr1.X_add_number < -0x8000
7060               || expr1.X_add_number >= 0x8000)
7061             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7062           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7063                        lw_reloc_type, mips_gp_register);
7064           load_delay_nop ();
7065           relax_start (offset_expr.X_add_symbol);
7066           relax_switch ();
7067           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
7068                        tempreg, BFD_RELOC_LO16);
7069           relax_end ();
7070           if (breg != 0)
7071             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7072                          tempreg, tempreg, breg);
7073           macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
7074         }
7075       else if (mips_big_got && !HAVE_NEWABI)
7076         {
7077           int gpdelay;
7078
7079           /* If this is a reference to an external symbol, we want
7080                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
7081                addu     $tempreg,$tempreg,$gp
7082                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7083                <op>     $treg,0($tempreg)
7084              Otherwise we want
7085                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
7086                nop
7087                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7088                <op>     $treg,0($tempreg)
7089              If there is a base register, we add it to $tempreg before
7090              the <op>.  If there is a constant, we stick it in the
7091              <op> instruction.  We don't handle constants larger than
7092              16 bits, because we have no way to load the upper 16 bits
7093              (actually, we could handle them for the subset of cases
7094              in which we are not using $at).  */
7095           gas_assert (offset_expr.X_op == O_symbol);
7096           expr1.X_add_number = offset_expr.X_add_number;
7097           offset_expr.X_add_number = 0;
7098           if (expr1.X_add_number < -0x8000
7099               || expr1.X_add_number >= 0x8000)
7100             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7101           gpdelay = reg_needs_delay (mips_gp_register);
7102           relax_start (offset_expr.X_add_symbol);
7103           macro_build (&offset_expr, "lui", "t,u", tempreg,
7104                        BFD_RELOC_MIPS_GOT_HI16);
7105           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
7106                        mips_gp_register);
7107           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7108                        BFD_RELOC_MIPS_GOT_LO16, tempreg);
7109           relax_switch ();
7110           if (gpdelay)
7111             macro_build (NULL, "nop", "");
7112           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7113                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
7114           load_delay_nop ();
7115           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
7116                        tempreg, BFD_RELOC_LO16);
7117           relax_end ();
7118
7119           if (breg != 0)
7120             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7121                          tempreg, tempreg, breg);
7122           macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
7123         }
7124       else if (mips_big_got && HAVE_NEWABI)
7125         {
7126           /* If this is a reference to an external symbol, we want
7127                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
7128                add      $tempreg,$tempreg,$gp
7129                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7130                <op>     $treg,<ofst>($tempreg)
7131              Otherwise, for local symbols, we want:
7132                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_PAGE)
7133                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_MIPS_GOT_OFST)  */
7134           gas_assert (offset_expr.X_op == O_symbol);
7135           expr1.X_add_number = offset_expr.X_add_number;
7136           offset_expr.X_add_number = 0;
7137           if (expr1.X_add_number < -0x8000
7138               || expr1.X_add_number >= 0x8000)
7139             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7140           relax_start (offset_expr.X_add_symbol);
7141           macro_build (&offset_expr, "lui", "t,u", tempreg,
7142                        BFD_RELOC_MIPS_GOT_HI16);
7143           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
7144                        mips_gp_register);
7145           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7146                        BFD_RELOC_MIPS_GOT_LO16, tempreg);
7147           if (breg != 0)
7148             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7149                          tempreg, tempreg, breg);
7150           macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
7151
7152           relax_switch ();
7153           offset_expr.X_add_number = expr1.X_add_number;
7154           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7155                        BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
7156           if (breg != 0)
7157             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7158                          tempreg, tempreg, breg);
7159           macro_build (&offset_expr, s, fmt, treg,
7160                        BFD_RELOC_MIPS_GOT_OFST, tempreg);
7161           relax_end ();
7162         }
7163       else
7164         abort ();
7165
7166       break;
7167
7168     case M_LI:
7169     case M_LI_S:
7170       load_register (treg, &imm_expr, 0);
7171       break;
7172
7173     case M_DLI:
7174       load_register (treg, &imm_expr, 1);
7175       break;
7176
7177     case M_LI_SS:
7178       if (imm_expr.X_op == O_constant)
7179         {
7180           used_at = 1;
7181           load_register (AT, &imm_expr, 0);
7182           macro_build (NULL, "mtc1", "t,G", AT, treg);
7183           break;
7184         }
7185       else
7186         {
7187           gas_assert (offset_expr.X_op == O_symbol
7188                       && strcmp (segment_name (S_GET_SEGMENT
7189                                                (offset_expr.X_add_symbol)),
7190                                  ".lit4") == 0
7191                       && offset_expr.X_add_number == 0);
7192           macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
7193                        BFD_RELOC_MIPS_LITERAL, mips_gp_register);
7194           break;
7195         }
7196
7197     case M_LI_D:
7198       /* Check if we have a constant in IMM_EXPR.  If the GPRs are 64 bits
7199          wide, IMM_EXPR is the entire value.  Otherwise IMM_EXPR is the high
7200          order 32 bits of the value and the low order 32 bits are either
7201          zero or in OFFSET_EXPR.  */
7202       if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
7203         {
7204           if (HAVE_64BIT_GPRS)
7205             load_register (treg, &imm_expr, 1);
7206           else
7207             {
7208               int hreg, lreg;
7209
7210               if (target_big_endian)
7211                 {
7212                   hreg = treg;
7213                   lreg = treg + 1;
7214                 }
7215               else
7216                 {
7217                   hreg = treg + 1;
7218                   lreg = treg;
7219                 }
7220
7221               if (hreg <= 31)
7222                 load_register (hreg, &imm_expr, 0);
7223               if (lreg <= 31)
7224                 {
7225                   if (offset_expr.X_op == O_absent)
7226                     move_register (lreg, 0);
7227                   else
7228                     {
7229                       gas_assert (offset_expr.X_op == O_constant);
7230                       load_register (lreg, &offset_expr, 0);
7231                     }
7232                 }
7233             }
7234           break;
7235         }
7236
7237       /* We know that sym is in the .rdata section.  First we get the
7238          upper 16 bits of the address.  */
7239       if (mips_pic == NO_PIC)
7240         {
7241           macro_build_lui (&offset_expr, AT);
7242           used_at = 1;
7243         }
7244       else
7245         {
7246           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
7247                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
7248           used_at = 1;
7249         }
7250
7251       /* Now we load the register(s).  */
7252       if (HAVE_64BIT_GPRS)
7253         {
7254           used_at = 1;
7255           macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT);
7256         }
7257       else
7258         {
7259           used_at = 1;
7260           macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT);
7261           if (treg != RA)
7262             {
7263               /* FIXME: How in the world do we deal with the possible
7264                  overflow here?  */
7265               offset_expr.X_add_number += 4;
7266               macro_build (&offset_expr, "lw", "t,o(b)",
7267                            treg + 1, BFD_RELOC_LO16, AT);
7268             }
7269         }
7270       break;
7271
7272     case M_LI_DD:
7273       /* Check if we have a constant in IMM_EXPR.  If the FPRs are 64 bits
7274          wide, IMM_EXPR is the entire value and the GPRs are known to be 64
7275          bits wide as well.  Otherwise IMM_EXPR is the high order 32 bits of
7276          the value and the low order 32 bits are either zero or in
7277          OFFSET_EXPR.  */
7278       if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
7279         {
7280           used_at = 1;
7281           load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
7282           if (HAVE_64BIT_FPRS)
7283             {
7284               gas_assert (HAVE_64BIT_GPRS);
7285               macro_build (NULL, "dmtc1", "t,S", AT, treg);
7286             }
7287           else
7288             {
7289               macro_build (NULL, "mtc1", "t,G", AT, treg + 1);
7290               if (offset_expr.X_op == O_absent)
7291                 macro_build (NULL, "mtc1", "t,G", 0, treg);
7292               else
7293                 {
7294                   gas_assert (offset_expr.X_op == O_constant);
7295                   load_register (AT, &offset_expr, 0);
7296                   macro_build (NULL, "mtc1", "t,G", AT, treg);
7297                 }
7298             }
7299           break;
7300         }
7301
7302       gas_assert (offset_expr.X_op == O_symbol
7303                   && offset_expr.X_add_number == 0);
7304       s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
7305       if (strcmp (s, ".lit8") == 0)
7306         {
7307           if (mips_opts.isa != ISA_MIPS1)
7308             {
7309               macro_build (&offset_expr, "ldc1", "T,o(b)", treg,
7310                            BFD_RELOC_MIPS_LITERAL, mips_gp_register);
7311               break;
7312             }
7313           breg = mips_gp_register;
7314           r = BFD_RELOC_MIPS_LITERAL;
7315           goto dob;
7316         }
7317       else
7318         {
7319           gas_assert (strcmp (s, RDATA_SECTION_NAME) == 0);
7320           used_at = 1;
7321           if (mips_pic != NO_PIC)
7322             macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
7323                          BFD_RELOC_MIPS_GOT16, mips_gp_register);
7324           else
7325             {
7326               /* FIXME: This won't work for a 64 bit address.  */
7327               macro_build_lui (&offset_expr, AT);
7328             }
7329
7330           if (mips_opts.isa != ISA_MIPS1)
7331             {
7332               macro_build (&offset_expr, "ldc1", "T,o(b)",
7333                            treg, BFD_RELOC_LO16, AT);
7334               break;
7335             }
7336           breg = AT;
7337           r = BFD_RELOC_LO16;
7338           goto dob;
7339         }
7340
7341     case M_L_DOB:
7342       /* Even on a big endian machine $fn comes before $fn+1.  We have
7343          to adjust when loading from memory.  */
7344       r = BFD_RELOC_LO16;
7345     dob:
7346       gas_assert (mips_opts.isa == ISA_MIPS1);
7347       macro_build (&offset_expr, "lwc1", "T,o(b)",
7348                    target_big_endian ? treg + 1 : treg, r, breg);
7349       /* FIXME: A possible overflow which I don't know how to deal
7350          with.  */
7351       offset_expr.X_add_number += 4;
7352       macro_build (&offset_expr, "lwc1", "T,o(b)",
7353                    target_big_endian ? treg : treg + 1, r, breg);
7354       break;
7355
7356     case M_S_DOB:
7357       gas_assert (mips_opts.isa == ISA_MIPS1);
7358       /* Even on a big endian machine $fn comes before $fn+1.  We have
7359          to adjust when storing to memory.  */
7360       macro_build (&offset_expr, "swc1", "T,o(b)",
7361                    target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg);
7362       offset_expr.X_add_number += 4;
7363       macro_build (&offset_expr, "swc1", "T,o(b)",
7364                    target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg);
7365       break;
7366
7367     case M_L_DAB:
7368       /*
7369        * The MIPS assembler seems to check for X_add_number not
7370        * being double aligned and generating:
7371        *        lui     at,%hi(foo+1)
7372        *        addu    at,at,v1
7373        *        addiu   at,at,%lo(foo+1)
7374        *        lwc1    f2,0(at)
7375        *        lwc1    f3,4(at)
7376        * But, the resulting address is the same after relocation so why
7377        * generate the extra instruction?
7378        */
7379       /* Itbl support may require additional care here.  */
7380       coproc = 1;
7381       if (mips_opts.isa != ISA_MIPS1)
7382         {
7383           s = "ldc1";
7384           goto ld;
7385         }
7386
7387       s = "lwc1";
7388       fmt = "T,o(b)";
7389       goto ldd_std;
7390
7391     case M_S_DAB:
7392       if (mips_opts.isa != ISA_MIPS1)
7393         {
7394           s = "sdc1";
7395           goto st;
7396         }
7397
7398       s = "swc1";
7399       fmt = "T,o(b)";
7400       /* Itbl support may require additional care here.  */
7401       coproc = 1;
7402       goto ldd_std;
7403
7404     case M_LD_AB:
7405       if (HAVE_64BIT_GPRS)
7406         {
7407           s = "ld";
7408           goto ld;
7409         }
7410
7411       s = "lw";
7412       fmt = "t,o(b)";
7413       goto ldd_std;
7414
7415     case M_SD_AB:
7416       if (HAVE_64BIT_GPRS)
7417         {
7418           s = "sd";
7419           goto st;
7420         }
7421
7422       s = "sw";
7423       fmt = "t,o(b)";
7424
7425     ldd_std:
7426       if (offset_expr.X_op != O_symbol
7427           && offset_expr.X_op != O_constant)
7428         {
7429           as_bad (_("Expression too complex"));
7430           offset_expr.X_op = O_constant;
7431         }
7432
7433       if (HAVE_32BIT_ADDRESSES
7434           && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
7435         {
7436           char value [32];
7437
7438           sprintf_vma (value, offset_expr.X_add_number);
7439           as_bad (_("Number (0x%s) larger than 32 bits"), value);
7440         }
7441
7442       /* Even on a big endian machine $fn comes before $fn+1.  We have
7443          to adjust when loading from memory.  We set coproc if we must
7444          load $fn+1 first.  */
7445       /* Itbl support may require additional care here.  */
7446       if (!target_big_endian)
7447         coproc = 0;
7448
7449       if (mips_pic == NO_PIC || offset_expr.X_op == O_constant)
7450         {
7451           /* If this is a reference to a GP relative symbol, we want
7452                <op>     $treg,<sym>($gp)        (BFD_RELOC_GPREL16)
7453                <op>     $treg+1,<sym>+4($gp)    (BFD_RELOC_GPREL16)
7454              If we have a base register, we use this
7455                addu     $at,$breg,$gp
7456                <op>     $treg,<sym>($at)        (BFD_RELOC_GPREL16)
7457                <op>     $treg+1,<sym>+4($at)    (BFD_RELOC_GPREL16)
7458              If this is not a GP relative symbol, we want
7459                lui      $at,<sym>               (BFD_RELOC_HI16_S)
7460                <op>     $treg,<sym>($at)        (BFD_RELOC_LO16)
7461                <op>     $treg+1,<sym>+4($at)    (BFD_RELOC_LO16)
7462              If there is a base register, we add it to $at after the
7463              lui instruction.  If there is a constant, we always use
7464              the last case.  */
7465           if (offset_expr.X_op == O_symbol
7466               && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
7467               && !nopic_need_relax (offset_expr.X_add_symbol, 1))
7468             {
7469               relax_start (offset_expr.X_add_symbol);
7470               if (breg == 0)
7471                 {
7472                   tempreg = mips_gp_register;
7473                 }
7474               else
7475                 {
7476                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7477                                AT, breg, mips_gp_register);
7478                   tempreg = AT;
7479                   used_at = 1;
7480                 }
7481
7482               /* Itbl support may require additional care here.  */
7483               macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7484                            BFD_RELOC_GPREL16, tempreg);
7485               offset_expr.X_add_number += 4;
7486
7487               /* Set mips_optimize to 2 to avoid inserting an
7488                  undesired nop.  */
7489               hold_mips_optimize = mips_optimize;
7490               mips_optimize = 2;
7491               /* Itbl support may require additional care here.  */
7492               macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7493                            BFD_RELOC_GPREL16, tempreg);
7494               mips_optimize = hold_mips_optimize;
7495
7496               relax_switch ();
7497
7498               offset_expr.X_add_number -= 4;
7499             }
7500           used_at = 1;
7501           macro_build_lui (&offset_expr, AT);
7502           if (breg != 0)
7503             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
7504           /* Itbl support may require additional care here.  */
7505           macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7506                        BFD_RELOC_LO16, AT);
7507           /* FIXME: How do we handle overflow here?  */
7508           offset_expr.X_add_number += 4;
7509           /* Itbl support may require additional care here.  */
7510           macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7511                        BFD_RELOC_LO16, AT);
7512           if (mips_relax.sequence)
7513             relax_end ();
7514         }
7515       else if (!mips_big_got)
7516         {
7517           /* If this is a reference to an external symbol, we want
7518                lw       $at,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
7519                nop
7520                <op>     $treg,0($at)
7521                <op>     $treg+1,4($at)
7522              Otherwise we want
7523                lw       $at,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
7524                nop
7525                <op>     $treg,<sym>($at)        (BFD_RELOC_LO16)
7526                <op>     $treg+1,<sym>+4($at)    (BFD_RELOC_LO16)
7527              If there is a base register we add it to $at before the
7528              lwc1 instructions.  If there is a constant we include it
7529              in the lwc1 instructions.  */
7530           used_at = 1;
7531           expr1.X_add_number = offset_expr.X_add_number;
7532           if (expr1.X_add_number < -0x8000
7533               || expr1.X_add_number >= 0x8000 - 4)
7534             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7535           load_got_offset (AT, &offset_expr);
7536           load_delay_nop ();
7537           if (breg != 0)
7538             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
7539
7540           /* Set mips_optimize to 2 to avoid inserting an undesired
7541              nop.  */
7542           hold_mips_optimize = mips_optimize;
7543           mips_optimize = 2;
7544
7545           /* Itbl support may require additional care here.  */
7546           relax_start (offset_expr.X_add_symbol);
7547           macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
7548                        BFD_RELOC_LO16, AT);
7549           expr1.X_add_number += 4;
7550           macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
7551                        BFD_RELOC_LO16, AT);
7552           relax_switch ();
7553           macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7554                        BFD_RELOC_LO16, AT);
7555           offset_expr.X_add_number += 4;
7556           macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7557                        BFD_RELOC_LO16, AT);
7558           relax_end ();
7559
7560           mips_optimize = hold_mips_optimize;
7561         }
7562       else if (mips_big_got)
7563         {
7564           int gpdelay;
7565
7566           /* If this is a reference to an external symbol, we want
7567                lui      $at,<sym>               (BFD_RELOC_MIPS_GOT_HI16)
7568                addu     $at,$at,$gp
7569                lw       $at,<sym>($at)          (BFD_RELOC_MIPS_GOT_LO16)
7570                nop
7571                <op>     $treg,0($at)
7572                <op>     $treg+1,4($at)
7573              Otherwise we want
7574                lw       $at,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
7575                nop
7576                <op>     $treg,<sym>($at)        (BFD_RELOC_LO16)
7577                <op>     $treg+1,<sym>+4($at)    (BFD_RELOC_LO16)
7578              If there is a base register we add it to $at before the
7579              lwc1 instructions.  If there is a constant we include it
7580              in the lwc1 instructions.  */
7581           used_at = 1;
7582           expr1.X_add_number = offset_expr.X_add_number;
7583           offset_expr.X_add_number = 0;
7584           if (expr1.X_add_number < -0x8000
7585               || expr1.X_add_number >= 0x8000 - 4)
7586             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7587           gpdelay = reg_needs_delay (mips_gp_register);
7588           relax_start (offset_expr.X_add_symbol);
7589           macro_build (&offset_expr, "lui", "t,u",
7590                        AT, BFD_RELOC_MIPS_GOT_HI16);
7591           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7592                        AT, AT, mips_gp_register);
7593           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7594                        AT, BFD_RELOC_MIPS_GOT_LO16, AT);
7595           load_delay_nop ();
7596           if (breg != 0)
7597             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
7598           /* Itbl support may require additional care here.  */
7599           macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
7600                        BFD_RELOC_LO16, AT);
7601           expr1.X_add_number += 4;
7602
7603           /* Set mips_optimize to 2 to avoid inserting an undesired
7604              nop.  */
7605           hold_mips_optimize = mips_optimize;
7606           mips_optimize = 2;
7607           /* Itbl support may require additional care here.  */
7608           macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
7609                        BFD_RELOC_LO16, AT);
7610           mips_optimize = hold_mips_optimize;
7611           expr1.X_add_number -= 4;
7612
7613           relax_switch ();
7614           offset_expr.X_add_number = expr1.X_add_number;
7615           if (gpdelay)
7616             macro_build (NULL, "nop", "");
7617           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
7618                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
7619           load_delay_nop ();
7620           if (breg != 0)
7621             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
7622           /* Itbl support may require additional care here.  */
7623           macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7624                        BFD_RELOC_LO16, AT);
7625           offset_expr.X_add_number += 4;
7626
7627           /* Set mips_optimize to 2 to avoid inserting an undesired
7628              nop.  */
7629           hold_mips_optimize = mips_optimize;
7630           mips_optimize = 2;
7631           /* Itbl support may require additional care here.  */
7632           macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7633                        BFD_RELOC_LO16, AT);
7634           mips_optimize = hold_mips_optimize;
7635           relax_end ();
7636         }
7637       else
7638         abort ();
7639
7640       break;
7641
7642     case M_LD_OB:
7643       s = HAVE_64BIT_GPRS ? "ld" : "lw";
7644       goto sd_ob;
7645     case M_SD_OB:
7646       s = HAVE_64BIT_GPRS ? "sd" : "sw";
7647     sd_ob:
7648       macro_build (&offset_expr, s, "t,o(b)", treg,
7649                    -1, offset_reloc[0], offset_reloc[1], offset_reloc[2],
7650                    breg);
7651       if (!HAVE_64BIT_GPRS)
7652         {
7653           offset_expr.X_add_number += 4;
7654           macro_build (&offset_expr, s, "t,o(b)", treg + 1,
7655                        -1, offset_reloc[0], offset_reloc[1], offset_reloc[2],
7656                        breg);
7657         }
7658       break;
7659
7660    /* New code added to support COPZ instructions.
7661       This code builds table entries out of the macros in mip_opcodes.
7662       R4000 uses interlocks to handle coproc delays.
7663       Other chips (like the R3000) require nops to be inserted for delays.
7664
7665       FIXME: Currently, we require that the user handle delays.
7666       In order to fill delay slots for non-interlocked chips,
7667       we must have a way to specify delays based on the coprocessor.
7668       Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
7669       What are the side-effects of the cop instruction?
7670       What cache support might we have and what are its effects?
7671       Both coprocessor & memory require delays. how long???
7672       What registers are read/set/modified?
7673
7674       If an itbl is provided to interpret cop instructions,
7675       this knowledge can be encoded in the itbl spec.  */
7676
7677     case M_COP0:
7678       s = "c0";
7679       goto copz;
7680     case M_COP1:
7681       s = "c1";
7682       goto copz;
7683     case M_COP2:
7684       s = "c2";
7685       goto copz;
7686     case M_COP3:
7687       s = "c3";
7688     copz:
7689       if (NO_ISA_COP (mips_opts.arch)
7690           && (ip->insn_mo->pinfo2 & INSN2_M_FP_S) == 0)
7691         {
7692           as_bad (_("opcode not supported on this processor: %s"),
7693                   mips_cpu_info_from_arch (mips_opts.arch)->name);
7694           break;
7695         }
7696
7697       /* For now we just do C (same as Cz).  The parameter will be
7698          stored in insn_opcode by mips_ip.  */
7699       macro_build (NULL, s, "C", ip->insn_opcode);
7700       break;
7701
7702     case M_MOVE:
7703       move_register (dreg, sreg);
7704       break;
7705
7706     case M_DMUL:
7707       dbl = 1;
7708     case M_MUL:
7709       macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
7710       macro_build (NULL, "mflo", "d", dreg);
7711       break;
7712
7713     case M_DMUL_I:
7714       dbl = 1;
7715     case M_MUL_I:
7716       /* The MIPS assembler some times generates shifts and adds.  I'm
7717          not trying to be that fancy. GCC should do this for us
7718          anyway.  */
7719       used_at = 1;
7720       load_register (AT, &imm_expr, dbl);
7721       macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT);
7722       macro_build (NULL, "mflo", "d", dreg);
7723       break;
7724
7725     case M_DMULO_I:
7726       dbl = 1;
7727     case M_MULO_I:
7728       imm = 1;
7729       goto do_mulo;
7730
7731     case M_DMULO:
7732       dbl = 1;
7733     case M_MULO:
7734     do_mulo:
7735       start_noreorder ();
7736       used_at = 1;
7737       if (imm)
7738         load_register (AT, &imm_expr, dbl);
7739       macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
7740       macro_build (NULL, "mflo", "d", dreg);
7741       macro_build (NULL, dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA);
7742       macro_build (NULL, "mfhi", "d", AT);
7743       if (mips_trap)
7744         macro_build (NULL, "tne", "s,t,q", dreg, AT, 6);
7745       else
7746         {
7747           expr1.X_add_number = 8;
7748           macro_build (&expr1, "beq", "s,t,p", dreg, AT);
7749           macro_build (NULL, "nop", "");
7750           macro_build (NULL, "break", "c", 6);
7751         }
7752       end_noreorder ();
7753       macro_build (NULL, "mflo", "d", dreg);
7754       break;
7755
7756     case M_DMULOU_I:
7757       dbl = 1;
7758     case M_MULOU_I:
7759       imm = 1;
7760       goto do_mulou;
7761
7762     case M_DMULOU:
7763       dbl = 1;
7764     case M_MULOU:
7765     do_mulou:
7766       start_noreorder ();
7767       used_at = 1;
7768       if (imm)
7769         load_register (AT, &imm_expr, dbl);
7770       macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
7771                    sreg, imm ? AT : treg);
7772       macro_build (NULL, "mfhi", "d", AT);
7773       macro_build (NULL, "mflo", "d", dreg);
7774       if (mips_trap)
7775         macro_build (NULL, "tne", "s,t,q", AT, ZERO, 6);
7776       else
7777         {
7778           expr1.X_add_number = 8;
7779           macro_build (&expr1, "beq", "s,t,p", AT, ZERO);
7780           macro_build (NULL, "nop", "");
7781           macro_build (NULL, "break", "c", 6);
7782         }
7783       end_noreorder ();
7784       break;
7785
7786     case M_DROL:
7787       if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
7788         {
7789           if (dreg == sreg)
7790             {
7791               tempreg = AT;
7792               used_at = 1;
7793             }
7794           else
7795             {
7796               tempreg = dreg;
7797             }
7798           macro_build (NULL, "dnegu", "d,w", tempreg, treg);
7799           macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg);
7800           break;
7801         }
7802       used_at = 1;
7803       macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
7804       macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT);
7805       macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg);
7806       macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7807       break;
7808
7809     case M_ROL:
7810       if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7811         {
7812           if (dreg == sreg)
7813             {
7814               tempreg = AT;
7815               used_at = 1;
7816             }
7817           else
7818             {
7819               tempreg = dreg;
7820             }
7821           macro_build (NULL, "negu", "d,w", tempreg, treg);
7822           macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg);
7823           break;
7824         }
7825       used_at = 1;
7826       macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
7827       macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT);
7828       macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg);
7829       macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7830       break;
7831
7832     case M_DROL_I:
7833       {
7834         unsigned int rot;
7835         char *l;
7836         char *rr;
7837
7838         if (imm_expr.X_op != O_constant)
7839           as_bad (_("Improper rotate count"));
7840         rot = imm_expr.X_add_number & 0x3f;
7841         if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
7842           {
7843             rot = (64 - rot) & 0x3f;
7844             if (rot >= 32)
7845               macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
7846             else
7847               macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
7848             break;
7849           }
7850         if (rot == 0)
7851           {
7852             macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
7853             break;
7854           }
7855         l = (rot < 0x20) ? "dsll" : "dsll32";
7856         rr = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
7857         rot &= 0x1f;
7858         used_at = 1;
7859         macro_build (NULL, l, "d,w,<", AT, sreg, rot);
7860         macro_build (NULL, rr, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7861         macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7862       }
7863       break;
7864
7865     case M_ROL_I:
7866       {
7867         unsigned int rot;
7868
7869         if (imm_expr.X_op != O_constant)
7870           as_bad (_("Improper rotate count"));
7871         rot = imm_expr.X_add_number & 0x1f;
7872         if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7873           {
7874             macro_build (NULL, "ror", "d,w,<", dreg, sreg, (32 - rot) & 0x1f);
7875             break;
7876           }
7877         if (rot == 0)
7878           {
7879             macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
7880             break;
7881           }
7882         used_at = 1;
7883         macro_build (NULL, "sll", "d,w,<", AT, sreg, rot);
7884         macro_build (NULL, "srl", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7885         macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7886       }
7887       break;
7888
7889     case M_DROR:
7890       if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
7891         {
7892           macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg);
7893           break;
7894         }
7895       used_at = 1;
7896       macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
7897       macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT);
7898       macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
7899       macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7900       break;
7901
7902     case M_ROR:
7903       if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7904         {
7905           macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg);
7906           break;
7907         }
7908       used_at = 1;
7909       macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
7910       macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT);
7911       macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg);
7912       macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7913       break;
7914
7915     case M_DROR_I:
7916       {
7917         unsigned int rot;
7918         char *l;
7919         char *rr;
7920
7921         if (imm_expr.X_op != O_constant)
7922           as_bad (_("Improper rotate count"));
7923         rot = imm_expr.X_add_number & 0x3f;
7924         if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
7925           {
7926             if (rot >= 32)
7927               macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
7928             else
7929               macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
7930             break;
7931           }
7932         if (rot == 0)
7933           {
7934             macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
7935             break;
7936           }
7937         rr = (rot < 0x20) ? "dsrl" : "dsrl32";
7938         l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
7939         rot &= 0x1f;
7940         used_at = 1;
7941         macro_build (NULL, rr, "d,w,<", AT, sreg, rot);
7942         macro_build (NULL, l, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7943         macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7944       }
7945       break;
7946
7947     case M_ROR_I:
7948       {
7949         unsigned int rot;
7950
7951         if (imm_expr.X_op != O_constant)
7952           as_bad (_("Improper rotate count"));
7953         rot = imm_expr.X_add_number & 0x1f;
7954         if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7955           {
7956             macro_build (NULL, "ror", "d,w,<", dreg, sreg, rot);
7957             break;
7958           }
7959         if (rot == 0)
7960           {
7961             macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
7962             break;
7963           }
7964         used_at = 1;
7965         macro_build (NULL, "srl", "d,w,<", AT, sreg, rot);
7966         macro_build (NULL, "sll", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7967         macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7968       }
7969       break;
7970
7971     case M_SEQ:
7972       if (sreg == 0)
7973         macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
7974       else if (treg == 0)
7975         macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7976       else
7977         {
7978           macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7979           macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
7980         }
7981       break;
7982
7983     case M_SEQ_I:
7984       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7985         {
7986           macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7987           break;
7988         }
7989       if (sreg == 0)
7990         {
7991           as_warn (_("Instruction %s: result is always false"),
7992                    ip->insn_mo->name);
7993           move_register (dreg, 0);
7994           break;
7995         }
7996       if (CPU_HAS_SEQ (mips_opts.arch)
7997           && -512 <= imm_expr.X_add_number
7998           && imm_expr.X_add_number < 512)
7999         {
8000           macro_build (NULL, "seqi", "t,r,+Q", dreg, sreg,
8001                        (int) imm_expr.X_add_number);
8002           break;
8003         }
8004       if (imm_expr.X_op == O_constant
8005           && imm_expr.X_add_number >= 0
8006           && imm_expr.X_add_number < 0x10000)
8007         {
8008           macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
8009         }
8010       else if (imm_expr.X_op == O_constant
8011                && imm_expr.X_add_number > -0x8000
8012                && imm_expr.X_add_number < 0)
8013         {
8014           imm_expr.X_add_number = -imm_expr.X_add_number;
8015           macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
8016                        "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8017         }
8018       else if (CPU_HAS_SEQ (mips_opts.arch))
8019         {
8020           used_at = 1;
8021           load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8022           macro_build (NULL, "seq", "d,v,t", dreg, sreg, AT);
8023           break;
8024         }
8025       else
8026         {
8027           load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8028           macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
8029           used_at = 1;
8030         }
8031       macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
8032       break;
8033
8034     case M_SGE:         /* sreg >= treg <==> not (sreg < treg) */
8035       s = "slt";
8036       goto sge;
8037     case M_SGEU:
8038       s = "sltu";
8039     sge:
8040       macro_build (NULL, s, "d,v,t", dreg, sreg, treg);
8041       macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8042       break;
8043
8044     case M_SGE_I:               /* sreg >= I <==> not (sreg < I) */
8045     case M_SGEU_I:
8046       if (imm_expr.X_op == O_constant
8047           && imm_expr.X_add_number >= -0x8000
8048           && imm_expr.X_add_number < 0x8000)
8049         {
8050           macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
8051                        dreg, sreg, BFD_RELOC_LO16);
8052         }
8053       else
8054         {
8055           load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8056           macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
8057                        dreg, sreg, AT);
8058           used_at = 1;
8059         }
8060       macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8061       break;
8062
8063     case M_SGT:         /* sreg > treg  <==>  treg < sreg */
8064       s = "slt";
8065       goto sgt;
8066     case M_SGTU:
8067       s = "sltu";
8068     sgt:
8069       macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
8070       break;
8071
8072     case M_SGT_I:               /* sreg > I  <==>  I < sreg */
8073       s = "slt";
8074       goto sgti;
8075     case M_SGTU_I:
8076       s = "sltu";
8077     sgti:
8078       used_at = 1;
8079       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8080       macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
8081       break;
8082
8083     case M_SLE: /* sreg <= treg  <==>  treg >= sreg  <==>  not (treg < sreg) */
8084       s = "slt";
8085       goto sle;
8086     case M_SLEU:
8087       s = "sltu";
8088     sle:
8089       macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
8090       macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8091       break;
8092
8093     case M_SLE_I:       /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
8094       s = "slt";
8095       goto slei;
8096     case M_SLEU_I:
8097       s = "sltu";
8098     slei:
8099       used_at = 1;
8100       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8101       macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
8102       macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8103       break;
8104
8105     case M_SLT_I:
8106       if (imm_expr.X_op == O_constant
8107           && imm_expr.X_add_number >= -0x8000
8108           && imm_expr.X_add_number < 0x8000)
8109         {
8110           macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8111           break;
8112         }
8113       used_at = 1;
8114       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8115       macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT);
8116       break;
8117
8118     case M_SLTU_I:
8119       if (imm_expr.X_op == O_constant
8120           && imm_expr.X_add_number >= -0x8000
8121           && imm_expr.X_add_number < 0x8000)
8122         {
8123           macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg,
8124                        BFD_RELOC_LO16);
8125           break;
8126         }
8127       used_at = 1;
8128       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8129       macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT);
8130       break;
8131
8132     case M_SNE:
8133       if (sreg == 0)
8134         macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg);
8135       else if (treg == 0)
8136         macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
8137       else
8138         {
8139           macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
8140           macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
8141         }
8142       break;
8143
8144     case M_SNE_I:
8145       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
8146         {
8147           macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
8148           break;
8149         }
8150       if (sreg == 0)
8151         {
8152           as_warn (_("Instruction %s: result is always true"),
8153                    ip->insn_mo->name);
8154           macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
8155                        dreg, 0, BFD_RELOC_LO16);
8156           break;
8157         }
8158       if (CPU_HAS_SEQ (mips_opts.arch)
8159           && -512 <= imm_expr.X_add_number
8160           && imm_expr.X_add_number < 512)
8161         {
8162           macro_build (NULL, "snei", "t,r,+Q", dreg, sreg,
8163                        (int) imm_expr.X_add_number);
8164           break;
8165         }
8166       if (imm_expr.X_op == O_constant
8167           && imm_expr.X_add_number >= 0
8168           && imm_expr.X_add_number < 0x10000)
8169         {
8170           macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
8171         }
8172       else if (imm_expr.X_op == O_constant
8173                && imm_expr.X_add_number > -0x8000
8174                && imm_expr.X_add_number < 0)
8175         {
8176           imm_expr.X_add_number = -imm_expr.X_add_number;
8177           macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
8178                        "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8179         }
8180       else if (CPU_HAS_SEQ (mips_opts.arch))
8181         {
8182           used_at = 1;
8183           load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8184           macro_build (NULL, "sne", "d,v,t", dreg, sreg, AT);
8185           break;
8186         }
8187       else
8188         {
8189           load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8190           macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
8191           used_at = 1;
8192         }
8193       macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
8194       break;
8195
8196     case M_DSUB_I:
8197       dbl = 1;
8198     case M_SUB_I:
8199       if (imm_expr.X_op == O_constant
8200           && imm_expr.X_add_number > -0x8000
8201           && imm_expr.X_add_number <= 0x8000)
8202         {
8203           imm_expr.X_add_number = -imm_expr.X_add_number;
8204           macro_build (&imm_expr, dbl ? "daddi" : "addi", "t,r,j",
8205                        dreg, sreg, BFD_RELOC_LO16);
8206           break;
8207         }
8208       used_at = 1;
8209       load_register (AT, &imm_expr, dbl);
8210       macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
8211       break;
8212
8213     case M_DSUBU_I:
8214       dbl = 1;
8215     case M_SUBU_I:
8216       if (imm_expr.X_op == O_constant
8217           && imm_expr.X_add_number > -0x8000
8218           && imm_expr.X_add_number <= 0x8000)
8219         {
8220           imm_expr.X_add_number = -imm_expr.X_add_number;
8221           macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "t,r,j",
8222                        dreg, sreg, BFD_RELOC_LO16);
8223           break;
8224         }
8225       used_at = 1;
8226       load_register (AT, &imm_expr, dbl);
8227       macro_build (NULL, dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
8228       break;
8229
8230     case M_TEQ_I:
8231       s = "teq";
8232       goto trap;
8233     case M_TGE_I:
8234       s = "tge";
8235       goto trap;
8236     case M_TGEU_I:
8237       s = "tgeu";
8238       goto trap;
8239     case M_TLT_I:
8240       s = "tlt";
8241       goto trap;
8242     case M_TLTU_I:
8243       s = "tltu";
8244       goto trap;
8245     case M_TNE_I:
8246       s = "tne";
8247     trap:
8248       used_at = 1;
8249       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8250       macro_build (NULL, s, "s,t", sreg, AT);
8251       break;
8252
8253     case M_TRUNCWS:
8254     case M_TRUNCWD:
8255       gas_assert (mips_opts.isa == ISA_MIPS1);
8256       used_at = 1;
8257       sreg = (ip->insn_opcode >> 11) & 0x1f;    /* floating reg */
8258       dreg = (ip->insn_opcode >> 06) & 0x1f;    /* floating reg */
8259
8260       /*
8261        * Is the double cfc1 instruction a bug in the mips assembler;
8262        * or is there a reason for it?
8263        */
8264       start_noreorder ();
8265       macro_build (NULL, "cfc1", "t,G", treg, RA);
8266       macro_build (NULL, "cfc1", "t,G", treg, RA);
8267       macro_build (NULL, "nop", "");
8268       expr1.X_add_number = 3;
8269       macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16);
8270       expr1.X_add_number = 2;
8271       macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
8272       macro_build (NULL, "ctc1", "t,G", AT, RA);
8273       macro_build (NULL, "nop", "");
8274       macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
8275                    dreg, sreg);
8276       macro_build (NULL, "ctc1", "t,G", treg, RA);
8277       macro_build (NULL, "nop", "");
8278       end_noreorder ();
8279       break;
8280
8281     case M_ULH:
8282       s = "lb";
8283       goto ulh;
8284     case M_ULHU:
8285       s = "lbu";
8286     ulh:
8287       used_at = 1;
8288       if (offset_expr.X_add_number >= 0x7fff)
8289         as_bad (_("Operand overflow"));
8290       if (!target_big_endian)
8291         ++offset_expr.X_add_number;
8292       macro_build (&offset_expr, s, "t,o(b)", AT, BFD_RELOC_LO16, breg);
8293       if (!target_big_endian)
8294         --offset_expr.X_add_number;
8295       else
8296         ++offset_expr.X_add_number;
8297       macro_build (&offset_expr, "lbu", "t,o(b)", treg, BFD_RELOC_LO16, breg);
8298       macro_build (NULL, "sll", "d,w,<", AT, AT, 8);
8299       macro_build (NULL, "or", "d,v,t", treg, treg, AT);
8300       break;
8301
8302     case M_ULD:
8303       s = "ldl";
8304       s2 = "ldr";
8305       off = 7;
8306       goto ulw;
8307     case M_ULW:
8308       s = "lwl";
8309       s2 = "lwr";
8310       off = 3;
8311     ulw:
8312       if (offset_expr.X_add_number >= 0x8000 - off)
8313         as_bad (_("Operand overflow"));
8314       if (treg != breg)
8315         tempreg = treg;
8316       else
8317         {
8318           used_at = 1;
8319           tempreg = AT;
8320         }
8321       if (!target_big_endian)
8322         offset_expr.X_add_number += off;
8323       macro_build (&offset_expr, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
8324       if (!target_big_endian)
8325         offset_expr.X_add_number -= off;
8326       else
8327         offset_expr.X_add_number += off;
8328       macro_build (&offset_expr, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
8329
8330       /* If necessary, move the result in tempreg to the final destination.  */
8331       if (treg == tempreg)
8332         break;
8333       /* Protect second load's delay slot.  */
8334       load_delay_nop ();
8335       move_register (treg, tempreg);
8336       break;
8337
8338     case M_ULD_A:
8339       s = "ldl";
8340       s2 = "ldr";
8341       off = 7;
8342       goto ulwa;
8343     case M_ULW_A:
8344       s = "lwl";
8345       s2 = "lwr";
8346       off = 3;
8347     ulwa:
8348       used_at = 1;
8349       load_address (AT, &offset_expr, &used_at);
8350       if (breg != 0)
8351         macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8352       if (!target_big_endian)
8353         expr1.X_add_number = off;
8354       else
8355         expr1.X_add_number = 0;
8356       macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8357       if (!target_big_endian)
8358         expr1.X_add_number = 0;
8359       else
8360         expr1.X_add_number = off;
8361       macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8362       break;
8363
8364     case M_ULH_A:
8365     case M_ULHU_A:
8366       used_at = 1;
8367       load_address (AT, &offset_expr, &used_at);
8368       if (breg != 0)
8369         macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8370       if (target_big_endian)
8371         expr1.X_add_number = 0;
8372       macro_build (&expr1, mask == M_ULH_A ? "lb" : "lbu", "t,o(b)",
8373                    treg, BFD_RELOC_LO16, AT);
8374       if (target_big_endian)
8375         expr1.X_add_number = 1;
8376       else
8377         expr1.X_add_number = 0;
8378       macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
8379       macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
8380       macro_build (NULL, "or", "d,v,t", treg, treg, AT);
8381       break;
8382
8383     case M_USH:
8384       used_at = 1;
8385       if (offset_expr.X_add_number >= 0x7fff)
8386         as_bad (_("Operand overflow"));
8387       if (target_big_endian)
8388         ++offset_expr.X_add_number;
8389       macro_build (&offset_expr, "sb", "t,o(b)", treg, BFD_RELOC_LO16, breg);
8390       macro_build (NULL, "srl", "d,w,<", AT, treg, 8);
8391       if (target_big_endian)
8392         --offset_expr.X_add_number;
8393       else
8394         ++offset_expr.X_add_number;
8395       macro_build (&offset_expr, "sb", "t,o(b)", AT, BFD_RELOC_LO16, breg);
8396       break;
8397
8398     case M_USD:
8399       s = "sdl";
8400       s2 = "sdr";
8401       off = 7;
8402       goto usw;
8403     case M_USW:
8404       s = "swl";
8405       s2 = "swr";
8406       off = 3;
8407     usw:
8408       if (offset_expr.X_add_number >= 0x8000 - off)
8409         as_bad (_("Operand overflow"));
8410       if (!target_big_endian)
8411         offset_expr.X_add_number += off;
8412       macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
8413       if (!target_big_endian)
8414         offset_expr.X_add_number -= off;
8415       else
8416         offset_expr.X_add_number += off;
8417       macro_build (&offset_expr, s2, "t,o(b)", treg, BFD_RELOC_LO16, breg);
8418       break;
8419
8420     case M_USD_A:
8421       s = "sdl";
8422       s2 = "sdr";
8423       off = 7;
8424       goto uswa;
8425     case M_USW_A:
8426       s = "swl";
8427       s2 = "swr";
8428       off = 3;
8429     uswa:
8430       used_at = 1;
8431       load_address (AT, &offset_expr, &used_at);
8432       if (breg != 0)
8433         macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8434       if (!target_big_endian)
8435         expr1.X_add_number = off;
8436       else
8437         expr1.X_add_number = 0;
8438       macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8439       if (!target_big_endian)
8440         expr1.X_add_number = 0;
8441       else
8442         expr1.X_add_number = off;
8443       macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8444       break;
8445
8446     case M_USH_A:
8447       used_at = 1;
8448       load_address (AT, &offset_expr, &used_at);
8449       if (breg != 0)
8450         macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8451       if (!target_big_endian)
8452         expr1.X_add_number = 0;
8453       macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
8454       macro_build (NULL, "srl", "d,w,<", treg, treg, 8);
8455       if (!target_big_endian)
8456         expr1.X_add_number = 1;
8457       else
8458         expr1.X_add_number = 0;
8459       macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
8460       if (!target_big_endian)
8461         expr1.X_add_number = 0;
8462       else
8463         expr1.X_add_number = 1;
8464       macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
8465       macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
8466       macro_build (NULL, "or", "d,v,t", treg, treg, AT);
8467       break;
8468
8469     default:
8470       /* FIXME: Check if this is one of the itbl macros, since they
8471          are added dynamically.  */
8472       as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
8473       break;
8474     }
8475   if (!mips_opts.at && used_at)
8476     as_bad (_("Macro used $at after \".set noat\""));
8477 }
8478
8479 /* Implement macros in mips16 mode.  */
8480
8481 static void
8482 mips16_macro (struct mips_cl_insn *ip)
8483 {
8484   int mask;
8485   int xreg, yreg, zreg, tmp;
8486   expressionS expr1;
8487   int dbl;
8488   const char *s, *s2, *s3;
8489
8490   mask = ip->insn_mo->mask;
8491
8492   xreg = MIPS16_EXTRACT_OPERAND (RX, *ip);
8493   yreg = MIPS16_EXTRACT_OPERAND (RY, *ip);
8494   zreg = MIPS16_EXTRACT_OPERAND (RZ, *ip);
8495
8496   expr1.X_op = O_constant;
8497   expr1.X_op_symbol = NULL;
8498   expr1.X_add_symbol = NULL;
8499   expr1.X_add_number = 1;
8500
8501   dbl = 0;
8502
8503   switch (mask)
8504     {
8505     default:
8506       internalError ();
8507
8508     case M_DDIV_3:
8509       dbl = 1;
8510     case M_DIV_3:
8511       s = "mflo";
8512       goto do_div3;
8513     case M_DREM_3:
8514       dbl = 1;
8515     case M_REM_3:
8516       s = "mfhi";
8517     do_div3:
8518       start_noreorder ();
8519       macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg);
8520       expr1.X_add_number = 2;
8521       macro_build (&expr1, "bnez", "x,p", yreg);
8522       macro_build (NULL, "break", "6", 7);
8523
8524       /* FIXME: The normal code checks for of -1 / -0x80000000 here,
8525          since that causes an overflow.  We should do that as well,
8526          but I don't see how to do the comparisons without a temporary
8527          register.  */
8528       end_noreorder ();
8529       macro_build (NULL, s, "x", zreg);
8530       break;
8531
8532     case M_DIVU_3:
8533       s = "divu";
8534       s2 = "mflo";
8535       goto do_divu3;
8536     case M_REMU_3:
8537       s = "divu";
8538       s2 = "mfhi";
8539       goto do_divu3;
8540     case M_DDIVU_3:
8541       s = "ddivu";
8542       s2 = "mflo";
8543       goto do_divu3;
8544     case M_DREMU_3:
8545       s = "ddivu";
8546       s2 = "mfhi";
8547     do_divu3:
8548       start_noreorder ();
8549       macro_build (NULL, s, "0,x,y", xreg, yreg);
8550       expr1.X_add_number = 2;
8551       macro_build (&expr1, "bnez", "x,p", yreg);
8552       macro_build (NULL, "break", "6", 7);
8553       end_noreorder ();
8554       macro_build (NULL, s2, "x", zreg);
8555       break;
8556
8557     case M_DMUL:
8558       dbl = 1;
8559     case M_MUL:
8560       macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
8561       macro_build (NULL, "mflo", "x", zreg);
8562       break;
8563
8564     case M_DSUBU_I:
8565       dbl = 1;
8566       goto do_subu;
8567     case M_SUBU_I:
8568     do_subu:
8569       if (imm_expr.X_op != O_constant)
8570         as_bad (_("Unsupported large constant"));
8571       imm_expr.X_add_number = -imm_expr.X_add_number;
8572       macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
8573       break;
8574
8575     case M_SUBU_I_2:
8576       if (imm_expr.X_op != O_constant)
8577         as_bad (_("Unsupported large constant"));
8578       imm_expr.X_add_number = -imm_expr.X_add_number;
8579       macro_build (&imm_expr, "addiu", "x,k", xreg);
8580       break;
8581
8582     case M_DSUBU_I_2:
8583       if (imm_expr.X_op != O_constant)
8584         as_bad (_("Unsupported large constant"));
8585       imm_expr.X_add_number = -imm_expr.X_add_number;
8586       macro_build (&imm_expr, "daddiu", "y,j", yreg);
8587       break;
8588
8589     case M_BEQ:
8590       s = "cmp";
8591       s2 = "bteqz";
8592       goto do_branch;
8593     case M_BNE:
8594       s = "cmp";
8595       s2 = "btnez";
8596       goto do_branch;
8597     case M_BLT:
8598       s = "slt";
8599       s2 = "btnez";
8600       goto do_branch;
8601     case M_BLTU:
8602       s = "sltu";
8603       s2 = "btnez";
8604       goto do_branch;
8605     case M_BLE:
8606       s = "slt";
8607       s2 = "bteqz";
8608       goto do_reverse_branch;
8609     case M_BLEU:
8610       s = "sltu";
8611       s2 = "bteqz";
8612       goto do_reverse_branch;
8613     case M_BGE:
8614       s = "slt";
8615       s2 = "bteqz";
8616       goto do_branch;
8617     case M_BGEU:
8618       s = "sltu";
8619       s2 = "bteqz";
8620       goto do_branch;
8621     case M_BGT:
8622       s = "slt";
8623       s2 = "btnez";
8624       goto do_reverse_branch;
8625     case M_BGTU:
8626       s = "sltu";
8627       s2 = "btnez";
8628
8629     do_reverse_branch:
8630       tmp = xreg;
8631       xreg = yreg;
8632       yreg = tmp;
8633
8634     do_branch:
8635       macro_build (NULL, s, "x,y", xreg, yreg);
8636       macro_build (&offset_expr, s2, "p");
8637       break;
8638
8639     case M_BEQ_I:
8640       s = "cmpi";
8641       s2 = "bteqz";
8642       s3 = "x,U";
8643       goto do_branch_i;
8644     case M_BNE_I:
8645       s = "cmpi";
8646       s2 = "btnez";
8647       s3 = "x,U";
8648       goto do_branch_i;
8649     case M_BLT_I:
8650       s = "slti";
8651       s2 = "btnez";
8652       s3 = "x,8";
8653       goto do_branch_i;
8654     case M_BLTU_I:
8655       s = "sltiu";
8656       s2 = "btnez";
8657       s3 = "x,8";
8658       goto do_branch_i;
8659     case M_BLE_I:
8660       s = "slti";
8661       s2 = "btnez";
8662       s3 = "x,8";
8663       goto do_addone_branch_i;
8664     case M_BLEU_I:
8665       s = "sltiu";
8666       s2 = "btnez";
8667       s3 = "x,8";
8668       goto do_addone_branch_i;
8669     case M_BGE_I:
8670       s = "slti";
8671       s2 = "bteqz";
8672       s3 = "x,8";
8673       goto do_branch_i;
8674     case M_BGEU_I:
8675       s = "sltiu";
8676       s2 = "bteqz";
8677       s3 = "x,8";
8678       goto do_branch_i;
8679     case M_BGT_I:
8680       s = "slti";
8681       s2 = "bteqz";
8682       s3 = "x,8";
8683       goto do_addone_branch_i;
8684     case M_BGTU_I:
8685       s = "sltiu";
8686       s2 = "bteqz";
8687       s3 = "x,8";
8688
8689     do_addone_branch_i:
8690       if (imm_expr.X_op != O_constant)
8691         as_bad (_("Unsupported large constant"));
8692       ++imm_expr.X_add_number;
8693
8694     do_branch_i:
8695       macro_build (&imm_expr, s, s3, xreg);
8696       macro_build (&offset_expr, s2, "p");
8697       break;
8698
8699     case M_ABS:
8700       expr1.X_add_number = 0;
8701       macro_build (&expr1, "slti", "x,8", yreg);
8702       if (xreg != yreg)
8703         move_register (xreg, yreg);
8704       expr1.X_add_number = 2;
8705       macro_build (&expr1, "bteqz", "p");
8706       macro_build (NULL, "neg", "x,w", xreg, xreg);
8707     }
8708 }
8709
8710 /* For consistency checking, verify that all bits are specified either
8711    by the match/mask part of the instruction definition, or by the
8712    operand list.  */
8713 static int
8714 validate_mips_insn (const struct mips_opcode *opc)
8715 {
8716   const char *p = opc->args;
8717   char c;
8718   unsigned long used_bits = opc->mask;
8719
8720   if ((used_bits & opc->match) != opc->match)
8721     {
8722       as_bad (_("internal: bad mips opcode (mask error): %s %s"),
8723               opc->name, opc->args);
8724       return 0;
8725     }
8726 #define USE_BITS(mask,shift)    (used_bits |= ((mask) << (shift)))
8727   while (*p)
8728     switch (c = *p++)
8729       {
8730       case ',': break;
8731       case '(': break;
8732       case ')': break;
8733       case '+':
8734         switch (c = *p++)
8735           {
8736           case '1': USE_BITS (OP_MASK_UDI1,     OP_SH_UDI1);    break;
8737           case '2': USE_BITS (OP_MASK_UDI2,     OP_SH_UDI2);    break;
8738           case '3': USE_BITS (OP_MASK_UDI3,     OP_SH_UDI3);    break;
8739           case '4': USE_BITS (OP_MASK_UDI4,     OP_SH_UDI4);    break;
8740           case 'A': USE_BITS (OP_MASK_SHAMT,    OP_SH_SHAMT);   break;
8741           case 'B': USE_BITS (OP_MASK_INSMSB,   OP_SH_INSMSB);  break;
8742           case 'C': USE_BITS (OP_MASK_EXTMSBD,  OP_SH_EXTMSBD); break;
8743           case 'D': USE_BITS (OP_MASK_RD,       OP_SH_RD);
8744                     USE_BITS (OP_MASK_SEL,      OP_SH_SEL);     break;
8745           case 'E': USE_BITS (OP_MASK_SHAMT,    OP_SH_SHAMT);   break;
8746           case 'F': USE_BITS (OP_MASK_INSMSB,   OP_SH_INSMSB);  break;
8747           case 'G': USE_BITS (OP_MASK_EXTMSBD,  OP_SH_EXTMSBD); break;
8748           case 'H': USE_BITS (OP_MASK_EXTMSBD,  OP_SH_EXTMSBD); break;
8749           case 'I': break;
8750           case 't': USE_BITS (OP_MASK_RT,       OP_SH_RT);      break;
8751           case 'T': USE_BITS (OP_MASK_RT,       OP_SH_RT);
8752                     USE_BITS (OP_MASK_SEL,      OP_SH_SEL);     break;
8753           case 'x': USE_BITS (OP_MASK_BBITIND,  OP_SH_BBITIND); break;
8754           case 'X': USE_BITS (OP_MASK_BBITIND,  OP_SH_BBITIND); break;
8755           case 'p': USE_BITS (OP_MASK_CINSPOS,  OP_SH_CINSPOS); break;
8756           case 'P': USE_BITS (OP_MASK_CINSPOS,  OP_SH_CINSPOS); break;
8757           case 'Q': USE_BITS (OP_MASK_SEQI,     OP_SH_SEQI);    break;
8758           case 's': USE_BITS (OP_MASK_CINSLM1,  OP_SH_CINSLM1); break;
8759           case 'S': USE_BITS (OP_MASK_CINSLM1,  OP_SH_CINSLM1); break;
8760           case 'z': USE_BITS (OP_MASK_RZ,       OP_SH_RZ);      break;
8761           case 'Z': USE_BITS (OP_MASK_FZ,       OP_SH_FZ);      break;
8762           case 'a': USE_BITS (OP_MASK_OFFSET_A, OP_SH_OFFSET_A); break;
8763           case 'b': USE_BITS (OP_MASK_OFFSET_B, OP_SH_OFFSET_B); break;
8764           case 'c': USE_BITS (OP_MASK_OFFSET_C, OP_SH_OFFSET_C); break;
8765
8766           default:
8767             as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
8768                     c, opc->name, opc->args);
8769             return 0;
8770           }
8771         break;
8772       case '<': USE_BITS (OP_MASK_SHAMT,        OP_SH_SHAMT);   break;
8773       case '>': USE_BITS (OP_MASK_SHAMT,        OP_SH_SHAMT);   break;
8774       case 'A': break;
8775       case 'B': USE_BITS (OP_MASK_CODE20,       OP_SH_CODE20);  break;
8776       case 'C': USE_BITS (OP_MASK_COPZ,         OP_SH_COPZ);    break;
8777       case 'D': USE_BITS (OP_MASK_FD,           OP_SH_FD);      break;
8778       case 'E': USE_BITS (OP_MASK_RT,           OP_SH_RT);      break;
8779       case 'F': break;
8780       case 'G': USE_BITS (OP_MASK_RD,           OP_SH_RD);      break;
8781       case 'H': USE_BITS (OP_MASK_SEL,          OP_SH_SEL);     break;
8782       case 'I': break;
8783       case 'J': USE_BITS (OP_MASK_CODE19,       OP_SH_CODE19);  break;
8784       case 'K': USE_BITS (OP_MASK_RD,           OP_SH_RD);      break;
8785       case 'L': break;
8786       case 'M': USE_BITS (OP_MASK_CCC,          OP_SH_CCC);     break;
8787       case 'N': USE_BITS (OP_MASK_BCC,          OP_SH_BCC);     break;
8788       case 'O': USE_BITS (OP_MASK_ALN,          OP_SH_ALN);     break;
8789       case 'Q': USE_BITS (OP_MASK_VSEL,         OP_SH_VSEL);
8790                 USE_BITS (OP_MASK_FT,           OP_SH_FT);      break;
8791       case 'R': USE_BITS (OP_MASK_FR,           OP_SH_FR);      break;
8792       case 'S': USE_BITS (OP_MASK_FS,           OP_SH_FS);      break;
8793       case 'T': USE_BITS (OP_MASK_FT,           OP_SH_FT);      break;
8794       case 'V': USE_BITS (OP_MASK_FS,           OP_SH_FS);      break;
8795       case 'W': USE_BITS (OP_MASK_FT,           OP_SH_FT);      break;
8796       case 'X': USE_BITS (OP_MASK_FD,           OP_SH_FD);      break;
8797       case 'Y': USE_BITS (OP_MASK_FS,           OP_SH_FS);      break;
8798       case 'Z': USE_BITS (OP_MASK_FT,           OP_SH_FT);      break;
8799       case 'a': USE_BITS (OP_MASK_TARGET,       OP_SH_TARGET);  break;
8800       case 'b': USE_BITS (OP_MASK_RS,           OP_SH_RS);      break;
8801       case 'c': USE_BITS (OP_MASK_CODE,         OP_SH_CODE);    break;
8802       case 'd': USE_BITS (OP_MASK_RD,           OP_SH_RD);      break;
8803       case 'f': break;
8804       case 'h': USE_BITS (OP_MASK_PREFX,        OP_SH_PREFX);   break;
8805       case 'i': USE_BITS (OP_MASK_IMMEDIATE,    OP_SH_IMMEDIATE); break;
8806       case 'j': USE_BITS (OP_MASK_DELTA,        OP_SH_DELTA);   break;
8807       case 'k': USE_BITS (OP_MASK_CACHE,        OP_SH_CACHE);   break;
8808       case 'l': break;
8809       case 'o': USE_BITS (OP_MASK_DELTA,        OP_SH_DELTA);   break;
8810       case 'p': USE_BITS (OP_MASK_DELTA,        OP_SH_DELTA);   break;
8811       case 'q': USE_BITS (OP_MASK_CODE2,        OP_SH_CODE2);   break;
8812       case 'r': USE_BITS (OP_MASK_RS,           OP_SH_RS);      break;
8813       case 's': USE_BITS (OP_MASK_RS,           OP_SH_RS);      break;
8814       case 't': USE_BITS (OP_MASK_RT,           OP_SH_RT);      break;
8815       case 'u': USE_BITS (OP_MASK_IMMEDIATE,    OP_SH_IMMEDIATE); break;
8816       case 'v': USE_BITS (OP_MASK_RS,           OP_SH_RS);      break;
8817       case 'w': USE_BITS (OP_MASK_RT,           OP_SH_RT);      break;
8818       case 'x': break;
8819       case 'z': break;
8820       case 'P': USE_BITS (OP_MASK_PERFREG,      OP_SH_PERFREG); break;
8821       case 'U': USE_BITS (OP_MASK_RD,           OP_SH_RD);
8822                 USE_BITS (OP_MASK_RT,           OP_SH_RT);      break;
8823       case 'e': USE_BITS (OP_MASK_VECBYTE,      OP_SH_VECBYTE); break;
8824       case '%': USE_BITS (OP_MASK_VECALIGN,     OP_SH_VECALIGN); break;
8825       case '[': break;
8826       case ']': break;
8827       case '1': USE_BITS (OP_MASK_SHAMT,        OP_SH_SHAMT);   break;
8828       case '2': USE_BITS (OP_MASK_BP,           OP_SH_BP);      break;
8829       case '3': USE_BITS (OP_MASK_SA3,          OP_SH_SA3);     break;
8830       case '4': USE_BITS (OP_MASK_SA4,          OP_SH_SA4);     break;
8831       case '5': USE_BITS (OP_MASK_IMM8,         OP_SH_IMM8);    break;
8832       case '6': USE_BITS (OP_MASK_RS,           OP_SH_RS);      break;
8833       case '7': USE_BITS (OP_MASK_DSPACC,       OP_SH_DSPACC);  break;
8834       case '8': USE_BITS (OP_MASK_WRDSP,        OP_SH_WRDSP);   break;
8835       case '9': USE_BITS (OP_MASK_DSPACC_S,     OP_SH_DSPACC_S);break;
8836       case '0': USE_BITS (OP_MASK_DSPSFT,       OP_SH_DSPSFT);  break;
8837       case '\'': USE_BITS (OP_MASK_RDDSP,       OP_SH_RDDSP);   break;
8838       case ':': USE_BITS (OP_MASK_DSPSFT_7,     OP_SH_DSPSFT_7);break;
8839       case '@': USE_BITS (OP_MASK_IMM10,        OP_SH_IMM10);   break;
8840       case '!': USE_BITS (OP_MASK_MT_U,         OP_SH_MT_U);    break;
8841       case '$': USE_BITS (OP_MASK_MT_H,         OP_SH_MT_H);    break;
8842       case '*': USE_BITS (OP_MASK_MTACC_T,      OP_SH_MTACC_T); break;
8843       case '&': USE_BITS (OP_MASK_MTACC_D,      OP_SH_MTACC_D); break;
8844       case 'g': USE_BITS (OP_MASK_RD,           OP_SH_RD);      break;
8845       default:
8846         as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
8847                 c, opc->name, opc->args);
8848         return 0;
8849       }
8850 #undef USE_BITS
8851   if (used_bits != 0xffffffff)
8852     {
8853       as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
8854               ~used_bits & 0xffffffff, opc->name, opc->args);
8855       return 0;
8856     }
8857   return 1;
8858 }
8859
8860 /* UDI immediates.  */
8861 struct mips_immed {
8862   char          type;
8863   unsigned int  shift;
8864   unsigned long mask;
8865   const char *  desc;
8866 };
8867
8868 static const struct mips_immed mips_immed[] = {
8869   { '1',        OP_SH_UDI1,     OP_MASK_UDI1,           0},
8870   { '2',        OP_SH_UDI2,     OP_MASK_UDI2,           0},
8871   { '3',        OP_SH_UDI3,     OP_MASK_UDI3,           0},
8872   { '4',        OP_SH_UDI4,     OP_MASK_UDI4,           0},
8873   { 0,0,0,0 }
8874 };
8875
8876 /* Check whether an odd floating-point register is allowed.  */
8877 static int
8878 mips_oddfpreg_ok (const struct mips_opcode *insn, int argnum)
8879 {
8880   const char *s = insn->name;
8881
8882   if (insn->pinfo == INSN_MACRO)
8883     /* Let a macro pass, we'll catch it later when it is expanded.  */
8884     return 1;
8885
8886   if (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa))
8887     {
8888       /* Allow odd registers for single-precision ops.  */
8889       switch (insn->pinfo & (FP_S | FP_D))
8890         {
8891         case FP_S:
8892         case 0:
8893           return 1;     /* both single precision - ok */
8894         case FP_D:
8895           return 0;     /* both double precision - fail */
8896         default:
8897           break;
8898         }
8899
8900       /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand.  */
8901       s = strchr (insn->name, '.');
8902       if (argnum == 2)
8903         s = s != NULL ? strchr (s + 1, '.') : NULL;
8904       return (s != NULL && (s[1] == 'w' || s[1] == 's'));
8905     } 
8906
8907   /* Single-precision coprocessor loads and moves are OK too.  */
8908   if ((insn->pinfo & FP_S)
8909       && (insn->pinfo & (INSN_COPROC_MEMORY_DELAY | INSN_STORE_MEMORY
8910                          | INSN_LOAD_COPROC_DELAY | INSN_COPROC_MOVE_DELAY)))
8911     return 1;
8912
8913   return 0;
8914 }
8915
8916 /* This routine assembles an instruction into its binary format.  As a
8917    side effect, it sets one of the global variables imm_reloc or
8918    offset_reloc to the type of relocation to do if one of the operands
8919    is an address expression.  */
8920
8921 static void
8922 mips_ip (char *str, struct mips_cl_insn *ip)
8923 {
8924   char *s;
8925   const char *args;
8926   char c = 0;
8927   struct mips_opcode *insn;
8928   char *argsStart;
8929   unsigned int regno;
8930   unsigned int lastregno;
8931   unsigned int lastpos = 0;
8932   unsigned int limlo, limhi;
8933   char *s_reset;
8934   char save_c = 0;
8935   offsetT min_range, max_range;
8936   int argnum;
8937   unsigned int rtype;
8938
8939   insn_error = NULL;
8940
8941   /* If the instruction contains a '.', we first try to match an instruction
8942      including the '.'.  Then we try again without the '.'.  */
8943   insn = NULL;
8944   for (s = str; *s != '\0' && !ISSPACE (*s); ++s)
8945     continue;
8946
8947   /* If we stopped on whitespace, then replace the whitespace with null for
8948      the call to hash_find.  Save the character we replaced just in case we
8949      have to re-parse the instruction.  */
8950   if (ISSPACE (*s))
8951     {
8952       save_c = *s;
8953       *s++ = '\0';
8954     }
8955
8956   insn = (struct mips_opcode *) hash_find (op_hash, str);
8957
8958   /* If we didn't find the instruction in the opcode table, try again, but
8959      this time with just the instruction up to, but not including the
8960      first '.'.  */
8961   if (insn == NULL)
8962     {
8963       /* Restore the character we overwrite above (if any).  */
8964       if (save_c)
8965         *(--s) = save_c;
8966
8967       /* Scan up to the first '.' or whitespace.  */
8968       for (s = str;
8969            *s != '\0' && *s != '.' && !ISSPACE (*s);
8970            ++s)
8971         continue;
8972
8973       /* If we did not find a '.', then we can quit now.  */
8974       if (*s != '.')
8975         {
8976           insn_error = _("Unrecognized opcode");
8977           return;
8978         }
8979
8980       /* Lookup the instruction in the hash table.  */
8981       *s++ = '\0';
8982       if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL)
8983         {
8984           insn_error = _("Unrecognized opcode");
8985           return;
8986         }
8987     }
8988
8989   argsStart = s;
8990   for (;;)
8991     {
8992       bfd_boolean ok;
8993
8994       gas_assert (strcmp (insn->name, str) == 0);
8995
8996       ok = is_opcode_valid (insn);
8997       if (! ok)
8998         {
8999           if (insn + 1 < &mips_opcodes[NUMOPCODES]
9000               && strcmp (insn->name, insn[1].name) == 0)
9001             {
9002               ++insn;
9003               continue;
9004             }
9005           else
9006             {
9007               if (!insn_error)
9008                 {
9009                   static char buf[100];
9010                   sprintf (buf,
9011                            _("opcode not supported on this processor: %s (%s)"),
9012                            mips_cpu_info_from_arch (mips_opts.arch)->name,
9013                            mips_cpu_info_from_isa (mips_opts.isa)->name);
9014                   insn_error = buf;
9015                 }
9016               if (save_c)
9017                 *(--s) = save_c;
9018               return;
9019             }
9020         }
9021
9022       create_insn (ip, insn);
9023       insn_error = NULL;
9024       argnum = 1;
9025       lastregno = 0xffffffff;
9026       for (args = insn->args;; ++args)
9027         {
9028           int is_mdmx;
9029
9030           s += strspn (s, " \t");
9031           is_mdmx = 0;
9032           switch (*args)
9033             {
9034             case '\0':          /* end of args */
9035               if (*s == '\0')
9036                 return;
9037               break;
9038
9039             case '2': /* DSP 2-bit unsigned immediate in bit 11.  */
9040               my_getExpression (&imm_expr, s);
9041               check_absolute_expr (ip, &imm_expr);
9042               if ((unsigned long) imm_expr.X_add_number != 1
9043                   && (unsigned long) imm_expr.X_add_number != 3)
9044                 {
9045                   as_bad (_("BALIGN immediate not 1 or 3 (%lu)"),
9046                           (unsigned long) imm_expr.X_add_number);
9047                 }
9048               INSERT_OPERAND (BP, *ip, imm_expr.X_add_number);
9049               imm_expr.X_op = O_absent;
9050               s = expr_end;
9051               continue;
9052
9053             case '3': /* DSP 3-bit unsigned immediate in bit 21.  */
9054               my_getExpression (&imm_expr, s);
9055               check_absolute_expr (ip, &imm_expr);
9056               if (imm_expr.X_add_number & ~OP_MASK_SA3)
9057                 {
9058                   as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9059                           OP_MASK_SA3, (unsigned long) imm_expr.X_add_number);
9060                 }
9061               INSERT_OPERAND (SA3, *ip, imm_expr.X_add_number);
9062               imm_expr.X_op = O_absent;
9063               s = expr_end;
9064               continue;
9065
9066             case '4': /* DSP 4-bit unsigned immediate in bit 21.  */
9067               my_getExpression (&imm_expr, s);
9068               check_absolute_expr (ip, &imm_expr);
9069               if (imm_expr.X_add_number & ~OP_MASK_SA4)
9070                 {
9071                   as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9072                           OP_MASK_SA4, (unsigned long) imm_expr.X_add_number);
9073                 }
9074               INSERT_OPERAND (SA4, *ip, imm_expr.X_add_number);
9075               imm_expr.X_op = O_absent;
9076               s = expr_end;
9077               continue;
9078
9079             case '5': /* DSP 8-bit unsigned immediate in bit 16.  */
9080               my_getExpression (&imm_expr, s);
9081               check_absolute_expr (ip, &imm_expr);
9082               if (imm_expr.X_add_number & ~OP_MASK_IMM8)
9083                 {
9084                   as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9085                           OP_MASK_IMM8, (unsigned long) imm_expr.X_add_number);
9086                 }
9087               INSERT_OPERAND (IMM8, *ip, imm_expr.X_add_number);
9088               imm_expr.X_op = O_absent;
9089               s = expr_end;
9090               continue;
9091
9092             case '6': /* DSP 5-bit unsigned immediate in bit 21.  */
9093               my_getExpression (&imm_expr, s);
9094               check_absolute_expr (ip, &imm_expr);
9095               if (imm_expr.X_add_number & ~OP_MASK_RS)
9096                 {
9097                   as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9098                           OP_MASK_RS, (unsigned long) imm_expr.X_add_number);
9099                 }
9100               INSERT_OPERAND (RS, *ip, imm_expr.X_add_number);
9101               imm_expr.X_op = O_absent;
9102               s = expr_end;
9103               continue;
9104
9105             case '7': /* Four DSP accumulators in bits 11,12.  */
9106               if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
9107                   s[3] >= '0' && s[3] <= '3')
9108                 {
9109                   regno = s[3] - '0';
9110                   s += 4;
9111                   INSERT_OPERAND (DSPACC, *ip, regno);
9112                   continue;
9113                 }
9114               else
9115                 as_bad (_("Invalid dsp acc register"));
9116               break;
9117
9118             case '8': /* DSP 6-bit unsigned immediate in bit 11.  */
9119               my_getExpression (&imm_expr, s);
9120               check_absolute_expr (ip, &imm_expr);
9121               if (imm_expr.X_add_number & ~OP_MASK_WRDSP)
9122                 {
9123                   as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9124                           OP_MASK_WRDSP,
9125                           (unsigned long) imm_expr.X_add_number);
9126                 }
9127               INSERT_OPERAND (WRDSP, *ip, imm_expr.X_add_number);
9128               imm_expr.X_op = O_absent;
9129               s = expr_end;
9130               continue;
9131
9132             case '9': /* Four DSP accumulators in bits 21,22.  */
9133               if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
9134                   s[3] >= '0' && s[3] <= '3')
9135                 {
9136                   regno = s[3] - '0';
9137                   s += 4;
9138                   INSERT_OPERAND (DSPACC_S, *ip, regno);
9139                   continue;
9140                 }
9141               else
9142                 as_bad (_("Invalid dsp acc register"));
9143               break;
9144
9145             case '0': /* DSP 6-bit signed immediate in bit 20.  */
9146               my_getExpression (&imm_expr, s);
9147               check_absolute_expr (ip, &imm_expr);
9148               min_range = -((OP_MASK_DSPSFT + 1) >> 1);
9149               max_range = ((OP_MASK_DSPSFT + 1) >> 1) - 1;
9150               if (imm_expr.X_add_number < min_range ||
9151                   imm_expr.X_add_number > max_range)
9152                 {
9153                   as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
9154                           (long) min_range, (long) max_range,
9155                           (long) imm_expr.X_add_number);
9156                 }
9157               INSERT_OPERAND (DSPSFT, *ip, imm_expr.X_add_number);
9158               imm_expr.X_op = O_absent;
9159               s = expr_end;
9160               continue;
9161
9162             case '\'': /* DSP 6-bit unsigned immediate in bit 16.  */
9163               my_getExpression (&imm_expr, s);
9164               check_absolute_expr (ip, &imm_expr);
9165               if (imm_expr.X_add_number & ~OP_MASK_RDDSP)
9166                 {
9167                   as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9168                           OP_MASK_RDDSP,
9169                           (unsigned long) imm_expr.X_add_number);
9170                 }
9171               INSERT_OPERAND (RDDSP, *ip, imm_expr.X_add_number);
9172               imm_expr.X_op = O_absent;
9173               s = expr_end;
9174               continue;
9175
9176             case ':': /* DSP 7-bit signed immediate in bit 19.  */
9177               my_getExpression (&imm_expr, s);
9178               check_absolute_expr (ip, &imm_expr);
9179               min_range = -((OP_MASK_DSPSFT_7 + 1) >> 1);
9180               max_range = ((OP_MASK_DSPSFT_7 + 1) >> 1) - 1;
9181               if (imm_expr.X_add_number < min_range ||
9182                   imm_expr.X_add_number > max_range)
9183                 {
9184                   as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
9185                           (long) min_range, (long) max_range,
9186                           (long) imm_expr.X_add_number);
9187                 }
9188               INSERT_OPERAND (DSPSFT_7, *ip, imm_expr.X_add_number);
9189               imm_expr.X_op = O_absent;
9190               s = expr_end;
9191               continue;
9192
9193             case '@': /* DSP 10-bit signed immediate in bit 16.  */
9194               my_getExpression (&imm_expr, s);
9195               check_absolute_expr (ip, &imm_expr);
9196               min_range = -((OP_MASK_IMM10 + 1) >> 1);
9197               max_range = ((OP_MASK_IMM10 + 1) >> 1) - 1;
9198               if (imm_expr.X_add_number < min_range ||
9199                   imm_expr.X_add_number > max_range)
9200                 {
9201                   as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
9202                           (long) min_range, (long) max_range,
9203                           (long) imm_expr.X_add_number);
9204                 }
9205               INSERT_OPERAND (IMM10, *ip, imm_expr.X_add_number);
9206               imm_expr.X_op = O_absent;
9207               s = expr_end;
9208               continue;
9209
9210             case '!': /* MT usermode flag bit.  */
9211               my_getExpression (&imm_expr, s);
9212               check_absolute_expr (ip, &imm_expr);
9213               if (imm_expr.X_add_number & ~OP_MASK_MT_U)
9214                 as_bad (_("MT usermode bit not 0 or 1 (%lu)"),
9215                         (unsigned long) imm_expr.X_add_number);
9216               INSERT_OPERAND (MT_U, *ip, imm_expr.X_add_number);
9217               imm_expr.X_op = O_absent;
9218               s = expr_end;
9219               continue;
9220
9221             case '$': /* MT load high flag bit.  */
9222               my_getExpression (&imm_expr, s);
9223               check_absolute_expr (ip, &imm_expr);
9224               if (imm_expr.X_add_number & ~OP_MASK_MT_H)
9225                 as_bad (_("MT load high bit not 0 or 1 (%lu)"),
9226                         (unsigned long) imm_expr.X_add_number);
9227               INSERT_OPERAND (MT_H, *ip, imm_expr.X_add_number);
9228               imm_expr.X_op = O_absent;
9229               s = expr_end;
9230               continue;
9231
9232             case '*': /* Four DSP accumulators in bits 18,19.  */
9233               if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
9234                   s[3] >= '0' && s[3] <= '3')
9235                 {
9236                   regno = s[3] - '0';
9237                   s += 4;
9238                   INSERT_OPERAND (MTACC_T, *ip, regno);
9239                   continue;
9240                 }
9241               else
9242                 as_bad (_("Invalid dsp/smartmips acc register"));
9243               break;
9244
9245             case '&': /* Four DSP accumulators in bits 13,14.  */
9246               if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
9247                   s[3] >= '0' && s[3] <= '3')
9248                 {
9249                   regno = s[3] - '0';
9250                   s += 4;
9251                   INSERT_OPERAND (MTACC_D, *ip, regno);
9252                   continue;
9253                 }
9254               else
9255                 as_bad (_("Invalid dsp/smartmips acc register"));
9256               break;
9257
9258             case ',':
9259               ++argnum;
9260               if (*s++ == *args)
9261                 continue;
9262               s--;
9263               switch (*++args)
9264                 {
9265                 case 'r':
9266                 case 'v':
9267                   INSERT_OPERAND (RS, *ip, lastregno);
9268                   continue;
9269
9270                 case 'w':
9271                   INSERT_OPERAND (RT, *ip, lastregno);
9272                   continue;
9273
9274                 case 'W':
9275                   INSERT_OPERAND (FT, *ip, lastregno);
9276                   continue;
9277
9278                 case 'V':
9279                   INSERT_OPERAND (FS, *ip, lastregno);
9280                   continue;
9281                 }
9282               break;
9283
9284             case '(':
9285               /* Handle optional base register.
9286                  Either the base register is omitted or
9287                  we must have a left paren.  */
9288               /* This is dependent on the next operand specifier
9289                  is a base register specification.  */
9290               gas_assert (args[1] == 'b');
9291               if (*s == '\0')
9292                 return;
9293
9294             case ')':           /* These must match exactly.  */
9295             case '[':
9296             case ']':
9297               if (*s++ == *args)
9298                 continue;
9299               break;
9300
9301             case '+':           /* Opcode extension character.  */
9302               switch (*++args)
9303                 {
9304                 case '1':       /* UDI immediates.  */
9305                 case '2':
9306                 case '3':
9307                 case '4':
9308                   {
9309                     const struct mips_immed *imm = mips_immed;
9310
9311                     while (imm->type && imm->type != *args)
9312                       ++imm;
9313                     if (! imm->type)
9314                       internalError ();
9315                     my_getExpression (&imm_expr, s);
9316                     check_absolute_expr (ip, &imm_expr);
9317                     if ((unsigned long) imm_expr.X_add_number & ~imm->mask)
9318                       {
9319                         as_warn (_("Illegal %s number (%lu, 0x%lx)"),
9320                                  imm->desc ? imm->desc : ip->insn_mo->name,
9321                                  (unsigned long) imm_expr.X_add_number,
9322                                  (unsigned long) imm_expr.X_add_number);
9323                         imm_expr.X_add_number &= imm->mask;
9324                       }
9325                     ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number
9326                                         << imm->shift);
9327                     imm_expr.X_op = O_absent;
9328                     s = expr_end;
9329                   }
9330                   continue;
9331
9332                 case 'A':               /* ins/ext position, becomes LSB.  */
9333                   limlo = 0;
9334                   limhi = 31;
9335                   goto do_lsb;
9336                 case 'E':
9337                   limlo = 32;
9338                   limhi = 63;
9339                   goto do_lsb;
9340                 do_lsb:
9341                   my_getExpression (&imm_expr, s);
9342                   check_absolute_expr (ip, &imm_expr);
9343                   if ((unsigned long) imm_expr.X_add_number < limlo
9344                       || (unsigned long) imm_expr.X_add_number > limhi)
9345                     {
9346                       as_bad (_("Improper position (%lu)"),
9347                               (unsigned long) imm_expr.X_add_number);
9348                       imm_expr.X_add_number = limlo;
9349                     }
9350                   lastpos = imm_expr.X_add_number;
9351                   INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
9352                   imm_expr.X_op = O_absent;
9353                   s = expr_end;
9354                   continue;
9355
9356                 case 'B':               /* ins size, becomes MSB.  */
9357                   limlo = 1;
9358                   limhi = 32;
9359                   goto do_msb;
9360                 case 'F':
9361                   limlo = 33;
9362                   limhi = 64;
9363                   goto do_msb;
9364                 do_msb:
9365                   my_getExpression (&imm_expr, s);
9366                   check_absolute_expr (ip, &imm_expr);
9367                   /* Check for negative input so that small negative numbers
9368                      will not succeed incorrectly.  The checks against
9369                      (pos+size) transitively check "size" itself,
9370                      assuming that "pos" is reasonable.  */
9371                   if ((long) imm_expr.X_add_number < 0
9372                       || ((unsigned long) imm_expr.X_add_number
9373                           + lastpos) < limlo
9374                       || ((unsigned long) imm_expr.X_add_number
9375                           + lastpos) > limhi)
9376                     {
9377                       as_bad (_("Improper insert size (%lu, position %lu)"),
9378                               (unsigned long) imm_expr.X_add_number,
9379                               (unsigned long) lastpos);
9380                       imm_expr.X_add_number = limlo - lastpos;
9381                     }
9382                   INSERT_OPERAND (INSMSB, *ip,
9383                                  lastpos + imm_expr.X_add_number - 1);
9384                   imm_expr.X_op = O_absent;
9385                   s = expr_end;
9386                   continue;
9387
9388                 case 'C':               /* ext size, becomes MSBD.  */
9389                   limlo = 1;
9390                   limhi = 32;
9391                   goto do_msbd;
9392                 case 'G':
9393                   limlo = 33;
9394                   limhi = 64;
9395                   goto do_msbd;
9396                 case 'H':
9397                   limlo = 33;
9398                   limhi = 64;
9399                   goto do_msbd;
9400                 do_msbd:
9401                   my_getExpression (&imm_expr, s);
9402                   check_absolute_expr (ip, &imm_expr);
9403                   /* Check for negative input so that small negative numbers
9404                      will not succeed incorrectly.  The checks against
9405                      (pos+size) transitively check "size" itself,
9406                      assuming that "pos" is reasonable.  */
9407                   if ((long) imm_expr.X_add_number < 0
9408                       || ((unsigned long) imm_expr.X_add_number
9409                           + lastpos) < limlo
9410                       || ((unsigned long) imm_expr.X_add_number
9411                           + lastpos) > limhi)
9412                     {
9413                       as_bad (_("Improper extract size (%lu, position %lu)"),
9414                               (unsigned long) imm_expr.X_add_number,
9415                               (unsigned long) lastpos);
9416                       imm_expr.X_add_number = limlo - lastpos;
9417                     }
9418                   INSERT_OPERAND (EXTMSBD, *ip, imm_expr.X_add_number - 1);
9419                   imm_expr.X_op = O_absent;
9420                   s = expr_end;
9421                   continue;
9422
9423                 case 'D':
9424                   /* +D is for disassembly only; never match.  */
9425                   break;
9426
9427                 case 'I':
9428                   /* "+I" is like "I", except that imm2_expr is used.  */
9429                   my_getExpression (&imm2_expr, s);
9430                   if (imm2_expr.X_op != O_big
9431                       && imm2_expr.X_op != O_constant)
9432                   insn_error = _("absolute expression required");
9433                   if (HAVE_32BIT_GPRS)
9434                     normalize_constant_expr (&imm2_expr);
9435                   s = expr_end;
9436                   continue;
9437
9438                 case 'T': /* Coprocessor register.  */
9439                   /* +T is for disassembly only; never match.  */
9440                   break;
9441
9442                 case 't': /* Coprocessor register number.  */
9443                   if (s[0] == '$' && ISDIGIT (s[1]))
9444                     {
9445                       ++s;
9446                       regno = 0;
9447                       do
9448                         {
9449                           regno *= 10;
9450                           regno += *s - '0';
9451                           ++s;
9452                         }
9453                       while (ISDIGIT (*s));
9454                       if (regno > 31)
9455                         as_bad (_("Invalid register number (%d)"), regno);
9456                       else
9457                         {
9458                           INSERT_OPERAND (RT, *ip, regno);
9459                           continue;
9460                         }
9461                     }
9462                   else
9463                     as_bad (_("Invalid coprocessor 0 register number"));
9464                   break;
9465
9466                 case 'x':
9467                   /* bbit[01] and bbit[01]32 bit index.  Give error if index
9468                      is not in the valid range.  */
9469                   my_getExpression (&imm_expr, s);
9470                   check_absolute_expr (ip, &imm_expr);
9471                   if ((unsigned) imm_expr.X_add_number > 31)
9472                     {
9473                       as_bad (_("Improper bit index (%lu)"),
9474                               (unsigned long) imm_expr.X_add_number);
9475                       imm_expr.X_add_number = 0;
9476                     }
9477                   INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number);
9478                   imm_expr.X_op = O_absent;
9479                   s = expr_end;
9480                   continue;
9481
9482                 case 'X':
9483                   /* bbit[01] bit index when bbit is used but we generate
9484                      bbit[01]32 because the index is over 32.  Move to the
9485                      next candidate if index is not in the valid range.  */
9486                   my_getExpression (&imm_expr, s);
9487                   check_absolute_expr (ip, &imm_expr);
9488                   if ((unsigned) imm_expr.X_add_number < 32
9489                       || (unsigned) imm_expr.X_add_number > 63)
9490                     break;
9491                   INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number - 32);
9492                   imm_expr.X_op = O_absent;
9493                   s = expr_end;
9494                   continue;
9495
9496                 case 'p':
9497                   /* cins, cins32, exts and exts32 position field.  Give error
9498                      if it's not in the valid range.  */
9499                   my_getExpression (&imm_expr, s);
9500                   check_absolute_expr (ip, &imm_expr);
9501                   if ((unsigned) imm_expr.X_add_number > 31)
9502                     {
9503                       as_bad (_("Improper position (%lu)"),
9504                               (unsigned long) imm_expr.X_add_number);
9505                       imm_expr.X_add_number = 0;
9506                     }
9507                   /* Make the pos explicit to simplify +S.  */
9508                   lastpos = imm_expr.X_add_number + 32;
9509                   INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number);
9510                   imm_expr.X_op = O_absent;
9511                   s = expr_end;
9512                   continue;
9513
9514                 case 'P':
9515                   /* cins, cins32, exts and exts32 position field.  Move to
9516                      the next candidate if it's not in the valid range.  */
9517                   my_getExpression (&imm_expr, s);
9518                   check_absolute_expr (ip, &imm_expr);
9519                   if ((unsigned) imm_expr.X_add_number < 32
9520                       || (unsigned) imm_expr.X_add_number > 63)
9521                     break;
9522                   lastpos = imm_expr.X_add_number;
9523                   INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number - 32);
9524                   imm_expr.X_op = O_absent;
9525                   s = expr_end;
9526                   continue;
9527
9528                 case 's':
9529                   /* cins and exts length-minus-one field.  */
9530                   my_getExpression (&imm_expr, s);
9531                   check_absolute_expr (ip, &imm_expr);
9532                   if ((unsigned long) imm_expr.X_add_number > 31)
9533                     {
9534                       as_bad (_("Improper size (%lu)"),
9535                               (unsigned long) imm_expr.X_add_number);
9536                       imm_expr.X_add_number = 0;
9537                     }
9538                   INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number);
9539                   imm_expr.X_op = O_absent;
9540                   s = expr_end;
9541                   continue;
9542
9543                 case 'S':
9544                   /* cins32/exts32 and cins/exts aliasing cint32/exts32
9545                      length-minus-one field.  */
9546                   my_getExpression (&imm_expr, s);
9547                   check_absolute_expr (ip, &imm_expr);
9548                   if ((long) imm_expr.X_add_number < 0
9549                       || (unsigned long) imm_expr.X_add_number + lastpos > 63)
9550                     {
9551                       as_bad (_("Improper size (%lu)"),
9552                               (unsigned long) imm_expr.X_add_number);
9553                       imm_expr.X_add_number = 0;
9554                     }
9555                   INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number);
9556                   imm_expr.X_op = O_absent;
9557                   s = expr_end;
9558                   continue;
9559
9560                 case 'Q':
9561                   /* seqi/snei immediate field.  */
9562                   my_getExpression (&imm_expr, s);
9563                   check_absolute_expr (ip, &imm_expr);
9564                   if ((long) imm_expr.X_add_number < -512
9565                       || (long) imm_expr.X_add_number >= 512)
9566                     {
9567                       as_bad (_("Improper immediate (%ld)"),
9568                                (long) imm_expr.X_add_number);
9569                       imm_expr.X_add_number = 0;
9570                     }
9571                   INSERT_OPERAND (SEQI, *ip, imm_expr.X_add_number);
9572                   imm_expr.X_op = O_absent;
9573                   s = expr_end;
9574                   continue;
9575
9576                 case 'a': /* 8-bit signed offset in bit 6 */
9577                   my_getExpression (&imm_expr, s);
9578                   check_absolute_expr (ip, &imm_expr);
9579                   min_range = -((OP_MASK_OFFSET_A + 1) >> 1);
9580                   max_range = ((OP_MASK_OFFSET_A + 1) >> 1) - 1;
9581                   if (imm_expr.X_add_number < min_range
9582                       || imm_expr.X_add_number > max_range)
9583                     {
9584                       as_bad (_("Offset not in range %ld..%ld (%ld)"),
9585                               (long) min_range, (long) max_range,
9586                               (long) imm_expr.X_add_number);
9587                     }
9588                   INSERT_OPERAND (OFFSET_A, *ip, imm_expr.X_add_number);
9589                   imm_expr.X_op = O_absent;
9590                   s = expr_end;
9591                   continue;
9592
9593                 case 'b': /* 8-bit signed offset in bit 3 */
9594                   my_getExpression (&imm_expr, s);
9595                   check_absolute_expr (ip, &imm_expr);
9596                   min_range = -((OP_MASK_OFFSET_B + 1) >> 1);
9597                   max_range = ((OP_MASK_OFFSET_B + 1) >> 1) - 1;
9598                   if (imm_expr.X_add_number < min_range
9599                       || imm_expr.X_add_number > max_range)
9600                     {
9601                       as_bad (_("Offset not in range %ld..%ld (%ld)"),
9602                               (long) min_range, (long) max_range,
9603                               (long) imm_expr.X_add_number);
9604                     }
9605                   INSERT_OPERAND (OFFSET_B, *ip, imm_expr.X_add_number);
9606                   imm_expr.X_op = O_absent;
9607                   s = expr_end;
9608                   continue;
9609
9610                 case 'c': /* 9-bit signed offset in bit 6 */
9611                   my_getExpression (&imm_expr, s);
9612                   check_absolute_expr (ip, &imm_expr);
9613                   min_range = -((OP_MASK_OFFSET_C + 1) >> 1);
9614                   max_range = ((OP_MASK_OFFSET_C + 1) >> 1) - 1;
9615                   /* We check the offset range before adjusted.  */
9616                   min_range <<= 4;
9617                   max_range <<= 4;
9618                   if (imm_expr.X_add_number < min_range
9619                       || imm_expr.X_add_number > max_range)
9620                     {
9621                       as_bad (_("Offset not in range %ld..%ld (%ld)"),
9622                               (long) min_range, (long) max_range,
9623                               (long) imm_expr.X_add_number);
9624                     }
9625                   if (imm_expr.X_add_number & 0xf)
9626                     {
9627                       as_bad (_("Offset not 16 bytes alignment (%ld)"),
9628                               (long) imm_expr.X_add_number);
9629                     }
9630                   /* Right shift 4 bits to adjust the offset operand.  */
9631                   INSERT_OPERAND (OFFSET_C, *ip, imm_expr.X_add_number >> 4);
9632                   imm_expr.X_op = O_absent;
9633                   s = expr_end;
9634                   continue;
9635
9636                 case 'z':
9637                   if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
9638                     break;
9639                   if (regno == AT && mips_opts.at)
9640                     {
9641                       if (mips_opts.at == ATREG)
9642                         as_warn (_("used $at without \".set noat\""));
9643                       else
9644                         as_warn (_("used $%u with \".set at=$%u\""),
9645                                  regno, mips_opts.at);
9646                     }
9647                   INSERT_OPERAND (RZ, *ip, regno);
9648                   continue;
9649
9650                 case 'Z':
9651                   if (!reg_lookup (&s, RTYPE_FPU, &regno))
9652                     break;
9653                   INSERT_OPERAND (FZ, *ip, regno);
9654                   continue;
9655
9656                 default:
9657                   as_bad (_("Internal error: bad mips opcode "
9658                             "(unknown extension operand type `+%c'): %s %s"),
9659                           *args, insn->name, insn->args);
9660                   /* Further processing is fruitless.  */
9661                   return;
9662                 }
9663               break;
9664
9665             case '<':           /* must be at least one digit */
9666               /*
9667                * According to the manual, if the shift amount is greater
9668                * than 31 or less than 0, then the shift amount should be
9669                * mod 32.  In reality the mips assembler issues an error.
9670                * We issue a warning and mask out all but the low 5 bits.
9671                */
9672               my_getExpression (&imm_expr, s);
9673               check_absolute_expr (ip, &imm_expr);
9674               if ((unsigned long) imm_expr.X_add_number > 31)
9675                 as_warn (_("Improper shift amount (%lu)"),
9676                          (unsigned long) imm_expr.X_add_number);
9677               INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
9678               imm_expr.X_op = O_absent;
9679               s = expr_end;
9680               continue;
9681
9682             case '>':           /* shift amount minus 32 */
9683               my_getExpression (&imm_expr, s);
9684               check_absolute_expr (ip, &imm_expr);
9685               if ((unsigned long) imm_expr.X_add_number < 32
9686                   || (unsigned long) imm_expr.X_add_number > 63)
9687                 break;
9688               INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number - 32);
9689               imm_expr.X_op = O_absent;
9690               s = expr_end;
9691               continue;
9692
9693             case 'k':           /* CACHE code.  */
9694             case 'h':           /* PREFX code.  */
9695             case '1':           /* SYNC type.  */
9696               my_getExpression (&imm_expr, s);
9697               check_absolute_expr (ip, &imm_expr);
9698               if ((unsigned long) imm_expr.X_add_number > 31)
9699                 as_warn (_("Invalid value for `%s' (%lu)"),
9700                          ip->insn_mo->name,
9701                          (unsigned long) imm_expr.X_add_number);
9702               if (*args == 'k')
9703                 {
9704                   if (mips_fix_cn63xxp1 && strcmp ("pref", insn->name) == 0)
9705                     switch (imm_expr.X_add_number)
9706                       {
9707                       case 5:
9708                       case 25:
9709                       case 26:
9710                       case 27:
9711                       case 28:
9712                       case 29:
9713                       case 30:
9714                       case 31:  /* These are ok.  */
9715                         break;
9716
9717                       default:  /* The rest must be changed to 28.  */
9718                         imm_expr.X_add_number = 28;
9719                         break;
9720                       }
9721                   INSERT_OPERAND (CACHE, *ip, imm_expr.X_add_number);
9722                 }
9723               else if (*args == 'h')
9724                 INSERT_OPERAND (PREFX, *ip, imm_expr.X_add_number);
9725               else
9726                 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
9727               imm_expr.X_op = O_absent;
9728               s = expr_end;
9729               continue;
9730
9731             case 'c':           /* BREAK code.  */
9732               my_getExpression (&imm_expr, s);
9733               check_absolute_expr (ip, &imm_expr);
9734               if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE)
9735                 as_warn (_("Code for %s not in range 0..1023 (%lu)"),
9736                          ip->insn_mo->name,
9737                          (unsigned long) imm_expr.X_add_number);
9738               INSERT_OPERAND (CODE, *ip, imm_expr.X_add_number);
9739               imm_expr.X_op = O_absent;
9740               s = expr_end;
9741               continue;
9742
9743             case 'q':           /* Lower BREAK code.  */
9744               my_getExpression (&imm_expr, s);
9745               check_absolute_expr (ip, &imm_expr);
9746               if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE2)
9747                 as_warn (_("Lower code for %s not in range 0..1023 (%lu)"),
9748                          ip->insn_mo->name,
9749                          (unsigned long) imm_expr.X_add_number);
9750               INSERT_OPERAND (CODE2, *ip, imm_expr.X_add_number);
9751               imm_expr.X_op = O_absent;
9752               s = expr_end;
9753               continue;
9754
9755             case 'B':           /* 20-bit SYSCALL/BREAK code.  */
9756               my_getExpression (&imm_expr, s);
9757               check_absolute_expr (ip, &imm_expr);
9758               if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20)
9759                 as_warn (_("Code for %s not in range 0..1048575 (%lu)"),
9760                          ip->insn_mo->name,
9761                          (unsigned long) imm_expr.X_add_number);
9762               INSERT_OPERAND (CODE20, *ip, imm_expr.X_add_number);
9763               imm_expr.X_op = O_absent;
9764               s = expr_end;
9765               continue;
9766
9767             case 'C':           /* Coprocessor code.  */
9768               my_getExpression (&imm_expr, s);
9769               check_absolute_expr (ip, &imm_expr);
9770               if ((unsigned long) imm_expr.X_add_number > OP_MASK_COPZ)
9771                 {
9772                   as_warn (_("Coproccesor code > 25 bits (%lu)"),
9773                            (unsigned long) imm_expr.X_add_number);
9774                   imm_expr.X_add_number &= OP_MASK_COPZ;
9775                 }
9776               INSERT_OPERAND (COPZ, *ip, imm_expr.X_add_number);
9777               imm_expr.X_op = O_absent;
9778               s = expr_end;
9779               continue;
9780
9781             case 'J':           /* 19-bit WAIT code.  */
9782               my_getExpression (&imm_expr, s);
9783               check_absolute_expr (ip, &imm_expr);
9784               if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
9785                 {
9786                   as_warn (_("Illegal 19-bit code (%lu)"),
9787                            (unsigned long) imm_expr.X_add_number);
9788                   imm_expr.X_add_number &= OP_MASK_CODE19;
9789                 }
9790               INSERT_OPERAND (CODE19, *ip, imm_expr.X_add_number);
9791               imm_expr.X_op = O_absent;
9792               s = expr_end;
9793               continue;
9794
9795             case 'P':           /* Performance register.  */
9796               my_getExpression (&imm_expr, s);
9797               check_absolute_expr (ip, &imm_expr);
9798               if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
9799                 as_warn (_("Invalid performance register (%lu)"),
9800                          (unsigned long) imm_expr.X_add_number);
9801               INSERT_OPERAND (PERFREG, *ip, imm_expr.X_add_number);
9802               imm_expr.X_op = O_absent;
9803               s = expr_end;
9804               continue;
9805
9806             case 'G':           /* Coprocessor destination register.  */
9807               if (((ip->insn_opcode >> OP_SH_OP) & OP_MASK_OP) == OP_OP_COP0)
9808                 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_CP0, &regno);
9809               else
9810                 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
9811               INSERT_OPERAND (RD, *ip, regno);
9812               if (ok) 
9813                 {
9814                   lastregno = regno;
9815                   continue;
9816                 }
9817               else
9818                 break;
9819
9820             case 'b':           /* Base register.  */
9821             case 'd':           /* Destination register.  */
9822             case 's':           /* Source register.  */
9823             case 't':           /* Target register.  */
9824             case 'r':           /* Both target and source.  */
9825             case 'v':           /* Both dest and source.  */
9826             case 'w':           /* Both dest and target.  */
9827             case 'E':           /* Coprocessor target register.  */
9828             case 'K':           /* RDHWR destination register.  */
9829             case 'x':           /* Ignore register name.  */
9830             case 'z':           /* Must be zero register.  */
9831             case 'U':           /* Destination register (CLO/CLZ).  */
9832             case 'g':           /* Coprocessor destination register.  */
9833               s_reset = s;
9834               if (*args == 'E' || *args == 'K')
9835                 ok = reg_lookup (&s, RTYPE_NUM, &regno);
9836               else
9837                 {
9838                   ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
9839                   if (regno == AT && mips_opts.at)
9840                     {
9841                       if (mips_opts.at == ATREG)
9842                         as_warn (_("Used $at without \".set noat\""));
9843                       else
9844                         as_warn (_("Used $%u with \".set at=$%u\""),
9845                                  regno, mips_opts.at);
9846                     }
9847                 }
9848               if (ok)
9849                 {
9850                   c = *args;
9851                   if (*s == ' ')
9852                     ++s;
9853                   if (args[1] != *s)
9854                     {
9855                       if (c == 'r' || c == 'v' || c == 'w')
9856                         {
9857                           regno = lastregno;
9858                           s = s_reset;
9859                           ++args;
9860                         }
9861                     }
9862                   /* 'z' only matches $0.  */
9863                   if (c == 'z' && regno != 0)
9864                     break;
9865
9866                   if (c == 's' && !strncmp (ip->insn_mo->name, "jalr", 4))
9867                     {
9868                       if (regno == lastregno)
9869                         {
9870                           insn_error
9871                             = _("Source and destination must be different");
9872                           continue;
9873                         }
9874                       if (regno == 31 && lastregno == 0xffffffff)
9875                         {
9876                           insn_error
9877                             = _("A destination register must be supplied");
9878                           continue;
9879                         }
9880                     }
9881                   /* Now that we have assembled one operand, we use the args
9882                      string to figure out where it goes in the instruction.  */
9883                   switch (c)
9884                     {
9885                     case 'r':
9886                     case 's':
9887                     case 'v':
9888                     case 'b':
9889                       INSERT_OPERAND (RS, *ip, regno);
9890                       break;
9891                     case 'd':
9892                     case 'K':
9893                     case 'g':
9894                       INSERT_OPERAND (RD, *ip, regno);
9895                       break;
9896                     case 'U':
9897                       INSERT_OPERAND (RD, *ip, regno);
9898                       INSERT_OPERAND (RT, *ip, regno);
9899                       break;
9900                     case 'w':
9901                     case 't':
9902                     case 'E':
9903                       INSERT_OPERAND (RT, *ip, regno);
9904                       break;
9905                     case 'x':
9906                       /* This case exists because on the r3000 trunc
9907                          expands into a macro which requires a gp
9908                          register.  On the r6000 or r4000 it is
9909                          assembled into a single instruction which
9910                          ignores the register.  Thus the insn version
9911                          is MIPS_ISA2 and uses 'x', and the macro
9912                          version is MIPS_ISA1 and uses 't'.  */
9913                       break;
9914                     case 'z':
9915                       /* This case is for the div instruction, which
9916                          acts differently if the destination argument
9917                          is $0.  This only matches $0, and is checked
9918                          outside the switch.  */
9919                       break;
9920                     }
9921                   lastregno = regno;
9922                   continue;
9923                 }
9924               switch (*args++)
9925                 {
9926                 case 'r':
9927                 case 'v':
9928                   INSERT_OPERAND (RS, *ip, lastregno);
9929                   continue;
9930                 case 'w':
9931                   INSERT_OPERAND (RT, *ip, lastregno);
9932                   continue;
9933                 }
9934               break;
9935
9936             case 'O':           /* MDMX alignment immediate constant.  */
9937               my_getExpression (&imm_expr, s);
9938               check_absolute_expr (ip, &imm_expr);
9939               if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
9940                 as_warn (_("Improper align amount (%ld), using low bits"),
9941                          (long) imm_expr.X_add_number);
9942               INSERT_OPERAND (ALN, *ip, imm_expr.X_add_number);
9943               imm_expr.X_op = O_absent;
9944               s = expr_end;
9945               continue;
9946
9947             case 'Q':           /* MDMX vector, element sel, or const.  */
9948               if (s[0] != '$')
9949                 {
9950                   /* MDMX Immediate.  */
9951                   my_getExpression (&imm_expr, s);
9952                   check_absolute_expr (ip, &imm_expr);
9953                   if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
9954                     as_warn (_("Invalid MDMX Immediate (%ld)"),
9955                              (long) imm_expr.X_add_number);
9956                   INSERT_OPERAND (FT, *ip, imm_expr.X_add_number);
9957                   if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
9958                     ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
9959                   else
9960                     ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
9961                   imm_expr.X_op = O_absent;
9962                   s = expr_end;
9963                   continue;
9964                 }
9965               /* Not MDMX Immediate.  Fall through.  */
9966             case 'X':           /* MDMX destination register.  */
9967             case 'Y':           /* MDMX source register.  */
9968             case 'Z':           /* MDMX target register.  */
9969               is_mdmx = 1;
9970             case 'D':           /* Floating point destination register.  */
9971             case 'S':           /* Floating point source register.  */
9972             case 'T':           /* Floating point target register.  */
9973             case 'R':           /* Floating point source register.  */
9974             case 'V':
9975             case 'W':
9976               rtype = RTYPE_FPU;
9977               if (is_mdmx
9978                   || (mips_opts.ase_mdmx
9979                       && (ip->insn_mo->pinfo & FP_D)
9980                       && (ip->insn_mo->pinfo & (INSN_COPROC_MOVE_DELAY
9981                                                 | INSN_COPROC_MEMORY_DELAY
9982                                                 | INSN_LOAD_COPROC_DELAY
9983                                                 | INSN_LOAD_MEMORY_DELAY
9984                                                 | INSN_STORE_MEMORY))))
9985                 rtype |= RTYPE_VEC;
9986               s_reset = s;
9987               if (reg_lookup (&s, rtype, &regno))
9988                 {
9989                   if ((regno & 1) != 0
9990                       && HAVE_32BIT_FPRS
9991                       && !mips_oddfpreg_ok (ip->insn_mo, argnum))
9992                     as_warn (_("Float register should be even, was %d"),
9993                              regno);
9994
9995                   c = *args;
9996                   if (*s == ' ')
9997                     ++s;
9998                   if (args[1] != *s)
9999                     {
10000                       if (c == 'V' || c == 'W')
10001                         {
10002                           regno = lastregno;
10003                           s = s_reset;
10004                           ++args;
10005                         }
10006                     }
10007                   switch (c)
10008                     {
10009                     case 'D':
10010                     case 'X':
10011                       INSERT_OPERAND (FD, *ip, regno);
10012                       break;
10013                     case 'V':
10014                     case 'S':
10015                     case 'Y':
10016                       INSERT_OPERAND (FS, *ip, regno);
10017                       break;
10018                     case 'Q':
10019                       /* This is like 'Z', but also needs to fix the MDMX
10020                          vector/scalar select bits.  Note that the
10021                          scalar immediate case is handled above.  */
10022                       if (*s == '[')
10023                         {
10024                           int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
10025                           int max_el = (is_qh ? 3 : 7);
10026                           s++;
10027                           my_getExpression(&imm_expr, s);
10028                           check_absolute_expr (ip, &imm_expr);
10029                           s = expr_end;
10030                           if (imm_expr.X_add_number > max_el)
10031                             as_bad (_("Bad element selector %ld"),
10032                                     (long) imm_expr.X_add_number);
10033                           imm_expr.X_add_number &= max_el;
10034                           ip->insn_opcode |= (imm_expr.X_add_number
10035                                               << (OP_SH_VSEL +
10036                                                   (is_qh ? 2 : 1)));
10037                           imm_expr.X_op = O_absent;
10038                           if (*s != ']')
10039                             as_warn (_("Expecting ']' found '%s'"), s);
10040                           else
10041                             s++;
10042                         }
10043                       else
10044                         {
10045                           if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
10046                             ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
10047                                                 << OP_SH_VSEL);
10048                           else
10049                             ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
10050                                                 OP_SH_VSEL);
10051                         }
10052                       /* Fall through.  */
10053                     case 'W':
10054                     case 'T':
10055                     case 'Z':
10056                       INSERT_OPERAND (FT, *ip, regno);
10057                       break;
10058                     case 'R':
10059                       INSERT_OPERAND (FR, *ip, regno);
10060                       break;
10061                     }
10062                   lastregno = regno;
10063                   continue;
10064                 }
10065
10066               switch (*args++)
10067                 {
10068                 case 'V':
10069                   INSERT_OPERAND (FS, *ip, lastregno);
10070                   continue;
10071                 case 'W':
10072                   INSERT_OPERAND (FT, *ip, lastregno);
10073                   continue;
10074                 }
10075               break;
10076
10077             case 'I':
10078               my_getExpression (&imm_expr, s);
10079               if (imm_expr.X_op != O_big
10080                   && imm_expr.X_op != O_constant)
10081                 insn_error = _("absolute expression required");
10082               if (HAVE_32BIT_GPRS)
10083                 normalize_constant_expr (&imm_expr);
10084               s = expr_end;
10085               continue;
10086
10087             case 'A':
10088               my_getExpression (&offset_expr, s);
10089               normalize_address_expr (&offset_expr);
10090               *imm_reloc = BFD_RELOC_32;
10091               s = expr_end;
10092               continue;
10093
10094             case 'F':
10095             case 'L':
10096             case 'f':
10097             case 'l':
10098               {
10099                 int f64;
10100                 int using_gprs;
10101                 char *save_in;
10102                 char *err;
10103                 unsigned char temp[8];
10104                 int len;
10105                 unsigned int length;
10106                 segT seg;
10107                 subsegT subseg;
10108                 char *p;
10109
10110                 /* These only appear as the last operand in an
10111                    instruction, and every instruction that accepts
10112                    them in any variant accepts them in all variants.
10113                    This means we don't have to worry about backing out
10114                    any changes if the instruction does not match.
10115
10116                    The difference between them is the size of the
10117                    floating point constant and where it goes.  For 'F'
10118                    and 'L' the constant is 64 bits; for 'f' and 'l' it
10119                    is 32 bits.  Where the constant is placed is based
10120                    on how the MIPS assembler does things:
10121                     F -- .rdata
10122                     L -- .lit8
10123                     f -- immediate value
10124                     l -- .lit4
10125
10126                     The .lit4 and .lit8 sections are only used if
10127                     permitted by the -G argument.
10128
10129                     The code below needs to know whether the target register
10130                     is 32 or 64 bits wide.  It relies on the fact 'f' and
10131                     'F' are used with GPR-based instructions and 'l' and
10132                     'L' are used with FPR-based instructions.  */
10133
10134                 f64 = *args == 'F' || *args == 'L';
10135                 using_gprs = *args == 'F' || *args == 'f';
10136
10137                 save_in = input_line_pointer;
10138                 input_line_pointer = s;
10139                 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
10140                 length = len;
10141                 s = input_line_pointer;
10142                 input_line_pointer = save_in;
10143                 if (err != NULL && *err != '\0')
10144                   {
10145                     as_bad (_("Bad floating point constant: %s"), err);
10146                     memset (temp, '\0', sizeof temp);
10147                     length = f64 ? 8 : 4;
10148                   }
10149
10150                 gas_assert (length == (unsigned) (f64 ? 8 : 4));
10151
10152                 if (*args == 'f'
10153                     || (*args == 'l'
10154                         && (g_switch_value < 4
10155                             || (temp[0] == 0 && temp[1] == 0)
10156                             || (temp[2] == 0 && temp[3] == 0))))
10157                   {
10158                     imm_expr.X_op = O_constant;
10159                     if (!target_big_endian)
10160                       imm_expr.X_add_number = bfd_getl32 (temp);
10161                     else
10162                       imm_expr.X_add_number = bfd_getb32 (temp);
10163                   }
10164                 else if (length > 4
10165                          && !mips_disable_float_construction
10166                          /* Constants can only be constructed in GPRs and
10167                             copied to FPRs if the GPRs are at least as wide
10168                             as the FPRs.  Force the constant into memory if
10169                             we are using 64-bit FPRs but the GPRs are only
10170                             32 bits wide.  */
10171                          && (using_gprs
10172                              || !(HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
10173                          && ((temp[0] == 0 && temp[1] == 0)
10174                              || (temp[2] == 0 && temp[3] == 0))
10175                          && ((temp[4] == 0 && temp[5] == 0)
10176                              || (temp[6] == 0 && temp[7] == 0)))
10177                   {
10178                     /* The value is simple enough to load with a couple of
10179                        instructions.  If using 32-bit registers, set
10180                        imm_expr to the high order 32 bits and offset_expr to
10181                        the low order 32 bits.  Otherwise, set imm_expr to
10182                        the entire 64 bit constant.  */
10183                     if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
10184                       {
10185                         imm_expr.X_op = O_constant;
10186                         offset_expr.X_op = O_constant;
10187                         if (!target_big_endian)
10188                           {
10189                             imm_expr.X_add_number = bfd_getl32 (temp + 4);
10190                             offset_expr.X_add_number = bfd_getl32 (temp);
10191                           }
10192                         else
10193                           {
10194                             imm_expr.X_add_number = bfd_getb32 (temp);
10195                             offset_expr.X_add_number = bfd_getb32 (temp + 4);
10196                           }
10197                         if (offset_expr.X_add_number == 0)
10198                           offset_expr.X_op = O_absent;
10199                       }
10200                     else if (sizeof (imm_expr.X_add_number) > 4)
10201                       {
10202                         imm_expr.X_op = O_constant;
10203                         if (!target_big_endian)
10204                           imm_expr.X_add_number = bfd_getl64 (temp);
10205                         else
10206                           imm_expr.X_add_number = bfd_getb64 (temp);
10207                       }
10208                     else
10209                       {
10210                         imm_expr.X_op = O_big;
10211                         imm_expr.X_add_number = 4;
10212                         if (!target_big_endian)
10213                           {
10214                             generic_bignum[0] = bfd_getl16 (temp);
10215                             generic_bignum[1] = bfd_getl16 (temp + 2);
10216                             generic_bignum[2] = bfd_getl16 (temp + 4);
10217                             generic_bignum[3] = bfd_getl16 (temp + 6);
10218                           }
10219                         else
10220                           {
10221                             generic_bignum[0] = bfd_getb16 (temp + 6);
10222                             generic_bignum[1] = bfd_getb16 (temp + 4);
10223                             generic_bignum[2] = bfd_getb16 (temp + 2);
10224                             generic_bignum[3] = bfd_getb16 (temp);
10225                           }
10226                       }
10227                   }
10228                 else
10229                   {
10230                     const char *newname;
10231                     segT new_seg;
10232
10233                     /* Switch to the right section.  */
10234                     seg = now_seg;
10235                     subseg = now_subseg;
10236                     switch (*args)
10237                       {
10238                       default: /* unused default case avoids warnings.  */
10239                       case 'L':
10240                         newname = RDATA_SECTION_NAME;
10241                         if (g_switch_value >= 8)
10242                           newname = ".lit8";
10243                         break;
10244                       case 'F':
10245                         newname = RDATA_SECTION_NAME;
10246                         break;
10247                       case 'l':
10248                         gas_assert (g_switch_value >= 4);
10249                         newname = ".lit4";
10250                         break;
10251                       }
10252                     new_seg = subseg_new (newname, (subsegT) 0);
10253                     if (IS_ELF)
10254                       bfd_set_section_flags (stdoutput, new_seg,
10255                                              (SEC_ALLOC
10256                                               | SEC_LOAD
10257                                               | SEC_READONLY
10258                                               | SEC_DATA));
10259                     frag_align (*args == 'l' ? 2 : 3, 0, 0);
10260                     if (IS_ELF && strncmp (TARGET_OS, "elf", 3) != 0)
10261                       record_alignment (new_seg, 4);
10262                     else
10263                       record_alignment (new_seg, *args == 'l' ? 2 : 3);
10264                     if (seg == now_seg)
10265                       as_bad (_("Can't use floating point insn in this section"));
10266
10267                     /* Set the argument to the current address in the
10268                        section.  */
10269                     offset_expr.X_op = O_symbol;
10270                     offset_expr.X_add_symbol = symbol_temp_new_now ();
10271                     offset_expr.X_add_number = 0;
10272
10273                     /* Put the floating point number into the section.  */
10274                     p = frag_more ((int) length);
10275                     memcpy (p, temp, length);
10276
10277                     /* Switch back to the original section.  */
10278                     subseg_set (seg, subseg);
10279                   }
10280               }
10281               continue;
10282
10283             case 'i':           /* 16-bit unsigned immediate.  */
10284             case 'j':           /* 16-bit signed immediate.  */
10285               *imm_reloc = BFD_RELOC_LO16;
10286               if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
10287                 {
10288                   int more;
10289                   offsetT minval, maxval;
10290
10291                   more = (insn + 1 < &mips_opcodes[NUMOPCODES]
10292                           && strcmp (insn->name, insn[1].name) == 0);
10293
10294                   /* If the expression was written as an unsigned number,
10295                      only treat it as signed if there are no more
10296                      alternatives.  */
10297                   if (more
10298                       && *args == 'j'
10299                       && sizeof (imm_expr.X_add_number) <= 4
10300                       && imm_expr.X_op == O_constant
10301                       && imm_expr.X_add_number < 0
10302                       && imm_expr.X_unsigned
10303                       && HAVE_64BIT_GPRS)
10304                     break;
10305
10306                   /* For compatibility with older assemblers, we accept
10307                      0x8000-0xffff as signed 16-bit numbers when only
10308                      signed numbers are allowed.  */
10309                   if (*args == 'i')
10310                     minval = 0, maxval = 0xffff;
10311                   else if (more)
10312                     minval = -0x8000, maxval = 0x7fff;
10313                   else
10314                     minval = -0x8000, maxval = 0xffff;
10315
10316                   if (imm_expr.X_op != O_constant
10317                       || imm_expr.X_add_number < minval
10318                       || imm_expr.X_add_number > maxval)
10319                     {
10320                       if (more)
10321                         break;
10322                       if (imm_expr.X_op == O_constant
10323                           || imm_expr.X_op == O_big)
10324                         as_bad (_("Expression out of range"));
10325                     }
10326                 }
10327               s = expr_end;
10328               continue;
10329
10330             case 'o':           /* 16-bit offset.  */
10331               offset_reloc[0] = BFD_RELOC_LO16;
10332               offset_reloc[1] = BFD_RELOC_UNUSED;
10333               offset_reloc[2] = BFD_RELOC_UNUSED;
10334
10335               /* Check whether there is only a single bracketed expression
10336                  left.  If so, it must be the base register and the
10337                  constant must be zero.  */
10338               if (*s == '(' && strchr (s + 1, '(') == 0)
10339                 {
10340                   offset_expr.X_op = O_constant;
10341                   offset_expr.X_add_number = 0;
10342                   continue;
10343                 }
10344
10345               /* If this value won't fit into a 16 bit offset, then go
10346                  find a macro that will generate the 32 bit offset
10347                  code pattern.  */
10348               if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
10349                   && (offset_expr.X_op != O_constant
10350                       || offset_expr.X_add_number >= 0x8000
10351                       || offset_expr.X_add_number < -0x8000))
10352                 break;
10353
10354               s = expr_end;
10355               continue;
10356
10357             case 'p':           /* PC-relative offset.  */
10358               *offset_reloc = BFD_RELOC_16_PCREL_S2;
10359               my_getExpression (&offset_expr, s);
10360               s = expr_end;
10361               continue;
10362
10363             case 'u':           /* Upper 16 bits.  */
10364               if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0
10365                   && imm_expr.X_op == O_constant
10366                   && (imm_expr.X_add_number < 0
10367                       || imm_expr.X_add_number >= 0x10000))
10368                 as_bad (_("lui expression (%lu) not in range 0..65535"),
10369                         (unsigned long) imm_expr.X_add_number);
10370               s = expr_end;
10371               continue;
10372
10373             case 'a':           /* 26-bit address.  */
10374               my_getExpression (&offset_expr, s);
10375               s = expr_end;
10376               *offset_reloc = BFD_RELOC_MIPS_JMP;
10377               continue;
10378
10379             case 'N':           /* 3-bit branch condition code.  */
10380             case 'M':           /* 3-bit compare condition code.  */
10381               rtype = RTYPE_CCC;
10382               if (ip->insn_mo->pinfo & (FP_D | FP_S))
10383                 rtype |= RTYPE_FCC;
10384               if (!reg_lookup (&s, rtype, &regno))
10385                 break;
10386               if ((strcmp (str + strlen (str) - 3, ".ps") == 0
10387                    || strcmp (str + strlen (str) - 5, "any2f") == 0
10388                    || strcmp (str + strlen (str) - 5, "any2t") == 0)
10389                   && (regno & 1) != 0)
10390                 as_warn (_("Condition code register should be even for %s, "
10391                            "was %d"),
10392                          str, regno);
10393               if ((strcmp (str + strlen (str) - 5, "any4f") == 0
10394                    || strcmp (str + strlen (str) - 5, "any4t") == 0)
10395                   && (regno & 3) != 0)
10396                 as_warn (_("Condition code register should be 0 or 4 for %s, "
10397                            "was %d"),
10398                          str, regno);
10399               if (*args == 'N')
10400                 INSERT_OPERAND (BCC, *ip, regno);
10401               else
10402                 INSERT_OPERAND (CCC, *ip, regno);
10403               continue;
10404
10405             case 'H':
10406               if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
10407                 s += 2;
10408               if (ISDIGIT (*s))
10409                 {
10410                   c = 0;
10411                   do
10412                     {
10413                       c *= 10;
10414                       c += *s - '0';
10415                       ++s;
10416                     }
10417                   while (ISDIGIT (*s));
10418                 }
10419               else
10420                 c = 8; /* Invalid sel value.  */
10421
10422               if (c > 7)
10423                 as_bad (_("Invalid coprocessor sub-selection value (0-7)"));
10424               ip->insn_opcode |= c;
10425               continue;
10426
10427             case 'e':
10428               /* Must be at least one digit.  */
10429               my_getExpression (&imm_expr, s);
10430               check_absolute_expr (ip, &imm_expr);
10431
10432               if ((unsigned long) imm_expr.X_add_number
10433                   > (unsigned long) OP_MASK_VECBYTE)
10434                 {
10435                   as_bad (_("bad byte vector index (%ld)"),
10436                            (long) imm_expr.X_add_number);
10437                   imm_expr.X_add_number = 0;
10438                 }
10439
10440               INSERT_OPERAND (VECBYTE, *ip, imm_expr.X_add_number);
10441               imm_expr.X_op = O_absent;
10442               s = expr_end;
10443               continue;
10444
10445             case '%':
10446               my_getExpression (&imm_expr, s);
10447               check_absolute_expr (ip, &imm_expr);
10448
10449               if ((unsigned long) imm_expr.X_add_number
10450                   > (unsigned long) OP_MASK_VECALIGN)
10451                 {
10452                   as_bad (_("bad byte vector index (%ld)"),
10453                            (long) imm_expr.X_add_number);
10454                   imm_expr.X_add_number = 0;
10455                 }
10456
10457               INSERT_OPERAND (VECALIGN, *ip, imm_expr.X_add_number);
10458               imm_expr.X_op = O_absent;
10459               s = expr_end;
10460               continue;
10461
10462             default:
10463               as_bad (_("Bad char = '%c'\n"), *args);
10464               internalError ();
10465             }
10466           break;
10467         }
10468       /* Args don't match.  */
10469       if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
10470           !strcmp (insn->name, insn[1].name))
10471         {
10472           ++insn;
10473           s = argsStart;
10474           insn_error = _("Illegal operands");
10475           continue;
10476         }
10477       if (save_c)
10478         *(--argsStart) = save_c;
10479       insn_error = _("Illegal operands");
10480       return;
10481     }
10482 }
10483
10484 #define SKIP_SPACE_TABS(S) { while (*(S) == ' ' || *(S) == '\t') ++(S); }
10485
10486 /* This routine assembles an instruction into its binary format when
10487    assembling for the mips16.  As a side effect, it sets one of the
10488    global variables imm_reloc or offset_reloc to the type of
10489    relocation to do if one of the operands is an address expression.
10490    It also sets mips16_small and mips16_ext if the user explicitly
10491    requested a small or extended instruction.  */
10492
10493 static void
10494 mips16_ip (char *str, struct mips_cl_insn *ip)
10495 {
10496   char *s;
10497   const char *args;
10498   struct mips_opcode *insn;
10499   char *argsstart;
10500   unsigned int regno;
10501   unsigned int lastregno = 0;
10502   char *s_reset;
10503   size_t i;
10504
10505   insn_error = NULL;
10506
10507   mips16_small = FALSE;
10508   mips16_ext = FALSE;
10509
10510   for (s = str; ISLOWER (*s); ++s)
10511     ;
10512   switch (*s)
10513     {
10514     case '\0':
10515       break;
10516
10517     case ' ':
10518       *s++ = '\0';
10519       break;
10520
10521     case '.':
10522       if (s[1] == 't' && s[2] == ' ')
10523         {
10524           *s = '\0';
10525           mips16_small = TRUE;
10526           s += 3;
10527           break;
10528         }
10529       else if (s[1] == 'e' && s[2] == ' ')
10530         {
10531           *s = '\0';
10532           mips16_ext = TRUE;
10533           s += 3;
10534           break;
10535         }
10536       /* Fall through.  */
10537     default:
10538       insn_error = _("unknown opcode");
10539       return;
10540     }
10541
10542   if (mips_opts.noautoextend && ! mips16_ext)
10543     mips16_small = TRUE;
10544
10545   if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
10546     {
10547       insn_error = _("unrecognized opcode");
10548       return;
10549     }
10550
10551   argsstart = s;
10552   for (;;)
10553     {
10554       bfd_boolean ok;
10555
10556       gas_assert (strcmp (insn->name, str) == 0);
10557
10558       ok = is_opcode_valid_16 (insn);
10559       if (! ok)
10560         {
10561           if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes]
10562               && strcmp (insn->name, insn[1].name) == 0)
10563             {
10564               ++insn;
10565               continue;
10566             }
10567           else
10568             {
10569               if (!insn_error)
10570                 {
10571                   static char buf[100];
10572                   sprintf (buf,
10573                            _("opcode not supported on this processor: %s (%s)"),
10574                            mips_cpu_info_from_arch (mips_opts.arch)->name,
10575                            mips_cpu_info_from_isa (mips_opts.isa)->name);
10576                   insn_error = buf;
10577                 }
10578               return;
10579             }
10580         }
10581
10582       create_insn (ip, insn);
10583       imm_expr.X_op = O_absent;
10584       imm_reloc[0] = BFD_RELOC_UNUSED;
10585       imm_reloc[1] = BFD_RELOC_UNUSED;
10586       imm_reloc[2] = BFD_RELOC_UNUSED;
10587       imm2_expr.X_op = O_absent;
10588       offset_expr.X_op = O_absent;
10589       offset_reloc[0] = BFD_RELOC_UNUSED;
10590       offset_reloc[1] = BFD_RELOC_UNUSED;
10591       offset_reloc[2] = BFD_RELOC_UNUSED;
10592       for (args = insn->args; 1; ++args)
10593         {
10594           int c;
10595
10596           if (*s == ' ')
10597             ++s;
10598
10599           /* In this switch statement we call break if we did not find
10600              a match, continue if we did find a match, or return if we
10601              are done.  */
10602
10603           c = *args;
10604           switch (c)
10605             {
10606             case '\0':
10607               if (*s == '\0')
10608                 {
10609                   /* Stuff the immediate value in now, if we can.  */
10610                   if (imm_expr.X_op == O_constant
10611                       && *imm_reloc > BFD_RELOC_UNUSED
10612                       && *imm_reloc != BFD_RELOC_MIPS16_GOT16
10613                       && *imm_reloc != BFD_RELOC_MIPS16_CALL16
10614                       && insn->pinfo != INSN_MACRO)
10615                     {
10616                       valueT tmp;
10617
10618                       switch (*offset_reloc)
10619                         {
10620                           case BFD_RELOC_MIPS16_HI16_S:
10621                             tmp = (imm_expr.X_add_number + 0x8000) >> 16;
10622                             break;
10623
10624                           case BFD_RELOC_MIPS16_HI16:
10625                             tmp = imm_expr.X_add_number >> 16;
10626                             break;
10627
10628                           case BFD_RELOC_MIPS16_LO16:
10629                             tmp = ((imm_expr.X_add_number + 0x8000) & 0xffff)
10630                                   - 0x8000;
10631                             break;
10632
10633                           case BFD_RELOC_UNUSED:
10634                             tmp = imm_expr.X_add_number;
10635                             break;
10636
10637                           default:
10638                             internalError ();
10639                         }
10640                       *offset_reloc = BFD_RELOC_UNUSED;
10641
10642                       mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
10643                                     tmp, TRUE, mips16_small,
10644                                     mips16_ext, &ip->insn_opcode,
10645                                     &ip->use_extend, &ip->extend);
10646                       imm_expr.X_op = O_absent;
10647                       *imm_reloc = BFD_RELOC_UNUSED;
10648                     }
10649
10650                   return;
10651                 }
10652               break;
10653
10654             case ',':
10655               if (*s++ == c)
10656                 continue;
10657               s--;
10658               switch (*++args)
10659                 {
10660                 case 'v':
10661                   MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
10662                   continue;
10663                 case 'w':
10664                   MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
10665                   continue;
10666                 }
10667               break;
10668
10669             case '(':
10670             case ')':
10671               if (*s++ == c)
10672                 continue;
10673               break;
10674
10675             case 'v':
10676             case 'w':
10677               if (s[0] != '$')
10678                 {
10679                   if (c == 'v')
10680                     MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
10681                   else
10682                     MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
10683                   ++args;
10684                   continue;
10685                 }
10686               /* Fall through.  */
10687             case 'x':
10688             case 'y':
10689             case 'z':
10690             case 'Z':
10691             case '0':
10692             case 'S':
10693             case 'R':
10694             case 'X':
10695             case 'Y':
10696               s_reset = s;
10697               if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
10698                 {
10699                   if (c == 'v' || c == 'w')
10700                     {
10701                       if (c == 'v')
10702                         MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
10703                       else
10704                         MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
10705                       ++args;
10706                       continue;
10707                     }
10708                   break;
10709                 }
10710
10711               if (*s == ' ')
10712                 ++s;
10713               if (args[1] != *s)
10714                 {
10715                   if (c == 'v' || c == 'w')
10716                     {
10717                       regno = mips16_to_32_reg_map[lastregno];
10718                       s = s_reset;
10719                       ++args;
10720                     }
10721                 }
10722
10723               switch (c)
10724                 {
10725                 case 'x':
10726                 case 'y':
10727                 case 'z':
10728                 case 'v':
10729                 case 'w':
10730                 case 'Z':
10731                   regno = mips32_to_16_reg_map[regno];
10732                   break;
10733
10734                 case '0':
10735                   if (regno != 0)
10736                     regno = ILLEGAL_REG;
10737                   break;
10738
10739                 case 'S':
10740                   if (regno != SP)
10741                     regno = ILLEGAL_REG;
10742                   break;
10743
10744                 case 'R':
10745                   if (regno != RA)
10746                     regno = ILLEGAL_REG;
10747                   break;
10748
10749                 case 'X':
10750                 case 'Y':
10751                   if (regno == AT && mips_opts.at)
10752                     {
10753                       if (mips_opts.at == ATREG)
10754                         as_warn (_("used $at without \".set noat\""));
10755                       else
10756                         as_warn (_("used $%u with \".set at=$%u\""),
10757                                  regno, mips_opts.at);
10758                     }
10759                   break;
10760
10761                 default:
10762                   internalError ();
10763                 }
10764
10765               if (regno == ILLEGAL_REG)
10766                 break;
10767
10768               switch (c)
10769                 {
10770                 case 'x':
10771                 case 'v':
10772                   MIPS16_INSERT_OPERAND (RX, *ip, regno);
10773                   break;
10774                 case 'y':
10775                 case 'w':
10776                   MIPS16_INSERT_OPERAND (RY, *ip, regno);
10777                   break;
10778                 case 'z':
10779                   MIPS16_INSERT_OPERAND (RZ, *ip, regno);
10780                   break;
10781                 case 'Z':
10782                   MIPS16_INSERT_OPERAND (MOVE32Z, *ip, regno);
10783                 case '0':
10784                 case 'S':
10785                 case 'R':
10786                   break;
10787                 case 'X':
10788                   MIPS16_INSERT_OPERAND (REGR32, *ip, regno);
10789                   break;
10790                 case 'Y':
10791                   regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
10792                   MIPS16_INSERT_OPERAND (REG32R, *ip, regno);
10793                   break;
10794                 default:
10795                   internalError ();
10796                 }
10797
10798               lastregno = regno;
10799               continue;
10800
10801             case 'P':
10802               if (strncmp (s, "$pc", 3) == 0)
10803                 {
10804                   s += 3;
10805                   continue;
10806                 }
10807               break;
10808
10809             case '5':
10810             case 'H':
10811             case 'W':
10812             case 'D':
10813             case 'j':
10814             case 'V':
10815             case 'C':
10816             case 'U':
10817             case 'k':
10818             case 'K':
10819               i = my_getSmallExpression (&imm_expr, imm_reloc, s);
10820               if (i > 0)
10821                 {
10822                   if (imm_expr.X_op != O_constant)
10823                     {
10824                       mips16_ext = TRUE;
10825                       ip->use_extend = TRUE;
10826                       ip->extend = 0;
10827                     }
10828                   else
10829                     {
10830                       /* We need to relax this instruction.  */
10831                       *offset_reloc = *imm_reloc;
10832                       *imm_reloc = (int) BFD_RELOC_UNUSED + c;
10833                     }
10834                   s = expr_end;
10835                   continue;
10836                 }
10837               *imm_reloc = BFD_RELOC_UNUSED;
10838               /* Fall through.  */
10839             case '<':
10840             case '>':
10841             case '[':
10842             case ']':
10843             case '4':
10844             case '8':
10845               my_getExpression (&imm_expr, s);
10846               if (imm_expr.X_op == O_register)
10847                 {
10848                   /* What we thought was an expression turned out to
10849                      be a register.  */
10850
10851                   if (s[0] == '(' && args[1] == '(')
10852                     {
10853                       /* It looks like the expression was omitted
10854                          before a register indirection, which means
10855                          that the expression is implicitly zero.  We
10856                          still set up imm_expr, so that we handle
10857                          explicit extensions correctly.  */
10858                       imm_expr.X_op = O_constant;
10859                       imm_expr.X_add_number = 0;
10860                       *imm_reloc = (int) BFD_RELOC_UNUSED + c;
10861                       continue;
10862                     }
10863
10864                   break;
10865                 }
10866
10867               /* We need to relax this instruction.  */
10868               *imm_reloc = (int) BFD_RELOC_UNUSED + c;
10869               s = expr_end;
10870               continue;
10871
10872             case 'p':
10873             case 'q':
10874             case 'A':
10875             case 'B':
10876             case 'E':
10877               /* We use offset_reloc rather than imm_reloc for the PC
10878                  relative operands.  This lets macros with both
10879                  immediate and address operands work correctly.  */
10880               my_getExpression (&offset_expr, s);
10881
10882               if (offset_expr.X_op == O_register)
10883                 break;
10884
10885               /* We need to relax this instruction.  */
10886               *offset_reloc = (int) BFD_RELOC_UNUSED + c;
10887               s = expr_end;
10888               continue;
10889
10890             case '6':           /* break code */
10891               my_getExpression (&imm_expr, s);
10892               check_absolute_expr (ip, &imm_expr);
10893               if ((unsigned long) imm_expr.X_add_number > 63)
10894                 as_warn (_("Invalid value for `%s' (%lu)"),
10895                          ip->insn_mo->name,
10896                          (unsigned long) imm_expr.X_add_number);
10897               MIPS16_INSERT_OPERAND (IMM6, *ip, imm_expr.X_add_number);
10898               imm_expr.X_op = O_absent;
10899               s = expr_end;
10900               continue;
10901
10902             case 'a':           /* 26 bit address */
10903               my_getExpression (&offset_expr, s);
10904               s = expr_end;
10905               *offset_reloc = BFD_RELOC_MIPS16_JMP;
10906               ip->insn_opcode <<= 16;
10907               continue;
10908
10909             case 'l':           /* register list for entry macro */
10910             case 'L':           /* register list for exit macro */
10911               {
10912                 int mask;
10913
10914                 if (c == 'l')
10915                   mask = 0;
10916                 else
10917                   mask = 7 << 3;
10918                 while (*s != '\0')
10919                   {
10920                     unsigned int freg, reg1, reg2;
10921
10922                     while (*s == ' ' || *s == ',')
10923                       ++s;
10924                     if (reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
10925                       freg = 0;
10926                     else if (reg_lookup (&s, RTYPE_FPU, &reg1))
10927                       freg = 1;
10928                     else
10929                       {
10930                         as_bad (_("can't parse register list"));
10931                         break;
10932                       }
10933                     if (*s == ' ')
10934                       ++s;
10935                     if (*s != '-')
10936                       reg2 = reg1;
10937                     else
10938                       {
10939                         ++s;
10940                         if (!reg_lookup (&s, freg ? RTYPE_FPU 
10941                                          : (RTYPE_GP | RTYPE_NUM), &reg2))
10942                           {
10943                             as_bad (_("invalid register list"));
10944                             break;
10945                           }
10946                       }
10947                     if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
10948                       {
10949                         mask &= ~ (7 << 3);
10950                         mask |= 5 << 3;
10951                       }
10952                     else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
10953                       {
10954                         mask &= ~ (7 << 3);
10955                         mask |= 6 << 3;
10956                       }
10957                     else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
10958                       mask |= (reg2 - 3) << 3;
10959                     else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
10960                       mask |= (reg2 - 15) << 1;
10961                     else if (reg1 == RA && reg2 == RA)
10962                       mask |= 1;
10963                     else
10964                       {
10965                         as_bad (_("invalid register list"));
10966                         break;
10967                       }
10968                   }
10969                 /* The mask is filled in in the opcode table for the
10970                    benefit of the disassembler.  We remove it before
10971                    applying the actual mask.  */
10972                 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
10973                 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
10974               }
10975             continue;
10976
10977             case 'm':           /* Register list for save insn.  */
10978             case 'M':           /* Register list for restore insn.  */
10979               {
10980                 int opcode = 0;
10981                 int framesz = 0, seen_framesz = 0;
10982                 int nargs = 0, statics = 0, sregs = 0;
10983
10984                 while (*s != '\0')
10985                   {
10986                     unsigned int reg1, reg2;
10987
10988                     SKIP_SPACE_TABS (s);
10989                     while (*s == ',')
10990                       ++s;
10991                     SKIP_SPACE_TABS (s);
10992
10993                     my_getExpression (&imm_expr, s);
10994                     if (imm_expr.X_op == O_constant)
10995                       {
10996                         /* Handle the frame size.  */
10997                         if (seen_framesz)
10998                           {
10999                             as_bad (_("more than one frame size in list"));
11000                             break;
11001                           }
11002                         seen_framesz = 1;
11003                         framesz = imm_expr.X_add_number;
11004                         imm_expr.X_op = O_absent;
11005                         s = expr_end;
11006                         continue;
11007                       }
11008
11009                     if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
11010                       {
11011                         as_bad (_("can't parse register list"));
11012                         break;
11013                       }
11014
11015                     while (*s == ' ')
11016                       ++s;
11017
11018                     if (*s != '-')
11019                       reg2 = reg1;
11020                     else
11021                       {
11022                         ++s;
11023                         if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg2)
11024                             || reg2 < reg1)
11025                           {
11026                             as_bad (_("can't parse register list"));
11027                             break;
11028                           }
11029                       }
11030
11031                     while (reg1 <= reg2)
11032                       {
11033                         if (reg1 >= 4 && reg1 <= 7)
11034                           {
11035                             if (!seen_framesz)
11036                                 /* args $a0-$a3 */
11037                                 nargs |= 1 << (reg1 - 4);
11038                             else
11039                                 /* statics $a0-$a3 */
11040                                 statics |= 1 << (reg1 - 4);
11041                           }
11042                         else if ((reg1 >= 16 && reg1 <= 23) || reg1 == 30)
11043                           {
11044                             /* $s0-$s8 */
11045                             sregs |= 1 << ((reg1 == 30) ? 8 : (reg1 - 16));
11046                           }
11047                         else if (reg1 == 31)
11048                           {
11049                             /* Add $ra to insn.  */
11050                             opcode |= 0x40;
11051                           }
11052                         else
11053                           {
11054                             as_bad (_("unexpected register in list"));
11055                             break;
11056                           }
11057                         if (++reg1 == 24)
11058                           reg1 = 30;
11059                       }
11060                   }
11061
11062                 /* Encode args/statics combination.  */
11063                 if (nargs & statics)
11064                   as_bad (_("arg/static registers overlap"));
11065                 else if (nargs == 0xf)
11066                   /* All $a0-$a3 are args.  */
11067                   opcode |= MIPS16_ALL_ARGS << 16;
11068                 else if (statics == 0xf)
11069                   /* All $a0-$a3 are statics.  */
11070                   opcode |= MIPS16_ALL_STATICS << 16;
11071                 else 
11072                   {
11073                     int narg = 0, nstat = 0;
11074
11075                     /* Count arg registers.  */
11076                     while (nargs & 0x1)
11077                       {
11078                         nargs >>= 1;
11079                         narg++;
11080                       }
11081                     if (nargs != 0)
11082                       as_bad (_("invalid arg register list"));
11083
11084                     /* Count static registers.  */
11085                     while (statics & 0x8)
11086                       {
11087                         statics = (statics << 1) & 0xf;
11088                         nstat++;
11089                       }
11090                     if (statics != 0) 
11091                       as_bad (_("invalid static register list"));
11092
11093                     /* Encode args/statics.  */
11094                     opcode |= ((narg << 2) | nstat) << 16;
11095                   }
11096
11097                 /* Encode $s0/$s1.  */
11098                 if (sregs & (1 << 0))           /* $s0 */
11099                   opcode |= 0x20;
11100                 if (sregs & (1 << 1))           /* $s1 */
11101                   opcode |= 0x10;
11102                 sregs >>= 2;
11103
11104                 if (sregs != 0)
11105                   {
11106                     /* Count regs $s2-$s8.  */
11107                     int nsreg = 0;
11108                     while (sregs & 1)
11109                       {
11110                         sregs >>= 1;
11111                         nsreg++;
11112                       }
11113                     if (sregs != 0)
11114                       as_bad (_("invalid static register list"));
11115                     /* Encode $s2-$s8. */
11116                     opcode |= nsreg << 24;
11117                   }
11118
11119                 /* Encode frame size.  */
11120                 if (!seen_framesz)
11121                   as_bad (_("missing frame size"));
11122                 else if ((framesz & 7) != 0 || framesz < 0
11123                          || framesz > 0xff * 8)
11124                   as_bad (_("invalid frame size"));
11125                 else if (framesz != 128 || (opcode >> 16) != 0)
11126                   {
11127                     framesz /= 8;
11128                     opcode |= (((framesz & 0xf0) << 16)
11129                              | (framesz & 0x0f));
11130                   }
11131
11132                 /* Finally build the instruction.  */
11133                 if ((opcode >> 16) != 0 || framesz == 0)
11134                   {
11135                     ip->use_extend = TRUE;
11136                     ip->extend = opcode >> 16;
11137                   }
11138                 ip->insn_opcode |= opcode & 0x7f;
11139               }
11140             continue;
11141
11142             case 'e':           /* extend code */
11143               my_getExpression (&imm_expr, s);
11144               check_absolute_expr (ip, &imm_expr);
11145               if ((unsigned long) imm_expr.X_add_number > 0x7ff)
11146                 {
11147                   as_warn (_("Invalid value for `%s' (%lu)"),
11148                            ip->insn_mo->name,
11149                            (unsigned long) imm_expr.X_add_number);
11150                   imm_expr.X_add_number &= 0x7ff;
11151                 }
11152               ip->insn_opcode |= imm_expr.X_add_number;
11153               imm_expr.X_op = O_absent;
11154               s = expr_end;
11155               continue;
11156
11157             default:
11158               internalError ();
11159             }
11160           break;
11161         }
11162
11163       /* Args don't match.  */
11164       if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
11165           strcmp (insn->name, insn[1].name) == 0)
11166         {
11167           ++insn;
11168           s = argsstart;
11169           continue;
11170         }
11171
11172       insn_error = _("illegal operands");
11173
11174       return;
11175     }
11176 }
11177
11178 /* This structure holds information we know about a mips16 immediate
11179    argument type.  */
11180
11181 struct mips16_immed_operand
11182 {
11183   /* The type code used in the argument string in the opcode table.  */
11184   int type;
11185   /* The number of bits in the short form of the opcode.  */
11186   int nbits;
11187   /* The number of bits in the extended form of the opcode.  */
11188   int extbits;
11189   /* The amount by which the short form is shifted when it is used;
11190      for example, the sw instruction has a shift count of 2.  */
11191   int shift;
11192   /* The amount by which the short form is shifted when it is stored
11193      into the instruction code.  */
11194   int op_shift;
11195   /* Non-zero if the short form is unsigned.  */
11196   int unsp;
11197   /* Non-zero if the extended form is unsigned.  */
11198   int extu;
11199   /* Non-zero if the value is PC relative.  */
11200   int pcrel;
11201 };
11202
11203 /* The mips16 immediate operand types.  */
11204
11205 static const struct mips16_immed_operand mips16_immed_operands[] =
11206 {
11207   { '<',  3,  5, 0, MIPS16OP_SH_RZ,   1, 1, 0 },
11208   { '>',  3,  5, 0, MIPS16OP_SH_RX,   1, 1, 0 },
11209   { '[',  3,  6, 0, MIPS16OP_SH_RZ,   1, 1, 0 },
11210   { ']',  3,  6, 0, MIPS16OP_SH_RX,   1, 1, 0 },
11211   { '4',  4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
11212   { '5',  5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
11213   { 'H',  5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
11214   { 'W',  5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
11215   { 'D',  5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
11216   { 'j',  5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
11217   { '8',  8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
11218   { 'V',  8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
11219   { 'C',  8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
11220   { 'U',  8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
11221   { 'k',  8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
11222   { 'K',  8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
11223   { 'p',  8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
11224   { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
11225   { 'A',  8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
11226   { 'B',  5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
11227   { 'E',  5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
11228 };
11229
11230 #define MIPS16_NUM_IMMED \
11231   (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
11232
11233 /* Handle a mips16 instruction with an immediate value.  This or's the
11234    small immediate value into *INSN.  It sets *USE_EXTEND to indicate
11235    whether an extended value is needed; if one is needed, it sets
11236    *EXTEND to the value.  The argument type is TYPE.  The value is VAL.
11237    If SMALL is true, an unextended opcode was explicitly requested.
11238    If EXT is true, an extended opcode was explicitly requested.  If
11239    WARN is true, warn if EXT does not match reality.  */
11240
11241 static void
11242 mips16_immed (char *file, unsigned int line, int type, offsetT val,
11243               bfd_boolean warn, bfd_boolean small, bfd_boolean ext,
11244               unsigned long *insn, bfd_boolean *use_extend,
11245               unsigned short *extend)
11246 {
11247   const struct mips16_immed_operand *op;
11248   int mintiny, maxtiny;
11249   bfd_boolean needext;
11250
11251   op = mips16_immed_operands;
11252   while (op->type != type)
11253     {
11254       ++op;
11255       gas_assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
11256     }
11257
11258   if (op->unsp)
11259     {
11260       if (type == '<' || type == '>' || type == '[' || type == ']')
11261         {
11262           mintiny = 1;
11263           maxtiny = 1 << op->nbits;
11264         }
11265       else
11266         {
11267           mintiny = 0;
11268           maxtiny = (1 << op->nbits) - 1;
11269         }
11270     }
11271   else
11272     {
11273       mintiny = - (1 << (op->nbits - 1));
11274       maxtiny = (1 << (op->nbits - 1)) - 1;
11275     }
11276
11277   /* Branch offsets have an implicit 0 in the lowest bit.  */
11278   if (type == 'p' || type == 'q')
11279     val /= 2;
11280
11281   if ((val & ((1 << op->shift) - 1)) != 0
11282       || val < (mintiny << op->shift)
11283       || val > (maxtiny << op->shift))
11284     needext = TRUE;
11285   else
11286     needext = FALSE;
11287
11288   if (warn && ext && ! needext)
11289     as_warn_where (file, line,
11290                    _("extended operand requested but not required"));
11291   if (small && needext)
11292     as_bad_where (file, line, _("invalid unextended operand value"));
11293
11294   if (small || (! ext && ! needext))
11295     {
11296       int insnval;
11297
11298       *use_extend = FALSE;
11299       insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
11300       insnval <<= op->op_shift;
11301       *insn |= insnval;
11302     }
11303   else
11304     {
11305       long minext, maxext;
11306       int extval;
11307
11308       if (op->extu)
11309         {
11310           minext = 0;
11311           maxext = (1 << op->extbits) - 1;
11312         }
11313       else
11314         {
11315           minext = - (1 << (op->extbits - 1));
11316           maxext = (1 << (op->extbits - 1)) - 1;
11317         }
11318       if (val < minext || val > maxext)
11319         as_bad_where (file, line,
11320                       _("operand value out of range for instruction"));
11321
11322       *use_extend = TRUE;
11323       if (op->extbits == 16)
11324         {
11325           extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
11326           val &= 0x1f;
11327         }
11328       else if (op->extbits == 15)
11329         {
11330           extval = ((val >> 11) & 0xf) | (val & 0x7f0);
11331           val &= 0xf;
11332         }
11333       else
11334         {
11335           extval = ((val & 0x1f) << 6) | (val & 0x20);
11336           val = 0;
11337         }
11338
11339       *extend = (unsigned short) extval;
11340       *insn |= val;
11341     }
11342 }
11343 \f
11344 struct percent_op_match
11345 {
11346   const char *str;
11347   bfd_reloc_code_real_type reloc;
11348 };
11349
11350 static const struct percent_op_match mips_percent_op[] =
11351 {
11352   {"%lo", BFD_RELOC_LO16},
11353 #ifdef OBJ_ELF
11354   {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
11355   {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
11356   {"%call16", BFD_RELOC_MIPS_CALL16},
11357   {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
11358   {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
11359   {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
11360   {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
11361   {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
11362   {"%got", BFD_RELOC_MIPS_GOT16},
11363   {"%gp_rel", BFD_RELOC_GPREL16},
11364   {"%half", BFD_RELOC_16},
11365   {"%highest", BFD_RELOC_MIPS_HIGHEST},
11366   {"%higher", BFD_RELOC_MIPS_HIGHER},
11367   {"%neg", BFD_RELOC_MIPS_SUB},
11368   {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
11369   {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
11370   {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
11371   {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
11372   {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
11373   {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
11374   {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
11375 #endif
11376   {"%hi", BFD_RELOC_HI16_S}
11377 };
11378
11379 static const struct percent_op_match mips16_percent_op[] =
11380 {
11381   {"%lo", BFD_RELOC_MIPS16_LO16},
11382   {"%gprel", BFD_RELOC_MIPS16_GPREL},
11383   {"%got", BFD_RELOC_MIPS16_GOT16},
11384   {"%call16", BFD_RELOC_MIPS16_CALL16},
11385   {"%hi", BFD_RELOC_MIPS16_HI16_S}
11386 };
11387
11388
11389 /* Return true if *STR points to a relocation operator.  When returning true,
11390    move *STR over the operator and store its relocation code in *RELOC.
11391    Leave both *STR and *RELOC alone when returning false.  */
11392
11393 static bfd_boolean
11394 parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
11395 {
11396   const struct percent_op_match *percent_op;
11397   size_t limit, i;
11398
11399   if (mips_opts.mips16)
11400     {
11401       percent_op = mips16_percent_op;
11402       limit = ARRAY_SIZE (mips16_percent_op);
11403     }
11404   else
11405     {
11406       percent_op = mips_percent_op;
11407       limit = ARRAY_SIZE (mips_percent_op);
11408     }
11409
11410   for (i = 0; i < limit; i++)
11411     if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
11412       {
11413         int len = strlen (percent_op[i].str);
11414
11415         if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
11416           continue;
11417
11418         *str += strlen (percent_op[i].str);
11419         *reloc = percent_op[i].reloc;
11420
11421         /* Check whether the output BFD supports this relocation.
11422            If not, issue an error and fall back on something safe.  */
11423         if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
11424           {
11425             as_bad (_("relocation %s isn't supported by the current ABI"),
11426                     percent_op[i].str);
11427             *reloc = BFD_RELOC_UNUSED;
11428           }
11429         return TRUE;
11430       }
11431   return FALSE;
11432 }
11433
11434
11435 /* Parse string STR as a 16-bit relocatable operand.  Store the
11436    expression in *EP and the relocations in the array starting
11437    at RELOC.  Return the number of relocation operators used.
11438
11439    On exit, EXPR_END points to the first character after the expression.  */
11440
11441 static size_t
11442 my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
11443                        char *str)
11444 {
11445   bfd_reloc_code_real_type reversed_reloc[3];
11446   size_t reloc_index, i;
11447   int crux_depth, str_depth;
11448   char *crux;
11449
11450   /* Search for the start of the main expression, recoding relocations
11451      in REVERSED_RELOC.  End the loop with CRUX pointing to the start
11452      of the main expression and with CRUX_DEPTH containing the number
11453      of open brackets at that point.  */
11454   reloc_index = -1;
11455   str_depth = 0;
11456   do
11457     {
11458       reloc_index++;
11459       crux = str;
11460       crux_depth = str_depth;
11461
11462       /* Skip over whitespace and brackets, keeping count of the number
11463          of brackets.  */
11464       while (*str == ' ' || *str == '\t' || *str == '(')
11465         if (*str++ == '(')
11466           str_depth++;
11467     }
11468   while (*str == '%'
11469          && reloc_index < (HAVE_NEWABI ? 3 : 1)
11470          && parse_relocation (&str, &reversed_reloc[reloc_index]));
11471
11472   my_getExpression (ep, crux);
11473   str = expr_end;
11474
11475   /* Match every open bracket.  */
11476   while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
11477     if (*str++ == ')')
11478       crux_depth--;
11479
11480   if (crux_depth > 0)
11481     as_bad (_("unclosed '('"));
11482
11483   expr_end = str;
11484
11485   if (reloc_index != 0)
11486     {
11487       prev_reloc_op_frag = frag_now;
11488       for (i = 0; i < reloc_index; i++)
11489         reloc[i] = reversed_reloc[reloc_index - 1 - i];
11490     }
11491
11492   return reloc_index;
11493 }
11494
11495 static void
11496 my_getExpression (expressionS *ep, char *str)
11497 {
11498   char *save_in;
11499
11500   save_in = input_line_pointer;
11501   input_line_pointer = str;
11502   expression (ep);
11503   expr_end = input_line_pointer;
11504   input_line_pointer = save_in;
11505 }
11506
11507 char *
11508 md_atof (int type, char *litP, int *sizeP)
11509 {
11510   return ieee_md_atof (type, litP, sizeP, target_big_endian);
11511 }
11512
11513 void
11514 md_number_to_chars (char *buf, valueT val, int n)
11515 {
11516   if (target_big_endian)
11517     number_to_chars_bigendian (buf, val, n);
11518   else
11519     number_to_chars_littleendian (buf, val, n);
11520 }
11521 \f
11522 #ifdef OBJ_ELF
11523 static int support_64bit_objects(void)
11524 {
11525   const char **list, **l;
11526   int yes;
11527
11528   list = bfd_target_list ();
11529   for (l = list; *l != NULL; l++)
11530     if (strcmp (*l, ELF_TARGET ("elf64-", "big")) == 0
11531         || strcmp (*l, ELF_TARGET ("elf64-", "little")) == 0)
11532       break;
11533   yes = (*l != NULL);
11534   free (list);
11535   return yes;
11536 }
11537 #endif /* OBJ_ELF */
11538
11539 const char *md_shortopts = "O::g::G:";
11540
11541 enum options
11542   {
11543     OPTION_MARCH = OPTION_MD_BASE,
11544     OPTION_MTUNE,
11545     OPTION_MIPS1,
11546     OPTION_MIPS2,
11547     OPTION_MIPS3,
11548     OPTION_MIPS4,
11549     OPTION_MIPS5,
11550     OPTION_MIPS32,
11551     OPTION_MIPS64,
11552     OPTION_MIPS32R2,
11553     OPTION_MIPS64R2,
11554     OPTION_MIPS16,
11555     OPTION_NO_MIPS16,
11556     OPTION_MIPS3D,
11557     OPTION_NO_MIPS3D,
11558     OPTION_MDMX,
11559     OPTION_NO_MDMX,
11560     OPTION_DSP,
11561     OPTION_NO_DSP,
11562     OPTION_MT,
11563     OPTION_NO_MT,
11564     OPTION_SMARTMIPS,
11565     OPTION_NO_SMARTMIPS,
11566     OPTION_DSPR2,
11567     OPTION_NO_DSPR2,
11568     OPTION_COMPAT_ARCH_BASE,
11569     OPTION_M4650,
11570     OPTION_NO_M4650,
11571     OPTION_M4010,
11572     OPTION_NO_M4010,
11573     OPTION_M4100,
11574     OPTION_NO_M4100,
11575     OPTION_M3900,
11576     OPTION_NO_M3900,
11577     OPTION_M7000_HILO_FIX,
11578     OPTION_MNO_7000_HILO_FIX, 
11579     OPTION_FIX_24K,
11580     OPTION_NO_FIX_24K,
11581     OPTION_FIX_LOONGSON2F_JUMP,
11582     OPTION_NO_FIX_LOONGSON2F_JUMP,
11583     OPTION_FIX_LOONGSON2F_NOP,
11584     OPTION_NO_FIX_LOONGSON2F_NOP,
11585     OPTION_FIX_VR4120,
11586     OPTION_NO_FIX_VR4120,
11587     OPTION_FIX_VR4130,
11588     OPTION_NO_FIX_VR4130,
11589     OPTION_FIX_CN63XXP1,
11590     OPTION_NO_FIX_CN63XXP1,
11591     OPTION_TRAP,
11592     OPTION_BREAK,
11593     OPTION_EB,
11594     OPTION_EL,
11595     OPTION_FP32,
11596     OPTION_GP32,
11597     OPTION_CONSTRUCT_FLOATS,
11598     OPTION_NO_CONSTRUCT_FLOATS,
11599     OPTION_FP64,
11600     OPTION_GP64,
11601     OPTION_RELAX_BRANCH,
11602     OPTION_NO_RELAX_BRANCH,
11603     OPTION_MSHARED,
11604     OPTION_MNO_SHARED,
11605     OPTION_MSYM32,
11606     OPTION_MNO_SYM32,
11607     OPTION_SOFT_FLOAT,
11608     OPTION_HARD_FLOAT,
11609     OPTION_SINGLE_FLOAT,
11610     OPTION_DOUBLE_FLOAT,
11611     OPTION_32,
11612 #ifdef OBJ_ELF
11613     OPTION_CALL_SHARED,
11614     OPTION_CALL_NONPIC,
11615     OPTION_NON_SHARED,
11616     OPTION_XGOT,
11617     OPTION_MABI,
11618     OPTION_N32,
11619     OPTION_64,
11620     OPTION_MDEBUG,
11621     OPTION_NO_MDEBUG,
11622     OPTION_PDR,
11623     OPTION_NO_PDR,
11624     OPTION_MVXWORKS_PIC,
11625 #endif /* OBJ_ELF */
11626     OPTION_END_OF_ENUM    
11627   };
11628   
11629 struct option md_longopts[] =
11630 {
11631   /* Options which specify architecture.  */
11632   {"march", required_argument, NULL, OPTION_MARCH},
11633   {"mtune", required_argument, NULL, OPTION_MTUNE},
11634   {"mips0", no_argument, NULL, OPTION_MIPS1},
11635   {"mips1", no_argument, NULL, OPTION_MIPS1},
11636   {"mips2", no_argument, NULL, OPTION_MIPS2},
11637   {"mips3", no_argument, NULL, OPTION_MIPS3},
11638   {"mips4", no_argument, NULL, OPTION_MIPS4},
11639   {"mips5", no_argument, NULL, OPTION_MIPS5},
11640   {"mips32", no_argument, NULL, OPTION_MIPS32},
11641   {"mips64", no_argument, NULL, OPTION_MIPS64},
11642   {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
11643   {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
11644
11645   /* Options which specify Application Specific Extensions (ASEs).  */
11646   {"mips16", no_argument, NULL, OPTION_MIPS16},
11647   {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
11648   {"mips3d", no_argument, NULL, OPTION_MIPS3D},
11649   {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
11650   {"mdmx", no_argument, NULL, OPTION_MDMX},
11651   {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
11652   {"mdsp", no_argument, NULL, OPTION_DSP},
11653   {"mno-dsp", no_argument, NULL, OPTION_NO_DSP},
11654   {"mmt", no_argument, NULL, OPTION_MT},
11655   {"mno-mt", no_argument, NULL, OPTION_NO_MT},
11656   {"msmartmips", no_argument, NULL, OPTION_SMARTMIPS},
11657   {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS},
11658   {"mdspr2", no_argument, NULL, OPTION_DSPR2},
11659   {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2},
11660
11661   /* Old-style architecture options.  Don't add more of these.  */
11662   {"m4650", no_argument, NULL, OPTION_M4650},
11663   {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
11664   {"m4010", no_argument, NULL, OPTION_M4010},
11665   {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
11666   {"m4100", no_argument, NULL, OPTION_M4100},
11667   {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
11668   {"m3900", no_argument, NULL, OPTION_M3900},
11669   {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
11670
11671   /* Options which enable bug fixes.  */
11672   {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
11673   {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
11674   {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
11675   {"mfix-loongson2f-jump", no_argument, NULL, OPTION_FIX_LOONGSON2F_JUMP},
11676   {"mno-fix-loongson2f-jump", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_JUMP},
11677   {"mfix-loongson2f-nop", no_argument, NULL, OPTION_FIX_LOONGSON2F_NOP},
11678   {"mno-fix-loongson2f-nop", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_NOP},
11679   {"mfix-vr4120",    no_argument, NULL, OPTION_FIX_VR4120},
11680   {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
11681   {"mfix-vr4130",    no_argument, NULL, OPTION_FIX_VR4130},
11682   {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
11683   {"mfix-24k",    no_argument, NULL, OPTION_FIX_24K},
11684   {"mno-fix-24k", no_argument, NULL, OPTION_NO_FIX_24K},
11685   {"mfix-cn63xxp1", no_argument, NULL, OPTION_FIX_CN63XXP1},
11686   {"mno-fix-cn63xxp1", no_argument, NULL, OPTION_NO_FIX_CN63XXP1},
11687
11688   /* Miscellaneous options.  */
11689   {"trap", no_argument, NULL, OPTION_TRAP},
11690   {"no-break", no_argument, NULL, OPTION_TRAP},
11691   {"break", no_argument, NULL, OPTION_BREAK},
11692   {"no-trap", no_argument, NULL, OPTION_BREAK},
11693   {"EB", no_argument, NULL, OPTION_EB},
11694   {"EL", no_argument, NULL, OPTION_EL},
11695   {"mfp32", no_argument, NULL, OPTION_FP32},
11696   {"mgp32", no_argument, NULL, OPTION_GP32},
11697   {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
11698   {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
11699   {"mfp64", no_argument, NULL, OPTION_FP64},
11700   {"mgp64", no_argument, NULL, OPTION_GP64},
11701   {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
11702   {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
11703   {"mshared", no_argument, NULL, OPTION_MSHARED},
11704   {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
11705   {"msym32", no_argument, NULL, OPTION_MSYM32},
11706   {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
11707   {"msoft-float", no_argument, NULL, OPTION_SOFT_FLOAT},
11708   {"mhard-float", no_argument, NULL, OPTION_HARD_FLOAT},
11709   {"msingle-float", no_argument, NULL, OPTION_SINGLE_FLOAT},
11710   {"mdouble-float", no_argument, NULL, OPTION_DOUBLE_FLOAT},
11711
11712   /* Strictly speaking this next option is ELF specific,
11713      but we allow it for other ports as well in order to
11714      make testing easier.  */
11715   {"32",          no_argument, NULL, OPTION_32},
11716   
11717   /* ELF-specific options.  */
11718 #ifdef OBJ_ELF
11719   {"KPIC",        no_argument, NULL, OPTION_CALL_SHARED},
11720   {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
11721   {"call_nonpic", no_argument, NULL, OPTION_CALL_NONPIC},
11722   {"non_shared",  no_argument, NULL, OPTION_NON_SHARED},
11723   {"xgot",        no_argument, NULL, OPTION_XGOT},
11724   {"mabi", required_argument, NULL, OPTION_MABI},
11725   {"n32",         no_argument, NULL, OPTION_N32},
11726   {"64",          no_argument, NULL, OPTION_64},
11727   {"mdebug", no_argument, NULL, OPTION_MDEBUG},
11728   {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
11729   {"mpdr", no_argument, NULL, OPTION_PDR},
11730   {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
11731   {"mvxworks-pic", no_argument, NULL, OPTION_MVXWORKS_PIC},
11732 #endif /* OBJ_ELF */
11733
11734   {NULL, no_argument, NULL, 0}
11735 };
11736 size_t md_longopts_size = sizeof (md_longopts);
11737
11738 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
11739    NEW_VALUE.  Warn if another value was already specified.  Note:
11740    we have to defer parsing the -march and -mtune arguments in order
11741    to handle 'from-abi' correctly, since the ABI might be specified
11742    in a later argument.  */
11743
11744 static void
11745 mips_set_option_string (const char **string_ptr, const char *new_value)
11746 {
11747   if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
11748     as_warn (_("A different %s was already specified, is now %s"),
11749              string_ptr == &mips_arch_string ? "-march" : "-mtune",
11750              new_value);
11751
11752   *string_ptr = new_value;
11753 }
11754
11755 int
11756 md_parse_option (int c, char *arg)
11757 {
11758   switch (c)
11759     {
11760     case OPTION_CONSTRUCT_FLOATS:
11761       mips_disable_float_construction = 0;
11762       break;
11763
11764     case OPTION_NO_CONSTRUCT_FLOATS:
11765       mips_disable_float_construction = 1;
11766       break;
11767
11768     case OPTION_TRAP:
11769       mips_trap = 1;
11770       break;
11771
11772     case OPTION_BREAK:
11773       mips_trap = 0;
11774       break;
11775
11776     case OPTION_EB:
11777       target_big_endian = 1;
11778       break;
11779
11780     case OPTION_EL:
11781       target_big_endian = 0;
11782       break;
11783
11784     case 'O':
11785       if (arg == NULL)
11786         mips_optimize = 1;
11787       else if (arg[0] == '0')
11788         mips_optimize = 0;
11789       else if (arg[0] == '1')
11790         mips_optimize = 1;
11791       else
11792         mips_optimize = 2;
11793       break;
11794
11795     case 'g':
11796       if (arg == NULL)
11797         mips_debug = 2;
11798       else
11799         mips_debug = atoi (arg);
11800       break;
11801
11802     case OPTION_MIPS1:
11803       file_mips_isa = ISA_MIPS1;
11804       break;
11805
11806     case OPTION_MIPS2:
11807       file_mips_isa = ISA_MIPS2;
11808       break;
11809
11810     case OPTION_MIPS3:
11811       file_mips_isa = ISA_MIPS3;
11812       break;
11813
11814     case OPTION_MIPS4:
11815       file_mips_isa = ISA_MIPS4;
11816       break;
11817
11818     case OPTION_MIPS5:
11819       file_mips_isa = ISA_MIPS5;
11820       break;
11821
11822     case OPTION_MIPS32:
11823       file_mips_isa = ISA_MIPS32;
11824       break;
11825
11826     case OPTION_MIPS32R2:
11827       file_mips_isa = ISA_MIPS32R2;
11828       break;
11829
11830     case OPTION_MIPS64R2:
11831       file_mips_isa = ISA_MIPS64R2;
11832       break;
11833
11834     case OPTION_MIPS64:
11835       file_mips_isa = ISA_MIPS64;
11836       break;
11837
11838     case OPTION_MTUNE:
11839       mips_set_option_string (&mips_tune_string, arg);
11840       break;
11841
11842     case OPTION_MARCH:
11843       mips_set_option_string (&mips_arch_string, arg);
11844       break;
11845
11846     case OPTION_M4650:
11847       mips_set_option_string (&mips_arch_string, "4650");
11848       mips_set_option_string (&mips_tune_string, "4650");
11849       break;
11850
11851     case OPTION_NO_M4650:
11852       break;
11853
11854     case OPTION_M4010:
11855       mips_set_option_string (&mips_arch_string, "4010");
11856       mips_set_option_string (&mips_tune_string, "4010");
11857       break;
11858
11859     case OPTION_NO_M4010:
11860       break;
11861
11862     case OPTION_M4100:
11863       mips_set_option_string (&mips_arch_string, "4100");
11864       mips_set_option_string (&mips_tune_string, "4100");
11865       break;
11866
11867     case OPTION_NO_M4100:
11868       break;
11869
11870     case OPTION_M3900:
11871       mips_set_option_string (&mips_arch_string, "3900");
11872       mips_set_option_string (&mips_tune_string, "3900");
11873       break;
11874
11875     case OPTION_NO_M3900:
11876       break;
11877
11878     case OPTION_MDMX:
11879       mips_opts.ase_mdmx = 1;
11880       break;
11881
11882     case OPTION_NO_MDMX:
11883       mips_opts.ase_mdmx = 0;
11884       break;
11885
11886     case OPTION_DSP:
11887       mips_opts.ase_dsp = 1;
11888       mips_opts.ase_dspr2 = 0;
11889       break;
11890
11891     case OPTION_NO_DSP:
11892       mips_opts.ase_dsp = 0;
11893       mips_opts.ase_dspr2 = 0;
11894       break;
11895
11896     case OPTION_DSPR2:
11897       mips_opts.ase_dspr2 = 1;
11898       mips_opts.ase_dsp = 1;
11899       break;
11900
11901     case OPTION_NO_DSPR2:
11902       mips_opts.ase_dspr2 = 0;
11903       mips_opts.ase_dsp = 0;
11904       break;
11905
11906     case OPTION_MT:
11907       mips_opts.ase_mt = 1;
11908       break;
11909
11910     case OPTION_NO_MT:
11911       mips_opts.ase_mt = 0;
11912       break;
11913
11914     case OPTION_MIPS16:
11915       mips_opts.mips16 = 1;
11916       mips_no_prev_insn ();
11917       break;
11918
11919     case OPTION_NO_MIPS16:
11920       mips_opts.mips16 = 0;
11921       mips_no_prev_insn ();
11922       break;
11923
11924     case OPTION_MIPS3D:
11925       mips_opts.ase_mips3d = 1;
11926       break;
11927
11928     case OPTION_NO_MIPS3D:
11929       mips_opts.ase_mips3d = 0;
11930       break;
11931
11932     case OPTION_SMARTMIPS:
11933       mips_opts.ase_smartmips = 1;
11934       break;
11935
11936     case OPTION_NO_SMARTMIPS:
11937       mips_opts.ase_smartmips = 0;
11938       break;
11939
11940     case OPTION_FIX_24K:
11941       mips_fix_24k = 1;
11942       break;
11943
11944     case OPTION_NO_FIX_24K:
11945       mips_fix_24k = 0;
11946       break;
11947
11948     case OPTION_FIX_LOONGSON2F_JUMP:
11949       mips_fix_loongson2f_jump = TRUE;
11950       break;
11951
11952     case OPTION_NO_FIX_LOONGSON2F_JUMP:
11953       mips_fix_loongson2f_jump = FALSE;
11954       break;
11955
11956     case OPTION_FIX_LOONGSON2F_NOP:
11957       mips_fix_loongson2f_nop = TRUE;
11958       break;
11959
11960     case OPTION_NO_FIX_LOONGSON2F_NOP:
11961       mips_fix_loongson2f_nop = FALSE;
11962       break;
11963
11964     case OPTION_FIX_VR4120:
11965       mips_fix_vr4120 = 1;
11966       break;
11967
11968     case OPTION_NO_FIX_VR4120:
11969       mips_fix_vr4120 = 0;
11970       break;
11971
11972     case OPTION_FIX_VR4130:
11973       mips_fix_vr4130 = 1;
11974       break;
11975
11976     case OPTION_NO_FIX_VR4130:
11977       mips_fix_vr4130 = 0;
11978       break;
11979
11980     case OPTION_FIX_CN63XXP1:
11981       mips_fix_cn63xxp1 = TRUE;
11982       break;
11983
11984     case OPTION_NO_FIX_CN63XXP1:
11985       mips_fix_cn63xxp1 = FALSE;
11986       break;
11987
11988     case OPTION_RELAX_BRANCH:
11989       mips_relax_branch = 1;
11990       break;
11991
11992     case OPTION_NO_RELAX_BRANCH:
11993       mips_relax_branch = 0;
11994       break;
11995
11996     case OPTION_MSHARED:
11997       mips_in_shared = TRUE;
11998       break;
11999
12000     case OPTION_MNO_SHARED:
12001       mips_in_shared = FALSE;
12002       break;
12003
12004     case OPTION_MSYM32:
12005       mips_opts.sym32 = TRUE;
12006       break;
12007
12008     case OPTION_MNO_SYM32:
12009       mips_opts.sym32 = FALSE;
12010       break;
12011
12012 #ifdef OBJ_ELF
12013       /* When generating ELF code, we permit -KPIC and -call_shared to
12014          select SVR4_PIC, and -non_shared to select no PIC.  This is
12015          intended to be compatible with Irix 5.  */
12016     case OPTION_CALL_SHARED:
12017       if (!IS_ELF)
12018         {
12019           as_bad (_("-call_shared is supported only for ELF format"));
12020           return 0;
12021         }
12022       mips_pic = SVR4_PIC;
12023       mips_abicalls = TRUE;
12024       break;
12025
12026     case OPTION_CALL_NONPIC:
12027       if (!IS_ELF)
12028         {
12029           as_bad (_("-call_nonpic is supported only for ELF format"));
12030           return 0;
12031         }
12032       mips_pic = NO_PIC;
12033       mips_abicalls = TRUE;
12034       break;
12035
12036     case OPTION_NON_SHARED:
12037       if (!IS_ELF)
12038         {
12039           as_bad (_("-non_shared is supported only for ELF format"));
12040           return 0;
12041         }
12042       mips_pic = NO_PIC;
12043       mips_abicalls = FALSE;
12044       break;
12045
12046       /* The -xgot option tells the assembler to use 32 bit offsets
12047          when accessing the got in SVR4_PIC mode.  It is for Irix
12048          compatibility.  */
12049     case OPTION_XGOT:
12050       mips_big_got = 1;
12051       break;
12052 #endif /* OBJ_ELF */
12053
12054     case 'G':
12055       g_switch_value = atoi (arg);
12056       g_switch_seen = 1;
12057       break;
12058
12059       /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
12060          and -mabi=64.  */
12061     case OPTION_32:
12062       if (IS_ELF)
12063         mips_abi = O32_ABI;
12064       /* We silently ignore -32 for non-ELF targets.  This greatly
12065          simplifies the construction of the MIPS GAS test cases.  */
12066       break;
12067
12068 #ifdef OBJ_ELF
12069     case OPTION_N32:
12070       if (!IS_ELF)
12071         {
12072           as_bad (_("-n32 is supported for ELF format only"));
12073           return 0;
12074         }
12075       mips_abi = N32_ABI;
12076       break;
12077
12078     case OPTION_64:
12079       if (!IS_ELF)
12080         {
12081           as_bad (_("-64 is supported for ELF format only"));
12082           return 0;
12083         }
12084       mips_abi = N64_ABI;
12085       if (!support_64bit_objects())
12086         as_fatal (_("No compiled in support for 64 bit object file format"));
12087       break;
12088 #endif /* OBJ_ELF */
12089
12090     case OPTION_GP32:
12091       file_mips_gp32 = 1;
12092       break;
12093
12094     case OPTION_GP64:
12095       file_mips_gp32 = 0;
12096       break;
12097
12098     case OPTION_FP32:
12099       file_mips_fp32 = 1;
12100       break;
12101
12102     case OPTION_FP64:
12103       file_mips_fp32 = 0;
12104       break;
12105
12106     case OPTION_SINGLE_FLOAT:
12107       file_mips_single_float = 1;
12108       break;
12109
12110     case OPTION_DOUBLE_FLOAT:
12111       file_mips_single_float = 0;
12112       break;
12113
12114     case OPTION_SOFT_FLOAT:
12115       file_mips_soft_float = 1;
12116       break;
12117
12118     case OPTION_HARD_FLOAT:
12119       file_mips_soft_float = 0;
12120       break;
12121
12122 #ifdef OBJ_ELF
12123     case OPTION_MABI:
12124       if (!IS_ELF)
12125         {
12126           as_bad (_("-mabi is supported for ELF format only"));
12127           return 0;
12128         }
12129       if (strcmp (arg, "32") == 0)
12130         mips_abi = O32_ABI;
12131       else if (strcmp (arg, "o64") == 0)
12132         mips_abi = O64_ABI;
12133       else if (strcmp (arg, "n32") == 0)
12134         mips_abi = N32_ABI;
12135       else if (strcmp (arg, "64") == 0)
12136         {
12137           mips_abi = N64_ABI;
12138           if (! support_64bit_objects())
12139             as_fatal (_("No compiled in support for 64 bit object file "
12140                         "format"));
12141         }
12142       else if (strcmp (arg, "eabi") == 0)
12143         mips_abi = EABI_ABI;
12144       else
12145         {
12146           as_fatal (_("invalid abi -mabi=%s"), arg);
12147           return 0;
12148         }
12149       break;
12150 #endif /* OBJ_ELF */
12151
12152     case OPTION_M7000_HILO_FIX:
12153       mips_7000_hilo_fix = TRUE;
12154       break;
12155
12156     case OPTION_MNO_7000_HILO_FIX:
12157       mips_7000_hilo_fix = FALSE;
12158       break;
12159
12160 #ifdef OBJ_ELF
12161     case OPTION_MDEBUG:
12162       mips_flag_mdebug = TRUE;
12163       break;
12164
12165     case OPTION_NO_MDEBUG:
12166       mips_flag_mdebug = FALSE;
12167       break;
12168
12169     case OPTION_PDR:
12170       mips_flag_pdr = TRUE;
12171       break;
12172
12173     case OPTION_NO_PDR:
12174       mips_flag_pdr = FALSE;
12175       break;
12176
12177     case OPTION_MVXWORKS_PIC:
12178       mips_pic = VXWORKS_PIC;
12179       break;
12180 #endif /* OBJ_ELF */
12181
12182     default:
12183       return 0;
12184     }
12185
12186     mips_fix_loongson2f = mips_fix_loongson2f_nop || mips_fix_loongson2f_jump;
12187
12188   return 1;
12189 }
12190 \f
12191 /* Set up globals to generate code for the ISA or processor
12192    described by INFO.  */
12193
12194 static void
12195 mips_set_architecture (const struct mips_cpu_info *info)
12196 {
12197   if (info != 0)
12198     {
12199       file_mips_arch = info->cpu;
12200       mips_opts.arch = info->cpu;
12201       mips_opts.isa = info->isa;
12202     }
12203 }
12204
12205
12206 /* Likewise for tuning.  */
12207
12208 static void
12209 mips_set_tune (const struct mips_cpu_info *info)
12210 {
12211   if (info != 0)
12212     mips_tune = info->cpu;
12213 }
12214
12215
12216 void
12217 mips_after_parse_args (void)
12218 {
12219   const struct mips_cpu_info *arch_info = 0;
12220   const struct mips_cpu_info *tune_info = 0;
12221
12222   /* GP relative stuff not working for PE */
12223   if (strncmp (TARGET_OS, "pe", 2) == 0)
12224     {
12225       if (g_switch_seen && g_switch_value != 0)
12226         as_bad (_("-G not supported in this configuration."));
12227       g_switch_value = 0;
12228     }
12229
12230   if (mips_abi == NO_ABI)
12231     mips_abi = MIPS_DEFAULT_ABI;
12232
12233   /* The following code determines the architecture and register size.
12234      Similar code was added to GCC 3.3 (see override_options() in
12235      config/mips/mips.c).  The GAS and GCC code should be kept in sync
12236      as much as possible.  */
12237
12238   if (mips_arch_string != 0)
12239     arch_info = mips_parse_cpu ("-march", mips_arch_string);
12240
12241   if (file_mips_isa != ISA_UNKNOWN)
12242     {
12243       /* Handle -mipsN.  At this point, file_mips_isa contains the
12244          ISA level specified by -mipsN, while arch_info->isa contains
12245          the -march selection (if any).  */
12246       if (arch_info != 0)
12247         {
12248           /* -march takes precedence over -mipsN, since it is more descriptive.
12249              There's no harm in specifying both as long as the ISA levels
12250              are the same.  */
12251           if (file_mips_isa != arch_info->isa)
12252             as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
12253                     mips_cpu_info_from_isa (file_mips_isa)->name,
12254                     mips_cpu_info_from_isa (arch_info->isa)->name);
12255         }
12256       else
12257         arch_info = mips_cpu_info_from_isa (file_mips_isa);
12258     }
12259
12260   if (arch_info == 0)
12261     arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
12262
12263   if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
12264     as_bad (_("-march=%s is not compatible with the selected ABI"),
12265             arch_info->name);
12266
12267   mips_set_architecture (arch_info);
12268
12269   /* Optimize for file_mips_arch, unless -mtune selects a different processor.  */
12270   if (mips_tune_string != 0)
12271     tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
12272
12273   if (tune_info == 0)
12274     mips_set_tune (arch_info);
12275   else
12276     mips_set_tune (tune_info);
12277
12278   if (file_mips_gp32 >= 0)
12279     {
12280       /* The user specified the size of the integer registers.  Make sure
12281          it agrees with the ABI and ISA.  */
12282       if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
12283         as_bad (_("-mgp64 used with a 32-bit processor"));
12284       else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
12285         as_bad (_("-mgp32 used with a 64-bit ABI"));
12286       else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
12287         as_bad (_("-mgp64 used with a 32-bit ABI"));
12288     }
12289   else
12290     {
12291       /* Infer the integer register size from the ABI and processor.
12292          Restrict ourselves to 32-bit registers if that's all the
12293          processor has, or if the ABI cannot handle 64-bit registers.  */
12294       file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
12295                         || !ISA_HAS_64BIT_REGS (mips_opts.isa));
12296     }
12297
12298   switch (file_mips_fp32)
12299     {
12300     default:
12301     case -1:
12302       /* No user specified float register size.
12303          ??? GAS treats single-float processors as though they had 64-bit
12304          float registers (although it complains when double-precision
12305          instructions are used).  As things stand, saying they have 32-bit
12306          registers would lead to spurious "register must be even" messages.
12307          So here we assume float registers are never smaller than the
12308          integer ones.  */
12309       if (file_mips_gp32 == 0)
12310         /* 64-bit integer registers implies 64-bit float registers.  */
12311         file_mips_fp32 = 0;
12312       else if ((mips_opts.ase_mips3d > 0 || mips_opts.ase_mdmx > 0)
12313                && ISA_HAS_64BIT_FPRS (mips_opts.isa))
12314         /* -mips3d and -mdmx imply 64-bit float registers, if possible.  */
12315         file_mips_fp32 = 0;
12316       else
12317         /* 32-bit float registers.  */
12318         file_mips_fp32 = 1;
12319       break;
12320
12321     /* The user specified the size of the float registers.  Check if it
12322        agrees with the ABI and ISA.  */
12323     case 0:
12324       if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
12325         as_bad (_("-mfp64 used with a 32-bit fpu"));
12326       else if (ABI_NEEDS_32BIT_REGS (mips_abi)
12327                && !ISA_HAS_MXHC1 (mips_opts.isa))
12328         as_warn (_("-mfp64 used with a 32-bit ABI"));
12329       break;
12330     case 1:
12331       if (ABI_NEEDS_64BIT_REGS (mips_abi))
12332         as_warn (_("-mfp32 used with a 64-bit ABI"));
12333       break;
12334     }
12335
12336   /* End of GCC-shared inference code.  */
12337
12338   /* This flag is set when we have a 64-bit capable CPU but use only
12339      32-bit wide registers.  Note that EABI does not use it.  */
12340   if (ISA_HAS_64BIT_REGS (mips_opts.isa)
12341       && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
12342           || mips_abi == O32_ABI))
12343     mips_32bitmode = 1;
12344
12345   if (mips_opts.isa == ISA_MIPS1 && mips_trap)
12346     as_bad (_("trap exception not supported at ISA 1"));
12347
12348   /* If the selected architecture includes support for ASEs, enable
12349      generation of code for them.  */
12350   if (mips_opts.mips16 == -1)
12351     mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
12352   if (mips_opts.ase_mips3d == -1)
12353     mips_opts.ase_mips3d = ((arch_info->flags & MIPS_CPU_ASE_MIPS3D)
12354                             && file_mips_fp32 == 0) ? 1 : 0;
12355   if (mips_opts.ase_mips3d && file_mips_fp32 == 1)
12356     as_bad (_("-mfp32 used with -mips3d"));
12357
12358   if (mips_opts.ase_mdmx == -1)
12359     mips_opts.ase_mdmx = ((arch_info->flags & MIPS_CPU_ASE_MDMX)
12360                           && file_mips_fp32 == 0) ? 1 : 0;
12361   if (mips_opts.ase_mdmx && file_mips_fp32 == 1)
12362     as_bad (_("-mfp32 used with -mdmx"));
12363
12364   if (mips_opts.ase_smartmips == -1)
12365     mips_opts.ase_smartmips = (arch_info->flags & MIPS_CPU_ASE_SMARTMIPS) ? 1 : 0;
12366   if (mips_opts.ase_smartmips && !ISA_SUPPORTS_SMARTMIPS)
12367     as_warn (_("%s ISA does not support SmartMIPS"), 
12368              mips_cpu_info_from_isa (mips_opts.isa)->name);
12369
12370   if (mips_opts.ase_dsp == -1)
12371     mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0;
12372   if (mips_opts.ase_dsp && !ISA_SUPPORTS_DSP_ASE)
12373     as_warn (_("%s ISA does not support DSP ASE"), 
12374              mips_cpu_info_from_isa (mips_opts.isa)->name);
12375
12376   if (mips_opts.ase_dspr2 == -1)
12377     {
12378       mips_opts.ase_dspr2 = (arch_info->flags & MIPS_CPU_ASE_DSPR2) ? 1 : 0;
12379       mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0;
12380     }
12381   if (mips_opts.ase_dspr2 && !ISA_SUPPORTS_DSPR2_ASE)
12382     as_warn (_("%s ISA does not support DSP R2 ASE"),
12383              mips_cpu_info_from_isa (mips_opts.isa)->name);
12384
12385   if (mips_opts.ase_mt == -1)
12386     mips_opts.ase_mt = (arch_info->flags & MIPS_CPU_ASE_MT) ? 1 : 0;
12387   if (mips_opts.ase_mt && !ISA_SUPPORTS_MT_ASE)
12388     as_warn (_("%s ISA does not support MT ASE"),
12389              mips_cpu_info_from_isa (mips_opts.isa)->name);
12390
12391   file_mips_isa = mips_opts.isa;
12392   file_ase_mips3d = mips_opts.ase_mips3d;
12393   file_ase_mdmx = mips_opts.ase_mdmx;
12394   file_ase_smartmips = mips_opts.ase_smartmips;
12395   file_ase_dsp = mips_opts.ase_dsp;
12396   file_ase_dspr2 = mips_opts.ase_dspr2;
12397   file_ase_mt = mips_opts.ase_mt;
12398   mips_opts.gp32 = file_mips_gp32;
12399   mips_opts.fp32 = file_mips_fp32;
12400   mips_opts.soft_float = file_mips_soft_float;
12401   mips_opts.single_float = file_mips_single_float;
12402
12403   if (mips_flag_mdebug < 0)
12404     {
12405 #ifdef OBJ_MAYBE_ECOFF
12406       if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour)
12407         mips_flag_mdebug = 1;
12408       else
12409 #endif /* OBJ_MAYBE_ECOFF */
12410         mips_flag_mdebug = 0;
12411     }
12412 }
12413 \f
12414 void
12415 mips_init_after_args (void)
12416 {
12417   /* initialize opcodes */
12418   bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
12419   mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
12420 }
12421
12422 long
12423 md_pcrel_from (fixS *fixP)
12424 {
12425   valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
12426   switch (fixP->fx_r_type)
12427     {
12428     case BFD_RELOC_16_PCREL_S2:
12429     case BFD_RELOC_MIPS_JMP:
12430       /* Return the address of the delay slot.  */
12431       return addr + 4;
12432     default:
12433       /* We have no relocation type for PC relative MIPS16 instructions.  */
12434       if (fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != now_seg)
12435         as_bad_where (fixP->fx_file, fixP->fx_line,
12436                       _("PC relative MIPS16 instruction references a different section"));
12437       return addr;
12438     }
12439 }
12440
12441 /* This is called before the symbol table is processed.  In order to
12442    work with gcc when using mips-tfile, we must keep all local labels.
12443    However, in other cases, we want to discard them.  If we were
12444    called with -g, but we didn't see any debugging information, it may
12445    mean that gcc is smuggling debugging information through to
12446    mips-tfile, in which case we must generate all local labels.  */
12447
12448 void
12449 mips_frob_file_before_adjust (void)
12450 {
12451 #ifndef NO_ECOFF_DEBUGGING
12452   if (ECOFF_DEBUGGING
12453       && mips_debug != 0
12454       && ! ecoff_debugging_seen)
12455     flag_keep_locals = 1;
12456 #endif
12457 }
12458
12459 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
12460    the corresponding LO16 reloc.  This is called before md_apply_fix and
12461    tc_gen_reloc.  Unmatched relocs can only be generated by use of explicit
12462    relocation operators.
12463
12464    For our purposes, a %lo() expression matches a %got() or %hi()
12465    expression if:
12466
12467       (a) it refers to the same symbol; and
12468       (b) the offset applied in the %lo() expression is no lower than
12469           the offset applied in the %got() or %hi().
12470
12471    (b) allows us to cope with code like:
12472
12473         lui     $4,%hi(foo)
12474         lh      $4,%lo(foo+2)($4)
12475
12476    ...which is legal on RELA targets, and has a well-defined behaviour
12477    if the user knows that adding 2 to "foo" will not induce a carry to
12478    the high 16 bits.
12479
12480    When several %lo()s match a particular %got() or %hi(), we use the
12481    following rules to distinguish them:
12482
12483      (1) %lo()s with smaller offsets are a better match than %lo()s with
12484          higher offsets.
12485
12486      (2) %lo()s with no matching %got() or %hi() are better than those
12487          that already have a matching %got() or %hi().
12488
12489      (3) later %lo()s are better than earlier %lo()s.
12490
12491    These rules are applied in order.
12492
12493    (1) means, among other things, that %lo()s with identical offsets are
12494    chosen if they exist.
12495
12496    (2) means that we won't associate several high-part relocations with
12497    the same low-part relocation unless there's no alternative.  Having
12498    several high parts for the same low part is a GNU extension; this rule
12499    allows careful users to avoid it.
12500
12501    (3) is purely cosmetic.  mips_hi_fixup_list is is in reverse order,
12502    with the last high-part relocation being at the front of the list.
12503    It therefore makes sense to choose the last matching low-part
12504    relocation, all other things being equal.  It's also easier
12505    to code that way.  */
12506
12507 void
12508 mips_frob_file (void)
12509 {
12510   struct mips_hi_fixup *l;
12511   bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED;
12512
12513   for (l = mips_hi_fixup_list; l != NULL; l = l->next)
12514     {
12515       segment_info_type *seginfo;
12516       bfd_boolean matched_lo_p;
12517       fixS **hi_pos, **lo_pos, **pos;
12518
12519       gas_assert (reloc_needs_lo_p (l->fixp->fx_r_type));
12520
12521       /* If a GOT16 relocation turns out to be against a global symbol,
12522          there isn't supposed to be a matching LO.  */
12523       if (got16_reloc_p (l->fixp->fx_r_type)
12524           && !pic_need_relax (l->fixp->fx_addsy, l->seg))
12525         continue;
12526
12527       /* Check quickly whether the next fixup happens to be a matching %lo.  */
12528       if (fixup_has_matching_lo_p (l->fixp))
12529         continue;
12530
12531       seginfo = seg_info (l->seg);
12532
12533       /* Set HI_POS to the position of this relocation in the chain.
12534          Set LO_POS to the position of the chosen low-part relocation.
12535          MATCHED_LO_P is true on entry to the loop if *POS is a low-part
12536          relocation that matches an immediately-preceding high-part
12537          relocation.  */
12538       hi_pos = NULL;
12539       lo_pos = NULL;
12540       matched_lo_p = FALSE;
12541       looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type);
12542
12543       for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
12544         {
12545           if (*pos == l->fixp)
12546             hi_pos = pos;
12547
12548           if ((*pos)->fx_r_type == looking_for_rtype
12549               && symbol_same_p ((*pos)->fx_addsy, l->fixp->fx_addsy)
12550               && (*pos)->fx_offset >= l->fixp->fx_offset
12551               && (lo_pos == NULL
12552                   || (*pos)->fx_offset < (*lo_pos)->fx_offset
12553                   || (!matched_lo_p
12554                       && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
12555             lo_pos = pos;
12556
12557           matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
12558                           && fixup_has_matching_lo_p (*pos));
12559         }
12560
12561       /* If we found a match, remove the high-part relocation from its
12562          current position and insert it before the low-part relocation.
12563          Make the offsets match so that fixup_has_matching_lo_p()
12564          will return true.
12565
12566          We don't warn about unmatched high-part relocations since some
12567          versions of gcc have been known to emit dead "lui ...%hi(...)"
12568          instructions.  */
12569       if (lo_pos != NULL)
12570         {
12571           l->fixp->fx_offset = (*lo_pos)->fx_offset;
12572           if (l->fixp->fx_next != *lo_pos)
12573             {
12574               *hi_pos = l->fixp->fx_next;
12575               l->fixp->fx_next = *lo_pos;
12576               *lo_pos = l->fixp;
12577             }
12578         }
12579     }
12580 }
12581
12582 /* We may have combined relocations without symbols in the N32/N64 ABI.
12583    We have to prevent gas from dropping them.  */
12584
12585 int
12586 mips_force_relocation (fixS *fixp)
12587 {
12588   if (generic_force_reloc (fixp))
12589     return 1;
12590
12591   if (HAVE_NEWABI
12592       && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr
12593       && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB
12594           || hi16_reloc_p (fixp->fx_r_type)
12595           || lo16_reloc_p (fixp->fx_r_type)))
12596     return 1;
12597
12598   return 0;
12599 }
12600
12601 /* Apply a fixup to the object file.  */
12602
12603 void
12604 md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
12605 {
12606   bfd_byte *buf;
12607   long insn;
12608   reloc_howto_type *howto;
12609
12610   /* We ignore generic BFD relocations we don't know about.  */
12611   howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
12612   if (! howto)
12613     return;
12614
12615   gas_assert (fixP->fx_size == 4
12616               || fixP->fx_r_type == BFD_RELOC_16
12617               || fixP->fx_r_type == BFD_RELOC_64
12618               || fixP->fx_r_type == BFD_RELOC_CTOR
12619               || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
12620               || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
12621               || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
12622               || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
12623
12624   buf = (bfd_byte *) (fixP->fx_frag->fr_literal + fixP->fx_where);
12625
12626   gas_assert (!fixP->fx_pcrel || fixP->fx_r_type == BFD_RELOC_16_PCREL_S2);
12627
12628   /* Don't treat parts of a composite relocation as done.  There are two
12629      reasons for this:
12630
12631      (1) The second and third parts will be against 0 (RSS_UNDEF) but
12632          should nevertheless be emitted if the first part is.
12633
12634      (2) In normal usage, composite relocations are never assembly-time
12635          constants.  The easiest way of dealing with the pathological
12636          exceptions is to generate a relocation against STN_UNDEF and
12637          leave everything up to the linker.  */
12638   if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0)
12639     fixP->fx_done = 1;
12640
12641   switch (fixP->fx_r_type)
12642     {
12643     case BFD_RELOC_MIPS_TLS_GD:
12644     case BFD_RELOC_MIPS_TLS_LDM:
12645     case BFD_RELOC_MIPS_TLS_DTPREL32:
12646     case BFD_RELOC_MIPS_TLS_DTPREL64:
12647     case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
12648     case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
12649     case BFD_RELOC_MIPS_TLS_GOTTPREL:
12650     case BFD_RELOC_MIPS_TLS_TPREL_HI16:
12651     case BFD_RELOC_MIPS_TLS_TPREL_LO16:
12652       S_SET_THREAD_LOCAL (fixP->fx_addsy);
12653       /* fall through */
12654
12655     case BFD_RELOC_MIPS_JMP:
12656     case BFD_RELOC_MIPS_SHIFT5:
12657     case BFD_RELOC_MIPS_SHIFT6:
12658     case BFD_RELOC_MIPS_GOT_DISP:
12659     case BFD_RELOC_MIPS_GOT_PAGE:
12660     case BFD_RELOC_MIPS_GOT_OFST:
12661     case BFD_RELOC_MIPS_SUB:
12662     case BFD_RELOC_MIPS_INSERT_A:
12663     case BFD_RELOC_MIPS_INSERT_B:
12664     case BFD_RELOC_MIPS_DELETE:
12665     case BFD_RELOC_MIPS_HIGHEST:
12666     case BFD_RELOC_MIPS_HIGHER:
12667     case BFD_RELOC_MIPS_SCN_DISP:
12668     case BFD_RELOC_MIPS_REL16:
12669     case BFD_RELOC_MIPS_RELGOT:
12670     case BFD_RELOC_MIPS_JALR:
12671     case BFD_RELOC_HI16:
12672     case BFD_RELOC_HI16_S:
12673     case BFD_RELOC_GPREL16:
12674     case BFD_RELOC_MIPS_LITERAL:
12675     case BFD_RELOC_MIPS_CALL16:
12676     case BFD_RELOC_MIPS_GOT16:
12677     case BFD_RELOC_GPREL32:
12678     case BFD_RELOC_MIPS_GOT_HI16:
12679     case BFD_RELOC_MIPS_GOT_LO16:
12680     case BFD_RELOC_MIPS_CALL_HI16:
12681     case BFD_RELOC_MIPS_CALL_LO16:
12682     case BFD_RELOC_MIPS16_GPREL:
12683     case BFD_RELOC_MIPS16_GOT16:
12684     case BFD_RELOC_MIPS16_CALL16:
12685     case BFD_RELOC_MIPS16_HI16:
12686     case BFD_RELOC_MIPS16_HI16_S:
12687     case BFD_RELOC_MIPS16_JMP:
12688       /* Nothing needed to do.  The value comes from the reloc entry.  */
12689       break;
12690
12691     case BFD_RELOC_64:
12692       /* This is handled like BFD_RELOC_32, but we output a sign
12693          extended value if we are only 32 bits.  */
12694       if (fixP->fx_done)
12695         {
12696           if (8 <= sizeof (valueT))
12697             md_number_to_chars ((char *) buf, *valP, 8);
12698           else
12699             {
12700               valueT hiv;
12701
12702               if ((*valP & 0x80000000) != 0)
12703                 hiv = 0xffffffff;
12704               else
12705                 hiv = 0;
12706               md_number_to_chars ((char *)(buf + (target_big_endian ? 4 : 0)),
12707                                   *valP, 4);
12708               md_number_to_chars ((char *)(buf + (target_big_endian ? 0 : 4)),
12709                                   hiv, 4);
12710             }
12711         }
12712       break;
12713
12714     case BFD_RELOC_RVA:
12715     case BFD_RELOC_32:
12716     case BFD_RELOC_16:
12717       /* If we are deleting this reloc entry, we must fill in the
12718          value now.  This can happen if we have a .word which is not
12719          resolved when it appears but is later defined.  */
12720       if (fixP->fx_done)
12721         md_number_to_chars ((char *) buf, *valP, fixP->fx_size);
12722       break;
12723
12724     case BFD_RELOC_LO16:
12725     case BFD_RELOC_MIPS16_LO16:
12726       /* FIXME: Now that embedded-PIC is gone, some of this code/comment
12727          may be safe to remove, but if so it's not obvious.  */
12728       /* When handling an embedded PIC switch statement, we can wind
12729          up deleting a LO16 reloc.  See the 'o' case in mips_ip.  */
12730       if (fixP->fx_done)
12731         {
12732           if (*valP + 0x8000 > 0xffff)
12733             as_bad_where (fixP->fx_file, fixP->fx_line,
12734                           _("relocation overflow"));
12735           if (target_big_endian)
12736             buf += 2;
12737           md_number_to_chars ((char *) buf, *valP, 2);
12738         }
12739       break;
12740
12741     case BFD_RELOC_16_PCREL_S2:
12742       if ((*valP & 0x3) != 0)
12743         as_bad_where (fixP->fx_file, fixP->fx_line,
12744                       _("Branch to misaligned address (%lx)"), (long) *valP);
12745
12746       /* We need to save the bits in the instruction since fixup_segment()
12747          might be deleting the relocation entry (i.e., a branch within
12748          the current segment).  */
12749       if (! fixP->fx_done)
12750         break;
12751
12752       /* Update old instruction data.  */
12753       if (target_big_endian)
12754         insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
12755       else
12756         insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
12757
12758       if (*valP + 0x20000 <= 0x3ffff)
12759         {
12760           insn |= (*valP >> 2) & 0xffff;
12761           md_number_to_chars ((char *) buf, insn, 4);
12762         }
12763       else if (mips_pic == NO_PIC
12764                && fixP->fx_done
12765                && fixP->fx_frag->fr_address >= text_section->vma
12766                && (fixP->fx_frag->fr_address
12767                    < text_section->vma + bfd_get_section_size (text_section))
12768                && ((insn & 0xffff0000) == 0x10000000     /* beq $0,$0 */
12769                    || (insn & 0xffff0000) == 0x04010000  /* bgez $0 */
12770                    || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
12771         {
12772           /* The branch offset is too large.  If this is an
12773              unconditional branch, and we are not generating PIC code,
12774              we can convert it to an absolute jump instruction.  */
12775           if ((insn & 0xffff0000) == 0x04110000)         /* bgezal $0 */
12776             insn = 0x0c000000;  /* jal */
12777           else
12778             insn = 0x08000000;  /* j */
12779           fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
12780           fixP->fx_done = 0;
12781           fixP->fx_addsy = section_symbol (text_section);
12782           *valP += md_pcrel_from (fixP);
12783           md_number_to_chars ((char *) buf, insn, 4);
12784         }
12785       else
12786         {
12787           /* If we got here, we have branch-relaxation disabled,
12788              and there's nothing we can do to fix this instruction
12789              without turning it into a longer sequence.  */
12790           as_bad_where (fixP->fx_file, fixP->fx_line,
12791                         _("Branch out of range"));
12792         }
12793       break;
12794
12795     case BFD_RELOC_VTABLE_INHERIT:
12796       fixP->fx_done = 0;
12797       if (fixP->fx_addsy
12798           && !S_IS_DEFINED (fixP->fx_addsy)
12799           && !S_IS_WEAK (fixP->fx_addsy))
12800         S_SET_WEAK (fixP->fx_addsy);
12801       break;
12802
12803     case BFD_RELOC_VTABLE_ENTRY:
12804       fixP->fx_done = 0;
12805       break;
12806
12807     default:
12808       internalError ();
12809     }
12810
12811   /* Remember value for tc_gen_reloc.  */
12812   fixP->fx_addnumber = *valP;
12813 }
12814
12815 static symbolS *
12816 get_symbol (void)
12817 {
12818   int c;
12819   char *name;
12820   symbolS *p;
12821
12822   name = input_line_pointer;
12823   c = get_symbol_end ();
12824   p = (symbolS *) symbol_find_or_make (name);
12825   *input_line_pointer = c;
12826   return p;
12827 }
12828
12829 /* Align the current frag to a given power of two.  If a particular
12830    fill byte should be used, FILL points to an integer that contains
12831    that byte, otherwise FILL is null.
12832
12833    The MIPS assembler also automatically adjusts any preceding
12834    label.  */
12835
12836 static void
12837 mips_align (int to, int *fill, symbolS *label)
12838 {
12839   mips_emit_delays ();
12840   mips_record_mips16_mode ();
12841   if (fill == NULL && subseg_text_p (now_seg))
12842     frag_align_code (to, 0);
12843   else
12844     frag_align (to, fill ? *fill : 0, 0);
12845   record_alignment (now_seg, to);
12846   if (label != NULL)
12847     {
12848       gas_assert (S_GET_SEGMENT (label) == now_seg);
12849       symbol_set_frag (label, frag_now);
12850       S_SET_VALUE (label, (valueT) frag_now_fix ());
12851     }
12852 }
12853
12854 /* Align to a given power of two.  .align 0 turns off the automatic
12855    alignment used by the data creating pseudo-ops.  */
12856
12857 static void
12858 s_align (int x ATTRIBUTE_UNUSED)
12859 {
12860   int temp, fill_value, *fill_ptr;
12861   long max_alignment = 28;
12862
12863   /* o Note that the assembler pulls down any immediately preceding label
12864        to the aligned address.
12865      o It's not documented but auto alignment is reinstated by
12866        a .align pseudo instruction.
12867      o Note also that after auto alignment is turned off the mips assembler
12868        issues an error on attempt to assemble an improperly aligned data item.
12869        We don't.  */
12870
12871   temp = get_absolute_expression ();
12872   if (temp > max_alignment)
12873     as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
12874   else if (temp < 0)
12875     {
12876       as_warn (_("Alignment negative: 0 assumed."));
12877       temp = 0;
12878     }
12879   if (*input_line_pointer == ',')
12880     {
12881       ++input_line_pointer;
12882       fill_value = get_absolute_expression ();
12883       fill_ptr = &fill_value;
12884     }
12885   else
12886     fill_ptr = 0;
12887   if (temp)
12888     {
12889       segment_info_type *si = seg_info (now_seg);
12890       struct insn_label_list *l = si->label_list;
12891       /* Auto alignment should be switched on by next section change.  */
12892       auto_align = 1;
12893       mips_align (temp, fill_ptr, l != NULL ? l->label : NULL);
12894     }
12895   else
12896     {
12897       auto_align = 0;
12898     }
12899
12900   demand_empty_rest_of_line ();
12901 }
12902
12903 static void
12904 s_change_sec (int sec)
12905 {
12906   segT seg;
12907
12908 #ifdef OBJ_ELF
12909   /* The ELF backend needs to know that we are changing sections, so
12910      that .previous works correctly.  We could do something like check
12911      for an obj_section_change_hook macro, but that might be confusing
12912      as it would not be appropriate to use it in the section changing
12913      functions in read.c, since obj-elf.c intercepts those.  FIXME:
12914      This should be cleaner, somehow.  */
12915   if (IS_ELF)
12916     obj_elf_section_change_hook ();
12917 #endif
12918
12919   mips_emit_delays ();
12920
12921   switch (sec)
12922     {
12923     case 't':
12924       s_text (0);
12925       break;
12926     case 'd':
12927       s_data (0);
12928       break;
12929     case 'b':
12930       subseg_set (bss_section, (subsegT) get_absolute_expression ());
12931       demand_empty_rest_of_line ();
12932       break;
12933
12934     case 'r':
12935       seg = subseg_new (RDATA_SECTION_NAME,
12936                         (subsegT) get_absolute_expression ());
12937       if (IS_ELF)
12938         {
12939           bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
12940                                                   | SEC_READONLY | SEC_RELOC
12941                                                   | SEC_DATA));
12942           if (strncmp (TARGET_OS, "elf", 3) != 0)
12943             record_alignment (seg, 4);
12944         }
12945       demand_empty_rest_of_line ();
12946       break;
12947
12948     case 's':
12949       seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
12950       if (IS_ELF)
12951         {
12952           bfd_set_section_flags (stdoutput, seg,
12953                                  SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
12954           if (strncmp (TARGET_OS, "elf", 3) != 0)
12955             record_alignment (seg, 4);
12956         }
12957       demand_empty_rest_of_line ();
12958       break;
12959
12960     case 'B':
12961       seg = subseg_new (".sbss", (subsegT) get_absolute_expression ());
12962       if (IS_ELF)
12963         {
12964           bfd_set_section_flags (stdoutput, seg, SEC_ALLOC);
12965           if (strncmp (TARGET_OS, "elf", 3) != 0)
12966             record_alignment (seg, 4);
12967         }
12968       demand_empty_rest_of_line ();
12969       break;
12970     }
12971
12972   auto_align = 1;
12973 }
12974
12975 void
12976 s_change_section (int ignore ATTRIBUTE_UNUSED)
12977 {
12978 #ifdef OBJ_ELF
12979   char *section_name;
12980   char c;
12981   char next_c = 0;
12982   int section_type;
12983   int section_flag;
12984   int section_entry_size;
12985   int section_alignment;
12986
12987   if (!IS_ELF)
12988     return;
12989
12990   section_name = input_line_pointer;
12991   c = get_symbol_end ();
12992   if (c)
12993     next_c = *(input_line_pointer + 1);
12994
12995   /* Do we have .section Name<,"flags">?  */
12996   if (c != ',' || (c == ',' && next_c == '"'))
12997     {
12998       /* just after name is now '\0'.  */
12999       *input_line_pointer = c;
13000       input_line_pointer = section_name;
13001       obj_elf_section (ignore);
13002       return;
13003     }
13004   input_line_pointer++;
13005
13006   /* Do we have .section Name<,type><,flag><,entry_size><,alignment>  */
13007   if (c == ',')
13008     section_type = get_absolute_expression ();
13009   else
13010     section_type = 0;
13011   if (*input_line_pointer++ == ',')
13012     section_flag = get_absolute_expression ();
13013   else
13014     section_flag = 0;
13015   if (*input_line_pointer++ == ',')
13016     section_entry_size = get_absolute_expression ();
13017   else
13018     section_entry_size = 0;
13019   if (*input_line_pointer++ == ',')
13020     section_alignment = get_absolute_expression ();
13021   else
13022     section_alignment = 0;
13023   /* FIXME: really ignore?  */
13024   (void) section_alignment;
13025
13026   section_name = xstrdup (section_name);
13027
13028   /* When using the generic form of .section (as implemented by obj-elf.c),
13029      there's no way to set the section type to SHT_MIPS_DWARF.  Users have
13030      traditionally had to fall back on the more common @progbits instead.
13031
13032      There's nothing really harmful in this, since bfd will correct
13033      SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file.  But it
13034      means that, for backwards compatibility, the special_section entries
13035      for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
13036
13037      Even so, we shouldn't force users of the MIPS .section syntax to
13038      incorrectly label the sections as SHT_PROGBITS.  The best compromise
13039      seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
13040      generic type-checking code.  */
13041   if (section_type == SHT_MIPS_DWARF)
13042     section_type = SHT_PROGBITS;
13043
13044   obj_elf_change_section (section_name, section_type, section_flag,
13045                           section_entry_size, 0, 0, 0);
13046
13047   if (now_seg->name != section_name)
13048     free (section_name);
13049 #endif /* OBJ_ELF */
13050 }
13051
13052 void
13053 mips_enable_auto_align (void)
13054 {
13055   auto_align = 1;
13056 }
13057
13058 static void
13059 s_cons (int log_size)
13060 {
13061   segment_info_type *si = seg_info (now_seg);
13062   struct insn_label_list *l = si->label_list;
13063   symbolS *label;
13064
13065   label = l != NULL ? l->label : NULL;
13066   mips_emit_delays ();
13067   if (log_size > 0 && auto_align)
13068     mips_align (log_size, 0, label);
13069   cons (1 << log_size);
13070   mips_clear_insn_labels ();
13071 }
13072
13073 static void
13074 s_float_cons (int type)
13075 {
13076   segment_info_type *si = seg_info (now_seg);
13077   struct insn_label_list *l = si->label_list;
13078   symbolS *label;
13079
13080   label = l != NULL ? l->label : NULL;
13081
13082   mips_emit_delays ();
13083
13084   if (auto_align)
13085     {
13086       if (type == 'd')
13087         mips_align (3, 0, label);
13088       else
13089         mips_align (2, 0, label);
13090     }
13091
13092   float_cons (type);
13093   mips_clear_insn_labels ();
13094 }
13095
13096 /* Handle .globl.  We need to override it because on Irix 5 you are
13097    permitted to say
13098        .globl foo .text
13099    where foo is an undefined symbol, to mean that foo should be
13100    considered to be the address of a function.  */
13101
13102 static void
13103 s_mips_globl (int x ATTRIBUTE_UNUSED)
13104 {
13105   char *name;
13106   int c;
13107   symbolS *symbolP;
13108   flagword flag;
13109
13110   do
13111     {
13112       name = input_line_pointer;
13113       c = get_symbol_end ();
13114       symbolP = symbol_find_or_make (name);
13115       S_SET_EXTERNAL (symbolP);
13116
13117       *input_line_pointer = c;
13118       SKIP_WHITESPACE ();
13119
13120       /* On Irix 5, every global symbol that is not explicitly labelled as
13121          being a function is apparently labelled as being an object.  */
13122       flag = BSF_OBJECT;
13123
13124       if (!is_end_of_line[(unsigned char) *input_line_pointer]
13125           && (*input_line_pointer != ','))
13126         {
13127           char *secname;
13128           asection *sec;
13129
13130           secname = input_line_pointer;
13131           c = get_symbol_end ();
13132           sec = bfd_get_section_by_name (stdoutput, secname);
13133           if (sec == NULL)
13134             as_bad (_("%s: no such section"), secname);
13135           *input_line_pointer = c;
13136
13137           if (sec != NULL && (sec->flags & SEC_CODE) != 0)
13138             flag = BSF_FUNCTION;
13139         }
13140
13141       symbol_get_bfdsym (symbolP)->flags |= flag;
13142
13143       c = *input_line_pointer;
13144       if (c == ',')
13145         {
13146           input_line_pointer++;
13147           SKIP_WHITESPACE ();
13148           if (is_end_of_line[(unsigned char) *input_line_pointer])
13149             c = '\n';
13150         }
13151     }
13152   while (c == ',');
13153
13154   demand_empty_rest_of_line ();
13155 }
13156
13157 static void
13158 s_option (int x ATTRIBUTE_UNUSED)
13159 {
13160   char *opt;
13161   char c;
13162
13163   opt = input_line_pointer;
13164   c = get_symbol_end ();
13165
13166   if (*opt == 'O')
13167     {
13168       /* FIXME: What does this mean?  */
13169     }
13170   else if (strncmp (opt, "pic", 3) == 0)
13171     {
13172       int i;
13173
13174       i = atoi (opt + 3);
13175       if (i == 0)
13176         mips_pic = NO_PIC;
13177       else if (i == 2)
13178         {
13179         mips_pic = SVR4_PIC;
13180           mips_abicalls = TRUE;
13181         }
13182       else
13183         as_bad (_(".option pic%d not supported"), i);
13184
13185       if (mips_pic == SVR4_PIC)
13186         {
13187           if (g_switch_seen && g_switch_value != 0)
13188             as_warn (_("-G may not be used with SVR4 PIC code"));
13189           g_switch_value = 0;
13190           bfd_set_gp_size (stdoutput, 0);
13191         }
13192     }
13193   else
13194     as_warn (_("Unrecognized option \"%s\""), opt);
13195
13196   *input_line_pointer = c;
13197   demand_empty_rest_of_line ();
13198 }
13199
13200 /* This structure is used to hold a stack of .set values.  */
13201
13202 struct mips_option_stack
13203 {
13204   struct mips_option_stack *next;
13205   struct mips_set_options options;
13206 };
13207
13208 static struct mips_option_stack *mips_opts_stack;
13209
13210 /* Handle the .set pseudo-op.  */
13211
13212 static void
13213 s_mipsset (int x ATTRIBUTE_UNUSED)
13214 {
13215   char *name = input_line_pointer, ch;
13216
13217   while (!is_end_of_line[(unsigned char) *input_line_pointer])
13218     ++input_line_pointer;
13219   ch = *input_line_pointer;
13220   *input_line_pointer = '\0';
13221
13222   if (strcmp (name, "reorder") == 0)
13223     {
13224       if (mips_opts.noreorder)
13225         end_noreorder ();
13226     }
13227   else if (strcmp (name, "noreorder") == 0)
13228     {
13229       if (!mips_opts.noreorder)
13230         start_noreorder ();
13231     }
13232   else if (strncmp (name, "at=", 3) == 0)
13233     {
13234       char *s = name + 3;
13235
13236       if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at))
13237         as_bad (_("Unrecognized register name `%s'"), s);
13238     }
13239   else if (strcmp (name, "at") == 0)
13240     {
13241       mips_opts.at = ATREG;
13242     }
13243   else if (strcmp (name, "noat") == 0)
13244     {
13245       mips_opts.at = ZERO;
13246     }
13247   else if (strcmp (name, "macro") == 0)
13248     {
13249       mips_opts.warn_about_macros = 0;
13250     }
13251   else if (strcmp (name, "nomacro") == 0)
13252     {
13253       if (mips_opts.noreorder == 0)
13254         as_bad (_("`noreorder' must be set before `nomacro'"));
13255       mips_opts.warn_about_macros = 1;
13256     }
13257   else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
13258     {
13259       mips_opts.nomove = 0;
13260     }
13261   else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
13262     {
13263       mips_opts.nomove = 1;
13264     }
13265   else if (strcmp (name, "bopt") == 0)
13266     {
13267       mips_opts.nobopt = 0;
13268     }
13269   else if (strcmp (name, "nobopt") == 0)
13270     {
13271       mips_opts.nobopt = 1;
13272     }
13273   else if (strcmp (name, "gp=default") == 0)
13274     mips_opts.gp32 = file_mips_gp32;
13275   else if (strcmp (name, "gp=32") == 0)
13276     mips_opts.gp32 = 1;
13277   else if (strcmp (name, "gp=64") == 0)
13278     {
13279       if (!ISA_HAS_64BIT_REGS (mips_opts.isa))
13280         as_warn (_("%s isa does not support 64-bit registers"),
13281                  mips_cpu_info_from_isa (mips_opts.isa)->name);
13282       mips_opts.gp32 = 0;
13283     }
13284   else if (strcmp (name, "fp=default") == 0)
13285     mips_opts.fp32 = file_mips_fp32;
13286   else if (strcmp (name, "fp=32") == 0)
13287     mips_opts.fp32 = 1;
13288   else if (strcmp (name, "fp=64") == 0)
13289     {
13290       if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
13291         as_warn (_("%s isa does not support 64-bit floating point registers"),
13292                  mips_cpu_info_from_isa (mips_opts.isa)->name);
13293       mips_opts.fp32 = 0;
13294     }
13295   else if (strcmp (name, "softfloat") == 0)
13296     mips_opts.soft_float = 1;
13297   else if (strcmp (name, "hardfloat") == 0)
13298     mips_opts.soft_float = 0;
13299   else if (strcmp (name, "singlefloat") == 0)
13300     mips_opts.single_float = 1;
13301   else if (strcmp (name, "doublefloat") == 0)
13302     mips_opts.single_float = 0;
13303   else if (strcmp (name, "mips16") == 0
13304            || strcmp (name, "MIPS-16") == 0)
13305     mips_opts.mips16 = 1;
13306   else if (strcmp (name, "nomips16") == 0
13307            || strcmp (name, "noMIPS-16") == 0)
13308     mips_opts.mips16 = 0;
13309   else if (strcmp (name, "smartmips") == 0)
13310     {
13311       if (!ISA_SUPPORTS_SMARTMIPS)
13312         as_warn (_("%s ISA does not support SmartMIPS ASE"), 
13313                  mips_cpu_info_from_isa (mips_opts.isa)->name);
13314       mips_opts.ase_smartmips = 1;
13315     }
13316   else if (strcmp (name, "nosmartmips") == 0)
13317     mips_opts.ase_smartmips = 0;
13318   else if (strcmp (name, "mips3d") == 0)
13319     mips_opts.ase_mips3d = 1;
13320   else if (strcmp (name, "nomips3d") == 0)
13321     mips_opts.ase_mips3d = 0;
13322   else if (strcmp (name, "mdmx") == 0)
13323     mips_opts.ase_mdmx = 1;
13324   else if (strcmp (name, "nomdmx") == 0)
13325     mips_opts.ase_mdmx = 0;
13326   else if (strcmp (name, "dsp") == 0)
13327     {
13328       if (!ISA_SUPPORTS_DSP_ASE)
13329         as_warn (_("%s ISA does not support DSP ASE"), 
13330                  mips_cpu_info_from_isa (mips_opts.isa)->name);
13331       mips_opts.ase_dsp = 1;
13332       mips_opts.ase_dspr2 = 0;
13333     }
13334   else if (strcmp (name, "nodsp") == 0)
13335     {
13336       mips_opts.ase_dsp = 0;
13337       mips_opts.ase_dspr2 = 0;
13338     }
13339   else if (strcmp (name, "dspr2") == 0)
13340     {
13341       if (!ISA_SUPPORTS_DSPR2_ASE)
13342         as_warn (_("%s ISA does not support DSP R2 ASE"),
13343                  mips_cpu_info_from_isa (mips_opts.isa)->name);
13344       mips_opts.ase_dspr2 = 1;
13345       mips_opts.ase_dsp = 1;
13346     }
13347   else if (strcmp (name, "nodspr2") == 0)
13348     {
13349       mips_opts.ase_dspr2 = 0;
13350       mips_opts.ase_dsp = 0;
13351     }
13352   else if (strcmp (name, "mt") == 0)
13353     {
13354       if (!ISA_SUPPORTS_MT_ASE)
13355         as_warn (_("%s ISA does not support MT ASE"), 
13356                  mips_cpu_info_from_isa (mips_opts.isa)->name);
13357       mips_opts.ase_mt = 1;
13358     }
13359   else if (strcmp (name, "nomt") == 0)
13360     mips_opts.ase_mt = 0;
13361   else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
13362     {
13363       int reset = 0;
13364
13365       /* Permit the user to change the ISA and architecture on the fly.
13366          Needless to say, misuse can cause serious problems.  */
13367       if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
13368         {
13369           reset = 1;
13370           mips_opts.isa = file_mips_isa;
13371           mips_opts.arch = file_mips_arch;
13372         }
13373       else if (strncmp (name, "arch=", 5) == 0)
13374         {
13375           const struct mips_cpu_info *p;
13376
13377           p = mips_parse_cpu("internal use", name + 5);
13378           if (!p)
13379             as_bad (_("unknown architecture %s"), name + 5);
13380           else
13381             {
13382               mips_opts.arch = p->cpu;
13383               mips_opts.isa = p->isa;
13384             }
13385         }
13386       else if (strncmp (name, "mips", 4) == 0)
13387         {
13388           const struct mips_cpu_info *p;
13389
13390           p = mips_parse_cpu("internal use", name);
13391           if (!p)
13392             as_bad (_("unknown ISA level %s"), name + 4);
13393           else
13394             {
13395               mips_opts.arch = p->cpu;
13396               mips_opts.isa = p->isa;
13397             }
13398         }
13399       else
13400         as_bad (_("unknown ISA or architecture %s"), name);
13401
13402       switch (mips_opts.isa)
13403         {
13404         case  0:
13405           break;
13406         case ISA_MIPS1:
13407         case ISA_MIPS2:
13408         case ISA_MIPS32:
13409         case ISA_MIPS32R2:
13410           mips_opts.gp32 = 1;
13411           mips_opts.fp32 = 1;
13412           break;
13413         case ISA_MIPS3:
13414         case ISA_MIPS4:
13415         case ISA_MIPS5:
13416         case ISA_MIPS64:
13417         case ISA_MIPS64R2:
13418           mips_opts.gp32 = 0;
13419           mips_opts.fp32 = 0;
13420           break;
13421         default:
13422           as_bad (_("unknown ISA level %s"), name + 4);
13423           break;
13424         }
13425       if (reset)
13426         {
13427           mips_opts.gp32 = file_mips_gp32;
13428           mips_opts.fp32 = file_mips_fp32;
13429         }
13430     }
13431   else if (strcmp (name, "autoextend") == 0)
13432     mips_opts.noautoextend = 0;
13433   else if (strcmp (name, "noautoextend") == 0)
13434     mips_opts.noautoextend = 1;
13435   else if (strcmp (name, "push") == 0)
13436     {
13437       struct mips_option_stack *s;
13438
13439       s = (struct mips_option_stack *) xmalloc (sizeof *s);
13440       s->next = mips_opts_stack;
13441       s->options = mips_opts;
13442       mips_opts_stack = s;
13443     }
13444   else if (strcmp (name, "pop") == 0)
13445     {
13446       struct mips_option_stack *s;
13447
13448       s = mips_opts_stack;
13449       if (s == NULL)
13450         as_bad (_(".set pop with no .set push"));
13451       else
13452         {
13453           /* If we're changing the reorder mode we need to handle
13454              delay slots correctly.  */
13455           if (s->options.noreorder && ! mips_opts.noreorder)
13456             start_noreorder ();
13457           else if (! s->options.noreorder && mips_opts.noreorder)
13458             end_noreorder ();
13459
13460           mips_opts = s->options;
13461           mips_opts_stack = s->next;
13462           free (s);
13463         }
13464     }
13465   else if (strcmp (name, "sym32") == 0)
13466     mips_opts.sym32 = TRUE;
13467   else if (strcmp (name, "nosym32") == 0)
13468     mips_opts.sym32 = FALSE;
13469   else if (strchr (name, ','))
13470     {
13471       /* Generic ".set" directive; use the generic handler.  */
13472       *input_line_pointer = ch;
13473       input_line_pointer = name;
13474       s_set (0);
13475       return;
13476     }
13477   else
13478     {
13479       as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
13480     }
13481   *input_line_pointer = ch;
13482   demand_empty_rest_of_line ();
13483 }
13484
13485 /* Handle the .abicalls pseudo-op.  I believe this is equivalent to
13486    .option pic2.  It means to generate SVR4 PIC calls.  */
13487
13488 static void
13489 s_abicalls (int ignore ATTRIBUTE_UNUSED)
13490 {
13491   mips_pic = SVR4_PIC;
13492   mips_abicalls = TRUE;
13493
13494   if (g_switch_seen && g_switch_value != 0)
13495     as_warn (_("-G may not be used with SVR4 PIC code"));
13496   g_switch_value = 0;
13497
13498   bfd_set_gp_size (stdoutput, 0);
13499   demand_empty_rest_of_line ();
13500 }
13501
13502 /* Handle the .cpload pseudo-op.  This is used when generating SVR4
13503    PIC code.  It sets the $gp register for the function based on the
13504    function address, which is in the register named in the argument.
13505    This uses a relocation against _gp_disp, which is handled specially
13506    by the linker.  The result is:
13507         lui     $gp,%hi(_gp_disp)
13508         addiu   $gp,$gp,%lo(_gp_disp)
13509         addu    $gp,$gp,.cpload argument
13510    The .cpload argument is normally $25 == $t9.
13511
13512    The -mno-shared option changes this to:
13513         lui     $gp,%hi(__gnu_local_gp)
13514         addiu   $gp,$gp,%lo(__gnu_local_gp)
13515    and the argument is ignored.  This saves an instruction, but the
13516    resulting code is not position independent; it uses an absolute
13517    address for __gnu_local_gp.  Thus code assembled with -mno-shared
13518    can go into an ordinary executable, but not into a shared library.  */
13519
13520 static void
13521 s_cpload (int ignore ATTRIBUTE_UNUSED)
13522 {
13523   expressionS ex;
13524   int reg;
13525   int in_shared;
13526
13527   /* If we are not generating SVR4 PIC code, or if this is NewABI code,
13528      .cpload is ignored.  */
13529   if (mips_pic != SVR4_PIC || HAVE_NEWABI)
13530     {
13531       s_ignore (0);
13532       return;
13533     }
13534
13535   /* .cpload should be in a .set noreorder section.  */
13536   if (mips_opts.noreorder == 0)
13537     as_warn (_(".cpload not in noreorder section"));
13538
13539   reg = tc_get_register (0);
13540
13541   /* If we need to produce a 64-bit address, we are better off using
13542      the default instruction sequence.  */
13543   in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
13544
13545   ex.X_op = O_symbol;
13546   ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
13547                                          "__gnu_local_gp");
13548   ex.X_op_symbol = NULL;
13549   ex.X_add_number = 0;
13550
13551   /* In ELF, this symbol is implicitly an STT_OBJECT symbol.  */
13552   symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
13553
13554   macro_start ();
13555   macro_build_lui (&ex, mips_gp_register);
13556   macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
13557                mips_gp_register, BFD_RELOC_LO16);
13558   if (in_shared)
13559     macro_build (NULL, "addu", "d,v,t", mips_gp_register,
13560                  mips_gp_register, reg);
13561   macro_end ();
13562
13563   demand_empty_rest_of_line ();
13564 }
13565
13566 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code.  The syntax is:
13567      .cpsetup $reg1, offset|$reg2, label
13568
13569    If offset is given, this results in:
13570      sd         $gp, offset($sp)
13571      lui        $gp, %hi(%neg(%gp_rel(label)))
13572      addiu      $gp, $gp, %lo(%neg(%gp_rel(label)))
13573      daddu      $gp, $gp, $reg1
13574
13575    If $reg2 is given, this results in:
13576      daddu      $reg2, $gp, $0
13577      lui        $gp, %hi(%neg(%gp_rel(label)))
13578      addiu      $gp, $gp, %lo(%neg(%gp_rel(label)))
13579      daddu      $gp, $gp, $reg1
13580    $reg1 is normally $25 == $t9.
13581
13582    The -mno-shared option replaces the last three instructions with
13583         lui     $gp,%hi(_gp)
13584         addiu   $gp,$gp,%lo(_gp)  */
13585
13586 static void
13587 s_cpsetup (int ignore ATTRIBUTE_UNUSED)
13588 {
13589   expressionS ex_off;
13590   expressionS ex_sym;
13591   int reg1;
13592
13593   /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
13594      We also need NewABI support.  */
13595   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13596     {
13597       s_ignore (0);
13598       return;
13599     }
13600
13601   reg1 = tc_get_register (0);
13602   SKIP_WHITESPACE ();
13603   if (*input_line_pointer != ',')
13604     {
13605       as_bad (_("missing argument separator ',' for .cpsetup"));
13606       return;
13607     }
13608   else
13609     ++input_line_pointer;
13610   SKIP_WHITESPACE ();
13611   if (*input_line_pointer == '$')
13612     {
13613       mips_cpreturn_register = tc_get_register (0);
13614       mips_cpreturn_offset = -1;
13615     }
13616   else
13617     {
13618       mips_cpreturn_offset = get_absolute_expression ();
13619       mips_cpreturn_register = -1;
13620     }
13621   SKIP_WHITESPACE ();
13622   if (*input_line_pointer != ',')
13623     {
13624       as_bad (_("missing argument separator ',' for .cpsetup"));
13625       return;
13626     }
13627   else
13628     ++input_line_pointer;
13629   SKIP_WHITESPACE ();
13630   expression (&ex_sym);
13631
13632   macro_start ();
13633   if (mips_cpreturn_register == -1)
13634     {
13635       ex_off.X_op = O_constant;
13636       ex_off.X_add_symbol = NULL;
13637       ex_off.X_op_symbol = NULL;
13638       ex_off.X_add_number = mips_cpreturn_offset;
13639
13640       macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
13641                    BFD_RELOC_LO16, SP);
13642     }
13643   else
13644     macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
13645                  mips_gp_register, 0);
13646
13647   if (mips_in_shared || HAVE_64BIT_SYMBOLS)
13648     {
13649       macro_build (&ex_sym, "lui", "t,u", mips_gp_register,
13650                    -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
13651                    BFD_RELOC_HI16_S);
13652
13653       macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
13654                    mips_gp_register, -1, BFD_RELOC_GPREL16,
13655                    BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
13656
13657       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
13658                    mips_gp_register, reg1);
13659     }
13660   else
13661     {
13662       expressionS ex;
13663
13664       ex.X_op = O_symbol;
13665       ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
13666       ex.X_op_symbol = NULL;
13667       ex.X_add_number = 0;
13668
13669       /* In ELF, this symbol is implicitly an STT_OBJECT symbol.  */
13670       symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
13671
13672       macro_build_lui (&ex, mips_gp_register);
13673       macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
13674                    mips_gp_register, BFD_RELOC_LO16);
13675     }
13676
13677   macro_end ();
13678
13679   demand_empty_rest_of_line ();
13680 }
13681
13682 static void
13683 s_cplocal (int ignore ATTRIBUTE_UNUSED)
13684 {
13685   /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
13686      .cplocal is ignored.  */
13687   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13688     {
13689       s_ignore (0);
13690       return;
13691     }
13692
13693   mips_gp_register = tc_get_register (0);
13694   demand_empty_rest_of_line ();
13695 }
13696
13697 /* Handle the .cprestore pseudo-op.  This stores $gp into a given
13698    offset from $sp.  The offset is remembered, and after making a PIC
13699    call $gp is restored from that location.  */
13700
13701 static void
13702 s_cprestore (int ignore ATTRIBUTE_UNUSED)
13703 {
13704   expressionS ex;
13705
13706   /* If we are not generating SVR4 PIC code, or if this is NewABI code,
13707      .cprestore is ignored.  */
13708   if (mips_pic != SVR4_PIC || HAVE_NEWABI)
13709     {
13710       s_ignore (0);
13711       return;
13712     }
13713
13714   mips_cprestore_offset = get_absolute_expression ();
13715   mips_cprestore_valid = 1;
13716
13717   ex.X_op = O_constant;
13718   ex.X_add_symbol = NULL;
13719   ex.X_op_symbol = NULL;
13720   ex.X_add_number = mips_cprestore_offset;
13721
13722   macro_start ();
13723   macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
13724                                 SP, HAVE_64BIT_ADDRESSES);
13725   macro_end ();
13726
13727   demand_empty_rest_of_line ();
13728 }
13729
13730 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
13731    was given in the preceding .cpsetup, it results in:
13732      ld         $gp, offset($sp)
13733
13734    If a register $reg2 was given there, it results in:
13735      daddu      $gp, $reg2, $0  */
13736
13737 static void
13738 s_cpreturn (int ignore ATTRIBUTE_UNUSED)
13739 {
13740   expressionS ex;
13741
13742   /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
13743      We also need NewABI support.  */
13744   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13745     {
13746       s_ignore (0);
13747       return;
13748     }
13749
13750   macro_start ();
13751   if (mips_cpreturn_register == -1)
13752     {
13753       ex.X_op = O_constant;
13754       ex.X_add_symbol = NULL;
13755       ex.X_op_symbol = NULL;
13756       ex.X_add_number = mips_cpreturn_offset;
13757
13758       macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
13759     }
13760   else
13761     macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
13762                  mips_cpreturn_register, 0);
13763   macro_end ();
13764
13765   demand_empty_rest_of_line ();
13766 }
13767
13768 /* Handle the .dtprelword and .dtpreldword pseudo-ops.  They generate
13769    a 32-bit or 64-bit DTP-relative relocation (BYTES says which) for
13770    use in DWARF debug information.  */
13771
13772 static void
13773 s_dtprel_internal (size_t bytes)
13774 {
13775   expressionS ex;
13776   char *p;
13777
13778   expression (&ex);
13779
13780   if (ex.X_op != O_symbol)
13781     {
13782       as_bad (_("Unsupported use of %s"), (bytes == 8
13783                                            ? ".dtpreldword"
13784                                            : ".dtprelword"));
13785       ignore_rest_of_line ();
13786     }
13787
13788   p = frag_more (bytes);
13789   md_number_to_chars (p, 0, bytes);
13790   fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE,
13791                (bytes == 8
13792                 ? BFD_RELOC_MIPS_TLS_DTPREL64
13793                 : BFD_RELOC_MIPS_TLS_DTPREL32));
13794
13795   demand_empty_rest_of_line ();
13796 }
13797
13798 /* Handle .dtprelword.  */
13799
13800 static void
13801 s_dtprelword (int ignore ATTRIBUTE_UNUSED)
13802 {
13803   s_dtprel_internal (4);
13804 }
13805
13806 /* Handle .dtpreldword.  */
13807
13808 static void
13809 s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
13810 {
13811   s_dtprel_internal (8);
13812 }
13813
13814 /* Handle the .gpvalue pseudo-op.  This is used when generating NewABI PIC
13815    code.  It sets the offset to use in gp_rel relocations.  */
13816
13817 static void
13818 s_gpvalue (int ignore ATTRIBUTE_UNUSED)
13819 {
13820   /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
13821      We also need NewABI support.  */
13822   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13823     {
13824       s_ignore (0);
13825       return;
13826     }
13827
13828   mips_gprel_offset = get_absolute_expression ();
13829
13830   demand_empty_rest_of_line ();
13831 }
13832
13833 /* Handle the .gpword pseudo-op.  This is used when generating PIC
13834    code.  It generates a 32 bit GP relative reloc.  */
13835
13836 static void
13837 s_gpword (int ignore ATTRIBUTE_UNUSED)
13838 {
13839   segment_info_type *si;
13840   struct insn_label_list *l;
13841   symbolS *label;
13842   expressionS ex;
13843   char *p;
13844
13845   /* When not generating PIC code, this is treated as .word.  */
13846   if (mips_pic != SVR4_PIC)
13847     {
13848       s_cons (2);
13849       return;
13850     }
13851
13852   si = seg_info (now_seg);
13853   l = si->label_list;
13854   label = l != NULL ? l->label : NULL;
13855   mips_emit_delays ();
13856   if (auto_align)
13857     mips_align (2, 0, label);
13858
13859   expression (&ex);
13860   mips_clear_insn_labels ();
13861
13862   if (ex.X_op != O_symbol || ex.X_add_number != 0)
13863     {
13864       as_bad (_("Unsupported use of .gpword"));
13865       ignore_rest_of_line ();
13866     }
13867
13868   p = frag_more (4);
13869   md_number_to_chars (p, 0, 4);
13870   fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
13871                BFD_RELOC_GPREL32);
13872
13873   demand_empty_rest_of_line ();
13874 }
13875
13876 static void
13877 s_gpdword (int ignore ATTRIBUTE_UNUSED)
13878 {
13879   segment_info_type *si;
13880   struct insn_label_list *l;
13881   symbolS *label;
13882   expressionS ex;
13883   char *p;
13884
13885   /* When not generating PIC code, this is treated as .dword.  */
13886   if (mips_pic != SVR4_PIC)
13887     {
13888       s_cons (3);
13889       return;
13890     }
13891
13892   si = seg_info (now_seg);
13893   l = si->label_list;
13894   label = l != NULL ? l->label : NULL;
13895   mips_emit_delays ();
13896   if (auto_align)
13897     mips_align (3, 0, label);
13898
13899   expression (&ex);
13900   mips_clear_insn_labels ();
13901
13902   if (ex.X_op != O_symbol || ex.X_add_number != 0)
13903     {
13904       as_bad (_("Unsupported use of .gpdword"));
13905       ignore_rest_of_line ();
13906     }
13907
13908   p = frag_more (8);
13909   md_number_to_chars (p, 0, 8);
13910   fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
13911                BFD_RELOC_GPREL32)->fx_tcbit = 1;
13912
13913   /* GPREL32 composed with 64 gives a 64-bit GP offset.  */
13914   fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
13915            FALSE, BFD_RELOC_64)->fx_tcbit = 1;
13916
13917   demand_empty_rest_of_line ();
13918 }
13919
13920 /* Handle the .cpadd pseudo-op.  This is used when dealing with switch
13921    tables in SVR4 PIC code.  */
13922
13923 static void
13924 s_cpadd (int ignore ATTRIBUTE_UNUSED)
13925 {
13926   int reg;
13927
13928   /* This is ignored when not generating SVR4 PIC code.  */
13929   if (mips_pic != SVR4_PIC)
13930     {
13931       s_ignore (0);
13932       return;
13933     }
13934
13935   /* Add $gp to the register named as an argument.  */
13936   macro_start ();
13937   reg = tc_get_register (0);
13938   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
13939   macro_end ();
13940
13941   demand_empty_rest_of_line ();
13942 }
13943
13944 /* Handle the .insn pseudo-op.  This marks instruction labels in
13945    mips16 mode.  This permits the linker to handle them specially,
13946    such as generating jalx instructions when needed.  We also make
13947    them odd for the duration of the assembly, in order to generate the
13948    right sort of code.  We will make them even in the adjust_symtab
13949    routine, while leaving them marked.  This is convenient for the
13950    debugger and the disassembler.  The linker knows to make them odd
13951    again.  */
13952
13953 static void
13954 s_insn (int ignore ATTRIBUTE_UNUSED)
13955 {
13956   mips16_mark_labels ();
13957
13958   demand_empty_rest_of_line ();
13959 }
13960
13961 /* Handle a .stabn directive.  We need these in order to mark a label
13962    as being a mips16 text label correctly.  Sometimes the compiler
13963    will emit a label, followed by a .stabn, and then switch sections.
13964    If the label and .stabn are in mips16 mode, then the label is
13965    really a mips16 text label.  */
13966
13967 static void
13968 s_mips_stab (int type)
13969 {
13970   if (type == 'n')
13971     mips16_mark_labels ();
13972
13973   s_stab (type);
13974 }
13975
13976 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich.  */
13977
13978 static void
13979 s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
13980 {
13981   char *name;
13982   int c;
13983   symbolS *symbolP;
13984   expressionS exp;
13985
13986   name = input_line_pointer;
13987   c = get_symbol_end ();
13988   symbolP = symbol_find_or_make (name);
13989   S_SET_WEAK (symbolP);
13990   *input_line_pointer = c;
13991
13992   SKIP_WHITESPACE ();
13993
13994   if (! is_end_of_line[(unsigned char) *input_line_pointer])
13995     {
13996       if (S_IS_DEFINED (symbolP))
13997         {
13998           as_bad (_("ignoring attempt to redefine symbol %s"),
13999                   S_GET_NAME (symbolP));
14000           ignore_rest_of_line ();
14001           return;
14002         }
14003
14004       if (*input_line_pointer == ',')
14005         {
14006           ++input_line_pointer;
14007           SKIP_WHITESPACE ();
14008         }
14009
14010       expression (&exp);
14011       if (exp.X_op != O_symbol)
14012         {
14013           as_bad (_("bad .weakext directive"));
14014           ignore_rest_of_line ();
14015           return;
14016         }
14017       symbol_set_value_expression (symbolP, &exp);
14018     }
14019
14020   demand_empty_rest_of_line ();
14021 }
14022
14023 /* Parse a register string into a number.  Called from the ECOFF code
14024    to parse .frame.  The argument is non-zero if this is the frame
14025    register, so that we can record it in mips_frame_reg.  */
14026
14027 int
14028 tc_get_register (int frame)
14029 {
14030   unsigned int reg;
14031
14032   SKIP_WHITESPACE ();
14033   if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, &reg))
14034     reg = 0;
14035   if (frame)
14036     {
14037       mips_frame_reg = reg != 0 ? reg : SP;
14038       mips_frame_reg_valid = 1;
14039       mips_cprestore_valid = 0;
14040     }
14041   return reg;
14042 }
14043
14044 valueT
14045 md_section_align (asection *seg, valueT addr)
14046 {
14047   int align = bfd_get_section_alignment (stdoutput, seg);
14048
14049   if (IS_ELF)
14050     {
14051       /* We don't need to align ELF sections to the full alignment.
14052          However, Irix 5 may prefer that we align them at least to a 16
14053          byte boundary.  We don't bother to align the sections if we
14054          are targeted for an embedded system.  */
14055       if (strncmp (TARGET_OS, "elf", 3) == 0)
14056         return addr;
14057       if (align > 4)
14058         align = 4;
14059     }
14060
14061   return ((addr + (1 << align) - 1) & (-1 << align));
14062 }
14063
14064 /* Utility routine, called from above as well.  If called while the
14065    input file is still being read, it's only an approximation.  (For
14066    example, a symbol may later become defined which appeared to be
14067    undefined earlier.)  */
14068
14069 static int
14070 nopic_need_relax (symbolS *sym, int before_relaxing)
14071 {
14072   if (sym == 0)
14073     return 0;
14074
14075   if (g_switch_value > 0)
14076     {
14077       const char *symname;
14078       int change;
14079
14080       /* Find out whether this symbol can be referenced off the $gp
14081          register.  It can be if it is smaller than the -G size or if
14082          it is in the .sdata or .sbss section.  Certain symbols can
14083          not be referenced off the $gp, although it appears as though
14084          they can.  */
14085       symname = S_GET_NAME (sym);
14086       if (symname != (const char *) NULL
14087           && (strcmp (symname, "eprol") == 0
14088               || strcmp (symname, "etext") == 0
14089               || strcmp (symname, "_gp") == 0
14090               || strcmp (symname, "edata") == 0
14091               || strcmp (symname, "_fbss") == 0
14092               || strcmp (symname, "_fdata") == 0
14093               || strcmp (symname, "_ftext") == 0
14094               || strcmp (symname, "end") == 0
14095               || strcmp (symname, "_gp_disp") == 0))
14096         change = 1;
14097       else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
14098                && (0
14099 #ifndef NO_ECOFF_DEBUGGING
14100                    || (symbol_get_obj (sym)->ecoff_extern_size != 0
14101                        && (symbol_get_obj (sym)->ecoff_extern_size
14102                            <= g_switch_value))
14103 #endif
14104                    /* We must defer this decision until after the whole
14105                       file has been read, since there might be a .extern
14106                       after the first use of this symbol.  */
14107                    || (before_relaxing
14108 #ifndef NO_ECOFF_DEBUGGING
14109                        && symbol_get_obj (sym)->ecoff_extern_size == 0
14110 #endif
14111                        && S_GET_VALUE (sym) == 0)
14112                    || (S_GET_VALUE (sym) != 0
14113                        && S_GET_VALUE (sym) <= g_switch_value)))
14114         change = 0;
14115       else
14116         {
14117           const char *segname;
14118
14119           segname = segment_name (S_GET_SEGMENT (sym));
14120           gas_assert (strcmp (segname, ".lit8") != 0
14121                   && strcmp (segname, ".lit4") != 0);
14122           change = (strcmp (segname, ".sdata") != 0
14123                     && strcmp (segname, ".sbss") != 0
14124                     && strncmp (segname, ".sdata.", 7) != 0
14125                     && strncmp (segname, ".sbss.", 6) != 0
14126                     && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0
14127                     && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
14128         }
14129       return change;
14130     }
14131   else
14132     /* We are not optimizing for the $gp register.  */
14133     return 1;
14134 }
14135
14136
14137 /* Return true if the given symbol should be considered local for SVR4 PIC.  */
14138
14139 static bfd_boolean
14140 pic_need_relax (symbolS *sym, asection *segtype)
14141 {
14142   asection *symsec;
14143
14144   /* Handle the case of a symbol equated to another symbol.  */
14145   while (symbol_equated_reloc_p (sym))
14146     {
14147       symbolS *n;
14148
14149       /* It's possible to get a loop here in a badly written program.  */
14150       n = symbol_get_value_expression (sym)->X_add_symbol;
14151       if (n == sym)
14152         break;
14153       sym = n;
14154     }
14155
14156   if (symbol_section_p (sym))
14157     return TRUE;
14158
14159   symsec = S_GET_SEGMENT (sym);
14160
14161   /* This must duplicate the test in adjust_reloc_syms.  */
14162   return (symsec != &bfd_und_section
14163           && symsec != &bfd_abs_section
14164           && !bfd_is_com_section (symsec)
14165           && !s_is_linkonce (sym, segtype)
14166 #ifdef OBJ_ELF
14167           /* A global or weak symbol is treated as external.  */
14168           && (!IS_ELF || (! S_IS_WEAK (sym) && ! S_IS_EXTERNAL (sym)))
14169 #endif
14170           );
14171 }
14172
14173
14174 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
14175    extended opcode.  SEC is the section the frag is in.  */
14176
14177 static int
14178 mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
14179 {
14180   int type;
14181   const struct mips16_immed_operand *op;
14182   offsetT val;
14183   int mintiny, maxtiny;
14184   segT symsec;
14185   fragS *sym_frag;
14186
14187   if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
14188     return 0;
14189   if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
14190     return 1;
14191
14192   type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
14193   op = mips16_immed_operands;
14194   while (op->type != type)
14195     {
14196       ++op;
14197       gas_assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
14198     }
14199
14200   if (op->unsp)
14201     {
14202       if (type == '<' || type == '>' || type == '[' || type == ']')
14203         {
14204           mintiny = 1;
14205           maxtiny = 1 << op->nbits;
14206         }
14207       else
14208         {
14209           mintiny = 0;
14210           maxtiny = (1 << op->nbits) - 1;
14211         }
14212     }
14213   else
14214     {
14215       mintiny = - (1 << (op->nbits - 1));
14216       maxtiny = (1 << (op->nbits - 1)) - 1;
14217     }
14218
14219   sym_frag = symbol_get_frag (fragp->fr_symbol);
14220   val = S_GET_VALUE (fragp->fr_symbol);
14221   symsec = S_GET_SEGMENT (fragp->fr_symbol);
14222
14223   if (op->pcrel)
14224     {
14225       addressT addr;
14226
14227       /* We won't have the section when we are called from
14228          mips_relax_frag.  However, we will always have been called
14229          from md_estimate_size_before_relax first.  If this is a
14230          branch to a different section, we mark it as such.  If SEC is
14231          NULL, and the frag is not marked, then it must be a branch to
14232          the same section.  */
14233       if (sec == NULL)
14234         {
14235           if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
14236             return 1;
14237         }
14238       else
14239         {
14240           /* Must have been called from md_estimate_size_before_relax.  */
14241           if (symsec != sec)
14242             {
14243               fragp->fr_subtype =
14244                 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
14245
14246               /* FIXME: We should support this, and let the linker
14247                  catch branches and loads that are out of range.  */
14248               as_bad_where (fragp->fr_file, fragp->fr_line,
14249                             _("unsupported PC relative reference to different section"));
14250
14251               return 1;
14252             }
14253           if (fragp != sym_frag && sym_frag->fr_address == 0)
14254             /* Assume non-extended on the first relaxation pass.
14255                The address we have calculated will be bogus if this is
14256                a forward branch to another frag, as the forward frag
14257                will have fr_address == 0.  */
14258             return 0;
14259         }
14260
14261       /* In this case, we know for sure that the symbol fragment is in
14262          the same section.  If the relax_marker of the symbol fragment
14263          differs from the relax_marker of this fragment, we have not
14264          yet adjusted the symbol fragment fr_address.  We want to add
14265          in STRETCH in order to get a better estimate of the address.
14266          This particularly matters because of the shift bits.  */
14267       if (stretch != 0
14268           && sym_frag->relax_marker != fragp->relax_marker)
14269         {
14270           fragS *f;
14271
14272           /* Adjust stretch for any alignment frag.  Note that if have
14273              been expanding the earlier code, the symbol may be
14274              defined in what appears to be an earlier frag.  FIXME:
14275              This doesn't handle the fr_subtype field, which specifies
14276              a maximum number of bytes to skip when doing an
14277              alignment.  */
14278           for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
14279             {
14280               if (f->fr_type == rs_align || f->fr_type == rs_align_code)
14281                 {
14282                   if (stretch < 0)
14283                     stretch = - ((- stretch)
14284                                  & ~ ((1 << (int) f->fr_offset) - 1));
14285                   else
14286                     stretch &= ~ ((1 << (int) f->fr_offset) - 1);
14287                   if (stretch == 0)
14288                     break;
14289                 }
14290             }
14291           if (f != NULL)
14292             val += stretch;
14293         }
14294
14295       addr = fragp->fr_address + fragp->fr_fix;
14296
14297       /* The base address rules are complicated.  The base address of
14298          a branch is the following instruction.  The base address of a
14299          PC relative load or add is the instruction itself, but if it
14300          is in a delay slot (in which case it can not be extended) use
14301          the address of the instruction whose delay slot it is in.  */
14302       if (type == 'p' || type == 'q')
14303         {
14304           addr += 2;
14305
14306           /* If we are currently assuming that this frag should be
14307              extended, then, the current address is two bytes
14308              higher.  */
14309           if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14310             addr += 2;
14311
14312           /* Ignore the low bit in the target, since it will be set
14313              for a text label.  */
14314           if ((val & 1) != 0)
14315             --val;
14316         }
14317       else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
14318         addr -= 4;
14319       else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
14320         addr -= 2;
14321
14322       val -= addr & ~ ((1 << op->shift) - 1);
14323
14324       /* Branch offsets have an implicit 0 in the lowest bit.  */
14325       if (type == 'p' || type == 'q')
14326         val /= 2;
14327
14328       /* If any of the shifted bits are set, we must use an extended
14329          opcode.  If the address depends on the size of this
14330          instruction, this can lead to a loop, so we arrange to always
14331          use an extended opcode.  We only check this when we are in
14332          the main relaxation loop, when SEC is NULL.  */
14333       if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
14334         {
14335           fragp->fr_subtype =
14336             RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
14337           return 1;
14338         }
14339
14340       /* If we are about to mark a frag as extended because the value
14341          is precisely maxtiny + 1, then there is a chance of an
14342          infinite loop as in the following code:
14343              la $4,foo
14344              .skip      1020
14345              .align     2
14346            foo:
14347          In this case when the la is extended, foo is 0x3fc bytes
14348          away, so the la can be shrunk, but then foo is 0x400 away, so
14349          the la must be extended.  To avoid this loop, we mark the
14350          frag as extended if it was small, and is about to become
14351          extended with a value of maxtiny + 1.  */
14352       if (val == ((maxtiny + 1) << op->shift)
14353           && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
14354           && sec == NULL)
14355         {
14356           fragp->fr_subtype =
14357             RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
14358           return 1;
14359         }
14360     }
14361   else if (symsec != absolute_section && sec != NULL)
14362     as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
14363
14364   if ((val & ((1 << op->shift) - 1)) != 0
14365       || val < (mintiny << op->shift)
14366       || val > (maxtiny << op->shift))
14367     return 1;
14368   else
14369     return 0;
14370 }
14371
14372 /* Compute the length of a branch sequence, and adjust the
14373    RELAX_BRANCH_TOOFAR bit accordingly.  If FRAGP is NULL, the
14374    worst-case length is computed, with UPDATE being used to indicate
14375    whether an unconditional (-1), branch-likely (+1) or regular (0)
14376    branch is to be computed.  */
14377 static int
14378 relaxed_branch_length (fragS *fragp, asection *sec, int update)
14379 {
14380   bfd_boolean toofar;
14381   int length;
14382
14383   if (fragp
14384       && S_IS_DEFINED (fragp->fr_symbol)
14385       && sec == S_GET_SEGMENT (fragp->fr_symbol))
14386     {
14387       addressT addr;
14388       offsetT val;
14389
14390       val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
14391
14392       addr = fragp->fr_address + fragp->fr_fix + 4;
14393
14394       val -= addr;
14395
14396       toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
14397     }
14398   else if (fragp)
14399     /* If the symbol is not defined or it's in a different segment,
14400        assume the user knows what's going on and emit a short
14401        branch.  */
14402     toofar = FALSE;
14403   else
14404     toofar = TRUE;
14405
14406   if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
14407     fragp->fr_subtype
14408       = RELAX_BRANCH_ENCODE (RELAX_BRANCH_AT (fragp->fr_subtype),
14409                              RELAX_BRANCH_UNCOND (fragp->fr_subtype),
14410                              RELAX_BRANCH_LIKELY (fragp->fr_subtype),
14411                              RELAX_BRANCH_LINK (fragp->fr_subtype),
14412                              toofar);
14413
14414   length = 4;
14415   if (toofar)
14416     {
14417       if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
14418         length += 8;
14419
14420       if (mips_pic != NO_PIC)
14421         {
14422           /* Additional space for PIC loading of target address.  */
14423           length += 8;
14424           if (mips_opts.isa == ISA_MIPS1)
14425             /* Additional space for $at-stabilizing nop.  */
14426             length += 4;
14427         }
14428
14429       /* If branch is conditional.  */
14430       if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
14431         length += 8;
14432     }
14433
14434   return length;
14435 }
14436
14437 /* Estimate the size of a frag before relaxing.  Unless this is the
14438    mips16, we are not really relaxing here, and the final size is
14439    encoded in the subtype information.  For the mips16, we have to
14440    decide whether we are using an extended opcode or not.  */
14441
14442 int
14443 md_estimate_size_before_relax (fragS *fragp, asection *segtype)
14444 {
14445   int change;
14446
14447   if (RELAX_BRANCH_P (fragp->fr_subtype))
14448     {
14449
14450       fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
14451
14452       return fragp->fr_var;
14453     }
14454
14455   if (RELAX_MIPS16_P (fragp->fr_subtype))
14456     /* We don't want to modify the EXTENDED bit here; it might get us
14457        into infinite loops.  We change it only in mips_relax_frag().  */
14458     return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
14459
14460   if (mips_pic == NO_PIC)
14461     change = nopic_need_relax (fragp->fr_symbol, 0);
14462   else if (mips_pic == SVR4_PIC)
14463     change = pic_need_relax (fragp->fr_symbol, segtype);
14464   else if (mips_pic == VXWORKS_PIC)
14465     /* For vxworks, GOT16 relocations never have a corresponding LO16.  */
14466     change = 0;
14467   else
14468     abort ();
14469
14470   if (change)
14471     {
14472       fragp->fr_subtype |= RELAX_USE_SECOND;
14473       return -RELAX_FIRST (fragp->fr_subtype);
14474     }
14475   else
14476     return -RELAX_SECOND (fragp->fr_subtype);
14477 }
14478
14479 /* This is called to see whether a reloc against a defined symbol
14480    should be converted into a reloc against a section.  */
14481
14482 int
14483 mips_fix_adjustable (fixS *fixp)
14484 {
14485   if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
14486       || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
14487     return 0;
14488
14489   if (fixp->fx_addsy == NULL)
14490     return 1;
14491
14492   /* If symbol SYM is in a mergeable section, relocations of the form
14493      SYM + 0 can usually be made section-relative.  The mergeable data
14494      is then identified by the section offset rather than by the symbol.
14495
14496      However, if we're generating REL LO16 relocations, the offset is split
14497      between the LO16 and parterning high part relocation.  The linker will
14498      need to recalculate the complete offset in order to correctly identify
14499      the merge data.
14500
14501      The linker has traditionally not looked for the parterning high part
14502      relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
14503      placed anywhere.  Rather than break backwards compatibility by changing
14504      this, it seems better not to force the issue, and instead keep the
14505      original symbol.  This will work with either linker behavior.  */
14506   if ((lo16_reloc_p (fixp->fx_r_type)
14507        || reloc_needs_lo_p (fixp->fx_r_type))
14508       && HAVE_IN_PLACE_ADDENDS
14509       && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
14510     return 0;
14511
14512   /* There is no place to store an in-place offset for JALR relocations.
14513      Likewise an in-range offset of PC-relative relocations may overflow
14514      the in-place relocatable field if recalculated against the start
14515      address of the symbol's containing section.  */
14516   if (HAVE_IN_PLACE_ADDENDS
14517       && (fixp->fx_pcrel || fixp->fx_r_type == BFD_RELOC_MIPS_JALR))
14518     return 0;
14519
14520 #ifdef OBJ_ELF
14521   /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
14522      to a floating-point stub.  The same is true for non-R_MIPS16_26
14523      relocations against MIPS16 functions; in this case, the stub becomes
14524      the function's canonical address.
14525
14526      Floating-point stubs are stored in unique .mips16.call.* or
14527      .mips16.fn.* sections.  If a stub T for function F is in section S,
14528      the first relocation in section S must be against F; this is how the
14529      linker determines the target function.  All relocations that might
14530      resolve to T must also be against F.  We therefore have the following
14531      restrictions, which are given in an intentionally-redundant way:
14532
14533        1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
14534           symbols.
14535
14536        2. We cannot reduce a stub's relocations against non-MIPS16 symbols
14537           if that stub might be used.
14538
14539        3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
14540           symbols.
14541
14542        4. We cannot reduce a stub's relocations against MIPS16 symbols if
14543           that stub might be used.
14544
14545      There is a further restriction:
14546
14547        5. We cannot reduce R_MIPS16_26 relocations against MIPS16 symbols
14548           on targets with in-place addends; the relocation field cannot
14549           encode the low bit.
14550
14551      For simplicity, we deal with (3)-(5) by not reducing _any_ relocation
14552      against a MIPS16 symbol.
14553
14554      We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
14555      relocation against some symbol R, no relocation against R may be
14556      reduced.  (Note that this deals with (2) as well as (1) because
14557      relocations against global symbols will never be reduced on ELF
14558      targets.)  This approach is a little simpler than trying to detect
14559      stub sections, and gives the "all or nothing" per-symbol consistency
14560      that we have for MIPS16 symbols.  */
14561   if (IS_ELF
14562       && fixp->fx_subsy == NULL
14563       && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
14564           || *symbol_get_tc (fixp->fx_addsy)))
14565     return 0;
14566 #endif
14567
14568   return 1;
14569 }
14570
14571 /* Translate internal representation of relocation info to BFD target
14572    format.  */
14573
14574 arelent **
14575 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
14576 {
14577   static arelent *retval[4];
14578   arelent *reloc;
14579   bfd_reloc_code_real_type code;
14580
14581   memset (retval, 0, sizeof(retval));
14582   reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
14583   reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
14584   *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
14585   reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
14586
14587   if (fixp->fx_pcrel)
14588     {
14589       gas_assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2);
14590
14591       /* At this point, fx_addnumber is "symbol offset - pcrel address".
14592          Relocations want only the symbol offset.  */
14593       reloc->addend = fixp->fx_addnumber + reloc->address;
14594       if (!IS_ELF)
14595         {
14596           /* A gruesome hack which is a result of the gruesome gas
14597              reloc handling.  What's worse, for COFF (as opposed to
14598              ECOFF), we might need yet another copy of reloc->address.
14599              See bfd_install_relocation.  */
14600           reloc->addend += reloc->address;
14601         }
14602     }
14603   else
14604     reloc->addend = fixp->fx_addnumber;
14605
14606   /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
14607      entry to be used in the relocation's section offset.  */
14608   if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
14609     {
14610       reloc->address = reloc->addend;
14611       reloc->addend = 0;
14612     }
14613
14614   code = fixp->fx_r_type;
14615
14616   reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
14617   if (reloc->howto == NULL)
14618     {
14619       as_bad_where (fixp->fx_file, fixp->fx_line,
14620                     _("Can not represent %s relocation in this object file format"),
14621                     bfd_get_reloc_code_name (code));
14622       retval[0] = NULL;
14623     }
14624
14625   return retval;
14626 }
14627
14628 /* Relax a machine dependent frag.  This returns the amount by which
14629    the current size of the frag should change.  */
14630
14631 int
14632 mips_relax_frag (asection *sec, fragS *fragp, long stretch)
14633 {
14634   if (RELAX_BRANCH_P (fragp->fr_subtype))
14635     {
14636       offsetT old_var = fragp->fr_var;
14637
14638       fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
14639
14640       return fragp->fr_var - old_var;
14641     }
14642
14643   if (! RELAX_MIPS16_P (fragp->fr_subtype))
14644     return 0;
14645
14646   if (mips16_extended_frag (fragp, NULL, stretch))
14647     {
14648       if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14649         return 0;
14650       fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
14651       return 2;
14652     }
14653   else
14654     {
14655       if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14656         return 0;
14657       fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
14658       return -2;
14659     }
14660
14661   return 0;
14662 }
14663
14664 /* Convert a machine dependent frag.  */
14665
14666 void
14667 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
14668 {
14669   if (RELAX_BRANCH_P (fragp->fr_subtype))
14670     {
14671       bfd_byte *buf;
14672       unsigned long insn;
14673       expressionS exp;
14674       fixS *fixp;
14675
14676       buf = (bfd_byte *)fragp->fr_literal + fragp->fr_fix;
14677
14678       if (target_big_endian)
14679         insn = bfd_getb32 (buf);
14680       else
14681         insn = bfd_getl32 (buf);
14682
14683       if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
14684         {
14685           /* We generate a fixup instead of applying it right now
14686              because, if there are linker relaxations, we're going to
14687              need the relocations.  */
14688           exp.X_op = O_symbol;
14689           exp.X_add_symbol = fragp->fr_symbol;
14690           exp.X_add_number = fragp->fr_offset;
14691
14692           fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
14693                               4, &exp, TRUE, BFD_RELOC_16_PCREL_S2);
14694           fixp->fx_file = fragp->fr_file;
14695           fixp->fx_line = fragp->fr_line;
14696
14697           md_number_to_chars ((char *) buf, insn, 4);
14698           buf += 4;
14699         }
14700       else
14701         {
14702           int i;
14703
14704           as_warn_where (fragp->fr_file, fragp->fr_line,
14705                          _("Relaxed out-of-range branch into a jump"));
14706
14707           if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
14708             goto uncond;
14709
14710           if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14711             {
14712               /* Reverse the branch.  */
14713               switch ((insn >> 28) & 0xf)
14714                 {
14715                 case 4:
14716                   /* bc[0-3][tf]l? and bc1any[24][ft] instructions can
14717                      have the condition reversed by tweaking a single
14718                      bit, and their opcodes all have 0x4???????.  */
14719                   gas_assert ((insn & 0xf1000000) == 0x41000000);
14720                   insn ^= 0x00010000;
14721                   break;
14722
14723                 case 0:
14724                   /* bltz       0x04000000      bgez    0x04010000
14725                      bltzal     0x04100000      bgezal  0x04110000  */
14726                   gas_assert ((insn & 0xfc0e0000) == 0x04000000);
14727                   insn ^= 0x00010000;
14728                   break;
14729
14730                 case 1:
14731                   /* beq        0x10000000      bne     0x14000000
14732                      blez       0x18000000      bgtz    0x1c000000  */
14733                   insn ^= 0x04000000;
14734                   break;
14735
14736                 default:
14737                   abort ();
14738                 }
14739             }
14740
14741           if (RELAX_BRANCH_LINK (fragp->fr_subtype))
14742             {
14743               /* Clear the and-link bit.  */
14744               gas_assert ((insn & 0xfc1c0000) == 0x04100000);
14745
14746               /* bltzal         0x04100000      bgezal  0x04110000
14747                  bltzall        0x04120000      bgezall 0x04130000  */
14748               insn &= ~0x00100000;
14749             }
14750
14751           /* Branch over the branch (if the branch was likely) or the
14752              full jump (not likely case).  Compute the offset from the
14753              current instruction to branch to.  */
14754           if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14755             i = 16;
14756           else
14757             {
14758               /* How many bytes in instructions we've already emitted?  */
14759               i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
14760               /* How many bytes in instructions from here to the end?  */
14761               i = fragp->fr_var - i;
14762             }
14763           /* Convert to instruction count.  */
14764           i >>= 2;
14765           /* Branch counts from the next instruction.  */
14766           i--;
14767           insn |= i;
14768           /* Branch over the jump.  */
14769           md_number_to_chars ((char *) buf, insn, 4);
14770           buf += 4;
14771
14772           /* nop */
14773           md_number_to_chars ((char *) buf, 0, 4);
14774           buf += 4;
14775
14776           if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14777             {
14778               /* beql $0, $0, 2f */
14779               insn = 0x50000000;
14780               /* Compute the PC offset from the current instruction to
14781                  the end of the variable frag.  */
14782               /* How many bytes in instructions we've already emitted?  */
14783               i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
14784               /* How many bytes in instructions from here to the end?  */
14785               i = fragp->fr_var - i;
14786               /* Convert to instruction count.  */
14787               i >>= 2;
14788               /* Don't decrement i, because we want to branch over the
14789                  delay slot.  */
14790
14791               insn |= i;
14792               md_number_to_chars ((char *) buf, insn, 4);
14793               buf += 4;
14794
14795               md_number_to_chars ((char *) buf, 0, 4);
14796               buf += 4;
14797             }
14798
14799         uncond:
14800           if (mips_pic == NO_PIC)
14801             {
14802               /* j or jal.  */
14803               insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
14804                       ? 0x0c000000 : 0x08000000);
14805               exp.X_op = O_symbol;
14806               exp.X_add_symbol = fragp->fr_symbol;
14807               exp.X_add_number = fragp->fr_offset;
14808
14809               fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
14810                                   4, &exp, FALSE, BFD_RELOC_MIPS_JMP);
14811               fixp->fx_file = fragp->fr_file;
14812               fixp->fx_line = fragp->fr_line;
14813
14814               md_number_to_chars ((char *) buf, insn, 4);
14815               buf += 4;
14816             }
14817           else
14818             {
14819               unsigned long at = RELAX_BRANCH_AT (fragp->fr_subtype);
14820
14821               /* lw/ld $at, <sym>($gp)  R_MIPS_GOT16 */
14822               insn = HAVE_64BIT_ADDRESSES ? 0xdf800000 : 0x8f800000;
14823               insn |= at << OP_SH_RT;
14824               exp.X_op = O_symbol;
14825               exp.X_add_symbol = fragp->fr_symbol;
14826               exp.X_add_number = fragp->fr_offset;
14827
14828               if (fragp->fr_offset)
14829                 {
14830                   exp.X_add_symbol = make_expr_symbol (&exp);
14831                   exp.X_add_number = 0;
14832                 }
14833
14834               fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
14835                                   4, &exp, FALSE, BFD_RELOC_MIPS_GOT16);
14836               fixp->fx_file = fragp->fr_file;
14837               fixp->fx_line = fragp->fr_line;
14838
14839               md_number_to_chars ((char *) buf, insn, 4);
14840               buf += 4;
14841
14842               if (mips_opts.isa == ISA_MIPS1)
14843                 {
14844                   /* nop */
14845                   md_number_to_chars ((char *) buf, 0, 4);
14846                   buf += 4;
14847                 }
14848
14849               /* d/addiu $at, $at, <sym>  R_MIPS_LO16 */
14850               insn = HAVE_64BIT_ADDRESSES ? 0x64000000 : 0x24000000;
14851               insn |= at << OP_SH_RS | at << OP_SH_RT;
14852
14853               fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
14854                                   4, &exp, FALSE, BFD_RELOC_LO16);
14855               fixp->fx_file = fragp->fr_file;
14856               fixp->fx_line = fragp->fr_line;
14857
14858               md_number_to_chars ((char *) buf, insn, 4);
14859               buf += 4;
14860
14861               /* j(al)r $at.  */
14862               if (RELAX_BRANCH_LINK (fragp->fr_subtype))
14863                 insn = 0x0000f809;
14864               else
14865                 insn = 0x00000008;
14866               insn |= at << OP_SH_RS;
14867
14868               md_number_to_chars ((char *) buf, insn, 4);
14869               buf += 4;
14870             }
14871         }
14872
14873       gas_assert (buf == (bfd_byte *)fragp->fr_literal
14874               + fragp->fr_fix + fragp->fr_var);
14875
14876       fragp->fr_fix += fragp->fr_var;
14877
14878       return;
14879     }
14880
14881   if (RELAX_MIPS16_P (fragp->fr_subtype))
14882     {
14883       int type;
14884       const struct mips16_immed_operand *op;
14885       bfd_boolean small, ext;
14886       offsetT val;
14887       bfd_byte *buf;
14888       unsigned long insn;
14889       bfd_boolean use_extend;
14890       unsigned short extend;
14891
14892       type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
14893       op = mips16_immed_operands;
14894       while (op->type != type)
14895         ++op;
14896
14897       if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14898         {
14899           small = FALSE;
14900           ext = TRUE;
14901         }
14902       else
14903         {
14904           small = TRUE;
14905           ext = FALSE;
14906         }
14907
14908       val = resolve_symbol_value (fragp->fr_symbol);
14909       if (op->pcrel)
14910         {
14911           addressT addr;
14912
14913           addr = fragp->fr_address + fragp->fr_fix;
14914
14915           /* The rules for the base address of a PC relative reloc are
14916              complicated; see mips16_extended_frag.  */
14917           if (type == 'p' || type == 'q')
14918             {
14919               addr += 2;
14920               if (ext)
14921                 addr += 2;
14922               /* Ignore the low bit in the target, since it will be
14923                  set for a text label.  */
14924               if ((val & 1) != 0)
14925                 --val;
14926             }
14927           else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
14928             addr -= 4;
14929           else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
14930             addr -= 2;
14931
14932           addr &= ~ (addressT) ((1 << op->shift) - 1);
14933           val -= addr;
14934
14935           /* Make sure the section winds up with the alignment we have
14936              assumed.  */
14937           if (op->shift > 0)
14938             record_alignment (asec, op->shift);
14939         }
14940
14941       if (ext
14942           && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
14943               || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
14944         as_warn_where (fragp->fr_file, fragp->fr_line,
14945                        _("extended instruction in delay slot"));
14946
14947       buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix);
14948
14949       if (target_big_endian)
14950         insn = bfd_getb16 (buf);
14951       else
14952         insn = bfd_getl16 (buf);
14953
14954       mips16_immed (fragp->fr_file, fragp->fr_line, type, val,
14955                     RELAX_MIPS16_USER_EXT (fragp->fr_subtype),
14956                     small, ext, &insn, &use_extend, &extend);
14957
14958       if (use_extend)
14959         {
14960           md_number_to_chars ((char *) buf, 0xf000 | extend, 2);
14961           fragp->fr_fix += 2;
14962           buf += 2;
14963         }
14964
14965       md_number_to_chars ((char *) buf, insn, 2);
14966       fragp->fr_fix += 2;
14967       buf += 2;
14968     }
14969   else
14970     {
14971       int first, second;
14972       fixS *fixp;
14973
14974       first = RELAX_FIRST (fragp->fr_subtype);
14975       second = RELAX_SECOND (fragp->fr_subtype);
14976       fixp = (fixS *) fragp->fr_opcode;
14977
14978       /* Possibly emit a warning if we've chosen the longer option.  */
14979       if (((fragp->fr_subtype & RELAX_USE_SECOND) != 0)
14980           == ((fragp->fr_subtype & RELAX_SECOND_LONGER) != 0))
14981         {
14982           const char *msg = macro_warning (fragp->fr_subtype);
14983           if (msg != 0)
14984             as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
14985         }
14986
14987       /* Go through all the fixups for the first sequence.  Disable them
14988          (by marking them as done) if we're going to use the second
14989          sequence instead.  */
14990       while (fixp
14991              && fixp->fx_frag == fragp
14992              && fixp->fx_where < fragp->fr_fix - second)
14993         {
14994           if (fragp->fr_subtype & RELAX_USE_SECOND)
14995             fixp->fx_done = 1;
14996           fixp = fixp->fx_next;
14997         }
14998
14999       /* Go through the fixups for the second sequence.  Disable them if
15000          we're going to use the first sequence, otherwise adjust their
15001          addresses to account for the relaxation.  */
15002       while (fixp && fixp->fx_frag == fragp)
15003         {
15004           if (fragp->fr_subtype & RELAX_USE_SECOND)
15005             fixp->fx_where -= first;
15006           else
15007             fixp->fx_done = 1;
15008           fixp = fixp->fx_next;
15009         }
15010
15011       /* Now modify the frag contents.  */
15012       if (fragp->fr_subtype & RELAX_USE_SECOND)
15013         {
15014           char *start;
15015
15016           start = fragp->fr_literal + fragp->fr_fix - first - second;
15017           memmove (start, start + first, second);
15018           fragp->fr_fix -= first;
15019         }
15020       else
15021         fragp->fr_fix -= second;
15022     }
15023 }
15024
15025 #ifdef OBJ_ELF
15026
15027 /* This function is called after the relocs have been generated.
15028    We've been storing mips16 text labels as odd.  Here we convert them
15029    back to even for the convenience of the debugger.  */
15030
15031 void
15032 mips_frob_file_after_relocs (void)
15033 {
15034   asymbol **syms;
15035   unsigned int count, i;
15036
15037   if (!IS_ELF)
15038     return;
15039
15040   syms = bfd_get_outsymbols (stdoutput);
15041   count = bfd_get_symcount (stdoutput);
15042   for (i = 0; i < count; i++, syms++)
15043     {
15044       if (ELF_ST_IS_MIPS16 (elf_symbol (*syms)->internal_elf_sym.st_other)
15045           && ((*syms)->value & 1) != 0)
15046         {
15047           (*syms)->value &= ~1;
15048           /* If the symbol has an odd size, it was probably computed
15049              incorrectly, so adjust that as well.  */
15050           if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
15051             ++elf_symbol (*syms)->internal_elf_sym.st_size;
15052         }
15053     }
15054 }
15055
15056 #endif
15057
15058 /* This function is called whenever a label is defined, including fake
15059    labels instantiated off the dot special symbol.  It is used when
15060    handling branch delays; if a branch has a label, we assume we cannot
15061    move it.  This also bumps the value of the symbol by 1 in compressed
15062    code.  */
15063
15064 void
15065 mips_record_label (symbolS *sym)
15066 {
15067   segment_info_type *si = seg_info (now_seg);
15068   struct insn_label_list *l;
15069
15070   if (free_insn_labels == NULL)
15071     l = (struct insn_label_list *) xmalloc (sizeof *l);
15072   else
15073     {
15074       l = free_insn_labels;
15075       free_insn_labels = l->next;
15076     }
15077
15078   l->label = sym;
15079   l->next = si->label_list;
15080   si->label_list = l;
15081 }
15082
15083 /* This function is called as tc_frob_label() whenever a label is defined
15084    and adds a DWARF-2 record we only want for true labels.  */
15085
15086 void
15087 mips_define_label (symbolS *sym)
15088 {
15089   mips_record_label (sym);
15090 #ifdef OBJ_ELF
15091   dwarf2_emit_label (sym);
15092 #endif
15093 }
15094 \f
15095 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
15096
15097 /* Some special processing for a MIPS ELF file.  */
15098
15099 void
15100 mips_elf_final_processing (void)
15101 {
15102   /* Write out the register information.  */
15103   if (mips_abi != N64_ABI)
15104     {
15105       Elf32_RegInfo s;
15106
15107       s.ri_gprmask = mips_gprmask;
15108       s.ri_cprmask[0] = mips_cprmask[0];
15109       s.ri_cprmask[1] = mips_cprmask[1];
15110       s.ri_cprmask[2] = mips_cprmask[2];
15111       s.ri_cprmask[3] = mips_cprmask[3];
15112       /* The gp_value field is set by the MIPS ELF backend.  */
15113
15114       bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
15115                                        ((Elf32_External_RegInfo *)
15116                                         mips_regmask_frag));
15117     }
15118   else
15119     {
15120       Elf64_Internal_RegInfo s;
15121
15122       s.ri_gprmask = mips_gprmask;
15123       s.ri_pad = 0;
15124       s.ri_cprmask[0] = mips_cprmask[0];
15125       s.ri_cprmask[1] = mips_cprmask[1];
15126       s.ri_cprmask[2] = mips_cprmask[2];
15127       s.ri_cprmask[3] = mips_cprmask[3];
15128       /* The gp_value field is set by the MIPS ELF backend.  */
15129
15130       bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
15131                                        ((Elf64_External_RegInfo *)
15132                                         mips_regmask_frag));
15133     }
15134
15135   /* Set the MIPS ELF flag bits.  FIXME: There should probably be some
15136      sort of BFD interface for this.  */
15137   if (mips_any_noreorder)
15138     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
15139   if (mips_pic != NO_PIC)
15140     {
15141     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
15142       elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
15143     }
15144   if (mips_abicalls)
15145     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
15146
15147   /* Set MIPS ELF flags for ASEs.  */
15148   /* We may need to define a new flag for DSP ASE, and set this flag when
15149      file_ase_dsp is true.  */
15150   /* Same for DSP R2.  */
15151   /* We may need to define a new flag for MT ASE, and set this flag when
15152      file_ase_mt is true.  */
15153   if (file_ase_mips16)
15154     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
15155 #if 0 /* XXX FIXME */
15156   if (file_ase_mips3d)
15157     elf_elfheader (stdoutput)->e_flags |= ???;
15158 #endif
15159   if (file_ase_mdmx)
15160     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
15161
15162   /* Set the MIPS ELF ABI flags.  */
15163   if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
15164     elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
15165   else if (mips_abi == O64_ABI)
15166     elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
15167   else if (mips_abi == EABI_ABI)
15168     {
15169       if (!file_mips_gp32)
15170         elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
15171       else
15172         elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
15173     }
15174   else if (mips_abi == N32_ABI)
15175     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
15176
15177   /* Nothing to do for N64_ABI.  */
15178
15179   if (mips_32bitmode)
15180     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
15181
15182 #if 0 /* XXX FIXME */
15183   /* 32 bit code with 64 bit FP registers.  */
15184   if (!file_mips_fp32 && ABI_NEEDS_32BIT_REGS (mips_abi))
15185     elf_elfheader (stdoutput)->e_flags |= ???;
15186 #endif
15187 }
15188
15189 #endif /* OBJ_ELF || OBJ_MAYBE_ELF */
15190 \f
15191 typedef struct proc {
15192   symbolS *func_sym;
15193   symbolS *func_end_sym;
15194   unsigned long reg_mask;
15195   unsigned long reg_offset;
15196   unsigned long fpreg_mask;
15197   unsigned long fpreg_offset;
15198   unsigned long frame_offset;
15199   unsigned long frame_reg;
15200   unsigned long pc_reg;
15201 } procS;
15202
15203 static procS cur_proc;
15204 static procS *cur_proc_ptr;
15205 static int numprocs;
15206
15207 /* Implement NOP_OPCODE.  We encode a MIPS16 nop as "1" and a normal
15208    nop as "0".  */
15209
15210 char
15211 mips_nop_opcode (void)
15212 {
15213   return seg_info (now_seg)->tc_segment_info_data.mips16;
15214 }
15215
15216 /* Fill in an rs_align_code fragment.  This only needs to do something
15217    for MIPS16 code, where 0 is not a nop.  */
15218
15219 void
15220 mips_handle_align (fragS *fragp)
15221 {
15222   char *p;
15223   int bytes, size, excess;
15224   valueT opcode;
15225
15226   if (fragp->fr_type != rs_align_code)
15227     return;
15228
15229   p = fragp->fr_literal + fragp->fr_fix;
15230   if (*p)
15231     {
15232       opcode = mips16_nop_insn.insn_opcode;
15233       size = 2;
15234     }
15235   else
15236     {
15237       opcode = nop_insn.insn_opcode;
15238       size = 4;
15239     }
15240
15241   bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
15242   excess = bytes % size;
15243   if (excess != 0)
15244     {
15245       /* If we're not inserting a whole number of instructions,
15246          pad the end of the fixed part of the frag with zeros.  */
15247       memset (p, 0, excess);
15248       p += excess;
15249       fragp->fr_fix += excess;
15250     }
15251
15252   md_number_to_chars (p, opcode, size);
15253   fragp->fr_var = size;
15254 }
15255
15256 static void
15257 md_obj_begin (void)
15258 {
15259 }
15260
15261 static void
15262 md_obj_end (void)
15263 {
15264   /* Check for premature end, nesting errors, etc.  */
15265   if (cur_proc_ptr)
15266     as_warn (_("missing .end at end of assembly"));
15267 }
15268
15269 static long
15270 get_number (void)
15271 {
15272   int negative = 0;
15273   long val = 0;
15274
15275   if (*input_line_pointer == '-')
15276     {
15277       ++input_line_pointer;
15278       negative = 1;
15279     }
15280   if (!ISDIGIT (*input_line_pointer))
15281     as_bad (_("expected simple number"));
15282   if (input_line_pointer[0] == '0')
15283     {
15284       if (input_line_pointer[1] == 'x')
15285         {
15286           input_line_pointer += 2;
15287           while (ISXDIGIT (*input_line_pointer))
15288             {
15289               val <<= 4;
15290               val |= hex_value (*input_line_pointer++);
15291             }
15292           return negative ? -val : val;
15293         }
15294       else
15295         {
15296           ++input_line_pointer;
15297           while (ISDIGIT (*input_line_pointer))
15298             {
15299               val <<= 3;
15300               val |= *input_line_pointer++ - '0';
15301             }
15302           return negative ? -val : val;
15303         }
15304     }
15305   if (!ISDIGIT (*input_line_pointer))
15306     {
15307       printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
15308               *input_line_pointer, *input_line_pointer);
15309       as_warn (_("invalid number"));
15310       return -1;
15311     }
15312   while (ISDIGIT (*input_line_pointer))
15313     {
15314       val *= 10;
15315       val += *input_line_pointer++ - '0';
15316     }
15317   return negative ? -val : val;
15318 }
15319
15320 /* The .file directive; just like the usual .file directive, but there
15321    is an initial number which is the ECOFF file index.  In the non-ECOFF
15322    case .file implies DWARF-2.  */
15323
15324 static void
15325 s_mips_file (int x ATTRIBUTE_UNUSED)
15326 {
15327   static int first_file_directive = 0;
15328
15329   if (ECOFF_DEBUGGING)
15330     {
15331       get_number ();
15332       s_app_file (0);
15333     }
15334   else
15335     {
15336       char *filename;
15337
15338       filename = dwarf2_directive_file (0);
15339
15340       /* Versions of GCC up to 3.1 start files with a ".file"
15341          directive even for stabs output.  Make sure that this
15342          ".file" is handled.  Note that you need a version of GCC
15343          after 3.1 in order to support DWARF-2 on MIPS.  */
15344       if (filename != NULL && ! first_file_directive)
15345         {
15346           (void) new_logical_line (filename, -1);
15347           s_app_file_string (filename, 0);
15348         }
15349       first_file_directive = 1;
15350     }
15351 }
15352
15353 /* The .loc directive, implying DWARF-2.  */
15354
15355 static void
15356 s_mips_loc (int x ATTRIBUTE_UNUSED)
15357 {
15358   if (!ECOFF_DEBUGGING)
15359     dwarf2_directive_loc (0);
15360 }
15361
15362 /* The .end directive.  */
15363
15364 static void
15365 s_mips_end (int x ATTRIBUTE_UNUSED)
15366 {
15367   symbolS *p;
15368
15369   /* Following functions need their own .frame and .cprestore directives.  */
15370   mips_frame_reg_valid = 0;
15371   mips_cprestore_valid = 0;
15372
15373   if (!is_end_of_line[(unsigned char) *input_line_pointer])
15374     {
15375       p = get_symbol ();
15376       demand_empty_rest_of_line ();
15377     }
15378   else
15379     p = NULL;
15380
15381   if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
15382     as_warn (_(".end not in text section"));
15383
15384   if (!cur_proc_ptr)
15385     {
15386       as_warn (_(".end directive without a preceding .ent directive."));
15387       demand_empty_rest_of_line ();
15388       return;
15389     }
15390
15391   if (p != NULL)
15392     {
15393       gas_assert (S_GET_NAME (p));
15394       if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
15395         as_warn (_(".end symbol does not match .ent symbol."));
15396
15397       if (debug_type == DEBUG_STABS)
15398         stabs_generate_asm_endfunc (S_GET_NAME (p),
15399                                     S_GET_NAME (p));
15400     }
15401   else
15402     as_warn (_(".end directive missing or unknown symbol"));
15403
15404 #ifdef OBJ_ELF
15405   /* Create an expression to calculate the size of the function.  */
15406   if (p && cur_proc_ptr)
15407     {
15408       OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
15409       expressionS *exp = xmalloc (sizeof (expressionS));
15410
15411       obj->size = exp;
15412       exp->X_op = O_subtract;
15413       exp->X_add_symbol = symbol_temp_new_now ();
15414       exp->X_op_symbol = p;
15415       exp->X_add_number = 0;
15416
15417       cur_proc_ptr->func_end_sym = exp->X_add_symbol;
15418     }
15419
15420   /* Generate a .pdr section.  */
15421   if (IS_ELF && !ECOFF_DEBUGGING && mips_flag_pdr)
15422     {
15423       segT saved_seg = now_seg;
15424       subsegT saved_subseg = now_subseg;
15425       expressionS exp;
15426       char *fragp;
15427
15428 #ifdef md_flush_pending_output
15429       md_flush_pending_output ();
15430 #endif
15431
15432       gas_assert (pdr_seg);
15433       subseg_set (pdr_seg, 0);
15434
15435       /* Write the symbol.  */
15436       exp.X_op = O_symbol;
15437       exp.X_add_symbol = p;
15438       exp.X_add_number = 0;
15439       emit_expr (&exp, 4);
15440
15441       fragp = frag_more (7 * 4);
15442
15443       md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
15444       md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
15445       md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
15446       md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
15447       md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
15448       md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
15449       md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
15450
15451       subseg_set (saved_seg, saved_subseg);
15452     }
15453 #endif /* OBJ_ELF */
15454
15455   cur_proc_ptr = NULL;
15456 }
15457
15458 /* The .aent and .ent directives.  */
15459
15460 static void
15461 s_mips_ent (int aent)
15462 {
15463   symbolS *symbolP;
15464
15465   symbolP = get_symbol ();
15466   if (*input_line_pointer == ',')
15467     ++input_line_pointer;
15468   SKIP_WHITESPACE ();
15469   if (ISDIGIT (*input_line_pointer)
15470       || *input_line_pointer == '-')
15471     get_number ();
15472
15473   if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
15474     as_warn (_(".ent or .aent not in text section."));
15475
15476   if (!aent && cur_proc_ptr)
15477     as_warn (_("missing .end"));
15478
15479   if (!aent)
15480     {
15481       /* This function needs its own .frame and .cprestore directives.  */
15482       mips_frame_reg_valid = 0;
15483       mips_cprestore_valid = 0;
15484
15485       cur_proc_ptr = &cur_proc;
15486       memset (cur_proc_ptr, '\0', sizeof (procS));
15487
15488       cur_proc_ptr->func_sym = symbolP;
15489
15490       ++numprocs;
15491
15492       if (debug_type == DEBUG_STABS)
15493         stabs_generate_asm_func (S_GET_NAME (symbolP),
15494                                  S_GET_NAME (symbolP));
15495     }
15496
15497   symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
15498
15499   demand_empty_rest_of_line ();
15500 }
15501
15502 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
15503    then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
15504    s_mips_frame is used so that we can set the PDR information correctly.
15505    We can't use the ecoff routines because they make reference to the ecoff
15506    symbol table (in the mdebug section).  */
15507
15508 static void
15509 s_mips_frame (int ignore ATTRIBUTE_UNUSED)
15510 {
15511 #ifdef OBJ_ELF
15512   if (IS_ELF && !ECOFF_DEBUGGING)
15513     {
15514       long val;
15515
15516       if (cur_proc_ptr == (procS *) NULL)
15517         {
15518           as_warn (_(".frame outside of .ent"));
15519           demand_empty_rest_of_line ();
15520           return;
15521         }
15522
15523       cur_proc_ptr->frame_reg = tc_get_register (1);
15524
15525       SKIP_WHITESPACE ();
15526       if (*input_line_pointer++ != ','
15527           || get_absolute_expression_and_terminator (&val) != ',')
15528         {
15529           as_warn (_("Bad .frame directive"));
15530           --input_line_pointer;
15531           demand_empty_rest_of_line ();
15532           return;
15533         }
15534
15535       cur_proc_ptr->frame_offset = val;
15536       cur_proc_ptr->pc_reg = tc_get_register (0);
15537
15538       demand_empty_rest_of_line ();
15539     }
15540   else
15541 #endif /* OBJ_ELF */
15542     s_ignore (ignore);
15543 }
15544
15545 /* The .fmask and .mask directives. If the mdebug section is present
15546    (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
15547    embedded targets, s_mips_mask is used so that we can set the PDR
15548    information correctly. We can't use the ecoff routines because they
15549    make reference to the ecoff symbol table (in the mdebug section).  */
15550
15551 static void
15552 s_mips_mask (int reg_type)
15553 {
15554 #ifdef OBJ_ELF
15555   if (IS_ELF && !ECOFF_DEBUGGING)
15556     {
15557       long mask, off;
15558
15559       if (cur_proc_ptr == (procS *) NULL)
15560         {
15561           as_warn (_(".mask/.fmask outside of .ent"));
15562           demand_empty_rest_of_line ();
15563           return;
15564         }
15565
15566       if (get_absolute_expression_and_terminator (&mask) != ',')
15567         {
15568           as_warn (_("Bad .mask/.fmask directive"));
15569           --input_line_pointer;
15570           demand_empty_rest_of_line ();
15571           return;
15572         }
15573
15574       off = get_absolute_expression ();
15575
15576       if (reg_type == 'F')
15577         {
15578           cur_proc_ptr->fpreg_mask = mask;
15579           cur_proc_ptr->fpreg_offset = off;
15580         }
15581       else
15582         {
15583           cur_proc_ptr->reg_mask = mask;
15584           cur_proc_ptr->reg_offset = off;
15585         }
15586
15587       demand_empty_rest_of_line ();
15588     }
15589   else
15590 #endif /* OBJ_ELF */
15591     s_ignore (reg_type);
15592 }
15593
15594 /* A table describing all the processors gas knows about.  Names are
15595    matched in the order listed.
15596
15597    To ease comparison, please keep this table in the same order as
15598    gcc's mips_cpu_info_table[].  */
15599 static const struct mips_cpu_info mips_cpu_info_table[] =
15600 {
15601   /* Entries for generic ISAs */
15602   { "mips1",          MIPS_CPU_IS_ISA,          ISA_MIPS1,      CPU_R3000 },
15603   { "mips2",          MIPS_CPU_IS_ISA,          ISA_MIPS2,      CPU_R6000 },
15604   { "mips3",          MIPS_CPU_IS_ISA,          ISA_MIPS3,      CPU_R4000 },
15605   { "mips4",          MIPS_CPU_IS_ISA,          ISA_MIPS4,      CPU_R8000 },
15606   { "mips5",          MIPS_CPU_IS_ISA,          ISA_MIPS5,      CPU_MIPS5 },
15607   { "mips32",         MIPS_CPU_IS_ISA,          ISA_MIPS32,     CPU_MIPS32 },
15608   { "mips32r2",       MIPS_CPU_IS_ISA,          ISA_MIPS32R2,   CPU_MIPS32R2 },
15609   { "mips64",         MIPS_CPU_IS_ISA,          ISA_MIPS64,     CPU_MIPS64 },
15610   { "mips64r2",       MIPS_CPU_IS_ISA,          ISA_MIPS64R2,   CPU_MIPS64R2 },
15611
15612   /* MIPS I */
15613   { "r3000",          0,                        ISA_MIPS1,      CPU_R3000 },
15614   { "r2000",          0,                        ISA_MIPS1,      CPU_R3000 },
15615   { "r3900",          0,                        ISA_MIPS1,      CPU_R3900 },
15616
15617   /* MIPS II */
15618   { "r6000",          0,                        ISA_MIPS2,      CPU_R6000 },
15619
15620   /* MIPS III */
15621   { "r4000",          0,                        ISA_MIPS3,      CPU_R4000 },
15622   { "r4010",          0,                        ISA_MIPS2,      CPU_R4010 },
15623   { "vr4100",         0,                        ISA_MIPS3,      CPU_VR4100 },
15624   { "vr4111",         0,                        ISA_MIPS3,      CPU_R4111 },
15625   { "vr4120",         0,                        ISA_MIPS3,      CPU_VR4120 },
15626   { "vr4130",         0,                        ISA_MIPS3,      CPU_VR4120 },
15627   { "vr4181",         0,                        ISA_MIPS3,      CPU_R4111 },
15628   { "vr4300",         0,                        ISA_MIPS3,      CPU_R4300 },
15629   { "r4400",          0,                        ISA_MIPS3,      CPU_R4400 },
15630   { "r4600",          0,                        ISA_MIPS3,      CPU_R4600 },
15631   { "orion",          0,                        ISA_MIPS3,      CPU_R4600 },
15632   { "r4650",          0,                        ISA_MIPS3,      CPU_R4650 },
15633   /* ST Microelectronics Loongson 2E and 2F cores */
15634   { "loongson2e",     0,                        ISA_MIPS3,   CPU_LOONGSON_2E },
15635   { "loongson2f",     0,                        ISA_MIPS3,   CPU_LOONGSON_2F },
15636
15637   /* MIPS IV */
15638   { "r8000",          0,                        ISA_MIPS4,      CPU_R8000 },
15639   { "r10000",         0,                        ISA_MIPS4,      CPU_R10000 },
15640   { "r12000",         0,                        ISA_MIPS4,      CPU_R12000 },
15641   { "r14000",         0,                        ISA_MIPS4,      CPU_R14000 },
15642   { "r16000",         0,                        ISA_MIPS4,      CPU_R16000 },
15643   { "vr5000",         0,                        ISA_MIPS4,      CPU_R5000 },
15644   { "vr5400",         0,                        ISA_MIPS4,      CPU_VR5400 },
15645   { "vr5500",         0,                        ISA_MIPS4,      CPU_VR5500 },
15646   { "rm5200",         0,                        ISA_MIPS4,      CPU_R5000 },
15647   { "rm5230",         0,                        ISA_MIPS4,      CPU_R5000 },
15648   { "rm5231",         0,                        ISA_MIPS4,      CPU_R5000 },
15649   { "rm5261",         0,                        ISA_MIPS4,      CPU_R5000 },
15650   { "rm5721",         0,                        ISA_MIPS4,      CPU_R5000 },
15651   { "rm7000",         0,                        ISA_MIPS4,      CPU_RM7000 },
15652   { "rm9000",         0,                        ISA_MIPS4,      CPU_RM9000 },
15653
15654   /* MIPS 32 */
15655   { "4kc",            0,                        ISA_MIPS32,     CPU_MIPS32 },
15656   { "4km",            0,                        ISA_MIPS32,     CPU_MIPS32 },
15657   { "4kp",            0,                        ISA_MIPS32,     CPU_MIPS32 },
15658   { "4ksc",           MIPS_CPU_ASE_SMARTMIPS,   ISA_MIPS32,     CPU_MIPS32 },
15659
15660   /* MIPS 32 Release 2 */
15661   { "4kec",           0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15662   { "4kem",           0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15663   { "4kep",           0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15664   { "4ksd",           MIPS_CPU_ASE_SMARTMIPS,   ISA_MIPS32R2,   CPU_MIPS32R2 },
15665   { "m4k",            0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15666   { "m4kp",           0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15667   { "24kc",           0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15668   { "24kf2_1",        0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15669   { "24kf",           0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15670   { "24kf1_1",        0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15671   /* Deprecated forms of the above.  */
15672   { "24kfx",          0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15673   { "24kx",           0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15674   /* 24KE is a 24K with DSP ASE, other ASEs are optional.  */
15675   { "24kec",          MIPS_CPU_ASE_DSP,         ISA_MIPS32R2,   CPU_MIPS32R2 },
15676   { "24kef2_1",       MIPS_CPU_ASE_DSP,         ISA_MIPS32R2,   CPU_MIPS32R2 },
15677   { "24kef",          MIPS_CPU_ASE_DSP,         ISA_MIPS32R2,   CPU_MIPS32R2 },
15678   { "24kef1_1",       MIPS_CPU_ASE_DSP,         ISA_MIPS32R2,   CPU_MIPS32R2 },
15679   /* Deprecated forms of the above.  */
15680   { "24kefx",         MIPS_CPU_ASE_DSP,         ISA_MIPS32R2,   CPU_MIPS32R2 },
15681   { "24kex",          MIPS_CPU_ASE_DSP,         ISA_MIPS32R2,   CPU_MIPS32R2 },
15682   /* 34K is a 24K with DSP and MT ASE, other ASEs are optional.  */
15683   { "34kc",           MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15684                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15685   { "34kf2_1",        MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15686                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15687   { "34kf",           MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15688                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15689   { "34kf1_1",        MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15690                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15691   /* Deprecated forms of the above.  */
15692   { "34kfx",          MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15693                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15694   { "34kx",           MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15695                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15696   /* 74K with DSP and DSPR2 ASE, other ASEs are optional.  */
15697   { "74kc",           MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15698                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15699   { "74kf2_1",        MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15700                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15701   { "74kf",           MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15702                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15703   { "74kf1_1",        MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15704                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15705   { "74kf3_2",        MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15706                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15707   /* Deprecated forms of the above.  */
15708   { "74kfx",          MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15709                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15710   { "74kx",           MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15711                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15712   /* 1004K cores are multiprocessor versions of the 34K.  */
15713   { "1004kc",         MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15714                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15715   { "1004kf2_1",      MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15716                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15717   { "1004kf",         MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15718                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15719   { "1004kf1_1",      MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15720                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15721
15722   /* MIPS 64 */
15723   { "5kc",            0,                        ISA_MIPS64,     CPU_MIPS64 },
15724   { "5kf",            0,                        ISA_MIPS64,     CPU_MIPS64 },
15725   { "20kc",           MIPS_CPU_ASE_MIPS3D,      ISA_MIPS64,     CPU_MIPS64 },
15726   { "25kf",           MIPS_CPU_ASE_MIPS3D,      ISA_MIPS64,     CPU_MIPS64 },
15727
15728   /* Broadcom SB-1 CPU core */
15729   { "sb1",            MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
15730                                                 ISA_MIPS64,     CPU_SB1 },
15731   /* Broadcom SB-1A CPU core */
15732   { "sb1a",           MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
15733                                                 ISA_MIPS64,     CPU_SB1 },
15734   
15735   { "loongson3a",     0,                        ISA_MIPS64,     CPU_LOONGSON_3A },
15736
15737   /* MIPS 64 Release 2 */
15738
15739   /* Cavium Networks Octeon CPU core */
15740   { "octeon",         0,      ISA_MIPS64R2,   CPU_OCTEON },
15741
15742   /* RMI Xlr */
15743   { "xlr",            0,      ISA_MIPS64,     CPU_XLR },
15744
15745   /* End marker */
15746   { NULL, 0, 0, 0 }
15747 };
15748
15749
15750 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
15751    with a final "000" replaced by "k".  Ignore case.
15752
15753    Note: this function is shared between GCC and GAS.  */
15754
15755 static bfd_boolean
15756 mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
15757 {
15758   while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
15759     given++, canonical++;
15760
15761   return ((*given == 0 && *canonical == 0)
15762           || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
15763 }
15764
15765
15766 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
15767    CPU name.  We've traditionally allowed a lot of variation here.
15768
15769    Note: this function is shared between GCC and GAS.  */
15770
15771 static bfd_boolean
15772 mips_matching_cpu_name_p (const char *canonical, const char *given)
15773 {
15774   /* First see if the name matches exactly, or with a final "000"
15775      turned into "k".  */
15776   if (mips_strict_matching_cpu_name_p (canonical, given))
15777     return TRUE;
15778
15779   /* If not, try comparing based on numerical designation alone.
15780      See if GIVEN is an unadorned number, or 'r' followed by a number.  */
15781   if (TOLOWER (*given) == 'r')
15782     given++;
15783   if (!ISDIGIT (*given))
15784     return FALSE;
15785
15786   /* Skip over some well-known prefixes in the canonical name,
15787      hoping to find a number there too.  */
15788   if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
15789     canonical += 2;
15790   else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
15791     canonical += 2;
15792   else if (TOLOWER (canonical[0]) == 'r')
15793     canonical += 1;
15794
15795   return mips_strict_matching_cpu_name_p (canonical, given);
15796 }
15797
15798
15799 /* Parse an option that takes the name of a processor as its argument.
15800    OPTION is the name of the option and CPU_STRING is the argument.
15801    Return the corresponding processor enumeration if the CPU_STRING is
15802    recognized, otherwise report an error and return null.
15803
15804    A similar function exists in GCC.  */
15805
15806 static const struct mips_cpu_info *
15807 mips_parse_cpu (const char *option, const char *cpu_string)
15808 {
15809   const struct mips_cpu_info *p;
15810
15811   /* 'from-abi' selects the most compatible architecture for the given
15812      ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs.  For the
15813      EABIs, we have to decide whether we're using the 32-bit or 64-bit
15814      version.  Look first at the -mgp options, if given, otherwise base
15815      the choice on MIPS_DEFAULT_64BIT.
15816
15817      Treat NO_ABI like the EABIs.  One reason to do this is that the
15818      plain 'mips' and 'mips64' configs have 'from-abi' as their default
15819      architecture.  This code picks MIPS I for 'mips' and MIPS III for
15820      'mips64', just as we did in the days before 'from-abi'.  */
15821   if (strcasecmp (cpu_string, "from-abi") == 0)
15822     {
15823       if (ABI_NEEDS_32BIT_REGS (mips_abi))
15824         return mips_cpu_info_from_isa (ISA_MIPS1);
15825
15826       if (ABI_NEEDS_64BIT_REGS (mips_abi))
15827         return mips_cpu_info_from_isa (ISA_MIPS3);
15828
15829       if (file_mips_gp32 >= 0)
15830         return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
15831
15832       return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
15833                                      ? ISA_MIPS3
15834                                      : ISA_MIPS1);
15835     }
15836
15837   /* 'default' has traditionally been a no-op.  Probably not very useful.  */
15838   if (strcasecmp (cpu_string, "default") == 0)
15839     return 0;
15840
15841   for (p = mips_cpu_info_table; p->name != 0; p++)
15842     if (mips_matching_cpu_name_p (p->name, cpu_string))
15843       return p;
15844
15845   as_bad (_("Bad value (%s) for %s"), cpu_string, option);
15846   return 0;
15847 }
15848
15849 /* Return the canonical processor information for ISA (a member of the
15850    ISA_MIPS* enumeration).  */
15851
15852 static const struct mips_cpu_info *
15853 mips_cpu_info_from_isa (int isa)
15854 {
15855   int i;
15856
15857   for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
15858     if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA)
15859         && isa == mips_cpu_info_table[i].isa)
15860       return (&mips_cpu_info_table[i]);
15861
15862   return NULL;
15863 }
15864
15865 static const struct mips_cpu_info *
15866 mips_cpu_info_from_arch (int arch)
15867 {
15868   int i;
15869
15870   for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
15871     if (arch == mips_cpu_info_table[i].cpu)
15872       return (&mips_cpu_info_table[i]);
15873
15874   return NULL;
15875 }
15876 \f
15877 static void
15878 show (FILE *stream, const char *string, int *col_p, int *first_p)
15879 {
15880   if (*first_p)
15881     {
15882       fprintf (stream, "%24s", "");
15883       *col_p = 24;
15884     }
15885   else
15886     {
15887       fprintf (stream, ", ");
15888       *col_p += 2;
15889     }
15890
15891   if (*col_p + strlen (string) > 72)
15892     {
15893       fprintf (stream, "\n%24s", "");
15894       *col_p = 24;
15895     }
15896
15897   fprintf (stream, "%s", string);
15898   *col_p += strlen (string);
15899
15900   *first_p = 0;
15901 }
15902
15903 void
15904 md_show_usage (FILE *stream)
15905 {
15906   int column, first;
15907   size_t i;
15908
15909   fprintf (stream, _("\
15910 MIPS options:\n\
15911 -EB                     generate big endian output\n\
15912 -EL                     generate little endian output\n\
15913 -g, -g2                 do not remove unneeded NOPs or swap branches\n\
15914 -G NUM                  allow referencing objects up to NUM bytes\n\
15915                         implicitly with the gp register [default 8]\n"));
15916   fprintf (stream, _("\
15917 -mips1                  generate MIPS ISA I instructions\n\
15918 -mips2                  generate MIPS ISA II instructions\n\
15919 -mips3                  generate MIPS ISA III instructions\n\
15920 -mips4                  generate MIPS ISA IV instructions\n\
15921 -mips5                  generate MIPS ISA V instructions\n\
15922 -mips32                 generate MIPS32 ISA instructions\n\
15923 -mips32r2               generate MIPS32 release 2 ISA instructions\n\
15924 -mips64                 generate MIPS64 ISA instructions\n\
15925 -mips64r2               generate MIPS64 release 2 ISA instructions\n\
15926 -march=CPU/-mtune=CPU   generate code/schedule for CPU, where CPU is one of:\n"));
15927
15928   first = 1;
15929
15930   for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
15931     show (stream, mips_cpu_info_table[i].name, &column, &first);
15932   show (stream, "from-abi", &column, &first);
15933   fputc ('\n', stream);
15934
15935   fprintf (stream, _("\
15936 -mCPU                   equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
15937 -no-mCPU                don't generate code specific to CPU.\n\
15938                         For -mCPU and -no-mCPU, CPU must be one of:\n"));
15939
15940   first = 1;
15941
15942   show (stream, "3900", &column, &first);
15943   show (stream, "4010", &column, &first);
15944   show (stream, "4100", &column, &first);
15945   show (stream, "4650", &column, &first);
15946   fputc ('\n', stream);
15947
15948   fprintf (stream, _("\
15949 -mips16                 generate mips16 instructions\n\
15950 -no-mips16              do not generate mips16 instructions\n"));
15951   fprintf (stream, _("\
15952 -msmartmips             generate smartmips instructions\n\
15953 -mno-smartmips          do not generate smartmips instructions\n"));  
15954   fprintf (stream, _("\
15955 -mdsp                   generate DSP instructions\n\
15956 -mno-dsp                do not generate DSP instructions\n"));
15957   fprintf (stream, _("\
15958 -mdspr2                 generate DSP R2 instructions\n\
15959 -mno-dspr2              do not generate DSP R2 instructions\n"));
15960   fprintf (stream, _("\
15961 -mmt                    generate MT instructions\n\
15962 -mno-mt                 do not generate MT instructions\n"));
15963   fprintf (stream, _("\
15964 -mfix-loongson2f-jump   work around Loongson2F JUMP instructions\n\
15965 -mfix-loongson2f-nop    work around Loongson2F NOP errata\n\
15966 -mfix-vr4120            work around certain VR4120 errata\n\
15967 -mfix-vr4130            work around VR4130 mflo/mfhi errata\n\
15968 -mfix-24k               insert a nop after ERET and DERET instructions\n\
15969 -mfix-cn63xxp1          work around CN63XXP1 PREF errata\n\
15970 -mgp32                  use 32-bit GPRs, regardless of the chosen ISA\n\
15971 -mfp32                  use 32-bit FPRs, regardless of the chosen ISA\n\
15972 -msym32                 assume all symbols have 32-bit values\n\
15973 -O0                     remove unneeded NOPs, do not swap branches\n\
15974 -O                      remove unneeded NOPs and swap branches\n\
15975 --trap, --no-break      trap exception on div by 0 and mult overflow\n\
15976 --break, --no-trap      break exception on div by 0 and mult overflow\n"));
15977   fprintf (stream, _("\
15978 -mhard-float            allow floating-point instructions\n\
15979 -msoft-float            do not allow floating-point instructions\n\
15980 -msingle-float          only allow 32-bit floating-point operations\n\
15981 -mdouble-float          allow 32-bit and 64-bit floating-point operations\n\
15982 --[no-]construct-floats [dis]allow floating point values to be constructed\n"
15983                      ));
15984 #ifdef OBJ_ELF
15985   fprintf (stream, _("\
15986 -KPIC, -call_shared     generate SVR4 position independent code\n\
15987 -call_nonpic            generate non-PIC code that can operate with DSOs\n\
15988 -mvxworks-pic           generate VxWorks position independent code\n\
15989 -non_shared             do not generate code that can operate with DSOs\n\
15990 -xgot                   assume a 32 bit GOT\n\
15991 -mpdr, -mno-pdr         enable/disable creation of .pdr sections\n\
15992 -mshared, -mno-shared   disable/enable .cpload optimization for\n\
15993                         position dependent (non shared) code\n\
15994 -mabi=ABI               create ABI conformant object file for:\n"));
15995
15996   first = 1;
15997
15998   show (stream, "32", &column, &first);
15999   show (stream, "o64", &column, &first);
16000   show (stream, "n32", &column, &first);
16001   show (stream, "64", &column, &first);
16002   show (stream, "eabi", &column, &first);
16003
16004   fputc ('\n', stream);
16005
16006   fprintf (stream, _("\
16007 -32                     create o32 ABI object file (default)\n\
16008 -n32                    create n32 ABI object file\n\
16009 -64                     create 64 ABI object file\n"));
16010 #endif
16011 }
16012
16013 #ifdef TE_IRIX
16014 enum dwarf2_format
16015 mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
16016 {
16017   if (HAVE_64BIT_SYMBOLS)
16018     return dwarf2_format_64bit_irix;
16019   else
16020     return dwarf2_format_32bit;
16021 }
16022 #endif
16023
16024 int
16025 mips_dwarf2_addr_size (void)
16026 {
16027   if (HAVE_64BIT_OBJECTS)
16028     return 8;
16029   else
16030     return 4;
16031 }
16032
16033 /* Standard calling conventions leave the CFA at SP on entry.  */
16034 void
16035 mips_cfi_frame_initial_instructions (void)
16036 {
16037   cfi_add_CFA_def_cfa_register (SP);
16038 }
16039
16040 int
16041 tc_mips_regname_to_dw2regnum (char *regname)
16042 {
16043   unsigned int regnum = -1;
16044   unsigned int reg;
16045
16046   if (reg_lookup (&regname, RTYPE_GP | RTYPE_NUM, &reg))
16047     regnum = reg;
16048
16049   return regnum;
16050 }