bbb604ae179d1a325b9779261f2f16089bbaf475
[external/binutils.git] / gas / config / tc-mips.c
1 /* tc-mips.c -- assemble code for a MIPS chip.
2    Copyright (C) 1993-2016 Free Software Foundation, Inc.
3    Contributed by the OSF and Ralph Campbell.
4    Written by Keith Knowles and Ralph Campbell, working independently.
5    Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
6    Support.
7
8    This file is part of GAS.
9
10    GAS is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3, or (at your option)
13    any later version.
14
15    GAS is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with GAS; see the file COPYING.  If not, write to the Free
22    Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
23    02110-1301, USA.  */
24
25 #include "as.h"
26 #include "config.h"
27 #include "subsegs.h"
28 #include "safe-ctype.h"
29
30 #include "opcode/mips.h"
31 #include "itbl-ops.h"
32 #include "dwarf2dbg.h"
33 #include "dw2gencfi.h"
34
35 /* Check assumptions made in this file.  */
36 typedef char static_assert1[sizeof (offsetT) < 8 ? -1 : 1];
37 typedef char static_assert2[sizeof (valueT) < 8 ? -1 : 1];
38
39 #ifdef DEBUG
40 #define DBG(x) printf x
41 #else
42 #define DBG(x)
43 #endif
44
45 #define streq(a, b)           (strcmp (a, b) == 0)
46
47 #define SKIP_SPACE_TABS(S) \
48   do { while (*(S) == ' ' || *(S) == '\t') ++(S); } while (0)
49
50 /* Clean up namespace so we can include obj-elf.h too.  */
51 static int mips_output_flavor (void);
52 static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
53 #undef OBJ_PROCESS_STAB
54 #undef OUTPUT_FLAVOR
55 #undef S_GET_ALIGN
56 #undef S_GET_SIZE
57 #undef S_SET_ALIGN
58 #undef S_SET_SIZE
59 #undef obj_frob_file
60 #undef obj_frob_file_after_relocs
61 #undef obj_frob_symbol
62 #undef obj_pop_insert
63 #undef obj_sec_sym_ok_for_reloc
64 #undef OBJ_COPY_SYMBOL_ATTRIBUTES
65
66 #include "obj-elf.h"
67 /* Fix any of them that we actually care about.  */
68 #undef OUTPUT_FLAVOR
69 #define OUTPUT_FLAVOR mips_output_flavor()
70
71 #include "elf/mips.h"
72
73 #ifndef ECOFF_DEBUGGING
74 #define NO_ECOFF_DEBUGGING
75 #define ECOFF_DEBUGGING 0
76 #endif
77
78 int mips_flag_mdebug = -1;
79
80 /* Control generation of .pdr sections.  Off by default on IRIX: the native
81    linker doesn't know about and discards them, but relocations against them
82    remain, leading to rld crashes.  */
83 #ifdef TE_IRIX
84 int mips_flag_pdr = FALSE;
85 #else
86 int mips_flag_pdr = TRUE;
87 #endif
88
89 #include "ecoff.h"
90
91 static char *mips_regmask_frag;
92 static char *mips_flags_frag;
93
94 #define ZERO 0
95 #define ATREG 1
96 #define S0  16
97 #define S7  23
98 #define TREG 24
99 #define PIC_CALL_REG 25
100 #define KT0 26
101 #define KT1 27
102 #define GP  28
103 #define SP  29
104 #define FP  30
105 #define RA  31
106
107 #define ILLEGAL_REG (32)
108
109 #define AT  mips_opts.at
110
111 extern int target_big_endian;
112
113 /* The name of the readonly data section.  */
114 #define RDATA_SECTION_NAME ".rodata"
115
116 /* Ways in which an instruction can be "appended" to the output.  */
117 enum append_method {
118   /* Just add it normally.  */
119   APPEND_ADD,
120
121   /* Add it normally and then add a nop.  */
122   APPEND_ADD_WITH_NOP,
123
124   /* Turn an instruction with a delay slot into a "compact" version.  */
125   APPEND_ADD_COMPACT,
126
127   /* Insert the instruction before the last one.  */
128   APPEND_SWAP
129 };
130
131 /* Information about an instruction, including its format, operands
132    and fixups.  */
133 struct mips_cl_insn
134 {
135   /* The opcode's entry in mips_opcodes or mips16_opcodes.  */
136   const struct mips_opcode *insn_mo;
137
138   /* The 16-bit or 32-bit bitstring of the instruction itself.  This is
139      a copy of INSN_MO->match with the operands filled in.  If we have
140      decided to use an extended MIPS16 instruction, this includes the
141      extension.  */
142   unsigned long insn_opcode;
143
144   /* The frag that contains the instruction.  */
145   struct frag *frag;
146
147   /* The offset into FRAG of the first instruction byte.  */
148   long where;
149
150   /* The relocs associated with the instruction, if any.  */
151   fixS *fixp[3];
152
153   /* True if this entry cannot be moved from its current position.  */
154   unsigned int fixed_p : 1;
155
156   /* True if this instruction occurred in a .set noreorder block.  */
157   unsigned int noreorder_p : 1;
158
159   /* True for mips16 instructions that jump to an absolute address.  */
160   unsigned int mips16_absolute_jump_p : 1;
161
162   /* True if this instruction is complete.  */
163   unsigned int complete_p : 1;
164
165   /* True if this instruction is cleared from history by unconditional
166      branch.  */
167   unsigned int cleared_p : 1;
168 };
169
170 /* The ABI to use.  */
171 enum mips_abi_level
172 {
173   NO_ABI = 0,
174   O32_ABI,
175   O64_ABI,
176   N32_ABI,
177   N64_ABI,
178   EABI_ABI
179 };
180
181 /* MIPS ABI we are using for this output file.  */
182 static enum mips_abi_level mips_abi = NO_ABI;
183
184 /* Whether or not we have code that can call pic code.  */
185 int mips_abicalls = FALSE;
186
187 /* Whether or not we have code which can be put into a shared
188    library.  */
189 static bfd_boolean mips_in_shared = TRUE;
190
191 /* This is the set of options which may be modified by the .set
192    pseudo-op.  We use a struct so that .set push and .set pop are more
193    reliable.  */
194
195 struct mips_set_options
196 {
197   /* MIPS ISA (Instruction Set Architecture) level.  This is set to -1
198      if it has not been initialized.  Changed by `.set mipsN', and the
199      -mipsN command line option, and the default CPU.  */
200   int isa;
201   /* Enabled Application Specific Extensions (ASEs).  Changed by `.set
202      <asename>', by command line options, and based on the default
203      architecture.  */
204   int ase;
205   /* Whether we are assembling for the mips16 processor.  0 if we are
206      not, 1 if we are, and -1 if the value has not been initialized.
207      Changed by `.set mips16' and `.set nomips16', and the -mips16 and
208      -nomips16 command line options, and the default CPU.  */
209   int mips16;
210   /* Whether we are assembling for the mipsMIPS ASE.  0 if we are not,
211      1 if we are, and -1 if the value has not been initialized.  Changed
212      by `.set micromips' and `.set nomicromips', and the -mmicromips
213      and -mno-micromips command line options, and the default CPU.  */
214   int micromips;
215   /* Non-zero if we should not reorder instructions.  Changed by `.set
216      reorder' and `.set noreorder'.  */
217   int noreorder;
218   /* Non-zero if we should not permit the register designated "assembler
219      temporary" to be used in instructions.  The value is the register
220      number, normally $at ($1).  Changed by `.set at=REG', `.set noat'
221      (same as `.set at=$0') and `.set at' (same as `.set at=$1').  */
222   unsigned int at;
223   /* Non-zero if we should warn when a macro instruction expands into
224      more than one machine instruction.  Changed by `.set nomacro' and
225      `.set macro'.  */
226   int warn_about_macros;
227   /* Non-zero if we should not move instructions.  Changed by `.set
228      move', `.set volatile', `.set nomove', and `.set novolatile'.  */
229   int nomove;
230   /* Non-zero if we should not optimize branches by moving the target
231      of the branch into the delay slot.  Actually, we don't perform
232      this optimization anyhow.  Changed by `.set bopt' and `.set
233      nobopt'.  */
234   int nobopt;
235   /* Non-zero if we should not autoextend mips16 instructions.
236      Changed by `.set autoextend' and `.set noautoextend'.  */
237   int noautoextend;
238   /* True if we should only emit 32-bit microMIPS instructions.
239      Changed by `.set insn32' and `.set noinsn32', and the -minsn32
240      and -mno-insn32 command line options.  */
241   bfd_boolean insn32;
242   /* Restrict general purpose registers and floating point registers
243      to 32 bit.  This is initially determined when -mgp32 or -mfp32
244      is passed but can changed if the assembler code uses .set mipsN.  */
245   int gp;
246   int fp;
247   /* MIPS architecture (CPU) type.  Changed by .set arch=FOO, the -march
248      command line option, and the default CPU.  */
249   int arch;
250   /* True if ".set sym32" is in effect.  */
251   bfd_boolean sym32;
252   /* True if floating-point operations are not allowed.  Changed by .set
253      softfloat or .set hardfloat, by command line options -msoft-float or
254      -mhard-float.  The default is false.  */
255   bfd_boolean soft_float;
256
257   /* True if only single-precision floating-point operations are allowed.
258      Changed by .set singlefloat or .set doublefloat, command-line options
259      -msingle-float or -mdouble-float.  The default is false.  */
260   bfd_boolean single_float;
261
262   /* 1 if single-precision operations on odd-numbered registers are
263      allowed.  */
264   int oddspreg;
265 };
266
267 /* Specifies whether module level options have been checked yet.  */
268 static bfd_boolean file_mips_opts_checked = FALSE;
269
270 /* Do we support nan2008?  0 if we don't, 1 if we do, and -1 if the
271    value has not been initialized.  Changed by `.nan legacy' and
272    `.nan 2008', and the -mnan=legacy and -mnan=2008 command line
273    options, and the default CPU.  */
274 static int mips_nan2008 = -1;
275
276 /* This is the struct we use to hold the module level set of options.
277    Note that we must set the isa field to ISA_UNKNOWN and the ASE, gp and
278    fp fields to -1 to indicate that they have not been initialized.  */
279
280 static struct mips_set_options file_mips_opts =
281 {
282   /* isa */ ISA_UNKNOWN, /* ase */ 0, /* mips16 */ -1, /* micromips */ -1,
283   /* noreorder */ 0,  /* at */ ATREG, /* warn_about_macros */ 0,
284   /* nomove */ 0, /* nobopt */ 0, /* noautoextend */ 0, /* insn32 */ FALSE,
285   /* gp */ -1, /* fp */ -1, /* arch */ CPU_UNKNOWN, /* sym32 */ FALSE,
286   /* soft_float */ FALSE, /* single_float */ FALSE, /* oddspreg */ -1
287 };
288
289 /* This is similar to file_mips_opts, but for the current set of options.  */
290
291 static struct mips_set_options mips_opts =
292 {
293   /* isa */ ISA_UNKNOWN, /* ase */ 0, /* mips16 */ -1, /* micromips */ -1,
294   /* noreorder */ 0,  /* at */ ATREG, /* warn_about_macros */ 0,
295   /* nomove */ 0, /* nobopt */ 0, /* noautoextend */ 0, /* insn32 */ FALSE,
296   /* gp */ -1, /* fp */ -1, /* arch */ CPU_UNKNOWN, /* sym32 */ FALSE,
297   /* soft_float */ FALSE, /* single_float */ FALSE, /* oddspreg */ -1
298 };
299
300 /* Which bits of file_ase were explicitly set or cleared by ASE options.  */
301 static unsigned int file_ase_explicit;
302
303 /* These variables are filled in with the masks of registers used.
304    The object format code reads them and puts them in the appropriate
305    place.  */
306 unsigned long mips_gprmask;
307 unsigned long mips_cprmask[4];
308
309 /* True if any MIPS16 code was produced.  */
310 static int file_ase_mips16;
311
312 #define ISA_SUPPORTS_MIPS16E (mips_opts.isa == ISA_MIPS32               \
313                               || mips_opts.isa == ISA_MIPS32R2          \
314                               || mips_opts.isa == ISA_MIPS32R3          \
315                               || mips_opts.isa == ISA_MIPS32R5          \
316                               || mips_opts.isa == ISA_MIPS64            \
317                               || mips_opts.isa == ISA_MIPS64R2          \
318                               || mips_opts.isa == ISA_MIPS64R3          \
319                               || mips_opts.isa == ISA_MIPS64R5)
320
321 /* True if any microMIPS code was produced.  */
322 static int file_ase_micromips;
323
324 /* True if we want to create R_MIPS_JALR for jalr $25.  */
325 #ifdef TE_IRIX
326 #define MIPS_JALR_HINT_P(EXPR) HAVE_NEWABI
327 #else
328 /* As a GNU extension, we use R_MIPS_JALR for o32 too.  However,
329    because there's no place for any addend, the only acceptable
330    expression is a bare symbol.  */
331 #define MIPS_JALR_HINT_P(EXPR) \
332   (!HAVE_IN_PLACE_ADDENDS \
333    || ((EXPR)->X_op == O_symbol && (EXPR)->X_add_number == 0))
334 #endif
335
336 /* The argument of the -march= flag.  The architecture we are assembling.  */
337 static const char *mips_arch_string;
338
339 /* The argument of the -mtune= flag.  The architecture for which we
340    are optimizing.  */
341 static int mips_tune = CPU_UNKNOWN;
342 static const char *mips_tune_string;
343
344 /* True when generating 32-bit code for a 64-bit processor.  */
345 static int mips_32bitmode = 0;
346
347 /* True if the given ABI requires 32-bit registers.  */
348 #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
349
350 /* Likewise 64-bit registers.  */
351 #define ABI_NEEDS_64BIT_REGS(ABI)       \
352   ((ABI) == N32_ABI                     \
353    || (ABI) == N64_ABI                  \
354    || (ABI) == O64_ABI)
355
356 #define ISA_IS_R6(ISA)                  \
357   ((ISA) == ISA_MIPS32R6                \
358    || (ISA) == ISA_MIPS64R6)
359
360 /*  Return true if ISA supports 64 bit wide gp registers.  */
361 #define ISA_HAS_64BIT_REGS(ISA)         \
362   ((ISA) == ISA_MIPS3                   \
363    || (ISA) == ISA_MIPS4                \
364    || (ISA) == ISA_MIPS5                \
365    || (ISA) == ISA_MIPS64               \
366    || (ISA) == ISA_MIPS64R2             \
367    || (ISA) == ISA_MIPS64R3             \
368    || (ISA) == ISA_MIPS64R5             \
369    || (ISA) == ISA_MIPS64R6)
370
371 /*  Return true if ISA supports 64 bit wide float registers.  */
372 #define ISA_HAS_64BIT_FPRS(ISA)         \
373   ((ISA) == ISA_MIPS3                   \
374    || (ISA) == ISA_MIPS4                \
375    || (ISA) == ISA_MIPS5                \
376    || (ISA) == ISA_MIPS32R2             \
377    || (ISA) == ISA_MIPS32R3             \
378    || (ISA) == ISA_MIPS32R5             \
379    || (ISA) == ISA_MIPS32R6             \
380    || (ISA) == ISA_MIPS64               \
381    || (ISA) == ISA_MIPS64R2             \
382    || (ISA) == ISA_MIPS64R3             \
383    || (ISA) == ISA_MIPS64R5             \
384    || (ISA) == ISA_MIPS64R6)
385
386 /* Return true if ISA supports 64-bit right rotate (dror et al.)
387    instructions.  */
388 #define ISA_HAS_DROR(ISA)               \
389   ((ISA) == ISA_MIPS64R2                \
390    || (ISA) == ISA_MIPS64R3             \
391    || (ISA) == ISA_MIPS64R5             \
392    || (ISA) == ISA_MIPS64R6             \
393    || (mips_opts.micromips              \
394        && ISA_HAS_64BIT_REGS (ISA))     \
395    )
396
397 /* Return true if ISA supports 32-bit right rotate (ror et al.)
398    instructions.  */
399 #define ISA_HAS_ROR(ISA)                \
400   ((ISA) == ISA_MIPS32R2                \
401    || (ISA) == ISA_MIPS32R3             \
402    || (ISA) == ISA_MIPS32R5             \
403    || (ISA) == ISA_MIPS32R6             \
404    || (ISA) == ISA_MIPS64R2             \
405    || (ISA) == ISA_MIPS64R3             \
406    || (ISA) == ISA_MIPS64R5             \
407    || (ISA) == ISA_MIPS64R6             \
408    || (mips_opts.ase & ASE_SMARTMIPS)   \
409    || mips_opts.micromips               \
410    )
411
412 /* Return true if ISA supports single-precision floats in odd registers.  */
413 #define ISA_HAS_ODD_SINGLE_FPR(ISA, CPU)\
414   (((ISA) == ISA_MIPS32                 \
415     || (ISA) == ISA_MIPS32R2            \
416     || (ISA) == ISA_MIPS32R3            \
417     || (ISA) == ISA_MIPS32R5            \
418     || (ISA) == ISA_MIPS32R6            \
419     || (ISA) == ISA_MIPS64              \
420     || (ISA) == ISA_MIPS64R2            \
421     || (ISA) == ISA_MIPS64R3            \
422     || (ISA) == ISA_MIPS64R5            \
423     || (ISA) == ISA_MIPS64R6            \
424     || (CPU) == CPU_R5900)              \
425    && (CPU) != CPU_LOONGSON_3A)
426
427 /* Return true if ISA supports move to/from high part of a 64-bit
428    floating-point register. */
429 #define ISA_HAS_MXHC1(ISA)              \
430   ((ISA) == ISA_MIPS32R2                \
431    || (ISA) == ISA_MIPS32R3             \
432    || (ISA) == ISA_MIPS32R5             \
433    || (ISA) == ISA_MIPS32R6             \
434    || (ISA) == ISA_MIPS64R2             \
435    || (ISA) == ISA_MIPS64R3             \
436    || (ISA) == ISA_MIPS64R5             \
437    || (ISA) == ISA_MIPS64R6)
438
439 /*  Return true if ISA supports legacy NAN.  */
440 #define ISA_HAS_LEGACY_NAN(ISA)         \
441   ((ISA) == ISA_MIPS1                   \
442    || (ISA) == ISA_MIPS2                \
443    || (ISA) == ISA_MIPS3                \
444    || (ISA) == ISA_MIPS4                \
445    || (ISA) == ISA_MIPS5                \
446    || (ISA) == ISA_MIPS32               \
447    || (ISA) == ISA_MIPS32R2             \
448    || (ISA) == ISA_MIPS32R3             \
449    || (ISA) == ISA_MIPS32R5             \
450    || (ISA) == ISA_MIPS64               \
451    || (ISA) == ISA_MIPS64R2             \
452    || (ISA) == ISA_MIPS64R3             \
453    || (ISA) == ISA_MIPS64R5)
454
455 #define GPR_SIZE \
456     (mips_opts.gp == 64 && !ISA_HAS_64BIT_REGS (mips_opts.isa) \
457      ? 32 \
458      : mips_opts.gp)
459
460 #define FPR_SIZE \
461     (mips_opts.fp == 64 && !ISA_HAS_64BIT_FPRS (mips_opts.isa) \
462      ? 32 \
463      : mips_opts.fp)
464
465 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
466
467 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
468
469 /* True if relocations are stored in-place.  */
470 #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
471
472 /* The ABI-derived address size.  */
473 #define HAVE_64BIT_ADDRESSES \
474   (GPR_SIZE == 64 && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
475 #define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
476
477 /* The size of symbolic constants (i.e., expressions of the form
478    "SYMBOL" or "SYMBOL + OFFSET").  */
479 #define HAVE_32BIT_SYMBOLS \
480   (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
481 #define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
482
483 /* Addresses are loaded in different ways, depending on the address size
484    in use.  The n32 ABI Documentation also mandates the use of additions
485    with overflow checking, but existing implementations don't follow it.  */
486 #define ADDRESS_ADD_INSN                                                \
487    (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
488
489 #define ADDRESS_ADDI_INSN                                               \
490    (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
491
492 #define ADDRESS_LOAD_INSN                                               \
493    (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
494
495 #define ADDRESS_STORE_INSN                                              \
496    (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
497
498 /* Return true if the given CPU supports the MIPS16 ASE.  */
499 #define CPU_HAS_MIPS16(cpu)                                             \
500    (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0          \
501     || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
502
503 /* Return true if the given CPU supports the microMIPS ASE.  */
504 #define CPU_HAS_MICROMIPS(cpu)  0
505
506 /* True if CPU has a dror instruction.  */
507 #define CPU_HAS_DROR(CPU)       ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
508
509 /* True if CPU has a ror instruction.  */
510 #define CPU_HAS_ROR(CPU)        CPU_HAS_DROR (CPU)
511
512 /* True if CPU is in the Octeon family */
513 #define CPU_IS_OCTEON(CPU) ((CPU) == CPU_OCTEON || (CPU) == CPU_OCTEONP \
514                             || (CPU) == CPU_OCTEON2 || (CPU) == CPU_OCTEON3)
515
516 /* True if CPU has seq/sne and seqi/snei instructions.  */
517 #define CPU_HAS_SEQ(CPU)        (CPU_IS_OCTEON (CPU))
518
519 /* True, if CPU has support for ldc1 and sdc1. */
520 #define CPU_HAS_LDC1_SDC1(CPU)  \
521    ((mips_opts.isa != ISA_MIPS1) && ((CPU) != CPU_R5900))
522
523 /* True if mflo and mfhi can be immediately followed by instructions
524    which write to the HI and LO registers.
525
526    According to MIPS specifications, MIPS ISAs I, II, and III need
527    (at least) two instructions between the reads of HI/LO and
528    instructions which write them, and later ISAs do not.  Contradicting
529    the MIPS specifications, some MIPS IV processor user manuals (e.g.
530    the UM for the NEC Vr5000) document needing the instructions between
531    HI/LO reads and writes, as well.  Therefore, we declare only MIPS32,
532    MIPS64 and later ISAs to have the interlocks, plus any specific
533    earlier-ISA CPUs for which CPU documentation declares that the
534    instructions are really interlocked.  */
535 #define hilo_interlocks \
536   (mips_opts.isa == ISA_MIPS32                        \
537    || mips_opts.isa == ISA_MIPS32R2                   \
538    || mips_opts.isa == ISA_MIPS32R3                   \
539    || mips_opts.isa == ISA_MIPS32R5                   \
540    || mips_opts.isa == ISA_MIPS32R6                   \
541    || mips_opts.isa == ISA_MIPS64                     \
542    || mips_opts.isa == ISA_MIPS64R2                   \
543    || mips_opts.isa == ISA_MIPS64R3                   \
544    || mips_opts.isa == ISA_MIPS64R5                   \
545    || mips_opts.isa == ISA_MIPS64R6                   \
546    || mips_opts.arch == CPU_R4010                     \
547    || mips_opts.arch == CPU_R5900                     \
548    || mips_opts.arch == CPU_R10000                    \
549    || mips_opts.arch == CPU_R12000                    \
550    || mips_opts.arch == CPU_R14000                    \
551    || mips_opts.arch == CPU_R16000                    \
552    || mips_opts.arch == CPU_RM7000                    \
553    || mips_opts.arch == CPU_VR5500                    \
554    || mips_opts.micromips                             \
555    )
556
557 /* Whether the processor uses hardware interlocks to protect reads
558    from the GPRs after they are loaded from memory, and thus does not
559    require nops to be inserted.  This applies to instructions marked
560    INSN_LOAD_MEMORY.  These nops are only required at MIPS ISA
561    level I and microMIPS mode instructions are always interlocked.  */
562 #define gpr_interlocks                                \
563   (mips_opts.isa != ISA_MIPS1                         \
564    || mips_opts.arch == CPU_R3900                     \
565    || mips_opts.arch == CPU_R5900                     \
566    || mips_opts.micromips                             \
567    )
568
569 /* Whether the processor uses hardware interlocks to avoid delays
570    required by coprocessor instructions, and thus does not require
571    nops to be inserted.  This applies to instructions marked
572    INSN_LOAD_COPROC, INSN_COPROC_MOVE, and to delays between
573    instructions marked INSN_WRITE_COND_CODE and ones marked
574    INSN_READ_COND_CODE.  These nops are only required at MIPS ISA
575    levels I, II, and III and microMIPS mode instructions are always
576    interlocked.  */
577 /* Itbl support may require additional care here.  */
578 #define cop_interlocks                                \
579   ((mips_opts.isa != ISA_MIPS1                        \
580     && mips_opts.isa != ISA_MIPS2                     \
581     && mips_opts.isa != ISA_MIPS3)                    \
582    || mips_opts.arch == CPU_R4300                     \
583    || mips_opts.micromips                             \
584    )
585
586 /* Whether the processor uses hardware interlocks to protect reads
587    from coprocessor registers after they are loaded from memory, and
588    thus does not require nops to be inserted.  This applies to
589    instructions marked INSN_COPROC_MEMORY_DELAY.  These nops are only
590    requires at MIPS ISA level I and microMIPS mode instructions are
591    always interlocked.  */
592 #define cop_mem_interlocks                            \
593   (mips_opts.isa != ISA_MIPS1                         \
594    || mips_opts.micromips                             \
595    )
596
597 /* Is this a mfhi or mflo instruction?  */
598 #define MF_HILO_INSN(PINFO) \
599   ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
600
601 /* Whether code compression (either of the MIPS16 or the microMIPS ASEs)
602    has been selected.  This implies, in particular, that addresses of text
603    labels have their LSB set.  */
604 #define HAVE_CODE_COMPRESSION                                           \
605   ((mips_opts.mips16 | mips_opts.micromips) != 0)
606
607 /* The minimum and maximum signed values that can be stored in a GPR.  */
608 #define GPR_SMAX ((offsetT) (((valueT) 1 << (GPR_SIZE - 1)) - 1))
609 #define GPR_SMIN (-GPR_SMAX - 1)
610
611 /* MIPS PIC level.  */
612
613 enum mips_pic_level mips_pic;
614
615 /* 1 if we should generate 32 bit offsets from the $gp register in
616    SVR4_PIC mode.  Currently has no meaning in other modes.  */
617 static int mips_big_got = 0;
618
619 /* 1 if trap instructions should used for overflow rather than break
620    instructions.  */
621 static int mips_trap = 0;
622
623 /* 1 if double width floating point constants should not be constructed
624    by assembling two single width halves into two single width floating
625    point registers which just happen to alias the double width destination
626    register.  On some architectures this aliasing can be disabled by a bit
627    in the status register, and the setting of this bit cannot be determined
628    automatically at assemble time.  */
629 static int mips_disable_float_construction;
630
631 /* Non-zero if any .set noreorder directives were used.  */
632
633 static int mips_any_noreorder;
634
635 /* Non-zero if nops should be inserted when the register referenced in
636    an mfhi/mflo instruction is read in the next two instructions.  */
637 static int mips_7000_hilo_fix;
638
639 /* The size of objects in the small data section.  */
640 static unsigned int g_switch_value = 8;
641 /* Whether the -G option was used.  */
642 static int g_switch_seen = 0;
643
644 #define N_RMASK 0xc4
645 #define N_VFP   0xd4
646
647 /* If we can determine in advance that GP optimization won't be
648    possible, we can skip the relaxation stuff that tries to produce
649    GP-relative references.  This makes delay slot optimization work
650    better.
651
652    This function can only provide a guess, but it seems to work for
653    gcc output.  It needs to guess right for gcc, otherwise gcc
654    will put what it thinks is a GP-relative instruction in a branch
655    delay slot.
656
657    I don't know if a fix is needed for the SVR4_PIC mode.  I've only
658    fixed it for the non-PIC mode.  KR 95/04/07  */
659 static int nopic_need_relax (symbolS *, int);
660
661 /* handle of the OPCODE hash table */
662 static struct hash_control *op_hash = NULL;
663
664 /* The opcode hash table we use for the mips16.  */
665 static struct hash_control *mips16_op_hash = NULL;
666
667 /* The opcode hash table we use for the microMIPS ASE.  */
668 static struct hash_control *micromips_op_hash = NULL;
669
670 /* This array holds the chars that always start a comment.  If the
671     pre-processor is disabled, these aren't very useful */
672 const char comment_chars[] = "#";
673
674 /* This array holds the chars that only start a comment at the beginning of
675    a line.  If the line seems to have the form '# 123 filename'
676    .line and .file directives will appear in the pre-processed output */
677 /* Note that input_file.c hand checks for '#' at the beginning of the
678    first line of the input file.  This is because the compiler outputs
679    #NO_APP at the beginning of its output.  */
680 /* Also note that C style comments are always supported.  */
681 const char line_comment_chars[] = "#";
682
683 /* This array holds machine specific line separator characters.  */
684 const char line_separator_chars[] = ";";
685
686 /* Chars that can be used to separate mant from exp in floating point nums */
687 const char EXP_CHARS[] = "eE";
688
689 /* Chars that mean this number is a floating point constant */
690 /* As in 0f12.456 */
691 /* or    0d1.2345e12 */
692 const char FLT_CHARS[] = "rRsSfFdDxXpP";
693
694 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
695    changed in read.c .  Ideally it shouldn't have to know about it at all,
696    but nothing is ideal around here.
697  */
698
699 /* Types of printf format used for instruction-related error messages.
700    "I" means int ("%d") and "S" means string ("%s"). */
701 enum mips_insn_error_format {
702   ERR_FMT_PLAIN,
703   ERR_FMT_I,
704   ERR_FMT_SS,
705 };
706
707 /* Information about an error that was found while assembling the current
708    instruction.  */
709 struct mips_insn_error {
710   /* We sometimes need to match an instruction against more than one
711      opcode table entry.  Errors found during this matching are reported
712      against a particular syntactic argument rather than against the
713      instruction as a whole.  We grade these messages so that errors
714      against argument N have a greater priority than an error against
715      any argument < N, since the former implies that arguments up to N
716      were acceptable and that the opcode entry was therefore a closer match.
717      If several matches report an error against the same argument,
718      we only use that error if it is the same in all cases.
719
720      min_argnum is the minimum argument number for which an error message
721      should be accepted.  It is 0 if MSG is against the instruction as
722      a whole.  */
723   int min_argnum;
724
725   /* The printf()-style message, including its format and arguments.  */
726   enum mips_insn_error_format format;
727   const char *msg;
728   union {
729     int i;
730     const char *ss[2];
731   } u;
732 };
733
734 /* The error that should be reported for the current instruction.  */
735 static struct mips_insn_error insn_error;
736
737 static int auto_align = 1;
738
739 /* When outputting SVR4 PIC code, the assembler needs to know the
740    offset in the stack frame from which to restore the $gp register.
741    This is set by the .cprestore pseudo-op, and saved in this
742    variable.  */
743 static offsetT mips_cprestore_offset = -1;
744
745 /* Similar for NewABI PIC code, where $gp is callee-saved.  NewABI has some
746    more optimizations, it can use a register value instead of a memory-saved
747    offset and even an other register than $gp as global pointer.  */
748 static offsetT mips_cpreturn_offset = -1;
749 static int mips_cpreturn_register = -1;
750 static int mips_gp_register = GP;
751 static int mips_gprel_offset = 0;
752
753 /* Whether mips_cprestore_offset has been set in the current function
754    (or whether it has already been warned about, if not).  */
755 static int mips_cprestore_valid = 0;
756
757 /* This is the register which holds the stack frame, as set by the
758    .frame pseudo-op.  This is needed to implement .cprestore.  */
759 static int mips_frame_reg = SP;
760
761 /* Whether mips_frame_reg has been set in the current function
762    (or whether it has already been warned about, if not).  */
763 static int mips_frame_reg_valid = 0;
764
765 /* To output NOP instructions correctly, we need to keep information
766    about the previous two instructions.  */
767
768 /* Whether we are optimizing.  The default value of 2 means to remove
769    unneeded NOPs and swap branch instructions when possible.  A value
770    of 1 means to not swap branches.  A value of 0 means to always
771    insert NOPs.  */
772 static int mips_optimize = 2;
773
774 /* Debugging level.  -g sets this to 2.  -gN sets this to N.  -g0 is
775    equivalent to seeing no -g option at all.  */
776 static int mips_debug = 0;
777
778 /* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata.  */
779 #define MAX_VR4130_NOPS 4
780
781 /* The maximum number of NOPs needed to fill delay slots.  */
782 #define MAX_DELAY_NOPS 2
783
784 /* The maximum number of NOPs needed for any purpose.  */
785 #define MAX_NOPS 4
786
787 /* A list of previous instructions, with index 0 being the most recent.
788    We need to look back MAX_NOPS instructions when filling delay slots
789    or working around processor errata.  We need to look back one
790    instruction further if we're thinking about using history[0] to
791    fill a branch delay slot.  */
792 static struct mips_cl_insn history[1 + MAX_NOPS];
793
794 /* Arrays of operands for each instruction.  */
795 #define MAX_OPERANDS 6
796 struct mips_operand_array {
797   const struct mips_operand *operand[MAX_OPERANDS];
798 };
799 static struct mips_operand_array *mips_operands;
800 static struct mips_operand_array *mips16_operands;
801 static struct mips_operand_array *micromips_operands;
802
803 /* Nop instructions used by emit_nop.  */
804 static struct mips_cl_insn nop_insn;
805 static struct mips_cl_insn mips16_nop_insn;
806 static struct mips_cl_insn micromips_nop16_insn;
807 static struct mips_cl_insn micromips_nop32_insn;
808
809 /* The appropriate nop for the current mode.  */
810 #define NOP_INSN (mips_opts.mips16                                      \
811                   ? &mips16_nop_insn                                    \
812                   : (mips_opts.micromips                                \
813                      ? (mips_opts.insn32                                \
814                         ? &micromips_nop32_insn                         \
815                         : &micromips_nop16_insn)                        \
816                      : &nop_insn))
817
818 /* The size of NOP_INSN in bytes.  */
819 #define NOP_INSN_SIZE ((mips_opts.mips16                                \
820                         || (mips_opts.micromips && !mips_opts.insn32))  \
821                        ? 2 : 4)
822
823 /* If this is set, it points to a frag holding nop instructions which
824    were inserted before the start of a noreorder section.  If those
825    nops turn out to be unnecessary, the size of the frag can be
826    decreased.  */
827 static fragS *prev_nop_frag;
828
829 /* The number of nop instructions we created in prev_nop_frag.  */
830 static int prev_nop_frag_holds;
831
832 /* The number of nop instructions that we know we need in
833    prev_nop_frag.  */
834 static int prev_nop_frag_required;
835
836 /* The number of instructions we've seen since prev_nop_frag.  */
837 static int prev_nop_frag_since;
838
839 /* Relocations against symbols are sometimes done in two parts, with a HI
840    relocation and a LO relocation.  Each relocation has only 16 bits of
841    space to store an addend.  This means that in order for the linker to
842    handle carries correctly, it must be able to locate both the HI and
843    the LO relocation.  This means that the relocations must appear in
844    order in the relocation table.
845
846    In order to implement this, we keep track of each unmatched HI
847    relocation.  We then sort them so that they immediately precede the
848    corresponding LO relocation.  */
849
850 struct mips_hi_fixup
851 {
852   /* Next HI fixup.  */
853   struct mips_hi_fixup *next;
854   /* This fixup.  */
855   fixS *fixp;
856   /* The section this fixup is in.  */
857   segT seg;
858 };
859
860 /* The list of unmatched HI relocs.  */
861
862 static struct mips_hi_fixup *mips_hi_fixup_list;
863
864 /* The frag containing the last explicit relocation operator.
865    Null if explicit relocations have not been used.  */
866
867 static fragS *prev_reloc_op_frag;
868
869 /* Map mips16 register numbers to normal MIPS register numbers.  */
870
871 static const unsigned int mips16_to_32_reg_map[] =
872 {
873   16, 17, 2, 3, 4, 5, 6, 7
874 };
875
876 /* Map microMIPS register numbers to normal MIPS register numbers.  */
877
878 #define micromips_to_32_reg_d_map       mips16_to_32_reg_map
879
880 /* The microMIPS registers with type h.  */
881 static const unsigned int micromips_to_32_reg_h_map1[] =
882 {
883   5, 5, 6, 4, 4, 4, 4, 4
884 };
885 static const unsigned int micromips_to_32_reg_h_map2[] =
886 {
887   6, 7, 7, 21, 22, 5, 6, 7
888 };
889
890 /* The microMIPS registers with type m.  */
891 static const unsigned int micromips_to_32_reg_m_map[] =
892 {
893   0, 17, 2, 3, 16, 18, 19, 20
894 };
895
896 #define micromips_to_32_reg_n_map      micromips_to_32_reg_m_map
897
898 /* Classifies the kind of instructions we're interested in when
899    implementing -mfix-vr4120.  */
900 enum fix_vr4120_class
901 {
902   FIX_VR4120_MACC,
903   FIX_VR4120_DMACC,
904   FIX_VR4120_MULT,
905   FIX_VR4120_DMULT,
906   FIX_VR4120_DIV,
907   FIX_VR4120_MTHILO,
908   NUM_FIX_VR4120_CLASSES
909 };
910
911 /* ...likewise -mfix-loongson2f-jump.  */
912 static bfd_boolean mips_fix_loongson2f_jump;
913
914 /* ...likewise -mfix-loongson2f-nop.  */
915 static bfd_boolean mips_fix_loongson2f_nop;
916
917 /* True if -mfix-loongson2f-nop or -mfix-loongson2f-jump passed.  */
918 static bfd_boolean mips_fix_loongson2f;
919
920 /* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
921    there must be at least one other instruction between an instruction
922    of type X and an instruction of type Y.  */
923 static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
924
925 /* True if -mfix-vr4120 is in force.  */
926 static int mips_fix_vr4120;
927
928 /* ...likewise -mfix-vr4130.  */
929 static int mips_fix_vr4130;
930
931 /* ...likewise -mfix-24k.  */
932 static int mips_fix_24k;
933
934 /* ...likewise -mfix-rm7000  */
935 static int mips_fix_rm7000;
936
937 /* ...likewise -mfix-cn63xxp1 */
938 static bfd_boolean mips_fix_cn63xxp1;
939
940 /* We don't relax branches by default, since this causes us to expand
941    `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
942    fail to compute the offset before expanding the macro to the most
943    efficient expansion.  */
944
945 static int mips_relax_branch;
946 \f
947 /* The expansion of many macros depends on the type of symbol that
948    they refer to.  For example, when generating position-dependent code,
949    a macro that refers to a symbol may have two different expansions,
950    one which uses GP-relative addresses and one which uses absolute
951    addresses.  When generating SVR4-style PIC, a macro may have
952    different expansions for local and global symbols.
953
954    We handle these situations by generating both sequences and putting
955    them in variant frags.  In position-dependent code, the first sequence
956    will be the GP-relative one and the second sequence will be the
957    absolute one.  In SVR4 PIC, the first sequence will be for global
958    symbols and the second will be for local symbols.
959
960    The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
961    SECOND are the lengths of the two sequences in bytes.  These fields
962    can be extracted using RELAX_FIRST() and RELAX_SECOND().  In addition,
963    the subtype has the following flags:
964
965    RELAX_USE_SECOND
966         Set if it has been decided that we should use the second
967         sequence instead of the first.
968
969    RELAX_SECOND_LONGER
970         Set in the first variant frag if the macro's second implementation
971         is longer than its first.  This refers to the macro as a whole,
972         not an individual relaxation.
973
974    RELAX_NOMACRO
975         Set in the first variant frag if the macro appeared in a .set nomacro
976         block and if one alternative requires a warning but the other does not.
977
978    RELAX_DELAY_SLOT
979         Like RELAX_NOMACRO, but indicates that the macro appears in a branch
980         delay slot.
981
982    RELAX_DELAY_SLOT_16BIT
983         Like RELAX_DELAY_SLOT, but indicates that the delay slot requires a
984         16-bit instruction.
985
986    RELAX_DELAY_SLOT_SIZE_FIRST
987         Like RELAX_DELAY_SLOT, but indicates that the first implementation of
988         the macro is of the wrong size for the branch delay slot.
989
990    RELAX_DELAY_SLOT_SIZE_SECOND
991         Like RELAX_DELAY_SLOT, but indicates that the second implementation of
992         the macro is of the wrong size for the branch delay slot.
993
994    The frag's "opcode" points to the first fixup for relaxable code.
995
996    Relaxable macros are generated using a sequence such as:
997
998       relax_start (SYMBOL);
999       ... generate first expansion ...
1000       relax_switch ();
1001       ... generate second expansion ...
1002       relax_end ();
1003
1004    The code and fixups for the unwanted alternative are discarded
1005    by md_convert_frag.  */
1006 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
1007
1008 #define RELAX_FIRST(X) (((X) >> 8) & 0xff)
1009 #define RELAX_SECOND(X) ((X) & 0xff)
1010 #define RELAX_USE_SECOND 0x10000
1011 #define RELAX_SECOND_LONGER 0x20000
1012 #define RELAX_NOMACRO 0x40000
1013 #define RELAX_DELAY_SLOT 0x80000
1014 #define RELAX_DELAY_SLOT_16BIT 0x100000
1015 #define RELAX_DELAY_SLOT_SIZE_FIRST 0x200000
1016 #define RELAX_DELAY_SLOT_SIZE_SECOND 0x400000
1017
1018 /* Branch without likely bit.  If label is out of range, we turn:
1019
1020         beq reg1, reg2, label
1021         delay slot
1022
1023    into
1024
1025         bne reg1, reg2, 0f
1026         nop
1027         j label
1028      0: delay slot
1029
1030    with the following opcode replacements:
1031
1032         beq <-> bne
1033         blez <-> bgtz
1034         bltz <-> bgez
1035         bc1f <-> bc1t
1036
1037         bltzal <-> bgezal  (with jal label instead of j label)
1038
1039    Even though keeping the delay slot instruction in the delay slot of
1040    the branch would be more efficient, it would be very tricky to do
1041    correctly, because we'd have to introduce a variable frag *after*
1042    the delay slot instruction, and expand that instead.  Let's do it
1043    the easy way for now, even if the branch-not-taken case now costs
1044    one additional instruction.  Out-of-range branches are not supposed
1045    to be common, anyway.
1046
1047    Branch likely.  If label is out of range, we turn:
1048
1049         beql reg1, reg2, label
1050         delay slot (annulled if branch not taken)
1051
1052    into
1053
1054         beql reg1, reg2, 1f
1055         nop
1056         beql $0, $0, 2f
1057         nop
1058      1: j[al] label
1059         delay slot (executed only if branch taken)
1060      2:
1061
1062    It would be possible to generate a shorter sequence by losing the
1063    likely bit, generating something like:
1064
1065         bne reg1, reg2, 0f
1066         nop
1067         j[al] label
1068         delay slot (executed only if branch taken)
1069      0:
1070
1071         beql -> bne
1072         bnel -> beq
1073         blezl -> bgtz
1074         bgtzl -> blez
1075         bltzl -> bgez
1076         bgezl -> bltz
1077         bc1fl -> bc1t
1078         bc1tl -> bc1f
1079
1080         bltzall -> bgezal  (with jal label instead of j label)
1081         bgezall -> bltzal  (ditto)
1082
1083
1084    but it's not clear that it would actually improve performance.  */
1085 #define RELAX_BRANCH_ENCODE(at, uncond, likely, link, toofar)   \
1086   ((relax_substateT)                                            \
1087    (0xc0000000                                                  \
1088     | ((at) & 0x1f)                                             \
1089     | ((toofar) ? 0x20 : 0)                                     \
1090     | ((link) ? 0x40 : 0)                                       \
1091     | ((likely) ? 0x80 : 0)                                     \
1092     | ((uncond) ? 0x100 : 0)))
1093 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
1094 #define RELAX_BRANCH_UNCOND(i) (((i) & 0x100) != 0)
1095 #define RELAX_BRANCH_LIKELY(i) (((i) & 0x80) != 0)
1096 #define RELAX_BRANCH_LINK(i) (((i) & 0x40) != 0)
1097 #define RELAX_BRANCH_TOOFAR(i) (((i) & 0x20) != 0)
1098 #define RELAX_BRANCH_AT(i) ((i) & 0x1f)
1099
1100 /* For mips16 code, we use an entirely different form of relaxation.
1101    mips16 supports two versions of most instructions which take
1102    immediate values: a small one which takes some small value, and a
1103    larger one which takes a 16 bit value.  Since branches also follow
1104    this pattern, relaxing these values is required.
1105
1106    We can assemble both mips16 and normal MIPS code in a single
1107    object.  Therefore, we need to support this type of relaxation at
1108    the same time that we support the relaxation described above.  We
1109    use the high bit of the subtype field to distinguish these cases.
1110
1111    The information we store for this type of relaxation is the
1112    argument code found in the opcode file for this relocation, whether
1113    the user explicitly requested a small or extended form, and whether
1114    the relocation is in a jump or jal delay slot.  That tells us the
1115    size of the value, and how it should be stored.  We also store
1116    whether the fragment is considered to be extended or not.  We also
1117    store whether this is known to be a branch to a different section,
1118    whether we have tried to relax this frag yet, and whether we have
1119    ever extended a PC relative fragment because of a shift count.  */
1120 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
1121   (0x80000000                                                   \
1122    | ((type) & 0xff)                                            \
1123    | ((small) ? 0x100 : 0)                                      \
1124    | ((ext) ? 0x200 : 0)                                        \
1125    | ((dslot) ? 0x400 : 0)                                      \
1126    | ((jal_dslot) ? 0x800 : 0))
1127 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
1128 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
1129 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
1130 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
1131 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
1132 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
1133 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
1134 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
1135 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
1136 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
1137 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
1138 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
1139
1140 /* For microMIPS code, we use relaxation similar to one we use for
1141    MIPS16 code.  Some instructions that take immediate values support
1142    two encodings: a small one which takes some small value, and a
1143    larger one which takes a 16 bit value.  As some branches also follow
1144    this pattern, relaxing these values is required.
1145
1146    We can assemble both microMIPS and normal MIPS code in a single
1147    object.  Therefore, we need to support this type of relaxation at
1148    the same time that we support the relaxation described above.  We
1149    use one of the high bits of the subtype field to distinguish these
1150    cases.
1151
1152    The information we store for this type of relaxation is the argument
1153    code found in the opcode file for this relocation, the register
1154    selected as the assembler temporary, whether the branch is
1155    unconditional, whether it is compact, whether it stores the link
1156    address implicitly in $ra, whether relaxation of out-of-range 32-bit
1157    branches to a sequence of instructions is enabled, and whether the
1158    displacement of a branch is too large to fit as an immediate argument
1159    of a 16-bit and a 32-bit branch, respectively.  */
1160 #define RELAX_MICROMIPS_ENCODE(type, at, uncond, compact, link, \
1161                                relax32, toofar16, toofar32)     \
1162   (0x40000000                                                   \
1163    | ((type) & 0xff)                                            \
1164    | (((at) & 0x1f) << 8)                                       \
1165    | ((uncond) ? 0x2000 : 0)                                    \
1166    | ((compact) ? 0x4000 : 0)                                   \
1167    | ((link) ? 0x8000 : 0)                                      \
1168    | ((relax32) ? 0x10000 : 0)                                  \
1169    | ((toofar16) ? 0x20000 : 0)                                 \
1170    | ((toofar32) ? 0x40000 : 0))
1171 #define RELAX_MICROMIPS_P(i) (((i) & 0xc0000000) == 0x40000000)
1172 #define RELAX_MICROMIPS_TYPE(i) ((i) & 0xff)
1173 #define RELAX_MICROMIPS_AT(i) (((i) >> 8) & 0x1f)
1174 #define RELAX_MICROMIPS_UNCOND(i) (((i) & 0x2000) != 0)
1175 #define RELAX_MICROMIPS_COMPACT(i) (((i) & 0x4000) != 0)
1176 #define RELAX_MICROMIPS_LINK(i) (((i) & 0x8000) != 0)
1177 #define RELAX_MICROMIPS_RELAX32(i) (((i) & 0x10000) != 0)
1178
1179 #define RELAX_MICROMIPS_TOOFAR16(i) (((i) & 0x20000) != 0)
1180 #define RELAX_MICROMIPS_MARK_TOOFAR16(i) ((i) | 0x20000)
1181 #define RELAX_MICROMIPS_CLEAR_TOOFAR16(i) ((i) & ~0x20000)
1182 #define RELAX_MICROMIPS_TOOFAR32(i) (((i) & 0x40000) != 0)
1183 #define RELAX_MICROMIPS_MARK_TOOFAR32(i) ((i) | 0x40000)
1184 #define RELAX_MICROMIPS_CLEAR_TOOFAR32(i) ((i) & ~0x40000)
1185
1186 /* Sign-extend 16-bit value X.  */
1187 #define SEXT_16BIT(X) ((((X) + 0x8000) & 0xffff) - 0x8000)
1188
1189 /* Is the given value a sign-extended 32-bit value?  */
1190 #define IS_SEXT_32BIT_NUM(x)                                            \
1191   (((x) &~ (offsetT) 0x7fffffff) == 0                                   \
1192    || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
1193
1194 /* Is the given value a sign-extended 16-bit value?  */
1195 #define IS_SEXT_16BIT_NUM(x)                                            \
1196   (((x) &~ (offsetT) 0x7fff) == 0                                       \
1197    || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
1198
1199 /* Is the given value a sign-extended 12-bit value?  */
1200 #define IS_SEXT_12BIT_NUM(x)                                            \
1201   (((((x) & 0xfff) ^ 0x800LL) - 0x800LL) == (x))
1202
1203 /* Is the given value a sign-extended 9-bit value?  */
1204 #define IS_SEXT_9BIT_NUM(x)                                             \
1205   (((((x) & 0x1ff) ^ 0x100LL) - 0x100LL) == (x))
1206
1207 /* Is the given value a zero-extended 32-bit value?  Or a negated one?  */
1208 #define IS_ZEXT_32BIT_NUM(x)                                            \
1209   (((x) &~ (offsetT) 0xffffffff) == 0                                   \
1210    || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
1211
1212 /* Extract bits MASK << SHIFT from STRUCT and shift them right
1213    SHIFT places.  */
1214 #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
1215   (((STRUCT) >> (SHIFT)) & (MASK))
1216
1217 /* Extract the operand given by FIELD from mips_cl_insn INSN.  */
1218 #define EXTRACT_OPERAND(MICROMIPS, FIELD, INSN) \
1219   (!(MICROMIPS) \
1220    ? EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD) \
1221    : EXTRACT_BITS ((INSN).insn_opcode, \
1222                    MICROMIPSOP_MASK_##FIELD, MICROMIPSOP_SH_##FIELD))
1223 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
1224   EXTRACT_BITS ((INSN).insn_opcode, \
1225                 MIPS16OP_MASK_##FIELD, \
1226                 MIPS16OP_SH_##FIELD)
1227
1228 /* The MIPS16 EXTEND opcode, shifted left 16 places.  */
1229 #define MIPS16_EXTEND (0xf000U << 16)
1230 \f
1231 /* Whether or not we are emitting a branch-likely macro.  */
1232 static bfd_boolean emit_branch_likely_macro = FALSE;
1233
1234 /* Global variables used when generating relaxable macros.  See the
1235    comment above RELAX_ENCODE for more details about how relaxation
1236    is used.  */
1237 static struct {
1238   /* 0 if we're not emitting a relaxable macro.
1239      1 if we're emitting the first of the two relaxation alternatives.
1240      2 if we're emitting the second alternative.  */
1241   int sequence;
1242
1243   /* The first relaxable fixup in the current frag.  (In other words,
1244      the first fixup that refers to relaxable code.)  */
1245   fixS *first_fixup;
1246
1247   /* sizes[0] says how many bytes of the first alternative are stored in
1248      the current frag.  Likewise sizes[1] for the second alternative.  */
1249   unsigned int sizes[2];
1250
1251   /* The symbol on which the choice of sequence depends.  */
1252   symbolS *symbol;
1253 } mips_relax;
1254 \f
1255 /* Global variables used to decide whether a macro needs a warning.  */
1256 static struct {
1257   /* True if the macro is in a branch delay slot.  */
1258   bfd_boolean delay_slot_p;
1259
1260   /* Set to the length in bytes required if the macro is in a delay slot
1261      that requires a specific length of instruction, otherwise zero.  */
1262   unsigned int delay_slot_length;
1263
1264   /* For relaxable macros, sizes[0] is the length of the first alternative
1265      in bytes and sizes[1] is the length of the second alternative.
1266      For non-relaxable macros, both elements give the length of the
1267      macro in bytes.  */
1268   unsigned int sizes[2];
1269
1270   /* For relaxable macros, first_insn_sizes[0] is the length of the first
1271      instruction of the first alternative in bytes and first_insn_sizes[1]
1272      is the length of the first instruction of the second alternative.
1273      For non-relaxable macros, both elements give the length of the first
1274      instruction in bytes.
1275
1276      Set to zero if we haven't yet seen the first instruction.  */
1277   unsigned int first_insn_sizes[2];
1278
1279   /* For relaxable macros, insns[0] is the number of instructions for the
1280      first alternative and insns[1] is the number of instructions for the
1281      second alternative.
1282
1283      For non-relaxable macros, both elements give the number of
1284      instructions for the macro.  */
1285   unsigned int insns[2];
1286
1287   /* The first variant frag for this macro.  */
1288   fragS *first_frag;
1289 } mips_macro_warning;
1290 \f
1291 /* Prototypes for static functions.  */
1292
1293 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
1294
1295 static void append_insn
1296   (struct mips_cl_insn *, expressionS *, bfd_reloc_code_real_type *,
1297    bfd_boolean expansionp);
1298 static void mips_no_prev_insn (void);
1299 static void macro_build (expressionS *, const char *, const char *, ...);
1300 static void mips16_macro_build
1301   (expressionS *, const char *, const char *, va_list *);
1302 static void load_register (int, expressionS *, int);
1303 static void macro_start (void);
1304 static void macro_end (void);
1305 static void macro (struct mips_cl_insn *ip, char *str);
1306 static void mips16_macro (struct mips_cl_insn * ip);
1307 static void mips_ip (char *str, struct mips_cl_insn * ip);
1308 static void mips16_ip (char *str, struct mips_cl_insn * ip);
1309 static void mips16_immed
1310   (const char *, unsigned int, int, bfd_reloc_code_real_type, offsetT,
1311    unsigned int, unsigned long *);
1312 static size_t my_getSmallExpression
1313   (expressionS *, bfd_reloc_code_real_type *, char *);
1314 static void my_getExpression (expressionS *, char *);
1315 static void s_align (int);
1316 static void s_change_sec (int);
1317 static void s_change_section (int);
1318 static void s_cons (int);
1319 static void s_float_cons (int);
1320 static void s_mips_globl (int);
1321 static void s_option (int);
1322 static void s_mipsset (int);
1323 static void s_abicalls (int);
1324 static void s_cpload (int);
1325 static void s_cpsetup (int);
1326 static void s_cplocal (int);
1327 static void s_cprestore (int);
1328 static void s_cpreturn (int);
1329 static void s_dtprelword (int);
1330 static void s_dtpreldword (int);
1331 static void s_tprelword (int);
1332 static void s_tpreldword (int);
1333 static void s_gpvalue (int);
1334 static void s_gpword (int);
1335 static void s_gpdword (int);
1336 static void s_ehword (int);
1337 static void s_cpadd (int);
1338 static void s_insn (int);
1339 static void s_nan (int);
1340 static void s_module (int);
1341 static void s_mips_ent (int);
1342 static void s_mips_end (int);
1343 static void s_mips_frame (int);
1344 static void s_mips_mask (int reg_type);
1345 static void s_mips_stab (int);
1346 static void s_mips_weakext (int);
1347 static void s_mips_file (int);
1348 static void s_mips_loc (int);
1349 static bfd_boolean pic_need_relax (symbolS *, asection *);
1350 static int relaxed_branch_length (fragS *, asection *, int);
1351 static int relaxed_micromips_16bit_branch_length (fragS *, asection *, int);
1352 static int relaxed_micromips_32bit_branch_length (fragS *, asection *, int);
1353 static void file_mips_check_options (void);
1354
1355 /* Table and functions used to map between CPU/ISA names, and
1356    ISA levels, and CPU numbers.  */
1357
1358 struct mips_cpu_info
1359 {
1360   const char *name;           /* CPU or ISA name.  */
1361   int flags;                  /* MIPS_CPU_* flags.  */
1362   int ase;                    /* Set of ASEs implemented by the CPU.  */
1363   int isa;                    /* ISA level.  */
1364   int cpu;                    /* CPU number (default CPU if ISA).  */
1365 };
1366
1367 #define MIPS_CPU_IS_ISA         0x0001  /* Is this an ISA?  (If 0, a CPU.) */
1368
1369 static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1370 static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1371 static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
1372 \f
1373 /* Command-line options.  */
1374 const char *md_shortopts = "O::g::G:";
1375
1376 enum options
1377   {
1378     OPTION_MARCH = OPTION_MD_BASE,
1379     OPTION_MTUNE,
1380     OPTION_MIPS1,
1381     OPTION_MIPS2,
1382     OPTION_MIPS3,
1383     OPTION_MIPS4,
1384     OPTION_MIPS5,
1385     OPTION_MIPS32,
1386     OPTION_MIPS64,
1387     OPTION_MIPS32R2,
1388     OPTION_MIPS32R3,
1389     OPTION_MIPS32R5,
1390     OPTION_MIPS32R6,
1391     OPTION_MIPS64R2,
1392     OPTION_MIPS64R3,
1393     OPTION_MIPS64R5,
1394     OPTION_MIPS64R6,
1395     OPTION_MIPS16,
1396     OPTION_NO_MIPS16,
1397     OPTION_MIPS3D,
1398     OPTION_NO_MIPS3D,
1399     OPTION_MDMX,
1400     OPTION_NO_MDMX,
1401     OPTION_DSP,
1402     OPTION_NO_DSP,
1403     OPTION_MT,
1404     OPTION_NO_MT,
1405     OPTION_VIRT,
1406     OPTION_NO_VIRT,
1407     OPTION_MSA,
1408     OPTION_NO_MSA,
1409     OPTION_SMARTMIPS,
1410     OPTION_NO_SMARTMIPS,
1411     OPTION_DSPR2,
1412     OPTION_NO_DSPR2,
1413     OPTION_DSPR3,
1414     OPTION_NO_DSPR3,
1415     OPTION_EVA,
1416     OPTION_NO_EVA,
1417     OPTION_XPA,
1418     OPTION_NO_XPA,
1419     OPTION_MICROMIPS,
1420     OPTION_NO_MICROMIPS,
1421     OPTION_MCU,
1422     OPTION_NO_MCU,
1423     OPTION_COMPAT_ARCH_BASE,
1424     OPTION_M4650,
1425     OPTION_NO_M4650,
1426     OPTION_M4010,
1427     OPTION_NO_M4010,
1428     OPTION_M4100,
1429     OPTION_NO_M4100,
1430     OPTION_M3900,
1431     OPTION_NO_M3900,
1432     OPTION_M7000_HILO_FIX,
1433     OPTION_MNO_7000_HILO_FIX,
1434     OPTION_FIX_24K,
1435     OPTION_NO_FIX_24K,
1436     OPTION_FIX_RM7000,
1437     OPTION_NO_FIX_RM7000,
1438     OPTION_FIX_LOONGSON2F_JUMP,
1439     OPTION_NO_FIX_LOONGSON2F_JUMP,
1440     OPTION_FIX_LOONGSON2F_NOP,
1441     OPTION_NO_FIX_LOONGSON2F_NOP,
1442     OPTION_FIX_VR4120,
1443     OPTION_NO_FIX_VR4120,
1444     OPTION_FIX_VR4130,
1445     OPTION_NO_FIX_VR4130,
1446     OPTION_FIX_CN63XXP1,
1447     OPTION_NO_FIX_CN63XXP1,
1448     OPTION_TRAP,
1449     OPTION_BREAK,
1450     OPTION_EB,
1451     OPTION_EL,
1452     OPTION_FP32,
1453     OPTION_GP32,
1454     OPTION_CONSTRUCT_FLOATS,
1455     OPTION_NO_CONSTRUCT_FLOATS,
1456     OPTION_FP64,
1457     OPTION_FPXX,
1458     OPTION_GP64,
1459     OPTION_RELAX_BRANCH,
1460     OPTION_NO_RELAX_BRANCH,
1461     OPTION_INSN32,
1462     OPTION_NO_INSN32,
1463     OPTION_MSHARED,
1464     OPTION_MNO_SHARED,
1465     OPTION_MSYM32,
1466     OPTION_MNO_SYM32,
1467     OPTION_SOFT_FLOAT,
1468     OPTION_HARD_FLOAT,
1469     OPTION_SINGLE_FLOAT,
1470     OPTION_DOUBLE_FLOAT,
1471     OPTION_32,
1472     OPTION_CALL_SHARED,
1473     OPTION_CALL_NONPIC,
1474     OPTION_NON_SHARED,
1475     OPTION_XGOT,
1476     OPTION_MABI,
1477     OPTION_N32,
1478     OPTION_64,
1479     OPTION_MDEBUG,
1480     OPTION_NO_MDEBUG,
1481     OPTION_PDR,
1482     OPTION_NO_PDR,
1483     OPTION_MVXWORKS_PIC,
1484     OPTION_NAN,
1485     OPTION_ODD_SPREG,
1486     OPTION_NO_ODD_SPREG,
1487     OPTION_END_OF_ENUM
1488   };
1489
1490 struct option md_longopts[] =
1491 {
1492   /* Options which specify architecture.  */
1493   {"march", required_argument, NULL, OPTION_MARCH},
1494   {"mtune", required_argument, NULL, OPTION_MTUNE},
1495   {"mips0", no_argument, NULL, OPTION_MIPS1},
1496   {"mips1", no_argument, NULL, OPTION_MIPS1},
1497   {"mips2", no_argument, NULL, OPTION_MIPS2},
1498   {"mips3", no_argument, NULL, OPTION_MIPS3},
1499   {"mips4", no_argument, NULL, OPTION_MIPS4},
1500   {"mips5", no_argument, NULL, OPTION_MIPS5},
1501   {"mips32", no_argument, NULL, OPTION_MIPS32},
1502   {"mips64", no_argument, NULL, OPTION_MIPS64},
1503   {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
1504   {"mips32r3", no_argument, NULL, OPTION_MIPS32R3},
1505   {"mips32r5", no_argument, NULL, OPTION_MIPS32R5},
1506   {"mips32r6", no_argument, NULL, OPTION_MIPS32R6},
1507   {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
1508   {"mips64r3", no_argument, NULL, OPTION_MIPS64R3},
1509   {"mips64r5", no_argument, NULL, OPTION_MIPS64R5},
1510   {"mips64r6", no_argument, NULL, OPTION_MIPS64R6},
1511
1512   /* Options which specify Application Specific Extensions (ASEs).  */
1513   {"mips16", no_argument, NULL, OPTION_MIPS16},
1514   {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
1515   {"mips3d", no_argument, NULL, OPTION_MIPS3D},
1516   {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
1517   {"mdmx", no_argument, NULL, OPTION_MDMX},
1518   {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
1519   {"mdsp", no_argument, NULL, OPTION_DSP},
1520   {"mno-dsp", no_argument, NULL, OPTION_NO_DSP},
1521   {"mmt", no_argument, NULL, OPTION_MT},
1522   {"mno-mt", no_argument, NULL, OPTION_NO_MT},
1523   {"msmartmips", no_argument, NULL, OPTION_SMARTMIPS},
1524   {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS},
1525   {"mdspr2", no_argument, NULL, OPTION_DSPR2},
1526   {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2},
1527   {"mdspr3", no_argument, NULL, OPTION_DSPR3},
1528   {"mno-dspr3", no_argument, NULL, OPTION_NO_DSPR3},
1529   {"meva", no_argument, NULL, OPTION_EVA},
1530   {"mno-eva", no_argument, NULL, OPTION_NO_EVA},
1531   {"mmicromips", no_argument, NULL, OPTION_MICROMIPS},
1532   {"mno-micromips", no_argument, NULL, OPTION_NO_MICROMIPS},
1533   {"mmcu", no_argument, NULL, OPTION_MCU},
1534   {"mno-mcu", no_argument, NULL, OPTION_NO_MCU},
1535   {"mvirt", no_argument, NULL, OPTION_VIRT},
1536   {"mno-virt", no_argument, NULL, OPTION_NO_VIRT},
1537   {"mmsa", no_argument, NULL, OPTION_MSA},
1538   {"mno-msa", no_argument, NULL, OPTION_NO_MSA},
1539   {"mxpa", no_argument, NULL, OPTION_XPA},
1540   {"mno-xpa", no_argument, NULL, OPTION_NO_XPA},
1541
1542   /* Old-style architecture options.  Don't add more of these.  */
1543   {"m4650", no_argument, NULL, OPTION_M4650},
1544   {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
1545   {"m4010", no_argument, NULL, OPTION_M4010},
1546   {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
1547   {"m4100", no_argument, NULL, OPTION_M4100},
1548   {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
1549   {"m3900", no_argument, NULL, OPTION_M3900},
1550   {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
1551
1552   /* Options which enable bug fixes.  */
1553   {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
1554   {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
1555   {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
1556   {"mfix-loongson2f-jump", no_argument, NULL, OPTION_FIX_LOONGSON2F_JUMP},
1557   {"mno-fix-loongson2f-jump", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_JUMP},
1558   {"mfix-loongson2f-nop", no_argument, NULL, OPTION_FIX_LOONGSON2F_NOP},
1559   {"mno-fix-loongson2f-nop", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_NOP},
1560   {"mfix-vr4120",    no_argument, NULL, OPTION_FIX_VR4120},
1561   {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
1562   {"mfix-vr4130",    no_argument, NULL, OPTION_FIX_VR4130},
1563   {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
1564   {"mfix-24k",    no_argument, NULL, OPTION_FIX_24K},
1565   {"mno-fix-24k", no_argument, NULL, OPTION_NO_FIX_24K},
1566   {"mfix-rm7000",    no_argument, NULL, OPTION_FIX_RM7000},
1567   {"mno-fix-rm7000", no_argument, NULL, OPTION_NO_FIX_RM7000},
1568   {"mfix-cn63xxp1", no_argument, NULL, OPTION_FIX_CN63XXP1},
1569   {"mno-fix-cn63xxp1", no_argument, NULL, OPTION_NO_FIX_CN63XXP1},
1570
1571   /* Miscellaneous options.  */
1572   {"trap", no_argument, NULL, OPTION_TRAP},
1573   {"no-break", no_argument, NULL, OPTION_TRAP},
1574   {"break", no_argument, NULL, OPTION_BREAK},
1575   {"no-trap", no_argument, NULL, OPTION_BREAK},
1576   {"EB", no_argument, NULL, OPTION_EB},
1577   {"EL", no_argument, NULL, OPTION_EL},
1578   {"mfp32", no_argument, NULL, OPTION_FP32},
1579   {"mgp32", no_argument, NULL, OPTION_GP32},
1580   {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
1581   {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
1582   {"mfp64", no_argument, NULL, OPTION_FP64},
1583   {"mfpxx", no_argument, NULL, OPTION_FPXX},
1584   {"mgp64", no_argument, NULL, OPTION_GP64},
1585   {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
1586   {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
1587   {"minsn32", no_argument, NULL, OPTION_INSN32},
1588   {"mno-insn32", no_argument, NULL, OPTION_NO_INSN32},
1589   {"mshared", no_argument, NULL, OPTION_MSHARED},
1590   {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
1591   {"msym32", no_argument, NULL, OPTION_MSYM32},
1592   {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
1593   {"msoft-float", no_argument, NULL, OPTION_SOFT_FLOAT},
1594   {"mhard-float", no_argument, NULL, OPTION_HARD_FLOAT},
1595   {"msingle-float", no_argument, NULL, OPTION_SINGLE_FLOAT},
1596   {"mdouble-float", no_argument, NULL, OPTION_DOUBLE_FLOAT},
1597   {"modd-spreg", no_argument, NULL, OPTION_ODD_SPREG},
1598   {"mno-odd-spreg", no_argument, NULL, OPTION_NO_ODD_SPREG},
1599
1600   /* Strictly speaking this next option is ELF specific,
1601      but we allow it for other ports as well in order to
1602      make testing easier.  */
1603   {"32", no_argument, NULL, OPTION_32},
1604
1605   /* ELF-specific options.  */
1606   {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
1607   {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
1608   {"call_nonpic", no_argument, NULL, OPTION_CALL_NONPIC},
1609   {"non_shared",  no_argument, NULL, OPTION_NON_SHARED},
1610   {"xgot", no_argument, NULL, OPTION_XGOT},
1611   {"mabi", required_argument, NULL, OPTION_MABI},
1612   {"n32", no_argument, NULL, OPTION_N32},
1613   {"64", no_argument, NULL, OPTION_64},
1614   {"mdebug", no_argument, NULL, OPTION_MDEBUG},
1615   {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
1616   {"mpdr", no_argument, NULL, OPTION_PDR},
1617   {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
1618   {"mvxworks-pic", no_argument, NULL, OPTION_MVXWORKS_PIC},
1619   {"mnan", required_argument, NULL, OPTION_NAN},
1620
1621   {NULL, no_argument, NULL, 0}
1622 };
1623 size_t md_longopts_size = sizeof (md_longopts);
1624 \f
1625 /* Information about either an Application Specific Extension or an
1626    optional architecture feature that, for simplicity, we treat in the
1627    same way as an ASE.  */
1628 struct mips_ase
1629 {
1630   /* The name of the ASE, used in both the command-line and .set options.  */
1631   const char *name;
1632
1633   /* The associated ASE_* flags.  If the ASE is available on both 32-bit
1634      and 64-bit architectures, the flags here refer to the subset that
1635      is available on both.  */
1636   unsigned int flags;
1637
1638   /* The ASE_* flag used for instructions that are available on 64-bit
1639      architectures but that are not included in FLAGS.  */
1640   unsigned int flags64;
1641
1642   /* The command-line options that turn the ASE on and off.  */
1643   int option_on;
1644   int option_off;
1645
1646   /* The minimum required architecture revisions for MIPS32, MIPS64,
1647      microMIPS32 and microMIPS64, or -1 if the extension isn't supported.  */
1648   int mips32_rev;
1649   int mips64_rev;
1650   int micromips32_rev;
1651   int micromips64_rev;
1652
1653   /* The architecture where the ASE was removed or -1 if the extension has not
1654      been removed.  */
1655   int rem_rev;
1656 };
1657
1658 /* A table of all supported ASEs.  */
1659 static const struct mips_ase mips_ases[] = {
1660   { "dsp", ASE_DSP, ASE_DSP64,
1661     OPTION_DSP, OPTION_NO_DSP,
1662     2, 2, 2, 2,
1663     -1 },
1664
1665   { "dspr2", ASE_DSP | ASE_DSPR2, 0,
1666     OPTION_DSPR2, OPTION_NO_DSPR2,
1667     2, 2, 2, 2,
1668     -1 },
1669
1670   { "dspr3", ASE_DSP | ASE_DSPR2 | ASE_DSPR3, 0,
1671     OPTION_DSPR3, OPTION_NO_DSPR3,
1672     6, 6, -1, -1,
1673     -1 },
1674
1675   { "eva", ASE_EVA, 0,
1676     OPTION_EVA, OPTION_NO_EVA,
1677      2,  2,  2,  2,
1678     -1 },
1679
1680   { "mcu", ASE_MCU, 0,
1681     OPTION_MCU, OPTION_NO_MCU,
1682      2,  2,  2,  2,
1683     -1 },
1684
1685   /* Deprecated in MIPS64r5, but we don't implement that yet.  */
1686   { "mdmx", ASE_MDMX, 0,
1687     OPTION_MDMX, OPTION_NO_MDMX,
1688     -1, 1, -1, -1,
1689      6 },
1690
1691   /* Requires 64-bit FPRs, so the minimum MIPS32 revision is 2.  */
1692   { "mips3d", ASE_MIPS3D, 0,
1693     OPTION_MIPS3D, OPTION_NO_MIPS3D,
1694     2, 1, -1, -1,
1695     6 },
1696
1697   { "mt", ASE_MT, 0,
1698     OPTION_MT, OPTION_NO_MT,
1699      2,  2, -1, -1,
1700     -1 },
1701
1702   { "smartmips", ASE_SMARTMIPS, 0,
1703     OPTION_SMARTMIPS, OPTION_NO_SMARTMIPS,
1704     1, -1, -1, -1,
1705     6 },
1706
1707   { "virt", ASE_VIRT, ASE_VIRT64,
1708     OPTION_VIRT, OPTION_NO_VIRT,
1709      2,  2,  2,  2,
1710     -1 },
1711
1712   { "msa", ASE_MSA, ASE_MSA64,
1713     OPTION_MSA, OPTION_NO_MSA,
1714      2,  2,  2,  2,
1715     -1 },
1716
1717   { "xpa", ASE_XPA, 0,
1718     OPTION_XPA, OPTION_NO_XPA,
1719      2,  2, -1, -1,
1720     -1 },
1721 };
1722
1723 /* The set of ASEs that require -mfp64.  */
1724 #define FP64_ASES (ASE_MIPS3D | ASE_MDMX | ASE_MSA)
1725
1726 /* Groups of ASE_* flags that represent different revisions of an ASE.  */
1727 static const unsigned int mips_ase_groups[] = {
1728   ASE_DSP | ASE_DSPR2 | ASE_DSPR3
1729 };
1730 \f
1731 /* Pseudo-op table.
1732
1733    The following pseudo-ops from the Kane and Heinrich MIPS book
1734    should be defined here, but are currently unsupported: .alias,
1735    .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1736
1737    The following pseudo-ops from the Kane and Heinrich MIPS book are
1738    specific to the type of debugging information being generated, and
1739    should be defined by the object format: .aent, .begin, .bend,
1740    .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1741    .vreg.
1742
1743    The following pseudo-ops from the Kane and Heinrich MIPS book are
1744    not MIPS CPU specific, but are also not specific to the object file
1745    format.  This file is probably the best place to define them, but
1746    they are not currently supported: .asm0, .endr, .lab, .struct.  */
1747
1748 static const pseudo_typeS mips_pseudo_table[] =
1749 {
1750   /* MIPS specific pseudo-ops.  */
1751   {"option", s_option, 0},
1752   {"set", s_mipsset, 0},
1753   {"rdata", s_change_sec, 'r'},
1754   {"sdata", s_change_sec, 's'},
1755   {"livereg", s_ignore, 0},
1756   {"abicalls", s_abicalls, 0},
1757   {"cpload", s_cpload, 0},
1758   {"cpsetup", s_cpsetup, 0},
1759   {"cplocal", s_cplocal, 0},
1760   {"cprestore", s_cprestore, 0},
1761   {"cpreturn", s_cpreturn, 0},
1762   {"dtprelword", s_dtprelword, 0},
1763   {"dtpreldword", s_dtpreldword, 0},
1764   {"tprelword", s_tprelword, 0},
1765   {"tpreldword", s_tpreldword, 0},
1766   {"gpvalue", s_gpvalue, 0},
1767   {"gpword", s_gpword, 0},
1768   {"gpdword", s_gpdword, 0},
1769   {"ehword", s_ehword, 0},
1770   {"cpadd", s_cpadd, 0},
1771   {"insn", s_insn, 0},
1772   {"nan", s_nan, 0},
1773   {"module", s_module, 0},
1774
1775   /* Relatively generic pseudo-ops that happen to be used on MIPS
1776      chips.  */
1777   {"asciiz", stringer, 8 + 1},
1778   {"bss", s_change_sec, 'b'},
1779   {"err", s_err, 0},
1780   {"half", s_cons, 1},
1781   {"dword", s_cons, 3},
1782   {"weakext", s_mips_weakext, 0},
1783   {"origin", s_org, 0},
1784   {"repeat", s_rept, 0},
1785
1786   /* For MIPS this is non-standard, but we define it for consistency.  */
1787   {"sbss", s_change_sec, 'B'},
1788
1789   /* These pseudo-ops are defined in read.c, but must be overridden
1790      here for one reason or another.  */
1791   {"align", s_align, 0},
1792   {"byte", s_cons, 0},
1793   {"data", s_change_sec, 'd'},
1794   {"double", s_float_cons, 'd'},
1795   {"float", s_float_cons, 'f'},
1796   {"globl", s_mips_globl, 0},
1797   {"global", s_mips_globl, 0},
1798   {"hword", s_cons, 1},
1799   {"int", s_cons, 2},
1800   {"long", s_cons, 2},
1801   {"octa", s_cons, 4},
1802   {"quad", s_cons, 3},
1803   {"section", s_change_section, 0},
1804   {"short", s_cons, 1},
1805   {"single", s_float_cons, 'f'},
1806   {"stabd", s_mips_stab, 'd'},
1807   {"stabn", s_mips_stab, 'n'},
1808   {"stabs", s_mips_stab, 's'},
1809   {"text", s_change_sec, 't'},
1810   {"word", s_cons, 2},
1811
1812   { "extern", ecoff_directive_extern, 0},
1813
1814   { NULL, NULL, 0 },
1815 };
1816
1817 static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1818 {
1819   /* These pseudo-ops should be defined by the object file format.
1820      However, a.out doesn't support them, so we have versions here.  */
1821   {"aent", s_mips_ent, 1},
1822   {"bgnb", s_ignore, 0},
1823   {"end", s_mips_end, 0},
1824   {"endb", s_ignore, 0},
1825   {"ent", s_mips_ent, 0},
1826   {"file", s_mips_file, 0},
1827   {"fmask", s_mips_mask, 'F'},
1828   {"frame", s_mips_frame, 0},
1829   {"loc", s_mips_loc, 0},
1830   {"mask", s_mips_mask, 'R'},
1831   {"verstamp", s_ignore, 0},
1832   { NULL, NULL, 0 },
1833 };
1834
1835 /* Export the ABI address size for use by TC_ADDRESS_BYTES for the
1836    purpose of the `.dc.a' internal pseudo-op.  */
1837
1838 int
1839 mips_address_bytes (void)
1840 {
1841   file_mips_check_options ();
1842   return HAVE_64BIT_ADDRESSES ? 8 : 4;
1843 }
1844
1845 extern void pop_insert (const pseudo_typeS *);
1846
1847 void
1848 mips_pop_insert (void)
1849 {
1850   pop_insert (mips_pseudo_table);
1851   if (! ECOFF_DEBUGGING)
1852     pop_insert (mips_nonecoff_pseudo_table);
1853 }
1854 \f
1855 /* Symbols labelling the current insn.  */
1856
1857 struct insn_label_list
1858 {
1859   struct insn_label_list *next;
1860   symbolS *label;
1861 };
1862
1863 static struct insn_label_list *free_insn_labels;
1864 #define label_list tc_segment_info_data.labels
1865
1866 static void mips_clear_insn_labels (void);
1867 static void mips_mark_labels (void);
1868 static void mips_compressed_mark_labels (void);
1869
1870 static inline void
1871 mips_clear_insn_labels (void)
1872 {
1873   struct insn_label_list **pl;
1874   segment_info_type *si;
1875
1876   if (now_seg)
1877     {
1878       for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1879         ;
1880
1881       si = seg_info (now_seg);
1882       *pl = si->label_list;
1883       si->label_list = NULL;
1884     }
1885 }
1886
1887 /* Mark instruction labels in MIPS16/microMIPS mode.  */
1888
1889 static inline void
1890 mips_mark_labels (void)
1891 {
1892   if (HAVE_CODE_COMPRESSION)
1893     mips_compressed_mark_labels ();
1894 }
1895 \f
1896 static char *expr_end;
1897
1898 /* An expression in a macro instruction.  This is set by mips_ip and
1899    mips16_ip and when populated is always an O_constant.  */
1900
1901 static expressionS imm_expr;
1902
1903 /* The relocatable field in an instruction and the relocs associated
1904    with it.  These variables are used for instructions like LUI and
1905    JAL as well as true offsets.  They are also used for address
1906    operands in macros.  */
1907
1908 static expressionS offset_expr;
1909 static bfd_reloc_code_real_type offset_reloc[3]
1910   = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1911
1912 /* This is set to the resulting size of the instruction to be produced
1913    by mips16_ip if an explicit extension is used or by mips_ip if an
1914    explicit size is supplied.  */
1915
1916 static unsigned int forced_insn_length;
1917
1918 /* True if we are assembling an instruction.  All dot symbols defined during
1919    this time should be treated as code labels.  */
1920
1921 static bfd_boolean mips_assembling_insn;
1922
1923 /* The pdr segment for per procedure frame/regmask info.  Not used for
1924    ECOFF debugging.  */
1925
1926 static segT pdr_seg;
1927
1928 /* The default target format to use.  */
1929
1930 #if defined (TE_FreeBSD)
1931 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips-freebsd"
1932 #elif defined (TE_TMIPS)
1933 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips"
1934 #else
1935 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX ENDIAN "mips"
1936 #endif
1937
1938 const char *
1939 mips_target_format (void)
1940 {
1941   switch (OUTPUT_FLAVOR)
1942     {
1943     case bfd_target_elf_flavour:
1944 #ifdef TE_VXWORKS
1945       if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI)
1946         return (target_big_endian
1947                 ? "elf32-bigmips-vxworks"
1948                 : "elf32-littlemips-vxworks");
1949 #endif
1950       return (target_big_endian
1951               ? (HAVE_64BIT_OBJECTS
1952                  ? ELF_TARGET ("elf64-", "big")
1953                  : (HAVE_NEWABI
1954                     ? ELF_TARGET ("elf32-n", "big")
1955                     : ELF_TARGET ("elf32-", "big")))
1956               : (HAVE_64BIT_OBJECTS
1957                  ? ELF_TARGET ("elf64-", "little")
1958                  : (HAVE_NEWABI
1959                     ? ELF_TARGET ("elf32-n", "little")
1960                     : ELF_TARGET ("elf32-", "little"))));
1961     default:
1962       abort ();
1963       return NULL;
1964     }
1965 }
1966
1967 /* Return the ISA revision that is currently in use, or 0 if we are
1968    generating code for MIPS V or below.  */
1969
1970 static int
1971 mips_isa_rev (void)
1972 {
1973   if (mips_opts.isa == ISA_MIPS32R2 || mips_opts.isa == ISA_MIPS64R2)
1974     return 2;
1975
1976   if (mips_opts.isa == ISA_MIPS32R3 || mips_opts.isa == ISA_MIPS64R3)
1977     return 3;
1978
1979   if (mips_opts.isa == ISA_MIPS32R5 || mips_opts.isa == ISA_MIPS64R5)
1980     return 5;
1981
1982   if (mips_opts.isa == ISA_MIPS32R6 || mips_opts.isa == ISA_MIPS64R6)
1983     return 6;
1984
1985   /* microMIPS implies revision 2 or above.  */
1986   if (mips_opts.micromips)
1987     return 2;
1988
1989   if (mips_opts.isa == ISA_MIPS32 || mips_opts.isa == ISA_MIPS64)
1990     return 1;
1991
1992   return 0;
1993 }
1994
1995 /* Return the mask of all ASEs that are revisions of those in FLAGS.  */
1996
1997 static unsigned int
1998 mips_ase_mask (unsigned int flags)
1999 {
2000   unsigned int i;
2001
2002   for (i = 0; i < ARRAY_SIZE (mips_ase_groups); i++)
2003     if (flags & mips_ase_groups[i])
2004       flags |= mips_ase_groups[i];
2005   return flags;
2006 }
2007
2008 /* Check whether the current ISA supports ASE.  Issue a warning if
2009    appropriate.  */
2010
2011 static void
2012 mips_check_isa_supports_ase (const struct mips_ase *ase)
2013 {
2014   const char *base;
2015   int min_rev, size;
2016   static unsigned int warned_isa;
2017   static unsigned int warned_fp32;
2018
2019   if (ISA_HAS_64BIT_REGS (mips_opts.isa))
2020     min_rev = mips_opts.micromips ? ase->micromips64_rev : ase->mips64_rev;
2021   else
2022     min_rev = mips_opts.micromips ? ase->micromips32_rev : ase->mips32_rev;
2023   if ((min_rev < 0 || mips_isa_rev () < min_rev)
2024       && (warned_isa & ase->flags) != ase->flags)
2025     {
2026       warned_isa |= ase->flags;
2027       base = mips_opts.micromips ? "microMIPS" : "MIPS";
2028       size = ISA_HAS_64BIT_REGS (mips_opts.isa) ? 64 : 32;
2029       if (min_rev < 0)
2030         as_warn (_("the %d-bit %s architecture does not support the"
2031                    " `%s' extension"), size, base, ase->name);
2032       else
2033         as_warn (_("the `%s' extension requires %s%d revision %d or greater"),
2034                  ase->name, base, size, min_rev);
2035     }
2036   else if ((ase->rem_rev > 0 && mips_isa_rev () >= ase->rem_rev)
2037            && (warned_isa & ase->flags) != ase->flags)
2038     {
2039       warned_isa |= ase->flags;
2040       base = mips_opts.micromips ? "microMIPS" : "MIPS";
2041       size = ISA_HAS_64BIT_REGS (mips_opts.isa) ? 64 : 32;
2042       as_warn (_("the `%s' extension was removed in %s%d revision %d"),
2043                ase->name, base, size, ase->rem_rev);
2044     }
2045
2046   if ((ase->flags & FP64_ASES)
2047       && mips_opts.fp != 64
2048       && (warned_fp32 & ase->flags) != ase->flags)
2049     {
2050       warned_fp32 |= ase->flags;
2051       as_warn (_("the `%s' extension requires 64-bit FPRs"), ase->name);
2052     }
2053 }
2054
2055 /* Check all enabled ASEs to see whether they are supported by the
2056    chosen architecture.  */
2057
2058 static void
2059 mips_check_isa_supports_ases (void)
2060 {
2061   unsigned int i, mask;
2062
2063   for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
2064     {
2065       mask = mips_ase_mask (mips_ases[i].flags);
2066       if ((mips_opts.ase & mask) == mips_ases[i].flags)
2067         mips_check_isa_supports_ase (&mips_ases[i]);
2068     }
2069 }
2070
2071 /* Set the state of ASE to ENABLED_P.  Return the mask of ASE_* flags
2072    that were affected.  */
2073
2074 static unsigned int
2075 mips_set_ase (const struct mips_ase *ase, struct mips_set_options *opts,
2076               bfd_boolean enabled_p)
2077 {
2078   unsigned int mask;
2079
2080   mask = mips_ase_mask (ase->flags);
2081   opts->ase &= ~mask;
2082   if (enabled_p)
2083     opts->ase |= ase->flags;
2084   return mask;
2085 }
2086
2087 /* Return the ASE called NAME, or null if none.  */
2088
2089 static const struct mips_ase *
2090 mips_lookup_ase (const char *name)
2091 {
2092   unsigned int i;
2093
2094   for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
2095     if (strcmp (name, mips_ases[i].name) == 0)
2096       return &mips_ases[i];
2097   return NULL;
2098 }
2099
2100 /* Return the length of a microMIPS instruction in bytes.  If bits of
2101    the mask beyond the low 16 are 0, then it is a 16-bit instruction,
2102    otherwise it is a 32-bit instruction.  */
2103
2104 static inline unsigned int
2105 micromips_insn_length (const struct mips_opcode *mo)
2106 {
2107   return (mo->mask >> 16) == 0 ? 2 : 4;
2108 }
2109
2110 /* Return the length of MIPS16 instruction OPCODE.  */
2111
2112 static inline unsigned int
2113 mips16_opcode_length (unsigned long opcode)
2114 {
2115   return (opcode >> 16) == 0 ? 2 : 4;
2116 }
2117
2118 /* Return the length of instruction INSN.  */
2119
2120 static inline unsigned int
2121 insn_length (const struct mips_cl_insn *insn)
2122 {
2123   if (mips_opts.micromips)
2124     return micromips_insn_length (insn->insn_mo);
2125   else if (mips_opts.mips16)
2126     return mips16_opcode_length (insn->insn_opcode);
2127   else
2128     return 4;
2129 }
2130
2131 /* Initialise INSN from opcode entry MO.  Leave its position unspecified.  */
2132
2133 static void
2134 create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
2135 {
2136   size_t i;
2137
2138   insn->insn_mo = mo;
2139   insn->insn_opcode = mo->match;
2140   insn->frag = NULL;
2141   insn->where = 0;
2142   for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
2143     insn->fixp[i] = NULL;
2144   insn->fixed_p = (mips_opts.noreorder > 0);
2145   insn->noreorder_p = (mips_opts.noreorder > 0);
2146   insn->mips16_absolute_jump_p = 0;
2147   insn->complete_p = 0;
2148   insn->cleared_p = 0;
2149 }
2150
2151 /* Get a list of all the operands in INSN.  */
2152
2153 static const struct mips_operand_array *
2154 insn_operands (const struct mips_cl_insn *insn)
2155 {
2156   if (insn->insn_mo >= &mips_opcodes[0]
2157       && insn->insn_mo < &mips_opcodes[NUMOPCODES])
2158     return &mips_operands[insn->insn_mo - &mips_opcodes[0]];
2159
2160   if (insn->insn_mo >= &mips16_opcodes[0]
2161       && insn->insn_mo < &mips16_opcodes[bfd_mips16_num_opcodes])
2162     return &mips16_operands[insn->insn_mo - &mips16_opcodes[0]];
2163
2164   if (insn->insn_mo >= &micromips_opcodes[0]
2165       && insn->insn_mo < &micromips_opcodes[bfd_micromips_num_opcodes])
2166     return &micromips_operands[insn->insn_mo - &micromips_opcodes[0]];
2167
2168   abort ();
2169 }
2170
2171 /* Get a description of operand OPNO of INSN.  */
2172
2173 static const struct mips_operand *
2174 insn_opno (const struct mips_cl_insn *insn, unsigned opno)
2175 {
2176   const struct mips_operand_array *operands;
2177
2178   operands = insn_operands (insn);
2179   if (opno >= MAX_OPERANDS || !operands->operand[opno])
2180     abort ();
2181   return operands->operand[opno];
2182 }
2183
2184 /* Install UVAL as the value of OPERAND in INSN.  */
2185
2186 static inline void
2187 insn_insert_operand (struct mips_cl_insn *insn,
2188                      const struct mips_operand *operand, unsigned int uval)
2189 {
2190   insn->insn_opcode = mips_insert_operand (operand, insn->insn_opcode, uval);
2191 }
2192
2193 /* Extract the value of OPERAND from INSN.  */
2194
2195 static inline unsigned
2196 insn_extract_operand (const struct mips_cl_insn *insn,
2197                       const struct mips_operand *operand)
2198 {
2199   return mips_extract_operand (operand, insn->insn_opcode);
2200 }
2201
2202 /* Record the current MIPS16/microMIPS mode in now_seg.  */
2203
2204 static void
2205 mips_record_compressed_mode (void)
2206 {
2207   segment_info_type *si;
2208
2209   si = seg_info (now_seg);
2210   if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
2211     si->tc_segment_info_data.mips16 = mips_opts.mips16;
2212   if (si->tc_segment_info_data.micromips != mips_opts.micromips)
2213     si->tc_segment_info_data.micromips = mips_opts.micromips;
2214 }
2215
2216 /* Read a standard MIPS instruction from BUF.  */
2217
2218 static unsigned long
2219 read_insn (char *buf)
2220 {
2221   if (target_big_endian)
2222     return bfd_getb32 ((bfd_byte *) buf);
2223   else
2224     return bfd_getl32 ((bfd_byte *) buf);
2225 }
2226
2227 /* Write standard MIPS instruction INSN to BUF.  Return a pointer to
2228    the next byte.  */
2229
2230 static char *
2231 write_insn (char *buf, unsigned int insn)
2232 {
2233   md_number_to_chars (buf, insn, 4);
2234   return buf + 4;
2235 }
2236
2237 /* Read a microMIPS or MIPS16 opcode from BUF, given that it
2238    has length LENGTH.  */
2239
2240 static unsigned long
2241 read_compressed_insn (char *buf, unsigned int length)
2242 {
2243   unsigned long insn;
2244   unsigned int i;
2245
2246   insn = 0;
2247   for (i = 0; i < length; i += 2)
2248     {
2249       insn <<= 16;
2250       if (target_big_endian)
2251         insn |= bfd_getb16 ((char *) buf);
2252       else
2253         insn |= bfd_getl16 ((char *) buf);
2254       buf += 2;
2255     }
2256   return insn;
2257 }
2258
2259 /* Write microMIPS or MIPS16 instruction INSN to BUF, given that the
2260    instruction is LENGTH bytes long.  Return a pointer to the next byte.  */
2261
2262 static char *
2263 write_compressed_insn (char *buf, unsigned int insn, unsigned int length)
2264 {
2265   unsigned int i;
2266
2267   for (i = 0; i < length; i += 2)
2268     md_number_to_chars (buf + i, insn >> ((length - i - 2) * 8), 2);
2269   return buf + length;
2270 }
2271
2272 /* Install INSN at the location specified by its "frag" and "where" fields.  */
2273
2274 static void
2275 install_insn (const struct mips_cl_insn *insn)
2276 {
2277   char *f = insn->frag->fr_literal + insn->where;
2278   if (HAVE_CODE_COMPRESSION)
2279     write_compressed_insn (f, insn->insn_opcode, insn_length (insn));
2280   else
2281     write_insn (f, insn->insn_opcode);
2282   mips_record_compressed_mode ();
2283 }
2284
2285 /* Move INSN to offset WHERE in FRAG.  Adjust the fixups accordingly
2286    and install the opcode in the new location.  */
2287
2288 static void
2289 move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
2290 {
2291   size_t i;
2292
2293   insn->frag = frag;
2294   insn->where = where;
2295   for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
2296     if (insn->fixp[i] != NULL)
2297       {
2298         insn->fixp[i]->fx_frag = frag;
2299         insn->fixp[i]->fx_where = where;
2300       }
2301   install_insn (insn);
2302 }
2303
2304 /* Add INSN to the end of the output.  */
2305
2306 static void
2307 add_fixed_insn (struct mips_cl_insn *insn)
2308 {
2309   char *f = frag_more (insn_length (insn));
2310   move_insn (insn, frag_now, f - frag_now->fr_literal);
2311 }
2312
2313 /* Start a variant frag and move INSN to the start of the variant part,
2314    marking it as fixed.  The other arguments are as for frag_var.  */
2315
2316 static void
2317 add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
2318                   relax_substateT subtype, symbolS *symbol, offsetT offset)
2319 {
2320   frag_grow (max_chars);
2321   move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
2322   insn->fixed_p = 1;
2323   frag_var (rs_machine_dependent, max_chars, var,
2324             subtype, symbol, offset, NULL);
2325 }
2326
2327 /* Insert N copies of INSN into the history buffer, starting at
2328    position FIRST.  Neither FIRST nor N need to be clipped.  */
2329
2330 static void
2331 insert_into_history (unsigned int first, unsigned int n,
2332                      const struct mips_cl_insn *insn)
2333 {
2334   if (mips_relax.sequence != 2)
2335     {
2336       unsigned int i;
2337
2338       for (i = ARRAY_SIZE (history); i-- > first;)
2339         if (i >= first + n)
2340           history[i] = history[i - n];
2341         else
2342           history[i] = *insn;
2343     }
2344 }
2345
2346 /* Clear the error in insn_error.  */
2347
2348 static void
2349 clear_insn_error (void)
2350 {
2351   memset (&insn_error, 0, sizeof (insn_error));
2352 }
2353
2354 /* Possibly record error message MSG for the current instruction.
2355    If the error is about a particular argument, ARGNUM is the 1-based
2356    number of that argument, otherwise it is 0.  FORMAT is the format
2357    of MSG.  Return true if MSG was used, false if the current message
2358    was kept.  */
2359
2360 static bfd_boolean
2361 set_insn_error_format (int argnum, enum mips_insn_error_format format,
2362                        const char *msg)
2363 {
2364   if (argnum == 0)
2365     {
2366       /* Give priority to errors against specific arguments, and to
2367          the first whole-instruction message.  */
2368       if (insn_error.msg)
2369         return FALSE;
2370     }
2371   else
2372     {
2373       /* Keep insn_error if it is against a later argument.  */
2374       if (argnum < insn_error.min_argnum)
2375         return FALSE;
2376
2377       /* If both errors are against the same argument but are different,
2378          give up on reporting a specific error for this argument.
2379          See the comment about mips_insn_error for details.  */
2380       if (argnum == insn_error.min_argnum
2381           && insn_error.msg
2382           && strcmp (insn_error.msg, msg) != 0)
2383         {
2384           insn_error.msg = 0;
2385           insn_error.min_argnum += 1;
2386           return FALSE;
2387         }
2388     }
2389   insn_error.min_argnum = argnum;
2390   insn_error.format = format;
2391   insn_error.msg = msg;
2392   return TRUE;
2393 }
2394
2395 /* Record an instruction error with no % format fields.  ARGNUM and MSG are
2396    as for set_insn_error_format.  */
2397
2398 static void
2399 set_insn_error (int argnum, const char *msg)
2400 {
2401   set_insn_error_format (argnum, ERR_FMT_PLAIN, msg);
2402 }
2403
2404 /* Record an instruction error with one %d field I.  ARGNUM and MSG are
2405    as for set_insn_error_format.  */
2406
2407 static void
2408 set_insn_error_i (int argnum, const char *msg, int i)
2409 {
2410   if (set_insn_error_format (argnum, ERR_FMT_I, msg))
2411     insn_error.u.i = i;
2412 }
2413
2414 /* Record an instruction error with two %s fields S1 and S2.  ARGNUM and MSG
2415    are as for set_insn_error_format.  */
2416
2417 static void
2418 set_insn_error_ss (int argnum, const char *msg, const char *s1, const char *s2)
2419 {
2420   if (set_insn_error_format (argnum, ERR_FMT_SS, msg))
2421     {
2422       insn_error.u.ss[0] = s1;
2423       insn_error.u.ss[1] = s2;
2424     }
2425 }
2426
2427 /* Report the error in insn_error, which is against assembly code STR.  */
2428
2429 static void
2430 report_insn_error (const char *str)
2431 {
2432   const char *msg = concat (insn_error.msg, " `%s'", NULL);
2433
2434   switch (insn_error.format)
2435     {
2436     case ERR_FMT_PLAIN:
2437       as_bad (msg, str);
2438       break;
2439
2440     case ERR_FMT_I:
2441       as_bad (msg, insn_error.u.i, str);
2442       break;
2443
2444     case ERR_FMT_SS:
2445       as_bad (msg, insn_error.u.ss[0], insn_error.u.ss[1], str);
2446       break;
2447     }
2448
2449   free ((char *) msg);
2450 }
2451
2452 /* Initialize vr4120_conflicts.  There is a bit of duplication here:
2453    the idea is to make it obvious at a glance that each errata is
2454    included.  */
2455
2456 static void
2457 init_vr4120_conflicts (void)
2458 {
2459 #define CONFLICT(FIRST, SECOND) \
2460     vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
2461
2462   /* Errata 21 - [D]DIV[U] after [D]MACC */
2463   CONFLICT (MACC, DIV);
2464   CONFLICT (DMACC, DIV);
2465
2466   /* Errata 23 - Continuous DMULT[U]/DMACC instructions.  */
2467   CONFLICT (DMULT, DMULT);
2468   CONFLICT (DMULT, DMACC);
2469   CONFLICT (DMACC, DMULT);
2470   CONFLICT (DMACC, DMACC);
2471
2472   /* Errata 24 - MT{LO,HI} after [D]MACC */
2473   CONFLICT (MACC, MTHILO);
2474   CONFLICT (DMACC, MTHILO);
2475
2476   /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
2477      instruction is executed immediately after a MACC or DMACC
2478      instruction, the result of [either instruction] is incorrect."  */
2479   CONFLICT (MACC, MULT);
2480   CONFLICT (MACC, DMULT);
2481   CONFLICT (DMACC, MULT);
2482   CONFLICT (DMACC, DMULT);
2483
2484   /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
2485      executed immediately after a DMULT, DMULTU, DIV, DIVU,
2486      DDIV or DDIVU instruction, the result of the MACC or
2487      DMACC instruction is incorrect.".  */
2488   CONFLICT (DMULT, MACC);
2489   CONFLICT (DMULT, DMACC);
2490   CONFLICT (DIV, MACC);
2491   CONFLICT (DIV, DMACC);
2492
2493 #undef CONFLICT
2494 }
2495
2496 struct regname {
2497   const char *name;
2498   unsigned int num;
2499 };
2500
2501 #define RNUM_MASK       0x00000ff
2502 #define RTYPE_MASK      0x0ffff00
2503 #define RTYPE_NUM       0x0000100
2504 #define RTYPE_FPU       0x0000200
2505 #define RTYPE_FCC       0x0000400
2506 #define RTYPE_VEC       0x0000800
2507 #define RTYPE_GP        0x0001000
2508 #define RTYPE_CP0       0x0002000
2509 #define RTYPE_PC        0x0004000
2510 #define RTYPE_ACC       0x0008000
2511 #define RTYPE_CCC       0x0010000
2512 #define RTYPE_VI        0x0020000
2513 #define RTYPE_VF        0x0040000
2514 #define RTYPE_R5900_I   0x0080000
2515 #define RTYPE_R5900_Q   0x0100000
2516 #define RTYPE_R5900_R   0x0200000
2517 #define RTYPE_R5900_ACC 0x0400000
2518 #define RTYPE_MSA       0x0800000
2519 #define RWARN           0x8000000
2520
2521 #define GENERIC_REGISTER_NUMBERS \
2522     {"$0",      RTYPE_NUM | 0},  \
2523     {"$1",      RTYPE_NUM | 1},  \
2524     {"$2",      RTYPE_NUM | 2},  \
2525     {"$3",      RTYPE_NUM | 3},  \
2526     {"$4",      RTYPE_NUM | 4},  \
2527     {"$5",      RTYPE_NUM | 5},  \
2528     {"$6",      RTYPE_NUM | 6},  \
2529     {"$7",      RTYPE_NUM | 7},  \
2530     {"$8",      RTYPE_NUM | 8},  \
2531     {"$9",      RTYPE_NUM | 9},  \
2532     {"$10",     RTYPE_NUM | 10}, \
2533     {"$11",     RTYPE_NUM | 11}, \
2534     {"$12",     RTYPE_NUM | 12}, \
2535     {"$13",     RTYPE_NUM | 13}, \
2536     {"$14",     RTYPE_NUM | 14}, \
2537     {"$15",     RTYPE_NUM | 15}, \
2538     {"$16",     RTYPE_NUM | 16}, \
2539     {"$17",     RTYPE_NUM | 17}, \
2540     {"$18",     RTYPE_NUM | 18}, \
2541     {"$19",     RTYPE_NUM | 19}, \
2542     {"$20",     RTYPE_NUM | 20}, \
2543     {"$21",     RTYPE_NUM | 21}, \
2544     {"$22",     RTYPE_NUM | 22}, \
2545     {"$23",     RTYPE_NUM | 23}, \
2546     {"$24",     RTYPE_NUM | 24}, \
2547     {"$25",     RTYPE_NUM | 25}, \
2548     {"$26",     RTYPE_NUM | 26}, \
2549     {"$27",     RTYPE_NUM | 27}, \
2550     {"$28",     RTYPE_NUM | 28}, \
2551     {"$29",     RTYPE_NUM | 29}, \
2552     {"$30",     RTYPE_NUM | 30}, \
2553     {"$31",     RTYPE_NUM | 31}
2554
2555 #define FPU_REGISTER_NAMES       \
2556     {"$f0",     RTYPE_FPU | 0},  \
2557     {"$f1",     RTYPE_FPU | 1},  \
2558     {"$f2",     RTYPE_FPU | 2},  \
2559     {"$f3",     RTYPE_FPU | 3},  \
2560     {"$f4",     RTYPE_FPU | 4},  \
2561     {"$f5",     RTYPE_FPU | 5},  \
2562     {"$f6",     RTYPE_FPU | 6},  \
2563     {"$f7",     RTYPE_FPU | 7},  \
2564     {"$f8",     RTYPE_FPU | 8},  \
2565     {"$f9",     RTYPE_FPU | 9},  \
2566     {"$f10",    RTYPE_FPU | 10}, \
2567     {"$f11",    RTYPE_FPU | 11}, \
2568     {"$f12",    RTYPE_FPU | 12}, \
2569     {"$f13",    RTYPE_FPU | 13}, \
2570     {"$f14",    RTYPE_FPU | 14}, \
2571     {"$f15",    RTYPE_FPU | 15}, \
2572     {"$f16",    RTYPE_FPU | 16}, \
2573     {"$f17",    RTYPE_FPU | 17}, \
2574     {"$f18",    RTYPE_FPU | 18}, \
2575     {"$f19",    RTYPE_FPU | 19}, \
2576     {"$f20",    RTYPE_FPU | 20}, \
2577     {"$f21",    RTYPE_FPU | 21}, \
2578     {"$f22",    RTYPE_FPU | 22}, \
2579     {"$f23",    RTYPE_FPU | 23}, \
2580     {"$f24",    RTYPE_FPU | 24}, \
2581     {"$f25",    RTYPE_FPU | 25}, \
2582     {"$f26",    RTYPE_FPU | 26}, \
2583     {"$f27",    RTYPE_FPU | 27}, \
2584     {"$f28",    RTYPE_FPU | 28}, \
2585     {"$f29",    RTYPE_FPU | 29}, \
2586     {"$f30",    RTYPE_FPU | 30}, \
2587     {"$f31",    RTYPE_FPU | 31}
2588
2589 #define FPU_CONDITION_CODE_NAMES \
2590     {"$fcc0",   RTYPE_FCC | 0},  \
2591     {"$fcc1",   RTYPE_FCC | 1},  \
2592     {"$fcc2",   RTYPE_FCC | 2},  \
2593     {"$fcc3",   RTYPE_FCC | 3},  \
2594     {"$fcc4",   RTYPE_FCC | 4},  \
2595     {"$fcc5",   RTYPE_FCC | 5},  \
2596     {"$fcc6",   RTYPE_FCC | 6},  \
2597     {"$fcc7",   RTYPE_FCC | 7}
2598
2599 #define COPROC_CONDITION_CODE_NAMES         \
2600     {"$cc0",    RTYPE_FCC | RTYPE_CCC | 0}, \
2601     {"$cc1",    RTYPE_FCC | RTYPE_CCC | 1}, \
2602     {"$cc2",    RTYPE_FCC | RTYPE_CCC | 2}, \
2603     {"$cc3",    RTYPE_FCC | RTYPE_CCC | 3}, \
2604     {"$cc4",    RTYPE_FCC | RTYPE_CCC | 4}, \
2605     {"$cc5",    RTYPE_FCC | RTYPE_CCC | 5}, \
2606     {"$cc6",    RTYPE_FCC | RTYPE_CCC | 6}, \
2607     {"$cc7",    RTYPE_FCC | RTYPE_CCC | 7}
2608
2609 #define N32N64_SYMBOLIC_REGISTER_NAMES \
2610     {"$a4",     RTYPE_GP | 8},  \
2611     {"$a5",     RTYPE_GP | 9},  \
2612     {"$a6",     RTYPE_GP | 10}, \
2613     {"$a7",     RTYPE_GP | 11}, \
2614     {"$ta0",    RTYPE_GP | 8},  /* alias for $a4 */ \
2615     {"$ta1",    RTYPE_GP | 9},  /* alias for $a5 */ \
2616     {"$ta2",    RTYPE_GP | 10}, /* alias for $a6 */ \
2617     {"$ta3",    RTYPE_GP | 11}, /* alias for $a7 */ \
2618     {"$t0",     RTYPE_GP | 12}, \
2619     {"$t1",     RTYPE_GP | 13}, \
2620     {"$t2",     RTYPE_GP | 14}, \
2621     {"$t3",     RTYPE_GP | 15}
2622
2623 #define O32_SYMBOLIC_REGISTER_NAMES \
2624     {"$t0",     RTYPE_GP | 8},  \
2625     {"$t1",     RTYPE_GP | 9},  \
2626     {"$t2",     RTYPE_GP | 10}, \
2627     {"$t3",     RTYPE_GP | 11}, \
2628     {"$t4",     RTYPE_GP | 12}, \
2629     {"$t5",     RTYPE_GP | 13}, \
2630     {"$t6",     RTYPE_GP | 14}, \
2631     {"$t7",     RTYPE_GP | 15}, \
2632     {"$ta0",    RTYPE_GP | 12}, /* alias for $t4 */ \
2633     {"$ta1",    RTYPE_GP | 13}, /* alias for $t5 */ \
2634     {"$ta2",    RTYPE_GP | 14}, /* alias for $t6 */ \
2635     {"$ta3",    RTYPE_GP | 15}  /* alias for $t7 */
2636
2637 /* Remaining symbolic register names */
2638 #define SYMBOLIC_REGISTER_NAMES \
2639     {"$zero",   RTYPE_GP | 0},  \
2640     {"$at",     RTYPE_GP | 1},  \
2641     {"$AT",     RTYPE_GP | 1},  \
2642     {"$v0",     RTYPE_GP | 2},  \
2643     {"$v1",     RTYPE_GP | 3},  \
2644     {"$a0",     RTYPE_GP | 4},  \
2645     {"$a1",     RTYPE_GP | 5},  \
2646     {"$a2",     RTYPE_GP | 6},  \
2647     {"$a3",     RTYPE_GP | 7},  \
2648     {"$s0",     RTYPE_GP | 16}, \
2649     {"$s1",     RTYPE_GP | 17}, \
2650     {"$s2",     RTYPE_GP | 18}, \
2651     {"$s3",     RTYPE_GP | 19}, \
2652     {"$s4",     RTYPE_GP | 20}, \
2653     {"$s5",     RTYPE_GP | 21}, \
2654     {"$s6",     RTYPE_GP | 22}, \
2655     {"$s7",     RTYPE_GP | 23}, \
2656     {"$t8",     RTYPE_GP | 24}, \
2657     {"$t9",     RTYPE_GP | 25}, \
2658     {"$k0",     RTYPE_GP | 26}, \
2659     {"$kt0",    RTYPE_GP | 26}, \
2660     {"$k1",     RTYPE_GP | 27}, \
2661     {"$kt1",    RTYPE_GP | 27}, \
2662     {"$gp",     RTYPE_GP | 28}, \
2663     {"$sp",     RTYPE_GP | 29}, \
2664     {"$s8",     RTYPE_GP | 30}, \
2665     {"$fp",     RTYPE_GP | 30}, \
2666     {"$ra",     RTYPE_GP | 31}
2667
2668 #define MIPS16_SPECIAL_REGISTER_NAMES \
2669     {"$pc",     RTYPE_PC | 0}
2670
2671 #define MDMX_VECTOR_REGISTER_NAMES \
2672     /* {"$v0",  RTYPE_VEC | 0},  clash with REG 2 above */ \
2673     /* {"$v1",  RTYPE_VEC | 1},  clash with REG 3 above */ \
2674     {"$v2",     RTYPE_VEC | 2},  \
2675     {"$v3",     RTYPE_VEC | 3},  \
2676     {"$v4",     RTYPE_VEC | 4},  \
2677     {"$v5",     RTYPE_VEC | 5},  \
2678     {"$v6",     RTYPE_VEC | 6},  \
2679     {"$v7",     RTYPE_VEC | 7},  \
2680     {"$v8",     RTYPE_VEC | 8},  \
2681     {"$v9",     RTYPE_VEC | 9},  \
2682     {"$v10",    RTYPE_VEC | 10}, \
2683     {"$v11",    RTYPE_VEC | 11}, \
2684     {"$v12",    RTYPE_VEC | 12}, \
2685     {"$v13",    RTYPE_VEC | 13}, \
2686     {"$v14",    RTYPE_VEC | 14}, \
2687     {"$v15",    RTYPE_VEC | 15}, \
2688     {"$v16",    RTYPE_VEC | 16}, \
2689     {"$v17",    RTYPE_VEC | 17}, \
2690     {"$v18",    RTYPE_VEC | 18}, \
2691     {"$v19",    RTYPE_VEC | 19}, \
2692     {"$v20",    RTYPE_VEC | 20}, \
2693     {"$v21",    RTYPE_VEC | 21}, \
2694     {"$v22",    RTYPE_VEC | 22}, \
2695     {"$v23",    RTYPE_VEC | 23}, \
2696     {"$v24",    RTYPE_VEC | 24}, \
2697     {"$v25",    RTYPE_VEC | 25}, \
2698     {"$v26",    RTYPE_VEC | 26}, \
2699     {"$v27",    RTYPE_VEC | 27}, \
2700     {"$v28",    RTYPE_VEC | 28}, \
2701     {"$v29",    RTYPE_VEC | 29}, \
2702     {"$v30",    RTYPE_VEC | 30}, \
2703     {"$v31",    RTYPE_VEC | 31}
2704
2705 #define R5900_I_NAMES \
2706     {"$I",      RTYPE_R5900_I | 0}
2707
2708 #define R5900_Q_NAMES \
2709     {"$Q",      RTYPE_R5900_Q | 0}
2710
2711 #define R5900_R_NAMES \
2712     {"$R",      RTYPE_R5900_R | 0}
2713
2714 #define R5900_ACC_NAMES \
2715     {"$ACC",    RTYPE_R5900_ACC | 0 }
2716
2717 #define MIPS_DSP_ACCUMULATOR_NAMES \
2718     {"$ac0",    RTYPE_ACC | 0}, \
2719     {"$ac1",    RTYPE_ACC | 1}, \
2720     {"$ac2",    RTYPE_ACC | 2}, \
2721     {"$ac3",    RTYPE_ACC | 3}
2722
2723 static const struct regname reg_names[] = {
2724   GENERIC_REGISTER_NUMBERS,
2725   FPU_REGISTER_NAMES,
2726   FPU_CONDITION_CODE_NAMES,
2727   COPROC_CONDITION_CODE_NAMES,
2728
2729   /* The $txx registers depends on the abi,
2730      these will be added later into the symbol table from
2731      one of the tables below once mips_abi is set after
2732      parsing of arguments from the command line. */
2733   SYMBOLIC_REGISTER_NAMES,
2734
2735   MIPS16_SPECIAL_REGISTER_NAMES,
2736   MDMX_VECTOR_REGISTER_NAMES,
2737   R5900_I_NAMES,
2738   R5900_Q_NAMES,
2739   R5900_R_NAMES,
2740   R5900_ACC_NAMES,
2741   MIPS_DSP_ACCUMULATOR_NAMES,
2742   {0, 0}
2743 };
2744
2745 static const struct regname reg_names_o32[] = {
2746   O32_SYMBOLIC_REGISTER_NAMES,
2747   {0, 0}
2748 };
2749
2750 static const struct regname reg_names_n32n64[] = {
2751   N32N64_SYMBOLIC_REGISTER_NAMES,
2752   {0, 0}
2753 };
2754
2755 /* Register symbols $v0 and $v1 map to GPRs 2 and 3, but they can also be
2756    interpreted as vector registers 0 and 1.  If SYMVAL is the value of one
2757    of these register symbols, return the associated vector register,
2758    otherwise return SYMVAL itself.  */
2759
2760 static unsigned int
2761 mips_prefer_vec_regno (unsigned int symval)
2762 {
2763   if ((symval & -2) == (RTYPE_GP | 2))
2764     return RTYPE_VEC | (symval & 1);
2765   return symval;
2766 }
2767
2768 /* Return true if string [S, E) is a valid register name, storing its
2769    symbol value in *SYMVAL_PTR if so.  */
2770
2771 static bfd_boolean
2772 mips_parse_register_1 (char *s, char *e, unsigned int *symval_ptr)
2773 {
2774   char save_c;
2775   symbolS *symbol;
2776
2777   /* Terminate name.  */
2778   save_c = *e;
2779   *e = '\0';
2780
2781   /* Look up the name.  */
2782   symbol = symbol_find (s);
2783   *e = save_c;
2784
2785   if (!symbol || S_GET_SEGMENT (symbol) != reg_section)
2786     return FALSE;
2787
2788   *symval_ptr = S_GET_VALUE (symbol);
2789   return TRUE;
2790 }
2791
2792 /* Return true if the string at *SPTR is a valid register name.  Allow it
2793    to have a VU0-style channel suffix of the form x?y?z?w? if CHANNELS_PTR
2794    is nonnull.
2795
2796    When returning true, move *SPTR past the register, store the
2797    register's symbol value in *SYMVAL_PTR and the channel mask in
2798    *CHANNELS_PTR (if nonnull).  The symbol value includes the register
2799    number (RNUM_MASK) and register type (RTYPE_MASK).  The channel mask
2800    is a 4-bit value of the form XYZW and is 0 if no suffix was given.  */
2801
2802 static bfd_boolean
2803 mips_parse_register (char **sptr, unsigned int *symval_ptr,
2804                      unsigned int *channels_ptr)
2805 {
2806   char *s, *e, *m;
2807   const char *q;
2808   unsigned int channels, symval, bit;
2809
2810   /* Find end of name.  */
2811   s = e = *sptr;
2812   if (is_name_beginner (*e))
2813     ++e;
2814   while (is_part_of_name (*e))
2815     ++e;
2816
2817   channels = 0;
2818   if (!mips_parse_register_1 (s, e, &symval))
2819     {
2820       if (!channels_ptr)
2821         return FALSE;
2822
2823       /* Eat characters from the end of the string that are valid
2824          channel suffixes.  The preceding register must be $ACC or
2825          end with a digit, so there is no ambiguity.  */
2826       bit = 1;
2827       m = e;
2828       for (q = "wzyx"; *q; q++, bit <<= 1)
2829         if (m > s && m[-1] == *q)
2830           {
2831             --m;
2832             channels |= bit;
2833           }
2834
2835       if (channels == 0
2836           || !mips_parse_register_1 (s, m, &symval)
2837           || (symval & (RTYPE_VI | RTYPE_VF | RTYPE_R5900_ACC)) == 0)
2838         return FALSE;
2839     }
2840
2841   *sptr = e;
2842   *symval_ptr = symval;
2843   if (channels_ptr)
2844     *channels_ptr = channels;
2845   return TRUE;
2846 }
2847
2848 /* Check if SPTR points at a valid register specifier according to TYPES.
2849    If so, then return 1, advance S to consume the specifier and store
2850    the register's number in REGNOP, otherwise return 0.  */
2851
2852 static int
2853 reg_lookup (char **s, unsigned int types, unsigned int *regnop)
2854 {
2855   unsigned int regno;
2856
2857   if (mips_parse_register (s, &regno, NULL))
2858     {
2859       if (types & RTYPE_VEC)
2860         regno = mips_prefer_vec_regno (regno);
2861       if (regno & types)
2862         regno &= RNUM_MASK;
2863       else
2864         regno = ~0;
2865     }
2866   else
2867     {
2868       if (types & RWARN)
2869         as_warn (_("unrecognized register name `%s'"), *s);
2870       regno = ~0;
2871     }
2872   if (regnop)
2873     *regnop = regno;
2874   return regno <= RNUM_MASK;
2875 }
2876
2877 /* Parse a VU0 "x?y?z?w?" channel mask at S and store the associated
2878    mask in *CHANNELS.  Return a pointer to the first unconsumed character.  */
2879
2880 static char *
2881 mips_parse_vu0_channels (char *s, unsigned int *channels)
2882 {
2883   unsigned int i;
2884
2885   *channels = 0;
2886   for (i = 0; i < 4; i++)
2887     if (*s == "xyzw"[i])
2888       {
2889         *channels |= 1 << (3 - i);
2890         ++s;
2891       }
2892   return s;
2893 }
2894
2895 /* Token types for parsed operand lists.  */
2896 enum mips_operand_token_type {
2897   /* A plain register, e.g. $f2.  */
2898   OT_REG,
2899
2900   /* A 4-bit XYZW channel mask.  */
2901   OT_CHANNELS,
2902
2903   /* A constant vector index, e.g. [1].  */
2904   OT_INTEGER_INDEX,
2905
2906   /* A register vector index, e.g. [$2].  */
2907   OT_REG_INDEX,
2908
2909   /* A continuous range of registers, e.g. $s0-$s4.  */
2910   OT_REG_RANGE,
2911
2912   /* A (possibly relocated) expression.  */
2913   OT_INTEGER,
2914
2915   /* A floating-point value.  */
2916   OT_FLOAT,
2917
2918   /* A single character.  This can be '(', ')' or ',', but '(' only appears
2919      before OT_REGs.  */
2920   OT_CHAR,
2921
2922   /* A doubled character, either "--" or "++".  */
2923   OT_DOUBLE_CHAR,
2924
2925   /* The end of the operand list.  */
2926   OT_END
2927 };
2928
2929 /* A parsed operand token.  */
2930 struct mips_operand_token
2931 {
2932   /* The type of token.  */
2933   enum mips_operand_token_type type;
2934   union
2935   {
2936     /* The register symbol value for an OT_REG or OT_REG_INDEX.  */
2937     unsigned int regno;
2938
2939     /* The 4-bit channel mask for an OT_CHANNEL_SUFFIX.  */
2940     unsigned int channels;
2941
2942     /* The integer value of an OT_INTEGER_INDEX.  */
2943     addressT index;
2944
2945     /* The two register symbol values involved in an OT_REG_RANGE.  */
2946     struct {
2947       unsigned int regno1;
2948       unsigned int regno2;
2949     } reg_range;
2950
2951     /* The value of an OT_INTEGER.  The value is represented as an
2952        expression and the relocation operators that were applied to
2953        that expression.  The reloc entries are BFD_RELOC_UNUSED if no
2954        relocation operators were used.  */
2955     struct {
2956       expressionS value;
2957       bfd_reloc_code_real_type relocs[3];
2958     } integer;
2959
2960     /* The binary data for an OT_FLOAT constant, and the number of bytes
2961        in the constant.  */
2962     struct {
2963       unsigned char data[8];
2964       int length;
2965     } flt;
2966
2967     /* The character represented by an OT_CHAR or OT_DOUBLE_CHAR.  */
2968     char ch;
2969   } u;
2970 };
2971
2972 /* An obstack used to construct lists of mips_operand_tokens.  */
2973 static struct obstack mips_operand_tokens;
2974
2975 /* Give TOKEN type TYPE and add it to mips_operand_tokens.  */
2976
2977 static void
2978 mips_add_token (struct mips_operand_token *token,
2979                 enum mips_operand_token_type type)
2980 {
2981   token->type = type;
2982   obstack_grow (&mips_operand_tokens, token, sizeof (*token));
2983 }
2984
2985 /* Check whether S is '(' followed by a register name.  Add OT_CHAR
2986    and OT_REG tokens for them if so, and return a pointer to the first
2987    unconsumed character.  Return null otherwise.  */
2988
2989 static char *
2990 mips_parse_base_start (char *s)
2991 {
2992   struct mips_operand_token token;
2993   unsigned int regno, channels;
2994   bfd_boolean decrement_p;
2995
2996   if (*s != '(')
2997     return 0;
2998
2999   ++s;
3000   SKIP_SPACE_TABS (s);
3001
3002   /* Only match "--" as part of a base expression.  In other contexts "--X"
3003      is a double negative.  */
3004   decrement_p = (s[0] == '-' && s[1] == '-');
3005   if (decrement_p)
3006     {
3007       s += 2;
3008       SKIP_SPACE_TABS (s);
3009     }
3010
3011   /* Allow a channel specifier because that leads to better error messages
3012      than treating something like "$vf0x++" as an expression.  */
3013   if (!mips_parse_register (&s, &regno, &channels))
3014     return 0;
3015
3016   token.u.ch = '(';
3017   mips_add_token (&token, OT_CHAR);
3018
3019   if (decrement_p)
3020     {
3021       token.u.ch = '-';
3022       mips_add_token (&token, OT_DOUBLE_CHAR);
3023     }
3024
3025   token.u.regno = regno;
3026   mips_add_token (&token, OT_REG);
3027
3028   if (channels)
3029     {
3030       token.u.channels = channels;
3031       mips_add_token (&token, OT_CHANNELS);
3032     }
3033
3034   /* For consistency, only match "++" as part of base expressions too.  */
3035   SKIP_SPACE_TABS (s);
3036   if (s[0] == '+' && s[1] == '+')
3037     {
3038       s += 2;
3039       token.u.ch = '+';
3040       mips_add_token (&token, OT_DOUBLE_CHAR);
3041     }
3042
3043   return s;
3044 }
3045
3046 /* Parse one or more tokens from S.  Return a pointer to the first
3047    unconsumed character on success.  Return null if an error was found
3048    and store the error text in insn_error.  FLOAT_FORMAT is as for
3049    mips_parse_arguments.  */
3050
3051 static char *
3052 mips_parse_argument_token (char *s, char float_format)
3053 {
3054   char *end, *save_in;
3055   const char *err;
3056   unsigned int regno1, regno2, channels;
3057   struct mips_operand_token token;
3058
3059   /* First look for "($reg", since we want to treat that as an
3060      OT_CHAR and OT_REG rather than an expression.  */
3061   end = mips_parse_base_start (s);
3062   if (end)
3063     return end;
3064
3065   /* Handle other characters that end up as OT_CHARs.  */
3066   if (*s == ')' || *s == ',')
3067     {
3068       token.u.ch = *s;
3069       mips_add_token (&token, OT_CHAR);
3070       ++s;
3071       return s;
3072     }
3073
3074   /* Handle tokens that start with a register.  */
3075   if (mips_parse_register (&s, &regno1, &channels))
3076     {
3077       if (channels)
3078         {
3079           /* A register and a VU0 channel suffix.  */
3080           token.u.regno = regno1;
3081           mips_add_token (&token, OT_REG);
3082
3083           token.u.channels = channels;
3084           mips_add_token (&token, OT_CHANNELS);
3085           return s;
3086         }
3087
3088       SKIP_SPACE_TABS (s);
3089       if (*s == '-')
3090         {
3091           /* A register range.  */
3092           ++s;
3093           SKIP_SPACE_TABS (s);
3094           if (!mips_parse_register (&s, &regno2, NULL))
3095             {
3096               set_insn_error (0, _("invalid register range"));
3097               return 0;
3098             }
3099
3100           token.u.reg_range.regno1 = regno1;
3101           token.u.reg_range.regno2 = regno2;
3102           mips_add_token (&token, OT_REG_RANGE);
3103           return s;
3104         }
3105
3106       /* Add the register itself.  */
3107       token.u.regno = regno1;
3108       mips_add_token (&token, OT_REG);
3109
3110       /* Check for a vector index.  */
3111       if (*s == '[')
3112         {
3113           ++s;
3114           SKIP_SPACE_TABS (s);
3115           if (mips_parse_register (&s, &token.u.regno, NULL))
3116             mips_add_token (&token, OT_REG_INDEX);
3117           else
3118             {
3119               expressionS element;
3120
3121               my_getExpression (&element, s);
3122               if (element.X_op != O_constant)
3123                 {
3124                   set_insn_error (0, _("vector element must be constant"));
3125                   return 0;
3126                 }
3127               s = expr_end;
3128               token.u.index = element.X_add_number;
3129               mips_add_token (&token, OT_INTEGER_INDEX);
3130             }
3131           SKIP_SPACE_TABS (s);
3132           if (*s != ']')
3133             {
3134               set_insn_error (0, _("missing `]'"));
3135               return 0;
3136             }
3137           ++s;
3138         }
3139       return s;
3140     }
3141
3142   if (float_format)
3143     {
3144       /* First try to treat expressions as floats.  */
3145       save_in = input_line_pointer;
3146       input_line_pointer = s;
3147       err = md_atof (float_format, (char *) token.u.flt.data,
3148                      &token.u.flt.length);
3149       end = input_line_pointer;
3150       input_line_pointer = save_in;
3151       if (err && *err)
3152         {
3153           set_insn_error (0, err);
3154           return 0;
3155         }
3156       if (s != end)
3157         {
3158           mips_add_token (&token, OT_FLOAT);
3159           return end;
3160         }
3161     }
3162
3163   /* Treat everything else as an integer expression.  */
3164   token.u.integer.relocs[0] = BFD_RELOC_UNUSED;
3165   token.u.integer.relocs[1] = BFD_RELOC_UNUSED;
3166   token.u.integer.relocs[2] = BFD_RELOC_UNUSED;
3167   my_getSmallExpression (&token.u.integer.value, token.u.integer.relocs, s);
3168   s = expr_end;
3169   mips_add_token (&token, OT_INTEGER);
3170   return s;
3171 }
3172
3173 /* S points to the operand list for an instruction.  FLOAT_FORMAT is 'f'
3174    if expressions should be treated as 32-bit floating-point constants,
3175    'd' if they should be treated as 64-bit floating-point constants,
3176    or 0 if they should be treated as integer expressions (the usual case).
3177
3178    Return a list of tokens on success, otherwise return 0.  The caller
3179    must obstack_free the list after use.  */
3180
3181 static struct mips_operand_token *
3182 mips_parse_arguments (char *s, char float_format)
3183 {
3184   struct mips_operand_token token;
3185
3186   SKIP_SPACE_TABS (s);
3187   while (*s)
3188     {
3189       s = mips_parse_argument_token (s, float_format);
3190       if (!s)
3191         {
3192           obstack_free (&mips_operand_tokens,
3193                         obstack_finish (&mips_operand_tokens));
3194           return 0;
3195         }
3196       SKIP_SPACE_TABS (s);
3197     }
3198   mips_add_token (&token, OT_END);
3199   return (struct mips_operand_token *) obstack_finish (&mips_operand_tokens);
3200 }
3201
3202 /* Return TRUE if opcode MO is valid on the currently selected ISA, ASE
3203    and architecture.  Use is_opcode_valid_16 for MIPS16 opcodes.  */
3204
3205 static bfd_boolean
3206 is_opcode_valid (const struct mips_opcode *mo)
3207 {
3208   int isa = mips_opts.isa;
3209   int ase = mips_opts.ase;
3210   int fp_s, fp_d;
3211   unsigned int i;
3212
3213   if (ISA_HAS_64BIT_REGS (mips_opts.isa))
3214     for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
3215       if ((ase & mips_ases[i].flags) == mips_ases[i].flags)
3216         ase |= mips_ases[i].flags64;
3217
3218   if (!opcode_is_member (mo, isa, ase, mips_opts.arch))
3219     return FALSE;
3220
3221   /* Check whether the instruction or macro requires single-precision or
3222      double-precision floating-point support.  Note that this information is
3223      stored differently in the opcode table for insns and macros.  */
3224   if (mo->pinfo == INSN_MACRO)
3225     {
3226       fp_s = mo->pinfo2 & INSN2_M_FP_S;
3227       fp_d = mo->pinfo2 & INSN2_M_FP_D;
3228     }
3229   else
3230     {
3231       fp_s = mo->pinfo & FP_S;
3232       fp_d = mo->pinfo & FP_D;
3233     }
3234
3235   if (fp_d && (mips_opts.soft_float || mips_opts.single_float))
3236     return FALSE;
3237
3238   if (fp_s && mips_opts.soft_float)
3239     return FALSE;
3240
3241   return TRUE;
3242 }
3243
3244 /* Return TRUE if the MIPS16 opcode MO is valid on the currently
3245    selected ISA and architecture.  */
3246
3247 static bfd_boolean
3248 is_opcode_valid_16 (const struct mips_opcode *mo)
3249 {
3250   return opcode_is_member (mo, mips_opts.isa, 0, mips_opts.arch);
3251 }
3252
3253 /* Return TRUE if the size of the microMIPS opcode MO matches one
3254    explicitly requested.  Always TRUE in the standard MIPS mode.  */
3255
3256 static bfd_boolean
3257 is_size_valid (const struct mips_opcode *mo)
3258 {
3259   if (!mips_opts.micromips)
3260     return TRUE;
3261
3262   if (mips_opts.insn32)
3263     {
3264       if (mo->pinfo != INSN_MACRO && micromips_insn_length (mo) != 4)
3265         return FALSE;
3266       if ((mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0)
3267         return FALSE;
3268     }
3269   if (!forced_insn_length)
3270     return TRUE;
3271   if (mo->pinfo == INSN_MACRO)
3272     return FALSE;
3273   return forced_insn_length == micromips_insn_length (mo);
3274 }
3275
3276 /* Return TRUE if the microMIPS opcode MO is valid for the delay slot
3277    of the preceding instruction.  Always TRUE in the standard MIPS mode.
3278
3279    We don't accept macros in 16-bit delay slots to avoid a case where
3280    a macro expansion fails because it relies on a preceding 32-bit real
3281    instruction to have matched and does not handle the operands correctly.
3282    The only macros that may expand to 16-bit instructions are JAL that
3283    cannot be placed in a delay slot anyway, and corner cases of BALIGN
3284    and BGT (that likewise cannot be placed in a delay slot) that decay to
3285    a NOP.  In all these cases the macros precede any corresponding real
3286    instruction definitions in the opcode table, so they will match in the
3287    second pass where the size of the delay slot is ignored and therefore
3288    produce correct code.  */
3289
3290 static bfd_boolean
3291 is_delay_slot_valid (const struct mips_opcode *mo)
3292 {
3293   if (!mips_opts.micromips)
3294     return TRUE;
3295
3296   if (mo->pinfo == INSN_MACRO)
3297     return (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) == 0;
3298   if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
3299       && micromips_insn_length (mo) != 4)
3300     return FALSE;
3301   if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
3302       && micromips_insn_length (mo) != 2)
3303     return FALSE;
3304
3305   return TRUE;
3306 }
3307
3308 /* For consistency checking, verify that all bits of OPCODE are specified
3309    either by the match/mask part of the instruction definition, or by the
3310    operand list.  Also build up a list of operands in OPERANDS.
3311
3312    INSN_BITS says which bits of the instruction are significant.
3313    If OPCODE is a standard or microMIPS instruction, DECODE_OPERAND
3314    provides the mips_operand description of each operand.  DECODE_OPERAND
3315    is null for MIPS16 instructions.  */
3316
3317 static int
3318 validate_mips_insn (const struct mips_opcode *opcode,
3319                     unsigned long insn_bits,
3320                     const struct mips_operand *(*decode_operand) (const char *),
3321                     struct mips_operand_array *operands)
3322 {
3323   const char *s;
3324   unsigned long used_bits, doubled, undefined, opno, mask;
3325   const struct mips_operand *operand;
3326
3327   mask = (opcode->pinfo == INSN_MACRO ? 0 : opcode->mask);
3328   if ((mask & opcode->match) != opcode->match)
3329     {
3330       as_bad (_("internal: bad mips opcode (mask error): %s %s"),
3331               opcode->name, opcode->args);
3332       return 0;
3333     }
3334   used_bits = 0;
3335   opno = 0;
3336   if (opcode->pinfo2 & INSN2_VU0_CHANNEL_SUFFIX)
3337     used_bits = mips_insert_operand (&mips_vu0_channel_mask, used_bits, -1);
3338   for (s = opcode->args; *s; ++s)
3339     switch (*s)
3340       {
3341       case ',':
3342       case '(':
3343       case ')':
3344         break;
3345
3346       case '#':
3347         s++;
3348         break;
3349
3350       default:
3351         if (!decode_operand)
3352           operand = decode_mips16_operand (*s, FALSE);
3353         else
3354           operand = decode_operand (s);
3355         if (!operand && opcode->pinfo != INSN_MACRO)
3356           {
3357             as_bad (_("internal: unknown operand type: %s %s"),
3358                     opcode->name, opcode->args);
3359             return 0;
3360           }
3361         gas_assert (opno < MAX_OPERANDS);
3362         operands->operand[opno] = operand;
3363         if (operand && operand->type != OP_VU0_MATCH_SUFFIX)
3364           {
3365             used_bits = mips_insert_operand (operand, used_bits, -1);
3366             if (operand->type == OP_MDMX_IMM_REG)
3367               /* Bit 5 is the format selector (OB vs QH).  The opcode table
3368                  has separate entries for each format.  */
3369               used_bits &= ~(1 << (operand->lsb + 5));
3370             if (operand->type == OP_ENTRY_EXIT_LIST)
3371               used_bits &= ~(mask & 0x700);
3372           }
3373         /* Skip prefix characters.  */
3374         if (decode_operand && (*s == '+' || *s == 'm' || *s == '-'))
3375           ++s;
3376         opno += 1;
3377         break;
3378       }
3379   doubled = used_bits & mask & insn_bits;
3380   if (doubled)
3381     {
3382       as_bad (_("internal: bad mips opcode (bits 0x%08lx doubly defined):"
3383                 " %s %s"), doubled, opcode->name, opcode->args);
3384       return 0;
3385     }
3386   used_bits |= mask;
3387   undefined = ~used_bits & insn_bits;
3388   if (opcode->pinfo != INSN_MACRO && undefined)
3389     {
3390       as_bad (_("internal: bad mips opcode (bits 0x%08lx undefined): %s %s"),
3391               undefined, opcode->name, opcode->args);
3392       return 0;
3393     }
3394   used_bits &= ~insn_bits;
3395   if (used_bits)
3396     {
3397       as_bad (_("internal: bad mips opcode (bits 0x%08lx defined): %s %s"),
3398               used_bits, opcode->name, opcode->args);
3399       return 0;
3400     }
3401   return 1;
3402 }
3403
3404 /* The MIPS16 version of validate_mips_insn.  */
3405
3406 static int
3407 validate_mips16_insn (const struct mips_opcode *opcode,
3408                       struct mips_operand_array *operands)
3409 {
3410   if (opcode->args[0] == 'a' || opcode->args[0] == 'i')
3411     {
3412       /* In this case OPCODE defines the first 16 bits in a 32-bit jump
3413          instruction.  Use TMP to describe the full instruction.  */
3414       struct mips_opcode tmp;
3415
3416       tmp = *opcode;
3417       tmp.match <<= 16;
3418       tmp.mask <<= 16;
3419       return validate_mips_insn (&tmp, 0xffffffff, 0, operands);
3420     }
3421   return validate_mips_insn (opcode, 0xffff, 0, operands);
3422 }
3423
3424 /* The microMIPS version of validate_mips_insn.  */
3425
3426 static int
3427 validate_micromips_insn (const struct mips_opcode *opc,
3428                          struct mips_operand_array *operands)
3429 {
3430   unsigned long insn_bits;
3431   unsigned long major;
3432   unsigned int length;
3433
3434   if (opc->pinfo == INSN_MACRO)
3435     return validate_mips_insn (opc, 0xffffffff, decode_micromips_operand,
3436                                operands);
3437
3438   length = micromips_insn_length (opc);
3439   if (length != 2 && length != 4)
3440     {
3441       as_bad (_("internal error: bad microMIPS opcode (incorrect length: %u): "
3442                 "%s %s"), length, opc->name, opc->args);
3443       return 0;
3444     }
3445   major = opc->match >> (10 + 8 * (length - 2));
3446   if ((length == 2 && (major & 7) != 1 && (major & 6) != 2)
3447       || (length == 4 && (major & 7) != 0 && (major & 4) != 4))
3448     {
3449       as_bad (_("internal error: bad microMIPS opcode "
3450                 "(opcode/length mismatch): %s %s"), opc->name, opc->args);
3451       return 0;
3452     }
3453
3454   /* Shift piecewise to avoid an overflow where unsigned long is 32-bit.  */
3455   insn_bits = 1 << 4 * length;
3456   insn_bits <<= 4 * length;
3457   insn_bits -= 1;
3458   return validate_mips_insn (opc, insn_bits, decode_micromips_operand,
3459                              operands);
3460 }
3461
3462 /* This function is called once, at assembler startup time.  It should set up
3463    all the tables, etc. that the MD part of the assembler will need.  */
3464
3465 void
3466 md_begin (void)
3467 {
3468   const char *retval = NULL;
3469   int i = 0;
3470   int broken = 0;
3471
3472   if (mips_pic != NO_PIC)
3473     {
3474       if (g_switch_seen && g_switch_value != 0)
3475         as_bad (_("-G may not be used in position-independent code"));
3476       g_switch_value = 0;
3477     }
3478   else if (mips_abicalls)
3479     {
3480       if (g_switch_seen && g_switch_value != 0)
3481         as_bad (_("-G may not be used with abicalls"));
3482       g_switch_value = 0;
3483     }
3484
3485   if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_opts.arch))
3486     as_warn (_("could not set architecture and machine"));
3487
3488   op_hash = hash_new ();
3489
3490   mips_operands = XCNEWVEC (struct mips_operand_array, NUMOPCODES);
3491   for (i = 0; i < NUMOPCODES;)
3492     {
3493       const char *name = mips_opcodes[i].name;
3494
3495       retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
3496       if (retval != NULL)
3497         {
3498           fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
3499                    mips_opcodes[i].name, retval);
3500           /* Probably a memory allocation problem?  Give up now.  */
3501           as_fatal (_("broken assembler, no assembly attempted"));
3502         }
3503       do
3504         {
3505           if (!validate_mips_insn (&mips_opcodes[i], 0xffffffff,
3506                                    decode_mips_operand, &mips_operands[i]))
3507             broken = 1;
3508           if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
3509             {
3510               create_insn (&nop_insn, mips_opcodes + i);
3511               if (mips_fix_loongson2f_nop)
3512                 nop_insn.insn_opcode = LOONGSON2F_NOP_INSN;
3513               nop_insn.fixed_p = 1;
3514             }
3515           ++i;
3516         }
3517       while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
3518     }
3519
3520   mips16_op_hash = hash_new ();
3521   mips16_operands = XCNEWVEC (struct mips_operand_array,
3522                               bfd_mips16_num_opcodes);
3523
3524   i = 0;
3525   while (i < bfd_mips16_num_opcodes)
3526     {
3527       const char *name = mips16_opcodes[i].name;
3528
3529       retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
3530       if (retval != NULL)
3531         as_fatal (_("internal: can't hash `%s': %s"),
3532                   mips16_opcodes[i].name, retval);
3533       do
3534         {
3535           if (!validate_mips16_insn (&mips16_opcodes[i], &mips16_operands[i]))
3536             broken = 1;
3537           if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
3538             {
3539               create_insn (&mips16_nop_insn, mips16_opcodes + i);
3540               mips16_nop_insn.fixed_p = 1;
3541             }
3542           ++i;
3543         }
3544       while (i < bfd_mips16_num_opcodes
3545              && strcmp (mips16_opcodes[i].name, name) == 0);
3546     }
3547
3548   micromips_op_hash = hash_new ();
3549   micromips_operands = XCNEWVEC (struct mips_operand_array,
3550                                  bfd_micromips_num_opcodes);
3551
3552   i = 0;
3553   while (i < bfd_micromips_num_opcodes)
3554     {
3555       const char *name = micromips_opcodes[i].name;
3556
3557       retval = hash_insert (micromips_op_hash, name,
3558                             (void *) &micromips_opcodes[i]);
3559       if (retval != NULL)
3560         as_fatal (_("internal: can't hash `%s': %s"),
3561                   micromips_opcodes[i].name, retval);
3562       do
3563         {
3564           struct mips_cl_insn *micromips_nop_insn;
3565
3566           if (!validate_micromips_insn (&micromips_opcodes[i],
3567                                         &micromips_operands[i]))
3568             broken = 1;
3569
3570           if (micromips_opcodes[i].pinfo != INSN_MACRO)
3571             {
3572               if (micromips_insn_length (micromips_opcodes + i) == 2)
3573                 micromips_nop_insn = &micromips_nop16_insn;
3574               else if (micromips_insn_length (micromips_opcodes + i) == 4)
3575                 micromips_nop_insn = &micromips_nop32_insn;
3576               else
3577                 continue;
3578
3579               if (micromips_nop_insn->insn_mo == NULL
3580                   && strcmp (name, "nop") == 0)
3581                 {
3582                   create_insn (micromips_nop_insn, micromips_opcodes + i);
3583                   micromips_nop_insn->fixed_p = 1;
3584                 }
3585             }
3586         }
3587       while (++i < bfd_micromips_num_opcodes
3588              && strcmp (micromips_opcodes[i].name, name) == 0);
3589     }
3590
3591   if (broken)
3592     as_fatal (_("broken assembler, no assembly attempted"));
3593
3594   /* We add all the general register names to the symbol table.  This
3595      helps us detect invalid uses of them.  */
3596   for (i = 0; reg_names[i].name; i++)
3597     symbol_table_insert (symbol_new (reg_names[i].name, reg_section,
3598                                      reg_names[i].num, /* & RNUM_MASK, */
3599                                      &zero_address_frag));
3600   if (HAVE_NEWABI)
3601     for (i = 0; reg_names_n32n64[i].name; i++)
3602       symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section,
3603                                        reg_names_n32n64[i].num, /* & RNUM_MASK, */
3604                                        &zero_address_frag));
3605   else
3606     for (i = 0; reg_names_o32[i].name; i++)
3607       symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section,
3608                                        reg_names_o32[i].num, /* & RNUM_MASK, */
3609                                        &zero_address_frag));
3610
3611   for (i = 0; i < 32; i++)
3612     {
3613       char regname[6];
3614
3615       /* R5900 VU0 floating-point register.  */
3616       sprintf (regname, "$vf%d", i);
3617       symbol_table_insert (symbol_new (regname, reg_section,
3618                                        RTYPE_VF | i, &zero_address_frag));
3619
3620       /* R5900 VU0 integer register.  */
3621       sprintf (regname, "$vi%d", i);
3622       symbol_table_insert (symbol_new (regname, reg_section,
3623                                        RTYPE_VI | i, &zero_address_frag));
3624
3625       /* MSA register.  */
3626       sprintf (regname, "$w%d", i);
3627       symbol_table_insert (symbol_new (regname, reg_section,
3628                                        RTYPE_MSA | i, &zero_address_frag));
3629     }
3630
3631   obstack_init (&mips_operand_tokens);
3632
3633   mips_no_prev_insn ();
3634
3635   mips_gprmask = 0;
3636   mips_cprmask[0] = 0;
3637   mips_cprmask[1] = 0;
3638   mips_cprmask[2] = 0;
3639   mips_cprmask[3] = 0;
3640
3641   /* set the default alignment for the text section (2**2) */
3642   record_alignment (text_section, 2);
3643
3644   bfd_set_gp_size (stdoutput, g_switch_value);
3645
3646   /* On a native system other than VxWorks, sections must be aligned
3647      to 16 byte boundaries.  When configured for an embedded ELF
3648      target, we don't bother.  */
3649   if (strncmp (TARGET_OS, "elf", 3) != 0
3650       && strncmp (TARGET_OS, "vxworks", 7) != 0)
3651     {
3652       (void) bfd_set_section_alignment (stdoutput, text_section, 4);
3653       (void) bfd_set_section_alignment (stdoutput, data_section, 4);
3654       (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
3655     }
3656
3657   /* Create a .reginfo section for register masks and a .mdebug
3658      section for debugging information.  */
3659   {
3660     segT seg;
3661     subsegT subseg;
3662     flagword flags;
3663     segT sec;
3664
3665     seg = now_seg;
3666     subseg = now_subseg;
3667
3668     /* The ABI says this section should be loaded so that the
3669        running program can access it.  However, we don't load it
3670        if we are configured for an embedded target */
3671     flags = SEC_READONLY | SEC_DATA;
3672     if (strncmp (TARGET_OS, "elf", 3) != 0)
3673       flags |= SEC_ALLOC | SEC_LOAD;
3674
3675     if (mips_abi != N64_ABI)
3676       {
3677         sec = subseg_new (".reginfo", (subsegT) 0);
3678
3679         bfd_set_section_flags (stdoutput, sec, flags);
3680         bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
3681
3682         mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
3683       }
3684     else
3685       {
3686         /* The 64-bit ABI uses a .MIPS.options section rather than
3687            .reginfo section.  */
3688         sec = subseg_new (".MIPS.options", (subsegT) 0);
3689         bfd_set_section_flags (stdoutput, sec, flags);
3690         bfd_set_section_alignment (stdoutput, sec, 3);
3691
3692         /* Set up the option header.  */
3693         {
3694           Elf_Internal_Options opthdr;
3695           char *f;
3696
3697           opthdr.kind = ODK_REGINFO;
3698           opthdr.size = (sizeof (Elf_External_Options)
3699                          + sizeof (Elf64_External_RegInfo));
3700           opthdr.section = 0;
3701           opthdr.info = 0;
3702           f = frag_more (sizeof (Elf_External_Options));
3703           bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
3704                                          (Elf_External_Options *) f);
3705
3706           mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
3707         }
3708       }
3709
3710     sec = subseg_new (".MIPS.abiflags", (subsegT) 0);
3711     bfd_set_section_flags (stdoutput, sec,
3712                            SEC_READONLY | SEC_DATA | SEC_ALLOC | SEC_LOAD);
3713     bfd_set_section_alignment (stdoutput, sec, 3);
3714     mips_flags_frag = frag_more (sizeof (Elf_External_ABIFlags_v0));
3715
3716     if (ECOFF_DEBUGGING)
3717       {
3718         sec = subseg_new (".mdebug", (subsegT) 0);
3719         (void) bfd_set_section_flags (stdoutput, sec,
3720                                       SEC_HAS_CONTENTS | SEC_READONLY);
3721         (void) bfd_set_section_alignment (stdoutput, sec, 2);
3722       }
3723     else if (mips_flag_pdr)
3724       {
3725         pdr_seg = subseg_new (".pdr", (subsegT) 0);
3726         (void) bfd_set_section_flags (stdoutput, pdr_seg,
3727                                       SEC_READONLY | SEC_RELOC
3728                                       | SEC_DEBUGGING);
3729         (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
3730       }
3731
3732     subseg_set (seg, subseg);
3733   }
3734
3735   if (mips_fix_vr4120)
3736     init_vr4120_conflicts ();
3737 }
3738
3739 static inline void
3740 fpabi_incompatible_with (int fpabi, const char *what)
3741 {
3742   as_warn (_(".gnu_attribute %d,%d is incompatible with `%s'"),
3743            Tag_GNU_MIPS_ABI_FP, fpabi, what);
3744 }
3745
3746 static inline void
3747 fpabi_requires (int fpabi, const char *what)
3748 {
3749   as_warn (_(".gnu_attribute %d,%d requires `%s'"),
3750            Tag_GNU_MIPS_ABI_FP, fpabi, what);
3751 }
3752
3753 /* Check -mabi and register sizes against the specified FP ABI.  */
3754 static void
3755 check_fpabi (int fpabi)
3756 {
3757   switch (fpabi)
3758     {
3759     case Val_GNU_MIPS_ABI_FP_DOUBLE:
3760       if (file_mips_opts.soft_float)
3761         fpabi_incompatible_with (fpabi, "softfloat");
3762       else if (file_mips_opts.single_float)
3763         fpabi_incompatible_with (fpabi, "singlefloat");
3764       if (file_mips_opts.gp == 64 && file_mips_opts.fp == 32)
3765         fpabi_incompatible_with (fpabi, "gp=64 fp=32");
3766       else if (file_mips_opts.gp == 32 && file_mips_opts.fp == 64)
3767         fpabi_incompatible_with (fpabi, "gp=32 fp=64");
3768       break;
3769
3770     case Val_GNU_MIPS_ABI_FP_XX:
3771       if (mips_abi != O32_ABI)
3772         fpabi_requires (fpabi, "-mabi=32");
3773       else if (file_mips_opts.soft_float)
3774         fpabi_incompatible_with (fpabi, "softfloat");
3775       else if (file_mips_opts.single_float)
3776         fpabi_incompatible_with (fpabi, "singlefloat");
3777       else if (file_mips_opts.fp != 0)
3778         fpabi_requires (fpabi, "fp=xx");
3779       break;
3780
3781     case Val_GNU_MIPS_ABI_FP_64A:
3782     case Val_GNU_MIPS_ABI_FP_64:
3783       if (mips_abi != O32_ABI)
3784         fpabi_requires (fpabi, "-mabi=32");
3785       else if (file_mips_opts.soft_float)
3786         fpabi_incompatible_with (fpabi, "softfloat");
3787       else if (file_mips_opts.single_float)
3788         fpabi_incompatible_with (fpabi, "singlefloat");
3789       else if (file_mips_opts.fp != 64)
3790         fpabi_requires (fpabi, "fp=64");
3791       else if (fpabi == Val_GNU_MIPS_ABI_FP_64 && !file_mips_opts.oddspreg)
3792         fpabi_incompatible_with (fpabi, "nooddspreg");
3793       else if (fpabi == Val_GNU_MIPS_ABI_FP_64A && file_mips_opts.oddspreg)
3794         fpabi_requires (fpabi, "nooddspreg");
3795       break;
3796
3797     case Val_GNU_MIPS_ABI_FP_SINGLE:
3798       if (file_mips_opts.soft_float)
3799         fpabi_incompatible_with (fpabi, "softfloat");
3800       else if (!file_mips_opts.single_float)
3801         fpabi_requires (fpabi, "singlefloat");
3802       break;
3803
3804     case Val_GNU_MIPS_ABI_FP_SOFT:
3805       if (!file_mips_opts.soft_float)
3806         fpabi_requires (fpabi, "softfloat");
3807       break;
3808
3809     case Val_GNU_MIPS_ABI_FP_OLD_64:
3810       as_warn (_(".gnu_attribute %d,%d is no longer supported"),
3811                Tag_GNU_MIPS_ABI_FP, fpabi);
3812       break;
3813
3814     case Val_GNU_MIPS_ABI_FP_NAN2008:
3815       /* Silently ignore compatibility value.  */
3816       break;
3817
3818     default:
3819       as_warn (_(".gnu_attribute %d,%d is not a recognized"
3820                  " floating-point ABI"), Tag_GNU_MIPS_ABI_FP, fpabi);
3821       break;
3822     }
3823 }
3824
3825 /* Perform consistency checks on the current options.  */
3826
3827 static void
3828 mips_check_options (struct mips_set_options *opts, bfd_boolean abi_checks)
3829 {
3830   /* Check the size of integer registers agrees with the ABI and ISA.  */
3831   if (opts->gp == 64 && !ISA_HAS_64BIT_REGS (opts->isa))
3832     as_bad (_("`gp=64' used with a 32-bit processor"));
3833   else if (abi_checks
3834            && opts->gp == 32 && ABI_NEEDS_64BIT_REGS (mips_abi))
3835     as_bad (_("`gp=32' used with a 64-bit ABI"));
3836   else if (abi_checks
3837            && opts->gp == 64 && ABI_NEEDS_32BIT_REGS (mips_abi))
3838     as_bad (_("`gp=64' used with a 32-bit ABI"));
3839
3840   /* Check the size of the float registers agrees with the ABI and ISA.  */
3841   switch (opts->fp)
3842     {
3843     case 0:
3844       if (!CPU_HAS_LDC1_SDC1 (opts->arch))
3845         as_bad (_("`fp=xx' used with a cpu lacking ldc1/sdc1 instructions"));
3846       else if (opts->single_float == 1)
3847         as_bad (_("`fp=xx' cannot be used with `singlefloat'"));
3848       break;
3849     case 64:
3850       if (!ISA_HAS_64BIT_FPRS (opts->isa))
3851         as_bad (_("`fp=64' used with a 32-bit fpu"));
3852       else if (abi_checks
3853                && ABI_NEEDS_32BIT_REGS (mips_abi)
3854                && !ISA_HAS_MXHC1 (opts->isa))
3855         as_warn (_("`fp=64' used with a 32-bit ABI"));
3856       break;
3857     case 32:
3858       if (abi_checks
3859           && ABI_NEEDS_64BIT_REGS (mips_abi))
3860         as_warn (_("`fp=32' used with a 64-bit ABI"));
3861       if (ISA_IS_R6 (opts->isa) && opts->single_float == 0)
3862         as_bad (_("`fp=32' used with a MIPS R6 cpu"));
3863       break;
3864     default:
3865       as_bad (_("Unknown size of floating point registers"));
3866       break;
3867     }
3868
3869   if (ABI_NEEDS_64BIT_REGS (mips_abi) && !opts->oddspreg)
3870     as_bad (_("`nooddspreg` cannot be used with a 64-bit ABI"));
3871
3872   if (opts->micromips == 1 && opts->mips16 == 1)
3873     as_bad (_("`%s' cannot be used with `%s'"), "mips16", "micromips");
3874   else if (ISA_IS_R6 (opts->isa)
3875            && (opts->micromips == 1
3876                || opts->mips16 == 1))
3877     as_fatal (_("`%s' cannot be used with `%s'"),
3878               opts->micromips ? "micromips" : "mips16",
3879               mips_cpu_info_from_isa (opts->isa)->name);
3880
3881   if (ISA_IS_R6 (opts->isa) && mips_relax_branch)
3882     as_fatal (_("branch relaxation is not supported in `%s'"),
3883               mips_cpu_info_from_isa (opts->isa)->name);
3884 }
3885
3886 /* Perform consistency checks on the module level options exactly once.
3887    This is a deferred check that happens:
3888      at the first .set directive
3889      or, at the first pseudo op that generates code (inc .dc.a)
3890      or, at the first instruction
3891      or, at the end.  */
3892
3893 static void
3894 file_mips_check_options (void)
3895 {
3896   const struct mips_cpu_info *arch_info = 0;
3897
3898   if (file_mips_opts_checked)
3899     return;
3900
3901   /* The following code determines the register size.
3902      Similar code was added to GCC 3.3 (see override_options() in
3903      config/mips/mips.c).  The GAS and GCC code should be kept in sync
3904      as much as possible.  */
3905
3906   if (file_mips_opts.gp < 0)
3907     {
3908       /* Infer the integer register size from the ABI and processor.
3909          Restrict ourselves to 32-bit registers if that's all the
3910          processor has, or if the ABI cannot handle 64-bit registers.  */
3911       file_mips_opts.gp = (ABI_NEEDS_32BIT_REGS (mips_abi)
3912                            || !ISA_HAS_64BIT_REGS (file_mips_opts.isa))
3913                           ? 32 : 64;
3914     }
3915
3916   if (file_mips_opts.fp < 0)
3917     {
3918       /* No user specified float register size.
3919          ??? GAS treats single-float processors as though they had 64-bit
3920          float registers (although it complains when double-precision
3921          instructions are used).  As things stand, saying they have 32-bit
3922          registers would lead to spurious "register must be even" messages.
3923          So here we assume float registers are never smaller than the
3924          integer ones.  */
3925       if (file_mips_opts.gp == 64)
3926         /* 64-bit integer registers implies 64-bit float registers.  */
3927         file_mips_opts.fp = 64;
3928       else if ((file_mips_opts.ase & FP64_ASES)
3929                && ISA_HAS_64BIT_FPRS (file_mips_opts.isa))
3930         /* Handle ASEs that require 64-bit float registers, if possible.  */
3931         file_mips_opts.fp = 64;
3932       else if (ISA_IS_R6 (mips_opts.isa))
3933         /* R6 implies 64-bit float registers.  */
3934         file_mips_opts.fp = 64;
3935       else
3936         /* 32-bit float registers.  */
3937         file_mips_opts.fp = 32;
3938     }
3939
3940   arch_info = mips_cpu_info_from_arch (file_mips_opts.arch);
3941
3942   /* Disable operations on odd-numbered floating-point registers by default
3943      when using the FPXX ABI.  */
3944   if (file_mips_opts.oddspreg < 0)
3945     {
3946       if (file_mips_opts.fp == 0)
3947         file_mips_opts.oddspreg = 0;
3948       else
3949         file_mips_opts.oddspreg = 1;
3950     }
3951
3952   /* End of GCC-shared inference code.  */
3953
3954   /* This flag is set when we have a 64-bit capable CPU but use only
3955      32-bit wide registers.  Note that EABI does not use it.  */
3956   if (ISA_HAS_64BIT_REGS (file_mips_opts.isa)
3957       && ((mips_abi == NO_ABI && file_mips_opts.gp == 32)
3958           || mips_abi == O32_ABI))
3959     mips_32bitmode = 1;
3960
3961   if (file_mips_opts.isa == ISA_MIPS1 && mips_trap)
3962     as_bad (_("trap exception not supported at ISA 1"));
3963
3964   /* If the selected architecture includes support for ASEs, enable
3965      generation of code for them.  */
3966   if (file_mips_opts.mips16 == -1)
3967     file_mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_opts.arch)) ? 1 : 0;
3968   if (file_mips_opts.micromips == -1)
3969     file_mips_opts.micromips = (CPU_HAS_MICROMIPS (file_mips_opts.arch))
3970                                 ? 1 : 0;
3971
3972   if (mips_nan2008 == -1)
3973     mips_nan2008 = (ISA_HAS_LEGACY_NAN (file_mips_opts.isa)) ? 0 : 1;
3974   else if (!ISA_HAS_LEGACY_NAN (file_mips_opts.isa) && mips_nan2008 == 0)
3975     as_fatal (_("`%s' does not support legacy NaN"),
3976               mips_cpu_info_from_arch (file_mips_opts.arch)->name);
3977
3978   /* Some ASEs require 64-bit FPRs, so -mfp32 should stop those ASEs from
3979      being selected implicitly.  */
3980   if (file_mips_opts.fp != 64)
3981     file_ase_explicit |= ASE_MIPS3D | ASE_MDMX | ASE_MSA;
3982
3983   /* If the user didn't explicitly select or deselect a particular ASE,
3984      use the default setting for the CPU.  */
3985   file_mips_opts.ase |= (arch_info->ase & ~file_ase_explicit);
3986
3987   /* Set up the current options.  These may change throughout assembly.  */
3988   mips_opts = file_mips_opts;
3989
3990   mips_check_isa_supports_ases ();
3991   mips_check_options (&file_mips_opts, TRUE);
3992   file_mips_opts_checked = TRUE;
3993
3994   if (!bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_opts.arch))
3995     as_warn (_("could not set architecture and machine"));
3996 }
3997
3998 void
3999 md_assemble (char *str)
4000 {
4001   struct mips_cl_insn insn;
4002   bfd_reloc_code_real_type unused_reloc[3]
4003     = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
4004
4005   file_mips_check_options ();
4006
4007   imm_expr.X_op = O_absent;
4008   offset_expr.X_op = O_absent;
4009   offset_reloc[0] = BFD_RELOC_UNUSED;
4010   offset_reloc[1] = BFD_RELOC_UNUSED;
4011   offset_reloc[2] = BFD_RELOC_UNUSED;
4012
4013   mips_mark_labels ();
4014   mips_assembling_insn = TRUE;
4015   clear_insn_error ();
4016
4017   if (mips_opts.mips16)
4018     mips16_ip (str, &insn);
4019   else
4020     {
4021       mips_ip (str, &insn);
4022       DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
4023             str, insn.insn_opcode));
4024     }
4025
4026   if (insn_error.msg)
4027     report_insn_error (str);
4028   else if (insn.insn_mo->pinfo == INSN_MACRO)
4029     {
4030       macro_start ();
4031       if (mips_opts.mips16)
4032         mips16_macro (&insn);
4033       else
4034         macro (&insn, str);
4035       macro_end ();
4036     }
4037   else
4038     {
4039       if (offset_expr.X_op != O_absent)
4040         append_insn (&insn, &offset_expr, offset_reloc, FALSE);
4041       else
4042         append_insn (&insn, NULL, unused_reloc, FALSE);
4043     }
4044
4045   mips_assembling_insn = FALSE;
4046 }
4047
4048 /* Convenience functions for abstracting away the differences between
4049    MIPS16 and non-MIPS16 relocations.  */
4050
4051 static inline bfd_boolean
4052 mips16_reloc_p (bfd_reloc_code_real_type reloc)
4053 {
4054   switch (reloc)
4055     {
4056     case BFD_RELOC_MIPS16_JMP:
4057     case BFD_RELOC_MIPS16_GPREL:
4058     case BFD_RELOC_MIPS16_GOT16:
4059     case BFD_RELOC_MIPS16_CALL16:
4060     case BFD_RELOC_MIPS16_HI16_S:
4061     case BFD_RELOC_MIPS16_HI16:
4062     case BFD_RELOC_MIPS16_LO16:
4063       return TRUE;
4064
4065     default:
4066       return FALSE;
4067     }
4068 }
4069
4070 static inline bfd_boolean
4071 micromips_reloc_p (bfd_reloc_code_real_type reloc)
4072 {
4073   switch (reloc)
4074     {
4075     case BFD_RELOC_MICROMIPS_7_PCREL_S1:
4076     case BFD_RELOC_MICROMIPS_10_PCREL_S1:
4077     case BFD_RELOC_MICROMIPS_16_PCREL_S1:
4078     case BFD_RELOC_MICROMIPS_GPREL16:
4079     case BFD_RELOC_MICROMIPS_JMP:
4080     case BFD_RELOC_MICROMIPS_HI16:
4081     case BFD_RELOC_MICROMIPS_HI16_S:
4082     case BFD_RELOC_MICROMIPS_LO16:
4083     case BFD_RELOC_MICROMIPS_LITERAL:
4084     case BFD_RELOC_MICROMIPS_GOT16:
4085     case BFD_RELOC_MICROMIPS_CALL16:
4086     case BFD_RELOC_MICROMIPS_GOT_HI16:
4087     case BFD_RELOC_MICROMIPS_GOT_LO16:
4088     case BFD_RELOC_MICROMIPS_CALL_HI16:
4089     case BFD_RELOC_MICROMIPS_CALL_LO16:
4090     case BFD_RELOC_MICROMIPS_SUB:
4091     case BFD_RELOC_MICROMIPS_GOT_PAGE:
4092     case BFD_RELOC_MICROMIPS_GOT_OFST:
4093     case BFD_RELOC_MICROMIPS_GOT_DISP:
4094     case BFD_RELOC_MICROMIPS_HIGHEST:
4095     case BFD_RELOC_MICROMIPS_HIGHER:
4096     case BFD_RELOC_MICROMIPS_SCN_DISP:
4097     case BFD_RELOC_MICROMIPS_JALR:
4098       return TRUE;
4099
4100     default:
4101       return FALSE;
4102     }
4103 }
4104
4105 static inline bfd_boolean
4106 jmp_reloc_p (bfd_reloc_code_real_type reloc)
4107 {
4108   return reloc == BFD_RELOC_MIPS_JMP || reloc == BFD_RELOC_MICROMIPS_JMP;
4109 }
4110
4111 static inline bfd_boolean
4112 b_reloc_p (bfd_reloc_code_real_type reloc)
4113 {
4114   return (reloc == BFD_RELOC_MIPS_26_PCREL_S2
4115           || reloc == BFD_RELOC_MIPS_21_PCREL_S2
4116           || reloc == BFD_RELOC_16_PCREL_S2
4117           || reloc == BFD_RELOC_MICROMIPS_16_PCREL_S1
4118           || reloc == BFD_RELOC_MICROMIPS_10_PCREL_S1
4119           || reloc == BFD_RELOC_MICROMIPS_7_PCREL_S1);
4120 }
4121
4122 static inline bfd_boolean
4123 got16_reloc_p (bfd_reloc_code_real_type reloc)
4124 {
4125   return (reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16
4126           || reloc == BFD_RELOC_MICROMIPS_GOT16);
4127 }
4128
4129 static inline bfd_boolean
4130 hi16_reloc_p (bfd_reloc_code_real_type reloc)
4131 {
4132   return (reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S
4133           || reloc == BFD_RELOC_MICROMIPS_HI16_S);
4134 }
4135
4136 static inline bfd_boolean
4137 lo16_reloc_p (bfd_reloc_code_real_type reloc)
4138 {
4139   return (reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16
4140           || reloc == BFD_RELOC_MICROMIPS_LO16);
4141 }
4142
4143 static inline bfd_boolean
4144 jalr_reloc_p (bfd_reloc_code_real_type reloc)
4145 {
4146   return reloc == BFD_RELOC_MIPS_JALR || reloc == BFD_RELOC_MICROMIPS_JALR;
4147 }
4148
4149 static inline bfd_boolean
4150 gprel16_reloc_p (bfd_reloc_code_real_type reloc)
4151 {
4152   return (reloc == BFD_RELOC_GPREL16 || reloc == BFD_RELOC_MIPS16_GPREL
4153           || reloc == BFD_RELOC_MICROMIPS_GPREL16);
4154 }
4155
4156 /* Return true if RELOC is a PC-relative relocation that does not have
4157    full address range.  */
4158
4159 static inline bfd_boolean
4160 limited_pcrel_reloc_p (bfd_reloc_code_real_type reloc)
4161 {
4162   switch (reloc)
4163     {
4164     case BFD_RELOC_16_PCREL_S2:
4165     case BFD_RELOC_MICROMIPS_7_PCREL_S1:
4166     case BFD_RELOC_MICROMIPS_10_PCREL_S1:
4167     case BFD_RELOC_MICROMIPS_16_PCREL_S1:
4168     case BFD_RELOC_MIPS_21_PCREL_S2:
4169     case BFD_RELOC_MIPS_26_PCREL_S2:
4170     case BFD_RELOC_MIPS_18_PCREL_S3:
4171     case BFD_RELOC_MIPS_19_PCREL_S2:
4172       return TRUE;
4173
4174     case BFD_RELOC_32_PCREL:
4175     case BFD_RELOC_HI16_S_PCREL:
4176     case BFD_RELOC_LO16_PCREL:
4177       return HAVE_64BIT_ADDRESSES;
4178
4179     default:
4180       return FALSE;
4181     }
4182 }
4183
4184 /* Return true if the given relocation might need a matching %lo().
4185    This is only "might" because SVR4 R_MIPS_GOT16 relocations only
4186    need a matching %lo() when applied to local symbols.  */
4187
4188 static inline bfd_boolean
4189 reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
4190 {
4191   return (HAVE_IN_PLACE_ADDENDS
4192           && (hi16_reloc_p (reloc)
4193               /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
4194                  all GOT16 relocations evaluate to "G".  */
4195               || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC)));
4196 }
4197
4198 /* Return the type of %lo() reloc needed by RELOC, given that
4199    reloc_needs_lo_p.  */
4200
4201 static inline bfd_reloc_code_real_type
4202 matching_lo_reloc (bfd_reloc_code_real_type reloc)
4203 {
4204   return (mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16
4205           : (micromips_reloc_p (reloc) ? BFD_RELOC_MICROMIPS_LO16
4206              : BFD_RELOC_LO16));
4207 }
4208
4209 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
4210    relocation.  */
4211
4212 static inline bfd_boolean
4213 fixup_has_matching_lo_p (fixS *fixp)
4214 {
4215   return (fixp->fx_next != NULL
4216           && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type)
4217           && fixp->fx_addsy == fixp->fx_next->fx_addsy
4218           && fixp->fx_offset == fixp->fx_next->fx_offset);
4219 }
4220
4221 /* Move all labels in LABELS to the current insertion point.  TEXT_P
4222    says whether the labels refer to text or data.  */
4223
4224 static void
4225 mips_move_labels (struct insn_label_list *labels, bfd_boolean text_p)
4226 {
4227   struct insn_label_list *l;
4228   valueT val;
4229
4230   for (l = labels; l != NULL; l = l->next)
4231     {
4232       gas_assert (S_GET_SEGMENT (l->label) == now_seg);
4233       symbol_set_frag (l->label, frag_now);
4234       val = (valueT) frag_now_fix ();
4235       /* MIPS16/microMIPS text labels are stored as odd.  */
4236       if (text_p && HAVE_CODE_COMPRESSION)
4237         ++val;
4238       S_SET_VALUE (l->label, val);
4239     }
4240 }
4241
4242 /* Move all labels in insn_labels to the current insertion point
4243    and treat them as text labels.  */
4244
4245 static void
4246 mips_move_text_labels (void)
4247 {
4248   mips_move_labels (seg_info (now_seg)->label_list, TRUE);
4249 }
4250
4251 static bfd_boolean
4252 s_is_linkonce (symbolS *sym, segT from_seg)
4253 {
4254   bfd_boolean linkonce = FALSE;
4255   segT symseg = S_GET_SEGMENT (sym);
4256
4257   if (symseg != from_seg && !S_IS_LOCAL (sym))
4258     {
4259       if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE))
4260         linkonce = TRUE;
4261       /* The GNU toolchain uses an extension for ELF: a section
4262          beginning with the magic string .gnu.linkonce is a
4263          linkonce section.  */
4264       if (strncmp (segment_name (symseg), ".gnu.linkonce",
4265                    sizeof ".gnu.linkonce" - 1) == 0)
4266         linkonce = TRUE;
4267     }
4268   return linkonce;
4269 }
4270
4271 /* Mark MIPS16 or microMIPS instruction label LABEL.  This permits the
4272    linker to handle them specially, such as generating jalx instructions
4273    when needed.  We also make them odd for the duration of the assembly,
4274    in order to generate the right sort of code.  We will make them even
4275    in the adjust_symtab routine, while leaving them marked.  This is
4276    convenient for the debugger and the disassembler.  The linker knows
4277    to make them odd again.  */
4278
4279 static void
4280 mips_compressed_mark_label (symbolS *label)
4281 {
4282   gas_assert (HAVE_CODE_COMPRESSION);
4283
4284   if (mips_opts.mips16)
4285     S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
4286   else
4287     S_SET_OTHER (label, ELF_ST_SET_MICROMIPS (S_GET_OTHER (label)));
4288   if ((S_GET_VALUE (label) & 1) == 0
4289       /* Don't adjust the address if the label is global or weak, or
4290          in a link-once section, since we'll be emitting symbol reloc
4291          references to it which will be patched up by the linker, and
4292          the final value of the symbol may or may not be MIPS16/microMIPS.  */
4293       && !S_IS_WEAK (label)
4294       && !S_IS_EXTERNAL (label)
4295       && !s_is_linkonce (label, now_seg))
4296     S_SET_VALUE (label, S_GET_VALUE (label) | 1);
4297 }
4298
4299 /* Mark preceding MIPS16 or microMIPS instruction labels.  */
4300
4301 static void
4302 mips_compressed_mark_labels (void)
4303 {
4304   struct insn_label_list *l;
4305
4306   for (l = seg_info (now_seg)->label_list; l != NULL; l = l->next)
4307     mips_compressed_mark_label (l->label);
4308 }
4309
4310 /* End the current frag.  Make it a variant frag and record the
4311    relaxation info.  */
4312
4313 static void
4314 relax_close_frag (void)
4315 {
4316   mips_macro_warning.first_frag = frag_now;
4317   frag_var (rs_machine_dependent, 0, 0,
4318             RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
4319             mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
4320
4321   memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
4322   mips_relax.first_fixup = 0;
4323 }
4324
4325 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
4326    See the comment above RELAX_ENCODE for more details.  */
4327
4328 static void
4329 relax_start (symbolS *symbol)
4330 {
4331   gas_assert (mips_relax.sequence == 0);
4332   mips_relax.sequence = 1;
4333   mips_relax.symbol = symbol;
4334 }
4335
4336 /* Start generating the second version of a relaxable sequence.
4337    See the comment above RELAX_ENCODE for more details.  */
4338
4339 static void
4340 relax_switch (void)
4341 {
4342   gas_assert (mips_relax.sequence == 1);
4343   mips_relax.sequence = 2;
4344 }
4345
4346 /* End the current relaxable sequence.  */
4347
4348 static void
4349 relax_end (void)
4350 {
4351   gas_assert (mips_relax.sequence == 2);
4352   relax_close_frag ();
4353   mips_relax.sequence = 0;
4354 }
4355
4356 /* Return true if IP is a delayed branch or jump.  */
4357
4358 static inline bfd_boolean
4359 delayed_branch_p (const struct mips_cl_insn *ip)
4360 {
4361   return (ip->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
4362                                 | INSN_COND_BRANCH_DELAY
4363                                 | INSN_COND_BRANCH_LIKELY)) != 0;
4364 }
4365
4366 /* Return true if IP is a compact branch or jump.  */
4367
4368 static inline bfd_boolean
4369 compact_branch_p (const struct mips_cl_insn *ip)
4370 {
4371   return (ip->insn_mo->pinfo2 & (INSN2_UNCOND_BRANCH
4372                                  | INSN2_COND_BRANCH)) != 0;
4373 }
4374
4375 /* Return true if IP is an unconditional branch or jump.  */
4376
4377 static inline bfd_boolean
4378 uncond_branch_p (const struct mips_cl_insn *ip)
4379 {
4380   return ((ip->insn_mo->pinfo & INSN_UNCOND_BRANCH_DELAY) != 0
4381           || (ip->insn_mo->pinfo2 & INSN2_UNCOND_BRANCH) != 0);
4382 }
4383
4384 /* Return true if IP is a branch-likely instruction.  */
4385
4386 static inline bfd_boolean
4387 branch_likely_p (const struct mips_cl_insn *ip)
4388 {
4389   return (ip->insn_mo->pinfo & INSN_COND_BRANCH_LIKELY) != 0;
4390 }
4391
4392 /* Return the type of nop that should be used to fill the delay slot
4393    of delayed branch IP.  */
4394
4395 static struct mips_cl_insn *
4396 get_delay_slot_nop (const struct mips_cl_insn *ip)
4397 {
4398   if (mips_opts.micromips
4399       && (ip->insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
4400     return &micromips_nop32_insn;
4401   return NOP_INSN;
4402 }
4403
4404 /* Return a mask that has bit N set if OPCODE reads the register(s)
4405    in operand N.  */
4406
4407 static unsigned int
4408 insn_read_mask (const struct mips_opcode *opcode)
4409 {
4410   return (opcode->pinfo & INSN_READ_ALL) >> INSN_READ_SHIFT;
4411 }
4412
4413 /* Return a mask that has bit N set if OPCODE writes to the register(s)
4414    in operand N.  */
4415
4416 static unsigned int
4417 insn_write_mask (const struct mips_opcode *opcode)
4418 {
4419   return (opcode->pinfo & INSN_WRITE_ALL) >> INSN_WRITE_SHIFT;
4420 }
4421
4422 /* Return a mask of the registers specified by operand OPERAND of INSN.
4423    Ignore registers of type OP_REG_<t> unless bit OP_REG_<t> of TYPE_MASK
4424    is set.  */
4425
4426 static unsigned int
4427 operand_reg_mask (const struct mips_cl_insn *insn,
4428                   const struct mips_operand *operand,
4429                   unsigned int type_mask)
4430 {
4431   unsigned int uval, vsel;
4432
4433   switch (operand->type)
4434     {
4435     case OP_INT:
4436     case OP_MAPPED_INT:
4437     case OP_MSB:
4438     case OP_PCREL:
4439     case OP_PERF_REG:
4440     case OP_ADDIUSP_INT:
4441     case OP_ENTRY_EXIT_LIST:
4442     case OP_REPEAT_DEST_REG:
4443     case OP_REPEAT_PREV_REG:
4444     case OP_PC:
4445     case OP_VU0_SUFFIX:
4446     case OP_VU0_MATCH_SUFFIX:
4447     case OP_IMM_INDEX:
4448       abort ();
4449
4450     case OP_REG:
4451     case OP_OPTIONAL_REG:
4452       {
4453         const struct mips_reg_operand *reg_op;
4454
4455         reg_op = (const struct mips_reg_operand *) operand;
4456         if (!(type_mask & (1 << reg_op->reg_type)))
4457           return 0;
4458         uval = insn_extract_operand (insn, operand);
4459         return 1 << mips_decode_reg_operand (reg_op, uval);
4460       }
4461
4462     case OP_REG_PAIR:
4463       {
4464         const struct mips_reg_pair_operand *pair_op;
4465
4466         pair_op = (const struct mips_reg_pair_operand *) operand;
4467         if (!(type_mask & (1 << pair_op->reg_type)))
4468           return 0;
4469         uval = insn_extract_operand (insn, operand);
4470         return (1 << pair_op->reg1_map[uval]) | (1 << pair_op->reg2_map[uval]);
4471       }
4472
4473     case OP_CLO_CLZ_DEST:
4474       if (!(type_mask & (1 << OP_REG_GP)))
4475         return 0;
4476       uval = insn_extract_operand (insn, operand);
4477       return (1 << (uval & 31)) | (1 << (uval >> 5));
4478
4479     case OP_SAME_RS_RT:
4480       if (!(type_mask & (1 << OP_REG_GP)))
4481         return 0;
4482       uval = insn_extract_operand (insn, operand);
4483       gas_assert ((uval & 31) == (uval >> 5));
4484       return 1 << (uval & 31);
4485
4486     case OP_CHECK_PREV:
4487     case OP_NON_ZERO_REG:
4488       if (!(type_mask & (1 << OP_REG_GP)))
4489         return 0;
4490       uval = insn_extract_operand (insn, operand);
4491       return 1 << (uval & 31);
4492
4493     case OP_LWM_SWM_LIST:
4494       abort ();
4495
4496     case OP_SAVE_RESTORE_LIST:
4497       abort ();
4498
4499     case OP_MDMX_IMM_REG:
4500       if (!(type_mask & (1 << OP_REG_VEC)))
4501         return 0;
4502       uval = insn_extract_operand (insn, operand);
4503       vsel = uval >> 5;
4504       if ((vsel & 0x18) == 0x18)
4505         return 0;
4506       return 1 << (uval & 31);
4507
4508     case OP_REG_INDEX:
4509       if (!(type_mask & (1 << OP_REG_GP)))
4510         return 0;
4511       return 1 << insn_extract_operand (insn, operand);
4512     }
4513   abort ();
4514 }
4515
4516 /* Return a mask of the registers specified by operands OPNO_MASK of INSN,
4517    where bit N of OPNO_MASK is set if operand N should be included.
4518    Ignore registers of type OP_REG_<t> unless bit OP_REG_<t> of TYPE_MASK
4519    is set.  */
4520
4521 static unsigned int
4522 insn_reg_mask (const struct mips_cl_insn *insn,
4523                unsigned int type_mask, unsigned int opno_mask)
4524 {
4525   unsigned int opno, reg_mask;
4526
4527   opno = 0;
4528   reg_mask = 0;
4529   while (opno_mask != 0)
4530     {
4531       if (opno_mask & 1)
4532         reg_mask |= operand_reg_mask (insn, insn_opno (insn, opno), type_mask);
4533       opno_mask >>= 1;
4534       opno += 1;
4535     }
4536   return reg_mask;
4537 }
4538
4539 /* Return the mask of core registers that IP reads.  */
4540
4541 static unsigned int
4542 gpr_read_mask (const struct mips_cl_insn *ip)
4543 {
4544   unsigned long pinfo, pinfo2;
4545   unsigned int mask;
4546
4547   mask = insn_reg_mask (ip, 1 << OP_REG_GP, insn_read_mask (ip->insn_mo));
4548   pinfo = ip->insn_mo->pinfo;
4549   pinfo2 = ip->insn_mo->pinfo2;
4550   if (pinfo & INSN_UDI)
4551     {
4552       /* UDI instructions have traditionally been assumed to read RS
4553          and RT.  */
4554       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
4555       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
4556     }
4557   if (pinfo & INSN_READ_GPR_24)
4558     mask |= 1 << 24;
4559   if (pinfo2 & INSN2_READ_GPR_16)
4560     mask |= 1 << 16;
4561   if (pinfo2 & INSN2_READ_SP)
4562     mask |= 1 << SP;
4563   if (pinfo2 & INSN2_READ_GPR_31)
4564     mask |= 1 << 31;
4565   /* Don't include register 0.  */
4566   return mask & ~1;
4567 }
4568
4569 /* Return the mask of core registers that IP writes.  */
4570
4571 static unsigned int
4572 gpr_write_mask (const struct mips_cl_insn *ip)
4573 {
4574   unsigned long pinfo, pinfo2;
4575   unsigned int mask;
4576
4577   mask = insn_reg_mask (ip, 1 << OP_REG_GP, insn_write_mask (ip->insn_mo));
4578   pinfo = ip->insn_mo->pinfo;
4579   pinfo2 = ip->insn_mo->pinfo2;
4580   if (pinfo & INSN_WRITE_GPR_24)
4581     mask |= 1 << 24;
4582   if (pinfo & INSN_WRITE_GPR_31)
4583     mask |= 1 << 31;
4584   if (pinfo & INSN_UDI)
4585     /* UDI instructions have traditionally been assumed to write to RD.  */
4586     mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
4587   if (pinfo2 & INSN2_WRITE_SP)
4588     mask |= 1 << SP;
4589   /* Don't include register 0.  */
4590   return mask & ~1;
4591 }
4592
4593 /* Return the mask of floating-point registers that IP reads.  */
4594
4595 static unsigned int
4596 fpr_read_mask (const struct mips_cl_insn *ip)
4597 {
4598   unsigned long pinfo;
4599   unsigned int mask;
4600
4601   mask = insn_reg_mask (ip, ((1 << OP_REG_FP) | (1 << OP_REG_VEC)
4602                              | (1 << OP_REG_MSA)),
4603                         insn_read_mask (ip->insn_mo));
4604   pinfo = ip->insn_mo->pinfo;
4605   /* Conservatively treat all operands to an FP_D instruction are doubles.
4606      (This is overly pessimistic for things like cvt.d.s.)  */
4607   if (FPR_SIZE != 64 && (pinfo & FP_D))
4608     mask |= mask << 1;
4609   return mask;
4610 }
4611
4612 /* Return the mask of floating-point registers that IP writes.  */
4613
4614 static unsigned int
4615 fpr_write_mask (const struct mips_cl_insn *ip)
4616 {
4617   unsigned long pinfo;
4618   unsigned int mask;
4619
4620   mask = insn_reg_mask (ip, ((1 << OP_REG_FP) | (1 << OP_REG_VEC)
4621                              | (1 << OP_REG_MSA)),
4622                         insn_write_mask (ip->insn_mo));
4623   pinfo = ip->insn_mo->pinfo;
4624   /* Conservatively treat all operands to an FP_D instruction are doubles.
4625      (This is overly pessimistic for things like cvt.s.d.)  */
4626   if (FPR_SIZE != 64 && (pinfo & FP_D))
4627     mask |= mask << 1;
4628   return mask;
4629 }
4630
4631 /* Operand OPNUM of INSN is an odd-numbered floating-point register.
4632    Check whether that is allowed.  */
4633
4634 static bfd_boolean
4635 mips_oddfpreg_ok (const struct mips_opcode *insn, int opnum)
4636 {
4637   const char *s = insn->name;
4638   bfd_boolean oddspreg = (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa, mips_opts.arch)
4639                           || FPR_SIZE == 64)
4640                          && mips_opts.oddspreg;
4641
4642   if (insn->pinfo == INSN_MACRO)
4643     /* Let a macro pass, we'll catch it later when it is expanded.  */
4644     return TRUE;
4645
4646   /* Single-precision coprocessor loads and moves are OK for 32-bit registers,
4647      otherwise it depends on oddspreg.  */
4648   if ((insn->pinfo & FP_S)
4649       && (insn->pinfo & (INSN_LOAD_MEMORY | INSN_STORE_MEMORY
4650                          | INSN_LOAD_COPROC | INSN_COPROC_MOVE)))
4651     return FPR_SIZE == 32 || oddspreg;
4652
4653   /* Allow odd registers for single-precision ops and double-precision if the
4654      floating-point registers are 64-bit wide.  */
4655   switch (insn->pinfo & (FP_S | FP_D))
4656     {
4657     case FP_S:
4658     case 0:
4659       return oddspreg;
4660     case FP_D:
4661       return FPR_SIZE == 64;
4662     default:
4663       break;
4664     }
4665
4666   /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand.  */
4667   s = strchr (insn->name, '.');
4668   if (s != NULL && opnum == 2)
4669     s = strchr (s + 1, '.');
4670   if (s != NULL && (s[1] == 'w' || s[1] == 's'))
4671     return oddspreg;
4672
4673   return FPR_SIZE == 64;
4674 }
4675
4676 /* Information about an instruction argument that we're trying to match.  */
4677 struct mips_arg_info
4678 {
4679   /* The instruction so far.  */
4680   struct mips_cl_insn *insn;
4681
4682   /* The first unconsumed operand token.  */
4683   struct mips_operand_token *token;
4684
4685   /* The 1-based operand number, in terms of insn->insn_mo->args.  */
4686   int opnum;
4687
4688   /* The 1-based argument number, for error reporting.  This does not
4689      count elided optional registers, etc..  */
4690   int argnum;
4691
4692   /* The last OP_REG operand seen, or ILLEGAL_REG if none.  */
4693   unsigned int last_regno;
4694
4695   /* If the first operand was an OP_REG, this is the register that it
4696      specified, otherwise it is ILLEGAL_REG.  */
4697   unsigned int dest_regno;
4698
4699   /* The value of the last OP_INT operand.  Only used for OP_MSB,
4700      where it gives the lsb position.  */
4701   unsigned int last_op_int;
4702
4703   /* If true, match routines should assume that no later instruction
4704      alternative matches and should therefore be as accomodating as
4705      possible.  Match routines should not report errors if something
4706      is only invalid for !LAX_MATCH.  */
4707   bfd_boolean lax_match;
4708
4709   /* True if a reference to the current AT register was seen.  */
4710   bfd_boolean seen_at;
4711 };
4712
4713 /* Record that the argument is out of range.  */
4714
4715 static void
4716 match_out_of_range (struct mips_arg_info *arg)
4717 {
4718   set_insn_error_i (arg->argnum, _("operand %d out of range"), arg->argnum);
4719 }
4720
4721 /* Record that the argument isn't constant but needs to be.  */
4722
4723 static void
4724 match_not_constant (struct mips_arg_info *arg)
4725 {
4726   set_insn_error_i (arg->argnum, _("operand %d must be constant"),
4727                     arg->argnum);
4728 }
4729
4730 /* Try to match an OT_CHAR token for character CH.  Consume the token
4731    and return true on success, otherwise return false.  */
4732
4733 static bfd_boolean
4734 match_char (struct mips_arg_info *arg, char ch)
4735 {
4736   if (arg->token->type == OT_CHAR && arg->token->u.ch == ch)
4737     {
4738       ++arg->token;
4739       if (ch == ',')
4740         arg->argnum += 1;
4741       return TRUE;
4742     }
4743   return FALSE;
4744 }
4745
4746 /* Try to get an expression from the next tokens in ARG.  Consume the
4747    tokens and return true on success, storing the expression value in
4748    VALUE and relocation types in R.  */
4749
4750 static bfd_boolean
4751 match_expression (struct mips_arg_info *arg, expressionS *value,
4752                   bfd_reloc_code_real_type *r)
4753 {
4754   /* If the next token is a '(' that was parsed as being part of a base
4755      expression, assume we have an elided offset.  The later match will fail
4756      if this turns out to be wrong.  */
4757   if (arg->token->type == OT_CHAR && arg->token->u.ch == '(')
4758     {
4759       value->X_op = O_constant;
4760       value->X_add_number = 0;
4761       r[0] = r[1] = r[2] = BFD_RELOC_UNUSED;
4762       return TRUE;
4763     }
4764
4765   /* Reject register-based expressions such as "0+$2" and "(($2))".
4766      For plain registers the default error seems more appropriate.  */
4767   if (arg->token->type == OT_INTEGER
4768       && arg->token->u.integer.value.X_op == O_register)
4769     {
4770       set_insn_error (arg->argnum, _("register value used as expression"));
4771       return FALSE;
4772     }
4773
4774   if (arg->token->type == OT_INTEGER)
4775     {
4776       *value = arg->token->u.integer.value;
4777       memcpy (r, arg->token->u.integer.relocs, 3 * sizeof (*r));
4778       ++arg->token;
4779       return TRUE;
4780     }
4781
4782   set_insn_error_i
4783     (arg->argnum, _("operand %d must be an immediate expression"),
4784      arg->argnum);
4785   return FALSE;
4786 }
4787
4788 /* Try to get a constant expression from the next tokens in ARG.  Consume
4789    the tokens and return return true on success, storing the constant value
4790    in *VALUE.  Use FALLBACK as the value if the match succeeded with an
4791    error.  */
4792
4793 static bfd_boolean
4794 match_const_int (struct mips_arg_info *arg, offsetT *value)
4795 {
4796   expressionS ex;
4797   bfd_reloc_code_real_type r[3];
4798
4799   if (!match_expression (arg, &ex, r))
4800     return FALSE;
4801
4802   if (r[0] == BFD_RELOC_UNUSED && ex.X_op == O_constant)
4803     *value = ex.X_add_number;
4804   else
4805     {
4806       match_not_constant (arg);
4807       return FALSE;
4808     }
4809   return TRUE;
4810 }
4811
4812 /* Return the RTYPE_* flags for a register operand of type TYPE that
4813    appears in instruction OPCODE.  */
4814
4815 static unsigned int
4816 convert_reg_type (const struct mips_opcode *opcode,
4817                   enum mips_reg_operand_type type)
4818 {
4819   switch (type)
4820     {
4821     case OP_REG_GP:
4822       return RTYPE_NUM | RTYPE_GP;
4823
4824     case OP_REG_FP:
4825       /* Allow vector register names for MDMX if the instruction is a 64-bit
4826          FPR load, store or move (including moves to and from GPRs).  */
4827       if ((mips_opts.ase & ASE_MDMX)
4828           && (opcode->pinfo & FP_D)
4829           && (opcode->pinfo & (INSN_COPROC_MOVE
4830                                | INSN_COPROC_MEMORY_DELAY
4831                                | INSN_LOAD_COPROC
4832                                | INSN_LOAD_MEMORY
4833                                | INSN_STORE_MEMORY)))
4834         return RTYPE_FPU | RTYPE_VEC;
4835       return RTYPE_FPU;
4836
4837     case OP_REG_CCC:
4838       if (opcode->pinfo & (FP_D | FP_S))
4839         return RTYPE_CCC | RTYPE_FCC;
4840       return RTYPE_CCC;
4841
4842     case OP_REG_VEC:
4843       if (opcode->membership & INSN_5400)
4844         return RTYPE_FPU;
4845       return RTYPE_FPU | RTYPE_VEC;
4846
4847     case OP_REG_ACC:
4848       return RTYPE_ACC;
4849
4850     case OP_REG_COPRO:
4851       if (opcode->name[strlen (opcode->name) - 1] == '0')
4852         return RTYPE_NUM | RTYPE_CP0;
4853       return RTYPE_NUM;
4854
4855     case OP_REG_HW:
4856       return RTYPE_NUM;
4857
4858     case OP_REG_VI:
4859       return RTYPE_NUM | RTYPE_VI;
4860
4861     case OP_REG_VF:
4862       return RTYPE_NUM | RTYPE_VF;
4863
4864     case OP_REG_R5900_I:
4865       return RTYPE_R5900_I;
4866
4867     case OP_REG_R5900_Q:
4868       return RTYPE_R5900_Q;
4869
4870     case OP_REG_R5900_R:
4871       return RTYPE_R5900_R;
4872
4873     case OP_REG_R5900_ACC:
4874       return RTYPE_R5900_ACC;
4875
4876     case OP_REG_MSA:
4877       return RTYPE_MSA;
4878
4879     case OP_REG_MSA_CTRL:
4880       return RTYPE_NUM;
4881     }
4882   abort ();
4883 }
4884
4885 /* ARG is register REGNO, of type TYPE.  Warn about any dubious registers.  */
4886
4887 static void
4888 check_regno (struct mips_arg_info *arg,
4889              enum mips_reg_operand_type type, unsigned int regno)
4890 {
4891   if (AT && type == OP_REG_GP && regno == AT)
4892     arg->seen_at = TRUE;
4893
4894   if (type == OP_REG_FP
4895       && (regno & 1) != 0
4896       && !mips_oddfpreg_ok (arg->insn->insn_mo, arg->opnum))
4897     {
4898       /* This was a warning prior to introducing O32 FPXX and FP64 support
4899          so maintain a warning for FP32 but raise an error for the new
4900          cases.  */
4901       if (FPR_SIZE == 32)
4902         as_warn (_("float register should be even, was %d"), regno);
4903       else
4904         as_bad (_("float register should be even, was %d"), regno);
4905     }
4906
4907   if (type == OP_REG_CCC)
4908     {
4909       const char *name;
4910       size_t length;
4911
4912       name = arg->insn->insn_mo->name;
4913       length = strlen (name);
4914       if ((regno & 1) != 0
4915           && ((length >= 3 && strcmp (name + length - 3, ".ps") == 0)
4916               || (length >= 5 && strncmp (name + length - 5, "any2", 4) == 0)))
4917         as_warn (_("condition code register should be even for %s, was %d"),
4918                  name, regno);
4919
4920       if ((regno & 3) != 0
4921           && (length >= 5 && strncmp (name + length - 5, "any4", 4) == 0))
4922         as_warn (_("condition code register should be 0 or 4 for %s, was %d"),
4923                  name, regno);
4924     }
4925 }
4926
4927 /* ARG is a register with symbol value SYMVAL.  Try to interpret it as
4928    a register of type TYPE.  Return true on success, storing the register
4929    number in *REGNO and warning about any dubious uses.  */
4930
4931 static bfd_boolean
4932 match_regno (struct mips_arg_info *arg, enum mips_reg_operand_type type,
4933              unsigned int symval, unsigned int *regno)
4934 {
4935   if (type == OP_REG_VEC)
4936     symval = mips_prefer_vec_regno (symval);
4937   if (!(symval & convert_reg_type (arg->insn->insn_mo, type)))
4938     return FALSE;
4939
4940   *regno = symval & RNUM_MASK;
4941   check_regno (arg, type, *regno);
4942   return TRUE;
4943 }
4944
4945 /* Try to interpret the next token in ARG as a register of type TYPE.
4946    Consume the token and return true on success, storing the register
4947    number in *REGNO.  Return false on failure.  */
4948
4949 static bfd_boolean
4950 match_reg (struct mips_arg_info *arg, enum mips_reg_operand_type type,
4951            unsigned int *regno)
4952 {
4953   if (arg->token->type == OT_REG
4954       && match_regno (arg, type, arg->token->u.regno, regno))
4955     {
4956       ++arg->token;
4957       return TRUE;
4958     }
4959   return FALSE;
4960 }
4961
4962 /* Try to interpret the next token in ARG as a range of registers of type TYPE.
4963    Consume the token and return true on success, storing the register numbers
4964    in *REGNO1 and *REGNO2.  Return false on failure.  */
4965
4966 static bfd_boolean
4967 match_reg_range (struct mips_arg_info *arg, enum mips_reg_operand_type type,
4968                  unsigned int *regno1, unsigned int *regno2)
4969 {
4970   if (match_reg (arg, type, regno1))
4971     {
4972       *regno2 = *regno1;
4973       return TRUE;
4974     }
4975   if (arg->token->type == OT_REG_RANGE
4976       && match_regno (arg, type, arg->token->u.reg_range.regno1, regno1)
4977       && match_regno (arg, type, arg->token->u.reg_range.regno2, regno2)
4978       && *regno1 <= *regno2)
4979     {
4980       ++arg->token;
4981       return TRUE;
4982     }
4983   return FALSE;
4984 }
4985
4986 /* OP_INT matcher.  */
4987
4988 static bfd_boolean
4989 match_int_operand (struct mips_arg_info *arg,
4990                    const struct mips_operand *operand_base)
4991 {
4992   const struct mips_int_operand *operand;
4993   unsigned int uval;
4994   int min_val, max_val, factor;
4995   offsetT sval;
4996
4997   operand = (const struct mips_int_operand *) operand_base;
4998   factor = 1 << operand->shift;
4999   min_val = mips_int_operand_min (operand);
5000   max_val = mips_int_operand_max (operand);
5001
5002   if (operand_base->lsb == 0
5003       && operand_base->size == 16
5004       && operand->shift == 0
5005       && operand->bias == 0
5006       && (operand->max_val == 32767 || operand->max_val == 65535))
5007     {
5008       /* The operand can be relocated.  */
5009       if (!match_expression (arg, &offset_expr, offset_reloc))
5010         return FALSE;
5011
5012       if (offset_reloc[0] != BFD_RELOC_UNUSED)
5013         /* Relocation operators were used.  Accept the arguent and
5014            leave the relocation value in offset_expr and offset_relocs
5015            for the caller to process.  */
5016         return TRUE;
5017
5018       if (offset_expr.X_op != O_constant)
5019         {
5020           /* Accept non-constant operands if no later alternative matches,
5021              leaving it for the caller to process.  */
5022           if (!arg->lax_match)
5023             return FALSE;
5024           offset_reloc[0] = BFD_RELOC_LO16;
5025           return TRUE;
5026         }
5027
5028       /* Clear the global state; we're going to install the operand
5029          ourselves.  */
5030       sval = offset_expr.X_add_number;
5031       offset_expr.X_op = O_absent;
5032
5033       /* For compatibility with older assemblers, we accept
5034          0x8000-0xffff as signed 16-bit numbers when only
5035          signed numbers are allowed.  */
5036       if (sval > max_val)
5037         {
5038           max_val = ((1 << operand_base->size) - 1) << operand->shift;
5039           if (!arg->lax_match && sval <= max_val)
5040             return FALSE;
5041         }
5042     }
5043   else
5044     {
5045       if (!match_const_int (arg, &sval))
5046         return FALSE;
5047     }
5048
5049   arg->last_op_int = sval;
5050
5051   if (sval < min_val || sval > max_val || sval % factor)
5052     {
5053       match_out_of_range (arg);
5054       return FALSE;
5055     }
5056
5057   uval = (unsigned int) sval >> operand->shift;
5058   uval -= operand->bias;
5059
5060   /* Handle -mfix-cn63xxp1.  */
5061   if (arg->opnum == 1
5062       && mips_fix_cn63xxp1
5063       && !mips_opts.micromips
5064       && strcmp ("pref", arg->insn->insn_mo->name) == 0)
5065     switch (uval)
5066       {
5067       case 5:
5068       case 25:
5069       case 26:
5070       case 27:
5071       case 28:
5072       case 29:
5073       case 30:
5074       case 31:
5075         /* These are ok.  */
5076         break;
5077
5078       default:
5079         /* The rest must be changed to 28.  */
5080         uval = 28;
5081         break;
5082       }
5083
5084   insn_insert_operand (arg->insn, operand_base, uval);
5085   return TRUE;
5086 }
5087
5088 /* OP_MAPPED_INT matcher.  */
5089
5090 static bfd_boolean
5091 match_mapped_int_operand (struct mips_arg_info *arg,
5092                           const struct mips_operand *operand_base)
5093 {
5094   const struct mips_mapped_int_operand *operand;
5095   unsigned int uval, num_vals;
5096   offsetT sval;
5097
5098   operand = (const struct mips_mapped_int_operand *) operand_base;
5099   if (!match_const_int (arg, &sval))
5100     return FALSE;
5101
5102   num_vals = 1 << operand_base->size;
5103   for (uval = 0; uval < num_vals; uval++)
5104     if (operand->int_map[uval] == sval)
5105       break;
5106   if (uval == num_vals)
5107     {
5108       match_out_of_range (arg);
5109       return FALSE;
5110     }
5111
5112   insn_insert_operand (arg->insn, operand_base, uval);
5113   return TRUE;
5114 }
5115
5116 /* OP_MSB matcher.  */
5117
5118 static bfd_boolean
5119 match_msb_operand (struct mips_arg_info *arg,
5120                    const struct mips_operand *operand_base)
5121 {
5122   const struct mips_msb_operand *operand;
5123   int min_val, max_val, max_high;
5124   offsetT size, sval, high;
5125
5126   operand = (const struct mips_msb_operand *) operand_base;
5127   min_val = operand->bias;
5128   max_val = min_val + (1 << operand_base->size) - 1;
5129   max_high = operand->opsize;
5130
5131   if (!match_const_int (arg, &size))
5132     return FALSE;
5133
5134   high = size + arg->last_op_int;
5135   sval = operand->add_lsb ? high : size;
5136
5137   if (size < 0 || high > max_high || sval < min_val || sval > max_val)
5138     {
5139       match_out_of_range (arg);
5140       return FALSE;
5141     }
5142   insn_insert_operand (arg->insn, operand_base, sval - min_val);
5143   return TRUE;
5144 }
5145
5146 /* OP_REG matcher.  */
5147
5148 static bfd_boolean
5149 match_reg_operand (struct mips_arg_info *arg,
5150                    const struct mips_operand *operand_base)
5151 {
5152   const struct mips_reg_operand *operand;
5153   unsigned int regno, uval, num_vals;
5154
5155   operand = (const struct mips_reg_operand *) operand_base;
5156   if (!match_reg (arg, operand->reg_type, &regno))
5157     return FALSE;
5158
5159   if (operand->reg_map)
5160     {
5161       num_vals = 1 << operand->root.size;
5162       for (uval = 0; uval < num_vals; uval++)
5163         if (operand->reg_map[uval] == regno)
5164           break;
5165       if (num_vals == uval)
5166         return FALSE;
5167     }
5168   else
5169     uval = regno;
5170
5171   arg->last_regno = regno;
5172   if (arg->opnum == 1)
5173     arg->dest_regno = regno;
5174   insn_insert_operand (arg->insn, operand_base, uval);
5175   return TRUE;
5176 }
5177
5178 /* OP_REG_PAIR matcher.  */
5179
5180 static bfd_boolean
5181 match_reg_pair_operand (struct mips_arg_info *arg,
5182                         const struct mips_operand *operand_base)
5183 {
5184   const struct mips_reg_pair_operand *operand;
5185   unsigned int regno1, regno2, uval, num_vals;
5186
5187   operand = (const struct mips_reg_pair_operand *) operand_base;
5188   if (!match_reg (arg, operand->reg_type, &regno1)
5189       || !match_char (arg, ',')
5190       || !match_reg (arg, operand->reg_type, &regno2))
5191     return FALSE;
5192
5193   num_vals = 1 << operand_base->size;
5194   for (uval = 0; uval < num_vals; uval++)
5195     if (operand->reg1_map[uval] == regno1 && operand->reg2_map[uval] == regno2)
5196       break;
5197   if (uval == num_vals)
5198     return FALSE;
5199
5200   insn_insert_operand (arg->insn, operand_base, uval);
5201   return TRUE;
5202 }
5203
5204 /* OP_PCREL matcher.  The caller chooses the relocation type.  */
5205
5206 static bfd_boolean
5207 match_pcrel_operand (struct mips_arg_info *arg)
5208 {
5209   bfd_reloc_code_real_type r[3];
5210
5211   return match_expression (arg, &offset_expr, r) && r[0] == BFD_RELOC_UNUSED;
5212 }
5213
5214 /* OP_PERF_REG matcher.  */
5215
5216 static bfd_boolean
5217 match_perf_reg_operand (struct mips_arg_info *arg,
5218                         const struct mips_operand *operand)
5219 {
5220   offsetT sval;
5221
5222   if (!match_const_int (arg, &sval))
5223     return FALSE;
5224
5225   if (sval != 0
5226       && (sval != 1
5227           || (mips_opts.arch == CPU_R5900
5228               && (strcmp (arg->insn->insn_mo->name, "mfps") == 0
5229                   || strcmp (arg->insn->insn_mo->name, "mtps") == 0))))
5230     {
5231       set_insn_error (arg->argnum, _("invalid performance register"));
5232       return FALSE;
5233     }
5234
5235   insn_insert_operand (arg->insn, operand, sval);
5236   return TRUE;
5237 }
5238
5239 /* OP_ADDIUSP matcher.  */
5240
5241 static bfd_boolean
5242 match_addiusp_operand (struct mips_arg_info *arg,
5243                        const struct mips_operand *operand)
5244 {
5245   offsetT sval;
5246   unsigned int uval;
5247
5248   if (!match_const_int (arg, &sval))
5249     return FALSE;
5250
5251   if (sval % 4)
5252     {
5253       match_out_of_range (arg);
5254       return FALSE;
5255     }
5256
5257   sval /= 4;
5258   if (!(sval >= -258 && sval <= 257) || (sval >= -2 && sval <= 1))
5259     {
5260       match_out_of_range (arg);
5261       return FALSE;
5262     }
5263
5264   uval = (unsigned int) sval;
5265   uval = ((uval >> 1) & ~0xff) | (uval & 0xff);
5266   insn_insert_operand (arg->insn, operand, uval);
5267   return TRUE;
5268 }
5269
5270 /* OP_CLO_CLZ_DEST matcher.  */
5271
5272 static bfd_boolean
5273 match_clo_clz_dest_operand (struct mips_arg_info *arg,
5274                             const struct mips_operand *operand)
5275 {
5276   unsigned int regno;
5277
5278   if (!match_reg (arg, OP_REG_GP, &regno))
5279     return FALSE;
5280
5281   insn_insert_operand (arg->insn, operand, regno | (regno << 5));
5282   return TRUE;
5283 }
5284
5285 /* OP_CHECK_PREV matcher.  */
5286
5287 static bfd_boolean
5288 match_check_prev_operand (struct mips_arg_info *arg,
5289                           const struct mips_operand *operand_base)
5290 {
5291   const struct mips_check_prev_operand *operand;
5292   unsigned int regno;
5293
5294   operand = (const struct mips_check_prev_operand *) operand_base;
5295
5296   if (!match_reg (arg, OP_REG_GP, &regno))
5297     return FALSE;
5298
5299   if (!operand->zero_ok && regno == 0)
5300     return FALSE;
5301
5302   if ((operand->less_than_ok && regno < arg->last_regno)
5303       || (operand->greater_than_ok && regno > arg->last_regno)
5304       || (operand->equal_ok && regno == arg->last_regno))
5305     {
5306       arg->last_regno = regno;
5307       insn_insert_operand (arg->insn, operand_base, regno);
5308       return TRUE;
5309     }
5310
5311   return FALSE;
5312 }
5313
5314 /* OP_SAME_RS_RT matcher.  */
5315
5316 static bfd_boolean
5317 match_same_rs_rt_operand (struct mips_arg_info *arg,
5318                           const struct mips_operand *operand)
5319 {
5320   unsigned int regno;
5321
5322   if (!match_reg (arg, OP_REG_GP, &regno))
5323     return FALSE;
5324
5325   if (regno == 0)
5326     {
5327       set_insn_error (arg->argnum, _("the source register must not be $0"));
5328       return FALSE;
5329     }
5330
5331   arg->last_regno = regno;
5332
5333   insn_insert_operand (arg->insn, operand, regno | (regno << 5));
5334   return TRUE;
5335 }
5336
5337 /* OP_LWM_SWM_LIST matcher.  */
5338
5339 static bfd_boolean
5340 match_lwm_swm_list_operand (struct mips_arg_info *arg,
5341                             const struct mips_operand *operand)
5342 {
5343   unsigned int reglist, sregs, ra, regno1, regno2;
5344   struct mips_arg_info reset;
5345
5346   reglist = 0;
5347   if (!match_reg_range (arg, OP_REG_GP, &regno1, &regno2))
5348     return FALSE;
5349   do
5350     {
5351       if (regno2 == FP && regno1 >= S0 && regno1 <= S7)
5352         {
5353           reglist |= 1 << FP;
5354           regno2 = S7;
5355         }
5356       reglist |= ((1U << regno2 << 1) - 1) & -(1U << regno1);
5357       reset = *arg;
5358     }
5359   while (match_char (arg, ',')
5360          && match_reg_range (arg, OP_REG_GP, &regno1, &regno2));
5361   *arg = reset;
5362
5363   if (operand->size == 2)
5364     {
5365       /* The list must include both ra and s0-sN, for 0 <= N <= 3.  E.g.:
5366
5367          s0, ra
5368          s0, s1, ra, s2, s3
5369          s0-s2, ra
5370
5371          and any permutations of these.  */
5372       if ((reglist & 0xfff1ffff) != 0x80010000)
5373         return FALSE;
5374
5375       sregs = (reglist >> 17) & 7;
5376       ra = 0;
5377     }
5378   else
5379     {
5380       /* The list must include at least one of ra and s0-sN,
5381          for 0 <= N <= 8.  (Note that there is a gap between s7 and s8,
5382          which are $23 and $30 respectively.)  E.g.:
5383
5384          ra
5385          s0
5386          ra, s0, s1, s2
5387          s0-s8
5388          s0-s5, ra
5389
5390          and any permutations of these.  */
5391       if ((reglist & 0x3f00ffff) != 0)
5392         return FALSE;
5393
5394       ra = (reglist >> 27) & 0x10;
5395       sregs = ((reglist >> 22) & 0x100) | ((reglist >> 16) & 0xff);
5396     }
5397   sregs += 1;
5398   if ((sregs & -sregs) != sregs)
5399     return FALSE;
5400
5401   insn_insert_operand (arg->insn, operand, (ffs (sregs) - 1) | ra);
5402   return TRUE;
5403 }
5404
5405 /* OP_ENTRY_EXIT_LIST matcher.  */
5406
5407 static unsigned int
5408 match_entry_exit_operand (struct mips_arg_info *arg,
5409                           const struct mips_operand *operand)
5410 {
5411   unsigned int mask;
5412   bfd_boolean is_exit;
5413
5414   /* The format is the same for both ENTRY and EXIT, but the constraints
5415      are different.  */
5416   is_exit = strcmp (arg->insn->insn_mo->name, "exit") == 0;
5417   mask = (is_exit ? 7 << 3 : 0);
5418   do
5419     {
5420       unsigned int regno1, regno2;
5421       bfd_boolean is_freg;
5422
5423       if (match_reg_range (arg, OP_REG_GP, &regno1, &regno2))
5424         is_freg = FALSE;
5425       else if (match_reg_range (arg, OP_REG_FP, &regno1, &regno2))
5426         is_freg = TRUE;
5427       else
5428         return FALSE;
5429
5430       if (is_exit && is_freg && regno1 == 0 && regno2 < 2)
5431         {
5432           mask &= ~(7 << 3);
5433           mask |= (5 + regno2) << 3;
5434         }
5435       else if (!is_exit && regno1 == 4 && regno2 >= 4 && regno2 <= 7)
5436         mask |= (regno2 - 3) << 3;
5437       else if (regno1 == 16 && regno2 >= 16 && regno2 <= 17)
5438         mask |= (regno2 - 15) << 1;
5439       else if (regno1 == RA && regno2 == RA)
5440         mask |= 1;
5441       else
5442         return FALSE;
5443     }
5444   while (match_char (arg, ','));
5445
5446   insn_insert_operand (arg->insn, operand, mask);
5447   return TRUE;
5448 }
5449
5450 /* OP_SAVE_RESTORE_LIST matcher.  */
5451
5452 static bfd_boolean
5453 match_save_restore_list_operand (struct mips_arg_info *arg)
5454 {
5455   unsigned int opcode, args, statics, sregs;
5456   unsigned int num_frame_sizes, num_args, num_statics, num_sregs;
5457   offsetT frame_size;
5458
5459   opcode = arg->insn->insn_opcode;
5460   frame_size = 0;
5461   num_frame_sizes = 0;
5462   args = 0;
5463   statics = 0;
5464   sregs = 0;
5465   do
5466     {
5467       unsigned int regno1, regno2;
5468
5469       if (arg->token->type == OT_INTEGER)
5470         {
5471           /* Handle the frame size.  */
5472           if (!match_const_int (arg, &frame_size))
5473             return FALSE;
5474           num_frame_sizes += 1;
5475         }
5476       else
5477         {
5478           if (!match_reg_range (arg, OP_REG_GP, &regno1, &regno2))
5479             return FALSE;
5480
5481           while (regno1 <= regno2)
5482             {
5483               if (regno1 >= 4 && regno1 <= 7)
5484                 {
5485                   if (num_frame_sizes == 0)
5486                     /* args $a0-$a3 */
5487                     args |= 1 << (regno1 - 4);
5488                   else
5489                     /* statics $a0-$a3 */
5490                     statics |= 1 << (regno1 - 4);
5491                 }
5492               else if (regno1 >= 16 && regno1 <= 23)
5493                 /* $s0-$s7 */
5494                 sregs |= 1 << (regno1 - 16);
5495               else if (regno1 == 30)
5496                 /* $s8 */
5497                 sregs |= 1 << 8;
5498               else if (regno1 == 31)
5499                 /* Add $ra to insn.  */
5500                 opcode |= 0x40;
5501               else
5502                 return FALSE;
5503               regno1 += 1;
5504               if (regno1 == 24)
5505                 regno1 = 30;
5506             }
5507         }
5508     }
5509   while (match_char (arg, ','));
5510
5511   /* Encode args/statics combination.  */
5512   if (args & statics)
5513     return FALSE;
5514   else if (args == 0xf)
5515     /* All $a0-$a3 are args.  */
5516     opcode |= MIPS16_ALL_ARGS << 16;
5517   else if (statics == 0xf)
5518     /* All $a0-$a3 are statics.  */
5519     opcode |= MIPS16_ALL_STATICS << 16;
5520   else
5521     {
5522       /* Count arg registers.  */
5523       num_args = 0;
5524       while (args & 0x1)
5525         {
5526           args >>= 1;
5527           num_args += 1;
5528         }
5529       if (args != 0)
5530         return FALSE;
5531
5532       /* Count static registers.  */
5533       num_statics = 0;
5534       while (statics & 0x8)
5535         {
5536           statics = (statics << 1) & 0xf;
5537           num_statics += 1;
5538         }
5539       if (statics != 0)
5540         return FALSE;
5541
5542       /* Encode args/statics.  */
5543       opcode |= ((num_args << 2) | num_statics) << 16;
5544     }
5545
5546   /* Encode $s0/$s1.  */
5547   if (sregs & (1 << 0))         /* $s0 */
5548     opcode |= 0x20;
5549   if (sregs & (1 << 1))         /* $s1 */
5550     opcode |= 0x10;
5551   sregs >>= 2;
5552
5553   /* Encode $s2-$s8. */
5554   num_sregs = 0;
5555   while (sregs & 1)
5556     {
5557       sregs >>= 1;
5558       num_sregs += 1;
5559     }
5560   if (sregs != 0)
5561     return FALSE;
5562   opcode |= num_sregs << 24;
5563
5564   /* Encode frame size.  */
5565   if (num_frame_sizes == 0)
5566     {
5567       set_insn_error (arg->argnum, _("missing frame size"));
5568       return FALSE;
5569     }
5570   if (num_frame_sizes > 1)
5571     {
5572       set_insn_error (arg->argnum, _("frame size specified twice"));
5573       return FALSE;
5574     }
5575   if ((frame_size & 7) != 0 || frame_size < 0 || frame_size > 0xff * 8)
5576     {
5577       set_insn_error (arg->argnum, _("invalid frame size"));
5578       return FALSE;
5579     }
5580   if (frame_size != 128 || (opcode >> 16) != 0)
5581     {
5582       frame_size /= 8;
5583       opcode |= (((frame_size & 0xf0) << 16)
5584                  | (frame_size & 0x0f));
5585     }
5586
5587   /* Finally build the instruction.  */
5588   if ((opcode >> 16) != 0 || frame_size == 0)
5589     opcode |= MIPS16_EXTEND;
5590   arg->insn->insn_opcode = opcode;
5591   return TRUE;
5592 }
5593
5594 /* OP_MDMX_IMM_REG matcher.  */
5595
5596 static bfd_boolean
5597 match_mdmx_imm_reg_operand (struct mips_arg_info *arg,
5598                             const struct mips_operand *operand)
5599 {
5600   unsigned int regno, uval;
5601   bfd_boolean is_qh;
5602   const struct mips_opcode *opcode;
5603
5604   /* The mips_opcode records whether this is an octobyte or quadhalf
5605      instruction.  Start out with that bit in place.  */
5606   opcode = arg->insn->insn_mo;
5607   uval = mips_extract_operand (operand, opcode->match);
5608   is_qh = (uval != 0);
5609
5610   if (arg->token->type == OT_REG)
5611     {
5612       if ((opcode->membership & INSN_5400)
5613           && strcmp (opcode->name, "rzu.ob") == 0)
5614         {
5615           set_insn_error_i (arg->argnum, _("operand %d must be an immediate"),
5616                             arg->argnum);
5617           return FALSE;
5618         }
5619
5620       if (!match_regno (arg, OP_REG_VEC, arg->token->u.regno, &regno))
5621         return FALSE;
5622       ++arg->token;
5623
5624       /* Check whether this is a vector register or a broadcast of
5625          a single element.  */
5626       if (arg->token->type == OT_INTEGER_INDEX)
5627         {
5628           if (arg->token->u.index > (is_qh ? 3 : 7))
5629             {
5630               set_insn_error (arg->argnum, _("invalid element selector"));
5631               return FALSE;
5632             }
5633           uval |= arg->token->u.index << (is_qh ? 2 : 1) << 5;
5634           ++arg->token;
5635         }
5636       else
5637         {
5638           /* A full vector.  */
5639           if ((opcode->membership & INSN_5400)
5640               && (strcmp (opcode->name, "sll.ob") == 0
5641                   || strcmp (opcode->name, "srl.ob") == 0))
5642             {
5643               set_insn_error_i (arg->argnum, _("operand %d must be scalar"),
5644                                 arg->argnum);
5645               return FALSE;
5646             }
5647
5648           if (is_qh)
5649             uval |= MDMX_FMTSEL_VEC_QH << 5;
5650           else
5651             uval |= MDMX_FMTSEL_VEC_OB << 5;
5652         }
5653       uval |= regno;
5654     }
5655   else
5656     {
5657       offsetT sval;
5658
5659       if (!match_const_int (arg, &sval))
5660         return FALSE;
5661       if (sval < 0 || sval > 31)
5662         {
5663           match_out_of_range (arg);
5664           return FALSE;
5665         }
5666       uval |= (sval & 31);
5667       if (is_qh)
5668         uval |= MDMX_FMTSEL_IMM_QH << 5;
5669       else
5670         uval |= MDMX_FMTSEL_IMM_OB << 5;
5671     }
5672   insn_insert_operand (arg->insn, operand, uval);
5673   return TRUE;
5674 }
5675
5676 /* OP_IMM_INDEX matcher.  */
5677
5678 static bfd_boolean
5679 match_imm_index_operand (struct mips_arg_info *arg,
5680                          const struct mips_operand *operand)
5681 {
5682   unsigned int max_val;
5683
5684   if (arg->token->type != OT_INTEGER_INDEX)
5685     return FALSE;
5686
5687   max_val = (1 << operand->size) - 1;
5688   if (arg->token->u.index > max_val)
5689     {
5690       match_out_of_range (arg);
5691       return FALSE;
5692     }
5693   insn_insert_operand (arg->insn, operand, arg->token->u.index);
5694   ++arg->token;
5695   return TRUE;
5696 }
5697
5698 /* OP_REG_INDEX matcher.  */
5699
5700 static bfd_boolean
5701 match_reg_index_operand (struct mips_arg_info *arg,
5702                          const struct mips_operand *operand)
5703 {
5704   unsigned int regno;
5705
5706   if (arg->token->type != OT_REG_INDEX)
5707     return FALSE;
5708
5709   if (!match_regno (arg, OP_REG_GP, arg->token->u.regno, &regno))
5710     return FALSE;
5711
5712   insn_insert_operand (arg->insn, operand, regno);
5713   ++arg->token;
5714   return TRUE;
5715 }
5716
5717 /* OP_PC matcher.  */
5718
5719 static bfd_boolean
5720 match_pc_operand (struct mips_arg_info *arg)
5721 {
5722   if (arg->token->type == OT_REG && (arg->token->u.regno & RTYPE_PC))
5723     {
5724       ++arg->token;
5725       return TRUE;
5726     }
5727   return FALSE;
5728 }
5729
5730 /* OP_NON_ZERO_REG matcher.  */
5731
5732 static bfd_boolean
5733 match_non_zero_reg_operand (struct mips_arg_info *arg,
5734                             const struct mips_operand *operand)
5735 {
5736   unsigned int regno;
5737
5738   if (!match_reg (arg, OP_REG_GP, &regno))
5739     return FALSE;
5740
5741   if (regno == 0)
5742     return FALSE;
5743
5744   arg->last_regno = regno;
5745   insn_insert_operand (arg->insn, operand, regno);
5746   return TRUE;
5747 }
5748
5749 /* OP_REPEAT_DEST_REG and OP_REPEAT_PREV_REG matcher.  OTHER_REGNO is the
5750    register that we need to match.  */
5751
5752 static bfd_boolean
5753 match_tied_reg_operand (struct mips_arg_info *arg, unsigned int other_regno)
5754 {
5755   unsigned int regno;
5756
5757   return match_reg (arg, OP_REG_GP, &regno) && regno == other_regno;
5758 }
5759
5760 /* Read a floating-point constant from S for LI.S or LI.D.  LENGTH is
5761    the length of the value in bytes (4 for float, 8 for double) and
5762    USING_GPRS says whether the destination is a GPR rather than an FPR.
5763
5764    Return the constant in IMM and OFFSET as follows:
5765
5766    - If the constant should be loaded via memory, set IMM to O_absent and
5767      OFFSET to the memory address.
5768
5769    - Otherwise, if the constant should be loaded into two 32-bit registers,
5770      set IMM to the O_constant to load into the high register and OFFSET
5771      to the corresponding value for the low register.
5772
5773    - Otherwise, set IMM to the full O_constant and set OFFSET to O_absent.
5774
5775    These constants only appear as the last operand in an instruction,
5776    and every instruction that accepts them in any variant accepts them
5777    in all variants.  This means we don't have to worry about backing out
5778    any changes if the instruction does not match.  We just match
5779    unconditionally and report an error if the constant is invalid.  */
5780
5781 static bfd_boolean
5782 match_float_constant (struct mips_arg_info *arg, expressionS *imm,
5783                       expressionS *offset, int length, bfd_boolean using_gprs)
5784 {
5785   char *p;
5786   segT seg, new_seg;
5787   subsegT subseg;
5788   const char *newname;
5789   unsigned char *data;
5790
5791   /* Where the constant is placed is based on how the MIPS assembler
5792      does things:
5793
5794      length == 4 && using_gprs  -- immediate value only
5795      length == 8 && using_gprs  -- .rdata or immediate value
5796      length == 4 && !using_gprs -- .lit4 or immediate value
5797      length == 8 && !using_gprs -- .lit8 or immediate value
5798
5799      The .lit4 and .lit8 sections are only used if permitted by the
5800      -G argument.  */
5801   if (arg->token->type != OT_FLOAT)
5802     {
5803       set_insn_error (arg->argnum, _("floating-point expression required"));
5804       return FALSE;
5805     }
5806
5807   gas_assert (arg->token->u.flt.length == length);
5808   data = arg->token->u.flt.data;
5809   ++arg->token;
5810
5811   /* Handle 32-bit constants for which an immediate value is best.  */
5812   if (length == 4
5813       && (using_gprs
5814           || g_switch_value < 4
5815           || (data[0] == 0 && data[1] == 0)
5816           || (data[2] == 0 && data[3] == 0)))
5817     {
5818       imm->X_op = O_constant;
5819       if (!target_big_endian)
5820         imm->X_add_number = bfd_getl32 (data);
5821       else
5822         imm->X_add_number = bfd_getb32 (data);
5823       offset->X_op = O_absent;
5824       return TRUE;
5825     }
5826
5827   /* Handle 64-bit constants for which an immediate value is best.  */
5828   if (length == 8
5829       && !mips_disable_float_construction
5830       /* Constants can only be constructed in GPRs and copied to FPRs if the
5831          GPRs are at least as wide as the FPRs or MTHC1 is available.
5832          Unlike most tests for 32-bit floating-point registers this check
5833          specifically looks for GPR_SIZE == 32 as the FPXX ABI does not
5834          permit 64-bit moves without MXHC1.
5835          Force the constant into memory otherwise.  */
5836       && (using_gprs
5837           || GPR_SIZE == 64
5838           || ISA_HAS_MXHC1 (mips_opts.isa)
5839           || FPR_SIZE == 32)
5840       && ((data[0] == 0 && data[1] == 0)
5841           || (data[2] == 0 && data[3] == 0))
5842       && ((data[4] == 0 && data[5] == 0)
5843           || (data[6] == 0 && data[7] == 0)))
5844     {
5845       /* The value is simple enough to load with a couple of instructions.
5846          If using 32-bit registers, set IMM to the high order 32 bits and
5847          OFFSET to the low order 32 bits.  Otherwise, set IMM to the entire
5848          64 bit constant.  */
5849       if (GPR_SIZE == 32 || (!using_gprs && FPR_SIZE != 64))
5850         {
5851           imm->X_op = O_constant;
5852           offset->X_op = O_constant;
5853           if (!target_big_endian)
5854             {
5855               imm->X_add_number = bfd_getl32 (data + 4);
5856               offset->X_add_number = bfd_getl32 (data);
5857             }
5858           else
5859             {
5860               imm->X_add_number = bfd_getb32 (data);
5861               offset->X_add_number = bfd_getb32 (data + 4);
5862             }
5863           if (offset->X_add_number == 0)
5864             offset->X_op = O_absent;
5865         }
5866       else
5867         {
5868           imm->X_op = O_constant;
5869           if (!target_big_endian)
5870             imm->X_add_number = bfd_getl64 (data);
5871           else
5872             imm->X_add_number = bfd_getb64 (data);
5873           offset->X_op = O_absent;
5874         }
5875       return TRUE;
5876     }
5877
5878   /* Switch to the right section.  */
5879   seg = now_seg;
5880   subseg = now_subseg;
5881   if (length == 4)
5882     {
5883       gas_assert (!using_gprs && g_switch_value >= 4);
5884       newname = ".lit4";
5885     }
5886   else
5887     {
5888       if (using_gprs || g_switch_value < 8)
5889         newname = RDATA_SECTION_NAME;
5890       else
5891         newname = ".lit8";
5892     }
5893
5894   new_seg = subseg_new (newname, (subsegT) 0);
5895   bfd_set_section_flags (stdoutput, new_seg,
5896                          SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA);
5897   frag_align (length == 4 ? 2 : 3, 0, 0);
5898   if (strncmp (TARGET_OS, "elf", 3) != 0)
5899     record_alignment (new_seg, 4);
5900   else
5901     record_alignment (new_seg, length == 4 ? 2 : 3);
5902   if (seg == now_seg)
5903     as_bad (_("cannot use `%s' in this section"), arg->insn->insn_mo->name);
5904
5905   /* Set the argument to the current address in the section.  */
5906   imm->X_op = O_absent;
5907   offset->X_op = O_symbol;
5908   offset->X_add_symbol = symbol_temp_new_now ();
5909   offset->X_add_number = 0;
5910
5911   /* Put the floating point number into the section.  */
5912   p = frag_more (length);
5913   memcpy (p, data, length);
5914
5915   /* Switch back to the original section.  */
5916   subseg_set (seg, subseg);
5917   return TRUE;
5918 }
5919
5920 /* OP_VU0_SUFFIX and OP_VU0_MATCH_SUFFIX matcher; MATCH_P selects between
5921    them.  */
5922
5923 static bfd_boolean
5924 match_vu0_suffix_operand (struct mips_arg_info *arg,
5925                           const struct mips_operand *operand,
5926                           bfd_boolean match_p)
5927 {
5928   unsigned int uval;
5929
5930   /* The operand can be an XYZW mask or a single 2-bit channel index
5931      (with X being 0).  */
5932   gas_assert (operand->size == 2 || operand->size == 4);
5933
5934   /* The suffix can be omitted when it is already part of the opcode.  */
5935   if (arg->token->type != OT_CHANNELS)
5936     return match_p;
5937
5938   uval = arg->token->u.channels;
5939   if (operand->size == 2)
5940     {
5941       /* Check that a single bit is set and convert it into a 2-bit index.  */
5942       if ((uval & -uval) != uval)
5943         return FALSE;
5944       uval = 4 - ffs (uval);
5945     }
5946
5947   if (match_p && insn_extract_operand (arg->insn, operand) != uval)
5948     return FALSE;
5949
5950   ++arg->token;
5951   if (!match_p)
5952     insn_insert_operand (arg->insn, operand, uval);
5953   return TRUE;
5954 }
5955
5956 /* S is the text seen for ARG.  Match it against OPERAND.  Return the end
5957    of the argument text if the match is successful, otherwise return null.  */
5958
5959 static bfd_boolean
5960 match_operand (struct mips_arg_info *arg,
5961                const struct mips_operand *operand)
5962 {
5963   switch (operand->type)
5964     {
5965     case OP_INT:
5966       return match_int_operand (arg, operand);
5967
5968     case OP_MAPPED_INT:
5969       return match_mapped_int_operand (arg, operand);
5970
5971     case OP_MSB:
5972       return match_msb_operand (arg, operand);
5973
5974     case OP_REG:
5975     case OP_OPTIONAL_REG:
5976       return match_reg_operand (arg, operand);
5977
5978     case OP_REG_PAIR:
5979       return match_reg_pair_operand (arg, operand);
5980
5981     case OP_PCREL:
5982       return match_pcrel_operand (arg);
5983
5984     case OP_PERF_REG:
5985       return match_perf_reg_operand (arg, operand);
5986
5987     case OP_ADDIUSP_INT:
5988       return match_addiusp_operand (arg, operand);
5989
5990     case OP_CLO_CLZ_DEST:
5991       return match_clo_clz_dest_operand (arg, operand);
5992
5993     case OP_LWM_SWM_LIST:
5994       return match_lwm_swm_list_operand (arg, operand);
5995
5996     case OP_ENTRY_EXIT_LIST:
5997       return match_entry_exit_operand (arg, operand);
5998
5999     case OP_SAVE_RESTORE_LIST:
6000       return match_save_restore_list_operand (arg);
6001
6002     case OP_MDMX_IMM_REG:
6003       return match_mdmx_imm_reg_operand (arg, operand);
6004
6005     case OP_REPEAT_DEST_REG:
6006       return match_tied_reg_operand (arg, arg->dest_regno);
6007
6008     case OP_REPEAT_PREV_REG:
6009       return match_tied_reg_operand (arg, arg->last_regno);
6010
6011     case OP_PC:
6012       return match_pc_operand (arg);
6013
6014     case OP_VU0_SUFFIX:
6015       return match_vu0_suffix_operand (arg, operand, FALSE);
6016
6017     case OP_VU0_MATCH_SUFFIX:
6018       return match_vu0_suffix_operand (arg, operand, TRUE);
6019
6020     case OP_IMM_INDEX:
6021       return match_imm_index_operand (arg, operand);
6022
6023     case OP_REG_INDEX:
6024       return match_reg_index_operand (arg, operand);
6025
6026     case OP_SAME_RS_RT:
6027       return match_same_rs_rt_operand (arg, operand);
6028
6029     case OP_CHECK_PREV:
6030       return match_check_prev_operand (arg, operand);
6031
6032     case OP_NON_ZERO_REG:
6033       return match_non_zero_reg_operand (arg, operand);
6034     }
6035   abort ();
6036 }
6037
6038 /* ARG is the state after successfully matching an instruction.
6039    Issue any queued-up warnings.  */
6040
6041 static void
6042 check_completed_insn (struct mips_arg_info *arg)
6043 {
6044   if (arg->seen_at)
6045     {
6046       if (AT == ATREG)
6047         as_warn (_("used $at without \".set noat\""));
6048       else
6049         as_warn (_("used $%u with \".set at=$%u\""), AT, AT);
6050     }
6051 }
6052
6053 /* Return true if modifying general-purpose register REG needs a delay.  */
6054
6055 static bfd_boolean
6056 reg_needs_delay (unsigned int reg)
6057 {
6058   unsigned long prev_pinfo;
6059
6060   prev_pinfo = history[0].insn_mo->pinfo;
6061   if (!mips_opts.noreorder
6062       && (((prev_pinfo & INSN_LOAD_MEMORY) && !gpr_interlocks)
6063           || ((prev_pinfo & INSN_LOAD_COPROC) && !cop_interlocks))
6064       && (gpr_write_mask (&history[0]) & (1 << reg)))
6065     return TRUE;
6066
6067   return FALSE;
6068 }
6069
6070 /* Classify an instruction according to the FIX_VR4120_* enumeration.
6071    Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
6072    by VR4120 errata.  */
6073
6074 static unsigned int
6075 classify_vr4120_insn (const char *name)
6076 {
6077   if (strncmp (name, "macc", 4) == 0)
6078     return FIX_VR4120_MACC;
6079   if (strncmp (name, "dmacc", 5) == 0)
6080     return FIX_VR4120_DMACC;
6081   if (strncmp (name, "mult", 4) == 0)
6082     return FIX_VR4120_MULT;
6083   if (strncmp (name, "dmult", 5) == 0)
6084     return FIX_VR4120_DMULT;
6085   if (strstr (name, "div"))
6086     return FIX_VR4120_DIV;
6087   if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
6088     return FIX_VR4120_MTHILO;
6089   return NUM_FIX_VR4120_CLASSES;
6090 }
6091
6092 #define INSN_ERET       0x42000018
6093 #define INSN_DERET      0x4200001f
6094 #define INSN_DMULT      0x1c
6095 #define INSN_DMULTU     0x1d
6096
6097 /* Return the number of instructions that must separate INSN1 and INSN2,
6098    where INSN1 is the earlier instruction.  Return the worst-case value
6099    for any INSN2 if INSN2 is null.  */
6100
6101 static unsigned int
6102 insns_between (const struct mips_cl_insn *insn1,
6103                const struct mips_cl_insn *insn2)
6104 {
6105   unsigned long pinfo1, pinfo2;
6106   unsigned int mask;
6107
6108   /* If INFO2 is null, pessimistically assume that all flags are set for
6109      the second instruction.  */
6110   pinfo1 = insn1->insn_mo->pinfo;
6111   pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
6112
6113   /* For most targets, write-after-read dependencies on the HI and LO
6114      registers must be separated by at least two instructions.  */
6115   if (!hilo_interlocks)
6116     {
6117       if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
6118         return 2;
6119       if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
6120         return 2;
6121     }
6122
6123   /* If we're working around r7000 errata, there must be two instructions
6124      between an mfhi or mflo and any instruction that uses the result.  */
6125   if (mips_7000_hilo_fix
6126       && !mips_opts.micromips
6127       && MF_HILO_INSN (pinfo1)
6128       && (insn2 == NULL || (gpr_read_mask (insn2) & gpr_write_mask (insn1))))
6129     return 2;
6130
6131   /* If we're working around 24K errata, one instruction is required
6132      if an ERET or DERET is followed by a branch instruction.  */
6133   if (mips_fix_24k && !mips_opts.micromips)
6134     {
6135       if (insn1->insn_opcode == INSN_ERET
6136           || insn1->insn_opcode == INSN_DERET)
6137         {
6138           if (insn2 == NULL
6139               || insn2->insn_opcode == INSN_ERET
6140               || insn2->insn_opcode == INSN_DERET
6141               || delayed_branch_p (insn2))
6142             return 1;
6143         }
6144     }
6145
6146   /* If we're working around PMC RM7000 errata, there must be three
6147      nops between a dmult and a load instruction.  */
6148   if (mips_fix_rm7000 && !mips_opts.micromips)
6149     {
6150       if ((insn1->insn_opcode & insn1->insn_mo->mask) == INSN_DMULT
6151           || (insn1->insn_opcode & insn1->insn_mo->mask) == INSN_DMULTU)
6152         {
6153           if (pinfo2 & INSN_LOAD_MEMORY)
6154            return 3;
6155         }
6156     }
6157
6158   /* If working around VR4120 errata, check for combinations that need
6159      a single intervening instruction.  */
6160   if (mips_fix_vr4120 && !mips_opts.micromips)
6161     {
6162       unsigned int class1, class2;
6163
6164       class1 = classify_vr4120_insn (insn1->insn_mo->name);
6165       if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
6166         {
6167           if (insn2 == NULL)
6168             return 1;
6169           class2 = classify_vr4120_insn (insn2->insn_mo->name);
6170           if (vr4120_conflicts[class1] & (1 << class2))
6171             return 1;
6172         }
6173     }
6174
6175   if (!HAVE_CODE_COMPRESSION)
6176     {
6177       /* Check for GPR or coprocessor load delays.  All such delays
6178          are on the RT register.  */
6179       /* Itbl support may require additional care here.  */
6180       if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY))
6181           || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC)))
6182         {
6183           if (insn2 == NULL || (gpr_read_mask (insn2) & gpr_write_mask (insn1)))
6184             return 1;
6185         }
6186
6187       /* Check for generic coprocessor hazards.
6188
6189          This case is not handled very well.  There is no special
6190          knowledge of CP0 handling, and the coprocessors other than
6191          the floating point unit are not distinguished at all.  */
6192       /* Itbl support may require additional care here. FIXME!
6193          Need to modify this to include knowledge about
6194          user specified delays!  */
6195       else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE))
6196                || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
6197         {
6198           /* Handle cases where INSN1 writes to a known general coprocessor
6199              register.  There must be a one instruction delay before INSN2
6200              if INSN2 reads that register, otherwise no delay is needed.  */
6201           mask = fpr_write_mask (insn1);
6202           if (mask != 0)
6203             {
6204               if (!insn2 || (mask & fpr_read_mask (insn2)) != 0)
6205                 return 1;
6206             }
6207           else
6208             {
6209               /* Read-after-write dependencies on the control registers
6210                  require a two-instruction gap.  */
6211               if ((pinfo1 & INSN_WRITE_COND_CODE)
6212                   && (pinfo2 & INSN_READ_COND_CODE))
6213                 return 2;
6214
6215               /* We don't know exactly what INSN1 does.  If INSN2 is
6216                  also a coprocessor instruction, assume there must be
6217                  a one instruction gap.  */
6218               if (pinfo2 & INSN_COP)
6219                 return 1;
6220             }
6221         }
6222
6223       /* Check for read-after-write dependencies on the coprocessor
6224          control registers in cases where INSN1 does not need a general
6225          coprocessor delay.  This means that INSN1 is a floating point
6226          comparison instruction.  */
6227       /* Itbl support may require additional care here.  */
6228       else if (!cop_interlocks
6229                && (pinfo1 & INSN_WRITE_COND_CODE)
6230                && (pinfo2 & INSN_READ_COND_CODE))
6231         return 1;
6232     }
6233
6234   /* Forbidden slots can not contain Control Transfer Instructions (CTIs)
6235      CTIs include all branches and jumps, nal, eret, eretnc, deret, wait
6236      and pause.  */
6237   if ((insn1->insn_mo->pinfo2 & INSN2_FORBIDDEN_SLOT)
6238       && ((pinfo2 & INSN_NO_DELAY_SLOT)
6239           || (insn2 && delayed_branch_p (insn2))))
6240     return 1;
6241
6242   return 0;
6243 }
6244
6245 /* Return the number of nops that would be needed to work around the
6246    VR4130 mflo/mfhi errata if instruction INSN immediately followed
6247    the MAX_VR4130_NOPS instructions described by HIST.  Ignore hazards
6248    that are contained within the first IGNORE instructions of HIST.  */
6249
6250 static int
6251 nops_for_vr4130 (int ignore, const struct mips_cl_insn *hist,
6252                  const struct mips_cl_insn *insn)
6253 {
6254   int i, j;
6255   unsigned int mask;
6256
6257   /* Check if the instruction writes to HI or LO.  MTHI and MTLO
6258      are not affected by the errata.  */
6259   if (insn != 0
6260       && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
6261           || strcmp (insn->insn_mo->name, "mtlo") == 0
6262           || strcmp (insn->insn_mo->name, "mthi") == 0))
6263     return 0;
6264
6265   /* Search for the first MFLO or MFHI.  */
6266   for (i = 0; i < MAX_VR4130_NOPS; i++)
6267     if (MF_HILO_INSN (hist[i].insn_mo->pinfo))
6268       {
6269         /* Extract the destination register.  */
6270         mask = gpr_write_mask (&hist[i]);
6271
6272         /* No nops are needed if INSN reads that register.  */
6273         if (insn != NULL && (gpr_read_mask (insn) & mask) != 0)
6274           return 0;
6275
6276         /* ...or if any of the intervening instructions do.  */
6277         for (j = 0; j < i; j++)
6278           if (gpr_read_mask (&hist[j]) & mask)
6279             return 0;
6280
6281         if (i >= ignore)
6282           return MAX_VR4130_NOPS - i;
6283       }
6284   return 0;
6285 }
6286
6287 #define BASE_REG_EQ(INSN1, INSN2)       \
6288   ((((INSN1) >> OP_SH_RS) & OP_MASK_RS) \
6289       == (((INSN2) >> OP_SH_RS) & OP_MASK_RS))
6290
6291 /* Return the minimum alignment for this store instruction.  */
6292
6293 static int
6294 fix_24k_align_to (const struct mips_opcode *mo)
6295 {
6296   if (strcmp (mo->name, "sh") == 0)
6297     return 2;
6298
6299   if (strcmp (mo->name, "swc1") == 0
6300       || strcmp (mo->name, "swc2") == 0
6301       || strcmp (mo->name, "sw") == 0
6302       || strcmp (mo->name, "sc") == 0
6303       || strcmp (mo->name, "s.s") == 0)
6304     return 4;
6305
6306   if (strcmp (mo->name, "sdc1") == 0
6307       || strcmp (mo->name, "sdc2") == 0
6308       || strcmp (mo->name, "s.d") == 0)
6309     return 8;
6310
6311   /* sb, swl, swr */
6312   return 1;
6313 }
6314
6315 struct fix_24k_store_info
6316   {
6317     /* Immediate offset, if any, for this store instruction.  */
6318     short off;
6319     /* Alignment required by this store instruction.  */
6320     int align_to;
6321     /* True for register offsets.  */
6322     int register_offset;
6323   };
6324
6325 /* Comparison function used by qsort.  */
6326
6327 static int
6328 fix_24k_sort (const void *a, const void *b)
6329 {
6330   const struct fix_24k_store_info *pos1 = a;
6331   const struct fix_24k_store_info *pos2 = b;
6332
6333   return (pos1->off - pos2->off);
6334 }
6335
6336 /* INSN is a store instruction.  Try to record the store information
6337    in STINFO.  Return false if the information isn't known.  */
6338
6339 static bfd_boolean
6340 fix_24k_record_store_info (struct fix_24k_store_info *stinfo,
6341                            const struct mips_cl_insn *insn)
6342 {
6343   /* The instruction must have a known offset.  */
6344   if (!insn->complete_p || !strstr (insn->insn_mo->args, "o("))
6345     return FALSE;
6346
6347   stinfo->off = (insn->insn_opcode >> OP_SH_IMMEDIATE) & OP_MASK_IMMEDIATE;
6348   stinfo->align_to = fix_24k_align_to (insn->insn_mo);
6349   return TRUE;
6350 }
6351
6352 /* Return the number of nops that would be needed to work around the 24k
6353    "lost data on stores during refill" errata if instruction INSN
6354    immediately followed the 2 instructions described by HIST.
6355    Ignore hazards that are contained within the first IGNORE
6356    instructions of HIST.
6357
6358    Problem: The FSB (fetch store buffer) acts as an intermediate buffer
6359    for the data cache refills and store data. The following describes
6360    the scenario where the store data could be lost.
6361
6362    * A data cache miss, due to either a load or a store, causing fill
6363      data to be supplied by the memory subsystem
6364    * The first three doublewords of fill data are returned and written
6365      into the cache
6366    * A sequence of four stores occurs in consecutive cycles around the
6367      final doubleword of the fill:
6368    * Store A
6369    * Store B
6370    * Store C
6371    * Zero, One or more instructions
6372    * Store D
6373
6374    The four stores A-D must be to different doublewords of the line that
6375    is being filled. The fourth instruction in the sequence above permits
6376    the fill of the final doubleword to be transferred from the FSB into
6377    the cache. In the sequence above, the stores may be either integer
6378    (sb, sh, sw, swr, swl, sc) or coprocessor (swc1/swc2, sdc1/sdc2,
6379    swxc1, sdxc1, suxc1) stores, as long as the four stores are to
6380    different doublewords on the line. If the floating point unit is
6381    running in 1:2 mode, it is not possible to create the sequence above
6382    using only floating point store instructions.
6383
6384    In this case, the cache line being filled is incorrectly marked
6385    invalid, thereby losing the data from any store to the line that
6386    occurs between the original miss and the completion of the five
6387    cycle sequence shown above.
6388
6389    The workarounds are:
6390
6391    * Run the data cache in write-through mode.
6392    * Insert a non-store instruction between
6393      Store A and Store B or Store B and Store C.  */
6394
6395 static int
6396 nops_for_24k (int ignore, const struct mips_cl_insn *hist,
6397               const struct mips_cl_insn *insn)
6398 {
6399   struct fix_24k_store_info pos[3];
6400   int align, i, base_offset;
6401
6402   if (ignore >= 2)
6403     return 0;
6404
6405   /* If the previous instruction wasn't a store, there's nothing to
6406      worry about.  */
6407   if ((hist[0].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
6408     return 0;
6409
6410   /* If the instructions after the previous one are unknown, we have
6411      to assume the worst.  */
6412   if (!insn)
6413     return 1;
6414
6415   /* Check whether we are dealing with three consecutive stores.  */
6416   if ((insn->insn_mo->pinfo & INSN_STORE_MEMORY) == 0
6417       || (hist[1].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
6418     return 0;
6419
6420   /* If we don't know the relationship between the store addresses,
6421      assume the worst.  */
6422   if (!BASE_REG_EQ (insn->insn_opcode, hist[0].insn_opcode)
6423       || !BASE_REG_EQ (insn->insn_opcode, hist[1].insn_opcode))
6424     return 1;
6425
6426   if (!fix_24k_record_store_info (&pos[0], insn)
6427       || !fix_24k_record_store_info (&pos[1], &hist[0])
6428       || !fix_24k_record_store_info (&pos[2], &hist[1]))
6429     return 1;
6430
6431   qsort (&pos, 3, sizeof (struct fix_24k_store_info), fix_24k_sort);
6432
6433   /* Pick a value of ALIGN and X such that all offsets are adjusted by
6434      X bytes and such that the base register + X is known to be aligned
6435      to align bytes.  */
6436
6437   if (((insn->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == SP)
6438     align = 8;
6439   else
6440     {
6441       align = pos[0].align_to;
6442       base_offset = pos[0].off;
6443       for (i = 1; i < 3; i++)
6444         if (align < pos[i].align_to)
6445           {
6446             align = pos[i].align_to;
6447             base_offset = pos[i].off;
6448           }
6449       for (i = 0; i < 3; i++)
6450         pos[i].off -= base_offset;
6451     }
6452
6453   pos[0].off &= ~align + 1;
6454   pos[1].off &= ~align + 1;
6455   pos[2].off &= ~align + 1;
6456
6457   /* If any two stores write to the same chunk, they also write to the
6458      same doubleword.  The offsets are still sorted at this point.  */
6459   if (pos[0].off == pos[1].off || pos[1].off == pos[2].off)
6460     return 0;
6461
6462   /* A range of at least 9 bytes is needed for the stores to be in
6463      non-overlapping doublewords.  */
6464   if (pos[2].off - pos[0].off <= 8)
6465     return 0;
6466
6467   if (pos[2].off - pos[1].off >= 24
6468       || pos[1].off - pos[0].off >= 24
6469       || pos[2].off - pos[0].off >= 32)
6470     return 0;
6471
6472   return 1;
6473 }
6474
6475 /* Return the number of nops that would be needed if instruction INSN
6476    immediately followed the MAX_NOPS instructions given by HIST,
6477    where HIST[0] is the most recent instruction.  Ignore hazards
6478    between INSN and the first IGNORE instructions in HIST.
6479
6480    If INSN is null, return the worse-case number of nops for any
6481    instruction.  */
6482
6483 static int
6484 nops_for_insn (int ignore, const struct mips_cl_insn *hist,
6485                const struct mips_cl_insn *insn)
6486 {
6487   int i, nops, tmp_nops;
6488
6489   nops = 0;
6490   for (i = ignore; i < MAX_DELAY_NOPS; i++)
6491     {
6492       tmp_nops = insns_between (hist + i, insn) - i;
6493       if (tmp_nops > nops)
6494         nops = tmp_nops;
6495     }
6496
6497   if (mips_fix_vr4130 && !mips_opts.micromips)
6498     {
6499       tmp_nops = nops_for_vr4130 (ignore, hist, insn);
6500       if (tmp_nops > nops)
6501         nops = tmp_nops;
6502     }
6503
6504   if (mips_fix_24k && !mips_opts.micromips)
6505     {
6506       tmp_nops = nops_for_24k (ignore, hist, insn);
6507       if (tmp_nops > nops)
6508         nops = tmp_nops;
6509     }
6510
6511   return nops;
6512 }
6513
6514 /* The variable arguments provide NUM_INSNS extra instructions that
6515    might be added to HIST.  Return the largest number of nops that
6516    would be needed after the extended sequence, ignoring hazards
6517    in the first IGNORE instructions.  */
6518
6519 static int
6520 nops_for_sequence (int num_insns, int ignore,
6521                    const struct mips_cl_insn *hist, ...)
6522 {
6523   va_list args;
6524   struct mips_cl_insn buffer[MAX_NOPS];
6525   struct mips_cl_insn *cursor;
6526   int nops;
6527
6528   va_start (args, hist);
6529   cursor = buffer + num_insns;
6530   memcpy (cursor, hist, (MAX_NOPS - num_insns) * sizeof (*cursor));
6531   while (cursor > buffer)
6532     *--cursor = *va_arg (args, const struct mips_cl_insn *);
6533
6534   nops = nops_for_insn (ignore, buffer, NULL);
6535   va_end (args);
6536   return nops;
6537 }
6538
6539 /* Like nops_for_insn, but if INSN is a branch, take into account the
6540    worst-case delay for the branch target.  */
6541
6542 static int
6543 nops_for_insn_or_target (int ignore, const struct mips_cl_insn *hist,
6544                          const struct mips_cl_insn *insn)
6545 {
6546   int nops, tmp_nops;
6547
6548   nops = nops_for_insn (ignore, hist, insn);
6549   if (delayed_branch_p (insn))
6550     {
6551       tmp_nops = nops_for_sequence (2, ignore ? ignore + 2 : 0,
6552                                     hist, insn, get_delay_slot_nop (insn));
6553       if (tmp_nops > nops)
6554         nops = tmp_nops;
6555     }
6556   else if (compact_branch_p (insn))
6557     {
6558       tmp_nops = nops_for_sequence (1, ignore ? ignore + 1 : 0, hist, insn);
6559       if (tmp_nops > nops)
6560         nops = tmp_nops;
6561     }
6562   return nops;
6563 }
6564
6565 /* Fix NOP issue: Replace nops by "or at,at,zero".  */
6566
6567 static void
6568 fix_loongson2f_nop (struct mips_cl_insn * ip)
6569 {
6570   gas_assert (!HAVE_CODE_COMPRESSION);
6571   if (strcmp (ip->insn_mo->name, "nop") == 0)
6572     ip->insn_opcode = LOONGSON2F_NOP_INSN;
6573 }
6574
6575 /* Fix Jump Issue: Eliminate instruction fetch from outside 256M region
6576                    jr target pc &= 'hffff_ffff_cfff_ffff.  */
6577
6578 static void
6579 fix_loongson2f_jump (struct mips_cl_insn * ip)
6580 {
6581   gas_assert (!HAVE_CODE_COMPRESSION);
6582   if (strcmp (ip->insn_mo->name, "j") == 0
6583       || strcmp (ip->insn_mo->name, "jr") == 0
6584       || strcmp (ip->insn_mo->name, "jalr") == 0)
6585     {
6586       int sreg;
6587       expressionS ep;
6588
6589       if (! mips_opts.at)
6590         return;
6591
6592       sreg = EXTRACT_OPERAND (0, RS, *ip);
6593       if (sreg == ZERO || sreg == KT0 || sreg == KT1 || sreg == ATREG)
6594         return;
6595
6596       ep.X_op = O_constant;
6597       ep.X_add_number = 0xcfff0000;
6598       macro_build (&ep, "lui", "t,u", ATREG, BFD_RELOC_HI16);
6599       ep.X_add_number = 0xffff;
6600       macro_build (&ep, "ori", "t,r,i", ATREG, ATREG, BFD_RELOC_LO16);
6601       macro_build (NULL, "and", "d,v,t", sreg, sreg, ATREG);
6602     }
6603 }
6604
6605 static void
6606 fix_loongson2f (struct mips_cl_insn * ip)
6607 {
6608   if (mips_fix_loongson2f_nop)
6609     fix_loongson2f_nop (ip);
6610
6611   if (mips_fix_loongson2f_jump)
6612     fix_loongson2f_jump (ip);
6613 }
6614
6615 /* IP is a branch that has a delay slot, and we need to fill it
6616    automatically.   Return true if we can do that by swapping IP
6617    with the previous instruction.
6618    ADDRESS_EXPR is an operand of the instruction to be used with
6619    RELOC_TYPE.  */
6620
6621 static bfd_boolean
6622 can_swap_branch_p (struct mips_cl_insn *ip, expressionS *address_expr,
6623                    bfd_reloc_code_real_type *reloc_type)
6624 {
6625   unsigned long pinfo, pinfo2, prev_pinfo, prev_pinfo2;
6626   unsigned int gpr_read, gpr_write, prev_gpr_read, prev_gpr_write;
6627   unsigned int fpr_read, prev_fpr_write;
6628
6629   /* -O2 and above is required for this optimization.  */
6630   if (mips_optimize < 2)
6631     return FALSE;
6632
6633   /* If we have seen .set volatile or .set nomove, don't optimize.  */
6634   if (mips_opts.nomove)
6635     return FALSE;
6636
6637   /* We can't swap if the previous instruction's position is fixed.  */
6638   if (history[0].fixed_p)
6639     return FALSE;
6640
6641   /* If the previous previous insn was in a .set noreorder, we can't
6642      swap.  Actually, the MIPS assembler will swap in this situation.
6643      However, gcc configured -with-gnu-as will generate code like
6644
6645         .set    noreorder
6646         lw      $4,XXX
6647         .set    reorder
6648         INSN
6649         bne     $4,$0,foo
6650
6651      in which we can not swap the bne and INSN.  If gcc is not configured
6652      -with-gnu-as, it does not output the .set pseudo-ops.  */
6653   if (history[1].noreorder_p)
6654     return FALSE;
6655
6656   /* If the previous instruction had a fixup in mips16 mode, we can not swap.
6657      This means that the previous instruction was a 4-byte one anyhow.  */
6658   if (mips_opts.mips16 && history[0].fixp[0])
6659     return FALSE;
6660
6661   /* If the branch is itself the target of a branch, we can not swap.
6662      We cheat on this; all we check for is whether there is a label on
6663      this instruction.  If there are any branches to anything other than
6664      a label, users must use .set noreorder.  */
6665   if (seg_info (now_seg)->label_list)
6666     return FALSE;
6667
6668   /* If the previous instruction is in a variant frag other than this
6669      branch's one, we cannot do the swap.  This does not apply to
6670      MIPS16 code, which uses variant frags for different purposes.  */
6671   if (!mips_opts.mips16
6672       && history[0].frag
6673       && history[0].frag->fr_type == rs_machine_dependent)
6674     return FALSE;
6675
6676   /* We do not swap with instructions that cannot architecturally
6677      be placed in a branch delay slot, such as SYNC or ERET.  We
6678      also refrain from swapping with a trap instruction, since it
6679      complicates trap handlers to have the trap instruction be in
6680      a delay slot.  */
6681   prev_pinfo = history[0].insn_mo->pinfo;
6682   if (prev_pinfo & INSN_NO_DELAY_SLOT)
6683     return FALSE;
6684
6685   /* Check for conflicts between the branch and the instructions
6686      before the candidate delay slot.  */
6687   if (nops_for_insn (0, history + 1, ip) > 0)
6688     return FALSE;
6689
6690   /* Check for conflicts between the swapped sequence and the
6691      target of the branch.  */
6692   if (nops_for_sequence (2, 0, history + 1, ip, history) > 0)
6693     return FALSE;
6694
6695   /* If the branch reads a register that the previous
6696      instruction sets, we can not swap.  */
6697   gpr_read = gpr_read_mask (ip);
6698   prev_gpr_write = gpr_write_mask (&history[0]);
6699   if (gpr_read & prev_gpr_write)
6700     return FALSE;
6701
6702   fpr_read = fpr_read_mask (ip);
6703   prev_fpr_write = fpr_write_mask (&history[0]);
6704   if (fpr_read & prev_fpr_write)
6705     return FALSE;
6706
6707   /* If the branch writes a register that the previous
6708      instruction sets, we can not swap.  */
6709   gpr_write = gpr_write_mask (ip);
6710   if (gpr_write & prev_gpr_write)
6711     return FALSE;
6712
6713   /* If the branch writes a register that the previous
6714      instruction reads, we can not swap.  */
6715   prev_gpr_read = gpr_read_mask (&history[0]);
6716   if (gpr_write & prev_gpr_read)
6717     return FALSE;
6718
6719   /* If one instruction sets a condition code and the
6720      other one uses a condition code, we can not swap.  */
6721   pinfo = ip->insn_mo->pinfo;
6722   if ((pinfo & INSN_READ_COND_CODE)
6723       && (prev_pinfo & INSN_WRITE_COND_CODE))
6724     return FALSE;
6725   if ((pinfo & INSN_WRITE_COND_CODE)
6726       && (prev_pinfo & INSN_READ_COND_CODE))
6727     return FALSE;
6728
6729   /* If the previous instruction uses the PC, we can not swap.  */
6730   prev_pinfo2 = history[0].insn_mo->pinfo2;
6731   if (prev_pinfo2 & INSN2_READ_PC)
6732     return FALSE;
6733
6734   /* If the previous instruction has an incorrect size for a fixed
6735      branch delay slot in microMIPS mode, we cannot swap.  */
6736   pinfo2 = ip->insn_mo->pinfo2;
6737   if (mips_opts.micromips
6738       && (pinfo2 & INSN2_BRANCH_DELAY_16BIT)
6739       && insn_length (history) != 2)
6740     return FALSE;
6741   if (mips_opts.micromips
6742       && (pinfo2 & INSN2_BRANCH_DELAY_32BIT)
6743       && insn_length (history) != 4)
6744     return FALSE;
6745
6746   /* On R5900 short loops need to be fixed by inserting a nop in
6747      the branch delay slots.
6748      A short loop can be terminated too early.  */
6749   if (mips_opts.arch == CPU_R5900
6750       /* Check if instruction has a parameter, ignore "j $31". */
6751       && (address_expr != NULL)
6752       /* Parameter must be 16 bit. */
6753       && (*reloc_type == BFD_RELOC_16_PCREL_S2)
6754       /* Branch to same segment. */
6755       && (S_GET_SEGMENT (address_expr->X_add_symbol) == now_seg)
6756       /* Branch to same code fragment. */
6757       && (symbol_get_frag (address_expr->X_add_symbol) == frag_now)
6758       /* Can only calculate branch offset if value is known. */
6759       && symbol_constant_p (address_expr->X_add_symbol)
6760       /* Check if branch is really conditional. */
6761       && !((ip->insn_opcode & 0xffff0000) == 0x10000000   /* beq $0,$0 */
6762         || (ip->insn_opcode & 0xffff0000) == 0x04010000   /* bgez $0 */
6763         || (ip->insn_opcode & 0xffff0000) == 0x04110000)) /* bgezal $0 */
6764     {
6765       int distance;
6766       /* Check if loop is shorter than 6 instructions including
6767          branch and delay slot.  */
6768       distance = frag_now_fix () - S_GET_VALUE (address_expr->X_add_symbol);
6769       if (distance <= 20)
6770         {
6771           int i;
6772           int rv;
6773
6774           rv = FALSE;
6775           /* When the loop includes branches or jumps,
6776              it is not a short loop. */
6777           for (i = 0; i < (distance / 4); i++)
6778             {
6779               if ((history[i].cleared_p)
6780                   || delayed_branch_p (&history[i]))
6781                 {
6782                   rv = TRUE;
6783                   break;
6784                 }
6785             }
6786           if (rv == FALSE)
6787             {
6788               /* Insert nop after branch to fix short loop. */
6789               return FALSE;
6790             }
6791         }
6792     }
6793
6794   return TRUE;
6795 }
6796
6797 /* Decide how we should add IP to the instruction stream.
6798    ADDRESS_EXPR is an operand of the instruction to be used with
6799    RELOC_TYPE.  */
6800
6801 static enum append_method
6802 get_append_method (struct mips_cl_insn *ip, expressionS *address_expr,
6803                    bfd_reloc_code_real_type *reloc_type)
6804 {
6805   /* The relaxed version of a macro sequence must be inherently
6806      hazard-free.  */
6807   if (mips_relax.sequence == 2)
6808     return APPEND_ADD;
6809
6810   /* We must not dabble with instructions in a ".set norerorder" block.  */
6811   if (mips_opts.noreorder)
6812     return APPEND_ADD;
6813
6814   /* Otherwise, it's our responsibility to fill branch delay slots.  */
6815   if (delayed_branch_p (ip))
6816     {
6817       if (!branch_likely_p (ip)
6818           && can_swap_branch_p (ip, address_expr, reloc_type))
6819         return APPEND_SWAP;
6820
6821       if (mips_opts.mips16
6822           && ISA_SUPPORTS_MIPS16E
6823           && gpr_read_mask (ip) != 0)
6824         return APPEND_ADD_COMPACT;
6825
6826       return APPEND_ADD_WITH_NOP;
6827     }
6828
6829   return APPEND_ADD;
6830 }
6831
6832 /* IP is a MIPS16 instruction whose opcode we have just changed.
6833    Point IP->insn_mo to the new opcode's definition.  */
6834
6835 static void
6836 find_altered_mips16_opcode (struct mips_cl_insn *ip)
6837 {
6838   const struct mips_opcode *mo, *end;
6839
6840   end = &mips16_opcodes[bfd_mips16_num_opcodes];
6841   for (mo = ip->insn_mo; mo < end; mo++)
6842     if ((ip->insn_opcode & mo->mask) == mo->match)
6843       {
6844         ip->insn_mo = mo;
6845         return;
6846       }
6847   abort ();
6848 }
6849
6850 /* For microMIPS macros, we need to generate a local number label
6851    as the target of branches.  */
6852 #define MICROMIPS_LABEL_CHAR            '\037'
6853 static unsigned long micromips_target_label;
6854 static char micromips_target_name[32];
6855
6856 static char *
6857 micromips_label_name (void)
6858 {
6859   char *p = micromips_target_name;
6860   char symbol_name_temporary[24];
6861   unsigned long l;
6862   int i;
6863
6864   if (*p)
6865     return p;
6866
6867   i = 0;
6868   l = micromips_target_label;
6869 #ifdef LOCAL_LABEL_PREFIX
6870   *p++ = LOCAL_LABEL_PREFIX;
6871 #endif
6872   *p++ = 'L';
6873   *p++ = MICROMIPS_LABEL_CHAR;
6874   do
6875     {
6876       symbol_name_temporary[i++] = l % 10 + '0';
6877       l /= 10;
6878     }
6879   while (l != 0);
6880   while (i > 0)
6881     *p++ = symbol_name_temporary[--i];
6882   *p = '\0';
6883
6884   return micromips_target_name;
6885 }
6886
6887 static void
6888 micromips_label_expr (expressionS *label_expr)
6889 {
6890   label_expr->X_op = O_symbol;
6891   label_expr->X_add_symbol = symbol_find_or_make (micromips_label_name ());
6892   label_expr->X_add_number = 0;
6893 }
6894
6895 static void
6896 micromips_label_inc (void)
6897 {
6898   micromips_target_label++;
6899   *micromips_target_name = '\0';
6900 }
6901
6902 static void
6903 micromips_add_label (void)
6904 {
6905   symbolS *s;
6906
6907   s = colon (micromips_label_name ());
6908   micromips_label_inc ();
6909   S_SET_OTHER (s, ELF_ST_SET_MICROMIPS (S_GET_OTHER (s)));
6910 }
6911
6912 /* If assembling microMIPS code, then return the microMIPS reloc
6913    corresponding to the requested one if any.  Otherwise return
6914    the reloc unchanged.  */
6915
6916 static bfd_reloc_code_real_type
6917 micromips_map_reloc (bfd_reloc_code_real_type reloc)
6918 {
6919   static const bfd_reloc_code_real_type relocs[][2] =
6920     {
6921       /* Keep sorted incrementally by the left-hand key.  */
6922       { BFD_RELOC_16_PCREL_S2, BFD_RELOC_MICROMIPS_16_PCREL_S1 },
6923       { BFD_RELOC_GPREL16, BFD_RELOC_MICROMIPS_GPREL16 },
6924       { BFD_RELOC_MIPS_JMP, BFD_RELOC_MICROMIPS_JMP },
6925       { BFD_RELOC_HI16, BFD_RELOC_MICROMIPS_HI16 },
6926       { BFD_RELOC_HI16_S, BFD_RELOC_MICROMIPS_HI16_S },
6927       { BFD_RELOC_LO16, BFD_RELOC_MICROMIPS_LO16 },
6928       { BFD_RELOC_MIPS_LITERAL, BFD_RELOC_MICROMIPS_LITERAL },
6929       { BFD_RELOC_MIPS_GOT16, BFD_RELOC_MICROMIPS_GOT16 },
6930       { BFD_RELOC_MIPS_CALL16, BFD_RELOC_MICROMIPS_CALL16 },
6931       { BFD_RELOC_MIPS_GOT_HI16, BFD_RELOC_MICROMIPS_GOT_HI16 },
6932       { BFD_RELOC_MIPS_GOT_LO16, BFD_RELOC_MICROMIPS_GOT_LO16 },
6933       { BFD_RELOC_MIPS_CALL_HI16, BFD_RELOC_MICROMIPS_CALL_HI16 },
6934       { BFD_RELOC_MIPS_CALL_LO16, BFD_RELOC_MICROMIPS_CALL_LO16 },
6935       { BFD_RELOC_MIPS_SUB, BFD_RELOC_MICROMIPS_SUB },
6936       { BFD_RELOC_MIPS_GOT_PAGE, BFD_RELOC_MICROMIPS_GOT_PAGE },
6937       { BFD_RELOC_MIPS_GOT_OFST, BFD_RELOC_MICROMIPS_GOT_OFST },
6938       { BFD_RELOC_MIPS_GOT_DISP, BFD_RELOC_MICROMIPS_GOT_DISP },
6939       { BFD_RELOC_MIPS_HIGHEST, BFD_RELOC_MICROMIPS_HIGHEST },
6940       { BFD_RELOC_MIPS_HIGHER, BFD_RELOC_MICROMIPS_HIGHER },
6941       { BFD_RELOC_MIPS_SCN_DISP, BFD_RELOC_MICROMIPS_SCN_DISP },
6942       { BFD_RELOC_MIPS_TLS_GD, BFD_RELOC_MICROMIPS_TLS_GD },
6943       { BFD_RELOC_MIPS_TLS_LDM, BFD_RELOC_MICROMIPS_TLS_LDM },
6944       { BFD_RELOC_MIPS_TLS_DTPREL_HI16, BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16 },
6945       { BFD_RELOC_MIPS_TLS_DTPREL_LO16, BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16 },
6946       { BFD_RELOC_MIPS_TLS_GOTTPREL, BFD_RELOC_MICROMIPS_TLS_GOTTPREL },
6947       { BFD_RELOC_MIPS_TLS_TPREL_HI16, BFD_RELOC_MICROMIPS_TLS_TPREL_HI16 },
6948       { BFD_RELOC_MIPS_TLS_TPREL_LO16, BFD_RELOC_MICROMIPS_TLS_TPREL_LO16 }
6949     };
6950   bfd_reloc_code_real_type r;
6951   size_t i;
6952
6953   if (!mips_opts.micromips)
6954     return reloc;
6955   for (i = 0; i < ARRAY_SIZE (relocs); i++)
6956     {
6957       r = relocs[i][0];
6958       if (r > reloc)
6959         return reloc;
6960       if (r == reloc)
6961         return relocs[i][1];
6962     }
6963   return reloc;
6964 }
6965
6966 /* Try to resolve relocation RELOC against constant OPERAND at assembly time.
6967    Return true on success, storing the resolved value in RESULT.  */
6968
6969 static bfd_boolean
6970 calculate_reloc (bfd_reloc_code_real_type reloc, offsetT operand,
6971                  offsetT *result)
6972 {
6973   switch (reloc)
6974     {
6975     case BFD_RELOC_MIPS_HIGHEST:
6976     case BFD_RELOC_MICROMIPS_HIGHEST:
6977       *result = ((operand + 0x800080008000ull) >> 48) & 0xffff;
6978       return TRUE;
6979
6980     case BFD_RELOC_MIPS_HIGHER:
6981     case BFD_RELOC_MICROMIPS_HIGHER:
6982       *result = ((operand + 0x80008000ull) >> 32) & 0xffff;
6983       return TRUE;
6984
6985     case BFD_RELOC_HI16_S:
6986     case BFD_RELOC_HI16_S_PCREL:
6987     case BFD_RELOC_MICROMIPS_HI16_S:
6988     case BFD_RELOC_MIPS16_HI16_S:
6989       *result = ((operand + 0x8000) >> 16) & 0xffff;
6990       return TRUE;
6991
6992     case BFD_RELOC_HI16:
6993     case BFD_RELOC_MICROMIPS_HI16:
6994     case BFD_RELOC_MIPS16_HI16:
6995       *result = (operand >> 16) & 0xffff;
6996       return TRUE;
6997
6998     case BFD_RELOC_LO16:
6999     case BFD_RELOC_LO16_PCREL:
7000     case BFD_RELOC_MICROMIPS_LO16:
7001     case BFD_RELOC_MIPS16_LO16:
7002       *result = operand & 0xffff;
7003       return TRUE;
7004
7005     case BFD_RELOC_UNUSED:
7006       *result = operand;
7007       return TRUE;
7008
7009     default:
7010       return FALSE;
7011     }
7012 }
7013
7014 /* Output an instruction.  IP is the instruction information.
7015    ADDRESS_EXPR is an operand of the instruction to be used with
7016    RELOC_TYPE.  EXPANSIONP is true if the instruction is part of
7017    a macro expansion.  */
7018
7019 static void
7020 append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
7021              bfd_reloc_code_real_type *reloc_type, bfd_boolean expansionp)
7022 {
7023   unsigned long prev_pinfo2, pinfo;
7024   bfd_boolean relaxed_branch = FALSE;
7025   enum append_method method;
7026   bfd_boolean relax32;
7027   int branch_disp;
7028
7029   if (mips_fix_loongson2f && !HAVE_CODE_COMPRESSION)
7030     fix_loongson2f (ip);
7031
7032   file_ase_mips16 |= mips_opts.mips16;
7033   file_ase_micromips |= mips_opts.micromips;
7034
7035   prev_pinfo2 = history[0].insn_mo->pinfo2;
7036   pinfo = ip->insn_mo->pinfo;
7037
7038   if (mips_opts.micromips
7039       && !expansionp
7040       && (((prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
7041            && micromips_insn_length (ip->insn_mo) != 2)
7042           || ((prev_pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
7043               && micromips_insn_length (ip->insn_mo) != 4)))
7044     as_warn (_("wrong size instruction in a %u-bit branch delay slot"),
7045              (prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0 ? 16 : 32);
7046
7047   if (address_expr == NULL)
7048     ip->complete_p = 1;
7049   else if (reloc_type[0] <= BFD_RELOC_UNUSED
7050            && reloc_type[1] == BFD_RELOC_UNUSED
7051            && reloc_type[2] == BFD_RELOC_UNUSED
7052            && address_expr->X_op == O_constant)
7053     {
7054       switch (*reloc_type)
7055         {
7056         case BFD_RELOC_MIPS_JMP:
7057           {
7058             int shift;
7059
7060             /* Shift is 2, unusually, for microMIPS JALX.  */
7061             shift = (mips_opts.micromips
7062                      && strcmp (ip->insn_mo->name, "jalx") != 0) ? 1 : 2;
7063             if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
7064               as_bad (_("jump to misaligned address (0x%lx)"),
7065                       (unsigned long) address_expr->X_add_number);
7066             ip->insn_opcode |= ((address_expr->X_add_number >> shift)
7067                                 & 0x3ffffff);
7068             ip->complete_p = 1;
7069           }
7070           break;
7071
7072         case BFD_RELOC_MIPS16_JMP:
7073           if ((address_expr->X_add_number & 3) != 0)
7074             as_bad (_("jump to misaligned address (0x%lx)"),
7075                     (unsigned long) address_expr->X_add_number);
7076           ip->insn_opcode |=
7077             (((address_expr->X_add_number & 0x7c0000) << 3)
7078                | ((address_expr->X_add_number & 0xf800000) >> 7)
7079                | ((address_expr->X_add_number & 0x3fffc) >> 2));
7080           ip->complete_p = 1;
7081           break;
7082
7083         case BFD_RELOC_16_PCREL_S2:
7084           {
7085             int shift;
7086
7087             shift = mips_opts.micromips ? 1 : 2;
7088             if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
7089               as_bad (_("branch to misaligned address (0x%lx)"),
7090                       (unsigned long) address_expr->X_add_number);
7091             if (!mips_relax_branch)
7092               {
7093                 if ((address_expr->X_add_number + (1 << (shift + 15)))
7094                     & ~((1 << (shift + 16)) - 1))
7095                   as_bad (_("branch address range overflow (0x%lx)"),
7096                           (unsigned long) address_expr->X_add_number);
7097                 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
7098                                     & 0xffff);
7099               }
7100           }
7101           break;
7102
7103         case BFD_RELOC_MIPS_21_PCREL_S2:
7104           {
7105             int shift;
7106
7107             shift = 2;
7108             if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
7109               as_bad (_("branch to misaligned address (0x%lx)"),
7110                       (unsigned long) address_expr->X_add_number);
7111             if ((address_expr->X_add_number + (1 << (shift + 20)))
7112                 & ~((1 << (shift + 21)) - 1))
7113               as_bad (_("branch address range overflow (0x%lx)"),
7114                       (unsigned long) address_expr->X_add_number);
7115             ip->insn_opcode |= ((address_expr->X_add_number >> shift)
7116                                 & 0x1fffff);
7117           }
7118           break;
7119
7120         case BFD_RELOC_MIPS_26_PCREL_S2:
7121           {
7122             int shift;
7123
7124             shift = 2;
7125             if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
7126               as_bad (_("branch to misaligned address (0x%lx)"),
7127                       (unsigned long) address_expr->X_add_number);
7128             if ((address_expr->X_add_number + (1 << (shift + 25)))
7129                 & ~((1 << (shift + 26)) - 1))
7130               as_bad (_("branch address range overflow (0x%lx)"),
7131                       (unsigned long) address_expr->X_add_number);
7132             ip->insn_opcode |= ((address_expr->X_add_number >> shift)
7133                                 & 0x3ffffff);
7134           }
7135           break;
7136
7137         default:
7138           {
7139             offsetT value;
7140
7141             if (calculate_reloc (*reloc_type, address_expr->X_add_number,
7142                                  &value))
7143               {
7144                 ip->insn_opcode |= value & 0xffff;
7145                 ip->complete_p = 1;
7146               }
7147           }
7148           break;
7149         }
7150     }
7151
7152   if (mips_relax.sequence != 2 && !mips_opts.noreorder)
7153     {
7154       /* There are a lot of optimizations we could do that we don't.
7155          In particular, we do not, in general, reorder instructions.
7156          If you use gcc with optimization, it will reorder
7157          instructions and generally do much more optimization then we
7158          do here; repeating all that work in the assembler would only
7159          benefit hand written assembly code, and does not seem worth
7160          it.  */
7161       int nops = (mips_optimize == 0
7162                   ? nops_for_insn (0, history, NULL)
7163                   : nops_for_insn_or_target (0, history, ip));
7164       if (nops > 0)
7165         {
7166           fragS *old_frag;
7167           unsigned long old_frag_offset;
7168           int i;
7169
7170           old_frag = frag_now;
7171           old_frag_offset = frag_now_fix ();
7172
7173           for (i = 0; i < nops; i++)
7174             add_fixed_insn (NOP_INSN);
7175           insert_into_history (0, nops, NOP_INSN);
7176
7177           if (listing)
7178             {
7179               listing_prev_line ();
7180               /* We may be at the start of a variant frag.  In case we
7181                  are, make sure there is enough space for the frag
7182                  after the frags created by listing_prev_line.  The
7183                  argument to frag_grow here must be at least as large
7184                  as the argument to all other calls to frag_grow in
7185                  this file.  We don't have to worry about being in the
7186                  middle of a variant frag, because the variants insert
7187                  all needed nop instructions themselves.  */
7188               frag_grow (40);
7189             }
7190
7191           mips_move_text_labels ();
7192
7193 #ifndef NO_ECOFF_DEBUGGING
7194           if (ECOFF_DEBUGGING)
7195             ecoff_fix_loc (old_frag, old_frag_offset);
7196 #endif
7197         }
7198     }
7199   else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
7200     {
7201       int nops;
7202
7203       /* Work out how many nops in prev_nop_frag are needed by IP,
7204          ignoring hazards generated by the first prev_nop_frag_since
7205          instructions.  */
7206       nops = nops_for_insn_or_target (prev_nop_frag_since, history, ip);
7207       gas_assert (nops <= prev_nop_frag_holds);
7208
7209       /* Enforce NOPS as a minimum.  */
7210       if (nops > prev_nop_frag_required)
7211         prev_nop_frag_required = nops;
7212
7213       if (prev_nop_frag_holds == prev_nop_frag_required)
7214         {
7215           /* Settle for the current number of nops.  Update the history
7216              accordingly (for the benefit of any future .set reorder code).  */
7217           prev_nop_frag = NULL;
7218           insert_into_history (prev_nop_frag_since,
7219                                prev_nop_frag_holds, NOP_INSN);
7220         }
7221       else
7222         {
7223           /* Allow this instruction to replace one of the nops that was
7224              tentatively added to prev_nop_frag.  */
7225           prev_nop_frag->fr_fix -= NOP_INSN_SIZE;
7226           prev_nop_frag_holds--;
7227           prev_nop_frag_since++;
7228         }
7229     }
7230
7231   method = get_append_method (ip, address_expr, reloc_type);
7232   branch_disp = method == APPEND_SWAP ? insn_length (history) : 0;
7233
7234   dwarf2_emit_insn (0);
7235   /* We want MIPS16 and microMIPS debug info to use ISA-encoded addresses,
7236      so "move" the instruction address accordingly.
7237
7238      Also, it doesn't seem appropriate for the assembler to reorder .loc
7239      entries.  If this instruction is a branch that we are going to swap
7240      with the previous instruction, the two instructions should be
7241      treated as a unit, and the debug information for both instructions
7242      should refer to the start of the branch sequence.  Using the
7243      current position is certainly wrong when swapping a 32-bit branch
7244      and a 16-bit delay slot, since the current position would then be
7245      in the middle of a branch.  */
7246   dwarf2_move_insn ((HAVE_CODE_COMPRESSION ? 1 : 0) - branch_disp);
7247
7248   relax32 = (mips_relax_branch
7249              /* Don't try branch relaxation within .set nomacro, or within
7250                 .set noat if we use $at for PIC computations.  If it turns
7251                 out that the branch was out-of-range, we'll get an error.  */
7252              && !mips_opts.warn_about_macros
7253              && (mips_opts.at || mips_pic == NO_PIC)
7254              /* Don't relax BPOSGE32/64 or BC1ANY2T/F and BC1ANY4T/F
7255                 as they have no complementing branches.  */
7256              && !(ip->insn_mo->ase & (ASE_MIPS3D | ASE_DSP64 | ASE_DSP)));
7257
7258   if (!HAVE_CODE_COMPRESSION
7259       && address_expr
7260       && relax32
7261       && *reloc_type == BFD_RELOC_16_PCREL_S2
7262       && delayed_branch_p (ip))
7263     {
7264       relaxed_branch = TRUE;
7265       add_relaxed_insn (ip, (relaxed_branch_length
7266                              (NULL, NULL,
7267                               uncond_branch_p (ip) ? -1
7268                               : branch_likely_p (ip) ? 1
7269                               : 0)), 4,
7270                         RELAX_BRANCH_ENCODE
7271                         (AT,
7272                          uncond_branch_p (ip),
7273                          branch_likely_p (ip),
7274                          pinfo & INSN_WRITE_GPR_31,
7275                          0),
7276                         address_expr->X_add_symbol,
7277                         address_expr->X_add_number);
7278       *reloc_type = BFD_RELOC_UNUSED;
7279     }
7280   else if (mips_opts.micromips
7281            && address_expr
7282            && ((relax32 && *reloc_type == BFD_RELOC_16_PCREL_S2)
7283                || *reloc_type > BFD_RELOC_UNUSED)
7284            && (delayed_branch_p (ip) || compact_branch_p (ip))
7285            /* Don't try branch relaxation when users specify
7286               16-bit/32-bit instructions.  */
7287            && !forced_insn_length)
7288     {
7289       bfd_boolean relax16 = *reloc_type > BFD_RELOC_UNUSED;
7290       int type = relax16 ? *reloc_type - BFD_RELOC_UNUSED : 0;
7291       int uncond = uncond_branch_p (ip) ? -1 : 0;
7292       int compact = compact_branch_p (ip);
7293       int al = pinfo & INSN_WRITE_GPR_31;
7294       int length32;
7295
7296       gas_assert (address_expr != NULL);
7297       gas_assert (!mips_relax.sequence);
7298
7299       relaxed_branch = TRUE;
7300       length32 = relaxed_micromips_32bit_branch_length (NULL, NULL, uncond);
7301       add_relaxed_insn (ip, relax32 ? length32 : 4, relax16 ? 2 : 4,
7302                         RELAX_MICROMIPS_ENCODE (type, AT, uncond, compact, al,
7303                                                 relax32, 0, 0),
7304                         address_expr->X_add_symbol,
7305                         address_expr->X_add_number);
7306       *reloc_type = BFD_RELOC_UNUSED;
7307     }
7308   else if (mips_opts.mips16 && *reloc_type > BFD_RELOC_UNUSED)
7309     {
7310       /* We need to set up a variant frag.  */
7311       gas_assert (address_expr != NULL);
7312       add_relaxed_insn (ip, 4, 0,
7313                         RELAX_MIPS16_ENCODE
7314                         (*reloc_type - BFD_RELOC_UNUSED,
7315                          forced_insn_length == 2, forced_insn_length == 4,
7316                          delayed_branch_p (&history[0]),
7317                          history[0].mips16_absolute_jump_p),
7318                         make_expr_symbol (address_expr), 0);
7319     }
7320   else if (mips_opts.mips16 && insn_length (ip) == 2)
7321     {
7322       if (!delayed_branch_p (ip))
7323         /* Make sure there is enough room to swap this instruction with
7324            a following jump instruction.  */
7325         frag_grow (6);
7326       add_fixed_insn (ip);
7327     }
7328   else
7329     {
7330       if (mips_opts.mips16
7331           && mips_opts.noreorder
7332           && delayed_branch_p (&history[0]))
7333         as_warn (_("extended instruction in delay slot"));
7334
7335       if (mips_relax.sequence)
7336         {
7337           /* If we've reached the end of this frag, turn it into a variant
7338              frag and record the information for the instructions we've
7339              written so far.  */
7340           if (frag_room () < 4)
7341             relax_close_frag ();
7342           mips_relax.sizes[mips_relax.sequence - 1] += insn_length (ip);
7343         }
7344
7345       if (mips_relax.sequence != 2)
7346         {
7347           if (mips_macro_warning.first_insn_sizes[0] == 0)
7348             mips_macro_warning.first_insn_sizes[0] = insn_length (ip);
7349           mips_macro_warning.sizes[0] += insn_length (ip);
7350           mips_macro_warning.insns[0]++;
7351         }
7352       if (mips_relax.sequence != 1)
7353         {
7354           if (mips_macro_warning.first_insn_sizes[1] == 0)
7355             mips_macro_warning.first_insn_sizes[1] = insn_length (ip);
7356           mips_macro_warning.sizes[1] += insn_length (ip);
7357           mips_macro_warning.insns[1]++;
7358         }
7359
7360       if (mips_opts.mips16)
7361         {
7362           ip->fixed_p = 1;
7363           ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
7364         }
7365       add_fixed_insn (ip);
7366     }
7367
7368   if (!ip->complete_p && *reloc_type < BFD_RELOC_UNUSED)
7369     {
7370       bfd_reloc_code_real_type final_type[3];
7371       reloc_howto_type *howto0;
7372       reloc_howto_type *howto;
7373       int i;
7374
7375       /* Perform any necessary conversion to microMIPS relocations
7376          and find out how many relocations there actually are.  */
7377       for (i = 0; i < 3 && reloc_type[i] != BFD_RELOC_UNUSED; i++)
7378         final_type[i] = micromips_map_reloc (reloc_type[i]);
7379
7380       /* In a compound relocation, it is the final (outermost)
7381          operator that determines the relocated field.  */
7382       howto = howto0 = bfd_reloc_type_lookup (stdoutput, final_type[i - 1]);
7383       if (!howto)
7384         abort ();
7385
7386       if (i > 1)
7387         howto0 = bfd_reloc_type_lookup (stdoutput, final_type[0]);
7388       ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
7389                                  bfd_get_reloc_size (howto),
7390                                  address_expr,
7391                                  howto0 && howto0->pc_relative,
7392                                  final_type[0]);
7393
7394       /* Tag symbols that have a R_MIPS16_26 relocation against them.  */
7395       if (final_type[0] == BFD_RELOC_MIPS16_JMP && ip->fixp[0]->fx_addsy)
7396         *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
7397
7398       /* These relocations can have an addend that won't fit in
7399          4 octets for 64bit assembly.  */
7400       if (GPR_SIZE == 64
7401           && ! howto->partial_inplace
7402           && (reloc_type[0] == BFD_RELOC_16
7403               || reloc_type[0] == BFD_RELOC_32
7404               || reloc_type[0] == BFD_RELOC_MIPS_JMP
7405               || reloc_type[0] == BFD_RELOC_GPREL16
7406               || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
7407               || reloc_type[0] == BFD_RELOC_GPREL32
7408               || reloc_type[0] == BFD_RELOC_64
7409               || reloc_type[0] == BFD_RELOC_CTOR
7410               || reloc_type[0] == BFD_RELOC_MIPS_SUB
7411               || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
7412               || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
7413               || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
7414               || reloc_type[0] == BFD_RELOC_MIPS_REL16
7415               || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
7416               || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
7417               || hi16_reloc_p (reloc_type[0])
7418               || lo16_reloc_p (reloc_type[0])))
7419         ip->fixp[0]->fx_no_overflow = 1;
7420
7421       /* These relocations can have an addend that won't fit in 2 octets.  */
7422       if (reloc_type[0] == BFD_RELOC_MICROMIPS_7_PCREL_S1
7423           || reloc_type[0] == BFD_RELOC_MICROMIPS_10_PCREL_S1)
7424         ip->fixp[0]->fx_no_overflow = 1;
7425
7426       if (mips_relax.sequence)
7427         {
7428           if (mips_relax.first_fixup == 0)
7429             mips_relax.first_fixup = ip->fixp[0];
7430         }
7431       else if (reloc_needs_lo_p (*reloc_type))
7432         {
7433           struct mips_hi_fixup *hi_fixup;
7434
7435           /* Reuse the last entry if it already has a matching %lo.  */
7436           hi_fixup = mips_hi_fixup_list;
7437           if (hi_fixup == 0
7438               || !fixup_has_matching_lo_p (hi_fixup->fixp))
7439             {
7440               hi_fixup = XNEW (struct mips_hi_fixup);
7441               hi_fixup->next = mips_hi_fixup_list;
7442               mips_hi_fixup_list = hi_fixup;
7443             }
7444           hi_fixup->fixp = ip->fixp[0];
7445           hi_fixup->seg = now_seg;
7446         }
7447
7448       /* Add fixups for the second and third relocations, if given.
7449          Note that the ABI allows the second relocation to be
7450          against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC.  At the
7451          moment we only use RSS_UNDEF, but we could add support
7452          for the others if it ever becomes necessary.  */
7453       for (i = 1; i < 3; i++)
7454         if (reloc_type[i] != BFD_RELOC_UNUSED)
7455           {
7456             ip->fixp[i] = fix_new (ip->frag, ip->where,
7457                                    ip->fixp[0]->fx_size, NULL, 0,
7458                                    FALSE, final_type[i]);
7459
7460             /* Use fx_tcbit to mark compound relocs.  */
7461             ip->fixp[0]->fx_tcbit = 1;
7462             ip->fixp[i]->fx_tcbit = 1;
7463           }
7464     }
7465   install_insn (ip);
7466
7467   /* Update the register mask information.  */
7468   mips_gprmask |= gpr_read_mask (ip) | gpr_write_mask (ip);
7469   mips_cprmask[1] |= fpr_read_mask (ip) | fpr_write_mask (ip);
7470
7471   switch (method)
7472     {
7473     case APPEND_ADD:
7474       insert_into_history (0, 1, ip);
7475       break;
7476
7477     case APPEND_ADD_WITH_NOP:
7478       {
7479         struct mips_cl_insn *nop;
7480
7481         insert_into_history (0, 1, ip);
7482         nop = get_delay_slot_nop (ip);
7483         add_fixed_insn (nop);
7484         insert_into_history (0, 1, nop);
7485         if (mips_relax.sequence)
7486           mips_relax.sizes[mips_relax.sequence - 1] += insn_length (nop);
7487       }
7488       break;
7489
7490     case APPEND_ADD_COMPACT:
7491       /* Convert MIPS16 jr/jalr into a "compact" jump.  */
7492       gas_assert (mips_opts.mips16);
7493       ip->insn_opcode |= 0x0080;
7494       find_altered_mips16_opcode (ip);
7495       install_insn (ip);
7496       insert_into_history (0, 1, ip);
7497       break;
7498
7499     case APPEND_SWAP:
7500       {
7501         struct mips_cl_insn delay = history[0];
7502         if (mips_opts.mips16)
7503           {
7504             know (delay.frag == ip->frag);
7505             move_insn (ip, delay.frag, delay.where);
7506             move_insn (&delay, ip->frag, ip->where + insn_length (ip));
7507           }
7508         else if (relaxed_branch || delay.frag != ip->frag)
7509           {
7510             /* Add the delay slot instruction to the end of the
7511                current frag and shrink the fixed part of the
7512                original frag.  If the branch occupies the tail of
7513                the latter, move it backwards to cover the gap.  */
7514             delay.frag->fr_fix -= branch_disp;
7515             if (delay.frag == ip->frag)
7516               move_insn (ip, ip->frag, ip->where - branch_disp);
7517             add_fixed_insn (&delay);
7518           }
7519         else
7520           {
7521             move_insn (&delay, ip->frag,
7522                        ip->where - branch_disp + insn_length (ip));
7523             move_insn (ip, history[0].frag, history[0].where);
7524           }
7525         history[0] = *ip;
7526         delay.fixed_p = 1;
7527         insert_into_history (0, 1, &delay);
7528       }
7529       break;
7530     }
7531
7532   /* If we have just completed an unconditional branch, clear the history.  */
7533   if ((delayed_branch_p (&history[1]) && uncond_branch_p (&history[1]))
7534       || (compact_branch_p (&history[0]) && uncond_branch_p (&history[0])))
7535     {
7536       unsigned int i;
7537
7538       mips_no_prev_insn ();
7539
7540       for (i = 0; i < ARRAY_SIZE (history); i++)
7541         history[i].cleared_p = 1;
7542     }
7543
7544   /* We need to emit a label at the end of branch-likely macros.  */
7545   if (emit_branch_likely_macro)
7546     {
7547       emit_branch_likely_macro = FALSE;
7548       micromips_add_label ();
7549     }
7550
7551   /* We just output an insn, so the next one doesn't have a label.  */
7552   mips_clear_insn_labels ();
7553 }
7554
7555 /* Forget that there was any previous instruction or label.
7556    When BRANCH is true, the branch history is also flushed.  */
7557
7558 static void
7559 mips_no_prev_insn (void)
7560 {
7561   prev_nop_frag = NULL;
7562   insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
7563   mips_clear_insn_labels ();
7564 }
7565
7566 /* This function must be called before we emit something other than
7567    instructions.  It is like mips_no_prev_insn except that it inserts
7568    any NOPS that might be needed by previous instructions.  */
7569
7570 void
7571 mips_emit_delays (void)
7572 {
7573   if (! mips_opts.noreorder)
7574     {
7575       int nops = nops_for_insn (0, history, NULL);
7576       if (nops > 0)
7577         {
7578           while (nops-- > 0)
7579             add_fixed_insn (NOP_INSN);
7580           mips_move_text_labels ();
7581         }
7582     }
7583   mips_no_prev_insn ();
7584 }
7585
7586 /* Start a (possibly nested) noreorder block.  */
7587
7588 static void
7589 start_noreorder (void)
7590 {
7591   if (mips_opts.noreorder == 0)
7592     {
7593       unsigned int i;
7594       int nops;
7595
7596       /* None of the instructions before the .set noreorder can be moved.  */
7597       for (i = 0; i < ARRAY_SIZE (history); i++)
7598         history[i].fixed_p = 1;
7599
7600       /* Insert any nops that might be needed between the .set noreorder
7601          block and the previous instructions.  We will later remove any
7602          nops that turn out not to be needed.  */
7603       nops = nops_for_insn (0, history, NULL);
7604       if (nops > 0)
7605         {
7606           if (mips_optimize != 0)
7607             {
7608               /* Record the frag which holds the nop instructions, so
7609                  that we can remove them if we don't need them.  */
7610               frag_grow (nops * NOP_INSN_SIZE);
7611               prev_nop_frag = frag_now;
7612               prev_nop_frag_holds = nops;
7613               prev_nop_frag_required = 0;
7614               prev_nop_frag_since = 0;
7615             }
7616
7617           for (; nops > 0; --nops)
7618             add_fixed_insn (NOP_INSN);
7619
7620           /* Move on to a new frag, so that it is safe to simply
7621              decrease the size of prev_nop_frag.  */
7622           frag_wane (frag_now);
7623           frag_new (0);
7624           mips_move_text_labels ();
7625         }
7626       mips_mark_labels ();
7627       mips_clear_insn_labels ();
7628     }
7629   mips_opts.noreorder++;
7630   mips_any_noreorder = 1;
7631 }
7632
7633 /* End a nested noreorder block.  */
7634
7635 static void
7636 end_noreorder (void)
7637 {
7638   mips_opts.noreorder--;
7639   if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
7640     {
7641       /* Commit to inserting prev_nop_frag_required nops and go back to
7642          handling nop insertion the .set reorder way.  */
7643       prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
7644                                 * NOP_INSN_SIZE);
7645       insert_into_history (prev_nop_frag_since,
7646                            prev_nop_frag_required, NOP_INSN);
7647       prev_nop_frag = NULL;
7648     }
7649 }
7650
7651 /* Sign-extend 32-bit mode constants that have bit 31 set and all
7652    higher bits unset.  */
7653
7654 static void
7655 normalize_constant_expr (expressionS *ex)
7656 {
7657   if (ex->X_op == O_constant
7658       && IS_ZEXT_32BIT_NUM (ex->X_add_number))
7659     ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
7660                         - 0x80000000);
7661 }
7662
7663 /* Sign-extend 32-bit mode address offsets that have bit 31 set and
7664    all higher bits unset.  */
7665
7666 static void
7667 normalize_address_expr (expressionS *ex)
7668 {
7669   if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
7670         || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
7671       && IS_ZEXT_32BIT_NUM (ex->X_add_number))
7672     ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
7673                         - 0x80000000);
7674 }
7675
7676 /* Try to match TOKENS against OPCODE, storing the result in INSN.
7677    Return true if the match was successful.
7678
7679    OPCODE_EXTRA is a value that should be ORed into the opcode
7680    (used for VU0 channel suffixes, etc.).  MORE_ALTS is true if
7681    there are more alternatives after OPCODE and SOFT_MATCH is
7682    as for mips_arg_info.  */
7683
7684 static bfd_boolean
7685 match_insn (struct mips_cl_insn *insn, const struct mips_opcode *opcode,
7686             struct mips_operand_token *tokens, unsigned int opcode_extra,
7687             bfd_boolean lax_match, bfd_boolean complete_p)
7688 {
7689   const char *args;
7690   struct mips_arg_info arg;
7691   const struct mips_operand *operand;
7692   char c;
7693
7694   imm_expr.X_op = O_absent;
7695   offset_expr.X_op = O_absent;
7696   offset_reloc[0] = BFD_RELOC_UNUSED;
7697   offset_reloc[1] = BFD_RELOC_UNUSED;
7698   offset_reloc[2] = BFD_RELOC_UNUSED;
7699
7700   create_insn (insn, opcode);
7701   /* When no opcode suffix is specified, assume ".xyzw". */
7702   if ((opcode->pinfo2 & INSN2_VU0_CHANNEL_SUFFIX) != 0 && opcode_extra == 0)
7703     insn->insn_opcode |= 0xf << mips_vu0_channel_mask.lsb;
7704   else
7705     insn->insn_opcode |= opcode_extra;
7706   memset (&arg, 0, sizeof (arg));
7707   arg.insn = insn;
7708   arg.token = tokens;
7709   arg.argnum = 1;
7710   arg.last_regno = ILLEGAL_REG;
7711   arg.dest_regno = ILLEGAL_REG;
7712   arg.lax_match = lax_match;
7713   for (args = opcode->args;; ++args)
7714     {
7715       if (arg.token->type == OT_END)
7716         {
7717           /* Handle unary instructions in which only one operand is given.
7718              The source is then the same as the destination.  */
7719           if (arg.opnum == 1 && *args == ',')
7720             {
7721               operand = (mips_opts.micromips
7722                          ? decode_micromips_operand (args + 1)
7723                          : decode_mips_operand (args + 1));
7724               if (operand && mips_optional_operand_p (operand))
7725                 {
7726                   arg.token = tokens;
7727                   arg.argnum = 1;
7728                   continue;
7729                 }
7730             }
7731
7732           /* Treat elided base registers as $0.  */
7733           if (strcmp (args, "(b)") == 0)
7734             args += 3;
7735
7736           if (args[0] == '+')
7737             switch (args[1])
7738               {
7739               case 'K':
7740               case 'N':
7741                 /* The register suffix is optional. */
7742                 args += 2;
7743                 break;
7744               }
7745
7746           /* Fail the match if there were too few operands.  */
7747           if (*args)
7748             return FALSE;
7749
7750           /* Successful match.  */
7751           if (!complete_p)
7752             return TRUE;
7753           clear_insn_error ();
7754           if (arg.dest_regno == arg.last_regno
7755               && strncmp (insn->insn_mo->name, "jalr", 4) == 0)
7756             {
7757               if (arg.opnum == 2)
7758                 set_insn_error
7759                   (0, _("source and destination must be different"));
7760               else if (arg.last_regno == 31)
7761                 set_insn_error
7762                   (0, _("a destination register must be supplied"));
7763             }
7764           else if (arg.last_regno == 31
7765                    && (strncmp (insn->insn_mo->name, "bltzal", 6) == 0
7766                        || strncmp (insn->insn_mo->name, "bgezal", 6) == 0))
7767             set_insn_error (0, _("the source register must not be $31"));
7768           check_completed_insn (&arg);
7769           return TRUE;
7770         }
7771
7772       /* Fail the match if the line has too many operands.   */
7773       if (*args == 0)
7774         return FALSE;
7775
7776       /* Handle characters that need to match exactly.  */
7777       if (*args == '(' || *args == ')' || *args == ',')
7778         {
7779           if (match_char (&arg, *args))
7780             continue;
7781           return FALSE;
7782         }
7783       if (*args == '#')
7784         {
7785           ++args;
7786           if (arg.token->type == OT_DOUBLE_CHAR
7787               && arg.token->u.ch == *args)
7788             {
7789               ++arg.token;
7790               continue;
7791             }
7792           return FALSE;
7793         }
7794
7795       /* Handle special macro operands.  Work out the properties of
7796          other operands.  */
7797       arg.opnum += 1;
7798       switch (*args)
7799         {
7800         case '-':
7801           switch (args[1])
7802             {
7803             case 'A':
7804               *offset_reloc = BFD_RELOC_MIPS_19_PCREL_S2;
7805               break;
7806
7807             case 'B':
7808               *offset_reloc = BFD_RELOC_MIPS_18_PCREL_S3;
7809               break;
7810             }
7811           break;
7812
7813         case '+':
7814           switch (args[1])
7815             {
7816             case 'i':
7817               *offset_reloc = BFD_RELOC_MIPS_JMP;
7818               break;
7819
7820             case '\'':
7821               *offset_reloc = BFD_RELOC_MIPS_26_PCREL_S2;
7822               break;
7823
7824             case '\"':
7825               *offset_reloc = BFD_RELOC_MIPS_21_PCREL_S2;
7826               break;
7827             }
7828           break;
7829
7830         case 'I':
7831           if (!match_const_int (&arg, &imm_expr.X_add_number))
7832             return FALSE;
7833           imm_expr.X_op = O_constant;
7834           if (GPR_SIZE == 32)
7835             normalize_constant_expr (&imm_expr);
7836           continue;
7837
7838         case 'A':
7839           if (arg.token->type == OT_CHAR && arg.token->u.ch == '(')
7840             {
7841               /* Assume that the offset has been elided and that what
7842                  we saw was a base register.  The match will fail later
7843                  if that assumption turns out to be wrong.  */
7844               offset_expr.X_op = O_constant;
7845               offset_expr.X_add_number = 0;
7846             }
7847           else
7848             {
7849               if (!match_expression (&arg, &offset_expr, offset_reloc))
7850                 return FALSE;
7851               normalize_address_expr (&offset_expr);
7852             }
7853           continue;
7854
7855         case 'F':
7856           if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7857                                      8, TRUE))
7858             return FALSE;
7859           continue;
7860
7861         case 'L':
7862           if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7863                                      8, FALSE))
7864             return FALSE;
7865           continue;
7866
7867         case 'f':
7868           if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7869                                      4, TRUE))
7870             return FALSE;
7871           continue;
7872
7873         case 'l':
7874           if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7875                                      4, FALSE))
7876             return FALSE;
7877           continue;
7878
7879         case 'p':
7880           *offset_reloc = BFD_RELOC_16_PCREL_S2;
7881           break;
7882
7883         case 'a':
7884           *offset_reloc = BFD_RELOC_MIPS_JMP;
7885           break;
7886
7887         case 'm':
7888           gas_assert (mips_opts.micromips);
7889           c = args[1];
7890           switch (c)
7891             {
7892             case 'D':
7893             case 'E':
7894               if (!forced_insn_length)
7895                 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
7896               else if (c == 'D')
7897                 *offset_reloc = BFD_RELOC_MICROMIPS_10_PCREL_S1;
7898               else
7899                 *offset_reloc = BFD_RELOC_MICROMIPS_7_PCREL_S1;
7900               break;
7901             }
7902           break;
7903         }
7904
7905       operand = (mips_opts.micromips
7906                  ? decode_micromips_operand (args)
7907                  : decode_mips_operand (args));
7908       if (!operand)
7909         abort ();
7910
7911       /* Skip prefixes.  */
7912       if (*args == '+' || *args == 'm' || *args == '-')
7913         args++;
7914
7915       if (mips_optional_operand_p (operand)
7916           && args[1] == ','
7917           && (arg.token[0].type != OT_REG
7918               || arg.token[1].type == OT_END))
7919         {
7920           /* Assume that the register has been elided and is the
7921              same as the first operand.  */
7922           arg.token = tokens;
7923           arg.argnum = 1;
7924         }
7925
7926       if (!match_operand (&arg, operand))
7927         return FALSE;
7928     }
7929 }
7930
7931 /* Like match_insn, but for MIPS16.  */
7932
7933 static bfd_boolean
7934 match_mips16_insn (struct mips_cl_insn *insn, const struct mips_opcode *opcode,
7935                    struct mips_operand_token *tokens)
7936 {
7937   const char *args;
7938   const struct mips_operand *operand;
7939   const struct mips_operand *ext_operand;
7940   struct mips_arg_info arg;
7941   int relax_char;
7942
7943   create_insn (insn, opcode);
7944   imm_expr.X_op = O_absent;
7945   offset_expr.X_op = O_absent;
7946   offset_reloc[0] = BFD_RELOC_UNUSED;
7947   offset_reloc[1] = BFD_RELOC_UNUSED;
7948   offset_reloc[2] = BFD_RELOC_UNUSED;
7949   relax_char = 0;
7950
7951   memset (&arg, 0, sizeof (arg));
7952   arg.insn = insn;
7953   arg.token = tokens;
7954   arg.argnum = 1;
7955   arg.last_regno = ILLEGAL_REG;
7956   arg.dest_regno = ILLEGAL_REG;
7957   relax_char = 0;
7958   for (args = opcode->args;; ++args)
7959     {
7960       int c;
7961
7962       if (arg.token->type == OT_END)
7963         {
7964           offsetT value;
7965
7966           /* Handle unary instructions in which only one operand is given.
7967              The source is then the same as the destination.  */
7968           if (arg.opnum == 1 && *args == ',')
7969             {
7970               operand = decode_mips16_operand (args[1], FALSE);
7971               if (operand && mips_optional_operand_p (operand))
7972                 {
7973                   arg.token = tokens;
7974                   arg.argnum = 1;
7975                   continue;
7976                 }
7977             }
7978
7979           /* Fail the match if there were too few operands.  */
7980           if (*args)
7981             return FALSE;
7982
7983           /* Successful match.  Stuff the immediate value in now, if
7984              we can.  */
7985           clear_insn_error ();
7986           if (opcode->pinfo == INSN_MACRO)
7987             {
7988               gas_assert (relax_char == 0 || relax_char == 'p');
7989               gas_assert (*offset_reloc == BFD_RELOC_UNUSED);
7990             }
7991           else if (relax_char
7992                    && offset_expr.X_op == O_constant
7993                    && calculate_reloc (*offset_reloc,
7994                                        offset_expr.X_add_number,
7995                                        &value))
7996             {
7997               mips16_immed (NULL, 0, relax_char, *offset_reloc, value,
7998                             forced_insn_length, &insn->insn_opcode);
7999               offset_expr.X_op = O_absent;
8000               *offset_reloc = BFD_RELOC_UNUSED;
8001             }
8002           else if (relax_char && *offset_reloc != BFD_RELOC_UNUSED)
8003             {
8004               if (forced_insn_length == 2)
8005                 set_insn_error (0, _("invalid unextended operand value"));
8006               forced_insn_length = 4;
8007               insn->insn_opcode |= MIPS16_EXTEND;
8008             }
8009           else if (relax_char)
8010             *offset_reloc = (int) BFD_RELOC_UNUSED + relax_char;
8011
8012           check_completed_insn (&arg);
8013           return TRUE;
8014         }
8015
8016       /* Fail the match if the line has too many operands.   */
8017       if (*args == 0)
8018         return FALSE;
8019
8020       /* Handle characters that need to match exactly.  */
8021       if (*args == '(' || *args == ')' || *args == ',')
8022         {
8023           if (match_char (&arg, *args))
8024             continue;
8025           return FALSE;
8026         }
8027
8028       arg.opnum += 1;
8029       c = *args;
8030       switch (c)
8031         {
8032         case 'p':
8033         case 'q':
8034         case 'A':
8035         case 'B':
8036         case 'E':
8037           relax_char = c;
8038           break;
8039
8040         case 'I':
8041           if (!match_const_int (&arg, &imm_expr.X_add_number))
8042             return FALSE;
8043           imm_expr.X_op = O_constant;
8044           if (GPR_SIZE == 32)
8045             normalize_constant_expr (&imm_expr);
8046           continue;
8047
8048         case 'a':
8049         case 'i':
8050           *offset_reloc = BFD_RELOC_MIPS16_JMP;
8051           insn->insn_opcode <<= 16;
8052           break;
8053         }
8054
8055       operand = decode_mips16_operand (c, FALSE);
8056       if (!operand)
8057         abort ();
8058
8059       /* '6' is a special case.  It is used for BREAK and SDBBP,
8060          whose operands are only meaningful to the software that decodes
8061          them.  This means that there is no architectural reason why
8062          they cannot be prefixed by EXTEND, but in practice,
8063          exception handlers will only look at the instruction
8064          itself.  We therefore allow '6' to be extended when
8065          disassembling but not when assembling.  */
8066       if (operand->type != OP_PCREL && c != '6')
8067         {
8068           ext_operand = decode_mips16_operand (c, TRUE);
8069           if (operand != ext_operand)
8070             {
8071               if (arg.token->type == OT_CHAR && arg.token->u.ch == '(')
8072                 {
8073                   offset_expr.X_op = O_constant;
8074                   offset_expr.X_add_number = 0;
8075                   relax_char = c;
8076                   continue;
8077                 }
8078
8079               /* We need the OT_INTEGER check because some MIPS16
8080                  immediate variants are listed before the register ones.  */
8081               if (arg.token->type != OT_INTEGER
8082                   || !match_expression (&arg, &offset_expr, offset_reloc))
8083                 return FALSE;
8084
8085               /* '8' is used for SLTI(U) and has traditionally not
8086                  been allowed to take relocation operators.  */
8087               if (offset_reloc[0] != BFD_RELOC_UNUSED
8088                   && (ext_operand->size != 16 || c == '8'))
8089                 return FALSE;
8090
8091               relax_char = c;
8092               continue;
8093             }
8094         }
8095
8096       if (mips_optional_operand_p (operand)
8097           && args[1] == ','
8098           && (arg.token[0].type != OT_REG
8099               || arg.token[1].type == OT_END))
8100         {
8101           /* Assume that the register has been elided and is the
8102              same as the first operand.  */
8103           arg.token = tokens;
8104           arg.argnum = 1;
8105         }
8106
8107       if (!match_operand (&arg, operand))
8108         return FALSE;
8109     }
8110 }
8111
8112 /* Record that the current instruction is invalid for the current ISA.  */
8113
8114 static void
8115 match_invalid_for_isa (void)
8116 {
8117   set_insn_error_ss
8118     (0, _("opcode not supported on this processor: %s (%s)"),
8119      mips_cpu_info_from_arch (mips_opts.arch)->name,
8120      mips_cpu_info_from_isa (mips_opts.isa)->name);
8121 }
8122
8123 /* Try to match TOKENS against a series of opcode entries, starting at FIRST.
8124    Return true if a definite match or failure was found, storing any match
8125    in INSN.  OPCODE_EXTRA is a value that should be ORed into the opcode
8126    (to handle things like VU0 suffixes).  LAX_MATCH is true if we have already
8127    tried and failed to match under normal conditions and now want to try a
8128    more relaxed match.  */
8129
8130 static bfd_boolean
8131 match_insns (struct mips_cl_insn *insn, const struct mips_opcode *first,
8132              const struct mips_opcode *past, struct mips_operand_token *tokens,
8133              int opcode_extra, bfd_boolean lax_match)
8134 {
8135   const struct mips_opcode *opcode;
8136   const struct mips_opcode *invalid_delay_slot;
8137   bfd_boolean seen_valid_for_isa, seen_valid_for_size;
8138
8139   /* Search for a match, ignoring alternatives that don't satisfy the
8140      current ISA or forced_length.  */
8141   invalid_delay_slot = 0;
8142   seen_valid_for_isa = FALSE;
8143   seen_valid_for_size = FALSE;
8144   opcode = first;
8145   do
8146     {
8147       gas_assert (strcmp (opcode->name, first->name) == 0);
8148       if (is_opcode_valid (opcode))
8149         {
8150           seen_valid_for_isa = TRUE;
8151           if (is_size_valid (opcode))
8152             {
8153               bfd_boolean delay_slot_ok;
8154
8155               seen_valid_for_size = TRUE;
8156               delay_slot_ok = is_delay_slot_valid (opcode);
8157               if (match_insn (insn, opcode, tokens, opcode_extra,
8158                               lax_match, delay_slot_ok))
8159                 {
8160                   if (!delay_slot_ok)
8161                     {
8162                       if (!invalid_delay_slot)
8163                         invalid_delay_slot = opcode;
8164                     }
8165                   else
8166                     return TRUE;
8167                 }
8168             }
8169         }
8170       ++opcode;
8171     }
8172   while (opcode < past && strcmp (opcode->name, first->name) == 0);
8173
8174   /* If the only matches we found had the wrong length for the delay slot,
8175      pick the first such match.  We'll issue an appropriate warning later.  */
8176   if (invalid_delay_slot)
8177     {
8178       if (match_insn (insn, invalid_delay_slot, tokens, opcode_extra,
8179                       lax_match, TRUE))
8180         return TRUE;
8181       abort ();
8182     }
8183
8184   /* Handle the case where we didn't try to match an instruction because
8185      all the alternatives were incompatible with the current ISA.  */
8186   if (!seen_valid_for_isa)
8187     {
8188       match_invalid_for_isa ();
8189       return TRUE;
8190     }
8191
8192   /* Handle the case where we didn't try to match an instruction because
8193      all the alternatives were of the wrong size.  */
8194   if (!seen_valid_for_size)
8195     {
8196       if (mips_opts.insn32)
8197         set_insn_error (0, _("opcode not supported in the `insn32' mode"));
8198       else
8199         set_insn_error_i
8200           (0, _("unrecognized %d-bit version of microMIPS opcode"),
8201            8 * forced_insn_length);
8202       return TRUE;
8203     }
8204
8205   return FALSE;
8206 }
8207
8208 /* Like match_insns, but for MIPS16.  */
8209
8210 static bfd_boolean
8211 match_mips16_insns (struct mips_cl_insn *insn, const struct mips_opcode *first,
8212                     struct mips_operand_token *tokens)
8213 {
8214   const struct mips_opcode *opcode;
8215   bfd_boolean seen_valid_for_isa;
8216
8217   /* Search for a match, ignoring alternatives that don't satisfy the
8218      current ISA.  There are no separate entries for extended forms so
8219      we deal with forced_length later.  */
8220   seen_valid_for_isa = FALSE;
8221   opcode = first;
8222   do
8223     {
8224       gas_assert (strcmp (opcode->name, first->name) == 0);
8225       if (is_opcode_valid_16 (opcode))
8226         {
8227           seen_valid_for_isa = TRUE;
8228           if (match_mips16_insn (insn, opcode, tokens))
8229             return TRUE;
8230         }
8231       ++opcode;
8232     }
8233   while (opcode < &mips16_opcodes[bfd_mips16_num_opcodes]
8234          && strcmp (opcode->name, first->name) == 0);
8235
8236   /* Handle the case where we didn't try to match an instruction because
8237      all the alternatives were incompatible with the current ISA.  */
8238   if (!seen_valid_for_isa)
8239     {
8240       match_invalid_for_isa ();
8241       return TRUE;
8242     }
8243
8244   return FALSE;
8245 }
8246
8247 /* Set up global variables for the start of a new macro.  */
8248
8249 static void
8250 macro_start (void)
8251 {
8252   memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
8253   memset (&mips_macro_warning.first_insn_sizes, 0,
8254           sizeof (mips_macro_warning.first_insn_sizes));
8255   memset (&mips_macro_warning.insns, 0, sizeof (mips_macro_warning.insns));
8256   mips_macro_warning.delay_slot_p = (mips_opts.noreorder
8257                                      && delayed_branch_p (&history[0]));
8258   switch (history[0].insn_mo->pinfo2
8259           & (INSN2_BRANCH_DELAY_32BIT | INSN2_BRANCH_DELAY_16BIT))
8260     {
8261     case INSN2_BRANCH_DELAY_32BIT:
8262       mips_macro_warning.delay_slot_length = 4;
8263       break;
8264     case INSN2_BRANCH_DELAY_16BIT:
8265       mips_macro_warning.delay_slot_length = 2;
8266       break;
8267     default:
8268       mips_macro_warning.delay_slot_length = 0;
8269       break;
8270     }
8271   mips_macro_warning.first_frag = NULL;
8272 }
8273
8274 /* Given that a macro is longer than one instruction or of the wrong size,
8275    return the appropriate warning for it.  Return null if no warning is
8276    needed.  SUBTYPE is a bitmask of RELAX_DELAY_SLOT, RELAX_DELAY_SLOT_16BIT,
8277    RELAX_DELAY_SLOT_SIZE_FIRST, RELAX_DELAY_SLOT_SIZE_SECOND,
8278    and RELAX_NOMACRO.  */
8279
8280 static const char *
8281 macro_warning (relax_substateT subtype)
8282 {
8283   if (subtype & RELAX_DELAY_SLOT)
8284     return _("macro instruction expanded into multiple instructions"
8285              " in a branch delay slot");
8286   else if (subtype & RELAX_NOMACRO)
8287     return _("macro instruction expanded into multiple instructions");
8288   else if (subtype & (RELAX_DELAY_SLOT_SIZE_FIRST
8289                       | RELAX_DELAY_SLOT_SIZE_SECOND))
8290     return ((subtype & RELAX_DELAY_SLOT_16BIT)
8291             ? _("macro instruction expanded into a wrong size instruction"
8292                 " in a 16-bit branch delay slot")
8293             : _("macro instruction expanded into a wrong size instruction"
8294                 " in a 32-bit branch delay slot"));
8295   else
8296     return 0;
8297 }
8298
8299 /* Finish up a macro.  Emit warnings as appropriate.  */
8300
8301 static void
8302 macro_end (void)
8303 {
8304   /* Relaxation warning flags.  */
8305   relax_substateT subtype = 0;
8306
8307   /* Check delay slot size requirements.  */
8308   if (mips_macro_warning.delay_slot_length == 2)
8309     subtype |= RELAX_DELAY_SLOT_16BIT;
8310   if (mips_macro_warning.delay_slot_length != 0)
8311     {
8312       if (mips_macro_warning.delay_slot_length
8313           != mips_macro_warning.first_insn_sizes[0])
8314         subtype |= RELAX_DELAY_SLOT_SIZE_FIRST;
8315       if (mips_macro_warning.delay_slot_length
8316           != mips_macro_warning.first_insn_sizes[1])
8317         subtype |= RELAX_DELAY_SLOT_SIZE_SECOND;
8318     }
8319
8320   /* Check instruction count requirements.  */
8321   if (mips_macro_warning.insns[0] > 1 || mips_macro_warning.insns[1] > 1)
8322     {
8323       if (mips_macro_warning.insns[1] > mips_macro_warning.insns[0])
8324         subtype |= RELAX_SECOND_LONGER;
8325       if (mips_opts.warn_about_macros)
8326         subtype |= RELAX_NOMACRO;
8327       if (mips_macro_warning.delay_slot_p)
8328         subtype |= RELAX_DELAY_SLOT;
8329     }
8330
8331   /* If both alternatives fail to fill a delay slot correctly,
8332      emit the warning now.  */
8333   if ((subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0
8334       && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0)
8335     {
8336       relax_substateT s;
8337       const char *msg;
8338
8339       s = subtype & (RELAX_DELAY_SLOT_16BIT
8340                      | RELAX_DELAY_SLOT_SIZE_FIRST
8341                      | RELAX_DELAY_SLOT_SIZE_SECOND);
8342       msg = macro_warning (s);
8343       if (msg != NULL)
8344         as_warn ("%s", msg);
8345       subtype &= ~s;
8346     }
8347
8348   /* If both implementations are longer than 1 instruction, then emit the
8349      warning now.  */
8350   if (mips_macro_warning.insns[0] > 1 && mips_macro_warning.insns[1] > 1)
8351     {
8352       relax_substateT s;
8353       const char *msg;
8354
8355       s = subtype & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT);
8356       msg = macro_warning (s);
8357       if (msg != NULL)
8358         as_warn ("%s", msg);
8359       subtype &= ~s;
8360     }
8361
8362   /* If any flags still set, then one implementation might need a warning
8363      and the other either will need one of a different kind or none at all.
8364      Pass any remaining flags over to relaxation.  */
8365   if (mips_macro_warning.first_frag != NULL)
8366     mips_macro_warning.first_frag->fr_subtype |= subtype;
8367 }
8368
8369 /* Instruction operand formats used in macros that vary between
8370    standard MIPS and microMIPS code.  */
8371
8372 static const char * const brk_fmt[2][2] = { { "c", "c" }, { "mF", "c" } };
8373 static const char * const cop12_fmt[2] = { "E,o(b)", "E,~(b)" };
8374 static const char * const jalr_fmt[2] = { "d,s", "t,s" };
8375 static const char * const lui_fmt[2] = { "t,u", "s,u" };
8376 static const char * const mem12_fmt[2] = { "t,o(b)", "t,~(b)" };
8377 static const char * const mfhl_fmt[2][2] = { { "d", "d" }, { "mj", "s" } };
8378 static const char * const shft_fmt[2] = { "d,w,<", "t,r,<" };
8379 static const char * const trap_fmt[2] = { "s,t,q", "s,t,|" };
8380
8381 #define BRK_FMT (brk_fmt[mips_opts.micromips][mips_opts.insn32])
8382 #define COP12_FMT (ISA_IS_R6 (mips_opts.isa) ? "E,+:(d)" \
8383                                              : cop12_fmt[mips_opts.micromips])
8384 #define JALR_FMT (jalr_fmt[mips_opts.micromips])
8385 #define LUI_FMT (lui_fmt[mips_opts.micromips])
8386 #define MEM12_FMT (mem12_fmt[mips_opts.micromips])
8387 #define LL_SC_FMT (ISA_IS_R6 (mips_opts.isa) ? "t,+j(b)" \
8388                                              : mem12_fmt[mips_opts.micromips])
8389 #define MFHL_FMT (mfhl_fmt[mips_opts.micromips][mips_opts.insn32])
8390 #define SHFT_FMT (shft_fmt[mips_opts.micromips])
8391 #define TRAP_FMT (trap_fmt[mips_opts.micromips])
8392
8393 /* Read a macro's relocation codes from *ARGS and store them in *R.
8394    The first argument in *ARGS will be either the code for a single
8395    relocation or -1 followed by the three codes that make up a
8396    composite relocation.  */
8397
8398 static void
8399 macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
8400 {
8401   int i, next;
8402
8403   next = va_arg (*args, int);
8404   if (next >= 0)
8405     r[0] = (bfd_reloc_code_real_type) next;
8406   else
8407     {
8408       for (i = 0; i < 3; i++)
8409         r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
8410       /* This function is only used for 16-bit relocation fields.
8411          To make the macro code simpler, treat an unrelocated value
8412          in the same way as BFD_RELOC_LO16.  */
8413       if (r[0] == BFD_RELOC_UNUSED)
8414         r[0] = BFD_RELOC_LO16;
8415     }
8416 }
8417
8418 /* Build an instruction created by a macro expansion.  This is passed
8419    a pointer to the count of instructions created so far, an
8420    expression, the name of the instruction to build, an operand format
8421    string, and corresponding arguments.  */
8422
8423 static void
8424 macro_build (expressionS *ep, const char *name, const char *fmt, ...)
8425 {
8426   const struct mips_opcode *mo = NULL;
8427   bfd_reloc_code_real_type r[3];
8428   const struct mips_opcode *amo;
8429   const struct mips_operand *operand;
8430   struct hash_control *hash;
8431   struct mips_cl_insn insn;
8432   va_list args;
8433   unsigned int uval;
8434
8435   va_start (args, fmt);
8436
8437   if (mips_opts.mips16)
8438     {
8439       mips16_macro_build (ep, name, fmt, &args);
8440       va_end (args);
8441       return;
8442     }
8443
8444   r[0] = BFD_RELOC_UNUSED;
8445   r[1] = BFD_RELOC_UNUSED;
8446   r[2] = BFD_RELOC_UNUSED;
8447   hash = mips_opts.micromips ? micromips_op_hash : op_hash;
8448   amo = (struct mips_opcode *) hash_find (hash, name);
8449   gas_assert (amo);
8450   gas_assert (strcmp (name, amo->name) == 0);
8451
8452   do
8453     {
8454       /* Search until we get a match for NAME.  It is assumed here that
8455          macros will never generate MDMX, MIPS-3D, or MT instructions.
8456          We try to match an instruction that fulfils the branch delay
8457          slot instruction length requirement (if any) of the previous
8458          instruction.  While doing this we record the first instruction
8459          seen that matches all the other conditions and use it anyway
8460          if the requirement cannot be met; we will issue an appropriate
8461          warning later on.  */
8462       if (strcmp (fmt, amo->args) == 0
8463           && amo->pinfo != INSN_MACRO
8464           && is_opcode_valid (amo)
8465           && is_size_valid (amo))
8466         {
8467           if (is_delay_slot_valid (amo))
8468             {
8469               mo = amo;
8470               break;
8471             }
8472           else if (!mo)
8473             mo = amo;
8474         }
8475
8476       ++amo;
8477       gas_assert (amo->name);
8478     }
8479   while (strcmp (name, amo->name) == 0);
8480
8481   gas_assert (mo);
8482   create_insn (&insn, mo);
8483   for (; *fmt; ++fmt)
8484     {
8485       switch (*fmt)
8486         {
8487         case ',':
8488         case '(':
8489         case ')':
8490         case 'z':
8491           break;
8492
8493         case 'i':
8494         case 'j':
8495           macro_read_relocs (&args, r);
8496           gas_assert (*r == BFD_RELOC_GPREL16
8497                       || *r == BFD_RELOC_MIPS_HIGHER
8498                       || *r == BFD_RELOC_HI16_S
8499                       || *r == BFD_RELOC_LO16
8500                       || *r == BFD_RELOC_MIPS_GOT_OFST);
8501           break;
8502
8503         case 'o':
8504           macro_read_relocs (&args, r);
8505           break;
8506
8507         case 'u':
8508           macro_read_relocs (&args, r);
8509           gas_assert (ep != NULL
8510                       && (ep->X_op == O_constant
8511                           || (ep->X_op == O_symbol
8512                               && (*r == BFD_RELOC_MIPS_HIGHEST
8513                                   || *r == BFD_RELOC_HI16_S
8514                                   || *r == BFD_RELOC_HI16
8515                                   || *r == BFD_RELOC_GPREL16
8516                                   || *r == BFD_RELOC_MIPS_GOT_HI16
8517                                   || *r == BFD_RELOC_MIPS_CALL_HI16))));
8518           break;
8519
8520         case 'p':
8521           gas_assert (ep != NULL);
8522
8523           /*
8524            * This allows macro() to pass an immediate expression for
8525            * creating short branches without creating a symbol.
8526            *
8527            * We don't allow branch relaxation for these branches, as
8528            * they should only appear in ".set nomacro" anyway.
8529            */
8530           if (ep->X_op == O_constant)
8531             {
8532               /* For microMIPS we always use relocations for branches.
8533                  So we should not resolve immediate values.  */
8534               gas_assert (!mips_opts.micromips);
8535
8536               if ((ep->X_add_number & 3) != 0)
8537                 as_bad (_("branch to misaligned address (0x%lx)"),
8538                         (unsigned long) ep->X_add_number);
8539               if ((ep->X_add_number + 0x20000) & ~0x3ffff)
8540                 as_bad (_("branch address range overflow (0x%lx)"),
8541                         (unsigned long) ep->X_add_number);
8542               insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
8543               ep = NULL;
8544             }
8545           else
8546             *r = BFD_RELOC_16_PCREL_S2;
8547           break;
8548
8549         case 'a':
8550           gas_assert (ep != NULL);
8551           *r = BFD_RELOC_MIPS_JMP;
8552           break;
8553
8554         default:
8555           operand = (mips_opts.micromips
8556                      ? decode_micromips_operand (fmt)
8557                      : decode_mips_operand (fmt));
8558           if (!operand)
8559             abort ();
8560
8561           uval = va_arg (args, int);
8562           if (operand->type == OP_CLO_CLZ_DEST)
8563             uval |= (uval << 5);
8564           insn_insert_operand (&insn, operand, uval);
8565
8566           if (*fmt == '+' || *fmt == 'm' || *fmt == '-')
8567             ++fmt;
8568           break;
8569         }
8570     }
8571   va_end (args);
8572   gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
8573
8574   append_insn (&insn, ep, r, TRUE);
8575 }
8576
8577 static void
8578 mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
8579                     va_list *args)
8580 {
8581   struct mips_opcode *mo;
8582   struct mips_cl_insn insn;
8583   const struct mips_operand *operand;
8584   bfd_reloc_code_real_type r[3]
8585     = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
8586
8587   mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
8588   gas_assert (mo);
8589   gas_assert (strcmp (name, mo->name) == 0);
8590
8591   while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
8592     {
8593       ++mo;
8594       gas_assert (mo->name);
8595       gas_assert (strcmp (name, mo->name) == 0);
8596     }
8597
8598   create_insn (&insn, mo);
8599   for (; *fmt; ++fmt)
8600     {
8601       int c;
8602
8603       c = *fmt;
8604       switch (c)
8605         {
8606         case ',':
8607         case '(':
8608         case ')':
8609           break;
8610
8611         case '0':
8612         case 'S':
8613         case 'P':
8614         case 'R':
8615           break;
8616
8617         case '<':
8618         case '>':
8619         case '4':
8620         case '5':
8621         case 'H':
8622         case 'W':
8623         case 'D':
8624         case 'j':
8625         case '8':
8626         case 'V':
8627         case 'C':
8628         case 'U':
8629         case 'k':
8630         case 'K':
8631         case 'p':
8632         case 'q':
8633           {
8634             offsetT value;
8635
8636             gas_assert (ep != NULL);
8637
8638             if (ep->X_op != O_constant)
8639               *r = (int) BFD_RELOC_UNUSED + c;
8640             else if (calculate_reloc (*r, ep->X_add_number, &value))
8641               {
8642                 mips16_immed (NULL, 0, c, *r, value, 0, &insn.insn_opcode);
8643                 ep = NULL;
8644                 *r = BFD_RELOC_UNUSED;
8645               }
8646           }
8647           break;
8648
8649         default:
8650           operand = decode_mips16_operand (c, FALSE);
8651           if (!operand)
8652             abort ();
8653
8654           insn_insert_operand (&insn, operand, va_arg (*args, int));
8655           break;
8656         }
8657     }
8658
8659   gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
8660
8661   append_insn (&insn, ep, r, TRUE);
8662 }
8663
8664 /*
8665  * Generate a "jalr" instruction with a relocation hint to the called
8666  * function.  This occurs in NewABI PIC code.
8667  */
8668 static void
8669 macro_build_jalr (expressionS *ep, int cprestore)
8670 {
8671   static const bfd_reloc_code_real_type jalr_relocs[2]
8672     = { BFD_RELOC_MIPS_JALR, BFD_RELOC_MICROMIPS_JALR };
8673   bfd_reloc_code_real_type jalr_reloc = jalr_relocs[mips_opts.micromips];
8674   const char *jalr;
8675   char *f = NULL;
8676
8677   if (MIPS_JALR_HINT_P (ep))
8678     {
8679       frag_grow (8);
8680       f = frag_more (0);
8681     }
8682   if (mips_opts.micromips)
8683     {
8684       jalr = ((mips_opts.noreorder && !cprestore) || mips_opts.insn32
8685               ? "jalr" : "jalrs");
8686       if (MIPS_JALR_HINT_P (ep)
8687           || mips_opts.insn32
8688           || (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
8689         macro_build (NULL, jalr, "t,s", RA, PIC_CALL_REG);
8690       else
8691         macro_build (NULL, jalr, "mj", PIC_CALL_REG);
8692     }
8693   else
8694     macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
8695   if (MIPS_JALR_HINT_P (ep))
8696     fix_new_exp (frag_now, f - frag_now->fr_literal, 4, ep, FALSE, jalr_reloc);
8697 }
8698
8699 /*
8700  * Generate a "lui" instruction.
8701  */
8702 static void
8703 macro_build_lui (expressionS *ep, int regnum)
8704 {
8705   gas_assert (! mips_opts.mips16);
8706
8707   if (ep->X_op != O_constant)
8708     {
8709       gas_assert (ep->X_op == O_symbol);
8710       /* _gp_disp is a special case, used from s_cpload.
8711          __gnu_local_gp is used if mips_no_shared.  */
8712       gas_assert (mips_pic == NO_PIC
8713               || (! HAVE_NEWABI
8714                   && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
8715               || (! mips_in_shared
8716                   && strcmp (S_GET_NAME (ep->X_add_symbol),
8717                              "__gnu_local_gp") == 0));
8718     }
8719
8720   macro_build (ep, "lui", LUI_FMT, regnum, BFD_RELOC_HI16_S);
8721 }
8722
8723 /* Generate a sequence of instructions to do a load or store from a constant
8724    offset off of a base register (breg) into/from a target register (treg),
8725    using AT if necessary.  */
8726 static void
8727 macro_build_ldst_constoffset (expressionS *ep, const char *op,
8728                               int treg, int breg, int dbl)
8729 {
8730   gas_assert (ep->X_op == O_constant);
8731
8732   /* Sign-extending 32-bit constants makes their handling easier.  */
8733   if (!dbl)
8734     normalize_constant_expr (ep);
8735
8736   /* Right now, this routine can only handle signed 32-bit constants.  */
8737   if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
8738     as_warn (_("operand overflow"));
8739
8740   if (IS_SEXT_16BIT_NUM(ep->X_add_number))
8741     {
8742       /* Signed 16-bit offset will fit in the op.  Easy!  */
8743       macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
8744     }
8745   else
8746     {
8747       /* 32-bit offset, need multiple instructions and AT, like:
8748            lui      $tempreg,const_hi       (BFD_RELOC_HI16_S)
8749            addu     $tempreg,$tempreg,$breg
8750            <op>     $treg,const_lo($tempreg)   (BFD_RELOC_LO16)
8751          to handle the complete offset.  */
8752       macro_build_lui (ep, AT);
8753       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8754       macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8755
8756       if (!mips_opts.at)
8757         as_bad (_("macro used $at after \".set noat\""));
8758     }
8759 }
8760
8761 /*                      set_at()
8762  * Generates code to set the $at register to true (one)
8763  * if reg is less than the immediate expression.
8764  */
8765 static void
8766 set_at (int reg, int unsignedp)
8767 {
8768   if (imm_expr.X_add_number >= -0x8000
8769       && imm_expr.X_add_number < 0x8000)
8770     macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
8771                  AT, reg, BFD_RELOC_LO16);
8772   else
8773     {
8774       load_register (AT, &imm_expr, GPR_SIZE == 64);
8775       macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
8776     }
8777 }
8778
8779 /* Count the leading zeroes by performing a binary chop. This is a
8780    bulky bit of source, but performance is a LOT better for the
8781    majority of values than a simple loop to count the bits:
8782        for (lcnt = 0; (lcnt < 32); lcnt++)
8783          if ((v) & (1 << (31 - lcnt)))
8784            break;
8785   However it is not code size friendly, and the gain will drop a bit
8786   on certain cached systems.
8787 */
8788 #define COUNT_TOP_ZEROES(v)             \
8789   (((v) & ~0xffff) == 0                 \
8790    ? ((v) & ~0xff) == 0                 \
8791      ? ((v) & ~0xf) == 0                \
8792        ? ((v) & ~0x3) == 0              \
8793          ? ((v) & ~0x1) == 0            \
8794            ? !(v)                       \
8795              ? 32                       \
8796              : 31                       \
8797            : 30                         \
8798          : ((v) & ~0x7) == 0            \
8799            ? 29                         \
8800            : 28                         \
8801        : ((v) & ~0x3f) == 0             \
8802          ? ((v) & ~0x1f) == 0           \
8803            ? 27                         \
8804            : 26                         \
8805          : ((v) & ~0x7f) == 0           \
8806            ? 25                         \
8807            : 24                         \
8808      : ((v) & ~0xfff) == 0              \
8809        ? ((v) & ~0x3ff) == 0            \
8810          ? ((v) & ~0x1ff) == 0          \
8811            ? 23                         \
8812            : 22                         \
8813          : ((v) & ~0x7ff) == 0          \
8814            ? 21                         \
8815            : 20                         \
8816        : ((v) & ~0x3fff) == 0           \
8817          ? ((v) & ~0x1fff) == 0         \
8818            ? 19                         \
8819            : 18                         \
8820          : ((v) & ~0x7fff) == 0         \
8821            ? 17                         \
8822            : 16                         \
8823    : ((v) & ~0xffffff) == 0             \
8824      ? ((v) & ~0xfffff) == 0            \
8825        ? ((v) & ~0x3ffff) == 0          \
8826          ? ((v) & ~0x1ffff) == 0        \
8827            ? 15                         \
8828            : 14                         \
8829          : ((v) & ~0x7ffff) == 0        \
8830            ? 13                         \
8831            : 12                         \
8832        : ((v) & ~0x3fffff) == 0         \
8833          ? ((v) & ~0x1fffff) == 0       \
8834            ? 11                         \
8835            : 10                         \
8836          : ((v) & ~0x7fffff) == 0       \
8837            ? 9                          \
8838            : 8                          \
8839      : ((v) & ~0xfffffff) == 0          \
8840        ? ((v) & ~0x3ffffff) == 0        \
8841          ? ((v) & ~0x1ffffff) == 0      \
8842            ? 7                          \
8843            : 6                          \
8844          : ((v) & ~0x7ffffff) == 0      \
8845            ? 5                          \
8846            : 4                          \
8847        : ((v) & ~0x3fffffff) == 0       \
8848          ? ((v) & ~0x1fffffff) == 0     \
8849            ? 3                          \
8850            : 2                          \
8851          : ((v) & ~0x7fffffff) == 0     \
8852            ? 1                          \
8853            : 0)
8854
8855 /*                      load_register()
8856  *  This routine generates the least number of instructions necessary to load
8857  *  an absolute expression value into a register.
8858  */
8859 static void
8860 load_register (int reg, expressionS *ep, int dbl)
8861 {
8862   int freg;
8863   expressionS hi32, lo32;
8864
8865   if (ep->X_op != O_big)
8866     {
8867       gas_assert (ep->X_op == O_constant);
8868
8869       /* Sign-extending 32-bit constants makes their handling easier.  */
8870       if (!dbl)
8871         normalize_constant_expr (ep);
8872
8873       if (IS_SEXT_16BIT_NUM (ep->X_add_number))
8874         {
8875           /* We can handle 16 bit signed values with an addiu to
8876              $zero.  No need to ever use daddiu here, since $zero and
8877              the result are always correct in 32 bit mode.  */
8878           macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
8879           return;
8880         }
8881       else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
8882         {
8883           /* We can handle 16 bit unsigned values with an ori to
8884              $zero.  */
8885           macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
8886           return;
8887         }
8888       else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
8889         {
8890           /* 32 bit values require an lui.  */
8891           macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
8892           if ((ep->X_add_number & 0xffff) != 0)
8893             macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
8894           return;
8895         }
8896     }
8897
8898   /* The value is larger than 32 bits.  */
8899
8900   if (!dbl || GPR_SIZE == 32)
8901     {
8902       char value[32];
8903
8904       sprintf_vma (value, ep->X_add_number);
8905       as_bad (_("number (0x%s) larger than 32 bits"), value);
8906       macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
8907       return;
8908     }
8909
8910   if (ep->X_op != O_big)
8911     {
8912       hi32 = *ep;
8913       hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
8914       hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
8915       hi32.X_add_number &= 0xffffffff;
8916       lo32 = *ep;
8917       lo32.X_add_number &= 0xffffffff;
8918     }
8919   else
8920     {
8921       gas_assert (ep->X_add_number > 2);
8922       if (ep->X_add_number == 3)
8923         generic_bignum[3] = 0;
8924       else if (ep->X_add_number > 4)
8925         as_bad (_("number larger than 64 bits"));
8926       lo32.X_op = O_constant;
8927       lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
8928       hi32.X_op = O_constant;
8929       hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
8930     }
8931
8932   if (hi32.X_add_number == 0)
8933     freg = 0;
8934   else
8935     {
8936       int shift, bit;
8937       unsigned long hi, lo;
8938
8939       if (hi32.X_add_number == (offsetT) 0xffffffff)
8940         {
8941           if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
8942             {
8943               macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
8944               return;
8945             }
8946           if (lo32.X_add_number & 0x80000000)
8947             {
8948               macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
8949               if (lo32.X_add_number & 0xffff)
8950                 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
8951               return;
8952             }
8953         }
8954
8955       /* Check for 16bit shifted constant.  We know that hi32 is
8956          non-zero, so start the mask on the first bit of the hi32
8957          value.  */
8958       shift = 17;
8959       do
8960         {
8961           unsigned long himask, lomask;
8962
8963           if (shift < 32)
8964             {
8965               himask = 0xffff >> (32 - shift);
8966               lomask = (0xffff << shift) & 0xffffffff;
8967             }
8968           else
8969             {
8970               himask = 0xffff << (shift - 32);
8971               lomask = 0;
8972             }
8973           if ((hi32.X_add_number & ~(offsetT) himask) == 0
8974               && (lo32.X_add_number & ~(offsetT) lomask) == 0)
8975             {
8976               expressionS tmp;
8977
8978               tmp.X_op = O_constant;
8979               if (shift < 32)
8980                 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
8981                                     | (lo32.X_add_number >> shift));
8982               else
8983                 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
8984               macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
8985               macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", SHFT_FMT,
8986                            reg, reg, (shift >= 32) ? shift - 32 : shift);
8987               return;
8988             }
8989           ++shift;
8990         }
8991       while (shift <= (64 - 16));
8992
8993       /* Find the bit number of the lowest one bit, and store the
8994          shifted value in hi/lo.  */
8995       hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
8996       lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
8997       if (lo != 0)
8998         {
8999           bit = 0;
9000           while ((lo & 1) == 0)
9001             {
9002               lo >>= 1;
9003               ++bit;
9004             }
9005           lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
9006           hi >>= bit;
9007         }
9008       else
9009         {
9010           bit = 32;
9011           while ((hi & 1) == 0)
9012             {
9013               hi >>= 1;
9014               ++bit;
9015             }
9016           lo = hi;
9017           hi = 0;
9018         }
9019
9020       /* Optimize if the shifted value is a (power of 2) - 1.  */
9021       if ((hi == 0 && ((lo + 1) & lo) == 0)
9022           || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
9023         {
9024           shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
9025           if (shift != 0)
9026             {
9027               expressionS tmp;
9028
9029               /* This instruction will set the register to be all
9030                  ones.  */
9031               tmp.X_op = O_constant;
9032               tmp.X_add_number = (offsetT) -1;
9033               macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
9034               if (bit != 0)
9035                 {
9036                   bit += shift;
9037                   macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", SHFT_FMT,
9038                                reg, reg, (bit >= 32) ? bit - 32 : bit);
9039                 }
9040               macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", SHFT_FMT,
9041                            reg, reg, (shift >= 32) ? shift - 32 : shift);
9042               return;
9043             }
9044         }
9045
9046       /* Sign extend hi32 before calling load_register, because we can
9047          generally get better code when we load a sign extended value.  */
9048       if ((hi32.X_add_number & 0x80000000) != 0)
9049         hi32.X_add_number |= ~(offsetT) 0xffffffff;
9050       load_register (reg, &hi32, 0);
9051       freg = reg;
9052     }
9053   if ((lo32.X_add_number & 0xffff0000) == 0)
9054     {
9055       if (freg != 0)
9056         {
9057           macro_build (NULL, "dsll32", SHFT_FMT, reg, freg, 0);
9058           freg = reg;
9059         }
9060     }
9061   else
9062     {
9063       expressionS mid16;
9064
9065       if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
9066         {
9067           macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
9068           macro_build (NULL, "dsrl32", SHFT_FMT, reg, reg, 0);
9069           return;
9070         }
9071
9072       if (freg != 0)
9073         {
9074           macro_build (NULL, "dsll", SHFT_FMT, reg, freg, 16);
9075           freg = reg;
9076         }
9077       mid16 = lo32;
9078       mid16.X_add_number >>= 16;
9079       macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
9080       macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
9081       freg = reg;
9082     }
9083   if ((lo32.X_add_number & 0xffff) != 0)
9084     macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
9085 }
9086
9087 static inline void
9088 load_delay_nop (void)
9089 {
9090   if (!gpr_interlocks)
9091     macro_build (NULL, "nop", "");
9092 }
9093
9094 /* Load an address into a register.  */
9095
9096 static void
9097 load_address (int reg, expressionS *ep, int *used_at)
9098 {
9099   if (ep->X_op != O_constant
9100       && ep->X_op != O_symbol)
9101     {
9102       as_bad (_("expression too complex"));
9103       ep->X_op = O_constant;
9104     }
9105
9106   if (ep->X_op == O_constant)
9107     {
9108       load_register (reg, ep, HAVE_64BIT_ADDRESSES);
9109       return;
9110     }
9111
9112   if (mips_pic == NO_PIC)
9113     {
9114       /* If this is a reference to a GP relative symbol, we want
9115            addiu        $reg,$gp,<sym>          (BFD_RELOC_GPREL16)
9116          Otherwise we want
9117            lui          $reg,<sym>              (BFD_RELOC_HI16_S)
9118            addiu        $reg,$reg,<sym>         (BFD_RELOC_LO16)
9119          If we have an addend, we always use the latter form.
9120
9121          With 64bit address space and a usable $at we want
9122            lui          $reg,<sym>              (BFD_RELOC_MIPS_HIGHEST)
9123            lui          $at,<sym>               (BFD_RELOC_HI16_S)
9124            daddiu       $reg,<sym>              (BFD_RELOC_MIPS_HIGHER)
9125            daddiu       $at,<sym>               (BFD_RELOC_LO16)
9126            dsll32       $reg,0
9127            daddu        $reg,$reg,$at
9128
9129          If $at is already in use, we use a path which is suboptimal
9130          on superscalar processors.
9131            lui          $reg,<sym>              (BFD_RELOC_MIPS_HIGHEST)
9132            daddiu       $reg,<sym>              (BFD_RELOC_MIPS_HIGHER)
9133            dsll         $reg,16
9134            daddiu       $reg,<sym>              (BFD_RELOC_HI16_S)
9135            dsll         $reg,16
9136            daddiu       $reg,<sym>              (BFD_RELOC_LO16)
9137
9138          For GP relative symbols in 64bit address space we can use
9139          the same sequence as in 32bit address space.  */
9140       if (HAVE_64BIT_SYMBOLS)
9141         {
9142           if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
9143               && !nopic_need_relax (ep->X_add_symbol, 1))
9144             {
9145               relax_start (ep->X_add_symbol);
9146               macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
9147                            mips_gp_register, BFD_RELOC_GPREL16);
9148               relax_switch ();
9149             }
9150
9151           if (*used_at == 0 && mips_opts.at)
9152             {
9153               macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
9154               macro_build (ep, "lui", LUI_FMT, AT, BFD_RELOC_HI16_S);
9155               macro_build (ep, "daddiu", "t,r,j", reg, reg,
9156                            BFD_RELOC_MIPS_HIGHER);
9157               macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
9158               macro_build (NULL, "dsll32", SHFT_FMT, reg, reg, 0);
9159               macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
9160               *used_at = 1;
9161             }
9162           else
9163             {
9164               macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
9165               macro_build (ep, "daddiu", "t,r,j", reg, reg,
9166                            BFD_RELOC_MIPS_HIGHER);
9167               macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
9168               macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
9169               macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
9170               macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
9171             }
9172
9173           if (mips_relax.sequence)
9174             relax_end ();
9175         }
9176       else
9177         {
9178           if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
9179               && !nopic_need_relax (ep->X_add_symbol, 1))
9180             {
9181               relax_start (ep->X_add_symbol);
9182               macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
9183                            mips_gp_register, BFD_RELOC_GPREL16);
9184               relax_switch ();
9185             }
9186           macro_build_lui (ep, reg);
9187           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
9188                        reg, reg, BFD_RELOC_LO16);
9189           if (mips_relax.sequence)
9190             relax_end ();
9191         }
9192     }
9193   else if (!mips_big_got)
9194     {
9195       expressionS ex;
9196
9197       /* If this is a reference to an external symbol, we want
9198            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT16)
9199          Otherwise we want
9200            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT16)
9201            nop
9202            addiu        $reg,$reg,<sym>         (BFD_RELOC_LO16)
9203          If there is a constant, it must be added in after.
9204
9205          If we have NewABI, we want
9206            lw           $reg,<sym+cst>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
9207          unless we're referencing a global symbol with a non-zero
9208          offset, in which case cst must be added separately.  */
9209       if (HAVE_NEWABI)
9210         {
9211           if (ep->X_add_number)
9212             {
9213               ex.X_add_number = ep->X_add_number;
9214               ep->X_add_number = 0;
9215               relax_start (ep->X_add_symbol);
9216               macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
9217                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
9218               if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
9219                 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9220               ex.X_op = O_constant;
9221               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
9222                            reg, reg, BFD_RELOC_LO16);
9223               ep->X_add_number = ex.X_add_number;
9224               relax_switch ();
9225             }
9226           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
9227                        BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
9228           if (mips_relax.sequence)
9229             relax_end ();
9230         }
9231       else
9232         {
9233           ex.X_add_number = ep->X_add_number;
9234           ep->X_add_number = 0;
9235           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
9236                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
9237           load_delay_nop ();
9238           relax_start (ep->X_add_symbol);
9239           relax_switch ();
9240           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
9241                        BFD_RELOC_LO16);
9242           relax_end ();
9243
9244           if (ex.X_add_number != 0)
9245             {
9246               if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
9247                 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9248               ex.X_op = O_constant;
9249               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
9250                            reg, reg, BFD_RELOC_LO16);
9251             }
9252         }
9253     }
9254   else if (mips_big_got)
9255     {
9256       expressionS ex;
9257
9258       /* This is the large GOT case.  If this is a reference to an
9259          external symbol, we want
9260            lui          $reg,<sym>              (BFD_RELOC_MIPS_GOT_HI16)
9261            addu         $reg,$reg,$gp
9262            lw           $reg,<sym>($reg)        (BFD_RELOC_MIPS_GOT_LO16)
9263
9264          Otherwise, for a reference to a local symbol in old ABI, we want
9265            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT16)
9266            nop
9267            addiu        $reg,$reg,<sym>         (BFD_RELOC_LO16)
9268          If there is a constant, it must be added in after.
9269
9270          In the NewABI, for local symbols, with or without offsets, we want:
9271            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT_PAGE)
9272            addiu        $reg,$reg,<sym>         (BFD_RELOC_MIPS_GOT_OFST)
9273       */
9274       if (HAVE_NEWABI)
9275         {
9276           ex.X_add_number = ep->X_add_number;
9277           ep->X_add_number = 0;
9278           relax_start (ep->X_add_symbol);
9279           macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
9280           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9281                        reg, reg, mips_gp_register);
9282           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
9283                        reg, BFD_RELOC_MIPS_GOT_LO16, reg);
9284           if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
9285             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9286           else if (ex.X_add_number)
9287             {
9288               ex.X_op = O_constant;
9289               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
9290                            BFD_RELOC_LO16);
9291             }
9292
9293           ep->X_add_number = ex.X_add_number;
9294           relax_switch ();
9295           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
9296                        BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
9297           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
9298                        BFD_RELOC_MIPS_GOT_OFST);
9299           relax_end ();
9300         }
9301       else
9302         {
9303           ex.X_add_number = ep->X_add_number;
9304           ep->X_add_number = 0;
9305           relax_start (ep->X_add_symbol);
9306           macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
9307           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9308                        reg, reg, mips_gp_register);
9309           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
9310                        reg, BFD_RELOC_MIPS_GOT_LO16, reg);
9311           relax_switch ();
9312           if (reg_needs_delay (mips_gp_register))
9313             {
9314               /* We need a nop before loading from $gp.  This special
9315                  check is required because the lui which starts the main
9316                  instruction stream does not refer to $gp, and so will not
9317                  insert the nop which may be required.  */
9318               macro_build (NULL, "nop", "");
9319             }
9320           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
9321                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
9322           load_delay_nop ();
9323           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
9324                        BFD_RELOC_LO16);
9325           relax_end ();
9326
9327           if (ex.X_add_number != 0)
9328             {
9329               if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
9330                 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9331               ex.X_op = O_constant;
9332               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
9333                            BFD_RELOC_LO16);
9334             }
9335         }
9336     }
9337   else
9338     abort ();
9339
9340   if (!mips_opts.at && *used_at == 1)
9341     as_bad (_("macro used $at after \".set noat\""));
9342 }
9343
9344 /* Move the contents of register SOURCE into register DEST.  */
9345
9346 static void
9347 move_register (int dest, int source)
9348 {
9349   /* Prefer to use a 16-bit microMIPS instruction unless the previous
9350      instruction specifically requires a 32-bit one.  */
9351   if (mips_opts.micromips
9352       && !mips_opts.insn32
9353       && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
9354     macro_build (NULL, "move", "mp,mj", dest, source);
9355   else
9356     macro_build (NULL, "or", "d,v,t", dest, source, 0);
9357 }
9358
9359 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
9360    LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
9361    The two alternatives are:
9362
9363    Global symbol                Local sybmol
9364    -------------                ------------
9365    lw DEST,%got(SYMBOL)         lw DEST,%got(SYMBOL + OFFSET)
9366    ...                          ...
9367    addiu DEST,DEST,OFFSET       addiu DEST,DEST,%lo(SYMBOL + OFFSET)
9368
9369    load_got_offset emits the first instruction and add_got_offset
9370    emits the second for a 16-bit offset or add_got_offset_hilo emits
9371    a sequence to add a 32-bit offset using a scratch register.  */
9372
9373 static void
9374 load_got_offset (int dest, expressionS *local)
9375 {
9376   expressionS global;
9377
9378   global = *local;
9379   global.X_add_number = 0;
9380
9381   relax_start (local->X_add_symbol);
9382   macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
9383                BFD_RELOC_MIPS_GOT16, mips_gp_register);
9384   relax_switch ();
9385   macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
9386                BFD_RELOC_MIPS_GOT16, mips_gp_register);
9387   relax_end ();
9388 }
9389
9390 static void
9391 add_got_offset (int dest, expressionS *local)
9392 {
9393   expressionS global;
9394
9395   global.X_op = O_constant;
9396   global.X_op_symbol = NULL;
9397   global.X_add_symbol = NULL;
9398   global.X_add_number = local->X_add_number;
9399
9400   relax_start (local->X_add_symbol);
9401   macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
9402                dest, dest, BFD_RELOC_LO16);
9403   relax_switch ();
9404   macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
9405   relax_end ();
9406 }
9407
9408 static void
9409 add_got_offset_hilo (int dest, expressionS *local, int tmp)
9410 {
9411   expressionS global;
9412   int hold_mips_optimize;
9413
9414   global.X_op = O_constant;
9415   global.X_op_symbol = NULL;
9416   global.X_add_symbol = NULL;
9417   global.X_add_number = local->X_add_number;
9418
9419   relax_start (local->X_add_symbol);
9420   load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
9421   relax_switch ();
9422   /* Set mips_optimize around the lui instruction to avoid
9423      inserting an unnecessary nop after the lw.  */
9424   hold_mips_optimize = mips_optimize;
9425   mips_optimize = 2;
9426   macro_build_lui (&global, tmp);
9427   mips_optimize = hold_mips_optimize;
9428   macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
9429   relax_end ();
9430
9431   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
9432 }
9433
9434 /* Emit a sequence of instructions to emulate a branch likely operation.
9435    BR is an ordinary branch corresponding to one to be emulated.  BRNEG
9436    is its complementing branch with the original condition negated.
9437    CALL is set if the original branch specified the link operation.
9438    EP, FMT, SREG and TREG specify the usual macro_build() parameters.
9439
9440    Code like this is produced in the noreorder mode:
9441
9442         BRNEG   <args>, 1f
9443          nop
9444         b       <sym>
9445          delay slot (executed only if branch taken)
9446     1:
9447
9448    or, if CALL is set:
9449
9450         BRNEG   <args>, 1f
9451          nop
9452         bal     <sym>
9453          delay slot (executed only if branch taken)
9454     1:
9455
9456    In the reorder mode the delay slot would be filled with a nop anyway,
9457    so code produced is simply:
9458
9459         BR      <args>, <sym>
9460          nop
9461
9462    This function is used when producing code for the microMIPS ASE that
9463    does not implement branch likely instructions in hardware.  */
9464
9465 static void
9466 macro_build_branch_likely (const char *br, const char *brneg,
9467                            int call, expressionS *ep, const char *fmt,
9468                            unsigned int sreg, unsigned int treg)
9469 {
9470   int noreorder = mips_opts.noreorder;
9471   expressionS expr1;
9472
9473   gas_assert (mips_opts.micromips);
9474   start_noreorder ();
9475   if (noreorder)
9476     {
9477       micromips_label_expr (&expr1);
9478       macro_build (&expr1, brneg, fmt, sreg, treg);
9479       macro_build (NULL, "nop", "");
9480       macro_build (ep, call ? "bal" : "b", "p");
9481
9482       /* Set to true so that append_insn adds a label.  */
9483       emit_branch_likely_macro = TRUE;
9484     }
9485   else
9486     {
9487       macro_build (ep, br, fmt, sreg, treg);
9488       macro_build (NULL, "nop", "");
9489     }
9490   end_noreorder ();
9491 }
9492
9493 /* Emit a coprocessor branch-likely macro specified by TYPE, using CC as
9494    the condition code tested.  EP specifies the branch target.  */
9495
9496 static void
9497 macro_build_branch_ccl (int type, expressionS *ep, unsigned int cc)
9498 {
9499   const int call = 0;
9500   const char *brneg;
9501   const char *br;
9502
9503   switch (type)
9504     {
9505     case M_BC1FL:
9506       br = "bc1f";
9507       brneg = "bc1t";
9508       break;
9509     case M_BC1TL:
9510       br = "bc1t";
9511       brneg = "bc1f";
9512       break;
9513     case M_BC2FL:
9514       br = "bc2f";
9515       brneg = "bc2t";
9516       break;
9517     case M_BC2TL:
9518       br = "bc2t";
9519       brneg = "bc2f";
9520       break;
9521     default:
9522       abort ();
9523     }
9524   macro_build_branch_likely (br, brneg, call, ep, "N,p", cc, ZERO);
9525 }
9526
9527 /* Emit a two-argument branch macro specified by TYPE, using SREG as
9528    the register tested.  EP specifies the branch target.  */
9529
9530 static void
9531 macro_build_branch_rs (int type, expressionS *ep, unsigned int sreg)
9532 {
9533   const char *brneg = NULL;
9534   const char *br;
9535   int call = 0;
9536
9537   switch (type)
9538     {
9539     case M_BGEZ:
9540       br = "bgez";
9541       break;
9542     case M_BGEZL:
9543       br = mips_opts.micromips ? "bgez" : "bgezl";
9544       brneg = "bltz";
9545       break;
9546     case M_BGEZALL:
9547       gas_assert (mips_opts.micromips);
9548       br = mips_opts.insn32 ? "bgezal" : "bgezals";
9549       brneg = "bltz";
9550       call = 1;
9551       break;
9552     case M_BGTZ:
9553       br = "bgtz";
9554       break;
9555     case M_BGTZL:
9556       br = mips_opts.micromips ? "bgtz" : "bgtzl";
9557       brneg = "blez";
9558       break;
9559     case M_BLEZ:
9560       br = "blez";
9561       break;
9562     case M_BLEZL:
9563       br = mips_opts.micromips ? "blez" : "blezl";
9564       brneg = "bgtz";
9565       break;
9566     case M_BLTZ:
9567       br = "bltz";
9568       break;
9569     case M_BLTZL:
9570       br = mips_opts.micromips ? "bltz" : "bltzl";
9571       brneg = "bgez";
9572       break;
9573     case M_BLTZALL:
9574       gas_assert (mips_opts.micromips);
9575       br = mips_opts.insn32 ? "bltzal" : "bltzals";
9576       brneg = "bgez";
9577       call = 1;
9578       break;
9579     default:
9580       abort ();
9581     }
9582   if (mips_opts.micromips && brneg)
9583     macro_build_branch_likely (br, brneg, call, ep, "s,p", sreg, ZERO);
9584   else
9585     macro_build (ep, br, "s,p", sreg);
9586 }
9587
9588 /* Emit a three-argument branch macro specified by TYPE, using SREG and
9589    TREG as the registers tested.  EP specifies the branch target.  */
9590
9591 static void
9592 macro_build_branch_rsrt (int type, expressionS *ep,
9593                          unsigned int sreg, unsigned int treg)
9594 {
9595   const char *brneg = NULL;
9596   const int call = 0;
9597   const char *br;
9598
9599   switch (type)
9600     {
9601     case M_BEQ:
9602     case M_BEQ_I:
9603       br = "beq";
9604       break;
9605     case M_BEQL:
9606     case M_BEQL_I:
9607       br = mips_opts.micromips ? "beq" : "beql";
9608       brneg = "bne";
9609       break;
9610     case M_BNE:
9611     case M_BNE_I:
9612       br = "bne";
9613       break;
9614     case M_BNEL:
9615     case M_BNEL_I:
9616       br = mips_opts.micromips ? "bne" : "bnel";
9617       brneg = "beq";
9618       break;
9619     default:
9620       abort ();
9621     }
9622   if (mips_opts.micromips && brneg)
9623     macro_build_branch_likely (br, brneg, call, ep, "s,t,p", sreg, treg);
9624   else
9625     macro_build (ep, br, "s,t,p", sreg, treg);
9626 }
9627
9628 /* Return the high part that should be loaded in order to make the low
9629    part of VALUE accessible using an offset of OFFBITS bits.  */
9630
9631 static offsetT
9632 offset_high_part (offsetT value, unsigned int offbits)
9633 {
9634   offsetT bias;
9635   addressT low_mask;
9636
9637   if (offbits == 0)
9638     return value;
9639   bias = 1 << (offbits - 1);
9640   low_mask = bias * 2 - 1;
9641   return (value + bias) & ~low_mask;
9642 }
9643
9644 /* Return true if the value stored in offset_expr and offset_reloc
9645    fits into a signed offset of OFFBITS bits.  RANGE is the maximum
9646    amount that the caller wants to add without inducing overflow
9647    and ALIGN is the known alignment of the value in bytes.  */
9648
9649 static bfd_boolean
9650 small_offset_p (unsigned int range, unsigned int align, unsigned int offbits)
9651 {
9652   if (offbits == 16)
9653     {
9654       /* Accept any relocation operator if overflow isn't a concern.  */
9655       if (range < align && *offset_reloc != BFD_RELOC_UNUSED)
9656         return TRUE;
9657
9658       /* These relocations are guaranteed not to overflow in correct links.  */
9659       if (*offset_reloc == BFD_RELOC_MIPS_LITERAL
9660           || gprel16_reloc_p (*offset_reloc))
9661         return TRUE;
9662     }
9663   if (offset_expr.X_op == O_constant
9664       && offset_high_part (offset_expr.X_add_number, offbits) == 0
9665       && offset_high_part (offset_expr.X_add_number + range, offbits) == 0)
9666     return TRUE;
9667   return FALSE;
9668 }
9669
9670 /*
9671  *                      Build macros
9672  *   This routine implements the seemingly endless macro or synthesized
9673  * instructions and addressing modes in the mips assembly language. Many
9674  * of these macros are simple and are similar to each other. These could
9675  * probably be handled by some kind of table or grammar approach instead of
9676  * this verbose method. Others are not simple macros but are more like
9677  * optimizing code generation.
9678  *   One interesting optimization is when several store macros appear
9679  * consecutively that would load AT with the upper half of the same address.
9680  * The ensuing load upper instructions are ommited. This implies some kind
9681  * of global optimization. We currently only optimize within a single macro.
9682  *   For many of the load and store macros if the address is specified as a
9683  * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
9684  * first load register 'at' with zero and use it as the base register. The
9685  * mips assembler simply uses register $zero. Just one tiny optimization
9686  * we're missing.
9687  */
9688 static void
9689 macro (struct mips_cl_insn *ip, char *str)
9690 {
9691   const struct mips_operand_array *operands;
9692   unsigned int breg, i;
9693   unsigned int tempreg;
9694   int mask;
9695   int used_at = 0;
9696   expressionS label_expr;
9697   expressionS expr1;
9698   expressionS *ep;
9699   const char *s;
9700   const char *s2;
9701   const char *fmt;
9702   int likely = 0;
9703   int coproc = 0;
9704   int offbits = 16;
9705   int call = 0;
9706   int jals = 0;
9707   int dbl = 0;
9708   int imm = 0;
9709   int ust = 0;
9710   int lp = 0;
9711   bfd_boolean large_offset;
9712   int off;
9713   int hold_mips_optimize;
9714   unsigned int align;
9715   unsigned int op[MAX_OPERANDS];
9716
9717   gas_assert (! mips_opts.mips16);
9718
9719   operands = insn_operands (ip);
9720   for (i = 0; i < MAX_OPERANDS; i++)
9721     if (operands->operand[i])
9722       op[i] = insn_extract_operand (ip, operands->operand[i]);
9723     else
9724       op[i] = -1;
9725
9726   mask = ip->insn_mo->mask;
9727
9728   label_expr.X_op = O_constant;
9729   label_expr.X_op_symbol = NULL;
9730   label_expr.X_add_symbol = NULL;
9731   label_expr.X_add_number = 0;
9732
9733   expr1.X_op = O_constant;
9734   expr1.X_op_symbol = NULL;
9735   expr1.X_add_symbol = NULL;
9736   expr1.X_add_number = 1;
9737   align = 1;
9738
9739   switch (mask)
9740     {
9741     case M_DABS:
9742       dbl = 1;
9743     case M_ABS:
9744       /*    bgez    $a0,1f
9745             move    v0,$a0
9746             sub     v0,$zero,$a0
9747          1:
9748        */
9749
9750       start_noreorder ();
9751
9752       if (mips_opts.micromips)
9753         micromips_label_expr (&label_expr);
9754       else
9755         label_expr.X_add_number = 8;
9756       macro_build (&label_expr, "bgez", "s,p", op[1]);
9757       if (op[0] == op[1])
9758         macro_build (NULL, "nop", "");
9759       else
9760         move_register (op[0], op[1]);
9761       macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", op[0], 0, op[1]);
9762       if (mips_opts.micromips)
9763         micromips_add_label ();
9764
9765       end_noreorder ();
9766       break;
9767
9768     case M_ADD_I:
9769       s = "addi";
9770       s2 = "add";
9771       goto do_addi;
9772     case M_ADDU_I:
9773       s = "addiu";
9774       s2 = "addu";
9775       goto do_addi;
9776     case M_DADD_I:
9777       dbl = 1;
9778       s = "daddi";
9779       s2 = "dadd";
9780       if (!mips_opts.micromips)
9781         goto do_addi;
9782       if (imm_expr.X_add_number >= -0x200
9783           && imm_expr.X_add_number < 0x200)
9784         {
9785           macro_build (NULL, s, "t,r,.", op[0], op[1],
9786                        (int) imm_expr.X_add_number);
9787           break;
9788         }
9789       goto do_addi_i;
9790     case M_DADDU_I:
9791       dbl = 1;
9792       s = "daddiu";
9793       s2 = "daddu";
9794     do_addi:
9795       if (imm_expr.X_add_number >= -0x8000
9796           && imm_expr.X_add_number < 0x8000)
9797         {
9798           macro_build (&imm_expr, s, "t,r,j", op[0], op[1], BFD_RELOC_LO16);
9799           break;
9800         }
9801     do_addi_i:
9802       used_at = 1;
9803       load_register (AT, &imm_expr, dbl);
9804       macro_build (NULL, s2, "d,v,t", op[0], op[1], AT);
9805       break;
9806
9807     case M_AND_I:
9808       s = "andi";
9809       s2 = "and";
9810       goto do_bit;
9811     case M_OR_I:
9812       s = "ori";
9813       s2 = "or";
9814       goto do_bit;
9815     case M_NOR_I:
9816       s = "";
9817       s2 = "nor";
9818       goto do_bit;
9819     case M_XOR_I:
9820       s = "xori";
9821       s2 = "xor";
9822     do_bit:
9823       if (imm_expr.X_add_number >= 0
9824           && imm_expr.X_add_number < 0x10000)
9825         {
9826           if (mask != M_NOR_I)
9827             macro_build (&imm_expr, s, "t,r,i", op[0], op[1], BFD_RELOC_LO16);
9828           else
9829             {
9830               macro_build (&imm_expr, "ori", "t,r,i",
9831                            op[0], op[1], BFD_RELOC_LO16);
9832               macro_build (NULL, "nor", "d,v,t", op[0], op[0], 0);
9833             }
9834           break;
9835         }
9836
9837       used_at = 1;
9838       load_register (AT, &imm_expr, GPR_SIZE == 64);
9839       macro_build (NULL, s2, "d,v,t", op[0], op[1], AT);
9840       break;
9841
9842     case M_BALIGN:
9843       switch (imm_expr.X_add_number)
9844         {
9845         case 0:
9846           macro_build (NULL, "nop", "");
9847           break;
9848         case 2:
9849           macro_build (NULL, "packrl.ph", "d,s,t", op[0], op[0], op[1]);
9850           break;
9851         case 1:
9852         case 3:
9853           macro_build (NULL, "balign", "t,s,2", op[0], op[1],
9854                        (int) imm_expr.X_add_number);
9855           break;
9856         default:
9857           as_bad (_("BALIGN immediate not 0, 1, 2 or 3 (%lu)"),
9858                   (unsigned long) imm_expr.X_add_number);
9859           break;
9860         }
9861       break;
9862
9863     case M_BC1FL:
9864     case M_BC1TL:
9865     case M_BC2FL:
9866     case M_BC2TL:
9867       gas_assert (mips_opts.micromips);
9868       macro_build_branch_ccl (mask, &offset_expr,
9869                               EXTRACT_OPERAND (1, BCC, *ip));
9870       break;
9871
9872     case M_BEQ_I:
9873     case M_BEQL_I:
9874     case M_BNE_I:
9875     case M_BNEL_I:
9876       if (imm_expr.X_add_number == 0)
9877         op[1] = 0;
9878       else
9879         {
9880           op[1] = AT;
9881           used_at = 1;
9882           load_register (op[1], &imm_expr, GPR_SIZE == 64);
9883         }
9884       /* Fall through.  */
9885     case M_BEQL:
9886     case M_BNEL:
9887       macro_build_branch_rsrt (mask, &offset_expr, op[0], op[1]);
9888       break;
9889
9890     case M_BGEL:
9891       likely = 1;
9892     case M_BGE:
9893       if (op[1] == 0)
9894         macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, op[0]);
9895       else if (op[0] == 0)
9896         macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, op[1]);
9897       else
9898         {
9899           used_at = 1;
9900           macro_build (NULL, "slt", "d,v,t", AT, op[0], op[1]);
9901           macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9902                                    &offset_expr, AT, ZERO);
9903         }
9904       break;
9905
9906     case M_BGEZL:
9907     case M_BGEZALL:
9908     case M_BGTZL:
9909     case M_BLEZL:
9910     case M_BLTZL:
9911     case M_BLTZALL:
9912       macro_build_branch_rs (mask, &offset_expr, op[0]);
9913       break;
9914
9915     case M_BGTL_I:
9916       likely = 1;
9917     case M_BGT_I:
9918       /* Check for > max integer.  */
9919       if (imm_expr.X_add_number >= GPR_SMAX)
9920         {
9921         do_false:
9922           /* Result is always false.  */
9923           if (! likely)
9924             macro_build (NULL, "nop", "");
9925           else
9926             macro_build_branch_rsrt (M_BNEL, &offset_expr, ZERO, ZERO);
9927           break;
9928         }
9929       ++imm_expr.X_add_number;
9930       /* FALLTHROUGH */
9931     case M_BGE_I:
9932     case M_BGEL_I:
9933       if (mask == M_BGEL_I)
9934         likely = 1;
9935       if (imm_expr.X_add_number == 0)
9936         {
9937           macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ,
9938                                  &offset_expr, op[0]);
9939           break;
9940         }
9941       if (imm_expr.X_add_number == 1)
9942         {
9943           macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ,
9944                                  &offset_expr, op[0]);
9945           break;
9946         }
9947       if (imm_expr.X_add_number <= GPR_SMIN)
9948         {
9949         do_true:
9950           /* result is always true */
9951           as_warn (_("branch %s is always true"), ip->insn_mo->name);
9952           macro_build (&offset_expr, "b", "p");
9953           break;
9954         }
9955       used_at = 1;
9956       set_at (op[0], 0);
9957       macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9958                                &offset_expr, AT, ZERO);
9959       break;
9960
9961     case M_BGEUL:
9962       likely = 1;
9963     case M_BGEU:
9964       if (op[1] == 0)
9965         goto do_true;
9966       else if (op[0] == 0)
9967         macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9968                                  &offset_expr, ZERO, op[1]);
9969       else
9970         {
9971           used_at = 1;
9972           macro_build (NULL, "sltu", "d,v,t", AT, op[0], op[1]);
9973           macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9974                                    &offset_expr, AT, ZERO);
9975         }
9976       break;
9977
9978     case M_BGTUL_I:
9979       likely = 1;
9980     case M_BGTU_I:
9981       if (op[0] == 0
9982           || (GPR_SIZE == 32
9983               && imm_expr.X_add_number == -1))
9984         goto do_false;
9985       ++imm_expr.X_add_number;
9986       /* FALLTHROUGH */
9987     case M_BGEU_I:
9988     case M_BGEUL_I:
9989       if (mask == M_BGEUL_I)
9990         likely = 1;
9991       if (imm_expr.X_add_number == 0)
9992         goto do_true;
9993       else if (imm_expr.X_add_number == 1)
9994         macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
9995                                  &offset_expr, op[0], ZERO);
9996       else
9997         {
9998           used_at = 1;
9999           set_at (op[0], 1);
10000           macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
10001                                    &offset_expr, AT, ZERO);
10002         }
10003       break;
10004
10005     case M_BGTL:
10006       likely = 1;
10007     case M_BGT:
10008       if (op[1] == 0)
10009         macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, op[0]);
10010       else if (op[0] == 0)
10011         macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, op[1]);
10012       else
10013         {
10014           used_at = 1;
10015           macro_build (NULL, "slt", "d,v,t", AT, op[1], op[0]);
10016           macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10017                                    &offset_expr, AT, ZERO);
10018         }
10019       break;
10020
10021     case M_BGTUL:
10022       likely = 1;
10023     case M_BGTU:
10024       if (op[1] == 0)
10025         macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10026                                  &offset_expr, op[0], ZERO);
10027       else if (op[0] == 0)
10028         goto do_false;
10029       else
10030         {
10031           used_at = 1;
10032           macro_build (NULL, "sltu", "d,v,t", AT, op[1], op[0]);
10033           macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10034                                    &offset_expr, AT, ZERO);
10035         }
10036       break;
10037
10038     case M_BLEL:
10039       likely = 1;
10040     case M_BLE:
10041       if (op[1] == 0)
10042         macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, op[0]);
10043       else if (op[0] == 0)
10044         macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, op[1]);
10045       else
10046         {
10047           used_at = 1;
10048           macro_build (NULL, "slt", "d,v,t", AT, op[1], op[0]);
10049           macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
10050                                    &offset_expr, AT, ZERO);
10051         }
10052       break;
10053
10054     case M_BLEL_I:
10055       likely = 1;
10056     case M_BLE_I:
10057       if (imm_expr.X_add_number >= GPR_SMAX)
10058         goto do_true;
10059       ++imm_expr.X_add_number;
10060       /* FALLTHROUGH */
10061     case M_BLT_I:
10062     case M_BLTL_I:
10063       if (mask == M_BLTL_I)
10064         likely = 1;
10065       if (imm_expr.X_add_number == 0)
10066         macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, op[0]);
10067       else if (imm_expr.X_add_number == 1)
10068         macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, op[0]);
10069       else
10070         {
10071           used_at = 1;
10072           set_at (op[0], 0);
10073           macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10074                                    &offset_expr, AT, ZERO);
10075         }
10076       break;
10077
10078     case M_BLEUL:
10079       likely = 1;
10080     case M_BLEU:
10081       if (op[1] == 0)
10082         macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
10083                                  &offset_expr, op[0], ZERO);
10084       else if (op[0] == 0)
10085         goto do_true;
10086       else
10087         {
10088           used_at = 1;
10089           macro_build (NULL, "sltu", "d,v,t", AT, op[1], op[0]);
10090           macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
10091                                    &offset_expr, AT, ZERO);
10092         }
10093       break;
10094
10095     case M_BLEUL_I:
10096       likely = 1;
10097     case M_BLEU_I:
10098       if (op[0] == 0
10099           || (GPR_SIZE == 32
10100               && imm_expr.X_add_number == -1))
10101         goto do_true;
10102       ++imm_expr.X_add_number;
10103       /* FALLTHROUGH */
10104     case M_BLTU_I:
10105     case M_BLTUL_I:
10106       if (mask == M_BLTUL_I)
10107         likely = 1;
10108       if (imm_expr.X_add_number == 0)
10109         goto do_false;
10110       else if (imm_expr.X_add_number == 1)
10111         macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
10112                                  &offset_expr, op[0], ZERO);
10113       else
10114         {
10115           used_at = 1;
10116           set_at (op[0], 1);
10117           macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10118                                    &offset_expr, AT, ZERO);
10119         }
10120       break;
10121
10122     case M_BLTL:
10123       likely = 1;
10124     case M_BLT:
10125       if (op[1] == 0)
10126         macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, op[0]);
10127       else if (op[0] == 0)
10128         macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, op[1]);
10129       else
10130         {
10131           used_at = 1;
10132           macro_build (NULL, "slt", "d,v,t", AT, op[0], op[1]);
10133           macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10134                                    &offset_expr, AT, ZERO);
10135         }
10136       break;
10137
10138     case M_BLTUL:
10139       likely = 1;
10140     case M_BLTU:
10141       if (op[1] == 0)
10142         goto do_false;
10143       else if (op[0] == 0)
10144         macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10145                                  &offset_expr, ZERO, op[1]);
10146       else
10147         {
10148           used_at = 1;
10149           macro_build (NULL, "sltu", "d,v,t", AT, op[0], op[1]);
10150           macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10151                                    &offset_expr, AT, ZERO);
10152         }
10153       break;
10154
10155     case M_DDIV_3:
10156       dbl = 1;
10157     case M_DIV_3:
10158       s = "mflo";
10159       goto do_div3;
10160     case M_DREM_3:
10161       dbl = 1;
10162     case M_REM_3:
10163       s = "mfhi";
10164     do_div3:
10165       if (op[2] == 0)
10166         {
10167           as_warn (_("divide by zero"));
10168           if (mips_trap)
10169             macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
10170           else
10171             macro_build (NULL, "break", BRK_FMT, 7);
10172           break;
10173         }
10174
10175       start_noreorder ();
10176       if (mips_trap)
10177         {
10178           macro_build (NULL, "teq", TRAP_FMT, op[2], ZERO, 7);
10179           macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", op[1], op[2]);
10180         }
10181       else
10182         {
10183           if (mips_opts.micromips)
10184             micromips_label_expr (&label_expr);
10185           else
10186             label_expr.X_add_number = 8;
10187           macro_build (&label_expr, "bne", "s,t,p", op[2], ZERO);
10188           macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", op[1], op[2]);
10189           macro_build (NULL, "break", BRK_FMT, 7);
10190           if (mips_opts.micromips)
10191             micromips_add_label ();
10192         }
10193       expr1.X_add_number = -1;
10194       used_at = 1;
10195       load_register (AT, &expr1, dbl);
10196       if (mips_opts.micromips)
10197         micromips_label_expr (&label_expr);
10198       else
10199         label_expr.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
10200       macro_build (&label_expr, "bne", "s,t,p", op[2], AT);
10201       if (dbl)
10202         {
10203           expr1.X_add_number = 1;
10204           load_register (AT, &expr1, dbl);
10205           macro_build (NULL, "dsll32", SHFT_FMT, AT, AT, 31);
10206         }
10207       else
10208         {
10209           expr1.X_add_number = 0x80000000;
10210           macro_build (&expr1, "lui", LUI_FMT, AT, BFD_RELOC_HI16);
10211         }
10212       if (mips_trap)
10213         {
10214           macro_build (NULL, "teq", TRAP_FMT, op[1], AT, 6);
10215           /* We want to close the noreorder block as soon as possible, so
10216              that later insns are available for delay slot filling.  */
10217           end_noreorder ();
10218         }
10219       else
10220         {
10221           if (mips_opts.micromips)
10222             micromips_label_expr (&label_expr);
10223           else
10224             label_expr.X_add_number = 8;
10225           macro_build (&label_expr, "bne", "s,t,p", op[1], AT);
10226           macro_build (NULL, "nop", "");
10227
10228           /* We want to close the noreorder block as soon as possible, so
10229              that later insns are available for delay slot filling.  */
10230           end_noreorder ();
10231
10232           macro_build (NULL, "break", BRK_FMT, 6);
10233         }
10234       if (mips_opts.micromips)
10235         micromips_add_label ();
10236       macro_build (NULL, s, MFHL_FMT, op[0]);
10237       break;
10238
10239     case M_DIV_3I:
10240       s = "div";
10241       s2 = "mflo";
10242       goto do_divi;
10243     case M_DIVU_3I:
10244       s = "divu";
10245       s2 = "mflo";
10246       goto do_divi;
10247     case M_REM_3I:
10248       s = "div";
10249       s2 = "mfhi";
10250       goto do_divi;
10251     case M_REMU_3I:
10252       s = "divu";
10253       s2 = "mfhi";
10254       goto do_divi;
10255     case M_DDIV_3I:
10256       dbl = 1;
10257       s = "ddiv";
10258       s2 = "mflo";
10259       goto do_divi;
10260     case M_DDIVU_3I:
10261       dbl = 1;
10262       s = "ddivu";
10263       s2 = "mflo";
10264       goto do_divi;
10265     case M_DREM_3I:
10266       dbl = 1;
10267       s = "ddiv";
10268       s2 = "mfhi";
10269       goto do_divi;
10270     case M_DREMU_3I:
10271       dbl = 1;
10272       s = "ddivu";
10273       s2 = "mfhi";
10274     do_divi:
10275       if (imm_expr.X_add_number == 0)
10276         {
10277           as_warn (_("divide by zero"));
10278           if (mips_trap)
10279             macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
10280           else
10281             macro_build (NULL, "break", BRK_FMT, 7);
10282           break;
10283         }
10284       if (imm_expr.X_add_number == 1)
10285         {
10286           if (strcmp (s2, "mflo") == 0)
10287             move_register (op[0], op[1]);
10288           else
10289             move_register (op[0], ZERO);
10290           break;
10291         }
10292       if (imm_expr.X_add_number == -1 && s[strlen (s) - 1] != 'u')
10293         {
10294           if (strcmp (s2, "mflo") == 0)
10295             macro_build (NULL, dbl ? "dneg" : "neg", "d,w", op[0], op[1]);
10296           else
10297             move_register (op[0], ZERO);
10298           break;
10299         }
10300
10301       used_at = 1;
10302       load_register (AT, &imm_expr, dbl);
10303       macro_build (NULL, s, "z,s,t", op[1], AT);
10304       macro_build (NULL, s2, MFHL_FMT, op[0]);
10305       break;
10306
10307     case M_DIVU_3:
10308       s = "divu";
10309       s2 = "mflo";
10310       goto do_divu3;
10311     case M_REMU_3:
10312       s = "divu";
10313       s2 = "mfhi";
10314       goto do_divu3;
10315     case M_DDIVU_3:
10316       s = "ddivu";
10317       s2 = "mflo";
10318       goto do_divu3;
10319     case M_DREMU_3:
10320       s = "ddivu";
10321       s2 = "mfhi";
10322     do_divu3:
10323       start_noreorder ();
10324       if (mips_trap)
10325         {
10326           macro_build (NULL, "teq", TRAP_FMT, op[2], ZERO, 7);
10327           macro_build (NULL, s, "z,s,t", op[1], op[2]);
10328           /* We want to close the noreorder block as soon as possible, so
10329              that later insns are available for delay slot filling.  */
10330           end_noreorder ();
10331         }
10332       else
10333         {
10334           if (mips_opts.micromips)
10335             micromips_label_expr (&label_expr);
10336           else
10337             label_expr.X_add_number = 8;
10338           macro_build (&label_expr, "bne", "s,t,p", op[2], ZERO);
10339           macro_build (NULL, s, "z,s,t", op[1], op[2]);
10340
10341           /* We want to close the noreorder block as soon as possible, so
10342              that later insns are available for delay slot filling.  */
10343           end_noreorder ();
10344           macro_build (NULL, "break", BRK_FMT, 7);
10345           if (mips_opts.micromips)
10346             micromips_add_label ();
10347         }
10348       macro_build (NULL, s2, MFHL_FMT, op[0]);
10349       break;
10350
10351     case M_DLCA_AB:
10352       dbl = 1;
10353     case M_LCA_AB:
10354       call = 1;
10355       goto do_la;
10356     case M_DLA_AB:
10357       dbl = 1;
10358     case M_LA_AB:
10359     do_la:
10360       /* Load the address of a symbol into a register.  If breg is not
10361          zero, we then add a base register to it.  */
10362
10363       breg = op[2];
10364       if (dbl && GPR_SIZE == 32)
10365         as_warn (_("dla used to load 32-bit register; recommend using la "
10366                    "instead"));
10367
10368       if (!dbl && HAVE_64BIT_OBJECTS)
10369         as_warn (_("la used to load 64-bit address; recommend using dla "
10370                    "instead"));
10371
10372       if (small_offset_p (0, align, 16))
10373         {
10374           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", op[0], breg,
10375                        -1, offset_reloc[0], offset_reloc[1], offset_reloc[2]);
10376           break;
10377         }
10378
10379       if (mips_opts.at && (op[0] == breg))
10380         {
10381           tempreg = AT;
10382           used_at = 1;
10383         }
10384       else
10385         tempreg = op[0];
10386
10387       if (offset_expr.X_op != O_symbol
10388           && offset_expr.X_op != O_constant)
10389         {
10390           as_bad (_("expression too complex"));
10391           offset_expr.X_op = O_constant;
10392         }
10393
10394       if (offset_expr.X_op == O_constant)
10395         load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
10396       else if (mips_pic == NO_PIC)
10397         {
10398           /* If this is a reference to a GP relative symbol, we want
10399                addiu    $tempreg,$gp,<sym>      (BFD_RELOC_GPREL16)
10400              Otherwise we want
10401                lui      $tempreg,<sym>          (BFD_RELOC_HI16_S)
10402                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
10403              If we have a constant, we need two instructions anyhow,
10404              so we may as well always use the latter form.
10405
10406              With 64bit address space and a usable $at we want
10407                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
10408                lui      $at,<sym>               (BFD_RELOC_HI16_S)
10409                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
10410                daddiu   $at,<sym>               (BFD_RELOC_LO16)
10411                dsll32   $tempreg,0
10412                daddu    $tempreg,$tempreg,$at
10413
10414              If $at is already in use, we use a path which is suboptimal
10415              on superscalar processors.
10416                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
10417                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
10418                dsll     $tempreg,16
10419                daddiu   $tempreg,<sym>          (BFD_RELOC_HI16_S)
10420                dsll     $tempreg,16
10421                daddiu   $tempreg,<sym>          (BFD_RELOC_LO16)
10422
10423              For GP relative symbols in 64bit address space we can use
10424              the same sequence as in 32bit address space.  */
10425           if (HAVE_64BIT_SYMBOLS)
10426             {
10427               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
10428                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
10429                 {
10430                   relax_start (offset_expr.X_add_symbol);
10431                   macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10432                                tempreg, mips_gp_register, BFD_RELOC_GPREL16);
10433                   relax_switch ();
10434                 }
10435
10436               if (used_at == 0 && mips_opts.at)
10437                 {
10438                   macro_build (&offset_expr, "lui", LUI_FMT,
10439                                tempreg, BFD_RELOC_MIPS_HIGHEST);
10440                   macro_build (&offset_expr, "lui", LUI_FMT,
10441                                AT, BFD_RELOC_HI16_S);
10442                   macro_build (&offset_expr, "daddiu", "t,r,j",
10443                                tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
10444                   macro_build (&offset_expr, "daddiu", "t,r,j",
10445                                AT, AT, BFD_RELOC_LO16);
10446                   macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
10447                   macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
10448                   used_at = 1;
10449                 }
10450               else
10451                 {
10452                   macro_build (&offset_expr, "lui", LUI_FMT,
10453                                tempreg, BFD_RELOC_MIPS_HIGHEST);
10454                   macro_build (&offset_expr, "daddiu", "t,r,j",
10455                                tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
10456                   macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
10457                   macro_build (&offset_expr, "daddiu", "t,r,j",
10458                                tempreg, tempreg, BFD_RELOC_HI16_S);
10459                   macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
10460                   macro_build (&offset_expr, "daddiu", "t,r,j",
10461                                tempreg, tempreg, BFD_RELOC_LO16);
10462                 }
10463
10464               if (mips_relax.sequence)
10465                 relax_end ();
10466             }
10467           else
10468             {
10469               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
10470                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
10471                 {
10472                   relax_start (offset_expr.X_add_symbol);
10473                   macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10474                                tempreg, mips_gp_register, BFD_RELOC_GPREL16);
10475                   relax_switch ();
10476                 }
10477               if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
10478                 as_bad (_("offset too large"));
10479               macro_build_lui (&offset_expr, tempreg);
10480               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10481                            tempreg, tempreg, BFD_RELOC_LO16);
10482               if (mips_relax.sequence)
10483                 relax_end ();
10484             }
10485         }
10486       else if (!mips_big_got && !HAVE_NEWABI)
10487         {
10488           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
10489
10490           /* If this is a reference to an external symbol, and there
10491              is no constant, we want
10492                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
10493              or for lca or if tempreg is PIC_CALL_REG
10494                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_CALL16)
10495              For a local symbol, we want
10496                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
10497                nop
10498                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
10499
10500              If we have a small constant, and this is a reference to
10501              an external symbol, we want
10502                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
10503                nop
10504                addiu    $tempreg,$tempreg,<constant>
10505              For a local symbol, we want the same instruction
10506              sequence, but we output a BFD_RELOC_LO16 reloc on the
10507              addiu instruction.
10508
10509              If we have a large constant, and this is a reference to
10510              an external symbol, we want
10511                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
10512                lui      $at,<hiconstant>
10513                addiu    $at,$at,<loconstant>
10514                addu     $tempreg,$tempreg,$at
10515              For a local symbol, we want the same instruction
10516              sequence, but we output a BFD_RELOC_LO16 reloc on the
10517              addiu instruction.
10518            */
10519
10520           if (offset_expr.X_add_number == 0)
10521             {
10522               if (mips_pic == SVR4_PIC
10523                   && breg == 0
10524                   && (call || tempreg == PIC_CALL_REG))
10525                 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
10526
10527               relax_start (offset_expr.X_add_symbol);
10528               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10529                            lw_reloc_type, mips_gp_register);
10530               if (breg != 0)
10531                 {
10532                   /* We're going to put in an addu instruction using
10533                      tempreg, so we may as well insert the nop right
10534                      now.  */
10535                   load_delay_nop ();
10536                 }
10537               relax_switch ();
10538               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10539                            tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
10540               load_delay_nop ();
10541               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10542                            tempreg, tempreg, BFD_RELOC_LO16);
10543               relax_end ();
10544               /* FIXME: If breg == 0, and the next instruction uses
10545                  $tempreg, then if this variant case is used an extra
10546                  nop will be generated.  */
10547             }
10548           else if (offset_expr.X_add_number >= -0x8000
10549                    && offset_expr.X_add_number < 0x8000)
10550             {
10551               load_got_offset (tempreg, &offset_expr);
10552               load_delay_nop ();
10553               add_got_offset (tempreg, &offset_expr);
10554             }
10555           else
10556             {
10557               expr1.X_add_number = offset_expr.X_add_number;
10558               offset_expr.X_add_number =
10559                 SEXT_16BIT (offset_expr.X_add_number);
10560               load_got_offset (tempreg, &offset_expr);
10561               offset_expr.X_add_number = expr1.X_add_number;
10562               /* If we are going to add in a base register, and the
10563                  target register and the base register are the same,
10564                  then we are using AT as a temporary register.  Since
10565                  we want to load the constant into AT, we add our
10566                  current AT (from the global offset table) and the
10567                  register into the register now, and pretend we were
10568                  not using a base register.  */
10569               if (breg == op[0])
10570                 {
10571                   load_delay_nop ();
10572                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10573                                op[0], AT, breg);
10574                   breg = 0;
10575                   tempreg = op[0];
10576                 }
10577               add_got_offset_hilo (tempreg, &offset_expr, AT);
10578               used_at = 1;
10579             }
10580         }
10581       else if (!mips_big_got && HAVE_NEWABI)
10582         {
10583           int add_breg_early = 0;
10584
10585           /* If this is a reference to an external, and there is no
10586              constant, or local symbol (*), with or without a
10587              constant, we want
10588                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
10589              or for lca or if tempreg is PIC_CALL_REG
10590                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_CALL16)
10591
10592              If we have a small constant, and this is a reference to
10593              an external symbol, we want
10594                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
10595                addiu    $tempreg,$tempreg,<constant>
10596
10597              If we have a large constant, and this is a reference to
10598              an external symbol, we want
10599                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
10600                lui      $at,<hiconstant>
10601                addiu    $at,$at,<loconstant>
10602                addu     $tempreg,$tempreg,$at
10603
10604              (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
10605              local symbols, even though it introduces an additional
10606              instruction.  */
10607
10608           if (offset_expr.X_add_number)
10609             {
10610               expr1.X_add_number = offset_expr.X_add_number;
10611               offset_expr.X_add_number = 0;
10612
10613               relax_start (offset_expr.X_add_symbol);
10614               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10615                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
10616
10617               if (expr1.X_add_number >= -0x8000
10618                   && expr1.X_add_number < 0x8000)
10619                 {
10620                   macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
10621                                tempreg, tempreg, BFD_RELOC_LO16);
10622                 }
10623               else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
10624                 {
10625                   unsigned int dreg;
10626
10627                   /* If we are going to add in a base register, and the
10628                      target register and the base register are the same,
10629                      then we are using AT as a temporary register.  Since
10630                      we want to load the constant into AT, we add our
10631                      current AT (from the global offset table) and the
10632                      register into the register now, and pretend we were
10633                      not using a base register.  */
10634                   if (breg != op[0])
10635                     dreg = tempreg;
10636                   else
10637                     {
10638                       gas_assert (tempreg == AT);
10639                       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10640                                    op[0], AT, breg);
10641                       dreg = op[0];
10642                       add_breg_early = 1;
10643                     }
10644
10645                   load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
10646                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10647                                dreg, dreg, AT);
10648
10649                   used_at = 1;
10650                 }
10651               else
10652                 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
10653
10654               relax_switch ();
10655               offset_expr.X_add_number = expr1.X_add_number;
10656
10657               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10658                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
10659               if (add_breg_early)
10660                 {
10661                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10662                                op[0], tempreg, breg);
10663                   breg = 0;
10664                   tempreg = op[0];
10665                 }
10666               relax_end ();
10667             }
10668           else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
10669             {
10670               relax_start (offset_expr.X_add_symbol);
10671               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10672                            BFD_RELOC_MIPS_CALL16, mips_gp_register);
10673               relax_switch ();
10674               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10675                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
10676               relax_end ();
10677             }
10678           else
10679             {
10680               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10681                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
10682             }
10683         }
10684       else if (mips_big_got && !HAVE_NEWABI)
10685         {
10686           int gpdelay;
10687           int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
10688           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
10689           int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
10690
10691           /* This is the large GOT case.  If this is a reference to an
10692              external symbol, and there is no constant, we want
10693                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
10694                addu     $tempreg,$tempreg,$gp
10695                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10696              or for lca or if tempreg is PIC_CALL_REG
10697                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_CALL_HI16)
10698                addu     $tempreg,$tempreg,$gp
10699                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
10700              For a local symbol, we want
10701                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
10702                nop
10703                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
10704
10705              If we have a small constant, and this is a reference to
10706              an external symbol, we want
10707                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
10708                addu     $tempreg,$tempreg,$gp
10709                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10710                nop
10711                addiu    $tempreg,$tempreg,<constant>
10712              For a local symbol, we want
10713                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
10714                nop
10715                addiu    $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
10716
10717              If we have a large constant, and this is a reference to
10718              an external symbol, we want
10719                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
10720                addu     $tempreg,$tempreg,$gp
10721                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10722                lui      $at,<hiconstant>
10723                addiu    $at,$at,<loconstant>
10724                addu     $tempreg,$tempreg,$at
10725              For a local symbol, we want
10726                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
10727                lui      $at,<hiconstant>
10728                addiu    $at,$at,<loconstant>    (BFD_RELOC_LO16)
10729                addu     $tempreg,$tempreg,$at
10730           */
10731
10732           expr1.X_add_number = offset_expr.X_add_number;
10733           offset_expr.X_add_number = 0;
10734           relax_start (offset_expr.X_add_symbol);
10735           gpdelay = reg_needs_delay (mips_gp_register);
10736           if (expr1.X_add_number == 0 && breg == 0
10737               && (call || tempreg == PIC_CALL_REG))
10738             {
10739               lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
10740               lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
10741             }
10742           macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
10743           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10744                        tempreg, tempreg, mips_gp_register);
10745           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10746                        tempreg, lw_reloc_type, tempreg);
10747           if (expr1.X_add_number == 0)
10748             {
10749               if (breg != 0)
10750                 {
10751                   /* We're going to put in an addu instruction using
10752                      tempreg, so we may as well insert the nop right
10753                      now.  */
10754                   load_delay_nop ();
10755                 }
10756             }
10757           else if (expr1.X_add_number >= -0x8000
10758                    && expr1.X_add_number < 0x8000)
10759             {
10760               load_delay_nop ();
10761               macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
10762                            tempreg, tempreg, BFD_RELOC_LO16);
10763             }
10764           else
10765             {
10766               unsigned int dreg;
10767
10768               /* If we are going to add in a base register, and the
10769                  target register and the base register are the same,
10770                  then we are using AT as a temporary register.  Since
10771                  we want to load the constant into AT, we add our
10772                  current AT (from the global offset table) and the
10773                  register into the register now, and pretend we were
10774                  not using a base register.  */
10775               if (breg != op[0])
10776                 dreg = tempreg;
10777               else
10778                 {
10779                   gas_assert (tempreg == AT);
10780                   load_delay_nop ();
10781                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10782                                op[0], AT, breg);
10783                   dreg = op[0];
10784                 }
10785
10786               load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
10787               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
10788
10789               used_at = 1;
10790             }
10791           offset_expr.X_add_number = SEXT_16BIT (expr1.X_add_number);
10792           relax_switch ();
10793
10794           if (gpdelay)
10795             {
10796               /* This is needed because this instruction uses $gp, but
10797                  the first instruction on the main stream does not.  */
10798               macro_build (NULL, "nop", "");
10799             }
10800
10801           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10802                        local_reloc_type, mips_gp_register);
10803           if (expr1.X_add_number >= -0x8000
10804               && expr1.X_add_number < 0x8000)
10805             {
10806               load_delay_nop ();
10807               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10808                            tempreg, tempreg, BFD_RELOC_LO16);
10809               /* FIXME: If add_number is 0, and there was no base
10810                  register, the external symbol case ended with a load,
10811                  so if the symbol turns out to not be external, and
10812                  the next instruction uses tempreg, an unnecessary nop
10813                  will be inserted.  */
10814             }
10815           else
10816             {
10817               if (breg == op[0])
10818                 {
10819                   /* We must add in the base register now, as in the
10820                      external symbol case.  */
10821                   gas_assert (tempreg == AT);
10822                   load_delay_nop ();
10823                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10824                                op[0], AT, breg);
10825                   tempreg = op[0];
10826                   /* We set breg to 0 because we have arranged to add
10827                      it in in both cases.  */
10828                   breg = 0;
10829                 }
10830
10831               macro_build_lui (&expr1, AT);
10832               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10833                            AT, AT, BFD_RELOC_LO16);
10834               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10835                            tempreg, tempreg, AT);
10836               used_at = 1;
10837             }
10838           relax_end ();
10839         }
10840       else if (mips_big_got && HAVE_NEWABI)
10841         {
10842           int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
10843           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
10844           int add_breg_early = 0;
10845
10846           /* This is the large GOT case.  If this is a reference to an
10847              external symbol, and there is no constant, we want
10848                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
10849                add      $tempreg,$tempreg,$gp
10850                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10851              or for lca or if tempreg is PIC_CALL_REG
10852                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_CALL_HI16)
10853                add      $tempreg,$tempreg,$gp
10854                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
10855
10856              If we have a small constant, and this is a reference to
10857              an external symbol, we want
10858                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
10859                add      $tempreg,$tempreg,$gp
10860                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10861                addi     $tempreg,$tempreg,<constant>
10862
10863              If we have a large constant, and this is a reference to
10864              an external symbol, we want
10865                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
10866                addu     $tempreg,$tempreg,$gp
10867                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10868                lui      $at,<hiconstant>
10869                addi     $at,$at,<loconstant>
10870                add      $tempreg,$tempreg,$at
10871
10872              If we have NewABI, and we know it's a local symbol, we want
10873                lw       $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT_PAGE)
10874                addiu    $reg,$reg,<sym>         (BFD_RELOC_MIPS_GOT_OFST)
10875              otherwise we have to resort to GOT_HI16/GOT_LO16.  */
10876
10877           relax_start (offset_expr.X_add_symbol);
10878
10879           expr1.X_add_number = offset_expr.X_add_number;
10880           offset_expr.X_add_number = 0;
10881
10882           if (expr1.X_add_number == 0 && breg == 0
10883               && (call || tempreg == PIC_CALL_REG))
10884             {
10885               lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
10886               lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
10887             }
10888           macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
10889           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10890                        tempreg, tempreg, mips_gp_register);
10891           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10892                        tempreg, lw_reloc_type, tempreg);
10893
10894           if (expr1.X_add_number == 0)
10895             ;
10896           else if (expr1.X_add_number >= -0x8000
10897                    && expr1.X_add_number < 0x8000)
10898             {
10899               macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
10900                            tempreg, tempreg, BFD_RELOC_LO16);
10901             }
10902           else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
10903             {
10904               unsigned int dreg;
10905
10906               /* If we are going to add in a base register, and the
10907                  target register and the base register are the same,
10908                  then we are using AT as a temporary register.  Since
10909                  we want to load the constant into AT, we add our
10910                  current AT (from the global offset table) and the
10911                  register into the register now, and pretend we were
10912                  not using a base register.  */
10913               if (breg != op[0])
10914                 dreg = tempreg;
10915               else
10916                 {
10917                   gas_assert (tempreg == AT);
10918                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10919                                op[0], AT, breg);
10920                   dreg = op[0];
10921                   add_breg_early = 1;
10922                 }
10923
10924               load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
10925               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
10926
10927               used_at = 1;
10928             }
10929           else
10930             as_bad (_("PIC code offset overflow (max 32 signed bits)"));
10931
10932           relax_switch ();
10933           offset_expr.X_add_number = expr1.X_add_number;
10934           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10935                        BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
10936           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
10937                        tempreg, BFD_RELOC_MIPS_GOT_OFST);
10938           if (add_breg_early)
10939             {
10940               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10941                            op[0], tempreg, breg);
10942               breg = 0;
10943               tempreg = op[0];
10944             }
10945           relax_end ();
10946         }
10947       else
10948         abort ();
10949
10950       if (breg != 0)
10951         macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", op[0], tempreg, breg);
10952       break;
10953
10954     case M_MSGSND:
10955       gas_assert (!mips_opts.micromips);
10956       macro_build (NULL, "c2", "C", (op[0] << 16) | 0x01);
10957       break;
10958
10959     case M_MSGLD:
10960       gas_assert (!mips_opts.micromips);
10961       macro_build (NULL, "c2", "C", 0x02);
10962       break;
10963
10964     case M_MSGLD_T:
10965       gas_assert (!mips_opts.micromips);
10966       macro_build (NULL, "c2", "C", (op[0] << 16) | 0x02);
10967       break;
10968
10969     case M_MSGWAIT:
10970       gas_assert (!mips_opts.micromips);
10971       macro_build (NULL, "c2", "C", 3);
10972       break;
10973
10974     case M_MSGWAIT_T:
10975       gas_assert (!mips_opts.micromips);
10976       macro_build (NULL, "c2", "C", (op[0] << 16) | 0x03);
10977       break;
10978
10979     case M_J_A:
10980       /* The j instruction may not be used in PIC code, since it
10981          requires an absolute address.  We convert it to a b
10982          instruction.  */
10983       if (mips_pic == NO_PIC)
10984         macro_build (&offset_expr, "j", "a");
10985       else
10986         macro_build (&offset_expr, "b", "p");
10987       break;
10988
10989       /* The jal instructions must be handled as macros because when
10990          generating PIC code they expand to multi-instruction
10991          sequences.  Normally they are simple instructions.  */
10992     case M_JALS_1:
10993       op[1] = op[0];
10994       op[0] = RA;
10995       /* Fall through.  */
10996     case M_JALS_2:
10997       gas_assert (mips_opts.micromips);
10998       if (mips_opts.insn32)
10999         {
11000           as_bad (_("opcode not supported in the `insn32' mode `%s'"), str);
11001           break;
11002         }
11003       jals = 1;
11004       goto jal;
11005     case M_JAL_1:
11006       op[1] = op[0];
11007       op[0] = RA;
11008       /* Fall through.  */
11009     case M_JAL_2:
11010     jal:
11011       if (mips_pic == NO_PIC)
11012         {
11013           s = jals ? "jalrs" : "jalr";
11014           if (mips_opts.micromips
11015               && !mips_opts.insn32
11016               && op[0] == RA
11017               && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
11018             macro_build (NULL, s, "mj", op[1]);
11019           else
11020             macro_build (NULL, s, JALR_FMT, op[0], op[1]);
11021         }
11022       else
11023         {
11024           int cprestore = (mips_pic == SVR4_PIC && !HAVE_NEWABI
11025                            && mips_cprestore_offset >= 0);
11026
11027           if (op[1] != PIC_CALL_REG)
11028             as_warn (_("MIPS PIC call to register other than $25"));
11029
11030           s = ((mips_opts.micromips
11031                 && !mips_opts.insn32
11032                 && (!mips_opts.noreorder || cprestore))
11033                ? "jalrs" : "jalr");
11034           if (mips_opts.micromips
11035               && !mips_opts.insn32
11036               && op[0] == RA
11037               && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
11038             macro_build (NULL, s, "mj", op[1]);
11039           else
11040             macro_build (NULL, s, JALR_FMT, op[0], op[1]);
11041           if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
11042             {
11043               if (mips_cprestore_offset < 0)
11044                 as_warn (_("no .cprestore pseudo-op used in PIC code"));
11045               else
11046                 {
11047                   if (!mips_frame_reg_valid)
11048                     {
11049                       as_warn (_("no .frame pseudo-op used in PIC code"));
11050                       /* Quiet this warning.  */
11051                       mips_frame_reg_valid = 1;
11052                     }
11053                   if (!mips_cprestore_valid)
11054                     {
11055                       as_warn (_("no .cprestore pseudo-op used in PIC code"));
11056                       /* Quiet this warning.  */
11057                       mips_cprestore_valid = 1;
11058                     }
11059                   if (mips_opts.noreorder)
11060                     macro_build (NULL, "nop", "");
11061                   expr1.X_add_number = mips_cprestore_offset;
11062                   macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
11063                                                 mips_gp_register,
11064                                                 mips_frame_reg,
11065                                                 HAVE_64BIT_ADDRESSES);
11066                 }
11067             }
11068         }
11069
11070       break;
11071
11072     case M_JALS_A:
11073       gas_assert (mips_opts.micromips);
11074       if (mips_opts.insn32)
11075         {
11076           as_bad (_("opcode not supported in the `insn32' mode `%s'"), str);
11077           break;
11078         }
11079       jals = 1;
11080       /* Fall through.  */
11081     case M_JAL_A:
11082       if (mips_pic == NO_PIC)
11083         macro_build (&offset_expr, jals ? "jals" : "jal", "a");
11084       else if (mips_pic == SVR4_PIC)
11085         {
11086           /* If this is a reference to an external symbol, and we are
11087              using a small GOT, we want
11088                lw       $25,<sym>($gp)          (BFD_RELOC_MIPS_CALL16)
11089                nop
11090                jalr     $ra,$25
11091                nop
11092                lw       $gp,cprestore($sp)
11093              The cprestore value is set using the .cprestore
11094              pseudo-op.  If we are using a big GOT, we want
11095                lui      $25,<sym>               (BFD_RELOC_MIPS_CALL_HI16)
11096                addu     $25,$25,$gp
11097                lw       $25,<sym>($25)          (BFD_RELOC_MIPS_CALL_LO16)
11098                nop
11099                jalr     $ra,$25
11100                nop
11101                lw       $gp,cprestore($sp)
11102              If the symbol is not external, we want
11103                lw       $25,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
11104                nop
11105                addiu    $25,$25,<sym>           (BFD_RELOC_LO16)
11106                jalr     $ra,$25
11107                nop
11108                lw $gp,cprestore($sp)
11109
11110              For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
11111              sequences above, minus nops, unless the symbol is local,
11112              which enables us to use GOT_PAGE/GOT_OFST (big got) or
11113              GOT_DISP.  */
11114           if (HAVE_NEWABI)
11115             {
11116               if (!mips_big_got)
11117                 {
11118                   relax_start (offset_expr.X_add_symbol);
11119                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11120                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
11121                                mips_gp_register);
11122                   relax_switch ();
11123                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11124                                PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
11125                                mips_gp_register);
11126                   relax_end ();
11127                 }
11128               else
11129                 {
11130                   relax_start (offset_expr.X_add_symbol);
11131                   macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
11132                                BFD_RELOC_MIPS_CALL_HI16);
11133                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
11134                                PIC_CALL_REG, mips_gp_register);
11135                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11136                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
11137                                PIC_CALL_REG);
11138                   relax_switch ();
11139                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11140                                PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
11141                                mips_gp_register);
11142                   macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
11143                                PIC_CALL_REG, PIC_CALL_REG,
11144                                BFD_RELOC_MIPS_GOT_OFST);
11145                   relax_end ();
11146                 }
11147
11148               macro_build_jalr (&offset_expr, 0);
11149             }
11150           else
11151             {
11152               relax_start (offset_expr.X_add_symbol);
11153               if (!mips_big_got)
11154                 {
11155                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11156                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
11157                                mips_gp_register);
11158                   load_delay_nop ();
11159                   relax_switch ();
11160                 }
11161               else
11162                 {
11163                   int gpdelay;
11164
11165                   gpdelay = reg_needs_delay (mips_gp_register);
11166                   macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
11167                                BFD_RELOC_MIPS_CALL_HI16);
11168                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
11169                                PIC_CALL_REG, mips_gp_register);
11170                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11171                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
11172                                PIC_CALL_REG);
11173                   load_delay_nop ();
11174                   relax_switch ();
11175                   if (gpdelay)
11176                     macro_build (NULL, "nop", "");
11177                 }
11178               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11179                            PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
11180                            mips_gp_register);
11181               load_delay_nop ();
11182               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
11183                            PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
11184               relax_end ();
11185               macro_build_jalr (&offset_expr, mips_cprestore_offset >= 0);
11186
11187               if (mips_cprestore_offset < 0)
11188                 as_warn (_("no .cprestore pseudo-op used in PIC code"));
11189               else
11190                 {
11191                   if (!mips_frame_reg_valid)
11192                     {
11193                       as_warn (_("no .frame pseudo-op used in PIC code"));
11194                       /* Quiet this warning.  */
11195                       mips_frame_reg_valid = 1;
11196                     }
11197                   if (!mips_cprestore_valid)
11198                     {
11199                       as_warn (_("no .cprestore pseudo-op used in PIC code"));
11200                       /* Quiet this warning.  */
11201                       mips_cprestore_valid = 1;
11202                     }
11203                   if (mips_opts.noreorder)
11204                     macro_build (NULL, "nop", "");
11205                   expr1.X_add_number = mips_cprestore_offset;
11206                   macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
11207                                                 mips_gp_register,
11208                                                 mips_frame_reg,
11209                                                 HAVE_64BIT_ADDRESSES);
11210                 }
11211             }
11212         }
11213       else if (mips_pic == VXWORKS_PIC)
11214         as_bad (_("non-PIC jump used in PIC library"));
11215       else
11216         abort ();
11217
11218       break;
11219
11220     case M_LBUE_AB:
11221       s = "lbue";
11222       fmt = "t,+j(b)";
11223       offbits = 9;
11224       goto ld_st;
11225     case M_LHUE_AB:
11226       s = "lhue";
11227       fmt = "t,+j(b)";
11228       offbits = 9;
11229       goto ld_st;
11230     case M_LBE_AB:
11231       s = "lbe";
11232       fmt = "t,+j(b)";
11233       offbits = 9;
11234       goto ld_st;
11235     case M_LHE_AB:
11236       s = "lhe";
11237       fmt = "t,+j(b)";
11238       offbits = 9;
11239       goto ld_st;
11240     case M_LLE_AB:
11241       s = "lle";
11242       fmt = "t,+j(b)";
11243       offbits = 9;
11244       goto ld_st;
11245     case M_LWE_AB:
11246       s = "lwe";
11247       fmt = "t,+j(b)";
11248       offbits = 9;
11249       goto ld_st;
11250     case M_LWLE_AB:
11251       s = "lwle";
11252       fmt = "t,+j(b)";
11253       offbits = 9;
11254       goto ld_st;
11255     case M_LWRE_AB:
11256       s = "lwre";
11257       fmt = "t,+j(b)";
11258       offbits = 9;
11259       goto ld_st;
11260     case M_SBE_AB:
11261       s = "sbe";
11262       fmt = "t,+j(b)";
11263       offbits = 9;
11264       goto ld_st;
11265     case M_SCE_AB:
11266       s = "sce";
11267       fmt = "t,+j(b)";
11268       offbits = 9;
11269       goto ld_st;
11270     case M_SHE_AB:
11271       s = "she";
11272       fmt = "t,+j(b)";
11273       offbits = 9;
11274       goto ld_st;
11275     case M_SWE_AB:
11276       s = "swe";
11277       fmt = "t,+j(b)";
11278       offbits = 9;
11279       goto ld_st;
11280     case M_SWLE_AB:
11281       s = "swle";
11282       fmt = "t,+j(b)";
11283       offbits = 9;
11284       goto ld_st;
11285     case M_SWRE_AB:
11286       s = "swre";
11287       fmt = "t,+j(b)";
11288       offbits = 9;
11289       goto ld_st;
11290     case M_ACLR_AB:
11291       s = "aclr";
11292       fmt = "\\,~(b)";
11293       offbits = 12;
11294       goto ld_st;
11295     case M_ASET_AB:
11296       s = "aset";
11297       fmt = "\\,~(b)";
11298       offbits = 12;
11299       goto ld_st;
11300     case M_LB_AB:
11301       s = "lb";
11302       fmt = "t,o(b)";
11303       goto ld;
11304     case M_LBU_AB:
11305       s = "lbu";
11306       fmt = "t,o(b)";
11307       goto ld;
11308     case M_LH_AB:
11309       s = "lh";
11310       fmt = "t,o(b)";
11311       goto ld;
11312     case M_LHU_AB:
11313       s = "lhu";
11314       fmt = "t,o(b)";
11315       goto ld;
11316     case M_LW_AB:
11317       s = "lw";
11318       fmt = "t,o(b)";
11319       goto ld;
11320     case M_LWC0_AB:
11321       gas_assert (!mips_opts.micromips);
11322       s = "lwc0";
11323       fmt = "E,o(b)";
11324       /* Itbl support may require additional care here.  */
11325       coproc = 1;
11326       goto ld_st;
11327     case M_LWC1_AB:
11328       s = "lwc1";
11329       fmt = "T,o(b)";
11330       /* Itbl support may require additional care here.  */
11331       coproc = 1;
11332       goto ld_st;
11333     case M_LWC2_AB:
11334       s = "lwc2";
11335       fmt = COP12_FMT;
11336       offbits = (mips_opts.micromips ? 12
11337                  : ISA_IS_R6 (mips_opts.isa) ? 11
11338                  : 16);
11339       /* Itbl support may require additional care here.  */
11340       coproc = 1;
11341       goto ld_st;
11342     case M_LWC3_AB:
11343       gas_assert (!mips_opts.micromips);
11344       s = "lwc3";
11345       fmt = "E,o(b)";
11346       /* Itbl support may require additional care here.  */
11347       coproc = 1;
11348       goto ld_st;
11349     case M_LWL_AB:
11350       s = "lwl";
11351       fmt = MEM12_FMT;
11352       offbits = (mips_opts.micromips ? 12 : 16);
11353       goto ld_st;
11354     case M_LWR_AB:
11355       s = "lwr";
11356       fmt = MEM12_FMT;
11357       offbits = (mips_opts.micromips ? 12 : 16);
11358       goto ld_st;
11359     case M_LDC1_AB:
11360       s = "ldc1";
11361       fmt = "T,o(b)";
11362       /* Itbl support may require additional care here.  */
11363       coproc = 1;
11364       goto ld_st;
11365     case M_LDC2_AB:
11366       s = "ldc2";
11367       fmt = COP12_FMT;
11368       offbits = (mips_opts.micromips ? 12
11369                  : ISA_IS_R6 (mips_opts.isa) ? 11
11370                  : 16);
11371       /* Itbl support may require additional care here.  */
11372       coproc = 1;
11373       goto ld_st;
11374     case M_LQC2_AB:
11375       s = "lqc2";
11376       fmt = "+7,o(b)";
11377       /* Itbl support may require additional care here.  */
11378       coproc = 1;
11379       goto ld_st;
11380     case M_LDC3_AB:
11381       s = "ldc3";
11382       fmt = "E,o(b)";
11383       /* Itbl support may require additional care here.  */
11384       coproc = 1;
11385       goto ld_st;
11386     case M_LDL_AB:
11387       s = "ldl";
11388       fmt = MEM12_FMT;
11389       offbits = (mips_opts.micromips ? 12 : 16);
11390       goto ld_st;
11391     case M_LDR_AB:
11392       s = "ldr";
11393       fmt = MEM12_FMT;
11394       offbits = (mips_opts.micromips ? 12 : 16);
11395       goto ld_st;
11396     case M_LL_AB:
11397       s = "ll";
11398       fmt = LL_SC_FMT;
11399       offbits = (mips_opts.micromips ? 12
11400                  : ISA_IS_R6 (mips_opts.isa) ? 9
11401                  : 16);
11402       goto ld;
11403     case M_LLD_AB:
11404       s = "lld";
11405       fmt = LL_SC_FMT;
11406       offbits = (mips_opts.micromips ? 12
11407                  : ISA_IS_R6 (mips_opts.isa) ? 9
11408                  : 16);
11409       goto ld;
11410     case M_LWU_AB:
11411       s = "lwu";
11412       fmt = MEM12_FMT;
11413       offbits = (mips_opts.micromips ? 12 : 16);
11414       goto ld;
11415     case M_LWP_AB:
11416       gas_assert (mips_opts.micromips);
11417       s = "lwp";
11418       fmt = "t,~(b)";
11419       offbits = 12;
11420       lp = 1;
11421       goto ld;
11422     case M_LDP_AB:
11423       gas_assert (mips_opts.micromips);
11424       s = "ldp";
11425       fmt = "t,~(b)";
11426       offbits = 12;
11427       lp = 1;
11428       goto ld;
11429     case M_LWM_AB:
11430       gas_assert (mips_opts.micromips);
11431       s = "lwm";
11432       fmt = "n,~(b)";
11433       offbits = 12;
11434       goto ld_st;
11435     case M_LDM_AB:
11436       gas_assert (mips_opts.micromips);
11437       s = "ldm";
11438       fmt = "n,~(b)";
11439       offbits = 12;
11440       goto ld_st;
11441
11442     ld:
11443       /* We don't want to use $0 as tempreg.  */
11444       if (op[2] == op[0] + lp || op[0] + lp == ZERO)
11445         goto ld_st;
11446       else
11447         tempreg = op[0] + lp;
11448       goto ld_noat;
11449
11450     case M_SB_AB:
11451       s = "sb";
11452       fmt = "t,o(b)";
11453       goto ld_st;
11454     case M_SH_AB:
11455       s = "sh";
11456       fmt = "t,o(b)";
11457       goto ld_st;
11458     case M_SW_AB:
11459       s = "sw";
11460       fmt = "t,o(b)";
11461       goto ld_st;
11462     case M_SWC0_AB:
11463       gas_assert (!mips_opts.micromips);
11464       s = "swc0";
11465       fmt = "E,o(b)";
11466       /* Itbl support may require additional care here.  */
11467       coproc = 1;
11468       goto ld_st;
11469     case M_SWC1_AB:
11470       s = "swc1";
11471       fmt = "T,o(b)";
11472       /* Itbl support may require additional care here.  */
11473       coproc = 1;
11474       goto ld_st;
11475     case M_SWC2_AB:
11476       s = "swc2";
11477       fmt = COP12_FMT;
11478       offbits = (mips_opts.micromips ? 12
11479                  : ISA_IS_R6 (mips_opts.isa) ? 11
11480                  : 16);
11481       /* Itbl support may require additional care here.  */
11482       coproc = 1;
11483       goto ld_st;
11484     case M_SWC3_AB:
11485       gas_assert (!mips_opts.micromips);
11486       s = "swc3";
11487       fmt = "E,o(b)";
11488       /* Itbl support may require additional care here.  */
11489       coproc = 1;
11490       goto ld_st;
11491     case M_SWL_AB:
11492       s = "swl";
11493       fmt = MEM12_FMT;
11494       offbits = (mips_opts.micromips ? 12 : 16);
11495       goto ld_st;
11496     case M_SWR_AB:
11497       s = "swr";
11498       fmt = MEM12_FMT;
11499       offbits = (mips_opts.micromips ? 12 : 16);
11500       goto ld_st;
11501     case M_SC_AB:
11502       s = "sc";
11503       fmt = LL_SC_FMT;
11504       offbits = (mips_opts.micromips ? 12
11505                  : ISA_IS_R6 (mips_opts.isa) ? 9
11506                  : 16);
11507       goto ld_st;
11508     case M_SCD_AB:
11509       s = "scd";
11510       fmt = LL_SC_FMT;
11511       offbits = (mips_opts.micromips ? 12
11512                  : ISA_IS_R6 (mips_opts.isa) ? 9
11513                  : 16);
11514       goto ld_st;
11515     case M_CACHE_AB:
11516       s = "cache";
11517       fmt = (mips_opts.micromips ? "k,~(b)"
11518              : ISA_IS_R6 (mips_opts.isa) ? "k,+j(b)"
11519              : "k,o(b)");
11520       offbits = (mips_opts.micromips ? 12
11521                  : ISA_IS_R6 (mips_opts.isa) ? 9
11522                  : 16);
11523       goto ld_st;
11524     case M_CACHEE_AB:
11525       s = "cachee";
11526       fmt = "k,+j(b)";
11527       offbits = 9;
11528       goto ld_st;
11529     case M_PREF_AB:
11530       s = "pref";
11531       fmt = (mips_opts.micromips ? "k,~(b)"
11532              : ISA_IS_R6 (mips_opts.isa) ? "k,+j(b)"
11533              : "k,o(b)");
11534       offbits = (mips_opts.micromips ? 12
11535                  : ISA_IS_R6 (mips_opts.isa) ? 9
11536                  : 16);
11537       goto ld_st;
11538     case M_PREFE_AB:
11539       s = "prefe";
11540       fmt = "k,+j(b)";
11541       offbits = 9;
11542       goto ld_st;
11543     case M_SDC1_AB:
11544       s = "sdc1";
11545       fmt = "T,o(b)";
11546       coproc = 1;
11547       /* Itbl support may require additional care here.  */
11548       goto ld_st;
11549     case M_SDC2_AB:
11550       s = "sdc2";
11551       fmt = COP12_FMT;
11552       offbits = (mips_opts.micromips ? 12
11553                  : ISA_IS_R6 (mips_opts.isa) ? 11
11554                  : 16);
11555       /* Itbl support may require additional care here.  */
11556       coproc = 1;
11557       goto ld_st;
11558     case M_SQC2_AB:
11559       s = "sqc2";
11560       fmt = "+7,o(b)";
11561       /* Itbl support may require additional care here.  */
11562       coproc = 1;
11563       goto ld_st;
11564     case M_SDC3_AB:
11565       gas_assert (!mips_opts.micromips);
11566       s = "sdc3";
11567       fmt = "E,o(b)";
11568       /* Itbl support may require additional care here.  */
11569       coproc = 1;
11570       goto ld_st;
11571     case M_SDL_AB:
11572       s = "sdl";
11573       fmt = MEM12_FMT;
11574       offbits = (mips_opts.micromips ? 12 : 16);
11575       goto ld_st;
11576     case M_SDR_AB:
11577       s = "sdr";
11578       fmt = MEM12_FMT;
11579       offbits = (mips_opts.micromips ? 12 : 16);
11580       goto ld_st;
11581     case M_SWP_AB:
11582       gas_assert (mips_opts.micromips);
11583       s = "swp";
11584       fmt = "t,~(b)";
11585       offbits = 12;
11586       goto ld_st;
11587     case M_SDP_AB:
11588       gas_assert (mips_opts.micromips);
11589       s = "sdp";
11590       fmt = "t,~(b)";
11591       offbits = 12;
11592       goto ld_st;
11593     case M_SWM_AB:
11594       gas_assert (mips_opts.micromips);
11595       s = "swm";
11596       fmt = "n,~(b)";
11597       offbits = 12;
11598       goto ld_st;
11599     case M_SDM_AB:
11600       gas_assert (mips_opts.micromips);
11601       s = "sdm";
11602       fmt = "n,~(b)";
11603       offbits = 12;
11604
11605     ld_st:
11606       tempreg = AT;
11607     ld_noat:
11608       breg = op[2];
11609       if (small_offset_p (0, align, 16))
11610         {
11611           /* The first case exists for M_LD_AB and M_SD_AB, which are
11612              macros for o32 but which should act like normal instructions
11613              otherwise.  */
11614           if (offbits == 16)
11615             macro_build (&offset_expr, s, fmt, op[0], -1, offset_reloc[0],
11616                          offset_reloc[1], offset_reloc[2], breg);
11617           else if (small_offset_p (0, align, offbits))
11618             {
11619               if (offbits == 0)
11620                 macro_build (NULL, s, fmt, op[0], breg);
11621               else
11622                 macro_build (NULL, s, fmt, op[0],
11623                              (int) offset_expr.X_add_number, breg);
11624             }
11625           else
11626             {
11627               if (tempreg == AT)
11628                 used_at = 1;
11629               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
11630                            tempreg, breg, -1, offset_reloc[0],
11631                            offset_reloc[1], offset_reloc[2]);
11632               if (offbits == 0)
11633                 macro_build (NULL, s, fmt, op[0], tempreg);
11634               else
11635                 macro_build (NULL, s, fmt, op[0], 0, tempreg);
11636             }
11637           break;
11638         }
11639
11640       if (tempreg == AT)
11641         used_at = 1;
11642
11643       if (offset_expr.X_op != O_constant
11644           && offset_expr.X_op != O_symbol)
11645         {
11646           as_bad (_("expression too complex"));
11647           offset_expr.X_op = O_constant;
11648         }
11649
11650       if (HAVE_32BIT_ADDRESSES
11651           && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
11652         {
11653           char value [32];
11654
11655           sprintf_vma (value, offset_expr.X_add_number);
11656           as_bad (_("number (0x%s) larger than 32 bits"), value);
11657         }
11658
11659       /* A constant expression in PIC code can be handled just as it
11660          is in non PIC code.  */
11661       if (offset_expr.X_op == O_constant)
11662         {
11663           expr1.X_add_number = offset_high_part (offset_expr.X_add_number,
11664                                                  offbits == 0 ? 16 : offbits);
11665           offset_expr.X_add_number -= expr1.X_add_number;
11666
11667           load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
11668           if (breg != 0)
11669             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11670                          tempreg, tempreg, breg);
11671           if (offbits == 0)
11672             {
11673               if (offset_expr.X_add_number != 0)
11674                 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
11675                              "t,r,j", tempreg, tempreg, BFD_RELOC_LO16);
11676               macro_build (NULL, s, fmt, op[0], tempreg);
11677             }
11678           else if (offbits == 16)
11679             macro_build (&offset_expr, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
11680           else
11681             macro_build (NULL, s, fmt, op[0],
11682                          (int) offset_expr.X_add_number, tempreg);
11683         }
11684       else if (offbits != 16)
11685         {
11686           /* The offset field is too narrow to be used for a low-part
11687              relocation, so load the whole address into the auxillary
11688              register.  */
11689           load_address (tempreg, &offset_expr, &used_at);
11690           if (breg != 0)
11691             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11692                          tempreg, tempreg, breg);
11693           if (offbits == 0)
11694             macro_build (NULL, s, fmt, op[0], tempreg);
11695           else
11696             macro_build (NULL, s, fmt, op[0], 0, tempreg);
11697         }
11698       else if (mips_pic == NO_PIC)
11699         {
11700           /* If this is a reference to a GP relative symbol, and there
11701              is no base register, we want
11702                <op>     op[0],<sym>($gp)        (BFD_RELOC_GPREL16)
11703              Otherwise, if there is no base register, we want
11704                lui      $tempreg,<sym>          (BFD_RELOC_HI16_S)
11705                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_LO16)
11706              If we have a constant, we need two instructions anyhow,
11707              so we always use the latter form.
11708
11709              If we have a base register, and this is a reference to a
11710              GP relative symbol, we want
11711                addu     $tempreg,$breg,$gp
11712                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_GPREL16)
11713              Otherwise we want
11714                lui      $tempreg,<sym>          (BFD_RELOC_HI16_S)
11715                addu     $tempreg,$tempreg,$breg
11716                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_LO16)
11717              With a constant we always use the latter case.
11718
11719              With 64bit address space and no base register and $at usable,
11720              we want
11721                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
11722                lui      $at,<sym>               (BFD_RELOC_HI16_S)
11723                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
11724                dsll32   $tempreg,0
11725                daddu    $tempreg,$at
11726                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_LO16)
11727              If we have a base register, we want
11728                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
11729                lui      $at,<sym>               (BFD_RELOC_HI16_S)
11730                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
11731                daddu    $at,$breg
11732                dsll32   $tempreg,0
11733                daddu    $tempreg,$at
11734                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_LO16)
11735
11736              Without $at we can't generate the optimal path for superscalar
11737              processors here since this would require two temporary registers.
11738                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
11739                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
11740                dsll     $tempreg,16
11741                daddiu   $tempreg,<sym>          (BFD_RELOC_HI16_S)
11742                dsll     $tempreg,16
11743                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_LO16)
11744              If we have a base register, we want
11745                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
11746                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
11747                dsll     $tempreg,16
11748                daddiu   $tempreg,<sym>          (BFD_RELOC_HI16_S)
11749                dsll     $tempreg,16
11750                daddu    $tempreg,$tempreg,$breg
11751                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_LO16)
11752
11753              For GP relative symbols in 64bit address space we can use
11754              the same sequence as in 32bit address space.  */
11755           if (HAVE_64BIT_SYMBOLS)
11756             {
11757               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
11758                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
11759                 {
11760                   relax_start (offset_expr.X_add_symbol);
11761                   if (breg == 0)
11762                     {
11763                       macro_build (&offset_expr, s, fmt, op[0],
11764                                    BFD_RELOC_GPREL16, mips_gp_register);
11765                     }
11766                   else
11767                     {
11768                       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11769                                    tempreg, breg, mips_gp_register);
11770                       macro_build (&offset_expr, s, fmt, op[0],
11771                                    BFD_RELOC_GPREL16, tempreg);
11772                     }
11773                   relax_switch ();
11774                 }
11775
11776               if (used_at == 0 && mips_opts.at)
11777                 {
11778                   macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
11779                                BFD_RELOC_MIPS_HIGHEST);
11780                   macro_build (&offset_expr, "lui", LUI_FMT, AT,
11781                                BFD_RELOC_HI16_S);
11782                   macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
11783                                tempreg, BFD_RELOC_MIPS_HIGHER);
11784                   if (breg != 0)
11785                     macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
11786                   macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
11787                   macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
11788                   macro_build (&offset_expr, s, fmt, op[0], BFD_RELOC_LO16,
11789                                tempreg);
11790                   used_at = 1;
11791                 }
11792               else
11793                 {
11794                   macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
11795                                BFD_RELOC_MIPS_HIGHEST);
11796                   macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
11797                                tempreg, BFD_RELOC_MIPS_HIGHER);
11798                   macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
11799                   macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
11800                                tempreg, BFD_RELOC_HI16_S);
11801                   macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
11802                   if (breg != 0)
11803                     macro_build (NULL, "daddu", "d,v,t",
11804                                  tempreg, tempreg, breg);
11805                   macro_build (&offset_expr, s, fmt, op[0],
11806                                BFD_RELOC_LO16, tempreg);
11807                 }
11808
11809               if (mips_relax.sequence)
11810                 relax_end ();
11811               break;
11812             }
11813
11814           if (breg == 0)
11815             {
11816               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
11817                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
11818                 {
11819                   relax_start (offset_expr.X_add_symbol);
11820                   macro_build (&offset_expr, s, fmt, op[0], BFD_RELOC_GPREL16,
11821                                mips_gp_register);
11822                   relax_switch ();
11823                 }
11824               macro_build_lui (&offset_expr, tempreg);
11825               macro_build (&offset_expr, s, fmt, op[0],
11826                            BFD_RELOC_LO16, tempreg);
11827               if (mips_relax.sequence)
11828                 relax_end ();
11829             }
11830           else
11831             {
11832               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
11833                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
11834                 {
11835                   relax_start (offset_expr.X_add_symbol);
11836                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11837                                tempreg, breg, mips_gp_register);
11838                   macro_build (&offset_expr, s, fmt, op[0],
11839                                BFD_RELOC_GPREL16, tempreg);
11840                   relax_switch ();
11841                 }
11842               macro_build_lui (&offset_expr, tempreg);
11843               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11844                            tempreg, tempreg, breg);
11845               macro_build (&offset_expr, s, fmt, op[0],
11846                            BFD_RELOC_LO16, tempreg);
11847               if (mips_relax.sequence)
11848                 relax_end ();
11849             }
11850         }
11851       else if (!mips_big_got)
11852         {
11853           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
11854
11855           /* If this is a reference to an external symbol, we want
11856                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
11857                nop
11858                <op>     op[0],0($tempreg)
11859              Otherwise we want
11860                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
11861                nop
11862                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
11863                <op>     op[0],0($tempreg)
11864
11865              For NewABI, we want
11866                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_PAGE)
11867                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_MIPS_GOT_OFST)
11868
11869              If there is a base register, we add it to $tempreg before
11870              the <op>.  If there is a constant, we stick it in the
11871              <op> instruction.  We don't handle constants larger than
11872              16 bits, because we have no way to load the upper 16 bits
11873              (actually, we could handle them for the subset of cases
11874              in which we are not using $at).  */
11875           gas_assert (offset_expr.X_op == O_symbol);
11876           if (HAVE_NEWABI)
11877             {
11878               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11879                            BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
11880               if (breg != 0)
11881                 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11882                              tempreg, tempreg, breg);
11883               macro_build (&offset_expr, s, fmt, op[0],
11884                            BFD_RELOC_MIPS_GOT_OFST, tempreg);
11885               break;
11886             }
11887           expr1.X_add_number = offset_expr.X_add_number;
11888           offset_expr.X_add_number = 0;
11889           if (expr1.X_add_number < -0x8000
11890               || expr1.X_add_number >= 0x8000)
11891             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
11892           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11893                        lw_reloc_type, mips_gp_register);
11894           load_delay_nop ();
11895           relax_start (offset_expr.X_add_symbol);
11896           relax_switch ();
11897           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
11898                        tempreg, BFD_RELOC_LO16);
11899           relax_end ();
11900           if (breg != 0)
11901             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11902                          tempreg, tempreg, breg);
11903           macro_build (&expr1, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
11904         }
11905       else if (mips_big_got && !HAVE_NEWABI)
11906         {
11907           int gpdelay;
11908
11909           /* If this is a reference to an external symbol, we want
11910                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
11911                addu     $tempreg,$tempreg,$gp
11912                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
11913                <op>     op[0],0($tempreg)
11914              Otherwise we want
11915                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
11916                nop
11917                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
11918                <op>     op[0],0($tempreg)
11919              If there is a base register, we add it to $tempreg before
11920              the <op>.  If there is a constant, we stick it in the
11921              <op> instruction.  We don't handle constants larger than
11922              16 bits, because we have no way to load the upper 16 bits
11923              (actually, we could handle them for the subset of cases
11924              in which we are not using $at).  */
11925           gas_assert (offset_expr.X_op == O_symbol);
11926           expr1.X_add_number = offset_expr.X_add_number;
11927           offset_expr.X_add_number = 0;
11928           if (expr1.X_add_number < -0x8000
11929               || expr1.X_add_number >= 0x8000)
11930             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
11931           gpdelay = reg_needs_delay (mips_gp_register);
11932           relax_start (offset_expr.X_add_symbol);
11933           macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
11934                        BFD_RELOC_MIPS_GOT_HI16);
11935           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
11936                        mips_gp_register);
11937           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11938                        BFD_RELOC_MIPS_GOT_LO16, tempreg);
11939           relax_switch ();
11940           if (gpdelay)
11941             macro_build (NULL, "nop", "");
11942           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11943                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
11944           load_delay_nop ();
11945           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
11946                        tempreg, BFD_RELOC_LO16);
11947           relax_end ();
11948
11949           if (breg != 0)
11950             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11951                          tempreg, tempreg, breg);
11952           macro_build (&expr1, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
11953         }
11954       else if (mips_big_got && HAVE_NEWABI)
11955         {
11956           /* If this is a reference to an external symbol, we want
11957                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
11958                add      $tempreg,$tempreg,$gp
11959                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
11960                <op>     op[0],<ofst>($tempreg)
11961              Otherwise, for local symbols, we want:
11962                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_PAGE)
11963                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_MIPS_GOT_OFST)  */
11964           gas_assert (offset_expr.X_op == O_symbol);
11965           expr1.X_add_number = offset_expr.X_add_number;
11966           offset_expr.X_add_number = 0;
11967           if (expr1.X_add_number < -0x8000
11968               || expr1.X_add_number >= 0x8000)
11969             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
11970           relax_start (offset_expr.X_add_symbol);
11971           macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
11972                        BFD_RELOC_MIPS_GOT_HI16);
11973           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
11974                        mips_gp_register);
11975           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11976                        BFD_RELOC_MIPS_GOT_LO16, tempreg);
11977           if (breg != 0)
11978             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11979                          tempreg, tempreg, breg);
11980           macro_build (&expr1, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
11981
11982           relax_switch ();
11983           offset_expr.X_add_number = expr1.X_add_number;
11984           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11985                        BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
11986           if (breg != 0)
11987             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11988                          tempreg, tempreg, breg);
11989           macro_build (&offset_expr, s, fmt, op[0],
11990                        BFD_RELOC_MIPS_GOT_OFST, tempreg);
11991           relax_end ();
11992         }
11993       else
11994         abort ();
11995
11996       break;
11997
11998     case M_JRADDIUSP:
11999       gas_assert (mips_opts.micromips);
12000       gas_assert (mips_opts.insn32);
12001       start_noreorder ();
12002       macro_build (NULL, "jr", "s", RA);
12003       expr1.X_add_number = op[0] << 2;
12004       macro_build (&expr1, "addiu", "t,r,j", SP, SP, BFD_RELOC_LO16);
12005       end_noreorder ();
12006       break;
12007
12008     case M_JRC:
12009       gas_assert (mips_opts.micromips);
12010       gas_assert (mips_opts.insn32);
12011       macro_build (NULL, "jr", "s", op[0]);
12012       if (mips_opts.noreorder)
12013         macro_build (NULL, "nop", "");
12014       break;
12015
12016     case M_LI:
12017     case M_LI_S:
12018       load_register (op[0], &imm_expr, 0);
12019       break;
12020
12021     case M_DLI:
12022       load_register (op[0], &imm_expr, 1);
12023       break;
12024
12025     case M_LI_SS:
12026       if (imm_expr.X_op == O_constant)
12027         {
12028           used_at = 1;
12029           load_register (AT, &imm_expr, 0);
12030           macro_build (NULL, "mtc1", "t,G", AT, op[0]);
12031           break;
12032         }
12033       else
12034         {
12035           gas_assert (imm_expr.X_op == O_absent
12036                       && offset_expr.X_op == O_symbol
12037                       && strcmp (segment_name (S_GET_SEGMENT
12038                                                (offset_expr.X_add_symbol)),
12039                                  ".lit4") == 0
12040                       && offset_expr.X_add_number == 0);
12041           macro_build (&offset_expr, "lwc1", "T,o(b)", op[0],
12042                        BFD_RELOC_MIPS_LITERAL, mips_gp_register);
12043           break;
12044         }
12045
12046     case M_LI_D:
12047       /* Check if we have a constant in IMM_EXPR.  If the GPRs are 64 bits
12048          wide, IMM_EXPR is the entire value.  Otherwise IMM_EXPR is the high
12049          order 32 bits of the value and the low order 32 bits are either
12050          zero or in OFFSET_EXPR.  */
12051       if (imm_expr.X_op == O_constant)
12052         {
12053           if (GPR_SIZE == 64)
12054             load_register (op[0], &imm_expr, 1);
12055           else
12056             {
12057               int hreg, lreg;
12058
12059               if (target_big_endian)
12060                 {
12061                   hreg = op[0];
12062                   lreg = op[0] + 1;
12063                 }
12064               else
12065                 {
12066                   hreg = op[0] + 1;
12067                   lreg = op[0];
12068                 }
12069
12070               if (hreg <= 31)
12071                 load_register (hreg, &imm_expr, 0);
12072               if (lreg <= 31)
12073                 {
12074                   if (offset_expr.X_op == O_absent)
12075                     move_register (lreg, 0);
12076                   else
12077                     {
12078                       gas_assert (offset_expr.X_op == O_constant);
12079                       load_register (lreg, &offset_expr, 0);
12080                     }
12081                 }
12082             }
12083           break;
12084         }
12085       gas_assert (imm_expr.X_op == O_absent);
12086
12087       /* We know that sym is in the .rdata section.  First we get the
12088          upper 16 bits of the address.  */
12089       if (mips_pic == NO_PIC)
12090         {
12091           macro_build_lui (&offset_expr, AT);
12092           used_at = 1;
12093         }
12094       else
12095         {
12096           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
12097                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
12098           used_at = 1;
12099         }
12100
12101       /* Now we load the register(s).  */
12102       if (GPR_SIZE == 64)
12103         {
12104           used_at = 1;
12105           macro_build (&offset_expr, "ld", "t,o(b)", op[0],
12106                        BFD_RELOC_LO16, AT);
12107         }
12108       else
12109         {
12110           used_at = 1;
12111           macro_build (&offset_expr, "lw", "t,o(b)", op[0],
12112                        BFD_RELOC_LO16, AT);
12113           if (op[0] != RA)
12114             {
12115               /* FIXME: How in the world do we deal with the possible
12116                  overflow here?  */
12117               offset_expr.X_add_number += 4;
12118               macro_build (&offset_expr, "lw", "t,o(b)",
12119                            op[0] + 1, BFD_RELOC_LO16, AT);
12120             }
12121         }
12122       break;
12123
12124     case M_LI_DD:
12125       /* Check if we have a constant in IMM_EXPR.  If the FPRs are 64 bits
12126          wide, IMM_EXPR is the entire value and the GPRs are known to be 64
12127          bits wide as well.  Otherwise IMM_EXPR is the high order 32 bits of
12128          the value and the low order 32 bits are either zero or in
12129          OFFSET_EXPR.  */
12130       if (imm_expr.X_op == O_constant)
12131         {
12132           used_at = 1;
12133           load_register (AT, &imm_expr, FPR_SIZE == 64);
12134           if (FPR_SIZE == 64 && GPR_SIZE == 64)
12135             macro_build (NULL, "dmtc1", "t,S", AT, op[0]);
12136           else
12137             {
12138               if (ISA_HAS_MXHC1 (mips_opts.isa))
12139                 macro_build (NULL, "mthc1", "t,G", AT, op[0]);
12140               else if (FPR_SIZE != 32)
12141                 as_bad (_("Unable to generate `%s' compliant code "
12142                           "without mthc1"),
12143                         (FPR_SIZE == 64) ? "fp64" : "fpxx");
12144               else
12145                 macro_build (NULL, "mtc1", "t,G", AT, op[0] + 1);
12146               if (offset_expr.X_op == O_absent)
12147                 macro_build (NULL, "mtc1", "t,G", 0, op[0]);
12148               else
12149                 {
12150                   gas_assert (offset_expr.X_op == O_constant);
12151                   load_register (AT, &offset_expr, 0);
12152                   macro_build (NULL, "mtc1", "t,G", AT, op[0]);
12153                 }
12154             }
12155           break;
12156         }
12157
12158       gas_assert (imm_expr.X_op == O_absent
12159                   && offset_expr.X_op == O_symbol
12160                   && offset_expr.X_add_number == 0);
12161       s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
12162       if (strcmp (s, ".lit8") == 0)
12163         {
12164           op[2] = mips_gp_register;
12165           offset_reloc[0] = BFD_RELOC_MIPS_LITERAL;
12166           offset_reloc[1] = BFD_RELOC_UNUSED;
12167           offset_reloc[2] = BFD_RELOC_UNUSED;
12168         }
12169       else
12170         {
12171           gas_assert (strcmp (s, RDATA_SECTION_NAME) == 0);
12172           used_at = 1;
12173           if (mips_pic != NO_PIC)
12174             macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
12175                          BFD_RELOC_MIPS_GOT16, mips_gp_register);
12176           else
12177             {
12178               /* FIXME: This won't work for a 64 bit address.  */
12179               macro_build_lui (&offset_expr, AT);
12180             }
12181
12182           op[2] = AT;
12183           offset_reloc[0] = BFD_RELOC_LO16;
12184           offset_reloc[1] = BFD_RELOC_UNUSED;
12185           offset_reloc[2] = BFD_RELOC_UNUSED;
12186         }
12187       align = 8;
12188       /* Fall through */
12189
12190     case M_L_DAB:
12191       /*
12192        * The MIPS assembler seems to check for X_add_number not
12193        * being double aligned and generating:
12194        *        lui     at,%hi(foo+1)
12195        *        addu    at,at,v1
12196        *        addiu   at,at,%lo(foo+1)
12197        *        lwc1    f2,0(at)
12198        *        lwc1    f3,4(at)
12199        * But, the resulting address is the same after relocation so why
12200        * generate the extra instruction?
12201        */
12202       /* Itbl support may require additional care here.  */
12203       coproc = 1;
12204       fmt = "T,o(b)";
12205       if (CPU_HAS_LDC1_SDC1 (mips_opts.arch))
12206         {
12207           s = "ldc1";
12208           goto ld_st;
12209         }
12210       s = "lwc1";
12211       goto ldd_std;
12212
12213     case M_S_DAB:
12214       gas_assert (!mips_opts.micromips);
12215       /* Itbl support may require additional care here.  */
12216       coproc = 1;
12217       fmt = "T,o(b)";
12218       if (CPU_HAS_LDC1_SDC1 (mips_opts.arch))
12219         {
12220           s = "sdc1";
12221           goto ld_st;
12222         }
12223       s = "swc1";
12224       goto ldd_std;
12225
12226     case M_LQ_AB:
12227       fmt = "t,o(b)";
12228       s = "lq";
12229       goto ld;
12230
12231     case M_SQ_AB:
12232       fmt = "t,o(b)";
12233       s = "sq";
12234       goto ld_st;
12235
12236     case M_LD_AB:
12237       fmt = "t,o(b)";
12238       if (GPR_SIZE == 64)
12239         {
12240           s = "ld";
12241           goto ld;
12242         }
12243       s = "lw";
12244       goto ldd_std;
12245
12246     case M_SD_AB:
12247       fmt = "t,o(b)";
12248       if (GPR_SIZE == 64)
12249         {
12250           s = "sd";
12251           goto ld_st;
12252         }
12253       s = "sw";
12254
12255     ldd_std:
12256       /* Even on a big endian machine $fn comes before $fn+1.  We have
12257          to adjust when loading from memory.  We set coproc if we must
12258          load $fn+1 first.  */
12259       /* Itbl support may require additional care here.  */
12260       if (!target_big_endian)
12261         coproc = 0;
12262
12263       breg = op[2];
12264       if (small_offset_p (0, align, 16))
12265         {
12266           ep = &offset_expr;
12267           if (!small_offset_p (4, align, 16))
12268             {
12269               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", AT, breg,
12270                            -1, offset_reloc[0], offset_reloc[1],
12271                            offset_reloc[2]);
12272               expr1.X_add_number = 0;
12273               ep = &expr1;
12274               breg = AT;
12275               used_at = 1;
12276               offset_reloc[0] = BFD_RELOC_LO16;
12277               offset_reloc[1] = BFD_RELOC_UNUSED;
12278               offset_reloc[2] = BFD_RELOC_UNUSED;
12279             }
12280           if (strcmp (s, "lw") == 0 && op[0] == breg)
12281             {
12282               ep->X_add_number += 4;
12283               macro_build (ep, s, fmt, op[0] + 1, -1, offset_reloc[0],
12284                            offset_reloc[1], offset_reloc[2], breg);
12285               ep->X_add_number -= 4;
12286               macro_build (ep, s, fmt, op[0], -1, offset_reloc[0],
12287                            offset_reloc[1], offset_reloc[2], breg);
12288             }
12289           else
12290             {
12291               macro_build (ep, s, fmt, coproc ? op[0] + 1 : op[0], -1,
12292                            offset_reloc[0], offset_reloc[1], offset_reloc[2],
12293                            breg);
12294               ep->X_add_number += 4;
12295               macro_build (ep, s, fmt, coproc ? op[0] : op[0] + 1, -1,
12296                            offset_reloc[0], offset_reloc[1], offset_reloc[2],
12297                            breg);
12298             }
12299           break;
12300         }
12301
12302       if (offset_expr.X_op != O_symbol
12303           && offset_expr.X_op != O_constant)
12304         {
12305           as_bad (_("expression too complex"));
12306           offset_expr.X_op = O_constant;
12307         }
12308
12309       if (HAVE_32BIT_ADDRESSES
12310           && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
12311         {
12312           char value [32];
12313
12314           sprintf_vma (value, offset_expr.X_add_number);
12315           as_bad (_("number (0x%s) larger than 32 bits"), value);
12316         }
12317
12318       if (mips_pic == NO_PIC || offset_expr.X_op == O_constant)
12319         {
12320           /* If this is a reference to a GP relative symbol, we want
12321                <op>     op[0],<sym>($gp)        (BFD_RELOC_GPREL16)
12322                <op>     op[0]+1,<sym>+4($gp)    (BFD_RELOC_GPREL16)
12323              If we have a base register, we use this
12324                addu     $at,$breg,$gp
12325                <op>     op[0],<sym>($at)        (BFD_RELOC_GPREL16)
12326                <op>     op[0]+1,<sym>+4($at)    (BFD_RELOC_GPREL16)
12327              If this is not a GP relative symbol, we want
12328                lui      $at,<sym>               (BFD_RELOC_HI16_S)
12329                <op>     op[0],<sym>($at)        (BFD_RELOC_LO16)
12330                <op>     op[0]+1,<sym>+4($at)    (BFD_RELOC_LO16)
12331              If there is a base register, we add it to $at after the
12332              lui instruction.  If there is a constant, we always use
12333              the last case.  */
12334           if (offset_expr.X_op == O_symbol
12335               && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
12336               && !nopic_need_relax (offset_expr.X_add_symbol, 1))
12337             {
12338               relax_start (offset_expr.X_add_symbol);
12339               if (breg == 0)
12340                 {
12341                   tempreg = mips_gp_register;
12342                 }
12343               else
12344                 {
12345                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
12346                                AT, breg, mips_gp_register);
12347                   tempreg = AT;
12348                   used_at = 1;
12349                 }
12350
12351               /* Itbl support may require additional care here.  */
12352               macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
12353                            BFD_RELOC_GPREL16, tempreg);
12354               offset_expr.X_add_number += 4;
12355
12356               /* Set mips_optimize to 2 to avoid inserting an
12357                  undesired nop.  */
12358               hold_mips_optimize = mips_optimize;
12359               mips_optimize = 2;
12360               /* Itbl support may require additional care here.  */
12361               macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
12362                            BFD_RELOC_GPREL16, tempreg);
12363               mips_optimize = hold_mips_optimize;
12364
12365               relax_switch ();
12366
12367               offset_expr.X_add_number -= 4;
12368             }
12369           used_at = 1;
12370           if (offset_high_part (offset_expr.X_add_number, 16)
12371               != offset_high_part (offset_expr.X_add_number + 4, 16))
12372             {
12373               load_address (AT, &offset_expr, &used_at);
12374               offset_expr.X_op = O_constant;
12375               offset_expr.X_add_number = 0;
12376             }
12377           else
12378             macro_build_lui (&offset_expr, AT);
12379           if (breg != 0)
12380             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
12381           /* Itbl support may require additional care here.  */
12382           macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
12383                        BFD_RELOC_LO16, AT);
12384           /* FIXME: How do we handle overflow here?  */
12385           offset_expr.X_add_number += 4;
12386           /* Itbl support may require additional care here.  */
12387           macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
12388                        BFD_RELOC_LO16, AT);
12389           if (mips_relax.sequence)
12390             relax_end ();
12391         }
12392       else if (!mips_big_got)
12393         {
12394           /* If this is a reference to an external symbol, we want
12395                lw       $at,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
12396                nop
12397                <op>     op[0],0($at)
12398                <op>     op[0]+1,4($at)
12399              Otherwise we want
12400                lw       $at,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
12401                nop
12402                <op>     op[0],<sym>($at)        (BFD_RELOC_LO16)
12403                <op>     op[0]+1,<sym>+4($at)    (BFD_RELOC_LO16)
12404              If there is a base register we add it to $at before the
12405              lwc1 instructions.  If there is a constant we include it
12406              in the lwc1 instructions.  */
12407           used_at = 1;
12408           expr1.X_add_number = offset_expr.X_add_number;
12409           if (expr1.X_add_number < -0x8000
12410               || expr1.X_add_number >= 0x8000 - 4)
12411             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
12412           load_got_offset (AT, &offset_expr);
12413           load_delay_nop ();
12414           if (breg != 0)
12415             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
12416
12417           /* Set mips_optimize to 2 to avoid inserting an undesired
12418              nop.  */
12419           hold_mips_optimize = mips_optimize;
12420           mips_optimize = 2;
12421
12422           /* Itbl support may require additional care here.  */
12423           relax_start (offset_expr.X_add_symbol);
12424           macro_build (&expr1, s, fmt, coproc ? op[0] + 1 : op[0],
12425                        BFD_RELOC_LO16, AT);
12426           expr1.X_add_number += 4;
12427           macro_build (&expr1, s, fmt, coproc ? op[0] : op[0] + 1,
12428                        BFD_RELOC_LO16, AT);
12429           relax_switch ();
12430           macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
12431                        BFD_RELOC_LO16, AT);
12432           offset_expr.X_add_number += 4;
12433           macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
12434                        BFD_RELOC_LO16, AT);
12435           relax_end ();
12436
12437           mips_optimize = hold_mips_optimize;
12438         }
12439       else if (mips_big_got)
12440         {
12441           int gpdelay;
12442
12443           /* If this is a reference to an external symbol, we want
12444                lui      $at,<sym>               (BFD_RELOC_MIPS_GOT_HI16)
12445                addu     $at,$at,$gp
12446                lw       $at,<sym>($at)          (BFD_RELOC_MIPS_GOT_LO16)
12447                nop
12448                <op>     op[0],0($at)
12449                <op>     op[0]+1,4($at)
12450              Otherwise we want
12451                lw       $at,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
12452                nop
12453                <op>     op[0],<sym>($at)        (BFD_RELOC_LO16)
12454                <op>     op[0]+1,<sym>+4($at)    (BFD_RELOC_LO16)
12455              If there is a base register we add it to $at before the
12456              lwc1 instructions.  If there is a constant we include it
12457              in the lwc1 instructions.  */
12458           used_at = 1;
12459           expr1.X_add_number = offset_expr.X_add_number;
12460           offset_expr.X_add_number = 0;
12461           if (expr1.X_add_number < -0x8000
12462               || expr1.X_add_number >= 0x8000 - 4)
12463             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
12464           gpdelay = reg_needs_delay (mips_gp_register);
12465           relax_start (offset_expr.X_add_symbol);
12466           macro_build (&offset_expr, "lui", LUI_FMT,
12467                        AT, BFD_RELOC_MIPS_GOT_HI16);
12468           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
12469                        AT, AT, mips_gp_register);
12470           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
12471                        AT, BFD_RELOC_MIPS_GOT_LO16, AT);
12472           load_delay_nop ();
12473           if (breg != 0)
12474             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
12475           /* Itbl support may require additional care here.  */
12476           macro_build (&expr1, s, fmt, coproc ? op[0] + 1 : op[0],
12477                        BFD_RELOC_LO16, AT);
12478           expr1.X_add_number += 4;
12479
12480           /* Set mips_optimize to 2 to avoid inserting an undesired
12481              nop.  */
12482           hold_mips_optimize = mips_optimize;
12483           mips_optimize = 2;
12484           /* Itbl support may require additional care here.  */
12485           macro_build (&expr1, s, fmt, coproc ? op[0] : op[0] + 1,
12486                        BFD_RELOC_LO16, AT);
12487           mips_optimize = hold_mips_optimize;
12488           expr1.X_add_number -= 4;
12489
12490           relax_switch ();
12491           offset_expr.X_add_number = expr1.X_add_number;
12492           if (gpdelay)
12493             macro_build (NULL, "nop", "");
12494           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
12495                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
12496           load_delay_nop ();
12497           if (breg != 0)
12498             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
12499           /* Itbl support may require additional care here.  */
12500           macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
12501                        BFD_RELOC_LO16, AT);
12502           offset_expr.X_add_number += 4;
12503
12504           /* Set mips_optimize to 2 to avoid inserting an undesired
12505              nop.  */
12506           hold_mips_optimize = mips_optimize;
12507           mips_optimize = 2;
12508           /* Itbl support may require additional care here.  */
12509           macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
12510                        BFD_RELOC_LO16, AT);
12511           mips_optimize = hold_mips_optimize;
12512           relax_end ();
12513         }
12514       else
12515         abort ();
12516
12517       break;
12518
12519     case M_SAA_AB:
12520       s = "saa";
12521       goto saa_saad;
12522     case M_SAAD_AB:
12523       s = "saad";
12524     saa_saad:
12525       gas_assert (!mips_opts.micromips);
12526       offbits = 0;
12527       fmt = "t,(b)";
12528       goto ld_st;
12529
12530    /* New code added to support COPZ instructions.
12531       This code builds table entries out of the macros in mip_opcodes.
12532       R4000 uses interlocks to handle coproc delays.
12533       Other chips (like the R3000) require nops to be inserted for delays.
12534
12535       FIXME: Currently, we require that the user handle delays.
12536       In order to fill delay slots for non-interlocked chips,
12537       we must have a way to specify delays based on the coprocessor.
12538       Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
12539       What are the side-effects of the cop instruction?
12540       What cache support might we have and what are its effects?
12541       Both coprocessor & memory require delays. how long???
12542       What registers are read/set/modified?
12543
12544       If an itbl is provided to interpret cop instructions,
12545       this knowledge can be encoded in the itbl spec.  */
12546
12547     case M_COP0:
12548       s = "c0";
12549       goto copz;
12550     case M_COP1:
12551       s = "c1";
12552       goto copz;
12553     case M_COP2:
12554       s = "c2";
12555       goto copz;
12556     case M_COP3:
12557       s = "c3";
12558     copz:
12559       gas_assert (!mips_opts.micromips);
12560       /* For now we just do C (same as Cz).  The parameter will be
12561          stored in insn_opcode by mips_ip.  */
12562       macro_build (NULL, s, "C", (int) ip->insn_opcode);
12563       break;
12564
12565     case M_MOVE:
12566       move_register (op[0], op[1]);
12567       break;
12568
12569     case M_MOVEP:
12570       gas_assert (mips_opts.micromips);
12571       gas_assert (mips_opts.insn32);
12572       move_register (micromips_to_32_reg_h_map1[op[0]],
12573                      micromips_to_32_reg_m_map[op[1]]);
12574       move_register (micromips_to_32_reg_h_map2[op[0]],
12575                      micromips_to_32_reg_n_map[op[2]]);
12576       break;
12577
12578     case M_DMUL:
12579       dbl = 1;
12580     case M_MUL:
12581       if (mips_opts.arch == CPU_R5900)
12582         macro_build (NULL, dbl ? "dmultu" : "multu", "d,s,t", op[0], op[1],
12583                      op[2]);
12584       else
12585         {
12586           macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", op[1], op[2]);
12587           macro_build (NULL, "mflo", MFHL_FMT, op[0]);
12588         }
12589       break;
12590
12591     case M_DMUL_I:
12592       dbl = 1;
12593     case M_MUL_I:
12594       /* The MIPS assembler some times generates shifts and adds.  I'm
12595          not trying to be that fancy. GCC should do this for us
12596          anyway.  */
12597       used_at = 1;
12598       load_register (AT, &imm_expr, dbl);
12599       macro_build (NULL, dbl ? "dmult" : "mult", "s,t", op[1], AT);
12600       macro_build (NULL, "mflo", MFHL_FMT, op[0]);
12601       break;
12602
12603     case M_DMULO_I:
12604       dbl = 1;
12605     case M_MULO_I:
12606       imm = 1;
12607       goto do_mulo;
12608
12609     case M_DMULO:
12610       dbl = 1;
12611     case M_MULO:
12612     do_mulo:
12613       start_noreorder ();
12614       used_at = 1;
12615       if (imm)
12616         load_register (AT, &imm_expr, dbl);
12617       macro_build (NULL, dbl ? "dmult" : "mult", "s,t",
12618                    op[1], imm ? AT : op[2]);
12619       macro_build (NULL, "mflo", MFHL_FMT, op[0]);
12620       macro_build (NULL, dbl ? "dsra32" : "sra", SHFT_FMT, op[0], op[0], 31);
12621       macro_build (NULL, "mfhi", MFHL_FMT, AT);
12622       if (mips_trap)
12623         macro_build (NULL, "tne", TRAP_FMT, op[0], AT, 6);
12624       else
12625         {
12626           if (mips_opts.micromips)
12627             micromips_label_expr (&label_expr);
12628           else
12629             label_expr.X_add_number = 8;
12630           macro_build (&label_expr, "beq", "s,t,p", op[0], AT);
12631           macro_build (NULL, "nop", "");
12632           macro_build (NULL, "break", BRK_FMT, 6);
12633           if (mips_opts.micromips)
12634             micromips_add_label ();
12635         }
12636       end_noreorder ();
12637       macro_build (NULL, "mflo", MFHL_FMT, op[0]);
12638       break;
12639
12640     case M_DMULOU_I:
12641       dbl = 1;
12642     case M_MULOU_I:
12643       imm = 1;
12644       goto do_mulou;
12645
12646     case M_DMULOU:
12647       dbl = 1;
12648     case M_MULOU:
12649     do_mulou:
12650       start_noreorder ();
12651       used_at = 1;
12652       if (imm)
12653         load_register (AT, &imm_expr, dbl);
12654       macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
12655                    op[1], imm ? AT : op[2]);
12656       macro_build (NULL, "mfhi", MFHL_FMT, AT);
12657       macro_build (NULL, "mflo", MFHL_FMT, op[0]);
12658       if (mips_trap)
12659         macro_build (NULL, "tne", TRAP_FMT, AT, ZERO, 6);
12660       else
12661         {
12662           if (mips_opts.micromips)
12663             micromips_label_expr (&label_expr);
12664           else
12665             label_expr.X_add_number = 8;
12666           macro_build (&label_expr, "beq", "s,t,p", AT, ZERO);
12667           macro_build (NULL, "nop", "");
12668           macro_build (NULL, "break", BRK_FMT, 6);
12669           if (mips_opts.micromips)
12670             micromips_add_label ();
12671         }
12672       end_noreorder ();
12673       break;
12674
12675     case M_DROL:
12676       if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
12677         {
12678           if (op[0] == op[1])
12679             {
12680               tempreg = AT;
12681               used_at = 1;
12682             }
12683           else
12684             tempreg = op[0];
12685           macro_build (NULL, "dnegu", "d,w", tempreg, op[2]);
12686           macro_build (NULL, "drorv", "d,t,s", op[0], op[1], tempreg);
12687           break;
12688         }
12689       used_at = 1;
12690       macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, op[2]);
12691       macro_build (NULL, "dsrlv", "d,t,s", AT, op[1], AT);
12692       macro_build (NULL, "dsllv", "d,t,s", op[0], op[1], op[2]);
12693       macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12694       break;
12695
12696     case M_ROL:
12697       if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
12698         {
12699           if (op[0] == op[1])
12700             {
12701               tempreg = AT;
12702               used_at = 1;
12703             }
12704           else
12705             tempreg = op[0];
12706           macro_build (NULL, "negu", "d,w", tempreg, op[2]);
12707           macro_build (NULL, "rorv", "d,t,s", op[0], op[1], tempreg);
12708           break;
12709         }
12710       used_at = 1;
12711       macro_build (NULL, "subu", "d,v,t", AT, ZERO, op[2]);
12712       macro_build (NULL, "srlv", "d,t,s", AT, op[1], AT);
12713       macro_build (NULL, "sllv", "d,t,s", op[0], op[1], op[2]);
12714       macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12715       break;
12716
12717     case M_DROL_I:
12718       {
12719         unsigned int rot;
12720         const char *l;
12721         const char *rr;
12722
12723         rot = imm_expr.X_add_number & 0x3f;
12724         if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
12725           {
12726             rot = (64 - rot) & 0x3f;
12727             if (rot >= 32)
12728               macro_build (NULL, "dror32", SHFT_FMT, op[0], op[1], rot - 32);
12729             else
12730               macro_build (NULL, "dror", SHFT_FMT, op[0], op[1], rot);
12731             break;
12732           }
12733         if (rot == 0)
12734           {
12735             macro_build (NULL, "dsrl", SHFT_FMT, op[0], op[1], 0);
12736             break;
12737           }
12738         l = (rot < 0x20) ? "dsll" : "dsll32";
12739         rr = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
12740         rot &= 0x1f;
12741         used_at = 1;
12742         macro_build (NULL, l, SHFT_FMT, AT, op[1], rot);
12743         macro_build (NULL, rr, SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12744         macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12745       }
12746       break;
12747
12748     case M_ROL_I:
12749       {
12750         unsigned int rot;
12751
12752         rot = imm_expr.X_add_number & 0x1f;
12753         if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
12754           {
12755             macro_build (NULL, "ror", SHFT_FMT, op[0], op[1],
12756                          (32 - rot) & 0x1f);
12757             break;
12758           }
12759         if (rot == 0)
12760           {
12761             macro_build (NULL, "srl", SHFT_FMT, op[0], op[1], 0);
12762             break;
12763           }
12764         used_at = 1;
12765         macro_build (NULL, "sll", SHFT_FMT, AT, op[1], rot);
12766         macro_build (NULL, "srl", SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12767         macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12768       }
12769       break;
12770
12771     case M_DROR:
12772       if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
12773         {
12774           macro_build (NULL, "drorv", "d,t,s", op[0], op[1], op[2]);
12775           break;
12776         }
12777       used_at = 1;
12778       macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, op[2]);
12779       macro_build (NULL, "dsllv", "d,t,s", AT, op[1], AT);
12780       macro_build (NULL, "dsrlv", "d,t,s", op[0], op[1], op[2]);
12781       macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12782       break;
12783
12784     case M_ROR:
12785       if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
12786         {
12787           macro_build (NULL, "rorv", "d,t,s", op[0], op[1], op[2]);
12788           break;
12789         }
12790       used_at = 1;
12791       macro_build (NULL, "subu", "d,v,t", AT, ZERO, op[2]);
12792       macro_build (NULL, "sllv", "d,t,s", AT, op[1], AT);
12793       macro_build (NULL, "srlv", "d,t,s", op[0], op[1], op[2]);
12794       macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12795       break;
12796
12797     case M_DROR_I:
12798       {
12799         unsigned int rot;
12800         const char *l;
12801         const char *rr;
12802
12803         rot = imm_expr.X_add_number & 0x3f;
12804         if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
12805           {
12806             if (rot >= 32)
12807               macro_build (NULL, "dror32", SHFT_FMT, op[0], op[1], rot - 32);
12808             else
12809               macro_build (NULL, "dror", SHFT_FMT, op[0], op[1], rot);
12810             break;
12811           }
12812         if (rot == 0)
12813           {
12814             macro_build (NULL, "dsrl", SHFT_FMT, op[0], op[1], 0);
12815             break;
12816           }
12817         rr = (rot < 0x20) ? "dsrl" : "dsrl32";
12818         l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
12819         rot &= 0x1f;
12820         used_at = 1;
12821         macro_build (NULL, rr, SHFT_FMT, AT, op[1], rot);
12822         macro_build (NULL, l, SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12823         macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12824       }
12825       break;
12826
12827     case M_ROR_I:
12828       {
12829         unsigned int rot;
12830
12831         rot = imm_expr.X_add_number & 0x1f;
12832         if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
12833           {
12834             macro_build (NULL, "ror", SHFT_FMT, op[0], op[1], rot);
12835             break;
12836           }
12837         if (rot == 0)
12838           {
12839             macro_build (NULL, "srl", SHFT_FMT, op[0], op[1], 0);
12840             break;
12841           }
12842         used_at = 1;
12843         macro_build (NULL, "srl", SHFT_FMT, AT, op[1], rot);
12844         macro_build (NULL, "sll", SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12845         macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12846       }
12847       break;
12848
12849     case M_SEQ:
12850       if (op[1] == 0)
12851         macro_build (&expr1, "sltiu", "t,r,j", op[0], op[2], BFD_RELOC_LO16);
12852       else if (op[2] == 0)
12853         macro_build (&expr1, "sltiu", "t,r,j", op[0], op[1], BFD_RELOC_LO16);
12854       else
12855         {
12856           macro_build (NULL, "xor", "d,v,t", op[0], op[1], op[2]);
12857           macro_build (&expr1, "sltiu", "t,r,j", op[0], op[0], BFD_RELOC_LO16);
12858         }
12859       break;
12860
12861     case M_SEQ_I:
12862       if (imm_expr.X_add_number == 0)
12863         {
12864           macro_build (&expr1, "sltiu", "t,r,j", op[0], op[1], BFD_RELOC_LO16);
12865           break;
12866         }
12867       if (op[1] == 0)
12868         {
12869           as_warn (_("instruction %s: result is always false"),
12870                    ip->insn_mo->name);
12871           move_register (op[0], 0);
12872           break;
12873         }
12874       if (CPU_HAS_SEQ (mips_opts.arch)
12875           && -512 <= imm_expr.X_add_number
12876           && imm_expr.X_add_number < 512)
12877         {
12878           macro_build (NULL, "seqi", "t,r,+Q", op[0], op[1],
12879                        (int) imm_expr.X_add_number);
12880           break;
12881         }
12882       if (imm_expr.X_add_number >= 0
12883           && imm_expr.X_add_number < 0x10000)
12884         macro_build (&imm_expr, "xori", "t,r,i", op[0], op[1], BFD_RELOC_LO16);
12885       else if (imm_expr.X_add_number > -0x8000
12886                && imm_expr.X_add_number < 0)
12887         {
12888           imm_expr.X_add_number = -imm_expr.X_add_number;
12889           macro_build (&imm_expr, GPR_SIZE == 32 ? "addiu" : "daddiu",
12890                        "t,r,j", op[0], op[1], BFD_RELOC_LO16);
12891         }
12892       else if (CPU_HAS_SEQ (mips_opts.arch))
12893         {
12894           used_at = 1;
12895           load_register (AT, &imm_expr, GPR_SIZE == 64);
12896           macro_build (NULL, "seq", "d,v,t", op[0], op[1], AT);
12897           break;
12898         }
12899       else
12900         {
12901           load_register (AT, &imm_expr, GPR_SIZE == 64);
12902           macro_build (NULL, "xor", "d,v,t", op[0], op[1], AT);
12903           used_at = 1;
12904         }
12905       macro_build (&expr1, "sltiu", "t,r,j", op[0], op[0], BFD_RELOC_LO16);
12906       break;
12907
12908     case M_SGE:         /* X >= Y  <==>  not (X < Y) */
12909       s = "slt";
12910       goto sge;
12911     case M_SGEU:
12912       s = "sltu";
12913     sge:
12914       macro_build (NULL, s, "d,v,t", op[0], op[1], op[2]);
12915       macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
12916       break;
12917
12918     case M_SGE_I:       /* X >= I  <==>  not (X < I) */
12919     case M_SGEU_I:
12920       if (imm_expr.X_add_number >= -0x8000
12921           && imm_expr.X_add_number < 0x8000)
12922         macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
12923                      op[0], op[1], BFD_RELOC_LO16);
12924       else
12925         {
12926           load_register (AT, &imm_expr, GPR_SIZE == 64);
12927           macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
12928                        op[0], op[1], AT);
12929           used_at = 1;
12930         }
12931       macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
12932       break;
12933
12934     case M_SGT:         /* X > Y  <==>  Y < X */
12935       s = "slt";
12936       goto sgt;
12937     case M_SGTU:
12938       s = "sltu";
12939     sgt:
12940       macro_build (NULL, s, "d,v,t", op[0], op[2], op[1]);
12941       break;
12942
12943     case M_SGT_I:       /* X > I  <==>  I < X */
12944       s = "slt";
12945       goto sgti;
12946     case M_SGTU_I:
12947       s = "sltu";
12948     sgti:
12949       used_at = 1;
12950       load_register (AT, &imm_expr, GPR_SIZE == 64);
12951       macro_build (NULL, s, "d,v,t", op[0], AT, op[1]);
12952       break;
12953
12954     case M_SLE:         /* X <= Y  <==>  Y >= X  <==>  not (Y < X) */
12955       s = "slt";
12956       goto sle;
12957     case M_SLEU:
12958       s = "sltu";
12959     sle:
12960       macro_build (NULL, s, "d,v,t", op[0], op[2], op[1]);
12961       macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
12962       break;
12963
12964     case M_SLE_I:       /* X <= I  <==>  I >= X  <==>  not (I < X) */
12965       s = "slt";
12966       goto slei;
12967     case M_SLEU_I:
12968       s = "sltu";
12969     slei:
12970       used_at = 1;
12971       load_register (AT, &imm_expr, GPR_SIZE == 64);
12972       macro_build (NULL, s, "d,v,t", op[0], AT, op[1]);
12973       macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
12974       break;
12975
12976     case M_SLT_I:
12977       if (imm_expr.X_add_number >= -0x8000
12978           && imm_expr.X_add_number < 0x8000)
12979         {
12980           macro_build (&imm_expr, "slti", "t,r,j", op[0], op[1],
12981                        BFD_RELOC_LO16);
12982           break;
12983         }
12984       used_at = 1;
12985       load_register (AT, &imm_expr, GPR_SIZE == 64);
12986       macro_build (NULL, "slt", "d,v,t", op[0], op[1], AT);
12987       break;
12988
12989     case M_SLTU_I:
12990       if (imm_expr.X_add_number >= -0x8000
12991           && imm_expr.X_add_number < 0x8000)
12992         {
12993           macro_build (&imm_expr, "sltiu", "t,r,j", op[0], op[1],
12994                        BFD_RELOC_LO16);
12995           break;
12996         }
12997       used_at = 1;
12998       load_register (AT, &imm_expr, GPR_SIZE == 64);
12999       macro_build (NULL, "sltu", "d,v,t", op[0], op[1], AT);
13000       break;
13001
13002     case M_SNE:
13003       if (op[1] == 0)
13004         macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[2]);
13005       else if (op[2] == 0)
13006         macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[1]);
13007       else
13008         {
13009           macro_build (NULL, "xor", "d,v,t", op[0], op[1], op[2]);
13010           macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[0]);
13011         }
13012       break;
13013
13014     case M_SNE_I:
13015       if (imm_expr.X_add_number == 0)
13016         {
13017           macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[1]);
13018           break;
13019         }
13020       if (op[1] == 0)
13021         {
13022           as_warn (_("instruction %s: result is always true"),
13023                    ip->insn_mo->name);
13024           macro_build (&expr1, GPR_SIZE == 32 ? "addiu" : "daddiu", "t,r,j",
13025                        op[0], 0, BFD_RELOC_LO16);
13026           break;
13027         }
13028       if (CPU_HAS_SEQ (mips_opts.arch)
13029           && -512 <= imm_expr.X_add_number
13030           && imm_expr.X_add_number < 512)
13031         {
13032           macro_build (NULL, "snei", "t,r,+Q", op[0], op[1],
13033                        (int) imm_expr.X_add_number);
13034           break;
13035         }
13036       if (imm_expr.X_add_number >= 0
13037           && imm_expr.X_add_number < 0x10000)
13038         {
13039           macro_build (&imm_expr, "xori", "t,r,i", op[0], op[1],
13040                        BFD_RELOC_LO16);
13041         }
13042       else if (imm_expr.X_add_number > -0x8000
13043                && imm_expr.X_add_number < 0)
13044         {
13045           imm_expr.X_add_number = -imm_expr.X_add_number;
13046           macro_build (&imm_expr, GPR_SIZE == 32 ? "addiu" : "daddiu",
13047                        "t,r,j", op[0], op[1], BFD_RELOC_LO16);
13048         }
13049       else if (CPU_HAS_SEQ (mips_opts.arch))
13050         {
13051           used_at = 1;
13052           load_register (AT, &imm_expr, GPR_SIZE == 64);
13053           macro_build (NULL, "sne", "d,v,t", op[0], op[1], AT);
13054           break;
13055         }
13056       else
13057         {
13058           load_register (AT, &imm_expr, GPR_SIZE == 64);
13059           macro_build (NULL, "xor", "d,v,t", op[0], op[1], AT);
13060           used_at = 1;
13061         }
13062       macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[0]);
13063       break;
13064
13065     case M_SUB_I:
13066       s = "addi";
13067       s2 = "sub";
13068       goto do_subi;
13069     case M_SUBU_I:
13070       s = "addiu";
13071       s2 = "subu";
13072       goto do_subi;
13073     case M_DSUB_I:
13074       dbl = 1;
13075       s = "daddi";
13076       s2 = "dsub";
13077       if (!mips_opts.micromips)
13078         goto do_subi;
13079       if (imm_expr.X_add_number > -0x200
13080           && imm_expr.X_add_number <= 0x200)
13081         {
13082           macro_build (NULL, s, "t,r,.", op[0], op[1],
13083                        (int) -imm_expr.X_add_number);
13084           break;
13085         }
13086       goto do_subi_i;
13087     case M_DSUBU_I:
13088       dbl = 1;
13089       s = "daddiu";
13090       s2 = "dsubu";
13091     do_subi:
13092       if (imm_expr.X_add_number > -0x8000
13093           && imm_expr.X_add_number <= 0x8000)
13094         {
13095           imm_expr.X_add_number = -imm_expr.X_add_number;
13096           macro_build (&imm_expr, s, "t,r,j", op[0], op[1], BFD_RELOC_LO16);
13097           break;
13098         }
13099     do_subi_i:
13100       used_at = 1;
13101       load_register (AT, &imm_expr, dbl);
13102       macro_build (NULL, s2, "d,v,t", op[0], op[1], AT);
13103       break;
13104
13105     case M_TEQ_I:
13106       s = "teq";
13107       goto trap;
13108     case M_TGE_I:
13109       s = "tge";
13110       goto trap;
13111     case M_TGEU_I:
13112       s = "tgeu";
13113       goto trap;
13114     case M_TLT_I:
13115       s = "tlt";
13116       goto trap;
13117     case M_TLTU_I:
13118       s = "tltu";
13119       goto trap;
13120     case M_TNE_I:
13121       s = "tne";
13122     trap:
13123       used_at = 1;
13124       load_register (AT, &imm_expr, GPR_SIZE == 64);
13125       macro_build (NULL, s, "s,t", op[0], AT);
13126       break;
13127
13128     case M_TRUNCWS:
13129     case M_TRUNCWD:
13130       gas_assert (!mips_opts.micromips);
13131       gas_assert (mips_opts.isa == ISA_MIPS1);
13132       used_at = 1;
13133
13134       /*
13135        * Is the double cfc1 instruction a bug in the mips assembler;
13136        * or is there a reason for it?
13137        */
13138       start_noreorder ();
13139       macro_build (NULL, "cfc1", "t,G", op[2], RA);
13140       macro_build (NULL, "cfc1", "t,G", op[2], RA);
13141       macro_build (NULL, "nop", "");
13142       expr1.X_add_number = 3;
13143       macro_build (&expr1, "ori", "t,r,i", AT, op[2], BFD_RELOC_LO16);
13144       expr1.X_add_number = 2;
13145       macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
13146       macro_build (NULL, "ctc1", "t,G", AT, RA);
13147       macro_build (NULL, "nop", "");
13148       macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
13149                    op[0], op[1]);
13150       macro_build (NULL, "ctc1", "t,G", op[2], RA);
13151       macro_build (NULL, "nop", "");
13152       end_noreorder ();
13153       break;
13154
13155     case M_ULH_AB:
13156       s = "lb";
13157       s2 = "lbu";
13158       off = 1;
13159       goto uld_st;
13160     case M_ULHU_AB:
13161       s = "lbu";
13162       s2 = "lbu";
13163       off = 1;
13164       goto uld_st;
13165     case M_ULW_AB:
13166       s = "lwl";
13167       s2 = "lwr";
13168       offbits = (mips_opts.micromips ? 12 : 16);
13169       off = 3;
13170       goto uld_st;
13171     case M_ULD_AB:
13172       s = "ldl";
13173       s2 = "ldr";
13174       offbits = (mips_opts.micromips ? 12 : 16);
13175       off = 7;
13176       goto uld_st;
13177     case M_USH_AB:
13178       s = "sb";
13179       s2 = "sb";
13180       off = 1;
13181       ust = 1;
13182       goto uld_st;
13183     case M_USW_AB:
13184       s = "swl";
13185       s2 = "swr";
13186       offbits = (mips_opts.micromips ? 12 : 16);
13187       off = 3;
13188       ust = 1;
13189       goto uld_st;
13190     case M_USD_AB:
13191       s = "sdl";
13192       s2 = "sdr";
13193       offbits = (mips_opts.micromips ? 12 : 16);
13194       off = 7;
13195       ust = 1;
13196
13197     uld_st:
13198       breg = op[2];
13199       large_offset = !small_offset_p (off, align, offbits);
13200       ep = &offset_expr;
13201       expr1.X_add_number = 0;
13202       if (large_offset)
13203         {
13204           used_at = 1;
13205           tempreg = AT;
13206           if (small_offset_p (0, align, 16))
13207             macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", tempreg, breg, -1,
13208                          offset_reloc[0], offset_reloc[1], offset_reloc[2]);
13209           else
13210             {
13211               load_address (tempreg, ep, &used_at);
13212               if (breg != 0)
13213                 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
13214                              tempreg, tempreg, breg);
13215             }
13216           offset_reloc[0] = BFD_RELOC_LO16;
13217           offset_reloc[1] = BFD_RELOC_UNUSED;
13218           offset_reloc[2] = BFD_RELOC_UNUSED;
13219           breg = tempreg;
13220           tempreg = op[0];
13221           ep = &expr1;
13222         }
13223       else if (!ust && op[0] == breg)
13224         {
13225           used_at = 1;
13226           tempreg = AT;
13227         }
13228       else
13229         tempreg = op[0];
13230
13231       if (off == 1)
13232         goto ulh_sh;
13233
13234       if (!target_big_endian)
13235         ep->X_add_number += off;
13236       if (offbits == 12)
13237         macro_build (NULL, s, "t,~(b)", tempreg, (int) ep->X_add_number, breg);
13238       else
13239         macro_build (ep, s, "t,o(b)", tempreg, -1,
13240                      offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
13241
13242       if (!target_big_endian)
13243         ep->X_add_number -= off;
13244       else
13245         ep->X_add_number += off;
13246       if (offbits == 12)
13247         macro_build (NULL, s2, "t,~(b)",
13248                      tempreg, (int) ep->X_add_number, breg);
13249       else
13250         macro_build (ep, s2, "t,o(b)", tempreg, -1,
13251                      offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
13252
13253       /* If necessary, move the result in tempreg to the final destination.  */
13254       if (!ust && op[0] != tempreg)
13255         {
13256           /* Protect second load's delay slot.  */
13257           load_delay_nop ();
13258           move_register (op[0], tempreg);
13259         }
13260       break;
13261
13262     ulh_sh:
13263       used_at = 1;
13264       if (target_big_endian == ust)
13265         ep->X_add_number += off;
13266       tempreg = ust || large_offset ? op[0] : AT;
13267       macro_build (ep, s, "t,o(b)", tempreg, -1,
13268                    offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
13269
13270       /* For halfword transfers we need a temporary register to shuffle
13271          bytes.  Unfortunately for M_USH_A we have none available before
13272          the next store as AT holds the base address.  We deal with this
13273          case by clobbering TREG and then restoring it as with ULH.  */
13274       tempreg = ust == large_offset ? op[0] : AT;
13275       if (ust)
13276         macro_build (NULL, "srl", SHFT_FMT, tempreg, op[0], 8);
13277
13278       if (target_big_endian == ust)
13279         ep->X_add_number -= off;
13280       else
13281         ep->X_add_number += off;
13282       macro_build (ep, s2, "t,o(b)", tempreg, -1,
13283                    offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
13284
13285       /* For M_USH_A re-retrieve the LSB.  */
13286       if (ust && large_offset)
13287         {
13288           if (target_big_endian)
13289             ep->X_add_number += off;
13290           else
13291             ep->X_add_number -= off;
13292           macro_build (&expr1, "lbu", "t,o(b)", AT, -1,
13293                        offset_reloc[0], offset_reloc[1], offset_reloc[2], AT);
13294         }
13295       /* For ULH and M_USH_A OR the LSB in.  */
13296       if (!ust || large_offset)
13297         {
13298           tempreg = !large_offset ? AT : op[0];
13299           macro_build (NULL, "sll", SHFT_FMT, tempreg, tempreg, 8);
13300           macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
13301         }
13302       break;
13303
13304     default:
13305       /* FIXME: Check if this is one of the itbl macros, since they
13306          are added dynamically.  */
13307       as_bad (_("macro %s not implemented yet"), ip->insn_mo->name);
13308       break;
13309     }
13310   if (!mips_opts.at && used_at)
13311     as_bad (_("macro used $at after \".set noat\""));
13312 }
13313
13314 /* Implement macros in mips16 mode.  */
13315
13316 static void
13317 mips16_macro (struct mips_cl_insn *ip)
13318 {
13319   const struct mips_operand_array *operands;
13320   int mask;
13321   int tmp;
13322   expressionS expr1;
13323   int dbl;
13324   const char *s, *s2, *s3;
13325   unsigned int op[MAX_OPERANDS];
13326   unsigned int i;
13327
13328   mask = ip->insn_mo->mask;
13329
13330   operands = insn_operands (ip);
13331   for (i = 0; i < MAX_OPERANDS; i++)
13332     if (operands->operand[i])
13333       op[i] = insn_extract_operand (ip, operands->operand[i]);
13334     else
13335       op[i] = -1;
13336
13337   expr1.X_op = O_constant;
13338   expr1.X_op_symbol = NULL;
13339   expr1.X_add_symbol = NULL;
13340   expr1.X_add_number = 1;
13341
13342   dbl = 0;
13343
13344   switch (mask)
13345     {
13346     default:
13347       abort ();
13348
13349     case M_DDIV_3:
13350       dbl = 1;
13351     case M_DIV_3:
13352       s = "mflo";
13353       goto do_div3;
13354     case M_DREM_3:
13355       dbl = 1;
13356     case M_REM_3:
13357       s = "mfhi";
13358     do_div3:
13359       start_noreorder ();
13360       macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", op[1], op[2]);
13361       expr1.X_add_number = 2;
13362       macro_build (&expr1, "bnez", "x,p", op[2]);
13363       macro_build (NULL, "break", "6", 7);
13364
13365       /* FIXME: The normal code checks for of -1 / -0x80000000 here,
13366          since that causes an overflow.  We should do that as well,
13367          but I don't see how to do the comparisons without a temporary
13368          register.  */
13369       end_noreorder ();
13370       macro_build (NULL, s, "x", op[0]);
13371       break;
13372
13373     case M_DIVU_3:
13374       s = "divu";
13375       s2 = "mflo";
13376       goto do_divu3;
13377     case M_REMU_3:
13378       s = "divu";
13379       s2 = "mfhi";
13380       goto do_divu3;
13381     case M_DDIVU_3:
13382       s = "ddivu";
13383       s2 = "mflo";
13384       goto do_divu3;
13385     case M_DREMU_3:
13386       s = "ddivu";
13387       s2 = "mfhi";
13388     do_divu3:
13389       start_noreorder ();
13390       macro_build (NULL, s, "0,x,y", op[1], op[2]);
13391       expr1.X_add_number = 2;
13392       macro_build (&expr1, "bnez", "x,p", op[2]);
13393       macro_build (NULL, "break", "6", 7);
13394       end_noreorder ();
13395       macro_build (NULL, s2, "x", op[0]);
13396       break;
13397
13398     case M_DMUL:
13399       dbl = 1;
13400     case M_MUL:
13401       macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", op[1], op[2]);
13402       macro_build (NULL, "mflo", "x", op[0]);
13403       break;
13404
13405     case M_DSUBU_I:
13406       dbl = 1;
13407       goto do_subu;
13408     case M_SUBU_I:
13409     do_subu:
13410       imm_expr.X_add_number = -imm_expr.X_add_number;
13411       macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", op[0], op[1]);
13412       break;
13413
13414     case M_SUBU_I_2:
13415       imm_expr.X_add_number = -imm_expr.X_add_number;
13416       macro_build (&imm_expr, "addiu", "x,k", op[0]);
13417       break;
13418
13419     case M_DSUBU_I_2:
13420       imm_expr.X_add_number = -imm_expr.X_add_number;
13421       macro_build (&imm_expr, "daddiu", "y,j", op[0]);
13422       break;
13423
13424     case M_BEQ:
13425       s = "cmp";
13426       s2 = "bteqz";
13427       goto do_branch;
13428     case M_BNE:
13429       s = "cmp";
13430       s2 = "btnez";
13431       goto do_branch;
13432     case M_BLT:
13433       s = "slt";
13434       s2 = "btnez";
13435       goto do_branch;
13436     case M_BLTU:
13437       s = "sltu";
13438       s2 = "btnez";
13439       goto do_branch;
13440     case M_BLE:
13441       s = "slt";
13442       s2 = "bteqz";
13443       goto do_reverse_branch;
13444     case M_BLEU:
13445       s = "sltu";
13446       s2 = "bteqz";
13447       goto do_reverse_branch;
13448     case M_BGE:
13449       s = "slt";
13450       s2 = "bteqz";
13451       goto do_branch;
13452     case M_BGEU:
13453       s = "sltu";
13454       s2 = "bteqz";
13455       goto do_branch;
13456     case M_BGT:
13457       s = "slt";
13458       s2 = "btnez";
13459       goto do_reverse_branch;
13460     case M_BGTU:
13461       s = "sltu";
13462       s2 = "btnez";
13463
13464     do_reverse_branch:
13465       tmp = op[1];
13466       op[1] = op[0];
13467       op[0] = tmp;
13468
13469     do_branch:
13470       macro_build (NULL, s, "x,y", op[0], op[1]);
13471       macro_build (&offset_expr, s2, "p");
13472       break;
13473
13474     case M_BEQ_I:
13475       s = "cmpi";
13476       s2 = "bteqz";
13477       s3 = "x,U";
13478       goto do_branch_i;
13479     case M_BNE_I:
13480       s = "cmpi";
13481       s2 = "btnez";
13482       s3 = "x,U";
13483       goto do_branch_i;
13484     case M_BLT_I:
13485       s = "slti";
13486       s2 = "btnez";
13487       s3 = "x,8";
13488       goto do_branch_i;
13489     case M_BLTU_I:
13490       s = "sltiu";
13491       s2 = "btnez";
13492       s3 = "x,8";
13493       goto do_branch_i;
13494     case M_BLE_I:
13495       s = "slti";
13496       s2 = "btnez";
13497       s3 = "x,8";
13498       goto do_addone_branch_i;
13499     case M_BLEU_I:
13500       s = "sltiu";
13501       s2 = "btnez";
13502       s3 = "x,8";
13503       goto do_addone_branch_i;
13504     case M_BGE_I:
13505       s = "slti";
13506       s2 = "bteqz";
13507       s3 = "x,8";
13508       goto do_branch_i;
13509     case M_BGEU_I:
13510       s = "sltiu";
13511       s2 = "bteqz";
13512       s3 = "x,8";
13513       goto do_branch_i;
13514     case M_BGT_I:
13515       s = "slti";
13516       s2 = "bteqz";
13517       s3 = "x,8";
13518       goto do_addone_branch_i;
13519     case M_BGTU_I:
13520       s = "sltiu";
13521       s2 = "bteqz";
13522       s3 = "x,8";
13523
13524     do_addone_branch_i:
13525       ++imm_expr.X_add_number;
13526
13527     do_branch_i:
13528       macro_build (&imm_expr, s, s3, op[0]);
13529       macro_build (&offset_expr, s2, "p");
13530       break;
13531
13532     case M_ABS:
13533       expr1.X_add_number = 0;
13534       macro_build (&expr1, "slti", "x,8", op[1]);
13535       if (op[0] != op[1])
13536         macro_build (NULL, "move", "y,X", op[0], mips16_to_32_reg_map[op[1]]);
13537       expr1.X_add_number = 2;
13538       macro_build (&expr1, "bteqz", "p");
13539       macro_build (NULL, "neg", "x,w", op[0], op[0]);
13540       break;
13541     }
13542 }
13543
13544 /* Look up instruction [START, START + LENGTH) in HASH.  Record any extra
13545    opcode bits in *OPCODE_EXTRA.  */
13546
13547 static struct mips_opcode *
13548 mips_lookup_insn (struct hash_control *hash, const char *start,
13549                   ssize_t length, unsigned int *opcode_extra)
13550 {
13551   char *name, *dot, *p;
13552   unsigned int mask, suffix;
13553   ssize_t opend;
13554   struct mips_opcode *insn;
13555
13556   /* Make a copy of the instruction so that we can fiddle with it.  */
13557   name = xstrndup (start, length);
13558
13559   /* Look up the instruction as-is.  */
13560   insn = (struct mips_opcode *) hash_find (hash, name);
13561   if (insn)
13562     goto end;
13563
13564   dot = strchr (name, '.');
13565   if (dot && dot[1])
13566     {
13567       /* Try to interpret the text after the dot as a VU0 channel suffix.  */
13568       p = mips_parse_vu0_channels (dot + 1, &mask);
13569       if (*p == 0 && mask != 0)
13570         {
13571           *dot = 0;
13572           insn = (struct mips_opcode *) hash_find (hash, name);
13573           *dot = '.';
13574           if (insn && (insn->pinfo2 & INSN2_VU0_CHANNEL_SUFFIX) != 0)
13575             {
13576               *opcode_extra |= mask << mips_vu0_channel_mask.lsb;
13577               goto end;
13578             }
13579         }
13580     }
13581
13582   if (mips_opts.micromips)
13583     {
13584       /* See if there's an instruction size override suffix,
13585          either `16' or `32', at the end of the mnemonic proper,
13586          that defines the operation, i.e. before the first `.'
13587          character if any.  Strip it and retry.  */
13588       opend = dot != NULL ? dot - name : length;
13589       if (opend >= 3 && name[opend - 2] == '1' && name[opend - 1] == '6')
13590         suffix = 2;
13591       else if (name[opend - 2] == '3' && name[opend - 1] == '2')
13592         suffix = 4;
13593       else
13594         suffix = 0;
13595       if (suffix)
13596         {
13597           memcpy (name + opend - 2, name + opend, length - opend + 1);
13598           insn = (struct mips_opcode *) hash_find (hash, name);
13599           if (insn)
13600             {
13601               forced_insn_length = suffix;
13602               goto end;
13603             }
13604         }
13605     }
13606
13607   insn = NULL;
13608  end:
13609   free (name);
13610   return insn;
13611 }
13612
13613 /* Assemble an instruction into its binary format.  If the instruction
13614    is a macro, set imm_expr and offset_expr to the values associated
13615    with "I" and "A" operands respectively.  Otherwise store the value
13616    of the relocatable field (if any) in offset_expr.  In both cases
13617    set offset_reloc to the relocation operators applied to offset_expr.  */
13618
13619 static void
13620 mips_ip (char *str, struct mips_cl_insn *insn)
13621 {
13622   const struct mips_opcode *first, *past;
13623   struct hash_control *hash;
13624   char format;
13625   size_t end;
13626   struct mips_operand_token *tokens;
13627   unsigned int opcode_extra;
13628
13629   if (mips_opts.micromips)
13630     {
13631       hash = micromips_op_hash;
13632       past = &micromips_opcodes[bfd_micromips_num_opcodes];
13633     }
13634   else
13635     {
13636       hash = op_hash;
13637       past = &mips_opcodes[NUMOPCODES];
13638     }
13639   forced_insn_length = 0;
13640   opcode_extra = 0;
13641
13642   /* We first try to match an instruction up to a space or to the end.  */
13643   for (end = 0; str[end] != '\0' && !ISSPACE (str[end]); end++)
13644     continue;
13645
13646   first = mips_lookup_insn (hash, str, end, &opcode_extra);
13647   if (first == NULL)
13648     {
13649       set_insn_error (0, _("unrecognized opcode"));
13650       return;
13651     }
13652
13653   if (strcmp (first->name, "li.s") == 0)
13654     format = 'f';
13655   else if (strcmp (first->name, "li.d") == 0)
13656     format = 'd';
13657   else
13658     format = 0;
13659   tokens = mips_parse_arguments (str + end, format);
13660   if (!tokens)
13661     return;
13662
13663   if (!match_insns (insn, first, past, tokens, opcode_extra, FALSE)
13664       && !match_insns (insn, first, past, tokens, opcode_extra, TRUE))
13665     set_insn_error (0, _("invalid operands"));
13666
13667   obstack_free (&mips_operand_tokens, tokens);
13668 }
13669
13670 /* As for mips_ip, but used when assembling MIPS16 code.
13671    Also set forced_insn_length to the resulting instruction size in
13672    bytes if the user explicitly requested a small or extended instruction.  */
13673
13674 static void
13675 mips16_ip (char *str, struct mips_cl_insn *insn)
13676 {
13677   char *end, *s, c;
13678   struct mips_opcode *first;
13679   struct mips_operand_token *tokens;
13680
13681   forced_insn_length = 0;
13682
13683   for (s = str; ISLOWER (*s); ++s)
13684     ;
13685   end = s;
13686   c = *end;
13687   switch (c)
13688     {
13689     case '\0':
13690       break;
13691
13692     case ' ':
13693       s++;
13694       break;
13695
13696     case '.':
13697       if (s[1] == 't' && s[2] == ' ')
13698         {
13699           forced_insn_length = 2;
13700           s += 3;
13701           break;
13702         }
13703       else if (s[1] == 'e' && s[2] == ' ')
13704         {
13705           forced_insn_length = 4;
13706           s += 3;
13707           break;
13708         }
13709       /* Fall through.  */
13710     default:
13711       set_insn_error (0, _("unrecognized opcode"));
13712       return;
13713     }
13714
13715   if (mips_opts.noautoextend && !forced_insn_length)
13716     forced_insn_length = 2;
13717
13718   *end = 0;
13719   first = (struct mips_opcode *) hash_find (mips16_op_hash, str);
13720   *end = c;
13721
13722   if (!first)
13723     {
13724       set_insn_error (0, _("unrecognized opcode"));
13725       return;
13726     }
13727
13728   tokens = mips_parse_arguments (s, 0);
13729   if (!tokens)
13730     return;
13731
13732   if (!match_mips16_insns (insn, first, tokens))
13733     set_insn_error (0, _("invalid operands"));
13734
13735   obstack_free (&mips_operand_tokens, tokens);
13736 }
13737
13738 /* Marshal immediate value VAL for an extended MIPS16 instruction.
13739    NBITS is the number of significant bits in VAL.  */
13740
13741 static unsigned long
13742 mips16_immed_extend (offsetT val, unsigned int nbits)
13743 {
13744   int extval;
13745   if (nbits == 16)
13746     {
13747       extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
13748       val &= 0x1f;
13749     }
13750   else if (nbits == 15)
13751     {
13752       extval = ((val >> 11) & 0xf) | (val & 0x7f0);
13753       val &= 0xf;
13754     }
13755   else
13756     {
13757       extval = ((val & 0x1f) << 6) | (val & 0x20);
13758       val = 0;
13759     }
13760   return (extval << 16) | val;
13761 }
13762
13763 /* Like decode_mips16_operand, but require the operand to be defined and
13764    require it to be an integer.  */
13765
13766 static const struct mips_int_operand *
13767 mips16_immed_operand (int type, bfd_boolean extended_p)
13768 {
13769   const struct mips_operand *operand;
13770
13771   operand = decode_mips16_operand (type, extended_p);
13772   if (!operand || (operand->type != OP_INT && operand->type != OP_PCREL))
13773     abort ();
13774   return (const struct mips_int_operand *) operand;
13775 }
13776
13777 /* Return true if SVAL fits OPERAND.  RELOC is as for mips16_immed.  */
13778
13779 static bfd_boolean
13780 mips16_immed_in_range_p (const struct mips_int_operand *operand,
13781                          bfd_reloc_code_real_type reloc, offsetT sval)
13782 {
13783   int min_val, max_val;
13784
13785   min_val = mips_int_operand_min (operand);
13786   max_val = mips_int_operand_max (operand);
13787   if (reloc != BFD_RELOC_UNUSED)
13788     {
13789       if (min_val < 0)
13790         sval = SEXT_16BIT (sval);
13791       else
13792         sval &= 0xffff;
13793     }
13794
13795   return (sval >= min_val
13796           && sval <= max_val
13797           && (sval & ((1 << operand->shift) - 1)) == 0);
13798 }
13799
13800 /* Install immediate value VAL into MIPS16 instruction *INSN,
13801    extending it if necessary.  The instruction in *INSN may
13802    already be extended.
13803
13804    RELOC is the relocation that produced VAL, or BFD_RELOC_UNUSED
13805    if none.  In the former case, VAL is a 16-bit number with no
13806    defined signedness.
13807
13808    TYPE is the type of the immediate field.  USER_INSN_LENGTH
13809    is the length that the user requested, or 0 if none.  */
13810
13811 static void
13812 mips16_immed (const char *file, unsigned int line, int type,
13813               bfd_reloc_code_real_type reloc, offsetT val,
13814               unsigned int user_insn_length, unsigned long *insn)
13815 {
13816   const struct mips_int_operand *operand;
13817   unsigned int uval, length;
13818
13819   operand = mips16_immed_operand (type, FALSE);
13820   if (!mips16_immed_in_range_p (operand, reloc, val))
13821     {
13822       /* We need an extended instruction.  */
13823       if (user_insn_length == 2)
13824         as_bad_where (file, line, _("invalid unextended operand value"));
13825       else
13826         *insn |= MIPS16_EXTEND;
13827     }
13828   else if (user_insn_length == 4)
13829     {
13830       /* The operand doesn't force an unextended instruction to be extended.
13831          Warn if the user wanted an extended instruction anyway.  */
13832       *insn |= MIPS16_EXTEND;
13833       as_warn_where (file, line,
13834                      _("extended operand requested but not required"));
13835     }
13836
13837   length = mips16_opcode_length (*insn);
13838   if (length == 4)
13839     {
13840       operand = mips16_immed_operand (type, TRUE);
13841       if (!mips16_immed_in_range_p (operand, reloc, val))
13842         as_bad_where (file, line,
13843                       _("operand value out of range for instruction"));
13844     }
13845   uval = ((unsigned int) val >> operand->shift) - operand->bias;
13846   if (length == 2)
13847     *insn = mips_insert_operand (&operand->root, *insn, uval);
13848   else
13849     *insn |= mips16_immed_extend (uval, operand->root.size);
13850 }
13851 \f
13852 struct percent_op_match
13853 {
13854   const char *str;
13855   bfd_reloc_code_real_type reloc;
13856 };
13857
13858 static const struct percent_op_match mips_percent_op[] =
13859 {
13860   {"%lo", BFD_RELOC_LO16},
13861   {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
13862   {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
13863   {"%call16", BFD_RELOC_MIPS_CALL16},
13864   {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
13865   {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
13866   {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
13867   {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
13868   {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
13869   {"%got", BFD_RELOC_MIPS_GOT16},
13870   {"%gp_rel", BFD_RELOC_GPREL16},
13871   {"%half", BFD_RELOC_16},
13872   {"%highest", BFD_RELOC_MIPS_HIGHEST},
13873   {"%higher", BFD_RELOC_MIPS_HIGHER},
13874   {"%neg", BFD_RELOC_MIPS_SUB},
13875   {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
13876   {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
13877   {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
13878   {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
13879   {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
13880   {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
13881   {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
13882   {"%hi", BFD_RELOC_HI16_S},
13883   {"%pcrel_hi", BFD_RELOC_HI16_S_PCREL},
13884   {"%pcrel_lo", BFD_RELOC_LO16_PCREL}
13885 };
13886
13887 static const struct percent_op_match mips16_percent_op[] =
13888 {
13889   {"%lo", BFD_RELOC_MIPS16_LO16},
13890   {"%gprel", BFD_RELOC_MIPS16_GPREL},
13891   {"%got", BFD_RELOC_MIPS16_GOT16},
13892   {"%call16", BFD_RELOC_MIPS16_CALL16},
13893   {"%hi", BFD_RELOC_MIPS16_HI16_S},
13894   {"%tlsgd", BFD_RELOC_MIPS16_TLS_GD},
13895   {"%tlsldm", BFD_RELOC_MIPS16_TLS_LDM},
13896   {"%dtprel_hi", BFD_RELOC_MIPS16_TLS_DTPREL_HI16},
13897   {"%dtprel_lo", BFD_RELOC_MIPS16_TLS_DTPREL_LO16},
13898   {"%tprel_hi", BFD_RELOC_MIPS16_TLS_TPREL_HI16},
13899   {"%tprel_lo", BFD_RELOC_MIPS16_TLS_TPREL_LO16},
13900   {"%gottprel", BFD_RELOC_MIPS16_TLS_GOTTPREL}
13901 };
13902
13903
13904 /* Return true if *STR points to a relocation operator.  When returning true,
13905    move *STR over the operator and store its relocation code in *RELOC.
13906    Leave both *STR and *RELOC alone when returning false.  */
13907
13908 static bfd_boolean
13909 parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
13910 {
13911   const struct percent_op_match *percent_op;
13912   size_t limit, i;
13913
13914   if (mips_opts.mips16)
13915     {
13916       percent_op = mips16_percent_op;
13917       limit = ARRAY_SIZE (mips16_percent_op);
13918     }
13919   else
13920     {
13921       percent_op = mips_percent_op;
13922       limit = ARRAY_SIZE (mips_percent_op);
13923     }
13924
13925   for (i = 0; i < limit; i++)
13926     if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
13927       {
13928         int len = strlen (percent_op[i].str);
13929
13930         if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
13931           continue;
13932
13933         *str += strlen (percent_op[i].str);
13934         *reloc = percent_op[i].reloc;
13935
13936         /* Check whether the output BFD supports this relocation.
13937            If not, issue an error and fall back on something safe.  */
13938         if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
13939           {
13940             as_bad (_("relocation %s isn't supported by the current ABI"),
13941                     percent_op[i].str);
13942             *reloc = BFD_RELOC_UNUSED;
13943           }
13944         return TRUE;
13945       }
13946   return FALSE;
13947 }
13948
13949
13950 /* Parse string STR as a 16-bit relocatable operand.  Store the
13951    expression in *EP and the relocations in the array starting
13952    at RELOC.  Return the number of relocation operators used.
13953
13954    On exit, EXPR_END points to the first character after the expression.  */
13955
13956 static size_t
13957 my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
13958                        char *str)
13959 {
13960   bfd_reloc_code_real_type reversed_reloc[3];
13961   size_t reloc_index, i;
13962   int crux_depth, str_depth;
13963   char *crux;
13964
13965   /* Search for the start of the main expression, recoding relocations
13966      in REVERSED_RELOC.  End the loop with CRUX pointing to the start
13967      of the main expression and with CRUX_DEPTH containing the number
13968      of open brackets at that point.  */
13969   reloc_index = -1;
13970   str_depth = 0;
13971   do
13972     {
13973       reloc_index++;
13974       crux = str;
13975       crux_depth = str_depth;
13976
13977       /* Skip over whitespace and brackets, keeping count of the number
13978          of brackets.  */
13979       while (*str == ' ' || *str == '\t' || *str == '(')
13980         if (*str++ == '(')
13981           str_depth++;
13982     }
13983   while (*str == '%'
13984          && reloc_index < (HAVE_NEWABI ? 3 : 1)
13985          && parse_relocation (&str, &reversed_reloc[reloc_index]));
13986
13987   my_getExpression (ep, crux);
13988   str = expr_end;
13989
13990   /* Match every open bracket.  */
13991   while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
13992     if (*str++ == ')')
13993       crux_depth--;
13994
13995   if (crux_depth > 0)
13996     as_bad (_("unclosed '('"));
13997
13998   expr_end = str;
13999
14000   if (reloc_index != 0)
14001     {
14002       prev_reloc_op_frag = frag_now;
14003       for (i = 0; i < reloc_index; i++)
14004         reloc[i] = reversed_reloc[reloc_index - 1 - i];
14005     }
14006
14007   return reloc_index;
14008 }
14009
14010 static void
14011 my_getExpression (expressionS *ep, char *str)
14012 {
14013   char *save_in;
14014
14015   save_in = input_line_pointer;
14016   input_line_pointer = str;
14017   expression (ep);
14018   expr_end = input_line_pointer;
14019   input_line_pointer = save_in;
14020 }
14021
14022 const char *
14023 md_atof (int type, char *litP, int *sizeP)
14024 {
14025   return ieee_md_atof (type, litP, sizeP, target_big_endian);
14026 }
14027
14028 void
14029 md_number_to_chars (char *buf, valueT val, int n)
14030 {
14031   if (target_big_endian)
14032     number_to_chars_bigendian (buf, val, n);
14033   else
14034     number_to_chars_littleendian (buf, val, n);
14035 }
14036 \f
14037 static int support_64bit_objects(void)
14038 {
14039   const char **list, **l;
14040   int yes;
14041
14042   list = bfd_target_list ();
14043   for (l = list; *l != NULL; l++)
14044     if (strcmp (*l, ELF_TARGET ("elf64-", "big")) == 0
14045         || strcmp (*l, ELF_TARGET ("elf64-", "little")) == 0)
14046       break;
14047   yes = (*l != NULL);
14048   free (list);
14049   return yes;
14050 }
14051
14052 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
14053    NEW_VALUE.  Warn if another value was already specified.  Note:
14054    we have to defer parsing the -march and -mtune arguments in order
14055    to handle 'from-abi' correctly, since the ABI might be specified
14056    in a later argument.  */
14057
14058 static void
14059 mips_set_option_string (const char **string_ptr, const char *new_value)
14060 {
14061   if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
14062     as_warn (_("a different %s was already specified, is now %s"),
14063              string_ptr == &mips_arch_string ? "-march" : "-mtune",
14064              new_value);
14065
14066   *string_ptr = new_value;
14067 }
14068
14069 int
14070 md_parse_option (int c, const char *arg)
14071 {
14072   unsigned int i;
14073
14074   for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
14075     if (c == mips_ases[i].option_on || c == mips_ases[i].option_off)
14076       {
14077         file_ase_explicit |= mips_set_ase (&mips_ases[i], &file_mips_opts,
14078                                            c == mips_ases[i].option_on);
14079         return 1;
14080       }
14081
14082   switch (c)
14083     {
14084     case OPTION_CONSTRUCT_FLOATS:
14085       mips_disable_float_construction = 0;
14086       break;
14087
14088     case OPTION_NO_CONSTRUCT_FLOATS:
14089       mips_disable_float_construction = 1;
14090       break;
14091
14092     case OPTION_TRAP:
14093       mips_trap = 1;
14094       break;
14095
14096     case OPTION_BREAK:
14097       mips_trap = 0;
14098       break;
14099
14100     case OPTION_EB:
14101       target_big_endian = 1;
14102       break;
14103
14104     case OPTION_EL:
14105       target_big_endian = 0;
14106       break;
14107
14108     case 'O':
14109       if (arg == NULL)
14110         mips_optimize = 1;
14111       else if (arg[0] == '0')
14112         mips_optimize = 0;
14113       else if (arg[0] == '1')
14114         mips_optimize = 1;
14115       else
14116         mips_optimize = 2;
14117       break;
14118
14119     case 'g':
14120       if (arg == NULL)
14121         mips_debug = 2;
14122       else
14123         mips_debug = atoi (arg);
14124       break;
14125
14126     case OPTION_MIPS1:
14127       file_mips_opts.isa = ISA_MIPS1;
14128       break;
14129
14130     case OPTION_MIPS2:
14131       file_mips_opts.isa = ISA_MIPS2;
14132       break;
14133
14134     case OPTION_MIPS3:
14135       file_mips_opts.isa = ISA_MIPS3;
14136       break;
14137
14138     case OPTION_MIPS4:
14139       file_mips_opts.isa = ISA_MIPS4;
14140       break;
14141
14142     case OPTION_MIPS5:
14143       file_mips_opts.isa = ISA_MIPS5;
14144       break;
14145
14146     case OPTION_MIPS32:
14147       file_mips_opts.isa = ISA_MIPS32;
14148       break;
14149
14150     case OPTION_MIPS32R2:
14151       file_mips_opts.isa = ISA_MIPS32R2;
14152       break;
14153
14154     case OPTION_MIPS32R3:
14155       file_mips_opts.isa = ISA_MIPS32R3;
14156       break;
14157
14158     case OPTION_MIPS32R5:
14159       file_mips_opts.isa = ISA_MIPS32R5;
14160       break;
14161
14162     case OPTION_MIPS32R6:
14163       file_mips_opts.isa = ISA_MIPS32R6;
14164       break;
14165
14166     case OPTION_MIPS64R2:
14167       file_mips_opts.isa = ISA_MIPS64R2;
14168       break;
14169
14170     case OPTION_MIPS64R3:
14171       file_mips_opts.isa = ISA_MIPS64R3;
14172       break;
14173
14174     case OPTION_MIPS64R5:
14175       file_mips_opts.isa = ISA_MIPS64R5;
14176       break;
14177
14178     case OPTION_MIPS64R6:
14179       file_mips_opts.isa = ISA_MIPS64R6;
14180       break;
14181
14182     case OPTION_MIPS64:
14183       file_mips_opts.isa = ISA_MIPS64;
14184       break;
14185
14186     case OPTION_MTUNE:
14187       mips_set_option_string (&mips_tune_string, arg);
14188       break;
14189
14190     case OPTION_MARCH:
14191       mips_set_option_string (&mips_arch_string, arg);
14192       break;
14193
14194     case OPTION_M4650:
14195       mips_set_option_string (&mips_arch_string, "4650");
14196       mips_set_option_string (&mips_tune_string, "4650");
14197       break;
14198
14199     case OPTION_NO_M4650:
14200       break;
14201
14202     case OPTION_M4010:
14203       mips_set_option_string (&mips_arch_string, "4010");
14204       mips_set_option_string (&mips_tune_string, "4010");
14205       break;
14206
14207     case OPTION_NO_M4010:
14208       break;
14209
14210     case OPTION_M4100:
14211       mips_set_option_string (&mips_arch_string, "4100");
14212       mips_set_option_string (&mips_tune_string, "4100");
14213       break;
14214
14215     case OPTION_NO_M4100:
14216       break;
14217
14218     case OPTION_M3900:
14219       mips_set_option_string (&mips_arch_string, "3900");
14220       mips_set_option_string (&mips_tune_string, "3900");
14221       break;
14222
14223     case OPTION_NO_M3900:
14224       break;
14225
14226     case OPTION_MICROMIPS:
14227       if (file_mips_opts.mips16 == 1)
14228         {
14229           as_bad (_("-mmicromips cannot be used with -mips16"));
14230           return 0;
14231         }
14232       file_mips_opts.micromips = 1;
14233       mips_no_prev_insn ();
14234       break;
14235
14236     case OPTION_NO_MICROMIPS:
14237       file_mips_opts.micromips = 0;
14238       mips_no_prev_insn ();
14239       break;
14240
14241     case OPTION_MIPS16:
14242       if (file_mips_opts.micromips == 1)
14243         {
14244           as_bad (_("-mips16 cannot be used with -micromips"));
14245           return 0;
14246         }
14247       file_mips_opts.mips16 = 1;
14248       mips_no_prev_insn ();
14249       break;
14250
14251     case OPTION_NO_MIPS16:
14252       file_mips_opts.mips16 = 0;
14253       mips_no_prev_insn ();
14254       break;
14255
14256     case OPTION_FIX_24K:
14257       mips_fix_24k = 1;
14258       break;
14259
14260     case OPTION_NO_FIX_24K:
14261       mips_fix_24k = 0;
14262       break;
14263
14264     case OPTION_FIX_RM7000:
14265       mips_fix_rm7000 = 1;
14266       break;
14267
14268     case OPTION_NO_FIX_RM7000:
14269       mips_fix_rm7000 = 0;
14270       break;
14271
14272     case OPTION_FIX_LOONGSON2F_JUMP:
14273       mips_fix_loongson2f_jump = TRUE;
14274       break;
14275
14276     case OPTION_NO_FIX_LOONGSON2F_JUMP:
14277       mips_fix_loongson2f_jump = FALSE;
14278       break;
14279
14280     case OPTION_FIX_LOONGSON2F_NOP:
14281       mips_fix_loongson2f_nop = TRUE;
14282       break;
14283
14284     case OPTION_NO_FIX_LOONGSON2F_NOP:
14285       mips_fix_loongson2f_nop = FALSE;
14286       break;
14287
14288     case OPTION_FIX_VR4120:
14289       mips_fix_vr4120 = 1;
14290       break;
14291
14292     case OPTION_NO_FIX_VR4120:
14293       mips_fix_vr4120 = 0;
14294       break;
14295
14296     case OPTION_FIX_VR4130:
14297       mips_fix_vr4130 = 1;
14298       break;
14299
14300     case OPTION_NO_FIX_VR4130:
14301       mips_fix_vr4130 = 0;
14302       break;
14303
14304     case OPTION_FIX_CN63XXP1:
14305       mips_fix_cn63xxp1 = TRUE;
14306       break;
14307
14308     case OPTION_NO_FIX_CN63XXP1:
14309       mips_fix_cn63xxp1 = FALSE;
14310       break;
14311
14312     case OPTION_RELAX_BRANCH:
14313       mips_relax_branch = 1;
14314       break;
14315
14316     case OPTION_NO_RELAX_BRANCH:
14317       mips_relax_branch = 0;
14318       break;
14319
14320     case OPTION_INSN32:
14321       file_mips_opts.insn32 = TRUE;
14322       break;
14323
14324     case OPTION_NO_INSN32:
14325       file_mips_opts.insn32 = FALSE;
14326       break;
14327
14328     case OPTION_MSHARED:
14329       mips_in_shared = TRUE;
14330       break;
14331
14332     case OPTION_MNO_SHARED:
14333       mips_in_shared = FALSE;
14334       break;
14335
14336     case OPTION_MSYM32:
14337       file_mips_opts.sym32 = TRUE;
14338       break;
14339
14340     case OPTION_MNO_SYM32:
14341       file_mips_opts.sym32 = FALSE;
14342       break;
14343
14344       /* When generating ELF code, we permit -KPIC and -call_shared to
14345          select SVR4_PIC, and -non_shared to select no PIC.  This is
14346          intended to be compatible with Irix 5.  */
14347     case OPTION_CALL_SHARED:
14348       mips_pic = SVR4_PIC;
14349       mips_abicalls = TRUE;
14350       break;
14351
14352     case OPTION_CALL_NONPIC:
14353       mips_pic = NO_PIC;
14354       mips_abicalls = TRUE;
14355       break;
14356
14357     case OPTION_NON_SHARED:
14358       mips_pic = NO_PIC;
14359       mips_abicalls = FALSE;
14360       break;
14361
14362       /* The -xgot option tells the assembler to use 32 bit offsets
14363          when accessing the got in SVR4_PIC mode.  It is for Irix
14364          compatibility.  */
14365     case OPTION_XGOT:
14366       mips_big_got = 1;
14367       break;
14368
14369     case 'G':
14370       g_switch_value = atoi (arg);
14371       g_switch_seen = 1;
14372       break;
14373
14374       /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
14375          and -mabi=64.  */
14376     case OPTION_32:
14377       mips_abi = O32_ABI;
14378       break;
14379
14380     case OPTION_N32:
14381       mips_abi = N32_ABI;
14382       break;
14383
14384     case OPTION_64:
14385       mips_abi = N64_ABI;
14386       if (!support_64bit_objects())
14387         as_fatal (_("no compiled in support for 64 bit object file format"));
14388       break;
14389
14390     case OPTION_GP32:
14391       file_mips_opts.gp = 32;
14392       break;
14393
14394     case OPTION_GP64:
14395       file_mips_opts.gp = 64;
14396       break;
14397
14398     case OPTION_FP32:
14399       file_mips_opts.fp = 32;
14400       break;
14401
14402     case OPTION_FPXX:
14403       file_mips_opts.fp = 0;
14404       break;
14405
14406     case OPTION_FP64:
14407       file_mips_opts.fp = 64;
14408       break;
14409
14410     case OPTION_ODD_SPREG:
14411       file_mips_opts.oddspreg = 1;
14412       break;
14413
14414     case OPTION_NO_ODD_SPREG:
14415       file_mips_opts.oddspreg = 0;
14416       break;
14417
14418     case OPTION_SINGLE_FLOAT:
14419       file_mips_opts.single_float = 1;
14420       break;
14421
14422     case OPTION_DOUBLE_FLOAT:
14423       file_mips_opts.single_float = 0;
14424       break;
14425
14426     case OPTION_SOFT_FLOAT:
14427       file_mips_opts.soft_float = 1;
14428       break;
14429
14430     case OPTION_HARD_FLOAT:
14431       file_mips_opts.soft_float = 0;
14432       break;
14433
14434     case OPTION_MABI:
14435       if (strcmp (arg, "32") == 0)
14436         mips_abi = O32_ABI;
14437       else if (strcmp (arg, "o64") == 0)
14438         mips_abi = O64_ABI;
14439       else if (strcmp (arg, "n32") == 0)
14440         mips_abi = N32_ABI;
14441       else if (strcmp (arg, "64") == 0)
14442         {
14443           mips_abi = N64_ABI;
14444           if (! support_64bit_objects())
14445             as_fatal (_("no compiled in support for 64 bit object file "
14446                         "format"));
14447         }
14448       else if (strcmp (arg, "eabi") == 0)
14449         mips_abi = EABI_ABI;
14450       else
14451         {
14452           as_fatal (_("invalid abi -mabi=%s"), arg);
14453           return 0;
14454         }
14455       break;
14456
14457     case OPTION_M7000_HILO_FIX:
14458       mips_7000_hilo_fix = TRUE;
14459       break;
14460
14461     case OPTION_MNO_7000_HILO_FIX:
14462       mips_7000_hilo_fix = FALSE;
14463       break;
14464
14465     case OPTION_MDEBUG:
14466       mips_flag_mdebug = TRUE;
14467       break;
14468
14469     case OPTION_NO_MDEBUG:
14470       mips_flag_mdebug = FALSE;
14471       break;
14472
14473     case OPTION_PDR:
14474       mips_flag_pdr = TRUE;
14475       break;
14476
14477     case OPTION_NO_PDR:
14478       mips_flag_pdr = FALSE;
14479       break;
14480
14481     case OPTION_MVXWORKS_PIC:
14482       mips_pic = VXWORKS_PIC;
14483       break;
14484
14485     case OPTION_NAN:
14486       if (strcmp (arg, "2008") == 0)
14487         mips_nan2008 = 1;
14488       else if (strcmp (arg, "legacy") == 0)
14489         mips_nan2008 = 0;
14490       else
14491         {
14492           as_fatal (_("invalid NaN setting -mnan=%s"), arg);
14493           return 0;
14494         }
14495       break;
14496
14497     default:
14498       return 0;
14499     }
14500
14501     mips_fix_loongson2f = mips_fix_loongson2f_nop || mips_fix_loongson2f_jump;
14502
14503   return 1;
14504 }
14505 \f
14506 /* Set up globals to tune for the ISA or processor described by INFO.  */
14507
14508 static void
14509 mips_set_tune (const struct mips_cpu_info *info)
14510 {
14511   if (info != 0)
14512     mips_tune = info->cpu;
14513 }
14514
14515
14516 void
14517 mips_after_parse_args (void)
14518 {
14519   const struct mips_cpu_info *arch_info = 0;
14520   const struct mips_cpu_info *tune_info = 0;
14521
14522   /* GP relative stuff not working for PE */
14523   if (strncmp (TARGET_OS, "pe", 2) == 0)
14524     {
14525       if (g_switch_seen && g_switch_value != 0)
14526         as_bad (_("-G not supported in this configuration"));
14527       g_switch_value = 0;
14528     }
14529
14530   if (mips_abi == NO_ABI)
14531     mips_abi = MIPS_DEFAULT_ABI;
14532
14533   /* The following code determines the architecture.
14534      Similar code was added to GCC 3.3 (see override_options() in
14535      config/mips/mips.c).  The GAS and GCC code should be kept in sync
14536      as much as possible.  */
14537
14538   if (mips_arch_string != 0)
14539     arch_info = mips_parse_cpu ("-march", mips_arch_string);
14540
14541   if (file_mips_opts.isa != ISA_UNKNOWN)
14542     {
14543       /* Handle -mipsN.  At this point, file_mips_opts.isa contains the
14544          ISA level specified by -mipsN, while arch_info->isa contains
14545          the -march selection (if any).  */
14546       if (arch_info != 0)
14547         {
14548           /* -march takes precedence over -mipsN, since it is more descriptive.
14549              There's no harm in specifying both as long as the ISA levels
14550              are the same.  */
14551           if (file_mips_opts.isa != arch_info->isa)
14552             as_bad (_("-%s conflicts with the other architecture options,"
14553                       " which imply -%s"),
14554                     mips_cpu_info_from_isa (file_mips_opts.isa)->name,
14555                     mips_cpu_info_from_isa (arch_info->isa)->name);
14556         }
14557       else
14558         arch_info = mips_cpu_info_from_isa (file_mips_opts.isa);
14559     }
14560
14561   if (arch_info == 0)
14562     {
14563       arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
14564       gas_assert (arch_info);
14565     }
14566
14567   if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
14568     as_bad (_("-march=%s is not compatible with the selected ABI"),
14569             arch_info->name);
14570
14571   file_mips_opts.arch = arch_info->cpu;
14572   file_mips_opts.isa = arch_info->isa;
14573
14574   /* Set up initial mips_opts state.  */
14575   mips_opts = file_mips_opts;
14576
14577   /* The register size inference code is now placed in
14578      file_mips_check_options.  */
14579
14580   /* Optimize for file_mips_opts.arch, unless -mtune selects a different
14581      processor.  */
14582   if (mips_tune_string != 0)
14583     tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
14584
14585   if (tune_info == 0)
14586     mips_set_tune (arch_info);
14587   else
14588     mips_set_tune (tune_info);
14589
14590   if (mips_flag_mdebug < 0)
14591     mips_flag_mdebug = 0;
14592 }
14593 \f
14594 void
14595 mips_init_after_args (void)
14596 {
14597   /* initialize opcodes */
14598   bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
14599   mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
14600 }
14601
14602 long
14603 md_pcrel_from (fixS *fixP)
14604 {
14605   valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
14606   switch (fixP->fx_r_type)
14607     {
14608     case BFD_RELOC_MICROMIPS_7_PCREL_S1:
14609     case BFD_RELOC_MICROMIPS_10_PCREL_S1:
14610       /* Return the address of the delay slot.  */
14611       return addr + 2;
14612
14613     case BFD_RELOC_MICROMIPS_16_PCREL_S1:
14614     case BFD_RELOC_MICROMIPS_JMP:
14615     case BFD_RELOC_16_PCREL_S2:
14616     case BFD_RELOC_MIPS_21_PCREL_S2:
14617     case BFD_RELOC_MIPS_26_PCREL_S2:
14618     case BFD_RELOC_MIPS_JMP:
14619       /* Return the address of the delay slot.  */
14620       return addr + 4;
14621
14622     case BFD_RELOC_MIPS_18_PCREL_S3:
14623       /* Return the aligned address of the doubleword containing
14624          the instruction.  */
14625       return addr & ~7;
14626
14627     default:
14628       return addr;
14629     }
14630 }
14631
14632 /* This is called before the symbol table is processed.  In order to
14633    work with gcc when using mips-tfile, we must keep all local labels.
14634    However, in other cases, we want to discard them.  If we were
14635    called with -g, but we didn't see any debugging information, it may
14636    mean that gcc is smuggling debugging information through to
14637    mips-tfile, in which case we must generate all local labels.  */
14638
14639 void
14640 mips_frob_file_before_adjust (void)
14641 {
14642 #ifndef NO_ECOFF_DEBUGGING
14643   if (ECOFF_DEBUGGING
14644       && mips_debug != 0
14645       && ! ecoff_debugging_seen)
14646     flag_keep_locals = 1;
14647 #endif
14648 }
14649
14650 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
14651    the corresponding LO16 reloc.  This is called before md_apply_fix and
14652    tc_gen_reloc.  Unmatched relocs can only be generated by use of explicit
14653    relocation operators.
14654
14655    For our purposes, a %lo() expression matches a %got() or %hi()
14656    expression if:
14657
14658       (a) it refers to the same symbol; and
14659       (b) the offset applied in the %lo() expression is no lower than
14660           the offset applied in the %got() or %hi().
14661
14662    (b) allows us to cope with code like:
14663
14664         lui     $4,%hi(foo)
14665         lh      $4,%lo(foo+2)($4)
14666
14667    ...which is legal on RELA targets, and has a well-defined behaviour
14668    if the user knows that adding 2 to "foo" will not induce a carry to
14669    the high 16 bits.
14670
14671    When several %lo()s match a particular %got() or %hi(), we use the
14672    following rules to distinguish them:
14673
14674      (1) %lo()s with smaller offsets are a better match than %lo()s with
14675          higher offsets.
14676
14677      (2) %lo()s with no matching %got() or %hi() are better than those
14678          that already have a matching %got() or %hi().
14679
14680      (3) later %lo()s are better than earlier %lo()s.
14681
14682    These rules are applied in order.
14683
14684    (1) means, among other things, that %lo()s with identical offsets are
14685    chosen if they exist.
14686
14687    (2) means that we won't associate several high-part relocations with
14688    the same low-part relocation unless there's no alternative.  Having
14689    several high parts for the same low part is a GNU extension; this rule
14690    allows careful users to avoid it.
14691
14692    (3) is purely cosmetic.  mips_hi_fixup_list is is in reverse order,
14693    with the last high-part relocation being at the front of the list.
14694    It therefore makes sense to choose the last matching low-part
14695    relocation, all other things being equal.  It's also easier
14696    to code that way.  */
14697
14698 void
14699 mips_frob_file (void)
14700 {
14701   struct mips_hi_fixup *l;
14702   bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED;
14703
14704   for (l = mips_hi_fixup_list; l != NULL; l = l->next)
14705     {
14706       segment_info_type *seginfo;
14707       bfd_boolean matched_lo_p;
14708       fixS **hi_pos, **lo_pos, **pos;
14709
14710       gas_assert (reloc_needs_lo_p (l->fixp->fx_r_type));
14711
14712       /* If a GOT16 relocation turns out to be against a global symbol,
14713          there isn't supposed to be a matching LO.  Ignore %gots against
14714          constants; we'll report an error for those later.  */
14715       if (got16_reloc_p (l->fixp->fx_r_type)
14716           && !(l->fixp->fx_addsy
14717                && pic_need_relax (l->fixp->fx_addsy, l->seg)))
14718         continue;
14719
14720       /* Check quickly whether the next fixup happens to be a matching %lo.  */
14721       if (fixup_has_matching_lo_p (l->fixp))
14722         continue;
14723
14724       seginfo = seg_info (l->seg);
14725
14726       /* Set HI_POS to the position of this relocation in the chain.
14727          Set LO_POS to the position of the chosen low-part relocation.
14728          MATCHED_LO_P is true on entry to the loop if *POS is a low-part
14729          relocation that matches an immediately-preceding high-part
14730          relocation.  */
14731       hi_pos = NULL;
14732       lo_pos = NULL;
14733       matched_lo_p = FALSE;
14734       looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type);
14735
14736       for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
14737         {
14738           if (*pos == l->fixp)
14739             hi_pos = pos;
14740
14741           if ((*pos)->fx_r_type == looking_for_rtype
14742               && symbol_same_p ((*pos)->fx_addsy, l->fixp->fx_addsy)
14743               && (*pos)->fx_offset >= l->fixp->fx_offset
14744               && (lo_pos == NULL
14745                   || (*pos)->fx_offset < (*lo_pos)->fx_offset
14746                   || (!matched_lo_p
14747                       && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
14748             lo_pos = pos;
14749
14750           matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
14751                           && fixup_has_matching_lo_p (*pos));
14752         }
14753
14754       /* If we found a match, remove the high-part relocation from its
14755          current position and insert it before the low-part relocation.
14756          Make the offsets match so that fixup_has_matching_lo_p()
14757          will return true.
14758
14759          We don't warn about unmatched high-part relocations since some
14760          versions of gcc have been known to emit dead "lui ...%hi(...)"
14761          instructions.  */
14762       if (lo_pos != NULL)
14763         {
14764           l->fixp->fx_offset = (*lo_pos)->fx_offset;
14765           if (l->fixp->fx_next != *lo_pos)
14766             {
14767               *hi_pos = l->fixp->fx_next;
14768               l->fixp->fx_next = *lo_pos;
14769               *lo_pos = l->fixp;
14770             }
14771         }
14772     }
14773 }
14774
14775 int
14776 mips_force_relocation (fixS *fixp)
14777 {
14778   if (generic_force_reloc (fixp))
14779     return 1;
14780
14781   /* We want to keep BFD_RELOC_MICROMIPS_*_PCREL_S1 relocation,
14782      so that the linker relaxation can update targets.  */
14783   if (fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
14784       || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
14785       || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1)
14786     return 1;
14787
14788   /* We want all PC-relative relocations to be kept for R6 relaxation.  */
14789   if (ISA_IS_R6 (file_mips_opts.isa)
14790       && (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2
14791           || fixp->fx_r_type == BFD_RELOC_MIPS_21_PCREL_S2
14792           || fixp->fx_r_type == BFD_RELOC_MIPS_26_PCREL_S2
14793           || fixp->fx_r_type == BFD_RELOC_MIPS_18_PCREL_S3
14794           || fixp->fx_r_type == BFD_RELOC_MIPS_19_PCREL_S2
14795           || fixp->fx_r_type == BFD_RELOC_HI16_S_PCREL
14796           || fixp->fx_r_type == BFD_RELOC_LO16_PCREL))
14797     return 1;
14798
14799   return 0;
14800 }
14801
14802 /* Read the instruction associated with RELOC from BUF.  */
14803
14804 static unsigned int
14805 read_reloc_insn (char *buf, bfd_reloc_code_real_type reloc)
14806 {
14807   if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
14808     return read_compressed_insn (buf, 4);
14809   else
14810     return read_insn (buf);
14811 }
14812
14813 /* Write instruction INSN to BUF, given that it has been relocated
14814    by RELOC.  */
14815
14816 static void
14817 write_reloc_insn (char *buf, bfd_reloc_code_real_type reloc,
14818                   unsigned long insn)
14819 {
14820   if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
14821     write_compressed_insn (buf, insn, 4);
14822   else
14823     write_insn (buf, insn);
14824 }
14825
14826 /* Apply a fixup to the object file.  */
14827
14828 void
14829 md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
14830 {
14831   char *buf;
14832   unsigned long insn;
14833   reloc_howto_type *howto;
14834
14835   if (fixP->fx_pcrel)
14836     switch (fixP->fx_r_type)
14837       {
14838       case BFD_RELOC_16_PCREL_S2:
14839       case BFD_RELOC_MICROMIPS_7_PCREL_S1:
14840       case BFD_RELOC_MICROMIPS_10_PCREL_S1:
14841       case BFD_RELOC_MICROMIPS_16_PCREL_S1:
14842       case BFD_RELOC_32_PCREL:
14843       case BFD_RELOC_MIPS_21_PCREL_S2:
14844       case BFD_RELOC_MIPS_26_PCREL_S2:
14845       case BFD_RELOC_MIPS_18_PCREL_S3:
14846       case BFD_RELOC_MIPS_19_PCREL_S2:
14847       case BFD_RELOC_HI16_S_PCREL:
14848       case BFD_RELOC_LO16_PCREL:
14849         break;
14850
14851       case BFD_RELOC_32:
14852         fixP->fx_r_type = BFD_RELOC_32_PCREL;
14853         break;
14854
14855       default:
14856         as_bad_where (fixP->fx_file, fixP->fx_line,
14857                       _("PC-relative reference to a different section"));
14858         break;
14859       }
14860
14861   /* Handle BFD_RELOC_8, since it's easy.  Punt on other bfd relocations
14862      that have no MIPS ELF equivalent.  */
14863   if (fixP->fx_r_type != BFD_RELOC_8)
14864     {
14865       howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
14866       if (!howto)
14867         return;
14868     }
14869
14870   gas_assert (fixP->fx_size == 2
14871               || fixP->fx_size == 4
14872               || fixP->fx_r_type == BFD_RELOC_8
14873               || fixP->fx_r_type == BFD_RELOC_16
14874               || fixP->fx_r_type == BFD_RELOC_64
14875               || fixP->fx_r_type == BFD_RELOC_CTOR
14876               || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
14877               || fixP->fx_r_type == BFD_RELOC_MICROMIPS_SUB
14878               || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
14879               || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
14880               || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64
14881               || fixP->fx_r_type == BFD_RELOC_NONE);
14882
14883   buf = fixP->fx_frag->fr_literal + fixP->fx_where;
14884
14885   /* Don't treat parts of a composite relocation as done.  There are two
14886      reasons for this:
14887
14888      (1) The second and third parts will be against 0 (RSS_UNDEF) but
14889          should nevertheless be emitted if the first part is.
14890
14891      (2) In normal usage, composite relocations are never assembly-time
14892          constants.  The easiest way of dealing with the pathological
14893          exceptions is to generate a relocation against STN_UNDEF and
14894          leave everything up to the linker.  */
14895   if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0)
14896     fixP->fx_done = 1;
14897
14898   switch (fixP->fx_r_type)
14899     {
14900     case BFD_RELOC_MIPS_TLS_GD:
14901     case BFD_RELOC_MIPS_TLS_LDM:
14902     case BFD_RELOC_MIPS_TLS_DTPREL32:
14903     case BFD_RELOC_MIPS_TLS_DTPREL64:
14904     case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
14905     case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
14906     case BFD_RELOC_MIPS_TLS_GOTTPREL:
14907     case BFD_RELOC_MIPS_TLS_TPREL32:
14908     case BFD_RELOC_MIPS_TLS_TPREL64:
14909     case BFD_RELOC_MIPS_TLS_TPREL_HI16:
14910     case BFD_RELOC_MIPS_TLS_TPREL_LO16:
14911     case BFD_RELOC_MICROMIPS_TLS_GD:
14912     case BFD_RELOC_MICROMIPS_TLS_LDM:
14913     case BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16:
14914     case BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16:
14915     case BFD_RELOC_MICROMIPS_TLS_GOTTPREL:
14916     case BFD_RELOC_MICROMIPS_TLS_TPREL_HI16:
14917     case BFD_RELOC_MICROMIPS_TLS_TPREL_LO16:
14918     case BFD_RELOC_MIPS16_TLS_GD:
14919     case BFD_RELOC_MIPS16_TLS_LDM:
14920     case BFD_RELOC_MIPS16_TLS_DTPREL_HI16:
14921     case BFD_RELOC_MIPS16_TLS_DTPREL_LO16:
14922     case BFD_RELOC_MIPS16_TLS_GOTTPREL:
14923     case BFD_RELOC_MIPS16_TLS_TPREL_HI16:
14924     case BFD_RELOC_MIPS16_TLS_TPREL_LO16:
14925       if (fixP->fx_addsy)
14926         S_SET_THREAD_LOCAL (fixP->fx_addsy);
14927       else
14928         as_bad_where (fixP->fx_file, fixP->fx_line,
14929                       _("TLS relocation against a constant"));
14930       break;
14931
14932     case BFD_RELOC_MIPS_JMP:
14933     case BFD_RELOC_MIPS_SHIFT5:
14934     case BFD_RELOC_MIPS_SHIFT6:
14935     case BFD_RELOC_MIPS_GOT_DISP:
14936     case BFD_RELOC_MIPS_GOT_PAGE:
14937     case BFD_RELOC_MIPS_GOT_OFST:
14938     case BFD_RELOC_MIPS_SUB:
14939     case BFD_RELOC_MIPS_INSERT_A:
14940     case BFD_RELOC_MIPS_INSERT_B:
14941     case BFD_RELOC_MIPS_DELETE:
14942     case BFD_RELOC_MIPS_HIGHEST:
14943     case BFD_RELOC_MIPS_HIGHER:
14944     case BFD_RELOC_MIPS_SCN_DISP:
14945     case BFD_RELOC_MIPS_REL16:
14946     case BFD_RELOC_MIPS_RELGOT:
14947     case BFD_RELOC_MIPS_JALR:
14948     case BFD_RELOC_HI16:
14949     case BFD_RELOC_HI16_S:
14950     case BFD_RELOC_LO16:
14951     case BFD_RELOC_GPREL16:
14952     case BFD_RELOC_MIPS_LITERAL:
14953     case BFD_RELOC_MIPS_CALL16:
14954     case BFD_RELOC_MIPS_GOT16:
14955     case BFD_RELOC_GPREL32:
14956     case BFD_RELOC_MIPS_GOT_HI16:
14957     case BFD_RELOC_MIPS_GOT_LO16:
14958     case BFD_RELOC_MIPS_CALL_HI16:
14959     case BFD_RELOC_MIPS_CALL_LO16:
14960     case BFD_RELOC_HI16_S_PCREL:
14961     case BFD_RELOC_LO16_PCREL:
14962     case BFD_RELOC_MIPS16_GPREL:
14963     case BFD_RELOC_MIPS16_GOT16:
14964     case BFD_RELOC_MIPS16_CALL16:
14965     case BFD_RELOC_MIPS16_HI16:
14966     case BFD_RELOC_MIPS16_HI16_S:
14967     case BFD_RELOC_MIPS16_LO16:
14968     case BFD_RELOC_MIPS16_JMP:
14969     case BFD_RELOC_MICROMIPS_JMP:
14970     case BFD_RELOC_MICROMIPS_GOT_DISP:
14971     case BFD_RELOC_MICROMIPS_GOT_PAGE:
14972     case BFD_RELOC_MICROMIPS_GOT_OFST:
14973     case BFD_RELOC_MICROMIPS_SUB:
14974     case BFD_RELOC_MICROMIPS_HIGHEST:
14975     case BFD_RELOC_MICROMIPS_HIGHER:
14976     case BFD_RELOC_MICROMIPS_SCN_DISP:
14977     case BFD_RELOC_MICROMIPS_JALR:
14978     case BFD_RELOC_MICROMIPS_HI16:
14979     case BFD_RELOC_MICROMIPS_HI16_S:
14980     case BFD_RELOC_MICROMIPS_LO16:
14981     case BFD_RELOC_MICROMIPS_GPREL16:
14982     case BFD_RELOC_MICROMIPS_LITERAL:
14983     case BFD_RELOC_MICROMIPS_CALL16:
14984     case BFD_RELOC_MICROMIPS_GOT16:
14985     case BFD_RELOC_MICROMIPS_GOT_HI16:
14986     case BFD_RELOC_MICROMIPS_GOT_LO16:
14987     case BFD_RELOC_MICROMIPS_CALL_HI16:
14988     case BFD_RELOC_MICROMIPS_CALL_LO16:
14989     case BFD_RELOC_MIPS_EH:
14990       if (fixP->fx_done)
14991         {
14992           offsetT value;
14993
14994           if (calculate_reloc (fixP->fx_r_type, *valP, &value))
14995             {
14996               insn = read_reloc_insn (buf, fixP->fx_r_type);
14997               if (mips16_reloc_p (fixP->fx_r_type))
14998                 insn |= mips16_immed_extend (value, 16);
14999               else
15000                 insn |= (value & 0xffff);
15001               write_reloc_insn (buf, fixP->fx_r_type, insn);
15002             }
15003           else
15004             as_bad_where (fixP->fx_file, fixP->fx_line,
15005                           _("unsupported constant in relocation"));
15006         }
15007       break;
15008
15009     case BFD_RELOC_64:
15010       /* This is handled like BFD_RELOC_32, but we output a sign
15011          extended value if we are only 32 bits.  */
15012       if (fixP->fx_done)
15013         {
15014           if (8 <= sizeof (valueT))
15015             md_number_to_chars (buf, *valP, 8);
15016           else
15017             {
15018               valueT hiv;
15019
15020               if ((*valP & 0x80000000) != 0)
15021                 hiv = 0xffffffff;
15022               else
15023                 hiv = 0;
15024               md_number_to_chars (buf + (target_big_endian ? 4 : 0), *valP, 4);
15025               md_number_to_chars (buf + (target_big_endian ? 0 : 4), hiv, 4);
15026             }
15027         }
15028       break;
15029
15030     case BFD_RELOC_RVA:
15031     case BFD_RELOC_32:
15032     case BFD_RELOC_32_PCREL:
15033     case BFD_RELOC_16:
15034     case BFD_RELOC_8:
15035       /* If we are deleting this reloc entry, we must fill in the
15036          value now.  This can happen if we have a .word which is not
15037          resolved when it appears but is later defined.  */
15038       if (fixP->fx_done)
15039         md_number_to_chars (buf, *valP, fixP->fx_size);
15040       break;
15041
15042     case BFD_RELOC_MIPS_21_PCREL_S2:
15043       if ((*valP & 0x3) != 0)
15044         as_bad_where (fixP->fx_file, fixP->fx_line,
15045                       _("branch to misaligned address (%lx)"), (long) *valP);
15046       if (!fixP->fx_done)
15047         break;
15048
15049       if (*valP + 0x400000 <= 0x7fffff)
15050         {
15051           insn = read_insn (buf);
15052           insn |= (*valP >> 2) & 0x1fffff;
15053           write_insn (buf, insn);
15054         }
15055       else
15056         as_bad_where (fixP->fx_file, fixP->fx_line,
15057                       _("branch out of range"));
15058       break;
15059
15060     case BFD_RELOC_MIPS_26_PCREL_S2:
15061       if ((*valP & 0x3) != 0)
15062         as_bad_where (fixP->fx_file, fixP->fx_line,
15063                       _("branch to misaligned address (%lx)"), (long) *valP);
15064       if (!fixP->fx_done)
15065         break;
15066
15067       if (*valP + 0x8000000 <= 0xfffffff)
15068         {
15069           insn = read_insn (buf);
15070           insn |= (*valP >> 2) & 0x3ffffff;
15071           write_insn (buf, insn);
15072         }
15073       else
15074         as_bad_where (fixP->fx_file, fixP->fx_line,
15075                       _("branch out of range"));
15076       break;
15077
15078     case BFD_RELOC_MIPS_18_PCREL_S3:
15079       if (fixP->fx_addsy && (S_GET_VALUE (fixP->fx_addsy) & 0x7) != 0)
15080         as_bad_where (fixP->fx_file, fixP->fx_line,
15081                       _("PC-relative access using misaligned symbol (%lx)"),
15082                       (long) S_GET_VALUE (fixP->fx_addsy));
15083       if ((fixP->fx_offset & 0x7) != 0)
15084         as_bad_where (fixP->fx_file, fixP->fx_line,
15085                       _("PC-relative access using misaligned offset (%lx)"),
15086                       (long) fixP->fx_offset);
15087       if (!fixP->fx_done)
15088         break;
15089
15090       if (*valP + 0x100000 <= 0x1fffff)
15091         {
15092           insn = read_insn (buf);
15093           insn |= (*valP >> 3) & 0x3ffff;
15094           write_insn (buf, insn);
15095         }
15096       else
15097         as_bad_where (fixP->fx_file, fixP->fx_line,
15098                       _("PC-relative access out of range"));
15099       break;
15100
15101     case BFD_RELOC_MIPS_19_PCREL_S2:
15102       if ((*valP & 0x3) != 0)
15103         as_bad_where (fixP->fx_file, fixP->fx_line,
15104                       _("PC-relative access to misaligned address (%lx)"),
15105                       (long) *valP);
15106       if (!fixP->fx_done)
15107         break;
15108
15109       if (*valP + 0x100000 <= 0x1fffff)
15110         {
15111           insn = read_insn (buf);
15112           insn |= (*valP >> 2) & 0x7ffff;
15113           write_insn (buf, insn);
15114         }
15115       else
15116         as_bad_where (fixP->fx_file, fixP->fx_line,
15117                       _("PC-relative access out of range"));
15118       break;
15119
15120     case BFD_RELOC_16_PCREL_S2:
15121       if ((*valP & 0x3) != 0)
15122         as_bad_where (fixP->fx_file, fixP->fx_line,
15123                       _("branch to misaligned address (%lx)"), (long) *valP);
15124
15125       /* We need to save the bits in the instruction since fixup_segment()
15126          might be deleting the relocation entry (i.e., a branch within
15127          the current segment).  */
15128       if (! fixP->fx_done)
15129         break;
15130
15131       /* Update old instruction data.  */
15132       insn = read_insn (buf);
15133
15134       if (*valP + 0x20000 <= 0x3ffff)
15135         {
15136           insn |= (*valP >> 2) & 0xffff;
15137           write_insn (buf, insn);
15138         }
15139       else if (mips_pic == NO_PIC
15140                && fixP->fx_done
15141                && fixP->fx_frag->fr_address >= text_section->vma
15142                && (fixP->fx_frag->fr_address
15143                    < text_section->vma + bfd_get_section_size (text_section))
15144                && ((insn & 0xffff0000) == 0x10000000     /* beq $0,$0 */
15145                    || (insn & 0xffff0000) == 0x04010000  /* bgez $0 */
15146                    || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
15147         {
15148           /* The branch offset is too large.  If this is an
15149              unconditional branch, and we are not generating PIC code,
15150              we can convert it to an absolute jump instruction.  */
15151           if ((insn & 0xffff0000) == 0x04110000)         /* bgezal $0 */
15152             insn = 0x0c000000;  /* jal */
15153           else
15154             insn = 0x08000000;  /* j */
15155           fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
15156           fixP->fx_done = 0;
15157           fixP->fx_addsy = section_symbol (text_section);
15158           *valP += md_pcrel_from (fixP);
15159           write_insn (buf, insn);
15160         }
15161       else
15162         {
15163           /* If we got here, we have branch-relaxation disabled,
15164              and there's nothing we can do to fix this instruction
15165              without turning it into a longer sequence.  */
15166           as_bad_where (fixP->fx_file, fixP->fx_line,
15167                         _("branch out of range"));
15168         }
15169       break;
15170
15171     case BFD_RELOC_MICROMIPS_7_PCREL_S1:
15172     case BFD_RELOC_MICROMIPS_10_PCREL_S1:
15173     case BFD_RELOC_MICROMIPS_16_PCREL_S1:
15174       /* We adjust the offset back to even.  */
15175       if ((*valP & 0x1) != 0)
15176         --(*valP);
15177
15178       if (! fixP->fx_done)
15179         break;
15180
15181       /* Should never visit here, because we keep the relocation.  */
15182       abort ();
15183       break;
15184
15185     case BFD_RELOC_VTABLE_INHERIT:
15186       fixP->fx_done = 0;
15187       if (fixP->fx_addsy
15188           && !S_IS_DEFINED (fixP->fx_addsy)
15189           && !S_IS_WEAK (fixP->fx_addsy))
15190         S_SET_WEAK (fixP->fx_addsy);
15191       break;
15192
15193     case BFD_RELOC_NONE:
15194     case BFD_RELOC_VTABLE_ENTRY:
15195       fixP->fx_done = 0;
15196       break;
15197
15198     default:
15199       abort ();
15200     }
15201
15202   /* Remember value for tc_gen_reloc.  */
15203   fixP->fx_addnumber = *valP;
15204 }
15205
15206 static symbolS *
15207 get_symbol (void)
15208 {
15209   int c;
15210   char *name;
15211   symbolS *p;
15212
15213   c = get_symbol_name (&name);
15214   p = (symbolS *) symbol_find_or_make (name);
15215   (void) restore_line_pointer (c);
15216   return p;
15217 }
15218
15219 /* Align the current frag to a given power of two.  If a particular
15220    fill byte should be used, FILL points to an integer that contains
15221    that byte, otherwise FILL is null.
15222
15223    This function used to have the comment:
15224
15225       The MIPS assembler also automatically adjusts any preceding label.
15226
15227    The implementation therefore applied the adjustment to a maximum of
15228    one label.  However, other label adjustments are applied to batches
15229    of labels, and adjusting just one caused problems when new labels
15230    were added for the sake of debugging or unwind information.
15231    We therefore adjust all preceding labels (given as LABELS) instead.  */
15232
15233 static void
15234 mips_align (int to, int *fill, struct insn_label_list *labels)
15235 {
15236   mips_emit_delays ();
15237   mips_record_compressed_mode ();
15238   if (fill == NULL && subseg_text_p (now_seg))
15239     frag_align_code (to, 0);
15240   else
15241     frag_align (to, fill ? *fill : 0, 0);
15242   record_alignment (now_seg, to);
15243   mips_move_labels (labels, FALSE);
15244 }
15245
15246 /* Align to a given power of two.  .align 0 turns off the automatic
15247    alignment used by the data creating pseudo-ops.  */
15248
15249 static void
15250 s_align (int x ATTRIBUTE_UNUSED)
15251 {
15252   int temp, fill_value, *fill_ptr;
15253   long max_alignment = 28;
15254
15255   /* o Note that the assembler pulls down any immediately preceding label
15256        to the aligned address.
15257      o It's not documented but auto alignment is reinstated by
15258        a .align pseudo instruction.
15259      o Note also that after auto alignment is turned off the mips assembler
15260        issues an error on attempt to assemble an improperly aligned data item.
15261        We don't.  */
15262
15263   temp = get_absolute_expression ();
15264   if (temp > max_alignment)
15265     as_bad (_("alignment too large, %d assumed"), temp = max_alignment);
15266   else if (temp < 0)
15267     {
15268       as_warn (_("alignment negative, 0 assumed"));
15269       temp = 0;
15270     }
15271   if (*input_line_pointer == ',')
15272     {
15273       ++input_line_pointer;
15274       fill_value = get_absolute_expression ();
15275       fill_ptr = &fill_value;
15276     }
15277   else
15278     fill_ptr = 0;
15279   if (temp)
15280     {
15281       segment_info_type *si = seg_info (now_seg);
15282       struct insn_label_list *l = si->label_list;
15283       /* Auto alignment should be switched on by next section change.  */
15284       auto_align = 1;
15285       mips_align (temp, fill_ptr, l);
15286     }
15287   else
15288     {
15289       auto_align = 0;
15290     }
15291
15292   demand_empty_rest_of_line ();
15293 }
15294
15295 static void
15296 s_change_sec (int sec)
15297 {
15298   segT seg;
15299
15300   /* The ELF backend needs to know that we are changing sections, so
15301      that .previous works correctly.  We could do something like check
15302      for an obj_section_change_hook macro, but that might be confusing
15303      as it would not be appropriate to use it in the section changing
15304      functions in read.c, since obj-elf.c intercepts those.  FIXME:
15305      This should be cleaner, somehow.  */
15306   obj_elf_section_change_hook ();
15307
15308   mips_emit_delays ();
15309
15310   switch (sec)
15311     {
15312     case 't':
15313       s_text (0);
15314       break;
15315     case 'd':
15316       s_data (0);
15317       break;
15318     case 'b':
15319       subseg_set (bss_section, (subsegT) get_absolute_expression ());
15320       demand_empty_rest_of_line ();
15321       break;
15322
15323     case 'r':
15324       seg = subseg_new (RDATA_SECTION_NAME,
15325                         (subsegT) get_absolute_expression ());
15326       bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
15327                                               | SEC_READONLY | SEC_RELOC
15328                                               | SEC_DATA));
15329       if (strncmp (TARGET_OS, "elf", 3) != 0)
15330         record_alignment (seg, 4);
15331       demand_empty_rest_of_line ();
15332       break;
15333
15334     case 's':
15335       seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
15336       bfd_set_section_flags (stdoutput, seg,
15337                              SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
15338       if (strncmp (TARGET_OS, "elf", 3) != 0)
15339         record_alignment (seg, 4);
15340       demand_empty_rest_of_line ();
15341       break;
15342
15343     case 'B':
15344       seg = subseg_new (".sbss", (subsegT) get_absolute_expression ());
15345       bfd_set_section_flags (stdoutput, seg, SEC_ALLOC);
15346       if (strncmp (TARGET_OS, "elf", 3) != 0)
15347         record_alignment (seg, 4);
15348       demand_empty_rest_of_line ();
15349       break;
15350     }
15351
15352   auto_align = 1;
15353 }
15354
15355 void
15356 s_change_section (int ignore ATTRIBUTE_UNUSED)
15357 {
15358   char *saved_ilp;
15359   char *section_name;
15360   char c, endc;
15361   char next_c = 0;
15362   int section_type;
15363   int section_flag;
15364   int section_entry_size;
15365   int section_alignment;
15366
15367   saved_ilp = input_line_pointer;
15368   endc = get_symbol_name (&section_name);
15369   c = (endc == '"' ? input_line_pointer[1] : endc);
15370   if (c)
15371     next_c = input_line_pointer [(endc == '"' ? 2 : 1)];
15372
15373   /* Do we have .section Name<,"flags">?  */
15374   if (c != ',' || (c == ',' && next_c == '"'))
15375     {
15376       /* Just after name is now '\0'.  */
15377       (void) restore_line_pointer (endc);
15378       input_line_pointer = saved_ilp;
15379       obj_elf_section (ignore);
15380       return;
15381     }
15382
15383   section_name = xstrdup (section_name);
15384   c = restore_line_pointer (endc);
15385
15386   input_line_pointer++;
15387
15388   /* Do we have .section Name<,type><,flag><,entry_size><,alignment>  */
15389   if (c == ',')
15390     section_type = get_absolute_expression ();
15391   else
15392     section_type = 0;
15393
15394   if (*input_line_pointer++ == ',')
15395     section_flag = get_absolute_expression ();
15396   else
15397     section_flag = 0;
15398
15399   if (*input_line_pointer++ == ',')
15400     section_entry_size = get_absolute_expression ();
15401   else
15402     section_entry_size = 0;
15403
15404   if (*input_line_pointer++ == ',')
15405     section_alignment = get_absolute_expression ();
15406   else
15407     section_alignment = 0;
15408
15409   /* FIXME: really ignore?  */
15410   (void) section_alignment;
15411
15412   /* When using the generic form of .section (as implemented by obj-elf.c),
15413      there's no way to set the section type to SHT_MIPS_DWARF.  Users have
15414      traditionally had to fall back on the more common @progbits instead.
15415
15416      There's nothing really harmful in this, since bfd will correct
15417      SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file.  But it
15418      means that, for backwards compatibility, the special_section entries
15419      for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
15420
15421      Even so, we shouldn't force users of the MIPS .section syntax to
15422      incorrectly label the sections as SHT_PROGBITS.  The best compromise
15423      seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
15424      generic type-checking code.  */
15425   if (section_type == SHT_MIPS_DWARF)
15426     section_type = SHT_PROGBITS;
15427
15428   obj_elf_change_section (section_name, section_type, section_flag,
15429                           section_entry_size, 0, 0, 0);
15430
15431   if (now_seg->name != section_name)
15432     free (section_name);
15433 }
15434
15435 void
15436 mips_enable_auto_align (void)
15437 {
15438   auto_align = 1;
15439 }
15440
15441 static void
15442 s_cons (int log_size)
15443 {
15444   segment_info_type *si = seg_info (now_seg);
15445   struct insn_label_list *l = si->label_list;
15446
15447   mips_emit_delays ();
15448   if (log_size > 0 && auto_align)
15449     mips_align (log_size, 0, l);
15450   cons (1 << log_size);
15451   mips_clear_insn_labels ();
15452 }
15453
15454 static void
15455 s_float_cons (int type)
15456 {
15457   segment_info_type *si = seg_info (now_seg);
15458   struct insn_label_list *l = si->label_list;
15459
15460   mips_emit_delays ();
15461
15462   if (auto_align)
15463     {
15464       if (type == 'd')
15465         mips_align (3, 0, l);
15466       else
15467         mips_align (2, 0, l);
15468     }
15469
15470   float_cons (type);
15471   mips_clear_insn_labels ();
15472 }
15473
15474 /* Handle .globl.  We need to override it because on Irix 5 you are
15475    permitted to say
15476        .globl foo .text
15477    where foo is an undefined symbol, to mean that foo should be
15478    considered to be the address of a function.  */
15479
15480 static void
15481 s_mips_globl (int x ATTRIBUTE_UNUSED)
15482 {
15483   char *name;
15484   int c;
15485   symbolS *symbolP;
15486   flagword flag;
15487
15488   do
15489     {
15490       c = get_symbol_name (&name);
15491       symbolP = symbol_find_or_make (name);
15492       S_SET_EXTERNAL (symbolP);
15493
15494       *input_line_pointer = c;
15495       SKIP_WHITESPACE_AFTER_NAME ();
15496
15497       /* On Irix 5, every global symbol that is not explicitly labelled as
15498          being a function is apparently labelled as being an object.  */
15499       flag = BSF_OBJECT;
15500
15501       if (!is_end_of_line[(unsigned char) *input_line_pointer]
15502           && (*input_line_pointer != ','))
15503         {
15504           char *secname;
15505           asection *sec;
15506
15507           c = get_symbol_name (&secname);
15508           sec = bfd_get_section_by_name (stdoutput, secname);
15509           if (sec == NULL)
15510             as_bad (_("%s: no such section"), secname);
15511           (void) restore_line_pointer (c);
15512
15513           if (sec != NULL && (sec->flags & SEC_CODE) != 0)
15514             flag = BSF_FUNCTION;
15515         }
15516
15517       symbol_get_bfdsym (symbolP)->flags |= flag;
15518
15519       c = *input_line_pointer;
15520       if (c == ',')
15521         {
15522           input_line_pointer++;
15523           SKIP_WHITESPACE ();
15524           if (is_end_of_line[(unsigned char) *input_line_pointer])
15525             c = '\n';
15526         }
15527     }
15528   while (c == ',');
15529
15530   demand_empty_rest_of_line ();
15531 }
15532
15533 static void
15534 s_option (int x ATTRIBUTE_UNUSED)
15535 {
15536   char *opt;
15537   char c;
15538
15539   c = get_symbol_name (&opt);
15540
15541   if (*opt == 'O')
15542     {
15543       /* FIXME: What does this mean?  */
15544     }
15545   else if (strncmp (opt, "pic", 3) == 0 && ISDIGIT (opt[3]) && opt[4] == '\0')
15546     {
15547       int i;
15548
15549       i = atoi (opt + 3);
15550       if (i != 0 && i != 2)
15551         as_bad (_(".option pic%d not supported"), i);
15552       else if (mips_pic == VXWORKS_PIC)
15553         as_bad (_(".option pic%d not supported in VxWorks PIC mode"), i);
15554       else if (i == 0)
15555         mips_pic = NO_PIC;
15556       else if (i == 2)
15557         {
15558           mips_pic = SVR4_PIC;
15559           mips_abicalls = TRUE;
15560         }
15561
15562       if (mips_pic == SVR4_PIC)
15563         {
15564           if (g_switch_seen && g_switch_value != 0)
15565             as_warn (_("-G may not be used with SVR4 PIC code"));
15566           g_switch_value = 0;
15567           bfd_set_gp_size (stdoutput, 0);
15568         }
15569     }
15570   else
15571     as_warn (_("unrecognized option \"%s\""), opt);
15572
15573   (void) restore_line_pointer (c);
15574   demand_empty_rest_of_line ();
15575 }
15576
15577 /* This structure is used to hold a stack of .set values.  */
15578
15579 struct mips_option_stack
15580 {
15581   struct mips_option_stack *next;
15582   struct mips_set_options options;
15583 };
15584
15585 static struct mips_option_stack *mips_opts_stack;
15586
15587 /* Return status for .set/.module option handling.  */
15588
15589 enum code_option_type
15590 {
15591   /* Unrecognized option.  */
15592   OPTION_TYPE_BAD = -1,
15593
15594   /* Ordinary option.  */
15595   OPTION_TYPE_NORMAL,
15596
15597   /* ISA changing option.  */
15598   OPTION_TYPE_ISA
15599 };
15600
15601 /* Handle common .set/.module options.  Return status indicating option
15602    type.  */
15603
15604 static enum code_option_type
15605 parse_code_option (char * name)
15606 {
15607   bfd_boolean isa_set = FALSE;
15608   const struct mips_ase *ase;
15609
15610   if (strncmp (name, "at=", 3) == 0)
15611     {
15612       char *s = name + 3;
15613
15614       if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at))
15615         as_bad (_("unrecognized register name `%s'"), s);
15616     }
15617   else if (strcmp (name, "at") == 0)
15618     mips_opts.at = ATREG;
15619   else if (strcmp (name, "noat") == 0)
15620     mips_opts.at = ZERO;
15621   else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
15622     mips_opts.nomove = 0;
15623   else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
15624     mips_opts.nomove = 1;
15625   else if (strcmp (name, "bopt") == 0)
15626     mips_opts.nobopt = 0;
15627   else if (strcmp (name, "nobopt") == 0)
15628     mips_opts.nobopt = 1;
15629   else if (strcmp (name, "gp=32") == 0)
15630     mips_opts.gp = 32;
15631   else if (strcmp (name, "gp=64") == 0)
15632     mips_opts.gp = 64;
15633   else if (strcmp (name, "fp=32") == 0)
15634     mips_opts.fp = 32;
15635   else if (strcmp (name, "fp=xx") == 0)
15636     mips_opts.fp = 0;
15637   else if (strcmp (name, "fp=64") == 0)
15638     mips_opts.fp = 64;
15639   else if (strcmp (name, "softfloat") == 0)
15640     mips_opts.soft_float = 1;
15641   else if (strcmp (name, "hardfloat") == 0)
15642     mips_opts.soft_float = 0;
15643   else if (strcmp (name, "singlefloat") == 0)
15644     mips_opts.single_float = 1;
15645   else if (strcmp (name, "doublefloat") == 0)
15646     mips_opts.single_float = 0;
15647   else if (strcmp (name, "nooddspreg") == 0)
15648     mips_opts.oddspreg = 0;
15649   else if (strcmp (name, "oddspreg") == 0)
15650     mips_opts.oddspreg = 1;
15651   else if (strcmp (name, "mips16") == 0
15652            || strcmp (name, "MIPS-16") == 0)
15653     mips_opts.mips16 = 1;
15654   else if (strcmp (name, "nomips16") == 0
15655            || strcmp (name, "noMIPS-16") == 0)
15656     mips_opts.mips16 = 0;
15657   else if (strcmp (name, "micromips") == 0)
15658     mips_opts.micromips = 1;
15659   else if (strcmp (name, "nomicromips") == 0)
15660     mips_opts.micromips = 0;
15661   else if (name[0] == 'n'
15662            && name[1] == 'o'
15663            && (ase = mips_lookup_ase (name + 2)))
15664     mips_set_ase (ase, &mips_opts, FALSE);
15665   else if ((ase = mips_lookup_ase (name)))
15666     mips_set_ase (ase, &mips_opts, TRUE);
15667   else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
15668     {
15669       /* Permit the user to change the ISA and architecture on the fly.
15670          Needless to say, misuse can cause serious problems.  */
15671       if (strncmp (name, "arch=", 5) == 0)
15672         {
15673           const struct mips_cpu_info *p;
15674
15675           p = mips_parse_cpu ("internal use", name + 5);
15676           if (!p)
15677             as_bad (_("unknown architecture %s"), name + 5);
15678           else
15679             {
15680               mips_opts.arch = p->cpu;
15681               mips_opts.isa = p->isa;
15682               isa_set = TRUE;
15683             }
15684         }
15685       else if (strncmp (name, "mips", 4) == 0)
15686         {
15687           const struct mips_cpu_info *p;
15688
15689           p = mips_parse_cpu ("internal use", name);
15690           if (!p)
15691             as_bad (_("unknown ISA level %s"), name + 4);
15692           else
15693             {
15694               mips_opts.arch = p->cpu;
15695               mips_opts.isa = p->isa;
15696               isa_set = TRUE;
15697             }
15698         }
15699       else
15700         as_bad (_("unknown ISA or architecture %s"), name);
15701     }
15702   else if (strcmp (name, "autoextend") == 0)
15703     mips_opts.noautoextend = 0;
15704   else if (strcmp (name, "noautoextend") == 0)
15705     mips_opts.noautoextend = 1;
15706   else if (strcmp (name, "insn32") == 0)
15707     mips_opts.insn32 = TRUE;
15708   else if (strcmp (name, "noinsn32") == 0)
15709     mips_opts.insn32 = FALSE;
15710   else if (strcmp (name, "sym32") == 0)
15711     mips_opts.sym32 = TRUE;
15712   else if (strcmp (name, "nosym32") == 0)
15713     mips_opts.sym32 = FALSE;
15714   else
15715     return OPTION_TYPE_BAD;
15716
15717   return isa_set ? OPTION_TYPE_ISA : OPTION_TYPE_NORMAL;
15718 }
15719
15720 /* Handle the .set pseudo-op.  */
15721
15722 static void
15723 s_mipsset (int x ATTRIBUTE_UNUSED)
15724 {
15725   enum code_option_type type = OPTION_TYPE_NORMAL;
15726   char *name = input_line_pointer, ch;
15727
15728   file_mips_check_options ();
15729
15730   while (!is_end_of_line[(unsigned char) *input_line_pointer])
15731     ++input_line_pointer;
15732   ch = *input_line_pointer;
15733   *input_line_pointer = '\0';
15734
15735   if (strchr (name, ','))
15736     {
15737       /* Generic ".set" directive; use the generic handler.  */
15738       *input_line_pointer = ch;
15739       input_line_pointer = name;
15740       s_set (0);
15741       return;
15742     }
15743
15744   if (strcmp (name, "reorder") == 0)
15745     {
15746       if (mips_opts.noreorder)
15747         end_noreorder ();
15748     }
15749   else if (strcmp (name, "noreorder") == 0)
15750     {
15751       if (!mips_opts.noreorder)
15752         start_noreorder ();
15753     }
15754   else if (strcmp (name, "macro") == 0)
15755     mips_opts.warn_about_macros = 0;
15756   else if (strcmp (name, "nomacro") == 0)
15757     {
15758       if (mips_opts.noreorder == 0)
15759         as_bad (_("`noreorder' must be set before `nomacro'"));
15760       mips_opts.warn_about_macros = 1;
15761     }
15762   else if (strcmp (name, "gp=default") == 0)
15763     mips_opts.gp = file_mips_opts.gp;
15764   else if (strcmp (name, "fp=default") == 0)
15765     mips_opts.fp = file_mips_opts.fp;
15766   else if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
15767     {
15768       mips_opts.isa = file_mips_opts.isa;
15769       mips_opts.arch = file_mips_opts.arch;
15770       mips_opts.gp = file_mips_opts.gp;
15771       mips_opts.fp = file_mips_opts.fp;
15772     }
15773   else if (strcmp (name, "push") == 0)
15774     {
15775       struct mips_option_stack *s;
15776
15777       s = XNEW (struct mips_option_stack);
15778       s->next = mips_opts_stack;
15779       s->options = mips_opts;
15780       mips_opts_stack = s;
15781     }
15782   else if (strcmp (name, "pop") == 0)
15783     {
15784       struct mips_option_stack *s;
15785
15786       s = mips_opts_stack;
15787       if (s == NULL)
15788         as_bad (_(".set pop with no .set push"));
15789       else
15790         {
15791           /* If we're changing the reorder mode we need to handle
15792              delay slots correctly.  */
15793           if (s->options.noreorder && ! mips_opts.noreorder)
15794             start_noreorder ();
15795           else if (! s->options.noreorder && mips_opts.noreorder)
15796             end_noreorder ();
15797
15798           mips_opts = s->options;
15799           mips_opts_stack = s->next;
15800           free (s);
15801         }
15802     }
15803   else
15804     {
15805       type = parse_code_option (name);
15806       if (type == OPTION_TYPE_BAD)
15807         as_warn (_("tried to set unrecognized symbol: %s\n"), name);
15808     }
15809
15810   /* The use of .set [arch|cpu]= historically 'fixes' the width of gp and fp
15811      registers based on what is supported by the arch/cpu.  */
15812   if (type == OPTION_TYPE_ISA)
15813     {
15814       switch (mips_opts.isa)
15815         {
15816         case 0:
15817           break;
15818         case ISA_MIPS1:
15819           /* MIPS I cannot support FPXX.  */
15820           mips_opts.fp = 32;
15821           /* fall-through.  */
15822         case ISA_MIPS2:
15823         case ISA_MIPS32:
15824         case ISA_MIPS32R2:
15825         case ISA_MIPS32R3:
15826         case ISA_MIPS32R5:
15827           mips_opts.gp = 32;
15828           if (mips_opts.fp != 0)
15829             mips_opts.fp = 32;
15830           break;
15831         case ISA_MIPS32R6:
15832           mips_opts.gp = 32;
15833           mips_opts.fp = 64;
15834           break;
15835         case ISA_MIPS3:
15836         case ISA_MIPS4:
15837         case ISA_MIPS5:
15838         case ISA_MIPS64:
15839         case ISA_MIPS64R2:
15840         case ISA_MIPS64R3:
15841         case ISA_MIPS64R5:
15842         case ISA_MIPS64R6:
15843           mips_opts.gp = 64;
15844           if (mips_opts.fp != 0)
15845             {
15846               if (mips_opts.arch == CPU_R5900)
15847                 mips_opts.fp = 32;
15848               else
15849                 mips_opts.fp = 64;
15850             }
15851           break;
15852         default:
15853           as_bad (_("unknown ISA level %s"), name + 4);
15854           break;
15855         }
15856     }
15857
15858   mips_check_options (&mips_opts, FALSE);
15859
15860   mips_check_isa_supports_ases ();
15861   *input_line_pointer = ch;
15862   demand_empty_rest_of_line ();
15863 }
15864
15865 /* Handle the .module pseudo-op.  */
15866
15867 static void
15868 s_module (int ignore ATTRIBUTE_UNUSED)
15869 {
15870   char *name = input_line_pointer, ch;
15871
15872   while (!is_end_of_line[(unsigned char) *input_line_pointer])
15873     ++input_line_pointer;
15874   ch = *input_line_pointer;
15875   *input_line_pointer = '\0';
15876
15877   if (!file_mips_opts_checked)
15878     {
15879       if (parse_code_option (name) == OPTION_TYPE_BAD)
15880         as_bad (_(".module used with unrecognized symbol: %s\n"), name);
15881
15882       /* Update module level settings from mips_opts.  */
15883       file_mips_opts = mips_opts;
15884     }
15885   else
15886     as_bad (_(".module is not permitted after generating code"));
15887
15888   *input_line_pointer = ch;
15889   demand_empty_rest_of_line ();
15890 }
15891
15892 /* Handle the .abicalls pseudo-op.  I believe this is equivalent to
15893    .option pic2.  It means to generate SVR4 PIC calls.  */
15894
15895 static void
15896 s_abicalls (int ignore ATTRIBUTE_UNUSED)
15897 {
15898   mips_pic = SVR4_PIC;
15899   mips_abicalls = TRUE;
15900
15901   if (g_switch_seen && g_switch_value != 0)
15902     as_warn (_("-G may not be used with SVR4 PIC code"));
15903   g_switch_value = 0;
15904
15905   bfd_set_gp_size (stdoutput, 0);
15906   demand_empty_rest_of_line ();
15907 }
15908
15909 /* Handle the .cpload pseudo-op.  This is used when generating SVR4
15910    PIC code.  It sets the $gp register for the function based on the
15911    function address, which is in the register named in the argument.
15912    This uses a relocation against _gp_disp, which is handled specially
15913    by the linker.  The result is:
15914         lui     $gp,%hi(_gp_disp)
15915         addiu   $gp,$gp,%lo(_gp_disp)
15916         addu    $gp,$gp,.cpload argument
15917    The .cpload argument is normally $25 == $t9.
15918
15919    The -mno-shared option changes this to:
15920         lui     $gp,%hi(__gnu_local_gp)
15921         addiu   $gp,$gp,%lo(__gnu_local_gp)
15922    and the argument is ignored.  This saves an instruction, but the
15923    resulting code is not position independent; it uses an absolute
15924    address for __gnu_local_gp.  Thus code assembled with -mno-shared
15925    can go into an ordinary executable, but not into a shared library.  */
15926
15927 static void
15928 s_cpload (int ignore ATTRIBUTE_UNUSED)
15929 {
15930   expressionS ex;
15931   int reg;
15932   int in_shared;
15933
15934   file_mips_check_options ();
15935
15936   /* If we are not generating SVR4 PIC code, or if this is NewABI code,
15937      .cpload is ignored.  */
15938   if (mips_pic != SVR4_PIC || HAVE_NEWABI)
15939     {
15940       s_ignore (0);
15941       return;
15942     }
15943
15944   if (mips_opts.mips16)
15945     {
15946       as_bad (_("%s not supported in MIPS16 mode"), ".cpload");
15947       ignore_rest_of_line ();
15948       return;
15949     }
15950
15951   /* .cpload should be in a .set noreorder section.  */
15952   if (mips_opts.noreorder == 0)
15953     as_warn (_(".cpload not in noreorder section"));
15954
15955   reg = tc_get_register (0);
15956
15957   /* If we need to produce a 64-bit address, we are better off using
15958      the default instruction sequence.  */
15959   in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
15960
15961   ex.X_op = O_symbol;
15962   ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
15963                                          "__gnu_local_gp");
15964   ex.X_op_symbol = NULL;
15965   ex.X_add_number = 0;
15966
15967   /* In ELF, this symbol is implicitly an STT_OBJECT symbol.  */
15968   symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
15969
15970   mips_mark_labels ();
15971   mips_assembling_insn = TRUE;
15972
15973   macro_start ();
15974   macro_build_lui (&ex, mips_gp_register);
15975   macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
15976                mips_gp_register, BFD_RELOC_LO16);
15977   if (in_shared)
15978     macro_build (NULL, "addu", "d,v,t", mips_gp_register,
15979                  mips_gp_register, reg);
15980   macro_end ();
15981
15982   mips_assembling_insn = FALSE;
15983   demand_empty_rest_of_line ();
15984 }
15985
15986 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code.  The syntax is:
15987      .cpsetup $reg1, offset|$reg2, label
15988
15989    If offset is given, this results in:
15990      sd         $gp, offset($sp)
15991      lui        $gp, %hi(%neg(%gp_rel(label)))
15992      addiu      $gp, $gp, %lo(%neg(%gp_rel(label)))
15993      daddu      $gp, $gp, $reg1
15994
15995    If $reg2 is given, this results in:
15996      or         $reg2, $gp, $0
15997      lui        $gp, %hi(%neg(%gp_rel(label)))
15998      addiu      $gp, $gp, %lo(%neg(%gp_rel(label)))
15999      daddu      $gp, $gp, $reg1
16000    $reg1 is normally $25 == $t9.
16001
16002    The -mno-shared option replaces the last three instructions with
16003         lui     $gp,%hi(_gp)
16004         addiu   $gp,$gp,%lo(_gp)  */
16005
16006 static void
16007 s_cpsetup (int ignore ATTRIBUTE_UNUSED)
16008 {
16009   expressionS ex_off;
16010   expressionS ex_sym;
16011   int reg1;
16012
16013   file_mips_check_options ();
16014
16015   /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
16016      We also need NewABI support.  */
16017   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16018     {
16019       s_ignore (0);
16020       return;
16021     }
16022
16023   if (mips_opts.mips16)
16024     {
16025       as_bad (_("%s not supported in MIPS16 mode"), ".cpsetup");
16026       ignore_rest_of_line ();
16027       return;
16028     }
16029
16030   reg1 = tc_get_register (0);
16031   SKIP_WHITESPACE ();
16032   if (*input_line_pointer != ',')
16033     {
16034       as_bad (_("missing argument separator ',' for .cpsetup"));
16035       return;
16036     }
16037   else
16038     ++input_line_pointer;
16039   SKIP_WHITESPACE ();
16040   if (*input_line_pointer == '$')
16041     {
16042       mips_cpreturn_register = tc_get_register (0);
16043       mips_cpreturn_offset = -1;
16044     }
16045   else
16046     {
16047       mips_cpreturn_offset = get_absolute_expression ();
16048       mips_cpreturn_register = -1;
16049     }
16050   SKIP_WHITESPACE ();
16051   if (*input_line_pointer != ',')
16052     {
16053       as_bad (_("missing argument separator ',' for .cpsetup"));
16054       return;
16055     }
16056   else
16057     ++input_line_pointer;
16058   SKIP_WHITESPACE ();
16059   expression (&ex_sym);
16060
16061   mips_mark_labels ();
16062   mips_assembling_insn = TRUE;
16063
16064   macro_start ();
16065   if (mips_cpreturn_register == -1)
16066     {
16067       ex_off.X_op = O_constant;
16068       ex_off.X_add_symbol = NULL;
16069       ex_off.X_op_symbol = NULL;
16070       ex_off.X_add_number = mips_cpreturn_offset;
16071
16072       macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
16073                    BFD_RELOC_LO16, SP);
16074     }
16075   else
16076     move_register (mips_cpreturn_register, mips_gp_register);
16077
16078   if (mips_in_shared || HAVE_64BIT_SYMBOLS)
16079     {
16080       macro_build (&ex_sym, "lui", LUI_FMT, mips_gp_register,
16081                    -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
16082                    BFD_RELOC_HI16_S);
16083
16084       macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
16085                    mips_gp_register, -1, BFD_RELOC_GPREL16,
16086                    BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
16087
16088       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
16089                    mips_gp_register, reg1);
16090     }
16091   else
16092     {
16093       expressionS ex;
16094
16095       ex.X_op = O_symbol;
16096       ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
16097       ex.X_op_symbol = NULL;
16098       ex.X_add_number = 0;
16099
16100       /* In ELF, this symbol is implicitly an STT_OBJECT symbol.  */
16101       symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
16102
16103       macro_build_lui (&ex, mips_gp_register);
16104       macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
16105                    mips_gp_register, BFD_RELOC_LO16);
16106     }
16107
16108   macro_end ();
16109
16110   mips_assembling_insn = FALSE;
16111   demand_empty_rest_of_line ();
16112 }
16113
16114 static void
16115 s_cplocal (int ignore ATTRIBUTE_UNUSED)
16116 {
16117   file_mips_check_options ();
16118
16119   /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
16120      .cplocal is ignored.  */
16121   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16122     {
16123       s_ignore (0);
16124       return;
16125     }
16126
16127   if (mips_opts.mips16)
16128     {
16129       as_bad (_("%s not supported in MIPS16 mode"), ".cplocal");
16130       ignore_rest_of_line ();
16131       return;
16132     }
16133
16134   mips_gp_register = tc_get_register (0);
16135   demand_empty_rest_of_line ();
16136 }
16137
16138 /* Handle the .cprestore pseudo-op.  This stores $gp into a given
16139    offset from $sp.  The offset is remembered, and after making a PIC
16140    call $gp is restored from that location.  */
16141
16142 static void
16143 s_cprestore (int ignore ATTRIBUTE_UNUSED)
16144 {
16145   expressionS ex;
16146
16147   file_mips_check_options ();
16148
16149   /* If we are not generating SVR4 PIC code, or if this is NewABI code,
16150      .cprestore is ignored.  */
16151   if (mips_pic != SVR4_PIC || HAVE_NEWABI)
16152     {
16153       s_ignore (0);
16154       return;
16155     }
16156
16157   if (mips_opts.mips16)
16158     {
16159       as_bad (_("%s not supported in MIPS16 mode"), ".cprestore");
16160       ignore_rest_of_line ();
16161       return;
16162     }
16163
16164   mips_cprestore_offset = get_absolute_expression ();
16165   mips_cprestore_valid = 1;
16166
16167   ex.X_op = O_constant;
16168   ex.X_add_symbol = NULL;
16169   ex.X_op_symbol = NULL;
16170   ex.X_add_number = mips_cprestore_offset;
16171
16172   mips_mark_labels ();
16173   mips_assembling_insn = TRUE;
16174
16175   macro_start ();
16176   macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
16177                                 SP, HAVE_64BIT_ADDRESSES);
16178   macro_end ();
16179
16180   mips_assembling_insn = FALSE;
16181   demand_empty_rest_of_line ();
16182 }
16183
16184 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
16185    was given in the preceding .cpsetup, it results in:
16186      ld         $gp, offset($sp)
16187
16188    If a register $reg2 was given there, it results in:
16189      or         $gp, $reg2, $0  */
16190
16191 static void
16192 s_cpreturn (int ignore ATTRIBUTE_UNUSED)
16193 {
16194   expressionS ex;
16195
16196   file_mips_check_options ();
16197
16198   /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
16199      We also need NewABI support.  */
16200   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16201     {
16202       s_ignore (0);
16203       return;
16204     }
16205
16206   if (mips_opts.mips16)
16207     {
16208       as_bad (_("%s not supported in MIPS16 mode"), ".cpreturn");
16209       ignore_rest_of_line ();
16210       return;
16211     }
16212
16213   mips_mark_labels ();
16214   mips_assembling_insn = TRUE;
16215
16216   macro_start ();
16217   if (mips_cpreturn_register == -1)
16218     {
16219       ex.X_op = O_constant;
16220       ex.X_add_symbol = NULL;
16221       ex.X_op_symbol = NULL;
16222       ex.X_add_number = mips_cpreturn_offset;
16223
16224       macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
16225     }
16226   else
16227     move_register (mips_gp_register, mips_cpreturn_register);
16228
16229   macro_end ();
16230
16231   mips_assembling_insn = FALSE;
16232   demand_empty_rest_of_line ();
16233 }
16234
16235 /* Handle a .dtprelword, .dtpreldword, .tprelword, or .tpreldword
16236    pseudo-op; DIRSTR says which. The pseudo-op generates a BYTES-size
16237    DTP- or TP-relative relocation of type RTYPE, for use in either DWARF
16238    debug information or MIPS16 TLS.  */
16239
16240 static void
16241 s_tls_rel_directive (const size_t bytes, const char *dirstr,
16242                      bfd_reloc_code_real_type rtype)
16243 {
16244   expressionS ex;
16245   char *p;
16246
16247   expression (&ex);
16248
16249   if (ex.X_op != O_symbol)
16250     {
16251       as_bad (_("unsupported use of %s"), dirstr);
16252       ignore_rest_of_line ();
16253     }
16254
16255   p = frag_more (bytes);
16256   md_number_to_chars (p, 0, bytes);
16257   fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE, rtype);
16258   demand_empty_rest_of_line ();
16259   mips_clear_insn_labels ();
16260 }
16261
16262 /* Handle .dtprelword.  */
16263
16264 static void
16265 s_dtprelword (int ignore ATTRIBUTE_UNUSED)
16266 {
16267   s_tls_rel_directive (4, ".dtprelword", BFD_RELOC_MIPS_TLS_DTPREL32);
16268 }
16269
16270 /* Handle .dtpreldword.  */
16271
16272 static void
16273 s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
16274 {
16275   s_tls_rel_directive (8, ".dtpreldword", BFD_RELOC_MIPS_TLS_DTPREL64);
16276 }
16277
16278 /* Handle .tprelword.  */
16279
16280 static void
16281 s_tprelword (int ignore ATTRIBUTE_UNUSED)
16282 {
16283   s_tls_rel_directive (4, ".tprelword", BFD_RELOC_MIPS_TLS_TPREL32);
16284 }
16285
16286 /* Handle .tpreldword.  */
16287
16288 static void
16289 s_tpreldword (int ignore ATTRIBUTE_UNUSED)
16290 {
16291   s_tls_rel_directive (8, ".tpreldword", BFD_RELOC_MIPS_TLS_TPREL64);
16292 }
16293
16294 /* Handle the .gpvalue pseudo-op.  This is used when generating NewABI PIC
16295    code.  It sets the offset to use in gp_rel relocations.  */
16296
16297 static void
16298 s_gpvalue (int ignore ATTRIBUTE_UNUSED)
16299 {
16300   /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
16301      We also need NewABI support.  */
16302   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16303     {
16304       s_ignore (0);
16305       return;
16306     }
16307
16308   mips_gprel_offset = get_absolute_expression ();
16309
16310   demand_empty_rest_of_line ();
16311 }
16312
16313 /* Handle the .gpword pseudo-op.  This is used when generating PIC
16314    code.  It generates a 32 bit GP relative reloc.  */
16315
16316 static void
16317 s_gpword (int ignore ATTRIBUTE_UNUSED)
16318 {
16319   segment_info_type *si;
16320   struct insn_label_list *l;
16321   expressionS ex;
16322   char *p;
16323
16324   /* When not generating PIC code, this is treated as .word.  */
16325   if (mips_pic != SVR4_PIC)
16326     {
16327       s_cons (2);
16328       return;
16329     }
16330
16331   si = seg_info (now_seg);
16332   l = si->label_list;
16333   mips_emit_delays ();
16334   if (auto_align)
16335     mips_align (2, 0, l);
16336
16337   expression (&ex);
16338   mips_clear_insn_labels ();
16339
16340   if (ex.X_op != O_symbol || ex.X_add_number != 0)
16341     {
16342       as_bad (_("unsupported use of .gpword"));
16343       ignore_rest_of_line ();
16344     }
16345
16346   p = frag_more (4);
16347   md_number_to_chars (p, 0, 4);
16348   fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
16349                BFD_RELOC_GPREL32);
16350
16351   demand_empty_rest_of_line ();
16352 }
16353
16354 static void
16355 s_gpdword (int ignore ATTRIBUTE_UNUSED)
16356 {
16357   segment_info_type *si;
16358   struct insn_label_list *l;
16359   expressionS ex;
16360   char *p;
16361
16362   /* When not generating PIC code, this is treated as .dword.  */
16363   if (mips_pic != SVR4_PIC)
16364     {
16365       s_cons (3);
16366       return;
16367     }
16368
16369   si = seg_info (now_seg);
16370   l = si->label_list;
16371   mips_emit_delays ();
16372   if (auto_align)
16373     mips_align (3, 0, l);
16374
16375   expression (&ex);
16376   mips_clear_insn_labels ();
16377
16378   if (ex.X_op != O_symbol || ex.X_add_number != 0)
16379     {
16380       as_bad (_("unsupported use of .gpdword"));
16381       ignore_rest_of_line ();
16382     }
16383
16384   p = frag_more (8);
16385   md_number_to_chars (p, 0, 8);
16386   fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
16387                BFD_RELOC_GPREL32)->fx_tcbit = 1;
16388
16389   /* GPREL32 composed with 64 gives a 64-bit GP offset.  */
16390   fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
16391            FALSE, BFD_RELOC_64)->fx_tcbit = 1;
16392
16393   demand_empty_rest_of_line ();
16394 }
16395
16396 /* Handle the .ehword pseudo-op.  This is used when generating unwinding
16397    tables.  It generates a R_MIPS_EH reloc.  */
16398
16399 static void
16400 s_ehword (int ignore ATTRIBUTE_UNUSED)
16401 {
16402   expressionS ex;
16403   char *p;
16404
16405   mips_emit_delays ();
16406
16407   expression (&ex);
16408   mips_clear_insn_labels ();
16409
16410   if (ex.X_op != O_symbol || ex.X_add_number != 0)
16411     {
16412       as_bad (_("unsupported use of .ehword"));
16413       ignore_rest_of_line ();
16414     }
16415
16416   p = frag_more (4);
16417   md_number_to_chars (p, 0, 4);
16418   fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
16419                BFD_RELOC_32_PCREL);
16420
16421   demand_empty_rest_of_line ();
16422 }
16423
16424 /* Handle the .cpadd pseudo-op.  This is used when dealing with switch
16425    tables in SVR4 PIC code.  */
16426
16427 static void
16428 s_cpadd (int ignore ATTRIBUTE_UNUSED)
16429 {
16430   int reg;
16431
16432   file_mips_check_options ();
16433
16434   /* This is ignored when not generating SVR4 PIC code.  */
16435   if (mips_pic != SVR4_PIC)
16436     {
16437       s_ignore (0);
16438       return;
16439     }
16440
16441   mips_mark_labels ();
16442   mips_assembling_insn = TRUE;
16443
16444   /* Add $gp to the register named as an argument.  */
16445   macro_start ();
16446   reg = tc_get_register (0);
16447   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
16448   macro_end ();
16449
16450   mips_assembling_insn = FALSE;
16451   demand_empty_rest_of_line ();
16452 }
16453
16454 /* Handle the .insn pseudo-op.  This marks instruction labels in
16455    mips16/micromips mode.  This permits the linker to handle them specially,
16456    such as generating jalx instructions when needed.  We also make
16457    them odd for the duration of the assembly, in order to generate the
16458    right sort of code.  We will make them even in the adjust_symtab
16459    routine, while leaving them marked.  This is convenient for the
16460    debugger and the disassembler.  The linker knows to make them odd
16461    again.  */
16462
16463 static void
16464 s_insn (int ignore ATTRIBUTE_UNUSED)
16465 {
16466   file_mips_check_options ();
16467   file_ase_mips16 |= mips_opts.mips16;
16468   file_ase_micromips |= mips_opts.micromips;
16469
16470   mips_mark_labels ();
16471
16472   demand_empty_rest_of_line ();
16473 }
16474
16475 /* Handle the .nan pseudo-op.  */
16476
16477 static void
16478 s_nan (int ignore ATTRIBUTE_UNUSED)
16479 {
16480   static const char str_legacy[] = "legacy";
16481   static const char str_2008[] = "2008";
16482   size_t i;
16483
16484   for (i = 0; !is_end_of_line[(unsigned char) input_line_pointer[i]]; i++);
16485
16486   if (i == sizeof (str_2008) - 1
16487       && memcmp (input_line_pointer, str_2008, i) == 0)
16488     mips_nan2008 = 1;
16489   else if (i == sizeof (str_legacy) - 1
16490            && memcmp (input_line_pointer, str_legacy, i) == 0)
16491     {
16492       if (ISA_HAS_LEGACY_NAN (file_mips_opts.isa))
16493         mips_nan2008 = 0;
16494       else
16495         as_bad (_("`%s' does not support legacy NaN"),
16496                   mips_cpu_info_from_isa (file_mips_opts.isa)->name);
16497     }
16498   else
16499     as_bad (_("bad .nan directive"));
16500
16501   input_line_pointer += i;
16502   demand_empty_rest_of_line ();
16503 }
16504
16505 /* Handle a .stab[snd] directive.  Ideally these directives would be
16506    implemented in a transparent way, so that removing them would not
16507    have any effect on the generated instructions.  However, s_stab
16508    internally changes the section, so in practice we need to decide
16509    now whether the preceding label marks compressed code.  We do not
16510    support changing the compression mode of a label after a .stab*
16511    directive, such as in:
16512
16513    foo:
16514         .stabs ...
16515         .set mips16
16516
16517    so the current mode wins.  */
16518
16519 static void
16520 s_mips_stab (int type)
16521 {
16522   mips_mark_labels ();
16523   s_stab (type);
16524 }
16525
16526 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich.  */
16527
16528 static void
16529 s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
16530 {
16531   char *name;
16532   int c;
16533   symbolS *symbolP;
16534   expressionS exp;
16535
16536   c = get_symbol_name (&name);
16537   symbolP = symbol_find_or_make (name);
16538   S_SET_WEAK (symbolP);
16539   *input_line_pointer = c;
16540
16541   SKIP_WHITESPACE_AFTER_NAME ();
16542
16543   if (! is_end_of_line[(unsigned char) *input_line_pointer])
16544     {
16545       if (S_IS_DEFINED (symbolP))
16546         {
16547           as_bad (_("ignoring attempt to redefine symbol %s"),
16548                   S_GET_NAME (symbolP));
16549           ignore_rest_of_line ();
16550           return;
16551         }
16552
16553       if (*input_line_pointer == ',')
16554         {
16555           ++input_line_pointer;
16556           SKIP_WHITESPACE ();
16557         }
16558
16559       expression (&exp);
16560       if (exp.X_op != O_symbol)
16561         {
16562           as_bad (_("bad .weakext directive"));
16563           ignore_rest_of_line ();
16564           return;
16565         }
16566       symbol_set_value_expression (symbolP, &exp);
16567     }
16568
16569   demand_empty_rest_of_line ();
16570 }
16571
16572 /* Parse a register string into a number.  Called from the ECOFF code
16573    to parse .frame.  The argument is non-zero if this is the frame
16574    register, so that we can record it in mips_frame_reg.  */
16575
16576 int
16577 tc_get_register (int frame)
16578 {
16579   unsigned int reg;
16580
16581   SKIP_WHITESPACE ();
16582   if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, &reg))
16583     reg = 0;
16584   if (frame)
16585     {
16586       mips_frame_reg = reg != 0 ? reg : SP;
16587       mips_frame_reg_valid = 1;
16588       mips_cprestore_valid = 0;
16589     }
16590   return reg;
16591 }
16592
16593 valueT
16594 md_section_align (asection *seg, valueT addr)
16595 {
16596   int align = bfd_get_section_alignment (stdoutput, seg);
16597
16598   /* We don't need to align ELF sections to the full alignment.
16599      However, Irix 5 may prefer that we align them at least to a 16
16600      byte boundary.  We don't bother to align the sections if we
16601      are targeted for an embedded system.  */
16602   if (strncmp (TARGET_OS, "elf", 3) == 0)
16603     return addr;
16604   if (align > 4)
16605     align = 4;
16606
16607   return ((addr + (1 << align) - 1) & -(1 << align));
16608 }
16609
16610 /* Utility routine, called from above as well.  If called while the
16611    input file is still being read, it's only an approximation.  (For
16612    example, a symbol may later become defined which appeared to be
16613    undefined earlier.)  */
16614
16615 static int
16616 nopic_need_relax (symbolS *sym, int before_relaxing)
16617 {
16618   if (sym == 0)
16619     return 0;
16620
16621   if (g_switch_value > 0)
16622     {
16623       const char *symname;
16624       int change;
16625
16626       /* Find out whether this symbol can be referenced off the $gp
16627          register.  It can be if it is smaller than the -G size or if
16628          it is in the .sdata or .sbss section.  Certain symbols can
16629          not be referenced off the $gp, although it appears as though
16630          they can.  */
16631       symname = S_GET_NAME (sym);
16632       if (symname != (const char *) NULL
16633           && (strcmp (symname, "eprol") == 0
16634               || strcmp (symname, "etext") == 0
16635               || strcmp (symname, "_gp") == 0
16636               || strcmp (symname, "edata") == 0
16637               || strcmp (symname, "_fbss") == 0
16638               || strcmp (symname, "_fdata") == 0
16639               || strcmp (symname, "_ftext") == 0
16640               || strcmp (symname, "end") == 0
16641               || strcmp (symname, "_gp_disp") == 0))
16642         change = 1;
16643       else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
16644                && (0
16645 #ifndef NO_ECOFF_DEBUGGING
16646                    || (symbol_get_obj (sym)->ecoff_extern_size != 0
16647                        && (symbol_get_obj (sym)->ecoff_extern_size
16648                            <= g_switch_value))
16649 #endif
16650                    /* We must defer this decision until after the whole
16651                       file has been read, since there might be a .extern
16652                       after the first use of this symbol.  */
16653                    || (before_relaxing
16654 #ifndef NO_ECOFF_DEBUGGING
16655                        && symbol_get_obj (sym)->ecoff_extern_size == 0
16656 #endif
16657                        && S_GET_VALUE (sym) == 0)
16658                    || (S_GET_VALUE (sym) != 0
16659                        && S_GET_VALUE (sym) <= g_switch_value)))
16660         change = 0;
16661       else
16662         {
16663           const char *segname;
16664
16665           segname = segment_name (S_GET_SEGMENT (sym));
16666           gas_assert (strcmp (segname, ".lit8") != 0
16667                   && strcmp (segname, ".lit4") != 0);
16668           change = (strcmp (segname, ".sdata") != 0
16669                     && strcmp (segname, ".sbss") != 0
16670                     && strncmp (segname, ".sdata.", 7) != 0
16671                     && strncmp (segname, ".sbss.", 6) != 0
16672                     && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0
16673                     && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
16674         }
16675       return change;
16676     }
16677   else
16678     /* We are not optimizing for the $gp register.  */
16679     return 1;
16680 }
16681
16682
16683 /* Return true if the given symbol should be considered local for SVR4 PIC.  */
16684
16685 static bfd_boolean
16686 pic_need_relax (symbolS *sym, asection *segtype)
16687 {
16688   asection *symsec;
16689
16690   /* Handle the case of a symbol equated to another symbol.  */
16691   while (symbol_equated_reloc_p (sym))
16692     {
16693       symbolS *n;
16694
16695       /* It's possible to get a loop here in a badly written program.  */
16696       n = symbol_get_value_expression (sym)->X_add_symbol;
16697       if (n == sym)
16698         break;
16699       sym = n;
16700     }
16701
16702   if (symbol_section_p (sym))
16703     return TRUE;
16704
16705   symsec = S_GET_SEGMENT (sym);
16706
16707   /* This must duplicate the test in adjust_reloc_syms.  */
16708   return (!bfd_is_und_section (symsec)
16709           && !bfd_is_abs_section (symsec)
16710           && !bfd_is_com_section (symsec)
16711           && !s_is_linkonce (sym, segtype)
16712           /* A global or weak symbol is treated as external.  */
16713           && (!S_IS_WEAK (sym) && !S_IS_EXTERNAL (sym)));
16714 }
16715
16716
16717 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
16718    extended opcode.  SEC is the section the frag is in.  */
16719
16720 static int
16721 mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
16722 {
16723   int type;
16724   const struct mips_int_operand *operand;
16725   offsetT val;
16726   segT symsec;
16727   fragS *sym_frag;
16728
16729   if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
16730     return 0;
16731   if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
16732     return 1;
16733
16734   type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
16735   operand = mips16_immed_operand (type, FALSE);
16736
16737   sym_frag = symbol_get_frag (fragp->fr_symbol);
16738   val = S_GET_VALUE (fragp->fr_symbol);
16739   symsec = S_GET_SEGMENT (fragp->fr_symbol);
16740
16741   if (operand->root.type == OP_PCREL)
16742     {
16743       const struct mips_pcrel_operand *pcrel_op;
16744       addressT addr;
16745       offsetT maxtiny;
16746
16747       /* We won't have the section when we are called from
16748          mips_relax_frag.  However, we will always have been called
16749          from md_estimate_size_before_relax first.  If this is a
16750          branch to a different section, we mark it as such.  If SEC is
16751          NULL, and the frag is not marked, then it must be a branch to
16752          the same section.  */
16753       pcrel_op = (const struct mips_pcrel_operand *) operand;
16754       if (sec == NULL)
16755         {
16756           if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
16757             return 1;
16758         }
16759       else
16760         {
16761           /* Must have been called from md_estimate_size_before_relax.  */
16762           if (symsec != sec)
16763             {
16764               fragp->fr_subtype =
16765                 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
16766
16767               /* FIXME: We should support this, and let the linker
16768                  catch branches and loads that are out of range.  */
16769               as_bad_where (fragp->fr_file, fragp->fr_line,
16770                             _("unsupported PC relative reference to different section"));
16771
16772               return 1;
16773             }
16774           if (fragp != sym_frag && sym_frag->fr_address == 0)
16775             /* Assume non-extended on the first relaxation pass.
16776                The address we have calculated will be bogus if this is
16777                a forward branch to another frag, as the forward frag
16778                will have fr_address == 0.  */
16779             return 0;
16780         }
16781
16782       /* In this case, we know for sure that the symbol fragment is in
16783          the same section.  If the relax_marker of the symbol fragment
16784          differs from the relax_marker of this fragment, we have not
16785          yet adjusted the symbol fragment fr_address.  We want to add
16786          in STRETCH in order to get a better estimate of the address.
16787          This particularly matters because of the shift bits.  */
16788       if (stretch != 0
16789           && sym_frag->relax_marker != fragp->relax_marker)
16790         {
16791           fragS *f;
16792
16793           /* Adjust stretch for any alignment frag.  Note that if have
16794              been expanding the earlier code, the symbol may be
16795              defined in what appears to be an earlier frag.  FIXME:
16796              This doesn't handle the fr_subtype field, which specifies
16797              a maximum number of bytes to skip when doing an
16798              alignment.  */
16799           for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
16800             {
16801               if (f->fr_type == rs_align || f->fr_type == rs_align_code)
16802                 {
16803                   if (stretch < 0)
16804                     stretch = - ((- stretch)
16805                                  & ~ ((1 << (int) f->fr_offset) - 1));
16806                   else
16807                     stretch &= ~ ((1 << (int) f->fr_offset) - 1);
16808                   if (stretch == 0)
16809                     break;
16810                 }
16811             }
16812           if (f != NULL)
16813             val += stretch;
16814         }
16815
16816       addr = fragp->fr_address + fragp->fr_fix;
16817
16818       /* The base address rules are complicated.  The base address of
16819          a branch is the following instruction.  The base address of a
16820          PC relative load or add is the instruction itself, but if it
16821          is in a delay slot (in which case it can not be extended) use
16822          the address of the instruction whose delay slot it is in.  */
16823       if (pcrel_op->include_isa_bit)
16824         {
16825           addr += 2;
16826
16827           /* If we are currently assuming that this frag should be
16828              extended, then, the current address is two bytes
16829              higher.  */
16830           if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
16831             addr += 2;
16832
16833           /* Ignore the low bit in the target, since it will be set
16834              for a text label.  */
16835           val &= -2;
16836         }
16837       else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
16838         addr -= 4;
16839       else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
16840         addr -= 2;
16841
16842       val -= addr & -(1 << pcrel_op->align_log2);
16843
16844       /* If any of the shifted bits are set, we must use an extended
16845          opcode.  If the address depends on the size of this
16846          instruction, this can lead to a loop, so we arrange to always
16847          use an extended opcode.  We only check this when we are in
16848          the main relaxation loop, when SEC is NULL.  */
16849       if ((val & ((1 << operand->shift) - 1)) != 0 && sec == NULL)
16850         {
16851           fragp->fr_subtype =
16852             RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
16853           return 1;
16854         }
16855
16856       /* If we are about to mark a frag as extended because the value
16857          is precisely the next value above maxtiny, then there is a
16858          chance of an infinite loop as in the following code:
16859              la $4,foo
16860              .skip      1020
16861              .align     2
16862            foo:
16863          In this case when the la is extended, foo is 0x3fc bytes
16864          away, so the la can be shrunk, but then foo is 0x400 away, so
16865          the la must be extended.  To avoid this loop, we mark the
16866          frag as extended if it was small, and is about to become
16867          extended with the next value above maxtiny.  */
16868       maxtiny = mips_int_operand_max (operand);
16869       if (val == maxtiny + (1 << operand->shift)
16870           && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
16871           && sec == NULL)
16872         {
16873           fragp->fr_subtype =
16874             RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
16875           return 1;
16876         }
16877     }
16878   else if (symsec != absolute_section && sec != NULL)
16879     as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
16880
16881   return !mips16_immed_in_range_p (operand, BFD_RELOC_UNUSED, val);
16882 }
16883
16884 /* Compute the length of a branch sequence, and adjust the
16885    RELAX_BRANCH_TOOFAR bit accordingly.  If FRAGP is NULL, the
16886    worst-case length is computed, with UPDATE being used to indicate
16887    whether an unconditional (-1), branch-likely (+1) or regular (0)
16888    branch is to be computed.  */
16889 static int
16890 relaxed_branch_length (fragS *fragp, asection *sec, int update)
16891 {
16892   bfd_boolean toofar;
16893   int length;
16894
16895   if (fragp
16896       && S_IS_DEFINED (fragp->fr_symbol)
16897       && !S_IS_WEAK (fragp->fr_symbol)
16898       && sec == S_GET_SEGMENT (fragp->fr_symbol))
16899     {
16900       addressT addr;
16901       offsetT val;
16902
16903       val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
16904
16905       addr = fragp->fr_address + fragp->fr_fix + 4;
16906
16907       val -= addr;
16908
16909       toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
16910     }
16911   else
16912     /* If the symbol is not defined or it's in a different segment,
16913        we emit the long sequence.  */
16914     toofar = TRUE;
16915
16916   if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
16917     fragp->fr_subtype
16918       = RELAX_BRANCH_ENCODE (RELAX_BRANCH_AT (fragp->fr_subtype),
16919                              RELAX_BRANCH_UNCOND (fragp->fr_subtype),
16920                              RELAX_BRANCH_LIKELY (fragp->fr_subtype),
16921                              RELAX_BRANCH_LINK (fragp->fr_subtype),
16922                              toofar);
16923
16924   length = 4;
16925   if (toofar)
16926     {
16927       if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
16928         length += 8;
16929
16930       if (mips_pic != NO_PIC)
16931         {
16932           /* Additional space for PIC loading of target address.  */
16933           length += 8;
16934           if (mips_opts.isa == ISA_MIPS1)
16935             /* Additional space for $at-stabilizing nop.  */
16936             length += 4;
16937         }
16938
16939       /* If branch is conditional.  */
16940       if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
16941         length += 8;
16942     }
16943
16944   return length;
16945 }
16946
16947 /* Compute the length of a branch sequence, and adjust the
16948    RELAX_MICROMIPS_TOOFAR32 bit accordingly.  If FRAGP is NULL, the
16949    worst-case length is computed, with UPDATE being used to indicate
16950    whether an unconditional (-1), or regular (0) branch is to be
16951    computed.  */
16952
16953 static int
16954 relaxed_micromips_32bit_branch_length (fragS *fragp, asection *sec, int update)
16955 {
16956   bfd_boolean toofar;
16957   int length;
16958
16959   if (fragp
16960       && S_IS_DEFINED (fragp->fr_symbol)
16961       && !S_IS_WEAK (fragp->fr_symbol)
16962       && sec == S_GET_SEGMENT (fragp->fr_symbol))
16963     {
16964       addressT addr;
16965       offsetT val;
16966
16967       val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
16968       /* Ignore the low bit in the target, since it will be set
16969          for a text label.  */
16970       if ((val & 1) != 0)
16971         --val;
16972
16973       addr = fragp->fr_address + fragp->fr_fix + 4;
16974
16975       val -= addr;
16976
16977       toofar = val < - (0x8000 << 1) || val >= (0x8000 << 1);
16978     }
16979   else
16980     /* If the symbol is not defined or it's in a different segment,
16981        we emit the long sequence.  */
16982     toofar = TRUE;
16983
16984   if (fragp && update
16985       && toofar != RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
16986     fragp->fr_subtype = (toofar
16987                          ? RELAX_MICROMIPS_MARK_TOOFAR32 (fragp->fr_subtype)
16988                          : RELAX_MICROMIPS_CLEAR_TOOFAR32 (fragp->fr_subtype));
16989
16990   length = 4;
16991   if (toofar)
16992     {
16993       bfd_boolean compact_known = fragp != NULL;
16994       bfd_boolean compact = FALSE;
16995       bfd_boolean uncond;
16996
16997       if (compact_known)
16998         compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
16999       if (fragp)
17000         uncond = RELAX_MICROMIPS_UNCOND (fragp->fr_subtype);
17001       else
17002         uncond = update < 0;
17003
17004       /* If label is out of range, we turn branch <br>:
17005
17006                 <br>    label                   # 4 bytes
17007             0:
17008
17009          into:
17010
17011                 j       label                   # 4 bytes
17012                 nop                             # 2 bytes if compact && !PIC
17013             0:
17014        */
17015       if (mips_pic == NO_PIC && (!compact_known || compact))
17016         length += 2;
17017
17018       /* If assembling PIC code, we further turn:
17019
17020                         j       label                   # 4 bytes
17021
17022          into:
17023
17024                         lw/ld   at, %got(label)(gp)     # 4 bytes
17025                         d/addiu at, %lo(label)          # 4 bytes
17026                         jr/c    at                      # 2 bytes
17027        */
17028       if (mips_pic != NO_PIC)
17029         length += 6;
17030
17031       /* If branch <br> is conditional, we prepend negated branch <brneg>:
17032
17033                         <brneg> 0f                      # 4 bytes
17034                         nop                             # 2 bytes if !compact
17035        */
17036       if (!uncond)
17037         length += (compact_known && compact) ? 4 : 6;
17038     }
17039
17040   return length;
17041 }
17042
17043 /* Compute the length of a branch, and adjust the RELAX_MICROMIPS_TOOFAR16
17044    bit accordingly.  */
17045
17046 static int
17047 relaxed_micromips_16bit_branch_length (fragS *fragp, asection *sec, int update)
17048 {
17049   bfd_boolean toofar;
17050
17051   if (fragp
17052       && S_IS_DEFINED (fragp->fr_symbol)
17053       && !S_IS_WEAK (fragp->fr_symbol)
17054       && sec == S_GET_SEGMENT (fragp->fr_symbol))
17055     {
17056       addressT addr;
17057       offsetT val;
17058       int type;
17059
17060       val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
17061       /* Ignore the low bit in the target, since it will be set
17062          for a text label.  */
17063       if ((val & 1) != 0)
17064         --val;
17065
17066       /* Assume this is a 2-byte branch.  */
17067       addr = fragp->fr_address + fragp->fr_fix + 2;
17068
17069       /* We try to avoid the infinite loop by not adding 2 more bytes for
17070          long branches.  */
17071
17072       val -= addr;
17073
17074       type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
17075       if (type == 'D')
17076         toofar = val < - (0x200 << 1) || val >= (0x200 << 1);
17077       else if (type == 'E')
17078         toofar = val < - (0x40 << 1) || val >= (0x40 << 1);
17079       else
17080         abort ();
17081     }
17082   else
17083     /* If the symbol is not defined or it's in a different segment,
17084        we emit a normal 32-bit branch.  */
17085     toofar = TRUE;
17086
17087   if (fragp && update
17088       && toofar != RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
17089     fragp->fr_subtype
17090       = toofar ? RELAX_MICROMIPS_MARK_TOOFAR16 (fragp->fr_subtype)
17091                : RELAX_MICROMIPS_CLEAR_TOOFAR16 (fragp->fr_subtype);
17092
17093   if (toofar)
17094     return 4;
17095
17096   return 2;
17097 }
17098
17099 /* Estimate the size of a frag before relaxing.  Unless this is the
17100    mips16, we are not really relaxing here, and the final size is
17101    encoded in the subtype information.  For the mips16, we have to
17102    decide whether we are using an extended opcode or not.  */
17103
17104 int
17105 md_estimate_size_before_relax (fragS *fragp, asection *segtype)
17106 {
17107   int change;
17108
17109   if (RELAX_BRANCH_P (fragp->fr_subtype))
17110     {
17111
17112       fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
17113
17114       return fragp->fr_var;
17115     }
17116
17117   if (RELAX_MIPS16_P (fragp->fr_subtype))
17118     /* We don't want to modify the EXTENDED bit here; it might get us
17119        into infinite loops.  We change it only in mips_relax_frag().  */
17120     return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
17121
17122   if (RELAX_MICROMIPS_P (fragp->fr_subtype))
17123     {
17124       int length = 4;
17125
17126       if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
17127         length = relaxed_micromips_16bit_branch_length (fragp, segtype, FALSE);
17128       if (length == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
17129         length = relaxed_micromips_32bit_branch_length (fragp, segtype, FALSE);
17130       fragp->fr_var = length;
17131
17132       return length;
17133     }
17134
17135   if (mips_pic == NO_PIC)
17136     change = nopic_need_relax (fragp->fr_symbol, 0);
17137   else if (mips_pic == SVR4_PIC)
17138     change = pic_need_relax (fragp->fr_symbol, segtype);
17139   else if (mips_pic == VXWORKS_PIC)
17140     /* For vxworks, GOT16 relocations never have a corresponding LO16.  */
17141     change = 0;
17142   else
17143     abort ();
17144
17145   if (change)
17146     {
17147       fragp->fr_subtype |= RELAX_USE_SECOND;
17148       return -RELAX_FIRST (fragp->fr_subtype);
17149     }
17150   else
17151     return -RELAX_SECOND (fragp->fr_subtype);
17152 }
17153
17154 /* This is called to see whether a reloc against a defined symbol
17155    should be converted into a reloc against a section.  */
17156
17157 int
17158 mips_fix_adjustable (fixS *fixp)
17159 {
17160   if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
17161       || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
17162     return 0;
17163
17164   if (fixp->fx_addsy == NULL)
17165     return 1;
17166
17167   /* Allow relocs used for EH tables.  */
17168   if (fixp->fx_r_type == BFD_RELOC_32_PCREL)
17169     return 1;
17170
17171   /* If symbol SYM is in a mergeable section, relocations of the form
17172      SYM + 0 can usually be made section-relative.  The mergeable data
17173      is then identified by the section offset rather than by the symbol.
17174
17175      However, if we're generating REL LO16 relocations, the offset is split
17176      between the LO16 and parterning high part relocation.  The linker will
17177      need to recalculate the complete offset in order to correctly identify
17178      the merge data.
17179
17180      The linker has traditionally not looked for the parterning high part
17181      relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
17182      placed anywhere.  Rather than break backwards compatibility by changing
17183      this, it seems better not to force the issue, and instead keep the
17184      original symbol.  This will work with either linker behavior.  */
17185   if ((lo16_reloc_p (fixp->fx_r_type)
17186        || reloc_needs_lo_p (fixp->fx_r_type))
17187       && HAVE_IN_PLACE_ADDENDS
17188       && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
17189     return 0;
17190
17191   /* There is no place to store an in-place offset for JALR relocations.  */
17192   if (jalr_reloc_p (fixp->fx_r_type) && HAVE_IN_PLACE_ADDENDS)
17193     return 0;
17194
17195   /* Likewise an in-range offset of limited PC-relative relocations may
17196      overflow the in-place relocatable field if recalculated against the
17197      start address of the symbol's containing section.
17198
17199      Also, PC relative relocations for MIPS R6 need to be symbol rather than
17200      section relative to allow linker relaxations to be performed later on.  */
17201   if (limited_pcrel_reloc_p (fixp->fx_r_type)
17202       && (HAVE_IN_PLACE_ADDENDS || ISA_IS_R6 (file_mips_opts.isa)))
17203     return 0;
17204
17205   /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
17206      to a floating-point stub.  The same is true for non-R_MIPS16_26
17207      relocations against MIPS16 functions; in this case, the stub becomes
17208      the function's canonical address.
17209
17210      Floating-point stubs are stored in unique .mips16.call.* or
17211      .mips16.fn.* sections.  If a stub T for function F is in section S,
17212      the first relocation in section S must be against F; this is how the
17213      linker determines the target function.  All relocations that might
17214      resolve to T must also be against F.  We therefore have the following
17215      restrictions, which are given in an intentionally-redundant way:
17216
17217        1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
17218           symbols.
17219
17220        2. We cannot reduce a stub's relocations against non-MIPS16 symbols
17221           if that stub might be used.
17222
17223        3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
17224           symbols.
17225
17226        4. We cannot reduce a stub's relocations against MIPS16 symbols if
17227           that stub might be used.
17228
17229      There is a further restriction:
17230
17231        5. We cannot reduce jump relocations (R_MIPS_26, R_MIPS16_26 or
17232           R_MICROMIPS_26_S1) or branch relocations (R_MIPS_PC26_S2,
17233           R_MIPS_PC21_S2, R_MIPS_PC16, R_MICROMIPS_PC16_S1,
17234           R_MICROMIPS_PC10_S1 or R_MICROMIPS_PC7_S1) against MIPS16 or
17235           microMIPS symbols because we need to keep the MIPS16 or
17236           microMIPS symbol for the purpose of mode mismatch detection
17237           and JAL to JALX instruction conversion in the linker.
17238
17239      For simplicity, we deal with (3)-(4) by not reducing _any_ relocation
17240      against a MIPS16 symbol.  We deal with (5) by additionally leaving
17241      alone any jump and branch relocations against a microMIPS symbol.
17242
17243      We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
17244      relocation against some symbol R, no relocation against R may be
17245      reduced.  (Note that this deals with (2) as well as (1) because
17246      relocations against global symbols will never be reduced on ELF
17247      targets.)  This approach is a little simpler than trying to detect
17248      stub sections, and gives the "all or nothing" per-symbol consistency
17249      that we have for MIPS16 symbols.  */
17250   if (fixp->fx_subsy == NULL
17251       && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
17252           || (ELF_ST_IS_MICROMIPS (S_GET_OTHER (fixp->fx_addsy))
17253               && (jmp_reloc_p (fixp->fx_r_type)
17254                   || b_reloc_p (fixp->fx_r_type)))
17255           || *symbol_get_tc (fixp->fx_addsy)))
17256     return 0;
17257
17258   return 1;
17259 }
17260
17261 /* Translate internal representation of relocation info to BFD target
17262    format.  */
17263
17264 arelent **
17265 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
17266 {
17267   static arelent *retval[4];
17268   arelent *reloc;
17269   bfd_reloc_code_real_type code;
17270
17271   memset (retval, 0, sizeof(retval));
17272   reloc = retval[0] = XCNEW (arelent);
17273   reloc->sym_ptr_ptr = XNEW (asymbol *);
17274   *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
17275   reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
17276
17277   if (fixp->fx_pcrel)
17278     {
17279       gas_assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2
17280                   || fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
17281                   || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
17282                   || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1
17283                   || fixp->fx_r_type == BFD_RELOC_32_PCREL
17284                   || fixp->fx_r_type == BFD_RELOC_MIPS_21_PCREL_S2
17285                   || fixp->fx_r_type == BFD_RELOC_MIPS_26_PCREL_S2
17286                   || fixp->fx_r_type == BFD_RELOC_MIPS_18_PCREL_S3
17287                   || fixp->fx_r_type == BFD_RELOC_MIPS_19_PCREL_S2
17288                   || fixp->fx_r_type == BFD_RELOC_HI16_S_PCREL
17289                   || fixp->fx_r_type == BFD_RELOC_LO16_PCREL);
17290
17291       /* At this point, fx_addnumber is "symbol offset - pcrel address".
17292          Relocations want only the symbol offset.  */
17293       switch (fixp->fx_r_type)
17294         {
17295         case BFD_RELOC_MIPS_18_PCREL_S3:
17296           reloc->addend = fixp->fx_addnumber + (reloc->address & ~7);
17297           break;
17298         default:
17299           reloc->addend = fixp->fx_addnumber + reloc->address;
17300           break;
17301         }
17302     }
17303   else if (HAVE_IN_PLACE_ADDENDS
17304            && fixp->fx_r_type == BFD_RELOC_MICROMIPS_JMP
17305            && (read_compressed_insn (fixp->fx_frag->fr_literal
17306                                      + fixp->fx_where, 4) >> 26) == 0x3c)
17307     {
17308       /* Shift is 2, unusually, for microMIPS JALX.  Adjust the in-place
17309          addend accordingly.  */
17310       reloc->addend = fixp->fx_addnumber >> 1;
17311     }
17312   else
17313     reloc->addend = fixp->fx_addnumber;
17314
17315   /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
17316      entry to be used in the relocation's section offset.  */
17317   if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
17318     {
17319       reloc->address = reloc->addend;
17320       reloc->addend = 0;
17321     }
17322
17323   code = fixp->fx_r_type;
17324
17325   reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
17326   if (reloc->howto == NULL)
17327     {
17328       as_bad_where (fixp->fx_file, fixp->fx_line,
17329                     _("cannot represent %s relocation in this object file"
17330                       " format"),
17331                     bfd_get_reloc_code_name (code));
17332       retval[0] = NULL;
17333     }
17334
17335   return retval;
17336 }
17337
17338 /* Relax a machine dependent frag.  This returns the amount by which
17339    the current size of the frag should change.  */
17340
17341 int
17342 mips_relax_frag (asection *sec, fragS *fragp, long stretch)
17343 {
17344   if (RELAX_BRANCH_P (fragp->fr_subtype))
17345     {
17346       offsetT old_var = fragp->fr_var;
17347
17348       fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
17349
17350       return fragp->fr_var - old_var;
17351     }
17352
17353   if (RELAX_MICROMIPS_P (fragp->fr_subtype))
17354     {
17355       offsetT old_var = fragp->fr_var;
17356       offsetT new_var = 4;
17357
17358       if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
17359         new_var = relaxed_micromips_16bit_branch_length (fragp, sec, TRUE);
17360       if (new_var == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
17361         new_var = relaxed_micromips_32bit_branch_length (fragp, sec, TRUE);
17362       fragp->fr_var = new_var;
17363
17364       return new_var - old_var;
17365     }
17366
17367   if (! RELAX_MIPS16_P (fragp->fr_subtype))
17368     return 0;
17369
17370   if (mips16_extended_frag (fragp, NULL, stretch))
17371     {
17372       if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
17373         return 0;
17374       fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
17375       return 2;
17376     }
17377   else
17378     {
17379       if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
17380         return 0;
17381       fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
17382       return -2;
17383     }
17384
17385   return 0;
17386 }
17387
17388 /* Convert a machine dependent frag.  */
17389
17390 void
17391 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
17392 {
17393   if (RELAX_BRANCH_P (fragp->fr_subtype))
17394     {
17395       char *buf;
17396       unsigned long insn;
17397       expressionS exp;
17398       fixS *fixp;
17399
17400       buf = fragp->fr_literal + fragp->fr_fix;
17401       insn = read_insn (buf);
17402
17403       if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
17404         {
17405           /* We generate a fixup instead of applying it right now
17406              because, if there are linker relaxations, we're going to
17407              need the relocations.  */
17408           exp.X_op = O_symbol;
17409           exp.X_add_symbol = fragp->fr_symbol;
17410           exp.X_add_number = fragp->fr_offset;
17411
17412           fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
17413                               BFD_RELOC_16_PCREL_S2);
17414           fixp->fx_file = fragp->fr_file;
17415           fixp->fx_line = fragp->fr_line;
17416
17417           buf = write_insn (buf, insn);
17418         }
17419       else
17420         {
17421           int i;
17422
17423           as_warn_where (fragp->fr_file, fragp->fr_line,
17424                          _("relaxed out-of-range branch into a jump"));
17425
17426           if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
17427             goto uncond;
17428
17429           if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
17430             {
17431               /* Reverse the branch.  */
17432               switch ((insn >> 28) & 0xf)
17433                 {
17434                 case 4:
17435                   if ((insn & 0xff000000) == 0x47000000
17436                       || (insn & 0xff600000) == 0x45600000)
17437                     {
17438                       /* BZ.df/BNZ.df, BZ.V/BNZ.V can have the condition
17439                          reversed by tweaking bit 23.  */
17440                       insn ^= 0x00800000;
17441                     }
17442                   else
17443                     {
17444                       /* bc[0-3][tf]l? instructions can have the condition
17445                          reversed by tweaking a single TF bit, and their
17446                          opcodes all have 0x4???????.  */
17447                       gas_assert ((insn & 0xf3e00000) == 0x41000000);
17448                       insn ^= 0x00010000;
17449                     }
17450                   break;
17451
17452                 case 0:
17453                   /* bltz       0x04000000      bgez    0x04010000
17454                      bltzal     0x04100000      bgezal  0x04110000  */
17455                   gas_assert ((insn & 0xfc0e0000) == 0x04000000);
17456                   insn ^= 0x00010000;
17457                   break;
17458
17459                 case 1:
17460                   /* beq        0x10000000      bne     0x14000000
17461                      blez       0x18000000      bgtz    0x1c000000  */
17462                   insn ^= 0x04000000;
17463                   break;
17464
17465                 default:
17466                   abort ();
17467                 }
17468             }
17469
17470           if (RELAX_BRANCH_LINK (fragp->fr_subtype))
17471             {
17472               /* Clear the and-link bit.  */
17473               gas_assert ((insn & 0xfc1c0000) == 0x04100000);
17474
17475               /* bltzal         0x04100000      bgezal  0x04110000
17476                  bltzall        0x04120000      bgezall 0x04130000  */
17477               insn &= ~0x00100000;
17478             }
17479
17480           /* Branch over the branch (if the branch was likely) or the
17481              full jump (not likely case).  Compute the offset from the
17482              current instruction to branch to.  */
17483           if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
17484             i = 16;
17485           else
17486             {
17487               /* How many bytes in instructions we've already emitted?  */
17488               i = buf - fragp->fr_literal - fragp->fr_fix;
17489               /* How many bytes in instructions from here to the end?  */
17490               i = fragp->fr_var - i;
17491             }
17492           /* Convert to instruction count.  */
17493           i >>= 2;
17494           /* Branch counts from the next instruction.  */
17495           i--;
17496           insn |= i;
17497           /* Branch over the jump.  */
17498           buf = write_insn (buf, insn);
17499
17500           /* nop */
17501           buf = write_insn (buf, 0);
17502
17503           if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
17504             {
17505               /* beql $0, $0, 2f */
17506               insn = 0x50000000;
17507               /* Compute the PC offset from the current instruction to
17508                  the end of the variable frag.  */
17509               /* How many bytes in instructions we've already emitted?  */
17510               i = buf - fragp->fr_literal - fragp->fr_fix;
17511               /* How many bytes in instructions from here to the end?  */
17512               i = fragp->fr_var - i;
17513               /* Convert to instruction count.  */
17514               i >>= 2;
17515               /* Don't decrement i, because we want to branch over the
17516                  delay slot.  */
17517               insn |= i;
17518
17519               buf = write_insn (buf, insn);
17520               buf = write_insn (buf, 0);
17521             }
17522
17523         uncond:
17524           if (mips_pic == NO_PIC)
17525             {
17526               /* j or jal.  */
17527               insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
17528                       ? 0x0c000000 : 0x08000000);
17529               exp.X_op = O_symbol;
17530               exp.X_add_symbol = fragp->fr_symbol;
17531               exp.X_add_number = fragp->fr_offset;
17532
17533               fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
17534                                   FALSE, BFD_RELOC_MIPS_JMP);
17535               fixp->fx_file = fragp->fr_file;
17536               fixp->fx_line = fragp->fr_line;
17537
17538               buf = write_insn (buf, insn);
17539             }
17540           else
17541             {
17542               unsigned long at = RELAX_BRANCH_AT (fragp->fr_subtype);
17543
17544               /* lw/ld $at, <sym>($gp)  R_MIPS_GOT16 */
17545               insn = HAVE_64BIT_ADDRESSES ? 0xdf800000 : 0x8f800000;
17546               insn |= at << OP_SH_RT;
17547               exp.X_op = O_symbol;
17548               exp.X_add_symbol = fragp->fr_symbol;
17549               exp.X_add_number = fragp->fr_offset;
17550
17551               if (fragp->fr_offset)
17552                 {
17553                   exp.X_add_symbol = make_expr_symbol (&exp);
17554                   exp.X_add_number = 0;
17555                 }
17556
17557               fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
17558                                   FALSE, BFD_RELOC_MIPS_GOT16);
17559               fixp->fx_file = fragp->fr_file;
17560               fixp->fx_line = fragp->fr_line;
17561
17562               buf = write_insn (buf, insn);
17563
17564               if (mips_opts.isa == ISA_MIPS1)
17565                 /* nop */
17566                 buf = write_insn (buf, 0);
17567
17568               /* d/addiu $at, $at, <sym>  R_MIPS_LO16 */
17569               insn = HAVE_64BIT_ADDRESSES ? 0x64000000 : 0x24000000;
17570               insn |= at << OP_SH_RS | at << OP_SH_RT;
17571
17572               fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
17573                                   FALSE, BFD_RELOC_LO16);
17574               fixp->fx_file = fragp->fr_file;
17575               fixp->fx_line = fragp->fr_line;
17576
17577               buf = write_insn (buf, insn);
17578
17579               /* j(al)r $at.  */
17580               if (RELAX_BRANCH_LINK (fragp->fr_subtype))
17581                 insn = 0x0000f809;
17582               else
17583                 insn = 0x00000008;
17584               insn |= at << OP_SH_RS;
17585
17586               buf = write_insn (buf, insn);
17587             }
17588         }
17589
17590       fragp->fr_fix += fragp->fr_var;
17591       gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
17592       return;
17593     }
17594
17595   /* Relax microMIPS branches.  */
17596   if (RELAX_MICROMIPS_P (fragp->fr_subtype))
17597     {
17598       char *buf = fragp->fr_literal + fragp->fr_fix;
17599       bfd_boolean compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
17600       bfd_boolean al = RELAX_MICROMIPS_LINK (fragp->fr_subtype);
17601       int type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
17602       bfd_boolean short_ds;
17603       unsigned long insn;
17604       expressionS exp;
17605       fixS *fixp;
17606
17607       exp.X_op = O_symbol;
17608       exp.X_add_symbol = fragp->fr_symbol;
17609       exp.X_add_number = fragp->fr_offset;
17610
17611       fragp->fr_fix += fragp->fr_var;
17612
17613       /* Handle 16-bit branches that fit or are forced to fit.  */
17614       if (type != 0 && !RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
17615         {
17616           /* We generate a fixup instead of applying it right now,
17617              because if there is linker relaxation, we're going to
17618              need the relocations.  */
17619           if (type == 'D')
17620             fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
17621                                 BFD_RELOC_MICROMIPS_10_PCREL_S1);
17622           else if (type == 'E')
17623             fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
17624                                 BFD_RELOC_MICROMIPS_7_PCREL_S1);
17625           else
17626             abort ();
17627
17628           fixp->fx_file = fragp->fr_file;
17629           fixp->fx_line = fragp->fr_line;
17630
17631           /* These relocations can have an addend that won't fit in
17632              2 octets.  */
17633           fixp->fx_no_overflow = 1;
17634
17635           return;
17636         }
17637
17638       /* Handle 32-bit branches that fit or are forced to fit.  */
17639       if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
17640           || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
17641         {
17642           /* We generate a fixup instead of applying it right now,
17643              because if there is linker relaxation, we're going to
17644              need the relocations.  */
17645           fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
17646                               BFD_RELOC_MICROMIPS_16_PCREL_S1);
17647           fixp->fx_file = fragp->fr_file;
17648           fixp->fx_line = fragp->fr_line;
17649
17650           if (type == 0)
17651             return;
17652         }
17653
17654       /* Relax 16-bit branches to 32-bit branches.  */
17655       if (type != 0)
17656         {
17657           insn = read_compressed_insn (buf, 2);
17658
17659           if ((insn & 0xfc00) == 0xcc00)                /* b16  */
17660             insn = 0x94000000;                          /* beq  */
17661           else if ((insn & 0xdc00) == 0x8c00)           /* beqz16/bnez16  */
17662             {
17663               unsigned long regno;
17664
17665               regno = (insn >> MICROMIPSOP_SH_MD) & MICROMIPSOP_MASK_MD;
17666               regno = micromips_to_32_reg_d_map [regno];
17667               insn = ((insn & 0x2000) << 16) | 0x94000000;      /* beq/bne  */
17668               insn |= regno << MICROMIPSOP_SH_RS;
17669             }
17670           else
17671             abort ();
17672
17673           /* Nothing else to do, just write it out.  */
17674           if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
17675               || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
17676             {
17677               buf = write_compressed_insn (buf, insn, 4);
17678               gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
17679               return;
17680             }
17681         }
17682       else
17683         insn = read_compressed_insn (buf, 4);
17684
17685       /* Relax 32-bit branches to a sequence of instructions.  */
17686       as_warn_where (fragp->fr_file, fragp->fr_line,
17687                      _("relaxed out-of-range branch into a jump"));
17688
17689       /* Set the short-delay-slot bit.  */
17690       short_ds = al && (insn & 0x02000000) != 0;
17691
17692       if (!RELAX_MICROMIPS_UNCOND (fragp->fr_subtype))
17693         {
17694           symbolS *l;
17695
17696           /* Reverse the branch.  */
17697           if ((insn & 0xfc000000) == 0x94000000                 /* beq  */
17698               || (insn & 0xfc000000) == 0xb4000000)             /* bne  */
17699             insn ^= 0x20000000;
17700           else if ((insn & 0xffe00000) == 0x40000000            /* bltz  */
17701                    || (insn & 0xffe00000) == 0x40400000         /* bgez  */
17702                    || (insn & 0xffe00000) == 0x40800000         /* blez  */
17703                    || (insn & 0xffe00000) == 0x40c00000         /* bgtz  */
17704                    || (insn & 0xffe00000) == 0x40a00000         /* bnezc  */
17705                    || (insn & 0xffe00000) == 0x40e00000         /* beqzc  */
17706                    || (insn & 0xffe00000) == 0x40200000         /* bltzal  */
17707                    || (insn & 0xffe00000) == 0x40600000         /* bgezal  */
17708                    || (insn & 0xffe00000) == 0x42200000         /* bltzals  */
17709                    || (insn & 0xffe00000) == 0x42600000)        /* bgezals  */
17710             insn ^= 0x00400000;
17711           else if ((insn & 0xffe30000) == 0x43800000            /* bc1f  */
17712                    || (insn & 0xffe30000) == 0x43a00000         /* bc1t  */
17713                    || (insn & 0xffe30000) == 0x42800000         /* bc2f  */
17714                    || (insn & 0xffe30000) == 0x42a00000)        /* bc2t  */
17715             insn ^= 0x00200000;
17716           else if ((insn & 0xff000000) == 0x83000000            /* BZ.df
17717                                                                    BNZ.df  */
17718                     || (insn & 0xff600000) == 0x81600000)       /* BZ.V
17719                                                                    BNZ.V */
17720             insn ^= 0x00800000;
17721           else
17722             abort ();
17723
17724           if (al)
17725             {
17726               /* Clear the and-link and short-delay-slot bits.  */
17727               gas_assert ((insn & 0xfda00000) == 0x40200000);
17728
17729               /* bltzal  0x40200000     bgezal  0x40600000  */
17730               /* bltzals 0x42200000     bgezals 0x42600000  */
17731               insn &= ~0x02200000;
17732             }
17733
17734           /* Make a label at the end for use with the branch.  */
17735           l = symbol_new (micromips_label_name (), asec, fragp->fr_fix, fragp);
17736           micromips_label_inc ();
17737           S_SET_OTHER (l, ELF_ST_SET_MICROMIPS (S_GET_OTHER (l)));
17738
17739           /* Refer to it.  */
17740           fixp = fix_new (fragp, buf - fragp->fr_literal, 4, l, 0, TRUE,
17741                           BFD_RELOC_MICROMIPS_16_PCREL_S1);
17742           fixp->fx_file = fragp->fr_file;
17743           fixp->fx_line = fragp->fr_line;
17744
17745           /* Branch over the jump.  */
17746           buf = write_compressed_insn (buf, insn, 4);
17747           if (!compact)
17748             /* nop */
17749             buf = write_compressed_insn (buf, 0x0c00, 2);
17750         }
17751
17752       if (mips_pic == NO_PIC)
17753         {
17754           unsigned long jal = short_ds ? 0x74000000 : 0xf4000000; /* jal/s  */
17755
17756           /* j/jal/jals <sym>  R_MICROMIPS_26_S1  */
17757           insn = al ? jal : 0xd4000000;
17758
17759           fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
17760                               BFD_RELOC_MICROMIPS_JMP);
17761           fixp->fx_file = fragp->fr_file;
17762           fixp->fx_line = fragp->fr_line;
17763
17764           buf = write_compressed_insn (buf, insn, 4);
17765           if (compact)
17766             /* nop */
17767             buf = write_compressed_insn (buf, 0x0c00, 2);
17768         }
17769       else
17770         {
17771           unsigned long at = RELAX_MICROMIPS_AT (fragp->fr_subtype);
17772           unsigned long jalr = short_ds ? 0x45e0 : 0x45c0;      /* jalr/s  */
17773           unsigned long jr = compact ? 0x45a0 : 0x4580;         /* jr/c  */
17774
17775           /* lw/ld $at, <sym>($gp)  R_MICROMIPS_GOT16  */
17776           insn = HAVE_64BIT_ADDRESSES ? 0xdc1c0000 : 0xfc1c0000;
17777           insn |= at << MICROMIPSOP_SH_RT;
17778
17779           if (exp.X_add_number)
17780             {
17781               exp.X_add_symbol = make_expr_symbol (&exp);
17782               exp.X_add_number = 0;
17783             }
17784
17785           fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
17786                               BFD_RELOC_MICROMIPS_GOT16);
17787           fixp->fx_file = fragp->fr_file;
17788           fixp->fx_line = fragp->fr_line;
17789
17790           buf = write_compressed_insn (buf, insn, 4);
17791
17792           /* d/addiu $at, $at, <sym>  R_MICROMIPS_LO16  */
17793           insn = HAVE_64BIT_ADDRESSES ? 0x5c000000 : 0x30000000;
17794           insn |= at << MICROMIPSOP_SH_RT | at << MICROMIPSOP_SH_RS;
17795
17796           fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
17797                               BFD_RELOC_MICROMIPS_LO16);
17798           fixp->fx_file = fragp->fr_file;
17799           fixp->fx_line = fragp->fr_line;
17800
17801           buf = write_compressed_insn (buf, insn, 4);
17802
17803           /* jr/jrc/jalr/jalrs $at  */
17804           insn = al ? jalr : jr;
17805           insn |= at << MICROMIPSOP_SH_MJ;
17806
17807           buf = write_compressed_insn (buf, insn, 2);
17808         }
17809
17810       gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
17811       return;
17812     }
17813
17814   if (RELAX_MIPS16_P (fragp->fr_subtype))
17815     {
17816       int type;
17817       const struct mips_int_operand *operand;
17818       offsetT val;
17819       char *buf;
17820       unsigned int user_length, length;
17821       unsigned long insn;
17822       bfd_boolean ext;
17823
17824       type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
17825       operand = mips16_immed_operand (type, FALSE);
17826
17827       ext = RELAX_MIPS16_EXTENDED (fragp->fr_subtype);
17828       val = resolve_symbol_value (fragp->fr_symbol);
17829       if (operand->root.type == OP_PCREL)
17830         {
17831           const struct mips_pcrel_operand *pcrel_op;
17832           addressT addr;
17833
17834           pcrel_op = (const struct mips_pcrel_operand *) operand;
17835           addr = fragp->fr_address + fragp->fr_fix;
17836
17837           /* The rules for the base address of a PC relative reloc are
17838              complicated; see mips16_extended_frag.  */
17839           if (pcrel_op->include_isa_bit)
17840             {
17841               addr += 2;
17842               if (ext)
17843                 addr += 2;
17844               /* Ignore the low bit in the target, since it will be
17845                  set for a text label.  */
17846               val &= -2;
17847             }
17848           else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
17849             addr -= 4;
17850           else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
17851             addr -= 2;
17852
17853           addr &= -(1 << pcrel_op->align_log2);
17854           val -= addr;
17855
17856           /* Make sure the section winds up with the alignment we have
17857              assumed.  */
17858           if (operand->shift > 0)
17859             record_alignment (asec, operand->shift);
17860         }
17861
17862       if (ext
17863           && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
17864               || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
17865         as_warn_where (fragp->fr_file, fragp->fr_line,
17866                        _("extended instruction in delay slot"));
17867
17868       buf = fragp->fr_literal + fragp->fr_fix;
17869
17870       insn = read_compressed_insn (buf, 2);
17871       if (ext)
17872         insn |= MIPS16_EXTEND;
17873
17874       if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
17875         user_length = 4;
17876       else if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
17877         user_length = 2;
17878       else
17879         user_length = 0;
17880
17881       mips16_immed (fragp->fr_file, fragp->fr_line, type,
17882                     BFD_RELOC_UNUSED, val, user_length, &insn);
17883
17884       length = (ext ? 4 : 2);
17885       gas_assert (mips16_opcode_length (insn) == length);
17886       write_compressed_insn (buf, insn, length);
17887       fragp->fr_fix += length;
17888     }
17889   else
17890     {
17891       relax_substateT subtype = fragp->fr_subtype;
17892       bfd_boolean second_longer = (subtype & RELAX_SECOND_LONGER) != 0;
17893       bfd_boolean use_second = (subtype & RELAX_USE_SECOND) != 0;
17894       int first, second;
17895       fixS *fixp;
17896
17897       first = RELAX_FIRST (subtype);
17898       second = RELAX_SECOND (subtype);
17899       fixp = (fixS *) fragp->fr_opcode;
17900
17901       /* If the delay slot chosen does not match the size of the instruction,
17902          then emit a warning.  */
17903       if ((!use_second && (subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0)
17904            || (use_second && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0))
17905         {
17906           relax_substateT s;
17907           const char *msg;
17908
17909           s = subtype & (RELAX_DELAY_SLOT_16BIT
17910                          | RELAX_DELAY_SLOT_SIZE_FIRST
17911                          | RELAX_DELAY_SLOT_SIZE_SECOND);
17912           msg = macro_warning (s);
17913           if (msg != NULL)
17914             as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
17915           subtype &= ~s;
17916         }
17917
17918       /* Possibly emit a warning if we've chosen the longer option.  */
17919       if (use_second == second_longer)
17920         {
17921           relax_substateT s;
17922           const char *msg;
17923
17924           s = (subtype
17925                & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT));
17926           msg = macro_warning (s);
17927           if (msg != NULL)
17928             as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
17929           subtype &= ~s;
17930         }
17931
17932       /* Go through all the fixups for the first sequence.  Disable them
17933          (by marking them as done) if we're going to use the second
17934          sequence instead.  */
17935       while (fixp
17936              && fixp->fx_frag == fragp
17937              && fixp->fx_where < fragp->fr_fix - second)
17938         {
17939           if (subtype & RELAX_USE_SECOND)
17940             fixp->fx_done = 1;
17941           fixp = fixp->fx_next;
17942         }
17943
17944       /* Go through the fixups for the second sequence.  Disable them if
17945          we're going to use the first sequence, otherwise adjust their
17946          addresses to account for the relaxation.  */
17947       while (fixp && fixp->fx_frag == fragp)
17948         {
17949           if (subtype & RELAX_USE_SECOND)
17950             fixp->fx_where -= first;
17951           else
17952             fixp->fx_done = 1;
17953           fixp = fixp->fx_next;
17954         }
17955
17956       /* Now modify the frag contents.  */
17957       if (subtype & RELAX_USE_SECOND)
17958         {
17959           char *start;
17960
17961           start = fragp->fr_literal + fragp->fr_fix - first - second;
17962           memmove (start, start + first, second);
17963           fragp->fr_fix -= first;
17964         }
17965       else
17966         fragp->fr_fix -= second;
17967     }
17968 }
17969
17970 /* This function is called after the relocs have been generated.
17971    We've been storing mips16 text labels as odd.  Here we convert them
17972    back to even for the convenience of the debugger.  */
17973
17974 void
17975 mips_frob_file_after_relocs (void)
17976 {
17977   asymbol **syms;
17978   unsigned int count, i;
17979
17980   syms = bfd_get_outsymbols (stdoutput);
17981   count = bfd_get_symcount (stdoutput);
17982   for (i = 0; i < count; i++, syms++)
17983     if (ELF_ST_IS_COMPRESSED (elf_symbol (*syms)->internal_elf_sym.st_other)
17984         && ((*syms)->value & 1) != 0)
17985       {
17986         (*syms)->value &= ~1;
17987         /* If the symbol has an odd size, it was probably computed
17988            incorrectly, so adjust that as well.  */
17989         if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
17990           ++elf_symbol (*syms)->internal_elf_sym.st_size;
17991       }
17992 }
17993
17994 /* This function is called whenever a label is defined, including fake
17995    labels instantiated off the dot special symbol.  It is used when
17996    handling branch delays; if a branch has a label, we assume we cannot
17997    move it.  This also bumps the value of the symbol by 1 in compressed
17998    code.  */
17999
18000 static void
18001 mips_record_label (symbolS *sym)
18002 {
18003   segment_info_type *si = seg_info (now_seg);
18004   struct insn_label_list *l;
18005
18006   if (free_insn_labels == NULL)
18007     l = XNEW (struct insn_label_list);
18008   else
18009     {
18010       l = free_insn_labels;
18011       free_insn_labels = l->next;
18012     }
18013
18014   l->label = sym;
18015   l->next = si->label_list;
18016   si->label_list = l;
18017 }
18018
18019 /* This function is called as tc_frob_label() whenever a label is defined
18020    and adds a DWARF-2 record we only want for true labels.  */
18021
18022 void
18023 mips_define_label (symbolS *sym)
18024 {
18025   mips_record_label (sym);
18026   dwarf2_emit_label (sym);
18027 }
18028
18029 /* This function is called by tc_new_dot_label whenever a new dot symbol
18030    is defined.  */
18031
18032 void
18033 mips_add_dot_label (symbolS *sym)
18034 {
18035   mips_record_label (sym);
18036   if (mips_assembling_insn && HAVE_CODE_COMPRESSION)
18037     mips_compressed_mark_label (sym);
18038 }
18039 \f
18040 /* Converting ASE flags from internal to .MIPS.abiflags values.  */
18041 static unsigned int
18042 mips_convert_ase_flags (int ase)
18043 {
18044   unsigned int ext_ases = 0;
18045
18046   if (ase & ASE_DSP)
18047     ext_ases |= AFL_ASE_DSP;
18048   if (ase & ASE_DSPR2)
18049     ext_ases |= AFL_ASE_DSPR2;
18050   if (ase & ASE_DSPR3)
18051     ext_ases |= AFL_ASE_DSPR3;
18052   if (ase & ASE_EVA)
18053     ext_ases |= AFL_ASE_EVA;
18054   if (ase & ASE_MCU)
18055     ext_ases |= AFL_ASE_MCU;
18056   if (ase & ASE_MDMX)
18057     ext_ases |= AFL_ASE_MDMX;
18058   if (ase & ASE_MIPS3D)
18059     ext_ases |= AFL_ASE_MIPS3D;
18060   if (ase & ASE_MT)
18061     ext_ases |= AFL_ASE_MT;
18062   if (ase & ASE_SMARTMIPS)
18063     ext_ases |= AFL_ASE_SMARTMIPS;
18064   if (ase & ASE_VIRT)
18065     ext_ases |= AFL_ASE_VIRT;
18066   if (ase & ASE_MSA)
18067     ext_ases |= AFL_ASE_MSA;
18068   if (ase & ASE_XPA)
18069     ext_ases |= AFL_ASE_XPA;
18070
18071   return ext_ases;
18072 }
18073 /* Some special processing for a MIPS ELF file.  */
18074
18075 void
18076 mips_elf_final_processing (void)
18077 {
18078   int fpabi;
18079   Elf_Internal_ABIFlags_v0 flags;
18080
18081   flags.version = 0;
18082   flags.isa_rev = 0;
18083   switch (file_mips_opts.isa)
18084     {
18085     case INSN_ISA1:
18086       flags.isa_level = 1;
18087       break;
18088     case INSN_ISA2:
18089       flags.isa_level = 2;
18090       break;
18091     case INSN_ISA3:
18092       flags.isa_level = 3;
18093       break;
18094     case INSN_ISA4:
18095       flags.isa_level = 4;
18096       break;
18097     case INSN_ISA5:
18098       flags.isa_level = 5;
18099       break;
18100     case INSN_ISA32:
18101       flags.isa_level = 32;
18102       flags.isa_rev = 1;
18103       break;
18104     case INSN_ISA32R2:
18105       flags.isa_level = 32;
18106       flags.isa_rev = 2;
18107       break;
18108     case INSN_ISA32R3:
18109       flags.isa_level = 32;
18110       flags.isa_rev = 3;
18111       break;
18112     case INSN_ISA32R5:
18113       flags.isa_level = 32;
18114       flags.isa_rev = 5;
18115       break;
18116     case INSN_ISA32R6:
18117       flags.isa_level = 32;
18118       flags.isa_rev = 6;
18119       break;
18120     case INSN_ISA64:
18121       flags.isa_level = 64;
18122       flags.isa_rev = 1;
18123       break;
18124     case INSN_ISA64R2:
18125       flags.isa_level = 64;
18126       flags.isa_rev = 2;
18127       break;
18128     case INSN_ISA64R3:
18129       flags.isa_level = 64;
18130       flags.isa_rev = 3;
18131       break;
18132     case INSN_ISA64R5:
18133       flags.isa_level = 64;
18134       flags.isa_rev = 5;
18135       break;
18136     case INSN_ISA64R6:
18137       flags.isa_level = 64;
18138       flags.isa_rev = 6;
18139       break;
18140     }
18141
18142   flags.gpr_size = file_mips_opts.gp == 32 ? AFL_REG_32 : AFL_REG_64;
18143   flags.cpr1_size = file_mips_opts.soft_float ? AFL_REG_NONE
18144                     : (file_mips_opts.ase & ASE_MSA) ? AFL_REG_128
18145                     : (file_mips_opts.fp == 64) ? AFL_REG_64
18146                     : AFL_REG_32;
18147   flags.cpr2_size = AFL_REG_NONE;
18148   flags.fp_abi = bfd_elf_get_obj_attr_int (stdoutput, OBJ_ATTR_GNU,
18149                                            Tag_GNU_MIPS_ABI_FP);
18150   flags.isa_ext = bfd_mips_isa_ext (stdoutput);
18151   flags.ases = mips_convert_ase_flags (file_mips_opts.ase);
18152   if (file_ase_mips16)
18153     flags.ases |= AFL_ASE_MIPS16;
18154   if (file_ase_micromips)
18155     flags.ases |= AFL_ASE_MICROMIPS;
18156   flags.flags1 = 0;
18157   if ((ISA_HAS_ODD_SINGLE_FPR (file_mips_opts.isa, file_mips_opts.arch)
18158        || file_mips_opts.fp == 64)
18159       && file_mips_opts.oddspreg)
18160     flags.flags1 |= AFL_FLAGS1_ODDSPREG;
18161   flags.flags2 = 0;
18162
18163   bfd_mips_elf_swap_abiflags_v0_out (stdoutput, &flags,
18164                                      ((Elf_External_ABIFlags_v0 *)
18165                                      mips_flags_frag));
18166
18167   /* Write out the register information.  */
18168   if (mips_abi != N64_ABI)
18169     {
18170       Elf32_RegInfo s;
18171
18172       s.ri_gprmask = mips_gprmask;
18173       s.ri_cprmask[0] = mips_cprmask[0];
18174       s.ri_cprmask[1] = mips_cprmask[1];
18175       s.ri_cprmask[2] = mips_cprmask[2];
18176       s.ri_cprmask[3] = mips_cprmask[3];
18177       /* The gp_value field is set by the MIPS ELF backend.  */
18178
18179       bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
18180                                        ((Elf32_External_RegInfo *)
18181                                         mips_regmask_frag));
18182     }
18183   else
18184     {
18185       Elf64_Internal_RegInfo s;
18186
18187       s.ri_gprmask = mips_gprmask;
18188       s.ri_pad = 0;
18189       s.ri_cprmask[0] = mips_cprmask[0];
18190       s.ri_cprmask[1] = mips_cprmask[1];
18191       s.ri_cprmask[2] = mips_cprmask[2];
18192       s.ri_cprmask[3] = mips_cprmask[3];
18193       /* The gp_value field is set by the MIPS ELF backend.  */
18194
18195       bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
18196                                        ((Elf64_External_RegInfo *)
18197                                         mips_regmask_frag));
18198     }
18199
18200   /* Set the MIPS ELF flag bits.  FIXME: There should probably be some
18201      sort of BFD interface for this.  */
18202   if (mips_any_noreorder)
18203     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
18204   if (mips_pic != NO_PIC)
18205     {
18206       elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
18207       elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
18208     }
18209   if (mips_abicalls)
18210     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
18211
18212   /* Set MIPS ELF flags for ASEs.  Note that not all ASEs have flags
18213      defined at present; this might need to change in future.  */
18214   if (file_ase_mips16)
18215     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
18216   if (file_ase_micromips)
18217     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MICROMIPS;
18218   if (file_mips_opts.ase & ASE_MDMX)
18219     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
18220
18221   /* Set the MIPS ELF ABI flags.  */
18222   if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
18223     elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
18224   else if (mips_abi == O64_ABI)
18225     elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
18226   else if (mips_abi == EABI_ABI)
18227     {
18228       if (file_mips_opts.gp == 64)
18229         elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
18230       else
18231         elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
18232     }
18233   else if (mips_abi == N32_ABI)
18234     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
18235
18236   /* Nothing to do for N64_ABI.  */
18237
18238   if (mips_32bitmode)
18239     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
18240
18241   if (mips_nan2008 == 1)
18242     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NAN2008;
18243
18244   /* 32 bit code with 64 bit FP registers.  */
18245   fpabi = bfd_elf_get_obj_attr_int (stdoutput, OBJ_ATTR_GNU,
18246                                     Tag_GNU_MIPS_ABI_FP);
18247   if (fpabi == Val_GNU_MIPS_ABI_FP_OLD_64)
18248     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_FP64;
18249 }
18250 \f
18251 typedef struct proc {
18252   symbolS *func_sym;
18253   symbolS *func_end_sym;
18254   unsigned long reg_mask;
18255   unsigned long reg_offset;
18256   unsigned long fpreg_mask;
18257   unsigned long fpreg_offset;
18258   unsigned long frame_offset;
18259   unsigned long frame_reg;
18260   unsigned long pc_reg;
18261 } procS;
18262
18263 static procS cur_proc;
18264 static procS *cur_proc_ptr;
18265 static int numprocs;
18266
18267 /* Implement NOP_OPCODE.  We encode a MIPS16 nop as "1", a microMIPS nop
18268    as "2", and a normal nop as "0".  */
18269
18270 #define NOP_OPCODE_MIPS         0
18271 #define NOP_OPCODE_MIPS16       1
18272 #define NOP_OPCODE_MICROMIPS    2
18273
18274 char
18275 mips_nop_opcode (void)
18276 {
18277   if (seg_info (now_seg)->tc_segment_info_data.micromips)
18278     return NOP_OPCODE_MICROMIPS;
18279   else if (seg_info (now_seg)->tc_segment_info_data.mips16)
18280     return NOP_OPCODE_MIPS16;
18281   else
18282     return NOP_OPCODE_MIPS;
18283 }
18284
18285 /* Fill in an rs_align_code fragment.  Unlike elsewhere we want to use
18286    32-bit microMIPS NOPs here (if applicable).  */
18287
18288 void
18289 mips_handle_align (fragS *fragp)
18290 {
18291   char nop_opcode;
18292   char *p;
18293   int bytes, size, excess;
18294   valueT opcode;
18295
18296   if (fragp->fr_type != rs_align_code)
18297     return;
18298
18299   p = fragp->fr_literal + fragp->fr_fix;
18300   nop_opcode = *p;
18301   switch (nop_opcode)
18302     {
18303     case NOP_OPCODE_MICROMIPS:
18304       opcode = micromips_nop32_insn.insn_opcode;
18305       size = 4;
18306       break;
18307     case NOP_OPCODE_MIPS16:
18308       opcode = mips16_nop_insn.insn_opcode;
18309       size = 2;
18310       break;
18311     case NOP_OPCODE_MIPS:
18312     default:
18313       opcode = nop_insn.insn_opcode;
18314       size = 4;
18315       break;
18316     }
18317
18318   bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
18319   excess = bytes % size;
18320
18321   /* Handle the leading part if we're not inserting a whole number of
18322      instructions, and make it the end of the fixed part of the frag.
18323      Try to fit in a short microMIPS NOP if applicable and possible,
18324      and use zeroes otherwise.  */
18325   gas_assert (excess < 4);
18326   fragp->fr_fix += excess;
18327   switch (excess)
18328     {
18329     case 3:
18330       *p++ = '\0';
18331       /* Fall through.  */
18332     case 2:
18333       if (nop_opcode == NOP_OPCODE_MICROMIPS && !mips_opts.insn32)
18334         {
18335           p = write_compressed_insn (p, micromips_nop16_insn.insn_opcode, 2);
18336           break;
18337         }
18338       *p++ = '\0';
18339       /* Fall through.  */
18340     case 1:
18341       *p++ = '\0';
18342       /* Fall through.  */
18343     case 0:
18344       break;
18345     }
18346
18347   md_number_to_chars (p, opcode, size);
18348   fragp->fr_var = size;
18349 }
18350
18351 static long
18352 get_number (void)
18353 {
18354   int negative = 0;
18355   long val = 0;
18356
18357   if (*input_line_pointer == '-')
18358     {
18359       ++input_line_pointer;
18360       negative = 1;
18361     }
18362   if (!ISDIGIT (*input_line_pointer))
18363     as_bad (_("expected simple number"));
18364   if (input_line_pointer[0] == '0')
18365     {
18366       if (input_line_pointer[1] == 'x')
18367         {
18368           input_line_pointer += 2;
18369           while (ISXDIGIT (*input_line_pointer))
18370             {
18371               val <<= 4;
18372               val |= hex_value (*input_line_pointer++);
18373             }
18374           return negative ? -val : val;
18375         }
18376       else
18377         {
18378           ++input_line_pointer;
18379           while (ISDIGIT (*input_line_pointer))
18380             {
18381               val <<= 3;
18382               val |= *input_line_pointer++ - '0';
18383             }
18384           return negative ? -val : val;
18385         }
18386     }
18387   if (!ISDIGIT (*input_line_pointer))
18388     {
18389       printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
18390               *input_line_pointer, *input_line_pointer);
18391       as_warn (_("invalid number"));
18392       return -1;
18393     }
18394   while (ISDIGIT (*input_line_pointer))
18395     {
18396       val *= 10;
18397       val += *input_line_pointer++ - '0';
18398     }
18399   return negative ? -val : val;
18400 }
18401
18402 /* The .file directive; just like the usual .file directive, but there
18403    is an initial number which is the ECOFF file index.  In the non-ECOFF
18404    case .file implies DWARF-2.  */
18405
18406 static void
18407 s_mips_file (int x ATTRIBUTE_UNUSED)
18408 {
18409   static int first_file_directive = 0;
18410
18411   if (ECOFF_DEBUGGING)
18412     {
18413       get_number ();
18414       s_app_file (0);
18415     }
18416   else
18417     {
18418       char *filename;
18419
18420       filename = dwarf2_directive_file (0);
18421
18422       /* Versions of GCC up to 3.1 start files with a ".file"
18423          directive even for stabs output.  Make sure that this
18424          ".file" is handled.  Note that you need a version of GCC
18425          after 3.1 in order to support DWARF-2 on MIPS.  */
18426       if (filename != NULL && ! first_file_directive)
18427         {
18428           (void) new_logical_line (filename, -1);
18429           s_app_file_string (filename, 0);
18430         }
18431       first_file_directive = 1;
18432     }
18433 }
18434
18435 /* The .loc directive, implying DWARF-2.  */
18436
18437 static void
18438 s_mips_loc (int x ATTRIBUTE_UNUSED)
18439 {
18440   if (!ECOFF_DEBUGGING)
18441     dwarf2_directive_loc (0);
18442 }
18443
18444 /* The .end directive.  */
18445
18446 static void
18447 s_mips_end (int x ATTRIBUTE_UNUSED)
18448 {
18449   symbolS *p;
18450
18451   /* Following functions need their own .frame and .cprestore directives.  */
18452   mips_frame_reg_valid = 0;
18453   mips_cprestore_valid = 0;
18454
18455   if (!is_end_of_line[(unsigned char) *input_line_pointer])
18456     {
18457       p = get_symbol ();
18458       demand_empty_rest_of_line ();
18459     }
18460   else
18461     p = NULL;
18462
18463   if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
18464     as_warn (_(".end not in text section"));
18465
18466   if (!cur_proc_ptr)
18467     {
18468       as_warn (_(".end directive without a preceding .ent directive"));
18469       demand_empty_rest_of_line ();
18470       return;
18471     }
18472
18473   if (p != NULL)
18474     {
18475       gas_assert (S_GET_NAME (p));
18476       if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
18477         as_warn (_(".end symbol does not match .ent symbol"));
18478
18479       if (debug_type == DEBUG_STABS)
18480         stabs_generate_asm_endfunc (S_GET_NAME (p),
18481                                     S_GET_NAME (p));
18482     }
18483   else
18484     as_warn (_(".end directive missing or unknown symbol"));
18485
18486   /* Create an expression to calculate the size of the function.  */
18487   if (p && cur_proc_ptr)
18488     {
18489       OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
18490       expressionS *exp = XNEW (expressionS);
18491
18492       obj->size = exp;
18493       exp->X_op = O_subtract;
18494       exp->X_add_symbol = symbol_temp_new_now ();
18495       exp->X_op_symbol = p;
18496       exp->X_add_number = 0;
18497
18498       cur_proc_ptr->func_end_sym = exp->X_add_symbol;
18499     }
18500
18501   /* Generate a .pdr section.  */
18502   if (!ECOFF_DEBUGGING && mips_flag_pdr)
18503     {
18504       segT saved_seg = now_seg;
18505       subsegT saved_subseg = now_subseg;
18506       expressionS exp;
18507       char *fragp;
18508
18509 #ifdef md_flush_pending_output
18510       md_flush_pending_output ();
18511 #endif
18512
18513       gas_assert (pdr_seg);
18514       subseg_set (pdr_seg, 0);
18515
18516       /* Write the symbol.  */
18517       exp.X_op = O_symbol;
18518       exp.X_add_symbol = p;
18519       exp.X_add_number = 0;
18520       emit_expr (&exp, 4);
18521
18522       fragp = frag_more (7 * 4);
18523
18524       md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
18525       md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
18526       md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
18527       md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
18528       md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
18529       md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
18530       md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
18531
18532       subseg_set (saved_seg, saved_subseg);
18533     }
18534
18535   cur_proc_ptr = NULL;
18536 }
18537
18538 /* The .aent and .ent directives.  */
18539
18540 static void
18541 s_mips_ent (int aent)
18542 {
18543   symbolS *symbolP;
18544
18545   symbolP = get_symbol ();
18546   if (*input_line_pointer == ',')
18547     ++input_line_pointer;
18548   SKIP_WHITESPACE ();
18549   if (ISDIGIT (*input_line_pointer)
18550       || *input_line_pointer == '-')
18551     get_number ();
18552
18553   if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
18554     as_warn (_(".ent or .aent not in text section"));
18555
18556   if (!aent && cur_proc_ptr)
18557     as_warn (_("missing .end"));
18558
18559   if (!aent)
18560     {
18561       /* This function needs its own .frame and .cprestore directives.  */
18562       mips_frame_reg_valid = 0;
18563       mips_cprestore_valid = 0;
18564
18565       cur_proc_ptr = &cur_proc;
18566       memset (cur_proc_ptr, '\0', sizeof (procS));
18567
18568       cur_proc_ptr->func_sym = symbolP;
18569
18570       ++numprocs;
18571
18572       if (debug_type == DEBUG_STABS)
18573         stabs_generate_asm_func (S_GET_NAME (symbolP),
18574                                  S_GET_NAME (symbolP));
18575     }
18576
18577   symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
18578
18579   demand_empty_rest_of_line ();
18580 }
18581
18582 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
18583    then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
18584    s_mips_frame is used so that we can set the PDR information correctly.
18585    We can't use the ecoff routines because they make reference to the ecoff
18586    symbol table (in the mdebug section).  */
18587
18588 static void
18589 s_mips_frame (int ignore ATTRIBUTE_UNUSED)
18590 {
18591   if (ECOFF_DEBUGGING)
18592     s_ignore (ignore);
18593   else
18594     {
18595       long val;
18596
18597       if (cur_proc_ptr == (procS *) NULL)
18598         {
18599           as_warn (_(".frame outside of .ent"));
18600           demand_empty_rest_of_line ();
18601           return;
18602         }
18603
18604       cur_proc_ptr->frame_reg = tc_get_register (1);
18605
18606       SKIP_WHITESPACE ();
18607       if (*input_line_pointer++ != ','
18608           || get_absolute_expression_and_terminator (&val) != ',')
18609         {
18610           as_warn (_("bad .frame directive"));
18611           --input_line_pointer;
18612           demand_empty_rest_of_line ();
18613           return;
18614         }
18615
18616       cur_proc_ptr->frame_offset = val;
18617       cur_proc_ptr->pc_reg = tc_get_register (0);
18618
18619       demand_empty_rest_of_line ();
18620     }
18621 }
18622
18623 /* The .fmask and .mask directives. If the mdebug section is present
18624    (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
18625    embedded targets, s_mips_mask is used so that we can set the PDR
18626    information correctly. We can't use the ecoff routines because they
18627    make reference to the ecoff symbol table (in the mdebug section).  */
18628
18629 static void
18630 s_mips_mask (int reg_type)
18631 {
18632   if (ECOFF_DEBUGGING)
18633     s_ignore (reg_type);
18634   else
18635     {
18636       long mask, off;
18637
18638       if (cur_proc_ptr == (procS *) NULL)
18639         {
18640           as_warn (_(".mask/.fmask outside of .ent"));
18641           demand_empty_rest_of_line ();
18642           return;
18643         }
18644
18645       if (get_absolute_expression_and_terminator (&mask) != ',')
18646         {
18647           as_warn (_("bad .mask/.fmask directive"));
18648           --input_line_pointer;
18649           demand_empty_rest_of_line ();
18650           return;
18651         }
18652
18653       off = get_absolute_expression ();
18654
18655       if (reg_type == 'F')
18656         {
18657           cur_proc_ptr->fpreg_mask = mask;
18658           cur_proc_ptr->fpreg_offset = off;
18659         }
18660       else
18661         {
18662           cur_proc_ptr->reg_mask = mask;
18663           cur_proc_ptr->reg_offset = off;
18664         }
18665
18666       demand_empty_rest_of_line ();
18667     }
18668 }
18669
18670 /* A table describing all the processors gas knows about.  Names are
18671    matched in the order listed.
18672
18673    To ease comparison, please keep this table in the same order as
18674    gcc's mips_cpu_info_table[].  */
18675 static const struct mips_cpu_info mips_cpu_info_table[] =
18676 {
18677   /* Entries for generic ISAs */
18678   { "mips1",          MIPS_CPU_IS_ISA, 0,       ISA_MIPS1,    CPU_R3000 },
18679   { "mips2",          MIPS_CPU_IS_ISA, 0,       ISA_MIPS2,    CPU_R6000 },
18680   { "mips3",          MIPS_CPU_IS_ISA, 0,       ISA_MIPS3,    CPU_R4000 },
18681   { "mips4",          MIPS_CPU_IS_ISA, 0,       ISA_MIPS4,    CPU_R8000 },
18682   { "mips5",          MIPS_CPU_IS_ISA, 0,       ISA_MIPS5,    CPU_MIPS5 },
18683   { "mips32",         MIPS_CPU_IS_ISA, 0,       ISA_MIPS32,   CPU_MIPS32 },
18684   { "mips32r2",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS32R2, CPU_MIPS32R2 },
18685   { "mips32r3",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS32R3, CPU_MIPS32R3 },
18686   { "mips32r5",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS32R5, CPU_MIPS32R5 },
18687   { "mips32r6",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS32R6, CPU_MIPS32R6 },
18688   { "mips64",         MIPS_CPU_IS_ISA, 0,       ISA_MIPS64,   CPU_MIPS64 },
18689   { "mips64r2",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS64R2, CPU_MIPS64R2 },
18690   { "mips64r3",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS64R3, CPU_MIPS64R3 },
18691   { "mips64r5",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS64R5, CPU_MIPS64R5 },
18692   { "mips64r6",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS64R6, CPU_MIPS64R6 },
18693
18694   /* MIPS I */
18695   { "r3000",          0, 0,                     ISA_MIPS1,    CPU_R3000 },
18696   { "r2000",          0, 0,                     ISA_MIPS1,    CPU_R3000 },
18697   { "r3900",          0, 0,                     ISA_MIPS1,    CPU_R3900 },
18698
18699   /* MIPS II */
18700   { "r6000",          0, 0,                     ISA_MIPS2,    CPU_R6000 },
18701
18702   /* MIPS III */
18703   { "r4000",          0, 0,                     ISA_MIPS3,    CPU_R4000 },
18704   { "r4010",          0, 0,                     ISA_MIPS2,    CPU_R4010 },
18705   { "vr4100",         0, 0,                     ISA_MIPS3,    CPU_VR4100 },
18706   { "vr4111",         0, 0,                     ISA_MIPS3,    CPU_R4111 },
18707   { "vr4120",         0, 0,                     ISA_MIPS3,    CPU_VR4120 },
18708   { "vr4130",         0, 0,                     ISA_MIPS3,    CPU_VR4120 },
18709   { "vr4181",         0, 0,                     ISA_MIPS3,    CPU_R4111 },
18710   { "vr4300",         0, 0,                     ISA_MIPS3,    CPU_R4300 },
18711   { "r4400",          0, 0,                     ISA_MIPS3,    CPU_R4400 },
18712   { "r4600",          0, 0,                     ISA_MIPS3,    CPU_R4600 },
18713   { "orion",          0, 0,                     ISA_MIPS3,    CPU_R4600 },
18714   { "r4650",          0, 0,                     ISA_MIPS3,    CPU_R4650 },
18715   { "r5900",          0, 0,                     ISA_MIPS3,    CPU_R5900 },
18716   /* ST Microelectronics Loongson 2E and 2F cores */
18717   { "loongson2e",     0, 0,                     ISA_MIPS3,    CPU_LOONGSON_2E },
18718   { "loongson2f",     0, 0,                     ISA_MIPS3,    CPU_LOONGSON_2F },
18719
18720   /* MIPS IV */
18721   { "r8000",          0, 0,                     ISA_MIPS4,    CPU_R8000 },
18722   { "r10000",         0, 0,                     ISA_MIPS4,    CPU_R10000 },
18723   { "r12000",         0, 0,                     ISA_MIPS4,    CPU_R12000 },
18724   { "r14000",         0, 0,                     ISA_MIPS4,    CPU_R14000 },
18725   { "r16000",         0, 0,                     ISA_MIPS4,    CPU_R16000 },
18726   { "vr5000",         0, 0,                     ISA_MIPS4,    CPU_R5000 },
18727   { "vr5400",         0, 0,                     ISA_MIPS4,    CPU_VR5400 },
18728   { "vr5500",         0, 0,                     ISA_MIPS4,    CPU_VR5500 },
18729   { "rm5200",         0, 0,                     ISA_MIPS4,    CPU_R5000 },
18730   { "rm5230",         0, 0,                     ISA_MIPS4,    CPU_R5000 },
18731   { "rm5231",         0, 0,                     ISA_MIPS4,    CPU_R5000 },
18732   { "rm5261",         0, 0,                     ISA_MIPS4,    CPU_R5000 },
18733   { "rm5721",         0, 0,                     ISA_MIPS4,    CPU_R5000 },
18734   { "rm7000",         0, 0,                     ISA_MIPS4,    CPU_RM7000 },
18735   { "rm9000",         0, 0,                     ISA_MIPS4,    CPU_RM9000 },
18736
18737   /* MIPS 32 */
18738   { "4kc",            0, 0,                     ISA_MIPS32,   CPU_MIPS32 },
18739   { "4km",            0, 0,                     ISA_MIPS32,   CPU_MIPS32 },
18740   { "4kp",            0, 0,                     ISA_MIPS32,   CPU_MIPS32 },
18741   { "4ksc",           0, ASE_SMARTMIPS,         ISA_MIPS32,   CPU_MIPS32 },
18742
18743   /* MIPS 32 Release 2 */
18744   { "4kec",           0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18745   { "4kem",           0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18746   { "4kep",           0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18747   { "4ksd",           0, ASE_SMARTMIPS,         ISA_MIPS32R2, CPU_MIPS32R2 },
18748   { "m4k",            0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18749   { "m4kp",           0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18750   { "m14k",           0, ASE_MCU,               ISA_MIPS32R2, CPU_MIPS32R2 },
18751   { "m14kc",          0, ASE_MCU,               ISA_MIPS32R2, CPU_MIPS32R2 },
18752   { "m14ke",          0, ASE_DSP | ASE_DSPR2 | ASE_MCU,
18753                                                 ISA_MIPS32R2, CPU_MIPS32R2 },
18754   { "m14kec",         0, ASE_DSP | ASE_DSPR2 | ASE_MCU,
18755                                                 ISA_MIPS32R2, CPU_MIPS32R2 },
18756   { "24kc",           0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18757   { "24kf2_1",        0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18758   { "24kf",           0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18759   { "24kf1_1",        0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18760   /* Deprecated forms of the above.  */
18761   { "24kfx",          0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18762   { "24kx",           0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18763   /* 24KE is a 24K with DSP ASE, other ASEs are optional.  */
18764   { "24kec",          0, ASE_DSP,               ISA_MIPS32R2, CPU_MIPS32R2 },
18765   { "24kef2_1",       0, ASE_DSP,               ISA_MIPS32R2, CPU_MIPS32R2 },
18766   { "24kef",          0, ASE_DSP,               ISA_MIPS32R2, CPU_MIPS32R2 },
18767   { "24kef1_1",       0, ASE_DSP,               ISA_MIPS32R2, CPU_MIPS32R2 },
18768   /* Deprecated forms of the above.  */
18769   { "24kefx",         0, ASE_DSP,               ISA_MIPS32R2, CPU_MIPS32R2 },
18770   { "24kex",          0, ASE_DSP,               ISA_MIPS32R2, CPU_MIPS32R2 },
18771   /* 34K is a 24K with DSP and MT ASE, other ASEs are optional.  */
18772   { "34kc",           0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18773   { "34kf2_1",        0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18774   { "34kf",           0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18775   { "34kf1_1",        0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18776   /* Deprecated forms of the above.  */
18777   { "34kfx",          0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18778   { "34kx",           0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18779   /* 34Kn is a 34kc without DSP.  */
18780   { "34kn",           0, ASE_MT,                ISA_MIPS32R2, CPU_MIPS32R2 },
18781   /* 74K with DSP and DSPR2 ASE, other ASEs are optional.  */
18782   { "74kc",           0, ASE_DSP | ASE_DSPR2,   ISA_MIPS32R2, CPU_MIPS32R2 },
18783   { "74kf2_1",        0, ASE_DSP | ASE_DSPR2,   ISA_MIPS32R2, CPU_MIPS32R2 },
18784   { "74kf",           0, ASE_DSP | ASE_DSPR2,   ISA_MIPS32R2, CPU_MIPS32R2 },
18785   { "74kf1_1",        0, ASE_DSP | ASE_DSPR2,   ISA_MIPS32R2, CPU_MIPS32R2 },
18786   { "74kf3_2",        0, ASE_DSP | ASE_DSPR2,   ISA_MIPS32R2, CPU_MIPS32R2 },
18787   /* Deprecated forms of the above.  */
18788   { "74kfx",          0, ASE_DSP | ASE_DSPR2,   ISA_MIPS32R2, CPU_MIPS32R2 },
18789   { "74kx",           0, ASE_DSP | ASE_DSPR2,   ISA_MIPS32R2, CPU_MIPS32R2 },
18790   /* 1004K cores are multiprocessor versions of the 34K.  */
18791   { "1004kc",         0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18792   { "1004kf2_1",      0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18793   { "1004kf",         0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18794   { "1004kf1_1",      0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18795   /* interaptiv is the new name for 1004kf */
18796   { "interaptiv",     0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18797   /* M5100 family */
18798   { "m5100",          0, ASE_MCU,               ISA_MIPS32R5, CPU_MIPS32R5 },
18799   { "m5101",          0, ASE_MCU,               ISA_MIPS32R5, CPU_MIPS32R5 },
18800   /* P5600 with EVA and Virtualization ASEs, other ASEs are optional.  */
18801   { "p5600",          0, ASE_VIRT | ASE_EVA | ASE_XPA,  ISA_MIPS32R5, CPU_MIPS32R5 },
18802
18803   /* MIPS 64 */
18804   { "5kc",            0, 0,                     ISA_MIPS64,   CPU_MIPS64 },
18805   { "5kf",            0, 0,                     ISA_MIPS64,   CPU_MIPS64 },
18806   { "20kc",           0, ASE_MIPS3D,            ISA_MIPS64,   CPU_MIPS64 },
18807   { "25kf",           0, ASE_MIPS3D,            ISA_MIPS64,   CPU_MIPS64 },
18808
18809   /* Broadcom SB-1 CPU core */
18810   { "sb1",            0, ASE_MIPS3D | ASE_MDMX, ISA_MIPS64,   CPU_SB1 },
18811   /* Broadcom SB-1A CPU core */
18812   { "sb1a",           0, ASE_MIPS3D | ASE_MDMX, ISA_MIPS64,   CPU_SB1 },
18813
18814   { "loongson3a",     0, 0,                     ISA_MIPS64R2, CPU_LOONGSON_3A },
18815
18816   /* MIPS 64 Release 2 */
18817
18818   /* Cavium Networks Octeon CPU core */
18819   { "octeon",         0, 0,                     ISA_MIPS64R2, CPU_OCTEON },
18820   { "octeon+",        0, 0,                     ISA_MIPS64R2, CPU_OCTEONP },
18821   { "octeon2",        0, 0,                     ISA_MIPS64R2, CPU_OCTEON2 },
18822   { "octeon3",        0, ASE_VIRT | ASE_VIRT64, ISA_MIPS64R5, CPU_OCTEON3 },
18823
18824   /* RMI Xlr */
18825   { "xlr",            0, 0,                     ISA_MIPS64,   CPU_XLR },
18826
18827   /* Broadcom XLP.
18828      XLP is mostly like XLR, with the prominent exception that it is
18829      MIPS64R2 rather than MIPS64.  */
18830   { "xlp",            0, 0,                     ISA_MIPS64R2, CPU_XLR },
18831
18832   /* MIPS 64 Release 6 */
18833   { "i6400",          0, ASE_MSA,               ISA_MIPS64R6, CPU_MIPS64R6},
18834   { "p6600",          0, ASE_VIRT | ASE_MSA,    ISA_MIPS64R6, CPU_MIPS64R6},
18835
18836   /* End marker */
18837   { NULL, 0, 0, 0, 0 }
18838 };
18839
18840
18841 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
18842    with a final "000" replaced by "k".  Ignore case.
18843
18844    Note: this function is shared between GCC and GAS.  */
18845
18846 static bfd_boolean
18847 mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
18848 {
18849   while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
18850     given++, canonical++;
18851
18852   return ((*given == 0 && *canonical == 0)
18853           || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
18854 }
18855
18856
18857 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
18858    CPU name.  We've traditionally allowed a lot of variation here.
18859
18860    Note: this function is shared between GCC and GAS.  */
18861
18862 static bfd_boolean
18863 mips_matching_cpu_name_p (const char *canonical, const char *given)
18864 {
18865   /* First see if the name matches exactly, or with a final "000"
18866      turned into "k".  */
18867   if (mips_strict_matching_cpu_name_p (canonical, given))
18868     return TRUE;
18869
18870   /* If not, try comparing based on numerical designation alone.
18871      See if GIVEN is an unadorned number, or 'r' followed by a number.  */
18872   if (TOLOWER (*given) == 'r')
18873     given++;
18874   if (!ISDIGIT (*given))
18875     return FALSE;
18876
18877   /* Skip over some well-known prefixes in the canonical name,
18878      hoping to find a number there too.  */
18879   if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
18880     canonical += 2;
18881   else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
18882     canonical += 2;
18883   else if (TOLOWER (canonical[0]) == 'r')
18884     canonical += 1;
18885
18886   return mips_strict_matching_cpu_name_p (canonical, given);
18887 }
18888
18889
18890 /* Parse an option that takes the name of a processor as its argument.
18891    OPTION is the name of the option and CPU_STRING is the argument.
18892    Return the corresponding processor enumeration if the CPU_STRING is
18893    recognized, otherwise report an error and return null.
18894
18895    A similar function exists in GCC.  */
18896
18897 static const struct mips_cpu_info *
18898 mips_parse_cpu (const char *option, const char *cpu_string)
18899 {
18900   const struct mips_cpu_info *p;
18901
18902   /* 'from-abi' selects the most compatible architecture for the given
18903      ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs.  For the
18904      EABIs, we have to decide whether we're using the 32-bit or 64-bit
18905      version.  Look first at the -mgp options, if given, otherwise base
18906      the choice on MIPS_DEFAULT_64BIT.
18907
18908      Treat NO_ABI like the EABIs.  One reason to do this is that the
18909      plain 'mips' and 'mips64' configs have 'from-abi' as their default
18910      architecture.  This code picks MIPS I for 'mips' and MIPS III for
18911      'mips64', just as we did in the days before 'from-abi'.  */
18912   if (strcasecmp (cpu_string, "from-abi") == 0)
18913     {
18914       if (ABI_NEEDS_32BIT_REGS (mips_abi))
18915         return mips_cpu_info_from_isa (ISA_MIPS1);
18916
18917       if (ABI_NEEDS_64BIT_REGS (mips_abi))
18918         return mips_cpu_info_from_isa (ISA_MIPS3);
18919
18920       if (file_mips_opts.gp >= 0)
18921         return mips_cpu_info_from_isa (file_mips_opts.gp == 32
18922                                        ? ISA_MIPS1 : ISA_MIPS3);
18923
18924       return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
18925                                      ? ISA_MIPS3
18926                                      : ISA_MIPS1);
18927     }
18928
18929   /* 'default' has traditionally been a no-op.  Probably not very useful.  */
18930   if (strcasecmp (cpu_string, "default") == 0)
18931     return 0;
18932
18933   for (p = mips_cpu_info_table; p->name != 0; p++)
18934     if (mips_matching_cpu_name_p (p->name, cpu_string))
18935       return p;
18936
18937   as_bad (_("bad value (%s) for %s"), cpu_string, option);
18938   return 0;
18939 }
18940
18941 /* Return the canonical processor information for ISA (a member of the
18942    ISA_MIPS* enumeration).  */
18943
18944 static const struct mips_cpu_info *
18945 mips_cpu_info_from_isa (int isa)
18946 {
18947   int i;
18948
18949   for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
18950     if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA)
18951         && isa == mips_cpu_info_table[i].isa)
18952       return (&mips_cpu_info_table[i]);
18953
18954   return NULL;
18955 }
18956
18957 static const struct mips_cpu_info *
18958 mips_cpu_info_from_arch (int arch)
18959 {
18960   int i;
18961
18962   for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
18963     if (arch == mips_cpu_info_table[i].cpu)
18964       return (&mips_cpu_info_table[i]);
18965
18966   return NULL;
18967 }
18968 \f
18969 static void
18970 show (FILE *stream, const char *string, int *col_p, int *first_p)
18971 {
18972   if (*first_p)
18973     {
18974       fprintf (stream, "%24s", "");
18975       *col_p = 24;
18976     }
18977   else
18978     {
18979       fprintf (stream, ", ");
18980       *col_p += 2;
18981     }
18982
18983   if (*col_p + strlen (string) > 72)
18984     {
18985       fprintf (stream, "\n%24s", "");
18986       *col_p = 24;
18987     }
18988
18989   fprintf (stream, "%s", string);
18990   *col_p += strlen (string);
18991
18992   *first_p = 0;
18993 }
18994
18995 void
18996 md_show_usage (FILE *stream)
18997 {
18998   int column, first;
18999   size_t i;
19000
19001   fprintf (stream, _("\
19002 MIPS options:\n\
19003 -EB                     generate big endian output\n\
19004 -EL                     generate little endian output\n\
19005 -g, -g2                 do not remove unneeded NOPs or swap branches\n\
19006 -G NUM                  allow referencing objects up to NUM bytes\n\
19007                         implicitly with the gp register [default 8]\n"));
19008   fprintf (stream, _("\
19009 -mips1                  generate MIPS ISA I instructions\n\
19010 -mips2                  generate MIPS ISA II instructions\n\
19011 -mips3                  generate MIPS ISA III instructions\n\
19012 -mips4                  generate MIPS ISA IV instructions\n\
19013 -mips5                  generate MIPS ISA V instructions\n\
19014 -mips32                 generate MIPS32 ISA instructions\n\
19015 -mips32r2               generate MIPS32 release 2 ISA instructions\n\
19016 -mips32r3               generate MIPS32 release 3 ISA instructions\n\
19017 -mips32r5               generate MIPS32 release 5 ISA instructions\n\
19018 -mips32r6               generate MIPS32 release 6 ISA instructions\n\
19019 -mips64                 generate MIPS64 ISA instructions\n\
19020 -mips64r2               generate MIPS64 release 2 ISA instructions\n\
19021 -mips64r3               generate MIPS64 release 3 ISA instructions\n\
19022 -mips64r5               generate MIPS64 release 5 ISA instructions\n\
19023 -mips64r6               generate MIPS64 release 6 ISA instructions\n\
19024 -march=CPU/-mtune=CPU   generate code/schedule for CPU, where CPU is one of:\n"));
19025
19026   first = 1;
19027
19028   for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
19029     show (stream, mips_cpu_info_table[i].name, &column, &first);
19030   show (stream, "from-abi", &column, &first);
19031   fputc ('\n', stream);
19032
19033   fprintf (stream, _("\
19034 -mCPU                   equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
19035 -no-mCPU                don't generate code specific to CPU.\n\
19036                         For -mCPU and -no-mCPU, CPU must be one of:\n"));
19037
19038   first = 1;
19039
19040   show (stream, "3900", &column, &first);
19041   show (stream, "4010", &column, &first);
19042   show (stream, "4100", &column, &first);
19043   show (stream, "4650", &column, &first);
19044   fputc ('\n', stream);
19045
19046   fprintf (stream, _("\
19047 -mips16                 generate mips16 instructions\n\
19048 -no-mips16              do not generate mips16 instructions\n"));
19049   fprintf (stream, _("\
19050 -mmicromips             generate microMIPS instructions\n\
19051 -mno-micromips          do not generate microMIPS instructions\n"));
19052   fprintf (stream, _("\
19053 -msmartmips             generate smartmips instructions\n\
19054 -mno-smartmips          do not generate smartmips instructions\n"));
19055   fprintf (stream, _("\
19056 -mdsp                   generate DSP instructions\n\
19057 -mno-dsp                do not generate DSP instructions\n"));
19058   fprintf (stream, _("\
19059 -mdspr2                 generate DSP R2 instructions\n\
19060 -mno-dspr2              do not generate DSP R2 instructions\n"));
19061   fprintf (stream, _("\
19062 -mdspr3                 generate DSP R3 instructions\n\
19063 -mno-dspr3              do not generate DSP R3 instructions\n"));
19064   fprintf (stream, _("\
19065 -mmt                    generate MT instructions\n\
19066 -mno-mt                 do not generate MT instructions\n"));
19067   fprintf (stream, _("\
19068 -mmcu                   generate MCU instructions\n\
19069 -mno-mcu                do not generate MCU instructions\n"));
19070   fprintf (stream, _("\
19071 -mmsa                   generate MSA instructions\n\
19072 -mno-msa                do not generate MSA instructions\n"));
19073   fprintf (stream, _("\
19074 -mxpa                   generate eXtended Physical Address (XPA) instructions\n\
19075 -mno-xpa                do not generate eXtended Physical Address (XPA) instructions\n"));
19076   fprintf (stream, _("\
19077 -mvirt                  generate Virtualization instructions\n\
19078 -mno-virt               do not generate Virtualization instructions\n"));
19079   fprintf (stream, _("\
19080 -minsn32                only generate 32-bit microMIPS instructions\n\
19081 -mno-insn32             generate all microMIPS instructions\n"));
19082   fprintf (stream, _("\
19083 -mfix-loongson2f-jump   work around Loongson2F JUMP instructions\n\
19084 -mfix-loongson2f-nop    work around Loongson2F NOP errata\n\
19085 -mfix-vr4120            work around certain VR4120 errata\n\
19086 -mfix-vr4130            work around VR4130 mflo/mfhi errata\n\
19087 -mfix-24k               insert a nop after ERET and DERET instructions\n\
19088 -mfix-cn63xxp1          work around CN63XXP1 PREF errata\n\
19089 -mgp32                  use 32-bit GPRs, regardless of the chosen ISA\n\
19090 -mfp32                  use 32-bit FPRs, regardless of the chosen ISA\n\
19091 -msym32                 assume all symbols have 32-bit values\n\
19092 -O0                     remove unneeded NOPs, do not swap branches\n\
19093 -O                      remove unneeded NOPs and swap branches\n\
19094 --trap, --no-break      trap exception on div by 0 and mult overflow\n\
19095 --break, --no-trap      break exception on div by 0 and mult overflow\n"));
19096   fprintf (stream, _("\
19097 -mhard-float            allow floating-point instructions\n\
19098 -msoft-float            do not allow floating-point instructions\n\
19099 -msingle-float          only allow 32-bit floating-point operations\n\
19100 -mdouble-float          allow 32-bit and 64-bit floating-point operations\n\
19101 --[no-]construct-floats [dis]allow floating point values to be constructed\n\
19102 --[no-]relax-branch     [dis]allow out-of-range branches to be relaxed\n\
19103 -mnan=ENCODING          select an IEEE 754 NaN encoding convention, either of:\n"));
19104
19105   first = 1;
19106
19107   show (stream, "legacy", &column, &first);
19108   show (stream, "2008", &column, &first);
19109
19110   fputc ('\n', stream);
19111
19112   fprintf (stream, _("\
19113 -KPIC, -call_shared     generate SVR4 position independent code\n\
19114 -call_nonpic            generate non-PIC code that can operate with DSOs\n\
19115 -mvxworks-pic           generate VxWorks position independent code\n\
19116 -non_shared             do not generate code that can operate with DSOs\n\
19117 -xgot                   assume a 32 bit GOT\n\
19118 -mpdr, -mno-pdr         enable/disable creation of .pdr sections\n\
19119 -mshared, -mno-shared   disable/enable .cpload optimization for\n\
19120                         position dependent (non shared) code\n\
19121 -mabi=ABI               create ABI conformant object file for:\n"));
19122
19123   first = 1;
19124
19125   show (stream, "32", &column, &first);
19126   show (stream, "o64", &column, &first);
19127   show (stream, "n32", &column, &first);
19128   show (stream, "64", &column, &first);
19129   show (stream, "eabi", &column, &first);
19130
19131   fputc ('\n', stream);
19132
19133   fprintf (stream, _("\
19134 -32                     create o32 ABI object file (default)\n\
19135 -n32                    create n32 ABI object file\n\
19136 -64                     create 64 ABI object file\n"));
19137 }
19138
19139 #ifdef TE_IRIX
19140 enum dwarf2_format
19141 mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
19142 {
19143   if (HAVE_64BIT_SYMBOLS)
19144     return dwarf2_format_64bit_irix;
19145   else
19146     return dwarf2_format_32bit;
19147 }
19148 #endif
19149
19150 int
19151 mips_dwarf2_addr_size (void)
19152 {
19153   if (HAVE_64BIT_OBJECTS)
19154     return 8;
19155   else
19156     return 4;
19157 }
19158
19159 /* Standard calling conventions leave the CFA at SP on entry.  */
19160 void
19161 mips_cfi_frame_initial_instructions (void)
19162 {
19163   cfi_add_CFA_def_cfa_register (SP);
19164 }
19165
19166 int
19167 tc_mips_regname_to_dw2regnum (char *regname)
19168 {
19169   unsigned int regnum = -1;
19170   unsigned int reg;
19171
19172   if (reg_lookup (&regname, RTYPE_GP | RTYPE_NUM, &reg))
19173     regnum = reg;
19174
19175   return regnum;
19176 }
19177
19178 /* Implement CONVERT_SYMBOLIC_ATTRIBUTE.
19179    Given a symbolic attribute NAME, return the proper integer value.
19180    Returns -1 if the attribute is not known.  */
19181
19182 int
19183 mips_convert_symbolic_attribute (const char *name)
19184 {
19185   static const struct
19186   {
19187     const char * name;
19188     const int    tag;
19189   }
19190   attribute_table[] =
19191     {
19192 #define T(tag) {#tag, tag}
19193       T (Tag_GNU_MIPS_ABI_FP),
19194       T (Tag_GNU_MIPS_ABI_MSA),
19195 #undef T
19196     };
19197   unsigned int i;
19198
19199   if (name == NULL)
19200     return -1;
19201
19202   for (i = 0; i < ARRAY_SIZE (attribute_table); i++)
19203     if (streq (name, attribute_table[i].name))
19204       return attribute_table[i].tag;
19205
19206   return -1;
19207 }
19208
19209 void
19210 md_mips_end (void)
19211 {
19212   int fpabi = Val_GNU_MIPS_ABI_FP_ANY;
19213
19214   mips_emit_delays ();
19215   if (cur_proc_ptr)
19216     as_warn (_("missing .end at end of assembly"));
19217
19218   /* Just in case no code was emitted, do the consistency check.  */
19219   file_mips_check_options ();
19220
19221   /* Set a floating-point ABI if the user did not.  */
19222   if (obj_elf_seen_attribute (OBJ_ATTR_GNU, Tag_GNU_MIPS_ABI_FP))
19223     {
19224       /* Perform consistency checks on the floating-point ABI.  */
19225       fpabi = bfd_elf_get_obj_attr_int (stdoutput, OBJ_ATTR_GNU,
19226                                         Tag_GNU_MIPS_ABI_FP);
19227       if (fpabi != Val_GNU_MIPS_ABI_FP_ANY)
19228         check_fpabi (fpabi);
19229     }
19230   else
19231     {
19232       /* Soft-float gets precedence over single-float, the two options should
19233          not be used together so this should not matter.  */
19234       if (file_mips_opts.soft_float == 1)
19235         fpabi = Val_GNU_MIPS_ABI_FP_SOFT;
19236       /* Single-float gets precedence over all double_float cases.  */
19237       else if (file_mips_opts.single_float == 1)
19238         fpabi = Val_GNU_MIPS_ABI_FP_SINGLE;
19239       else
19240         {
19241           switch (file_mips_opts.fp)
19242             {
19243             case 32:
19244               if (file_mips_opts.gp == 32)
19245                 fpabi = Val_GNU_MIPS_ABI_FP_DOUBLE;
19246               break;
19247             case 0:
19248               fpabi = Val_GNU_MIPS_ABI_FP_XX;
19249               break;
19250             case 64:
19251               if (file_mips_opts.gp == 32 && !file_mips_opts.oddspreg)
19252                 fpabi = Val_GNU_MIPS_ABI_FP_64A;
19253               else if (file_mips_opts.gp == 32)
19254                 fpabi = Val_GNU_MIPS_ABI_FP_64;
19255               else
19256                 fpabi = Val_GNU_MIPS_ABI_FP_DOUBLE;
19257               break;
19258             }
19259         }
19260
19261       bfd_elf_add_obj_attr_int (stdoutput, OBJ_ATTR_GNU,
19262                                 Tag_GNU_MIPS_ABI_FP, fpabi);
19263     }
19264 }
19265
19266 /*  Returns the relocation type required for a particular CFI encoding.  */
19267
19268 bfd_reloc_code_real_type
19269 mips_cfi_reloc_for_encoding (int encoding)
19270 {
19271   if (encoding == (DW_EH_PE_sdata4 | DW_EH_PE_pcrel))
19272     return BFD_RELOC_32_PCREL;
19273   else return BFD_RELOC_NONE;
19274 }