Rework the alignment check for BFD_RELOC_MIPS_18_PCREL_S3.
[platform/upstream/binutils.git] / gas / config / tc-mips.c
1 /* tc-mips.c -- assemble code for a MIPS chip.
2    Copyright (C) 1993-2014 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 || (CPU) == CPU_OCTEON2)
514
515 /* True if CPU has seq/sne and seqi/snei instructions.  */
516 #define CPU_HAS_SEQ(CPU)        (CPU_IS_OCTEON (CPU))
517
518 /* True, if CPU has support for ldc1 and sdc1. */
519 #define CPU_HAS_LDC1_SDC1(CPU)  \
520    ((mips_opts.isa != ISA_MIPS1) && ((CPU) != CPU_R5900))
521
522 /* True if mflo and mfhi can be immediately followed by instructions
523    which write to the HI and LO registers.
524
525    According to MIPS specifications, MIPS ISAs I, II, and III need
526    (at least) two instructions between the reads of HI/LO and
527    instructions which write them, and later ISAs do not.  Contradicting
528    the MIPS specifications, some MIPS IV processor user manuals (e.g.
529    the UM for the NEC Vr5000) document needing the instructions between
530    HI/LO reads and writes, as well.  Therefore, we declare only MIPS32,
531    MIPS64 and later ISAs to have the interlocks, plus any specific
532    earlier-ISA CPUs for which CPU documentation declares that the
533    instructions are really interlocked.  */
534 #define hilo_interlocks \
535   (mips_opts.isa == ISA_MIPS32                        \
536    || mips_opts.isa == ISA_MIPS32R2                   \
537    || mips_opts.isa == ISA_MIPS32R3                   \
538    || mips_opts.isa == ISA_MIPS32R5                   \
539    || mips_opts.isa == ISA_MIPS32R6                   \
540    || mips_opts.isa == ISA_MIPS64                     \
541    || mips_opts.isa == ISA_MIPS64R2                   \
542    || mips_opts.isa == ISA_MIPS64R3                   \
543    || mips_opts.isa == ISA_MIPS64R5                   \
544    || mips_opts.isa == ISA_MIPS64R6                   \
545    || mips_opts.arch == CPU_R4010                     \
546    || mips_opts.arch == CPU_R5900                     \
547    || mips_opts.arch == CPU_R10000                    \
548    || mips_opts.arch == CPU_R12000                    \
549    || mips_opts.arch == CPU_R14000                    \
550    || mips_opts.arch == CPU_R16000                    \
551    || mips_opts.arch == CPU_RM7000                    \
552    || mips_opts.arch == CPU_VR5500                    \
553    || mips_opts.micromips                             \
554    )
555
556 /* Whether the processor uses hardware interlocks to protect reads
557    from the GPRs after they are loaded from memory, and thus does not
558    require nops to be inserted.  This applies to instructions marked
559    INSN_LOAD_MEMORY.  These nops are only required at MIPS ISA
560    level I and microMIPS mode instructions are always interlocked.  */
561 #define gpr_interlocks                                \
562   (mips_opts.isa != ISA_MIPS1                         \
563    || mips_opts.arch == CPU_R3900                     \
564    || mips_opts.arch == CPU_R5900                     \
565    || mips_opts.micromips                             \
566    )
567
568 /* Whether the processor uses hardware interlocks to avoid delays
569    required by coprocessor instructions, and thus does not require
570    nops to be inserted.  This applies to instructions marked
571    INSN_LOAD_COPROC, INSN_COPROC_MOVE, and to delays between
572    instructions marked INSN_WRITE_COND_CODE and ones marked
573    INSN_READ_COND_CODE.  These nops are only required at MIPS ISA
574    levels I, II, and III and microMIPS mode instructions are always
575    interlocked.  */
576 /* Itbl support may require additional care here.  */
577 #define cop_interlocks                                \
578   ((mips_opts.isa != ISA_MIPS1                        \
579     && mips_opts.isa != ISA_MIPS2                     \
580     && mips_opts.isa != ISA_MIPS3)                    \
581    || mips_opts.arch == CPU_R4300                     \
582    || mips_opts.micromips                             \
583    )
584
585 /* Whether the processor uses hardware interlocks to protect reads
586    from coprocessor registers after they are loaded from memory, and
587    thus does not require nops to be inserted.  This applies to
588    instructions marked INSN_COPROC_MEMORY_DELAY.  These nops are only
589    requires at MIPS ISA level I and microMIPS mode instructions are
590    always interlocked.  */
591 #define cop_mem_interlocks                            \
592   (mips_opts.isa != ISA_MIPS1                         \
593    || mips_opts.micromips                             \
594    )
595
596 /* Is this a mfhi or mflo instruction?  */
597 #define MF_HILO_INSN(PINFO) \
598   ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
599
600 /* Whether code compression (either of the MIPS16 or the microMIPS ASEs)
601    has been selected.  This implies, in particular, that addresses of text
602    labels have their LSB set.  */
603 #define HAVE_CODE_COMPRESSION                                           \
604   ((mips_opts.mips16 | mips_opts.micromips) != 0)
605
606 /* The minimum and maximum signed values that can be stored in a GPR.  */
607 #define GPR_SMAX ((offsetT) (((valueT) 1 << (GPR_SIZE - 1)) - 1))
608 #define GPR_SMIN (-GPR_SMAX - 1)
609
610 /* MIPS PIC level.  */
611
612 enum mips_pic_level mips_pic;
613
614 /* 1 if we should generate 32 bit offsets from the $gp register in
615    SVR4_PIC mode.  Currently has no meaning in other modes.  */
616 static int mips_big_got = 0;
617
618 /* 1 if trap instructions should used for overflow rather than break
619    instructions.  */
620 static int mips_trap = 0;
621
622 /* 1 if double width floating point constants should not be constructed
623    by assembling two single width halves into two single width floating
624    point registers which just happen to alias the double width destination
625    register.  On some architectures this aliasing can be disabled by a bit
626    in the status register, and the setting of this bit cannot be determined
627    automatically at assemble time.  */
628 static int mips_disable_float_construction;
629
630 /* Non-zero if any .set noreorder directives were used.  */
631
632 static int mips_any_noreorder;
633
634 /* Non-zero if nops should be inserted when the register referenced in
635    an mfhi/mflo instruction is read in the next two instructions.  */
636 static int mips_7000_hilo_fix;
637
638 /* The size of objects in the small data section.  */
639 static unsigned int g_switch_value = 8;
640 /* Whether the -G option was used.  */
641 static int g_switch_seen = 0;
642
643 #define N_RMASK 0xc4
644 #define N_VFP   0xd4
645
646 /* If we can determine in advance that GP optimization won't be
647    possible, we can skip the relaxation stuff that tries to produce
648    GP-relative references.  This makes delay slot optimization work
649    better.
650
651    This function can only provide a guess, but it seems to work for
652    gcc output.  It needs to guess right for gcc, otherwise gcc
653    will put what it thinks is a GP-relative instruction in a branch
654    delay slot.
655
656    I don't know if a fix is needed for the SVR4_PIC mode.  I've only
657    fixed it for the non-PIC mode.  KR 95/04/07  */
658 static int nopic_need_relax (symbolS *, int);
659
660 /* handle of the OPCODE hash table */
661 static struct hash_control *op_hash = NULL;
662
663 /* The opcode hash table we use for the mips16.  */
664 static struct hash_control *mips16_op_hash = NULL;
665
666 /* The opcode hash table we use for the microMIPS ASE.  */
667 static struct hash_control *micromips_op_hash = NULL;
668
669 /* This array holds the chars that always start a comment.  If the
670     pre-processor is disabled, these aren't very useful */
671 const char comment_chars[] = "#";
672
673 /* This array holds the chars that only start a comment at the beginning of
674    a line.  If the line seems to have the form '# 123 filename'
675    .line and .file directives will appear in the pre-processed output */
676 /* Note that input_file.c hand checks for '#' at the beginning of the
677    first line of the input file.  This is because the compiler outputs
678    #NO_APP at the beginning of its output.  */
679 /* Also note that C style comments are always supported.  */
680 const char line_comment_chars[] = "#";
681
682 /* This array holds machine specific line separator characters.  */
683 const char line_separator_chars[] = ";";
684
685 /* Chars that can be used to separate mant from exp in floating point nums */
686 const char EXP_CHARS[] = "eE";
687
688 /* Chars that mean this number is a floating point constant */
689 /* As in 0f12.456 */
690 /* or    0d1.2345e12 */
691 const char FLT_CHARS[] = "rRsSfFdDxXpP";
692
693 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
694    changed in read.c .  Ideally it shouldn't have to know about it at all,
695    but nothing is ideal around here.
696  */
697
698 /* Types of printf format used for instruction-related error messages.
699    "I" means int ("%d") and "S" means string ("%s"). */
700 enum mips_insn_error_format {
701   ERR_FMT_PLAIN,
702   ERR_FMT_I,
703   ERR_FMT_SS,
704 };
705
706 /* Information about an error that was found while assembling the current
707    instruction.  */
708 struct mips_insn_error {
709   /* We sometimes need to match an instruction against more than one
710      opcode table entry.  Errors found during this matching are reported
711      against a particular syntactic argument rather than against the
712      instruction as a whole.  We grade these messages so that errors
713      against argument N have a greater priority than an error against
714      any argument < N, since the former implies that arguments up to N
715      were acceptable and that the opcode entry was therefore a closer match.
716      If several matches report an error against the same argument,
717      we only use that error if it is the same in all cases.
718
719      min_argnum is the minimum argument number for which an error message
720      should be accepted.  It is 0 if MSG is against the instruction as
721      a whole.  */
722   int min_argnum;
723
724   /* The printf()-style message, including its format and arguments.  */
725   enum mips_insn_error_format format;
726   const char *msg;
727   union {
728     int i;
729     const char *ss[2];
730   } u;
731 };
732
733 /* The error that should be reported for the current instruction.  */
734 static struct mips_insn_error insn_error;
735
736 static int auto_align = 1;
737
738 /* When outputting SVR4 PIC code, the assembler needs to know the
739    offset in the stack frame from which to restore the $gp register.
740    This is set by the .cprestore pseudo-op, and saved in this
741    variable.  */
742 static offsetT mips_cprestore_offset = -1;
743
744 /* Similar for NewABI PIC code, where $gp is callee-saved.  NewABI has some
745    more optimizations, it can use a register value instead of a memory-saved
746    offset and even an other register than $gp as global pointer.  */
747 static offsetT mips_cpreturn_offset = -1;
748 static int mips_cpreturn_register = -1;
749 static int mips_gp_register = GP;
750 static int mips_gprel_offset = 0;
751
752 /* Whether mips_cprestore_offset has been set in the current function
753    (or whether it has already been warned about, if not).  */
754 static int mips_cprestore_valid = 0;
755
756 /* This is the register which holds the stack frame, as set by the
757    .frame pseudo-op.  This is needed to implement .cprestore.  */
758 static int mips_frame_reg = SP;
759
760 /* Whether mips_frame_reg has been set in the current function
761    (or whether it has already been warned about, if not).  */
762 static int mips_frame_reg_valid = 0;
763
764 /* To output NOP instructions correctly, we need to keep information
765    about the previous two instructions.  */
766
767 /* Whether we are optimizing.  The default value of 2 means to remove
768    unneeded NOPs and swap branch instructions when possible.  A value
769    of 1 means to not swap branches.  A value of 0 means to always
770    insert NOPs.  */
771 static int mips_optimize = 2;
772
773 /* Debugging level.  -g sets this to 2.  -gN sets this to N.  -g0 is
774    equivalent to seeing no -g option at all.  */
775 static int mips_debug = 0;
776
777 /* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata.  */
778 #define MAX_VR4130_NOPS 4
779
780 /* The maximum number of NOPs needed to fill delay slots.  */
781 #define MAX_DELAY_NOPS 2
782
783 /* The maximum number of NOPs needed for any purpose.  */
784 #define MAX_NOPS 4
785
786 /* A list of previous instructions, with index 0 being the most recent.
787    We need to look back MAX_NOPS instructions when filling delay slots
788    or working around processor errata.  We need to look back one
789    instruction further if we're thinking about using history[0] to
790    fill a branch delay slot.  */
791 static struct mips_cl_insn history[1 + MAX_NOPS];
792
793 /* Arrays of operands for each instruction.  */
794 #define MAX_OPERANDS 6
795 struct mips_operand_array {
796   const struct mips_operand *operand[MAX_OPERANDS];
797 };
798 static struct mips_operand_array *mips_operands;
799 static struct mips_operand_array *mips16_operands;
800 static struct mips_operand_array *micromips_operands;
801
802 /* Nop instructions used by emit_nop.  */
803 static struct mips_cl_insn nop_insn;
804 static struct mips_cl_insn mips16_nop_insn;
805 static struct mips_cl_insn micromips_nop16_insn;
806 static struct mips_cl_insn micromips_nop32_insn;
807
808 /* The appropriate nop for the current mode.  */
809 #define NOP_INSN (mips_opts.mips16                                      \
810                   ? &mips16_nop_insn                                    \
811                   : (mips_opts.micromips                                \
812                      ? (mips_opts.insn32                                \
813                         ? &micromips_nop32_insn                         \
814                         : &micromips_nop16_insn)                        \
815                      : &nop_insn))
816
817 /* The size of NOP_INSN in bytes.  */
818 #define NOP_INSN_SIZE ((mips_opts.mips16                                \
819                         || (mips_opts.micromips && !mips_opts.insn32))  \
820                        ? 2 : 4)
821
822 /* If this is set, it points to a frag holding nop instructions which
823    were inserted before the start of a noreorder section.  If those
824    nops turn out to be unnecessary, the size of the frag can be
825    decreased.  */
826 static fragS *prev_nop_frag;
827
828 /* The number of nop instructions we created in prev_nop_frag.  */
829 static int prev_nop_frag_holds;
830
831 /* The number of nop instructions that we know we need in
832    prev_nop_frag.  */
833 static int prev_nop_frag_required;
834
835 /* The number of instructions we've seen since prev_nop_frag.  */
836 static int prev_nop_frag_since;
837
838 /* Relocations against symbols are sometimes done in two parts, with a HI
839    relocation and a LO relocation.  Each relocation has only 16 bits of
840    space to store an addend.  This means that in order for the linker to
841    handle carries correctly, it must be able to locate both the HI and
842    the LO relocation.  This means that the relocations must appear in
843    order in the relocation table.
844
845    In order to implement this, we keep track of each unmatched HI
846    relocation.  We then sort them so that they immediately precede the
847    corresponding LO relocation.  */
848
849 struct mips_hi_fixup
850 {
851   /* Next HI fixup.  */
852   struct mips_hi_fixup *next;
853   /* This fixup.  */
854   fixS *fixp;
855   /* The section this fixup is in.  */
856   segT seg;
857 };
858
859 /* The list of unmatched HI relocs.  */
860
861 static struct mips_hi_fixup *mips_hi_fixup_list;
862
863 /* The frag containing the last explicit relocation operator.
864    Null if explicit relocations have not been used.  */
865
866 static fragS *prev_reloc_op_frag;
867
868 /* Map mips16 register numbers to normal MIPS register numbers.  */
869
870 static const unsigned int mips16_to_32_reg_map[] =
871 {
872   16, 17, 2, 3, 4, 5, 6, 7
873 };
874
875 /* Map microMIPS register numbers to normal MIPS register numbers.  */
876
877 #define micromips_to_32_reg_d_map       mips16_to_32_reg_map
878
879 /* The microMIPS registers with type h.  */
880 static const unsigned int micromips_to_32_reg_h_map1[] =
881 {
882   5, 5, 6, 4, 4, 4, 4, 4
883 };
884 static const unsigned int micromips_to_32_reg_h_map2[] =
885 {
886   6, 7, 7, 21, 22, 5, 6, 7
887 };
888
889 /* The microMIPS registers with type m.  */
890 static const unsigned int micromips_to_32_reg_m_map[] =
891 {
892   0, 17, 2, 3, 16, 18, 19, 20
893 };
894
895 #define micromips_to_32_reg_n_map      micromips_to_32_reg_m_map
896
897 /* Classifies the kind of instructions we're interested in when
898    implementing -mfix-vr4120.  */
899 enum fix_vr4120_class
900 {
901   FIX_VR4120_MACC,
902   FIX_VR4120_DMACC,
903   FIX_VR4120_MULT,
904   FIX_VR4120_DMULT,
905   FIX_VR4120_DIV,
906   FIX_VR4120_MTHILO,
907   NUM_FIX_VR4120_CLASSES
908 };
909
910 /* ...likewise -mfix-loongson2f-jump.  */
911 static bfd_boolean mips_fix_loongson2f_jump;
912
913 /* ...likewise -mfix-loongson2f-nop.  */
914 static bfd_boolean mips_fix_loongson2f_nop;
915
916 /* True if -mfix-loongson2f-nop or -mfix-loongson2f-jump passed.  */
917 static bfd_boolean mips_fix_loongson2f;
918
919 /* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
920    there must be at least one other instruction between an instruction
921    of type X and an instruction of type Y.  */
922 static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
923
924 /* True if -mfix-vr4120 is in force.  */
925 static int mips_fix_vr4120;
926
927 /* ...likewise -mfix-vr4130.  */
928 static int mips_fix_vr4130;
929
930 /* ...likewise -mfix-24k.  */
931 static int mips_fix_24k;
932
933 /* ...likewise -mfix-rm7000  */
934 static int mips_fix_rm7000;
935
936 /* ...likewise -mfix-cn63xxp1 */
937 static bfd_boolean mips_fix_cn63xxp1;
938
939 /* We don't relax branches by default, since this causes us to expand
940    `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
941    fail to compute the offset before expanding the macro to the most
942    efficient expansion.  */
943
944 static int mips_relax_branch;
945 \f
946 /* The expansion of many macros depends on the type of symbol that
947    they refer to.  For example, when generating position-dependent code,
948    a macro that refers to a symbol may have two different expansions,
949    one which uses GP-relative addresses and one which uses absolute
950    addresses.  When generating SVR4-style PIC, a macro may have
951    different expansions for local and global symbols.
952
953    We handle these situations by generating both sequences and putting
954    them in variant frags.  In position-dependent code, the first sequence
955    will be the GP-relative one and the second sequence will be the
956    absolute one.  In SVR4 PIC, the first sequence will be for global
957    symbols and the second will be for local symbols.
958
959    The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
960    SECOND are the lengths of the two sequences in bytes.  These fields
961    can be extracted using RELAX_FIRST() and RELAX_SECOND().  In addition,
962    the subtype has the following flags:
963
964    RELAX_USE_SECOND
965         Set if it has been decided that we should use the second
966         sequence instead of the first.
967
968    RELAX_SECOND_LONGER
969         Set in the first variant frag if the macro's second implementation
970         is longer than its first.  This refers to the macro as a whole,
971         not an individual relaxation.
972
973    RELAX_NOMACRO
974         Set in the first variant frag if the macro appeared in a .set nomacro
975         block and if one alternative requires a warning but the other does not.
976
977    RELAX_DELAY_SLOT
978         Like RELAX_NOMACRO, but indicates that the macro appears in a branch
979         delay slot.
980
981    RELAX_DELAY_SLOT_16BIT
982         Like RELAX_DELAY_SLOT, but indicates that the delay slot requires a
983         16-bit instruction.
984
985    RELAX_DELAY_SLOT_SIZE_FIRST
986         Like RELAX_DELAY_SLOT, but indicates that the first implementation of
987         the macro is of the wrong size for the branch delay slot.
988
989    RELAX_DELAY_SLOT_SIZE_SECOND
990         Like RELAX_DELAY_SLOT, but indicates that the second implementation of
991         the macro is of the wrong size for the branch delay slot.
992
993    The frag's "opcode" points to the first fixup for relaxable code.
994
995    Relaxable macros are generated using a sequence such as:
996
997       relax_start (SYMBOL);
998       ... generate first expansion ...
999       relax_switch ();
1000       ... generate second expansion ...
1001       relax_end ();
1002
1003    The code and fixups for the unwanted alternative are discarded
1004    by md_convert_frag.  */
1005 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
1006
1007 #define RELAX_FIRST(X) (((X) >> 8) & 0xff)
1008 #define RELAX_SECOND(X) ((X) & 0xff)
1009 #define RELAX_USE_SECOND 0x10000
1010 #define RELAX_SECOND_LONGER 0x20000
1011 #define RELAX_NOMACRO 0x40000
1012 #define RELAX_DELAY_SLOT 0x80000
1013 #define RELAX_DELAY_SLOT_16BIT 0x100000
1014 #define RELAX_DELAY_SLOT_SIZE_FIRST 0x200000
1015 #define RELAX_DELAY_SLOT_SIZE_SECOND 0x400000
1016
1017 /* Branch without likely bit.  If label is out of range, we turn:
1018
1019         beq reg1, reg2, label
1020         delay slot
1021
1022    into
1023
1024         bne reg1, reg2, 0f
1025         nop
1026         j label
1027      0: delay slot
1028
1029    with the following opcode replacements:
1030
1031         beq <-> bne
1032         blez <-> bgtz
1033         bltz <-> bgez
1034         bc1f <-> bc1t
1035
1036         bltzal <-> bgezal  (with jal label instead of j label)
1037
1038    Even though keeping the delay slot instruction in the delay slot of
1039    the branch would be more efficient, it would be very tricky to do
1040    correctly, because we'd have to introduce a variable frag *after*
1041    the delay slot instruction, and expand that instead.  Let's do it
1042    the easy way for now, even if the branch-not-taken case now costs
1043    one additional instruction.  Out-of-range branches are not supposed
1044    to be common, anyway.
1045
1046    Branch likely.  If label is out of range, we turn:
1047
1048         beql reg1, reg2, label
1049         delay slot (annulled if branch not taken)
1050
1051    into
1052
1053         beql reg1, reg2, 1f
1054         nop
1055         beql $0, $0, 2f
1056         nop
1057      1: j[al] label
1058         delay slot (executed only if branch taken)
1059      2:
1060
1061    It would be possible to generate a shorter sequence by losing the
1062    likely bit, generating something like:
1063
1064         bne reg1, reg2, 0f
1065         nop
1066         j[al] label
1067         delay slot (executed only if branch taken)
1068      0:
1069
1070         beql -> bne
1071         bnel -> beq
1072         blezl -> bgtz
1073         bgtzl -> blez
1074         bltzl -> bgez
1075         bgezl -> bltz
1076         bc1fl -> bc1t
1077         bc1tl -> bc1f
1078
1079         bltzall -> bgezal  (with jal label instead of j label)
1080         bgezall -> bltzal  (ditto)
1081
1082
1083    but it's not clear that it would actually improve performance.  */
1084 #define RELAX_BRANCH_ENCODE(at, uncond, likely, link, toofar)   \
1085   ((relax_substateT)                                            \
1086    (0xc0000000                                                  \
1087     | ((at) & 0x1f)                                             \
1088     | ((toofar) ? 0x20 : 0)                                     \
1089     | ((link) ? 0x40 : 0)                                       \
1090     | ((likely) ? 0x80 : 0)                                     \
1091     | ((uncond) ? 0x100 : 0)))
1092 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
1093 #define RELAX_BRANCH_UNCOND(i) (((i) & 0x100) != 0)
1094 #define RELAX_BRANCH_LIKELY(i) (((i) & 0x80) != 0)
1095 #define RELAX_BRANCH_LINK(i) (((i) & 0x40) != 0)
1096 #define RELAX_BRANCH_TOOFAR(i) (((i) & 0x20) != 0)
1097 #define RELAX_BRANCH_AT(i) ((i) & 0x1f)
1098
1099 /* For mips16 code, we use an entirely different form of relaxation.
1100    mips16 supports two versions of most instructions which take
1101    immediate values: a small one which takes some small value, and a
1102    larger one which takes a 16 bit value.  Since branches also follow
1103    this pattern, relaxing these values is required.
1104
1105    We can assemble both mips16 and normal MIPS code in a single
1106    object.  Therefore, we need to support this type of relaxation at
1107    the same time that we support the relaxation described above.  We
1108    use the high bit of the subtype field to distinguish these cases.
1109
1110    The information we store for this type of relaxation is the
1111    argument code found in the opcode file for this relocation, whether
1112    the user explicitly requested a small or extended form, and whether
1113    the relocation is in a jump or jal delay slot.  That tells us the
1114    size of the value, and how it should be stored.  We also store
1115    whether the fragment is considered to be extended or not.  We also
1116    store whether this is known to be a branch to a different section,
1117    whether we have tried to relax this frag yet, and whether we have
1118    ever extended a PC relative fragment because of a shift count.  */
1119 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
1120   (0x80000000                                                   \
1121    | ((type) & 0xff)                                            \
1122    | ((small) ? 0x100 : 0)                                      \
1123    | ((ext) ? 0x200 : 0)                                        \
1124    | ((dslot) ? 0x400 : 0)                                      \
1125    | ((jal_dslot) ? 0x800 : 0))
1126 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
1127 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
1128 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
1129 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
1130 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
1131 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
1132 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
1133 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
1134 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
1135 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
1136 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
1137 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
1138
1139 /* For microMIPS code, we use relaxation similar to one we use for
1140    MIPS16 code.  Some instructions that take immediate values support
1141    two encodings: a small one which takes some small value, and a
1142    larger one which takes a 16 bit value.  As some branches also follow
1143    this pattern, relaxing these values is required.
1144
1145    We can assemble both microMIPS and normal MIPS code in a single
1146    object.  Therefore, we need to support this type of relaxation at
1147    the same time that we support the relaxation described above.  We
1148    use one of the high bits of the subtype field to distinguish these
1149    cases.
1150
1151    The information we store for this type of relaxation is the argument
1152    code found in the opcode file for this relocation, the register
1153    selected as the assembler temporary, whether the branch is
1154    unconditional, whether it is compact, whether it stores the link
1155    address implicitly in $ra, whether relaxation of out-of-range 32-bit
1156    branches to a sequence of instructions is enabled, and whether the
1157    displacement of a branch is too large to fit as an immediate argument
1158    of a 16-bit and a 32-bit branch, respectively.  */
1159 #define RELAX_MICROMIPS_ENCODE(type, at, uncond, compact, link, \
1160                                relax32, toofar16, toofar32)     \
1161   (0x40000000                                                   \
1162    | ((type) & 0xff)                                            \
1163    | (((at) & 0x1f) << 8)                                       \
1164    | ((uncond) ? 0x2000 : 0)                                    \
1165    | ((compact) ? 0x4000 : 0)                                   \
1166    | ((link) ? 0x8000 : 0)                                      \
1167    | ((relax32) ? 0x10000 : 0)                                  \
1168    | ((toofar16) ? 0x20000 : 0)                                 \
1169    | ((toofar32) ? 0x40000 : 0))
1170 #define RELAX_MICROMIPS_P(i) (((i) & 0xc0000000) == 0x40000000)
1171 #define RELAX_MICROMIPS_TYPE(i) ((i) & 0xff)
1172 #define RELAX_MICROMIPS_AT(i) (((i) >> 8) & 0x1f)
1173 #define RELAX_MICROMIPS_UNCOND(i) (((i) & 0x2000) != 0)
1174 #define RELAX_MICROMIPS_COMPACT(i) (((i) & 0x4000) != 0)
1175 #define RELAX_MICROMIPS_LINK(i) (((i) & 0x8000) != 0)
1176 #define RELAX_MICROMIPS_RELAX32(i) (((i) & 0x10000) != 0)
1177
1178 #define RELAX_MICROMIPS_TOOFAR16(i) (((i) & 0x20000) != 0)
1179 #define RELAX_MICROMIPS_MARK_TOOFAR16(i) ((i) | 0x20000)
1180 #define RELAX_MICROMIPS_CLEAR_TOOFAR16(i) ((i) & ~0x20000)
1181 #define RELAX_MICROMIPS_TOOFAR32(i) (((i) & 0x40000) != 0)
1182 #define RELAX_MICROMIPS_MARK_TOOFAR32(i) ((i) | 0x40000)
1183 #define RELAX_MICROMIPS_CLEAR_TOOFAR32(i) ((i) & ~0x40000)
1184
1185 /* Sign-extend 16-bit value X.  */
1186 #define SEXT_16BIT(X) ((((X) + 0x8000) & 0xffff) - 0x8000)
1187
1188 /* Is the given value a sign-extended 32-bit value?  */
1189 #define IS_SEXT_32BIT_NUM(x)                                            \
1190   (((x) &~ (offsetT) 0x7fffffff) == 0                                   \
1191    || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
1192
1193 /* Is the given value a sign-extended 16-bit value?  */
1194 #define IS_SEXT_16BIT_NUM(x)                                            \
1195   (((x) &~ (offsetT) 0x7fff) == 0                                       \
1196    || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
1197
1198 /* Is the given value a sign-extended 12-bit value?  */
1199 #define IS_SEXT_12BIT_NUM(x)                                            \
1200   (((((x) & 0xfff) ^ 0x800LL) - 0x800LL) == (x))
1201
1202 /* Is the given value a sign-extended 9-bit value?  */
1203 #define IS_SEXT_9BIT_NUM(x)                                             \
1204   (((((x) & 0x1ff) ^ 0x100LL) - 0x100LL) == (x))
1205
1206 /* Is the given value a zero-extended 32-bit value?  Or a negated one?  */
1207 #define IS_ZEXT_32BIT_NUM(x)                                            \
1208   (((x) &~ (offsetT) 0xffffffff) == 0                                   \
1209    || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
1210
1211 /* Extract bits MASK << SHIFT from STRUCT and shift them right
1212    SHIFT places.  */
1213 #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
1214   (((STRUCT) >> (SHIFT)) & (MASK))
1215
1216 /* Extract the operand given by FIELD from mips_cl_insn INSN.  */
1217 #define EXTRACT_OPERAND(MICROMIPS, FIELD, INSN) \
1218   (!(MICROMIPS) \
1219    ? EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD) \
1220    : EXTRACT_BITS ((INSN).insn_opcode, \
1221                    MICROMIPSOP_MASK_##FIELD, MICROMIPSOP_SH_##FIELD))
1222 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
1223   EXTRACT_BITS ((INSN).insn_opcode, \
1224                 MIPS16OP_MASK_##FIELD, \
1225                 MIPS16OP_SH_##FIELD)
1226
1227 /* The MIPS16 EXTEND opcode, shifted left 16 places.  */
1228 #define MIPS16_EXTEND (0xf000U << 16)
1229 \f
1230 /* Whether or not we are emitting a branch-likely macro.  */
1231 static bfd_boolean emit_branch_likely_macro = FALSE;
1232
1233 /* Global variables used when generating relaxable macros.  See the
1234    comment above RELAX_ENCODE for more details about how relaxation
1235    is used.  */
1236 static struct {
1237   /* 0 if we're not emitting a relaxable macro.
1238      1 if we're emitting the first of the two relaxation alternatives.
1239      2 if we're emitting the second alternative.  */
1240   int sequence;
1241
1242   /* The first relaxable fixup in the current frag.  (In other words,
1243      the first fixup that refers to relaxable code.)  */
1244   fixS *first_fixup;
1245
1246   /* sizes[0] says how many bytes of the first alternative are stored in
1247      the current frag.  Likewise sizes[1] for the second alternative.  */
1248   unsigned int sizes[2];
1249
1250   /* The symbol on which the choice of sequence depends.  */
1251   symbolS *symbol;
1252 } mips_relax;
1253 \f
1254 /* Global variables used to decide whether a macro needs a warning.  */
1255 static struct {
1256   /* True if the macro is in a branch delay slot.  */
1257   bfd_boolean delay_slot_p;
1258
1259   /* Set to the length in bytes required if the macro is in a delay slot
1260      that requires a specific length of instruction, otherwise zero.  */
1261   unsigned int delay_slot_length;
1262
1263   /* For relaxable macros, sizes[0] is the length of the first alternative
1264      in bytes and sizes[1] is the length of the second alternative.
1265      For non-relaxable macros, both elements give the length of the
1266      macro in bytes.  */
1267   unsigned int sizes[2];
1268
1269   /* For relaxable macros, first_insn_sizes[0] is the length of the first
1270      instruction of the first alternative in bytes and first_insn_sizes[1]
1271      is the length of the first instruction of the second alternative.
1272      For non-relaxable macros, both elements give the length of the first
1273      instruction in bytes.
1274
1275      Set to zero if we haven't yet seen the first instruction.  */
1276   unsigned int first_insn_sizes[2];
1277
1278   /* For relaxable macros, insns[0] is the number of instructions for the
1279      first alternative and insns[1] is the number of instructions for the
1280      second alternative.
1281
1282      For non-relaxable macros, both elements give the number of
1283      instructions for the macro.  */
1284   unsigned int insns[2];
1285
1286   /* The first variant frag for this macro.  */
1287   fragS *first_frag;
1288 } mips_macro_warning;
1289 \f
1290 /* Prototypes for static functions.  */
1291
1292 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
1293
1294 static void append_insn
1295   (struct mips_cl_insn *, expressionS *, bfd_reloc_code_real_type *,
1296    bfd_boolean expansionp);
1297 static void mips_no_prev_insn (void);
1298 static void macro_build (expressionS *, const char *, const char *, ...);
1299 static void mips16_macro_build
1300   (expressionS *, const char *, const char *, va_list *);
1301 static void load_register (int, expressionS *, int);
1302 static void macro_start (void);
1303 static void macro_end (void);
1304 static void macro (struct mips_cl_insn *ip, char *str);
1305 static void mips16_macro (struct mips_cl_insn * ip);
1306 static void mips_ip (char *str, struct mips_cl_insn * ip);
1307 static void mips16_ip (char *str, struct mips_cl_insn * ip);
1308 static void mips16_immed
1309   (char *, unsigned int, int, bfd_reloc_code_real_type, offsetT,
1310    unsigned int, unsigned long *);
1311 static size_t my_getSmallExpression
1312   (expressionS *, bfd_reloc_code_real_type *, char *);
1313 static void my_getExpression (expressionS *, char *);
1314 static void s_align (int);
1315 static void s_change_sec (int);
1316 static void s_change_section (int);
1317 static void s_cons (int);
1318 static void s_float_cons (int);
1319 static void s_mips_globl (int);
1320 static void s_option (int);
1321 static void s_mipsset (int);
1322 static void s_abicalls (int);
1323 static void s_cpload (int);
1324 static void s_cpsetup (int);
1325 static void s_cplocal (int);
1326 static void s_cprestore (int);
1327 static void s_cpreturn (int);
1328 static void s_dtprelword (int);
1329 static void s_dtpreldword (int);
1330 static void s_tprelword (int);
1331 static void s_tpreldword (int);
1332 static void s_gpvalue (int);
1333 static void s_gpword (int);
1334 static void s_gpdword (int);
1335 static void s_ehword (int);
1336 static void s_cpadd (int);
1337 static void s_insn (int);
1338 static void s_nan (int);
1339 static void s_module (int);
1340 static void s_mips_ent (int);
1341 static void s_mips_end (int);
1342 static void s_mips_frame (int);
1343 static void s_mips_mask (int reg_type);
1344 static void s_mips_stab (int);
1345 static void s_mips_weakext (int);
1346 static void s_mips_file (int);
1347 static void s_mips_loc (int);
1348 static bfd_boolean pic_need_relax (symbolS *, asection *);
1349 static int relaxed_branch_length (fragS *, asection *, int);
1350 static int relaxed_micromips_16bit_branch_length (fragS *, asection *, int);
1351 static int relaxed_micromips_32bit_branch_length (fragS *, asection *, int);
1352 static void file_mips_check_options (void);
1353
1354 /* Table and functions used to map between CPU/ISA names, and
1355    ISA levels, and CPU numbers.  */
1356
1357 struct mips_cpu_info
1358 {
1359   const char *name;           /* CPU or ISA name.  */
1360   int flags;                  /* MIPS_CPU_* flags.  */
1361   int ase;                    /* Set of ASEs implemented by the CPU.  */
1362   int isa;                    /* ISA level.  */
1363   int cpu;                    /* CPU number (default CPU if ISA).  */
1364 };
1365
1366 #define MIPS_CPU_IS_ISA         0x0001  /* Is this an ISA?  (If 0, a CPU.) */
1367
1368 static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1369 static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1370 static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
1371 \f
1372 /* Command-line options.  */
1373 const char *md_shortopts = "O::g::G:";
1374
1375 enum options
1376   {
1377     OPTION_MARCH = OPTION_MD_BASE,
1378     OPTION_MTUNE,
1379     OPTION_MIPS1,
1380     OPTION_MIPS2,
1381     OPTION_MIPS3,
1382     OPTION_MIPS4,
1383     OPTION_MIPS5,
1384     OPTION_MIPS32,
1385     OPTION_MIPS64,
1386     OPTION_MIPS32R2,
1387     OPTION_MIPS32R3,
1388     OPTION_MIPS32R5,
1389     OPTION_MIPS32R6,
1390     OPTION_MIPS64R2,
1391     OPTION_MIPS64R3,
1392     OPTION_MIPS64R5,
1393     OPTION_MIPS64R6,
1394     OPTION_MIPS16,
1395     OPTION_NO_MIPS16,
1396     OPTION_MIPS3D,
1397     OPTION_NO_MIPS3D,
1398     OPTION_MDMX,
1399     OPTION_NO_MDMX,
1400     OPTION_DSP,
1401     OPTION_NO_DSP,
1402     OPTION_MT,
1403     OPTION_NO_MT,
1404     OPTION_VIRT,
1405     OPTION_NO_VIRT,
1406     OPTION_MSA,
1407     OPTION_NO_MSA,
1408     OPTION_SMARTMIPS,
1409     OPTION_NO_SMARTMIPS,
1410     OPTION_DSPR2,
1411     OPTION_NO_DSPR2,
1412     OPTION_EVA,
1413     OPTION_NO_EVA,
1414     OPTION_XPA,
1415     OPTION_NO_XPA,
1416     OPTION_MICROMIPS,
1417     OPTION_NO_MICROMIPS,
1418     OPTION_MCU,
1419     OPTION_NO_MCU,
1420     OPTION_COMPAT_ARCH_BASE,
1421     OPTION_M4650,
1422     OPTION_NO_M4650,
1423     OPTION_M4010,
1424     OPTION_NO_M4010,
1425     OPTION_M4100,
1426     OPTION_NO_M4100,
1427     OPTION_M3900,
1428     OPTION_NO_M3900,
1429     OPTION_M7000_HILO_FIX,
1430     OPTION_MNO_7000_HILO_FIX,
1431     OPTION_FIX_24K,
1432     OPTION_NO_FIX_24K,
1433     OPTION_FIX_RM7000,
1434     OPTION_NO_FIX_RM7000,
1435     OPTION_FIX_LOONGSON2F_JUMP,
1436     OPTION_NO_FIX_LOONGSON2F_JUMP,
1437     OPTION_FIX_LOONGSON2F_NOP,
1438     OPTION_NO_FIX_LOONGSON2F_NOP,
1439     OPTION_FIX_VR4120,
1440     OPTION_NO_FIX_VR4120,
1441     OPTION_FIX_VR4130,
1442     OPTION_NO_FIX_VR4130,
1443     OPTION_FIX_CN63XXP1,
1444     OPTION_NO_FIX_CN63XXP1,
1445     OPTION_TRAP,
1446     OPTION_BREAK,
1447     OPTION_EB,
1448     OPTION_EL,
1449     OPTION_FP32,
1450     OPTION_GP32,
1451     OPTION_CONSTRUCT_FLOATS,
1452     OPTION_NO_CONSTRUCT_FLOATS,
1453     OPTION_FP64,
1454     OPTION_FPXX,
1455     OPTION_GP64,
1456     OPTION_RELAX_BRANCH,
1457     OPTION_NO_RELAX_BRANCH,
1458     OPTION_INSN32,
1459     OPTION_NO_INSN32,
1460     OPTION_MSHARED,
1461     OPTION_MNO_SHARED,
1462     OPTION_MSYM32,
1463     OPTION_MNO_SYM32,
1464     OPTION_SOFT_FLOAT,
1465     OPTION_HARD_FLOAT,
1466     OPTION_SINGLE_FLOAT,
1467     OPTION_DOUBLE_FLOAT,
1468     OPTION_32,
1469     OPTION_CALL_SHARED,
1470     OPTION_CALL_NONPIC,
1471     OPTION_NON_SHARED,
1472     OPTION_XGOT,
1473     OPTION_MABI,
1474     OPTION_N32,
1475     OPTION_64,
1476     OPTION_MDEBUG,
1477     OPTION_NO_MDEBUG,
1478     OPTION_PDR,
1479     OPTION_NO_PDR,
1480     OPTION_MVXWORKS_PIC,
1481     OPTION_NAN,
1482     OPTION_ODD_SPREG,
1483     OPTION_NO_ODD_SPREG,
1484     OPTION_END_OF_ENUM
1485   };
1486
1487 struct option md_longopts[] =
1488 {
1489   /* Options which specify architecture.  */
1490   {"march", required_argument, NULL, OPTION_MARCH},
1491   {"mtune", required_argument, NULL, OPTION_MTUNE},
1492   {"mips0", no_argument, NULL, OPTION_MIPS1},
1493   {"mips1", no_argument, NULL, OPTION_MIPS1},
1494   {"mips2", no_argument, NULL, OPTION_MIPS2},
1495   {"mips3", no_argument, NULL, OPTION_MIPS3},
1496   {"mips4", no_argument, NULL, OPTION_MIPS4},
1497   {"mips5", no_argument, NULL, OPTION_MIPS5},
1498   {"mips32", no_argument, NULL, OPTION_MIPS32},
1499   {"mips64", no_argument, NULL, OPTION_MIPS64},
1500   {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
1501   {"mips32r3", no_argument, NULL, OPTION_MIPS32R3},
1502   {"mips32r5", no_argument, NULL, OPTION_MIPS32R5},
1503   {"mips32r6", no_argument, NULL, OPTION_MIPS32R6},
1504   {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
1505   {"mips64r3", no_argument, NULL, OPTION_MIPS64R3},
1506   {"mips64r5", no_argument, NULL, OPTION_MIPS64R5},
1507   {"mips64r6", no_argument, NULL, OPTION_MIPS64R6},
1508
1509   /* Options which specify Application Specific Extensions (ASEs).  */
1510   {"mips16", no_argument, NULL, OPTION_MIPS16},
1511   {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
1512   {"mips3d", no_argument, NULL, OPTION_MIPS3D},
1513   {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
1514   {"mdmx", no_argument, NULL, OPTION_MDMX},
1515   {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
1516   {"mdsp", no_argument, NULL, OPTION_DSP},
1517   {"mno-dsp", no_argument, NULL, OPTION_NO_DSP},
1518   {"mmt", no_argument, NULL, OPTION_MT},
1519   {"mno-mt", no_argument, NULL, OPTION_NO_MT},
1520   {"msmartmips", no_argument, NULL, OPTION_SMARTMIPS},
1521   {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS},
1522   {"mdspr2", no_argument, NULL, OPTION_DSPR2},
1523   {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2},
1524   {"meva", no_argument, NULL, OPTION_EVA},
1525   {"mno-eva", no_argument, NULL, OPTION_NO_EVA},
1526   {"mmicromips", no_argument, NULL, OPTION_MICROMIPS},
1527   {"mno-micromips", no_argument, NULL, OPTION_NO_MICROMIPS},
1528   {"mmcu", no_argument, NULL, OPTION_MCU},
1529   {"mno-mcu", no_argument, NULL, OPTION_NO_MCU},
1530   {"mvirt", no_argument, NULL, OPTION_VIRT},
1531   {"mno-virt", no_argument, NULL, OPTION_NO_VIRT},
1532   {"mmsa", no_argument, NULL, OPTION_MSA},
1533   {"mno-msa", no_argument, NULL, OPTION_NO_MSA},
1534   {"mxpa", no_argument, NULL, OPTION_XPA},
1535   {"mno-xpa", no_argument, NULL, OPTION_NO_XPA},
1536
1537   /* Old-style architecture options.  Don't add more of these.  */
1538   {"m4650", no_argument, NULL, OPTION_M4650},
1539   {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
1540   {"m4010", no_argument, NULL, OPTION_M4010},
1541   {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
1542   {"m4100", no_argument, NULL, OPTION_M4100},
1543   {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
1544   {"m3900", no_argument, NULL, OPTION_M3900},
1545   {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
1546
1547   /* Options which enable bug fixes.  */
1548   {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
1549   {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
1550   {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
1551   {"mfix-loongson2f-jump", no_argument, NULL, OPTION_FIX_LOONGSON2F_JUMP},
1552   {"mno-fix-loongson2f-jump", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_JUMP},
1553   {"mfix-loongson2f-nop", no_argument, NULL, OPTION_FIX_LOONGSON2F_NOP},
1554   {"mno-fix-loongson2f-nop", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_NOP},
1555   {"mfix-vr4120",    no_argument, NULL, OPTION_FIX_VR4120},
1556   {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
1557   {"mfix-vr4130",    no_argument, NULL, OPTION_FIX_VR4130},
1558   {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
1559   {"mfix-24k",    no_argument, NULL, OPTION_FIX_24K},
1560   {"mno-fix-24k", no_argument, NULL, OPTION_NO_FIX_24K},
1561   {"mfix-rm7000",    no_argument, NULL, OPTION_FIX_RM7000},
1562   {"mno-fix-rm7000", no_argument, NULL, OPTION_NO_FIX_RM7000},
1563   {"mfix-cn63xxp1", no_argument, NULL, OPTION_FIX_CN63XXP1},
1564   {"mno-fix-cn63xxp1", no_argument, NULL, OPTION_NO_FIX_CN63XXP1},
1565
1566   /* Miscellaneous options.  */
1567   {"trap", no_argument, NULL, OPTION_TRAP},
1568   {"no-break", no_argument, NULL, OPTION_TRAP},
1569   {"break", no_argument, NULL, OPTION_BREAK},
1570   {"no-trap", no_argument, NULL, OPTION_BREAK},
1571   {"EB", no_argument, NULL, OPTION_EB},
1572   {"EL", no_argument, NULL, OPTION_EL},
1573   {"mfp32", no_argument, NULL, OPTION_FP32},
1574   {"mgp32", no_argument, NULL, OPTION_GP32},
1575   {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
1576   {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
1577   {"mfp64", no_argument, NULL, OPTION_FP64},
1578   {"mfpxx", no_argument, NULL, OPTION_FPXX},
1579   {"mgp64", no_argument, NULL, OPTION_GP64},
1580   {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
1581   {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
1582   {"minsn32", no_argument, NULL, OPTION_INSN32},
1583   {"mno-insn32", no_argument, NULL, OPTION_NO_INSN32},
1584   {"mshared", no_argument, NULL, OPTION_MSHARED},
1585   {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
1586   {"msym32", no_argument, NULL, OPTION_MSYM32},
1587   {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
1588   {"msoft-float", no_argument, NULL, OPTION_SOFT_FLOAT},
1589   {"mhard-float", no_argument, NULL, OPTION_HARD_FLOAT},
1590   {"msingle-float", no_argument, NULL, OPTION_SINGLE_FLOAT},
1591   {"mdouble-float", no_argument, NULL, OPTION_DOUBLE_FLOAT},
1592   {"modd-spreg", no_argument, NULL, OPTION_ODD_SPREG},
1593   {"mno-odd-spreg", no_argument, NULL, OPTION_NO_ODD_SPREG},
1594
1595   /* Strictly speaking this next option is ELF specific,
1596      but we allow it for other ports as well in order to
1597      make testing easier.  */
1598   {"32", no_argument, NULL, OPTION_32},
1599
1600   /* ELF-specific options.  */
1601   {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
1602   {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
1603   {"call_nonpic", no_argument, NULL, OPTION_CALL_NONPIC},
1604   {"non_shared",  no_argument, NULL, OPTION_NON_SHARED},
1605   {"xgot", no_argument, NULL, OPTION_XGOT},
1606   {"mabi", required_argument, NULL, OPTION_MABI},
1607   {"n32", no_argument, NULL, OPTION_N32},
1608   {"64", no_argument, NULL, OPTION_64},
1609   {"mdebug", no_argument, NULL, OPTION_MDEBUG},
1610   {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
1611   {"mpdr", no_argument, NULL, OPTION_PDR},
1612   {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
1613   {"mvxworks-pic", no_argument, NULL, OPTION_MVXWORKS_PIC},
1614   {"mnan", required_argument, NULL, OPTION_NAN},
1615
1616   {NULL, no_argument, NULL, 0}
1617 };
1618 size_t md_longopts_size = sizeof (md_longopts);
1619 \f
1620 /* Information about either an Application Specific Extension or an
1621    optional architecture feature that, for simplicity, we treat in the
1622    same way as an ASE.  */
1623 struct mips_ase
1624 {
1625   /* The name of the ASE, used in both the command-line and .set options.  */
1626   const char *name;
1627
1628   /* The associated ASE_* flags.  If the ASE is available on both 32-bit
1629      and 64-bit architectures, the flags here refer to the subset that
1630      is available on both.  */
1631   unsigned int flags;
1632
1633   /* The ASE_* flag used for instructions that are available on 64-bit
1634      architectures but that are not included in FLAGS.  */
1635   unsigned int flags64;
1636
1637   /* The command-line options that turn the ASE on and off.  */
1638   int option_on;
1639   int option_off;
1640
1641   /* The minimum required architecture revisions for MIPS32, MIPS64,
1642      microMIPS32 and microMIPS64, or -1 if the extension isn't supported.  */
1643   int mips32_rev;
1644   int mips64_rev;
1645   int micromips32_rev;
1646   int micromips64_rev;
1647
1648   /* The architecture where the ASE was removed or -1 if the extension has not
1649      been removed.  */
1650   int rem_rev;
1651 };
1652
1653 /* A table of all supported ASEs.  */
1654 static const struct mips_ase mips_ases[] = {
1655   { "dsp", ASE_DSP, ASE_DSP64,
1656     OPTION_DSP, OPTION_NO_DSP,
1657     2, 2, 2, 2,
1658     -1 },
1659
1660   { "dspr2", ASE_DSP | ASE_DSPR2, 0,
1661     OPTION_DSPR2, OPTION_NO_DSPR2,
1662     2, 2, 2, 2,
1663     -1 },
1664
1665   { "eva", ASE_EVA, 0,
1666     OPTION_EVA, OPTION_NO_EVA,
1667      2,  2,  2,  2,
1668     -1 },
1669
1670   { "mcu", ASE_MCU, 0,
1671     OPTION_MCU, OPTION_NO_MCU,
1672      2,  2,  2,  2,
1673     -1 },
1674
1675   /* Deprecated in MIPS64r5, but we don't implement that yet.  */
1676   { "mdmx", ASE_MDMX, 0,
1677     OPTION_MDMX, OPTION_NO_MDMX,
1678     -1, 1, -1, -1,
1679      6 },
1680
1681   /* Requires 64-bit FPRs, so the minimum MIPS32 revision is 2.  */
1682   { "mips3d", ASE_MIPS3D, 0,
1683     OPTION_MIPS3D, OPTION_NO_MIPS3D,
1684     2, 1, -1, -1,
1685     6 },
1686
1687   { "mt", ASE_MT, 0,
1688     OPTION_MT, OPTION_NO_MT,
1689      2,  2, -1, -1,
1690     -1 },
1691
1692   { "smartmips", ASE_SMARTMIPS, 0,
1693     OPTION_SMARTMIPS, OPTION_NO_SMARTMIPS,
1694     1, -1, -1, -1,
1695     6 },
1696
1697   { "virt", ASE_VIRT, ASE_VIRT64,
1698     OPTION_VIRT, OPTION_NO_VIRT,
1699      2,  2,  2,  2,
1700     -1 },
1701
1702   { "msa", ASE_MSA, ASE_MSA64,
1703     OPTION_MSA, OPTION_NO_MSA,
1704      2,  2,  2,  2,
1705     -1 },
1706
1707   { "xpa", ASE_XPA, 0,
1708     OPTION_XPA, OPTION_NO_XPA,
1709      2,  2, -1, -1,
1710     -1 },
1711 };
1712
1713 /* The set of ASEs that require -mfp64.  */
1714 #define FP64_ASES (ASE_MIPS3D | ASE_MDMX | ASE_MSA)
1715
1716 /* Groups of ASE_* flags that represent different revisions of an ASE.  */
1717 static const unsigned int mips_ase_groups[] = {
1718   ASE_DSP | ASE_DSPR2
1719 };
1720 \f
1721 /* Pseudo-op table.
1722
1723    The following pseudo-ops from the Kane and Heinrich MIPS book
1724    should be defined here, but are currently unsupported: .alias,
1725    .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1726
1727    The following pseudo-ops from the Kane and Heinrich MIPS book are
1728    specific to the type of debugging information being generated, and
1729    should be defined by the object format: .aent, .begin, .bend,
1730    .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1731    .vreg.
1732
1733    The following pseudo-ops from the Kane and Heinrich MIPS book are
1734    not MIPS CPU specific, but are also not specific to the object file
1735    format.  This file is probably the best place to define them, but
1736    they are not currently supported: .asm0, .endr, .lab, .struct.  */
1737
1738 static const pseudo_typeS mips_pseudo_table[] =
1739 {
1740   /* MIPS specific pseudo-ops.  */
1741   {"option", s_option, 0},
1742   {"set", s_mipsset, 0},
1743   {"rdata", s_change_sec, 'r'},
1744   {"sdata", s_change_sec, 's'},
1745   {"livereg", s_ignore, 0},
1746   {"abicalls", s_abicalls, 0},
1747   {"cpload", s_cpload, 0},
1748   {"cpsetup", s_cpsetup, 0},
1749   {"cplocal", s_cplocal, 0},
1750   {"cprestore", s_cprestore, 0},
1751   {"cpreturn", s_cpreturn, 0},
1752   {"dtprelword", s_dtprelword, 0},
1753   {"dtpreldword", s_dtpreldword, 0},
1754   {"tprelword", s_tprelword, 0},
1755   {"tpreldword", s_tpreldword, 0},
1756   {"gpvalue", s_gpvalue, 0},
1757   {"gpword", s_gpword, 0},
1758   {"gpdword", s_gpdword, 0},
1759   {"ehword", s_ehword, 0},
1760   {"cpadd", s_cpadd, 0},
1761   {"insn", s_insn, 0},
1762   {"nan", s_nan, 0},
1763   {"module", s_module, 0},
1764
1765   /* Relatively generic pseudo-ops that happen to be used on MIPS
1766      chips.  */
1767   {"asciiz", stringer, 8 + 1},
1768   {"bss", s_change_sec, 'b'},
1769   {"err", s_err, 0},
1770   {"half", s_cons, 1},
1771   {"dword", s_cons, 3},
1772   {"weakext", s_mips_weakext, 0},
1773   {"origin", s_org, 0},
1774   {"repeat", s_rept, 0},
1775
1776   /* For MIPS this is non-standard, but we define it for consistency.  */
1777   {"sbss", s_change_sec, 'B'},
1778
1779   /* These pseudo-ops are defined in read.c, but must be overridden
1780      here for one reason or another.  */
1781   {"align", s_align, 0},
1782   {"byte", s_cons, 0},
1783   {"data", s_change_sec, 'd'},
1784   {"double", s_float_cons, 'd'},
1785   {"float", s_float_cons, 'f'},
1786   {"globl", s_mips_globl, 0},
1787   {"global", s_mips_globl, 0},
1788   {"hword", s_cons, 1},
1789   {"int", s_cons, 2},
1790   {"long", s_cons, 2},
1791   {"octa", s_cons, 4},
1792   {"quad", s_cons, 3},
1793   {"section", s_change_section, 0},
1794   {"short", s_cons, 1},
1795   {"single", s_float_cons, 'f'},
1796   {"stabd", s_mips_stab, 'd'},
1797   {"stabn", s_mips_stab, 'n'},
1798   {"stabs", s_mips_stab, 's'},
1799   {"text", s_change_sec, 't'},
1800   {"word", s_cons, 2},
1801
1802   { "extern", ecoff_directive_extern, 0},
1803
1804   { NULL, NULL, 0 },
1805 };
1806
1807 static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1808 {
1809   /* These pseudo-ops should be defined by the object file format.
1810      However, a.out doesn't support them, so we have versions here.  */
1811   {"aent", s_mips_ent, 1},
1812   {"bgnb", s_ignore, 0},
1813   {"end", s_mips_end, 0},
1814   {"endb", s_ignore, 0},
1815   {"ent", s_mips_ent, 0},
1816   {"file", s_mips_file, 0},
1817   {"fmask", s_mips_mask, 'F'},
1818   {"frame", s_mips_frame, 0},
1819   {"loc", s_mips_loc, 0},
1820   {"mask", s_mips_mask, 'R'},
1821   {"verstamp", s_ignore, 0},
1822   { NULL, NULL, 0 },
1823 };
1824
1825 /* Export the ABI address size for use by TC_ADDRESS_BYTES for the
1826    purpose of the `.dc.a' internal pseudo-op.  */
1827
1828 int
1829 mips_address_bytes (void)
1830 {
1831   file_mips_check_options ();
1832   return HAVE_64BIT_ADDRESSES ? 8 : 4;
1833 }
1834
1835 extern void pop_insert (const pseudo_typeS *);
1836
1837 void
1838 mips_pop_insert (void)
1839 {
1840   pop_insert (mips_pseudo_table);
1841   if (! ECOFF_DEBUGGING)
1842     pop_insert (mips_nonecoff_pseudo_table);
1843 }
1844 \f
1845 /* Symbols labelling the current insn.  */
1846
1847 struct insn_label_list
1848 {
1849   struct insn_label_list *next;
1850   symbolS *label;
1851 };
1852
1853 static struct insn_label_list *free_insn_labels;
1854 #define label_list tc_segment_info_data.labels
1855
1856 static void mips_clear_insn_labels (void);
1857 static void mips_mark_labels (void);
1858 static void mips_compressed_mark_labels (void);
1859
1860 static inline void
1861 mips_clear_insn_labels (void)
1862 {
1863   register struct insn_label_list **pl;
1864   segment_info_type *si;
1865
1866   if (now_seg)
1867     {
1868       for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1869         ;
1870       
1871       si = seg_info (now_seg);
1872       *pl = si->label_list;
1873       si->label_list = NULL;
1874     }
1875 }
1876
1877 /* Mark instruction labels in MIPS16/microMIPS mode.  */
1878
1879 static inline void
1880 mips_mark_labels (void)
1881 {
1882   if (HAVE_CODE_COMPRESSION)
1883     mips_compressed_mark_labels ();
1884 }
1885 \f
1886 static char *expr_end;
1887
1888 /* An expression in a macro instruction.  This is set by mips_ip and
1889    mips16_ip and when populated is always an O_constant.  */
1890
1891 static expressionS imm_expr;
1892
1893 /* The relocatable field in an instruction and the relocs associated
1894    with it.  These variables are used for instructions like LUI and
1895    JAL as well as true offsets.  They are also used for address
1896    operands in macros.  */
1897
1898 static expressionS offset_expr;
1899 static bfd_reloc_code_real_type offset_reloc[3]
1900   = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1901
1902 /* This is set to the resulting size of the instruction to be produced
1903    by mips16_ip if an explicit extension is used or by mips_ip if an
1904    explicit size is supplied.  */
1905
1906 static unsigned int forced_insn_length;
1907
1908 /* True if we are assembling an instruction.  All dot symbols defined during
1909    this time should be treated as code labels.  */
1910
1911 static bfd_boolean mips_assembling_insn;
1912
1913 /* The pdr segment for per procedure frame/regmask info.  Not used for
1914    ECOFF debugging.  */
1915
1916 static segT pdr_seg;
1917
1918 /* The default target format to use.  */
1919
1920 #if defined (TE_FreeBSD)
1921 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips-freebsd"
1922 #elif defined (TE_TMIPS)
1923 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips"
1924 #else
1925 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX ENDIAN "mips"
1926 #endif
1927
1928 const char *
1929 mips_target_format (void)
1930 {
1931   switch (OUTPUT_FLAVOR)
1932     {
1933     case bfd_target_elf_flavour:
1934 #ifdef TE_VXWORKS
1935       if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI)
1936         return (target_big_endian
1937                 ? "elf32-bigmips-vxworks"
1938                 : "elf32-littlemips-vxworks");
1939 #endif
1940       return (target_big_endian
1941               ? (HAVE_64BIT_OBJECTS
1942                  ? ELF_TARGET ("elf64-", "big")
1943                  : (HAVE_NEWABI
1944                     ? ELF_TARGET ("elf32-n", "big")
1945                     : ELF_TARGET ("elf32-", "big")))
1946               : (HAVE_64BIT_OBJECTS
1947                  ? ELF_TARGET ("elf64-", "little")
1948                  : (HAVE_NEWABI
1949                     ? ELF_TARGET ("elf32-n", "little")
1950                     : ELF_TARGET ("elf32-", "little"))));
1951     default:
1952       abort ();
1953       return NULL;
1954     }
1955 }
1956
1957 /* Return the ISA revision that is currently in use, or 0 if we are
1958    generating code for MIPS V or below.  */
1959
1960 static int
1961 mips_isa_rev (void)
1962 {
1963   if (mips_opts.isa == ISA_MIPS32R2 || mips_opts.isa == ISA_MIPS64R2)
1964     return 2;
1965
1966   if (mips_opts.isa == ISA_MIPS32R3 || mips_opts.isa == ISA_MIPS64R3)
1967     return 3;
1968
1969   if (mips_opts.isa == ISA_MIPS32R5 || mips_opts.isa == ISA_MIPS64R5)
1970     return 5;
1971
1972   if (mips_opts.isa == ISA_MIPS32R6 || mips_opts.isa == ISA_MIPS64R6)
1973     return 6;
1974
1975   /* microMIPS implies revision 2 or above.  */
1976   if (mips_opts.micromips)
1977     return 2;
1978
1979   if (mips_opts.isa == ISA_MIPS32 || mips_opts.isa == ISA_MIPS64)
1980     return 1;
1981
1982   return 0;
1983 }
1984
1985 /* Return the mask of all ASEs that are revisions of those in FLAGS.  */
1986
1987 static unsigned int
1988 mips_ase_mask (unsigned int flags)
1989 {
1990   unsigned int i;
1991
1992   for (i = 0; i < ARRAY_SIZE (mips_ase_groups); i++)
1993     if (flags & mips_ase_groups[i])
1994       flags |= mips_ase_groups[i];
1995   return flags;
1996 }
1997
1998 /* Check whether the current ISA supports ASE.  Issue a warning if
1999    appropriate.  */
2000
2001 static void
2002 mips_check_isa_supports_ase (const struct mips_ase *ase)
2003 {
2004   const char *base;
2005   int min_rev, size;
2006   static unsigned int warned_isa;
2007   static unsigned int warned_fp32;
2008
2009   if (ISA_HAS_64BIT_REGS (mips_opts.isa))
2010     min_rev = mips_opts.micromips ? ase->micromips64_rev : ase->mips64_rev;
2011   else
2012     min_rev = mips_opts.micromips ? ase->micromips32_rev : ase->mips32_rev;
2013   if ((min_rev < 0 || mips_isa_rev () < min_rev)
2014       && (warned_isa & ase->flags) != ase->flags)
2015     {
2016       warned_isa |= ase->flags;
2017       base = mips_opts.micromips ? "microMIPS" : "MIPS";
2018       size = ISA_HAS_64BIT_REGS (mips_opts.isa) ? 64 : 32;
2019       if (min_rev < 0)
2020         as_warn (_("the %d-bit %s architecture does not support the"
2021                    " `%s' extension"), size, base, ase->name);
2022       else
2023         as_warn (_("the `%s' extension requires %s%d revision %d or greater"),
2024                  ase->name, base, size, min_rev);
2025     }
2026   else if ((ase->rem_rev > 0 && mips_isa_rev () >= ase->rem_rev)
2027            && (warned_isa & ase->flags) != ase->flags)
2028     {
2029       warned_isa |= ase->flags;
2030       base = mips_opts.micromips ? "microMIPS" : "MIPS";
2031       size = ISA_HAS_64BIT_REGS (mips_opts.isa) ? 64 : 32;
2032       as_warn (_("the `%s' extension was removed in %s%d revision %d"),
2033                ase->name, base, size, ase->rem_rev);
2034     }
2035
2036   if ((ase->flags & FP64_ASES)
2037       && mips_opts.fp != 64
2038       && (warned_fp32 & ase->flags) != ase->flags)
2039     {
2040       warned_fp32 |= ase->flags;
2041       as_warn (_("the `%s' extension requires 64-bit FPRs"), ase->name);
2042     }
2043 }
2044
2045 /* Check all enabled ASEs to see whether they are supported by the
2046    chosen architecture.  */
2047
2048 static void
2049 mips_check_isa_supports_ases (void)
2050 {
2051   unsigned int i, mask;
2052
2053   for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
2054     {
2055       mask = mips_ase_mask (mips_ases[i].flags);
2056       if ((mips_opts.ase & mask) == mips_ases[i].flags)
2057         mips_check_isa_supports_ase (&mips_ases[i]);
2058     }
2059 }
2060
2061 /* Set the state of ASE to ENABLED_P.  Return the mask of ASE_* flags
2062    that were affected.  */
2063
2064 static unsigned int
2065 mips_set_ase (const struct mips_ase *ase, struct mips_set_options *opts,
2066               bfd_boolean enabled_p)
2067 {
2068   unsigned int mask;
2069
2070   mask = mips_ase_mask (ase->flags);
2071   opts->ase &= ~mask;
2072   if (enabled_p)
2073     opts->ase |= ase->flags;
2074   return mask;
2075 }
2076
2077 /* Return the ASE called NAME, or null if none.  */
2078
2079 static const struct mips_ase *
2080 mips_lookup_ase (const char *name)
2081 {
2082   unsigned int i;
2083
2084   for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
2085     if (strcmp (name, mips_ases[i].name) == 0)
2086       return &mips_ases[i];
2087   return NULL;
2088 }
2089
2090 /* Return the length of a microMIPS instruction in bytes.  If bits of
2091    the mask beyond the low 16 are 0, then it is a 16-bit instruction.
2092    Otherwise assume a 32-bit instruction; 48-bit instructions (0x1f
2093    major opcode) will require further modifications to the opcode
2094    table.  */
2095
2096 static inline unsigned int
2097 micromips_insn_length (const struct mips_opcode *mo)
2098 {
2099   return (mo->mask >> 16) == 0 ? 2 : 4;
2100 }
2101
2102 /* Return the length of MIPS16 instruction OPCODE.  */
2103
2104 static inline unsigned int
2105 mips16_opcode_length (unsigned long opcode)
2106 {
2107   return (opcode >> 16) == 0 ? 2 : 4;
2108 }
2109
2110 /* Return the length of instruction INSN.  */
2111
2112 static inline unsigned int
2113 insn_length (const struct mips_cl_insn *insn)
2114 {
2115   if (mips_opts.micromips)
2116     return micromips_insn_length (insn->insn_mo);
2117   else if (mips_opts.mips16)
2118     return mips16_opcode_length (insn->insn_opcode);
2119   else
2120     return 4;
2121 }
2122
2123 /* Initialise INSN from opcode entry MO.  Leave its position unspecified.  */
2124
2125 static void
2126 create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
2127 {
2128   size_t i;
2129
2130   insn->insn_mo = mo;
2131   insn->insn_opcode = mo->match;
2132   insn->frag = NULL;
2133   insn->where = 0;
2134   for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
2135     insn->fixp[i] = NULL;
2136   insn->fixed_p = (mips_opts.noreorder > 0);
2137   insn->noreorder_p = (mips_opts.noreorder > 0);
2138   insn->mips16_absolute_jump_p = 0;
2139   insn->complete_p = 0;
2140   insn->cleared_p = 0;
2141 }
2142
2143 /* Get a list of all the operands in INSN.  */
2144
2145 static const struct mips_operand_array *
2146 insn_operands (const struct mips_cl_insn *insn)
2147 {
2148   if (insn->insn_mo >= &mips_opcodes[0]
2149       && insn->insn_mo < &mips_opcodes[NUMOPCODES])
2150     return &mips_operands[insn->insn_mo - &mips_opcodes[0]];
2151
2152   if (insn->insn_mo >= &mips16_opcodes[0]
2153       && insn->insn_mo < &mips16_opcodes[bfd_mips16_num_opcodes])
2154     return &mips16_operands[insn->insn_mo - &mips16_opcodes[0]];
2155
2156   if (insn->insn_mo >= &micromips_opcodes[0]
2157       && insn->insn_mo < &micromips_opcodes[bfd_micromips_num_opcodes])
2158     return &micromips_operands[insn->insn_mo - &micromips_opcodes[0]];
2159
2160   abort ();
2161 }
2162
2163 /* Get a description of operand OPNO of INSN.  */
2164
2165 static const struct mips_operand *
2166 insn_opno (const struct mips_cl_insn *insn, unsigned opno)
2167 {
2168   const struct mips_operand_array *operands;
2169
2170   operands = insn_operands (insn);
2171   if (opno >= MAX_OPERANDS || !operands->operand[opno])
2172     abort ();
2173   return operands->operand[opno];
2174 }
2175
2176 /* Install UVAL as the value of OPERAND in INSN.  */
2177
2178 static inline void
2179 insn_insert_operand (struct mips_cl_insn *insn,
2180                      const struct mips_operand *operand, unsigned int uval)
2181 {
2182   insn->insn_opcode = mips_insert_operand (operand, insn->insn_opcode, uval);
2183 }
2184
2185 /* Extract the value of OPERAND from INSN.  */
2186
2187 static inline unsigned
2188 insn_extract_operand (const struct mips_cl_insn *insn,
2189                       const struct mips_operand *operand)
2190 {
2191   return mips_extract_operand (operand, insn->insn_opcode);
2192 }
2193
2194 /* Record the current MIPS16/microMIPS mode in now_seg.  */
2195
2196 static void
2197 mips_record_compressed_mode (void)
2198 {
2199   segment_info_type *si;
2200
2201   si = seg_info (now_seg);
2202   if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
2203     si->tc_segment_info_data.mips16 = mips_opts.mips16;
2204   if (si->tc_segment_info_data.micromips != mips_opts.micromips)
2205     si->tc_segment_info_data.micromips = mips_opts.micromips;
2206 }
2207
2208 /* Read a standard MIPS instruction from BUF.  */
2209
2210 static unsigned long
2211 read_insn (char *buf)
2212 {
2213   if (target_big_endian)
2214     return bfd_getb32 ((bfd_byte *) buf);
2215   else
2216     return bfd_getl32 ((bfd_byte *) buf);
2217 }
2218
2219 /* Write standard MIPS instruction INSN to BUF.  Return a pointer to
2220    the next byte.  */
2221
2222 static char *
2223 write_insn (char *buf, unsigned int insn)
2224 {
2225   md_number_to_chars (buf, insn, 4);
2226   return buf + 4;
2227 }
2228
2229 /* Read a microMIPS or MIPS16 opcode from BUF, given that it
2230    has length LENGTH.  */
2231
2232 static unsigned long
2233 read_compressed_insn (char *buf, unsigned int length)
2234 {
2235   unsigned long insn;
2236   unsigned int i;
2237
2238   insn = 0;
2239   for (i = 0; i < length; i += 2)
2240     {
2241       insn <<= 16;
2242       if (target_big_endian)
2243         insn |= bfd_getb16 ((char *) buf);
2244       else
2245         insn |= bfd_getl16 ((char *) buf);
2246       buf += 2;
2247     }
2248   return insn;
2249 }
2250
2251 /* Write microMIPS or MIPS16 instruction INSN to BUF, given that the
2252    instruction is LENGTH bytes long.  Return a pointer to the next byte.  */
2253
2254 static char *
2255 write_compressed_insn (char *buf, unsigned int insn, unsigned int length)
2256 {
2257   unsigned int i;
2258
2259   for (i = 0; i < length; i += 2)
2260     md_number_to_chars (buf + i, insn >> ((length - i - 2) * 8), 2);
2261   return buf + length;
2262 }
2263
2264 /* Install INSN at the location specified by its "frag" and "where" fields.  */
2265
2266 static void
2267 install_insn (const struct mips_cl_insn *insn)
2268 {
2269   char *f = insn->frag->fr_literal + insn->where;
2270   if (HAVE_CODE_COMPRESSION)
2271     write_compressed_insn (f, insn->insn_opcode, insn_length (insn));
2272   else
2273     write_insn (f, insn->insn_opcode);
2274   mips_record_compressed_mode ();
2275 }
2276
2277 /* Move INSN to offset WHERE in FRAG.  Adjust the fixups accordingly
2278    and install the opcode in the new location.  */
2279
2280 static void
2281 move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
2282 {
2283   size_t i;
2284
2285   insn->frag = frag;
2286   insn->where = where;
2287   for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
2288     if (insn->fixp[i] != NULL)
2289       {
2290         insn->fixp[i]->fx_frag = frag;
2291         insn->fixp[i]->fx_where = where;
2292       }
2293   install_insn (insn);
2294 }
2295
2296 /* Add INSN to the end of the output.  */
2297
2298 static void
2299 add_fixed_insn (struct mips_cl_insn *insn)
2300 {
2301   char *f = frag_more (insn_length (insn));
2302   move_insn (insn, frag_now, f - frag_now->fr_literal);
2303 }
2304
2305 /* Start a variant frag and move INSN to the start of the variant part,
2306    marking it as fixed.  The other arguments are as for frag_var.  */
2307
2308 static void
2309 add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
2310                   relax_substateT subtype, symbolS *symbol, offsetT offset)
2311 {
2312   frag_grow (max_chars);
2313   move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
2314   insn->fixed_p = 1;
2315   frag_var (rs_machine_dependent, max_chars, var,
2316             subtype, symbol, offset, NULL);
2317 }
2318
2319 /* Insert N copies of INSN into the history buffer, starting at
2320    position FIRST.  Neither FIRST nor N need to be clipped.  */
2321
2322 static void
2323 insert_into_history (unsigned int first, unsigned int n,
2324                      const struct mips_cl_insn *insn)
2325 {
2326   if (mips_relax.sequence != 2)
2327     {
2328       unsigned int i;
2329
2330       for (i = ARRAY_SIZE (history); i-- > first;)
2331         if (i >= first + n)
2332           history[i] = history[i - n];
2333         else
2334           history[i] = *insn;
2335     }
2336 }
2337
2338 /* Clear the error in insn_error.  */
2339
2340 static void
2341 clear_insn_error (void)
2342 {
2343   memset (&insn_error, 0, sizeof (insn_error));
2344 }
2345
2346 /* Possibly record error message MSG for the current instruction.
2347    If the error is about a particular argument, ARGNUM is the 1-based
2348    number of that argument, otherwise it is 0.  FORMAT is the format
2349    of MSG.  Return true if MSG was used, false if the current message
2350    was kept.  */
2351
2352 static bfd_boolean
2353 set_insn_error_format (int argnum, enum mips_insn_error_format format,
2354                        const char *msg)
2355 {
2356   if (argnum == 0)
2357     {
2358       /* Give priority to errors against specific arguments, and to
2359          the first whole-instruction message.  */
2360       if (insn_error.msg)
2361         return FALSE;
2362     }
2363   else
2364     {
2365       /* Keep insn_error if it is against a later argument.  */
2366       if (argnum < insn_error.min_argnum)
2367         return FALSE;
2368
2369       /* If both errors are against the same argument but are different,
2370          give up on reporting a specific error for this argument.
2371          See the comment about mips_insn_error for details.  */
2372       if (argnum == insn_error.min_argnum
2373           && insn_error.msg
2374           && strcmp (insn_error.msg, msg) != 0)
2375         {
2376           insn_error.msg = 0;
2377           insn_error.min_argnum += 1;
2378           return FALSE;
2379         }
2380     }
2381   insn_error.min_argnum = argnum;
2382   insn_error.format = format;
2383   insn_error.msg = msg;
2384   return TRUE;
2385 }
2386
2387 /* Record an instruction error with no % format fields.  ARGNUM and MSG are
2388    as for set_insn_error_format.  */
2389
2390 static void
2391 set_insn_error (int argnum, const char *msg)
2392 {
2393   set_insn_error_format (argnum, ERR_FMT_PLAIN, msg);
2394 }
2395
2396 /* Record an instruction error with one %d field I.  ARGNUM and MSG are
2397    as for set_insn_error_format.  */
2398
2399 static void
2400 set_insn_error_i (int argnum, const char *msg, int i)
2401 {
2402   if (set_insn_error_format (argnum, ERR_FMT_I, msg))
2403     insn_error.u.i = i;
2404 }
2405
2406 /* Record an instruction error with two %s fields S1 and S2.  ARGNUM and MSG
2407    are as for set_insn_error_format.  */
2408
2409 static void
2410 set_insn_error_ss (int argnum, const char *msg, const char *s1, const char *s2)
2411 {
2412   if (set_insn_error_format (argnum, ERR_FMT_SS, msg))
2413     {
2414       insn_error.u.ss[0] = s1;
2415       insn_error.u.ss[1] = s2;
2416     }
2417 }
2418
2419 /* Report the error in insn_error, which is against assembly code STR.  */
2420
2421 static void
2422 report_insn_error (const char *str)
2423 {
2424   const char *msg;
2425
2426   msg = ACONCAT ((insn_error.msg, " `%s'", NULL));
2427   switch (insn_error.format)
2428     {
2429     case ERR_FMT_PLAIN:
2430       as_bad (msg, str);
2431       break;
2432
2433     case ERR_FMT_I:
2434       as_bad (msg, insn_error.u.i, str);
2435       break;
2436
2437     case ERR_FMT_SS:
2438       as_bad (msg, insn_error.u.ss[0], insn_error.u.ss[1], str);
2439       break;
2440     }
2441 }
2442
2443 /* Initialize vr4120_conflicts.  There is a bit of duplication here:
2444    the idea is to make it obvious at a glance that each errata is
2445    included.  */
2446
2447 static void
2448 init_vr4120_conflicts (void)
2449 {
2450 #define CONFLICT(FIRST, SECOND) \
2451     vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
2452
2453   /* Errata 21 - [D]DIV[U] after [D]MACC */
2454   CONFLICT (MACC, DIV);
2455   CONFLICT (DMACC, DIV);
2456
2457   /* Errata 23 - Continuous DMULT[U]/DMACC instructions.  */
2458   CONFLICT (DMULT, DMULT);
2459   CONFLICT (DMULT, DMACC);
2460   CONFLICT (DMACC, DMULT);
2461   CONFLICT (DMACC, DMACC);
2462
2463   /* Errata 24 - MT{LO,HI} after [D]MACC */
2464   CONFLICT (MACC, MTHILO);
2465   CONFLICT (DMACC, MTHILO);
2466
2467   /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
2468      instruction is executed immediately after a MACC or DMACC
2469      instruction, the result of [either instruction] is incorrect."  */
2470   CONFLICT (MACC, MULT);
2471   CONFLICT (MACC, DMULT);
2472   CONFLICT (DMACC, MULT);
2473   CONFLICT (DMACC, DMULT);
2474
2475   /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
2476      executed immediately after a DMULT, DMULTU, DIV, DIVU,
2477      DDIV or DDIVU instruction, the result of the MACC or
2478      DMACC instruction is incorrect.".  */
2479   CONFLICT (DMULT, MACC);
2480   CONFLICT (DMULT, DMACC);
2481   CONFLICT (DIV, MACC);
2482   CONFLICT (DIV, DMACC);
2483
2484 #undef CONFLICT
2485 }
2486
2487 struct regname {
2488   const char *name;
2489   unsigned int num;
2490 };
2491
2492 #define RNUM_MASK       0x00000ff
2493 #define RTYPE_MASK      0x0ffff00
2494 #define RTYPE_NUM       0x0000100
2495 #define RTYPE_FPU       0x0000200
2496 #define RTYPE_FCC       0x0000400
2497 #define RTYPE_VEC       0x0000800
2498 #define RTYPE_GP        0x0001000
2499 #define RTYPE_CP0       0x0002000
2500 #define RTYPE_PC        0x0004000
2501 #define RTYPE_ACC       0x0008000
2502 #define RTYPE_CCC       0x0010000
2503 #define RTYPE_VI        0x0020000
2504 #define RTYPE_VF        0x0040000
2505 #define RTYPE_R5900_I   0x0080000
2506 #define RTYPE_R5900_Q   0x0100000
2507 #define RTYPE_R5900_R   0x0200000
2508 #define RTYPE_R5900_ACC 0x0400000
2509 #define RTYPE_MSA       0x0800000
2510 #define RWARN           0x8000000
2511
2512 #define GENERIC_REGISTER_NUMBERS \
2513     {"$0",      RTYPE_NUM | 0},  \
2514     {"$1",      RTYPE_NUM | 1},  \
2515     {"$2",      RTYPE_NUM | 2},  \
2516     {"$3",      RTYPE_NUM | 3},  \
2517     {"$4",      RTYPE_NUM | 4},  \
2518     {"$5",      RTYPE_NUM | 5},  \
2519     {"$6",      RTYPE_NUM | 6},  \
2520     {"$7",      RTYPE_NUM | 7},  \
2521     {"$8",      RTYPE_NUM | 8},  \
2522     {"$9",      RTYPE_NUM | 9},  \
2523     {"$10",     RTYPE_NUM | 10}, \
2524     {"$11",     RTYPE_NUM | 11}, \
2525     {"$12",     RTYPE_NUM | 12}, \
2526     {"$13",     RTYPE_NUM | 13}, \
2527     {"$14",     RTYPE_NUM | 14}, \
2528     {"$15",     RTYPE_NUM | 15}, \
2529     {"$16",     RTYPE_NUM | 16}, \
2530     {"$17",     RTYPE_NUM | 17}, \
2531     {"$18",     RTYPE_NUM | 18}, \
2532     {"$19",     RTYPE_NUM | 19}, \
2533     {"$20",     RTYPE_NUM | 20}, \
2534     {"$21",     RTYPE_NUM | 21}, \
2535     {"$22",     RTYPE_NUM | 22}, \
2536     {"$23",     RTYPE_NUM | 23}, \
2537     {"$24",     RTYPE_NUM | 24}, \
2538     {"$25",     RTYPE_NUM | 25}, \
2539     {"$26",     RTYPE_NUM | 26}, \
2540     {"$27",     RTYPE_NUM | 27}, \
2541     {"$28",     RTYPE_NUM | 28}, \
2542     {"$29",     RTYPE_NUM | 29}, \
2543     {"$30",     RTYPE_NUM | 30}, \
2544     {"$31",     RTYPE_NUM | 31} 
2545
2546 #define FPU_REGISTER_NAMES       \
2547     {"$f0",     RTYPE_FPU | 0},  \
2548     {"$f1",     RTYPE_FPU | 1},  \
2549     {"$f2",     RTYPE_FPU | 2},  \
2550     {"$f3",     RTYPE_FPU | 3},  \
2551     {"$f4",     RTYPE_FPU | 4},  \
2552     {"$f5",     RTYPE_FPU | 5},  \
2553     {"$f6",     RTYPE_FPU | 6},  \
2554     {"$f7",     RTYPE_FPU | 7},  \
2555     {"$f8",     RTYPE_FPU | 8},  \
2556     {"$f9",     RTYPE_FPU | 9},  \
2557     {"$f10",    RTYPE_FPU | 10}, \
2558     {"$f11",    RTYPE_FPU | 11}, \
2559     {"$f12",    RTYPE_FPU | 12}, \
2560     {"$f13",    RTYPE_FPU | 13}, \
2561     {"$f14",    RTYPE_FPU | 14}, \
2562     {"$f15",    RTYPE_FPU | 15}, \
2563     {"$f16",    RTYPE_FPU | 16}, \
2564     {"$f17",    RTYPE_FPU | 17}, \
2565     {"$f18",    RTYPE_FPU | 18}, \
2566     {"$f19",    RTYPE_FPU | 19}, \
2567     {"$f20",    RTYPE_FPU | 20}, \
2568     {"$f21",    RTYPE_FPU | 21}, \
2569     {"$f22",    RTYPE_FPU | 22}, \
2570     {"$f23",    RTYPE_FPU | 23}, \
2571     {"$f24",    RTYPE_FPU | 24}, \
2572     {"$f25",    RTYPE_FPU | 25}, \
2573     {"$f26",    RTYPE_FPU | 26}, \
2574     {"$f27",    RTYPE_FPU | 27}, \
2575     {"$f28",    RTYPE_FPU | 28}, \
2576     {"$f29",    RTYPE_FPU | 29}, \
2577     {"$f30",    RTYPE_FPU | 30}, \
2578     {"$f31",    RTYPE_FPU | 31}
2579
2580 #define FPU_CONDITION_CODE_NAMES \
2581     {"$fcc0",   RTYPE_FCC | 0},  \
2582     {"$fcc1",   RTYPE_FCC | 1},  \
2583     {"$fcc2",   RTYPE_FCC | 2},  \
2584     {"$fcc3",   RTYPE_FCC | 3},  \
2585     {"$fcc4",   RTYPE_FCC | 4},  \
2586     {"$fcc5",   RTYPE_FCC | 5},  \
2587     {"$fcc6",   RTYPE_FCC | 6},  \
2588     {"$fcc7",   RTYPE_FCC | 7}
2589
2590 #define COPROC_CONDITION_CODE_NAMES         \
2591     {"$cc0",    RTYPE_FCC | RTYPE_CCC | 0}, \
2592     {"$cc1",    RTYPE_FCC | RTYPE_CCC | 1}, \
2593     {"$cc2",    RTYPE_FCC | RTYPE_CCC | 2}, \
2594     {"$cc3",    RTYPE_FCC | RTYPE_CCC | 3}, \
2595     {"$cc4",    RTYPE_FCC | RTYPE_CCC | 4}, \
2596     {"$cc5",    RTYPE_FCC | RTYPE_CCC | 5}, \
2597     {"$cc6",    RTYPE_FCC | RTYPE_CCC | 6}, \
2598     {"$cc7",    RTYPE_FCC | RTYPE_CCC | 7}
2599
2600 #define N32N64_SYMBOLIC_REGISTER_NAMES \
2601     {"$a4",     RTYPE_GP | 8},  \
2602     {"$a5",     RTYPE_GP | 9},  \
2603     {"$a6",     RTYPE_GP | 10}, \
2604     {"$a7",     RTYPE_GP | 11}, \
2605     {"$ta0",    RTYPE_GP | 8},  /* alias for $a4 */ \
2606     {"$ta1",    RTYPE_GP | 9},  /* alias for $a5 */ \
2607     {"$ta2",    RTYPE_GP | 10}, /* alias for $a6 */ \
2608     {"$ta3",    RTYPE_GP | 11}, /* alias for $a7 */ \
2609     {"$t0",     RTYPE_GP | 12}, \
2610     {"$t1",     RTYPE_GP | 13}, \
2611     {"$t2",     RTYPE_GP | 14}, \
2612     {"$t3",     RTYPE_GP | 15}
2613
2614 #define O32_SYMBOLIC_REGISTER_NAMES \
2615     {"$t0",     RTYPE_GP | 8},  \
2616     {"$t1",     RTYPE_GP | 9},  \
2617     {"$t2",     RTYPE_GP | 10}, \
2618     {"$t3",     RTYPE_GP | 11}, \
2619     {"$t4",     RTYPE_GP | 12}, \
2620     {"$t5",     RTYPE_GP | 13}, \
2621     {"$t6",     RTYPE_GP | 14}, \
2622     {"$t7",     RTYPE_GP | 15}, \
2623     {"$ta0",    RTYPE_GP | 12}, /* alias for $t4 */ \
2624     {"$ta1",    RTYPE_GP | 13}, /* alias for $t5 */ \
2625     {"$ta2",    RTYPE_GP | 14}, /* alias for $t6 */ \
2626     {"$ta3",    RTYPE_GP | 15}  /* alias for $t7 */ 
2627
2628 /* Remaining symbolic register names */
2629 #define SYMBOLIC_REGISTER_NAMES \
2630     {"$zero",   RTYPE_GP | 0},  \
2631     {"$at",     RTYPE_GP | 1},  \
2632     {"$AT",     RTYPE_GP | 1},  \
2633     {"$v0",     RTYPE_GP | 2},  \
2634     {"$v1",     RTYPE_GP | 3},  \
2635     {"$a0",     RTYPE_GP | 4},  \
2636     {"$a1",     RTYPE_GP | 5},  \
2637     {"$a2",     RTYPE_GP | 6},  \
2638     {"$a3",     RTYPE_GP | 7},  \
2639     {"$s0",     RTYPE_GP | 16}, \
2640     {"$s1",     RTYPE_GP | 17}, \
2641     {"$s2",     RTYPE_GP | 18}, \
2642     {"$s3",     RTYPE_GP | 19}, \
2643     {"$s4",     RTYPE_GP | 20}, \
2644     {"$s5",     RTYPE_GP | 21}, \
2645     {"$s6",     RTYPE_GP | 22}, \
2646     {"$s7",     RTYPE_GP | 23}, \
2647     {"$t8",     RTYPE_GP | 24}, \
2648     {"$t9",     RTYPE_GP | 25}, \
2649     {"$k0",     RTYPE_GP | 26}, \
2650     {"$kt0",    RTYPE_GP | 26}, \
2651     {"$k1",     RTYPE_GP | 27}, \
2652     {"$kt1",    RTYPE_GP | 27}, \
2653     {"$gp",     RTYPE_GP | 28}, \
2654     {"$sp",     RTYPE_GP | 29}, \
2655     {"$s8",     RTYPE_GP | 30}, \
2656     {"$fp",     RTYPE_GP | 30}, \
2657     {"$ra",     RTYPE_GP | 31}
2658
2659 #define MIPS16_SPECIAL_REGISTER_NAMES \
2660     {"$pc",     RTYPE_PC | 0}
2661
2662 #define MDMX_VECTOR_REGISTER_NAMES \
2663     /* {"$v0",  RTYPE_VEC | 0},  clash with REG 2 above */ \
2664     /* {"$v1",  RTYPE_VEC | 1},  clash with REG 3 above */ \
2665     {"$v2",     RTYPE_VEC | 2},  \
2666     {"$v3",     RTYPE_VEC | 3},  \
2667     {"$v4",     RTYPE_VEC | 4},  \
2668     {"$v5",     RTYPE_VEC | 5},  \
2669     {"$v6",     RTYPE_VEC | 6},  \
2670     {"$v7",     RTYPE_VEC | 7},  \
2671     {"$v8",     RTYPE_VEC | 8},  \
2672     {"$v9",     RTYPE_VEC | 9},  \
2673     {"$v10",    RTYPE_VEC | 10}, \
2674     {"$v11",    RTYPE_VEC | 11}, \
2675     {"$v12",    RTYPE_VEC | 12}, \
2676     {"$v13",    RTYPE_VEC | 13}, \
2677     {"$v14",    RTYPE_VEC | 14}, \
2678     {"$v15",    RTYPE_VEC | 15}, \
2679     {"$v16",    RTYPE_VEC | 16}, \
2680     {"$v17",    RTYPE_VEC | 17}, \
2681     {"$v18",    RTYPE_VEC | 18}, \
2682     {"$v19",    RTYPE_VEC | 19}, \
2683     {"$v20",    RTYPE_VEC | 20}, \
2684     {"$v21",    RTYPE_VEC | 21}, \
2685     {"$v22",    RTYPE_VEC | 22}, \
2686     {"$v23",    RTYPE_VEC | 23}, \
2687     {"$v24",    RTYPE_VEC | 24}, \
2688     {"$v25",    RTYPE_VEC | 25}, \
2689     {"$v26",    RTYPE_VEC | 26}, \
2690     {"$v27",    RTYPE_VEC | 27}, \
2691     {"$v28",    RTYPE_VEC | 28}, \
2692     {"$v29",    RTYPE_VEC | 29}, \
2693     {"$v30",    RTYPE_VEC | 30}, \
2694     {"$v31",    RTYPE_VEC | 31}
2695
2696 #define R5900_I_NAMES \
2697     {"$I",      RTYPE_R5900_I | 0}
2698
2699 #define R5900_Q_NAMES \
2700     {"$Q",      RTYPE_R5900_Q | 0}
2701
2702 #define R5900_R_NAMES \
2703     {"$R",      RTYPE_R5900_R | 0}
2704
2705 #define R5900_ACC_NAMES \
2706     {"$ACC",    RTYPE_R5900_ACC | 0 }
2707
2708 #define MIPS_DSP_ACCUMULATOR_NAMES \
2709     {"$ac0",    RTYPE_ACC | 0}, \
2710     {"$ac1",    RTYPE_ACC | 1}, \
2711     {"$ac2",    RTYPE_ACC | 2}, \
2712     {"$ac3",    RTYPE_ACC | 3}
2713
2714 static const struct regname reg_names[] = {
2715   GENERIC_REGISTER_NUMBERS,
2716   FPU_REGISTER_NAMES,
2717   FPU_CONDITION_CODE_NAMES,
2718   COPROC_CONDITION_CODE_NAMES,
2719
2720   /* The $txx registers depends on the abi,
2721      these will be added later into the symbol table from
2722      one of the tables below once mips_abi is set after 
2723      parsing of arguments from the command line. */
2724   SYMBOLIC_REGISTER_NAMES,
2725
2726   MIPS16_SPECIAL_REGISTER_NAMES,
2727   MDMX_VECTOR_REGISTER_NAMES,
2728   R5900_I_NAMES,
2729   R5900_Q_NAMES,
2730   R5900_R_NAMES,
2731   R5900_ACC_NAMES,
2732   MIPS_DSP_ACCUMULATOR_NAMES,
2733   {0, 0}
2734 };
2735
2736 static const struct regname reg_names_o32[] = {
2737   O32_SYMBOLIC_REGISTER_NAMES,
2738   {0, 0}
2739 };
2740
2741 static const struct regname reg_names_n32n64[] = {
2742   N32N64_SYMBOLIC_REGISTER_NAMES,
2743   {0, 0}
2744 };
2745
2746 /* Register symbols $v0 and $v1 map to GPRs 2 and 3, but they can also be
2747    interpreted as vector registers 0 and 1.  If SYMVAL is the value of one
2748    of these register symbols, return the associated vector register,
2749    otherwise return SYMVAL itself.  */
2750
2751 static unsigned int
2752 mips_prefer_vec_regno (unsigned int symval)
2753 {
2754   if ((symval & -2) == (RTYPE_GP | 2))
2755     return RTYPE_VEC | (symval & 1);
2756   return symval;
2757 }
2758
2759 /* Return true if string [S, E) is a valid register name, storing its
2760    symbol value in *SYMVAL_PTR if so.  */
2761
2762 static bfd_boolean
2763 mips_parse_register_1 (char *s, char *e, unsigned int *symval_ptr)
2764 {
2765   char save_c;
2766   symbolS *symbol;
2767
2768   /* Terminate name.  */
2769   save_c = *e;
2770   *e = '\0';
2771
2772   /* Look up the name.  */
2773   symbol = symbol_find (s);
2774   *e = save_c;
2775
2776   if (!symbol || S_GET_SEGMENT (symbol) != reg_section)
2777     return FALSE;
2778
2779   *symval_ptr = S_GET_VALUE (symbol);
2780   return TRUE;
2781 }
2782
2783 /* Return true if the string at *SPTR is a valid register name.  Allow it
2784    to have a VU0-style channel suffix of the form x?y?z?w? if CHANNELS_PTR
2785    is nonnull.
2786
2787    When returning true, move *SPTR past the register, store the
2788    register's symbol value in *SYMVAL_PTR and the channel mask in
2789    *CHANNELS_PTR (if nonnull).  The symbol value includes the register
2790    number (RNUM_MASK) and register type (RTYPE_MASK).  The channel mask
2791    is a 4-bit value of the form XYZW and is 0 if no suffix was given.  */
2792
2793 static bfd_boolean
2794 mips_parse_register (char **sptr, unsigned int *symval_ptr,
2795                      unsigned int *channels_ptr)
2796 {
2797   char *s, *e, *m;
2798   const char *q;
2799   unsigned int channels, symval, bit;
2800
2801   /* Find end of name.  */
2802   s = e = *sptr;
2803   if (is_name_beginner (*e))
2804     ++e;
2805   while (is_part_of_name (*e))
2806     ++e;
2807
2808   channels = 0;
2809   if (!mips_parse_register_1 (s, e, &symval))
2810     {
2811       if (!channels_ptr)
2812         return FALSE;
2813
2814       /* Eat characters from the end of the string that are valid
2815          channel suffixes.  The preceding register must be $ACC or
2816          end with a digit, so there is no ambiguity.  */
2817       bit = 1;
2818       m = e;
2819       for (q = "wzyx"; *q; q++, bit <<= 1)
2820         if (m > s && m[-1] == *q)
2821           {
2822             --m;
2823             channels |= bit;
2824           }
2825
2826       if (channels == 0
2827           || !mips_parse_register_1 (s, m, &symval)
2828           || (symval & (RTYPE_VI | RTYPE_VF | RTYPE_R5900_ACC)) == 0)
2829         return FALSE;
2830     }
2831
2832   *sptr = e;
2833   *symval_ptr = symval;
2834   if (channels_ptr)
2835     *channels_ptr = channels;
2836   return TRUE;
2837 }
2838
2839 /* Check if SPTR points at a valid register specifier according to TYPES.
2840    If so, then return 1, advance S to consume the specifier and store
2841    the register's number in REGNOP, otherwise return 0.  */
2842
2843 static int
2844 reg_lookup (char **s, unsigned int types, unsigned int *regnop)
2845 {
2846   unsigned int regno;
2847
2848   if (mips_parse_register (s, &regno, NULL))
2849     {
2850       if (types & RTYPE_VEC)
2851         regno = mips_prefer_vec_regno (regno);
2852       if (regno & types)
2853         regno &= RNUM_MASK;
2854       else
2855         regno = ~0;
2856     }
2857   else
2858     {
2859       if (types & RWARN)
2860         as_warn (_("unrecognized register name `%s'"), *s);
2861       regno = ~0;
2862     }
2863   if (regnop)
2864     *regnop = regno;
2865   return regno <= RNUM_MASK;
2866 }
2867
2868 /* Parse a VU0 "x?y?z?w?" channel mask at S and store the associated
2869    mask in *CHANNELS.  Return a pointer to the first unconsumed character.  */
2870
2871 static char *
2872 mips_parse_vu0_channels (char *s, unsigned int *channels)
2873 {
2874   unsigned int i;
2875
2876   *channels = 0;
2877   for (i = 0; i < 4; i++)
2878     if (*s == "xyzw"[i])
2879       {
2880         *channels |= 1 << (3 - i);
2881         ++s;
2882       }
2883   return s;
2884 }
2885
2886 /* Token types for parsed operand lists.  */
2887 enum mips_operand_token_type {
2888   /* A plain register, e.g. $f2.  */
2889   OT_REG,
2890
2891   /* A 4-bit XYZW channel mask.  */
2892   OT_CHANNELS,
2893
2894   /* A constant vector index, e.g. [1].  */
2895   OT_INTEGER_INDEX,
2896
2897   /* A register vector index, e.g. [$2].  */
2898   OT_REG_INDEX,
2899
2900   /* A continuous range of registers, e.g. $s0-$s4.  */
2901   OT_REG_RANGE,
2902
2903   /* A (possibly relocated) expression.  */
2904   OT_INTEGER,
2905
2906   /* A floating-point value.  */
2907   OT_FLOAT,
2908
2909   /* A single character.  This can be '(', ')' or ',', but '(' only appears
2910      before OT_REGs.  */
2911   OT_CHAR,
2912
2913   /* A doubled character, either "--" or "++".  */
2914   OT_DOUBLE_CHAR,
2915
2916   /* The end of the operand list.  */
2917   OT_END
2918 };
2919
2920 /* A parsed operand token.  */
2921 struct mips_operand_token
2922 {
2923   /* The type of token.  */
2924   enum mips_operand_token_type type;
2925   union
2926   {
2927     /* The register symbol value for an OT_REG or OT_REG_INDEX.  */
2928     unsigned int regno;
2929
2930     /* The 4-bit channel mask for an OT_CHANNEL_SUFFIX.  */
2931     unsigned int channels;
2932
2933     /* The integer value of an OT_INTEGER_INDEX.  */
2934     addressT index;
2935
2936     /* The two register symbol values involved in an OT_REG_RANGE.  */
2937     struct {
2938       unsigned int regno1;
2939       unsigned int regno2;
2940     } reg_range;
2941
2942     /* The value of an OT_INTEGER.  The value is represented as an
2943        expression and the relocation operators that were applied to
2944        that expression.  The reloc entries are BFD_RELOC_UNUSED if no
2945        relocation operators were used.  */
2946     struct {
2947       expressionS value;
2948       bfd_reloc_code_real_type relocs[3];
2949     } integer;
2950
2951     /* The binary data for an OT_FLOAT constant, and the number of bytes
2952        in the constant.  */
2953     struct {
2954       unsigned char data[8];
2955       int length;
2956     } flt;
2957
2958     /* The character represented by an OT_CHAR or OT_DOUBLE_CHAR.  */
2959     char ch;
2960   } u;
2961 };
2962
2963 /* An obstack used to construct lists of mips_operand_tokens.  */
2964 static struct obstack mips_operand_tokens;
2965
2966 /* Give TOKEN type TYPE and add it to mips_operand_tokens.  */
2967
2968 static void
2969 mips_add_token (struct mips_operand_token *token,
2970                 enum mips_operand_token_type type)
2971 {
2972   token->type = type;
2973   obstack_grow (&mips_operand_tokens, token, sizeof (*token));
2974 }
2975
2976 /* Check whether S is '(' followed by a register name.  Add OT_CHAR
2977    and OT_REG tokens for them if so, and return a pointer to the first
2978    unconsumed character.  Return null otherwise.  */
2979
2980 static char *
2981 mips_parse_base_start (char *s)
2982 {
2983   struct mips_operand_token token;
2984   unsigned int regno, channels;
2985   bfd_boolean decrement_p;
2986
2987   if (*s != '(')
2988     return 0;
2989
2990   ++s;
2991   SKIP_SPACE_TABS (s);
2992
2993   /* Only match "--" as part of a base expression.  In other contexts "--X"
2994      is a double negative.  */
2995   decrement_p = (s[0] == '-' && s[1] == '-');
2996   if (decrement_p)
2997     {
2998       s += 2;
2999       SKIP_SPACE_TABS (s);
3000     }
3001
3002   /* Allow a channel specifier because that leads to better error messages
3003      than treating something like "$vf0x++" as an expression.  */
3004   if (!mips_parse_register (&s, &regno, &channels))
3005     return 0;
3006
3007   token.u.ch = '(';
3008   mips_add_token (&token, OT_CHAR);
3009
3010   if (decrement_p)
3011     {
3012       token.u.ch = '-';
3013       mips_add_token (&token, OT_DOUBLE_CHAR);
3014     }
3015
3016   token.u.regno = regno;
3017   mips_add_token (&token, OT_REG);
3018
3019   if (channels)
3020     {
3021       token.u.channels = channels;
3022       mips_add_token (&token, OT_CHANNELS);
3023     }
3024
3025   /* For consistency, only match "++" as part of base expressions too.  */
3026   SKIP_SPACE_TABS (s);
3027   if (s[0] == '+' && s[1] == '+')
3028     {
3029       s += 2;
3030       token.u.ch = '+';
3031       mips_add_token (&token, OT_DOUBLE_CHAR);
3032     }
3033
3034   return s;
3035 }
3036
3037 /* Parse one or more tokens from S.  Return a pointer to the first
3038    unconsumed character on success.  Return null if an error was found
3039    and store the error text in insn_error.  FLOAT_FORMAT is as for
3040    mips_parse_arguments.  */
3041
3042 static char *
3043 mips_parse_argument_token (char *s, char float_format)
3044 {
3045   char *end, *save_in, *err;
3046   unsigned int regno1, regno2, channels;
3047   struct mips_operand_token token;
3048
3049   /* First look for "($reg", since we want to treat that as an
3050      OT_CHAR and OT_REG rather than an expression.  */
3051   end = mips_parse_base_start (s);
3052   if (end)
3053     return end;
3054
3055   /* Handle other characters that end up as OT_CHARs.  */
3056   if (*s == ')' || *s == ',')
3057     {
3058       token.u.ch = *s;
3059       mips_add_token (&token, OT_CHAR);
3060       ++s;
3061       return s;
3062     }
3063
3064   /* Handle tokens that start with a register.  */
3065   if (mips_parse_register (&s, &regno1, &channels))
3066     {
3067       if (channels)
3068         {
3069           /* A register and a VU0 channel suffix.  */
3070           token.u.regno = regno1;
3071           mips_add_token (&token, OT_REG);
3072
3073           token.u.channels = channels;
3074           mips_add_token (&token, OT_CHANNELS);
3075           return s;
3076         }
3077
3078       SKIP_SPACE_TABS (s);
3079       if (*s == '-')
3080         {
3081           /* A register range.  */
3082           ++s;
3083           SKIP_SPACE_TABS (s);
3084           if (!mips_parse_register (&s, &regno2, NULL))
3085             {
3086               set_insn_error (0, _("invalid register range"));
3087               return 0;
3088             }
3089
3090           token.u.reg_range.regno1 = regno1;
3091           token.u.reg_range.regno2 = regno2;
3092           mips_add_token (&token, OT_REG_RANGE);
3093           return s;
3094         }
3095
3096       /* Add the register itself.  */
3097       token.u.regno = regno1;
3098       mips_add_token (&token, OT_REG);
3099
3100       /* Check for a vector index.  */
3101       if (*s == '[')
3102         {
3103           ++s;
3104           SKIP_SPACE_TABS (s);
3105           if (mips_parse_register (&s, &token.u.regno, NULL))
3106             mips_add_token (&token, OT_REG_INDEX);
3107           else
3108             {
3109               expressionS element;
3110
3111               my_getExpression (&element, s);
3112               if (element.X_op != O_constant)
3113                 {
3114                   set_insn_error (0, _("vector element must be constant"));
3115                   return 0;
3116                 }
3117               s = expr_end;
3118               token.u.index = element.X_add_number;
3119               mips_add_token (&token, OT_INTEGER_INDEX);
3120             }
3121           SKIP_SPACE_TABS (s);
3122           if (*s != ']')
3123             {
3124               set_insn_error (0, _("missing `]'"));
3125               return 0;
3126             }
3127           ++s;
3128         }
3129       return s;
3130     }
3131
3132   if (float_format)
3133     {
3134       /* First try to treat expressions as floats.  */
3135       save_in = input_line_pointer;
3136       input_line_pointer = s;
3137       err = md_atof (float_format, (char *) token.u.flt.data,
3138                      &token.u.flt.length);
3139       end = input_line_pointer;
3140       input_line_pointer = save_in;
3141       if (err && *err)
3142         {
3143           set_insn_error (0, err);
3144           return 0;
3145         }
3146       if (s != end)
3147         {
3148           mips_add_token (&token, OT_FLOAT);
3149           return end;
3150         }
3151     }
3152
3153   /* Treat everything else as an integer expression.  */
3154   token.u.integer.relocs[0] = BFD_RELOC_UNUSED;
3155   token.u.integer.relocs[1] = BFD_RELOC_UNUSED;
3156   token.u.integer.relocs[2] = BFD_RELOC_UNUSED;
3157   my_getSmallExpression (&token.u.integer.value, token.u.integer.relocs, s);
3158   s = expr_end;
3159   mips_add_token (&token, OT_INTEGER);
3160   return s;
3161 }
3162
3163 /* S points to the operand list for an instruction.  FLOAT_FORMAT is 'f'
3164    if expressions should be treated as 32-bit floating-point constants,
3165    'd' if they should be treated as 64-bit floating-point constants,
3166    or 0 if they should be treated as integer expressions (the usual case).
3167
3168    Return a list of tokens on success, otherwise return 0.  The caller
3169    must obstack_free the list after use.  */
3170
3171 static struct mips_operand_token *
3172 mips_parse_arguments (char *s, char float_format)
3173 {
3174   struct mips_operand_token token;
3175
3176   SKIP_SPACE_TABS (s);
3177   while (*s)
3178     {
3179       s = mips_parse_argument_token (s, float_format);
3180       if (!s)
3181         {
3182           obstack_free (&mips_operand_tokens,
3183                         obstack_finish (&mips_operand_tokens));
3184           return 0;
3185         }
3186       SKIP_SPACE_TABS (s);
3187     }
3188   mips_add_token (&token, OT_END);
3189   return (struct mips_operand_token *) obstack_finish (&mips_operand_tokens);
3190 }
3191
3192 /* Return TRUE if opcode MO is valid on the currently selected ISA, ASE
3193    and architecture.  Use is_opcode_valid_16 for MIPS16 opcodes.  */
3194
3195 static bfd_boolean
3196 is_opcode_valid (const struct mips_opcode *mo)
3197 {
3198   int isa = mips_opts.isa;
3199   int ase = mips_opts.ase;
3200   int fp_s, fp_d;
3201   unsigned int i;
3202
3203   if (ISA_HAS_64BIT_REGS (mips_opts.isa))
3204     for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
3205       if ((ase & mips_ases[i].flags) == mips_ases[i].flags)
3206         ase |= mips_ases[i].flags64;
3207
3208   if (!opcode_is_member (mo, isa, ase, mips_opts.arch))
3209     return FALSE;
3210
3211   /* Check whether the instruction or macro requires single-precision or
3212      double-precision floating-point support.  Note that this information is
3213      stored differently in the opcode table for insns and macros.  */
3214   if (mo->pinfo == INSN_MACRO)
3215     {
3216       fp_s = mo->pinfo2 & INSN2_M_FP_S;
3217       fp_d = mo->pinfo2 & INSN2_M_FP_D;
3218     }
3219   else
3220     {
3221       fp_s = mo->pinfo & FP_S;
3222       fp_d = mo->pinfo & FP_D;
3223     }
3224
3225   if (fp_d && (mips_opts.soft_float || mips_opts.single_float))
3226     return FALSE;
3227
3228   if (fp_s && mips_opts.soft_float)
3229     return FALSE;
3230
3231   return TRUE;
3232 }
3233
3234 /* Return TRUE if the MIPS16 opcode MO is valid on the currently
3235    selected ISA and architecture.  */
3236
3237 static bfd_boolean
3238 is_opcode_valid_16 (const struct mips_opcode *mo)
3239 {
3240   return opcode_is_member (mo, mips_opts.isa, 0, mips_opts.arch);
3241 }
3242
3243 /* Return TRUE if the size of the microMIPS opcode MO matches one
3244    explicitly requested.  Always TRUE in the standard MIPS mode.  */
3245
3246 static bfd_boolean
3247 is_size_valid (const struct mips_opcode *mo)
3248 {
3249   if (!mips_opts.micromips)
3250     return TRUE;
3251
3252   if (mips_opts.insn32)
3253     {
3254       if (mo->pinfo != INSN_MACRO && micromips_insn_length (mo) != 4)
3255         return FALSE;
3256       if ((mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0)
3257         return FALSE;
3258     }
3259   if (!forced_insn_length)
3260     return TRUE;
3261   if (mo->pinfo == INSN_MACRO)
3262     return FALSE;
3263   return forced_insn_length == micromips_insn_length (mo);
3264 }
3265
3266 /* Return TRUE if the microMIPS opcode MO is valid for the delay slot
3267    of the preceding instruction.  Always TRUE in the standard MIPS mode.
3268
3269    We don't accept macros in 16-bit delay slots to avoid a case where
3270    a macro expansion fails because it relies on a preceding 32-bit real
3271    instruction to have matched and does not handle the operands correctly.
3272    The only macros that may expand to 16-bit instructions are JAL that
3273    cannot be placed in a delay slot anyway, and corner cases of BALIGN
3274    and BGT (that likewise cannot be placed in a delay slot) that decay to
3275    a NOP.  In all these cases the macros precede any corresponding real
3276    instruction definitions in the opcode table, so they will match in the
3277    second pass where the size of the delay slot is ignored and therefore
3278    produce correct code.  */
3279
3280 static bfd_boolean
3281 is_delay_slot_valid (const struct mips_opcode *mo)
3282 {
3283   if (!mips_opts.micromips)
3284     return TRUE;
3285
3286   if (mo->pinfo == INSN_MACRO)
3287     return (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) == 0;
3288   if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
3289       && micromips_insn_length (mo) != 4)
3290     return FALSE;
3291   if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
3292       && micromips_insn_length (mo) != 2)
3293     return FALSE;
3294
3295   return TRUE;
3296 }
3297
3298 /* For consistency checking, verify that all bits of OPCODE are specified
3299    either by the match/mask part of the instruction definition, or by the
3300    operand list.  Also build up a list of operands in OPERANDS.
3301
3302    INSN_BITS says which bits of the instruction are significant.
3303    If OPCODE is a standard or microMIPS instruction, DECODE_OPERAND
3304    provides the mips_operand description of each operand.  DECODE_OPERAND
3305    is null for MIPS16 instructions.  */
3306
3307 static int
3308 validate_mips_insn (const struct mips_opcode *opcode,
3309                     unsigned long insn_bits,
3310                     const struct mips_operand *(*decode_operand) (const char *),
3311                     struct mips_operand_array *operands)
3312 {
3313   const char *s;
3314   unsigned long used_bits, doubled, undefined, opno, mask;
3315   const struct mips_operand *operand;
3316
3317   mask = (opcode->pinfo == INSN_MACRO ? 0 : opcode->mask);
3318   if ((mask & opcode->match) != opcode->match)
3319     {
3320       as_bad (_("internal: bad mips opcode (mask error): %s %s"),
3321               opcode->name, opcode->args);
3322       return 0;
3323     }
3324   used_bits = 0;
3325   opno = 0;
3326   if (opcode->pinfo2 & INSN2_VU0_CHANNEL_SUFFIX)
3327     used_bits = mips_insert_operand (&mips_vu0_channel_mask, used_bits, -1);
3328   for (s = opcode->args; *s; ++s)
3329     switch (*s)
3330       {
3331       case ',':
3332       case '(':
3333       case ')':
3334         break;
3335
3336       case '#':
3337         s++;
3338         break;
3339
3340       default:
3341         if (!decode_operand)
3342           operand = decode_mips16_operand (*s, FALSE);
3343         else
3344           operand = decode_operand (s);
3345         if (!operand && opcode->pinfo != INSN_MACRO)
3346           {
3347             as_bad (_("internal: unknown operand type: %s %s"),
3348                     opcode->name, opcode->args);
3349             return 0;
3350           }
3351         gas_assert (opno < MAX_OPERANDS);
3352         operands->operand[opno] = operand;
3353         if (operand && operand->type != OP_VU0_MATCH_SUFFIX)
3354           {
3355             used_bits = mips_insert_operand (operand, used_bits, -1);
3356             if (operand->type == OP_MDMX_IMM_REG)
3357               /* Bit 5 is the format selector (OB vs QH).  The opcode table
3358                  has separate entries for each format.  */
3359               used_bits &= ~(1 << (operand->lsb + 5));
3360             if (operand->type == OP_ENTRY_EXIT_LIST)
3361               used_bits &= ~(mask & 0x700);
3362           }
3363         /* Skip prefix characters.  */
3364         if (decode_operand && (*s == '+' || *s == 'm' || *s == '-'))
3365           ++s;
3366         opno += 1;
3367         break;
3368       }
3369   doubled = used_bits & mask & insn_bits;
3370   if (doubled)
3371     {
3372       as_bad (_("internal: bad mips opcode (bits 0x%08lx doubly defined):"
3373                 " %s %s"), doubled, opcode->name, opcode->args);
3374       return 0;
3375     }
3376   used_bits |= mask;
3377   undefined = ~used_bits & insn_bits;
3378   if (opcode->pinfo != INSN_MACRO && undefined)
3379     {
3380       as_bad (_("internal: bad mips opcode (bits 0x%08lx undefined): %s %s"),
3381               undefined, opcode->name, opcode->args);
3382       return 0;
3383     }
3384   used_bits &= ~insn_bits;
3385   if (used_bits)
3386     {
3387       as_bad (_("internal: bad mips opcode (bits 0x%08lx defined): %s %s"),
3388               used_bits, opcode->name, opcode->args);
3389       return 0;
3390     }
3391   return 1;
3392 }
3393
3394 /* The MIPS16 version of validate_mips_insn.  */
3395
3396 static int
3397 validate_mips16_insn (const struct mips_opcode *opcode,
3398                       struct mips_operand_array *operands)
3399 {
3400   if (opcode->args[0] == 'a' || opcode->args[0] == 'i')
3401     {
3402       /* In this case OPCODE defines the first 16 bits in a 32-bit jump
3403          instruction.  Use TMP to describe the full instruction.  */
3404       struct mips_opcode tmp;
3405
3406       tmp = *opcode;
3407       tmp.match <<= 16;
3408       tmp.mask <<= 16;
3409       return validate_mips_insn (&tmp, 0xffffffff, 0, operands);
3410     }
3411   return validate_mips_insn (opcode, 0xffff, 0, operands);
3412 }
3413
3414 /* The microMIPS version of validate_mips_insn.  */
3415
3416 static int
3417 validate_micromips_insn (const struct mips_opcode *opc,
3418                          struct mips_operand_array *operands)
3419 {
3420   unsigned long insn_bits;
3421   unsigned long major;
3422   unsigned int length;
3423
3424   if (opc->pinfo == INSN_MACRO)
3425     return validate_mips_insn (opc, 0xffffffff, decode_micromips_operand,
3426                                operands);
3427
3428   length = micromips_insn_length (opc);
3429   if (length != 2 && length != 4)
3430     {
3431       as_bad (_("internal error: bad microMIPS opcode (incorrect length: %u): "
3432                 "%s %s"), length, opc->name, opc->args);
3433       return 0;
3434     }
3435   major = opc->match >> (10 + 8 * (length - 2));
3436   if ((length == 2 && (major & 7) != 1 && (major & 6) != 2)
3437       || (length == 4 && (major & 7) != 0 && (major & 4) != 4))
3438     {
3439       as_bad (_("internal error: bad microMIPS opcode "
3440                 "(opcode/length mismatch): %s %s"), opc->name, opc->args);
3441       return 0;
3442     }
3443
3444   /* Shift piecewise to avoid an overflow where unsigned long is 32-bit.  */
3445   insn_bits = 1 << 4 * length;
3446   insn_bits <<= 4 * length;
3447   insn_bits -= 1;
3448   return validate_mips_insn (opc, insn_bits, decode_micromips_operand,
3449                              operands);
3450 }
3451
3452 /* This function is called once, at assembler startup time.  It should set up
3453    all the tables, etc. that the MD part of the assembler will need.  */
3454
3455 void
3456 md_begin (void)
3457 {
3458   const char *retval = NULL;
3459   int i = 0;
3460   int broken = 0;
3461
3462   if (mips_pic != NO_PIC)
3463     {
3464       if (g_switch_seen && g_switch_value != 0)
3465         as_bad (_("-G may not be used in position-independent code"));
3466       g_switch_value = 0;
3467     }
3468
3469   if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_opts.arch))
3470     as_warn (_("could not set architecture and machine"));
3471
3472   op_hash = hash_new ();
3473
3474   mips_operands = XCNEWVEC (struct mips_operand_array, NUMOPCODES);
3475   for (i = 0; i < NUMOPCODES;)
3476     {
3477       const char *name = mips_opcodes[i].name;
3478
3479       retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
3480       if (retval != NULL)
3481         {
3482           fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
3483                    mips_opcodes[i].name, retval);
3484           /* Probably a memory allocation problem?  Give up now.  */
3485           as_fatal (_("broken assembler, no assembly attempted"));
3486         }
3487       do
3488         {
3489           if (!validate_mips_insn (&mips_opcodes[i], 0xffffffff,
3490                                    decode_mips_operand, &mips_operands[i]))
3491             broken = 1;
3492           if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
3493             {
3494               create_insn (&nop_insn, mips_opcodes + i);
3495               if (mips_fix_loongson2f_nop)
3496                 nop_insn.insn_opcode = LOONGSON2F_NOP_INSN;
3497               nop_insn.fixed_p = 1;
3498             }
3499           ++i;
3500         }
3501       while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
3502     }
3503
3504   mips16_op_hash = hash_new ();
3505   mips16_operands = XCNEWVEC (struct mips_operand_array,
3506                               bfd_mips16_num_opcodes);
3507
3508   i = 0;
3509   while (i < bfd_mips16_num_opcodes)
3510     {
3511       const char *name = mips16_opcodes[i].name;
3512
3513       retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
3514       if (retval != NULL)
3515         as_fatal (_("internal: can't hash `%s': %s"),
3516                   mips16_opcodes[i].name, retval);
3517       do
3518         {
3519           if (!validate_mips16_insn (&mips16_opcodes[i], &mips16_operands[i]))
3520             broken = 1;
3521           if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
3522             {
3523               create_insn (&mips16_nop_insn, mips16_opcodes + i);
3524               mips16_nop_insn.fixed_p = 1;
3525             }
3526           ++i;
3527         }
3528       while (i < bfd_mips16_num_opcodes
3529              && strcmp (mips16_opcodes[i].name, name) == 0);
3530     }
3531
3532   micromips_op_hash = hash_new ();
3533   micromips_operands = XCNEWVEC (struct mips_operand_array,
3534                                  bfd_micromips_num_opcodes);
3535
3536   i = 0;
3537   while (i < bfd_micromips_num_opcodes)
3538     {
3539       const char *name = micromips_opcodes[i].name;
3540
3541       retval = hash_insert (micromips_op_hash, name,
3542                             (void *) &micromips_opcodes[i]);
3543       if (retval != NULL)
3544         as_fatal (_("internal: can't hash `%s': %s"),
3545                   micromips_opcodes[i].name, retval);
3546       do
3547         {
3548           struct mips_cl_insn *micromips_nop_insn;
3549
3550           if (!validate_micromips_insn (&micromips_opcodes[i],
3551                                         &micromips_operands[i]))
3552             broken = 1;
3553
3554           if (micromips_opcodes[i].pinfo != INSN_MACRO)
3555             {
3556               if (micromips_insn_length (micromips_opcodes + i) == 2)
3557                 micromips_nop_insn = &micromips_nop16_insn;
3558               else if (micromips_insn_length (micromips_opcodes + i) == 4)
3559                 micromips_nop_insn = &micromips_nop32_insn;
3560               else
3561                 continue;
3562
3563               if (micromips_nop_insn->insn_mo == NULL
3564                   && strcmp (name, "nop") == 0)
3565                 {
3566                   create_insn (micromips_nop_insn, micromips_opcodes + i);
3567                   micromips_nop_insn->fixed_p = 1;
3568                 }
3569             }
3570         }
3571       while (++i < bfd_micromips_num_opcodes
3572              && strcmp (micromips_opcodes[i].name, name) == 0);
3573     }
3574
3575   if (broken)
3576     as_fatal (_("broken assembler, no assembly attempted"));
3577
3578   /* We add all the general register names to the symbol table.  This
3579      helps us detect invalid uses of them.  */
3580   for (i = 0; reg_names[i].name; i++) 
3581     symbol_table_insert (symbol_new (reg_names[i].name, reg_section,
3582                                      reg_names[i].num, /* & RNUM_MASK, */
3583                                      &zero_address_frag));
3584   if (HAVE_NEWABI)
3585     for (i = 0; reg_names_n32n64[i].name; i++) 
3586       symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section,
3587                                        reg_names_n32n64[i].num, /* & RNUM_MASK, */
3588                                        &zero_address_frag));
3589   else
3590     for (i = 0; reg_names_o32[i].name; i++) 
3591       symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section,
3592                                        reg_names_o32[i].num, /* & RNUM_MASK, */
3593                                        &zero_address_frag));
3594
3595   for (i = 0; i < 32; i++)
3596     {
3597       char regname[7];
3598
3599       /* R5900 VU0 floating-point register.  */
3600       regname[sizeof (rename) - 1] = 0;
3601       snprintf (regname, sizeof (regname) - 1, "$vf%d", i);
3602       symbol_table_insert (symbol_new (regname, reg_section,
3603                                        RTYPE_VF | i, &zero_address_frag));
3604
3605       /* R5900 VU0 integer register.  */
3606       snprintf (regname, sizeof (regname) - 1, "$vi%d", i);
3607       symbol_table_insert (symbol_new (regname, reg_section,
3608                                        RTYPE_VI | i, &zero_address_frag));
3609
3610       /* MSA register.  */
3611       snprintf (regname, sizeof (regname) - 1, "$w%d", i);
3612       symbol_table_insert (symbol_new (regname, reg_section,
3613                                        RTYPE_MSA | i, &zero_address_frag));
3614     }
3615
3616   obstack_init (&mips_operand_tokens);
3617
3618   mips_no_prev_insn ();
3619
3620   mips_gprmask = 0;
3621   mips_cprmask[0] = 0;
3622   mips_cprmask[1] = 0;
3623   mips_cprmask[2] = 0;
3624   mips_cprmask[3] = 0;
3625
3626   /* set the default alignment for the text section (2**2) */
3627   record_alignment (text_section, 2);
3628
3629   bfd_set_gp_size (stdoutput, g_switch_value);
3630
3631   /* On a native system other than VxWorks, sections must be aligned
3632      to 16 byte boundaries.  When configured for an embedded ELF
3633      target, we don't bother.  */
3634   if (strncmp (TARGET_OS, "elf", 3) != 0
3635       && strncmp (TARGET_OS, "vxworks", 7) != 0)
3636     {
3637       (void) bfd_set_section_alignment (stdoutput, text_section, 4);
3638       (void) bfd_set_section_alignment (stdoutput, data_section, 4);
3639       (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
3640     }
3641
3642   /* Create a .reginfo section for register masks and a .mdebug
3643      section for debugging information.  */
3644   {
3645     segT seg;
3646     subsegT subseg;
3647     flagword flags;
3648     segT sec;
3649
3650     seg = now_seg;
3651     subseg = now_subseg;
3652
3653     /* The ABI says this section should be loaded so that the
3654        running program can access it.  However, we don't load it
3655        if we are configured for an embedded target */
3656     flags = SEC_READONLY | SEC_DATA;
3657     if (strncmp (TARGET_OS, "elf", 3) != 0)
3658       flags |= SEC_ALLOC | SEC_LOAD;
3659
3660     if (mips_abi != N64_ABI)
3661       {
3662         sec = subseg_new (".reginfo", (subsegT) 0);
3663
3664         bfd_set_section_flags (stdoutput, sec, flags);
3665         bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
3666
3667         mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
3668       }
3669     else
3670       {
3671         /* The 64-bit ABI uses a .MIPS.options section rather than
3672            .reginfo section.  */
3673         sec = subseg_new (".MIPS.options", (subsegT) 0);
3674         bfd_set_section_flags (stdoutput, sec, flags);
3675         bfd_set_section_alignment (stdoutput, sec, 3);
3676
3677         /* Set up the option header.  */
3678         {
3679           Elf_Internal_Options opthdr;
3680           char *f;
3681
3682           opthdr.kind = ODK_REGINFO;
3683           opthdr.size = (sizeof (Elf_External_Options)
3684                          + sizeof (Elf64_External_RegInfo));
3685           opthdr.section = 0;
3686           opthdr.info = 0;
3687           f = frag_more (sizeof (Elf_External_Options));
3688           bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
3689                                          (Elf_External_Options *) f);
3690
3691           mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
3692         }
3693       }
3694
3695     sec = subseg_new (".MIPS.abiflags", (subsegT) 0);
3696     bfd_set_section_flags (stdoutput, sec,
3697                            SEC_READONLY | SEC_DATA | SEC_ALLOC | SEC_LOAD);
3698     bfd_set_section_alignment (stdoutput, sec, 3);
3699     mips_flags_frag = frag_more (sizeof (Elf_External_ABIFlags_v0));
3700
3701     if (ECOFF_DEBUGGING)
3702       {
3703         sec = subseg_new (".mdebug", (subsegT) 0);
3704         (void) bfd_set_section_flags (stdoutput, sec,
3705                                       SEC_HAS_CONTENTS | SEC_READONLY);
3706         (void) bfd_set_section_alignment (stdoutput, sec, 2);
3707       }
3708     else if (mips_flag_pdr)
3709       {
3710         pdr_seg = subseg_new (".pdr", (subsegT) 0);
3711         (void) bfd_set_section_flags (stdoutput, pdr_seg,
3712                                       SEC_READONLY | SEC_RELOC
3713                                       | SEC_DEBUGGING);
3714         (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
3715       }
3716
3717     subseg_set (seg, subseg);
3718   }
3719
3720   if (mips_fix_vr4120)
3721     init_vr4120_conflicts ();
3722 }
3723
3724 static inline void
3725 fpabi_incompatible_with (int fpabi, const char *what)
3726 {
3727   as_warn (_(".gnu_attribute %d,%d is incompatible with `%s'"),
3728            Tag_GNU_MIPS_ABI_FP, fpabi, what);
3729 }
3730
3731 static inline void
3732 fpabi_requires (int fpabi, const char *what)
3733 {
3734   as_warn (_(".gnu_attribute %d,%d requires `%s'"),
3735            Tag_GNU_MIPS_ABI_FP, fpabi, what);
3736 }
3737
3738 /* Check -mabi and register sizes against the specified FP ABI.  */
3739 static void
3740 check_fpabi (int fpabi)
3741 {
3742   switch (fpabi)
3743     {
3744     case Val_GNU_MIPS_ABI_FP_DOUBLE:
3745       if (file_mips_opts.soft_float)
3746         fpabi_incompatible_with (fpabi, "softfloat");
3747       else if (file_mips_opts.single_float)
3748         fpabi_incompatible_with (fpabi, "singlefloat");
3749       if (file_mips_opts.gp == 64 && file_mips_opts.fp == 32)
3750         fpabi_incompatible_with (fpabi, "gp=64 fp=32");
3751       else if (file_mips_opts.gp == 32 && file_mips_opts.fp == 64)
3752         fpabi_incompatible_with (fpabi, "gp=32 fp=64");
3753       break;
3754
3755     case Val_GNU_MIPS_ABI_FP_XX:
3756       if (mips_abi != O32_ABI)
3757         fpabi_requires (fpabi, "-mabi=32");
3758       else if (file_mips_opts.soft_float)
3759         fpabi_incompatible_with (fpabi, "softfloat");
3760       else if (file_mips_opts.single_float)
3761         fpabi_incompatible_with (fpabi, "singlefloat");
3762       else if (file_mips_opts.fp != 0)
3763         fpabi_requires (fpabi, "fp=xx");
3764       break;
3765
3766     case Val_GNU_MIPS_ABI_FP_64A:
3767     case Val_GNU_MIPS_ABI_FP_64:
3768       if (mips_abi != O32_ABI)
3769         fpabi_requires (fpabi, "-mabi=32");
3770       else if (file_mips_opts.soft_float)
3771         fpabi_incompatible_with (fpabi, "softfloat");
3772       else if (file_mips_opts.single_float)
3773         fpabi_incompatible_with (fpabi, "singlefloat");
3774       else if (file_mips_opts.fp != 64)
3775         fpabi_requires (fpabi, "fp=64");
3776       else if (fpabi == Val_GNU_MIPS_ABI_FP_64 && !file_mips_opts.oddspreg)
3777         fpabi_incompatible_with (fpabi, "nooddspreg");
3778       else if (fpabi == Val_GNU_MIPS_ABI_FP_64A && file_mips_opts.oddspreg)
3779         fpabi_requires (fpabi, "nooddspreg");
3780       break;
3781
3782     case Val_GNU_MIPS_ABI_FP_SINGLE:
3783       if (file_mips_opts.soft_float)
3784         fpabi_incompatible_with (fpabi, "softfloat");
3785       else if (!file_mips_opts.single_float)
3786         fpabi_requires (fpabi, "singlefloat");
3787       break;
3788
3789     case Val_GNU_MIPS_ABI_FP_SOFT:
3790       if (!file_mips_opts.soft_float)
3791         fpabi_requires (fpabi, "softfloat");
3792       break;
3793
3794     case Val_GNU_MIPS_ABI_FP_OLD_64:
3795       as_warn (_(".gnu_attribute %d,%d is no longer supported"),
3796                Tag_GNU_MIPS_ABI_FP, fpabi);
3797       break;
3798
3799     default:
3800       as_warn (_(".gnu_attribute %d,%d is not a recognized"
3801                  " floating-point ABI"), Tag_GNU_MIPS_ABI_FP, fpabi);
3802       break;
3803     }
3804 }
3805
3806 /* Perform consistency checks on the current options.  */
3807
3808 static void
3809 mips_check_options (struct mips_set_options *opts, bfd_boolean abi_checks)
3810 {
3811   /* Check the size of integer registers agrees with the ABI and ISA.  */
3812   if (opts->gp == 64 && !ISA_HAS_64BIT_REGS (opts->isa))
3813     as_bad (_("`gp=64' used with a 32-bit processor"));
3814   else if (abi_checks
3815            && opts->gp == 32 && ABI_NEEDS_64BIT_REGS (mips_abi))
3816     as_bad (_("`gp=32' used with a 64-bit ABI"));
3817   else if (abi_checks
3818            && opts->gp == 64 && ABI_NEEDS_32BIT_REGS (mips_abi))
3819     as_bad (_("`gp=64' used with a 32-bit ABI"));
3820
3821   /* Check the size of the float registers agrees with the ABI and ISA.  */
3822   switch (opts->fp)
3823     {
3824     case 0:
3825       if (!CPU_HAS_LDC1_SDC1 (opts->arch))
3826         as_bad (_("`fp=xx' used with a cpu lacking ldc1/sdc1 instructions"));
3827       else if (opts->single_float == 1)
3828         as_bad (_("`fp=xx' cannot be used with `singlefloat'"));
3829       break;
3830     case 64:
3831       if (!ISA_HAS_64BIT_FPRS (opts->isa))
3832         as_bad (_("`fp=64' used with a 32-bit fpu"));
3833       else if (abi_checks
3834                && ABI_NEEDS_32BIT_REGS (mips_abi)
3835                && !ISA_HAS_MXHC1 (opts->isa))
3836         as_warn (_("`fp=64' used with a 32-bit ABI"));
3837       break;
3838     case 32:
3839       if (abi_checks
3840           && ABI_NEEDS_64BIT_REGS (mips_abi))
3841         as_warn (_("`fp=32' used with a 64-bit ABI"));
3842       if (ISA_IS_R6 (mips_opts.isa) && opts->single_float == 0)
3843         as_bad (_("`fp=32' used with a MIPS R6 cpu"));
3844       break;
3845     default:
3846       as_bad (_("Unknown size of floating point registers"));
3847       break;
3848     }
3849
3850   if (ABI_NEEDS_64BIT_REGS (mips_abi) && !opts->oddspreg)
3851     as_bad (_("`nooddspreg` cannot be used with a 64-bit ABI"));
3852
3853   if (opts->micromips == 1 && opts->mips16 == 1)
3854     as_bad (_("`mips16' cannot be used with `micromips'"));
3855   else if (ISA_IS_R6 (mips_opts.isa)
3856            && (opts->micromips == 1
3857                || opts->mips16 == 1))
3858     as_fatal (_("`%s' can not be used with `%s'"),
3859               opts->micromips ? "micromips" : "mips16",
3860               mips_cpu_info_from_isa (mips_opts.isa)->name);
3861
3862   if (ISA_IS_R6 (opts->isa) && mips_relax_branch)
3863     as_fatal (_("branch relaxation is not supported in `%s'"),
3864               mips_cpu_info_from_isa (opts->isa)->name);
3865 }
3866
3867 /* Perform consistency checks on the module level options exactly once.
3868    This is a deferred check that happens:
3869      at the first .set directive
3870      or, at the first pseudo op that generates code (inc .dc.a)
3871      or, at the first instruction
3872      or, at the end.  */
3873
3874 static void
3875 file_mips_check_options (void)
3876 {
3877   const struct mips_cpu_info *arch_info = 0;
3878
3879   if (file_mips_opts_checked)
3880     return;
3881
3882   /* The following code determines the register size.
3883      Similar code was added to GCC 3.3 (see override_options() in
3884      config/mips/mips.c).  The GAS and GCC code should be kept in sync
3885      as much as possible.  */
3886
3887   if (file_mips_opts.gp < 0)
3888     {
3889       /* Infer the integer register size from the ABI and processor.
3890          Restrict ourselves to 32-bit registers if that's all the
3891          processor has, or if the ABI cannot handle 64-bit registers.  */
3892       file_mips_opts.gp = (ABI_NEEDS_32BIT_REGS (mips_abi)
3893                            || !ISA_HAS_64BIT_REGS (file_mips_opts.isa))
3894                           ? 32 : 64;
3895     }
3896
3897   if (file_mips_opts.fp < 0)
3898     {
3899       /* No user specified float register size.
3900          ??? GAS treats single-float processors as though they had 64-bit
3901          float registers (although it complains when double-precision
3902          instructions are used).  As things stand, saying they have 32-bit
3903          registers would lead to spurious "register must be even" messages.
3904          So here we assume float registers are never smaller than the
3905          integer ones.  */
3906       if (file_mips_opts.gp == 64)
3907         /* 64-bit integer registers implies 64-bit float registers.  */
3908         file_mips_opts.fp = 64;
3909       else if ((file_mips_opts.ase & FP64_ASES)
3910                && ISA_HAS_64BIT_FPRS (file_mips_opts.isa))
3911         /* Handle ASEs that require 64-bit float registers, if possible.  */
3912         file_mips_opts.fp = 64;
3913       else if (ISA_IS_R6 (mips_opts.isa))
3914         /* R6 implies 64-bit float registers.  */
3915         file_mips_opts.fp = 64;
3916       else
3917         /* 32-bit float registers.  */
3918         file_mips_opts.fp = 32;
3919     }
3920
3921   arch_info = mips_cpu_info_from_arch (file_mips_opts.arch);
3922
3923   /* Disable operations on odd-numbered floating-point registers by default
3924      when using the FPXX ABI.  */
3925   if (file_mips_opts.oddspreg < 0)
3926     {
3927       if (file_mips_opts.fp == 0)
3928         file_mips_opts.oddspreg = 0;
3929       else
3930         file_mips_opts.oddspreg = 1;
3931     }
3932
3933   /* End of GCC-shared inference code.  */
3934
3935   /* This flag is set when we have a 64-bit capable CPU but use only
3936      32-bit wide registers.  Note that EABI does not use it.  */
3937   if (ISA_HAS_64BIT_REGS (file_mips_opts.isa)
3938       && ((mips_abi == NO_ABI && file_mips_opts.gp == 32)
3939           || mips_abi == O32_ABI))
3940     mips_32bitmode = 1;
3941
3942   if (file_mips_opts.isa == ISA_MIPS1 && mips_trap)
3943     as_bad (_("trap exception not supported at ISA 1"));
3944
3945   /* If the selected architecture includes support for ASEs, enable
3946      generation of code for them.  */
3947   if (file_mips_opts.mips16 == -1)
3948     file_mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_opts.arch)) ? 1 : 0;
3949   if (file_mips_opts.micromips == -1)
3950     file_mips_opts.micromips = (CPU_HAS_MICROMIPS (file_mips_opts.arch))
3951                                 ? 1 : 0;
3952
3953   if (mips_nan2008 == -1)
3954     mips_nan2008 = (ISA_HAS_LEGACY_NAN (file_mips_opts.isa)) ? 0 : 1;
3955   else if (!ISA_HAS_LEGACY_NAN (file_mips_opts.isa) && mips_nan2008 == 0)
3956     as_fatal (_("`%s' does not support legacy NaN"),
3957               mips_cpu_info_from_arch (file_mips_opts.arch)->name);
3958
3959   /* Some ASEs require 64-bit FPRs, so -mfp32 should stop those ASEs from
3960      being selected implicitly.  */
3961   if (file_mips_opts.fp != 64)
3962     file_ase_explicit |= ASE_MIPS3D | ASE_MDMX | ASE_MSA;
3963
3964   /* If the user didn't explicitly select or deselect a particular ASE,
3965      use the default setting for the CPU.  */
3966   file_mips_opts.ase |= (arch_info->ase & ~file_ase_explicit);
3967
3968   /* Set up the current options.  These may change throughout assembly.  */
3969   mips_opts = file_mips_opts;
3970
3971   mips_check_isa_supports_ases ();
3972   mips_check_options (&file_mips_opts, TRUE);
3973   file_mips_opts_checked = TRUE;
3974
3975   if (!bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_opts.arch))
3976     as_warn (_("could not set architecture and machine"));
3977 }
3978
3979 void
3980 md_assemble (char *str)
3981 {
3982   struct mips_cl_insn insn;
3983   bfd_reloc_code_real_type unused_reloc[3]
3984     = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
3985
3986   file_mips_check_options ();
3987
3988   imm_expr.X_op = O_absent;
3989   offset_expr.X_op = O_absent;
3990   offset_reloc[0] = BFD_RELOC_UNUSED;
3991   offset_reloc[1] = BFD_RELOC_UNUSED;
3992   offset_reloc[2] = BFD_RELOC_UNUSED;
3993
3994   mips_mark_labels ();
3995   mips_assembling_insn = TRUE;
3996   clear_insn_error ();
3997
3998   if (mips_opts.mips16)
3999     mips16_ip (str, &insn);
4000   else
4001     {
4002       mips_ip (str, &insn);
4003       DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
4004             str, insn.insn_opcode));
4005     }
4006
4007   if (insn_error.msg)
4008     report_insn_error (str);
4009   else if (insn.insn_mo->pinfo == INSN_MACRO)
4010     {
4011       macro_start ();
4012       if (mips_opts.mips16)
4013         mips16_macro (&insn);
4014       else
4015         macro (&insn, str);
4016       macro_end ();
4017     }
4018   else
4019     {
4020       if (offset_expr.X_op != O_absent)
4021         append_insn (&insn, &offset_expr, offset_reloc, FALSE);
4022       else
4023         append_insn (&insn, NULL, unused_reloc, FALSE);
4024     }
4025
4026   mips_assembling_insn = FALSE;
4027 }
4028
4029 /* Convenience functions for abstracting away the differences between
4030    MIPS16 and non-MIPS16 relocations.  */
4031
4032 static inline bfd_boolean
4033 mips16_reloc_p (bfd_reloc_code_real_type reloc)
4034 {
4035   switch (reloc)
4036     {
4037     case BFD_RELOC_MIPS16_JMP:
4038     case BFD_RELOC_MIPS16_GPREL:
4039     case BFD_RELOC_MIPS16_GOT16:
4040     case BFD_RELOC_MIPS16_CALL16:
4041     case BFD_RELOC_MIPS16_HI16_S:
4042     case BFD_RELOC_MIPS16_HI16:
4043     case BFD_RELOC_MIPS16_LO16:
4044       return TRUE;
4045
4046     default:
4047       return FALSE;
4048     }
4049 }
4050
4051 static inline bfd_boolean
4052 micromips_reloc_p (bfd_reloc_code_real_type reloc)
4053 {
4054   switch (reloc)
4055     {
4056     case BFD_RELOC_MICROMIPS_7_PCREL_S1:
4057     case BFD_RELOC_MICROMIPS_10_PCREL_S1:
4058     case BFD_RELOC_MICROMIPS_16_PCREL_S1:
4059     case BFD_RELOC_MICROMIPS_GPREL16:
4060     case BFD_RELOC_MICROMIPS_JMP:
4061     case BFD_RELOC_MICROMIPS_HI16:
4062     case BFD_RELOC_MICROMIPS_HI16_S:
4063     case BFD_RELOC_MICROMIPS_LO16:
4064     case BFD_RELOC_MICROMIPS_LITERAL:
4065     case BFD_RELOC_MICROMIPS_GOT16:
4066     case BFD_RELOC_MICROMIPS_CALL16:
4067     case BFD_RELOC_MICROMIPS_GOT_HI16:
4068     case BFD_RELOC_MICROMIPS_GOT_LO16:
4069     case BFD_RELOC_MICROMIPS_CALL_HI16:
4070     case BFD_RELOC_MICROMIPS_CALL_LO16:
4071     case BFD_RELOC_MICROMIPS_SUB:
4072     case BFD_RELOC_MICROMIPS_GOT_PAGE:
4073     case BFD_RELOC_MICROMIPS_GOT_OFST:
4074     case BFD_RELOC_MICROMIPS_GOT_DISP:
4075     case BFD_RELOC_MICROMIPS_HIGHEST:
4076     case BFD_RELOC_MICROMIPS_HIGHER:
4077     case BFD_RELOC_MICROMIPS_SCN_DISP:
4078     case BFD_RELOC_MICROMIPS_JALR:
4079       return TRUE;
4080
4081     default:
4082       return FALSE;
4083     }
4084 }
4085
4086 static inline bfd_boolean
4087 jmp_reloc_p (bfd_reloc_code_real_type reloc)
4088 {
4089   return reloc == BFD_RELOC_MIPS_JMP || reloc == BFD_RELOC_MICROMIPS_JMP;
4090 }
4091
4092 static inline bfd_boolean
4093 got16_reloc_p (bfd_reloc_code_real_type reloc)
4094 {
4095   return (reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16
4096           || reloc == BFD_RELOC_MICROMIPS_GOT16);
4097 }
4098
4099 static inline bfd_boolean
4100 hi16_reloc_p (bfd_reloc_code_real_type reloc)
4101 {
4102   return (reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S
4103           || reloc == BFD_RELOC_MICROMIPS_HI16_S);
4104 }
4105
4106 static inline bfd_boolean
4107 lo16_reloc_p (bfd_reloc_code_real_type reloc)
4108 {
4109   return (reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16
4110           || reloc == BFD_RELOC_MICROMIPS_LO16);
4111 }
4112
4113 static inline bfd_boolean
4114 jalr_reloc_p (bfd_reloc_code_real_type reloc)
4115 {
4116   return reloc == BFD_RELOC_MIPS_JALR || reloc == BFD_RELOC_MICROMIPS_JALR;
4117 }
4118
4119 static inline bfd_boolean
4120 gprel16_reloc_p (bfd_reloc_code_real_type reloc)
4121 {
4122   return (reloc == BFD_RELOC_GPREL16 || reloc == BFD_RELOC_MIPS16_GPREL
4123           || reloc == BFD_RELOC_MICROMIPS_GPREL16);
4124 }
4125
4126 /* Return true if RELOC is a PC-relative relocation that does not have
4127    full address range.  */
4128
4129 static inline bfd_boolean
4130 limited_pcrel_reloc_p (bfd_reloc_code_real_type reloc)
4131 {
4132   switch (reloc)
4133     {
4134     case BFD_RELOC_16_PCREL_S2:
4135     case BFD_RELOC_MICROMIPS_7_PCREL_S1:
4136     case BFD_RELOC_MICROMIPS_10_PCREL_S1:
4137     case BFD_RELOC_MICROMIPS_16_PCREL_S1:
4138     case BFD_RELOC_MIPS_21_PCREL_S2:
4139     case BFD_RELOC_MIPS_26_PCREL_S2:
4140     case BFD_RELOC_MIPS_18_PCREL_S3:
4141     case BFD_RELOC_MIPS_19_PCREL_S2:
4142       return TRUE;
4143
4144     case BFD_RELOC_32_PCREL:
4145     case BFD_RELOC_HI16_S_PCREL:
4146     case BFD_RELOC_LO16_PCREL:
4147       return HAVE_64BIT_ADDRESSES;
4148
4149     default:
4150       return FALSE;
4151     }
4152 }
4153
4154 /* Return true if the given relocation might need a matching %lo().
4155    This is only "might" because SVR4 R_MIPS_GOT16 relocations only
4156    need a matching %lo() when applied to local symbols.  */
4157
4158 static inline bfd_boolean
4159 reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
4160 {
4161   return (HAVE_IN_PLACE_ADDENDS
4162           && (hi16_reloc_p (reloc)
4163               /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
4164                  all GOT16 relocations evaluate to "G".  */
4165               || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC)));
4166 }
4167
4168 /* Return the type of %lo() reloc needed by RELOC, given that
4169    reloc_needs_lo_p.  */
4170
4171 static inline bfd_reloc_code_real_type
4172 matching_lo_reloc (bfd_reloc_code_real_type reloc)
4173 {
4174   return (mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16
4175           : (micromips_reloc_p (reloc) ? BFD_RELOC_MICROMIPS_LO16
4176              : BFD_RELOC_LO16));
4177 }
4178
4179 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
4180    relocation.  */
4181
4182 static inline bfd_boolean
4183 fixup_has_matching_lo_p (fixS *fixp)
4184 {
4185   return (fixp->fx_next != NULL
4186           && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type)
4187           && fixp->fx_addsy == fixp->fx_next->fx_addsy
4188           && fixp->fx_offset == fixp->fx_next->fx_offset);
4189 }
4190
4191 /* Move all labels in LABELS to the current insertion point.  TEXT_P
4192    says whether the labels refer to text or data.  */
4193
4194 static void
4195 mips_move_labels (struct insn_label_list *labels, bfd_boolean text_p)
4196 {
4197   struct insn_label_list *l;
4198   valueT val;
4199
4200   for (l = labels; l != NULL; l = l->next)
4201     {
4202       gas_assert (S_GET_SEGMENT (l->label) == now_seg);
4203       symbol_set_frag (l->label, frag_now);
4204       val = (valueT) frag_now_fix ();
4205       /* MIPS16/microMIPS text labels are stored as odd.  */
4206       if (text_p && HAVE_CODE_COMPRESSION)
4207         ++val;
4208       S_SET_VALUE (l->label, val);
4209     }
4210 }
4211
4212 /* Move all labels in insn_labels to the current insertion point
4213    and treat them as text labels.  */
4214
4215 static void
4216 mips_move_text_labels (void)
4217 {
4218   mips_move_labels (seg_info (now_seg)->label_list, TRUE);
4219 }
4220
4221 static bfd_boolean
4222 s_is_linkonce (symbolS *sym, segT from_seg)
4223 {
4224   bfd_boolean linkonce = FALSE;
4225   segT symseg = S_GET_SEGMENT (sym);
4226
4227   if (symseg != from_seg && !S_IS_LOCAL (sym))
4228     {
4229       if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE))
4230         linkonce = TRUE;
4231       /* The GNU toolchain uses an extension for ELF: a section
4232          beginning with the magic string .gnu.linkonce is a
4233          linkonce section.  */
4234       if (strncmp (segment_name (symseg), ".gnu.linkonce",
4235                    sizeof ".gnu.linkonce" - 1) == 0)
4236         linkonce = TRUE;
4237     }
4238   return linkonce;
4239 }
4240
4241 /* Mark MIPS16 or microMIPS instruction label LABEL.  This permits the
4242    linker to handle them specially, such as generating jalx instructions
4243    when needed.  We also make them odd for the duration of the assembly,
4244    in order to generate the right sort of code.  We will make them even
4245    in the adjust_symtab routine, while leaving them marked.  This is
4246    convenient for the debugger and the disassembler.  The linker knows
4247    to make them odd again.  */
4248
4249 static void
4250 mips_compressed_mark_label (symbolS *label)
4251 {
4252   gas_assert (HAVE_CODE_COMPRESSION);
4253
4254   if (mips_opts.mips16)
4255     S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
4256   else
4257     S_SET_OTHER (label, ELF_ST_SET_MICROMIPS (S_GET_OTHER (label)));
4258   if ((S_GET_VALUE (label) & 1) == 0
4259       /* Don't adjust the address if the label is global or weak, or
4260          in a link-once section, since we'll be emitting symbol reloc
4261          references to it which will be patched up by the linker, and
4262          the final value of the symbol may or may not be MIPS16/microMIPS.  */
4263       && !S_IS_WEAK (label)
4264       && !S_IS_EXTERNAL (label)
4265       && !s_is_linkonce (label, now_seg))
4266     S_SET_VALUE (label, S_GET_VALUE (label) | 1);
4267 }
4268
4269 /* Mark preceding MIPS16 or microMIPS instruction labels.  */
4270
4271 static void
4272 mips_compressed_mark_labels (void)
4273 {
4274   struct insn_label_list *l;
4275
4276   for (l = seg_info (now_seg)->label_list; l != NULL; l = l->next)
4277     mips_compressed_mark_label (l->label);
4278 }
4279
4280 /* End the current frag.  Make it a variant frag and record the
4281    relaxation info.  */
4282
4283 static void
4284 relax_close_frag (void)
4285 {
4286   mips_macro_warning.first_frag = frag_now;
4287   frag_var (rs_machine_dependent, 0, 0,
4288             RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
4289             mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
4290
4291   memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
4292   mips_relax.first_fixup = 0;
4293 }
4294
4295 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
4296    See the comment above RELAX_ENCODE for more details.  */
4297
4298 static void
4299 relax_start (symbolS *symbol)
4300 {
4301   gas_assert (mips_relax.sequence == 0);
4302   mips_relax.sequence = 1;
4303   mips_relax.symbol = symbol;
4304 }
4305
4306 /* Start generating the second version of a relaxable sequence.
4307    See the comment above RELAX_ENCODE for more details.  */
4308
4309 static void
4310 relax_switch (void)
4311 {
4312   gas_assert (mips_relax.sequence == 1);
4313   mips_relax.sequence = 2;
4314 }
4315
4316 /* End the current relaxable sequence.  */
4317
4318 static void
4319 relax_end (void)
4320 {
4321   gas_assert (mips_relax.sequence == 2);
4322   relax_close_frag ();
4323   mips_relax.sequence = 0;
4324 }
4325
4326 /* Return true if IP is a delayed branch or jump.  */
4327
4328 static inline bfd_boolean
4329 delayed_branch_p (const struct mips_cl_insn *ip)
4330 {
4331   return (ip->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
4332                                 | INSN_COND_BRANCH_DELAY
4333                                 | INSN_COND_BRANCH_LIKELY)) != 0;
4334 }
4335
4336 /* Return true if IP is a compact branch or jump.  */
4337
4338 static inline bfd_boolean
4339 compact_branch_p (const struct mips_cl_insn *ip)
4340 {
4341   return (ip->insn_mo->pinfo2 & (INSN2_UNCOND_BRANCH
4342                                  | INSN2_COND_BRANCH)) != 0;
4343 }
4344
4345 /* Return true if IP is an unconditional branch or jump.  */
4346
4347 static inline bfd_boolean
4348 uncond_branch_p (const struct mips_cl_insn *ip)
4349 {
4350   return ((ip->insn_mo->pinfo & INSN_UNCOND_BRANCH_DELAY) != 0
4351           || (ip->insn_mo->pinfo2 & INSN2_UNCOND_BRANCH) != 0);
4352 }
4353
4354 /* Return true if IP is a branch-likely instruction.  */
4355
4356 static inline bfd_boolean
4357 branch_likely_p (const struct mips_cl_insn *ip)
4358 {
4359   return (ip->insn_mo->pinfo & INSN_COND_BRANCH_LIKELY) != 0;
4360 }
4361
4362 /* Return the type of nop that should be used to fill the delay slot
4363    of delayed branch IP.  */
4364
4365 static struct mips_cl_insn *
4366 get_delay_slot_nop (const struct mips_cl_insn *ip)
4367 {
4368   if (mips_opts.micromips
4369       && (ip->insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
4370     return &micromips_nop32_insn;
4371   return NOP_INSN;
4372 }
4373
4374 /* Return a mask that has bit N set if OPCODE reads the register(s)
4375    in operand N.  */
4376
4377 static unsigned int
4378 insn_read_mask (const struct mips_opcode *opcode)
4379 {
4380   return (opcode->pinfo & INSN_READ_ALL) >> INSN_READ_SHIFT;
4381 }
4382
4383 /* Return a mask that has bit N set if OPCODE writes to the register(s)
4384    in operand N.  */
4385
4386 static unsigned int
4387 insn_write_mask (const struct mips_opcode *opcode)
4388 {
4389   return (opcode->pinfo & INSN_WRITE_ALL) >> INSN_WRITE_SHIFT;
4390 }
4391
4392 /* Return a mask of the registers specified by operand OPERAND of INSN.
4393    Ignore registers of type OP_REG_<t> unless bit OP_REG_<t> of TYPE_MASK
4394    is set.  */
4395
4396 static unsigned int
4397 operand_reg_mask (const struct mips_cl_insn *insn,
4398                   const struct mips_operand *operand,
4399                   unsigned int type_mask)
4400 {
4401   unsigned int uval, vsel;
4402
4403   switch (operand->type)
4404     {
4405     case OP_INT:
4406     case OP_MAPPED_INT:
4407     case OP_MSB:
4408     case OP_PCREL:
4409     case OP_PERF_REG:
4410     case OP_ADDIUSP_INT:
4411     case OP_ENTRY_EXIT_LIST:
4412     case OP_REPEAT_DEST_REG:
4413     case OP_REPEAT_PREV_REG:
4414     case OP_PC:
4415     case OP_VU0_SUFFIX:
4416     case OP_VU0_MATCH_SUFFIX:
4417     case OP_IMM_INDEX:
4418       abort ();
4419
4420     case OP_REG:
4421     case OP_OPTIONAL_REG:
4422       {
4423         const struct mips_reg_operand *reg_op;
4424
4425         reg_op = (const struct mips_reg_operand *) operand;
4426         if (!(type_mask & (1 << reg_op->reg_type)))
4427           return 0;
4428         uval = insn_extract_operand (insn, operand);
4429         return 1 << mips_decode_reg_operand (reg_op, uval);
4430       }
4431
4432     case OP_REG_PAIR:
4433       {
4434         const struct mips_reg_pair_operand *pair_op;
4435
4436         pair_op = (const struct mips_reg_pair_operand *) operand;
4437         if (!(type_mask & (1 << pair_op->reg_type)))
4438           return 0;
4439         uval = insn_extract_operand (insn, operand);
4440         return (1 << pair_op->reg1_map[uval]) | (1 << pair_op->reg2_map[uval]);
4441       }
4442
4443     case OP_CLO_CLZ_DEST:
4444       if (!(type_mask & (1 << OP_REG_GP)))
4445         return 0;
4446       uval = insn_extract_operand (insn, operand);
4447       return (1 << (uval & 31)) | (1 << (uval >> 5));
4448
4449     case OP_SAME_RS_RT:
4450       if (!(type_mask & (1 << OP_REG_GP)))
4451         return 0;
4452       uval = insn_extract_operand (insn, operand);
4453       gas_assert ((uval & 31) == (uval >> 5));
4454       return 1 << (uval & 31);
4455
4456     case OP_CHECK_PREV:
4457     case OP_NON_ZERO_REG:
4458       if (!(type_mask & (1 << OP_REG_GP)))
4459         return 0;
4460       uval = insn_extract_operand (insn, operand);
4461       return 1 << (uval & 31);
4462
4463     case OP_LWM_SWM_LIST:
4464       abort ();
4465
4466     case OP_SAVE_RESTORE_LIST:
4467       abort ();
4468
4469     case OP_MDMX_IMM_REG:
4470       if (!(type_mask & (1 << OP_REG_VEC)))
4471         return 0;
4472       uval = insn_extract_operand (insn, operand);
4473       vsel = uval >> 5;
4474       if ((vsel & 0x18) == 0x18)
4475         return 0;
4476       return 1 << (uval & 31);
4477
4478     case OP_REG_INDEX:
4479       if (!(type_mask & (1 << OP_REG_GP)))
4480         return 0;
4481       return 1 << insn_extract_operand (insn, operand);
4482     }
4483   abort ();
4484 }
4485
4486 /* Return a mask of the registers specified by operands OPNO_MASK of INSN,
4487    where bit N of OPNO_MASK is set if operand N should be included.
4488    Ignore registers of type OP_REG_<t> unless bit OP_REG_<t> of TYPE_MASK
4489    is set.  */
4490
4491 static unsigned int
4492 insn_reg_mask (const struct mips_cl_insn *insn,
4493                unsigned int type_mask, unsigned int opno_mask)
4494 {
4495   unsigned int opno, reg_mask;
4496
4497   opno = 0;
4498   reg_mask = 0;
4499   while (opno_mask != 0)
4500     {
4501       if (opno_mask & 1)
4502         reg_mask |= operand_reg_mask (insn, insn_opno (insn, opno), type_mask);
4503       opno_mask >>= 1;
4504       opno += 1;
4505     }
4506   return reg_mask;
4507 }
4508
4509 /* Return the mask of core registers that IP reads.  */
4510
4511 static unsigned int
4512 gpr_read_mask (const struct mips_cl_insn *ip)
4513 {
4514   unsigned long pinfo, pinfo2;
4515   unsigned int mask;
4516
4517   mask = insn_reg_mask (ip, 1 << OP_REG_GP, insn_read_mask (ip->insn_mo));
4518   pinfo = ip->insn_mo->pinfo;
4519   pinfo2 = ip->insn_mo->pinfo2;
4520   if (pinfo & INSN_UDI)
4521     {
4522       /* UDI instructions have traditionally been assumed to read RS
4523          and RT.  */
4524       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
4525       mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
4526     }
4527   if (pinfo & INSN_READ_GPR_24)
4528     mask |= 1 << 24;
4529   if (pinfo2 & INSN2_READ_GPR_16)
4530     mask |= 1 << 16;
4531   if (pinfo2 & INSN2_READ_SP)
4532     mask |= 1 << SP;
4533   if (pinfo2 & INSN2_READ_GPR_31)
4534     mask |= 1 << 31;
4535   /* Don't include register 0.  */
4536   return mask & ~1;
4537 }
4538
4539 /* Return the mask of core registers that IP writes.  */
4540
4541 static unsigned int
4542 gpr_write_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_write_mask (ip->insn_mo));
4548   pinfo = ip->insn_mo->pinfo;
4549   pinfo2 = ip->insn_mo->pinfo2;
4550   if (pinfo & INSN_WRITE_GPR_24)
4551     mask |= 1 << 24;
4552   if (pinfo & INSN_WRITE_GPR_31)
4553     mask |= 1 << 31;
4554   if (pinfo & INSN_UDI)
4555     /* UDI instructions have traditionally been assumed to write to RD.  */
4556     mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
4557   if (pinfo2 & INSN2_WRITE_SP)
4558     mask |= 1 << SP;
4559   /* Don't include register 0.  */
4560   return mask & ~1;
4561 }
4562
4563 /* Return the mask of floating-point registers that IP reads.  */
4564
4565 static unsigned int
4566 fpr_read_mask (const struct mips_cl_insn *ip)
4567 {
4568   unsigned long pinfo;
4569   unsigned int mask;
4570
4571   mask = insn_reg_mask (ip, ((1 << OP_REG_FP) | (1 << OP_REG_VEC)
4572                              | (1 << OP_REG_MSA)),
4573                         insn_read_mask (ip->insn_mo));
4574   pinfo = ip->insn_mo->pinfo;
4575   /* Conservatively treat all operands to an FP_D instruction are doubles.
4576      (This is overly pessimistic for things like cvt.d.s.)  */
4577   if (FPR_SIZE != 64 && (pinfo & FP_D))
4578     mask |= mask << 1;
4579   return mask;
4580 }
4581
4582 /* Return the mask of floating-point registers that IP writes.  */
4583
4584 static unsigned int
4585 fpr_write_mask (const struct mips_cl_insn *ip)
4586 {
4587   unsigned long pinfo;
4588   unsigned int mask;
4589
4590   mask = insn_reg_mask (ip, ((1 << OP_REG_FP) | (1 << OP_REG_VEC)
4591                              | (1 << OP_REG_MSA)),
4592                         insn_write_mask (ip->insn_mo));
4593   pinfo = ip->insn_mo->pinfo;
4594   /* Conservatively treat all operands to an FP_D instruction are doubles.
4595      (This is overly pessimistic for things like cvt.s.d.)  */
4596   if (FPR_SIZE != 64 && (pinfo & FP_D))
4597     mask |= mask << 1;
4598   return mask;
4599 }
4600
4601 /* Operand OPNUM of INSN is an odd-numbered floating-point register.
4602    Check whether that is allowed.  */
4603
4604 static bfd_boolean
4605 mips_oddfpreg_ok (const struct mips_opcode *insn, int opnum)
4606 {
4607   const char *s = insn->name;
4608   bfd_boolean oddspreg = (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa, mips_opts.arch)
4609                           || FPR_SIZE == 64)
4610                          && mips_opts.oddspreg;
4611
4612   if (insn->pinfo == INSN_MACRO)
4613     /* Let a macro pass, we'll catch it later when it is expanded.  */
4614     return TRUE;
4615
4616   /* Single-precision coprocessor loads and moves are OK for 32-bit registers,
4617      otherwise it depends on oddspreg.  */
4618   if ((insn->pinfo & FP_S)
4619       && (insn->pinfo & (INSN_LOAD_MEMORY | INSN_STORE_MEMORY
4620                          | INSN_LOAD_COPROC | INSN_COPROC_MOVE)))
4621     return FPR_SIZE == 32 || oddspreg;
4622
4623   /* Allow odd registers for single-precision ops and double-precision if the
4624      floating-point registers are 64-bit wide.  */
4625   switch (insn->pinfo & (FP_S | FP_D))
4626     {
4627     case FP_S:
4628     case 0:
4629       return oddspreg;
4630     case FP_D:
4631       return FPR_SIZE == 64;
4632     default:
4633       break;
4634     }
4635
4636   /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand.  */
4637   s = strchr (insn->name, '.');
4638   if (s != NULL && opnum == 2)
4639     s = strchr (s + 1, '.');
4640   if (s != NULL && (s[1] == 'w' || s[1] == 's'))
4641     return oddspreg;
4642
4643   return FPR_SIZE == 64;
4644 }
4645
4646 /* Information about an instruction argument that we're trying to match.  */
4647 struct mips_arg_info
4648 {
4649   /* The instruction so far.  */
4650   struct mips_cl_insn *insn;
4651
4652   /* The first unconsumed operand token.  */
4653   struct mips_operand_token *token;
4654
4655   /* The 1-based operand number, in terms of insn->insn_mo->args.  */
4656   int opnum;
4657
4658   /* The 1-based argument number, for error reporting.  This does not
4659      count elided optional registers, etc..  */
4660   int argnum;
4661
4662   /* The last OP_REG operand seen, or ILLEGAL_REG if none.  */
4663   unsigned int last_regno;
4664
4665   /* If the first operand was an OP_REG, this is the register that it
4666      specified, otherwise it is ILLEGAL_REG.  */
4667   unsigned int dest_regno;
4668
4669   /* The value of the last OP_INT operand.  Only used for OP_MSB,
4670      where it gives the lsb position.  */
4671   unsigned int last_op_int;
4672
4673   /* If true, match routines should assume that no later instruction
4674      alternative matches and should therefore be as accomodating as
4675      possible.  Match routines should not report errors if something
4676      is only invalid for !LAX_MATCH.  */
4677   bfd_boolean lax_match;
4678
4679   /* True if a reference to the current AT register was seen.  */
4680   bfd_boolean seen_at;
4681 };
4682
4683 /* Record that the argument is out of range.  */
4684
4685 static void
4686 match_out_of_range (struct mips_arg_info *arg)
4687 {
4688   set_insn_error_i (arg->argnum, _("operand %d out of range"), arg->argnum);
4689 }
4690
4691 /* Record that the argument isn't constant but needs to be.  */
4692
4693 static void
4694 match_not_constant (struct mips_arg_info *arg)
4695 {
4696   set_insn_error_i (arg->argnum, _("operand %d must be constant"),
4697                     arg->argnum);
4698 }
4699
4700 /* Try to match an OT_CHAR token for character CH.  Consume the token
4701    and return true on success, otherwise return false.  */
4702
4703 static bfd_boolean
4704 match_char (struct mips_arg_info *arg, char ch)
4705 {
4706   if (arg->token->type == OT_CHAR && arg->token->u.ch == ch)
4707     {
4708       ++arg->token;
4709       if (ch == ',')
4710         arg->argnum += 1;
4711       return TRUE;
4712     }
4713   return FALSE;
4714 }
4715
4716 /* Try to get an expression from the next tokens in ARG.  Consume the
4717    tokens and return true on success, storing the expression value in
4718    VALUE and relocation types in R.  */
4719
4720 static bfd_boolean
4721 match_expression (struct mips_arg_info *arg, expressionS *value,
4722                   bfd_reloc_code_real_type *r)
4723 {
4724   /* If the next token is a '(' that was parsed as being part of a base
4725      expression, assume we have an elided offset.  The later match will fail
4726      if this turns out to be wrong.  */
4727   if (arg->token->type == OT_CHAR && arg->token->u.ch == '(')
4728     {
4729       value->X_op = O_constant;
4730       value->X_add_number = 0;
4731       r[0] = r[1] = r[2] = BFD_RELOC_UNUSED;
4732       return TRUE;
4733     }
4734
4735   /* Reject register-based expressions such as "0+$2" and "(($2))".
4736      For plain registers the default error seems more appropriate.  */
4737   if (arg->token->type == OT_INTEGER
4738       && arg->token->u.integer.value.X_op == O_register)
4739     {
4740       set_insn_error (arg->argnum, _("register value used as expression"));
4741       return FALSE;
4742     }
4743
4744   if (arg->token->type == OT_INTEGER)
4745     {
4746       *value = arg->token->u.integer.value;
4747       memcpy (r, arg->token->u.integer.relocs, 3 * sizeof (*r));
4748       ++arg->token;
4749       return TRUE;
4750     }
4751
4752   set_insn_error_i
4753     (arg->argnum, _("operand %d must be an immediate expression"),
4754      arg->argnum);
4755   return FALSE;
4756 }
4757
4758 /* Try to get a constant expression from the next tokens in ARG.  Consume
4759    the tokens and return return true on success, storing the constant value
4760    in *VALUE.  Use FALLBACK as the value if the match succeeded with an
4761    error.  */
4762
4763 static bfd_boolean
4764 match_const_int (struct mips_arg_info *arg, offsetT *value)
4765 {
4766   expressionS ex;
4767   bfd_reloc_code_real_type r[3];
4768
4769   if (!match_expression (arg, &ex, r))
4770     return FALSE;
4771
4772   if (r[0] == BFD_RELOC_UNUSED && ex.X_op == O_constant)
4773     *value = ex.X_add_number;
4774   else
4775     {
4776       match_not_constant (arg);
4777       return FALSE;
4778     }
4779   return TRUE;
4780 }
4781
4782 /* Return the RTYPE_* flags for a register operand of type TYPE that
4783    appears in instruction OPCODE.  */
4784
4785 static unsigned int
4786 convert_reg_type (const struct mips_opcode *opcode,
4787                   enum mips_reg_operand_type type)
4788 {
4789   switch (type)
4790     {
4791     case OP_REG_GP:
4792       return RTYPE_NUM | RTYPE_GP;
4793
4794     case OP_REG_FP:
4795       /* Allow vector register names for MDMX if the instruction is a 64-bit
4796          FPR load, store or move (including moves to and from GPRs).  */
4797       if ((mips_opts.ase & ASE_MDMX)
4798           && (opcode->pinfo & FP_D)
4799           && (opcode->pinfo & (INSN_COPROC_MOVE
4800                                | INSN_COPROC_MEMORY_DELAY
4801                                | INSN_LOAD_COPROC
4802                                | INSN_LOAD_MEMORY
4803                                | INSN_STORE_MEMORY)))
4804         return RTYPE_FPU | RTYPE_VEC;
4805       return RTYPE_FPU;
4806
4807     case OP_REG_CCC:
4808       if (opcode->pinfo & (FP_D | FP_S))
4809         return RTYPE_CCC | RTYPE_FCC;
4810       return RTYPE_CCC;
4811
4812     case OP_REG_VEC:
4813       if (opcode->membership & INSN_5400)
4814         return RTYPE_FPU;
4815       return RTYPE_FPU | RTYPE_VEC;
4816
4817     case OP_REG_ACC:
4818       return RTYPE_ACC;
4819
4820     case OP_REG_COPRO:
4821       if (opcode->name[strlen (opcode->name) - 1] == '0')
4822         return RTYPE_NUM | RTYPE_CP0;
4823       return RTYPE_NUM;
4824
4825     case OP_REG_HW:
4826       return RTYPE_NUM;
4827
4828     case OP_REG_VI:
4829       return RTYPE_NUM | RTYPE_VI;
4830
4831     case OP_REG_VF:
4832       return RTYPE_NUM | RTYPE_VF;
4833
4834     case OP_REG_R5900_I:
4835       return RTYPE_R5900_I;
4836
4837     case OP_REG_R5900_Q:
4838       return RTYPE_R5900_Q;
4839
4840     case OP_REG_R5900_R:
4841       return RTYPE_R5900_R;
4842
4843     case OP_REG_R5900_ACC:
4844       return RTYPE_R5900_ACC;
4845
4846     case OP_REG_MSA:
4847       return RTYPE_MSA;
4848
4849     case OP_REG_MSA_CTRL:
4850       return RTYPE_NUM;
4851     }
4852   abort ();
4853 }
4854
4855 /* ARG is register REGNO, of type TYPE.  Warn about any dubious registers.  */
4856
4857 static void
4858 check_regno (struct mips_arg_info *arg,
4859              enum mips_reg_operand_type type, unsigned int regno)
4860 {
4861   if (AT && type == OP_REG_GP && regno == AT)
4862     arg->seen_at = TRUE;
4863
4864   if (type == OP_REG_FP
4865       && (regno & 1) != 0
4866       && !mips_oddfpreg_ok (arg->insn->insn_mo, arg->opnum))
4867     {
4868       /* This was a warning prior to introducing O32 FPXX and FP64 support
4869          so maintain a warning for FP32 but raise an error for the new
4870          cases.  */
4871       if (FPR_SIZE == 32)
4872         as_warn (_("float register should be even, was %d"), regno);
4873       else
4874         as_bad (_("float register should be even, was %d"), regno);
4875     }
4876
4877   if (type == OP_REG_CCC)
4878     {
4879       const char *name;
4880       size_t length;
4881
4882       name = arg->insn->insn_mo->name;
4883       length = strlen (name);
4884       if ((regno & 1) != 0
4885           && ((length >= 3 && strcmp (name + length - 3, ".ps") == 0)
4886               || (length >= 5 && strncmp (name + length - 5, "any2", 4) == 0)))
4887         as_warn (_("condition code register should be even for %s, was %d"),
4888                  name, regno);
4889
4890       if ((regno & 3) != 0
4891           && (length >= 5 && strncmp (name + length - 5, "any4", 4) == 0))
4892         as_warn (_("condition code register should be 0 or 4 for %s, was %d"),
4893                  name, regno);
4894     }
4895 }
4896
4897 /* ARG is a register with symbol value SYMVAL.  Try to interpret it as
4898    a register of type TYPE.  Return true on success, storing the register
4899    number in *REGNO and warning about any dubious uses.  */
4900
4901 static bfd_boolean
4902 match_regno (struct mips_arg_info *arg, enum mips_reg_operand_type type,
4903              unsigned int symval, unsigned int *regno)
4904 {
4905   if (type == OP_REG_VEC)
4906     symval = mips_prefer_vec_regno (symval);
4907   if (!(symval & convert_reg_type (arg->insn->insn_mo, type)))
4908     return FALSE;
4909
4910   *regno = symval & RNUM_MASK;
4911   check_regno (arg, type, *regno);
4912   return TRUE;
4913 }
4914
4915 /* Try to interpret the next token in ARG as a register of type TYPE.
4916    Consume the token and return true on success, storing the register
4917    number in *REGNO.  Return false on failure.  */
4918
4919 static bfd_boolean
4920 match_reg (struct mips_arg_info *arg, enum mips_reg_operand_type type,
4921            unsigned int *regno)
4922 {
4923   if (arg->token->type == OT_REG
4924       && match_regno (arg, type, arg->token->u.regno, regno))
4925     {
4926       ++arg->token;
4927       return TRUE;
4928     }
4929   return FALSE;
4930 }
4931
4932 /* Try to interpret the next token in ARG as a range of registers of type TYPE.
4933    Consume the token and return true on success, storing the register numbers
4934    in *REGNO1 and *REGNO2.  Return false on failure.  */
4935
4936 static bfd_boolean
4937 match_reg_range (struct mips_arg_info *arg, enum mips_reg_operand_type type,
4938                  unsigned int *regno1, unsigned int *regno2)
4939 {
4940   if (match_reg (arg, type, regno1))
4941     {
4942       *regno2 = *regno1;
4943       return TRUE;
4944     }
4945   if (arg->token->type == OT_REG_RANGE
4946       && match_regno (arg, type, arg->token->u.reg_range.regno1, regno1)
4947       && match_regno (arg, type, arg->token->u.reg_range.regno2, regno2)
4948       && *regno1 <= *regno2)
4949     {
4950       ++arg->token;
4951       return TRUE;
4952     }
4953   return FALSE;
4954 }
4955
4956 /* OP_INT matcher.  */
4957
4958 static bfd_boolean
4959 match_int_operand (struct mips_arg_info *arg,
4960                    const struct mips_operand *operand_base)
4961 {
4962   const struct mips_int_operand *operand;
4963   unsigned int uval;
4964   int min_val, max_val, factor;
4965   offsetT sval;
4966
4967   operand = (const struct mips_int_operand *) operand_base;
4968   factor = 1 << operand->shift;
4969   min_val = mips_int_operand_min (operand);
4970   max_val = mips_int_operand_max (operand);
4971
4972   if (operand_base->lsb == 0
4973       && operand_base->size == 16
4974       && operand->shift == 0
4975       && operand->bias == 0
4976       && (operand->max_val == 32767 || operand->max_val == 65535))
4977     {
4978       /* The operand can be relocated.  */
4979       if (!match_expression (arg, &offset_expr, offset_reloc))
4980         return FALSE;
4981
4982       if (offset_reloc[0] != BFD_RELOC_UNUSED)
4983         /* Relocation operators were used.  Accept the arguent and
4984            leave the relocation value in offset_expr and offset_relocs
4985            for the caller to process.  */
4986         return TRUE;
4987
4988       if (offset_expr.X_op != O_constant)
4989         {
4990           /* Accept non-constant operands if no later alternative matches,
4991              leaving it for the caller to process.  */
4992           if (!arg->lax_match)
4993             return FALSE;
4994           offset_reloc[0] = BFD_RELOC_LO16;
4995           return TRUE;
4996         }
4997
4998       /* Clear the global state; we're going to install the operand
4999          ourselves.  */
5000       sval = offset_expr.X_add_number;
5001       offset_expr.X_op = O_absent;
5002
5003       /* For compatibility with older assemblers, we accept
5004          0x8000-0xffff as signed 16-bit numbers when only
5005          signed numbers are allowed.  */
5006       if (sval > max_val)
5007         {
5008           max_val = ((1 << operand_base->size) - 1) << operand->shift;
5009           if (!arg->lax_match && sval <= max_val)
5010             return FALSE;
5011         }
5012     }
5013   else
5014     {
5015       if (!match_const_int (arg, &sval))
5016         return FALSE;
5017     }
5018
5019   arg->last_op_int = sval;
5020
5021   if (sval < min_val || sval > max_val || sval % factor)
5022     {
5023       match_out_of_range (arg);
5024       return FALSE;
5025     }
5026
5027   uval = (unsigned int) sval >> operand->shift;
5028   uval -= operand->bias;
5029
5030   /* Handle -mfix-cn63xxp1.  */
5031   if (arg->opnum == 1
5032       && mips_fix_cn63xxp1
5033       && !mips_opts.micromips
5034       && strcmp ("pref", arg->insn->insn_mo->name) == 0)
5035     switch (uval)
5036       {
5037       case 5:
5038       case 25:
5039       case 26:
5040       case 27:
5041       case 28:
5042       case 29:
5043       case 30:
5044       case 31:
5045         /* These are ok.  */
5046         break;
5047
5048       default:
5049         /* The rest must be changed to 28.  */
5050         uval = 28;
5051         break;
5052       }
5053
5054   insn_insert_operand (arg->insn, operand_base, uval);
5055   return TRUE;
5056 }
5057
5058 /* OP_MAPPED_INT matcher.  */
5059
5060 static bfd_boolean
5061 match_mapped_int_operand (struct mips_arg_info *arg,
5062                           const struct mips_operand *operand_base)
5063 {
5064   const struct mips_mapped_int_operand *operand;
5065   unsigned int uval, num_vals;
5066   offsetT sval;
5067
5068   operand = (const struct mips_mapped_int_operand *) operand_base;
5069   if (!match_const_int (arg, &sval))
5070     return FALSE;
5071
5072   num_vals = 1 << operand_base->size;
5073   for (uval = 0; uval < num_vals; uval++)
5074     if (operand->int_map[uval] == sval)
5075       break;
5076   if (uval == num_vals)
5077     {
5078       match_out_of_range (arg);
5079       return FALSE;
5080     }
5081
5082   insn_insert_operand (arg->insn, operand_base, uval);
5083   return TRUE;
5084 }
5085
5086 /* OP_MSB matcher.  */
5087
5088 static bfd_boolean
5089 match_msb_operand (struct mips_arg_info *arg,
5090                    const struct mips_operand *operand_base)
5091 {
5092   const struct mips_msb_operand *operand;
5093   int min_val, max_val, max_high;
5094   offsetT size, sval, high;
5095
5096   operand = (const struct mips_msb_operand *) operand_base;
5097   min_val = operand->bias;
5098   max_val = min_val + (1 << operand_base->size) - 1;
5099   max_high = operand->opsize;
5100
5101   if (!match_const_int (arg, &size))
5102     return FALSE;
5103
5104   high = size + arg->last_op_int;
5105   sval = operand->add_lsb ? high : size;
5106
5107   if (size < 0 || high > max_high || sval < min_val || sval > max_val)
5108     {
5109       match_out_of_range (arg);
5110       return FALSE;
5111     }
5112   insn_insert_operand (arg->insn, operand_base, sval - min_val);
5113   return TRUE;
5114 }
5115
5116 /* OP_REG matcher.  */
5117
5118 static bfd_boolean
5119 match_reg_operand (struct mips_arg_info *arg,
5120                    const struct mips_operand *operand_base)
5121 {
5122   const struct mips_reg_operand *operand;
5123   unsigned int regno, uval, num_vals;
5124
5125   operand = (const struct mips_reg_operand *) operand_base;
5126   if (!match_reg (arg, operand->reg_type, &regno))
5127     return FALSE;
5128
5129   if (operand->reg_map)
5130     {
5131       num_vals = 1 << operand->root.size;
5132       for (uval = 0; uval < num_vals; uval++)
5133         if (operand->reg_map[uval] == regno)
5134           break;
5135       if (num_vals == uval)
5136         return FALSE;
5137     }
5138   else
5139     uval = regno;
5140
5141   arg->last_regno = regno;
5142   if (arg->opnum == 1)
5143     arg->dest_regno = regno;
5144   insn_insert_operand (arg->insn, operand_base, uval);
5145   return TRUE;
5146 }
5147
5148 /* OP_REG_PAIR matcher.  */
5149
5150 static bfd_boolean
5151 match_reg_pair_operand (struct mips_arg_info *arg,
5152                         const struct mips_operand *operand_base)
5153 {
5154   const struct mips_reg_pair_operand *operand;
5155   unsigned int regno1, regno2, uval, num_vals;
5156
5157   operand = (const struct mips_reg_pair_operand *) operand_base;
5158   if (!match_reg (arg, operand->reg_type, &regno1)
5159       || !match_char (arg, ',')
5160       || !match_reg (arg, operand->reg_type, &regno2))
5161     return FALSE;
5162
5163   num_vals = 1 << operand_base->size;
5164   for (uval = 0; uval < num_vals; uval++)
5165     if (operand->reg1_map[uval] == regno1 && operand->reg2_map[uval] == regno2)
5166       break;
5167   if (uval == num_vals)
5168     return FALSE;
5169
5170   insn_insert_operand (arg->insn, operand_base, uval);
5171   return TRUE;
5172 }
5173
5174 /* OP_PCREL matcher.  The caller chooses the relocation type.  */
5175
5176 static bfd_boolean
5177 match_pcrel_operand (struct mips_arg_info *arg)
5178 {
5179   bfd_reloc_code_real_type r[3];
5180
5181   return match_expression (arg, &offset_expr, r) && r[0] == BFD_RELOC_UNUSED;
5182 }
5183
5184 /* OP_PERF_REG matcher.  */
5185
5186 static bfd_boolean
5187 match_perf_reg_operand (struct mips_arg_info *arg,
5188                         const struct mips_operand *operand)
5189 {
5190   offsetT sval;
5191
5192   if (!match_const_int (arg, &sval))
5193     return FALSE;
5194
5195   if (sval != 0
5196       && (sval != 1
5197           || (mips_opts.arch == CPU_R5900
5198               && (strcmp (arg->insn->insn_mo->name, "mfps") == 0
5199                   || strcmp (arg->insn->insn_mo->name, "mtps") == 0))))
5200     {
5201       set_insn_error (arg->argnum, _("invalid performance register"));
5202       return FALSE;
5203     }
5204
5205   insn_insert_operand (arg->insn, operand, sval);
5206   return TRUE;
5207 }
5208
5209 /* OP_ADDIUSP matcher.  */
5210
5211 static bfd_boolean
5212 match_addiusp_operand (struct mips_arg_info *arg,
5213                        const struct mips_operand *operand)
5214 {
5215   offsetT sval;
5216   unsigned int uval;
5217
5218   if (!match_const_int (arg, &sval))
5219     return FALSE;
5220
5221   if (sval % 4)
5222     {
5223       match_out_of_range (arg);
5224       return FALSE;
5225     }
5226
5227   sval /= 4;
5228   if (!(sval >= -258 && sval <= 257) || (sval >= -2 && sval <= 1))
5229     {
5230       match_out_of_range (arg);
5231       return FALSE;
5232     }
5233
5234   uval = (unsigned int) sval;
5235   uval = ((uval >> 1) & ~0xff) | (uval & 0xff);
5236   insn_insert_operand (arg->insn, operand, uval);
5237   return TRUE;
5238 }
5239
5240 /* OP_CLO_CLZ_DEST matcher.  */
5241
5242 static bfd_boolean
5243 match_clo_clz_dest_operand (struct mips_arg_info *arg,
5244                             const struct mips_operand *operand)
5245 {
5246   unsigned int regno;
5247
5248   if (!match_reg (arg, OP_REG_GP, &regno))
5249     return FALSE;
5250
5251   insn_insert_operand (arg->insn, operand, regno | (regno << 5));
5252   return TRUE;
5253 }
5254
5255 /* OP_CHECK_PREV matcher.  */
5256
5257 static bfd_boolean
5258 match_check_prev_operand (struct mips_arg_info *arg,
5259                           const struct mips_operand *operand_base)
5260 {
5261   const struct mips_check_prev_operand *operand;
5262   unsigned int regno;
5263
5264   operand = (const struct mips_check_prev_operand *) operand_base;
5265
5266   if (!match_reg (arg, OP_REG_GP, &regno))
5267     return FALSE;
5268
5269   if (!operand->zero_ok && regno == 0)
5270     return FALSE;
5271
5272   if ((operand->less_than_ok && regno < arg->last_regno)
5273       || (operand->greater_than_ok && regno > arg->last_regno)
5274       || (operand->equal_ok && regno == arg->last_regno))
5275     {
5276       arg->last_regno = regno;
5277       insn_insert_operand (arg->insn, operand_base, regno);
5278       return TRUE;
5279     }
5280
5281   return FALSE;
5282 }
5283
5284 /* OP_SAME_RS_RT matcher.  */
5285
5286 static bfd_boolean
5287 match_same_rs_rt_operand (struct mips_arg_info *arg,
5288                           const struct mips_operand *operand)
5289 {
5290   unsigned int regno;
5291
5292   if (!match_reg (arg, OP_REG_GP, &regno))
5293     return FALSE;
5294
5295   if (regno == 0)
5296     {
5297       set_insn_error (arg->argnum, _("the source register must not be $0"));
5298       return FALSE;
5299     }
5300
5301   arg->last_regno = regno;
5302
5303   insn_insert_operand (arg->insn, operand, regno | (regno << 5));
5304   return TRUE;
5305 }
5306
5307 /* OP_LWM_SWM_LIST matcher.  */
5308
5309 static bfd_boolean
5310 match_lwm_swm_list_operand (struct mips_arg_info *arg,
5311                             const struct mips_operand *operand)
5312 {
5313   unsigned int reglist, sregs, ra, regno1, regno2;
5314   struct mips_arg_info reset;
5315
5316   reglist = 0;
5317   if (!match_reg_range (arg, OP_REG_GP, &regno1, &regno2))
5318     return FALSE;
5319   do
5320     {
5321       if (regno2 == FP && regno1 >= S0 && regno1 <= S7)
5322         {
5323           reglist |= 1 << FP;
5324           regno2 = S7;
5325         }
5326       reglist |= ((1U << regno2 << 1) - 1) & -(1U << regno1);
5327       reset = *arg;
5328     }
5329   while (match_char (arg, ',')
5330          && match_reg_range (arg, OP_REG_GP, &regno1, &regno2));
5331   *arg = reset;
5332
5333   if (operand->size == 2)
5334     {
5335       /* The list must include both ra and s0-sN, for 0 <= N <= 3.  E.g.:
5336
5337          s0, ra
5338          s0, s1, ra, s2, s3
5339          s0-s2, ra
5340
5341          and any permutations of these.  */
5342       if ((reglist & 0xfff1ffff) != 0x80010000)
5343         return FALSE;
5344
5345       sregs = (reglist >> 17) & 7;
5346       ra = 0;
5347     }
5348   else
5349     {
5350       /* The list must include at least one of ra and s0-sN,
5351          for 0 <= N <= 8.  (Note that there is a gap between s7 and s8,
5352          which are $23 and $30 respectively.)  E.g.:
5353
5354          ra
5355          s0
5356          ra, s0, s1, s2
5357          s0-s8
5358          s0-s5, ra
5359
5360          and any permutations of these.  */
5361       if ((reglist & 0x3f00ffff) != 0)
5362         return FALSE;
5363
5364       ra = (reglist >> 27) & 0x10;
5365       sregs = ((reglist >> 22) & 0x100) | ((reglist >> 16) & 0xff);
5366     }
5367   sregs += 1;
5368   if ((sregs & -sregs) != sregs)
5369     return FALSE;
5370
5371   insn_insert_operand (arg->insn, operand, (ffs (sregs) - 1) | ra);
5372   return TRUE;
5373 }
5374
5375 /* OP_ENTRY_EXIT_LIST matcher.  */
5376
5377 static unsigned int
5378 match_entry_exit_operand (struct mips_arg_info *arg,
5379                           const struct mips_operand *operand)
5380 {
5381   unsigned int mask;
5382   bfd_boolean is_exit;
5383
5384   /* The format is the same for both ENTRY and EXIT, but the constraints
5385      are different.  */
5386   is_exit = strcmp (arg->insn->insn_mo->name, "exit") == 0;
5387   mask = (is_exit ? 7 << 3 : 0);
5388   do
5389     {
5390       unsigned int regno1, regno2;
5391       bfd_boolean is_freg;
5392
5393       if (match_reg_range (arg, OP_REG_GP, &regno1, &regno2))
5394         is_freg = FALSE;
5395       else if (match_reg_range (arg, OP_REG_FP, &regno1, &regno2))
5396         is_freg = TRUE;
5397       else
5398         return FALSE;
5399
5400       if (is_exit && is_freg && regno1 == 0 && regno2 < 2)
5401         {
5402           mask &= ~(7 << 3);
5403           mask |= (5 + regno2) << 3;
5404         }
5405       else if (!is_exit && regno1 == 4 && regno2 >= 4 && regno2 <= 7)
5406         mask |= (regno2 - 3) << 3;
5407       else if (regno1 == 16 && regno2 >= 16 && regno2 <= 17)
5408         mask |= (regno2 - 15) << 1;
5409       else if (regno1 == RA && regno2 == RA)
5410         mask |= 1;
5411       else
5412         return FALSE;
5413     }
5414   while (match_char (arg, ','));
5415
5416   insn_insert_operand (arg->insn, operand, mask);
5417   return TRUE;
5418 }
5419
5420 /* OP_SAVE_RESTORE_LIST matcher.  */
5421
5422 static bfd_boolean
5423 match_save_restore_list_operand (struct mips_arg_info *arg)
5424 {
5425   unsigned int opcode, args, statics, sregs;
5426   unsigned int num_frame_sizes, num_args, num_statics, num_sregs;
5427   offsetT frame_size;
5428
5429   opcode = arg->insn->insn_opcode;
5430   frame_size = 0;
5431   num_frame_sizes = 0;
5432   args = 0;
5433   statics = 0;
5434   sregs = 0;
5435   do
5436     {
5437       unsigned int regno1, regno2;
5438
5439       if (arg->token->type == OT_INTEGER)
5440         {
5441           /* Handle the frame size.  */
5442           if (!match_const_int (arg, &frame_size))
5443             return FALSE;
5444           num_frame_sizes += 1;
5445         }
5446       else
5447         {
5448           if (!match_reg_range (arg, OP_REG_GP, &regno1, &regno2))
5449             return FALSE;
5450
5451           while (regno1 <= regno2)
5452             {
5453               if (regno1 >= 4 && regno1 <= 7)
5454                 {
5455                   if (num_frame_sizes == 0)
5456                     /* args $a0-$a3 */
5457                     args |= 1 << (regno1 - 4);
5458                   else
5459                     /* statics $a0-$a3 */
5460                     statics |= 1 << (regno1 - 4);
5461                 }
5462               else if (regno1 >= 16 && regno1 <= 23)
5463                 /* $s0-$s7 */
5464                 sregs |= 1 << (regno1 - 16);
5465               else if (regno1 == 30)
5466                 /* $s8 */
5467                 sregs |= 1 << 8;
5468               else if (regno1 == 31)
5469                 /* Add $ra to insn.  */
5470                 opcode |= 0x40;
5471               else
5472                 return FALSE;
5473               regno1 += 1;
5474               if (regno1 == 24)
5475                 regno1 = 30;
5476             }
5477         }
5478     }
5479   while (match_char (arg, ','));
5480
5481   /* Encode args/statics combination.  */
5482   if (args & statics)
5483     return FALSE;
5484   else if (args == 0xf)
5485     /* All $a0-$a3 are args.  */
5486     opcode |= MIPS16_ALL_ARGS << 16;
5487   else if (statics == 0xf)
5488     /* All $a0-$a3 are statics.  */
5489     opcode |= MIPS16_ALL_STATICS << 16;
5490   else
5491     {
5492       /* Count arg registers.  */
5493       num_args = 0;
5494       while (args & 0x1)
5495         {
5496           args >>= 1;
5497           num_args += 1;
5498         }
5499       if (args != 0)
5500         return FALSE;
5501
5502       /* Count static registers.  */
5503       num_statics = 0;
5504       while (statics & 0x8)
5505         {
5506           statics = (statics << 1) & 0xf;
5507           num_statics += 1;
5508         }
5509       if (statics != 0)
5510         return FALSE;
5511
5512       /* Encode args/statics.  */
5513       opcode |= ((num_args << 2) | num_statics) << 16;
5514     }
5515
5516   /* Encode $s0/$s1.  */
5517   if (sregs & (1 << 0))         /* $s0 */
5518     opcode |= 0x20;
5519   if (sregs & (1 << 1))         /* $s1 */
5520     opcode |= 0x10;
5521   sregs >>= 2;
5522
5523   /* Encode $s2-$s8. */
5524   num_sregs = 0;
5525   while (sregs & 1)
5526     {
5527       sregs >>= 1;
5528       num_sregs += 1;
5529     }
5530   if (sregs != 0)
5531     return FALSE;
5532   opcode |= num_sregs << 24;
5533
5534   /* Encode frame size.  */
5535   if (num_frame_sizes == 0)
5536     {
5537       set_insn_error (arg->argnum, _("missing frame size"));
5538       return FALSE;
5539     }
5540   if (num_frame_sizes > 1)
5541     {
5542       set_insn_error (arg->argnum, _("frame size specified twice"));
5543       return FALSE;
5544     }
5545   if ((frame_size & 7) != 0 || frame_size < 0 || frame_size > 0xff * 8)
5546     {
5547       set_insn_error (arg->argnum, _("invalid frame size"));
5548       return FALSE;
5549     }
5550   if (frame_size != 128 || (opcode >> 16) != 0)
5551     {
5552       frame_size /= 8;
5553       opcode |= (((frame_size & 0xf0) << 16)
5554                  | (frame_size & 0x0f));
5555     }
5556
5557   /* Finally build the instruction.  */
5558   if ((opcode >> 16) != 0 || frame_size == 0)
5559     opcode |= MIPS16_EXTEND;
5560   arg->insn->insn_opcode = opcode;
5561   return TRUE;
5562 }
5563
5564 /* OP_MDMX_IMM_REG matcher.  */
5565
5566 static bfd_boolean
5567 match_mdmx_imm_reg_operand (struct mips_arg_info *arg,
5568                             const struct mips_operand *operand)
5569 {
5570   unsigned int regno, uval;
5571   bfd_boolean is_qh;
5572   const struct mips_opcode *opcode;
5573
5574   /* The mips_opcode records whether this is an octobyte or quadhalf
5575      instruction.  Start out with that bit in place.  */
5576   opcode = arg->insn->insn_mo;
5577   uval = mips_extract_operand (operand, opcode->match);
5578   is_qh = (uval != 0);
5579
5580   if (arg->token->type == OT_REG)
5581     {
5582       if ((opcode->membership & INSN_5400)
5583           && strcmp (opcode->name, "rzu.ob") == 0)
5584         {
5585           set_insn_error_i (arg->argnum, _("operand %d must be an immediate"),
5586                             arg->argnum);
5587           return FALSE;
5588         }
5589
5590       if (!match_regno (arg, OP_REG_VEC, arg->token->u.regno, &regno))
5591         return FALSE;
5592       ++arg->token;
5593
5594       /* Check whether this is a vector register or a broadcast of
5595          a single element.  */
5596       if (arg->token->type == OT_INTEGER_INDEX)
5597         {
5598           if (arg->token->u.index > (is_qh ? 3 : 7))
5599             {
5600               set_insn_error (arg->argnum, _("invalid element selector"));
5601               return FALSE;
5602             }
5603           uval |= arg->token->u.index << (is_qh ? 2 : 1) << 5;
5604           ++arg->token;
5605         }
5606       else
5607         {
5608           /* A full vector.  */
5609           if ((opcode->membership & INSN_5400)
5610               && (strcmp (opcode->name, "sll.ob") == 0
5611                   || strcmp (opcode->name, "srl.ob") == 0))
5612             {
5613               set_insn_error_i (arg->argnum, _("operand %d must be scalar"),
5614                                 arg->argnum);
5615               return FALSE;
5616             }
5617
5618           if (is_qh)
5619             uval |= MDMX_FMTSEL_VEC_QH << 5;
5620           else
5621             uval |= MDMX_FMTSEL_VEC_OB << 5;
5622         }
5623       uval |= regno;
5624     }
5625   else
5626     {
5627       offsetT sval;
5628
5629       if (!match_const_int (arg, &sval))
5630         return FALSE;
5631       if (sval < 0 || sval > 31)
5632         {
5633           match_out_of_range (arg);
5634           return FALSE;
5635         }
5636       uval |= (sval & 31);
5637       if (is_qh)
5638         uval |= MDMX_FMTSEL_IMM_QH << 5;
5639       else
5640         uval |= MDMX_FMTSEL_IMM_OB << 5;
5641     }
5642   insn_insert_operand (arg->insn, operand, uval);
5643   return TRUE;
5644 }
5645
5646 /* OP_IMM_INDEX matcher.  */
5647
5648 static bfd_boolean
5649 match_imm_index_operand (struct mips_arg_info *arg,
5650                          const struct mips_operand *operand)
5651 {
5652   unsigned int max_val;
5653
5654   if (arg->token->type != OT_INTEGER_INDEX)
5655     return FALSE;
5656
5657   max_val = (1 << operand->size) - 1;
5658   if (arg->token->u.index > max_val)
5659     {
5660       match_out_of_range (arg);
5661       return FALSE;
5662     }
5663   insn_insert_operand (arg->insn, operand, arg->token->u.index);
5664   ++arg->token;
5665   return TRUE;
5666 }
5667
5668 /* OP_REG_INDEX matcher.  */
5669
5670 static bfd_boolean
5671 match_reg_index_operand (struct mips_arg_info *arg,
5672                          const struct mips_operand *operand)
5673 {
5674   unsigned int regno;
5675
5676   if (arg->token->type != OT_REG_INDEX)
5677     return FALSE;
5678
5679   if (!match_regno (arg, OP_REG_GP, arg->token->u.regno, &regno))
5680     return FALSE;
5681
5682   insn_insert_operand (arg->insn, operand, regno);
5683   ++arg->token;
5684   return TRUE;
5685 }
5686
5687 /* OP_PC matcher.  */
5688
5689 static bfd_boolean
5690 match_pc_operand (struct mips_arg_info *arg)
5691 {
5692   if (arg->token->type == OT_REG && (arg->token->u.regno & RTYPE_PC))
5693     {
5694       ++arg->token;
5695       return TRUE;
5696     }
5697   return FALSE;
5698 }
5699
5700 /* OP_NON_ZERO_REG matcher.  */
5701
5702 static bfd_boolean
5703 match_non_zero_reg_operand (struct mips_arg_info *arg,
5704                             const struct mips_operand *operand)
5705 {
5706   unsigned int regno;
5707
5708   if (!match_reg (arg, OP_REG_GP, &regno))
5709     return FALSE;
5710
5711   if (regno == 0)
5712     return FALSE;
5713
5714   arg->last_regno = regno;
5715   insn_insert_operand (arg->insn, operand, regno);
5716   return TRUE;
5717 }
5718
5719 /* OP_REPEAT_DEST_REG and OP_REPEAT_PREV_REG matcher.  OTHER_REGNO is the
5720    register that we need to match.  */
5721
5722 static bfd_boolean
5723 match_tied_reg_operand (struct mips_arg_info *arg, unsigned int other_regno)
5724 {
5725   unsigned int regno;
5726
5727   return match_reg (arg, OP_REG_GP, &regno) && regno == other_regno;
5728 }
5729
5730 /* Read a floating-point constant from S for LI.S or LI.D.  LENGTH is
5731    the length of the value in bytes (4 for float, 8 for double) and
5732    USING_GPRS says whether the destination is a GPR rather than an FPR.
5733
5734    Return the constant in IMM and OFFSET as follows:
5735
5736    - If the constant should be loaded via memory, set IMM to O_absent and
5737      OFFSET to the memory address.
5738
5739    - Otherwise, if the constant should be loaded into two 32-bit registers,
5740      set IMM to the O_constant to load into the high register and OFFSET
5741      to the corresponding value for the low register.
5742
5743    - Otherwise, set IMM to the full O_constant and set OFFSET to O_absent.
5744
5745    These constants only appear as the last operand in an instruction,
5746    and every instruction that accepts them in any variant accepts them
5747    in all variants.  This means we don't have to worry about backing out
5748    any changes if the instruction does not match.  We just match
5749    unconditionally and report an error if the constant is invalid.  */
5750
5751 static bfd_boolean
5752 match_float_constant (struct mips_arg_info *arg, expressionS *imm,
5753                       expressionS *offset, int length, bfd_boolean using_gprs)
5754 {
5755   char *p;
5756   segT seg, new_seg;
5757   subsegT subseg;
5758   const char *newname;
5759   unsigned char *data;
5760
5761   /* Where the constant is placed is based on how the MIPS assembler
5762      does things:
5763
5764      length == 4 && using_gprs  -- immediate value only
5765      length == 8 && using_gprs  -- .rdata or immediate value
5766      length == 4 && !using_gprs -- .lit4 or immediate value
5767      length == 8 && !using_gprs -- .lit8 or immediate value
5768
5769      The .lit4 and .lit8 sections are only used if permitted by the
5770      -G argument.  */
5771   if (arg->token->type != OT_FLOAT)
5772     {
5773       set_insn_error (arg->argnum, _("floating-point expression required"));
5774       return FALSE;
5775     }
5776
5777   gas_assert (arg->token->u.flt.length == length);
5778   data = arg->token->u.flt.data;
5779   ++arg->token;
5780
5781   /* Handle 32-bit constants for which an immediate value is best.  */
5782   if (length == 4
5783       && (using_gprs
5784           || g_switch_value < 4
5785           || (data[0] == 0 && data[1] == 0)
5786           || (data[2] == 0 && data[3] == 0)))
5787     {
5788       imm->X_op = O_constant;
5789       if (!target_big_endian)
5790         imm->X_add_number = bfd_getl32 (data);
5791       else
5792         imm->X_add_number = bfd_getb32 (data);
5793       offset->X_op = O_absent;
5794       return TRUE;
5795     }
5796
5797   /* Handle 64-bit constants for which an immediate value is best.  */
5798   if (length == 8
5799       && !mips_disable_float_construction
5800       /* Constants can only be constructed in GPRs and copied to FPRs if the
5801          GPRs are at least as wide as the FPRs or MTHC1 is available.
5802          Unlike most tests for 32-bit floating-point registers this check
5803          specifically looks for GPR_SIZE == 32 as the FPXX ABI does not
5804          permit 64-bit moves without MXHC1.
5805          Force the constant into memory otherwise.  */
5806       && (using_gprs
5807           || GPR_SIZE == 64
5808           || ISA_HAS_MXHC1 (mips_opts.isa)
5809           || FPR_SIZE == 32)
5810       && ((data[0] == 0 && data[1] == 0)
5811           || (data[2] == 0 && data[3] == 0))
5812       && ((data[4] == 0 && data[5] == 0)
5813           || (data[6] == 0 && data[7] == 0)))
5814     {
5815       /* The value is simple enough to load with a couple of instructions.
5816          If using 32-bit registers, set IMM to the high order 32 bits and
5817          OFFSET to the low order 32 bits.  Otherwise, set IMM to the entire
5818          64 bit constant.  */
5819       if (GPR_SIZE == 32 || (!using_gprs && FPR_SIZE != 64))
5820         {
5821           imm->X_op = O_constant;
5822           offset->X_op = O_constant;
5823           if (!target_big_endian)
5824             {
5825               imm->X_add_number = bfd_getl32 (data + 4);
5826               offset->X_add_number = bfd_getl32 (data);
5827             }
5828           else
5829             {
5830               imm->X_add_number = bfd_getb32 (data);
5831               offset->X_add_number = bfd_getb32 (data + 4);
5832             }
5833           if (offset->X_add_number == 0)
5834             offset->X_op = O_absent;
5835         }
5836       else
5837         {
5838           imm->X_op = O_constant;
5839           if (!target_big_endian)
5840             imm->X_add_number = bfd_getl64 (data);
5841           else
5842             imm->X_add_number = bfd_getb64 (data);
5843           offset->X_op = O_absent;
5844         }
5845       return TRUE;
5846     }
5847
5848   /* Switch to the right section.  */
5849   seg = now_seg;
5850   subseg = now_subseg;
5851   if (length == 4)
5852     {
5853       gas_assert (!using_gprs && g_switch_value >= 4);
5854       newname = ".lit4";
5855     }
5856   else
5857     {
5858       if (using_gprs || g_switch_value < 8)
5859         newname = RDATA_SECTION_NAME;
5860       else
5861         newname = ".lit8";
5862     }
5863
5864   new_seg = subseg_new (newname, (subsegT) 0);
5865   bfd_set_section_flags (stdoutput, new_seg,
5866                          SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA);
5867   frag_align (length == 4 ? 2 : 3, 0, 0);
5868   if (strncmp (TARGET_OS, "elf", 3) != 0)
5869     record_alignment (new_seg, 4);
5870   else
5871     record_alignment (new_seg, length == 4 ? 2 : 3);
5872   if (seg == now_seg)
5873     as_bad (_("cannot use `%s' in this section"), arg->insn->insn_mo->name);
5874
5875   /* Set the argument to the current address in the section.  */
5876   imm->X_op = O_absent;
5877   offset->X_op = O_symbol;
5878   offset->X_add_symbol = symbol_temp_new_now ();
5879   offset->X_add_number = 0;
5880
5881   /* Put the floating point number into the section.  */
5882   p = frag_more (length);
5883   memcpy (p, data, length);
5884
5885   /* Switch back to the original section.  */
5886   subseg_set (seg, subseg);
5887   return TRUE;
5888 }
5889
5890 /* OP_VU0_SUFFIX and OP_VU0_MATCH_SUFFIX matcher; MATCH_P selects between
5891    them.  */
5892
5893 static bfd_boolean
5894 match_vu0_suffix_operand (struct mips_arg_info *arg,
5895                           const struct mips_operand *operand,
5896                           bfd_boolean match_p)
5897 {
5898   unsigned int uval;
5899
5900   /* The operand can be an XYZW mask or a single 2-bit channel index
5901      (with X being 0).  */
5902   gas_assert (operand->size == 2 || operand->size == 4);
5903
5904   /* The suffix can be omitted when it is already part of the opcode.  */
5905   if (arg->token->type != OT_CHANNELS)
5906     return match_p;
5907
5908   uval = arg->token->u.channels;
5909   if (operand->size == 2)
5910     {
5911       /* Check that a single bit is set and convert it into a 2-bit index.  */
5912       if ((uval & -uval) != uval)
5913         return FALSE;
5914       uval = 4 - ffs (uval);
5915     }
5916
5917   if (match_p && insn_extract_operand (arg->insn, operand) != uval)
5918     return FALSE;
5919
5920   ++arg->token;
5921   if (!match_p)
5922     insn_insert_operand (arg->insn, operand, uval);
5923   return TRUE;
5924 }
5925
5926 /* S is the text seen for ARG.  Match it against OPERAND.  Return the end
5927    of the argument text if the match is successful, otherwise return null.  */
5928
5929 static bfd_boolean
5930 match_operand (struct mips_arg_info *arg,
5931                const struct mips_operand *operand)
5932 {
5933   switch (operand->type)
5934     {
5935     case OP_INT:
5936       return match_int_operand (arg, operand);
5937
5938     case OP_MAPPED_INT:
5939       return match_mapped_int_operand (arg, operand);
5940
5941     case OP_MSB:
5942       return match_msb_operand (arg, operand);
5943
5944     case OP_REG:
5945     case OP_OPTIONAL_REG:
5946       return match_reg_operand (arg, operand);
5947
5948     case OP_REG_PAIR:
5949       return match_reg_pair_operand (arg, operand);
5950
5951     case OP_PCREL:
5952       return match_pcrel_operand (arg);
5953
5954     case OP_PERF_REG:
5955       return match_perf_reg_operand (arg, operand);
5956
5957     case OP_ADDIUSP_INT:
5958       return match_addiusp_operand (arg, operand);
5959
5960     case OP_CLO_CLZ_DEST:
5961       return match_clo_clz_dest_operand (arg, operand);
5962
5963     case OP_LWM_SWM_LIST:
5964       return match_lwm_swm_list_operand (arg, operand);
5965
5966     case OP_ENTRY_EXIT_LIST:
5967       return match_entry_exit_operand (arg, operand);
5968
5969     case OP_SAVE_RESTORE_LIST:
5970       return match_save_restore_list_operand (arg);
5971
5972     case OP_MDMX_IMM_REG:
5973       return match_mdmx_imm_reg_operand (arg, operand);
5974
5975     case OP_REPEAT_DEST_REG:
5976       return match_tied_reg_operand (arg, arg->dest_regno);
5977
5978     case OP_REPEAT_PREV_REG:
5979       return match_tied_reg_operand (arg, arg->last_regno);
5980
5981     case OP_PC:
5982       return match_pc_operand (arg);
5983
5984     case OP_VU0_SUFFIX:
5985       return match_vu0_suffix_operand (arg, operand, FALSE);
5986
5987     case OP_VU0_MATCH_SUFFIX:
5988       return match_vu0_suffix_operand (arg, operand, TRUE);
5989
5990     case OP_IMM_INDEX:
5991       return match_imm_index_operand (arg, operand);
5992
5993     case OP_REG_INDEX:
5994       return match_reg_index_operand (arg, operand);
5995
5996     case OP_SAME_RS_RT:
5997       return match_same_rs_rt_operand (arg, operand);
5998
5999     case OP_CHECK_PREV:
6000       return match_check_prev_operand (arg, operand);
6001
6002     case OP_NON_ZERO_REG:
6003       return match_non_zero_reg_operand (arg, operand);
6004     }
6005   abort ();
6006 }
6007
6008 /* ARG is the state after successfully matching an instruction.
6009    Issue any queued-up warnings.  */
6010
6011 static void
6012 check_completed_insn (struct mips_arg_info *arg)
6013 {
6014   if (arg->seen_at)
6015     {
6016       if (AT == ATREG)
6017         as_warn (_("used $at without \".set noat\""));
6018       else
6019         as_warn (_("used $%u with \".set at=$%u\""), AT, AT);
6020     }
6021 }
6022
6023 /* Return true if modifying general-purpose register REG needs a delay.  */
6024
6025 static bfd_boolean
6026 reg_needs_delay (unsigned int reg)
6027 {
6028   unsigned long prev_pinfo;
6029
6030   prev_pinfo = history[0].insn_mo->pinfo;
6031   if (!mips_opts.noreorder
6032       && (((prev_pinfo & INSN_LOAD_MEMORY) && !gpr_interlocks)
6033           || ((prev_pinfo & INSN_LOAD_COPROC) && !cop_interlocks))
6034       && (gpr_write_mask (&history[0]) & (1 << reg)))
6035     return TRUE;
6036
6037   return FALSE;
6038 }
6039
6040 /* Classify an instruction according to the FIX_VR4120_* enumeration.
6041    Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
6042    by VR4120 errata.  */
6043
6044 static unsigned int
6045 classify_vr4120_insn (const char *name)
6046 {
6047   if (strncmp (name, "macc", 4) == 0)
6048     return FIX_VR4120_MACC;
6049   if (strncmp (name, "dmacc", 5) == 0)
6050     return FIX_VR4120_DMACC;
6051   if (strncmp (name, "mult", 4) == 0)
6052     return FIX_VR4120_MULT;
6053   if (strncmp (name, "dmult", 5) == 0)
6054     return FIX_VR4120_DMULT;
6055   if (strstr (name, "div"))
6056     return FIX_VR4120_DIV;
6057   if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
6058     return FIX_VR4120_MTHILO;
6059   return NUM_FIX_VR4120_CLASSES;
6060 }
6061
6062 #define INSN_ERET       0x42000018
6063 #define INSN_DERET      0x4200001f
6064 #define INSN_DMULT      0x1c
6065 #define INSN_DMULTU     0x1d
6066
6067 /* Return the number of instructions that must separate INSN1 and INSN2,
6068    where INSN1 is the earlier instruction.  Return the worst-case value
6069    for any INSN2 if INSN2 is null.  */
6070
6071 static unsigned int
6072 insns_between (const struct mips_cl_insn *insn1,
6073                const struct mips_cl_insn *insn2)
6074 {
6075   unsigned long pinfo1, pinfo2;
6076   unsigned int mask;
6077
6078   /* If INFO2 is null, pessimistically assume that all flags are set for
6079      the second instruction.  */
6080   pinfo1 = insn1->insn_mo->pinfo;
6081   pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
6082
6083   /* For most targets, write-after-read dependencies on the HI and LO
6084      registers must be separated by at least two instructions.  */
6085   if (!hilo_interlocks)
6086     {
6087       if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
6088         return 2;
6089       if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
6090         return 2;
6091     }
6092
6093   /* If we're working around r7000 errata, there must be two instructions
6094      between an mfhi or mflo and any instruction that uses the result.  */
6095   if (mips_7000_hilo_fix
6096       && !mips_opts.micromips
6097       && MF_HILO_INSN (pinfo1)
6098       && (insn2 == NULL || (gpr_read_mask (insn2) & gpr_write_mask (insn1))))
6099     return 2;
6100
6101   /* If we're working around 24K errata, one instruction is required
6102      if an ERET or DERET is followed by a branch instruction.  */
6103   if (mips_fix_24k && !mips_opts.micromips)
6104     {
6105       if (insn1->insn_opcode == INSN_ERET
6106           || insn1->insn_opcode == INSN_DERET)
6107         {
6108           if (insn2 == NULL
6109               || insn2->insn_opcode == INSN_ERET
6110               || insn2->insn_opcode == INSN_DERET
6111               || delayed_branch_p (insn2))
6112             return 1;
6113         }
6114     }
6115
6116   /* If we're working around PMC RM7000 errata, there must be three
6117      nops between a dmult and a load instruction.  */
6118   if (mips_fix_rm7000 && !mips_opts.micromips)
6119     {
6120       if ((insn1->insn_opcode & insn1->insn_mo->mask) == INSN_DMULT
6121           || (insn1->insn_opcode & insn1->insn_mo->mask) == INSN_DMULTU)
6122         {
6123           if (pinfo2 & INSN_LOAD_MEMORY)
6124            return 3;
6125         }
6126     }
6127
6128   /* If working around VR4120 errata, check for combinations that need
6129      a single intervening instruction.  */
6130   if (mips_fix_vr4120 && !mips_opts.micromips)
6131     {
6132       unsigned int class1, class2;
6133
6134       class1 = classify_vr4120_insn (insn1->insn_mo->name);
6135       if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
6136         {
6137           if (insn2 == NULL)
6138             return 1;
6139           class2 = classify_vr4120_insn (insn2->insn_mo->name);
6140           if (vr4120_conflicts[class1] & (1 << class2))
6141             return 1;
6142         }
6143     }
6144
6145   if (!HAVE_CODE_COMPRESSION)
6146     {
6147       /* Check for GPR or coprocessor load delays.  All such delays
6148          are on the RT register.  */
6149       /* Itbl support may require additional care here.  */
6150       if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY))
6151           || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC)))
6152         {
6153           if (insn2 == NULL || (gpr_read_mask (insn2) & gpr_write_mask (insn1)))
6154             return 1;
6155         }
6156
6157       /* Check for generic coprocessor hazards.
6158
6159          This case is not handled very well.  There is no special
6160          knowledge of CP0 handling, and the coprocessors other than
6161          the floating point unit are not distinguished at all.  */
6162       /* Itbl support may require additional care here. FIXME!
6163          Need to modify this to include knowledge about
6164          user specified delays!  */
6165       else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE))
6166                || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
6167         {
6168           /* Handle cases where INSN1 writes to a known general coprocessor
6169              register.  There must be a one instruction delay before INSN2
6170              if INSN2 reads that register, otherwise no delay is needed.  */
6171           mask = fpr_write_mask (insn1);
6172           if (mask != 0)
6173             {
6174               if (!insn2 || (mask & fpr_read_mask (insn2)) != 0)
6175                 return 1;
6176             }
6177           else
6178             {
6179               /* Read-after-write dependencies on the control registers
6180                  require a two-instruction gap.  */
6181               if ((pinfo1 & INSN_WRITE_COND_CODE)
6182                   && (pinfo2 & INSN_READ_COND_CODE))
6183                 return 2;
6184
6185               /* We don't know exactly what INSN1 does.  If INSN2 is
6186                  also a coprocessor instruction, assume there must be
6187                  a one instruction gap.  */
6188               if (pinfo2 & INSN_COP)
6189                 return 1;
6190             }
6191         }
6192
6193       /* Check for read-after-write dependencies on the coprocessor
6194          control registers in cases where INSN1 does not need a general
6195          coprocessor delay.  This means that INSN1 is a floating point
6196          comparison instruction.  */
6197       /* Itbl support may require additional care here.  */
6198       else if (!cop_interlocks
6199                && (pinfo1 & INSN_WRITE_COND_CODE)
6200                && (pinfo2 & INSN_READ_COND_CODE))
6201         return 1;
6202     }
6203
6204   /* Forbidden slots can not contain Control Transfer Instructions (CTIs)
6205      CTIs include all branches and jumps, nal, eret, eretnc, deret, wait
6206      and pause.  */
6207   if ((insn1->insn_mo->pinfo2 & INSN2_FORBIDDEN_SLOT)
6208       && ((pinfo2 & INSN_NO_DELAY_SLOT)
6209           || (insn2 && delayed_branch_p (insn2))))
6210     return 1;
6211
6212   return 0;
6213 }
6214
6215 /* Return the number of nops that would be needed to work around the
6216    VR4130 mflo/mfhi errata if instruction INSN immediately followed
6217    the MAX_VR4130_NOPS instructions described by HIST.  Ignore hazards
6218    that are contained within the first IGNORE instructions of HIST.  */
6219
6220 static int
6221 nops_for_vr4130 (int ignore, const struct mips_cl_insn *hist,
6222                  const struct mips_cl_insn *insn)
6223 {
6224   int i, j;
6225   unsigned int mask;
6226
6227   /* Check if the instruction writes to HI or LO.  MTHI and MTLO
6228      are not affected by the errata.  */
6229   if (insn != 0
6230       && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
6231           || strcmp (insn->insn_mo->name, "mtlo") == 0
6232           || strcmp (insn->insn_mo->name, "mthi") == 0))
6233     return 0;
6234
6235   /* Search for the first MFLO or MFHI.  */
6236   for (i = 0; i < MAX_VR4130_NOPS; i++)
6237     if (MF_HILO_INSN (hist[i].insn_mo->pinfo))
6238       {
6239         /* Extract the destination register.  */
6240         mask = gpr_write_mask (&hist[i]);
6241
6242         /* No nops are needed if INSN reads that register.  */
6243         if (insn != NULL && (gpr_read_mask (insn) & mask) != 0)
6244           return 0;
6245
6246         /* ...or if any of the intervening instructions do.  */
6247         for (j = 0; j < i; j++)
6248           if (gpr_read_mask (&hist[j]) & mask)
6249             return 0;
6250
6251         if (i >= ignore)
6252           return MAX_VR4130_NOPS - i;
6253       }
6254   return 0;
6255 }
6256
6257 #define BASE_REG_EQ(INSN1, INSN2)       \
6258   ((((INSN1) >> OP_SH_RS) & OP_MASK_RS) \
6259       == (((INSN2) >> OP_SH_RS) & OP_MASK_RS))
6260
6261 /* Return the minimum alignment for this store instruction.  */
6262
6263 static int
6264 fix_24k_align_to (const struct mips_opcode *mo)
6265 {
6266   if (strcmp (mo->name, "sh") == 0)
6267     return 2;
6268
6269   if (strcmp (mo->name, "swc1") == 0
6270       || strcmp (mo->name, "swc2") == 0
6271       || strcmp (mo->name, "sw") == 0
6272       || strcmp (mo->name, "sc") == 0
6273       || strcmp (mo->name, "s.s") == 0)
6274     return 4;
6275
6276   if (strcmp (mo->name, "sdc1") == 0
6277       || strcmp (mo->name, "sdc2") == 0
6278       || strcmp (mo->name, "s.d") == 0)
6279     return 8;
6280
6281   /* sb, swl, swr */
6282   return 1;
6283 }
6284
6285 struct fix_24k_store_info
6286   {
6287     /* Immediate offset, if any, for this store instruction.  */
6288     short off;
6289     /* Alignment required by this store instruction.  */
6290     int align_to;
6291     /* True for register offsets.  */
6292     int register_offset;
6293   };
6294
6295 /* Comparison function used by qsort.  */
6296
6297 static int
6298 fix_24k_sort (const void *a, const void *b)
6299 {
6300   const struct fix_24k_store_info *pos1 = a;
6301   const struct fix_24k_store_info *pos2 = b;
6302
6303   return (pos1->off - pos2->off);
6304 }
6305
6306 /* INSN is a store instruction.  Try to record the store information
6307    in STINFO.  Return false if the information isn't known.  */
6308
6309 static bfd_boolean
6310 fix_24k_record_store_info (struct fix_24k_store_info *stinfo,
6311                            const struct mips_cl_insn *insn)
6312 {
6313   /* The instruction must have a known offset.  */
6314   if (!insn->complete_p || !strstr (insn->insn_mo->args, "o("))
6315     return FALSE;
6316
6317   stinfo->off = (insn->insn_opcode >> OP_SH_IMMEDIATE) & OP_MASK_IMMEDIATE;
6318   stinfo->align_to = fix_24k_align_to (insn->insn_mo);
6319   return TRUE;
6320 }
6321
6322 /* Return the number of nops that would be needed to work around the 24k
6323    "lost data on stores during refill" errata if instruction INSN
6324    immediately followed the 2 instructions described by HIST.
6325    Ignore hazards that are contained within the first IGNORE
6326    instructions of HIST.
6327
6328    Problem: The FSB (fetch store buffer) acts as an intermediate buffer
6329    for the data cache refills and store data. The following describes
6330    the scenario where the store data could be lost.
6331
6332    * A data cache miss, due to either a load or a store, causing fill
6333      data to be supplied by the memory subsystem
6334    * The first three doublewords of fill data are returned and written
6335      into the cache
6336    * A sequence of four stores occurs in consecutive cycles around the
6337      final doubleword of the fill:
6338    * Store A
6339    * Store B
6340    * Store C
6341    * Zero, One or more instructions
6342    * Store D
6343
6344    The four stores A-D must be to different doublewords of the line that
6345    is being filled. The fourth instruction in the sequence above permits
6346    the fill of the final doubleword to be transferred from the FSB into
6347    the cache. In the sequence above, the stores may be either integer
6348    (sb, sh, sw, swr, swl, sc) or coprocessor (swc1/swc2, sdc1/sdc2,
6349    swxc1, sdxc1, suxc1) stores, as long as the four stores are to
6350    different doublewords on the line. If the floating point unit is
6351    running in 1:2 mode, it is not possible to create the sequence above
6352    using only floating point store instructions.
6353
6354    In this case, the cache line being filled is incorrectly marked
6355    invalid, thereby losing the data from any store to the line that
6356    occurs between the original miss and the completion of the five
6357    cycle sequence shown above.
6358
6359    The workarounds are:
6360
6361    * Run the data cache in write-through mode.
6362    * Insert a non-store instruction between
6363      Store A and Store B or Store B and Store C.  */
6364   
6365 static int
6366 nops_for_24k (int ignore, const struct mips_cl_insn *hist,
6367               const struct mips_cl_insn *insn)
6368 {
6369   struct fix_24k_store_info pos[3];
6370   int align, i, base_offset;
6371
6372   if (ignore >= 2)
6373     return 0;
6374
6375   /* If the previous instruction wasn't a store, there's nothing to
6376      worry about.  */
6377   if ((hist[0].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
6378     return 0;
6379
6380   /* If the instructions after the previous one are unknown, we have
6381      to assume the worst.  */
6382   if (!insn)
6383     return 1;
6384
6385   /* Check whether we are dealing with three consecutive stores.  */
6386   if ((insn->insn_mo->pinfo & INSN_STORE_MEMORY) == 0
6387       || (hist[1].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
6388     return 0;
6389
6390   /* If we don't know the relationship between the store addresses,
6391      assume the worst.  */
6392   if (!BASE_REG_EQ (insn->insn_opcode, hist[0].insn_opcode)
6393       || !BASE_REG_EQ (insn->insn_opcode, hist[1].insn_opcode))
6394     return 1;
6395
6396   if (!fix_24k_record_store_info (&pos[0], insn)
6397       || !fix_24k_record_store_info (&pos[1], &hist[0])
6398       || !fix_24k_record_store_info (&pos[2], &hist[1]))
6399     return 1;
6400
6401   qsort (&pos, 3, sizeof (struct fix_24k_store_info), fix_24k_sort);
6402
6403   /* Pick a value of ALIGN and X such that all offsets are adjusted by
6404      X bytes and such that the base register + X is known to be aligned
6405      to align bytes.  */
6406
6407   if (((insn->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == SP)
6408     align = 8;
6409   else
6410     {
6411       align = pos[0].align_to;
6412       base_offset = pos[0].off;
6413       for (i = 1; i < 3; i++)
6414         if (align < pos[i].align_to)
6415           {
6416             align = pos[i].align_to;
6417             base_offset = pos[i].off;
6418           }
6419       for (i = 0; i < 3; i++)
6420         pos[i].off -= base_offset;
6421     }
6422
6423   pos[0].off &= ~align + 1;
6424   pos[1].off &= ~align + 1;
6425   pos[2].off &= ~align + 1;
6426
6427   /* If any two stores write to the same chunk, they also write to the
6428      same doubleword.  The offsets are still sorted at this point.  */
6429   if (pos[0].off == pos[1].off || pos[1].off == pos[2].off)
6430     return 0;
6431
6432   /* A range of at least 9 bytes is needed for the stores to be in
6433      non-overlapping doublewords.  */
6434   if (pos[2].off - pos[0].off <= 8)
6435     return 0;
6436
6437   if (pos[2].off - pos[1].off >= 24
6438       || pos[1].off - pos[0].off >= 24
6439       || pos[2].off - pos[0].off >= 32)
6440     return 0;
6441
6442   return 1;
6443 }
6444
6445 /* Return the number of nops that would be needed if instruction INSN
6446    immediately followed the MAX_NOPS instructions given by HIST,
6447    where HIST[0] is the most recent instruction.  Ignore hazards
6448    between INSN and the first IGNORE instructions in HIST.
6449
6450    If INSN is null, return the worse-case number of nops for any
6451    instruction.  */
6452
6453 static int
6454 nops_for_insn (int ignore, const struct mips_cl_insn *hist,
6455                const struct mips_cl_insn *insn)
6456 {
6457   int i, nops, tmp_nops;
6458
6459   nops = 0;
6460   for (i = ignore; i < MAX_DELAY_NOPS; i++)
6461     {
6462       tmp_nops = insns_between (hist + i, insn) - i;
6463       if (tmp_nops > nops)
6464         nops = tmp_nops;
6465     }
6466
6467   if (mips_fix_vr4130 && !mips_opts.micromips)
6468     {
6469       tmp_nops = nops_for_vr4130 (ignore, hist, insn);
6470       if (tmp_nops > nops)
6471         nops = tmp_nops;
6472     }
6473
6474   if (mips_fix_24k && !mips_opts.micromips)
6475     {
6476       tmp_nops = nops_for_24k (ignore, hist, insn);
6477       if (tmp_nops > nops)
6478         nops = tmp_nops;
6479     }
6480
6481   return nops;
6482 }
6483
6484 /* The variable arguments provide NUM_INSNS extra instructions that
6485    might be added to HIST.  Return the largest number of nops that
6486    would be needed after the extended sequence, ignoring hazards
6487    in the first IGNORE instructions.  */
6488
6489 static int
6490 nops_for_sequence (int num_insns, int ignore,
6491                    const struct mips_cl_insn *hist, ...)
6492 {
6493   va_list args;
6494   struct mips_cl_insn buffer[MAX_NOPS];
6495   struct mips_cl_insn *cursor;
6496   int nops;
6497
6498   va_start (args, hist);
6499   cursor = buffer + num_insns;
6500   memcpy (cursor, hist, (MAX_NOPS - num_insns) * sizeof (*cursor));
6501   while (cursor > buffer)
6502     *--cursor = *va_arg (args, const struct mips_cl_insn *);
6503
6504   nops = nops_for_insn (ignore, buffer, NULL);
6505   va_end (args);
6506   return nops;
6507 }
6508
6509 /* Like nops_for_insn, but if INSN is a branch, take into account the
6510    worst-case delay for the branch target.  */
6511
6512 static int
6513 nops_for_insn_or_target (int ignore, const struct mips_cl_insn *hist,
6514                          const struct mips_cl_insn *insn)
6515 {
6516   int nops, tmp_nops;
6517
6518   nops = nops_for_insn (ignore, hist, insn);
6519   if (delayed_branch_p (insn))
6520     {
6521       tmp_nops = nops_for_sequence (2, ignore ? ignore + 2 : 0,
6522                                     hist, insn, get_delay_slot_nop (insn));
6523       if (tmp_nops > nops)
6524         nops = tmp_nops;
6525     }
6526   else if (compact_branch_p (insn))
6527     {
6528       tmp_nops = nops_for_sequence (1, ignore ? ignore + 1 : 0, hist, insn);
6529       if (tmp_nops > nops)
6530         nops = tmp_nops;
6531     }
6532   return nops;
6533 }
6534
6535 /* Fix NOP issue: Replace nops by "or at,at,zero".  */
6536
6537 static void
6538 fix_loongson2f_nop (struct mips_cl_insn * ip)
6539 {
6540   gas_assert (!HAVE_CODE_COMPRESSION);
6541   if (strcmp (ip->insn_mo->name, "nop") == 0)
6542     ip->insn_opcode = LOONGSON2F_NOP_INSN;
6543 }
6544
6545 /* Fix Jump Issue: Eliminate instruction fetch from outside 256M region
6546                    jr target pc &= 'hffff_ffff_cfff_ffff.  */
6547
6548 static void
6549 fix_loongson2f_jump (struct mips_cl_insn * ip)
6550 {
6551   gas_assert (!HAVE_CODE_COMPRESSION);
6552   if (strcmp (ip->insn_mo->name, "j") == 0
6553       || strcmp (ip->insn_mo->name, "jr") == 0
6554       || strcmp (ip->insn_mo->name, "jalr") == 0)
6555     {
6556       int sreg;
6557       expressionS ep;
6558
6559       if (! mips_opts.at)
6560         return;
6561
6562       sreg = EXTRACT_OPERAND (0, RS, *ip);
6563       if (sreg == ZERO || sreg == KT0 || sreg == KT1 || sreg == ATREG)
6564         return;
6565
6566       ep.X_op = O_constant;
6567       ep.X_add_number = 0xcfff0000;
6568       macro_build (&ep, "lui", "t,u", ATREG, BFD_RELOC_HI16);
6569       ep.X_add_number = 0xffff;
6570       macro_build (&ep, "ori", "t,r,i", ATREG, ATREG, BFD_RELOC_LO16);
6571       macro_build (NULL, "and", "d,v,t", sreg, sreg, ATREG);
6572     }
6573 }
6574
6575 static void
6576 fix_loongson2f (struct mips_cl_insn * ip)
6577 {
6578   if (mips_fix_loongson2f_nop)
6579     fix_loongson2f_nop (ip);
6580
6581   if (mips_fix_loongson2f_jump)
6582     fix_loongson2f_jump (ip);
6583 }
6584
6585 /* IP is a branch that has a delay slot, and we need to fill it
6586    automatically.   Return true if we can do that by swapping IP
6587    with the previous instruction.
6588    ADDRESS_EXPR is an operand of the instruction to be used with
6589    RELOC_TYPE.  */
6590
6591 static bfd_boolean
6592 can_swap_branch_p (struct mips_cl_insn *ip, expressionS *address_expr,
6593                    bfd_reloc_code_real_type *reloc_type)
6594 {
6595   unsigned long pinfo, pinfo2, prev_pinfo, prev_pinfo2;
6596   unsigned int gpr_read, gpr_write, prev_gpr_read, prev_gpr_write;
6597   unsigned int fpr_read, prev_fpr_write;
6598
6599   /* -O2 and above is required for this optimization.  */
6600   if (mips_optimize < 2)
6601     return FALSE;
6602
6603   /* If we have seen .set volatile or .set nomove, don't optimize.  */
6604   if (mips_opts.nomove)
6605     return FALSE;
6606
6607   /* We can't swap if the previous instruction's position is fixed.  */
6608   if (history[0].fixed_p)
6609     return FALSE;
6610
6611   /* If the previous previous insn was in a .set noreorder, we can't
6612      swap.  Actually, the MIPS assembler will swap in this situation.
6613      However, gcc configured -with-gnu-as will generate code like
6614
6615         .set    noreorder
6616         lw      $4,XXX
6617         .set    reorder
6618         INSN
6619         bne     $4,$0,foo
6620
6621      in which we can not swap the bne and INSN.  If gcc is not configured
6622      -with-gnu-as, it does not output the .set pseudo-ops.  */
6623   if (history[1].noreorder_p)
6624     return FALSE;
6625
6626   /* If the previous instruction had a fixup in mips16 mode, we can not swap.
6627      This means that the previous instruction was a 4-byte one anyhow.  */
6628   if (mips_opts.mips16 && history[0].fixp[0])
6629     return FALSE;
6630
6631   /* If the branch is itself the target of a branch, we can not swap.
6632      We cheat on this; all we check for is whether there is a label on
6633      this instruction.  If there are any branches to anything other than
6634      a label, users must use .set noreorder.  */
6635   if (seg_info (now_seg)->label_list)
6636     return FALSE;
6637
6638   /* If the previous instruction is in a variant frag other than this
6639      branch's one, we cannot do the swap.  This does not apply to
6640      MIPS16 code, which uses variant frags for different purposes.  */
6641   if (!mips_opts.mips16
6642       && history[0].frag
6643       && history[0].frag->fr_type == rs_machine_dependent)
6644     return FALSE;
6645
6646   /* We do not swap with instructions that cannot architecturally
6647      be placed in a branch delay slot, such as SYNC or ERET.  We
6648      also refrain from swapping with a trap instruction, since it
6649      complicates trap handlers to have the trap instruction be in
6650      a delay slot.  */
6651   prev_pinfo = history[0].insn_mo->pinfo;
6652   if (prev_pinfo & INSN_NO_DELAY_SLOT)
6653     return FALSE;
6654
6655   /* Check for conflicts between the branch and the instructions
6656      before the candidate delay slot.  */
6657   if (nops_for_insn (0, history + 1, ip) > 0)
6658     return FALSE;
6659
6660   /* Check for conflicts between the swapped sequence and the
6661      target of the branch.  */
6662   if (nops_for_sequence (2, 0, history + 1, ip, history) > 0)
6663     return FALSE;
6664
6665   /* If the branch reads a register that the previous
6666      instruction sets, we can not swap.  */
6667   gpr_read = gpr_read_mask (ip);
6668   prev_gpr_write = gpr_write_mask (&history[0]);
6669   if (gpr_read & prev_gpr_write)
6670     return FALSE;
6671
6672   fpr_read = fpr_read_mask (ip);
6673   prev_fpr_write = fpr_write_mask (&history[0]);
6674   if (fpr_read & prev_fpr_write)
6675     return FALSE;
6676
6677   /* If the branch writes a register that the previous
6678      instruction sets, we can not swap.  */
6679   gpr_write = gpr_write_mask (ip);
6680   if (gpr_write & prev_gpr_write)
6681     return FALSE;
6682
6683   /* If the branch writes a register that the previous
6684      instruction reads, we can not swap.  */
6685   prev_gpr_read = gpr_read_mask (&history[0]);
6686   if (gpr_write & prev_gpr_read)
6687     return FALSE;
6688
6689   /* If one instruction sets a condition code and the
6690      other one uses a condition code, we can not swap.  */
6691   pinfo = ip->insn_mo->pinfo;
6692   if ((pinfo & INSN_READ_COND_CODE)
6693       && (prev_pinfo & INSN_WRITE_COND_CODE))
6694     return FALSE;
6695   if ((pinfo & INSN_WRITE_COND_CODE)
6696       && (prev_pinfo & INSN_READ_COND_CODE))
6697     return FALSE;
6698
6699   /* If the previous instruction uses the PC, we can not swap.  */
6700   prev_pinfo2 = history[0].insn_mo->pinfo2;
6701   if (prev_pinfo2 & INSN2_READ_PC)
6702     return FALSE;
6703
6704   /* If the previous instruction has an incorrect size for a fixed
6705      branch delay slot in microMIPS mode, we cannot swap.  */
6706   pinfo2 = ip->insn_mo->pinfo2;
6707   if (mips_opts.micromips
6708       && (pinfo2 & INSN2_BRANCH_DELAY_16BIT)
6709       && insn_length (history) != 2)
6710     return FALSE;
6711   if (mips_opts.micromips
6712       && (pinfo2 & INSN2_BRANCH_DELAY_32BIT)
6713       && insn_length (history) != 4)
6714     return FALSE;
6715
6716   /* On R5900 short loops need to be fixed by inserting a nop in
6717      the branch delay slots.
6718      A short loop can be terminated too early.  */
6719   if (mips_opts.arch == CPU_R5900
6720       /* Check if instruction has a parameter, ignore "j $31". */
6721       && (address_expr != NULL)
6722       /* Parameter must be 16 bit. */
6723       && (*reloc_type == BFD_RELOC_16_PCREL_S2)
6724       /* Branch to same segment. */
6725       && (S_GET_SEGMENT(address_expr->X_add_symbol) == now_seg)
6726       /* Branch to same code fragment. */
6727       && (symbol_get_frag(address_expr->X_add_symbol) == frag_now)
6728       /* Can only calculate branch offset if value is known. */
6729       && symbol_constant_p(address_expr->X_add_symbol)
6730       /* Check if branch is really conditional. */
6731       && !((ip->insn_opcode & 0xffff0000) == 0x10000000   /* beq $0,$0 */
6732         || (ip->insn_opcode & 0xffff0000) == 0x04010000   /* bgez $0 */
6733         || (ip->insn_opcode & 0xffff0000) == 0x04110000)) /* bgezal $0 */
6734     {
6735       int distance;
6736       /* Check if loop is shorter than 6 instructions including
6737          branch and delay slot.  */
6738       distance = frag_now_fix() - S_GET_VALUE(address_expr->X_add_symbol);
6739       if (distance <= 20)
6740         {
6741           int i;
6742           int rv;
6743
6744           rv = FALSE;
6745           /* When the loop includes branches or jumps,
6746              it is not a short loop. */
6747           for (i = 0; i < (distance / 4); i++)
6748             {
6749               if ((history[i].cleared_p)
6750                   || delayed_branch_p(&history[i]))
6751                 {
6752                   rv = TRUE;
6753                   break;
6754                 }
6755             }
6756           if (rv == FALSE)
6757             {
6758               /* Insert nop after branch to fix short loop. */
6759               return FALSE;
6760             }
6761         }
6762     }
6763
6764   return TRUE;
6765 }
6766
6767 /* Decide how we should add IP to the instruction stream.
6768    ADDRESS_EXPR is an operand of the instruction to be used with
6769    RELOC_TYPE.  */
6770
6771 static enum append_method
6772 get_append_method (struct mips_cl_insn *ip, expressionS *address_expr,
6773                    bfd_reloc_code_real_type *reloc_type)
6774 {
6775   /* The relaxed version of a macro sequence must be inherently
6776      hazard-free.  */
6777   if (mips_relax.sequence == 2)
6778     return APPEND_ADD;
6779
6780   /* We must not dabble with instructions in a ".set norerorder" block.  */
6781   if (mips_opts.noreorder)
6782     return APPEND_ADD;
6783
6784   /* Otherwise, it's our responsibility to fill branch delay slots.  */
6785   if (delayed_branch_p (ip))
6786     {
6787       if (!branch_likely_p (ip)
6788           && can_swap_branch_p (ip, address_expr, reloc_type))
6789         return APPEND_SWAP;
6790
6791       if (mips_opts.mips16
6792           && ISA_SUPPORTS_MIPS16E
6793           && gpr_read_mask (ip) != 0)
6794         return APPEND_ADD_COMPACT;
6795
6796       return APPEND_ADD_WITH_NOP;
6797     }
6798
6799   return APPEND_ADD;
6800 }
6801
6802 /* IP is a MIPS16 instruction whose opcode we have just changed.
6803    Point IP->insn_mo to the new opcode's definition.  */
6804
6805 static void
6806 find_altered_mips16_opcode (struct mips_cl_insn *ip)
6807 {
6808   const struct mips_opcode *mo, *end;
6809
6810   end = &mips16_opcodes[bfd_mips16_num_opcodes];
6811   for (mo = ip->insn_mo; mo < end; mo++)
6812     if ((ip->insn_opcode & mo->mask) == mo->match)
6813       {
6814         ip->insn_mo = mo;
6815         return;
6816       }
6817   abort ();
6818 }
6819
6820 /* For microMIPS macros, we need to generate a local number label
6821    as the target of branches.  */
6822 #define MICROMIPS_LABEL_CHAR            '\037'
6823 static unsigned long micromips_target_label;
6824 static char micromips_target_name[32];
6825
6826 static char *
6827 micromips_label_name (void)
6828 {
6829   char *p = micromips_target_name;
6830   char symbol_name_temporary[24];
6831   unsigned long l;
6832   int i;
6833
6834   if (*p)
6835     return p;
6836
6837   i = 0;
6838   l = micromips_target_label;
6839 #ifdef LOCAL_LABEL_PREFIX
6840   *p++ = LOCAL_LABEL_PREFIX;
6841 #endif
6842   *p++ = 'L';
6843   *p++ = MICROMIPS_LABEL_CHAR;
6844   do
6845     {
6846       symbol_name_temporary[i++] = l % 10 + '0';
6847       l /= 10;
6848     }
6849   while (l != 0);
6850   while (i > 0)
6851     *p++ = symbol_name_temporary[--i];
6852   *p = '\0';
6853
6854   return micromips_target_name;
6855 }
6856
6857 static void
6858 micromips_label_expr (expressionS *label_expr)
6859 {
6860   label_expr->X_op = O_symbol;
6861   label_expr->X_add_symbol = symbol_find_or_make (micromips_label_name ());
6862   label_expr->X_add_number = 0;
6863 }
6864
6865 static void
6866 micromips_label_inc (void)
6867 {
6868   micromips_target_label++;
6869   *micromips_target_name = '\0';
6870 }
6871
6872 static void
6873 micromips_add_label (void)
6874 {
6875   symbolS *s;
6876
6877   s = colon (micromips_label_name ());
6878   micromips_label_inc ();
6879   S_SET_OTHER (s, ELF_ST_SET_MICROMIPS (S_GET_OTHER (s)));
6880 }
6881
6882 /* If assembling microMIPS code, then return the microMIPS reloc
6883    corresponding to the requested one if any.  Otherwise return
6884    the reloc unchanged.  */
6885
6886 static bfd_reloc_code_real_type
6887 micromips_map_reloc (bfd_reloc_code_real_type reloc)
6888 {
6889   static const bfd_reloc_code_real_type relocs[][2] =
6890     {
6891       /* Keep sorted incrementally by the left-hand key.  */
6892       { BFD_RELOC_16_PCREL_S2, BFD_RELOC_MICROMIPS_16_PCREL_S1 },
6893       { BFD_RELOC_GPREL16, BFD_RELOC_MICROMIPS_GPREL16 },
6894       { BFD_RELOC_MIPS_JMP, BFD_RELOC_MICROMIPS_JMP },
6895       { BFD_RELOC_HI16, BFD_RELOC_MICROMIPS_HI16 },
6896       { BFD_RELOC_HI16_S, BFD_RELOC_MICROMIPS_HI16_S },
6897       { BFD_RELOC_LO16, BFD_RELOC_MICROMIPS_LO16 },
6898       { BFD_RELOC_MIPS_LITERAL, BFD_RELOC_MICROMIPS_LITERAL },
6899       { BFD_RELOC_MIPS_GOT16, BFD_RELOC_MICROMIPS_GOT16 },
6900       { BFD_RELOC_MIPS_CALL16, BFD_RELOC_MICROMIPS_CALL16 },
6901       { BFD_RELOC_MIPS_GOT_HI16, BFD_RELOC_MICROMIPS_GOT_HI16 },
6902       { BFD_RELOC_MIPS_GOT_LO16, BFD_RELOC_MICROMIPS_GOT_LO16 },
6903       { BFD_RELOC_MIPS_CALL_HI16, BFD_RELOC_MICROMIPS_CALL_HI16 },
6904       { BFD_RELOC_MIPS_CALL_LO16, BFD_RELOC_MICROMIPS_CALL_LO16 },
6905       { BFD_RELOC_MIPS_SUB, BFD_RELOC_MICROMIPS_SUB },
6906       { BFD_RELOC_MIPS_GOT_PAGE, BFD_RELOC_MICROMIPS_GOT_PAGE },
6907       { BFD_RELOC_MIPS_GOT_OFST, BFD_RELOC_MICROMIPS_GOT_OFST },
6908       { BFD_RELOC_MIPS_GOT_DISP, BFD_RELOC_MICROMIPS_GOT_DISP },
6909       { BFD_RELOC_MIPS_HIGHEST, BFD_RELOC_MICROMIPS_HIGHEST },
6910       { BFD_RELOC_MIPS_HIGHER, BFD_RELOC_MICROMIPS_HIGHER },
6911       { BFD_RELOC_MIPS_SCN_DISP, BFD_RELOC_MICROMIPS_SCN_DISP },
6912       { BFD_RELOC_MIPS_TLS_GD, BFD_RELOC_MICROMIPS_TLS_GD },
6913       { BFD_RELOC_MIPS_TLS_LDM, BFD_RELOC_MICROMIPS_TLS_LDM },
6914       { BFD_RELOC_MIPS_TLS_DTPREL_HI16, BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16 },
6915       { BFD_RELOC_MIPS_TLS_DTPREL_LO16, BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16 },
6916       { BFD_RELOC_MIPS_TLS_GOTTPREL, BFD_RELOC_MICROMIPS_TLS_GOTTPREL },
6917       { BFD_RELOC_MIPS_TLS_TPREL_HI16, BFD_RELOC_MICROMIPS_TLS_TPREL_HI16 },
6918       { BFD_RELOC_MIPS_TLS_TPREL_LO16, BFD_RELOC_MICROMIPS_TLS_TPREL_LO16 }
6919     };
6920   bfd_reloc_code_real_type r;
6921   size_t i;
6922
6923   if (!mips_opts.micromips)
6924     return reloc;
6925   for (i = 0; i < ARRAY_SIZE (relocs); i++)
6926     {
6927       r = relocs[i][0];
6928       if (r > reloc)
6929         return reloc;
6930       if (r == reloc)
6931         return relocs[i][1];
6932     }
6933   return reloc;
6934 }
6935
6936 /* Try to resolve relocation RELOC against constant OPERAND at assembly time.
6937    Return true on success, storing the resolved value in RESULT.  */
6938
6939 static bfd_boolean
6940 calculate_reloc (bfd_reloc_code_real_type reloc, offsetT operand,
6941                  offsetT *result)
6942 {
6943   switch (reloc)
6944     {
6945     case BFD_RELOC_MIPS_HIGHEST:
6946     case BFD_RELOC_MICROMIPS_HIGHEST:
6947       *result = ((operand + 0x800080008000ull) >> 48) & 0xffff;
6948       return TRUE;
6949
6950     case BFD_RELOC_MIPS_HIGHER:
6951     case BFD_RELOC_MICROMIPS_HIGHER:
6952       *result = ((operand + 0x80008000ull) >> 32) & 0xffff;
6953       return TRUE;
6954
6955     case BFD_RELOC_HI16_S:
6956     case BFD_RELOC_MICROMIPS_HI16_S:
6957     case BFD_RELOC_MIPS16_HI16_S:
6958       *result = ((operand + 0x8000) >> 16) & 0xffff;
6959       return TRUE;
6960
6961     case BFD_RELOC_HI16:
6962     case BFD_RELOC_MICROMIPS_HI16:
6963     case BFD_RELOC_MIPS16_HI16:
6964       *result = (operand >> 16) & 0xffff;
6965       return TRUE;
6966
6967     case BFD_RELOC_LO16:
6968     case BFD_RELOC_MICROMIPS_LO16:
6969     case BFD_RELOC_MIPS16_LO16:
6970       *result = operand & 0xffff;
6971       return TRUE;
6972
6973     case BFD_RELOC_UNUSED:
6974       *result = operand;
6975       return TRUE;
6976
6977     default:
6978       return FALSE;
6979     }
6980 }
6981
6982 /* Output an instruction.  IP is the instruction information.
6983    ADDRESS_EXPR is an operand of the instruction to be used with
6984    RELOC_TYPE.  EXPANSIONP is true if the instruction is part of
6985    a macro expansion.  */
6986
6987 static void
6988 append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
6989              bfd_reloc_code_real_type *reloc_type, bfd_boolean expansionp)
6990 {
6991   unsigned long prev_pinfo2, pinfo;
6992   bfd_boolean relaxed_branch = FALSE;
6993   enum append_method method;
6994   bfd_boolean relax32;
6995   int branch_disp;
6996
6997   if (mips_fix_loongson2f && !HAVE_CODE_COMPRESSION)
6998     fix_loongson2f (ip);
6999
7000   file_ase_mips16 |= mips_opts.mips16;
7001   file_ase_micromips |= mips_opts.micromips;
7002
7003   prev_pinfo2 = history[0].insn_mo->pinfo2;
7004   pinfo = ip->insn_mo->pinfo;
7005
7006   if (mips_opts.micromips
7007       && !expansionp
7008       && (((prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
7009            && micromips_insn_length (ip->insn_mo) != 2)
7010           || ((prev_pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
7011               && micromips_insn_length (ip->insn_mo) != 4)))
7012     as_warn (_("wrong size instruction in a %u-bit branch delay slot"),
7013              (prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0 ? 16 : 32);
7014
7015   if (address_expr == NULL)
7016     ip->complete_p = 1;
7017   else if (reloc_type[0] <= BFD_RELOC_UNUSED
7018            && reloc_type[1] == BFD_RELOC_UNUSED
7019            && reloc_type[2] == BFD_RELOC_UNUSED
7020            && address_expr->X_op == O_constant)
7021     {
7022       switch (*reloc_type)
7023         {
7024         case BFD_RELOC_MIPS_JMP:
7025           {
7026             int shift;
7027
7028             shift = mips_opts.micromips ? 1 : 2;
7029             if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
7030               as_bad (_("jump to misaligned address (0x%lx)"),
7031                       (unsigned long) address_expr->X_add_number);
7032             ip->insn_opcode |= ((address_expr->X_add_number >> shift)
7033                                 & 0x3ffffff);
7034             ip->complete_p = 1;
7035           }
7036           break;
7037
7038         case BFD_RELOC_MIPS16_JMP:
7039           if ((address_expr->X_add_number & 3) != 0)
7040             as_bad (_("jump to misaligned address (0x%lx)"),
7041                     (unsigned long) address_expr->X_add_number);
7042           ip->insn_opcode |=
7043             (((address_expr->X_add_number & 0x7c0000) << 3)
7044                | ((address_expr->X_add_number & 0xf800000) >> 7)
7045                | ((address_expr->X_add_number & 0x3fffc) >> 2));
7046           ip->complete_p = 1;
7047           break;
7048
7049         case BFD_RELOC_16_PCREL_S2:
7050           {
7051             int shift;
7052
7053             shift = mips_opts.micromips ? 1 : 2;
7054             if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
7055               as_bad (_("branch to misaligned address (0x%lx)"),
7056                       (unsigned long) address_expr->X_add_number);
7057             if (!mips_relax_branch)
7058               {
7059                 if ((address_expr->X_add_number + (1 << (shift + 15)))
7060                     & ~((1 << (shift + 16)) - 1))
7061                   as_bad (_("branch address range overflow (0x%lx)"),
7062                           (unsigned long) address_expr->X_add_number);
7063                 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
7064                                     & 0xffff);
7065               }
7066           }
7067           break;
7068
7069         case BFD_RELOC_MIPS_21_PCREL_S2:
7070           {
7071             int shift;
7072
7073             shift = 2;
7074             if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
7075               as_bad (_("branch to misaligned address (0x%lx)"),
7076                       (unsigned long) address_expr->X_add_number);
7077             if ((address_expr->X_add_number + (1 << (shift + 20)))
7078                 & ~((1 << (shift + 21)) - 1))
7079               as_bad (_("branch address range overflow (0x%lx)"),
7080                       (unsigned long) address_expr->X_add_number);
7081             ip->insn_opcode |= ((address_expr->X_add_number >> shift)
7082                                 & 0x1fffff);
7083           }
7084           break;
7085
7086         case BFD_RELOC_MIPS_26_PCREL_S2:
7087           {
7088             int shift;
7089
7090             shift = 2;
7091             if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
7092               as_bad (_("branch to misaligned address (0x%lx)"),
7093                       (unsigned long) address_expr->X_add_number);
7094             if ((address_expr->X_add_number + (1 << (shift + 25)))
7095                 & ~((1 << (shift + 26)) - 1))
7096               as_bad (_("branch address range overflow (0x%lx)"),
7097                       (unsigned long) address_expr->X_add_number);
7098             ip->insn_opcode |= ((address_expr->X_add_number >> shift)
7099                                 & 0x3ffffff);
7100           }
7101           break;
7102
7103         default:
7104           {
7105             offsetT value;
7106
7107             if (calculate_reloc (*reloc_type, address_expr->X_add_number,
7108                                  &value))
7109               {
7110                 ip->insn_opcode |= value & 0xffff;
7111                 ip->complete_p = 1;
7112               }
7113           }
7114           break;
7115         }
7116     }
7117
7118   if (mips_relax.sequence != 2 && !mips_opts.noreorder)
7119     {
7120       /* There are a lot of optimizations we could do that we don't.
7121          In particular, we do not, in general, reorder instructions.
7122          If you use gcc with optimization, it will reorder
7123          instructions and generally do much more optimization then we
7124          do here; repeating all that work in the assembler would only
7125          benefit hand written assembly code, and does not seem worth
7126          it.  */
7127       int nops = (mips_optimize == 0
7128                   ? nops_for_insn (0, history, NULL)
7129                   : nops_for_insn_or_target (0, history, ip));
7130       if (nops > 0)
7131         {
7132           fragS *old_frag;
7133           unsigned long old_frag_offset;
7134           int i;
7135
7136           old_frag = frag_now;
7137           old_frag_offset = frag_now_fix ();
7138
7139           for (i = 0; i < nops; i++)
7140             add_fixed_insn (NOP_INSN);
7141           insert_into_history (0, nops, NOP_INSN);
7142
7143           if (listing)
7144             {
7145               listing_prev_line ();
7146               /* We may be at the start of a variant frag.  In case we
7147                  are, make sure there is enough space for the frag
7148                  after the frags created by listing_prev_line.  The
7149                  argument to frag_grow here must be at least as large
7150                  as the argument to all other calls to frag_grow in
7151                  this file.  We don't have to worry about being in the
7152                  middle of a variant frag, because the variants insert
7153                  all needed nop instructions themselves.  */
7154               frag_grow (40);
7155             }
7156
7157           mips_move_text_labels ();
7158
7159 #ifndef NO_ECOFF_DEBUGGING
7160           if (ECOFF_DEBUGGING)
7161             ecoff_fix_loc (old_frag, old_frag_offset);
7162 #endif
7163         }
7164     }
7165   else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
7166     {
7167       int nops;
7168
7169       /* Work out how many nops in prev_nop_frag are needed by IP,
7170          ignoring hazards generated by the first prev_nop_frag_since
7171          instructions.  */
7172       nops = nops_for_insn_or_target (prev_nop_frag_since, history, ip);
7173       gas_assert (nops <= prev_nop_frag_holds);
7174
7175       /* Enforce NOPS as a minimum.  */
7176       if (nops > prev_nop_frag_required)
7177         prev_nop_frag_required = nops;
7178
7179       if (prev_nop_frag_holds == prev_nop_frag_required)
7180         {
7181           /* Settle for the current number of nops.  Update the history
7182              accordingly (for the benefit of any future .set reorder code).  */
7183           prev_nop_frag = NULL;
7184           insert_into_history (prev_nop_frag_since,
7185                                prev_nop_frag_holds, NOP_INSN);
7186         }
7187       else
7188         {
7189           /* Allow this instruction to replace one of the nops that was
7190              tentatively added to prev_nop_frag.  */
7191           prev_nop_frag->fr_fix -= NOP_INSN_SIZE;
7192           prev_nop_frag_holds--;
7193           prev_nop_frag_since++;
7194         }
7195     }
7196
7197   method = get_append_method (ip, address_expr, reloc_type);
7198   branch_disp = method == APPEND_SWAP ? insn_length (history) : 0;
7199
7200   dwarf2_emit_insn (0);
7201   /* We want MIPS16 and microMIPS debug info to use ISA-encoded addresses,
7202      so "move" the instruction address accordingly.
7203
7204      Also, it doesn't seem appropriate for the assembler to reorder .loc
7205      entries.  If this instruction is a branch that we are going to swap
7206      with the previous instruction, the two instructions should be
7207      treated as a unit, and the debug information for both instructions
7208      should refer to the start of the branch sequence.  Using the
7209      current position is certainly wrong when swapping a 32-bit branch
7210      and a 16-bit delay slot, since the current position would then be
7211      in the middle of a branch.  */
7212   dwarf2_move_insn ((HAVE_CODE_COMPRESSION ? 1 : 0) - branch_disp);
7213
7214   relax32 = (mips_relax_branch
7215              /* Don't try branch relaxation within .set nomacro, or within
7216                 .set noat if we use $at for PIC computations.  If it turns
7217                 out that the branch was out-of-range, we'll get an error.  */
7218              && !mips_opts.warn_about_macros
7219              && (mips_opts.at || mips_pic == NO_PIC)
7220              /* Don't relax BPOSGE32/64 or BC1ANY2T/F and BC1ANY4T/F
7221                 as they have no complementing branches.  */
7222              && !(ip->insn_mo->ase & (ASE_MIPS3D | ASE_DSP64 | ASE_DSP)));
7223
7224   if (!HAVE_CODE_COMPRESSION
7225       && address_expr
7226       && relax32
7227       && *reloc_type == BFD_RELOC_16_PCREL_S2
7228       && delayed_branch_p (ip))
7229     {
7230       relaxed_branch = TRUE;
7231       add_relaxed_insn (ip, (relaxed_branch_length
7232                              (NULL, NULL,
7233                               uncond_branch_p (ip) ? -1
7234                               : branch_likely_p (ip) ? 1
7235                               : 0)), 4,
7236                         RELAX_BRANCH_ENCODE
7237                         (AT,
7238                          uncond_branch_p (ip),
7239                          branch_likely_p (ip),
7240                          pinfo & INSN_WRITE_GPR_31,
7241                          0),
7242                         address_expr->X_add_symbol,
7243                         address_expr->X_add_number);
7244       *reloc_type = BFD_RELOC_UNUSED;
7245     }
7246   else if (mips_opts.micromips
7247            && address_expr
7248            && ((relax32 && *reloc_type == BFD_RELOC_16_PCREL_S2)
7249                || *reloc_type > BFD_RELOC_UNUSED)
7250            && (delayed_branch_p (ip) || compact_branch_p (ip))
7251            /* Don't try branch relaxation when users specify
7252               16-bit/32-bit instructions.  */
7253            && !forced_insn_length)
7254     {
7255       bfd_boolean relax16 = *reloc_type > BFD_RELOC_UNUSED;
7256       int type = relax16 ? *reloc_type - BFD_RELOC_UNUSED : 0;
7257       int uncond = uncond_branch_p (ip) ? -1 : 0;
7258       int compact = compact_branch_p (ip);
7259       int al = pinfo & INSN_WRITE_GPR_31;
7260       int length32;
7261
7262       gas_assert (address_expr != NULL);
7263       gas_assert (!mips_relax.sequence);
7264
7265       relaxed_branch = TRUE;
7266       length32 = relaxed_micromips_32bit_branch_length (NULL, NULL, uncond);
7267       add_relaxed_insn (ip, relax32 ? length32 : 4, relax16 ? 2 : 4,
7268                         RELAX_MICROMIPS_ENCODE (type, AT, uncond, compact, al,
7269                                                 relax32, 0, 0),
7270                         address_expr->X_add_symbol,
7271                         address_expr->X_add_number);
7272       *reloc_type = BFD_RELOC_UNUSED;
7273     }
7274   else if (mips_opts.mips16 && *reloc_type > BFD_RELOC_UNUSED)
7275     {
7276       /* We need to set up a variant frag.  */
7277       gas_assert (address_expr != NULL);
7278       add_relaxed_insn (ip, 4, 0,
7279                         RELAX_MIPS16_ENCODE
7280                         (*reloc_type - BFD_RELOC_UNUSED,
7281                          forced_insn_length == 2, forced_insn_length == 4,
7282                          delayed_branch_p (&history[0]),
7283                          history[0].mips16_absolute_jump_p),
7284                         make_expr_symbol (address_expr), 0);
7285     }
7286   else if (mips_opts.mips16 && insn_length (ip) == 2)
7287     {
7288       if (!delayed_branch_p (ip))
7289         /* Make sure there is enough room to swap this instruction with
7290            a following jump instruction.  */
7291         frag_grow (6);
7292       add_fixed_insn (ip);
7293     }
7294   else
7295     {
7296       if (mips_opts.mips16
7297           && mips_opts.noreorder
7298           && delayed_branch_p (&history[0]))
7299         as_warn (_("extended instruction in delay slot"));
7300
7301       if (mips_relax.sequence)
7302         {
7303           /* If we've reached the end of this frag, turn it into a variant
7304              frag and record the information for the instructions we've
7305              written so far.  */
7306           if (frag_room () < 4)
7307             relax_close_frag ();
7308           mips_relax.sizes[mips_relax.sequence - 1] += insn_length (ip);
7309         }
7310
7311       if (mips_relax.sequence != 2)
7312         {
7313           if (mips_macro_warning.first_insn_sizes[0] == 0)
7314             mips_macro_warning.first_insn_sizes[0] = insn_length (ip);
7315           mips_macro_warning.sizes[0] += insn_length (ip);
7316           mips_macro_warning.insns[0]++;
7317         }
7318       if (mips_relax.sequence != 1)
7319         {
7320           if (mips_macro_warning.first_insn_sizes[1] == 0)
7321             mips_macro_warning.first_insn_sizes[1] = insn_length (ip);
7322           mips_macro_warning.sizes[1] += insn_length (ip);
7323           mips_macro_warning.insns[1]++;
7324         }
7325
7326       if (mips_opts.mips16)
7327         {
7328           ip->fixed_p = 1;
7329           ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
7330         }
7331       add_fixed_insn (ip);
7332     }
7333
7334   if (!ip->complete_p && *reloc_type < BFD_RELOC_UNUSED)
7335     {
7336       bfd_reloc_code_real_type final_type[3];
7337       reloc_howto_type *howto0;
7338       reloc_howto_type *howto;
7339       int i;
7340
7341       /* Perform any necessary conversion to microMIPS relocations
7342          and find out how many relocations there actually are.  */
7343       for (i = 0; i < 3 && reloc_type[i] != BFD_RELOC_UNUSED; i++)
7344         final_type[i] = micromips_map_reloc (reloc_type[i]);
7345
7346       /* In a compound relocation, it is the final (outermost)
7347          operator that determines the relocated field.  */
7348       howto = howto0 = bfd_reloc_type_lookup (stdoutput, final_type[i - 1]);
7349       if (!howto)
7350         abort ();
7351
7352       if (i > 1)
7353         howto0 = bfd_reloc_type_lookup (stdoutput, final_type[0]);
7354       ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
7355                                  bfd_get_reloc_size (howto),
7356                                  address_expr,
7357                                  howto0 && howto0->pc_relative,
7358                                  final_type[0]);
7359
7360       /* Tag symbols that have a R_MIPS16_26 relocation against them.  */
7361       if (final_type[0] == BFD_RELOC_MIPS16_JMP && ip->fixp[0]->fx_addsy)
7362         *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
7363
7364       /* These relocations can have an addend that won't fit in
7365          4 octets for 64bit assembly.  */
7366       if (GPR_SIZE == 64
7367           && ! howto->partial_inplace
7368           && (reloc_type[0] == BFD_RELOC_16
7369               || reloc_type[0] == BFD_RELOC_32
7370               || reloc_type[0] == BFD_RELOC_MIPS_JMP
7371               || reloc_type[0] == BFD_RELOC_GPREL16
7372               || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
7373               || reloc_type[0] == BFD_RELOC_GPREL32
7374               || reloc_type[0] == BFD_RELOC_64
7375               || reloc_type[0] == BFD_RELOC_CTOR
7376               || reloc_type[0] == BFD_RELOC_MIPS_SUB
7377               || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
7378               || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
7379               || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
7380               || reloc_type[0] == BFD_RELOC_MIPS_REL16
7381               || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
7382               || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
7383               || hi16_reloc_p (reloc_type[0])
7384               || lo16_reloc_p (reloc_type[0])))
7385         ip->fixp[0]->fx_no_overflow = 1;
7386
7387       /* These relocations can have an addend that won't fit in 2 octets.  */
7388       if (reloc_type[0] == BFD_RELOC_MICROMIPS_7_PCREL_S1
7389           || reloc_type[0] == BFD_RELOC_MICROMIPS_10_PCREL_S1)
7390         ip->fixp[0]->fx_no_overflow = 1;
7391
7392       if (mips_relax.sequence)
7393         {
7394           if (mips_relax.first_fixup == 0)
7395             mips_relax.first_fixup = ip->fixp[0];
7396         }
7397       else if (reloc_needs_lo_p (*reloc_type))
7398         {
7399           struct mips_hi_fixup *hi_fixup;
7400
7401           /* Reuse the last entry if it already has a matching %lo.  */
7402           hi_fixup = mips_hi_fixup_list;
7403           if (hi_fixup == 0
7404               || !fixup_has_matching_lo_p (hi_fixup->fixp))
7405             {
7406               hi_fixup = ((struct mips_hi_fixup *)
7407                           xmalloc (sizeof (struct mips_hi_fixup)));
7408               hi_fixup->next = mips_hi_fixup_list;
7409               mips_hi_fixup_list = hi_fixup;
7410             }
7411           hi_fixup->fixp = ip->fixp[0];
7412           hi_fixup->seg = now_seg;
7413         }
7414
7415       /* Add fixups for the second and third relocations, if given.
7416          Note that the ABI allows the second relocation to be
7417          against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC.  At the
7418          moment we only use RSS_UNDEF, but we could add support
7419          for the others if it ever becomes necessary.  */
7420       for (i = 1; i < 3; i++)
7421         if (reloc_type[i] != BFD_RELOC_UNUSED)
7422           {
7423             ip->fixp[i] = fix_new (ip->frag, ip->where,
7424                                    ip->fixp[0]->fx_size, NULL, 0,
7425                                    FALSE, final_type[i]);
7426
7427             /* Use fx_tcbit to mark compound relocs.  */
7428             ip->fixp[0]->fx_tcbit = 1;
7429             ip->fixp[i]->fx_tcbit = 1;
7430           }
7431     }
7432   install_insn (ip);
7433
7434   /* Update the register mask information.  */
7435   mips_gprmask |= gpr_read_mask (ip) | gpr_write_mask (ip);
7436   mips_cprmask[1] |= fpr_read_mask (ip) | fpr_write_mask (ip);
7437
7438   switch (method)
7439     {
7440     case APPEND_ADD:
7441       insert_into_history (0, 1, ip);
7442       break;
7443
7444     case APPEND_ADD_WITH_NOP:
7445       {
7446         struct mips_cl_insn *nop;
7447
7448         insert_into_history (0, 1, ip);
7449         nop = get_delay_slot_nop (ip);
7450         add_fixed_insn (nop);
7451         insert_into_history (0, 1, nop);
7452         if (mips_relax.sequence)
7453           mips_relax.sizes[mips_relax.sequence - 1] += insn_length (nop);
7454       }
7455       break;
7456
7457     case APPEND_ADD_COMPACT:
7458       /* Convert MIPS16 jr/jalr into a "compact" jump.  */
7459       gas_assert (mips_opts.mips16);
7460       ip->insn_opcode |= 0x0080;
7461       find_altered_mips16_opcode (ip);
7462       install_insn (ip);
7463       insert_into_history (0, 1, ip);
7464       break;
7465
7466     case APPEND_SWAP:
7467       {
7468         struct mips_cl_insn delay = history[0];
7469         if (mips_opts.mips16)
7470           {
7471             know (delay.frag == ip->frag);
7472             move_insn (ip, delay.frag, delay.where);
7473             move_insn (&delay, ip->frag, ip->where + insn_length (ip));
7474           }
7475         else if (relaxed_branch || delay.frag != ip->frag)
7476           {
7477             /* Add the delay slot instruction to the end of the
7478                current frag and shrink the fixed part of the
7479                original frag.  If the branch occupies the tail of
7480                the latter, move it backwards to cover the gap.  */
7481             delay.frag->fr_fix -= branch_disp;
7482             if (delay.frag == ip->frag)
7483               move_insn (ip, ip->frag, ip->where - branch_disp);
7484             add_fixed_insn (&delay);
7485           }
7486         else
7487           {
7488             move_insn (&delay, ip->frag,
7489                        ip->where - branch_disp + insn_length (ip));
7490             move_insn (ip, history[0].frag, history[0].where);
7491           }
7492         history[0] = *ip;
7493         delay.fixed_p = 1;
7494         insert_into_history (0, 1, &delay);
7495       }
7496       break;
7497     }
7498
7499   /* If we have just completed an unconditional branch, clear the history.  */
7500   if ((delayed_branch_p (&history[1]) && uncond_branch_p (&history[1]))
7501       || (compact_branch_p (&history[0]) && uncond_branch_p (&history[0])))
7502     {
7503       unsigned int i;
7504
7505       mips_no_prev_insn ();
7506
7507       for (i = 0; i < ARRAY_SIZE (history); i++)
7508         history[i].cleared_p = 1;
7509     }
7510
7511   /* We need to emit a label at the end of branch-likely macros.  */
7512   if (emit_branch_likely_macro)
7513     {
7514       emit_branch_likely_macro = FALSE;
7515       micromips_add_label ();
7516     }
7517
7518   /* We just output an insn, so the next one doesn't have a label.  */
7519   mips_clear_insn_labels ();
7520 }
7521
7522 /* Forget that there was any previous instruction or label.
7523    When BRANCH is true, the branch history is also flushed.  */
7524
7525 static void
7526 mips_no_prev_insn (void)
7527 {
7528   prev_nop_frag = NULL;
7529   insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
7530   mips_clear_insn_labels ();
7531 }
7532
7533 /* This function must be called before we emit something other than
7534    instructions.  It is like mips_no_prev_insn except that it inserts
7535    any NOPS that might be needed by previous instructions.  */
7536
7537 void
7538 mips_emit_delays (void)
7539 {
7540   if (! mips_opts.noreorder)
7541     {
7542       int nops = nops_for_insn (0, history, NULL);
7543       if (nops > 0)
7544         {
7545           while (nops-- > 0)
7546             add_fixed_insn (NOP_INSN);
7547           mips_move_text_labels ();
7548         }
7549     }
7550   mips_no_prev_insn ();
7551 }
7552
7553 /* Start a (possibly nested) noreorder block.  */
7554
7555 static void
7556 start_noreorder (void)
7557 {
7558   if (mips_opts.noreorder == 0)
7559     {
7560       unsigned int i;
7561       int nops;
7562
7563       /* None of the instructions before the .set noreorder can be moved.  */
7564       for (i = 0; i < ARRAY_SIZE (history); i++)
7565         history[i].fixed_p = 1;
7566
7567       /* Insert any nops that might be needed between the .set noreorder
7568          block and the previous instructions.  We will later remove any
7569          nops that turn out not to be needed.  */
7570       nops = nops_for_insn (0, history, NULL);
7571       if (nops > 0)
7572         {
7573           if (mips_optimize != 0)
7574             {
7575               /* Record the frag which holds the nop instructions, so
7576                  that we can remove them if we don't need them.  */
7577               frag_grow (nops * NOP_INSN_SIZE);
7578               prev_nop_frag = frag_now;
7579               prev_nop_frag_holds = nops;
7580               prev_nop_frag_required = 0;
7581               prev_nop_frag_since = 0;
7582             }
7583
7584           for (; nops > 0; --nops)
7585             add_fixed_insn (NOP_INSN);
7586
7587           /* Move on to a new frag, so that it is safe to simply
7588              decrease the size of prev_nop_frag.  */
7589           frag_wane (frag_now);
7590           frag_new (0);
7591           mips_move_text_labels ();
7592         }
7593       mips_mark_labels ();
7594       mips_clear_insn_labels ();
7595     }
7596   mips_opts.noreorder++;
7597   mips_any_noreorder = 1;
7598 }
7599
7600 /* End a nested noreorder block.  */
7601
7602 static void
7603 end_noreorder (void)
7604 {
7605   mips_opts.noreorder--;
7606   if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
7607     {
7608       /* Commit to inserting prev_nop_frag_required nops and go back to
7609          handling nop insertion the .set reorder way.  */
7610       prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
7611                                 * NOP_INSN_SIZE);
7612       insert_into_history (prev_nop_frag_since,
7613                            prev_nop_frag_required, NOP_INSN);
7614       prev_nop_frag = NULL;
7615     }
7616 }
7617
7618 /* Sign-extend 32-bit mode constants that have bit 31 set and all
7619    higher bits unset.  */
7620
7621 static void
7622 normalize_constant_expr (expressionS *ex)
7623 {
7624   if (ex->X_op == O_constant
7625       && IS_ZEXT_32BIT_NUM (ex->X_add_number))
7626     ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
7627                         - 0x80000000);
7628 }
7629
7630 /* Sign-extend 32-bit mode address offsets that have bit 31 set and
7631    all higher bits unset.  */
7632
7633 static void
7634 normalize_address_expr (expressionS *ex)
7635 {
7636   if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
7637         || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
7638       && IS_ZEXT_32BIT_NUM (ex->X_add_number))
7639     ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
7640                         - 0x80000000);
7641 }
7642
7643 /* Try to match TOKENS against OPCODE, storing the result in INSN.
7644    Return true if the match was successful.
7645
7646    OPCODE_EXTRA is a value that should be ORed into the opcode
7647    (used for VU0 channel suffixes, etc.).  MORE_ALTS is true if
7648    there are more alternatives after OPCODE and SOFT_MATCH is
7649    as for mips_arg_info.  */
7650
7651 static bfd_boolean
7652 match_insn (struct mips_cl_insn *insn, const struct mips_opcode *opcode,
7653             struct mips_operand_token *tokens, unsigned int opcode_extra,
7654             bfd_boolean lax_match, bfd_boolean complete_p)
7655 {
7656   const char *args;
7657   struct mips_arg_info arg;
7658   const struct mips_operand *operand;
7659   char c;
7660
7661   imm_expr.X_op = O_absent;
7662   offset_expr.X_op = O_absent;
7663   offset_reloc[0] = BFD_RELOC_UNUSED;
7664   offset_reloc[1] = BFD_RELOC_UNUSED;
7665   offset_reloc[2] = BFD_RELOC_UNUSED;
7666
7667   create_insn (insn, opcode);
7668   /* When no opcode suffix is specified, assume ".xyzw". */
7669   if ((opcode->pinfo2 & INSN2_VU0_CHANNEL_SUFFIX) != 0 && opcode_extra == 0)
7670     insn->insn_opcode |= 0xf << mips_vu0_channel_mask.lsb;
7671   else
7672     insn->insn_opcode |= opcode_extra;
7673   memset (&arg, 0, sizeof (arg));
7674   arg.insn = insn;
7675   arg.token = tokens;
7676   arg.argnum = 1;
7677   arg.last_regno = ILLEGAL_REG;
7678   arg.dest_regno = ILLEGAL_REG;
7679   arg.lax_match = lax_match;
7680   for (args = opcode->args;; ++args)
7681     {
7682       if (arg.token->type == OT_END)
7683         {
7684           /* Handle unary instructions in which only one operand is given.
7685              The source is then the same as the destination.  */
7686           if (arg.opnum == 1 && *args == ',')
7687             {
7688               operand = (mips_opts.micromips
7689                          ? decode_micromips_operand (args + 1)
7690                          : decode_mips_operand (args + 1));
7691               if (operand && mips_optional_operand_p (operand))
7692                 {
7693                   arg.token = tokens;
7694                   arg.argnum = 1;
7695                   continue;
7696                 }
7697             }
7698
7699           /* Treat elided base registers as $0.  */
7700           if (strcmp (args, "(b)") == 0)
7701             args += 3;
7702
7703           if (args[0] == '+')
7704             switch (args[1])
7705               {
7706               case 'K':
7707               case 'N':
7708                 /* The register suffix is optional. */
7709                 args += 2;
7710                 break;
7711               }
7712
7713           /* Fail the match if there were too few operands.  */
7714           if (*args)
7715             return FALSE;
7716
7717           /* Successful match.  */
7718           if (!complete_p)
7719             return TRUE;
7720           clear_insn_error ();
7721           if (arg.dest_regno == arg.last_regno
7722               && strncmp (insn->insn_mo->name, "jalr", 4) == 0)
7723             {
7724               if (arg.opnum == 2)
7725                 set_insn_error
7726                   (0, _("source and destination must be different"));
7727               else if (arg.last_regno == 31)
7728                 set_insn_error
7729                   (0, _("a destination register must be supplied"));
7730             }
7731           else if (arg.last_regno == 31
7732                    && (strncmp (insn->insn_mo->name, "bltzal", 6) == 0
7733                        || strncmp (insn->insn_mo->name, "bgezal", 6) == 0))
7734             set_insn_error (0, _("the source register must not be $31"));
7735           check_completed_insn (&arg);
7736           return TRUE;
7737         }
7738
7739       /* Fail the match if the line has too many operands.   */
7740       if (*args == 0)
7741         return FALSE;
7742
7743       /* Handle characters that need to match exactly.  */
7744       if (*args == '(' || *args == ')' || *args == ',')
7745         {
7746           if (match_char (&arg, *args))
7747             continue;
7748           return FALSE;
7749         }
7750       if (*args == '#')
7751         {
7752           ++args;
7753           if (arg.token->type == OT_DOUBLE_CHAR
7754               && arg.token->u.ch == *args)
7755             {
7756               ++arg.token;
7757               continue;
7758             }
7759           return FALSE;
7760         }
7761
7762       /* Handle special macro operands.  Work out the properties of
7763          other operands.  */
7764       arg.opnum += 1;
7765       switch (*args)
7766         {
7767         case '-':
7768           switch (args[1])
7769             {
7770             case 'A':
7771               *offset_reloc = BFD_RELOC_MIPS_19_PCREL_S2;
7772               break;
7773
7774             case 'B':
7775               *offset_reloc = BFD_RELOC_MIPS_18_PCREL_S3;
7776               break;
7777             }
7778           break;
7779
7780         case '+':
7781           switch (args[1])
7782             {
7783             case 'i':
7784               *offset_reloc = BFD_RELOC_MIPS_JMP;
7785               break;
7786
7787             case '\'':
7788               *offset_reloc = BFD_RELOC_MIPS_26_PCREL_S2;
7789               break;
7790
7791             case '\"':
7792               *offset_reloc = BFD_RELOC_MIPS_21_PCREL_S2;
7793               break;
7794             }
7795           break;
7796
7797         case 'I':
7798           if (!match_const_int (&arg, &imm_expr.X_add_number))
7799             return FALSE;
7800           imm_expr.X_op = O_constant;
7801           if (GPR_SIZE == 32)
7802             normalize_constant_expr (&imm_expr);
7803           continue;
7804
7805         case 'A':
7806           if (arg.token->type == OT_CHAR && arg.token->u.ch == '(')
7807             {
7808               /* Assume that the offset has been elided and that what
7809                  we saw was a base register.  The match will fail later
7810                  if that assumption turns out to be wrong.  */
7811               offset_expr.X_op = O_constant;
7812               offset_expr.X_add_number = 0;
7813             }
7814           else
7815             {
7816               if (!match_expression (&arg, &offset_expr, offset_reloc))
7817                 return FALSE;
7818               normalize_address_expr (&offset_expr);
7819             }
7820           continue;
7821
7822         case 'F':
7823           if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7824                                      8, TRUE))
7825             return FALSE;
7826           continue;
7827
7828         case 'L':
7829           if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7830                                      8, FALSE))
7831             return FALSE;
7832           continue;
7833
7834         case 'f':
7835           if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7836                                      4, TRUE))
7837             return FALSE;
7838           continue;
7839
7840         case 'l':
7841           if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7842                                      4, FALSE))
7843             return FALSE;
7844           continue;
7845
7846         case 'p':
7847           *offset_reloc = BFD_RELOC_16_PCREL_S2;
7848           break;
7849
7850         case 'a':
7851           *offset_reloc = BFD_RELOC_MIPS_JMP;
7852           break;
7853
7854         case 'm':
7855           gas_assert (mips_opts.micromips);
7856           c = args[1];
7857           switch (c)
7858             {
7859             case 'D':
7860             case 'E':
7861               if (!forced_insn_length)
7862                 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
7863               else if (c == 'D')
7864                 *offset_reloc = BFD_RELOC_MICROMIPS_10_PCREL_S1;
7865               else
7866                 *offset_reloc = BFD_RELOC_MICROMIPS_7_PCREL_S1;
7867               break;
7868             }
7869           break;
7870         }
7871
7872       operand = (mips_opts.micromips
7873                  ? decode_micromips_operand (args)
7874                  : decode_mips_operand (args));
7875       if (!operand)
7876         abort ();
7877
7878       /* Skip prefixes.  */
7879       if (*args == '+' || *args == 'm' || *args == '-')
7880         args++;
7881
7882       if (mips_optional_operand_p (operand)
7883           && args[1] == ','
7884           && (arg.token[0].type != OT_REG
7885               || arg.token[1].type == OT_END))
7886         {
7887           /* Assume that the register has been elided and is the
7888              same as the first operand.  */
7889           arg.token = tokens;
7890           arg.argnum = 1;
7891         }
7892
7893       if (!match_operand (&arg, operand))
7894         return FALSE;
7895     }
7896 }
7897
7898 /* Like match_insn, but for MIPS16.  */
7899
7900 static bfd_boolean
7901 match_mips16_insn (struct mips_cl_insn *insn, const struct mips_opcode *opcode,
7902                    struct mips_operand_token *tokens)
7903 {
7904   const char *args;
7905   const struct mips_operand *operand;
7906   const struct mips_operand *ext_operand;
7907   struct mips_arg_info arg;
7908   int relax_char;
7909
7910   create_insn (insn, opcode);
7911   imm_expr.X_op = O_absent;
7912   offset_expr.X_op = O_absent;
7913   offset_reloc[0] = BFD_RELOC_UNUSED;
7914   offset_reloc[1] = BFD_RELOC_UNUSED;
7915   offset_reloc[2] = BFD_RELOC_UNUSED;
7916   relax_char = 0;
7917
7918   memset (&arg, 0, sizeof (arg));
7919   arg.insn = insn;
7920   arg.token = tokens;
7921   arg.argnum = 1;
7922   arg.last_regno = ILLEGAL_REG;
7923   arg.dest_regno = ILLEGAL_REG;
7924   relax_char = 0;
7925   for (args = opcode->args;; ++args)
7926     {
7927       int c;
7928
7929       if (arg.token->type == OT_END)
7930         {
7931           offsetT value;
7932
7933           /* Handle unary instructions in which only one operand is given.
7934              The source is then the same as the destination.  */
7935           if (arg.opnum == 1 && *args == ',')
7936             {
7937               operand = decode_mips16_operand (args[1], FALSE);
7938               if (operand && mips_optional_operand_p (operand))
7939                 {
7940                   arg.token = tokens;
7941                   arg.argnum = 1;
7942                   continue;
7943                 }
7944             }
7945
7946           /* Fail the match if there were too few operands.  */
7947           if (*args)
7948             return FALSE;
7949
7950           /* Successful match.  Stuff the immediate value in now, if
7951              we can.  */
7952           clear_insn_error ();
7953           if (opcode->pinfo == INSN_MACRO)
7954             {
7955               gas_assert (relax_char == 0 || relax_char == 'p');
7956               gas_assert (*offset_reloc == BFD_RELOC_UNUSED);
7957             }
7958           else if (relax_char
7959                    && offset_expr.X_op == O_constant
7960                    && calculate_reloc (*offset_reloc,
7961                                        offset_expr.X_add_number,
7962                                        &value))
7963             {
7964               mips16_immed (NULL, 0, relax_char, *offset_reloc, value,
7965                             forced_insn_length, &insn->insn_opcode);
7966               offset_expr.X_op = O_absent;
7967               *offset_reloc = BFD_RELOC_UNUSED;
7968             }
7969           else if (relax_char && *offset_reloc != BFD_RELOC_UNUSED)
7970             {
7971               if (forced_insn_length == 2)
7972                 set_insn_error (0, _("invalid unextended operand value"));
7973               forced_insn_length = 4;
7974               insn->insn_opcode |= MIPS16_EXTEND;
7975             }
7976           else if (relax_char)
7977             *offset_reloc = (int) BFD_RELOC_UNUSED + relax_char;
7978
7979           check_completed_insn (&arg);
7980           return TRUE;
7981         }
7982
7983       /* Fail the match if the line has too many operands.   */
7984       if (*args == 0)
7985         return FALSE;
7986
7987       /* Handle characters that need to match exactly.  */
7988       if (*args == '(' || *args == ')' || *args == ',')
7989         {
7990           if (match_char (&arg, *args))
7991             continue;
7992           return FALSE;
7993         }
7994
7995       arg.opnum += 1;
7996       c = *args;
7997       switch (c)
7998         {
7999         case 'p':
8000         case 'q':
8001         case 'A':
8002         case 'B':
8003         case 'E':
8004           relax_char = c;
8005           break;
8006
8007         case 'I':
8008           if (!match_const_int (&arg, &imm_expr.X_add_number))
8009             return FALSE;
8010           imm_expr.X_op = O_constant;
8011           if (GPR_SIZE == 32)
8012             normalize_constant_expr (&imm_expr);
8013           continue;
8014
8015         case 'a':
8016         case 'i':
8017           *offset_reloc = BFD_RELOC_MIPS16_JMP;
8018           insn->insn_opcode <<= 16;
8019           break;
8020         }
8021
8022       operand = decode_mips16_operand (c, FALSE);
8023       if (!operand)
8024         abort ();
8025
8026       /* '6' is a special case.  It is used for BREAK and SDBBP,
8027          whose operands are only meaningful to the software that decodes
8028          them.  This means that there is no architectural reason why
8029          they cannot be prefixed by EXTEND, but in practice,
8030          exception handlers will only look at the instruction
8031          itself.  We therefore allow '6' to be extended when
8032          disassembling but not when assembling.  */
8033       if (operand->type != OP_PCREL && c != '6')
8034         {
8035           ext_operand = decode_mips16_operand (c, TRUE);
8036           if (operand != ext_operand)
8037             {
8038               if (arg.token->type == OT_CHAR && arg.token->u.ch == '(')
8039                 {
8040                   offset_expr.X_op = O_constant;
8041                   offset_expr.X_add_number = 0;
8042                   relax_char = c;
8043                   continue;
8044                 }
8045
8046               /* We need the OT_INTEGER check because some MIPS16
8047                  immediate variants are listed before the register ones.  */
8048               if (arg.token->type != OT_INTEGER
8049                   || !match_expression (&arg, &offset_expr, offset_reloc))
8050                 return FALSE;
8051
8052               /* '8' is used for SLTI(U) and has traditionally not
8053                  been allowed to take relocation operators.  */
8054               if (offset_reloc[0] != BFD_RELOC_UNUSED
8055                   && (ext_operand->size != 16 || c == '8'))
8056                 return FALSE;
8057
8058               relax_char = c;
8059               continue;
8060             }
8061         }
8062
8063       if (mips_optional_operand_p (operand)
8064           && args[1] == ','
8065           && (arg.token[0].type != OT_REG
8066               || arg.token[1].type == OT_END))
8067         {
8068           /* Assume that the register has been elided and is the
8069              same as the first operand.  */
8070           arg.token = tokens;
8071           arg.argnum = 1;
8072         }
8073
8074       if (!match_operand (&arg, operand))
8075         return FALSE;
8076     }
8077 }
8078
8079 /* Record that the current instruction is invalid for the current ISA.  */
8080
8081 static void
8082 match_invalid_for_isa (void)
8083 {
8084   set_insn_error_ss
8085     (0, _("opcode not supported on this processor: %s (%s)"),
8086      mips_cpu_info_from_arch (mips_opts.arch)->name,
8087      mips_cpu_info_from_isa (mips_opts.isa)->name);
8088 }
8089
8090 /* Try to match TOKENS against a series of opcode entries, starting at FIRST.
8091    Return true if a definite match or failure was found, storing any match
8092    in INSN.  OPCODE_EXTRA is a value that should be ORed into the opcode
8093    (to handle things like VU0 suffixes).  LAX_MATCH is true if we have already
8094    tried and failed to match under normal conditions and now want to try a
8095    more relaxed match.  */
8096
8097 static bfd_boolean
8098 match_insns (struct mips_cl_insn *insn, const struct mips_opcode *first,
8099              const struct mips_opcode *past, struct mips_operand_token *tokens,
8100              int opcode_extra, bfd_boolean lax_match)
8101 {
8102   const struct mips_opcode *opcode;
8103   const struct mips_opcode *invalid_delay_slot;
8104   bfd_boolean seen_valid_for_isa, seen_valid_for_size;
8105
8106   /* Search for a match, ignoring alternatives that don't satisfy the
8107      current ISA or forced_length.  */
8108   invalid_delay_slot = 0;
8109   seen_valid_for_isa = FALSE;
8110   seen_valid_for_size = FALSE;
8111   opcode = first;
8112   do
8113     {
8114       gas_assert (strcmp (opcode->name, first->name) == 0);
8115       if (is_opcode_valid (opcode))
8116         {
8117           seen_valid_for_isa = TRUE;
8118           if (is_size_valid (opcode))
8119             {
8120               bfd_boolean delay_slot_ok;
8121
8122               seen_valid_for_size = TRUE;
8123               delay_slot_ok = is_delay_slot_valid (opcode);
8124               if (match_insn (insn, opcode, tokens, opcode_extra,
8125                               lax_match, delay_slot_ok))
8126                 {
8127                   if (!delay_slot_ok)
8128                     {
8129                       if (!invalid_delay_slot)
8130                         invalid_delay_slot = opcode;
8131                     }
8132                   else
8133                     return TRUE;
8134                 }
8135             }
8136         }
8137       ++opcode;
8138     }
8139   while (opcode < past && strcmp (opcode->name, first->name) == 0);
8140
8141   /* If the only matches we found had the wrong length for the delay slot,
8142      pick the first such match.  We'll issue an appropriate warning later.  */
8143   if (invalid_delay_slot)
8144     {
8145       if (match_insn (insn, invalid_delay_slot, tokens, opcode_extra,
8146                       lax_match, TRUE))
8147         return TRUE;
8148       abort ();
8149     }
8150
8151   /* Handle the case where we didn't try to match an instruction because
8152      all the alternatives were incompatible with the current ISA.  */
8153   if (!seen_valid_for_isa)
8154     {
8155       match_invalid_for_isa ();
8156       return TRUE;
8157     }
8158
8159   /* Handle the case where we didn't try to match an instruction because
8160      all the alternatives were of the wrong size.  */
8161   if (!seen_valid_for_size)
8162     {
8163       if (mips_opts.insn32)
8164         set_insn_error (0, _("opcode not supported in the `insn32' mode"));
8165       else
8166         set_insn_error_i
8167           (0, _("unrecognized %d-bit version of microMIPS opcode"),
8168            8 * forced_insn_length);
8169       return TRUE;
8170     }
8171
8172   return FALSE;
8173 }
8174
8175 /* Like match_insns, but for MIPS16.  */
8176
8177 static bfd_boolean
8178 match_mips16_insns (struct mips_cl_insn *insn, const struct mips_opcode *first,
8179                     struct mips_operand_token *tokens)
8180 {
8181   const struct mips_opcode *opcode;
8182   bfd_boolean seen_valid_for_isa;
8183
8184   /* Search for a match, ignoring alternatives that don't satisfy the
8185      current ISA.  There are no separate entries for extended forms so
8186      we deal with forced_length later.  */
8187   seen_valid_for_isa = FALSE;
8188   opcode = first;
8189   do
8190     {
8191       gas_assert (strcmp (opcode->name, first->name) == 0);
8192       if (is_opcode_valid_16 (opcode))
8193         {
8194           seen_valid_for_isa = TRUE;
8195           if (match_mips16_insn (insn, opcode, tokens))
8196             return TRUE;
8197         }
8198       ++opcode;
8199     }
8200   while (opcode < &mips16_opcodes[bfd_mips16_num_opcodes]
8201          && strcmp (opcode->name, first->name) == 0);
8202
8203   /* Handle the case where we didn't try to match an instruction because
8204      all the alternatives were incompatible with the current ISA.  */
8205   if (!seen_valid_for_isa)
8206     {
8207       match_invalid_for_isa ();
8208       return TRUE;
8209     }
8210
8211   return FALSE;
8212 }
8213
8214 /* Set up global variables for the start of a new macro.  */
8215
8216 static void
8217 macro_start (void)
8218 {
8219   memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
8220   memset (&mips_macro_warning.first_insn_sizes, 0,
8221           sizeof (mips_macro_warning.first_insn_sizes));
8222   memset (&mips_macro_warning.insns, 0, sizeof (mips_macro_warning.insns));
8223   mips_macro_warning.delay_slot_p = (mips_opts.noreorder
8224                                      && delayed_branch_p (&history[0]));
8225   switch (history[0].insn_mo->pinfo2
8226           & (INSN2_BRANCH_DELAY_32BIT | INSN2_BRANCH_DELAY_16BIT))
8227     {
8228     case INSN2_BRANCH_DELAY_32BIT:
8229       mips_macro_warning.delay_slot_length = 4;
8230       break;
8231     case INSN2_BRANCH_DELAY_16BIT:
8232       mips_macro_warning.delay_slot_length = 2;
8233       break;
8234     default:
8235       mips_macro_warning.delay_slot_length = 0;
8236       break;
8237     }
8238   mips_macro_warning.first_frag = NULL;
8239 }
8240
8241 /* Given that a macro is longer than one instruction or of the wrong size,
8242    return the appropriate warning for it.  Return null if no warning is
8243    needed.  SUBTYPE is a bitmask of RELAX_DELAY_SLOT, RELAX_DELAY_SLOT_16BIT,
8244    RELAX_DELAY_SLOT_SIZE_FIRST, RELAX_DELAY_SLOT_SIZE_SECOND,
8245    and RELAX_NOMACRO.  */
8246
8247 static const char *
8248 macro_warning (relax_substateT subtype)
8249 {
8250   if (subtype & RELAX_DELAY_SLOT)
8251     return _("macro instruction expanded into multiple instructions"
8252              " in a branch delay slot");
8253   else if (subtype & RELAX_NOMACRO)
8254     return _("macro instruction expanded into multiple instructions");
8255   else if (subtype & (RELAX_DELAY_SLOT_SIZE_FIRST
8256                       | RELAX_DELAY_SLOT_SIZE_SECOND))
8257     return ((subtype & RELAX_DELAY_SLOT_16BIT)
8258             ? _("macro instruction expanded into a wrong size instruction"
8259                 " in a 16-bit branch delay slot")
8260             : _("macro instruction expanded into a wrong size instruction"
8261                 " in a 32-bit branch delay slot"));
8262   else
8263     return 0;
8264 }
8265
8266 /* Finish up a macro.  Emit warnings as appropriate.  */
8267
8268 static void
8269 macro_end (void)
8270 {
8271   /* Relaxation warning flags.  */
8272   relax_substateT subtype = 0;
8273
8274   /* Check delay slot size requirements.  */
8275   if (mips_macro_warning.delay_slot_length == 2)
8276     subtype |= RELAX_DELAY_SLOT_16BIT;
8277   if (mips_macro_warning.delay_slot_length != 0)
8278     {
8279       if (mips_macro_warning.delay_slot_length
8280           != mips_macro_warning.first_insn_sizes[0])
8281         subtype |= RELAX_DELAY_SLOT_SIZE_FIRST;
8282       if (mips_macro_warning.delay_slot_length
8283           != mips_macro_warning.first_insn_sizes[1])
8284         subtype |= RELAX_DELAY_SLOT_SIZE_SECOND;
8285     }
8286
8287   /* Check instruction count requirements.  */
8288   if (mips_macro_warning.insns[0] > 1 || mips_macro_warning.insns[1] > 1)
8289     {
8290       if (mips_macro_warning.insns[1] > mips_macro_warning.insns[0])
8291         subtype |= RELAX_SECOND_LONGER;
8292       if (mips_opts.warn_about_macros)
8293         subtype |= RELAX_NOMACRO;
8294       if (mips_macro_warning.delay_slot_p)
8295         subtype |= RELAX_DELAY_SLOT;
8296     }
8297
8298   /* If both alternatives fail to fill a delay slot correctly,
8299      emit the warning now.  */
8300   if ((subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0
8301       && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0)
8302     {
8303       relax_substateT s;
8304       const char *msg;
8305
8306       s = subtype & (RELAX_DELAY_SLOT_16BIT
8307                      | RELAX_DELAY_SLOT_SIZE_FIRST
8308                      | RELAX_DELAY_SLOT_SIZE_SECOND);
8309       msg = macro_warning (s);
8310       if (msg != NULL)
8311         as_warn ("%s", msg);
8312       subtype &= ~s;
8313     }
8314
8315   /* If both implementations are longer than 1 instruction, then emit the
8316      warning now.  */
8317   if (mips_macro_warning.insns[0] > 1 && mips_macro_warning.insns[1] > 1)
8318     {
8319       relax_substateT s;
8320       const char *msg;
8321
8322       s = subtype & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT);
8323       msg = macro_warning (s);
8324       if (msg != NULL)
8325         as_warn ("%s", msg);
8326       subtype &= ~s;
8327     }
8328
8329   /* If any flags still set, then one implementation might need a warning
8330      and the other either will need one of a different kind or none at all.
8331      Pass any remaining flags over to relaxation.  */
8332   if (mips_macro_warning.first_frag != NULL)
8333     mips_macro_warning.first_frag->fr_subtype |= subtype;
8334 }
8335
8336 /* Instruction operand formats used in macros that vary between
8337    standard MIPS and microMIPS code.  */
8338
8339 static const char * const brk_fmt[2][2] = { { "c", "c" }, { "mF", "c" } };
8340 static const char * const cop12_fmt[2] = { "E,o(b)", "E,~(b)" };
8341 static const char * const jalr_fmt[2] = { "d,s", "t,s" };
8342 static const char * const lui_fmt[2] = { "t,u", "s,u" };
8343 static const char * const mem12_fmt[2] = { "t,o(b)", "t,~(b)" };
8344 static const char * const mfhl_fmt[2][2] = { { "d", "d" }, { "mj", "s" } };
8345 static const char * const shft_fmt[2] = { "d,w,<", "t,r,<" };
8346 static const char * const trap_fmt[2] = { "s,t,q", "s,t,|" };
8347
8348 #define BRK_FMT (brk_fmt[mips_opts.micromips][mips_opts.insn32])
8349 #define COP12_FMT (ISA_IS_R6 (mips_opts.isa) ? "E,+:(d)" \
8350                                              : cop12_fmt[mips_opts.micromips])
8351 #define JALR_FMT (jalr_fmt[mips_opts.micromips])
8352 #define LUI_FMT (lui_fmt[mips_opts.micromips])
8353 #define MEM12_FMT (mem12_fmt[mips_opts.micromips])
8354 #define LL_SC_FMT (ISA_IS_R6 (mips_opts.isa) ? "t,+j(b)" \
8355                                              : mem12_fmt[mips_opts.micromips])
8356 #define MFHL_FMT (mfhl_fmt[mips_opts.micromips][mips_opts.insn32])
8357 #define SHFT_FMT (shft_fmt[mips_opts.micromips])
8358 #define TRAP_FMT (trap_fmt[mips_opts.micromips])
8359
8360 /* Read a macro's relocation codes from *ARGS and store them in *R.
8361    The first argument in *ARGS will be either the code for a single
8362    relocation or -1 followed by the three codes that make up a
8363    composite relocation.  */
8364
8365 static void
8366 macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
8367 {
8368   int i, next;
8369
8370   next = va_arg (*args, int);
8371   if (next >= 0)
8372     r[0] = (bfd_reloc_code_real_type) next;
8373   else
8374     {
8375       for (i = 0; i < 3; i++)
8376         r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
8377       /* This function is only used for 16-bit relocation fields.
8378          To make the macro code simpler, treat an unrelocated value
8379          in the same way as BFD_RELOC_LO16.  */
8380       if (r[0] == BFD_RELOC_UNUSED)
8381         r[0] = BFD_RELOC_LO16;
8382     }
8383 }
8384
8385 /* Build an instruction created by a macro expansion.  This is passed
8386    a pointer to the count of instructions created so far, an
8387    expression, the name of the instruction to build, an operand format
8388    string, and corresponding arguments.  */
8389
8390 static void
8391 macro_build (expressionS *ep, const char *name, const char *fmt, ...)
8392 {
8393   const struct mips_opcode *mo = NULL;
8394   bfd_reloc_code_real_type r[3];
8395   const struct mips_opcode *amo;
8396   const struct mips_operand *operand;
8397   struct hash_control *hash;
8398   struct mips_cl_insn insn;
8399   va_list args;
8400   unsigned int uval;
8401
8402   va_start (args, fmt);
8403
8404   if (mips_opts.mips16)
8405     {
8406       mips16_macro_build (ep, name, fmt, &args);
8407       va_end (args);
8408       return;
8409     }
8410
8411   r[0] = BFD_RELOC_UNUSED;
8412   r[1] = BFD_RELOC_UNUSED;
8413   r[2] = BFD_RELOC_UNUSED;
8414   hash = mips_opts.micromips ? micromips_op_hash : op_hash;
8415   amo = (struct mips_opcode *) hash_find (hash, name);
8416   gas_assert (amo);
8417   gas_assert (strcmp (name, amo->name) == 0);
8418
8419   do
8420     {
8421       /* Search until we get a match for NAME.  It is assumed here that
8422          macros will never generate MDMX, MIPS-3D, or MT instructions.
8423          We try to match an instruction that fulfils the branch delay
8424          slot instruction length requirement (if any) of the previous
8425          instruction.  While doing this we record the first instruction
8426          seen that matches all the other conditions and use it anyway
8427          if the requirement cannot be met; we will issue an appropriate
8428          warning later on.  */
8429       if (strcmp (fmt, amo->args) == 0
8430           && amo->pinfo != INSN_MACRO
8431           && is_opcode_valid (amo)
8432           && is_size_valid (amo))
8433         {
8434           if (is_delay_slot_valid (amo))
8435             {
8436               mo = amo;
8437               break;
8438             }
8439           else if (!mo)
8440             mo = amo;
8441         }
8442
8443       ++amo;
8444       gas_assert (amo->name);
8445     }
8446   while (strcmp (name, amo->name) == 0);
8447
8448   gas_assert (mo);
8449   create_insn (&insn, mo);
8450   for (; *fmt; ++fmt)
8451     {
8452       switch (*fmt)
8453         {
8454         case ',':
8455         case '(':
8456         case ')':
8457         case 'z':
8458           break;
8459
8460         case 'i':
8461         case 'j':
8462           macro_read_relocs (&args, r);
8463           gas_assert (*r == BFD_RELOC_GPREL16
8464                       || *r == BFD_RELOC_MIPS_HIGHER
8465                       || *r == BFD_RELOC_HI16_S
8466                       || *r == BFD_RELOC_LO16
8467                       || *r == BFD_RELOC_MIPS_GOT_OFST);
8468           break;
8469
8470         case 'o':
8471           macro_read_relocs (&args, r);
8472           break;
8473
8474         case 'u':
8475           macro_read_relocs (&args, r);
8476           gas_assert (ep != NULL
8477                       && (ep->X_op == O_constant
8478                           || (ep->X_op == O_symbol
8479                               && (*r == BFD_RELOC_MIPS_HIGHEST
8480                                   || *r == BFD_RELOC_HI16_S
8481                                   || *r == BFD_RELOC_HI16
8482                                   || *r == BFD_RELOC_GPREL16
8483                                   || *r == BFD_RELOC_MIPS_GOT_HI16
8484                                   || *r == BFD_RELOC_MIPS_CALL_HI16))));
8485           break;
8486
8487         case 'p':
8488           gas_assert (ep != NULL);
8489
8490           /*
8491            * This allows macro() to pass an immediate expression for
8492            * creating short branches without creating a symbol.
8493            *
8494            * We don't allow branch relaxation for these branches, as
8495            * they should only appear in ".set nomacro" anyway.
8496            */
8497           if (ep->X_op == O_constant)
8498             {
8499               /* For microMIPS we always use relocations for branches.
8500                  So we should not resolve immediate values.  */
8501               gas_assert (!mips_opts.micromips);
8502
8503               if ((ep->X_add_number & 3) != 0)
8504                 as_bad (_("branch to misaligned address (0x%lx)"),
8505                         (unsigned long) ep->X_add_number);
8506               if ((ep->X_add_number + 0x20000) & ~0x3ffff)
8507                 as_bad (_("branch address range overflow (0x%lx)"),
8508                         (unsigned long) ep->X_add_number);
8509               insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
8510               ep = NULL;
8511             }
8512           else
8513             *r = BFD_RELOC_16_PCREL_S2;
8514           break;
8515
8516         case 'a':
8517           gas_assert (ep != NULL);
8518           *r = BFD_RELOC_MIPS_JMP;
8519           break;
8520
8521         default:
8522           operand = (mips_opts.micromips
8523                      ? decode_micromips_operand (fmt)
8524                      : decode_mips_operand (fmt));
8525           if (!operand)
8526             abort ();
8527
8528           uval = va_arg (args, int);
8529           if (operand->type == OP_CLO_CLZ_DEST)
8530             uval |= (uval << 5);
8531           insn_insert_operand (&insn, operand, uval);
8532
8533           if (*fmt == '+' || *fmt == 'm' || *fmt == '-')
8534             ++fmt;
8535           break;
8536         }
8537     }
8538   va_end (args);
8539   gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
8540
8541   append_insn (&insn, ep, r, TRUE);
8542 }
8543
8544 static void
8545 mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
8546                     va_list *args)
8547 {
8548   struct mips_opcode *mo;
8549   struct mips_cl_insn insn;
8550   const struct mips_operand *operand;
8551   bfd_reloc_code_real_type r[3]
8552     = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
8553
8554   mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
8555   gas_assert (mo);
8556   gas_assert (strcmp (name, mo->name) == 0);
8557
8558   while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
8559     {
8560       ++mo;
8561       gas_assert (mo->name);
8562       gas_assert (strcmp (name, mo->name) == 0);
8563     }
8564
8565   create_insn (&insn, mo);
8566   for (; *fmt; ++fmt)
8567     {
8568       int c;
8569
8570       c = *fmt;
8571       switch (c)
8572         {
8573         case ',':
8574         case '(':
8575         case ')':
8576           break;
8577
8578         case '0':
8579         case 'S':
8580         case 'P':
8581         case 'R':
8582           break;
8583
8584         case '<':
8585         case '>':
8586         case '4':
8587         case '5':
8588         case 'H':
8589         case 'W':
8590         case 'D':
8591         case 'j':
8592         case '8':
8593         case 'V':
8594         case 'C':
8595         case 'U':
8596         case 'k':
8597         case 'K':
8598         case 'p':
8599         case 'q':
8600           {
8601             offsetT value;
8602
8603             gas_assert (ep != NULL);
8604
8605             if (ep->X_op != O_constant)
8606               *r = (int) BFD_RELOC_UNUSED + c;
8607             else if (calculate_reloc (*r, ep->X_add_number, &value))
8608               {
8609                 mips16_immed (NULL, 0, c, *r, value, 0, &insn.insn_opcode);
8610                 ep = NULL;
8611                 *r = BFD_RELOC_UNUSED;
8612               }
8613           }
8614           break;
8615
8616         default:
8617           operand = decode_mips16_operand (c, FALSE);
8618           if (!operand)
8619             abort ();
8620
8621           insn_insert_operand (&insn, operand, va_arg (*args, int));
8622           break;
8623         }
8624     }
8625
8626   gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
8627
8628   append_insn (&insn, ep, r, TRUE);
8629 }
8630
8631 /*
8632  * Generate a "jalr" instruction with a relocation hint to the called
8633  * function.  This occurs in NewABI PIC code.
8634  */
8635 static void
8636 macro_build_jalr (expressionS *ep, int cprestore)
8637 {
8638   static const bfd_reloc_code_real_type jalr_relocs[2]
8639     = { BFD_RELOC_MIPS_JALR, BFD_RELOC_MICROMIPS_JALR };
8640   bfd_reloc_code_real_type jalr_reloc = jalr_relocs[mips_opts.micromips];
8641   const char *jalr;
8642   char *f = NULL;
8643
8644   if (MIPS_JALR_HINT_P (ep))
8645     {
8646       frag_grow (8);
8647       f = frag_more (0);
8648     }
8649   if (mips_opts.micromips)
8650     {
8651       jalr = ((mips_opts.noreorder && !cprestore) || mips_opts.insn32
8652               ? "jalr" : "jalrs");
8653       if (MIPS_JALR_HINT_P (ep)
8654           || mips_opts.insn32
8655           || (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
8656         macro_build (NULL, jalr, "t,s", RA, PIC_CALL_REG);
8657       else
8658         macro_build (NULL, jalr, "mj", PIC_CALL_REG);
8659     }
8660   else
8661     macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
8662   if (MIPS_JALR_HINT_P (ep))
8663     fix_new_exp (frag_now, f - frag_now->fr_literal, 4, ep, FALSE, jalr_reloc);
8664 }
8665
8666 /*
8667  * Generate a "lui" instruction.
8668  */
8669 static void
8670 macro_build_lui (expressionS *ep, int regnum)
8671 {
8672   gas_assert (! mips_opts.mips16);
8673
8674   if (ep->X_op != O_constant)
8675     {
8676       gas_assert (ep->X_op == O_symbol);
8677       /* _gp_disp is a special case, used from s_cpload.
8678          __gnu_local_gp is used if mips_no_shared.  */
8679       gas_assert (mips_pic == NO_PIC
8680               || (! HAVE_NEWABI
8681                   && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
8682               || (! mips_in_shared
8683                   && strcmp (S_GET_NAME (ep->X_add_symbol),
8684                              "__gnu_local_gp") == 0));
8685     }
8686
8687   macro_build (ep, "lui", LUI_FMT, regnum, BFD_RELOC_HI16_S);
8688 }
8689
8690 /* Generate a sequence of instructions to do a load or store from a constant
8691    offset off of a base register (breg) into/from a target register (treg),
8692    using AT if necessary.  */
8693 static void
8694 macro_build_ldst_constoffset (expressionS *ep, const char *op,
8695                               int treg, int breg, int dbl)
8696 {
8697   gas_assert (ep->X_op == O_constant);
8698
8699   /* Sign-extending 32-bit constants makes their handling easier.  */
8700   if (!dbl)
8701     normalize_constant_expr (ep);
8702
8703   /* Right now, this routine can only handle signed 32-bit constants.  */
8704   if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
8705     as_warn (_("operand overflow"));
8706
8707   if (IS_SEXT_16BIT_NUM(ep->X_add_number))
8708     {
8709       /* Signed 16-bit offset will fit in the op.  Easy!  */
8710       macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
8711     }
8712   else
8713     {
8714       /* 32-bit offset, need multiple instructions and AT, like:
8715            lui      $tempreg,const_hi       (BFD_RELOC_HI16_S)
8716            addu     $tempreg,$tempreg,$breg
8717            <op>     $treg,const_lo($tempreg)   (BFD_RELOC_LO16)
8718          to handle the complete offset.  */
8719       macro_build_lui (ep, AT);
8720       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8721       macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8722
8723       if (!mips_opts.at)
8724         as_bad (_("macro used $at after \".set noat\""));
8725     }
8726 }
8727
8728 /*                      set_at()
8729  * Generates code to set the $at register to true (one)
8730  * if reg is less than the immediate expression.
8731  */
8732 static void
8733 set_at (int reg, int unsignedp)
8734 {
8735   if (imm_expr.X_add_number >= -0x8000
8736       && imm_expr.X_add_number < 0x8000)
8737     macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
8738                  AT, reg, BFD_RELOC_LO16);
8739   else
8740     {
8741       load_register (AT, &imm_expr, GPR_SIZE == 64);
8742       macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
8743     }
8744 }
8745
8746 /* Count the leading zeroes by performing a binary chop. This is a
8747    bulky bit of source, but performance is a LOT better for the
8748    majority of values than a simple loop to count the bits:
8749        for (lcnt = 0; (lcnt < 32); lcnt++)
8750          if ((v) & (1 << (31 - lcnt)))
8751            break;
8752   However it is not code size friendly, and the gain will drop a bit
8753   on certain cached systems.
8754 */
8755 #define COUNT_TOP_ZEROES(v)             \
8756   (((v) & ~0xffff) == 0                 \
8757    ? ((v) & ~0xff) == 0                 \
8758      ? ((v) & ~0xf) == 0                \
8759        ? ((v) & ~0x3) == 0              \
8760          ? ((v) & ~0x1) == 0            \
8761            ? !(v)                       \
8762              ? 32                       \
8763              : 31                       \
8764            : 30                         \
8765          : ((v) & ~0x7) == 0            \
8766            ? 29                         \
8767            : 28                         \
8768        : ((v) & ~0x3f) == 0             \
8769          ? ((v) & ~0x1f) == 0           \
8770            ? 27                         \
8771            : 26                         \
8772          : ((v) & ~0x7f) == 0           \
8773            ? 25                         \
8774            : 24                         \
8775      : ((v) & ~0xfff) == 0              \
8776        ? ((v) & ~0x3ff) == 0            \
8777          ? ((v) & ~0x1ff) == 0          \
8778            ? 23                         \
8779            : 22                         \
8780          : ((v) & ~0x7ff) == 0          \
8781            ? 21                         \
8782            : 20                         \
8783        : ((v) & ~0x3fff) == 0           \
8784          ? ((v) & ~0x1fff) == 0         \
8785            ? 19                         \
8786            : 18                         \
8787          : ((v) & ~0x7fff) == 0         \
8788            ? 17                         \
8789            : 16                         \
8790    : ((v) & ~0xffffff) == 0             \
8791      ? ((v) & ~0xfffff) == 0            \
8792        ? ((v) & ~0x3ffff) == 0          \
8793          ? ((v) & ~0x1ffff) == 0        \
8794            ? 15                         \
8795            : 14                         \
8796          : ((v) & ~0x7ffff) == 0        \
8797            ? 13                         \
8798            : 12                         \
8799        : ((v) & ~0x3fffff) == 0         \
8800          ? ((v) & ~0x1fffff) == 0       \
8801            ? 11                         \
8802            : 10                         \
8803          : ((v) & ~0x7fffff) == 0       \
8804            ? 9                          \
8805            : 8                          \
8806      : ((v) & ~0xfffffff) == 0          \
8807        ? ((v) & ~0x3ffffff) == 0        \
8808          ? ((v) & ~0x1ffffff) == 0      \
8809            ? 7                          \
8810            : 6                          \
8811          : ((v) & ~0x7ffffff) == 0      \
8812            ? 5                          \
8813            : 4                          \
8814        : ((v) & ~0x3fffffff) == 0       \
8815          ? ((v) & ~0x1fffffff) == 0     \
8816            ? 3                          \
8817            : 2                          \
8818          : ((v) & ~0x7fffffff) == 0     \
8819            ? 1                          \
8820            : 0)
8821
8822 /*                      load_register()
8823  *  This routine generates the least number of instructions necessary to load
8824  *  an absolute expression value into a register.
8825  */
8826 static void
8827 load_register (int reg, expressionS *ep, int dbl)
8828 {
8829   int freg;
8830   expressionS hi32, lo32;
8831
8832   if (ep->X_op != O_big)
8833     {
8834       gas_assert (ep->X_op == O_constant);
8835
8836       /* Sign-extending 32-bit constants makes their handling easier.  */
8837       if (!dbl)
8838         normalize_constant_expr (ep);
8839
8840       if (IS_SEXT_16BIT_NUM (ep->X_add_number))
8841         {
8842           /* We can handle 16 bit signed values with an addiu to
8843              $zero.  No need to ever use daddiu here, since $zero and
8844              the result are always correct in 32 bit mode.  */
8845           macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
8846           return;
8847         }
8848       else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
8849         {
8850           /* We can handle 16 bit unsigned values with an ori to
8851              $zero.  */
8852           macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
8853           return;
8854         }
8855       else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
8856         {
8857           /* 32 bit values require an lui.  */
8858           macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
8859           if ((ep->X_add_number & 0xffff) != 0)
8860             macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
8861           return;
8862         }
8863     }
8864
8865   /* The value is larger than 32 bits.  */
8866
8867   if (!dbl || GPR_SIZE == 32)
8868     {
8869       char value[32];
8870
8871       sprintf_vma (value, ep->X_add_number);
8872       as_bad (_("number (0x%s) larger than 32 bits"), value);
8873       macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
8874       return;
8875     }
8876
8877   if (ep->X_op != O_big)
8878     {
8879       hi32 = *ep;
8880       hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
8881       hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
8882       hi32.X_add_number &= 0xffffffff;
8883       lo32 = *ep;
8884       lo32.X_add_number &= 0xffffffff;
8885     }
8886   else
8887     {
8888       gas_assert (ep->X_add_number > 2);
8889       if (ep->X_add_number == 3)
8890         generic_bignum[3] = 0;
8891       else if (ep->X_add_number > 4)
8892         as_bad (_("number larger than 64 bits"));
8893       lo32.X_op = O_constant;
8894       lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
8895       hi32.X_op = O_constant;
8896       hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
8897     }
8898
8899   if (hi32.X_add_number == 0)
8900     freg = 0;
8901   else
8902     {
8903       int shift, bit;
8904       unsigned long hi, lo;
8905
8906       if (hi32.X_add_number == (offsetT) 0xffffffff)
8907         {
8908           if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
8909             {
8910               macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
8911               return;
8912             }
8913           if (lo32.X_add_number & 0x80000000)
8914             {
8915               macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
8916               if (lo32.X_add_number & 0xffff)
8917                 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
8918               return;
8919             }
8920         }
8921
8922       /* Check for 16bit shifted constant.  We know that hi32 is
8923          non-zero, so start the mask on the first bit of the hi32
8924          value.  */
8925       shift = 17;
8926       do
8927         {
8928           unsigned long himask, lomask;
8929
8930           if (shift < 32)
8931             {
8932               himask = 0xffff >> (32 - shift);
8933               lomask = (0xffff << shift) & 0xffffffff;
8934             }
8935           else
8936             {
8937               himask = 0xffff << (shift - 32);
8938               lomask = 0;
8939             }
8940           if ((hi32.X_add_number & ~(offsetT) himask) == 0
8941               && (lo32.X_add_number & ~(offsetT) lomask) == 0)
8942             {
8943               expressionS tmp;
8944
8945               tmp.X_op = O_constant;
8946               if (shift < 32)
8947                 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
8948                                     | (lo32.X_add_number >> shift));
8949               else
8950                 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
8951               macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
8952               macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", SHFT_FMT,
8953                            reg, reg, (shift >= 32) ? shift - 32 : shift);
8954               return;
8955             }
8956           ++shift;
8957         }
8958       while (shift <= (64 - 16));
8959
8960       /* Find the bit number of the lowest one bit, and store the
8961          shifted value in hi/lo.  */
8962       hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
8963       lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
8964       if (lo != 0)
8965         {
8966           bit = 0;
8967           while ((lo & 1) == 0)
8968             {
8969               lo >>= 1;
8970               ++bit;
8971             }
8972           lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
8973           hi >>= bit;
8974         }
8975       else
8976         {
8977           bit = 32;
8978           while ((hi & 1) == 0)
8979             {
8980               hi >>= 1;
8981               ++bit;
8982             }
8983           lo = hi;
8984           hi = 0;
8985         }
8986
8987       /* Optimize if the shifted value is a (power of 2) - 1.  */
8988       if ((hi == 0 && ((lo + 1) & lo) == 0)
8989           || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
8990         {
8991           shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
8992           if (shift != 0)
8993             {
8994               expressionS tmp;
8995
8996               /* This instruction will set the register to be all
8997                  ones.  */
8998               tmp.X_op = O_constant;
8999               tmp.X_add_number = (offsetT) -1;
9000               macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
9001               if (bit != 0)
9002                 {
9003                   bit += shift;
9004                   macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", SHFT_FMT,
9005                                reg, reg, (bit >= 32) ? bit - 32 : bit);
9006                 }
9007               macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", SHFT_FMT,
9008                            reg, reg, (shift >= 32) ? shift - 32 : shift);
9009               return;
9010             }
9011         }
9012
9013       /* Sign extend hi32 before calling load_register, because we can
9014          generally get better code when we load a sign extended value.  */
9015       if ((hi32.X_add_number & 0x80000000) != 0)
9016         hi32.X_add_number |= ~(offsetT) 0xffffffff;
9017       load_register (reg, &hi32, 0);
9018       freg = reg;
9019     }
9020   if ((lo32.X_add_number & 0xffff0000) == 0)
9021     {
9022       if (freg != 0)
9023         {
9024           macro_build (NULL, "dsll32", SHFT_FMT, reg, freg, 0);
9025           freg = reg;
9026         }
9027     }
9028   else
9029     {
9030       expressionS mid16;
9031
9032       if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
9033         {
9034           macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
9035           macro_build (NULL, "dsrl32", SHFT_FMT, reg, reg, 0);
9036           return;
9037         }
9038
9039       if (freg != 0)
9040         {
9041           macro_build (NULL, "dsll", SHFT_FMT, reg, freg, 16);
9042           freg = reg;
9043         }
9044       mid16 = lo32;
9045       mid16.X_add_number >>= 16;
9046       macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
9047       macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
9048       freg = reg;
9049     }
9050   if ((lo32.X_add_number & 0xffff) != 0)
9051     macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
9052 }
9053
9054 static inline void
9055 load_delay_nop (void)
9056 {
9057   if (!gpr_interlocks)
9058     macro_build (NULL, "nop", "");
9059 }
9060
9061 /* Load an address into a register.  */
9062
9063 static void
9064 load_address (int reg, expressionS *ep, int *used_at)
9065 {
9066   if (ep->X_op != O_constant
9067       && ep->X_op != O_symbol)
9068     {
9069       as_bad (_("expression too complex"));
9070       ep->X_op = O_constant;
9071     }
9072
9073   if (ep->X_op == O_constant)
9074     {
9075       load_register (reg, ep, HAVE_64BIT_ADDRESSES);
9076       return;
9077     }
9078
9079   if (mips_pic == NO_PIC)
9080     {
9081       /* If this is a reference to a GP relative symbol, we want
9082            addiu        $reg,$gp,<sym>          (BFD_RELOC_GPREL16)
9083          Otherwise we want
9084            lui          $reg,<sym>              (BFD_RELOC_HI16_S)
9085            addiu        $reg,$reg,<sym>         (BFD_RELOC_LO16)
9086          If we have an addend, we always use the latter form.
9087
9088          With 64bit address space and a usable $at we want
9089            lui          $reg,<sym>              (BFD_RELOC_MIPS_HIGHEST)
9090            lui          $at,<sym>               (BFD_RELOC_HI16_S)
9091            daddiu       $reg,<sym>              (BFD_RELOC_MIPS_HIGHER)
9092            daddiu       $at,<sym>               (BFD_RELOC_LO16)
9093            dsll32       $reg,0
9094            daddu        $reg,$reg,$at
9095
9096          If $at is already in use, we use a path which is suboptimal
9097          on superscalar processors.
9098            lui          $reg,<sym>              (BFD_RELOC_MIPS_HIGHEST)
9099            daddiu       $reg,<sym>              (BFD_RELOC_MIPS_HIGHER)
9100            dsll         $reg,16
9101            daddiu       $reg,<sym>              (BFD_RELOC_HI16_S)
9102            dsll         $reg,16
9103            daddiu       $reg,<sym>              (BFD_RELOC_LO16)
9104
9105          For GP relative symbols in 64bit address space we can use
9106          the same sequence as in 32bit address space.  */
9107       if (HAVE_64BIT_SYMBOLS)
9108         {
9109           if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
9110               && !nopic_need_relax (ep->X_add_symbol, 1))
9111             {
9112               relax_start (ep->X_add_symbol);
9113               macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
9114                            mips_gp_register, BFD_RELOC_GPREL16);
9115               relax_switch ();
9116             }
9117
9118           if (*used_at == 0 && mips_opts.at)
9119             {
9120               macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
9121               macro_build (ep, "lui", LUI_FMT, AT, BFD_RELOC_HI16_S);
9122               macro_build (ep, "daddiu", "t,r,j", reg, reg,
9123                            BFD_RELOC_MIPS_HIGHER);
9124               macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
9125               macro_build (NULL, "dsll32", SHFT_FMT, reg, reg, 0);
9126               macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
9127               *used_at = 1;
9128             }
9129           else
9130             {
9131               macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
9132               macro_build (ep, "daddiu", "t,r,j", reg, reg,
9133                            BFD_RELOC_MIPS_HIGHER);
9134               macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
9135               macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
9136               macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
9137               macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
9138             }
9139
9140           if (mips_relax.sequence)
9141             relax_end ();
9142         }
9143       else
9144         {
9145           if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
9146               && !nopic_need_relax (ep->X_add_symbol, 1))
9147             {
9148               relax_start (ep->X_add_symbol);
9149               macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
9150                            mips_gp_register, BFD_RELOC_GPREL16);
9151               relax_switch ();
9152             }
9153           macro_build_lui (ep, reg);
9154           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
9155                        reg, reg, BFD_RELOC_LO16);
9156           if (mips_relax.sequence)
9157             relax_end ();
9158         }
9159     }
9160   else if (!mips_big_got)
9161     {
9162       expressionS ex;
9163
9164       /* If this is a reference to an external symbol, we want
9165            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT16)
9166          Otherwise we want
9167            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT16)
9168            nop
9169            addiu        $reg,$reg,<sym>         (BFD_RELOC_LO16)
9170          If there is a constant, it must be added in after.
9171
9172          If we have NewABI, we want
9173            lw           $reg,<sym+cst>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
9174          unless we're referencing a global symbol with a non-zero
9175          offset, in which case cst must be added separately.  */
9176       if (HAVE_NEWABI)
9177         {
9178           if (ep->X_add_number)
9179             {
9180               ex.X_add_number = ep->X_add_number;
9181               ep->X_add_number = 0;
9182               relax_start (ep->X_add_symbol);
9183               macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
9184                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
9185               if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
9186                 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9187               ex.X_op = O_constant;
9188               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
9189                            reg, reg, BFD_RELOC_LO16);
9190               ep->X_add_number = ex.X_add_number;
9191               relax_switch ();
9192             }
9193           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
9194                        BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
9195           if (mips_relax.sequence)
9196             relax_end ();
9197         }
9198       else
9199         {
9200           ex.X_add_number = ep->X_add_number;
9201           ep->X_add_number = 0;
9202           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
9203                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
9204           load_delay_nop ();
9205           relax_start (ep->X_add_symbol);
9206           relax_switch ();
9207           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
9208                        BFD_RELOC_LO16);
9209           relax_end ();
9210
9211           if (ex.X_add_number != 0)
9212             {
9213               if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
9214                 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9215               ex.X_op = O_constant;
9216               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
9217                            reg, reg, BFD_RELOC_LO16);
9218             }
9219         }
9220     }
9221   else if (mips_big_got)
9222     {
9223       expressionS ex;
9224
9225       /* This is the large GOT case.  If this is a reference to an
9226          external symbol, we want
9227            lui          $reg,<sym>              (BFD_RELOC_MIPS_GOT_HI16)
9228            addu         $reg,$reg,$gp
9229            lw           $reg,<sym>($reg)        (BFD_RELOC_MIPS_GOT_LO16)
9230
9231          Otherwise, for a reference to a local symbol in old ABI, we want
9232            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT16)
9233            nop
9234            addiu        $reg,$reg,<sym>         (BFD_RELOC_LO16)
9235          If there is a constant, it must be added in after.
9236
9237          In the NewABI, for local symbols, with or without offsets, we want:
9238            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT_PAGE)
9239            addiu        $reg,$reg,<sym>         (BFD_RELOC_MIPS_GOT_OFST)
9240       */
9241       if (HAVE_NEWABI)
9242         {
9243           ex.X_add_number = ep->X_add_number;
9244           ep->X_add_number = 0;
9245           relax_start (ep->X_add_symbol);
9246           macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
9247           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9248                        reg, reg, mips_gp_register);
9249           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
9250                        reg, BFD_RELOC_MIPS_GOT_LO16, reg);
9251           if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
9252             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9253           else if (ex.X_add_number)
9254             {
9255               ex.X_op = O_constant;
9256               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
9257                            BFD_RELOC_LO16);
9258             }
9259
9260           ep->X_add_number = ex.X_add_number;
9261           relax_switch ();
9262           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
9263                        BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
9264           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
9265                        BFD_RELOC_MIPS_GOT_OFST);
9266           relax_end ();
9267         }
9268       else
9269         {
9270           ex.X_add_number = ep->X_add_number;
9271           ep->X_add_number = 0;
9272           relax_start (ep->X_add_symbol);
9273           macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
9274           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9275                        reg, reg, mips_gp_register);
9276           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
9277                        reg, BFD_RELOC_MIPS_GOT_LO16, reg);
9278           relax_switch ();
9279           if (reg_needs_delay (mips_gp_register))
9280             {
9281               /* We need a nop before loading from $gp.  This special
9282                  check is required because the lui which starts the main
9283                  instruction stream does not refer to $gp, and so will not
9284                  insert the nop which may be required.  */
9285               macro_build (NULL, "nop", "");
9286             }
9287           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
9288                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
9289           load_delay_nop ();
9290           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
9291                        BFD_RELOC_LO16);
9292           relax_end ();
9293
9294           if (ex.X_add_number != 0)
9295             {
9296               if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
9297                 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9298               ex.X_op = O_constant;
9299               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
9300                            BFD_RELOC_LO16);
9301             }
9302         }
9303     }
9304   else
9305     abort ();
9306
9307   if (!mips_opts.at && *used_at == 1)
9308     as_bad (_("macro used $at after \".set noat\""));
9309 }
9310
9311 /* Move the contents of register SOURCE into register DEST.  */
9312
9313 static void
9314 move_register (int dest, int source)
9315 {
9316   /* Prefer to use a 16-bit microMIPS instruction unless the previous
9317      instruction specifically requires a 32-bit one.  */
9318   if (mips_opts.micromips
9319       && !mips_opts.insn32
9320       && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
9321     macro_build (NULL, "move", "mp,mj", dest, source);
9322   else
9323     macro_build (NULL, GPR_SIZE == 32 ? "addu" : "daddu", "d,v,t",
9324                  dest, source, 0);
9325 }
9326
9327 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
9328    LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
9329    The two alternatives are:
9330
9331    Global symbol                Local sybmol
9332    -------------                ------------
9333    lw DEST,%got(SYMBOL)         lw DEST,%got(SYMBOL + OFFSET)
9334    ...                          ...
9335    addiu DEST,DEST,OFFSET       addiu DEST,DEST,%lo(SYMBOL + OFFSET)
9336
9337    load_got_offset emits the first instruction and add_got_offset
9338    emits the second for a 16-bit offset or add_got_offset_hilo emits
9339    a sequence to add a 32-bit offset using a scratch register.  */
9340
9341 static void
9342 load_got_offset (int dest, expressionS *local)
9343 {
9344   expressionS global;
9345
9346   global = *local;
9347   global.X_add_number = 0;
9348
9349   relax_start (local->X_add_symbol);
9350   macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
9351                BFD_RELOC_MIPS_GOT16, mips_gp_register);
9352   relax_switch ();
9353   macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
9354                BFD_RELOC_MIPS_GOT16, mips_gp_register);
9355   relax_end ();
9356 }
9357
9358 static void
9359 add_got_offset (int dest, expressionS *local)
9360 {
9361   expressionS global;
9362
9363   global.X_op = O_constant;
9364   global.X_op_symbol = NULL;
9365   global.X_add_symbol = NULL;
9366   global.X_add_number = local->X_add_number;
9367
9368   relax_start (local->X_add_symbol);
9369   macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
9370                dest, dest, BFD_RELOC_LO16);
9371   relax_switch ();
9372   macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
9373   relax_end ();
9374 }
9375
9376 static void
9377 add_got_offset_hilo (int dest, expressionS *local, int tmp)
9378 {
9379   expressionS global;
9380   int hold_mips_optimize;
9381
9382   global.X_op = O_constant;
9383   global.X_op_symbol = NULL;
9384   global.X_add_symbol = NULL;
9385   global.X_add_number = local->X_add_number;
9386
9387   relax_start (local->X_add_symbol);
9388   load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
9389   relax_switch ();
9390   /* Set mips_optimize around the lui instruction to avoid
9391      inserting an unnecessary nop after the lw.  */
9392   hold_mips_optimize = mips_optimize;
9393   mips_optimize = 2;
9394   macro_build_lui (&global, tmp);
9395   mips_optimize = hold_mips_optimize;
9396   macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
9397   relax_end ();
9398
9399   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
9400 }
9401
9402 /* Emit a sequence of instructions to emulate a branch likely operation.
9403    BR is an ordinary branch corresponding to one to be emulated.  BRNEG
9404    is its complementing branch with the original condition negated.
9405    CALL is set if the original branch specified the link operation.
9406    EP, FMT, SREG and TREG specify the usual macro_build() parameters.
9407
9408    Code like this is produced in the noreorder mode:
9409
9410         BRNEG   <args>, 1f
9411          nop
9412         b       <sym>
9413          delay slot (executed only if branch taken)
9414     1:
9415
9416    or, if CALL is set:
9417
9418         BRNEG   <args>, 1f
9419          nop
9420         bal     <sym>
9421          delay slot (executed only if branch taken)
9422     1:
9423
9424    In the reorder mode the delay slot would be filled with a nop anyway,
9425    so code produced is simply:
9426
9427         BR      <args>, <sym>
9428          nop
9429
9430    This function is used when producing code for the microMIPS ASE that
9431    does not implement branch likely instructions in hardware.  */
9432
9433 static void
9434 macro_build_branch_likely (const char *br, const char *brneg,
9435                            int call, expressionS *ep, const char *fmt,
9436                            unsigned int sreg, unsigned int treg)
9437 {
9438   int noreorder = mips_opts.noreorder;
9439   expressionS expr1;
9440
9441   gas_assert (mips_opts.micromips);
9442   start_noreorder ();
9443   if (noreorder)
9444     {
9445       micromips_label_expr (&expr1);
9446       macro_build (&expr1, brneg, fmt, sreg, treg);
9447       macro_build (NULL, "nop", "");
9448       macro_build (ep, call ? "bal" : "b", "p");
9449
9450       /* Set to true so that append_insn adds a label.  */
9451       emit_branch_likely_macro = TRUE;
9452     }
9453   else
9454     {
9455       macro_build (ep, br, fmt, sreg, treg);
9456       macro_build (NULL, "nop", "");
9457     }
9458   end_noreorder ();
9459 }
9460
9461 /* Emit a coprocessor branch-likely macro specified by TYPE, using CC as
9462    the condition code tested.  EP specifies the branch target.  */
9463
9464 static void
9465 macro_build_branch_ccl (int type, expressionS *ep, unsigned int cc)
9466 {
9467   const int call = 0;
9468   const char *brneg;
9469   const char *br;
9470
9471   switch (type)
9472     {
9473     case M_BC1FL:
9474       br = "bc1f";
9475       brneg = "bc1t";
9476       break;
9477     case M_BC1TL:
9478       br = "bc1t";
9479       brneg = "bc1f";
9480       break;
9481     case M_BC2FL:
9482       br = "bc2f";
9483       brneg = "bc2t";
9484       break;
9485     case M_BC2TL:
9486       br = "bc2t";
9487       brneg = "bc2f";
9488       break;
9489     default:
9490       abort ();
9491     }
9492   macro_build_branch_likely (br, brneg, call, ep, "N,p", cc, ZERO);
9493 }
9494
9495 /* Emit a two-argument branch macro specified by TYPE, using SREG as
9496    the register tested.  EP specifies the branch target.  */
9497
9498 static void
9499 macro_build_branch_rs (int type, expressionS *ep, unsigned int sreg)
9500 {
9501   const char *brneg = NULL;
9502   const char *br;
9503   int call = 0;
9504
9505   switch (type)
9506     {
9507     case M_BGEZ:
9508       br = "bgez";
9509       break;
9510     case M_BGEZL:
9511       br = mips_opts.micromips ? "bgez" : "bgezl";
9512       brneg = "bltz";
9513       break;
9514     case M_BGEZALL:
9515       gas_assert (mips_opts.micromips);
9516       br = mips_opts.insn32 ? "bgezal" : "bgezals";
9517       brneg = "bltz";
9518       call = 1;
9519       break;
9520     case M_BGTZ:
9521       br = "bgtz";
9522       break;
9523     case M_BGTZL:
9524       br = mips_opts.micromips ? "bgtz" : "bgtzl";
9525       brneg = "blez";
9526       break;
9527     case M_BLEZ:
9528       br = "blez";
9529       break;
9530     case M_BLEZL:
9531       br = mips_opts.micromips ? "blez" : "blezl";
9532       brneg = "bgtz";
9533       break;
9534     case M_BLTZ:
9535       br = "bltz";
9536       break;
9537     case M_BLTZL:
9538       br = mips_opts.micromips ? "bltz" : "bltzl";
9539       brneg = "bgez";
9540       break;
9541     case M_BLTZALL:
9542       gas_assert (mips_opts.micromips);
9543       br = mips_opts.insn32 ? "bltzal" : "bltzals";
9544       brneg = "bgez";
9545       call = 1;
9546       break;
9547     default:
9548       abort ();
9549     }
9550   if (mips_opts.micromips && brneg)
9551     macro_build_branch_likely (br, brneg, call, ep, "s,p", sreg, ZERO);
9552   else
9553     macro_build (ep, br, "s,p", sreg);
9554 }
9555
9556 /* Emit a three-argument branch macro specified by TYPE, using SREG and
9557    TREG as the registers tested.  EP specifies the branch target.  */
9558
9559 static void
9560 macro_build_branch_rsrt (int type, expressionS *ep,
9561                          unsigned int sreg, unsigned int treg)
9562 {
9563   const char *brneg = NULL;
9564   const int call = 0;
9565   const char *br;
9566
9567   switch (type)
9568     {
9569     case M_BEQ:
9570     case M_BEQ_I:
9571       br = "beq";
9572       break;
9573     case M_BEQL:
9574     case M_BEQL_I:
9575       br = mips_opts.micromips ? "beq" : "beql";
9576       brneg = "bne";
9577       break;
9578     case M_BNE:
9579     case M_BNE_I:
9580       br = "bne";
9581       break;
9582     case M_BNEL:
9583     case M_BNEL_I:
9584       br = mips_opts.micromips ? "bne" : "bnel";
9585       brneg = "beq";
9586       break;
9587     default:
9588       abort ();
9589     }
9590   if (mips_opts.micromips && brneg)
9591     macro_build_branch_likely (br, brneg, call, ep, "s,t,p", sreg, treg);
9592   else
9593     macro_build (ep, br, "s,t,p", sreg, treg);
9594 }
9595
9596 /* Return the high part that should be loaded in order to make the low
9597    part of VALUE accessible using an offset of OFFBITS bits.  */
9598
9599 static offsetT
9600 offset_high_part (offsetT value, unsigned int offbits)
9601 {
9602   offsetT bias;
9603   addressT low_mask;
9604
9605   if (offbits == 0)
9606     return value;
9607   bias = 1 << (offbits - 1);
9608   low_mask = bias * 2 - 1;
9609   return (value + bias) & ~low_mask;
9610 }
9611
9612 /* Return true if the value stored in offset_expr and offset_reloc
9613    fits into a signed offset of OFFBITS bits.  RANGE is the maximum
9614    amount that the caller wants to add without inducing overflow
9615    and ALIGN is the known alignment of the value in bytes.  */
9616
9617 static bfd_boolean
9618 small_offset_p (unsigned int range, unsigned int align, unsigned int offbits)
9619 {
9620   if (offbits == 16)
9621     {
9622       /* Accept any relocation operator if overflow isn't a concern.  */
9623       if (range < align && *offset_reloc != BFD_RELOC_UNUSED)
9624         return TRUE;
9625
9626       /* These relocations are guaranteed not to overflow in correct links.  */
9627       if (*offset_reloc == BFD_RELOC_MIPS_LITERAL
9628           || gprel16_reloc_p (*offset_reloc))
9629         return TRUE;
9630     }
9631   if (offset_expr.X_op == O_constant
9632       && offset_high_part (offset_expr.X_add_number, offbits) == 0
9633       && offset_high_part (offset_expr.X_add_number + range, offbits) == 0)
9634     return TRUE;
9635   return FALSE;
9636 }
9637
9638 /*
9639  *                      Build macros
9640  *   This routine implements the seemingly endless macro or synthesized
9641  * instructions and addressing modes in the mips assembly language. Many
9642  * of these macros are simple and are similar to each other. These could
9643  * probably be handled by some kind of table or grammar approach instead of
9644  * this verbose method. Others are not simple macros but are more like
9645  * optimizing code generation.
9646  *   One interesting optimization is when several store macros appear
9647  * consecutively that would load AT with the upper half of the same address.
9648  * The ensuing load upper instructions are ommited. This implies some kind
9649  * of global optimization. We currently only optimize within a single macro.
9650  *   For many of the load and store macros if the address is specified as a
9651  * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
9652  * first load register 'at' with zero and use it as the base register. The
9653  * mips assembler simply uses register $zero. Just one tiny optimization
9654  * we're missing.
9655  */
9656 static void
9657 macro (struct mips_cl_insn *ip, char *str)
9658 {
9659   const struct mips_operand_array *operands;
9660   unsigned int breg, i;
9661   unsigned int tempreg;
9662   int mask;
9663   int used_at = 0;
9664   expressionS label_expr;
9665   expressionS expr1;
9666   expressionS *ep;
9667   const char *s;
9668   const char *s2;
9669   const char *fmt;
9670   int likely = 0;
9671   int coproc = 0;
9672   int offbits = 16;
9673   int call = 0;
9674   int jals = 0;
9675   int dbl = 0;
9676   int imm = 0;
9677   int ust = 0;
9678   int lp = 0;
9679   bfd_boolean large_offset;
9680   int off;
9681   int hold_mips_optimize;
9682   unsigned int align;
9683   unsigned int op[MAX_OPERANDS];
9684
9685   gas_assert (! mips_opts.mips16);
9686
9687   operands = insn_operands (ip);
9688   for (i = 0; i < MAX_OPERANDS; i++)
9689     if (operands->operand[i])
9690       op[i] = insn_extract_operand (ip, operands->operand[i]);
9691     else
9692       op[i] = -1;
9693
9694   mask = ip->insn_mo->mask;
9695
9696   label_expr.X_op = O_constant;
9697   label_expr.X_op_symbol = NULL;
9698   label_expr.X_add_symbol = NULL;
9699   label_expr.X_add_number = 0;
9700
9701   expr1.X_op = O_constant;
9702   expr1.X_op_symbol = NULL;
9703   expr1.X_add_symbol = NULL;
9704   expr1.X_add_number = 1;
9705   align = 1;
9706
9707   switch (mask)
9708     {
9709     case M_DABS:
9710       dbl = 1;
9711     case M_ABS:
9712       /*    bgez    $a0,1f
9713             move    v0,$a0
9714             sub     v0,$zero,$a0
9715          1:
9716        */
9717
9718       start_noreorder ();
9719
9720       if (mips_opts.micromips)
9721         micromips_label_expr (&label_expr);
9722       else
9723         label_expr.X_add_number = 8;
9724       macro_build (&label_expr, "bgez", "s,p", op[1]);
9725       if (op[0] == op[1])
9726         macro_build (NULL, "nop", "");
9727       else
9728         move_register (op[0], op[1]);
9729       macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", op[0], 0, op[1]);
9730       if (mips_opts.micromips)
9731         micromips_add_label ();
9732
9733       end_noreorder ();
9734       break;
9735
9736     case M_ADD_I:
9737       s = "addi";
9738       s2 = "add";
9739       goto do_addi;
9740     case M_ADDU_I:
9741       s = "addiu";
9742       s2 = "addu";
9743       goto do_addi;
9744     case M_DADD_I:
9745       dbl = 1;
9746       s = "daddi";
9747       s2 = "dadd";
9748       if (!mips_opts.micromips)
9749         goto do_addi;
9750       if (imm_expr.X_add_number >= -0x200
9751           && imm_expr.X_add_number < 0x200)
9752         {
9753           macro_build (NULL, s, "t,r,.", op[0], op[1],
9754                        (int) imm_expr.X_add_number);
9755           break;
9756         }
9757       goto do_addi_i;
9758     case M_DADDU_I:
9759       dbl = 1;
9760       s = "daddiu";
9761       s2 = "daddu";
9762     do_addi:
9763       if (imm_expr.X_add_number >= -0x8000
9764           && imm_expr.X_add_number < 0x8000)
9765         {
9766           macro_build (&imm_expr, s, "t,r,j", op[0], op[1], BFD_RELOC_LO16);
9767           break;
9768         }
9769     do_addi_i:
9770       used_at = 1;
9771       load_register (AT, &imm_expr, dbl);
9772       macro_build (NULL, s2, "d,v,t", op[0], op[1], AT);
9773       break;
9774
9775     case M_AND_I:
9776       s = "andi";
9777       s2 = "and";
9778       goto do_bit;
9779     case M_OR_I:
9780       s = "ori";
9781       s2 = "or";
9782       goto do_bit;
9783     case M_NOR_I:
9784       s = "";
9785       s2 = "nor";
9786       goto do_bit;
9787     case M_XOR_I:
9788       s = "xori";
9789       s2 = "xor";
9790     do_bit:
9791       if (imm_expr.X_add_number >= 0
9792           && imm_expr.X_add_number < 0x10000)
9793         {
9794           if (mask != M_NOR_I)
9795             macro_build (&imm_expr, s, "t,r,i", op[0], op[1], BFD_RELOC_LO16);
9796           else
9797             {
9798               macro_build (&imm_expr, "ori", "t,r,i",
9799                            op[0], op[1], BFD_RELOC_LO16);
9800               macro_build (NULL, "nor", "d,v,t", op[0], op[0], 0);
9801             }
9802           break;
9803         }
9804
9805       used_at = 1;
9806       load_register (AT, &imm_expr, GPR_SIZE == 64);
9807       macro_build (NULL, s2, "d,v,t", op[0], op[1], AT);
9808       break;
9809
9810     case M_BALIGN:
9811       switch (imm_expr.X_add_number)
9812         {
9813         case 0:
9814           macro_build (NULL, "nop", "");
9815           break;
9816         case 2:
9817           macro_build (NULL, "packrl.ph", "d,s,t", op[0], op[0], op[1]);
9818           break;
9819         case 1:
9820         case 3:
9821           macro_build (NULL, "balign", "t,s,2", op[0], op[1],
9822                        (int) imm_expr.X_add_number);
9823           break;
9824         default:
9825           as_bad (_("BALIGN immediate not 0, 1, 2 or 3 (%lu)"),
9826                   (unsigned long) imm_expr.X_add_number);
9827           break;
9828         }
9829       break;
9830
9831     case M_BC1FL:
9832     case M_BC1TL:
9833     case M_BC2FL:
9834     case M_BC2TL:
9835       gas_assert (mips_opts.micromips);
9836       macro_build_branch_ccl (mask, &offset_expr,
9837                               EXTRACT_OPERAND (1, BCC, *ip));
9838       break;
9839
9840     case M_BEQ_I:
9841     case M_BEQL_I:
9842     case M_BNE_I:
9843     case M_BNEL_I:
9844       if (imm_expr.X_add_number == 0)
9845         op[1] = 0;
9846       else
9847         {
9848           op[1] = AT;
9849           used_at = 1;
9850           load_register (op[1], &imm_expr, GPR_SIZE == 64);
9851         }
9852       /* Fall through.  */
9853     case M_BEQL:
9854     case M_BNEL:
9855       macro_build_branch_rsrt (mask, &offset_expr, op[0], op[1]);
9856       break;
9857
9858     case M_BGEL:
9859       likely = 1;
9860     case M_BGE:
9861       if (op[1] == 0)
9862         macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, op[0]);
9863       else if (op[0] == 0)
9864         macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, op[1]);
9865       else
9866         {
9867           used_at = 1;
9868           macro_build (NULL, "slt", "d,v,t", AT, op[0], op[1]);
9869           macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9870                                    &offset_expr, AT, ZERO);
9871         }
9872       break;
9873
9874     case M_BGEZL:
9875     case M_BGEZALL:
9876     case M_BGTZL:
9877     case M_BLEZL:
9878     case M_BLTZL:
9879     case M_BLTZALL:
9880       macro_build_branch_rs (mask, &offset_expr, op[0]);
9881       break;
9882
9883     case M_BGTL_I:
9884       likely = 1;
9885     case M_BGT_I:
9886       /* Check for > max integer.  */
9887       if (imm_expr.X_add_number >= GPR_SMAX)
9888         {
9889         do_false:
9890           /* Result is always false.  */
9891           if (! likely)
9892             macro_build (NULL, "nop", "");
9893           else
9894             macro_build_branch_rsrt (M_BNEL, &offset_expr, ZERO, ZERO);
9895           break;
9896         }
9897       ++imm_expr.X_add_number;
9898       /* FALLTHROUGH */
9899     case M_BGE_I:
9900     case M_BGEL_I:
9901       if (mask == M_BGEL_I)
9902         likely = 1;
9903       if (imm_expr.X_add_number == 0)
9904         {
9905           macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ,
9906                                  &offset_expr, op[0]);
9907           break;
9908         }
9909       if (imm_expr.X_add_number == 1)
9910         {
9911           macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ,
9912                                  &offset_expr, op[0]);
9913           break;
9914         }
9915       if (imm_expr.X_add_number <= GPR_SMIN)
9916         {
9917         do_true:
9918           /* result is always true */
9919           as_warn (_("branch %s is always true"), ip->insn_mo->name);
9920           macro_build (&offset_expr, "b", "p");
9921           break;
9922         }
9923       used_at = 1;
9924       set_at (op[0], 0);
9925       macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9926                                &offset_expr, AT, ZERO);
9927       break;
9928
9929     case M_BGEUL:
9930       likely = 1;
9931     case M_BGEU:
9932       if (op[1] == 0)
9933         goto do_true;
9934       else if (op[0] == 0)
9935         macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9936                                  &offset_expr, ZERO, op[1]);
9937       else
9938         {
9939           used_at = 1;
9940           macro_build (NULL, "sltu", "d,v,t", AT, op[0], op[1]);
9941           macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9942                                    &offset_expr, AT, ZERO);
9943         }
9944       break;
9945
9946     case M_BGTUL_I:
9947       likely = 1;
9948     case M_BGTU_I:
9949       if (op[0] == 0
9950           || (GPR_SIZE == 32
9951               && imm_expr.X_add_number == -1))
9952         goto do_false;
9953       ++imm_expr.X_add_number;
9954       /* FALLTHROUGH */
9955     case M_BGEU_I:
9956     case M_BGEUL_I:
9957       if (mask == M_BGEUL_I)
9958         likely = 1;
9959       if (imm_expr.X_add_number == 0)
9960         goto do_true;
9961       else if (imm_expr.X_add_number == 1)
9962         macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
9963                                  &offset_expr, op[0], ZERO);
9964       else
9965         {
9966           used_at = 1;
9967           set_at (op[0], 1);
9968           macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9969                                    &offset_expr, AT, ZERO);
9970         }
9971       break;
9972
9973     case M_BGTL:
9974       likely = 1;
9975     case M_BGT:
9976       if (op[1] == 0)
9977         macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, op[0]);
9978       else if (op[0] == 0)
9979         macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, op[1]);
9980       else
9981         {
9982           used_at = 1;
9983           macro_build (NULL, "slt", "d,v,t", AT, op[1], op[0]);
9984           macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
9985                                    &offset_expr, AT, ZERO);
9986         }
9987       break;
9988
9989     case M_BGTUL:
9990       likely = 1;
9991     case M_BGTU:
9992       if (op[1] == 0)
9993         macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
9994                                  &offset_expr, op[0], ZERO);
9995       else if (op[0] == 0)
9996         goto do_false;
9997       else
9998         {
9999           used_at = 1;
10000           macro_build (NULL, "sltu", "d,v,t", AT, op[1], op[0]);
10001           macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10002                                    &offset_expr, AT, ZERO);
10003         }
10004       break;
10005
10006     case M_BLEL:
10007       likely = 1;
10008     case M_BLE:
10009       if (op[1] == 0)
10010         macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, op[0]);
10011       else if (op[0] == 0)
10012         macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, op[1]);
10013       else
10014         {
10015           used_at = 1;
10016           macro_build (NULL, "slt", "d,v,t", AT, op[1], op[0]);
10017           macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
10018                                    &offset_expr, AT, ZERO);
10019         }
10020       break;
10021
10022     case M_BLEL_I:
10023       likely = 1;
10024     case M_BLE_I:
10025       if (imm_expr.X_add_number >= GPR_SMAX)
10026         goto do_true;
10027       ++imm_expr.X_add_number;
10028       /* FALLTHROUGH */
10029     case M_BLT_I:
10030     case M_BLTL_I:
10031       if (mask == M_BLTL_I)
10032         likely = 1;
10033       if (imm_expr.X_add_number == 0)
10034         macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, op[0]);
10035       else if (imm_expr.X_add_number == 1)
10036         macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, op[0]);
10037       else
10038         {
10039           used_at = 1;
10040           set_at (op[0], 0);
10041           macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10042                                    &offset_expr, AT, ZERO);
10043         }
10044       break;
10045
10046     case M_BLEUL:
10047       likely = 1;
10048     case M_BLEU:
10049       if (op[1] == 0)
10050         macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
10051                                  &offset_expr, op[0], ZERO);
10052       else if (op[0] == 0)
10053         goto do_true;
10054       else
10055         {
10056           used_at = 1;
10057           macro_build (NULL, "sltu", "d,v,t", AT, op[1], op[0]);
10058           macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
10059                                    &offset_expr, AT, ZERO);
10060         }
10061       break;
10062
10063     case M_BLEUL_I:
10064       likely = 1;
10065     case M_BLEU_I:
10066       if (op[0] == 0
10067           || (GPR_SIZE == 32
10068               && imm_expr.X_add_number == -1))
10069         goto do_true;
10070       ++imm_expr.X_add_number;
10071       /* FALLTHROUGH */
10072     case M_BLTU_I:
10073     case M_BLTUL_I:
10074       if (mask == M_BLTUL_I)
10075         likely = 1;
10076       if (imm_expr.X_add_number == 0)
10077         goto do_false;
10078       else if (imm_expr.X_add_number == 1)
10079         macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
10080                                  &offset_expr, op[0], ZERO);
10081       else
10082         {
10083           used_at = 1;
10084           set_at (op[0], 1);
10085           macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10086                                    &offset_expr, AT, ZERO);
10087         }
10088       break;
10089
10090     case M_BLTL:
10091       likely = 1;
10092     case M_BLT:
10093       if (op[1] == 0)
10094         macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, op[0]);
10095       else if (op[0] == 0)
10096         macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, op[1]);
10097       else
10098         {
10099           used_at = 1;
10100           macro_build (NULL, "slt", "d,v,t", AT, op[0], op[1]);
10101           macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10102                                    &offset_expr, AT, ZERO);
10103         }
10104       break;
10105
10106     case M_BLTUL:
10107       likely = 1;
10108     case M_BLTU:
10109       if (op[1] == 0)
10110         goto do_false;
10111       else if (op[0] == 0)
10112         macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10113                                  &offset_expr, ZERO, op[1]);
10114       else
10115         {
10116           used_at = 1;
10117           macro_build (NULL, "sltu", "d,v,t", AT, op[0], op[1]);
10118           macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10119                                    &offset_expr, AT, ZERO);
10120         }
10121       break;
10122
10123     case M_DDIV_3:
10124       dbl = 1;
10125     case M_DIV_3:
10126       s = "mflo";
10127       goto do_div3;
10128     case M_DREM_3:
10129       dbl = 1;
10130     case M_REM_3:
10131       s = "mfhi";
10132     do_div3:
10133       if (op[2] == 0)
10134         {
10135           as_warn (_("divide by zero"));
10136           if (mips_trap)
10137             macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
10138           else
10139             macro_build (NULL, "break", BRK_FMT, 7);
10140           break;
10141         }
10142
10143       start_noreorder ();
10144       if (mips_trap)
10145         {
10146           macro_build (NULL, "teq", TRAP_FMT, op[2], ZERO, 7);
10147           macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", op[1], op[2]);
10148         }
10149       else
10150         {
10151           if (mips_opts.micromips)
10152             micromips_label_expr (&label_expr);
10153           else
10154             label_expr.X_add_number = 8;
10155           macro_build (&label_expr, "bne", "s,t,p", op[2], ZERO);
10156           macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", op[1], op[2]);
10157           macro_build (NULL, "break", BRK_FMT, 7);
10158           if (mips_opts.micromips)
10159             micromips_add_label ();
10160         }
10161       expr1.X_add_number = -1;
10162       used_at = 1;
10163       load_register (AT, &expr1, dbl);
10164       if (mips_opts.micromips)
10165         micromips_label_expr (&label_expr);
10166       else
10167         label_expr.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
10168       macro_build (&label_expr, "bne", "s,t,p", op[2], AT);
10169       if (dbl)
10170         {
10171           expr1.X_add_number = 1;
10172           load_register (AT, &expr1, dbl);
10173           macro_build (NULL, "dsll32", SHFT_FMT, AT, AT, 31);
10174         }
10175       else
10176         {
10177           expr1.X_add_number = 0x80000000;
10178           macro_build (&expr1, "lui", LUI_FMT, AT, BFD_RELOC_HI16);
10179         }
10180       if (mips_trap)
10181         {
10182           macro_build (NULL, "teq", TRAP_FMT, op[1], AT, 6);
10183           /* We want to close the noreorder block as soon as possible, so
10184              that later insns are available for delay slot filling.  */
10185           end_noreorder ();
10186         }
10187       else
10188         {
10189           if (mips_opts.micromips)
10190             micromips_label_expr (&label_expr);
10191           else
10192             label_expr.X_add_number = 8;
10193           macro_build (&label_expr, "bne", "s,t,p", op[1], AT);
10194           macro_build (NULL, "nop", "");
10195
10196           /* We want to close the noreorder block as soon as possible, so
10197              that later insns are available for delay slot filling.  */
10198           end_noreorder ();
10199
10200           macro_build (NULL, "break", BRK_FMT, 6);
10201         }
10202       if (mips_opts.micromips)
10203         micromips_add_label ();
10204       macro_build (NULL, s, MFHL_FMT, op[0]);
10205       break;
10206
10207     case M_DIV_3I:
10208       s = "div";
10209       s2 = "mflo";
10210       goto do_divi;
10211     case M_DIVU_3I:
10212       s = "divu";
10213       s2 = "mflo";
10214       goto do_divi;
10215     case M_REM_3I:
10216       s = "div";
10217       s2 = "mfhi";
10218       goto do_divi;
10219     case M_REMU_3I:
10220       s = "divu";
10221       s2 = "mfhi";
10222       goto do_divi;
10223     case M_DDIV_3I:
10224       dbl = 1;
10225       s = "ddiv";
10226       s2 = "mflo";
10227       goto do_divi;
10228     case M_DDIVU_3I:
10229       dbl = 1;
10230       s = "ddivu";
10231       s2 = "mflo";
10232       goto do_divi;
10233     case M_DREM_3I:
10234       dbl = 1;
10235       s = "ddiv";
10236       s2 = "mfhi";
10237       goto do_divi;
10238     case M_DREMU_3I:
10239       dbl = 1;
10240       s = "ddivu";
10241       s2 = "mfhi";
10242     do_divi:
10243       if (imm_expr.X_add_number == 0)
10244         {
10245           as_warn (_("divide by zero"));
10246           if (mips_trap)
10247             macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
10248           else
10249             macro_build (NULL, "break", BRK_FMT, 7);
10250           break;
10251         }
10252       if (imm_expr.X_add_number == 1)
10253         {
10254           if (strcmp (s2, "mflo") == 0)
10255             move_register (op[0], op[1]);
10256           else
10257             move_register (op[0], ZERO);
10258           break;
10259         }
10260       if (imm_expr.X_add_number == -1 && s[strlen (s) - 1] != 'u')
10261         {
10262           if (strcmp (s2, "mflo") == 0)
10263             macro_build (NULL, dbl ? "dneg" : "neg", "d,w", op[0], op[1]);
10264           else
10265             move_register (op[0], ZERO);
10266           break;
10267         }
10268
10269       used_at = 1;
10270       load_register (AT, &imm_expr, dbl);
10271       macro_build (NULL, s, "z,s,t", op[1], AT);
10272       macro_build (NULL, s2, MFHL_FMT, op[0]);
10273       break;
10274
10275     case M_DIVU_3:
10276       s = "divu";
10277       s2 = "mflo";
10278       goto do_divu3;
10279     case M_REMU_3:
10280       s = "divu";
10281       s2 = "mfhi";
10282       goto do_divu3;
10283     case M_DDIVU_3:
10284       s = "ddivu";
10285       s2 = "mflo";
10286       goto do_divu3;
10287     case M_DREMU_3:
10288       s = "ddivu";
10289       s2 = "mfhi";
10290     do_divu3:
10291       start_noreorder ();
10292       if (mips_trap)
10293         {
10294           macro_build (NULL, "teq", TRAP_FMT, op[2], ZERO, 7);
10295           macro_build (NULL, s, "z,s,t", op[1], op[2]);
10296           /* We want to close the noreorder block as soon as possible, so
10297              that later insns are available for delay slot filling.  */
10298           end_noreorder ();
10299         }
10300       else
10301         {
10302           if (mips_opts.micromips)
10303             micromips_label_expr (&label_expr);
10304           else
10305             label_expr.X_add_number = 8;
10306           macro_build (&label_expr, "bne", "s,t,p", op[2], ZERO);
10307           macro_build (NULL, s, "z,s,t", op[1], op[2]);
10308
10309           /* We want to close the noreorder block as soon as possible, so
10310              that later insns are available for delay slot filling.  */
10311           end_noreorder ();
10312           macro_build (NULL, "break", BRK_FMT, 7);
10313           if (mips_opts.micromips)
10314             micromips_add_label ();
10315         }
10316       macro_build (NULL, s2, MFHL_FMT, op[0]);
10317       break;
10318
10319     case M_DLCA_AB:
10320       dbl = 1;
10321     case M_LCA_AB:
10322       call = 1;
10323       goto do_la;
10324     case M_DLA_AB:
10325       dbl = 1;
10326     case M_LA_AB:
10327     do_la:
10328       /* Load the address of a symbol into a register.  If breg is not
10329          zero, we then add a base register to it.  */
10330
10331       breg = op[2];
10332       if (dbl && GPR_SIZE == 32)
10333         as_warn (_("dla used to load 32-bit register"));
10334
10335       if (!dbl && HAVE_64BIT_OBJECTS)
10336         as_warn (_("la used to load 64-bit address"));
10337
10338       if (small_offset_p (0, align, 16))
10339         {
10340           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", op[0], breg,
10341                        -1, offset_reloc[0], offset_reloc[1], offset_reloc[2]);
10342           break;
10343         }
10344
10345       if (mips_opts.at && (op[0] == breg))
10346         {
10347           tempreg = AT;
10348           used_at = 1;
10349         }
10350       else
10351         tempreg = op[0];
10352
10353       if (offset_expr.X_op != O_symbol
10354           && offset_expr.X_op != O_constant)
10355         {
10356           as_bad (_("expression too complex"));
10357           offset_expr.X_op = O_constant;
10358         }
10359
10360       if (offset_expr.X_op == O_constant)
10361         load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
10362       else if (mips_pic == NO_PIC)
10363         {
10364           /* If this is a reference to a GP relative symbol, we want
10365                addiu    $tempreg,$gp,<sym>      (BFD_RELOC_GPREL16)
10366              Otherwise we want
10367                lui      $tempreg,<sym>          (BFD_RELOC_HI16_S)
10368                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
10369              If we have a constant, we need two instructions anyhow,
10370              so we may as well always use the latter form.
10371
10372              With 64bit address space and a usable $at we want
10373                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
10374                lui      $at,<sym>               (BFD_RELOC_HI16_S)
10375                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
10376                daddiu   $at,<sym>               (BFD_RELOC_LO16)
10377                dsll32   $tempreg,0
10378                daddu    $tempreg,$tempreg,$at
10379
10380              If $at is already in use, we use a path which is suboptimal
10381              on superscalar processors.
10382                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
10383                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
10384                dsll     $tempreg,16
10385                daddiu   $tempreg,<sym>          (BFD_RELOC_HI16_S)
10386                dsll     $tempreg,16
10387                daddiu   $tempreg,<sym>          (BFD_RELOC_LO16)
10388
10389              For GP relative symbols in 64bit address space we can use
10390              the same sequence as in 32bit address space.  */
10391           if (HAVE_64BIT_SYMBOLS)
10392             {
10393               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
10394                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
10395                 {
10396                   relax_start (offset_expr.X_add_symbol);
10397                   macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10398                                tempreg, mips_gp_register, BFD_RELOC_GPREL16);
10399                   relax_switch ();
10400                 }
10401
10402               if (used_at == 0 && mips_opts.at)
10403                 {
10404                   macro_build (&offset_expr, "lui", LUI_FMT,
10405                                tempreg, BFD_RELOC_MIPS_HIGHEST);
10406                   macro_build (&offset_expr, "lui", LUI_FMT,
10407                                AT, BFD_RELOC_HI16_S);
10408                   macro_build (&offset_expr, "daddiu", "t,r,j",
10409                                tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
10410                   macro_build (&offset_expr, "daddiu", "t,r,j",
10411                                AT, AT, BFD_RELOC_LO16);
10412                   macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
10413                   macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
10414                   used_at = 1;
10415                 }
10416               else
10417                 {
10418                   macro_build (&offset_expr, "lui", LUI_FMT,
10419                                tempreg, BFD_RELOC_MIPS_HIGHEST);
10420                   macro_build (&offset_expr, "daddiu", "t,r,j",
10421                                tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
10422                   macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
10423                   macro_build (&offset_expr, "daddiu", "t,r,j",
10424                                tempreg, tempreg, BFD_RELOC_HI16_S);
10425                   macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
10426                   macro_build (&offset_expr, "daddiu", "t,r,j",
10427                                tempreg, tempreg, BFD_RELOC_LO16);
10428                 }
10429
10430               if (mips_relax.sequence)
10431                 relax_end ();
10432             }
10433           else
10434             {
10435               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
10436                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
10437                 {
10438                   relax_start (offset_expr.X_add_symbol);
10439                   macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10440                                tempreg, mips_gp_register, BFD_RELOC_GPREL16);
10441                   relax_switch ();
10442                 }
10443               if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
10444                 as_bad (_("offset too large"));
10445               macro_build_lui (&offset_expr, tempreg);
10446               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10447                            tempreg, tempreg, BFD_RELOC_LO16);
10448               if (mips_relax.sequence)
10449                 relax_end ();
10450             }
10451         }
10452       else if (!mips_big_got && !HAVE_NEWABI)
10453         {
10454           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
10455
10456           /* If this is a reference to an external symbol, and there
10457              is no constant, we want
10458                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
10459              or for lca or if tempreg is PIC_CALL_REG
10460                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_CALL16)
10461              For a local symbol, we want
10462                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
10463                nop
10464                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
10465
10466              If we have a small constant, and this is a reference to
10467              an external symbol, we want
10468                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
10469                nop
10470                addiu    $tempreg,$tempreg,<constant>
10471              For a local symbol, we want the same instruction
10472              sequence, but we output a BFD_RELOC_LO16 reloc on the
10473              addiu instruction.
10474
10475              If we have a large constant, and this is a reference to
10476              an external symbol, we want
10477                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
10478                lui      $at,<hiconstant>
10479                addiu    $at,$at,<loconstant>
10480                addu     $tempreg,$tempreg,$at
10481              For a local symbol, we want the same instruction
10482              sequence, but we output a BFD_RELOC_LO16 reloc on the
10483              addiu instruction.
10484            */
10485
10486           if (offset_expr.X_add_number == 0)
10487             {
10488               if (mips_pic == SVR4_PIC
10489                   && breg == 0
10490                   && (call || tempreg == PIC_CALL_REG))
10491                 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
10492
10493               relax_start (offset_expr.X_add_symbol);
10494               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10495                            lw_reloc_type, mips_gp_register);
10496               if (breg != 0)
10497                 {
10498                   /* We're going to put in an addu instruction using
10499                      tempreg, so we may as well insert the nop right
10500                      now.  */
10501                   load_delay_nop ();
10502                 }
10503               relax_switch ();
10504               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10505                            tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
10506               load_delay_nop ();
10507               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10508                            tempreg, tempreg, BFD_RELOC_LO16);
10509               relax_end ();
10510               /* FIXME: If breg == 0, and the next instruction uses
10511                  $tempreg, then if this variant case is used an extra
10512                  nop will be generated.  */
10513             }
10514           else if (offset_expr.X_add_number >= -0x8000
10515                    && offset_expr.X_add_number < 0x8000)
10516             {
10517               load_got_offset (tempreg, &offset_expr);
10518               load_delay_nop ();
10519               add_got_offset (tempreg, &offset_expr);
10520             }
10521           else
10522             {
10523               expr1.X_add_number = offset_expr.X_add_number;
10524               offset_expr.X_add_number =
10525                 SEXT_16BIT (offset_expr.X_add_number);
10526               load_got_offset (tempreg, &offset_expr);
10527               offset_expr.X_add_number = expr1.X_add_number;
10528               /* If we are going to add in a base register, and the
10529                  target register and the base register are the same,
10530                  then we are using AT as a temporary register.  Since
10531                  we want to load the constant into AT, we add our
10532                  current AT (from the global offset table) and the
10533                  register into the register now, and pretend we were
10534                  not using a base register.  */
10535               if (breg == op[0])
10536                 {
10537                   load_delay_nop ();
10538                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10539                                op[0], AT, breg);
10540                   breg = 0;
10541                   tempreg = op[0];
10542                 }
10543               add_got_offset_hilo (tempreg, &offset_expr, AT);
10544               used_at = 1;
10545             }
10546         }
10547       else if (!mips_big_got && HAVE_NEWABI)
10548         {
10549           int add_breg_early = 0;
10550
10551           /* If this is a reference to an external, and there is no
10552              constant, or local symbol (*), with or without a
10553              constant, we want
10554                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
10555              or for lca or if tempreg is PIC_CALL_REG
10556                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_CALL16)
10557
10558              If we have a small constant, and this is a reference to
10559              an external symbol, we want
10560                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
10561                addiu    $tempreg,$tempreg,<constant>
10562
10563              If we have a large constant, and this is a reference to
10564              an external symbol, we want
10565                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
10566                lui      $at,<hiconstant>
10567                addiu    $at,$at,<loconstant>
10568                addu     $tempreg,$tempreg,$at
10569
10570              (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
10571              local symbols, even though it introduces an additional
10572              instruction.  */
10573
10574           if (offset_expr.X_add_number)
10575             {
10576               expr1.X_add_number = offset_expr.X_add_number;
10577               offset_expr.X_add_number = 0;
10578
10579               relax_start (offset_expr.X_add_symbol);
10580               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10581                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
10582
10583               if (expr1.X_add_number >= -0x8000
10584                   && expr1.X_add_number < 0x8000)
10585                 {
10586                   macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
10587                                tempreg, tempreg, BFD_RELOC_LO16);
10588                 }
10589               else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
10590                 {
10591                   unsigned int dreg;
10592
10593                   /* If we are going to add in a base register, and the
10594                      target register and the base register are the same,
10595                      then we are using AT as a temporary register.  Since
10596                      we want to load the constant into AT, we add our
10597                      current AT (from the global offset table) and the
10598                      register into the register now, and pretend we were
10599                      not using a base register.  */
10600                   if (breg != op[0])
10601                     dreg = tempreg;
10602                   else
10603                     {
10604                       gas_assert (tempreg == AT);
10605                       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10606                                    op[0], AT, breg);
10607                       dreg = op[0];
10608                       add_breg_early = 1;
10609                     }
10610
10611                   load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
10612                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10613                                dreg, dreg, AT);
10614
10615                   used_at = 1;
10616                 }
10617               else
10618                 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
10619
10620               relax_switch ();
10621               offset_expr.X_add_number = expr1.X_add_number;
10622
10623               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10624                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
10625               if (add_breg_early)
10626                 {
10627                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10628                                op[0], tempreg, breg);
10629                   breg = 0;
10630                   tempreg = op[0];
10631                 }
10632               relax_end ();
10633             }
10634           else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
10635             {
10636               relax_start (offset_expr.X_add_symbol);
10637               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10638                            BFD_RELOC_MIPS_CALL16, mips_gp_register);
10639               relax_switch ();
10640               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10641                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
10642               relax_end ();
10643             }
10644           else
10645             {
10646               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10647                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
10648             }
10649         }
10650       else if (mips_big_got && !HAVE_NEWABI)
10651         {
10652           int gpdelay;
10653           int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
10654           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
10655           int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
10656
10657           /* This is the large GOT case.  If this is a reference to an
10658              external symbol, and there is no constant, we want
10659                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
10660                addu     $tempreg,$tempreg,$gp
10661                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10662              or for lca or if tempreg is PIC_CALL_REG
10663                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_CALL_HI16)
10664                addu     $tempreg,$tempreg,$gp
10665                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
10666              For a local symbol, we want
10667                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
10668                nop
10669                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
10670
10671              If we have a small constant, and this is a reference to
10672              an external symbol, we want
10673                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
10674                addu     $tempreg,$tempreg,$gp
10675                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10676                nop
10677                addiu    $tempreg,$tempreg,<constant>
10678              For a local symbol, we want
10679                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
10680                nop
10681                addiu    $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
10682
10683              If we have a large constant, and this is a reference to
10684              an external symbol, we want
10685                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
10686                addu     $tempreg,$tempreg,$gp
10687                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10688                lui      $at,<hiconstant>
10689                addiu    $at,$at,<loconstant>
10690                addu     $tempreg,$tempreg,$at
10691              For a local symbol, we want
10692                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
10693                lui      $at,<hiconstant>
10694                addiu    $at,$at,<loconstant>    (BFD_RELOC_LO16)
10695                addu     $tempreg,$tempreg,$at
10696           */
10697
10698           expr1.X_add_number = offset_expr.X_add_number;
10699           offset_expr.X_add_number = 0;
10700           relax_start (offset_expr.X_add_symbol);
10701           gpdelay = reg_needs_delay (mips_gp_register);
10702           if (expr1.X_add_number == 0 && breg == 0
10703               && (call || tempreg == PIC_CALL_REG))
10704             {
10705               lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
10706               lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
10707             }
10708           macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
10709           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10710                        tempreg, tempreg, mips_gp_register);
10711           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10712                        tempreg, lw_reloc_type, tempreg);
10713           if (expr1.X_add_number == 0)
10714             {
10715               if (breg != 0)
10716                 {
10717                   /* We're going to put in an addu instruction using
10718                      tempreg, so we may as well insert the nop right
10719                      now.  */
10720                   load_delay_nop ();
10721                 }
10722             }
10723           else if (expr1.X_add_number >= -0x8000
10724                    && expr1.X_add_number < 0x8000)
10725             {
10726               load_delay_nop ();
10727               macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
10728                            tempreg, tempreg, BFD_RELOC_LO16);
10729             }
10730           else
10731             {
10732               unsigned int dreg;
10733
10734               /* If we are going to add in a base register, and the
10735                  target register and the base register are the same,
10736                  then we are using AT as a temporary register.  Since
10737                  we want to load the constant into AT, we add our
10738                  current AT (from the global offset table) and the
10739                  register into the register now, and pretend we were
10740                  not using a base register.  */
10741               if (breg != op[0])
10742                 dreg = tempreg;
10743               else
10744                 {
10745                   gas_assert (tempreg == AT);
10746                   load_delay_nop ();
10747                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10748                                op[0], AT, breg);
10749                   dreg = op[0];
10750                 }
10751
10752               load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
10753               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
10754
10755               used_at = 1;
10756             }
10757           offset_expr.X_add_number = SEXT_16BIT (expr1.X_add_number);
10758           relax_switch ();
10759
10760           if (gpdelay)
10761             {
10762               /* This is needed because this instruction uses $gp, but
10763                  the first instruction on the main stream does not.  */
10764               macro_build (NULL, "nop", "");
10765             }
10766
10767           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10768                        local_reloc_type, mips_gp_register);
10769           if (expr1.X_add_number >= -0x8000
10770               && expr1.X_add_number < 0x8000)
10771             {
10772               load_delay_nop ();
10773               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10774                            tempreg, tempreg, BFD_RELOC_LO16);
10775               /* FIXME: If add_number is 0, and there was no base
10776                  register, the external symbol case ended with a load,
10777                  so if the symbol turns out to not be external, and
10778                  the next instruction uses tempreg, an unnecessary nop
10779                  will be inserted.  */
10780             }
10781           else
10782             {
10783               if (breg == op[0])
10784                 {
10785                   /* We must add in the base register now, as in the
10786                      external symbol case.  */
10787                   gas_assert (tempreg == AT);
10788                   load_delay_nop ();
10789                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10790                                op[0], AT, breg);
10791                   tempreg = op[0];
10792                   /* We set breg to 0 because we have arranged to add
10793                      it in in both cases.  */
10794                   breg = 0;
10795                 }
10796
10797               macro_build_lui (&expr1, AT);
10798               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10799                            AT, AT, BFD_RELOC_LO16);
10800               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10801                            tempreg, tempreg, AT);
10802               used_at = 1;
10803             }
10804           relax_end ();
10805         }
10806       else if (mips_big_got && HAVE_NEWABI)
10807         {
10808           int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
10809           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
10810           int add_breg_early = 0;
10811
10812           /* This is the large GOT case.  If this is a reference to an
10813              external symbol, and there is no constant, we want
10814                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
10815                add      $tempreg,$tempreg,$gp
10816                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10817              or for lca or if tempreg is PIC_CALL_REG
10818                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_CALL_HI16)
10819                add      $tempreg,$tempreg,$gp
10820                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
10821
10822              If we have a small constant, and this is a reference to
10823              an external symbol, we want
10824                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
10825                add      $tempreg,$tempreg,$gp
10826                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10827                addi     $tempreg,$tempreg,<constant>
10828
10829              If we have a large constant, and this is a reference to
10830              an external symbol, we want
10831                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
10832                addu     $tempreg,$tempreg,$gp
10833                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10834                lui      $at,<hiconstant>
10835                addi     $at,$at,<loconstant>
10836                add      $tempreg,$tempreg,$at
10837
10838              If we have NewABI, and we know it's a local symbol, we want
10839                lw       $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT_PAGE)
10840                addiu    $reg,$reg,<sym>         (BFD_RELOC_MIPS_GOT_OFST)
10841              otherwise we have to resort to GOT_HI16/GOT_LO16.  */
10842
10843           relax_start (offset_expr.X_add_symbol);
10844
10845           expr1.X_add_number = offset_expr.X_add_number;
10846           offset_expr.X_add_number = 0;
10847
10848           if (expr1.X_add_number == 0 && breg == 0
10849               && (call || tempreg == PIC_CALL_REG))
10850             {
10851               lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
10852               lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
10853             }
10854           macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
10855           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10856                        tempreg, tempreg, mips_gp_register);
10857           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10858                        tempreg, lw_reloc_type, tempreg);
10859
10860           if (expr1.X_add_number == 0)
10861             ;
10862           else if (expr1.X_add_number >= -0x8000
10863                    && expr1.X_add_number < 0x8000)
10864             {
10865               macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
10866                            tempreg, tempreg, BFD_RELOC_LO16);
10867             }
10868           else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
10869             {
10870               unsigned int dreg;
10871
10872               /* If we are going to add in a base register, and the
10873                  target register and the base register are the same,
10874                  then we are using AT as a temporary register.  Since
10875                  we want to load the constant into AT, we add our
10876                  current AT (from the global offset table) and the
10877                  register into the register now, and pretend we were
10878                  not using a base register.  */
10879               if (breg != op[0])
10880                 dreg = tempreg;
10881               else
10882                 {
10883                   gas_assert (tempreg == AT);
10884                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10885                                op[0], AT, breg);
10886                   dreg = op[0];
10887                   add_breg_early = 1;
10888                 }
10889
10890               load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
10891               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
10892
10893               used_at = 1;
10894             }
10895           else
10896             as_bad (_("PIC code offset overflow (max 32 signed bits)"));
10897
10898           relax_switch ();
10899           offset_expr.X_add_number = expr1.X_add_number;
10900           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10901                        BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
10902           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
10903                        tempreg, BFD_RELOC_MIPS_GOT_OFST);
10904           if (add_breg_early)
10905             {
10906               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10907                            op[0], tempreg, breg);
10908               breg = 0;
10909               tempreg = op[0];
10910             }
10911           relax_end ();
10912         }
10913       else
10914         abort ();
10915
10916       if (breg != 0)
10917         macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", op[0], tempreg, breg);
10918       break;
10919
10920     case M_MSGSND:
10921       gas_assert (!mips_opts.micromips);
10922       macro_build (NULL, "c2", "C", (op[0] << 16) | 0x01);
10923       break;
10924
10925     case M_MSGLD:
10926       gas_assert (!mips_opts.micromips);
10927       macro_build (NULL, "c2", "C", 0x02);
10928       break;
10929
10930     case M_MSGLD_T:
10931       gas_assert (!mips_opts.micromips);
10932       macro_build (NULL, "c2", "C", (op[0] << 16) | 0x02);
10933       break;
10934
10935     case M_MSGWAIT:
10936       gas_assert (!mips_opts.micromips);
10937       macro_build (NULL, "c2", "C", 3);
10938       break;
10939
10940     case M_MSGWAIT_T:
10941       gas_assert (!mips_opts.micromips);
10942       macro_build (NULL, "c2", "C", (op[0] << 16) | 0x03);
10943       break;
10944
10945     case M_J_A:
10946       /* The j instruction may not be used in PIC code, since it
10947          requires an absolute address.  We convert it to a b
10948          instruction.  */
10949       if (mips_pic == NO_PIC)
10950         macro_build (&offset_expr, "j", "a");
10951       else
10952         macro_build (&offset_expr, "b", "p");
10953       break;
10954
10955       /* The jal instructions must be handled as macros because when
10956          generating PIC code they expand to multi-instruction
10957          sequences.  Normally they are simple instructions.  */
10958     case M_JALS_1:
10959       op[1] = op[0];
10960       op[0] = RA;
10961       /* Fall through.  */
10962     case M_JALS_2:
10963       gas_assert (mips_opts.micromips);
10964       if (mips_opts.insn32)
10965         {
10966           as_bad (_("opcode not supported in the `insn32' mode `%s'"), str);
10967           break;
10968         }
10969       jals = 1;
10970       goto jal;
10971     case M_JAL_1:
10972       op[1] = op[0];
10973       op[0] = RA;
10974       /* Fall through.  */
10975     case M_JAL_2:
10976     jal:
10977       if (mips_pic == NO_PIC)
10978         {
10979           s = jals ? "jalrs" : "jalr";
10980           if (mips_opts.micromips
10981               && !mips_opts.insn32
10982               && op[0] == RA
10983               && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
10984             macro_build (NULL, s, "mj", op[1]);
10985           else
10986             macro_build (NULL, s, JALR_FMT, op[0], op[1]);
10987         }
10988       else
10989         {
10990           int cprestore = (mips_pic == SVR4_PIC && !HAVE_NEWABI
10991                            && mips_cprestore_offset >= 0);
10992
10993           if (op[1] != PIC_CALL_REG)
10994             as_warn (_("MIPS PIC call to register other than $25"));
10995
10996           s = ((mips_opts.micromips
10997                 && !mips_opts.insn32
10998                 && (!mips_opts.noreorder || cprestore))
10999                ? "jalrs" : "jalr");
11000           if (mips_opts.micromips
11001               && !mips_opts.insn32
11002               && op[0] == RA
11003               && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
11004             macro_build (NULL, s, "mj", op[1]);
11005           else
11006             macro_build (NULL, s, JALR_FMT, op[0], op[1]);
11007           if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
11008             {
11009               if (mips_cprestore_offset < 0)
11010                 as_warn (_("no .cprestore pseudo-op used in PIC code"));
11011               else
11012                 {
11013                   if (!mips_frame_reg_valid)
11014                     {
11015                       as_warn (_("no .frame pseudo-op used in PIC code"));
11016                       /* Quiet this warning.  */
11017                       mips_frame_reg_valid = 1;
11018                     }
11019                   if (!mips_cprestore_valid)
11020                     {
11021                       as_warn (_("no .cprestore pseudo-op used in PIC code"));
11022                       /* Quiet this warning.  */
11023                       mips_cprestore_valid = 1;
11024                     }
11025                   if (mips_opts.noreorder)
11026                     macro_build (NULL, "nop", "");
11027                   expr1.X_add_number = mips_cprestore_offset;
11028                   macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
11029                                                 mips_gp_register,
11030                                                 mips_frame_reg,
11031                                                 HAVE_64BIT_ADDRESSES);
11032                 }
11033             }
11034         }
11035
11036       break;
11037
11038     case M_JALS_A:
11039       gas_assert (mips_opts.micromips);
11040       if (mips_opts.insn32)
11041         {
11042           as_bad (_("opcode not supported in the `insn32' mode `%s'"), str);
11043           break;
11044         }
11045       jals = 1;
11046       /* Fall through.  */
11047     case M_JAL_A:
11048       if (mips_pic == NO_PIC)
11049         macro_build (&offset_expr, jals ? "jals" : "jal", "a");
11050       else if (mips_pic == SVR4_PIC)
11051         {
11052           /* If this is a reference to an external symbol, and we are
11053              using a small GOT, we want
11054                lw       $25,<sym>($gp)          (BFD_RELOC_MIPS_CALL16)
11055                nop
11056                jalr     $ra,$25
11057                nop
11058                lw       $gp,cprestore($sp)
11059              The cprestore value is set using the .cprestore
11060              pseudo-op.  If we are using a big GOT, we want
11061                lui      $25,<sym>               (BFD_RELOC_MIPS_CALL_HI16)
11062                addu     $25,$25,$gp
11063                lw       $25,<sym>($25)          (BFD_RELOC_MIPS_CALL_LO16)
11064                nop
11065                jalr     $ra,$25
11066                nop
11067                lw       $gp,cprestore($sp)
11068              If the symbol is not external, we want
11069                lw       $25,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
11070                nop
11071                addiu    $25,$25,<sym>           (BFD_RELOC_LO16)
11072                jalr     $ra,$25
11073                nop
11074                lw $gp,cprestore($sp)
11075
11076              For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
11077              sequences above, minus nops, unless the symbol is local,
11078              which enables us to use GOT_PAGE/GOT_OFST (big got) or
11079              GOT_DISP.  */
11080           if (HAVE_NEWABI)
11081             {
11082               if (!mips_big_got)
11083                 {
11084                   relax_start (offset_expr.X_add_symbol);
11085                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11086                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
11087                                mips_gp_register);
11088                   relax_switch ();
11089                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11090                                PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
11091                                mips_gp_register);
11092                   relax_end ();
11093                 }
11094               else
11095                 {
11096                   relax_start (offset_expr.X_add_symbol);
11097                   macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
11098                                BFD_RELOC_MIPS_CALL_HI16);
11099                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
11100                                PIC_CALL_REG, mips_gp_register);
11101                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11102                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
11103                                PIC_CALL_REG);
11104                   relax_switch ();
11105                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11106                                PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
11107                                mips_gp_register);
11108                   macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
11109                                PIC_CALL_REG, PIC_CALL_REG,
11110                                BFD_RELOC_MIPS_GOT_OFST);
11111                   relax_end ();
11112                 }
11113
11114               macro_build_jalr (&offset_expr, 0);
11115             }
11116           else
11117             {
11118               relax_start (offset_expr.X_add_symbol);
11119               if (!mips_big_got)
11120                 {
11121                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11122                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
11123                                mips_gp_register);
11124                   load_delay_nop ();
11125                   relax_switch ();
11126                 }
11127               else
11128                 {
11129                   int gpdelay;
11130
11131                   gpdelay = reg_needs_delay (mips_gp_register);
11132                   macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
11133                                BFD_RELOC_MIPS_CALL_HI16);
11134                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
11135                                PIC_CALL_REG, mips_gp_register);
11136                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11137                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
11138                                PIC_CALL_REG);
11139                   load_delay_nop ();
11140                   relax_switch ();
11141                   if (gpdelay)
11142                     macro_build (NULL, "nop", "");
11143                 }
11144               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11145                            PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
11146                            mips_gp_register);
11147               load_delay_nop ();
11148               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
11149                            PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
11150               relax_end ();
11151               macro_build_jalr (&offset_expr, mips_cprestore_offset >= 0);
11152
11153               if (mips_cprestore_offset < 0)
11154                 as_warn (_("no .cprestore pseudo-op used in PIC code"));
11155               else
11156                 {
11157                   if (!mips_frame_reg_valid)
11158                     {
11159                       as_warn (_("no .frame pseudo-op used in PIC code"));
11160                       /* Quiet this warning.  */
11161                       mips_frame_reg_valid = 1;
11162                     }
11163                   if (!mips_cprestore_valid)
11164                     {
11165                       as_warn (_("no .cprestore pseudo-op used in PIC code"));
11166                       /* Quiet this warning.  */
11167                       mips_cprestore_valid = 1;
11168                     }
11169                   if (mips_opts.noreorder)
11170                     macro_build (NULL, "nop", "");
11171                   expr1.X_add_number = mips_cprestore_offset;
11172                   macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
11173                                                 mips_gp_register,
11174                                                 mips_frame_reg,
11175                                                 HAVE_64BIT_ADDRESSES);
11176                 }
11177             }
11178         }
11179       else if (mips_pic == VXWORKS_PIC)
11180         as_bad (_("non-PIC jump used in PIC library"));
11181       else
11182         abort ();
11183
11184       break;
11185
11186     case M_LBUE_AB:
11187       s = "lbue";
11188       fmt = "t,+j(b)";
11189       offbits = 9;
11190       goto ld_st;
11191     case M_LHUE_AB:
11192       s = "lhue";
11193       fmt = "t,+j(b)";
11194       offbits = 9;
11195       goto ld_st;
11196     case M_LBE_AB:
11197       s = "lbe";
11198       fmt = "t,+j(b)";
11199       offbits = 9;
11200       goto ld_st;
11201     case M_LHE_AB:
11202       s = "lhe";
11203       fmt = "t,+j(b)";
11204       offbits = 9;
11205       goto ld_st;
11206     case M_LLE_AB:
11207       s = "lle";
11208       fmt = "t,+j(b)";
11209       offbits = 9;
11210       goto ld_st;
11211     case M_LWE_AB:
11212       s = "lwe";
11213       fmt = "t,+j(b)";
11214       offbits = 9;
11215       goto ld_st;
11216     case M_LWLE_AB:
11217       s = "lwle";
11218       fmt = "t,+j(b)";
11219       offbits = 9;
11220       goto ld_st;
11221     case M_LWRE_AB:
11222       s = "lwre";
11223       fmt = "t,+j(b)";
11224       offbits = 9;
11225       goto ld_st;
11226     case M_SBE_AB:
11227       s = "sbe";
11228       fmt = "t,+j(b)";
11229       offbits = 9;
11230       goto ld_st;
11231     case M_SCE_AB:
11232       s = "sce";
11233       fmt = "t,+j(b)";
11234       offbits = 9;
11235       goto ld_st;
11236     case M_SHE_AB:
11237       s = "she";
11238       fmt = "t,+j(b)";
11239       offbits = 9;
11240       goto ld_st;
11241     case M_SWE_AB:
11242       s = "swe";
11243       fmt = "t,+j(b)";
11244       offbits = 9;
11245       goto ld_st;
11246     case M_SWLE_AB:
11247       s = "swle";
11248       fmt = "t,+j(b)";
11249       offbits = 9;
11250       goto ld_st;
11251     case M_SWRE_AB:
11252       s = "swre";
11253       fmt = "t,+j(b)";
11254       offbits = 9;
11255       goto ld_st;
11256     case M_ACLR_AB:
11257       s = "aclr";
11258       fmt = "\\,~(b)";
11259       offbits = 12;
11260       goto ld_st;
11261     case M_ASET_AB:
11262       s = "aset";
11263       fmt = "\\,~(b)";
11264       offbits = 12;
11265       goto ld_st;
11266     case M_LB_AB:
11267       s = "lb";
11268       fmt = "t,o(b)";
11269       goto ld;
11270     case M_LBU_AB:
11271       s = "lbu";
11272       fmt = "t,o(b)";
11273       goto ld;
11274     case M_LH_AB:
11275       s = "lh";
11276       fmt = "t,o(b)";
11277       goto ld;
11278     case M_LHU_AB:
11279       s = "lhu";
11280       fmt = "t,o(b)";
11281       goto ld;
11282     case M_LW_AB:
11283       s = "lw";
11284       fmt = "t,o(b)";
11285       goto ld;
11286     case M_LWC0_AB:
11287       gas_assert (!mips_opts.micromips);
11288       s = "lwc0";
11289       fmt = "E,o(b)";
11290       /* Itbl support may require additional care here.  */
11291       coproc = 1;
11292       goto ld_st;
11293     case M_LWC1_AB:
11294       s = "lwc1";
11295       fmt = "T,o(b)";
11296       /* Itbl support may require additional care here.  */
11297       coproc = 1;
11298       goto ld_st;
11299     case M_LWC2_AB:
11300       s = "lwc2";
11301       fmt = COP12_FMT;
11302       offbits = (mips_opts.micromips ? 12
11303                  : ISA_IS_R6 (mips_opts.isa) ? 11
11304                  : 16);
11305       /* Itbl support may require additional care here.  */
11306       coproc = 1;
11307       goto ld_st;
11308     case M_LWC3_AB:
11309       gas_assert (!mips_opts.micromips);
11310       s = "lwc3";
11311       fmt = "E,o(b)";
11312       /* Itbl support may require additional care here.  */
11313       coproc = 1;
11314       goto ld_st;
11315     case M_LWL_AB:
11316       s = "lwl";
11317       fmt = MEM12_FMT;
11318       offbits = (mips_opts.micromips ? 12 : 16);
11319       goto ld_st;
11320     case M_LWR_AB:
11321       s = "lwr";
11322       fmt = MEM12_FMT;
11323       offbits = (mips_opts.micromips ? 12 : 16);
11324       goto ld_st;
11325     case M_LDC1_AB:
11326       s = "ldc1";
11327       fmt = "T,o(b)";
11328       /* Itbl support may require additional care here.  */
11329       coproc = 1;
11330       goto ld_st;
11331     case M_LDC2_AB:
11332       s = "ldc2";
11333       fmt = COP12_FMT;
11334       offbits = (mips_opts.micromips ? 12
11335                  : ISA_IS_R6 (mips_opts.isa) ? 11
11336                  : 16);
11337       /* Itbl support may require additional care here.  */
11338       coproc = 1;
11339       goto ld_st;
11340     case M_LQC2_AB:
11341       s = "lqc2";
11342       fmt = "+7,o(b)";
11343       /* Itbl support may require additional care here.  */
11344       coproc = 1;
11345       goto ld_st;
11346     case M_LDC3_AB:
11347       s = "ldc3";
11348       fmt = "E,o(b)";
11349       /* Itbl support may require additional care here.  */
11350       coproc = 1;
11351       goto ld_st;
11352     case M_LDL_AB:
11353       s = "ldl";
11354       fmt = MEM12_FMT;
11355       offbits = (mips_opts.micromips ? 12 : 16);
11356       goto ld_st;
11357     case M_LDR_AB:
11358       s = "ldr";
11359       fmt = MEM12_FMT;
11360       offbits = (mips_opts.micromips ? 12 : 16);
11361       goto ld_st;
11362     case M_LL_AB:
11363       s = "ll";
11364       fmt = LL_SC_FMT;
11365       offbits = (mips_opts.micromips ? 12
11366                  : ISA_IS_R6 (mips_opts.isa) ? 9
11367                  : 16);
11368       goto ld;
11369     case M_LLD_AB:
11370       s = "lld";
11371       fmt = LL_SC_FMT;
11372       offbits = (mips_opts.micromips ? 12
11373                  : ISA_IS_R6 (mips_opts.isa) ? 9
11374                  : 16);
11375       goto ld;
11376     case M_LWU_AB:
11377       s = "lwu";
11378       fmt = MEM12_FMT;
11379       offbits = (mips_opts.micromips ? 12 : 16);
11380       goto ld;
11381     case M_LWP_AB:
11382       gas_assert (mips_opts.micromips);
11383       s = "lwp";
11384       fmt = "t,~(b)";
11385       offbits = 12;
11386       lp = 1;
11387       goto ld;
11388     case M_LDP_AB:
11389       gas_assert (mips_opts.micromips);
11390       s = "ldp";
11391       fmt = "t,~(b)";
11392       offbits = 12;
11393       lp = 1;
11394       goto ld;
11395     case M_LWM_AB:
11396       gas_assert (mips_opts.micromips);
11397       s = "lwm";
11398       fmt = "n,~(b)";
11399       offbits = 12;
11400       goto ld_st;
11401     case M_LDM_AB:
11402       gas_assert (mips_opts.micromips);
11403       s = "ldm";
11404       fmt = "n,~(b)";
11405       offbits = 12;
11406       goto ld_st;
11407
11408     ld:
11409       /* We don't want to use $0 as tempreg.  */
11410       if (op[2] == op[0] + lp || op[0] + lp == ZERO)
11411         goto ld_st;
11412       else
11413         tempreg = op[0] + lp;
11414       goto ld_noat;
11415
11416     case M_SB_AB:
11417       s = "sb";
11418       fmt = "t,o(b)";
11419       goto ld_st;
11420     case M_SH_AB:
11421       s = "sh";
11422       fmt = "t,o(b)";
11423       goto ld_st;
11424     case M_SW_AB:
11425       s = "sw";
11426       fmt = "t,o(b)";
11427       goto ld_st;
11428     case M_SWC0_AB:
11429       gas_assert (!mips_opts.micromips);
11430       s = "swc0";
11431       fmt = "E,o(b)";
11432       /* Itbl support may require additional care here.  */
11433       coproc = 1;
11434       goto ld_st;
11435     case M_SWC1_AB:
11436       s = "swc1";
11437       fmt = "T,o(b)";
11438       /* Itbl support may require additional care here.  */
11439       coproc = 1;
11440       goto ld_st;
11441     case M_SWC2_AB:
11442       s = "swc2";
11443       fmt = COP12_FMT;
11444       offbits = (mips_opts.micromips ? 12
11445                  : ISA_IS_R6 (mips_opts.isa) ? 11
11446                  : 16);
11447       /* Itbl support may require additional care here.  */
11448       coproc = 1;
11449       goto ld_st;
11450     case M_SWC3_AB:
11451       gas_assert (!mips_opts.micromips);
11452       s = "swc3";
11453       fmt = "E,o(b)";
11454       /* Itbl support may require additional care here.  */
11455       coproc = 1;
11456       goto ld_st;
11457     case M_SWL_AB:
11458       s = "swl";
11459       fmt = MEM12_FMT;
11460       offbits = (mips_opts.micromips ? 12 : 16);
11461       goto ld_st;
11462     case M_SWR_AB:
11463       s = "swr";
11464       fmt = MEM12_FMT;
11465       offbits = (mips_opts.micromips ? 12 : 16);
11466       goto ld_st;
11467     case M_SC_AB:
11468       s = "sc";
11469       fmt = LL_SC_FMT;
11470       offbits = (mips_opts.micromips ? 12
11471                  : ISA_IS_R6 (mips_opts.isa) ? 9
11472                  : 16);
11473       goto ld_st;
11474     case M_SCD_AB:
11475       s = "scd";
11476       fmt = LL_SC_FMT;
11477       offbits = (mips_opts.micromips ? 12
11478                  : ISA_IS_R6 (mips_opts.isa) ? 9
11479                  : 16);
11480       goto ld_st;
11481     case M_CACHE_AB:
11482       s = "cache";
11483       fmt = (mips_opts.micromips ? "k,~(b)"
11484              : ISA_IS_R6 (mips_opts.isa) ? "k,+j(b)"
11485              : "k,o(b)");
11486       offbits = (mips_opts.micromips ? 12
11487                  : ISA_IS_R6 (mips_opts.isa) ? 9
11488                  : 16);
11489       goto ld_st;
11490     case M_CACHEE_AB:
11491       s = "cachee";
11492       fmt = "k,+j(b)";
11493       offbits = 9;
11494       goto ld_st;
11495     case M_PREF_AB:
11496       s = "pref";
11497       fmt = (mips_opts.micromips ? "k,~(b)"
11498              : ISA_IS_R6 (mips_opts.isa) ? "k,+j(b)"
11499              : "k,o(b)");
11500       offbits = (mips_opts.micromips ? 12
11501                  : ISA_IS_R6 (mips_opts.isa) ? 9
11502                  : 16);
11503       goto ld_st;
11504     case M_PREFE_AB:
11505       s = "prefe";
11506       fmt = "k,+j(b)";
11507       offbits = 9;
11508       goto ld_st;
11509     case M_SDC1_AB:
11510       s = "sdc1";
11511       fmt = "T,o(b)";
11512       coproc = 1;
11513       /* Itbl support may require additional care here.  */
11514       goto ld_st;
11515     case M_SDC2_AB:
11516       s = "sdc2";
11517       fmt = COP12_FMT;
11518       offbits = (mips_opts.micromips ? 12
11519                  : ISA_IS_R6 (mips_opts.isa) ? 11
11520                  : 16);
11521       /* Itbl support may require additional care here.  */
11522       coproc = 1;
11523       goto ld_st;
11524     case M_SQC2_AB:
11525       s = "sqc2";
11526       fmt = "+7,o(b)";
11527       /* Itbl support may require additional care here.  */
11528       coproc = 1;
11529       goto ld_st;
11530     case M_SDC3_AB:
11531       gas_assert (!mips_opts.micromips);
11532       s = "sdc3";
11533       fmt = "E,o(b)";
11534       /* Itbl support may require additional care here.  */
11535       coproc = 1;
11536       goto ld_st;
11537     case M_SDL_AB:
11538       s = "sdl";
11539       fmt = MEM12_FMT;
11540       offbits = (mips_opts.micromips ? 12 : 16);
11541       goto ld_st;
11542     case M_SDR_AB:
11543       s = "sdr";
11544       fmt = MEM12_FMT;
11545       offbits = (mips_opts.micromips ? 12 : 16);
11546       goto ld_st;
11547     case M_SWP_AB:
11548       gas_assert (mips_opts.micromips);
11549       s = "swp";
11550       fmt = "t,~(b)";
11551       offbits = 12;
11552       goto ld_st;
11553     case M_SDP_AB:
11554       gas_assert (mips_opts.micromips);
11555       s = "sdp";
11556       fmt = "t,~(b)";
11557       offbits = 12;
11558       goto ld_st;
11559     case M_SWM_AB:
11560       gas_assert (mips_opts.micromips);
11561       s = "swm";
11562       fmt = "n,~(b)";
11563       offbits = 12;
11564       goto ld_st;
11565     case M_SDM_AB:
11566       gas_assert (mips_opts.micromips);
11567       s = "sdm";
11568       fmt = "n,~(b)";
11569       offbits = 12;
11570
11571     ld_st:
11572       tempreg = AT;
11573     ld_noat:
11574       breg = op[2];
11575       if (small_offset_p (0, align, 16))
11576         {
11577           /* The first case exists for M_LD_AB and M_SD_AB, which are
11578              macros for o32 but which should act like normal instructions
11579              otherwise.  */
11580           if (offbits == 16)
11581             macro_build (&offset_expr, s, fmt, op[0], -1, offset_reloc[0],
11582                          offset_reloc[1], offset_reloc[2], breg);
11583           else if (small_offset_p (0, align, offbits))
11584             {
11585               if (offbits == 0)
11586                 macro_build (NULL, s, fmt, op[0], breg);
11587               else
11588                 macro_build (NULL, s, fmt, op[0],
11589                              (int) offset_expr.X_add_number, breg);
11590             }
11591           else
11592             {
11593               if (tempreg == AT)
11594                 used_at = 1;
11595               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
11596                            tempreg, breg, -1, offset_reloc[0],
11597                            offset_reloc[1], offset_reloc[2]);
11598               if (offbits == 0)
11599                 macro_build (NULL, s, fmt, op[0], tempreg);
11600               else
11601                 macro_build (NULL, s, fmt, op[0], 0, tempreg);
11602             }
11603           break;
11604         }
11605
11606       if (tempreg == AT)
11607         used_at = 1;
11608
11609       if (offset_expr.X_op != O_constant
11610           && offset_expr.X_op != O_symbol)
11611         {
11612           as_bad (_("expression too complex"));
11613           offset_expr.X_op = O_constant;
11614         }
11615
11616       if (HAVE_32BIT_ADDRESSES
11617           && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
11618         {
11619           char value [32];
11620
11621           sprintf_vma (value, offset_expr.X_add_number);
11622           as_bad (_("number (0x%s) larger than 32 bits"), value);
11623         }
11624
11625       /* A constant expression in PIC code can be handled just as it
11626          is in non PIC code.  */
11627       if (offset_expr.X_op == O_constant)
11628         {
11629           expr1.X_add_number = offset_high_part (offset_expr.X_add_number,
11630                                                  offbits == 0 ? 16 : offbits);
11631           offset_expr.X_add_number -= expr1.X_add_number;
11632
11633           load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
11634           if (breg != 0)
11635             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11636                          tempreg, tempreg, breg);
11637           if (offbits == 0)
11638             {
11639               if (offset_expr.X_add_number != 0)
11640                 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
11641                              "t,r,j", tempreg, tempreg, BFD_RELOC_LO16);
11642               macro_build (NULL, s, fmt, op[0], tempreg);
11643             }
11644           else if (offbits == 16)
11645             macro_build (&offset_expr, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
11646           else
11647             macro_build (NULL, s, fmt, op[0],
11648                          (int) offset_expr.X_add_number, tempreg);
11649         }
11650       else if (offbits != 16)
11651         {
11652           /* The offset field is too narrow to be used for a low-part
11653              relocation, so load the whole address into the auxillary
11654              register.  */
11655           load_address (tempreg, &offset_expr, &used_at);
11656           if (breg != 0)
11657             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11658                          tempreg, tempreg, breg);
11659           if (offbits == 0)
11660             macro_build (NULL, s, fmt, op[0], tempreg);
11661           else
11662             macro_build (NULL, s, fmt, op[0], 0, tempreg);
11663         }
11664       else if (mips_pic == NO_PIC)
11665         {
11666           /* If this is a reference to a GP relative symbol, and there
11667              is no base register, we want
11668                <op>     op[0],<sym>($gp)        (BFD_RELOC_GPREL16)
11669              Otherwise, if there is no base register, we want
11670                lui      $tempreg,<sym>          (BFD_RELOC_HI16_S)
11671                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_LO16)
11672              If we have a constant, we need two instructions anyhow,
11673              so we always use the latter form.
11674
11675              If we have a base register, and this is a reference to a
11676              GP relative symbol, we want
11677                addu     $tempreg,$breg,$gp
11678                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_GPREL16)
11679              Otherwise we want
11680                lui      $tempreg,<sym>          (BFD_RELOC_HI16_S)
11681                addu     $tempreg,$tempreg,$breg
11682                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_LO16)
11683              With a constant we always use the latter case.
11684
11685              With 64bit address space and no base register and $at usable,
11686              we want
11687                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
11688                lui      $at,<sym>               (BFD_RELOC_HI16_S)
11689                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
11690                dsll32   $tempreg,0
11691                daddu    $tempreg,$at
11692                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_LO16)
11693              If we have a base register, we want
11694                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
11695                lui      $at,<sym>               (BFD_RELOC_HI16_S)
11696                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
11697                daddu    $at,$breg
11698                dsll32   $tempreg,0
11699                daddu    $tempreg,$at
11700                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_LO16)
11701
11702              Without $at we can't generate the optimal path for superscalar
11703              processors here since this would require two temporary registers.
11704                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
11705                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
11706                dsll     $tempreg,16
11707                daddiu   $tempreg,<sym>          (BFD_RELOC_HI16_S)
11708                dsll     $tempreg,16
11709                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_LO16)
11710              If we have a base register, we want
11711                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
11712                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
11713                dsll     $tempreg,16
11714                daddiu   $tempreg,<sym>          (BFD_RELOC_HI16_S)
11715                dsll     $tempreg,16
11716                daddu    $tempreg,$tempreg,$breg
11717                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_LO16)
11718
11719              For GP relative symbols in 64bit address space we can use
11720              the same sequence as in 32bit address space.  */
11721           if (HAVE_64BIT_SYMBOLS)
11722             {
11723               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
11724                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
11725                 {
11726                   relax_start (offset_expr.X_add_symbol);
11727                   if (breg == 0)
11728                     {
11729                       macro_build (&offset_expr, s, fmt, op[0],
11730                                    BFD_RELOC_GPREL16, mips_gp_register);
11731                     }
11732                   else
11733                     {
11734                       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11735                                    tempreg, breg, mips_gp_register);
11736                       macro_build (&offset_expr, s, fmt, op[0],
11737                                    BFD_RELOC_GPREL16, tempreg);
11738                     }
11739                   relax_switch ();
11740                 }
11741
11742               if (used_at == 0 && mips_opts.at)
11743                 {
11744                   macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
11745                                BFD_RELOC_MIPS_HIGHEST);
11746                   macro_build (&offset_expr, "lui", LUI_FMT, AT,
11747                                BFD_RELOC_HI16_S);
11748                   macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
11749                                tempreg, BFD_RELOC_MIPS_HIGHER);
11750                   if (breg != 0)
11751                     macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
11752                   macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
11753                   macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
11754                   macro_build (&offset_expr, s, fmt, op[0], BFD_RELOC_LO16,
11755                                tempreg);
11756                   used_at = 1;
11757                 }
11758               else
11759                 {
11760                   macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
11761                                BFD_RELOC_MIPS_HIGHEST);
11762                   macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
11763                                tempreg, BFD_RELOC_MIPS_HIGHER);
11764                   macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
11765                   macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
11766                                tempreg, BFD_RELOC_HI16_S);
11767                   macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
11768                   if (breg != 0)
11769                     macro_build (NULL, "daddu", "d,v,t",
11770                                  tempreg, tempreg, breg);
11771                   macro_build (&offset_expr, s, fmt, op[0],
11772                                BFD_RELOC_LO16, tempreg);
11773                 }
11774
11775               if (mips_relax.sequence)
11776                 relax_end ();
11777               break;
11778             }
11779
11780           if (breg == 0)
11781             {
11782               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
11783                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
11784                 {
11785                   relax_start (offset_expr.X_add_symbol);
11786                   macro_build (&offset_expr, s, fmt, op[0], BFD_RELOC_GPREL16,
11787                                mips_gp_register);
11788                   relax_switch ();
11789                 }
11790               macro_build_lui (&offset_expr, tempreg);
11791               macro_build (&offset_expr, s, fmt, op[0],
11792                            BFD_RELOC_LO16, tempreg);
11793               if (mips_relax.sequence)
11794                 relax_end ();
11795             }
11796           else
11797             {
11798               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
11799                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
11800                 {
11801                   relax_start (offset_expr.X_add_symbol);
11802                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11803                                tempreg, breg, mips_gp_register);
11804                   macro_build (&offset_expr, s, fmt, op[0],
11805                                BFD_RELOC_GPREL16, tempreg);
11806                   relax_switch ();
11807                 }
11808               macro_build_lui (&offset_expr, tempreg);
11809               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11810                            tempreg, tempreg, breg);
11811               macro_build (&offset_expr, s, fmt, op[0],
11812                            BFD_RELOC_LO16, tempreg);
11813               if (mips_relax.sequence)
11814                 relax_end ();
11815             }
11816         }
11817       else if (!mips_big_got)
11818         {
11819           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
11820
11821           /* If this is a reference to an external symbol, we want
11822                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
11823                nop
11824                <op>     op[0],0($tempreg)
11825              Otherwise we want
11826                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
11827                nop
11828                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
11829                <op>     op[0],0($tempreg)
11830
11831              For NewABI, we want
11832                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_PAGE)
11833                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_MIPS_GOT_OFST)
11834
11835              If there is a base register, we add it to $tempreg before
11836              the <op>.  If there is a constant, we stick it in the
11837              <op> instruction.  We don't handle constants larger than
11838              16 bits, because we have no way to load the upper 16 bits
11839              (actually, we could handle them for the subset of cases
11840              in which we are not using $at).  */
11841           gas_assert (offset_expr.X_op == O_symbol);
11842           if (HAVE_NEWABI)
11843             {
11844               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11845                            BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
11846               if (breg != 0)
11847                 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11848                              tempreg, tempreg, breg);
11849               macro_build (&offset_expr, s, fmt, op[0],
11850                            BFD_RELOC_MIPS_GOT_OFST, tempreg);
11851               break;
11852             }
11853           expr1.X_add_number = offset_expr.X_add_number;
11854           offset_expr.X_add_number = 0;
11855           if (expr1.X_add_number < -0x8000
11856               || expr1.X_add_number >= 0x8000)
11857             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
11858           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11859                        lw_reloc_type, mips_gp_register);
11860           load_delay_nop ();
11861           relax_start (offset_expr.X_add_symbol);
11862           relax_switch ();
11863           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
11864                        tempreg, BFD_RELOC_LO16);
11865           relax_end ();
11866           if (breg != 0)
11867             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11868                          tempreg, tempreg, breg);
11869           macro_build (&expr1, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
11870         }
11871       else if (mips_big_got && !HAVE_NEWABI)
11872         {
11873           int gpdelay;
11874
11875           /* If this is a reference to an external symbol, we want
11876                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
11877                addu     $tempreg,$tempreg,$gp
11878                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
11879                <op>     op[0],0($tempreg)
11880              Otherwise we want
11881                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
11882                nop
11883                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
11884                <op>     op[0],0($tempreg)
11885              If there is a base register, we add it to $tempreg before
11886              the <op>.  If there is a constant, we stick it in the
11887              <op> instruction.  We don't handle constants larger than
11888              16 bits, because we have no way to load the upper 16 bits
11889              (actually, we could handle them for the subset of cases
11890              in which we are not using $at).  */
11891           gas_assert (offset_expr.X_op == O_symbol);
11892           expr1.X_add_number = offset_expr.X_add_number;
11893           offset_expr.X_add_number = 0;
11894           if (expr1.X_add_number < -0x8000
11895               || expr1.X_add_number >= 0x8000)
11896             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
11897           gpdelay = reg_needs_delay (mips_gp_register);
11898           relax_start (offset_expr.X_add_symbol);
11899           macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
11900                        BFD_RELOC_MIPS_GOT_HI16);
11901           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
11902                        mips_gp_register);
11903           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11904                        BFD_RELOC_MIPS_GOT_LO16, tempreg);
11905           relax_switch ();
11906           if (gpdelay)
11907             macro_build (NULL, "nop", "");
11908           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11909                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
11910           load_delay_nop ();
11911           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
11912                        tempreg, BFD_RELOC_LO16);
11913           relax_end ();
11914
11915           if (breg != 0)
11916             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11917                          tempreg, tempreg, breg);
11918           macro_build (&expr1, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
11919         }
11920       else if (mips_big_got && HAVE_NEWABI)
11921         {
11922           /* If this is a reference to an external symbol, we want
11923                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
11924                add      $tempreg,$tempreg,$gp
11925                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
11926                <op>     op[0],<ofst>($tempreg)
11927              Otherwise, for local symbols, we want:
11928                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_PAGE)
11929                <op>     op[0],<sym>($tempreg)   (BFD_RELOC_MIPS_GOT_OFST)  */
11930           gas_assert (offset_expr.X_op == O_symbol);
11931           expr1.X_add_number = offset_expr.X_add_number;
11932           offset_expr.X_add_number = 0;
11933           if (expr1.X_add_number < -0x8000
11934               || expr1.X_add_number >= 0x8000)
11935             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
11936           relax_start (offset_expr.X_add_symbol);
11937           macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
11938                        BFD_RELOC_MIPS_GOT_HI16);
11939           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
11940                        mips_gp_register);
11941           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11942                        BFD_RELOC_MIPS_GOT_LO16, tempreg);
11943           if (breg != 0)
11944             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11945                          tempreg, tempreg, breg);
11946           macro_build (&expr1, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
11947
11948           relax_switch ();
11949           offset_expr.X_add_number = expr1.X_add_number;
11950           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11951                        BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
11952           if (breg != 0)
11953             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11954                          tempreg, tempreg, breg);
11955           macro_build (&offset_expr, s, fmt, op[0],
11956                        BFD_RELOC_MIPS_GOT_OFST, tempreg);
11957           relax_end ();
11958         }
11959       else
11960         abort ();
11961
11962       break;
11963
11964     case M_JRADDIUSP:
11965       gas_assert (mips_opts.micromips);
11966       gas_assert (mips_opts.insn32);
11967       start_noreorder ();
11968       macro_build (NULL, "jr", "s", RA);
11969       expr1.X_add_number = op[0] << 2;
11970       macro_build (&expr1, "addiu", "t,r,j", SP, SP, BFD_RELOC_LO16);
11971       end_noreorder ();
11972       break;
11973
11974     case M_JRC:
11975       gas_assert (mips_opts.micromips);
11976       gas_assert (mips_opts.insn32);
11977       macro_build (NULL, "jr", "s", op[0]);
11978       if (mips_opts.noreorder)
11979         macro_build (NULL, "nop", "");
11980       break;
11981
11982     case M_LI:
11983     case M_LI_S:
11984       load_register (op[0], &imm_expr, 0);
11985       break;
11986
11987     case M_DLI:
11988       load_register (op[0], &imm_expr, 1);
11989       break;
11990
11991     case M_LI_SS:
11992       if (imm_expr.X_op == O_constant)
11993         {
11994           used_at = 1;
11995           load_register (AT, &imm_expr, 0);
11996           macro_build (NULL, "mtc1", "t,G", AT, op[0]);
11997           break;
11998         }
11999       else
12000         {
12001           gas_assert (imm_expr.X_op == O_absent
12002                       && offset_expr.X_op == O_symbol
12003                       && strcmp (segment_name (S_GET_SEGMENT
12004                                                (offset_expr.X_add_symbol)),
12005                                  ".lit4") == 0
12006                       && offset_expr.X_add_number == 0);
12007           macro_build (&offset_expr, "lwc1", "T,o(b)", op[0],
12008                        BFD_RELOC_MIPS_LITERAL, mips_gp_register);
12009           break;
12010         }
12011
12012     case M_LI_D:
12013       /* Check if we have a constant in IMM_EXPR.  If the GPRs are 64 bits
12014          wide, IMM_EXPR is the entire value.  Otherwise IMM_EXPR is the high
12015          order 32 bits of the value and the low order 32 bits are either
12016          zero or in OFFSET_EXPR.  */
12017       if (imm_expr.X_op == O_constant)
12018         {
12019           if (GPR_SIZE == 64)
12020             load_register (op[0], &imm_expr, 1);
12021           else
12022             {
12023               int hreg, lreg;
12024
12025               if (target_big_endian)
12026                 {
12027                   hreg = op[0];
12028                   lreg = op[0] + 1;
12029                 }
12030               else
12031                 {
12032                   hreg = op[0] + 1;
12033                   lreg = op[0];
12034                 }
12035
12036               if (hreg <= 31)
12037                 load_register (hreg, &imm_expr, 0);
12038               if (lreg <= 31)
12039                 {
12040                   if (offset_expr.X_op == O_absent)
12041                     move_register (lreg, 0);
12042                   else
12043                     {
12044                       gas_assert (offset_expr.X_op == O_constant);
12045                       load_register (lreg, &offset_expr, 0);
12046                     }
12047                 }
12048             }
12049           break;
12050         }
12051       gas_assert (imm_expr.X_op == O_absent);
12052
12053       /* We know that sym is in the .rdata section.  First we get the
12054          upper 16 bits of the address.  */
12055       if (mips_pic == NO_PIC)
12056         {
12057           macro_build_lui (&offset_expr, AT);
12058           used_at = 1;
12059         }
12060       else
12061         {
12062           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
12063                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
12064           used_at = 1;
12065         }
12066
12067       /* Now we load the register(s).  */
12068       if (GPR_SIZE == 64)
12069         {
12070           used_at = 1;
12071           macro_build (&offset_expr, "ld", "t,o(b)", op[0],
12072                        BFD_RELOC_LO16, AT);
12073         }
12074       else
12075         {
12076           used_at = 1;
12077           macro_build (&offset_expr, "lw", "t,o(b)", op[0],
12078                        BFD_RELOC_LO16, AT);
12079           if (op[0] != RA)
12080             {
12081               /* FIXME: How in the world do we deal with the possible
12082                  overflow here?  */
12083               offset_expr.X_add_number += 4;
12084               macro_build (&offset_expr, "lw", "t,o(b)",
12085                            op[0] + 1, BFD_RELOC_LO16, AT);
12086             }
12087         }
12088       break;
12089
12090     case M_LI_DD:
12091       /* Check if we have a constant in IMM_EXPR.  If the FPRs are 64 bits
12092          wide, IMM_EXPR is the entire value and the GPRs are known to be 64
12093          bits wide as well.  Otherwise IMM_EXPR is the high order 32 bits of
12094          the value and the low order 32 bits are either zero or in
12095          OFFSET_EXPR.  */
12096       if (imm_expr.X_op == O_constant)
12097         {
12098           used_at = 1;
12099           load_register (AT, &imm_expr, FPR_SIZE == 64);
12100           if (FPR_SIZE == 64 && GPR_SIZE == 64)
12101             macro_build (NULL, "dmtc1", "t,S", AT, op[0]);
12102           else
12103             {
12104               if (ISA_HAS_MXHC1 (mips_opts.isa))
12105                 macro_build (NULL, "mthc1", "t,G", AT, op[0]);
12106               else if (FPR_SIZE != 32)
12107                 as_bad (_("Unable to generate `%s' compliant code "
12108                           "without mthc1"),
12109                         (FPR_SIZE == 64) ? "fp64" : "fpxx");
12110               else
12111                 macro_build (NULL, "mtc1", "t,G", AT, op[0] + 1);
12112               if (offset_expr.X_op == O_absent)
12113                 macro_build (NULL, "mtc1", "t,G", 0, op[0]);
12114               else
12115                 {
12116                   gas_assert (offset_expr.X_op == O_constant);
12117                   load_register (AT, &offset_expr, 0);
12118                   macro_build (NULL, "mtc1", "t,G", AT, op[0]);
12119                 }
12120             }
12121           break;
12122         }
12123
12124       gas_assert (imm_expr.X_op == O_absent
12125                   && offset_expr.X_op == O_symbol
12126                   && offset_expr.X_add_number == 0);
12127       s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
12128       if (strcmp (s, ".lit8") == 0)
12129         {
12130           op[2] = mips_gp_register;
12131           offset_reloc[0] = BFD_RELOC_MIPS_LITERAL;
12132           offset_reloc[1] = BFD_RELOC_UNUSED;
12133           offset_reloc[2] = BFD_RELOC_UNUSED;
12134         }
12135       else
12136         {
12137           gas_assert (strcmp (s, RDATA_SECTION_NAME) == 0);
12138           used_at = 1;
12139           if (mips_pic != NO_PIC)
12140             macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
12141                          BFD_RELOC_MIPS_GOT16, mips_gp_register);
12142           else
12143             {
12144               /* FIXME: This won't work for a 64 bit address.  */
12145               macro_build_lui (&offset_expr, AT);
12146             }
12147
12148           op[2] = AT;
12149           offset_reloc[0] = BFD_RELOC_LO16;
12150           offset_reloc[1] = BFD_RELOC_UNUSED;
12151           offset_reloc[2] = BFD_RELOC_UNUSED;
12152         }
12153       align = 8;
12154       /* Fall through */
12155
12156     case M_L_DAB:
12157       /*
12158        * The MIPS assembler seems to check for X_add_number not
12159        * being double aligned and generating:
12160        *        lui     at,%hi(foo+1)
12161        *        addu    at,at,v1
12162        *        addiu   at,at,%lo(foo+1)
12163        *        lwc1    f2,0(at)
12164        *        lwc1    f3,4(at)
12165        * But, the resulting address is the same after relocation so why
12166        * generate the extra instruction?
12167        */
12168       /* Itbl support may require additional care here.  */
12169       coproc = 1;
12170       fmt = "T,o(b)";
12171       if (CPU_HAS_LDC1_SDC1 (mips_opts.arch))
12172         {
12173           s = "ldc1";
12174           goto ld_st;
12175         }
12176       s = "lwc1";
12177       goto ldd_std;
12178
12179     case M_S_DAB:
12180       gas_assert (!mips_opts.micromips);
12181       /* Itbl support may require additional care here.  */
12182       coproc = 1;
12183       fmt = "T,o(b)";
12184       if (CPU_HAS_LDC1_SDC1 (mips_opts.arch))
12185         {
12186           s = "sdc1";
12187           goto ld_st;
12188         }
12189       s = "swc1";
12190       goto ldd_std;
12191
12192     case M_LQ_AB:
12193       fmt = "t,o(b)";
12194       s = "lq";
12195       goto ld;
12196
12197     case M_SQ_AB:
12198       fmt = "t,o(b)";
12199       s = "sq";
12200       goto ld_st;
12201
12202     case M_LD_AB:
12203       fmt = "t,o(b)";
12204       if (GPR_SIZE == 64)
12205         {
12206           s = "ld";
12207           goto ld;
12208         }
12209       s = "lw";
12210       goto ldd_std;
12211
12212     case M_SD_AB:
12213       fmt = "t,o(b)";
12214       if (GPR_SIZE == 64)
12215         {
12216           s = "sd";
12217           goto ld_st;
12218         }
12219       s = "sw";
12220
12221     ldd_std:
12222       /* Even on a big endian machine $fn comes before $fn+1.  We have
12223          to adjust when loading from memory.  We set coproc if we must
12224          load $fn+1 first.  */
12225       /* Itbl support may require additional care here.  */
12226       if (!target_big_endian)
12227         coproc = 0;
12228
12229       breg = op[2];
12230       if (small_offset_p (0, align, 16))
12231         {
12232           ep = &offset_expr;
12233           if (!small_offset_p (4, align, 16))
12234             {
12235               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", AT, breg,
12236                            -1, offset_reloc[0], offset_reloc[1],
12237                            offset_reloc[2]);
12238               expr1.X_add_number = 0;
12239               ep = &expr1;
12240               breg = AT;
12241               used_at = 1;
12242               offset_reloc[0] = BFD_RELOC_LO16;
12243               offset_reloc[1] = BFD_RELOC_UNUSED;
12244               offset_reloc[2] = BFD_RELOC_UNUSED;
12245             }
12246           if (strcmp (s, "lw") == 0 && op[0] == breg)
12247             {
12248               ep->X_add_number += 4;
12249               macro_build (ep, s, fmt, op[0] + 1, -1, offset_reloc[0],
12250                            offset_reloc[1], offset_reloc[2], breg);
12251               ep->X_add_number -= 4;
12252               macro_build (ep, s, fmt, op[0], -1, offset_reloc[0],
12253                            offset_reloc[1], offset_reloc[2], breg);
12254             }
12255           else
12256             {
12257               macro_build (ep, s, fmt, coproc ? op[0] + 1 : op[0], -1,
12258                            offset_reloc[0], offset_reloc[1], offset_reloc[2],
12259                            breg);
12260               ep->X_add_number += 4;
12261               macro_build (ep, s, fmt, coproc ? op[0] : op[0] + 1, -1,
12262                            offset_reloc[0], offset_reloc[1], offset_reloc[2],
12263                            breg);
12264             }
12265           break;
12266         }
12267
12268       if (offset_expr.X_op != O_symbol
12269           && offset_expr.X_op != O_constant)
12270         {
12271           as_bad (_("expression too complex"));
12272           offset_expr.X_op = O_constant;
12273         }
12274
12275       if (HAVE_32BIT_ADDRESSES
12276           && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
12277         {
12278           char value [32];
12279
12280           sprintf_vma (value, offset_expr.X_add_number);
12281           as_bad (_("number (0x%s) larger than 32 bits"), value);
12282         }
12283
12284       if (mips_pic == NO_PIC || offset_expr.X_op == O_constant)
12285         {
12286           /* If this is a reference to a GP relative symbol, we want
12287                <op>     op[0],<sym>($gp)        (BFD_RELOC_GPREL16)
12288                <op>     op[0]+1,<sym>+4($gp)    (BFD_RELOC_GPREL16)
12289              If we have a base register, we use this
12290                addu     $at,$breg,$gp
12291                <op>     op[0],<sym>($at)        (BFD_RELOC_GPREL16)
12292                <op>     op[0]+1,<sym>+4($at)    (BFD_RELOC_GPREL16)
12293              If this is not a GP relative symbol, we want
12294                lui      $at,<sym>               (BFD_RELOC_HI16_S)
12295                <op>     op[0],<sym>($at)        (BFD_RELOC_LO16)
12296                <op>     op[0]+1,<sym>+4($at)    (BFD_RELOC_LO16)
12297              If there is a base register, we add it to $at after the
12298              lui instruction.  If there is a constant, we always use
12299              the last case.  */
12300           if (offset_expr.X_op == O_symbol
12301               && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
12302               && !nopic_need_relax (offset_expr.X_add_symbol, 1))
12303             {
12304               relax_start (offset_expr.X_add_symbol);
12305               if (breg == 0)
12306                 {
12307                   tempreg = mips_gp_register;
12308                 }
12309               else
12310                 {
12311                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
12312                                AT, breg, mips_gp_register);
12313                   tempreg = AT;
12314                   used_at = 1;
12315                 }
12316
12317               /* Itbl support may require additional care here.  */
12318               macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
12319                            BFD_RELOC_GPREL16, tempreg);
12320               offset_expr.X_add_number += 4;
12321
12322               /* Set mips_optimize to 2 to avoid inserting an
12323                  undesired nop.  */
12324               hold_mips_optimize = mips_optimize;
12325               mips_optimize = 2;
12326               /* Itbl support may require additional care here.  */
12327               macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
12328                            BFD_RELOC_GPREL16, tempreg);
12329               mips_optimize = hold_mips_optimize;
12330
12331               relax_switch ();
12332
12333               offset_expr.X_add_number -= 4;
12334             }
12335           used_at = 1;
12336           if (offset_high_part (offset_expr.X_add_number, 16)
12337               != offset_high_part (offset_expr.X_add_number + 4, 16))
12338             {
12339               load_address (AT, &offset_expr, &used_at);
12340               offset_expr.X_op = O_constant;
12341               offset_expr.X_add_number = 0;
12342             }
12343           else
12344             macro_build_lui (&offset_expr, AT);
12345           if (breg != 0)
12346             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
12347           /* Itbl support may require additional care here.  */
12348           macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
12349                        BFD_RELOC_LO16, AT);
12350           /* FIXME: How do we handle overflow here?  */
12351           offset_expr.X_add_number += 4;
12352           /* Itbl support may require additional care here.  */
12353           macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
12354                        BFD_RELOC_LO16, AT);
12355           if (mips_relax.sequence)
12356             relax_end ();
12357         }
12358       else if (!mips_big_got)
12359         {
12360           /* If this is a reference to an external symbol, we want
12361                lw       $at,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
12362                nop
12363                <op>     op[0],0($at)
12364                <op>     op[0]+1,4($at)
12365              Otherwise we want
12366                lw       $at,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
12367                nop
12368                <op>     op[0],<sym>($at)        (BFD_RELOC_LO16)
12369                <op>     op[0]+1,<sym>+4($at)    (BFD_RELOC_LO16)
12370              If there is a base register we add it to $at before the
12371              lwc1 instructions.  If there is a constant we include it
12372              in the lwc1 instructions.  */
12373           used_at = 1;
12374           expr1.X_add_number = offset_expr.X_add_number;
12375           if (expr1.X_add_number < -0x8000
12376               || expr1.X_add_number >= 0x8000 - 4)
12377             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
12378           load_got_offset (AT, &offset_expr);
12379           load_delay_nop ();
12380           if (breg != 0)
12381             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
12382
12383           /* Set mips_optimize to 2 to avoid inserting an undesired
12384              nop.  */
12385           hold_mips_optimize = mips_optimize;
12386           mips_optimize = 2;
12387
12388           /* Itbl support may require additional care here.  */
12389           relax_start (offset_expr.X_add_symbol);
12390           macro_build (&expr1, s, fmt, coproc ? op[0] + 1 : op[0],
12391                        BFD_RELOC_LO16, AT);
12392           expr1.X_add_number += 4;
12393           macro_build (&expr1, s, fmt, coproc ? op[0] : op[0] + 1,
12394                        BFD_RELOC_LO16, AT);
12395           relax_switch ();
12396           macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
12397                        BFD_RELOC_LO16, AT);
12398           offset_expr.X_add_number += 4;
12399           macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
12400                        BFD_RELOC_LO16, AT);
12401           relax_end ();
12402
12403           mips_optimize = hold_mips_optimize;
12404         }
12405       else if (mips_big_got)
12406         {
12407           int gpdelay;
12408
12409           /* If this is a reference to an external symbol, we want
12410                lui      $at,<sym>               (BFD_RELOC_MIPS_GOT_HI16)
12411                addu     $at,$at,$gp
12412                lw       $at,<sym>($at)          (BFD_RELOC_MIPS_GOT_LO16)
12413                nop
12414                <op>     op[0],0($at)
12415                <op>     op[0]+1,4($at)
12416              Otherwise we want
12417                lw       $at,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
12418                nop
12419                <op>     op[0],<sym>($at)        (BFD_RELOC_LO16)
12420                <op>     op[0]+1,<sym>+4($at)    (BFD_RELOC_LO16)
12421              If there is a base register we add it to $at before the
12422              lwc1 instructions.  If there is a constant we include it
12423              in the lwc1 instructions.  */
12424           used_at = 1;
12425           expr1.X_add_number = offset_expr.X_add_number;
12426           offset_expr.X_add_number = 0;
12427           if (expr1.X_add_number < -0x8000
12428               || expr1.X_add_number >= 0x8000 - 4)
12429             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
12430           gpdelay = reg_needs_delay (mips_gp_register);
12431           relax_start (offset_expr.X_add_symbol);
12432           macro_build (&offset_expr, "lui", LUI_FMT,
12433                        AT, BFD_RELOC_MIPS_GOT_HI16);
12434           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
12435                        AT, AT, mips_gp_register);
12436           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
12437                        AT, BFD_RELOC_MIPS_GOT_LO16, AT);
12438           load_delay_nop ();
12439           if (breg != 0)
12440             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
12441           /* Itbl support may require additional care here.  */
12442           macro_build (&expr1, s, fmt, coproc ? op[0] + 1 : op[0],
12443                        BFD_RELOC_LO16, AT);
12444           expr1.X_add_number += 4;
12445
12446           /* Set mips_optimize to 2 to avoid inserting an undesired
12447              nop.  */
12448           hold_mips_optimize = mips_optimize;
12449           mips_optimize = 2;
12450           /* Itbl support may require additional care here.  */
12451           macro_build (&expr1, s, fmt, coproc ? op[0] : op[0] + 1,
12452                        BFD_RELOC_LO16, AT);
12453           mips_optimize = hold_mips_optimize;
12454           expr1.X_add_number -= 4;
12455
12456           relax_switch ();
12457           offset_expr.X_add_number = expr1.X_add_number;
12458           if (gpdelay)
12459             macro_build (NULL, "nop", "");
12460           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
12461                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
12462           load_delay_nop ();
12463           if (breg != 0)
12464             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
12465           /* Itbl support may require additional care here.  */
12466           macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
12467                        BFD_RELOC_LO16, AT);
12468           offset_expr.X_add_number += 4;
12469
12470           /* Set mips_optimize to 2 to avoid inserting an undesired
12471              nop.  */
12472           hold_mips_optimize = mips_optimize;
12473           mips_optimize = 2;
12474           /* Itbl support may require additional care here.  */
12475           macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
12476                        BFD_RELOC_LO16, AT);
12477           mips_optimize = hold_mips_optimize;
12478           relax_end ();
12479         }
12480       else
12481         abort ();
12482
12483       break;
12484         
12485     case M_SAA_AB:
12486       s = "saa";
12487       goto saa_saad;
12488     case M_SAAD_AB:
12489       s = "saad";
12490     saa_saad:
12491       gas_assert (!mips_opts.micromips);
12492       offbits = 0;
12493       fmt = "t,(b)";
12494       goto ld_st;
12495
12496    /* New code added to support COPZ instructions.
12497       This code builds table entries out of the macros in mip_opcodes.
12498       R4000 uses interlocks to handle coproc delays.
12499       Other chips (like the R3000) require nops to be inserted for delays.
12500
12501       FIXME: Currently, we require that the user handle delays.
12502       In order to fill delay slots for non-interlocked chips,
12503       we must have a way to specify delays based on the coprocessor.
12504       Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
12505       What are the side-effects of the cop instruction?
12506       What cache support might we have and what are its effects?
12507       Both coprocessor & memory require delays. how long???
12508       What registers are read/set/modified?
12509
12510       If an itbl is provided to interpret cop instructions,
12511       this knowledge can be encoded in the itbl spec.  */
12512
12513     case M_COP0:
12514       s = "c0";
12515       goto copz;
12516     case M_COP1:
12517       s = "c1";
12518       goto copz;
12519     case M_COP2:
12520       s = "c2";
12521       goto copz;
12522     case M_COP3:
12523       s = "c3";
12524     copz:
12525       gas_assert (!mips_opts.micromips);
12526       /* For now we just do C (same as Cz).  The parameter will be
12527          stored in insn_opcode by mips_ip.  */
12528       macro_build (NULL, s, "C", (int) ip->insn_opcode);
12529       break;
12530
12531     case M_MOVE:
12532       move_register (op[0], op[1]);
12533       break;
12534
12535     case M_MOVEP:
12536       gas_assert (mips_opts.micromips);
12537       gas_assert (mips_opts.insn32);
12538       move_register (micromips_to_32_reg_h_map1[op[0]],
12539                      micromips_to_32_reg_m_map[op[1]]);
12540       move_register (micromips_to_32_reg_h_map2[op[0]],
12541                      micromips_to_32_reg_n_map[op[2]]);
12542       break;
12543
12544     case M_DMUL:
12545       dbl = 1;
12546     case M_MUL:
12547       if (mips_opts.arch == CPU_R5900)
12548         macro_build (NULL, dbl ? "dmultu" : "multu", "d,s,t", op[0], op[1],
12549                      op[2]);
12550       else
12551         {
12552           macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", op[1], op[2]);
12553           macro_build (NULL, "mflo", MFHL_FMT, op[0]);
12554         }
12555       break;
12556
12557     case M_DMUL_I:
12558       dbl = 1;
12559     case M_MUL_I:
12560       /* The MIPS assembler some times generates shifts and adds.  I'm
12561          not trying to be that fancy. GCC should do this for us
12562          anyway.  */
12563       used_at = 1;
12564       load_register (AT, &imm_expr, dbl);
12565       macro_build (NULL, dbl ? "dmult" : "mult", "s,t", op[1], AT);
12566       macro_build (NULL, "mflo", MFHL_FMT, op[0]);
12567       break;
12568
12569     case M_DMULO_I:
12570       dbl = 1;
12571     case M_MULO_I:
12572       imm = 1;
12573       goto do_mulo;
12574
12575     case M_DMULO:
12576       dbl = 1;
12577     case M_MULO:
12578     do_mulo:
12579       start_noreorder ();
12580       used_at = 1;
12581       if (imm)
12582         load_register (AT, &imm_expr, dbl);
12583       macro_build (NULL, dbl ? "dmult" : "mult", "s,t",
12584                    op[1], imm ? AT : op[2]);
12585       macro_build (NULL, "mflo", MFHL_FMT, op[0]);
12586       macro_build (NULL, dbl ? "dsra32" : "sra", SHFT_FMT, op[0], op[0], 31);
12587       macro_build (NULL, "mfhi", MFHL_FMT, AT);
12588       if (mips_trap)
12589         macro_build (NULL, "tne", TRAP_FMT, op[0], AT, 6);
12590       else
12591         {
12592           if (mips_opts.micromips)
12593             micromips_label_expr (&label_expr);
12594           else
12595             label_expr.X_add_number = 8;
12596           macro_build (&label_expr, "beq", "s,t,p", op[0], AT);
12597           macro_build (NULL, "nop", "");
12598           macro_build (NULL, "break", BRK_FMT, 6);
12599           if (mips_opts.micromips)
12600             micromips_add_label ();
12601         }
12602       end_noreorder ();
12603       macro_build (NULL, "mflo", MFHL_FMT, op[0]);
12604       break;
12605
12606     case M_DMULOU_I:
12607       dbl = 1;
12608     case M_MULOU_I:
12609       imm = 1;
12610       goto do_mulou;
12611
12612     case M_DMULOU:
12613       dbl = 1;
12614     case M_MULOU:
12615     do_mulou:
12616       start_noreorder ();
12617       used_at = 1;
12618       if (imm)
12619         load_register (AT, &imm_expr, dbl);
12620       macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
12621                    op[1], imm ? AT : op[2]);
12622       macro_build (NULL, "mfhi", MFHL_FMT, AT);
12623       macro_build (NULL, "mflo", MFHL_FMT, op[0]);
12624       if (mips_trap)
12625         macro_build (NULL, "tne", TRAP_FMT, AT, ZERO, 6);
12626       else
12627         {
12628           if (mips_opts.micromips)
12629             micromips_label_expr (&label_expr);
12630           else
12631             label_expr.X_add_number = 8;
12632           macro_build (&label_expr, "beq", "s,t,p", AT, ZERO);
12633           macro_build (NULL, "nop", "");
12634           macro_build (NULL, "break", BRK_FMT, 6);
12635           if (mips_opts.micromips)
12636             micromips_add_label ();
12637         }
12638       end_noreorder ();
12639       break;
12640
12641     case M_DROL:
12642       if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
12643         {
12644           if (op[0] == op[1])
12645             {
12646               tempreg = AT;
12647               used_at = 1;
12648             }
12649           else
12650             tempreg = op[0];
12651           macro_build (NULL, "dnegu", "d,w", tempreg, op[2]);
12652           macro_build (NULL, "drorv", "d,t,s", op[0], op[1], tempreg);
12653           break;
12654         }
12655       used_at = 1;
12656       macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, op[2]);
12657       macro_build (NULL, "dsrlv", "d,t,s", AT, op[1], AT);
12658       macro_build (NULL, "dsllv", "d,t,s", op[0], op[1], op[2]);
12659       macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12660       break;
12661
12662     case M_ROL:
12663       if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
12664         {
12665           if (op[0] == op[1])
12666             {
12667               tempreg = AT;
12668               used_at = 1;
12669             }
12670           else
12671             tempreg = op[0];
12672           macro_build (NULL, "negu", "d,w", tempreg, op[2]);
12673           macro_build (NULL, "rorv", "d,t,s", op[0], op[1], tempreg);
12674           break;
12675         }
12676       used_at = 1;
12677       macro_build (NULL, "subu", "d,v,t", AT, ZERO, op[2]);
12678       macro_build (NULL, "srlv", "d,t,s", AT, op[1], AT);
12679       macro_build (NULL, "sllv", "d,t,s", op[0], op[1], op[2]);
12680       macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12681       break;
12682
12683     case M_DROL_I:
12684       {
12685         unsigned int rot;
12686         char *l;
12687         char *rr;
12688
12689         rot = imm_expr.X_add_number & 0x3f;
12690         if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
12691           {
12692             rot = (64 - rot) & 0x3f;
12693             if (rot >= 32)
12694               macro_build (NULL, "dror32", SHFT_FMT, op[0], op[1], rot - 32);
12695             else
12696               macro_build (NULL, "dror", SHFT_FMT, op[0], op[1], rot);
12697             break;
12698           }
12699         if (rot == 0)
12700           {
12701             macro_build (NULL, "dsrl", SHFT_FMT, op[0], op[1], 0);
12702             break;
12703           }
12704         l = (rot < 0x20) ? "dsll" : "dsll32";
12705         rr = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
12706         rot &= 0x1f;
12707         used_at = 1;
12708         macro_build (NULL, l, SHFT_FMT, AT, op[1], rot);
12709         macro_build (NULL, rr, SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12710         macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12711       }
12712       break;
12713
12714     case M_ROL_I:
12715       {
12716         unsigned int rot;
12717
12718         rot = imm_expr.X_add_number & 0x1f;
12719         if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
12720           {
12721             macro_build (NULL, "ror", SHFT_FMT, op[0], op[1],
12722                          (32 - rot) & 0x1f);
12723             break;
12724           }
12725         if (rot == 0)
12726           {
12727             macro_build (NULL, "srl", SHFT_FMT, op[0], op[1], 0);
12728             break;
12729           }
12730         used_at = 1;
12731         macro_build (NULL, "sll", SHFT_FMT, AT, op[1], rot);
12732         macro_build (NULL, "srl", SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12733         macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12734       }
12735       break;
12736
12737     case M_DROR:
12738       if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
12739         {
12740           macro_build (NULL, "drorv", "d,t,s", op[0], op[1], op[2]);
12741           break;
12742         }
12743       used_at = 1;
12744       macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, op[2]);
12745       macro_build (NULL, "dsllv", "d,t,s", AT, op[1], AT);
12746       macro_build (NULL, "dsrlv", "d,t,s", op[0], op[1], op[2]);
12747       macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12748       break;
12749
12750     case M_ROR:
12751       if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
12752         {
12753           macro_build (NULL, "rorv", "d,t,s", op[0], op[1], op[2]);
12754           break;
12755         }
12756       used_at = 1;
12757       macro_build (NULL, "subu", "d,v,t", AT, ZERO, op[2]);
12758       macro_build (NULL, "sllv", "d,t,s", AT, op[1], AT);
12759       macro_build (NULL, "srlv", "d,t,s", op[0], op[1], op[2]);
12760       macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12761       break;
12762
12763     case M_DROR_I:
12764       {
12765         unsigned int rot;
12766         char *l;
12767         char *rr;
12768
12769         rot = imm_expr.X_add_number & 0x3f;
12770         if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
12771           {
12772             if (rot >= 32)
12773               macro_build (NULL, "dror32", SHFT_FMT, op[0], op[1], rot - 32);
12774             else
12775               macro_build (NULL, "dror", SHFT_FMT, op[0], op[1], rot);
12776             break;
12777           }
12778         if (rot == 0)
12779           {
12780             macro_build (NULL, "dsrl", SHFT_FMT, op[0], op[1], 0);
12781             break;
12782           }
12783         rr = (rot < 0x20) ? "dsrl" : "dsrl32";
12784         l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
12785         rot &= 0x1f;
12786         used_at = 1;
12787         macro_build (NULL, rr, SHFT_FMT, AT, op[1], rot);
12788         macro_build (NULL, l, SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12789         macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12790       }
12791       break;
12792
12793     case M_ROR_I:
12794       {
12795         unsigned int rot;
12796
12797         rot = imm_expr.X_add_number & 0x1f;
12798         if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
12799           {
12800             macro_build (NULL, "ror", SHFT_FMT, op[0], op[1], rot);
12801             break;
12802           }
12803         if (rot == 0)
12804           {
12805             macro_build (NULL, "srl", SHFT_FMT, op[0], op[1], 0);
12806             break;
12807           }
12808         used_at = 1;
12809         macro_build (NULL, "srl", SHFT_FMT, AT, op[1], rot);
12810         macro_build (NULL, "sll", SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12811         macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12812       }
12813       break;
12814
12815     case M_SEQ:
12816       if (op[1] == 0)
12817         macro_build (&expr1, "sltiu", "t,r,j", op[0], op[2], BFD_RELOC_LO16);
12818       else if (op[2] == 0)
12819         macro_build (&expr1, "sltiu", "t,r,j", op[0], op[1], BFD_RELOC_LO16);
12820       else
12821         {
12822           macro_build (NULL, "xor", "d,v,t", op[0], op[1], op[2]);
12823           macro_build (&expr1, "sltiu", "t,r,j", op[0], op[0], BFD_RELOC_LO16);
12824         }
12825       break;
12826
12827     case M_SEQ_I:
12828       if (imm_expr.X_add_number == 0)
12829         {
12830           macro_build (&expr1, "sltiu", "t,r,j", op[0], op[1], BFD_RELOC_LO16);
12831           break;
12832         }
12833       if (op[1] == 0)
12834         {
12835           as_warn (_("instruction %s: result is always false"),
12836                    ip->insn_mo->name);
12837           move_register (op[0], 0);
12838           break;
12839         }
12840       if (CPU_HAS_SEQ (mips_opts.arch)
12841           && -512 <= imm_expr.X_add_number
12842           && imm_expr.X_add_number < 512)
12843         {
12844           macro_build (NULL, "seqi", "t,r,+Q", op[0], op[1],
12845                        (int) imm_expr.X_add_number);
12846           break;
12847         }
12848       if (imm_expr.X_add_number >= 0
12849           && imm_expr.X_add_number < 0x10000)
12850         macro_build (&imm_expr, "xori", "t,r,i", op[0], op[1], BFD_RELOC_LO16);
12851       else if (imm_expr.X_add_number > -0x8000
12852                && imm_expr.X_add_number < 0)
12853         {
12854           imm_expr.X_add_number = -imm_expr.X_add_number;
12855           macro_build (&imm_expr, GPR_SIZE == 32 ? "addiu" : "daddiu",
12856                        "t,r,j", op[0], op[1], BFD_RELOC_LO16);
12857         }
12858       else if (CPU_HAS_SEQ (mips_opts.arch))
12859         {
12860           used_at = 1;
12861           load_register (AT, &imm_expr, GPR_SIZE == 64);
12862           macro_build (NULL, "seq", "d,v,t", op[0], op[1], AT);
12863           break;
12864         }
12865       else
12866         {
12867           load_register (AT, &imm_expr, GPR_SIZE == 64);
12868           macro_build (NULL, "xor", "d,v,t", op[0], op[1], AT);
12869           used_at = 1;
12870         }
12871       macro_build (&expr1, "sltiu", "t,r,j", op[0], op[0], BFD_RELOC_LO16);
12872       break;
12873
12874     case M_SGE:         /* X >= Y  <==>  not (X < Y) */
12875       s = "slt";
12876       goto sge;
12877     case M_SGEU:
12878       s = "sltu";
12879     sge:
12880       macro_build (NULL, s, "d,v,t", op[0], op[1], op[2]);
12881       macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
12882       break;
12883
12884     case M_SGE_I:       /* X >= I  <==>  not (X < I) */
12885     case M_SGEU_I:
12886       if (imm_expr.X_add_number >= -0x8000
12887           && imm_expr.X_add_number < 0x8000)
12888         macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
12889                      op[0], op[1], BFD_RELOC_LO16);
12890       else
12891         {
12892           load_register (AT, &imm_expr, GPR_SIZE == 64);
12893           macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
12894                        op[0], op[1], AT);
12895           used_at = 1;
12896         }
12897       macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
12898       break;
12899
12900     case M_SGT:         /* X > Y  <==>  Y < X */
12901       s = "slt";
12902       goto sgt;
12903     case M_SGTU:
12904       s = "sltu";
12905     sgt:
12906       macro_build (NULL, s, "d,v,t", op[0], op[2], op[1]);
12907       break;
12908
12909     case M_SGT_I:       /* X > I  <==>  I < X */
12910       s = "slt";
12911       goto sgti;
12912     case M_SGTU_I:
12913       s = "sltu";
12914     sgti:
12915       used_at = 1;
12916       load_register (AT, &imm_expr, GPR_SIZE == 64);
12917       macro_build (NULL, s, "d,v,t", op[0], AT, op[1]);
12918       break;
12919
12920     case M_SLE:         /* X <= Y  <==>  Y >= X  <==>  not (Y < X) */
12921       s = "slt";
12922       goto sle;
12923     case M_SLEU:
12924       s = "sltu";
12925     sle:
12926       macro_build (NULL, s, "d,v,t", op[0], op[2], op[1]);
12927       macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
12928       break;
12929
12930     case M_SLE_I:       /* X <= I  <==>  I >= X  <==>  not (I < X) */
12931       s = "slt";
12932       goto slei;
12933     case M_SLEU_I:
12934       s = "sltu";
12935     slei:
12936       used_at = 1;
12937       load_register (AT, &imm_expr, GPR_SIZE == 64);
12938       macro_build (NULL, s, "d,v,t", op[0], AT, op[1]);
12939       macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
12940       break;
12941
12942     case M_SLT_I:
12943       if (imm_expr.X_add_number >= -0x8000
12944           && imm_expr.X_add_number < 0x8000)
12945         {
12946           macro_build (&imm_expr, "slti", "t,r,j", op[0], op[1],
12947                        BFD_RELOC_LO16);
12948           break;
12949         }
12950       used_at = 1;
12951       load_register (AT, &imm_expr, GPR_SIZE == 64);
12952       macro_build (NULL, "slt", "d,v,t", op[0], op[1], AT);
12953       break;
12954
12955     case M_SLTU_I:
12956       if (imm_expr.X_add_number >= -0x8000
12957           && imm_expr.X_add_number < 0x8000)
12958         {
12959           macro_build (&imm_expr, "sltiu", "t,r,j", op[0], op[1],
12960                        BFD_RELOC_LO16);
12961           break;
12962         }
12963       used_at = 1;
12964       load_register (AT, &imm_expr, GPR_SIZE == 64);
12965       macro_build (NULL, "sltu", "d,v,t", op[0], op[1], AT);
12966       break;
12967
12968     case M_SNE:
12969       if (op[1] == 0)
12970         macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[2]);
12971       else if (op[2] == 0)
12972         macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[1]);
12973       else
12974         {
12975           macro_build (NULL, "xor", "d,v,t", op[0], op[1], op[2]);
12976           macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[0]);
12977         }
12978       break;
12979
12980     case M_SNE_I:
12981       if (imm_expr.X_add_number == 0)
12982         {
12983           macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[1]);
12984           break;
12985         }
12986       if (op[1] == 0)
12987         {
12988           as_warn (_("instruction %s: result is always true"),
12989                    ip->insn_mo->name);
12990           macro_build (&expr1, GPR_SIZE == 32 ? "addiu" : "daddiu", "t,r,j",
12991                        op[0], 0, BFD_RELOC_LO16);
12992           break;
12993         }
12994       if (CPU_HAS_SEQ (mips_opts.arch)
12995           && -512 <= imm_expr.X_add_number
12996           && imm_expr.X_add_number < 512)
12997         {
12998           macro_build (NULL, "snei", "t,r,+Q", op[0], op[1],
12999                        (int) imm_expr.X_add_number);
13000           break;
13001         }
13002       if (imm_expr.X_add_number >= 0
13003           && imm_expr.X_add_number < 0x10000)
13004         {
13005           macro_build (&imm_expr, "xori", "t,r,i", op[0], op[1],
13006                        BFD_RELOC_LO16);
13007         }
13008       else if (imm_expr.X_add_number > -0x8000
13009                && imm_expr.X_add_number < 0)
13010         {
13011           imm_expr.X_add_number = -imm_expr.X_add_number;
13012           macro_build (&imm_expr, GPR_SIZE == 32 ? "addiu" : "daddiu",
13013                        "t,r,j", op[0], op[1], BFD_RELOC_LO16);
13014         }
13015       else if (CPU_HAS_SEQ (mips_opts.arch))
13016         {
13017           used_at = 1;
13018           load_register (AT, &imm_expr, GPR_SIZE == 64);
13019           macro_build (NULL, "sne", "d,v,t", op[0], op[1], AT);
13020           break;
13021         }
13022       else
13023         {
13024           load_register (AT, &imm_expr, GPR_SIZE == 64);
13025           macro_build (NULL, "xor", "d,v,t", op[0], op[1], AT);
13026           used_at = 1;
13027         }
13028       macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[0]);
13029       break;
13030
13031     case M_SUB_I:
13032       s = "addi";
13033       s2 = "sub";
13034       goto do_subi;
13035     case M_SUBU_I:
13036       s = "addiu";
13037       s2 = "subu";
13038       goto do_subi;
13039     case M_DSUB_I:
13040       dbl = 1;
13041       s = "daddi";
13042       s2 = "dsub";
13043       if (!mips_opts.micromips)
13044         goto do_subi;
13045       if (imm_expr.X_add_number > -0x200
13046           && imm_expr.X_add_number <= 0x200)
13047         {
13048           macro_build (NULL, s, "t,r,.", op[0], op[1],
13049                        (int) -imm_expr.X_add_number);
13050           break;
13051         }
13052       goto do_subi_i;
13053     case M_DSUBU_I:
13054       dbl = 1;
13055       s = "daddiu";
13056       s2 = "dsubu";
13057     do_subi:
13058       if (imm_expr.X_add_number > -0x8000
13059           && imm_expr.X_add_number <= 0x8000)
13060         {
13061           imm_expr.X_add_number = -imm_expr.X_add_number;
13062           macro_build (&imm_expr, s, "t,r,j", op[0], op[1], BFD_RELOC_LO16);
13063           break;
13064         }
13065     do_subi_i:
13066       used_at = 1;
13067       load_register (AT, &imm_expr, dbl);
13068       macro_build (NULL, s2, "d,v,t", op[0], op[1], AT);
13069       break;
13070
13071     case M_TEQ_I:
13072       s = "teq";
13073       goto trap;
13074     case M_TGE_I:
13075       s = "tge";
13076       goto trap;
13077     case M_TGEU_I:
13078       s = "tgeu";
13079       goto trap;
13080     case M_TLT_I:
13081       s = "tlt";
13082       goto trap;
13083     case M_TLTU_I:
13084       s = "tltu";
13085       goto trap;
13086     case M_TNE_I:
13087       s = "tne";
13088     trap:
13089       used_at = 1;
13090       load_register (AT, &imm_expr, GPR_SIZE == 64);
13091       macro_build (NULL, s, "s,t", op[0], AT);
13092       break;
13093
13094     case M_TRUNCWS:
13095     case M_TRUNCWD:
13096       gas_assert (!mips_opts.micromips);
13097       gas_assert (mips_opts.isa == ISA_MIPS1);
13098       used_at = 1;
13099
13100       /*
13101        * Is the double cfc1 instruction a bug in the mips assembler;
13102        * or is there a reason for it?
13103        */
13104       start_noreorder ();
13105       macro_build (NULL, "cfc1", "t,G", op[2], RA);
13106       macro_build (NULL, "cfc1", "t,G", op[2], RA);
13107       macro_build (NULL, "nop", "");
13108       expr1.X_add_number = 3;
13109       macro_build (&expr1, "ori", "t,r,i", AT, op[2], BFD_RELOC_LO16);
13110       expr1.X_add_number = 2;
13111       macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
13112       macro_build (NULL, "ctc1", "t,G", AT, RA);
13113       macro_build (NULL, "nop", "");
13114       macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
13115                    op[0], op[1]);
13116       macro_build (NULL, "ctc1", "t,G", op[2], RA);
13117       macro_build (NULL, "nop", "");
13118       end_noreorder ();
13119       break;
13120
13121     case M_ULH_AB:
13122       s = "lb";
13123       s2 = "lbu";
13124       off = 1;
13125       goto uld_st;
13126     case M_ULHU_AB:
13127       s = "lbu";
13128       s2 = "lbu";
13129       off = 1;
13130       goto uld_st;
13131     case M_ULW_AB:
13132       s = "lwl";
13133       s2 = "lwr";
13134       offbits = (mips_opts.micromips ? 12 : 16);
13135       off = 3;
13136       goto uld_st;
13137     case M_ULD_AB:
13138       s = "ldl";
13139       s2 = "ldr";
13140       offbits = (mips_opts.micromips ? 12 : 16);
13141       off = 7;
13142       goto uld_st;
13143     case M_USH_AB:
13144       s = "sb";
13145       s2 = "sb";
13146       off = 1;
13147       ust = 1;
13148       goto uld_st;
13149     case M_USW_AB:
13150       s = "swl";
13151       s2 = "swr";
13152       offbits = (mips_opts.micromips ? 12 : 16);
13153       off = 3;
13154       ust = 1;
13155       goto uld_st;
13156     case M_USD_AB:
13157       s = "sdl";
13158       s2 = "sdr";
13159       offbits = (mips_opts.micromips ? 12 : 16);
13160       off = 7;
13161       ust = 1;
13162
13163     uld_st:
13164       breg = op[2];
13165       large_offset = !small_offset_p (off, align, offbits);
13166       ep = &offset_expr;
13167       expr1.X_add_number = 0;
13168       if (large_offset)
13169         {
13170           used_at = 1;
13171           tempreg = AT;
13172           if (small_offset_p (0, align, 16))
13173             macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", tempreg, breg, -1,
13174                          offset_reloc[0], offset_reloc[1], offset_reloc[2]);
13175           else
13176             {
13177               load_address (tempreg, ep, &used_at);
13178               if (breg != 0)
13179                 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
13180                              tempreg, tempreg, breg);
13181             }
13182           offset_reloc[0] = BFD_RELOC_LO16;
13183           offset_reloc[1] = BFD_RELOC_UNUSED;
13184           offset_reloc[2] = BFD_RELOC_UNUSED;
13185           breg = tempreg;
13186           tempreg = op[0];
13187           ep = &expr1;
13188         }
13189       else if (!ust && op[0] == breg)
13190         {
13191           used_at = 1;
13192           tempreg = AT;
13193         }
13194       else
13195         tempreg = op[0];
13196
13197       if (off == 1)
13198         goto ulh_sh;
13199
13200       if (!target_big_endian)
13201         ep->X_add_number += off;
13202       if (offbits == 12)
13203         macro_build (NULL, s, "t,~(b)", tempreg, (int) ep->X_add_number, breg);
13204       else
13205         macro_build (ep, s, "t,o(b)", tempreg, -1,
13206                      offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
13207
13208       if (!target_big_endian)
13209         ep->X_add_number -= off;
13210       else
13211         ep->X_add_number += off;
13212       if (offbits == 12)
13213         macro_build (NULL, s2, "t,~(b)",
13214                      tempreg, (int) ep->X_add_number, breg);
13215       else
13216         macro_build (ep, s2, "t,o(b)", tempreg, -1,
13217                      offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
13218
13219       /* If necessary, move the result in tempreg to the final destination.  */
13220       if (!ust && op[0] != tempreg)
13221         {
13222           /* Protect second load's delay slot.  */
13223           load_delay_nop ();
13224           move_register (op[0], tempreg);
13225         }
13226       break;
13227
13228     ulh_sh:
13229       used_at = 1;
13230       if (target_big_endian == ust)
13231         ep->X_add_number += off;
13232       tempreg = ust || large_offset ? op[0] : AT;
13233       macro_build (ep, s, "t,o(b)", tempreg, -1,
13234                    offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
13235
13236       /* For halfword transfers we need a temporary register to shuffle
13237          bytes.  Unfortunately for M_USH_A we have none available before
13238          the next store as AT holds the base address.  We deal with this
13239          case by clobbering TREG and then restoring it as with ULH.  */
13240       tempreg = ust == large_offset ? op[0] : AT;
13241       if (ust)
13242         macro_build (NULL, "srl", SHFT_FMT, tempreg, op[0], 8);
13243
13244       if (target_big_endian == ust)
13245         ep->X_add_number -= off;
13246       else
13247         ep->X_add_number += off;
13248       macro_build (ep, s2, "t,o(b)", tempreg, -1,
13249                    offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
13250
13251       /* For M_USH_A re-retrieve the LSB.  */
13252       if (ust && large_offset)
13253         {
13254           if (target_big_endian)
13255             ep->X_add_number += off;
13256           else
13257             ep->X_add_number -= off;
13258           macro_build (&expr1, "lbu", "t,o(b)", AT, -1,
13259                        offset_reloc[0], offset_reloc[1], offset_reloc[2], AT);
13260         }
13261       /* For ULH and M_USH_A OR the LSB in.  */
13262       if (!ust || large_offset)
13263         {
13264           tempreg = !large_offset ? AT : op[0];
13265           macro_build (NULL, "sll", SHFT_FMT, tempreg, tempreg, 8);
13266           macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
13267         }
13268       break;
13269
13270     default:
13271       /* FIXME: Check if this is one of the itbl macros, since they
13272          are added dynamically.  */
13273       as_bad (_("macro %s not implemented yet"), ip->insn_mo->name);
13274       break;
13275     }
13276   if (!mips_opts.at && used_at)
13277     as_bad (_("macro used $at after \".set noat\""));
13278 }
13279
13280 /* Implement macros in mips16 mode.  */
13281
13282 static void
13283 mips16_macro (struct mips_cl_insn *ip)
13284 {
13285   const struct mips_operand_array *operands;
13286   int mask;
13287   int tmp;
13288   expressionS expr1;
13289   int dbl;
13290   const char *s, *s2, *s3;
13291   unsigned int op[MAX_OPERANDS];
13292   unsigned int i;
13293
13294   mask = ip->insn_mo->mask;
13295
13296   operands = insn_operands (ip);
13297   for (i = 0; i < MAX_OPERANDS; i++)
13298     if (operands->operand[i])
13299       op[i] = insn_extract_operand (ip, operands->operand[i]);
13300     else
13301       op[i] = -1;
13302
13303   expr1.X_op = O_constant;
13304   expr1.X_op_symbol = NULL;
13305   expr1.X_add_symbol = NULL;
13306   expr1.X_add_number = 1;
13307
13308   dbl = 0;
13309
13310   switch (mask)
13311     {
13312     default:
13313       abort ();
13314
13315     case M_DDIV_3:
13316       dbl = 1;
13317     case M_DIV_3:
13318       s = "mflo";
13319       goto do_div3;
13320     case M_DREM_3:
13321       dbl = 1;
13322     case M_REM_3:
13323       s = "mfhi";
13324     do_div3:
13325       start_noreorder ();
13326       macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", op[1], op[2]);
13327       expr1.X_add_number = 2;
13328       macro_build (&expr1, "bnez", "x,p", op[2]);
13329       macro_build (NULL, "break", "6", 7);
13330
13331       /* FIXME: The normal code checks for of -1 / -0x80000000 here,
13332          since that causes an overflow.  We should do that as well,
13333          but I don't see how to do the comparisons without a temporary
13334          register.  */
13335       end_noreorder ();
13336       macro_build (NULL, s, "x", op[0]);
13337       break;
13338
13339     case M_DIVU_3:
13340       s = "divu";
13341       s2 = "mflo";
13342       goto do_divu3;
13343     case M_REMU_3:
13344       s = "divu";
13345       s2 = "mfhi";
13346       goto do_divu3;
13347     case M_DDIVU_3:
13348       s = "ddivu";
13349       s2 = "mflo";
13350       goto do_divu3;
13351     case M_DREMU_3:
13352       s = "ddivu";
13353       s2 = "mfhi";
13354     do_divu3:
13355       start_noreorder ();
13356       macro_build (NULL, s, "0,x,y", op[1], op[2]);
13357       expr1.X_add_number = 2;
13358       macro_build (&expr1, "bnez", "x,p", op[2]);
13359       macro_build (NULL, "break", "6", 7);
13360       end_noreorder ();
13361       macro_build (NULL, s2, "x", op[0]);
13362       break;
13363
13364     case M_DMUL:
13365       dbl = 1;
13366     case M_MUL:
13367       macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", op[1], op[2]);
13368       macro_build (NULL, "mflo", "x", op[0]);
13369       break;
13370
13371     case M_DSUBU_I:
13372       dbl = 1;
13373       goto do_subu;
13374     case M_SUBU_I:
13375     do_subu:
13376       imm_expr.X_add_number = -imm_expr.X_add_number;
13377       macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", op[0], op[1]);
13378       break;
13379
13380     case M_SUBU_I_2:
13381       imm_expr.X_add_number = -imm_expr.X_add_number;
13382       macro_build (&imm_expr, "addiu", "x,k", op[0]);
13383       break;
13384
13385     case M_DSUBU_I_2:
13386       imm_expr.X_add_number = -imm_expr.X_add_number;
13387       macro_build (&imm_expr, "daddiu", "y,j", op[0]);
13388       break;
13389
13390     case M_BEQ:
13391       s = "cmp";
13392       s2 = "bteqz";
13393       goto do_branch;
13394     case M_BNE:
13395       s = "cmp";
13396       s2 = "btnez";
13397       goto do_branch;
13398     case M_BLT:
13399       s = "slt";
13400       s2 = "btnez";
13401       goto do_branch;
13402     case M_BLTU:
13403       s = "sltu";
13404       s2 = "btnez";
13405       goto do_branch;
13406     case M_BLE:
13407       s = "slt";
13408       s2 = "bteqz";
13409       goto do_reverse_branch;
13410     case M_BLEU:
13411       s = "sltu";
13412       s2 = "bteqz";
13413       goto do_reverse_branch;
13414     case M_BGE:
13415       s = "slt";
13416       s2 = "bteqz";
13417       goto do_branch;
13418     case M_BGEU:
13419       s = "sltu";
13420       s2 = "bteqz";
13421       goto do_branch;
13422     case M_BGT:
13423       s = "slt";
13424       s2 = "btnez";
13425       goto do_reverse_branch;
13426     case M_BGTU:
13427       s = "sltu";
13428       s2 = "btnez";
13429
13430     do_reverse_branch:
13431       tmp = op[1];
13432       op[1] = op[0];
13433       op[0] = tmp;
13434
13435     do_branch:
13436       macro_build (NULL, s, "x,y", op[0], op[1]);
13437       macro_build (&offset_expr, s2, "p");
13438       break;
13439
13440     case M_BEQ_I:
13441       s = "cmpi";
13442       s2 = "bteqz";
13443       s3 = "x,U";
13444       goto do_branch_i;
13445     case M_BNE_I:
13446       s = "cmpi";
13447       s2 = "btnez";
13448       s3 = "x,U";
13449       goto do_branch_i;
13450     case M_BLT_I:
13451       s = "slti";
13452       s2 = "btnez";
13453       s3 = "x,8";
13454       goto do_branch_i;
13455     case M_BLTU_I:
13456       s = "sltiu";
13457       s2 = "btnez";
13458       s3 = "x,8";
13459       goto do_branch_i;
13460     case M_BLE_I:
13461       s = "slti";
13462       s2 = "btnez";
13463       s3 = "x,8";
13464       goto do_addone_branch_i;
13465     case M_BLEU_I:
13466       s = "sltiu";
13467       s2 = "btnez";
13468       s3 = "x,8";
13469       goto do_addone_branch_i;
13470     case M_BGE_I:
13471       s = "slti";
13472       s2 = "bteqz";
13473       s3 = "x,8";
13474       goto do_branch_i;
13475     case M_BGEU_I:
13476       s = "sltiu";
13477       s2 = "bteqz";
13478       s3 = "x,8";
13479       goto do_branch_i;
13480     case M_BGT_I:
13481       s = "slti";
13482       s2 = "bteqz";
13483       s3 = "x,8";
13484       goto do_addone_branch_i;
13485     case M_BGTU_I:
13486       s = "sltiu";
13487       s2 = "bteqz";
13488       s3 = "x,8";
13489
13490     do_addone_branch_i:
13491       ++imm_expr.X_add_number;
13492
13493     do_branch_i:
13494       macro_build (&imm_expr, s, s3, op[0]);
13495       macro_build (&offset_expr, s2, "p");
13496       break;
13497
13498     case M_ABS:
13499       expr1.X_add_number = 0;
13500       macro_build (&expr1, "slti", "x,8", op[1]);
13501       if (op[0] != op[1])
13502         macro_build (NULL, "move", "y,X", op[0], mips16_to_32_reg_map[op[1]]);
13503       expr1.X_add_number = 2;
13504       macro_build (&expr1, "bteqz", "p");
13505       macro_build (NULL, "neg", "x,w", op[0], op[0]);
13506       break;
13507     }
13508 }
13509
13510 /* Look up instruction [START, START + LENGTH) in HASH.  Record any extra
13511    opcode bits in *OPCODE_EXTRA.  */
13512
13513 static struct mips_opcode *
13514 mips_lookup_insn (struct hash_control *hash, const char *start,
13515                   ssize_t length, unsigned int *opcode_extra)
13516 {
13517   char *name, *dot, *p;
13518   unsigned int mask, suffix;
13519   ssize_t opend;
13520   struct mips_opcode *insn;
13521
13522   /* Make a copy of the instruction so that we can fiddle with it.  */
13523   name = alloca (length + 1);
13524   memcpy (name, start, length);
13525   name[length] = '\0';
13526
13527   /* Look up the instruction as-is.  */
13528   insn = (struct mips_opcode *) hash_find (hash, name);
13529   if (insn)
13530     return insn;
13531
13532   dot = strchr (name, '.');
13533   if (dot && dot[1])
13534     {
13535       /* Try to interpret the text after the dot as a VU0 channel suffix.  */
13536       p = mips_parse_vu0_channels (dot + 1, &mask);
13537       if (*p == 0 && mask != 0)
13538         {
13539           *dot = 0;
13540           insn = (struct mips_opcode *) hash_find (hash, name);
13541           *dot = '.';
13542           if (insn && (insn->pinfo2 & INSN2_VU0_CHANNEL_SUFFIX) != 0)
13543             {
13544               *opcode_extra |= mask << mips_vu0_channel_mask.lsb;
13545               return insn;
13546             }
13547         }
13548     }
13549
13550   if (mips_opts.micromips)
13551     {
13552       /* See if there's an instruction size override suffix,
13553          either `16' or `32', at the end of the mnemonic proper,
13554          that defines the operation, i.e. before the first `.'
13555          character if any.  Strip it and retry.  */
13556       opend = dot != NULL ? dot - name : length;
13557       if (opend >= 3 && name[opend - 2] == '1' && name[opend - 1] == '6')
13558         suffix = 2;
13559       else if (name[opend - 2] == '3' && name[opend - 1] == '2')
13560         suffix = 4;
13561       else
13562         suffix = 0;
13563       if (suffix)
13564         {
13565           memcpy (name + opend - 2, name + opend, length - opend + 1);
13566           insn = (struct mips_opcode *) hash_find (hash, name);
13567           if (insn)
13568             {
13569               forced_insn_length = suffix;
13570               return insn;
13571             }
13572         }
13573     }
13574
13575   return NULL;
13576 }
13577
13578 /* Assemble an instruction into its binary format.  If the instruction
13579    is a macro, set imm_expr and offset_expr to the values associated
13580    with "I" and "A" operands respectively.  Otherwise store the value
13581    of the relocatable field (if any) in offset_expr.  In both cases
13582    set offset_reloc to the relocation operators applied to offset_expr.  */
13583
13584 static void
13585 mips_ip (char *str, struct mips_cl_insn *insn)
13586 {
13587   const struct mips_opcode *first, *past;
13588   struct hash_control *hash;
13589   char format;
13590   size_t end;
13591   struct mips_operand_token *tokens;
13592   unsigned int opcode_extra;
13593
13594   if (mips_opts.micromips)
13595     {
13596       hash = micromips_op_hash;
13597       past = &micromips_opcodes[bfd_micromips_num_opcodes];
13598     }
13599   else
13600     {
13601       hash = op_hash;
13602       past = &mips_opcodes[NUMOPCODES];
13603     }
13604   forced_insn_length = 0;
13605   opcode_extra = 0;
13606
13607   /* We first try to match an instruction up to a space or to the end.  */
13608   for (end = 0; str[end] != '\0' && !ISSPACE (str[end]); end++)
13609     continue;
13610
13611   first = mips_lookup_insn (hash, str, end, &opcode_extra);
13612   if (first == NULL)
13613     {
13614       set_insn_error (0, _("unrecognized opcode"));
13615       return;
13616     }
13617
13618   if (strcmp (first->name, "li.s") == 0)
13619     format = 'f';
13620   else if (strcmp (first->name, "li.d") == 0)
13621     format = 'd';
13622   else
13623     format = 0;
13624   tokens = mips_parse_arguments (str + end, format);
13625   if (!tokens)
13626     return;
13627
13628   if (!match_insns (insn, first, past, tokens, opcode_extra, FALSE)
13629       && !match_insns (insn, first, past, tokens, opcode_extra, TRUE))
13630     set_insn_error (0, _("invalid operands"));
13631
13632   obstack_free (&mips_operand_tokens, tokens);
13633 }
13634
13635 /* As for mips_ip, but used when assembling MIPS16 code.
13636    Also set forced_insn_length to the resulting instruction size in
13637    bytes if the user explicitly requested a small or extended instruction.  */
13638
13639 static void
13640 mips16_ip (char *str, struct mips_cl_insn *insn)
13641 {
13642   char *end, *s, c;
13643   struct mips_opcode *first;
13644   struct mips_operand_token *tokens;
13645
13646   forced_insn_length = 0;
13647
13648   for (s = str; ISLOWER (*s); ++s)
13649     ;
13650   end = s;
13651   c = *end;
13652   switch (c)
13653     {
13654     case '\0':
13655       break;
13656
13657     case ' ':
13658       s++;
13659       break;
13660
13661     case '.':
13662       if (s[1] == 't' && s[2] == ' ')
13663         {
13664           forced_insn_length = 2;
13665           s += 3;
13666           break;
13667         }
13668       else if (s[1] == 'e' && s[2] == ' ')
13669         {
13670           forced_insn_length = 4;
13671           s += 3;
13672           break;
13673         }
13674       /* Fall through.  */
13675     default:
13676       set_insn_error (0, _("unrecognized opcode"));
13677       return;
13678     }
13679
13680   if (mips_opts.noautoextend && !forced_insn_length)
13681     forced_insn_length = 2;
13682
13683   *end = 0;
13684   first = (struct mips_opcode *) hash_find (mips16_op_hash, str);
13685   *end = c;
13686
13687   if (!first)
13688     {
13689       set_insn_error (0, _("unrecognized opcode"));
13690       return;
13691     }
13692
13693   tokens = mips_parse_arguments (s, 0);
13694   if (!tokens)
13695     return;
13696
13697   if (!match_mips16_insns (insn, first, tokens))
13698     set_insn_error (0, _("invalid operands"));
13699
13700   obstack_free (&mips_operand_tokens, tokens);
13701 }
13702
13703 /* Marshal immediate value VAL for an extended MIPS16 instruction.
13704    NBITS is the number of significant bits in VAL.  */
13705
13706 static unsigned long
13707 mips16_immed_extend (offsetT val, unsigned int nbits)
13708 {
13709   int extval;
13710   if (nbits == 16)
13711     {
13712       extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
13713       val &= 0x1f;
13714     }
13715   else if (nbits == 15)
13716     {
13717       extval = ((val >> 11) & 0xf) | (val & 0x7f0);
13718       val &= 0xf;
13719     }
13720   else
13721     {
13722       extval = ((val & 0x1f) << 6) | (val & 0x20);
13723       val = 0;
13724     }
13725   return (extval << 16) | val;
13726 }
13727
13728 /* Like decode_mips16_operand, but require the operand to be defined and
13729    require it to be an integer.  */
13730
13731 static const struct mips_int_operand *
13732 mips16_immed_operand (int type, bfd_boolean extended_p)
13733 {
13734   const struct mips_operand *operand;
13735
13736   operand = decode_mips16_operand (type, extended_p);
13737   if (!operand || (operand->type != OP_INT && operand->type != OP_PCREL))
13738     abort ();
13739   return (const struct mips_int_operand *) operand;
13740 }
13741
13742 /* Return true if SVAL fits OPERAND.  RELOC is as for mips16_immed.  */
13743
13744 static bfd_boolean
13745 mips16_immed_in_range_p (const struct mips_int_operand *operand,
13746                          bfd_reloc_code_real_type reloc, offsetT sval)
13747 {
13748   int min_val, max_val;
13749
13750   min_val = mips_int_operand_min (operand);
13751   max_val = mips_int_operand_max (operand);
13752   if (reloc != BFD_RELOC_UNUSED)
13753     {
13754       if (min_val < 0)
13755         sval = SEXT_16BIT (sval);
13756       else
13757         sval &= 0xffff;
13758     }
13759
13760   return (sval >= min_val
13761           && sval <= max_val
13762           && (sval & ((1 << operand->shift) - 1)) == 0);
13763 }
13764
13765 /* Install immediate value VAL into MIPS16 instruction *INSN,
13766    extending it if necessary.  The instruction in *INSN may
13767    already be extended.
13768
13769    RELOC is the relocation that produced VAL, or BFD_RELOC_UNUSED
13770    if none.  In the former case, VAL is a 16-bit number with no
13771    defined signedness.
13772
13773    TYPE is the type of the immediate field.  USER_INSN_LENGTH
13774    is the length that the user requested, or 0 if none.  */
13775
13776 static void
13777 mips16_immed (char *file, unsigned int line, int type,
13778               bfd_reloc_code_real_type reloc, offsetT val,
13779               unsigned int user_insn_length, unsigned long *insn)
13780 {
13781   const struct mips_int_operand *operand;
13782   unsigned int uval, length;
13783
13784   operand = mips16_immed_operand (type, FALSE);
13785   if (!mips16_immed_in_range_p (operand, reloc, val))
13786     {
13787       /* We need an extended instruction.  */
13788       if (user_insn_length == 2)
13789         as_bad_where (file, line, _("invalid unextended operand value"));
13790       else
13791         *insn |= MIPS16_EXTEND;
13792     }
13793   else if (user_insn_length == 4)
13794     {
13795       /* The operand doesn't force an unextended instruction to be extended.
13796          Warn if the user wanted an extended instruction anyway.  */
13797       *insn |= MIPS16_EXTEND;
13798       as_warn_where (file, line,
13799                      _("extended operand requested but not required"));
13800     }
13801
13802   length = mips16_opcode_length (*insn);
13803   if (length == 4)
13804     {
13805       operand = mips16_immed_operand (type, TRUE);
13806       if (!mips16_immed_in_range_p (operand, reloc, val))
13807         as_bad_where (file, line,
13808                       _("operand value out of range for instruction"));
13809     }
13810   uval = ((unsigned int) val >> operand->shift) - operand->bias;
13811   if (length == 2)
13812     *insn = mips_insert_operand (&operand->root, *insn, uval);
13813   else
13814     *insn |= mips16_immed_extend (uval, operand->root.size);
13815 }
13816 \f
13817 struct percent_op_match
13818 {
13819   const char *str;
13820   bfd_reloc_code_real_type reloc;
13821 };
13822
13823 static const struct percent_op_match mips_percent_op[] =
13824 {
13825   {"%lo", BFD_RELOC_LO16},
13826   {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
13827   {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
13828   {"%call16", BFD_RELOC_MIPS_CALL16},
13829   {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
13830   {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
13831   {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
13832   {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
13833   {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
13834   {"%got", BFD_RELOC_MIPS_GOT16},
13835   {"%gp_rel", BFD_RELOC_GPREL16},
13836   {"%half", BFD_RELOC_16},
13837   {"%highest", BFD_RELOC_MIPS_HIGHEST},
13838   {"%higher", BFD_RELOC_MIPS_HIGHER},
13839   {"%neg", BFD_RELOC_MIPS_SUB},
13840   {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
13841   {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
13842   {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
13843   {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
13844   {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
13845   {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
13846   {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
13847   {"%hi", BFD_RELOC_HI16_S},
13848   {"%pcrel_hi", BFD_RELOC_HI16_S_PCREL},
13849   {"%pcrel_lo", BFD_RELOC_LO16_PCREL}
13850 };
13851
13852 static const struct percent_op_match mips16_percent_op[] =
13853 {
13854   {"%lo", BFD_RELOC_MIPS16_LO16},
13855   {"%gprel", BFD_RELOC_MIPS16_GPREL},
13856   {"%got", BFD_RELOC_MIPS16_GOT16},
13857   {"%call16", BFD_RELOC_MIPS16_CALL16},
13858   {"%hi", BFD_RELOC_MIPS16_HI16_S},
13859   {"%tlsgd", BFD_RELOC_MIPS16_TLS_GD},
13860   {"%tlsldm", BFD_RELOC_MIPS16_TLS_LDM},
13861   {"%dtprel_hi", BFD_RELOC_MIPS16_TLS_DTPREL_HI16},
13862   {"%dtprel_lo", BFD_RELOC_MIPS16_TLS_DTPREL_LO16},
13863   {"%tprel_hi", BFD_RELOC_MIPS16_TLS_TPREL_HI16},
13864   {"%tprel_lo", BFD_RELOC_MIPS16_TLS_TPREL_LO16},
13865   {"%gottprel", BFD_RELOC_MIPS16_TLS_GOTTPREL}
13866 };
13867
13868
13869 /* Return true if *STR points to a relocation operator.  When returning true,
13870    move *STR over the operator and store its relocation code in *RELOC.
13871    Leave both *STR and *RELOC alone when returning false.  */
13872
13873 static bfd_boolean
13874 parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
13875 {
13876   const struct percent_op_match *percent_op;
13877   size_t limit, i;
13878
13879   if (mips_opts.mips16)
13880     {
13881       percent_op = mips16_percent_op;
13882       limit = ARRAY_SIZE (mips16_percent_op);
13883     }
13884   else
13885     {
13886       percent_op = mips_percent_op;
13887       limit = ARRAY_SIZE (mips_percent_op);
13888     }
13889
13890   for (i = 0; i < limit; i++)
13891     if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
13892       {
13893         int len = strlen (percent_op[i].str);
13894
13895         if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
13896           continue;
13897
13898         *str += strlen (percent_op[i].str);
13899         *reloc = percent_op[i].reloc;
13900
13901         /* Check whether the output BFD supports this relocation.
13902            If not, issue an error and fall back on something safe.  */
13903         if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
13904           {
13905             as_bad (_("relocation %s isn't supported by the current ABI"),
13906                     percent_op[i].str);
13907             *reloc = BFD_RELOC_UNUSED;
13908           }
13909         return TRUE;
13910       }
13911   return FALSE;
13912 }
13913
13914
13915 /* Parse string STR as a 16-bit relocatable operand.  Store the
13916    expression in *EP and the relocations in the array starting
13917    at RELOC.  Return the number of relocation operators used.
13918
13919    On exit, EXPR_END points to the first character after the expression.  */
13920
13921 static size_t
13922 my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
13923                        char *str)
13924 {
13925   bfd_reloc_code_real_type reversed_reloc[3];
13926   size_t reloc_index, i;
13927   int crux_depth, str_depth;
13928   char *crux;
13929
13930   /* Search for the start of the main expression, recoding relocations
13931      in REVERSED_RELOC.  End the loop with CRUX pointing to the start
13932      of the main expression and with CRUX_DEPTH containing the number
13933      of open brackets at that point.  */
13934   reloc_index = -1;
13935   str_depth = 0;
13936   do
13937     {
13938       reloc_index++;
13939       crux = str;
13940       crux_depth = str_depth;
13941
13942       /* Skip over whitespace and brackets, keeping count of the number
13943          of brackets.  */
13944       while (*str == ' ' || *str == '\t' || *str == '(')
13945         if (*str++ == '(')
13946           str_depth++;
13947     }
13948   while (*str == '%'
13949          && reloc_index < (HAVE_NEWABI ? 3 : 1)
13950          && parse_relocation (&str, &reversed_reloc[reloc_index]));
13951
13952   my_getExpression (ep, crux);
13953   str = expr_end;
13954
13955   /* Match every open bracket.  */
13956   while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
13957     if (*str++ == ')')
13958       crux_depth--;
13959
13960   if (crux_depth > 0)
13961     as_bad (_("unclosed '('"));
13962
13963   expr_end = str;
13964
13965   if (reloc_index != 0)
13966     {
13967       prev_reloc_op_frag = frag_now;
13968       for (i = 0; i < reloc_index; i++)
13969         reloc[i] = reversed_reloc[reloc_index - 1 - i];
13970     }
13971
13972   return reloc_index;
13973 }
13974
13975 static void
13976 my_getExpression (expressionS *ep, char *str)
13977 {
13978   char *save_in;
13979
13980   save_in = input_line_pointer;
13981   input_line_pointer = str;
13982   expression (ep);
13983   expr_end = input_line_pointer;
13984   input_line_pointer = save_in;
13985 }
13986
13987 char *
13988 md_atof (int type, char *litP, int *sizeP)
13989 {
13990   return ieee_md_atof (type, litP, sizeP, target_big_endian);
13991 }
13992
13993 void
13994 md_number_to_chars (char *buf, valueT val, int n)
13995 {
13996   if (target_big_endian)
13997     number_to_chars_bigendian (buf, val, n);
13998   else
13999     number_to_chars_littleendian (buf, val, n);
14000 }
14001 \f
14002 static int support_64bit_objects(void)
14003 {
14004   const char **list, **l;
14005   int yes;
14006
14007   list = bfd_target_list ();
14008   for (l = list; *l != NULL; l++)
14009     if (strcmp (*l, ELF_TARGET ("elf64-", "big")) == 0
14010         || strcmp (*l, ELF_TARGET ("elf64-", "little")) == 0)
14011       break;
14012   yes = (*l != NULL);
14013   free (list);
14014   return yes;
14015 }
14016
14017 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
14018    NEW_VALUE.  Warn if another value was already specified.  Note:
14019    we have to defer parsing the -march and -mtune arguments in order
14020    to handle 'from-abi' correctly, since the ABI might be specified
14021    in a later argument.  */
14022
14023 static void
14024 mips_set_option_string (const char **string_ptr, const char *new_value)
14025 {
14026   if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
14027     as_warn (_("a different %s was already specified, is now %s"),
14028              string_ptr == &mips_arch_string ? "-march" : "-mtune",
14029              new_value);
14030
14031   *string_ptr = new_value;
14032 }
14033
14034 int
14035 md_parse_option (int c, char *arg)
14036 {
14037   unsigned int i;
14038
14039   for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
14040     if (c == mips_ases[i].option_on || c == mips_ases[i].option_off)
14041       {
14042         file_ase_explicit |= mips_set_ase (&mips_ases[i], &file_mips_opts,
14043                                            c == mips_ases[i].option_on);
14044         return 1;
14045       }
14046
14047   switch (c)
14048     {
14049     case OPTION_CONSTRUCT_FLOATS:
14050       mips_disable_float_construction = 0;
14051       break;
14052
14053     case OPTION_NO_CONSTRUCT_FLOATS:
14054       mips_disable_float_construction = 1;
14055       break;
14056
14057     case OPTION_TRAP:
14058       mips_trap = 1;
14059       break;
14060
14061     case OPTION_BREAK:
14062       mips_trap = 0;
14063       break;
14064
14065     case OPTION_EB:
14066       target_big_endian = 1;
14067       break;
14068
14069     case OPTION_EL:
14070       target_big_endian = 0;
14071       break;
14072
14073     case 'O':
14074       if (arg == NULL)
14075         mips_optimize = 1;
14076       else if (arg[0] == '0')
14077         mips_optimize = 0;
14078       else if (arg[0] == '1')
14079         mips_optimize = 1;
14080       else
14081         mips_optimize = 2;
14082       break;
14083
14084     case 'g':
14085       if (arg == NULL)
14086         mips_debug = 2;
14087       else
14088         mips_debug = atoi (arg);
14089       break;
14090
14091     case OPTION_MIPS1:
14092       file_mips_opts.isa = ISA_MIPS1;
14093       break;
14094
14095     case OPTION_MIPS2:
14096       file_mips_opts.isa = ISA_MIPS2;
14097       break;
14098
14099     case OPTION_MIPS3:
14100       file_mips_opts.isa = ISA_MIPS3;
14101       break;
14102
14103     case OPTION_MIPS4:
14104       file_mips_opts.isa = ISA_MIPS4;
14105       break;
14106
14107     case OPTION_MIPS5:
14108       file_mips_opts.isa = ISA_MIPS5;
14109       break;
14110
14111     case OPTION_MIPS32:
14112       file_mips_opts.isa = ISA_MIPS32;
14113       break;
14114
14115     case OPTION_MIPS32R2:
14116       file_mips_opts.isa = ISA_MIPS32R2;
14117       break;
14118
14119     case OPTION_MIPS32R3:
14120       file_mips_opts.isa = ISA_MIPS32R3;
14121       break;
14122
14123     case OPTION_MIPS32R5:
14124       file_mips_opts.isa = ISA_MIPS32R5;
14125       break;
14126
14127     case OPTION_MIPS32R6:
14128       file_mips_opts.isa = ISA_MIPS32R6;
14129       break;
14130
14131     case OPTION_MIPS64R2:
14132       file_mips_opts.isa = ISA_MIPS64R2;
14133       break;
14134
14135     case OPTION_MIPS64R3:
14136       file_mips_opts.isa = ISA_MIPS64R3;
14137       break;
14138
14139     case OPTION_MIPS64R5:
14140       file_mips_opts.isa = ISA_MIPS64R5;
14141       break;
14142
14143     case OPTION_MIPS64R6:
14144       file_mips_opts.isa = ISA_MIPS64R6;
14145       break;
14146
14147     case OPTION_MIPS64:
14148       file_mips_opts.isa = ISA_MIPS64;
14149       break;
14150
14151     case OPTION_MTUNE:
14152       mips_set_option_string (&mips_tune_string, arg);
14153       break;
14154
14155     case OPTION_MARCH:
14156       mips_set_option_string (&mips_arch_string, arg);
14157       break;
14158
14159     case OPTION_M4650:
14160       mips_set_option_string (&mips_arch_string, "4650");
14161       mips_set_option_string (&mips_tune_string, "4650");
14162       break;
14163
14164     case OPTION_NO_M4650:
14165       break;
14166
14167     case OPTION_M4010:
14168       mips_set_option_string (&mips_arch_string, "4010");
14169       mips_set_option_string (&mips_tune_string, "4010");
14170       break;
14171
14172     case OPTION_NO_M4010:
14173       break;
14174
14175     case OPTION_M4100:
14176       mips_set_option_string (&mips_arch_string, "4100");
14177       mips_set_option_string (&mips_tune_string, "4100");
14178       break;
14179
14180     case OPTION_NO_M4100:
14181       break;
14182
14183     case OPTION_M3900:
14184       mips_set_option_string (&mips_arch_string, "3900");
14185       mips_set_option_string (&mips_tune_string, "3900");
14186       break;
14187
14188     case OPTION_NO_M3900:
14189       break;
14190
14191     case OPTION_MICROMIPS:
14192       if (file_mips_opts.mips16 == 1)
14193         {
14194           as_bad (_("-mmicromips cannot be used with -mips16"));
14195           return 0;
14196         }
14197       file_mips_opts.micromips = 1;
14198       mips_no_prev_insn ();
14199       break;
14200
14201     case OPTION_NO_MICROMIPS:
14202       file_mips_opts.micromips = 0;
14203       mips_no_prev_insn ();
14204       break;
14205
14206     case OPTION_MIPS16:
14207       if (file_mips_opts.micromips == 1)
14208         {
14209           as_bad (_("-mips16 cannot be used with -micromips"));
14210           return 0;
14211         }
14212       file_mips_opts.mips16 = 1;
14213       mips_no_prev_insn ();
14214       break;
14215
14216     case OPTION_NO_MIPS16:
14217       file_mips_opts.mips16 = 0;
14218       mips_no_prev_insn ();
14219       break;
14220
14221     case OPTION_FIX_24K:
14222       mips_fix_24k = 1;
14223       break;
14224
14225     case OPTION_NO_FIX_24K:
14226       mips_fix_24k = 0;
14227       break;
14228
14229     case OPTION_FIX_RM7000:
14230       mips_fix_rm7000 = 1;
14231       break;
14232
14233     case OPTION_NO_FIX_RM7000:
14234       mips_fix_rm7000 = 0;
14235       break;
14236
14237     case OPTION_FIX_LOONGSON2F_JUMP:
14238       mips_fix_loongson2f_jump = TRUE;
14239       break;
14240
14241     case OPTION_NO_FIX_LOONGSON2F_JUMP:
14242       mips_fix_loongson2f_jump = FALSE;
14243       break;
14244
14245     case OPTION_FIX_LOONGSON2F_NOP:
14246       mips_fix_loongson2f_nop = TRUE;
14247       break;
14248
14249     case OPTION_NO_FIX_LOONGSON2F_NOP:
14250       mips_fix_loongson2f_nop = FALSE;
14251       break;
14252
14253     case OPTION_FIX_VR4120:
14254       mips_fix_vr4120 = 1;
14255       break;
14256
14257     case OPTION_NO_FIX_VR4120:
14258       mips_fix_vr4120 = 0;
14259       break;
14260
14261     case OPTION_FIX_VR4130:
14262       mips_fix_vr4130 = 1;
14263       break;
14264
14265     case OPTION_NO_FIX_VR4130:
14266       mips_fix_vr4130 = 0;
14267       break;
14268
14269     case OPTION_FIX_CN63XXP1:
14270       mips_fix_cn63xxp1 = TRUE;
14271       break;
14272
14273     case OPTION_NO_FIX_CN63XXP1:
14274       mips_fix_cn63xxp1 = FALSE;
14275       break;
14276
14277     case OPTION_RELAX_BRANCH:
14278       mips_relax_branch = 1;
14279       break;
14280
14281     case OPTION_NO_RELAX_BRANCH:
14282       mips_relax_branch = 0;
14283       break;
14284
14285     case OPTION_INSN32:
14286       file_mips_opts.insn32 = TRUE;
14287       break;
14288
14289     case OPTION_NO_INSN32:
14290       file_mips_opts.insn32 = FALSE;
14291       break;
14292
14293     case OPTION_MSHARED:
14294       mips_in_shared = TRUE;
14295       break;
14296
14297     case OPTION_MNO_SHARED:
14298       mips_in_shared = FALSE;
14299       break;
14300
14301     case OPTION_MSYM32:
14302       file_mips_opts.sym32 = TRUE;
14303       break;
14304
14305     case OPTION_MNO_SYM32:
14306       file_mips_opts.sym32 = FALSE;
14307       break;
14308
14309       /* When generating ELF code, we permit -KPIC and -call_shared to
14310          select SVR4_PIC, and -non_shared to select no PIC.  This is
14311          intended to be compatible with Irix 5.  */
14312     case OPTION_CALL_SHARED:
14313       mips_pic = SVR4_PIC;
14314       mips_abicalls = TRUE;
14315       break;
14316
14317     case OPTION_CALL_NONPIC:
14318       mips_pic = NO_PIC;
14319       mips_abicalls = TRUE;
14320       break;
14321
14322     case OPTION_NON_SHARED:
14323       mips_pic = NO_PIC;
14324       mips_abicalls = FALSE;
14325       break;
14326
14327       /* The -xgot option tells the assembler to use 32 bit offsets
14328          when accessing the got in SVR4_PIC mode.  It is for Irix
14329          compatibility.  */
14330     case OPTION_XGOT:
14331       mips_big_got = 1;
14332       break;
14333
14334     case 'G':
14335       g_switch_value = atoi (arg);
14336       g_switch_seen = 1;
14337       break;
14338
14339       /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
14340          and -mabi=64.  */
14341     case OPTION_32:
14342       mips_abi = O32_ABI;
14343       break;
14344
14345     case OPTION_N32:
14346       mips_abi = N32_ABI;
14347       break;
14348
14349     case OPTION_64:
14350       mips_abi = N64_ABI;
14351       if (!support_64bit_objects())
14352         as_fatal (_("no compiled in support for 64 bit object file format"));
14353       break;
14354
14355     case OPTION_GP32:
14356       file_mips_opts.gp = 32;
14357       break;
14358
14359     case OPTION_GP64:
14360       file_mips_opts.gp = 64;
14361       break;
14362
14363     case OPTION_FP32:
14364       file_mips_opts.fp = 32;
14365       break;
14366
14367     case OPTION_FPXX:
14368       file_mips_opts.fp = 0;
14369       break;
14370
14371     case OPTION_FP64:
14372       file_mips_opts.fp = 64;
14373       break;
14374
14375     case OPTION_ODD_SPREG:
14376       file_mips_opts.oddspreg = 1;
14377       break;
14378
14379     case OPTION_NO_ODD_SPREG:
14380       file_mips_opts.oddspreg = 0;
14381       break;
14382
14383     case OPTION_SINGLE_FLOAT:
14384       file_mips_opts.single_float = 1;
14385       break;
14386
14387     case OPTION_DOUBLE_FLOAT:
14388       file_mips_opts.single_float = 0;
14389       break;
14390
14391     case OPTION_SOFT_FLOAT:
14392       file_mips_opts.soft_float = 1;
14393       break;
14394
14395     case OPTION_HARD_FLOAT:
14396       file_mips_opts.soft_float = 0;
14397       break;
14398
14399     case OPTION_MABI:
14400       if (strcmp (arg, "32") == 0)
14401         mips_abi = O32_ABI;
14402       else if (strcmp (arg, "o64") == 0)
14403         mips_abi = O64_ABI;
14404       else if (strcmp (arg, "n32") == 0)
14405         mips_abi = N32_ABI;
14406       else if (strcmp (arg, "64") == 0)
14407         {
14408           mips_abi = N64_ABI;
14409           if (! support_64bit_objects())
14410             as_fatal (_("no compiled in support for 64 bit object file "
14411                         "format"));
14412         }
14413       else if (strcmp (arg, "eabi") == 0)
14414         mips_abi = EABI_ABI;
14415       else
14416         {
14417           as_fatal (_("invalid abi -mabi=%s"), arg);
14418           return 0;
14419         }
14420       break;
14421
14422     case OPTION_M7000_HILO_FIX:
14423       mips_7000_hilo_fix = TRUE;
14424       break;
14425
14426     case OPTION_MNO_7000_HILO_FIX:
14427       mips_7000_hilo_fix = FALSE;
14428       break;
14429
14430     case OPTION_MDEBUG:
14431       mips_flag_mdebug = TRUE;
14432       break;
14433
14434     case OPTION_NO_MDEBUG:
14435       mips_flag_mdebug = FALSE;
14436       break;
14437
14438     case OPTION_PDR:
14439       mips_flag_pdr = TRUE;
14440       break;
14441
14442     case OPTION_NO_PDR:
14443       mips_flag_pdr = FALSE;
14444       break;
14445
14446     case OPTION_MVXWORKS_PIC:
14447       mips_pic = VXWORKS_PIC;
14448       break;
14449
14450     case OPTION_NAN:
14451       if (strcmp (arg, "2008") == 0)
14452         mips_nan2008 = 1;
14453       else if (strcmp (arg, "legacy") == 0)
14454         mips_nan2008 = 0;
14455       else
14456         {
14457           as_fatal (_("invalid NaN setting -mnan=%s"), arg);
14458           return 0;
14459         }
14460       break;
14461
14462     default:
14463       return 0;
14464     }
14465
14466     mips_fix_loongson2f = mips_fix_loongson2f_nop || mips_fix_loongson2f_jump;
14467
14468   return 1;
14469 }
14470 \f
14471 /* Set up globals to tune for the ISA or processor described by INFO.  */
14472
14473 static void
14474 mips_set_tune (const struct mips_cpu_info *info)
14475 {
14476   if (info != 0)
14477     mips_tune = info->cpu;
14478 }
14479
14480
14481 void
14482 mips_after_parse_args (void)
14483 {
14484   const struct mips_cpu_info *arch_info = 0;
14485   const struct mips_cpu_info *tune_info = 0;
14486
14487   /* GP relative stuff not working for PE */
14488   if (strncmp (TARGET_OS, "pe", 2) == 0)
14489     {
14490       if (g_switch_seen && g_switch_value != 0)
14491         as_bad (_("-G not supported in this configuration"));
14492       g_switch_value = 0;
14493     }
14494
14495   if (mips_abi == NO_ABI)
14496     mips_abi = MIPS_DEFAULT_ABI;
14497
14498   /* The following code determines the architecture.
14499      Similar code was added to GCC 3.3 (see override_options() in
14500      config/mips/mips.c).  The GAS and GCC code should be kept in sync
14501      as much as possible.  */
14502
14503   if (mips_arch_string != 0)
14504     arch_info = mips_parse_cpu ("-march", mips_arch_string);
14505
14506   if (file_mips_opts.isa != ISA_UNKNOWN)
14507     {
14508       /* Handle -mipsN.  At this point, file_mips_opts.isa contains the
14509          ISA level specified by -mipsN, while arch_info->isa contains
14510          the -march selection (if any).  */
14511       if (arch_info != 0)
14512         {
14513           /* -march takes precedence over -mipsN, since it is more descriptive.
14514              There's no harm in specifying both as long as the ISA levels
14515              are the same.  */
14516           if (file_mips_opts.isa != arch_info->isa)
14517             as_bad (_("-%s conflicts with the other architecture options,"
14518                       " which imply -%s"),
14519                     mips_cpu_info_from_isa (file_mips_opts.isa)->name,
14520                     mips_cpu_info_from_isa (arch_info->isa)->name);
14521         }
14522       else
14523         arch_info = mips_cpu_info_from_isa (file_mips_opts.isa);
14524     }
14525
14526   if (arch_info == 0)
14527     {
14528       arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
14529       gas_assert (arch_info);
14530     }
14531
14532   if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
14533     as_bad (_("-march=%s is not compatible with the selected ABI"),
14534             arch_info->name);
14535
14536   file_mips_opts.arch = arch_info->cpu;
14537   file_mips_opts.isa = arch_info->isa;
14538
14539   /* Set up initial mips_opts state.  */
14540   mips_opts = file_mips_opts;
14541
14542   /* The register size inference code is now placed in
14543      file_mips_check_options.  */
14544
14545   /* Optimize for file_mips_opts.arch, unless -mtune selects a different
14546      processor.  */
14547   if (mips_tune_string != 0)
14548     tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
14549
14550   if (tune_info == 0)
14551     mips_set_tune (arch_info);
14552   else
14553     mips_set_tune (tune_info);
14554
14555   if (mips_flag_mdebug < 0)
14556     mips_flag_mdebug = 0;
14557 }
14558 \f
14559 void
14560 mips_init_after_args (void)
14561 {
14562   /* initialize opcodes */
14563   bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
14564   mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
14565 }
14566
14567 long
14568 md_pcrel_from (fixS *fixP)
14569 {
14570   valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
14571   switch (fixP->fx_r_type)
14572     {
14573     case BFD_RELOC_MICROMIPS_7_PCREL_S1:
14574     case BFD_RELOC_MICROMIPS_10_PCREL_S1:
14575       /* Return the address of the delay slot.  */
14576       return addr + 2;
14577
14578     case BFD_RELOC_MICROMIPS_16_PCREL_S1:
14579     case BFD_RELOC_MICROMIPS_JMP:
14580     case BFD_RELOC_16_PCREL_S2:
14581     case BFD_RELOC_MIPS_21_PCREL_S2:
14582     case BFD_RELOC_MIPS_26_PCREL_S2:
14583     case BFD_RELOC_MIPS_JMP:
14584       /* Return the address of the delay slot.  */
14585       return addr + 4;
14586
14587     default:
14588       return addr;
14589     }
14590 }
14591
14592 /* This is called before the symbol table is processed.  In order to
14593    work with gcc when using mips-tfile, we must keep all local labels.
14594    However, in other cases, we want to discard them.  If we were
14595    called with -g, but we didn't see any debugging information, it may
14596    mean that gcc is smuggling debugging information through to
14597    mips-tfile, in which case we must generate all local labels.  */
14598
14599 void
14600 mips_frob_file_before_adjust (void)
14601 {
14602 #ifndef NO_ECOFF_DEBUGGING
14603   if (ECOFF_DEBUGGING
14604       && mips_debug != 0
14605       && ! ecoff_debugging_seen)
14606     flag_keep_locals = 1;
14607 #endif
14608 }
14609
14610 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
14611    the corresponding LO16 reloc.  This is called before md_apply_fix and
14612    tc_gen_reloc.  Unmatched relocs can only be generated by use of explicit
14613    relocation operators.
14614
14615    For our purposes, a %lo() expression matches a %got() or %hi()
14616    expression if:
14617
14618       (a) it refers to the same symbol; and
14619       (b) the offset applied in the %lo() expression is no lower than
14620           the offset applied in the %got() or %hi().
14621
14622    (b) allows us to cope with code like:
14623
14624         lui     $4,%hi(foo)
14625         lh      $4,%lo(foo+2)($4)
14626
14627    ...which is legal on RELA targets, and has a well-defined behaviour
14628    if the user knows that adding 2 to "foo" will not induce a carry to
14629    the high 16 bits.
14630
14631    When several %lo()s match a particular %got() or %hi(), we use the
14632    following rules to distinguish them:
14633
14634      (1) %lo()s with smaller offsets are a better match than %lo()s with
14635          higher offsets.
14636
14637      (2) %lo()s with no matching %got() or %hi() are better than those
14638          that already have a matching %got() or %hi().
14639
14640      (3) later %lo()s are better than earlier %lo()s.
14641
14642    These rules are applied in order.
14643
14644    (1) means, among other things, that %lo()s with identical offsets are
14645    chosen if they exist.
14646
14647    (2) means that we won't associate several high-part relocations with
14648    the same low-part relocation unless there's no alternative.  Having
14649    several high parts for the same low part is a GNU extension; this rule
14650    allows careful users to avoid it.
14651
14652    (3) is purely cosmetic.  mips_hi_fixup_list is is in reverse order,
14653    with the last high-part relocation being at the front of the list.
14654    It therefore makes sense to choose the last matching low-part
14655    relocation, all other things being equal.  It's also easier
14656    to code that way.  */
14657
14658 void
14659 mips_frob_file (void)
14660 {
14661   struct mips_hi_fixup *l;
14662   bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED;
14663
14664   for (l = mips_hi_fixup_list; l != NULL; l = l->next)
14665     {
14666       segment_info_type *seginfo;
14667       bfd_boolean matched_lo_p;
14668       fixS **hi_pos, **lo_pos, **pos;
14669
14670       gas_assert (reloc_needs_lo_p (l->fixp->fx_r_type));
14671
14672       /* If a GOT16 relocation turns out to be against a global symbol,
14673          there isn't supposed to be a matching LO.  Ignore %gots against
14674          constants; we'll report an error for those later.  */
14675       if (got16_reloc_p (l->fixp->fx_r_type)
14676           && !(l->fixp->fx_addsy
14677                && pic_need_relax (l->fixp->fx_addsy, l->seg)))
14678         continue;
14679
14680       /* Check quickly whether the next fixup happens to be a matching %lo.  */
14681       if (fixup_has_matching_lo_p (l->fixp))
14682         continue;
14683
14684       seginfo = seg_info (l->seg);
14685
14686       /* Set HI_POS to the position of this relocation in the chain.
14687          Set LO_POS to the position of the chosen low-part relocation.
14688          MATCHED_LO_P is true on entry to the loop if *POS is a low-part
14689          relocation that matches an immediately-preceding high-part
14690          relocation.  */
14691       hi_pos = NULL;
14692       lo_pos = NULL;
14693       matched_lo_p = FALSE;
14694       looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type);
14695
14696       for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
14697         {
14698           if (*pos == l->fixp)
14699             hi_pos = pos;
14700
14701           if ((*pos)->fx_r_type == looking_for_rtype
14702               && symbol_same_p ((*pos)->fx_addsy, l->fixp->fx_addsy)
14703               && (*pos)->fx_offset >= l->fixp->fx_offset
14704               && (lo_pos == NULL
14705                   || (*pos)->fx_offset < (*lo_pos)->fx_offset
14706                   || (!matched_lo_p
14707                       && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
14708             lo_pos = pos;
14709
14710           matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
14711                           && fixup_has_matching_lo_p (*pos));
14712         }
14713
14714       /* If we found a match, remove the high-part relocation from its
14715          current position and insert it before the low-part relocation.
14716          Make the offsets match so that fixup_has_matching_lo_p()
14717          will return true.
14718
14719          We don't warn about unmatched high-part relocations since some
14720          versions of gcc have been known to emit dead "lui ...%hi(...)"
14721          instructions.  */
14722       if (lo_pos != NULL)
14723         {
14724           l->fixp->fx_offset = (*lo_pos)->fx_offset;
14725           if (l->fixp->fx_next != *lo_pos)
14726             {
14727               *hi_pos = l->fixp->fx_next;
14728               l->fixp->fx_next = *lo_pos;
14729               *lo_pos = l->fixp;
14730             }
14731         }
14732     }
14733 }
14734
14735 int
14736 mips_force_relocation (fixS *fixp)
14737 {
14738   if (generic_force_reloc (fixp))
14739     return 1;
14740
14741   /* We want to keep BFD_RELOC_MICROMIPS_*_PCREL_S1 relocation,
14742      so that the linker relaxation can update targets.  */
14743   if (fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
14744       || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
14745       || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1)
14746     return 1;
14747
14748   /* We want all PC-relative relocations to be kept for R6 relaxation.  */
14749   if (ISA_IS_R6 (mips_opts.isa)
14750       && (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2
14751           || fixp->fx_r_type == BFD_RELOC_MIPS_21_PCREL_S2
14752           || fixp->fx_r_type == BFD_RELOC_MIPS_26_PCREL_S2
14753           || fixp->fx_r_type == BFD_RELOC_MIPS_18_PCREL_S3
14754           || fixp->fx_r_type == BFD_RELOC_MIPS_19_PCREL_S2
14755           || fixp->fx_r_type == BFD_RELOC_HI16_S_PCREL
14756           || fixp->fx_r_type == BFD_RELOC_LO16_PCREL))
14757     return 1;
14758
14759   return 0;
14760 }
14761
14762 /* Read the instruction associated with RELOC from BUF.  */
14763
14764 static unsigned int
14765 read_reloc_insn (char *buf, bfd_reloc_code_real_type reloc)
14766 {
14767   if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
14768     return read_compressed_insn (buf, 4);
14769   else
14770     return read_insn (buf);
14771 }
14772
14773 /* Write instruction INSN to BUF, given that it has been relocated
14774    by RELOC.  */
14775
14776 static void
14777 write_reloc_insn (char *buf, bfd_reloc_code_real_type reloc,
14778                   unsigned long insn)
14779 {
14780   if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
14781     write_compressed_insn (buf, insn, 4);
14782   else
14783     write_insn (buf, insn);
14784 }
14785
14786 /* Apply a fixup to the object file.  */
14787
14788 void
14789 md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
14790 {
14791   char *buf;
14792   unsigned long insn;
14793   reloc_howto_type *howto;
14794
14795   if (fixP->fx_pcrel)
14796     switch (fixP->fx_r_type)
14797       {
14798       case BFD_RELOC_16_PCREL_S2:
14799       case BFD_RELOC_MICROMIPS_7_PCREL_S1:
14800       case BFD_RELOC_MICROMIPS_10_PCREL_S1:
14801       case BFD_RELOC_MICROMIPS_16_PCREL_S1:
14802       case BFD_RELOC_32_PCREL:
14803       case BFD_RELOC_MIPS_21_PCREL_S2:
14804       case BFD_RELOC_MIPS_26_PCREL_S2:
14805       case BFD_RELOC_MIPS_18_PCREL_S3:
14806       case BFD_RELOC_MIPS_19_PCREL_S2:
14807       case BFD_RELOC_HI16_S_PCREL:
14808       case BFD_RELOC_LO16_PCREL:
14809         break;
14810
14811       case BFD_RELOC_32:
14812         fixP->fx_r_type = BFD_RELOC_32_PCREL;
14813         break;
14814
14815       default:
14816         as_bad_where (fixP->fx_file, fixP->fx_line,
14817                       _("PC-relative reference to a different section"));
14818         break;
14819       }
14820
14821   /* Handle BFD_RELOC_8, since it's easy.  Punt on other bfd relocations
14822      that have no MIPS ELF equivalent.  */
14823   if (fixP->fx_r_type != BFD_RELOC_8)
14824     {
14825       howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
14826       if (!howto)
14827         return;
14828     }
14829
14830   gas_assert (fixP->fx_size == 2
14831               || fixP->fx_size == 4
14832               || fixP->fx_r_type == BFD_RELOC_8
14833               || fixP->fx_r_type == BFD_RELOC_16
14834               || fixP->fx_r_type == BFD_RELOC_64
14835               || fixP->fx_r_type == BFD_RELOC_CTOR
14836               || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
14837               || fixP->fx_r_type == BFD_RELOC_MICROMIPS_SUB
14838               || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
14839               || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
14840               || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
14841
14842   buf = fixP->fx_frag->fr_literal + fixP->fx_where;
14843
14844   /* Don't treat parts of a composite relocation as done.  There are two
14845      reasons for this:
14846
14847      (1) The second and third parts will be against 0 (RSS_UNDEF) but
14848          should nevertheless be emitted if the first part is.
14849
14850      (2) In normal usage, composite relocations are never assembly-time
14851          constants.  The easiest way of dealing with the pathological
14852          exceptions is to generate a relocation against STN_UNDEF and
14853          leave everything up to the linker.  */
14854   if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0)
14855     fixP->fx_done = 1;
14856
14857   switch (fixP->fx_r_type)
14858     {
14859     case BFD_RELOC_MIPS_TLS_GD:
14860     case BFD_RELOC_MIPS_TLS_LDM:
14861     case BFD_RELOC_MIPS_TLS_DTPREL32:
14862     case BFD_RELOC_MIPS_TLS_DTPREL64:
14863     case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
14864     case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
14865     case BFD_RELOC_MIPS_TLS_GOTTPREL:
14866     case BFD_RELOC_MIPS_TLS_TPREL32:
14867     case BFD_RELOC_MIPS_TLS_TPREL64:
14868     case BFD_RELOC_MIPS_TLS_TPREL_HI16:
14869     case BFD_RELOC_MIPS_TLS_TPREL_LO16:
14870     case BFD_RELOC_MICROMIPS_TLS_GD:
14871     case BFD_RELOC_MICROMIPS_TLS_LDM:
14872     case BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16:
14873     case BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16:
14874     case BFD_RELOC_MICROMIPS_TLS_GOTTPREL:
14875     case BFD_RELOC_MICROMIPS_TLS_TPREL_HI16:
14876     case BFD_RELOC_MICROMIPS_TLS_TPREL_LO16:
14877     case BFD_RELOC_MIPS16_TLS_GD:
14878     case BFD_RELOC_MIPS16_TLS_LDM:
14879     case BFD_RELOC_MIPS16_TLS_DTPREL_HI16:
14880     case BFD_RELOC_MIPS16_TLS_DTPREL_LO16:
14881     case BFD_RELOC_MIPS16_TLS_GOTTPREL:
14882     case BFD_RELOC_MIPS16_TLS_TPREL_HI16:
14883     case BFD_RELOC_MIPS16_TLS_TPREL_LO16:
14884       if (!fixP->fx_addsy)
14885         {
14886           as_bad_where (fixP->fx_file, fixP->fx_line,
14887                         _("TLS relocation against a constant"));
14888           break;
14889         }
14890       S_SET_THREAD_LOCAL (fixP->fx_addsy);
14891       /* fall through */
14892
14893     case BFD_RELOC_MIPS_JMP:
14894     case BFD_RELOC_MIPS_SHIFT5:
14895     case BFD_RELOC_MIPS_SHIFT6:
14896     case BFD_RELOC_MIPS_GOT_DISP:
14897     case BFD_RELOC_MIPS_GOT_PAGE:
14898     case BFD_RELOC_MIPS_GOT_OFST:
14899     case BFD_RELOC_MIPS_SUB:
14900     case BFD_RELOC_MIPS_INSERT_A:
14901     case BFD_RELOC_MIPS_INSERT_B:
14902     case BFD_RELOC_MIPS_DELETE:
14903     case BFD_RELOC_MIPS_HIGHEST:
14904     case BFD_RELOC_MIPS_HIGHER:
14905     case BFD_RELOC_MIPS_SCN_DISP:
14906     case BFD_RELOC_MIPS_REL16:
14907     case BFD_RELOC_MIPS_RELGOT:
14908     case BFD_RELOC_MIPS_JALR:
14909     case BFD_RELOC_HI16:
14910     case BFD_RELOC_HI16_S:
14911     case BFD_RELOC_LO16:
14912     case BFD_RELOC_GPREL16:
14913     case BFD_RELOC_MIPS_LITERAL:
14914     case BFD_RELOC_MIPS_CALL16:
14915     case BFD_RELOC_MIPS_GOT16:
14916     case BFD_RELOC_GPREL32:
14917     case BFD_RELOC_MIPS_GOT_HI16:
14918     case BFD_RELOC_MIPS_GOT_LO16:
14919     case BFD_RELOC_MIPS_CALL_HI16:
14920     case BFD_RELOC_MIPS_CALL_LO16:
14921     case BFD_RELOC_MIPS16_GPREL:
14922     case BFD_RELOC_MIPS16_GOT16:
14923     case BFD_RELOC_MIPS16_CALL16:
14924     case BFD_RELOC_MIPS16_HI16:
14925     case BFD_RELOC_MIPS16_HI16_S:
14926     case BFD_RELOC_MIPS16_LO16:
14927     case BFD_RELOC_MIPS16_JMP:
14928     case BFD_RELOC_MICROMIPS_JMP:
14929     case BFD_RELOC_MICROMIPS_GOT_DISP:
14930     case BFD_RELOC_MICROMIPS_GOT_PAGE:
14931     case BFD_RELOC_MICROMIPS_GOT_OFST:
14932     case BFD_RELOC_MICROMIPS_SUB:
14933     case BFD_RELOC_MICROMIPS_HIGHEST:
14934     case BFD_RELOC_MICROMIPS_HIGHER:
14935     case BFD_RELOC_MICROMIPS_SCN_DISP:
14936     case BFD_RELOC_MICROMIPS_JALR:
14937     case BFD_RELOC_MICROMIPS_HI16:
14938     case BFD_RELOC_MICROMIPS_HI16_S:
14939     case BFD_RELOC_MICROMIPS_LO16:
14940     case BFD_RELOC_MICROMIPS_GPREL16:
14941     case BFD_RELOC_MICROMIPS_LITERAL:
14942     case BFD_RELOC_MICROMIPS_CALL16:
14943     case BFD_RELOC_MICROMIPS_GOT16:
14944     case BFD_RELOC_MICROMIPS_GOT_HI16:
14945     case BFD_RELOC_MICROMIPS_GOT_LO16:
14946     case BFD_RELOC_MICROMIPS_CALL_HI16:
14947     case BFD_RELOC_MICROMIPS_CALL_LO16:
14948     case BFD_RELOC_MIPS_EH:
14949       if (fixP->fx_done)
14950         {
14951           offsetT value;
14952
14953           if (calculate_reloc (fixP->fx_r_type, *valP, &value))
14954             {
14955               insn = read_reloc_insn (buf, fixP->fx_r_type);
14956               if (mips16_reloc_p (fixP->fx_r_type))
14957                 insn |= mips16_immed_extend (value, 16);
14958               else
14959                 insn |= (value & 0xffff);
14960               write_reloc_insn (buf, fixP->fx_r_type, insn);
14961             }
14962           else
14963             as_bad_where (fixP->fx_file, fixP->fx_line,
14964                           _("unsupported constant in relocation"));
14965         }
14966       break;
14967
14968     case BFD_RELOC_64:
14969       /* This is handled like BFD_RELOC_32, but we output a sign
14970          extended value if we are only 32 bits.  */
14971       if (fixP->fx_done)
14972         {
14973           if (8 <= sizeof (valueT))
14974             md_number_to_chars (buf, *valP, 8);
14975           else
14976             {
14977               valueT hiv;
14978
14979               if ((*valP & 0x80000000) != 0)
14980                 hiv = 0xffffffff;
14981               else
14982                 hiv = 0;
14983               md_number_to_chars (buf + (target_big_endian ? 4 : 0), *valP, 4);
14984               md_number_to_chars (buf + (target_big_endian ? 0 : 4), hiv, 4);
14985             }
14986         }
14987       break;
14988
14989     case BFD_RELOC_RVA:
14990     case BFD_RELOC_32:
14991     case BFD_RELOC_32_PCREL:
14992     case BFD_RELOC_16:
14993     case BFD_RELOC_8:
14994       /* If we are deleting this reloc entry, we must fill in the
14995          value now.  This can happen if we have a .word which is not
14996          resolved when it appears but is later defined.  */
14997       if (fixP->fx_done)
14998         md_number_to_chars (buf, *valP, fixP->fx_size);
14999       break;
15000
15001     case BFD_RELOC_MIPS_21_PCREL_S2:
15002     case BFD_RELOC_MIPS_26_PCREL_S2:
15003       if ((*valP & 0x3) != 0)
15004         as_bad_where (fixP->fx_file, fixP->fx_line,
15005                       _("branch to misaligned address (%lx)"), (long) *valP);
15006
15007       gas_assert (!fixP->fx_done);
15008       break;
15009
15010     case BFD_RELOC_MIPS_18_PCREL_S3:
15011       if ((S_GET_VALUE (fixP->fx_addsy) & 0x7) != 0)
15012         as_bad_where (fixP->fx_file, fixP->fx_line,
15013                       _("PC-relative access using misaligned symbol (%lx)"),
15014                       (long) S_GET_VALUE (fixP->fx_addsy));
15015       if ((fixP->fx_offset & 0x7) != 0)
15016         as_bad_where (fixP->fx_file, fixP->fx_line,
15017                       _("PC-relative access using misaligned offset (%lx)"),
15018                       (long) fixP->fx_offset);
15019
15020       gas_assert (!fixP->fx_done);
15021       break;
15022
15023     case BFD_RELOC_MIPS_19_PCREL_S2:
15024       if ((*valP & 0x3) != 0)
15025         as_bad_where (fixP->fx_file, fixP->fx_line,
15026                       _("PC-relative access to misaligned address (%lx)"),
15027                       (long) (S_GET_VALUE (fixP->fx_addsy) + fixP->fx_offset));
15028
15029       gas_assert (!fixP->fx_done);
15030       break;
15031
15032     case BFD_RELOC_HI16_S_PCREL:
15033     case BFD_RELOC_LO16_PCREL:
15034       gas_assert (!fixP->fx_done);
15035       break;
15036
15037     case BFD_RELOC_16_PCREL_S2:
15038       if ((*valP & 0x3) != 0)
15039         as_bad_where (fixP->fx_file, fixP->fx_line,
15040                       _("branch to misaligned address (%lx)"), (long) *valP);
15041
15042       /* We need to save the bits in the instruction since fixup_segment()
15043          might be deleting the relocation entry (i.e., a branch within
15044          the current segment).  */
15045       if (! fixP->fx_done)
15046         break;
15047
15048       /* Update old instruction data.  */
15049       insn = read_insn (buf);
15050
15051       if (*valP + 0x20000 <= 0x3ffff)
15052         {
15053           insn |= (*valP >> 2) & 0xffff;
15054           write_insn (buf, insn);
15055         }
15056       else if (mips_pic == NO_PIC
15057                && fixP->fx_done
15058                && fixP->fx_frag->fr_address >= text_section->vma
15059                && (fixP->fx_frag->fr_address
15060                    < text_section->vma + bfd_get_section_size (text_section))
15061                && ((insn & 0xffff0000) == 0x10000000     /* beq $0,$0 */
15062                    || (insn & 0xffff0000) == 0x04010000  /* bgez $0 */
15063                    || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
15064         {
15065           /* The branch offset is too large.  If this is an
15066              unconditional branch, and we are not generating PIC code,
15067              we can convert it to an absolute jump instruction.  */
15068           if ((insn & 0xffff0000) == 0x04110000)         /* bgezal $0 */
15069             insn = 0x0c000000;  /* jal */
15070           else
15071             insn = 0x08000000;  /* j */
15072           fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
15073           fixP->fx_done = 0;
15074           fixP->fx_addsy = section_symbol (text_section);
15075           *valP += md_pcrel_from (fixP);
15076           write_insn (buf, insn);
15077         }
15078       else
15079         {
15080           /* If we got here, we have branch-relaxation disabled,
15081              and there's nothing we can do to fix this instruction
15082              without turning it into a longer sequence.  */
15083           as_bad_where (fixP->fx_file, fixP->fx_line,
15084                         _("branch out of range"));
15085         }
15086       break;
15087
15088     case BFD_RELOC_MICROMIPS_7_PCREL_S1:
15089     case BFD_RELOC_MICROMIPS_10_PCREL_S1:
15090     case BFD_RELOC_MICROMIPS_16_PCREL_S1:
15091       /* We adjust the offset back to even.  */
15092       if ((*valP & 0x1) != 0)
15093         --(*valP);
15094
15095       if (! fixP->fx_done)
15096         break;
15097
15098       /* Should never visit here, because we keep the relocation.  */
15099       abort ();
15100       break;
15101
15102     case BFD_RELOC_VTABLE_INHERIT:
15103       fixP->fx_done = 0;
15104       if (fixP->fx_addsy
15105           && !S_IS_DEFINED (fixP->fx_addsy)
15106           && !S_IS_WEAK (fixP->fx_addsy))
15107         S_SET_WEAK (fixP->fx_addsy);
15108       break;
15109
15110     case BFD_RELOC_VTABLE_ENTRY:
15111       fixP->fx_done = 0;
15112       break;
15113
15114     default:
15115       abort ();
15116     }
15117
15118   /* Remember value for tc_gen_reloc.  */
15119   fixP->fx_addnumber = *valP;
15120 }
15121
15122 static symbolS *
15123 get_symbol (void)
15124 {
15125   int c;
15126   char *name;
15127   symbolS *p;
15128
15129   name = input_line_pointer;
15130   c = get_symbol_end ();
15131   p = (symbolS *) symbol_find_or_make (name);
15132   *input_line_pointer = c;
15133   return p;
15134 }
15135
15136 /* Align the current frag to a given power of two.  If a particular
15137    fill byte should be used, FILL points to an integer that contains
15138    that byte, otherwise FILL is null.
15139
15140    This function used to have the comment:
15141
15142       The MIPS assembler also automatically adjusts any preceding label.
15143
15144    The implementation therefore applied the adjustment to a maximum of
15145    one label.  However, other label adjustments are applied to batches
15146    of labels, and adjusting just one caused problems when new labels
15147    were added for the sake of debugging or unwind information.
15148    We therefore adjust all preceding labels (given as LABELS) instead.  */
15149
15150 static void
15151 mips_align (int to, int *fill, struct insn_label_list *labels)
15152 {
15153   mips_emit_delays ();
15154   mips_record_compressed_mode ();
15155   if (fill == NULL && subseg_text_p (now_seg))
15156     frag_align_code (to, 0);
15157   else
15158     frag_align (to, fill ? *fill : 0, 0);
15159   record_alignment (now_seg, to);
15160   mips_move_labels (labels, FALSE);
15161 }
15162
15163 /* Align to a given power of two.  .align 0 turns off the automatic
15164    alignment used by the data creating pseudo-ops.  */
15165
15166 static void
15167 s_align (int x ATTRIBUTE_UNUSED)
15168 {
15169   int temp, fill_value, *fill_ptr;
15170   long max_alignment = 28;
15171
15172   /* o Note that the assembler pulls down any immediately preceding label
15173        to the aligned address.
15174      o It's not documented but auto alignment is reinstated by
15175        a .align pseudo instruction.
15176      o Note also that after auto alignment is turned off the mips assembler
15177        issues an error on attempt to assemble an improperly aligned data item.
15178        We don't.  */
15179
15180   temp = get_absolute_expression ();
15181   if (temp > max_alignment)
15182     as_bad (_("alignment too large, %d assumed"), temp = max_alignment);
15183   else if (temp < 0)
15184     {
15185       as_warn (_("alignment negative, 0 assumed"));
15186       temp = 0;
15187     }
15188   if (*input_line_pointer == ',')
15189     {
15190       ++input_line_pointer;
15191       fill_value = get_absolute_expression ();
15192       fill_ptr = &fill_value;
15193     }
15194   else
15195     fill_ptr = 0;
15196   if (temp)
15197     {
15198       segment_info_type *si = seg_info (now_seg);
15199       struct insn_label_list *l = si->label_list;
15200       /* Auto alignment should be switched on by next section change.  */
15201       auto_align = 1;
15202       mips_align (temp, fill_ptr, l);
15203     }
15204   else
15205     {
15206       auto_align = 0;
15207     }
15208
15209   demand_empty_rest_of_line ();
15210 }
15211
15212 static void
15213 s_change_sec (int sec)
15214 {
15215   segT seg;
15216
15217   /* The ELF backend needs to know that we are changing sections, so
15218      that .previous works correctly.  We could do something like check
15219      for an obj_section_change_hook macro, but that might be confusing
15220      as it would not be appropriate to use it in the section changing
15221      functions in read.c, since obj-elf.c intercepts those.  FIXME:
15222      This should be cleaner, somehow.  */
15223   obj_elf_section_change_hook ();
15224
15225   mips_emit_delays ();
15226
15227   switch (sec)
15228     {
15229     case 't':
15230       s_text (0);
15231       break;
15232     case 'd':
15233       s_data (0);
15234       break;
15235     case 'b':
15236       subseg_set (bss_section, (subsegT) get_absolute_expression ());
15237       demand_empty_rest_of_line ();
15238       break;
15239
15240     case 'r':
15241       seg = subseg_new (RDATA_SECTION_NAME,
15242                         (subsegT) get_absolute_expression ());
15243       bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
15244                                               | SEC_READONLY | SEC_RELOC
15245                                               | SEC_DATA));
15246       if (strncmp (TARGET_OS, "elf", 3) != 0)
15247         record_alignment (seg, 4);
15248       demand_empty_rest_of_line ();
15249       break;
15250
15251     case 's':
15252       seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
15253       bfd_set_section_flags (stdoutput, seg,
15254                              SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
15255       if (strncmp (TARGET_OS, "elf", 3) != 0)
15256         record_alignment (seg, 4);
15257       demand_empty_rest_of_line ();
15258       break;
15259
15260     case 'B':
15261       seg = subseg_new (".sbss", (subsegT) get_absolute_expression ());
15262       bfd_set_section_flags (stdoutput, seg, SEC_ALLOC);
15263       if (strncmp (TARGET_OS, "elf", 3) != 0)
15264         record_alignment (seg, 4);
15265       demand_empty_rest_of_line ();
15266       break;
15267     }
15268
15269   auto_align = 1;
15270 }
15271
15272 void
15273 s_change_section (int ignore ATTRIBUTE_UNUSED)
15274 {
15275   char *section_name;
15276   char c;
15277   char next_c = 0;
15278   int section_type;
15279   int section_flag;
15280   int section_entry_size;
15281   int section_alignment;
15282
15283   section_name = input_line_pointer;
15284   c = get_symbol_end ();
15285   if (c)
15286     next_c = *(input_line_pointer + 1);
15287
15288   /* Do we have .section Name<,"flags">?  */
15289   if (c != ',' || (c == ',' && next_c == '"'))
15290     {
15291       /* just after name is now '\0'.  */
15292       *input_line_pointer = c;
15293       input_line_pointer = section_name;
15294       obj_elf_section (ignore);
15295       return;
15296     }
15297   input_line_pointer++;
15298
15299   /* Do we have .section Name<,type><,flag><,entry_size><,alignment>  */
15300   if (c == ',')
15301     section_type = get_absolute_expression ();
15302   else
15303     section_type = 0;
15304   if (*input_line_pointer++ == ',')
15305     section_flag = get_absolute_expression ();
15306   else
15307     section_flag = 0;
15308   if (*input_line_pointer++ == ',')
15309     section_entry_size = get_absolute_expression ();
15310   else
15311     section_entry_size = 0;
15312   if (*input_line_pointer++ == ',')
15313     section_alignment = get_absolute_expression ();
15314   else
15315     section_alignment = 0;
15316   /* FIXME: really ignore?  */
15317   (void) section_alignment;
15318
15319   section_name = xstrdup (section_name);
15320
15321   /* When using the generic form of .section (as implemented by obj-elf.c),
15322      there's no way to set the section type to SHT_MIPS_DWARF.  Users have
15323      traditionally had to fall back on the more common @progbits instead.
15324
15325      There's nothing really harmful in this, since bfd will correct
15326      SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file.  But it
15327      means that, for backwards compatibility, the special_section entries
15328      for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
15329
15330      Even so, we shouldn't force users of the MIPS .section syntax to
15331      incorrectly label the sections as SHT_PROGBITS.  The best compromise
15332      seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
15333      generic type-checking code.  */
15334   if (section_type == SHT_MIPS_DWARF)
15335     section_type = SHT_PROGBITS;
15336
15337   obj_elf_change_section (section_name, section_type, section_flag,
15338                           section_entry_size, 0, 0, 0);
15339
15340   if (now_seg->name != section_name)
15341     free (section_name);
15342 }
15343
15344 void
15345 mips_enable_auto_align (void)
15346 {
15347   auto_align = 1;
15348 }
15349
15350 static void
15351 s_cons (int log_size)
15352 {
15353   segment_info_type *si = seg_info (now_seg);
15354   struct insn_label_list *l = si->label_list;
15355
15356   mips_emit_delays ();
15357   if (log_size > 0 && auto_align)
15358     mips_align (log_size, 0, l);
15359   cons (1 << log_size);
15360   mips_clear_insn_labels ();
15361 }
15362
15363 static void
15364 s_float_cons (int type)
15365 {
15366   segment_info_type *si = seg_info (now_seg);
15367   struct insn_label_list *l = si->label_list;
15368
15369   mips_emit_delays ();
15370
15371   if (auto_align)
15372     {
15373       if (type == 'd')
15374         mips_align (3, 0, l);
15375       else
15376         mips_align (2, 0, l);
15377     }
15378
15379   float_cons (type);
15380   mips_clear_insn_labels ();
15381 }
15382
15383 /* Handle .globl.  We need to override it because on Irix 5 you are
15384    permitted to say
15385        .globl foo .text
15386    where foo is an undefined symbol, to mean that foo should be
15387    considered to be the address of a function.  */
15388
15389 static void
15390 s_mips_globl (int x ATTRIBUTE_UNUSED)
15391 {
15392   char *name;
15393   int c;
15394   symbolS *symbolP;
15395   flagword flag;
15396
15397   do
15398     {
15399       name = input_line_pointer;
15400       c = get_symbol_end ();
15401       symbolP = symbol_find_or_make (name);
15402       S_SET_EXTERNAL (symbolP);
15403
15404       *input_line_pointer = c;
15405       SKIP_WHITESPACE ();
15406
15407       /* On Irix 5, every global symbol that is not explicitly labelled as
15408          being a function is apparently labelled as being an object.  */
15409       flag = BSF_OBJECT;
15410
15411       if (!is_end_of_line[(unsigned char) *input_line_pointer]
15412           && (*input_line_pointer != ','))
15413         {
15414           char *secname;
15415           asection *sec;
15416
15417           secname = input_line_pointer;
15418           c = get_symbol_end ();
15419           sec = bfd_get_section_by_name (stdoutput, secname);
15420           if (sec == NULL)
15421             as_bad (_("%s: no such section"), secname);
15422           *input_line_pointer = c;
15423
15424           if (sec != NULL && (sec->flags & SEC_CODE) != 0)
15425             flag = BSF_FUNCTION;
15426         }
15427
15428       symbol_get_bfdsym (symbolP)->flags |= flag;
15429
15430       c = *input_line_pointer;
15431       if (c == ',')
15432         {
15433           input_line_pointer++;
15434           SKIP_WHITESPACE ();
15435           if (is_end_of_line[(unsigned char) *input_line_pointer])
15436             c = '\n';
15437         }
15438     }
15439   while (c == ',');
15440
15441   demand_empty_rest_of_line ();
15442 }
15443
15444 static void
15445 s_option (int x ATTRIBUTE_UNUSED)
15446 {
15447   char *opt;
15448   char c;
15449
15450   opt = input_line_pointer;
15451   c = get_symbol_end ();
15452
15453   if (*opt == 'O')
15454     {
15455       /* FIXME: What does this mean?  */
15456     }
15457   else if (strncmp (opt, "pic", 3) == 0)
15458     {
15459       int i;
15460
15461       i = atoi (opt + 3);
15462       if (i == 0)
15463         mips_pic = NO_PIC;
15464       else if (i == 2)
15465         {
15466           mips_pic = SVR4_PIC;
15467           mips_abicalls = TRUE;
15468         }
15469       else
15470         as_bad (_(".option pic%d not supported"), i);
15471
15472       if (mips_pic == SVR4_PIC)
15473         {
15474           if (g_switch_seen && g_switch_value != 0)
15475             as_warn (_("-G may not be used with SVR4 PIC code"));
15476           g_switch_value = 0;
15477           bfd_set_gp_size (stdoutput, 0);
15478         }
15479     }
15480   else
15481     as_warn (_("unrecognized option \"%s\""), opt);
15482
15483   *input_line_pointer = c;
15484   demand_empty_rest_of_line ();
15485 }
15486
15487 /* This structure is used to hold a stack of .set values.  */
15488
15489 struct mips_option_stack
15490 {
15491   struct mips_option_stack *next;
15492   struct mips_set_options options;
15493 };
15494
15495 static struct mips_option_stack *mips_opts_stack;
15496
15497 static bfd_boolean
15498 parse_code_option (char * name)
15499 {
15500   const struct mips_ase *ase;
15501   if (strncmp (name, "at=", 3) == 0)
15502     {
15503       char *s = name + 3;
15504
15505       if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at))
15506         as_bad (_("unrecognized register name `%s'"), s);
15507     }
15508   else if (strcmp (name, "at") == 0)
15509     mips_opts.at = ATREG;
15510   else if (strcmp (name, "noat") == 0)
15511     mips_opts.at = ZERO;
15512   else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
15513     mips_opts.nomove = 0;
15514   else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
15515     mips_opts.nomove = 1;
15516   else if (strcmp (name, "bopt") == 0)
15517     mips_opts.nobopt = 0;
15518   else if (strcmp (name, "nobopt") == 0)
15519     mips_opts.nobopt = 1;
15520   else if (strcmp (name, "gp=32") == 0)
15521     mips_opts.gp = 32;
15522   else if (strcmp (name, "gp=64") == 0)
15523     mips_opts.gp = 64;
15524   else if (strcmp (name, "fp=32") == 0)
15525     mips_opts.fp = 32;
15526   else if (strcmp (name, "fp=xx") == 0)
15527     mips_opts.fp = 0;
15528   else if (strcmp (name, "fp=64") == 0)
15529     mips_opts.fp = 64;
15530   else if (strcmp (name, "softfloat") == 0)
15531     mips_opts.soft_float = 1;
15532   else if (strcmp (name, "hardfloat") == 0)
15533     mips_opts.soft_float = 0;
15534   else if (strcmp (name, "singlefloat") == 0)
15535     mips_opts.single_float = 1;
15536   else if (strcmp (name, "doublefloat") == 0)
15537     mips_opts.single_float = 0;
15538   else if (strcmp (name, "nooddspreg") == 0)
15539     mips_opts.oddspreg = 0;
15540   else if (strcmp (name, "oddspreg") == 0)
15541     mips_opts.oddspreg = 1;
15542   else if (strcmp (name, "mips16") == 0
15543            || strcmp (name, "MIPS-16") == 0)
15544     mips_opts.mips16 = 1;
15545   else if (strcmp (name, "nomips16") == 0
15546            || strcmp (name, "noMIPS-16") == 0)
15547     mips_opts.mips16 = 0;
15548   else if (strcmp (name, "micromips") == 0)
15549     mips_opts.micromips = 1;
15550   else if (strcmp (name, "nomicromips") == 0)
15551     mips_opts.micromips = 0;
15552   else if (name[0] == 'n'
15553            && name[1] == 'o'
15554            && (ase = mips_lookup_ase (name + 2)))
15555     mips_set_ase (ase, &mips_opts, FALSE);
15556   else if ((ase = mips_lookup_ase (name)))
15557     mips_set_ase (ase, &mips_opts, TRUE);
15558   else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
15559     {
15560       /* Permit the user to change the ISA and architecture on the fly.
15561          Needless to say, misuse can cause serious problems.  */
15562       if (strncmp (name, "arch=", 5) == 0)
15563         {
15564           const struct mips_cpu_info *p;
15565
15566           p = mips_parse_cpu ("internal use", name + 5);
15567           if (!p)
15568             as_bad (_("unknown architecture %s"), name + 5);
15569           else
15570             {
15571               mips_opts.arch = p->cpu;
15572               mips_opts.isa = p->isa;
15573             }
15574         }
15575       else if (strncmp (name, "mips", 4) == 0)
15576         {
15577           const struct mips_cpu_info *p;
15578
15579           p = mips_parse_cpu ("internal use", name);
15580           if (!p)
15581             as_bad (_("unknown ISA level %s"), name + 4);
15582           else
15583             {
15584               mips_opts.arch = p->cpu;
15585               mips_opts.isa = p->isa;
15586             }
15587         }
15588       else
15589         as_bad (_("unknown ISA or architecture %s"), name);
15590     }
15591   else if (strcmp (name, "autoextend") == 0)
15592     mips_opts.noautoextend = 0;
15593   else if (strcmp (name, "noautoextend") == 0)
15594     mips_opts.noautoextend = 1;
15595   else if (strcmp (name, "insn32") == 0)
15596     mips_opts.insn32 = TRUE;
15597   else if (strcmp (name, "noinsn32") == 0)
15598     mips_opts.insn32 = FALSE;
15599   else if (strcmp (name, "sym32") == 0)
15600     mips_opts.sym32 = TRUE;
15601   else if (strcmp (name, "nosym32") == 0)
15602     mips_opts.sym32 = FALSE;
15603   else
15604     return FALSE;
15605   return TRUE;
15606 }
15607
15608 /* Handle the .set pseudo-op.  */
15609
15610 static void
15611 s_mipsset (int x ATTRIBUTE_UNUSED)
15612 {
15613   char *name = input_line_pointer, ch;
15614   int prev_isa = mips_opts.isa;
15615
15616   file_mips_check_options ();
15617
15618   while (!is_end_of_line[(unsigned char) *input_line_pointer])
15619     ++input_line_pointer;
15620   ch = *input_line_pointer;
15621   *input_line_pointer = '\0';
15622
15623   if (strchr (name, ','))
15624     {
15625       /* Generic ".set" directive; use the generic handler.  */
15626       *input_line_pointer = ch;
15627       input_line_pointer = name;
15628       s_set (0);
15629       return;
15630     }
15631
15632   if (strcmp (name, "reorder") == 0)
15633     {
15634       if (mips_opts.noreorder)
15635         end_noreorder ();
15636     }
15637   else if (strcmp (name, "noreorder") == 0)
15638     {
15639       if (!mips_opts.noreorder)
15640         start_noreorder ();
15641     }
15642   else if (strcmp (name, "macro") == 0)
15643     mips_opts.warn_about_macros = 0;
15644   else if (strcmp (name, "nomacro") == 0)
15645     {
15646       if (mips_opts.noreorder == 0)
15647         as_bad (_("`noreorder' must be set before `nomacro'"));
15648       mips_opts.warn_about_macros = 1;
15649     }
15650   else if (strcmp (name, "gp=default") == 0)
15651     mips_opts.gp = file_mips_opts.gp;
15652   else if (strcmp (name, "fp=default") == 0)
15653     mips_opts.fp = file_mips_opts.fp;
15654   else if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
15655     {
15656       mips_opts.isa = file_mips_opts.isa;
15657       mips_opts.arch = file_mips_opts.arch;
15658       mips_opts.gp = file_mips_opts.gp;
15659       mips_opts.fp = file_mips_opts.fp;
15660     }
15661   else if (strcmp (name, "push") == 0)
15662     {
15663       struct mips_option_stack *s;
15664
15665       s = (struct mips_option_stack *) xmalloc (sizeof *s);
15666       s->next = mips_opts_stack;
15667       s->options = mips_opts;
15668       mips_opts_stack = s;
15669     }
15670   else if (strcmp (name, "pop") == 0)
15671     {
15672       struct mips_option_stack *s;
15673
15674       s = mips_opts_stack;
15675       if (s == NULL)
15676         as_bad (_(".set pop with no .set push"));
15677       else
15678         {
15679           /* If we're changing the reorder mode we need to handle
15680              delay slots correctly.  */
15681           if (s->options.noreorder && ! mips_opts.noreorder)
15682             start_noreorder ();
15683           else if (! s->options.noreorder && mips_opts.noreorder)
15684             end_noreorder ();
15685
15686           mips_opts = s->options;
15687           mips_opts_stack = s->next;
15688           free (s);
15689         }
15690     }
15691   else if (!parse_code_option (name))
15692     as_warn (_("tried to set unrecognized symbol: %s\n"), name);
15693
15694   /* The use of .set [arch|cpu]= historically 'fixes' the width of gp and fp
15695      registers based on what is supported by the arch/cpu.  */
15696   if (mips_opts.isa != prev_isa)
15697     {
15698       switch (mips_opts.isa)
15699         {
15700         case 0:
15701           break;
15702         case ISA_MIPS1:
15703           /* MIPS I cannot support FPXX.  */
15704           mips_opts.fp = 32;
15705           /* fall-through.  */
15706         case ISA_MIPS2:
15707         case ISA_MIPS32:
15708         case ISA_MIPS32R2:
15709         case ISA_MIPS32R3:
15710         case ISA_MIPS32R5:
15711           mips_opts.gp = 32;
15712           if (mips_opts.fp != 0)
15713             mips_opts.fp = 32;
15714           break;
15715         case ISA_MIPS32R6:
15716           mips_opts.gp = 32;
15717           mips_opts.fp = 64;
15718           break;
15719         case ISA_MIPS3:
15720         case ISA_MIPS4:
15721         case ISA_MIPS5:
15722         case ISA_MIPS64:
15723         case ISA_MIPS64R2:
15724         case ISA_MIPS64R3:
15725         case ISA_MIPS64R5:
15726         case ISA_MIPS64R6:
15727           mips_opts.gp = 64;
15728           if (mips_opts.fp != 0)
15729             {
15730               if (mips_opts.arch == CPU_R5900)
15731                 mips_opts.fp = 32;
15732               else
15733                 mips_opts.fp = 64;
15734             }
15735           break;
15736         default:
15737           as_bad (_("unknown ISA level %s"), name + 4);
15738           break;
15739         }
15740     }
15741
15742   mips_check_options (&mips_opts, FALSE);
15743
15744   mips_check_isa_supports_ases ();
15745   *input_line_pointer = ch;
15746   demand_empty_rest_of_line ();
15747 }
15748
15749 /* Handle the .module pseudo-op.  */
15750
15751 static void
15752 s_module (int ignore ATTRIBUTE_UNUSED)
15753 {
15754   char *name = input_line_pointer, ch;
15755
15756   while (!is_end_of_line[(unsigned char) *input_line_pointer])
15757     ++input_line_pointer;
15758   ch = *input_line_pointer;
15759   *input_line_pointer = '\0';
15760
15761   if (!file_mips_opts_checked)
15762     {
15763       if (!parse_code_option (name))
15764         as_bad (_(".module used with unrecognized symbol: %s\n"), name);
15765
15766       /* Update module level settings from mips_opts.  */
15767       file_mips_opts = mips_opts;
15768     }
15769   else
15770     as_bad (_(".module is not permitted after generating code"));
15771
15772   *input_line_pointer = ch;
15773   demand_empty_rest_of_line ();
15774 }
15775
15776 /* Handle the .abicalls pseudo-op.  I believe this is equivalent to
15777    .option pic2.  It means to generate SVR4 PIC calls.  */
15778
15779 static void
15780 s_abicalls (int ignore ATTRIBUTE_UNUSED)
15781 {
15782   mips_pic = SVR4_PIC;
15783   mips_abicalls = TRUE;
15784
15785   if (g_switch_seen && g_switch_value != 0)
15786     as_warn (_("-G may not be used with SVR4 PIC code"));
15787   g_switch_value = 0;
15788
15789   bfd_set_gp_size (stdoutput, 0);
15790   demand_empty_rest_of_line ();
15791 }
15792
15793 /* Handle the .cpload pseudo-op.  This is used when generating SVR4
15794    PIC code.  It sets the $gp register for the function based on the
15795    function address, which is in the register named in the argument.
15796    This uses a relocation against _gp_disp, which is handled specially
15797    by the linker.  The result is:
15798         lui     $gp,%hi(_gp_disp)
15799         addiu   $gp,$gp,%lo(_gp_disp)
15800         addu    $gp,$gp,.cpload argument
15801    The .cpload argument is normally $25 == $t9.
15802
15803    The -mno-shared option changes this to:
15804         lui     $gp,%hi(__gnu_local_gp)
15805         addiu   $gp,$gp,%lo(__gnu_local_gp)
15806    and the argument is ignored.  This saves an instruction, but the
15807    resulting code is not position independent; it uses an absolute
15808    address for __gnu_local_gp.  Thus code assembled with -mno-shared
15809    can go into an ordinary executable, but not into a shared library.  */
15810
15811 static void
15812 s_cpload (int ignore ATTRIBUTE_UNUSED)
15813 {
15814   expressionS ex;
15815   int reg;
15816   int in_shared;
15817
15818   file_mips_check_options ();
15819
15820   /* If we are not generating SVR4 PIC code, or if this is NewABI code,
15821      .cpload is ignored.  */
15822   if (mips_pic != SVR4_PIC || HAVE_NEWABI)
15823     {
15824       s_ignore (0);
15825       return;
15826     }
15827
15828   if (mips_opts.mips16)
15829     {
15830       as_bad (_("%s not supported in MIPS16 mode"), ".cpload");
15831       ignore_rest_of_line ();
15832       return;
15833     }
15834
15835   /* .cpload should be in a .set noreorder section.  */
15836   if (mips_opts.noreorder == 0)
15837     as_warn (_(".cpload not in noreorder section"));
15838
15839   reg = tc_get_register (0);
15840
15841   /* If we need to produce a 64-bit address, we are better off using
15842      the default instruction sequence.  */
15843   in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
15844
15845   ex.X_op = O_symbol;
15846   ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
15847                                          "__gnu_local_gp");
15848   ex.X_op_symbol = NULL;
15849   ex.X_add_number = 0;
15850
15851   /* In ELF, this symbol is implicitly an STT_OBJECT symbol.  */
15852   symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
15853
15854   mips_mark_labels ();
15855   mips_assembling_insn = TRUE;
15856
15857   macro_start ();
15858   macro_build_lui (&ex, mips_gp_register);
15859   macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
15860                mips_gp_register, BFD_RELOC_LO16);
15861   if (in_shared)
15862     macro_build (NULL, "addu", "d,v,t", mips_gp_register,
15863                  mips_gp_register, reg);
15864   macro_end ();
15865
15866   mips_assembling_insn = FALSE;
15867   demand_empty_rest_of_line ();
15868 }
15869
15870 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code.  The syntax is:
15871      .cpsetup $reg1, offset|$reg2, label
15872
15873    If offset is given, this results in:
15874      sd         $gp, offset($sp)
15875      lui        $gp, %hi(%neg(%gp_rel(label)))
15876      addiu      $gp, $gp, %lo(%neg(%gp_rel(label)))
15877      daddu      $gp, $gp, $reg1
15878
15879    If $reg2 is given, this results in:
15880      daddu      $reg2, $gp, $0
15881      lui        $gp, %hi(%neg(%gp_rel(label)))
15882      addiu      $gp, $gp, %lo(%neg(%gp_rel(label)))
15883      daddu      $gp, $gp, $reg1
15884    $reg1 is normally $25 == $t9.
15885
15886    The -mno-shared option replaces the last three instructions with
15887         lui     $gp,%hi(_gp)
15888         addiu   $gp,$gp,%lo(_gp)  */
15889
15890 static void
15891 s_cpsetup (int ignore ATTRIBUTE_UNUSED)
15892 {
15893   expressionS ex_off;
15894   expressionS ex_sym;
15895   int reg1;
15896
15897   file_mips_check_options ();
15898
15899   /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
15900      We also need NewABI support.  */
15901   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
15902     {
15903       s_ignore (0);
15904       return;
15905     }
15906
15907   if (mips_opts.mips16)
15908     {
15909       as_bad (_("%s not supported in MIPS16 mode"), ".cpsetup");
15910       ignore_rest_of_line ();
15911       return;
15912     }
15913
15914   reg1 = tc_get_register (0);
15915   SKIP_WHITESPACE ();
15916   if (*input_line_pointer != ',')
15917     {
15918       as_bad (_("missing argument separator ',' for .cpsetup"));
15919       return;
15920     }
15921   else
15922     ++input_line_pointer;
15923   SKIP_WHITESPACE ();
15924   if (*input_line_pointer == '$')
15925     {
15926       mips_cpreturn_register = tc_get_register (0);
15927       mips_cpreturn_offset = -1;
15928     }
15929   else
15930     {
15931       mips_cpreturn_offset = get_absolute_expression ();
15932       mips_cpreturn_register = -1;
15933     }
15934   SKIP_WHITESPACE ();
15935   if (*input_line_pointer != ',')
15936     {
15937       as_bad (_("missing argument separator ',' for .cpsetup"));
15938       return;
15939     }
15940   else
15941     ++input_line_pointer;
15942   SKIP_WHITESPACE ();
15943   expression (&ex_sym);
15944
15945   mips_mark_labels ();
15946   mips_assembling_insn = TRUE;
15947
15948   macro_start ();
15949   if (mips_cpreturn_register == -1)
15950     {
15951       ex_off.X_op = O_constant;
15952       ex_off.X_add_symbol = NULL;
15953       ex_off.X_op_symbol = NULL;
15954       ex_off.X_add_number = mips_cpreturn_offset;
15955
15956       macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
15957                    BFD_RELOC_LO16, SP);
15958     }
15959   else
15960     macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
15961                  mips_gp_register, 0);
15962
15963   if (mips_in_shared || HAVE_64BIT_SYMBOLS)
15964     {
15965       macro_build (&ex_sym, "lui", LUI_FMT, mips_gp_register,
15966                    -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
15967                    BFD_RELOC_HI16_S);
15968
15969       macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
15970                    mips_gp_register, -1, BFD_RELOC_GPREL16,
15971                    BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
15972
15973       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
15974                    mips_gp_register, reg1);
15975     }
15976   else
15977     {
15978       expressionS ex;
15979
15980       ex.X_op = O_symbol;
15981       ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
15982       ex.X_op_symbol = NULL;
15983       ex.X_add_number = 0;
15984
15985       /* In ELF, this symbol is implicitly an STT_OBJECT symbol.  */
15986       symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
15987
15988       macro_build_lui (&ex, mips_gp_register);
15989       macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
15990                    mips_gp_register, BFD_RELOC_LO16);
15991     }
15992
15993   macro_end ();
15994
15995   mips_assembling_insn = FALSE;
15996   demand_empty_rest_of_line ();
15997 }
15998
15999 static void
16000 s_cplocal (int ignore ATTRIBUTE_UNUSED)
16001 {
16002   file_mips_check_options ();
16003
16004   /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
16005      .cplocal is ignored.  */
16006   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16007     {
16008       s_ignore (0);
16009       return;
16010     }
16011
16012   if (mips_opts.mips16)
16013     {
16014       as_bad (_("%s not supported in MIPS16 mode"), ".cplocal");
16015       ignore_rest_of_line ();
16016       return;
16017     }
16018
16019   mips_gp_register = tc_get_register (0);
16020   demand_empty_rest_of_line ();
16021 }
16022
16023 /* Handle the .cprestore pseudo-op.  This stores $gp into a given
16024    offset from $sp.  The offset is remembered, and after making a PIC
16025    call $gp is restored from that location.  */
16026
16027 static void
16028 s_cprestore (int ignore ATTRIBUTE_UNUSED)
16029 {
16030   expressionS ex;
16031
16032   file_mips_check_options ();
16033
16034   /* If we are not generating SVR4 PIC code, or if this is NewABI code,
16035      .cprestore is ignored.  */
16036   if (mips_pic != SVR4_PIC || HAVE_NEWABI)
16037     {
16038       s_ignore (0);
16039       return;
16040     }
16041
16042   if (mips_opts.mips16)
16043     {
16044       as_bad (_("%s not supported in MIPS16 mode"), ".cprestore");
16045       ignore_rest_of_line ();
16046       return;
16047     }
16048
16049   mips_cprestore_offset = get_absolute_expression ();
16050   mips_cprestore_valid = 1;
16051
16052   ex.X_op = O_constant;
16053   ex.X_add_symbol = NULL;
16054   ex.X_op_symbol = NULL;
16055   ex.X_add_number = mips_cprestore_offset;
16056
16057   mips_mark_labels ();
16058   mips_assembling_insn = TRUE;
16059
16060   macro_start ();
16061   macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
16062                                 SP, HAVE_64BIT_ADDRESSES);
16063   macro_end ();
16064
16065   mips_assembling_insn = FALSE;
16066   demand_empty_rest_of_line ();
16067 }
16068
16069 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
16070    was given in the preceding .cpsetup, it results in:
16071      ld         $gp, offset($sp)
16072
16073    If a register $reg2 was given there, it results in:
16074      daddu      $gp, $reg2, $0  */
16075
16076 static void
16077 s_cpreturn (int ignore ATTRIBUTE_UNUSED)
16078 {
16079   expressionS ex;
16080
16081   file_mips_check_options ();
16082
16083   /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
16084      We also need NewABI support.  */
16085   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16086     {
16087       s_ignore (0);
16088       return;
16089     }
16090
16091   if (mips_opts.mips16)
16092     {
16093       as_bad (_("%s not supported in MIPS16 mode"), ".cpreturn");
16094       ignore_rest_of_line ();
16095       return;
16096     }
16097
16098   mips_mark_labels ();
16099   mips_assembling_insn = TRUE;
16100
16101   macro_start ();
16102   if (mips_cpreturn_register == -1)
16103     {
16104       ex.X_op = O_constant;
16105       ex.X_add_symbol = NULL;
16106       ex.X_op_symbol = NULL;
16107       ex.X_add_number = mips_cpreturn_offset;
16108
16109       macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
16110     }
16111   else
16112     macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
16113                  mips_cpreturn_register, 0);
16114   macro_end ();
16115
16116   mips_assembling_insn = FALSE;
16117   demand_empty_rest_of_line ();
16118 }
16119
16120 /* Handle a .dtprelword, .dtpreldword, .tprelword, or .tpreldword
16121    pseudo-op; DIRSTR says which. The pseudo-op generates a BYTES-size
16122    DTP- or TP-relative relocation of type RTYPE, for use in either DWARF
16123    debug information or MIPS16 TLS.  */
16124
16125 static void
16126 s_tls_rel_directive (const size_t bytes, const char *dirstr,
16127                      bfd_reloc_code_real_type rtype)
16128 {
16129   expressionS ex;
16130   char *p;
16131
16132   expression (&ex);
16133
16134   if (ex.X_op != O_symbol)
16135     {
16136       as_bad (_("unsupported use of %s"), dirstr);
16137       ignore_rest_of_line ();
16138     }
16139
16140   p = frag_more (bytes);
16141   md_number_to_chars (p, 0, bytes);
16142   fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE, rtype);
16143   demand_empty_rest_of_line ();
16144   mips_clear_insn_labels ();
16145 }
16146
16147 /* Handle .dtprelword.  */
16148
16149 static void
16150 s_dtprelword (int ignore ATTRIBUTE_UNUSED)
16151 {
16152   s_tls_rel_directive (4, ".dtprelword", BFD_RELOC_MIPS_TLS_DTPREL32);
16153 }
16154
16155 /* Handle .dtpreldword.  */
16156
16157 static void
16158 s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
16159 {
16160   s_tls_rel_directive (8, ".dtpreldword", BFD_RELOC_MIPS_TLS_DTPREL64);
16161 }
16162
16163 /* Handle .tprelword.  */
16164
16165 static void
16166 s_tprelword (int ignore ATTRIBUTE_UNUSED)
16167 {
16168   s_tls_rel_directive (4, ".tprelword", BFD_RELOC_MIPS_TLS_TPREL32);
16169 }
16170
16171 /* Handle .tpreldword.  */
16172
16173 static void
16174 s_tpreldword (int ignore ATTRIBUTE_UNUSED)
16175 {
16176   s_tls_rel_directive (8, ".tpreldword", BFD_RELOC_MIPS_TLS_TPREL64);
16177 }
16178
16179 /* Handle the .gpvalue pseudo-op.  This is used when generating NewABI PIC
16180    code.  It sets the offset to use in gp_rel relocations.  */
16181
16182 static void
16183 s_gpvalue (int ignore ATTRIBUTE_UNUSED)
16184 {
16185   /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
16186      We also need NewABI support.  */
16187   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16188     {
16189       s_ignore (0);
16190       return;
16191     }
16192
16193   mips_gprel_offset = get_absolute_expression ();
16194
16195   demand_empty_rest_of_line ();
16196 }
16197
16198 /* Handle the .gpword pseudo-op.  This is used when generating PIC
16199    code.  It generates a 32 bit GP relative reloc.  */
16200
16201 static void
16202 s_gpword (int ignore ATTRIBUTE_UNUSED)
16203 {
16204   segment_info_type *si;
16205   struct insn_label_list *l;
16206   expressionS ex;
16207   char *p;
16208
16209   /* When not generating PIC code, this is treated as .word.  */
16210   if (mips_pic != SVR4_PIC)
16211     {
16212       s_cons (2);
16213       return;
16214     }
16215
16216   si = seg_info (now_seg);
16217   l = si->label_list;
16218   mips_emit_delays ();
16219   if (auto_align)
16220     mips_align (2, 0, l);
16221
16222   expression (&ex);
16223   mips_clear_insn_labels ();
16224
16225   if (ex.X_op != O_symbol || ex.X_add_number != 0)
16226     {
16227       as_bad (_("unsupported use of .gpword"));
16228       ignore_rest_of_line ();
16229     }
16230
16231   p = frag_more (4);
16232   md_number_to_chars (p, 0, 4);
16233   fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
16234                BFD_RELOC_GPREL32);
16235
16236   demand_empty_rest_of_line ();
16237 }
16238
16239 static void
16240 s_gpdword (int ignore ATTRIBUTE_UNUSED)
16241 {
16242   segment_info_type *si;
16243   struct insn_label_list *l;
16244   expressionS ex;
16245   char *p;
16246
16247   /* When not generating PIC code, this is treated as .dword.  */
16248   if (mips_pic != SVR4_PIC)
16249     {
16250       s_cons (3);
16251       return;
16252     }
16253
16254   si = seg_info (now_seg);
16255   l = si->label_list;
16256   mips_emit_delays ();
16257   if (auto_align)
16258     mips_align (3, 0, l);
16259
16260   expression (&ex);
16261   mips_clear_insn_labels ();
16262
16263   if (ex.X_op != O_symbol || ex.X_add_number != 0)
16264     {
16265       as_bad (_("unsupported use of .gpdword"));
16266       ignore_rest_of_line ();
16267     }
16268
16269   p = frag_more (8);
16270   md_number_to_chars (p, 0, 8);
16271   fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
16272                BFD_RELOC_GPREL32)->fx_tcbit = 1;
16273
16274   /* GPREL32 composed with 64 gives a 64-bit GP offset.  */
16275   fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
16276            FALSE, BFD_RELOC_64)->fx_tcbit = 1;
16277
16278   demand_empty_rest_of_line ();
16279 }
16280
16281 /* Handle the .ehword pseudo-op.  This is used when generating unwinding
16282    tables.  It generates a R_MIPS_EH reloc.  */
16283
16284 static void
16285 s_ehword (int ignore ATTRIBUTE_UNUSED)
16286 {
16287   expressionS ex;
16288   char *p;
16289
16290   mips_emit_delays ();
16291
16292   expression (&ex);
16293   mips_clear_insn_labels ();
16294
16295   if (ex.X_op != O_symbol || ex.X_add_number != 0)
16296     {
16297       as_bad (_("unsupported use of .ehword"));
16298       ignore_rest_of_line ();
16299     }
16300
16301   p = frag_more (4);
16302   md_number_to_chars (p, 0, 4);
16303   fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
16304                BFD_RELOC_MIPS_EH);
16305
16306   demand_empty_rest_of_line ();
16307 }
16308
16309 /* Handle the .cpadd pseudo-op.  This is used when dealing with switch
16310    tables in SVR4 PIC code.  */
16311
16312 static void
16313 s_cpadd (int ignore ATTRIBUTE_UNUSED)
16314 {
16315   int reg;
16316
16317   file_mips_check_options ();
16318
16319   /* This is ignored when not generating SVR4 PIC code.  */
16320   if (mips_pic != SVR4_PIC)
16321     {
16322       s_ignore (0);
16323       return;
16324     }
16325
16326   mips_mark_labels ();
16327   mips_assembling_insn = TRUE;
16328
16329   /* Add $gp to the register named as an argument.  */
16330   macro_start ();
16331   reg = tc_get_register (0);
16332   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
16333   macro_end ();
16334
16335   mips_assembling_insn = FALSE;
16336   demand_empty_rest_of_line ();
16337 }
16338
16339 /* Handle the .insn pseudo-op.  This marks instruction labels in
16340    mips16/micromips mode.  This permits the linker to handle them specially,
16341    such as generating jalx instructions when needed.  We also make
16342    them odd for the duration of the assembly, in order to generate the
16343    right sort of code.  We will make them even in the adjust_symtab
16344    routine, while leaving them marked.  This is convenient for the
16345    debugger and the disassembler.  The linker knows to make them odd
16346    again.  */
16347
16348 static void
16349 s_insn (int ignore ATTRIBUTE_UNUSED)
16350 {
16351   file_mips_check_options ();
16352   file_ase_mips16 |= mips_opts.mips16;
16353   file_ase_micromips |= mips_opts.micromips;
16354
16355   mips_mark_labels ();
16356
16357   demand_empty_rest_of_line ();
16358 }
16359
16360 /* Handle the .nan pseudo-op.  */
16361
16362 static void
16363 s_nan (int ignore ATTRIBUTE_UNUSED)
16364 {
16365   static const char str_legacy[] = "legacy";
16366   static const char str_2008[] = "2008";
16367   size_t i;
16368
16369   for (i = 0; !is_end_of_line[(unsigned char) input_line_pointer[i]]; i++);
16370
16371   if (i == sizeof (str_2008) - 1
16372       && memcmp (input_line_pointer, str_2008, i) == 0)
16373     mips_nan2008 = 1;
16374   else if (i == sizeof (str_legacy) - 1
16375            && memcmp (input_line_pointer, str_legacy, i) == 0)
16376     {
16377       if (ISA_HAS_LEGACY_NAN (file_mips_opts.isa))
16378         mips_nan2008 = 0;
16379       else
16380         as_bad (_("`%s' does not support legacy NaN"),
16381                   mips_cpu_info_from_isa (file_mips_opts.isa)->name);
16382     }
16383   else
16384     as_bad (_("bad .nan directive"));
16385
16386   input_line_pointer += i;
16387   demand_empty_rest_of_line ();
16388 }
16389
16390 /* Handle a .stab[snd] directive.  Ideally these directives would be
16391    implemented in a transparent way, so that removing them would not
16392    have any effect on the generated instructions.  However, s_stab
16393    internally changes the section, so in practice we need to decide
16394    now whether the preceding label marks compressed code.  We do not
16395    support changing the compression mode of a label after a .stab*
16396    directive, such as in:
16397
16398    foo:
16399         .stabs ...
16400         .set mips16
16401
16402    so the current mode wins.  */
16403
16404 static void
16405 s_mips_stab (int type)
16406 {
16407   mips_mark_labels ();
16408   s_stab (type);
16409 }
16410
16411 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich.  */
16412
16413 static void
16414 s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
16415 {
16416   char *name;
16417   int c;
16418   symbolS *symbolP;
16419   expressionS exp;
16420
16421   name = input_line_pointer;
16422   c = get_symbol_end ();
16423   symbolP = symbol_find_or_make (name);
16424   S_SET_WEAK (symbolP);
16425   *input_line_pointer = c;
16426
16427   SKIP_WHITESPACE ();
16428
16429   if (! is_end_of_line[(unsigned char) *input_line_pointer])
16430     {
16431       if (S_IS_DEFINED (symbolP))
16432         {
16433           as_bad (_("ignoring attempt to redefine symbol %s"),
16434                   S_GET_NAME (symbolP));
16435           ignore_rest_of_line ();
16436           return;
16437         }
16438
16439       if (*input_line_pointer == ',')
16440         {
16441           ++input_line_pointer;
16442           SKIP_WHITESPACE ();
16443         }
16444
16445       expression (&exp);
16446       if (exp.X_op != O_symbol)
16447         {
16448           as_bad (_("bad .weakext directive"));
16449           ignore_rest_of_line ();
16450           return;
16451         }
16452       symbol_set_value_expression (symbolP, &exp);
16453     }
16454
16455   demand_empty_rest_of_line ();
16456 }
16457
16458 /* Parse a register string into a number.  Called from the ECOFF code
16459    to parse .frame.  The argument is non-zero if this is the frame
16460    register, so that we can record it in mips_frame_reg.  */
16461
16462 int
16463 tc_get_register (int frame)
16464 {
16465   unsigned int reg;
16466
16467   SKIP_WHITESPACE ();
16468   if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, &reg))
16469     reg = 0;
16470   if (frame)
16471     {
16472       mips_frame_reg = reg != 0 ? reg : SP;
16473       mips_frame_reg_valid = 1;
16474       mips_cprestore_valid = 0;
16475     }
16476   return reg;
16477 }
16478
16479 valueT
16480 md_section_align (asection *seg, valueT addr)
16481 {
16482   int align = bfd_get_section_alignment (stdoutput, seg);
16483
16484   /* We don't need to align ELF sections to the full alignment.
16485      However, Irix 5 may prefer that we align them at least to a 16
16486      byte boundary.  We don't bother to align the sections if we
16487      are targeted for an embedded system.  */
16488   if (strncmp (TARGET_OS, "elf", 3) == 0)
16489     return addr;
16490   if (align > 4)
16491     align = 4;
16492
16493   return ((addr + (1 << align) - 1) & (-1 << align));
16494 }
16495
16496 /* Utility routine, called from above as well.  If called while the
16497    input file is still being read, it's only an approximation.  (For
16498    example, a symbol may later become defined which appeared to be
16499    undefined earlier.)  */
16500
16501 static int
16502 nopic_need_relax (symbolS *sym, int before_relaxing)
16503 {
16504   if (sym == 0)
16505     return 0;
16506
16507   if (g_switch_value > 0)
16508     {
16509       const char *symname;
16510       int change;
16511
16512       /* Find out whether this symbol can be referenced off the $gp
16513          register.  It can be if it is smaller than the -G size or if
16514          it is in the .sdata or .sbss section.  Certain symbols can
16515          not be referenced off the $gp, although it appears as though
16516          they can.  */
16517       symname = S_GET_NAME (sym);
16518       if (symname != (const char *) NULL
16519           && (strcmp (symname, "eprol") == 0
16520               || strcmp (symname, "etext") == 0
16521               || strcmp (symname, "_gp") == 0
16522               || strcmp (symname, "edata") == 0
16523               || strcmp (symname, "_fbss") == 0
16524               || strcmp (symname, "_fdata") == 0
16525               || strcmp (symname, "_ftext") == 0
16526               || strcmp (symname, "end") == 0
16527               || strcmp (symname, "_gp_disp") == 0))
16528         change = 1;
16529       else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
16530                && (0
16531 #ifndef NO_ECOFF_DEBUGGING
16532                    || (symbol_get_obj (sym)->ecoff_extern_size != 0
16533                        && (symbol_get_obj (sym)->ecoff_extern_size
16534                            <= g_switch_value))
16535 #endif
16536                    /* We must defer this decision until after the whole
16537                       file has been read, since there might be a .extern
16538                       after the first use of this symbol.  */
16539                    || (before_relaxing
16540 #ifndef NO_ECOFF_DEBUGGING
16541                        && symbol_get_obj (sym)->ecoff_extern_size == 0
16542 #endif
16543                        && S_GET_VALUE (sym) == 0)
16544                    || (S_GET_VALUE (sym) != 0
16545                        && S_GET_VALUE (sym) <= g_switch_value)))
16546         change = 0;
16547       else
16548         {
16549           const char *segname;
16550
16551           segname = segment_name (S_GET_SEGMENT (sym));
16552           gas_assert (strcmp (segname, ".lit8") != 0
16553                   && strcmp (segname, ".lit4") != 0);
16554           change = (strcmp (segname, ".sdata") != 0
16555                     && strcmp (segname, ".sbss") != 0
16556                     && strncmp (segname, ".sdata.", 7) != 0
16557                     && strncmp (segname, ".sbss.", 6) != 0
16558                     && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0
16559                     && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
16560         }
16561       return change;
16562     }
16563   else
16564     /* We are not optimizing for the $gp register.  */
16565     return 1;
16566 }
16567
16568
16569 /* Return true if the given symbol should be considered local for SVR4 PIC.  */
16570
16571 static bfd_boolean
16572 pic_need_relax (symbolS *sym, asection *segtype)
16573 {
16574   asection *symsec;
16575
16576   /* Handle the case of a symbol equated to another symbol.  */
16577   while (symbol_equated_reloc_p (sym))
16578     {
16579       symbolS *n;
16580
16581       /* It's possible to get a loop here in a badly written program.  */
16582       n = symbol_get_value_expression (sym)->X_add_symbol;
16583       if (n == sym)
16584         break;
16585       sym = n;
16586     }
16587
16588   if (symbol_section_p (sym))
16589     return TRUE;
16590
16591   symsec = S_GET_SEGMENT (sym);
16592
16593   /* This must duplicate the test in adjust_reloc_syms.  */
16594   return (!bfd_is_und_section (symsec)
16595           && !bfd_is_abs_section (symsec)
16596           && !bfd_is_com_section (symsec)
16597           && !s_is_linkonce (sym, segtype)
16598           /* A global or weak symbol is treated as external.  */
16599           && (!S_IS_WEAK (sym) && !S_IS_EXTERNAL (sym)));
16600 }
16601
16602
16603 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
16604    extended opcode.  SEC is the section the frag is in.  */
16605
16606 static int
16607 mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
16608 {
16609   int type;
16610   const struct mips_int_operand *operand;
16611   offsetT val;
16612   segT symsec;
16613   fragS *sym_frag;
16614
16615   if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
16616     return 0;
16617   if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
16618     return 1;
16619
16620   type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
16621   operand = mips16_immed_operand (type, FALSE);
16622
16623   sym_frag = symbol_get_frag (fragp->fr_symbol);
16624   val = S_GET_VALUE (fragp->fr_symbol);
16625   symsec = S_GET_SEGMENT (fragp->fr_symbol);
16626
16627   if (operand->root.type == OP_PCREL)
16628     {
16629       const struct mips_pcrel_operand *pcrel_op;
16630       addressT addr;
16631       offsetT maxtiny;
16632
16633       /* We won't have the section when we are called from
16634          mips_relax_frag.  However, we will always have been called
16635          from md_estimate_size_before_relax first.  If this is a
16636          branch to a different section, we mark it as such.  If SEC is
16637          NULL, and the frag is not marked, then it must be a branch to
16638          the same section.  */
16639       pcrel_op = (const struct mips_pcrel_operand *) operand;
16640       if (sec == NULL)
16641         {
16642           if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
16643             return 1;
16644         }
16645       else
16646         {
16647           /* Must have been called from md_estimate_size_before_relax.  */
16648           if (symsec != sec)
16649             {
16650               fragp->fr_subtype =
16651                 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
16652
16653               /* FIXME: We should support this, and let the linker
16654                  catch branches and loads that are out of range.  */
16655               as_bad_where (fragp->fr_file, fragp->fr_line,
16656                             _("unsupported PC relative reference to different section"));
16657
16658               return 1;
16659             }
16660           if (fragp != sym_frag && sym_frag->fr_address == 0)
16661             /* Assume non-extended on the first relaxation pass.
16662                The address we have calculated will be bogus if this is
16663                a forward branch to another frag, as the forward frag
16664                will have fr_address == 0.  */
16665             return 0;
16666         }
16667
16668       /* In this case, we know for sure that the symbol fragment is in
16669          the same section.  If the relax_marker of the symbol fragment
16670          differs from the relax_marker of this fragment, we have not
16671          yet adjusted the symbol fragment fr_address.  We want to add
16672          in STRETCH in order to get a better estimate of the address.
16673          This particularly matters because of the shift bits.  */
16674       if (stretch != 0
16675           && sym_frag->relax_marker != fragp->relax_marker)
16676         {
16677           fragS *f;
16678
16679           /* Adjust stretch for any alignment frag.  Note that if have
16680              been expanding the earlier code, the symbol may be
16681              defined in what appears to be an earlier frag.  FIXME:
16682              This doesn't handle the fr_subtype field, which specifies
16683              a maximum number of bytes to skip when doing an
16684              alignment.  */
16685           for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
16686             {
16687               if (f->fr_type == rs_align || f->fr_type == rs_align_code)
16688                 {
16689                   if (stretch < 0)
16690                     stretch = - ((- stretch)
16691                                  & ~ ((1 << (int) f->fr_offset) - 1));
16692                   else
16693                     stretch &= ~ ((1 << (int) f->fr_offset) - 1);
16694                   if (stretch == 0)
16695                     break;
16696                 }
16697             }
16698           if (f != NULL)
16699             val += stretch;
16700         }
16701
16702       addr = fragp->fr_address + fragp->fr_fix;
16703
16704       /* The base address rules are complicated.  The base address of
16705          a branch is the following instruction.  The base address of a
16706          PC relative load or add is the instruction itself, but if it
16707          is in a delay slot (in which case it can not be extended) use
16708          the address of the instruction whose delay slot it is in.  */
16709       if (pcrel_op->include_isa_bit)
16710         {
16711           addr += 2;
16712
16713           /* If we are currently assuming that this frag should be
16714              extended, then, the current address is two bytes
16715              higher.  */
16716           if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
16717             addr += 2;
16718
16719           /* Ignore the low bit in the target, since it will be set
16720              for a text label.  */
16721           val &= -2;
16722         }
16723       else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
16724         addr -= 4;
16725       else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
16726         addr -= 2;
16727
16728       val -= addr & -(1 << pcrel_op->align_log2);
16729
16730       /* If any of the shifted bits are set, we must use an extended
16731          opcode.  If the address depends on the size of this
16732          instruction, this can lead to a loop, so we arrange to always
16733          use an extended opcode.  We only check this when we are in
16734          the main relaxation loop, when SEC is NULL.  */
16735       if ((val & ((1 << operand->shift) - 1)) != 0 && sec == NULL)
16736         {
16737           fragp->fr_subtype =
16738             RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
16739           return 1;
16740         }
16741
16742       /* If we are about to mark a frag as extended because the value
16743          is precisely the next value above maxtiny, then there is a
16744          chance of an infinite loop as in the following code:
16745              la $4,foo
16746              .skip      1020
16747              .align     2
16748            foo:
16749          In this case when the la is extended, foo is 0x3fc bytes
16750          away, so the la can be shrunk, but then foo is 0x400 away, so
16751          the la must be extended.  To avoid this loop, we mark the
16752          frag as extended if it was small, and is about to become
16753          extended with the next value above maxtiny.  */
16754       maxtiny = mips_int_operand_max (operand);
16755       if (val == maxtiny + (1 << operand->shift)
16756           && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
16757           && sec == NULL)
16758         {
16759           fragp->fr_subtype =
16760             RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
16761           return 1;
16762         }
16763     }
16764   else if (symsec != absolute_section && sec != NULL)
16765     as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
16766
16767   return !mips16_immed_in_range_p (operand, BFD_RELOC_UNUSED, val);
16768 }
16769
16770 /* Compute the length of a branch sequence, and adjust the
16771    RELAX_BRANCH_TOOFAR bit accordingly.  If FRAGP is NULL, the
16772    worst-case length is computed, with UPDATE being used to indicate
16773    whether an unconditional (-1), branch-likely (+1) or regular (0)
16774    branch is to be computed.  */
16775 static int
16776 relaxed_branch_length (fragS *fragp, asection *sec, int update)
16777 {
16778   bfd_boolean toofar;
16779   int length;
16780
16781   if (fragp
16782       && S_IS_DEFINED (fragp->fr_symbol)
16783       && sec == S_GET_SEGMENT (fragp->fr_symbol))
16784     {
16785       addressT addr;
16786       offsetT val;
16787
16788       val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
16789
16790       addr = fragp->fr_address + fragp->fr_fix + 4;
16791
16792       val -= addr;
16793
16794       toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
16795     }
16796   else if (fragp)
16797     /* If the symbol is not defined or it's in a different segment,
16798        assume the user knows what's going on and emit a short
16799        branch.  */
16800     toofar = FALSE;
16801   else
16802     toofar = TRUE;
16803
16804   if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
16805     fragp->fr_subtype
16806       = RELAX_BRANCH_ENCODE (RELAX_BRANCH_AT (fragp->fr_subtype),
16807                              RELAX_BRANCH_UNCOND (fragp->fr_subtype),
16808                              RELAX_BRANCH_LIKELY (fragp->fr_subtype),
16809                              RELAX_BRANCH_LINK (fragp->fr_subtype),
16810                              toofar);
16811
16812   length = 4;
16813   if (toofar)
16814     {
16815       if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
16816         length += 8;
16817
16818       if (mips_pic != NO_PIC)
16819         {
16820           /* Additional space for PIC loading of target address.  */
16821           length += 8;
16822           if (mips_opts.isa == ISA_MIPS1)
16823             /* Additional space for $at-stabilizing nop.  */
16824             length += 4;
16825         }
16826
16827       /* If branch is conditional.  */
16828       if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
16829         length += 8;
16830     }
16831
16832   return length;
16833 }
16834
16835 /* Compute the length of a branch sequence, and adjust the
16836    RELAX_MICROMIPS_TOOFAR32 bit accordingly.  If FRAGP is NULL, the
16837    worst-case length is computed, with UPDATE being used to indicate
16838    whether an unconditional (-1), or regular (0) branch is to be
16839    computed.  */
16840
16841 static int
16842 relaxed_micromips_32bit_branch_length (fragS *fragp, asection *sec, int update)
16843 {
16844   bfd_boolean toofar;
16845   int length;
16846
16847   if (fragp
16848       && S_IS_DEFINED (fragp->fr_symbol)
16849       && sec == S_GET_SEGMENT (fragp->fr_symbol))
16850     {
16851       addressT addr;
16852       offsetT val;
16853
16854       val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
16855       /* Ignore the low bit in the target, since it will be set
16856          for a text label.  */
16857       if ((val & 1) != 0)
16858         --val;
16859
16860       addr = fragp->fr_address + fragp->fr_fix + 4;
16861
16862       val -= addr;
16863
16864       toofar = val < - (0x8000 << 1) || val >= (0x8000 << 1);
16865     }
16866   else if (fragp)
16867     /* If the symbol is not defined or it's in a different segment,
16868        assume the user knows what's going on and emit a short
16869        branch.  */
16870     toofar = FALSE;
16871   else
16872     toofar = TRUE;
16873
16874   if (fragp && update
16875       && toofar != RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
16876     fragp->fr_subtype = (toofar
16877                          ? RELAX_MICROMIPS_MARK_TOOFAR32 (fragp->fr_subtype)
16878                          : RELAX_MICROMIPS_CLEAR_TOOFAR32 (fragp->fr_subtype));
16879
16880   length = 4;
16881   if (toofar)
16882     {
16883       bfd_boolean compact_known = fragp != NULL;
16884       bfd_boolean compact = FALSE;
16885       bfd_boolean uncond;
16886
16887       if (compact_known)
16888         compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
16889       if (fragp)
16890         uncond = RELAX_MICROMIPS_UNCOND (fragp->fr_subtype);
16891       else
16892         uncond = update < 0;
16893
16894       /* If label is out of range, we turn branch <br>:
16895
16896                 <br>    label                   # 4 bytes
16897             0:
16898
16899          into:
16900
16901                 j       label                   # 4 bytes
16902                 nop                             # 2 bytes if compact && !PIC
16903             0:
16904        */
16905       if (mips_pic == NO_PIC && (!compact_known || compact))
16906         length += 2;
16907
16908       /* If assembling PIC code, we further turn:
16909
16910                         j       label                   # 4 bytes
16911
16912          into:
16913
16914                         lw/ld   at, %got(label)(gp)     # 4 bytes
16915                         d/addiu at, %lo(label)          # 4 bytes
16916                         jr/c    at                      # 2 bytes
16917        */
16918       if (mips_pic != NO_PIC)
16919         length += 6;
16920
16921       /* If branch <br> is conditional, we prepend negated branch <brneg>:
16922
16923                         <brneg> 0f                      # 4 bytes
16924                         nop                             # 2 bytes if !compact
16925        */
16926       if (!uncond)
16927         length += (compact_known && compact) ? 4 : 6;
16928     }
16929
16930   return length;
16931 }
16932
16933 /* Compute the length of a branch, and adjust the RELAX_MICROMIPS_TOOFAR16
16934    bit accordingly.  */
16935
16936 static int
16937 relaxed_micromips_16bit_branch_length (fragS *fragp, asection *sec, int update)
16938 {
16939   bfd_boolean toofar;
16940
16941   if (fragp
16942       && S_IS_DEFINED (fragp->fr_symbol)
16943       && sec == S_GET_SEGMENT (fragp->fr_symbol))
16944     {
16945       addressT addr;
16946       offsetT val;
16947       int type;
16948
16949       val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
16950       /* Ignore the low bit in the target, since it will be set
16951          for a text label.  */
16952       if ((val & 1) != 0)
16953         --val;
16954
16955       /* Assume this is a 2-byte branch.  */
16956       addr = fragp->fr_address + fragp->fr_fix + 2;
16957
16958       /* We try to avoid the infinite loop by not adding 2 more bytes for
16959          long branches.  */
16960
16961       val -= addr;
16962
16963       type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
16964       if (type == 'D')
16965         toofar = val < - (0x200 << 1) || val >= (0x200 << 1);
16966       else if (type == 'E')
16967         toofar = val < - (0x40 << 1) || val >= (0x40 << 1);
16968       else
16969         abort ();
16970     }
16971   else
16972     /* If the symbol is not defined or it's in a different segment,
16973        we emit a normal 32-bit branch.  */
16974     toofar = TRUE;
16975
16976   if (fragp && update
16977       && toofar != RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
16978     fragp->fr_subtype
16979       = toofar ? RELAX_MICROMIPS_MARK_TOOFAR16 (fragp->fr_subtype)
16980                : RELAX_MICROMIPS_CLEAR_TOOFAR16 (fragp->fr_subtype);
16981
16982   if (toofar)
16983     return 4;
16984
16985   return 2;
16986 }
16987
16988 /* Estimate the size of a frag before relaxing.  Unless this is the
16989    mips16, we are not really relaxing here, and the final size is
16990    encoded in the subtype information.  For the mips16, we have to
16991    decide whether we are using an extended opcode or not.  */
16992
16993 int
16994 md_estimate_size_before_relax (fragS *fragp, asection *segtype)
16995 {
16996   int change;
16997
16998   if (RELAX_BRANCH_P (fragp->fr_subtype))
16999     {
17000
17001       fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
17002
17003       return fragp->fr_var;
17004     }
17005
17006   if (RELAX_MIPS16_P (fragp->fr_subtype))
17007     /* We don't want to modify the EXTENDED bit here; it might get us
17008        into infinite loops.  We change it only in mips_relax_frag().  */
17009     return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
17010
17011   if (RELAX_MICROMIPS_P (fragp->fr_subtype))
17012     {
17013       int length = 4;
17014
17015       if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
17016         length = relaxed_micromips_16bit_branch_length (fragp, segtype, FALSE);
17017       if (length == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
17018         length = relaxed_micromips_32bit_branch_length (fragp, segtype, FALSE);
17019       fragp->fr_var = length;
17020
17021       return length;
17022     }
17023
17024   if (mips_pic == NO_PIC)
17025     change = nopic_need_relax (fragp->fr_symbol, 0);
17026   else if (mips_pic == SVR4_PIC)
17027     change = pic_need_relax (fragp->fr_symbol, segtype);
17028   else if (mips_pic == VXWORKS_PIC)
17029     /* For vxworks, GOT16 relocations never have a corresponding LO16.  */
17030     change = 0;
17031   else
17032     abort ();
17033
17034   if (change)
17035     {
17036       fragp->fr_subtype |= RELAX_USE_SECOND;
17037       return -RELAX_FIRST (fragp->fr_subtype);
17038     }
17039   else
17040     return -RELAX_SECOND (fragp->fr_subtype);
17041 }
17042
17043 /* This is called to see whether a reloc against a defined symbol
17044    should be converted into a reloc against a section.  */
17045
17046 int
17047 mips_fix_adjustable (fixS *fixp)
17048 {
17049   if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
17050       || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
17051     return 0;
17052
17053   if (fixp->fx_addsy == NULL)
17054     return 1;
17055
17056   /* If symbol SYM is in a mergeable section, relocations of the form
17057      SYM + 0 can usually be made section-relative.  The mergeable data
17058      is then identified by the section offset rather than by the symbol.
17059
17060      However, if we're generating REL LO16 relocations, the offset is split
17061      between the LO16 and parterning high part relocation.  The linker will
17062      need to recalculate the complete offset in order to correctly identify
17063      the merge data.
17064
17065      The linker has traditionally not looked for the parterning high part
17066      relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
17067      placed anywhere.  Rather than break backwards compatibility by changing
17068      this, it seems better not to force the issue, and instead keep the
17069      original symbol.  This will work with either linker behavior.  */
17070   if ((lo16_reloc_p (fixp->fx_r_type)
17071        || reloc_needs_lo_p (fixp->fx_r_type))
17072       && HAVE_IN_PLACE_ADDENDS
17073       && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
17074     return 0;
17075
17076   /* There is no place to store an in-place offset for JALR relocations.
17077      Likewise an in-range offset of limited PC-relative relocations may
17078      overflow the in-place relocatable field if recalculated against the
17079      start address of the symbol's containing section.
17080
17081      Also, PC relative relocations for MIPS R6 need to be symbol rather than
17082      section relative to allow linker relaxations to be performed later on.  */
17083   if ((HAVE_IN_PLACE_ADDENDS || ISA_IS_R6 (mips_opts.isa))
17084       && (limited_pcrel_reloc_p (fixp->fx_r_type)
17085           || jalr_reloc_p (fixp->fx_r_type)))
17086     return 0;
17087
17088   /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
17089      to a floating-point stub.  The same is true for non-R_MIPS16_26
17090      relocations against MIPS16 functions; in this case, the stub becomes
17091      the function's canonical address.
17092
17093      Floating-point stubs are stored in unique .mips16.call.* or
17094      .mips16.fn.* sections.  If a stub T for function F is in section S,
17095      the first relocation in section S must be against F; this is how the
17096      linker determines the target function.  All relocations that might
17097      resolve to T must also be against F.  We therefore have the following
17098      restrictions, which are given in an intentionally-redundant way:
17099
17100        1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
17101           symbols.
17102
17103        2. We cannot reduce a stub's relocations against non-MIPS16 symbols
17104           if that stub might be used.
17105
17106        3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
17107           symbols.
17108
17109        4. We cannot reduce a stub's relocations against MIPS16 symbols if
17110           that stub might be used.
17111
17112      There is a further restriction:
17113
17114        5. We cannot reduce jump relocations (R_MIPS_26, R_MIPS16_26 or
17115           R_MICROMIPS_26_S1) against MIPS16 or microMIPS symbols on
17116           targets with in-place addends; the relocation field cannot
17117           encode the low bit.
17118
17119      For simplicity, we deal with (3)-(4) by not reducing _any_ relocation
17120      against a MIPS16 symbol.  We deal with (5) by by not reducing any
17121      such relocations on REL targets.
17122
17123      We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
17124      relocation against some symbol R, no relocation against R may be
17125      reduced.  (Note that this deals with (2) as well as (1) because
17126      relocations against global symbols will never be reduced on ELF
17127      targets.)  This approach is a little simpler than trying to detect
17128      stub sections, and gives the "all or nothing" per-symbol consistency
17129      that we have for MIPS16 symbols.  */
17130   if (fixp->fx_subsy == NULL
17131       && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
17132           || *symbol_get_tc (fixp->fx_addsy)
17133           || (HAVE_IN_PLACE_ADDENDS
17134               && ELF_ST_IS_MICROMIPS (S_GET_OTHER (fixp->fx_addsy))
17135               && jmp_reloc_p (fixp->fx_r_type))))
17136     return 0;
17137
17138   return 1;
17139 }
17140
17141 /* Translate internal representation of relocation info to BFD target
17142    format.  */
17143
17144 arelent **
17145 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
17146 {
17147   static arelent *retval[4];
17148   arelent *reloc;
17149   bfd_reloc_code_real_type code;
17150
17151   memset (retval, 0, sizeof(retval));
17152   reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
17153   reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
17154   *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
17155   reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
17156
17157   if (fixp->fx_pcrel)
17158     {
17159       gas_assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2
17160                   || fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
17161                   || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
17162                   || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1
17163                   || fixp->fx_r_type == BFD_RELOC_32_PCREL
17164                   || fixp->fx_r_type == BFD_RELOC_MIPS_21_PCREL_S2
17165                   || fixp->fx_r_type == BFD_RELOC_MIPS_26_PCREL_S2
17166                   || fixp->fx_r_type == BFD_RELOC_MIPS_18_PCREL_S3
17167                   || fixp->fx_r_type == BFD_RELOC_MIPS_19_PCREL_S2
17168                   || fixp->fx_r_type == BFD_RELOC_HI16_S_PCREL
17169                   || fixp->fx_r_type == BFD_RELOC_LO16_PCREL);
17170
17171       /* At this point, fx_addnumber is "symbol offset - pcrel address".
17172          Relocations want only the symbol offset.  */
17173       reloc->addend = fixp->fx_addnumber + reloc->address;
17174     }
17175   else
17176     reloc->addend = fixp->fx_addnumber;
17177
17178   /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
17179      entry to be used in the relocation's section offset.  */
17180   if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
17181     {
17182       reloc->address = reloc->addend;
17183       reloc->addend = 0;
17184     }
17185
17186   code = fixp->fx_r_type;
17187
17188   reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
17189   if (reloc->howto == NULL)
17190     {
17191       as_bad_where (fixp->fx_file, fixp->fx_line,
17192                     _("cannot represent %s relocation in this object file"
17193                       " format"),
17194                     bfd_get_reloc_code_name (code));
17195       retval[0] = NULL;
17196     }
17197
17198   return retval;
17199 }
17200
17201 /* Relax a machine dependent frag.  This returns the amount by which
17202    the current size of the frag should change.  */
17203
17204 int
17205 mips_relax_frag (asection *sec, fragS *fragp, long stretch)
17206 {
17207   if (RELAX_BRANCH_P (fragp->fr_subtype))
17208     {
17209       offsetT old_var = fragp->fr_var;
17210
17211       fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
17212
17213       return fragp->fr_var - old_var;
17214     }
17215
17216   if (RELAX_MICROMIPS_P (fragp->fr_subtype))
17217     {
17218       offsetT old_var = fragp->fr_var;
17219       offsetT new_var = 4;
17220
17221       if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
17222         new_var = relaxed_micromips_16bit_branch_length (fragp, sec, TRUE);
17223       if (new_var == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
17224         new_var = relaxed_micromips_32bit_branch_length (fragp, sec, TRUE);
17225       fragp->fr_var = new_var;
17226
17227       return new_var - old_var;
17228     }
17229
17230   if (! RELAX_MIPS16_P (fragp->fr_subtype))
17231     return 0;
17232
17233   if (mips16_extended_frag (fragp, NULL, stretch))
17234     {
17235       if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
17236         return 0;
17237       fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
17238       return 2;
17239     }
17240   else
17241     {
17242       if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
17243         return 0;
17244       fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
17245       return -2;
17246     }
17247
17248   return 0;
17249 }
17250
17251 /* Convert a machine dependent frag.  */
17252
17253 void
17254 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
17255 {
17256   if (RELAX_BRANCH_P (fragp->fr_subtype))
17257     {
17258       char *buf;
17259       unsigned long insn;
17260       expressionS exp;
17261       fixS *fixp;
17262
17263       buf = fragp->fr_literal + fragp->fr_fix;
17264       insn = read_insn (buf);
17265
17266       if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
17267         {
17268           /* We generate a fixup instead of applying it right now
17269              because, if there are linker relaxations, we're going to
17270              need the relocations.  */
17271           exp.X_op = O_symbol;
17272           exp.X_add_symbol = fragp->fr_symbol;
17273           exp.X_add_number = fragp->fr_offset;
17274
17275           fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
17276                               BFD_RELOC_16_PCREL_S2);
17277           fixp->fx_file = fragp->fr_file;
17278           fixp->fx_line = fragp->fr_line;
17279
17280           buf = write_insn (buf, insn);
17281         }
17282       else
17283         {
17284           int i;
17285
17286           as_warn_where (fragp->fr_file, fragp->fr_line,
17287                          _("relaxed out-of-range branch into a jump"));
17288
17289           if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
17290             goto uncond;
17291
17292           if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
17293             {
17294               /* Reverse the branch.  */
17295               switch ((insn >> 28) & 0xf)
17296                 {
17297                 case 4:
17298                   if ((insn & 0xff000000) == 0x47000000
17299                       || (insn & 0xff600000) == 0x45600000)
17300                     {
17301                       /* BZ.df/BNZ.df, BZ.V/BNZ.V can have the condition
17302                          reversed by tweaking bit 23.  */
17303                       insn ^= 0x00800000;
17304                     }
17305                   else
17306                     {
17307                       /* bc[0-3][tf]l? instructions can have the condition
17308                          reversed by tweaking a single TF bit, and their
17309                          opcodes all have 0x4???????.  */
17310                       gas_assert ((insn & 0xf3e00000) == 0x41000000);
17311                       insn ^= 0x00010000;
17312                     }
17313                   break;
17314
17315                 case 0:
17316                   /* bltz       0x04000000      bgez    0x04010000
17317                      bltzal     0x04100000      bgezal  0x04110000  */
17318                   gas_assert ((insn & 0xfc0e0000) == 0x04000000);
17319                   insn ^= 0x00010000;
17320                   break;
17321
17322                 case 1:
17323                   /* beq        0x10000000      bne     0x14000000
17324                      blez       0x18000000      bgtz    0x1c000000  */
17325                   insn ^= 0x04000000;
17326                   break;
17327
17328                 default:
17329                   abort ();
17330                 }
17331             }
17332
17333           if (RELAX_BRANCH_LINK (fragp->fr_subtype))
17334             {
17335               /* Clear the and-link bit.  */
17336               gas_assert ((insn & 0xfc1c0000) == 0x04100000);
17337
17338               /* bltzal         0x04100000      bgezal  0x04110000
17339                  bltzall        0x04120000      bgezall 0x04130000  */
17340               insn &= ~0x00100000;
17341             }
17342
17343           /* Branch over the branch (if the branch was likely) or the
17344              full jump (not likely case).  Compute the offset from the
17345              current instruction to branch to.  */
17346           if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
17347             i = 16;
17348           else
17349             {
17350               /* How many bytes in instructions we've already emitted?  */
17351               i = buf - fragp->fr_literal - fragp->fr_fix;
17352               /* How many bytes in instructions from here to the end?  */
17353               i = fragp->fr_var - i;
17354             }
17355           /* Convert to instruction count.  */
17356           i >>= 2;
17357           /* Branch counts from the next instruction.  */
17358           i--;
17359           insn |= i;
17360           /* Branch over the jump.  */
17361           buf = write_insn (buf, insn);
17362
17363           /* nop */
17364           buf = write_insn (buf, 0);
17365
17366           if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
17367             {
17368               /* beql $0, $0, 2f */
17369               insn = 0x50000000;
17370               /* Compute the PC offset from the current instruction to
17371                  the end of the variable frag.  */
17372               /* How many bytes in instructions we've already emitted?  */
17373               i = buf - fragp->fr_literal - fragp->fr_fix;
17374               /* How many bytes in instructions from here to the end?  */
17375               i = fragp->fr_var - i;
17376               /* Convert to instruction count.  */
17377               i >>= 2;
17378               /* Don't decrement i, because we want to branch over the
17379                  delay slot.  */
17380               insn |= i;
17381
17382               buf = write_insn (buf, insn);
17383               buf = write_insn (buf, 0);
17384             }
17385
17386         uncond:
17387           if (mips_pic == NO_PIC)
17388             {
17389               /* j or jal.  */
17390               insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
17391                       ? 0x0c000000 : 0x08000000);
17392               exp.X_op = O_symbol;
17393               exp.X_add_symbol = fragp->fr_symbol;
17394               exp.X_add_number = fragp->fr_offset;
17395
17396               fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
17397                                   FALSE, BFD_RELOC_MIPS_JMP);
17398               fixp->fx_file = fragp->fr_file;
17399               fixp->fx_line = fragp->fr_line;
17400
17401               buf = write_insn (buf, insn);
17402             }
17403           else
17404             {
17405               unsigned long at = RELAX_BRANCH_AT (fragp->fr_subtype);
17406
17407               /* lw/ld $at, <sym>($gp)  R_MIPS_GOT16 */
17408               insn = HAVE_64BIT_ADDRESSES ? 0xdf800000 : 0x8f800000;
17409               insn |= at << OP_SH_RT;
17410               exp.X_op = O_symbol;
17411               exp.X_add_symbol = fragp->fr_symbol;
17412               exp.X_add_number = fragp->fr_offset;
17413
17414               if (fragp->fr_offset)
17415                 {
17416                   exp.X_add_symbol = make_expr_symbol (&exp);
17417                   exp.X_add_number = 0;
17418                 }
17419
17420               fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
17421                                   FALSE, BFD_RELOC_MIPS_GOT16);
17422               fixp->fx_file = fragp->fr_file;
17423               fixp->fx_line = fragp->fr_line;
17424
17425               buf = write_insn (buf, insn);
17426
17427               if (mips_opts.isa == ISA_MIPS1)
17428                 /* nop */
17429                 buf = write_insn (buf, 0);
17430
17431               /* d/addiu $at, $at, <sym>  R_MIPS_LO16 */
17432               insn = HAVE_64BIT_ADDRESSES ? 0x64000000 : 0x24000000;
17433               insn |= at << OP_SH_RS | at << OP_SH_RT;
17434
17435               fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
17436                                   FALSE, BFD_RELOC_LO16);
17437               fixp->fx_file = fragp->fr_file;
17438               fixp->fx_line = fragp->fr_line;
17439
17440               buf = write_insn (buf, insn);
17441
17442               /* j(al)r $at.  */
17443               if (RELAX_BRANCH_LINK (fragp->fr_subtype))
17444                 insn = 0x0000f809;
17445               else
17446                 insn = 0x00000008;
17447               insn |= at << OP_SH_RS;
17448
17449               buf = write_insn (buf, insn);
17450             }
17451         }
17452
17453       fragp->fr_fix += fragp->fr_var;
17454       gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
17455       return;
17456     }
17457
17458   /* Relax microMIPS branches.  */
17459   if (RELAX_MICROMIPS_P (fragp->fr_subtype))
17460     {
17461       char *buf = fragp->fr_literal + fragp->fr_fix;
17462       bfd_boolean compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
17463       bfd_boolean al = RELAX_MICROMIPS_LINK (fragp->fr_subtype);
17464       int type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
17465       bfd_boolean short_ds;
17466       unsigned long insn;
17467       expressionS exp;
17468       fixS *fixp;
17469
17470       exp.X_op = O_symbol;
17471       exp.X_add_symbol = fragp->fr_symbol;
17472       exp.X_add_number = fragp->fr_offset;
17473
17474       fragp->fr_fix += fragp->fr_var;
17475
17476       /* Handle 16-bit branches that fit or are forced to fit.  */
17477       if (type != 0 && !RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
17478         {
17479           /* We generate a fixup instead of applying it right now,
17480              because if there is linker relaxation, we're going to
17481              need the relocations.  */
17482           if (type == 'D')
17483             fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
17484                                 BFD_RELOC_MICROMIPS_10_PCREL_S1);
17485           else if (type == 'E')
17486             fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
17487                                 BFD_RELOC_MICROMIPS_7_PCREL_S1);
17488           else
17489             abort ();
17490
17491           fixp->fx_file = fragp->fr_file;
17492           fixp->fx_line = fragp->fr_line;
17493
17494           /* These relocations can have an addend that won't fit in
17495              2 octets.  */
17496           fixp->fx_no_overflow = 1;
17497
17498           return;
17499         }
17500
17501       /* Handle 32-bit branches that fit or are forced to fit.  */
17502       if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
17503           || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
17504         {
17505           /* We generate a fixup instead of applying it right now,
17506              because if there is linker relaxation, we're going to
17507              need the relocations.  */
17508           fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
17509                               BFD_RELOC_MICROMIPS_16_PCREL_S1);
17510           fixp->fx_file = fragp->fr_file;
17511           fixp->fx_line = fragp->fr_line;
17512
17513           if (type == 0)
17514             return;
17515         }
17516
17517       /* Relax 16-bit branches to 32-bit branches.  */
17518       if (type != 0)
17519         {
17520           insn = read_compressed_insn (buf, 2);
17521
17522           if ((insn & 0xfc00) == 0xcc00)                /* b16  */
17523             insn = 0x94000000;                          /* beq  */
17524           else if ((insn & 0xdc00) == 0x8c00)           /* beqz16/bnez16  */
17525             {
17526               unsigned long regno;
17527
17528               regno = (insn >> MICROMIPSOP_SH_MD) & MICROMIPSOP_MASK_MD;
17529               regno = micromips_to_32_reg_d_map [regno];
17530               insn = ((insn & 0x2000) << 16) | 0x94000000;      /* beq/bne  */
17531               insn |= regno << MICROMIPSOP_SH_RS;
17532             }
17533           else
17534             abort ();
17535
17536           /* Nothing else to do, just write it out.  */
17537           if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
17538               || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
17539             {
17540               buf = write_compressed_insn (buf, insn, 4);
17541               gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
17542               return;
17543             }
17544         }
17545       else
17546         insn = read_compressed_insn (buf, 4);
17547
17548       /* Relax 32-bit branches to a sequence of instructions.  */
17549       as_warn_where (fragp->fr_file, fragp->fr_line,
17550                      _("relaxed out-of-range branch into a jump"));
17551
17552       /* Set the short-delay-slot bit.  */
17553       short_ds = al && (insn & 0x02000000) != 0;
17554
17555       if (!RELAX_MICROMIPS_UNCOND (fragp->fr_subtype))
17556         {
17557           symbolS *l;
17558
17559           /* Reverse the branch.  */
17560           if ((insn & 0xfc000000) == 0x94000000                 /* beq  */
17561               || (insn & 0xfc000000) == 0xb4000000)             /* bne  */
17562             insn ^= 0x20000000;
17563           else if ((insn & 0xffe00000) == 0x40000000            /* bltz  */
17564                    || (insn & 0xffe00000) == 0x40400000         /* bgez  */
17565                    || (insn & 0xffe00000) == 0x40800000         /* blez  */
17566                    || (insn & 0xffe00000) == 0x40c00000         /* bgtz  */
17567                    || (insn & 0xffe00000) == 0x40a00000         /* bnezc  */
17568                    || (insn & 0xffe00000) == 0x40e00000         /* beqzc  */
17569                    || (insn & 0xffe00000) == 0x40200000         /* bltzal  */
17570                    || (insn & 0xffe00000) == 0x40600000         /* bgezal  */
17571                    || (insn & 0xffe00000) == 0x42200000         /* bltzals  */
17572                    || (insn & 0xffe00000) == 0x42600000)        /* bgezals  */
17573             insn ^= 0x00400000;
17574           else if ((insn & 0xffe30000) == 0x43800000            /* bc1f  */
17575                    || (insn & 0xffe30000) == 0x43a00000         /* bc1t  */
17576                    || (insn & 0xffe30000) == 0x42800000         /* bc2f  */
17577                    || (insn & 0xffe30000) == 0x42a00000)        /* bc2t  */
17578             insn ^= 0x00200000;
17579           else if ((insn & 0xff000000) == 0x83000000            /* BZ.df
17580                                                                    BNZ.df  */
17581                     || (insn & 0xff600000) == 0x81600000)       /* BZ.V
17582                                                                    BNZ.V */
17583             insn ^= 0x00800000;
17584           else
17585             abort ();
17586
17587           if (al)
17588             {
17589               /* Clear the and-link and short-delay-slot bits.  */
17590               gas_assert ((insn & 0xfda00000) == 0x40200000);
17591
17592               /* bltzal  0x40200000     bgezal  0x40600000  */
17593               /* bltzals 0x42200000     bgezals 0x42600000  */
17594               insn &= ~0x02200000;
17595             }
17596
17597           /* Make a label at the end for use with the branch.  */
17598           l = symbol_new (micromips_label_name (), asec, fragp->fr_fix, fragp);
17599           micromips_label_inc ();
17600           S_SET_OTHER (l, ELF_ST_SET_MICROMIPS (S_GET_OTHER (l)));
17601
17602           /* Refer to it.  */
17603           fixp = fix_new (fragp, buf - fragp->fr_literal, 4, l, 0, TRUE,
17604                           BFD_RELOC_MICROMIPS_16_PCREL_S1);
17605           fixp->fx_file = fragp->fr_file;
17606           fixp->fx_line = fragp->fr_line;
17607
17608           /* Branch over the jump.  */
17609           buf = write_compressed_insn (buf, insn, 4);
17610           if (!compact)
17611             /* nop */
17612             buf = write_compressed_insn (buf, 0x0c00, 2);
17613         }
17614
17615       if (mips_pic == NO_PIC)
17616         {
17617           unsigned long jal = short_ds ? 0x74000000 : 0xf4000000; /* jal/s  */
17618
17619           /* j/jal/jals <sym>  R_MICROMIPS_26_S1  */
17620           insn = al ? jal : 0xd4000000;
17621
17622           fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
17623                               BFD_RELOC_MICROMIPS_JMP);
17624           fixp->fx_file = fragp->fr_file;
17625           fixp->fx_line = fragp->fr_line;
17626
17627           buf = write_compressed_insn (buf, insn, 4);
17628           if (compact)
17629             /* nop */
17630             buf = write_compressed_insn (buf, 0x0c00, 2);
17631         }
17632       else
17633         {
17634           unsigned long at = RELAX_MICROMIPS_AT (fragp->fr_subtype);
17635           unsigned long jalr = short_ds ? 0x45e0 : 0x45c0;      /* jalr/s  */
17636           unsigned long jr = compact ? 0x45a0 : 0x4580;         /* jr/c  */
17637
17638           /* lw/ld $at, <sym>($gp)  R_MICROMIPS_GOT16  */
17639           insn = HAVE_64BIT_ADDRESSES ? 0xdc1c0000 : 0xfc1c0000;
17640           insn |= at << MICROMIPSOP_SH_RT;
17641
17642           if (exp.X_add_number)
17643             {
17644               exp.X_add_symbol = make_expr_symbol (&exp);
17645               exp.X_add_number = 0;
17646             }
17647
17648           fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
17649                               BFD_RELOC_MICROMIPS_GOT16);
17650           fixp->fx_file = fragp->fr_file;
17651           fixp->fx_line = fragp->fr_line;
17652
17653           buf = write_compressed_insn (buf, insn, 4);
17654
17655           /* d/addiu $at, $at, <sym>  R_MICROMIPS_LO16  */
17656           insn = HAVE_64BIT_ADDRESSES ? 0x5c000000 : 0x30000000;
17657           insn |= at << MICROMIPSOP_SH_RT | at << MICROMIPSOP_SH_RS;
17658
17659           fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
17660                               BFD_RELOC_MICROMIPS_LO16);
17661           fixp->fx_file = fragp->fr_file;
17662           fixp->fx_line = fragp->fr_line;
17663
17664           buf = write_compressed_insn (buf, insn, 4);
17665
17666           /* jr/jrc/jalr/jalrs $at  */
17667           insn = al ? jalr : jr;
17668           insn |= at << MICROMIPSOP_SH_MJ;
17669
17670           buf = write_compressed_insn (buf, insn, 2);
17671         }
17672
17673       gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
17674       return;
17675     }
17676
17677   if (RELAX_MIPS16_P (fragp->fr_subtype))
17678     {
17679       int type;
17680       const struct mips_int_operand *operand;
17681       offsetT val;
17682       char *buf;
17683       unsigned int user_length, length;
17684       unsigned long insn;
17685       bfd_boolean ext;
17686
17687       type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
17688       operand = mips16_immed_operand (type, FALSE);
17689
17690       ext = RELAX_MIPS16_EXTENDED (fragp->fr_subtype);
17691       val = resolve_symbol_value (fragp->fr_symbol);
17692       if (operand->root.type == OP_PCREL)
17693         {
17694           const struct mips_pcrel_operand *pcrel_op;
17695           addressT addr;
17696
17697           pcrel_op = (const struct mips_pcrel_operand *) operand;
17698           addr = fragp->fr_address + fragp->fr_fix;
17699
17700           /* The rules for the base address of a PC relative reloc are
17701              complicated; see mips16_extended_frag.  */
17702           if (pcrel_op->include_isa_bit)
17703             {
17704               addr += 2;
17705               if (ext)
17706                 addr += 2;
17707               /* Ignore the low bit in the target, since it will be
17708                  set for a text label.  */
17709               val &= -2;
17710             }
17711           else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
17712             addr -= 4;
17713           else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
17714             addr -= 2;
17715
17716           addr &= -(1 << pcrel_op->align_log2);
17717           val -= addr;
17718
17719           /* Make sure the section winds up with the alignment we have
17720              assumed.  */
17721           if (operand->shift > 0)
17722             record_alignment (asec, operand->shift);
17723         }
17724
17725       if (ext
17726           && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
17727               || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
17728         as_warn_where (fragp->fr_file, fragp->fr_line,
17729                        _("extended instruction in delay slot"));
17730
17731       buf = fragp->fr_literal + fragp->fr_fix;
17732
17733       insn = read_compressed_insn (buf, 2);
17734       if (ext)
17735         insn |= MIPS16_EXTEND;
17736
17737       if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
17738         user_length = 4;
17739       else if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
17740         user_length = 2;
17741       else
17742         user_length = 0;
17743
17744       mips16_immed (fragp->fr_file, fragp->fr_line, type,
17745                     BFD_RELOC_UNUSED, val, user_length, &insn);
17746
17747       length = (ext ? 4 : 2);
17748       gas_assert (mips16_opcode_length (insn) == length);
17749       write_compressed_insn (buf, insn, length);
17750       fragp->fr_fix += length;
17751     }
17752   else
17753     {
17754       relax_substateT subtype = fragp->fr_subtype;
17755       bfd_boolean second_longer = (subtype & RELAX_SECOND_LONGER) != 0;
17756       bfd_boolean use_second = (subtype & RELAX_USE_SECOND) != 0;
17757       int first, second;
17758       fixS *fixp;
17759
17760       first = RELAX_FIRST (subtype);
17761       second = RELAX_SECOND (subtype);
17762       fixp = (fixS *) fragp->fr_opcode;
17763
17764       /* If the delay slot chosen does not match the size of the instruction,
17765          then emit a warning.  */
17766       if ((!use_second && (subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0)
17767            || (use_second && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0))
17768         {
17769           relax_substateT s;
17770           const char *msg;
17771
17772           s = subtype & (RELAX_DELAY_SLOT_16BIT
17773                          | RELAX_DELAY_SLOT_SIZE_FIRST
17774                          | RELAX_DELAY_SLOT_SIZE_SECOND);
17775           msg = macro_warning (s);
17776           if (msg != NULL)
17777             as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
17778           subtype &= ~s;
17779         }
17780
17781       /* Possibly emit a warning if we've chosen the longer option.  */
17782       if (use_second == second_longer)
17783         {
17784           relax_substateT s;
17785           const char *msg;
17786
17787           s = (subtype
17788                & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT));
17789           msg = macro_warning (s);
17790           if (msg != NULL)
17791             as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
17792           subtype &= ~s;
17793         }
17794
17795       /* Go through all the fixups for the first sequence.  Disable them
17796          (by marking them as done) if we're going to use the second
17797          sequence instead.  */
17798       while (fixp
17799              && fixp->fx_frag == fragp
17800              && fixp->fx_where < fragp->fr_fix - second)
17801         {
17802           if (subtype & RELAX_USE_SECOND)
17803             fixp->fx_done = 1;
17804           fixp = fixp->fx_next;
17805         }
17806
17807       /* Go through the fixups for the second sequence.  Disable them if
17808          we're going to use the first sequence, otherwise adjust their
17809          addresses to account for the relaxation.  */
17810       while (fixp && fixp->fx_frag == fragp)
17811         {
17812           if (subtype & RELAX_USE_SECOND)
17813             fixp->fx_where -= first;
17814           else
17815             fixp->fx_done = 1;
17816           fixp = fixp->fx_next;
17817         }
17818
17819       /* Now modify the frag contents.  */
17820       if (subtype & RELAX_USE_SECOND)
17821         {
17822           char *start;
17823
17824           start = fragp->fr_literal + fragp->fr_fix - first - second;
17825           memmove (start, start + first, second);
17826           fragp->fr_fix -= first;
17827         }
17828       else
17829         fragp->fr_fix -= second;
17830     }
17831 }
17832
17833 /* This function is called after the relocs have been generated.
17834    We've been storing mips16 text labels as odd.  Here we convert them
17835    back to even for the convenience of the debugger.  */
17836
17837 void
17838 mips_frob_file_after_relocs (void)
17839 {
17840   asymbol **syms;
17841   unsigned int count, i;
17842
17843   syms = bfd_get_outsymbols (stdoutput);
17844   count = bfd_get_symcount (stdoutput);
17845   for (i = 0; i < count; i++, syms++)
17846     if (ELF_ST_IS_COMPRESSED (elf_symbol (*syms)->internal_elf_sym.st_other)
17847         && ((*syms)->value & 1) != 0)
17848       {
17849         (*syms)->value &= ~1;
17850         /* If the symbol has an odd size, it was probably computed
17851            incorrectly, so adjust that as well.  */
17852         if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
17853           ++elf_symbol (*syms)->internal_elf_sym.st_size;
17854       }
17855 }
17856
17857 /* This function is called whenever a label is defined, including fake
17858    labels instantiated off the dot special symbol.  It is used when
17859    handling branch delays; if a branch has a label, we assume we cannot
17860    move it.  This also bumps the value of the symbol by 1 in compressed
17861    code.  */
17862
17863 static void
17864 mips_record_label (symbolS *sym)
17865 {
17866   segment_info_type *si = seg_info (now_seg);
17867   struct insn_label_list *l;
17868
17869   if (free_insn_labels == NULL)
17870     l = (struct insn_label_list *) xmalloc (sizeof *l);
17871   else
17872     {
17873       l = free_insn_labels;
17874       free_insn_labels = l->next;
17875     }
17876
17877   l->label = sym;
17878   l->next = si->label_list;
17879   si->label_list = l;
17880 }
17881
17882 /* This function is called as tc_frob_label() whenever a label is defined
17883    and adds a DWARF-2 record we only want for true labels.  */
17884
17885 void
17886 mips_define_label (symbolS *sym)
17887 {
17888   mips_record_label (sym);
17889   dwarf2_emit_label (sym);
17890 }
17891
17892 /* This function is called by tc_new_dot_label whenever a new dot symbol
17893    is defined.  */
17894
17895 void
17896 mips_add_dot_label (symbolS *sym)
17897 {
17898   mips_record_label (sym);
17899   if (mips_assembling_insn && HAVE_CODE_COMPRESSION)
17900     mips_compressed_mark_label (sym);
17901 }
17902 \f
17903 /* Converting ASE flags from internal to .MIPS.abiflags values.  */
17904 static unsigned int
17905 mips_convert_ase_flags (int ase)
17906 {
17907   unsigned int ext_ases = 0;
17908
17909   if (ase & ASE_DSP)
17910     ext_ases |= AFL_ASE_DSP;
17911   if (ase & ASE_DSPR2)
17912     ext_ases |= AFL_ASE_DSPR2;
17913   if (ase & ASE_EVA)
17914     ext_ases |= AFL_ASE_EVA;
17915   if (ase & ASE_MCU)
17916     ext_ases |= AFL_ASE_MCU;
17917   if (ase & ASE_MDMX)
17918     ext_ases |= AFL_ASE_MDMX;
17919   if (ase & ASE_MIPS3D)
17920     ext_ases |= AFL_ASE_MIPS3D;
17921   if (ase & ASE_MT)
17922     ext_ases |= AFL_ASE_MT;
17923   if (ase & ASE_SMARTMIPS)
17924     ext_ases |= AFL_ASE_SMARTMIPS;
17925   if (ase & ASE_VIRT)
17926     ext_ases |= AFL_ASE_VIRT;
17927   if (ase & ASE_MSA)
17928     ext_ases |= AFL_ASE_MSA;
17929   if (ase & ASE_XPA)
17930     ext_ases |= AFL_ASE_XPA;
17931
17932   return ext_ases;
17933 }
17934 /* Some special processing for a MIPS ELF file.  */
17935
17936 void
17937 mips_elf_final_processing (void)
17938 {
17939   int fpabi;
17940   Elf_Internal_ABIFlags_v0 flags;
17941
17942   flags.version = 0;
17943   flags.isa_rev = 0;
17944   switch (file_mips_opts.isa)
17945     {
17946     case INSN_ISA1:
17947       flags.isa_level = 1;
17948       break;
17949     case INSN_ISA2:
17950       flags.isa_level = 2;
17951       break;
17952     case INSN_ISA3:
17953       flags.isa_level = 3;
17954       break;
17955     case INSN_ISA4:
17956       flags.isa_level = 4;
17957       break;
17958     case INSN_ISA5:
17959       flags.isa_level = 5;
17960       break;
17961     case INSN_ISA32:
17962       flags.isa_level = 32;
17963       flags.isa_rev = 1;
17964       break;
17965     case INSN_ISA32R2:
17966       flags.isa_level = 32;
17967       flags.isa_rev = 2;
17968       break;
17969     case INSN_ISA32R3:
17970       flags.isa_level = 32;
17971       flags.isa_rev = 3;
17972       break;
17973     case INSN_ISA32R5:
17974       flags.isa_level = 32;
17975       flags.isa_rev = 5;
17976       break;
17977     case INSN_ISA32R6:
17978       flags.isa_level = 32;
17979       flags.isa_rev = 6;
17980       break;
17981     case INSN_ISA64:
17982       flags.isa_level = 64;
17983       flags.isa_rev = 1;
17984       break;
17985     case INSN_ISA64R2:
17986       flags.isa_level = 64;
17987       flags.isa_rev = 2;
17988       break;
17989     case INSN_ISA64R3:
17990       flags.isa_level = 64;
17991       flags.isa_rev = 3;
17992       break;
17993     case INSN_ISA64R5:
17994       flags.isa_level = 64;
17995       flags.isa_rev = 5;
17996       break;
17997     case INSN_ISA64R6:
17998       flags.isa_level = 64;
17999       flags.isa_rev = 6;
18000       break;
18001     }
18002
18003   flags.gpr_size = file_mips_opts.gp == 32 ? AFL_REG_32 : AFL_REG_64;
18004   flags.cpr1_size = file_mips_opts.soft_float ? AFL_REG_NONE
18005                     : (file_mips_opts.ase & ASE_MSA) ? AFL_REG_128
18006                     : (file_mips_opts.fp == 64) ? AFL_REG_64
18007                     : AFL_REG_32;
18008   flags.cpr2_size = AFL_REG_NONE;
18009   flags.fp_abi = bfd_elf_get_obj_attr_int (stdoutput, OBJ_ATTR_GNU,
18010                                            Tag_GNU_MIPS_ABI_FP);
18011   flags.isa_ext = bfd_mips_isa_ext (stdoutput);
18012   flags.ases = mips_convert_ase_flags (file_mips_opts.ase);
18013   if (file_ase_mips16)
18014     flags.ases |= AFL_ASE_MIPS16;
18015   if (file_ase_micromips)
18016     flags.ases |= AFL_ASE_MICROMIPS;
18017   flags.flags1 = 0;
18018   if ((ISA_HAS_ODD_SINGLE_FPR (file_mips_opts.isa, file_mips_opts.arch)
18019        || file_mips_opts.fp == 64)
18020       && file_mips_opts.oddspreg)
18021     flags.flags1 |= AFL_FLAGS1_ODDSPREG;
18022   flags.flags2 = 0;
18023
18024   bfd_mips_elf_swap_abiflags_v0_out (stdoutput, &flags,
18025                                      ((Elf_External_ABIFlags_v0 *)
18026                                      mips_flags_frag));
18027
18028   /* Write out the register information.  */
18029   if (mips_abi != N64_ABI)
18030     {
18031       Elf32_RegInfo s;
18032
18033       s.ri_gprmask = mips_gprmask;
18034       s.ri_cprmask[0] = mips_cprmask[0];
18035       s.ri_cprmask[1] = mips_cprmask[1];
18036       s.ri_cprmask[2] = mips_cprmask[2];
18037       s.ri_cprmask[3] = mips_cprmask[3];
18038       /* The gp_value field is set by the MIPS ELF backend.  */
18039
18040       bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
18041                                        ((Elf32_External_RegInfo *)
18042                                         mips_regmask_frag));
18043     }
18044   else
18045     {
18046       Elf64_Internal_RegInfo s;
18047
18048       s.ri_gprmask = mips_gprmask;
18049       s.ri_pad = 0;
18050       s.ri_cprmask[0] = mips_cprmask[0];
18051       s.ri_cprmask[1] = mips_cprmask[1];
18052       s.ri_cprmask[2] = mips_cprmask[2];
18053       s.ri_cprmask[3] = mips_cprmask[3];
18054       /* The gp_value field is set by the MIPS ELF backend.  */
18055
18056       bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
18057                                        ((Elf64_External_RegInfo *)
18058                                         mips_regmask_frag));
18059     }
18060
18061   /* Set the MIPS ELF flag bits.  FIXME: There should probably be some
18062      sort of BFD interface for this.  */
18063   if (mips_any_noreorder)
18064     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
18065   if (mips_pic != NO_PIC)
18066     {
18067       elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
18068       elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
18069     }
18070   if (mips_abicalls)
18071     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
18072
18073   /* Set MIPS ELF flags for ASEs.  Note that not all ASEs have flags
18074      defined at present; this might need to change in future.  */
18075   if (file_ase_mips16)
18076     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
18077   if (file_ase_micromips)
18078     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MICROMIPS;
18079   if (file_mips_opts.ase & ASE_MDMX)
18080     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
18081
18082   /* Set the MIPS ELF ABI flags.  */
18083   if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
18084     elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
18085   else if (mips_abi == O64_ABI)
18086     elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
18087   else if (mips_abi == EABI_ABI)
18088     {
18089       if (file_mips_opts.gp == 64)
18090         elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
18091       else
18092         elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
18093     }
18094   else if (mips_abi == N32_ABI)
18095     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
18096
18097   /* Nothing to do for N64_ABI.  */
18098
18099   if (mips_32bitmode)
18100     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
18101
18102   if (mips_nan2008 == 1)
18103     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NAN2008;
18104
18105   /* 32 bit code with 64 bit FP registers.  */
18106   fpabi = bfd_elf_get_obj_attr_int (stdoutput, OBJ_ATTR_GNU,
18107                                     Tag_GNU_MIPS_ABI_FP);
18108   if (fpabi == Val_GNU_MIPS_ABI_FP_OLD_64)
18109     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_FP64;
18110 }
18111 \f
18112 typedef struct proc {
18113   symbolS *func_sym;
18114   symbolS *func_end_sym;
18115   unsigned long reg_mask;
18116   unsigned long reg_offset;
18117   unsigned long fpreg_mask;
18118   unsigned long fpreg_offset;
18119   unsigned long frame_offset;
18120   unsigned long frame_reg;
18121   unsigned long pc_reg;
18122 } procS;
18123
18124 static procS cur_proc;
18125 static procS *cur_proc_ptr;
18126 static int numprocs;
18127
18128 /* Implement NOP_OPCODE.  We encode a MIPS16 nop as "1", a microMIPS nop
18129    as "2", and a normal nop as "0".  */
18130
18131 #define NOP_OPCODE_MIPS         0
18132 #define NOP_OPCODE_MIPS16       1
18133 #define NOP_OPCODE_MICROMIPS    2
18134
18135 char
18136 mips_nop_opcode (void)
18137 {
18138   if (seg_info (now_seg)->tc_segment_info_data.micromips)
18139     return NOP_OPCODE_MICROMIPS;
18140   else if (seg_info (now_seg)->tc_segment_info_data.mips16)
18141     return NOP_OPCODE_MIPS16;
18142   else
18143     return NOP_OPCODE_MIPS;
18144 }
18145
18146 /* Fill in an rs_align_code fragment.  Unlike elsewhere we want to use
18147    32-bit microMIPS NOPs here (if applicable).  */
18148
18149 void
18150 mips_handle_align (fragS *fragp)
18151 {
18152   char nop_opcode;
18153   char *p;
18154   int bytes, size, excess;
18155   valueT opcode;
18156
18157   if (fragp->fr_type != rs_align_code)
18158     return;
18159
18160   p = fragp->fr_literal + fragp->fr_fix;
18161   nop_opcode = *p;
18162   switch (nop_opcode)
18163     {
18164     case NOP_OPCODE_MICROMIPS:
18165       opcode = micromips_nop32_insn.insn_opcode;
18166       size = 4;
18167       break;
18168     case NOP_OPCODE_MIPS16:
18169       opcode = mips16_nop_insn.insn_opcode;
18170       size = 2;
18171       break;
18172     case NOP_OPCODE_MIPS:
18173     default:
18174       opcode = nop_insn.insn_opcode;
18175       size = 4;
18176       break;
18177     }
18178
18179   bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
18180   excess = bytes % size;
18181
18182   /* Handle the leading part if we're not inserting a whole number of
18183      instructions, and make it the end of the fixed part of the frag.
18184      Try to fit in a short microMIPS NOP if applicable and possible,
18185      and use zeroes otherwise.  */
18186   gas_assert (excess < 4);
18187   fragp->fr_fix += excess;
18188   switch (excess)
18189     {
18190     case 3:
18191       *p++ = '\0';
18192       /* Fall through.  */
18193     case 2:
18194       if (nop_opcode == NOP_OPCODE_MICROMIPS && !mips_opts.insn32)
18195         {
18196           p = write_compressed_insn (p, micromips_nop16_insn.insn_opcode, 2);
18197           break;
18198         }
18199       *p++ = '\0';
18200       /* Fall through.  */
18201     case 1:
18202       *p++ = '\0';
18203       /* Fall through.  */
18204     case 0:
18205       break;
18206     }
18207
18208   md_number_to_chars (p, opcode, size);
18209   fragp->fr_var = size;
18210 }
18211
18212 static long
18213 get_number (void)
18214 {
18215   int negative = 0;
18216   long val = 0;
18217
18218   if (*input_line_pointer == '-')
18219     {
18220       ++input_line_pointer;
18221       negative = 1;
18222     }
18223   if (!ISDIGIT (*input_line_pointer))
18224     as_bad (_("expected simple number"));
18225   if (input_line_pointer[0] == '0')
18226     {
18227       if (input_line_pointer[1] == 'x')
18228         {
18229           input_line_pointer += 2;
18230           while (ISXDIGIT (*input_line_pointer))
18231             {
18232               val <<= 4;
18233               val |= hex_value (*input_line_pointer++);
18234             }
18235           return negative ? -val : val;
18236         }
18237       else
18238         {
18239           ++input_line_pointer;
18240           while (ISDIGIT (*input_line_pointer))
18241             {
18242               val <<= 3;
18243               val |= *input_line_pointer++ - '0';
18244             }
18245           return negative ? -val : val;
18246         }
18247     }
18248   if (!ISDIGIT (*input_line_pointer))
18249     {
18250       printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
18251               *input_line_pointer, *input_line_pointer);
18252       as_warn (_("invalid number"));
18253       return -1;
18254     }
18255   while (ISDIGIT (*input_line_pointer))
18256     {
18257       val *= 10;
18258       val += *input_line_pointer++ - '0';
18259     }
18260   return negative ? -val : val;
18261 }
18262
18263 /* The .file directive; just like the usual .file directive, but there
18264    is an initial number which is the ECOFF file index.  In the non-ECOFF
18265    case .file implies DWARF-2.  */
18266
18267 static void
18268 s_mips_file (int x ATTRIBUTE_UNUSED)
18269 {
18270   static int first_file_directive = 0;
18271
18272   if (ECOFF_DEBUGGING)
18273     {
18274       get_number ();
18275       s_app_file (0);
18276     }
18277   else
18278     {
18279       char *filename;
18280
18281       filename = dwarf2_directive_file (0);
18282
18283       /* Versions of GCC up to 3.1 start files with a ".file"
18284          directive even for stabs output.  Make sure that this
18285          ".file" is handled.  Note that you need a version of GCC
18286          after 3.1 in order to support DWARF-2 on MIPS.  */
18287       if (filename != NULL && ! first_file_directive)
18288         {
18289           (void) new_logical_line (filename, -1);
18290           s_app_file_string (filename, 0);
18291         }
18292       first_file_directive = 1;
18293     }
18294 }
18295
18296 /* The .loc directive, implying DWARF-2.  */
18297
18298 static void
18299 s_mips_loc (int x ATTRIBUTE_UNUSED)
18300 {
18301   if (!ECOFF_DEBUGGING)
18302     dwarf2_directive_loc (0);
18303 }
18304
18305 /* The .end directive.  */
18306
18307 static void
18308 s_mips_end (int x ATTRIBUTE_UNUSED)
18309 {
18310   symbolS *p;
18311
18312   /* Following functions need their own .frame and .cprestore directives.  */
18313   mips_frame_reg_valid = 0;
18314   mips_cprestore_valid = 0;
18315
18316   if (!is_end_of_line[(unsigned char) *input_line_pointer])
18317     {
18318       p = get_symbol ();
18319       demand_empty_rest_of_line ();
18320     }
18321   else
18322     p = NULL;
18323
18324   if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
18325     as_warn (_(".end not in text section"));
18326
18327   if (!cur_proc_ptr)
18328     {
18329       as_warn (_(".end directive without a preceding .ent directive"));
18330       demand_empty_rest_of_line ();
18331       return;
18332     }
18333
18334   if (p != NULL)
18335     {
18336       gas_assert (S_GET_NAME (p));
18337       if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
18338         as_warn (_(".end symbol does not match .ent symbol"));
18339
18340       if (debug_type == DEBUG_STABS)
18341         stabs_generate_asm_endfunc (S_GET_NAME (p),
18342                                     S_GET_NAME (p));
18343     }
18344   else
18345     as_warn (_(".end directive missing or unknown symbol"));
18346
18347   /* Create an expression to calculate the size of the function.  */
18348   if (p && cur_proc_ptr)
18349     {
18350       OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
18351       expressionS *exp = xmalloc (sizeof (expressionS));
18352
18353       obj->size = exp;
18354       exp->X_op = O_subtract;
18355       exp->X_add_symbol = symbol_temp_new_now ();
18356       exp->X_op_symbol = p;
18357       exp->X_add_number = 0;
18358
18359       cur_proc_ptr->func_end_sym = exp->X_add_symbol;
18360     }
18361
18362   /* Generate a .pdr section.  */
18363   if (!ECOFF_DEBUGGING && mips_flag_pdr)
18364     {
18365       segT saved_seg = now_seg;
18366       subsegT saved_subseg = now_subseg;
18367       expressionS exp;
18368       char *fragp;
18369
18370 #ifdef md_flush_pending_output
18371       md_flush_pending_output ();
18372 #endif
18373
18374       gas_assert (pdr_seg);
18375       subseg_set (pdr_seg, 0);
18376
18377       /* Write the symbol.  */
18378       exp.X_op = O_symbol;
18379       exp.X_add_symbol = p;
18380       exp.X_add_number = 0;
18381       emit_expr (&exp, 4);
18382
18383       fragp = frag_more (7 * 4);
18384
18385       md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
18386       md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
18387       md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
18388       md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
18389       md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
18390       md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
18391       md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
18392
18393       subseg_set (saved_seg, saved_subseg);
18394     }
18395
18396   cur_proc_ptr = NULL;
18397 }
18398
18399 /* The .aent and .ent directives.  */
18400
18401 static void
18402 s_mips_ent (int aent)
18403 {
18404   symbolS *symbolP;
18405
18406   symbolP = get_symbol ();
18407   if (*input_line_pointer == ',')
18408     ++input_line_pointer;
18409   SKIP_WHITESPACE ();
18410   if (ISDIGIT (*input_line_pointer)
18411       || *input_line_pointer == '-')
18412     get_number ();
18413
18414   if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
18415     as_warn (_(".ent or .aent not in text section"));
18416
18417   if (!aent && cur_proc_ptr)
18418     as_warn (_("missing .end"));
18419
18420   if (!aent)
18421     {
18422       /* This function needs its own .frame and .cprestore directives.  */
18423       mips_frame_reg_valid = 0;
18424       mips_cprestore_valid = 0;
18425
18426       cur_proc_ptr = &cur_proc;
18427       memset (cur_proc_ptr, '\0', sizeof (procS));
18428
18429       cur_proc_ptr->func_sym = symbolP;
18430
18431       ++numprocs;
18432
18433       if (debug_type == DEBUG_STABS)
18434         stabs_generate_asm_func (S_GET_NAME (symbolP),
18435                                  S_GET_NAME (symbolP));
18436     }
18437
18438   symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
18439
18440   demand_empty_rest_of_line ();
18441 }
18442
18443 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
18444    then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
18445    s_mips_frame is used so that we can set the PDR information correctly.
18446    We can't use the ecoff routines because they make reference to the ecoff
18447    symbol table (in the mdebug section).  */
18448
18449 static void
18450 s_mips_frame (int ignore ATTRIBUTE_UNUSED)
18451 {
18452   if (ECOFF_DEBUGGING)
18453     s_ignore (ignore);
18454   else
18455     {
18456       long val;
18457
18458       if (cur_proc_ptr == (procS *) NULL)
18459         {
18460           as_warn (_(".frame outside of .ent"));
18461           demand_empty_rest_of_line ();
18462           return;
18463         }
18464
18465       cur_proc_ptr->frame_reg = tc_get_register (1);
18466
18467       SKIP_WHITESPACE ();
18468       if (*input_line_pointer++ != ','
18469           || get_absolute_expression_and_terminator (&val) != ',')
18470         {
18471           as_warn (_("bad .frame directive"));
18472           --input_line_pointer;
18473           demand_empty_rest_of_line ();
18474           return;
18475         }
18476
18477       cur_proc_ptr->frame_offset = val;
18478       cur_proc_ptr->pc_reg = tc_get_register (0);
18479
18480       demand_empty_rest_of_line ();
18481     }
18482 }
18483
18484 /* The .fmask and .mask directives. If the mdebug section is present
18485    (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
18486    embedded targets, s_mips_mask is used so that we can set the PDR
18487    information correctly. We can't use the ecoff routines because they
18488    make reference to the ecoff symbol table (in the mdebug section).  */
18489
18490 static void
18491 s_mips_mask (int reg_type)
18492 {
18493   if (ECOFF_DEBUGGING)
18494     s_ignore (reg_type);
18495   else
18496     {
18497       long mask, off;
18498
18499       if (cur_proc_ptr == (procS *) NULL)
18500         {
18501           as_warn (_(".mask/.fmask outside of .ent"));
18502           demand_empty_rest_of_line ();
18503           return;
18504         }
18505
18506       if (get_absolute_expression_and_terminator (&mask) != ',')
18507         {
18508           as_warn (_("bad .mask/.fmask directive"));
18509           --input_line_pointer;
18510           demand_empty_rest_of_line ();
18511           return;
18512         }
18513
18514       off = get_absolute_expression ();
18515
18516       if (reg_type == 'F')
18517         {
18518           cur_proc_ptr->fpreg_mask = mask;
18519           cur_proc_ptr->fpreg_offset = off;
18520         }
18521       else
18522         {
18523           cur_proc_ptr->reg_mask = mask;
18524           cur_proc_ptr->reg_offset = off;
18525         }
18526
18527       demand_empty_rest_of_line ();
18528     }
18529 }
18530
18531 /* A table describing all the processors gas knows about.  Names are
18532    matched in the order listed.
18533
18534    To ease comparison, please keep this table in the same order as
18535    gcc's mips_cpu_info_table[].  */
18536 static const struct mips_cpu_info mips_cpu_info_table[] =
18537 {
18538   /* Entries for generic ISAs */
18539   { "mips1",          MIPS_CPU_IS_ISA, 0,       ISA_MIPS1,    CPU_R3000 },
18540   { "mips2",          MIPS_CPU_IS_ISA, 0,       ISA_MIPS2,    CPU_R6000 },
18541   { "mips3",          MIPS_CPU_IS_ISA, 0,       ISA_MIPS3,    CPU_R4000 },
18542   { "mips4",          MIPS_CPU_IS_ISA, 0,       ISA_MIPS4,    CPU_R8000 },
18543   { "mips5",          MIPS_CPU_IS_ISA, 0,       ISA_MIPS5,    CPU_MIPS5 },
18544   { "mips32",         MIPS_CPU_IS_ISA, 0,       ISA_MIPS32,   CPU_MIPS32 },
18545   { "mips32r2",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS32R2, CPU_MIPS32R2 },
18546   { "mips32r3",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS32R3, CPU_MIPS32R3 },
18547   { "mips32r5",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS32R5, CPU_MIPS32R5 },
18548   { "mips32r6",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS32R6, CPU_MIPS32R6 },
18549   { "mips64",         MIPS_CPU_IS_ISA, 0,       ISA_MIPS64,   CPU_MIPS64 },
18550   { "mips64r2",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS64R2, CPU_MIPS64R2 },
18551   { "mips64r3",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS64R3, CPU_MIPS64R3 },
18552   { "mips64r5",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS64R5, CPU_MIPS64R5 },
18553   { "mips64r6",       MIPS_CPU_IS_ISA, 0,       ISA_MIPS64R6, CPU_MIPS64R6 },
18554
18555   /* MIPS I */
18556   { "r3000",          0, 0,                     ISA_MIPS1,    CPU_R3000 },
18557   { "r2000",          0, 0,                     ISA_MIPS1,    CPU_R3000 },
18558   { "r3900",          0, 0,                     ISA_MIPS1,    CPU_R3900 },
18559
18560   /* MIPS II */
18561   { "r6000",          0, 0,                     ISA_MIPS2,    CPU_R6000 },
18562
18563   /* MIPS III */
18564   { "r4000",          0, 0,                     ISA_MIPS3,    CPU_R4000 },
18565   { "r4010",          0, 0,                     ISA_MIPS2,    CPU_R4010 },
18566   { "vr4100",         0, 0,                     ISA_MIPS3,    CPU_VR4100 },
18567   { "vr4111",         0, 0,                     ISA_MIPS3,    CPU_R4111 },
18568   { "vr4120",         0, 0,                     ISA_MIPS3,    CPU_VR4120 },
18569   { "vr4130",         0, 0,                     ISA_MIPS3,    CPU_VR4120 },
18570   { "vr4181",         0, 0,                     ISA_MIPS3,    CPU_R4111 },
18571   { "vr4300",         0, 0,                     ISA_MIPS3,    CPU_R4300 },
18572   { "r4400",          0, 0,                     ISA_MIPS3,    CPU_R4400 },
18573   { "r4600",          0, 0,                     ISA_MIPS3,    CPU_R4600 },
18574   { "orion",          0, 0,                     ISA_MIPS3,    CPU_R4600 },
18575   { "r4650",          0, 0,                     ISA_MIPS3,    CPU_R4650 },
18576   { "r5900",          0, 0,                     ISA_MIPS3,    CPU_R5900 },
18577   /* ST Microelectronics Loongson 2E and 2F cores */
18578   { "loongson2e",     0, 0,                     ISA_MIPS3,    CPU_LOONGSON_2E },
18579   { "loongson2f",     0, 0,                     ISA_MIPS3,    CPU_LOONGSON_2F },
18580
18581   /* MIPS IV */
18582   { "r8000",          0, 0,                     ISA_MIPS4,    CPU_R8000 },
18583   { "r10000",         0, 0,                     ISA_MIPS4,    CPU_R10000 },
18584   { "r12000",         0, 0,                     ISA_MIPS4,    CPU_R12000 },
18585   { "r14000",         0, 0,                     ISA_MIPS4,    CPU_R14000 },
18586   { "r16000",         0, 0,                     ISA_MIPS4,    CPU_R16000 },
18587   { "vr5000",         0, 0,                     ISA_MIPS4,    CPU_R5000 },
18588   { "vr5400",         0, 0,                     ISA_MIPS4,    CPU_VR5400 },
18589   { "vr5500",         0, 0,                     ISA_MIPS4,    CPU_VR5500 },
18590   { "rm5200",         0, 0,                     ISA_MIPS4,    CPU_R5000 },
18591   { "rm5230",         0, 0,                     ISA_MIPS4,    CPU_R5000 },
18592   { "rm5231",         0, 0,                     ISA_MIPS4,    CPU_R5000 },
18593   { "rm5261",         0, 0,                     ISA_MIPS4,    CPU_R5000 },
18594   { "rm5721",         0, 0,                     ISA_MIPS4,    CPU_R5000 },
18595   { "rm7000",         0, 0,                     ISA_MIPS4,    CPU_RM7000 },
18596   { "rm9000",         0, 0,                     ISA_MIPS4,    CPU_RM9000 },
18597
18598   /* MIPS 32 */
18599   { "4kc",            0, 0,                     ISA_MIPS32,   CPU_MIPS32 },
18600   { "4km",            0, 0,                     ISA_MIPS32,   CPU_MIPS32 },
18601   { "4kp",            0, 0,                     ISA_MIPS32,   CPU_MIPS32 },
18602   { "4ksc",           0, ASE_SMARTMIPS,         ISA_MIPS32,   CPU_MIPS32 },
18603
18604   /* MIPS 32 Release 2 */
18605   { "4kec",           0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18606   { "4kem",           0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18607   { "4kep",           0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18608   { "4ksd",           0, ASE_SMARTMIPS,         ISA_MIPS32R2, CPU_MIPS32R2 },
18609   { "m4k",            0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18610   { "m4kp",           0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18611   { "m14k",           0, ASE_MCU,               ISA_MIPS32R2, CPU_MIPS32R2 },
18612   { "m14kc",          0, ASE_MCU,               ISA_MIPS32R2, CPU_MIPS32R2 },
18613   { "m14ke",          0, ASE_DSP | ASE_DSPR2 | ASE_MCU,
18614                                                 ISA_MIPS32R2, CPU_MIPS32R2 },
18615   { "m14kec",         0, ASE_DSP | ASE_DSPR2 | ASE_MCU,
18616                                                 ISA_MIPS32R2, CPU_MIPS32R2 },
18617   { "24kc",           0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18618   { "24kf2_1",        0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18619   { "24kf",           0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18620   { "24kf1_1",        0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18621   /* Deprecated forms of the above.  */
18622   { "24kfx",          0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18623   { "24kx",           0, 0,                     ISA_MIPS32R2, CPU_MIPS32R2 },
18624   /* 24KE is a 24K with DSP ASE, other ASEs are optional.  */
18625   { "24kec",          0, ASE_DSP,               ISA_MIPS32R2, CPU_MIPS32R2 },
18626   { "24kef2_1",       0, ASE_DSP,               ISA_MIPS32R2, CPU_MIPS32R2 },
18627   { "24kef",          0, ASE_DSP,               ISA_MIPS32R2, CPU_MIPS32R2 },
18628   { "24kef1_1",       0, ASE_DSP,               ISA_MIPS32R2, CPU_MIPS32R2 },
18629   /* Deprecated forms of the above.  */
18630   { "24kefx",         0, ASE_DSP,               ISA_MIPS32R2, CPU_MIPS32R2 },
18631   { "24kex",          0, ASE_DSP,               ISA_MIPS32R2, CPU_MIPS32R2 },
18632   /* 34K is a 24K with DSP and MT ASE, other ASEs are optional.  */
18633   { "34kc",           0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18634   { "34kf2_1",        0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18635   { "34kf",           0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18636   { "34kf1_1",        0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18637   /* Deprecated forms of the above.  */
18638   { "34kfx",          0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18639   { "34kx",           0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18640   /* 34Kn is a 34kc without DSP.  */
18641   { "34kn",           0, ASE_MT,                ISA_MIPS32R2, CPU_MIPS32R2 },
18642   /* 74K with DSP and DSPR2 ASE, other ASEs are optional.  */
18643   { "74kc",           0, ASE_DSP | ASE_DSPR2,   ISA_MIPS32R2, CPU_MIPS32R2 },
18644   { "74kf2_1",        0, ASE_DSP | ASE_DSPR2,   ISA_MIPS32R2, CPU_MIPS32R2 },
18645   { "74kf",           0, ASE_DSP | ASE_DSPR2,   ISA_MIPS32R2, CPU_MIPS32R2 },
18646   { "74kf1_1",        0, ASE_DSP | ASE_DSPR2,   ISA_MIPS32R2, CPU_MIPS32R2 },
18647   { "74kf3_2",        0, ASE_DSP | ASE_DSPR2,   ISA_MIPS32R2, CPU_MIPS32R2 },
18648   /* Deprecated forms of the above.  */
18649   { "74kfx",          0, ASE_DSP | ASE_DSPR2,   ISA_MIPS32R2, CPU_MIPS32R2 },
18650   { "74kx",           0, ASE_DSP | ASE_DSPR2,   ISA_MIPS32R2, CPU_MIPS32R2 },
18651   /* 1004K cores are multiprocessor versions of the 34K.  */
18652   { "1004kc",         0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18653   { "1004kf2_1",      0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18654   { "1004kf",         0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18655   { "1004kf1_1",      0, ASE_DSP | ASE_MT,      ISA_MIPS32R2, CPU_MIPS32R2 },
18656   /* P5600 with EVA and Virtualization ASEs, other ASEs are optional.  */
18657   { "p5600",          0, ASE_VIRT | ASE_EVA | ASE_XPA,  ISA_MIPS32R5, CPU_MIPS32R5 },
18658
18659   /* MIPS 64 */
18660   { "5kc",            0, 0,                     ISA_MIPS64,   CPU_MIPS64 },
18661   { "5kf",            0, 0,                     ISA_MIPS64,   CPU_MIPS64 },
18662   { "20kc",           0, ASE_MIPS3D,            ISA_MIPS64,   CPU_MIPS64 },
18663   { "25kf",           0, ASE_MIPS3D,            ISA_MIPS64,   CPU_MIPS64 },
18664
18665   /* Broadcom SB-1 CPU core */
18666   { "sb1",            0, ASE_MIPS3D | ASE_MDMX, ISA_MIPS64,   CPU_SB1 },
18667   /* Broadcom SB-1A CPU core */
18668   { "sb1a",           0, ASE_MIPS3D | ASE_MDMX, ISA_MIPS64,   CPU_SB1 },
18669   
18670   { "loongson3a",     0, 0,                     ISA_MIPS64R2, CPU_LOONGSON_3A },
18671
18672   /* MIPS 64 Release 2 */
18673
18674   /* Cavium Networks Octeon CPU core */
18675   { "octeon",         0, 0,                     ISA_MIPS64R2, CPU_OCTEON },
18676   { "octeon+",        0, 0,                     ISA_MIPS64R2, CPU_OCTEONP },
18677   { "octeon2",        0, 0,                     ISA_MIPS64R2, CPU_OCTEON2 },
18678
18679   /* RMI Xlr */
18680   { "xlr",            0, 0,                     ISA_MIPS64,   CPU_XLR },
18681
18682   /* Broadcom XLP.
18683      XLP is mostly like XLR, with the prominent exception that it is
18684      MIPS64R2 rather than MIPS64.  */
18685   { "xlp",            0, 0,                     ISA_MIPS64R2, CPU_XLR },
18686
18687   /* End marker */
18688   { NULL, 0, 0, 0, 0 }
18689 };
18690
18691
18692 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
18693    with a final "000" replaced by "k".  Ignore case.
18694
18695    Note: this function is shared between GCC and GAS.  */
18696
18697 static bfd_boolean
18698 mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
18699 {
18700   while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
18701     given++, canonical++;
18702
18703   return ((*given == 0 && *canonical == 0)
18704           || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
18705 }
18706
18707
18708 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
18709    CPU name.  We've traditionally allowed a lot of variation here.
18710
18711    Note: this function is shared between GCC and GAS.  */
18712
18713 static bfd_boolean
18714 mips_matching_cpu_name_p (const char *canonical, const char *given)
18715 {
18716   /* First see if the name matches exactly, or with a final "000"
18717      turned into "k".  */
18718   if (mips_strict_matching_cpu_name_p (canonical, given))
18719     return TRUE;
18720
18721   /* If not, try comparing based on numerical designation alone.
18722      See if GIVEN is an unadorned number, or 'r' followed by a number.  */
18723   if (TOLOWER (*given) == 'r')
18724     given++;
18725   if (!ISDIGIT (*given))
18726     return FALSE;
18727
18728   /* Skip over some well-known prefixes in the canonical name,
18729      hoping to find a number there too.  */
18730   if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
18731     canonical += 2;
18732   else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
18733     canonical += 2;
18734   else if (TOLOWER (canonical[0]) == 'r')
18735     canonical += 1;
18736
18737   return mips_strict_matching_cpu_name_p (canonical, given);
18738 }
18739
18740
18741 /* Parse an option that takes the name of a processor as its argument.
18742    OPTION is the name of the option and CPU_STRING is the argument.
18743    Return the corresponding processor enumeration if the CPU_STRING is
18744    recognized, otherwise report an error and return null.
18745
18746    A similar function exists in GCC.  */
18747
18748 static const struct mips_cpu_info *
18749 mips_parse_cpu (const char *option, const char *cpu_string)
18750 {
18751   const struct mips_cpu_info *p;
18752
18753   /* 'from-abi' selects the most compatible architecture for the given
18754      ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs.  For the
18755      EABIs, we have to decide whether we're using the 32-bit or 64-bit
18756      version.  Look first at the -mgp options, if given, otherwise base
18757      the choice on MIPS_DEFAULT_64BIT.
18758
18759      Treat NO_ABI like the EABIs.  One reason to do this is that the
18760      plain 'mips' and 'mips64' configs have 'from-abi' as their default
18761      architecture.  This code picks MIPS I for 'mips' and MIPS III for
18762      'mips64', just as we did in the days before 'from-abi'.  */
18763   if (strcasecmp (cpu_string, "from-abi") == 0)
18764     {
18765       if (ABI_NEEDS_32BIT_REGS (mips_abi))
18766         return mips_cpu_info_from_isa (ISA_MIPS1);
18767
18768       if (ABI_NEEDS_64BIT_REGS (mips_abi))
18769         return mips_cpu_info_from_isa (ISA_MIPS3);
18770
18771       if (file_mips_opts.gp >= 0)
18772         return mips_cpu_info_from_isa (file_mips_opts.gp == 32
18773                                        ? ISA_MIPS1 : ISA_MIPS3);
18774
18775       return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
18776                                      ? ISA_MIPS3
18777                                      : ISA_MIPS1);
18778     }
18779
18780   /* 'default' has traditionally been a no-op.  Probably not very useful.  */
18781   if (strcasecmp (cpu_string, "default") == 0)
18782     return 0;
18783
18784   for (p = mips_cpu_info_table; p->name != 0; p++)
18785     if (mips_matching_cpu_name_p (p->name, cpu_string))
18786       return p;
18787
18788   as_bad (_("bad value (%s) for %s"), cpu_string, option);
18789   return 0;
18790 }
18791
18792 /* Return the canonical processor information for ISA (a member of the
18793    ISA_MIPS* enumeration).  */
18794
18795 static const struct mips_cpu_info *
18796 mips_cpu_info_from_isa (int isa)
18797 {
18798   int i;
18799
18800   for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
18801     if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA)
18802         && isa == mips_cpu_info_table[i].isa)
18803       return (&mips_cpu_info_table[i]);
18804
18805   return NULL;
18806 }
18807
18808 static const struct mips_cpu_info *
18809 mips_cpu_info_from_arch (int arch)
18810 {
18811   int i;
18812
18813   for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
18814     if (arch == mips_cpu_info_table[i].cpu)
18815       return (&mips_cpu_info_table[i]);
18816
18817   return NULL;
18818 }
18819 \f
18820 static void
18821 show (FILE *stream, const char *string, int *col_p, int *first_p)
18822 {
18823   if (*first_p)
18824     {
18825       fprintf (stream, "%24s", "");
18826       *col_p = 24;
18827     }
18828   else
18829     {
18830       fprintf (stream, ", ");
18831       *col_p += 2;
18832     }
18833
18834   if (*col_p + strlen (string) > 72)
18835     {
18836       fprintf (stream, "\n%24s", "");
18837       *col_p = 24;
18838     }
18839
18840   fprintf (stream, "%s", string);
18841   *col_p += strlen (string);
18842
18843   *first_p = 0;
18844 }
18845
18846 void
18847 md_show_usage (FILE *stream)
18848 {
18849   int column, first;
18850   size_t i;
18851
18852   fprintf (stream, _("\
18853 MIPS options:\n\
18854 -EB                     generate big endian output\n\
18855 -EL                     generate little endian output\n\
18856 -g, -g2                 do not remove unneeded NOPs or swap branches\n\
18857 -G NUM                  allow referencing objects up to NUM bytes\n\
18858                         implicitly with the gp register [default 8]\n"));
18859   fprintf (stream, _("\
18860 -mips1                  generate MIPS ISA I instructions\n\
18861 -mips2                  generate MIPS ISA II instructions\n\
18862 -mips3                  generate MIPS ISA III instructions\n\
18863 -mips4                  generate MIPS ISA IV instructions\n\
18864 -mips5                  generate MIPS ISA V instructions\n\
18865 -mips32                 generate MIPS32 ISA instructions\n\
18866 -mips32r2               generate MIPS32 release 2 ISA instructions\n\
18867 -mips32r3               generate MIPS32 release 3 ISA instructions\n\
18868 -mips32r5               generate MIPS32 release 5 ISA instructions\n\
18869 -mips32r6               generate MIPS32 release 6 ISA instructions\n\
18870 -mips64                 generate MIPS64 ISA instructions\n\
18871 -mips64r2               generate MIPS64 release 2 ISA instructions\n\
18872 -mips64r3               generate MIPS64 release 3 ISA instructions\n\
18873 -mips64r5               generate MIPS64 release 5 ISA instructions\n\
18874 -mips64r6               generate MIPS64 release 6 ISA instructions\n\
18875 -march=CPU/-mtune=CPU   generate code/schedule for CPU, where CPU is one of:\n"));
18876
18877   first = 1;
18878
18879   for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
18880     show (stream, mips_cpu_info_table[i].name, &column, &first);
18881   show (stream, "from-abi", &column, &first);
18882   fputc ('\n', stream);
18883
18884   fprintf (stream, _("\
18885 -mCPU                   equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
18886 -no-mCPU                don't generate code specific to CPU.\n\
18887                         For -mCPU and -no-mCPU, CPU must be one of:\n"));
18888
18889   first = 1;
18890
18891   show (stream, "3900", &column, &first);
18892   show (stream, "4010", &column, &first);
18893   show (stream, "4100", &column, &first);
18894   show (stream, "4650", &column, &first);
18895   fputc ('\n', stream);
18896
18897   fprintf (stream, _("\
18898 -mips16                 generate mips16 instructions\n\
18899 -no-mips16              do not generate mips16 instructions\n"));
18900   fprintf (stream, _("\
18901 -mmicromips             generate microMIPS instructions\n\
18902 -mno-micromips          do not generate microMIPS instructions\n"));
18903   fprintf (stream, _("\
18904 -msmartmips             generate smartmips instructions\n\
18905 -mno-smartmips          do not generate smartmips instructions\n"));  
18906   fprintf (stream, _("\
18907 -mdsp                   generate DSP instructions\n\
18908 -mno-dsp                do not generate DSP instructions\n"));
18909   fprintf (stream, _("\
18910 -mdspr2                 generate DSP R2 instructions\n\
18911 -mno-dspr2              do not generate DSP R2 instructions\n"));
18912   fprintf (stream, _("\
18913 -mmt                    generate MT instructions\n\
18914 -mno-mt                 do not generate MT instructions\n"));
18915   fprintf (stream, _("\
18916 -mmcu                   generate MCU instructions\n\
18917 -mno-mcu                do not generate MCU instructions\n"));
18918   fprintf (stream, _("\
18919 -mmsa                   generate MSA instructions\n\
18920 -mno-msa                do not generate MSA instructions\n"));
18921   fprintf (stream, _("\
18922 -mxpa                   generate eXtended Physical Address (XPA) instructions\n\
18923 -mno-xpa                do not generate eXtended Physical Address (XPA) instructions\n"));
18924   fprintf (stream, _("\
18925 -mvirt                  generate Virtualization instructions\n\
18926 -mno-virt               do not generate Virtualization instructions\n"));
18927   fprintf (stream, _("\
18928 -minsn32                only generate 32-bit microMIPS instructions\n\
18929 -mno-insn32             generate all microMIPS instructions\n"));
18930   fprintf (stream, _("\
18931 -mfix-loongson2f-jump   work around Loongson2F JUMP instructions\n\
18932 -mfix-loongson2f-nop    work around Loongson2F NOP errata\n\
18933 -mfix-vr4120            work around certain VR4120 errata\n\
18934 -mfix-vr4130            work around VR4130 mflo/mfhi errata\n\
18935 -mfix-24k               insert a nop after ERET and DERET instructions\n\
18936 -mfix-cn63xxp1          work around CN63XXP1 PREF errata\n\
18937 -mgp32                  use 32-bit GPRs, regardless of the chosen ISA\n\
18938 -mfp32                  use 32-bit FPRs, regardless of the chosen ISA\n\
18939 -msym32                 assume all symbols have 32-bit values\n\
18940 -O0                     remove unneeded NOPs, do not swap branches\n\
18941 -O                      remove unneeded NOPs and swap branches\n\
18942 --trap, --no-break      trap exception on div by 0 and mult overflow\n\
18943 --break, --no-trap      break exception on div by 0 and mult overflow\n"));
18944   fprintf (stream, _("\
18945 -mhard-float            allow floating-point instructions\n\
18946 -msoft-float            do not allow floating-point instructions\n\
18947 -msingle-float          only allow 32-bit floating-point operations\n\
18948 -mdouble-float          allow 32-bit and 64-bit floating-point operations\n\
18949 --[no-]construct-floats [dis]allow floating point values to be constructed\n\
18950 --[no-]relax-branch     [dis]allow out-of-range branches to be relaxed\n\
18951 -mnan=ENCODING          select an IEEE 754 NaN encoding convention, either of:\n"));
18952
18953   first = 1;
18954
18955   show (stream, "legacy", &column, &first);
18956   show (stream, "2008", &column, &first);
18957
18958   fputc ('\n', stream);
18959
18960   fprintf (stream, _("\
18961 -KPIC, -call_shared     generate SVR4 position independent code\n\
18962 -call_nonpic            generate non-PIC code that can operate with DSOs\n\
18963 -mvxworks-pic           generate VxWorks position independent code\n\
18964 -non_shared             do not generate code that can operate with DSOs\n\
18965 -xgot                   assume a 32 bit GOT\n\
18966 -mpdr, -mno-pdr         enable/disable creation of .pdr sections\n\
18967 -mshared, -mno-shared   disable/enable .cpload optimization for\n\
18968                         position dependent (non shared) code\n\
18969 -mabi=ABI               create ABI conformant object file for:\n"));
18970
18971   first = 1;
18972
18973   show (stream, "32", &column, &first);
18974   show (stream, "o64", &column, &first);
18975   show (stream, "n32", &column, &first);
18976   show (stream, "64", &column, &first);
18977   show (stream, "eabi", &column, &first);
18978
18979   fputc ('\n', stream);
18980
18981   fprintf (stream, _("\
18982 -32                     create o32 ABI object file (default)\n\
18983 -n32                    create n32 ABI object file\n\
18984 -64                     create 64 ABI object file\n"));
18985 }
18986
18987 #ifdef TE_IRIX
18988 enum dwarf2_format
18989 mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
18990 {
18991   if (HAVE_64BIT_SYMBOLS)
18992     return dwarf2_format_64bit_irix;
18993   else
18994     return dwarf2_format_32bit;
18995 }
18996 #endif
18997
18998 int
18999 mips_dwarf2_addr_size (void)
19000 {
19001   if (HAVE_64BIT_OBJECTS)
19002     return 8;
19003   else
19004     return 4;
19005 }
19006
19007 /* Standard calling conventions leave the CFA at SP on entry.  */
19008 void
19009 mips_cfi_frame_initial_instructions (void)
19010 {
19011   cfi_add_CFA_def_cfa_register (SP);
19012 }
19013
19014 int
19015 tc_mips_regname_to_dw2regnum (char *regname)
19016 {
19017   unsigned int regnum = -1;
19018   unsigned int reg;
19019
19020   if (reg_lookup (&regname, RTYPE_GP | RTYPE_NUM, &reg))
19021     regnum = reg;
19022
19023   return regnum;
19024 }
19025
19026 /* Implement CONVERT_SYMBOLIC_ATTRIBUTE.
19027    Given a symbolic attribute NAME, return the proper integer value.
19028    Returns -1 if the attribute is not known.  */
19029
19030 int
19031 mips_convert_symbolic_attribute (const char *name)
19032 {
19033   static const struct
19034   {
19035     const char * name;
19036     const int    tag;
19037   }
19038   attribute_table[] =
19039     {
19040 #define T(tag) {#tag, tag}
19041       T (Tag_GNU_MIPS_ABI_FP),
19042       T (Tag_GNU_MIPS_ABI_MSA),
19043 #undef T
19044     };
19045   unsigned int i;
19046
19047   if (name == NULL)
19048     return -1;
19049
19050   for (i = 0; i < ARRAY_SIZE (attribute_table); i++)
19051     if (streq (name, attribute_table[i].name))
19052       return attribute_table[i].tag;
19053
19054   return -1;
19055 }
19056
19057 void
19058 md_mips_end (void)
19059 {
19060   int fpabi = Val_GNU_MIPS_ABI_FP_ANY;
19061
19062   mips_emit_delays ();
19063   if (cur_proc_ptr)
19064     as_warn (_("missing .end at end of assembly"));
19065
19066   /* Just in case no code was emitted, do the consistency check.  */
19067   file_mips_check_options ();
19068
19069   /* Set a floating-point ABI if the user did not.  */
19070   if (obj_elf_seen_attribute (OBJ_ATTR_GNU, Tag_GNU_MIPS_ABI_FP))
19071     {
19072       /* Perform consistency checks on the floating-point ABI.  */
19073       fpabi = bfd_elf_get_obj_attr_int (stdoutput, OBJ_ATTR_GNU,
19074                                         Tag_GNU_MIPS_ABI_FP);
19075       if (fpabi != Val_GNU_MIPS_ABI_FP_ANY)
19076         check_fpabi (fpabi);
19077     }
19078   else
19079     {
19080       /* Soft-float gets precedence over single-float, the two options should
19081          not be used together so this should not matter.  */
19082       if (file_mips_opts.soft_float == 1)
19083         fpabi = Val_GNU_MIPS_ABI_FP_SOFT;
19084       /* Single-float gets precedence over all double_float cases.  */
19085       else if (file_mips_opts.single_float == 1)
19086         fpabi = Val_GNU_MIPS_ABI_FP_SINGLE;
19087       else
19088         {
19089           switch (file_mips_opts.fp)
19090             {
19091             case 32:
19092               if (file_mips_opts.gp == 32)
19093                 fpabi = Val_GNU_MIPS_ABI_FP_DOUBLE;
19094               break;
19095             case 0:
19096               fpabi = Val_GNU_MIPS_ABI_FP_XX;
19097               break;
19098             case 64:
19099               if (file_mips_opts.gp == 32 && !file_mips_opts.oddspreg)
19100                 fpabi = Val_GNU_MIPS_ABI_FP_64A;
19101               else if (file_mips_opts.gp == 32)
19102                 fpabi = Val_GNU_MIPS_ABI_FP_64;
19103               else
19104                 fpabi = Val_GNU_MIPS_ABI_FP_DOUBLE;
19105               break;
19106             }
19107         }
19108
19109       bfd_elf_add_obj_attr_int (stdoutput, OBJ_ATTR_GNU,
19110                                 Tag_GNU_MIPS_ABI_FP, fpabi);
19111     }
19112 }