gas/
[external/binutils.git] / gas / config / tc-mips.c
1 /* tc-mips.c -- assemble code for a MIPS chip.
2    Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3    2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4    Free Software Foundation, Inc.
5    Contributed by the OSF and Ralph Campbell.
6    Written by Keith Knowles and Ralph Campbell, working independently.
7    Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
8    Support.
9
10    This file is part of GAS.
11
12    GAS is free software; you can redistribute it and/or modify
13    it under the terms of the GNU General Public License as published by
14    the Free Software Foundation; either version 3, or (at your option)
15    any later version.
16
17    GAS is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20    GNU General Public License for more details.
21
22    You should have received a copy of the GNU General Public License
23    along with GAS; see the file COPYING.  If not, write to the Free
24    Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
25    02110-1301, USA.  */
26
27 #include "as.h"
28 #include "config.h"
29 #include "subsegs.h"
30 #include "safe-ctype.h"
31
32 #include "opcode/mips.h"
33 #include "itbl-ops.h"
34 #include "dwarf2dbg.h"
35 #include "dw2gencfi.h"
36
37 #ifdef DEBUG
38 #define DBG(x) printf x
39 #else
40 #define DBG(x)
41 #endif
42
43 #ifdef OBJ_MAYBE_ELF
44 /* Clean up namespace so we can include obj-elf.h too.  */
45 static int mips_output_flavor (void);
46 static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
47 #undef OBJ_PROCESS_STAB
48 #undef OUTPUT_FLAVOR
49 #undef S_GET_ALIGN
50 #undef S_GET_SIZE
51 #undef S_SET_ALIGN
52 #undef S_SET_SIZE
53 #undef obj_frob_file
54 #undef obj_frob_file_after_relocs
55 #undef obj_frob_symbol
56 #undef obj_pop_insert
57 #undef obj_sec_sym_ok_for_reloc
58 #undef OBJ_COPY_SYMBOL_ATTRIBUTES
59
60 #include "obj-elf.h"
61 /* Fix any of them that we actually care about.  */
62 #undef OUTPUT_FLAVOR
63 #define OUTPUT_FLAVOR mips_output_flavor()
64 #endif
65
66 #if defined (OBJ_ELF)
67 #include "elf/mips.h"
68 #endif
69
70 #ifndef ECOFF_DEBUGGING
71 #define NO_ECOFF_DEBUGGING
72 #define ECOFF_DEBUGGING 0
73 #endif
74
75 int mips_flag_mdebug = -1;
76
77 /* Control generation of .pdr sections.  Off by default on IRIX: the native
78    linker doesn't know about and discards them, but relocations against them
79    remain, leading to rld crashes.  */
80 #ifdef TE_IRIX
81 int mips_flag_pdr = FALSE;
82 #else
83 int mips_flag_pdr = TRUE;
84 #endif
85
86 #include "ecoff.h"
87
88 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
89 static char *mips_regmask_frag;
90 #endif
91
92 #define ZERO 0
93 #define ATREG 1
94 #define TREG 24
95 #define PIC_CALL_REG 25
96 #define KT0 26
97 #define KT1 27
98 #define GP  28
99 #define SP  29
100 #define FP  30
101 #define RA  31
102
103 #define ILLEGAL_REG (32)
104
105 #define AT  mips_opts.at
106
107 /* Allow override of standard little-endian ECOFF format.  */
108
109 #ifndef ECOFF_LITTLE_FORMAT
110 #define ECOFF_LITTLE_FORMAT "ecoff-littlemips"
111 #endif
112
113 extern int target_big_endian;
114
115 /* The name of the readonly data section.  */
116 #define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_ecoff_flavour \
117                             ? ".rdata" \
118                             : OUTPUT_FLAVOR == bfd_target_coff_flavour \
119                             ? ".rdata" \
120                             : OUTPUT_FLAVOR == bfd_target_elf_flavour \
121                             ? ".rodata" \
122                             : (abort (), ""))
123
124 /* Ways in which an instruction can be "appended" to the output.  */
125 enum append_method {
126   /* Just add it normally.  */
127   APPEND_ADD,
128
129   /* Add it normally and then add a nop.  */
130   APPEND_ADD_WITH_NOP,
131
132   /* Turn an instruction with a delay slot into a "compact" version.  */
133   APPEND_ADD_COMPACT,
134
135   /* Insert the instruction before the last one.  */
136   APPEND_SWAP
137 };
138
139 /* Information about an instruction, including its format, operands
140    and fixups.  */
141 struct mips_cl_insn
142 {
143   /* The opcode's entry in mips_opcodes or mips16_opcodes.  */
144   const struct mips_opcode *insn_mo;
145
146   /* True if this is a mips16 instruction and if we want the extended
147      form of INSN_MO.  */
148   bfd_boolean use_extend;
149
150   /* The 16-bit extension instruction to use when USE_EXTEND is true.  */
151   unsigned short extend;
152
153   /* The 16-bit or 32-bit bitstring of the instruction itself.  This is
154      a copy of INSN_MO->match with the operands filled in.  */
155   unsigned long insn_opcode;
156
157   /* The frag that contains the instruction.  */
158   struct frag *frag;
159
160   /* The offset into FRAG of the first instruction byte.  */
161   long where;
162
163   /* The relocs associated with the instruction, if any.  */
164   fixS *fixp[3];
165
166   /* True if this entry cannot be moved from its current position.  */
167   unsigned int fixed_p : 1;
168
169   /* True if this instruction occurred in a .set noreorder block.  */
170   unsigned int noreorder_p : 1;
171
172   /* True for mips16 instructions that jump to an absolute address.  */
173   unsigned int mips16_absolute_jump_p : 1;
174
175   /* True if this instruction is complete.  */
176   unsigned int complete_p : 1;
177 };
178
179 /* The ABI to use.  */
180 enum mips_abi_level
181 {
182   NO_ABI = 0,
183   O32_ABI,
184   O64_ABI,
185   N32_ABI,
186   N64_ABI,
187   EABI_ABI
188 };
189
190 /* MIPS ABI we are using for this output file.  */
191 static enum mips_abi_level mips_abi = NO_ABI;
192
193 /* Whether or not we have code that can call pic code.  */
194 int mips_abicalls = FALSE;
195
196 /* Whether or not we have code which can be put into a shared
197    library.  */
198 static bfd_boolean mips_in_shared = TRUE;
199
200 /* This is the set of options which may be modified by the .set
201    pseudo-op.  We use a struct so that .set push and .set pop are more
202    reliable.  */
203
204 struct mips_set_options
205 {
206   /* MIPS ISA (Instruction Set Architecture) level.  This is set to -1
207      if it has not been initialized.  Changed by `.set mipsN', and the
208      -mipsN command line option, and the default CPU.  */
209   int isa;
210   /* Enabled Application Specific Extensions (ASEs).  These are set to -1
211      if they have not been initialized.  Changed by `.set <asename>', by
212      command line options, and based on the default architecture.  */
213   int ase_mips3d;
214   int ase_mdmx;
215   int ase_smartmips;
216   int ase_dsp;
217   int ase_dspr2;
218   int ase_mt;
219   /* Whether we are assembling for the mips16 processor.  0 if we are
220      not, 1 if we are, and -1 if the value has not been initialized.
221      Changed by `.set mips16' and `.set nomips16', and the -mips16 and
222      -nomips16 command line options, and the default CPU.  */
223   int mips16;
224   /* Non-zero if we should not reorder instructions.  Changed by `.set
225      reorder' and `.set noreorder'.  */
226   int noreorder;
227   /* Non-zero if we should not permit the register designated "assembler
228      temporary" to be used in instructions.  The value is the register
229      number, normally $at ($1).  Changed by `.set at=REG', `.set noat'
230      (same as `.set at=$0') and `.set at' (same as `.set at=$1').  */
231   unsigned int at;
232   /* Non-zero if we should warn when a macro instruction expands into
233      more than one machine instruction.  Changed by `.set nomacro' and
234      `.set macro'.  */
235   int warn_about_macros;
236   /* Non-zero if we should not move instructions.  Changed by `.set
237      move', `.set volatile', `.set nomove', and `.set novolatile'.  */
238   int nomove;
239   /* Non-zero if we should not optimize branches by moving the target
240      of the branch into the delay slot.  Actually, we don't perform
241      this optimization anyhow.  Changed by `.set bopt' and `.set
242      nobopt'.  */
243   int nobopt;
244   /* Non-zero if we should not autoextend mips16 instructions.
245      Changed by `.set autoextend' and `.set noautoextend'.  */
246   int noautoextend;
247   /* Restrict general purpose registers and floating point registers
248      to 32 bit.  This is initially determined when -mgp32 or -mfp32
249      is passed but can changed if the assembler code uses .set mipsN.  */
250   int gp32;
251   int fp32;
252   /* MIPS architecture (CPU) type.  Changed by .set arch=FOO, the -march
253      command line option, and the default CPU.  */
254   int arch;
255   /* True if ".set sym32" is in effect.  */
256   bfd_boolean sym32;
257   /* True if floating-point operations are not allowed.  Changed by .set
258      softfloat or .set hardfloat, by command line options -msoft-float or
259      -mhard-float.  The default is false.  */
260   bfd_boolean soft_float;
261
262   /* True if only single-precision floating-point operations are allowed.
263      Changed by .set singlefloat or .set doublefloat, command-line options
264      -msingle-float or -mdouble-float.  The default is false.  */
265   bfd_boolean single_float;
266 };
267
268 /* This is the struct we use to hold the current set of options.  Note
269    that we must set the isa field to ISA_UNKNOWN and the ASE fields to
270    -1 to indicate that they have not been initialized.  */
271
272 /* True if -mgp32 was passed.  */
273 static int file_mips_gp32 = -1;
274
275 /* True if -mfp32 was passed.  */
276 static int file_mips_fp32 = -1;
277
278 /* 1 if -msoft-float, 0 if -mhard-float.  The default is 0.  */
279 static int file_mips_soft_float = 0;
280
281 /* 1 if -msingle-float, 0 if -mdouble-float.  The default is 0.   */
282 static int file_mips_single_float = 0;
283
284 static struct mips_set_options mips_opts =
285 {
286   /* isa */ ISA_UNKNOWN, /* ase_mips3d */ -1, /* ase_mdmx */ -1,
287   /* ase_smartmips */ 0, /* ase_dsp */ -1, /* ase_dspr2 */ -1, /* ase_mt */ -1,
288   /* mips16 */ -1, /* noreorder */ 0, /* at */ ATREG,
289   /* warn_about_macros */ 0, /* nomove */ 0, /* nobopt */ 0,
290   /* noautoextend */ 0, /* gp32 */ 0, /* fp32 */ 0, /* arch */ CPU_UNKNOWN,
291   /* sym32 */ FALSE, /* soft_float */ FALSE, /* single_float */ FALSE
292 };
293
294 /* These variables are filled in with the masks of registers used.
295    The object format code reads them and puts them in the appropriate
296    place.  */
297 unsigned long mips_gprmask;
298 unsigned long mips_cprmask[4];
299
300 /* MIPS ISA we are using for this output file.  */
301 static int file_mips_isa = ISA_UNKNOWN;
302
303 /* True if any MIPS16 code was produced.  */
304 static int file_ase_mips16;
305
306 #define ISA_SUPPORTS_MIPS16E (mips_opts.isa == ISA_MIPS32               \
307                               || mips_opts.isa == ISA_MIPS32R2          \
308                               || mips_opts.isa == ISA_MIPS64            \
309                               || mips_opts.isa == ISA_MIPS64R2)
310
311 /* True if we want to create R_MIPS_JALR for jalr $25.  */
312 #ifdef TE_IRIX
313 #define MIPS_JALR_HINT_P(EXPR) HAVE_NEWABI
314 #else
315 /* As a GNU extension, we use R_MIPS_JALR for o32 too.  However,
316    because there's no place for any addend, the only acceptable
317    expression is a bare symbol.  */
318 #define MIPS_JALR_HINT_P(EXPR) \
319   (!HAVE_IN_PLACE_ADDENDS \
320    || ((EXPR)->X_op == O_symbol && (EXPR)->X_add_number == 0))
321 #endif
322
323 /* True if -mips3d was passed or implied by arguments passed on the
324    command line (e.g., by -march).  */
325 static int file_ase_mips3d;
326
327 /* True if -mdmx was passed or implied by arguments passed on the
328    command line (e.g., by -march).  */
329 static int file_ase_mdmx;
330
331 /* True if -msmartmips was passed or implied by arguments passed on the
332    command line (e.g., by -march).  */
333 static int file_ase_smartmips;
334
335 #define ISA_SUPPORTS_SMARTMIPS (mips_opts.isa == ISA_MIPS32             \
336                                 || mips_opts.isa == ISA_MIPS32R2)
337
338 /* True if -mdsp was passed or implied by arguments passed on the
339    command line (e.g., by -march).  */
340 static int file_ase_dsp;
341
342 #define ISA_SUPPORTS_DSP_ASE (mips_opts.isa == ISA_MIPS32R2             \
343                               || mips_opts.isa == ISA_MIPS64R2)
344
345 #define ISA_SUPPORTS_DSP64_ASE (mips_opts.isa == ISA_MIPS64R2)
346
347 /* True if -mdspr2 was passed or implied by arguments passed on the
348    command line (e.g., by -march).  */
349 static int file_ase_dspr2;
350
351 #define ISA_SUPPORTS_DSPR2_ASE (mips_opts.isa == ISA_MIPS32R2           \
352                                 || mips_opts.isa == ISA_MIPS64R2)
353
354 /* True if -mmt was passed or implied by arguments passed on the
355    command line (e.g., by -march).  */
356 static int file_ase_mt;
357
358 #define ISA_SUPPORTS_MT_ASE (mips_opts.isa == ISA_MIPS32R2              \
359                              || mips_opts.isa == ISA_MIPS64R2)
360
361 /* The argument of the -march= flag.  The architecture we are assembling.  */
362 static int file_mips_arch = CPU_UNKNOWN;
363 static const char *mips_arch_string;
364
365 /* The argument of the -mtune= flag.  The architecture for which we
366    are optimizing.  */
367 static int mips_tune = CPU_UNKNOWN;
368 static const char *mips_tune_string;
369
370 /* True when generating 32-bit code for a 64-bit processor.  */
371 static int mips_32bitmode = 0;
372
373 /* True if the given ABI requires 32-bit registers.  */
374 #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
375
376 /* Likewise 64-bit registers.  */
377 #define ABI_NEEDS_64BIT_REGS(ABI)       \
378   ((ABI) == N32_ABI                     \
379    || (ABI) == N64_ABI                  \
380    || (ABI) == O64_ABI)
381
382 /*  Return true if ISA supports 64 bit wide gp registers.  */
383 #define ISA_HAS_64BIT_REGS(ISA)         \
384   ((ISA) == ISA_MIPS3                   \
385    || (ISA) == ISA_MIPS4                \
386    || (ISA) == ISA_MIPS5                \
387    || (ISA) == ISA_MIPS64               \
388    || (ISA) == ISA_MIPS64R2)
389
390 /*  Return true if ISA supports 64 bit wide float registers.  */
391 #define ISA_HAS_64BIT_FPRS(ISA)         \
392   ((ISA) == ISA_MIPS3                   \
393    || (ISA) == ISA_MIPS4                \
394    || (ISA) == ISA_MIPS5                \
395    || (ISA) == ISA_MIPS32R2             \
396    || (ISA) == ISA_MIPS64               \
397    || (ISA) == ISA_MIPS64R2)
398
399 /* Return true if ISA supports 64-bit right rotate (dror et al.)
400    instructions.  */
401 #define ISA_HAS_DROR(ISA)               \
402   ((ISA) == ISA_MIPS64R2)
403
404 /* Return true if ISA supports 32-bit right rotate (ror et al.)
405    instructions.  */
406 #define ISA_HAS_ROR(ISA)                \
407   ((ISA) == ISA_MIPS32R2                \
408    || (ISA) == ISA_MIPS64R2             \
409    || mips_opts.ase_smartmips)
410
411 /* Return true if ISA supports single-precision floats in odd registers.  */
412 #define ISA_HAS_ODD_SINGLE_FPR(ISA)     \
413   ((ISA) == ISA_MIPS32                  \
414    || (ISA) == ISA_MIPS32R2             \
415    || (ISA) == ISA_MIPS64               \
416    || (ISA) == ISA_MIPS64R2)
417
418 /* Return true if ISA supports move to/from high part of a 64-bit
419    floating-point register. */
420 #define ISA_HAS_MXHC1(ISA)              \
421   ((ISA) == ISA_MIPS32R2                \
422    || (ISA) == ISA_MIPS64R2)
423
424 #define HAVE_32BIT_GPRS                            \
425     (mips_opts.gp32 || !ISA_HAS_64BIT_REGS (mips_opts.isa))
426
427 #define HAVE_32BIT_FPRS                            \
428     (mips_opts.fp32 || !ISA_HAS_64BIT_FPRS (mips_opts.isa))
429
430 #define HAVE_64BIT_GPRS (!HAVE_32BIT_GPRS)
431 #define HAVE_64BIT_FPRS (!HAVE_32BIT_FPRS)
432
433 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
434
435 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
436
437 /* True if relocations are stored in-place.  */
438 #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
439
440 /* The ABI-derived address size.  */
441 #define HAVE_64BIT_ADDRESSES \
442   (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
443 #define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
444
445 /* The size of symbolic constants (i.e., expressions of the form
446    "SYMBOL" or "SYMBOL + OFFSET").  */
447 #define HAVE_32BIT_SYMBOLS \
448   (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
449 #define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
450
451 /* Addresses are loaded in different ways, depending on the address size
452    in use.  The n32 ABI Documentation also mandates the use of additions
453    with overflow checking, but existing implementations don't follow it.  */
454 #define ADDRESS_ADD_INSN                                                \
455    (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
456
457 #define ADDRESS_ADDI_INSN                                               \
458    (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
459
460 #define ADDRESS_LOAD_INSN                                               \
461    (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
462
463 #define ADDRESS_STORE_INSN                                              \
464    (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
465
466 /* Return true if the given CPU supports the MIPS16 ASE.  */
467 #define CPU_HAS_MIPS16(cpu)                                             \
468    (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0          \
469     || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
470
471 /* True if CPU has a dror instruction.  */
472 #define CPU_HAS_DROR(CPU)       ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
473
474 /* True if CPU has a ror instruction.  */
475 #define CPU_HAS_ROR(CPU)        CPU_HAS_DROR (CPU)
476
477 /* True if CPU has seq/sne and seqi/snei instructions.  */
478 #define CPU_HAS_SEQ(CPU)        ((CPU) == CPU_OCTEON)
479
480 /* True if CPU does not implement the all the coprocessor insns.  For these
481    CPUs only those COP insns are accepted that are explicitly marked to be
482    available on the CPU.  ISA membership for COP insns is ignored.  */
483 #define NO_ISA_COP(CPU)         ((CPU) == CPU_OCTEON)
484
485 /* True if mflo and mfhi can be immediately followed by instructions
486    which write to the HI and LO registers.
487
488    According to MIPS specifications, MIPS ISAs I, II, and III need
489    (at least) two instructions between the reads of HI/LO and
490    instructions which write them, and later ISAs do not.  Contradicting
491    the MIPS specifications, some MIPS IV processor user manuals (e.g.
492    the UM for the NEC Vr5000) document needing the instructions between
493    HI/LO reads and writes, as well.  Therefore, we declare only MIPS32,
494    MIPS64 and later ISAs to have the interlocks, plus any specific
495    earlier-ISA CPUs for which CPU documentation declares that the
496    instructions are really interlocked.  */
497 #define hilo_interlocks \
498   (mips_opts.isa == ISA_MIPS32                        \
499    || mips_opts.isa == ISA_MIPS32R2                   \
500    || mips_opts.isa == ISA_MIPS64                     \
501    || mips_opts.isa == ISA_MIPS64R2                   \
502    || mips_opts.arch == CPU_R4010                     \
503    || mips_opts.arch == CPU_R10000                    \
504    || mips_opts.arch == CPU_R12000                    \
505    || mips_opts.arch == CPU_R14000                    \
506    || mips_opts.arch == CPU_R16000                    \
507    || mips_opts.arch == CPU_RM7000                    \
508    || mips_opts.arch == CPU_VR5500                    \
509    )
510
511 /* Whether the processor uses hardware interlocks to protect reads
512    from the GPRs after they are loaded from memory, and thus does not
513    require nops to be inserted.  This applies to instructions marked
514    INSN_LOAD_MEMORY_DELAY.  These nops are only required at MIPS ISA
515    level I.  */
516 #define gpr_interlocks \
517   (mips_opts.isa != ISA_MIPS1  \
518    || mips_opts.arch == CPU_R3900)
519
520 /* Whether the processor uses hardware interlocks to avoid delays
521    required by coprocessor instructions, and thus does not require
522    nops to be inserted.  This applies to instructions marked
523    INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
524    between instructions marked INSN_WRITE_COND_CODE and ones marked
525    INSN_READ_COND_CODE.  These nops are only required at MIPS ISA
526    levels I, II, and III.  */
527 /* Itbl support may require additional care here.  */
528 #define cop_interlocks                                \
529   ((mips_opts.isa != ISA_MIPS1                        \
530     && mips_opts.isa != ISA_MIPS2                     \
531     && mips_opts.isa != ISA_MIPS3)                    \
532    || mips_opts.arch == CPU_R4300                     \
533    )
534
535 /* Whether the processor uses hardware interlocks to protect reads
536    from coprocessor registers after they are loaded from memory, and
537    thus does not require nops to be inserted.  This applies to
538    instructions marked INSN_COPROC_MEMORY_DELAY.  These nops are only
539    requires at MIPS ISA level I.  */
540 #define cop_mem_interlocks (mips_opts.isa != ISA_MIPS1)
541
542 /* Is this a mfhi or mflo instruction?  */
543 #define MF_HILO_INSN(PINFO) \
544   ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
545
546 /* Returns true for a (non floating-point) coprocessor instruction.  Reading
547    or writing the condition code is only possible on the coprocessors and
548    these insns are not marked with INSN_COP.  Thus for these insns use the
549    condition-code flags.  */
550 #define COP_INSN(PINFO)                                                 \
551   (PINFO != INSN_MACRO                                                  \
552    && ((PINFO) & (FP_S | FP_D)) == 0                                    \
553    && ((PINFO) & (INSN_COP | INSN_READ_COND_CODE | INSN_WRITE_COND_CODE)))
554
555 /* MIPS PIC level.  */
556
557 enum mips_pic_level mips_pic;
558
559 /* 1 if we should generate 32 bit offsets from the $gp register in
560    SVR4_PIC mode.  Currently has no meaning in other modes.  */
561 static int mips_big_got = 0;
562
563 /* 1 if trap instructions should used for overflow rather than break
564    instructions.  */
565 static int mips_trap = 0;
566
567 /* 1 if double width floating point constants should not be constructed
568    by assembling two single width halves into two single width floating
569    point registers which just happen to alias the double width destination
570    register.  On some architectures this aliasing can be disabled by a bit
571    in the status register, and the setting of this bit cannot be determined
572    automatically at assemble time.  */
573 static int mips_disable_float_construction;
574
575 /* Non-zero if any .set noreorder directives were used.  */
576
577 static int mips_any_noreorder;
578
579 /* Non-zero if nops should be inserted when the register referenced in
580    an mfhi/mflo instruction is read in the next two instructions.  */
581 static int mips_7000_hilo_fix;
582
583 /* The size of objects in the small data section.  */
584 static unsigned int g_switch_value = 8;
585 /* Whether the -G option was used.  */
586 static int g_switch_seen = 0;
587
588 #define N_RMASK 0xc4
589 #define N_VFP   0xd4
590
591 /* If we can determine in advance that GP optimization won't be
592    possible, we can skip the relaxation stuff that tries to produce
593    GP-relative references.  This makes delay slot optimization work
594    better.
595
596    This function can only provide a guess, but it seems to work for
597    gcc output.  It needs to guess right for gcc, otherwise gcc
598    will put what it thinks is a GP-relative instruction in a branch
599    delay slot.
600
601    I don't know if a fix is needed for the SVR4_PIC mode.  I've only
602    fixed it for the non-PIC mode.  KR 95/04/07  */
603 static int nopic_need_relax (symbolS *, int);
604
605 /* handle of the OPCODE hash table */
606 static struct hash_control *op_hash = NULL;
607
608 /* The opcode hash table we use for the mips16.  */
609 static struct hash_control *mips16_op_hash = NULL;
610
611 /* This array holds the chars that always start a comment.  If the
612     pre-processor is disabled, these aren't very useful */
613 const char comment_chars[] = "#";
614
615 /* This array holds the chars that only start a comment at the beginning of
616    a line.  If the line seems to have the form '# 123 filename'
617    .line and .file directives will appear in the pre-processed output */
618 /* Note that input_file.c hand checks for '#' at the beginning of the
619    first line of the input file.  This is because the compiler outputs
620    #NO_APP at the beginning of its output.  */
621 /* Also note that C style comments are always supported.  */
622 const char line_comment_chars[] = "#";
623
624 /* This array holds machine specific line separator characters.  */
625 const char line_separator_chars[] = ";";
626
627 /* Chars that can be used to separate mant from exp in floating point nums */
628 const char EXP_CHARS[] = "eE";
629
630 /* Chars that mean this number is a floating point constant */
631 /* As in 0f12.456 */
632 /* or    0d1.2345e12 */
633 const char FLT_CHARS[] = "rRsSfFdDxXpP";
634
635 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
636    changed in read.c .  Ideally it shouldn't have to know about it at all,
637    but nothing is ideal around here.
638  */
639
640 static char *insn_error;
641
642 static int auto_align = 1;
643
644 /* When outputting SVR4 PIC code, the assembler needs to know the
645    offset in the stack frame from which to restore the $gp register.
646    This is set by the .cprestore pseudo-op, and saved in this
647    variable.  */
648 static offsetT mips_cprestore_offset = -1;
649
650 /* Similar for NewABI PIC code, where $gp is callee-saved.  NewABI has some
651    more optimizations, it can use a register value instead of a memory-saved
652    offset and even an other register than $gp as global pointer.  */
653 static offsetT mips_cpreturn_offset = -1;
654 static int mips_cpreturn_register = -1;
655 static int mips_gp_register = GP;
656 static int mips_gprel_offset = 0;
657
658 /* Whether mips_cprestore_offset has been set in the current function
659    (or whether it has already been warned about, if not).  */
660 static int mips_cprestore_valid = 0;
661
662 /* This is the register which holds the stack frame, as set by the
663    .frame pseudo-op.  This is needed to implement .cprestore.  */
664 static int mips_frame_reg = SP;
665
666 /* Whether mips_frame_reg has been set in the current function
667    (or whether it has already been warned about, if not).  */
668 static int mips_frame_reg_valid = 0;
669
670 /* To output NOP instructions correctly, we need to keep information
671    about the previous two instructions.  */
672
673 /* Whether we are optimizing.  The default value of 2 means to remove
674    unneeded NOPs and swap branch instructions when possible.  A value
675    of 1 means to not swap branches.  A value of 0 means to always
676    insert NOPs.  */
677 static int mips_optimize = 2;
678
679 /* Debugging level.  -g sets this to 2.  -gN sets this to N.  -g0 is
680    equivalent to seeing no -g option at all.  */
681 static int mips_debug = 0;
682
683 /* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata.  */
684 #define MAX_VR4130_NOPS 4
685
686 /* The maximum number of NOPs needed to fill delay slots.  */
687 #define MAX_DELAY_NOPS 2
688
689 /* The maximum number of NOPs needed for any purpose.  */
690 #define MAX_NOPS 4
691
692 /* A list of previous instructions, with index 0 being the most recent.
693    We need to look back MAX_NOPS instructions when filling delay slots
694    or working around processor errata.  We need to look back one
695    instruction further if we're thinking about using history[0] to
696    fill a branch delay slot.  */
697 static struct mips_cl_insn history[1 + MAX_NOPS];
698
699 /* Nop instructions used by emit_nop.  */
700 static struct mips_cl_insn nop_insn, mips16_nop_insn;
701
702 /* The appropriate nop for the current mode.  */
703 #define NOP_INSN (mips_opts.mips16 ? &mips16_nop_insn : &nop_insn)
704
705 /* If this is set, it points to a frag holding nop instructions which
706    were inserted before the start of a noreorder section.  If those
707    nops turn out to be unnecessary, the size of the frag can be
708    decreased.  */
709 static fragS *prev_nop_frag;
710
711 /* The number of nop instructions we created in prev_nop_frag.  */
712 static int prev_nop_frag_holds;
713
714 /* The number of nop instructions that we know we need in
715    prev_nop_frag.  */
716 static int prev_nop_frag_required;
717
718 /* The number of instructions we've seen since prev_nop_frag.  */
719 static int prev_nop_frag_since;
720
721 /* For ECOFF and ELF, relocations against symbols are done in two
722    parts, with a HI relocation and a LO relocation.  Each relocation
723    has only 16 bits of space to store an addend.  This means that in
724    order for the linker to handle carries correctly, it must be able
725    to locate both the HI and the LO relocation.  This means that the
726    relocations must appear in order in the relocation table.
727
728    In order to implement this, we keep track of each unmatched HI
729    relocation.  We then sort them so that they immediately precede the
730    corresponding LO relocation.  */
731
732 struct mips_hi_fixup
733 {
734   /* Next HI fixup.  */
735   struct mips_hi_fixup *next;
736   /* This fixup.  */
737   fixS *fixp;
738   /* The section this fixup is in.  */
739   segT seg;
740 };
741
742 /* The list of unmatched HI relocs.  */
743
744 static struct mips_hi_fixup *mips_hi_fixup_list;
745
746 /* The frag containing the last explicit relocation operator.
747    Null if explicit relocations have not been used.  */
748
749 static fragS *prev_reloc_op_frag;
750
751 /* Map normal MIPS register numbers to mips16 register numbers.  */
752
753 #define X ILLEGAL_REG
754 static const int mips32_to_16_reg_map[] =
755 {
756   X, X, 2, 3, 4, 5, 6, 7,
757   X, X, X, X, X, X, X, X,
758   0, 1, X, X, X, X, X, X,
759   X, X, X, X, X, X, X, X
760 };
761 #undef X
762
763 /* Map mips16 register numbers to normal MIPS register numbers.  */
764
765 static const unsigned int mips16_to_32_reg_map[] =
766 {
767   16, 17, 2, 3, 4, 5, 6, 7
768 };
769
770 /* Classifies the kind of instructions we're interested in when
771    implementing -mfix-vr4120.  */
772 enum fix_vr4120_class
773 {
774   FIX_VR4120_MACC,
775   FIX_VR4120_DMACC,
776   FIX_VR4120_MULT,
777   FIX_VR4120_DMULT,
778   FIX_VR4120_DIV,
779   FIX_VR4120_MTHILO,
780   NUM_FIX_VR4120_CLASSES
781 };
782
783 /* ...likewise -mfix-loongson2f-jump.  */
784 static bfd_boolean mips_fix_loongson2f_jump;
785
786 /* ...likewise -mfix-loongson2f-nop.  */
787 static bfd_boolean mips_fix_loongson2f_nop;
788
789 /* True if -mfix-loongson2f-nop or -mfix-loongson2f-jump passed.  */
790 static bfd_boolean mips_fix_loongson2f;
791
792 /* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
793    there must be at least one other instruction between an instruction
794    of type X and an instruction of type Y.  */
795 static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
796
797 /* True if -mfix-vr4120 is in force.  */
798 static int mips_fix_vr4120;
799
800 /* ...likewise -mfix-vr4130.  */
801 static int mips_fix_vr4130;
802
803 /* ...likewise -mfix-24k.  */
804 static int mips_fix_24k;
805
806 /* ...likewise -mfix-cn63xxp1 */
807 static bfd_boolean mips_fix_cn63xxp1;
808
809 /* We don't relax branches by default, since this causes us to expand
810    `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
811    fail to compute the offset before expanding the macro to the most
812    efficient expansion.  */
813
814 static int mips_relax_branch;
815 \f
816 /* The expansion of many macros depends on the type of symbol that
817    they refer to.  For example, when generating position-dependent code,
818    a macro that refers to a symbol may have two different expansions,
819    one which uses GP-relative addresses and one which uses absolute
820    addresses.  When generating SVR4-style PIC, a macro may have
821    different expansions for local and global symbols.
822
823    We handle these situations by generating both sequences and putting
824    them in variant frags.  In position-dependent code, the first sequence
825    will be the GP-relative one and the second sequence will be the
826    absolute one.  In SVR4 PIC, the first sequence will be for global
827    symbols and the second will be for local symbols.
828
829    The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
830    SECOND are the lengths of the two sequences in bytes.  These fields
831    can be extracted using RELAX_FIRST() and RELAX_SECOND().  In addition,
832    the subtype has the following flags:
833
834    RELAX_USE_SECOND
835         Set if it has been decided that we should use the second
836         sequence instead of the first.
837
838    RELAX_SECOND_LONGER
839         Set in the first variant frag if the macro's second implementation
840         is longer than its first.  This refers to the macro as a whole,
841         not an individual relaxation.
842
843    RELAX_NOMACRO
844         Set in the first variant frag if the macro appeared in a .set nomacro
845         block and if one alternative requires a warning but the other does not.
846
847    RELAX_DELAY_SLOT
848         Like RELAX_NOMACRO, but indicates that the macro appears in a branch
849         delay slot.
850
851    The frag's "opcode" points to the first fixup for relaxable code.
852
853    Relaxable macros are generated using a sequence such as:
854
855       relax_start (SYMBOL);
856       ... generate first expansion ...
857       relax_switch ();
858       ... generate second expansion ...
859       relax_end ();
860
861    The code and fixups for the unwanted alternative are discarded
862    by md_convert_frag.  */
863 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
864
865 #define RELAX_FIRST(X) (((X) >> 8) & 0xff)
866 #define RELAX_SECOND(X) ((X) & 0xff)
867 #define RELAX_USE_SECOND 0x10000
868 #define RELAX_SECOND_LONGER 0x20000
869 #define RELAX_NOMACRO 0x40000
870 #define RELAX_DELAY_SLOT 0x80000
871
872 /* Branch without likely bit.  If label is out of range, we turn:
873
874         beq reg1, reg2, label
875         delay slot
876
877    into
878
879         bne reg1, reg2, 0f
880         nop
881         j label
882      0: delay slot
883
884    with the following opcode replacements:
885
886         beq <-> bne
887         blez <-> bgtz
888         bltz <-> bgez
889         bc1f <-> bc1t
890
891         bltzal <-> bgezal  (with jal label instead of j label)
892
893    Even though keeping the delay slot instruction in the delay slot of
894    the branch would be more efficient, it would be very tricky to do
895    correctly, because we'd have to introduce a variable frag *after*
896    the delay slot instruction, and expand that instead.  Let's do it
897    the easy way for now, even if the branch-not-taken case now costs
898    one additional instruction.  Out-of-range branches are not supposed
899    to be common, anyway.
900
901    Branch likely.  If label is out of range, we turn:
902
903         beql reg1, reg2, label
904         delay slot (annulled if branch not taken)
905
906    into
907
908         beql reg1, reg2, 1f
909         nop
910         beql $0, $0, 2f
911         nop
912      1: j[al] label
913         delay slot (executed only if branch taken)
914      2:
915
916    It would be possible to generate a shorter sequence by losing the
917    likely bit, generating something like:
918
919         bne reg1, reg2, 0f
920         nop
921         j[al] label
922         delay slot (executed only if branch taken)
923      0:
924
925         beql -> bne
926         bnel -> beq
927         blezl -> bgtz
928         bgtzl -> blez
929         bltzl -> bgez
930         bgezl -> bltz
931         bc1fl -> bc1t
932         bc1tl -> bc1f
933
934         bltzall -> bgezal  (with jal label instead of j label)
935         bgezall -> bltzal  (ditto)
936
937
938    but it's not clear that it would actually improve performance.  */
939 #define RELAX_BRANCH_ENCODE(at, uncond, likely, link, toofar)   \
940   ((relax_substateT)                                            \
941    (0xc0000000                                                  \
942     | ((at) & 0x1f)                                             \
943     | ((toofar) ? 0x20 : 0)                                     \
944     | ((link) ? 0x40 : 0)                                       \
945     | ((likely) ? 0x80 : 0)                                     \
946     | ((uncond) ? 0x100 : 0)))
947 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
948 #define RELAX_BRANCH_UNCOND(i) (((i) & 0x100) != 0)
949 #define RELAX_BRANCH_LIKELY(i) (((i) & 0x80) != 0)
950 #define RELAX_BRANCH_LINK(i) (((i) & 0x40) != 0)
951 #define RELAX_BRANCH_TOOFAR(i) (((i) & 0x20) != 0)
952 #define RELAX_BRANCH_AT(i) ((i) & 0x1f)
953
954 /* For mips16 code, we use an entirely different form of relaxation.
955    mips16 supports two versions of most instructions which take
956    immediate values: a small one which takes some small value, and a
957    larger one which takes a 16 bit value.  Since branches also follow
958    this pattern, relaxing these values is required.
959
960    We can assemble both mips16 and normal MIPS code in a single
961    object.  Therefore, we need to support this type of relaxation at
962    the same time that we support the relaxation described above.  We
963    use the high bit of the subtype field to distinguish these cases.
964
965    The information we store for this type of relaxation is the
966    argument code found in the opcode file for this relocation, whether
967    the user explicitly requested a small or extended form, and whether
968    the relocation is in a jump or jal delay slot.  That tells us the
969    size of the value, and how it should be stored.  We also store
970    whether the fragment is considered to be extended or not.  We also
971    store whether this is known to be a branch to a different section,
972    whether we have tried to relax this frag yet, and whether we have
973    ever extended a PC relative fragment because of a shift count.  */
974 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
975   (0x80000000                                                   \
976    | ((type) & 0xff)                                            \
977    | ((small) ? 0x100 : 0)                                      \
978    | ((ext) ? 0x200 : 0)                                        \
979    | ((dslot) ? 0x400 : 0)                                      \
980    | ((jal_dslot) ? 0x800 : 0))
981 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
982 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
983 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
984 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
985 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
986 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
987 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
988 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
989 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
990 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
991 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
992 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
993
994 /* Is the given value a sign-extended 32-bit value?  */
995 #define IS_SEXT_32BIT_NUM(x)                                            \
996   (((x) &~ (offsetT) 0x7fffffff) == 0                                   \
997    || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
998
999 /* Is the given value a sign-extended 16-bit value?  */
1000 #define IS_SEXT_16BIT_NUM(x)                                            \
1001   (((x) &~ (offsetT) 0x7fff) == 0                                       \
1002    || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
1003
1004 /* Is the given value a zero-extended 32-bit value?  Or a negated one?  */
1005 #define IS_ZEXT_32BIT_NUM(x)                                            \
1006   (((x) &~ (offsetT) 0xffffffff) == 0                                   \
1007    || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
1008
1009 /* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
1010    VALUE << SHIFT.  VALUE is evaluated exactly once.  */
1011 #define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
1012   (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
1013               | (((VALUE) & (MASK)) << (SHIFT)))
1014
1015 /* Extract bits MASK << SHIFT from STRUCT and shift them right
1016    SHIFT places.  */
1017 #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
1018   (((STRUCT) >> (SHIFT)) & (MASK))
1019
1020 /* Change INSN's opcode so that the operand given by FIELD has value VALUE.
1021    INSN is a mips_cl_insn structure and VALUE is evaluated exactly once.
1022
1023    include/opcode/mips.h specifies operand fields using the macros
1024    OP_MASK_<FIELD> and OP_SH_<FIELD>.  The MIPS16 equivalents start
1025    with "MIPS16OP" instead of "OP".  */
1026 #define INSERT_OPERAND(FIELD, INSN, VALUE) \
1027   INSERT_BITS ((INSN).insn_opcode, VALUE, OP_MASK_##FIELD, OP_SH_##FIELD)
1028 #define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
1029   INSERT_BITS ((INSN).insn_opcode, VALUE, \
1030                 MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
1031
1032 /* Extract the operand given by FIELD from mips_cl_insn INSN.  */
1033 #define EXTRACT_OPERAND(FIELD, INSN) \
1034   EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD)
1035 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
1036   EXTRACT_BITS ((INSN).insn_opcode, \
1037                 MIPS16OP_MASK_##FIELD, \
1038                 MIPS16OP_SH_##FIELD)
1039 \f
1040 /* Global variables used when generating relaxable macros.  See the
1041    comment above RELAX_ENCODE for more details about how relaxation
1042    is used.  */
1043 static struct {
1044   /* 0 if we're not emitting a relaxable macro.
1045      1 if we're emitting the first of the two relaxation alternatives.
1046      2 if we're emitting the second alternative.  */
1047   int sequence;
1048
1049   /* The first relaxable fixup in the current frag.  (In other words,
1050      the first fixup that refers to relaxable code.)  */
1051   fixS *first_fixup;
1052
1053   /* sizes[0] says how many bytes of the first alternative are stored in
1054      the current frag.  Likewise sizes[1] for the second alternative.  */
1055   unsigned int sizes[2];
1056
1057   /* The symbol on which the choice of sequence depends.  */
1058   symbolS *symbol;
1059 } mips_relax;
1060 \f
1061 /* Global variables used to decide whether a macro needs a warning.  */
1062 static struct {
1063   /* True if the macro is in a branch delay slot.  */
1064   bfd_boolean delay_slot_p;
1065
1066   /* For relaxable macros, sizes[0] is the length of the first alternative
1067      in bytes and sizes[1] is the length of the second alternative.
1068      For non-relaxable macros, both elements give the length of the
1069      macro in bytes.  */
1070   unsigned int sizes[2];
1071
1072   /* The first variant frag for this macro.  */
1073   fragS *first_frag;
1074 } mips_macro_warning;
1075 \f
1076 /* Prototypes for static functions.  */
1077
1078 #define internalError()                                                 \
1079     as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
1080
1081 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
1082
1083 static void append_insn
1084   (struct mips_cl_insn *, expressionS *, bfd_reloc_code_real_type *);
1085 static void mips_no_prev_insn (void);
1086 static void macro_build (expressionS *, const char *, const char *, ...);
1087 static void mips16_macro_build
1088   (expressionS *, const char *, const char *, va_list *);
1089 static void load_register (int, expressionS *, int);
1090 static void macro_start (void);
1091 static void macro_end (void);
1092 static void macro (struct mips_cl_insn * ip);
1093 static void mips16_macro (struct mips_cl_insn * ip);
1094 static void mips_ip (char *str, struct mips_cl_insn * ip);
1095 static void mips16_ip (char *str, struct mips_cl_insn * ip);
1096 static void mips16_immed
1097   (char *, unsigned int, int, offsetT, bfd_boolean, bfd_boolean, bfd_boolean,
1098    unsigned long *, bfd_boolean *, unsigned short *);
1099 static size_t my_getSmallExpression
1100   (expressionS *, bfd_reloc_code_real_type *, char *);
1101 static void my_getExpression (expressionS *, char *);
1102 static void s_align (int);
1103 static void s_change_sec (int);
1104 static void s_change_section (int);
1105 static void s_cons (int);
1106 static void s_float_cons (int);
1107 static void s_mips_globl (int);
1108 static void s_option (int);
1109 static void s_mipsset (int);
1110 static void s_abicalls (int);
1111 static void s_cpload (int);
1112 static void s_cpsetup (int);
1113 static void s_cplocal (int);
1114 static void s_cprestore (int);
1115 static void s_cpreturn (int);
1116 static void s_dtprelword (int);
1117 static void s_dtpreldword (int);
1118 static void s_gpvalue (int);
1119 static void s_gpword (int);
1120 static void s_gpdword (int);
1121 static void s_cpadd (int);
1122 static void s_insn (int);
1123 static void md_obj_begin (void);
1124 static void md_obj_end (void);
1125 static void s_mips_ent (int);
1126 static void s_mips_end (int);
1127 static void s_mips_frame (int);
1128 static void s_mips_mask (int reg_type);
1129 static void s_mips_stab (int);
1130 static void s_mips_weakext (int);
1131 static void s_mips_file (int);
1132 static void s_mips_loc (int);
1133 static bfd_boolean pic_need_relax (symbolS *, asection *);
1134 static int relaxed_branch_length (fragS *, asection *, int);
1135 static int validate_mips_insn (const struct mips_opcode *);
1136
1137 /* Table and functions used to map between CPU/ISA names, and
1138    ISA levels, and CPU numbers.  */
1139
1140 struct mips_cpu_info
1141 {
1142   const char *name;           /* CPU or ISA name.  */
1143   int flags;                  /* ASEs available, or ISA flag.  */
1144   int isa;                    /* ISA level.  */
1145   int cpu;                    /* CPU number (default CPU if ISA).  */
1146 };
1147
1148 #define MIPS_CPU_IS_ISA         0x0001  /* Is this an ISA?  (If 0, a CPU.) */
1149 #define MIPS_CPU_ASE_SMARTMIPS  0x0002  /* CPU implements SmartMIPS ASE */
1150 #define MIPS_CPU_ASE_DSP        0x0004  /* CPU implements DSP ASE */
1151 #define MIPS_CPU_ASE_MT         0x0008  /* CPU implements MT ASE */
1152 #define MIPS_CPU_ASE_MIPS3D     0x0010  /* CPU implements MIPS-3D ASE */
1153 #define MIPS_CPU_ASE_MDMX       0x0020  /* CPU implements MDMX ASE */
1154 #define MIPS_CPU_ASE_DSPR2      0x0040  /* CPU implements DSP R2 ASE */
1155
1156 static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1157 static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1158 static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
1159 \f
1160 /* Pseudo-op table.
1161
1162    The following pseudo-ops from the Kane and Heinrich MIPS book
1163    should be defined here, but are currently unsupported: .alias,
1164    .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1165
1166    The following pseudo-ops from the Kane and Heinrich MIPS book are
1167    specific to the type of debugging information being generated, and
1168    should be defined by the object format: .aent, .begin, .bend,
1169    .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1170    .vreg.
1171
1172    The following pseudo-ops from the Kane and Heinrich MIPS book are
1173    not MIPS CPU specific, but are also not specific to the object file
1174    format.  This file is probably the best place to define them, but
1175    they are not currently supported: .asm0, .endr, .lab, .struct.  */
1176
1177 static const pseudo_typeS mips_pseudo_table[] =
1178 {
1179   /* MIPS specific pseudo-ops.  */
1180   {"option", s_option, 0},
1181   {"set", s_mipsset, 0},
1182   {"rdata", s_change_sec, 'r'},
1183   {"sdata", s_change_sec, 's'},
1184   {"livereg", s_ignore, 0},
1185   {"abicalls", s_abicalls, 0},
1186   {"cpload", s_cpload, 0},
1187   {"cpsetup", s_cpsetup, 0},
1188   {"cplocal", s_cplocal, 0},
1189   {"cprestore", s_cprestore, 0},
1190   {"cpreturn", s_cpreturn, 0},
1191   {"dtprelword", s_dtprelword, 0},
1192   {"dtpreldword", s_dtpreldword, 0},
1193   {"gpvalue", s_gpvalue, 0},
1194   {"gpword", s_gpword, 0},
1195   {"gpdword", s_gpdword, 0},
1196   {"cpadd", s_cpadd, 0},
1197   {"insn", s_insn, 0},
1198
1199   /* Relatively generic pseudo-ops that happen to be used on MIPS
1200      chips.  */
1201   {"asciiz", stringer, 8 + 1},
1202   {"bss", s_change_sec, 'b'},
1203   {"err", s_err, 0},
1204   {"half", s_cons, 1},
1205   {"dword", s_cons, 3},
1206   {"weakext", s_mips_weakext, 0},
1207   {"origin", s_org, 0},
1208   {"repeat", s_rept, 0},
1209
1210   /* For MIPS this is non-standard, but we define it for consistency.  */
1211   {"sbss", s_change_sec, 'B'},
1212
1213   /* These pseudo-ops are defined in read.c, but must be overridden
1214      here for one reason or another.  */
1215   {"align", s_align, 0},
1216   {"byte", s_cons, 0},
1217   {"data", s_change_sec, 'd'},
1218   {"double", s_float_cons, 'd'},
1219   {"float", s_float_cons, 'f'},
1220   {"globl", s_mips_globl, 0},
1221   {"global", s_mips_globl, 0},
1222   {"hword", s_cons, 1},
1223   {"int", s_cons, 2},
1224   {"long", s_cons, 2},
1225   {"octa", s_cons, 4},
1226   {"quad", s_cons, 3},
1227   {"section", s_change_section, 0},
1228   {"short", s_cons, 1},
1229   {"single", s_float_cons, 'f'},
1230   {"stabn", s_mips_stab, 'n'},
1231   {"text", s_change_sec, 't'},
1232   {"word", s_cons, 2},
1233
1234   { "extern", ecoff_directive_extern, 0},
1235
1236   { NULL, NULL, 0 },
1237 };
1238
1239 static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1240 {
1241   /* These pseudo-ops should be defined by the object file format.
1242      However, a.out doesn't support them, so we have versions here.  */
1243   {"aent", s_mips_ent, 1},
1244   {"bgnb", s_ignore, 0},
1245   {"end", s_mips_end, 0},
1246   {"endb", s_ignore, 0},
1247   {"ent", s_mips_ent, 0},
1248   {"file", s_mips_file, 0},
1249   {"fmask", s_mips_mask, 'F'},
1250   {"frame", s_mips_frame, 0},
1251   {"loc", s_mips_loc, 0},
1252   {"mask", s_mips_mask, 'R'},
1253   {"verstamp", s_ignore, 0},
1254   { NULL, NULL, 0 },
1255 };
1256
1257 /* Export the ABI address size for use by TC_ADDRESS_BYTES for the
1258    purpose of the `.dc.a' internal pseudo-op.  */
1259
1260 int
1261 mips_address_bytes (void)
1262 {
1263   return HAVE_64BIT_ADDRESSES ? 8 : 4;
1264 }
1265
1266 extern void pop_insert (const pseudo_typeS *);
1267
1268 void
1269 mips_pop_insert (void)
1270 {
1271   pop_insert (mips_pseudo_table);
1272   if (! ECOFF_DEBUGGING)
1273     pop_insert (mips_nonecoff_pseudo_table);
1274 }
1275 \f
1276 /* Symbols labelling the current insn.  */
1277
1278 struct insn_label_list
1279 {
1280   struct insn_label_list *next;
1281   symbolS *label;
1282 };
1283
1284 static struct insn_label_list *free_insn_labels;
1285 #define label_list tc_segment_info_data.labels
1286
1287 static void mips_clear_insn_labels (void);
1288
1289 static inline void
1290 mips_clear_insn_labels (void)
1291 {
1292   register struct insn_label_list **pl;
1293   segment_info_type *si;
1294
1295   if (now_seg)
1296     {
1297       for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1298         ;
1299       
1300       si = seg_info (now_seg);
1301       *pl = si->label_list;
1302       si->label_list = NULL;
1303     }
1304 }
1305
1306 \f
1307 static char *expr_end;
1308
1309 /* Expressions which appear in instructions.  These are set by
1310    mips_ip.  */
1311
1312 static expressionS imm_expr;
1313 static expressionS imm2_expr;
1314 static expressionS offset_expr;
1315
1316 /* Relocs associated with imm_expr and offset_expr.  */
1317
1318 static bfd_reloc_code_real_type imm_reloc[3]
1319   = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1320 static bfd_reloc_code_real_type offset_reloc[3]
1321   = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1322
1323 /* These are set by mips16_ip if an explicit extension is used.  */
1324
1325 static bfd_boolean mips16_small, mips16_ext;
1326
1327 #ifdef OBJ_ELF
1328 /* The pdr segment for per procedure frame/regmask info.  Not used for
1329    ECOFF debugging.  */
1330
1331 static segT pdr_seg;
1332 #endif
1333
1334 /* The default target format to use.  */
1335
1336 #if defined (TE_FreeBSD)
1337 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips-freebsd"
1338 #elif defined (TE_TMIPS)
1339 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips"
1340 #else
1341 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX ENDIAN "mips"
1342 #endif
1343
1344 const char *
1345 mips_target_format (void)
1346 {
1347   switch (OUTPUT_FLAVOR)
1348     {
1349     case bfd_target_ecoff_flavour:
1350       return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT;
1351     case bfd_target_coff_flavour:
1352       return "pe-mips";
1353     case bfd_target_elf_flavour:
1354 #ifdef TE_VXWORKS
1355       if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI)
1356         return (target_big_endian
1357                 ? "elf32-bigmips-vxworks"
1358                 : "elf32-littlemips-vxworks");
1359 #endif
1360       return (target_big_endian
1361               ? (HAVE_64BIT_OBJECTS
1362                  ? ELF_TARGET ("elf64-", "big")
1363                  : (HAVE_NEWABI
1364                     ? ELF_TARGET ("elf32-n", "big")
1365                     : ELF_TARGET ("elf32-", "big")))
1366               : (HAVE_64BIT_OBJECTS
1367                  ? ELF_TARGET ("elf64-", "little")
1368                  : (HAVE_NEWABI
1369                     ? ELF_TARGET ("elf32-n", "little")
1370                     : ELF_TARGET ("elf32-", "little"))));
1371     default:
1372       abort ();
1373       return NULL;
1374     }
1375 }
1376
1377 /* Return the length of instruction INSN.  */
1378
1379 static inline unsigned int
1380 insn_length (const struct mips_cl_insn *insn)
1381 {
1382   if (!mips_opts.mips16)
1383     return 4;
1384   return insn->mips16_absolute_jump_p || insn->use_extend ? 4 : 2;
1385 }
1386
1387 /* Initialise INSN from opcode entry MO.  Leave its position unspecified.  */
1388
1389 static void
1390 create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
1391 {
1392   size_t i;
1393
1394   insn->insn_mo = mo;
1395   insn->use_extend = FALSE;
1396   insn->extend = 0;
1397   insn->insn_opcode = mo->match;
1398   insn->frag = NULL;
1399   insn->where = 0;
1400   for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1401     insn->fixp[i] = NULL;
1402   insn->fixed_p = (mips_opts.noreorder > 0);
1403   insn->noreorder_p = (mips_opts.noreorder > 0);
1404   insn->mips16_absolute_jump_p = 0;
1405   insn->complete_p = 0;
1406 }
1407
1408 /* Record the current MIPS16 mode in now_seg.  */
1409
1410 static void
1411 mips_record_mips16_mode (void)
1412 {
1413   segment_info_type *si;
1414
1415   si = seg_info (now_seg);
1416   if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
1417     si->tc_segment_info_data.mips16 = mips_opts.mips16;
1418 }
1419
1420 /* Install INSN at the location specified by its "frag" and "where" fields.  */
1421
1422 static void
1423 install_insn (const struct mips_cl_insn *insn)
1424 {
1425   char *f = insn->frag->fr_literal + insn->where;
1426   if (!mips_opts.mips16)
1427     md_number_to_chars (f, insn->insn_opcode, 4);
1428   else if (insn->mips16_absolute_jump_p)
1429     {
1430       md_number_to_chars (f, insn->insn_opcode >> 16, 2);
1431       md_number_to_chars (f + 2, insn->insn_opcode & 0xffff, 2);
1432     }
1433   else
1434     {
1435       if (insn->use_extend)
1436         {
1437           md_number_to_chars (f, 0xf000 | insn->extend, 2);
1438           f += 2;
1439         }
1440       md_number_to_chars (f, insn->insn_opcode, 2);
1441     }
1442   mips_record_mips16_mode ();
1443 }
1444
1445 /* Move INSN to offset WHERE in FRAG.  Adjust the fixups accordingly
1446    and install the opcode in the new location.  */
1447
1448 static void
1449 move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
1450 {
1451   size_t i;
1452
1453   insn->frag = frag;
1454   insn->where = where;
1455   for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1456     if (insn->fixp[i] != NULL)
1457       {
1458         insn->fixp[i]->fx_frag = frag;
1459         insn->fixp[i]->fx_where = where;
1460       }
1461   install_insn (insn);
1462 }
1463
1464 /* Add INSN to the end of the output.  */
1465
1466 static void
1467 add_fixed_insn (struct mips_cl_insn *insn)
1468 {
1469   char *f = frag_more (insn_length (insn));
1470   move_insn (insn, frag_now, f - frag_now->fr_literal);
1471 }
1472
1473 /* Start a variant frag and move INSN to the start of the variant part,
1474    marking it as fixed.  The other arguments are as for frag_var.  */
1475
1476 static void
1477 add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
1478                   relax_substateT subtype, symbolS *symbol, offsetT offset)
1479 {
1480   frag_grow (max_chars);
1481   move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
1482   insn->fixed_p = 1;
1483   frag_var (rs_machine_dependent, max_chars, var,
1484             subtype, symbol, offset, NULL);
1485 }
1486
1487 /* Insert N copies of INSN into the history buffer, starting at
1488    position FIRST.  Neither FIRST nor N need to be clipped.  */
1489
1490 static void
1491 insert_into_history (unsigned int first, unsigned int n,
1492                      const struct mips_cl_insn *insn)
1493 {
1494   if (mips_relax.sequence != 2)
1495     {
1496       unsigned int i;
1497
1498       for (i = ARRAY_SIZE (history); i-- > first;)
1499         if (i >= first + n)
1500           history[i] = history[i - n];
1501         else
1502           history[i] = *insn;
1503     }
1504 }
1505
1506 /* Emit a nop instruction, recording it in the history buffer.  */
1507
1508 static void
1509 emit_nop (void)
1510 {
1511   add_fixed_insn (NOP_INSN);
1512   insert_into_history (0, 1, NOP_INSN);
1513 }
1514
1515 /* Initialize vr4120_conflicts.  There is a bit of duplication here:
1516    the idea is to make it obvious at a glance that each errata is
1517    included.  */
1518
1519 static void
1520 init_vr4120_conflicts (void)
1521 {
1522 #define CONFLICT(FIRST, SECOND) \
1523     vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
1524
1525   /* Errata 21 - [D]DIV[U] after [D]MACC */
1526   CONFLICT (MACC, DIV);
1527   CONFLICT (DMACC, DIV);
1528
1529   /* Errata 23 - Continuous DMULT[U]/DMACC instructions.  */
1530   CONFLICT (DMULT, DMULT);
1531   CONFLICT (DMULT, DMACC);
1532   CONFLICT (DMACC, DMULT);
1533   CONFLICT (DMACC, DMACC);
1534
1535   /* Errata 24 - MT{LO,HI} after [D]MACC */
1536   CONFLICT (MACC, MTHILO);
1537   CONFLICT (DMACC, MTHILO);
1538
1539   /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
1540      instruction is executed immediately after a MACC or DMACC
1541      instruction, the result of [either instruction] is incorrect."  */
1542   CONFLICT (MACC, MULT);
1543   CONFLICT (MACC, DMULT);
1544   CONFLICT (DMACC, MULT);
1545   CONFLICT (DMACC, DMULT);
1546
1547   /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
1548      executed immediately after a DMULT, DMULTU, DIV, DIVU,
1549      DDIV or DDIVU instruction, the result of the MACC or
1550      DMACC instruction is incorrect.".  */
1551   CONFLICT (DMULT, MACC);
1552   CONFLICT (DMULT, DMACC);
1553   CONFLICT (DIV, MACC);
1554   CONFLICT (DIV, DMACC);
1555
1556 #undef CONFLICT
1557 }
1558
1559 struct regname {
1560   const char *name;
1561   unsigned int num;
1562 };
1563
1564 #define RTYPE_MASK      0x1ff00
1565 #define RTYPE_NUM       0x00100
1566 #define RTYPE_FPU       0x00200
1567 #define RTYPE_FCC       0x00400
1568 #define RTYPE_VEC       0x00800
1569 #define RTYPE_GP        0x01000
1570 #define RTYPE_CP0       0x02000
1571 #define RTYPE_PC        0x04000
1572 #define RTYPE_ACC       0x08000
1573 #define RTYPE_CCC       0x10000
1574 #define RNUM_MASK       0x000ff
1575 #define RWARN           0x80000
1576
1577 #define GENERIC_REGISTER_NUMBERS \
1578     {"$0",      RTYPE_NUM | 0},  \
1579     {"$1",      RTYPE_NUM | 1},  \
1580     {"$2",      RTYPE_NUM | 2},  \
1581     {"$3",      RTYPE_NUM | 3},  \
1582     {"$4",      RTYPE_NUM | 4},  \
1583     {"$5",      RTYPE_NUM | 5},  \
1584     {"$6",      RTYPE_NUM | 6},  \
1585     {"$7",      RTYPE_NUM | 7},  \
1586     {"$8",      RTYPE_NUM | 8},  \
1587     {"$9",      RTYPE_NUM | 9},  \
1588     {"$10",     RTYPE_NUM | 10}, \
1589     {"$11",     RTYPE_NUM | 11}, \
1590     {"$12",     RTYPE_NUM | 12}, \
1591     {"$13",     RTYPE_NUM | 13}, \
1592     {"$14",     RTYPE_NUM | 14}, \
1593     {"$15",     RTYPE_NUM | 15}, \
1594     {"$16",     RTYPE_NUM | 16}, \
1595     {"$17",     RTYPE_NUM | 17}, \
1596     {"$18",     RTYPE_NUM | 18}, \
1597     {"$19",     RTYPE_NUM | 19}, \
1598     {"$20",     RTYPE_NUM | 20}, \
1599     {"$21",     RTYPE_NUM | 21}, \
1600     {"$22",     RTYPE_NUM | 22}, \
1601     {"$23",     RTYPE_NUM | 23}, \
1602     {"$24",     RTYPE_NUM | 24}, \
1603     {"$25",     RTYPE_NUM | 25}, \
1604     {"$26",     RTYPE_NUM | 26}, \
1605     {"$27",     RTYPE_NUM | 27}, \
1606     {"$28",     RTYPE_NUM | 28}, \
1607     {"$29",     RTYPE_NUM | 29}, \
1608     {"$30",     RTYPE_NUM | 30}, \
1609     {"$31",     RTYPE_NUM | 31} 
1610
1611 #define FPU_REGISTER_NAMES       \
1612     {"$f0",     RTYPE_FPU | 0},  \
1613     {"$f1",     RTYPE_FPU | 1},  \
1614     {"$f2",     RTYPE_FPU | 2},  \
1615     {"$f3",     RTYPE_FPU | 3},  \
1616     {"$f4",     RTYPE_FPU | 4},  \
1617     {"$f5",     RTYPE_FPU | 5},  \
1618     {"$f6",     RTYPE_FPU | 6},  \
1619     {"$f7",     RTYPE_FPU | 7},  \
1620     {"$f8",     RTYPE_FPU | 8},  \
1621     {"$f9",     RTYPE_FPU | 9},  \
1622     {"$f10",    RTYPE_FPU | 10}, \
1623     {"$f11",    RTYPE_FPU | 11}, \
1624     {"$f12",    RTYPE_FPU | 12}, \
1625     {"$f13",    RTYPE_FPU | 13}, \
1626     {"$f14",    RTYPE_FPU | 14}, \
1627     {"$f15",    RTYPE_FPU | 15}, \
1628     {"$f16",    RTYPE_FPU | 16}, \
1629     {"$f17",    RTYPE_FPU | 17}, \
1630     {"$f18",    RTYPE_FPU | 18}, \
1631     {"$f19",    RTYPE_FPU | 19}, \
1632     {"$f20",    RTYPE_FPU | 20}, \
1633     {"$f21",    RTYPE_FPU | 21}, \
1634     {"$f22",    RTYPE_FPU | 22}, \
1635     {"$f23",    RTYPE_FPU | 23}, \
1636     {"$f24",    RTYPE_FPU | 24}, \
1637     {"$f25",    RTYPE_FPU | 25}, \
1638     {"$f26",    RTYPE_FPU | 26}, \
1639     {"$f27",    RTYPE_FPU | 27}, \
1640     {"$f28",    RTYPE_FPU | 28}, \
1641     {"$f29",    RTYPE_FPU | 29}, \
1642     {"$f30",    RTYPE_FPU | 30}, \
1643     {"$f31",    RTYPE_FPU | 31}
1644
1645 #define FPU_CONDITION_CODE_NAMES \
1646     {"$fcc0",   RTYPE_FCC | 0},  \
1647     {"$fcc1",   RTYPE_FCC | 1},  \
1648     {"$fcc2",   RTYPE_FCC | 2},  \
1649     {"$fcc3",   RTYPE_FCC | 3},  \
1650     {"$fcc4",   RTYPE_FCC | 4},  \
1651     {"$fcc5",   RTYPE_FCC | 5},  \
1652     {"$fcc6",   RTYPE_FCC | 6},  \
1653     {"$fcc7",   RTYPE_FCC | 7}
1654
1655 #define COPROC_CONDITION_CODE_NAMES         \
1656     {"$cc0",    RTYPE_FCC | RTYPE_CCC | 0}, \
1657     {"$cc1",    RTYPE_FCC | RTYPE_CCC | 1}, \
1658     {"$cc2",    RTYPE_FCC | RTYPE_CCC | 2}, \
1659     {"$cc3",    RTYPE_FCC | RTYPE_CCC | 3}, \
1660     {"$cc4",    RTYPE_FCC | RTYPE_CCC | 4}, \
1661     {"$cc5",    RTYPE_FCC | RTYPE_CCC | 5}, \
1662     {"$cc6",    RTYPE_FCC | RTYPE_CCC | 6}, \
1663     {"$cc7",    RTYPE_FCC | RTYPE_CCC | 7}
1664
1665 #define N32N64_SYMBOLIC_REGISTER_NAMES \
1666     {"$a4",     RTYPE_GP | 8},  \
1667     {"$a5",     RTYPE_GP | 9},  \
1668     {"$a6",     RTYPE_GP | 10}, \
1669     {"$a7",     RTYPE_GP | 11}, \
1670     {"$ta0",    RTYPE_GP | 8},  /* alias for $a4 */ \
1671     {"$ta1",    RTYPE_GP | 9},  /* alias for $a5 */ \
1672     {"$ta2",    RTYPE_GP | 10}, /* alias for $a6 */ \
1673     {"$ta3",    RTYPE_GP | 11}, /* alias for $a7 */ \
1674     {"$t0",     RTYPE_GP | 12}, \
1675     {"$t1",     RTYPE_GP | 13}, \
1676     {"$t2",     RTYPE_GP | 14}, \
1677     {"$t3",     RTYPE_GP | 15}
1678
1679 #define O32_SYMBOLIC_REGISTER_NAMES \
1680     {"$t0",     RTYPE_GP | 8},  \
1681     {"$t1",     RTYPE_GP | 9},  \
1682     {"$t2",     RTYPE_GP | 10}, \
1683     {"$t3",     RTYPE_GP | 11}, \
1684     {"$t4",     RTYPE_GP | 12}, \
1685     {"$t5",     RTYPE_GP | 13}, \
1686     {"$t6",     RTYPE_GP | 14}, \
1687     {"$t7",     RTYPE_GP | 15}, \
1688     {"$ta0",    RTYPE_GP | 12}, /* alias for $t4 */ \
1689     {"$ta1",    RTYPE_GP | 13}, /* alias for $t5 */ \
1690     {"$ta2",    RTYPE_GP | 14}, /* alias for $t6 */ \
1691     {"$ta3",    RTYPE_GP | 15}  /* alias for $t7 */ 
1692
1693 /* Remaining symbolic register names */
1694 #define SYMBOLIC_REGISTER_NAMES \
1695     {"$zero",   RTYPE_GP | 0},  \
1696     {"$at",     RTYPE_GP | 1},  \
1697     {"$AT",     RTYPE_GP | 1},  \
1698     {"$v0",     RTYPE_GP | 2},  \
1699     {"$v1",     RTYPE_GP | 3},  \
1700     {"$a0",     RTYPE_GP | 4},  \
1701     {"$a1",     RTYPE_GP | 5},  \
1702     {"$a2",     RTYPE_GP | 6},  \
1703     {"$a3",     RTYPE_GP | 7},  \
1704     {"$s0",     RTYPE_GP | 16}, \
1705     {"$s1",     RTYPE_GP | 17}, \
1706     {"$s2",     RTYPE_GP | 18}, \
1707     {"$s3",     RTYPE_GP | 19}, \
1708     {"$s4",     RTYPE_GP | 20}, \
1709     {"$s5",     RTYPE_GP | 21}, \
1710     {"$s6",     RTYPE_GP | 22}, \
1711     {"$s7",     RTYPE_GP | 23}, \
1712     {"$t8",     RTYPE_GP | 24}, \
1713     {"$t9",     RTYPE_GP | 25}, \
1714     {"$k0",     RTYPE_GP | 26}, \
1715     {"$kt0",    RTYPE_GP | 26}, \
1716     {"$k1",     RTYPE_GP | 27}, \
1717     {"$kt1",    RTYPE_GP | 27}, \
1718     {"$gp",     RTYPE_GP | 28}, \
1719     {"$sp",     RTYPE_GP | 29}, \
1720     {"$s8",     RTYPE_GP | 30}, \
1721     {"$fp",     RTYPE_GP | 30}, \
1722     {"$ra",     RTYPE_GP | 31}
1723
1724 #define MIPS16_SPECIAL_REGISTER_NAMES \
1725     {"$pc",     RTYPE_PC | 0}
1726
1727 #define MDMX_VECTOR_REGISTER_NAMES \
1728     /* {"$v0",  RTYPE_VEC | 0},  clash with REG 2 above */ \
1729     /* {"$v1",  RTYPE_VEC | 1},  clash with REG 3 above */ \
1730     {"$v2",     RTYPE_VEC | 2},  \
1731     {"$v3",     RTYPE_VEC | 3},  \
1732     {"$v4",     RTYPE_VEC | 4},  \
1733     {"$v5",     RTYPE_VEC | 5},  \
1734     {"$v6",     RTYPE_VEC | 6},  \
1735     {"$v7",     RTYPE_VEC | 7},  \
1736     {"$v8",     RTYPE_VEC | 8},  \
1737     {"$v9",     RTYPE_VEC | 9},  \
1738     {"$v10",    RTYPE_VEC | 10}, \
1739     {"$v11",    RTYPE_VEC | 11}, \
1740     {"$v12",    RTYPE_VEC | 12}, \
1741     {"$v13",    RTYPE_VEC | 13}, \
1742     {"$v14",    RTYPE_VEC | 14}, \
1743     {"$v15",    RTYPE_VEC | 15}, \
1744     {"$v16",    RTYPE_VEC | 16}, \
1745     {"$v17",    RTYPE_VEC | 17}, \
1746     {"$v18",    RTYPE_VEC | 18}, \
1747     {"$v19",    RTYPE_VEC | 19}, \
1748     {"$v20",    RTYPE_VEC | 20}, \
1749     {"$v21",    RTYPE_VEC | 21}, \
1750     {"$v22",    RTYPE_VEC | 22}, \
1751     {"$v23",    RTYPE_VEC | 23}, \
1752     {"$v24",    RTYPE_VEC | 24}, \
1753     {"$v25",    RTYPE_VEC | 25}, \
1754     {"$v26",    RTYPE_VEC | 26}, \
1755     {"$v27",    RTYPE_VEC | 27}, \
1756     {"$v28",    RTYPE_VEC | 28}, \
1757     {"$v29",    RTYPE_VEC | 29}, \
1758     {"$v30",    RTYPE_VEC | 30}, \
1759     {"$v31",    RTYPE_VEC | 31}
1760
1761 #define MIPS_DSP_ACCUMULATOR_NAMES \
1762     {"$ac0",    RTYPE_ACC | 0}, \
1763     {"$ac1",    RTYPE_ACC | 1}, \
1764     {"$ac2",    RTYPE_ACC | 2}, \
1765     {"$ac3",    RTYPE_ACC | 3}
1766
1767 static const struct regname reg_names[] = {
1768   GENERIC_REGISTER_NUMBERS,
1769   FPU_REGISTER_NAMES,
1770   FPU_CONDITION_CODE_NAMES,
1771   COPROC_CONDITION_CODE_NAMES,
1772
1773   /* The $txx registers depends on the abi,
1774      these will be added later into the symbol table from
1775      one of the tables below once mips_abi is set after 
1776      parsing of arguments from the command line. */
1777   SYMBOLIC_REGISTER_NAMES,
1778
1779   MIPS16_SPECIAL_REGISTER_NAMES,
1780   MDMX_VECTOR_REGISTER_NAMES,
1781   MIPS_DSP_ACCUMULATOR_NAMES,
1782   {0, 0}
1783 };
1784
1785 static const struct regname reg_names_o32[] = {
1786   O32_SYMBOLIC_REGISTER_NAMES,
1787   {0, 0}
1788 };
1789
1790 static const struct regname reg_names_n32n64[] = {
1791   N32N64_SYMBOLIC_REGISTER_NAMES,
1792   {0, 0}
1793 };
1794
1795 static int
1796 reg_lookup (char **s, unsigned int types, unsigned int *regnop)
1797 {
1798   symbolS *symbolP;
1799   char *e;
1800   char save_c;
1801   int reg = -1;
1802
1803   /* Find end of name.  */
1804   e = *s;
1805   if (is_name_beginner (*e))
1806     ++e;
1807   while (is_part_of_name (*e))
1808     ++e;
1809
1810   /* Terminate name.  */
1811   save_c = *e;
1812   *e = '\0';
1813
1814   /* Look for a register symbol.  */
1815   if ((symbolP = symbol_find (*s)) && S_GET_SEGMENT (symbolP) == reg_section)
1816     {
1817       int r = S_GET_VALUE (symbolP);
1818       if (r & types)
1819         reg = r & RNUM_MASK;
1820       else if ((types & RTYPE_VEC) && (r & ~1) == (RTYPE_GP | 2))
1821         /* Convert GP reg $v0/1 to MDMX reg $v0/1!  */
1822         reg = (r & RNUM_MASK) - 2;
1823     }
1824   /* Else see if this is a register defined in an itbl entry.  */
1825   else if ((types & RTYPE_GP) && itbl_have_entries)
1826     {
1827       char *n = *s;
1828       unsigned long r;
1829
1830       if (*n == '$')
1831         ++n;
1832       if (itbl_get_reg_val (n, &r))
1833         reg = r & RNUM_MASK;
1834     }
1835
1836   /* Advance to next token if a register was recognised.  */
1837   if (reg >= 0)
1838     *s = e;
1839   else if (types & RWARN)
1840     as_warn (_("Unrecognized register name `%s'"), *s);
1841
1842   *e = save_c;
1843   if (regnop)
1844     *regnop = reg;
1845   return reg >= 0;
1846 }
1847
1848 /* Return TRUE if opcode MO is valid on the currently selected ISA and
1849    architecture.  Use is_opcode_valid_16 for MIPS16 opcodes.  */
1850
1851 static bfd_boolean
1852 is_opcode_valid (const struct mips_opcode *mo)
1853 {
1854   int isa = mips_opts.isa;
1855   int fp_s, fp_d;
1856
1857   if (mips_opts.ase_mdmx)
1858     isa |= INSN_MDMX;
1859   if (mips_opts.ase_dsp)
1860     isa |= INSN_DSP;
1861   if (mips_opts.ase_dsp && ISA_SUPPORTS_DSP64_ASE)
1862     isa |= INSN_DSP64;
1863   if (mips_opts.ase_dspr2)
1864     isa |= INSN_DSPR2;
1865   if (mips_opts.ase_mt)
1866     isa |= INSN_MT;
1867   if (mips_opts.ase_mips3d)
1868     isa |= INSN_MIPS3D;
1869   if (mips_opts.ase_smartmips)
1870     isa |= INSN_SMARTMIPS;
1871
1872   /* Don't accept instructions based on the ISA if the CPU does not implement
1873      all the coprocessor insns. */
1874   if (NO_ISA_COP (mips_opts.arch)
1875       && COP_INSN (mo->pinfo))
1876     isa = 0;
1877
1878   if (!OPCODE_IS_MEMBER (mo, isa, mips_opts.arch))
1879     return FALSE;
1880
1881   /* Check whether the instruction or macro requires single-precision or
1882      double-precision floating-point support.  Note that this information is
1883      stored differently in the opcode table for insns and macros.  */
1884   if (mo->pinfo == INSN_MACRO)
1885     {
1886       fp_s = mo->pinfo2 & INSN2_M_FP_S;
1887       fp_d = mo->pinfo2 & INSN2_M_FP_D;
1888     }
1889   else
1890     {
1891       fp_s = mo->pinfo & FP_S;
1892       fp_d = mo->pinfo & FP_D;
1893     }
1894
1895   if (fp_d && (mips_opts.soft_float || mips_opts.single_float))
1896     return FALSE;
1897
1898   if (fp_s && mips_opts.soft_float)
1899     return FALSE;
1900
1901   return TRUE;
1902 }
1903
1904 /* Return TRUE if the MIPS16 opcode MO is valid on the currently
1905    selected ISA and architecture.  */
1906
1907 static bfd_boolean
1908 is_opcode_valid_16 (const struct mips_opcode *mo)
1909 {
1910   return OPCODE_IS_MEMBER (mo, mips_opts.isa, mips_opts.arch) ? TRUE : FALSE;
1911 }
1912
1913 /* This function is called once, at assembler startup time.  It should set up
1914    all the tables, etc. that the MD part of the assembler will need.  */
1915
1916 void
1917 md_begin (void)
1918 {
1919   const char *retval = NULL;
1920   int i = 0;
1921   int broken = 0;
1922
1923   if (mips_pic != NO_PIC)
1924     {
1925       if (g_switch_seen && g_switch_value != 0)
1926         as_bad (_("-G may not be used in position-independent code"));
1927       g_switch_value = 0;
1928     }
1929
1930   if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
1931     as_warn (_("Could not set architecture and machine"));
1932
1933   op_hash = hash_new ();
1934
1935   for (i = 0; i < NUMOPCODES;)
1936     {
1937       const char *name = mips_opcodes[i].name;
1938
1939       retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
1940       if (retval != NULL)
1941         {
1942           fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
1943                    mips_opcodes[i].name, retval);
1944           /* Probably a memory allocation problem?  Give up now.  */
1945           as_fatal (_("Broken assembler.  No assembly attempted."));
1946         }
1947       do
1948         {
1949           if (mips_opcodes[i].pinfo != INSN_MACRO)
1950             {
1951               if (!validate_mips_insn (&mips_opcodes[i]))
1952                 broken = 1;
1953               if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1954                 {
1955                   create_insn (&nop_insn, mips_opcodes + i);
1956                   if (mips_fix_loongson2f_nop)
1957                     nop_insn.insn_opcode = LOONGSON2F_NOP_INSN;
1958                   nop_insn.fixed_p = 1;
1959                 }
1960             }
1961           ++i;
1962         }
1963       while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
1964     }
1965
1966   mips16_op_hash = hash_new ();
1967
1968   i = 0;
1969   while (i < bfd_mips16_num_opcodes)
1970     {
1971       const char *name = mips16_opcodes[i].name;
1972
1973       retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
1974       if (retval != NULL)
1975         as_fatal (_("internal: can't hash `%s': %s"),
1976                   mips16_opcodes[i].name, retval);
1977       do
1978         {
1979           if (mips16_opcodes[i].pinfo != INSN_MACRO
1980               && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
1981                   != mips16_opcodes[i].match))
1982             {
1983               fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
1984                        mips16_opcodes[i].name, mips16_opcodes[i].args);
1985               broken = 1;
1986             }
1987           if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1988             {
1989               create_insn (&mips16_nop_insn, mips16_opcodes + i);
1990               mips16_nop_insn.fixed_p = 1;
1991             }
1992           ++i;
1993         }
1994       while (i < bfd_mips16_num_opcodes
1995              && strcmp (mips16_opcodes[i].name, name) == 0);
1996     }
1997
1998   if (broken)
1999     as_fatal (_("Broken assembler.  No assembly attempted."));
2000
2001   /* We add all the general register names to the symbol table.  This
2002      helps us detect invalid uses of them.  */
2003   for (i = 0; reg_names[i].name; i++) 
2004     symbol_table_insert (symbol_new (reg_names[i].name, reg_section,
2005                                      reg_names[i].num, /* & RNUM_MASK, */
2006                                      &zero_address_frag));
2007   if (HAVE_NEWABI)
2008     for (i = 0; reg_names_n32n64[i].name; i++) 
2009       symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section,
2010                                        reg_names_n32n64[i].num, /* & RNUM_MASK, */
2011                                        &zero_address_frag));
2012   else
2013     for (i = 0; reg_names_o32[i].name; i++) 
2014       symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section,
2015                                        reg_names_o32[i].num, /* & RNUM_MASK, */
2016                                        &zero_address_frag));
2017
2018   mips_no_prev_insn ();
2019
2020   mips_gprmask = 0;
2021   mips_cprmask[0] = 0;
2022   mips_cprmask[1] = 0;
2023   mips_cprmask[2] = 0;
2024   mips_cprmask[3] = 0;
2025
2026   /* set the default alignment for the text section (2**2) */
2027   record_alignment (text_section, 2);
2028
2029   bfd_set_gp_size (stdoutput, g_switch_value);
2030
2031 #ifdef OBJ_ELF
2032   if (IS_ELF)
2033     {
2034       /* On a native system other than VxWorks, sections must be aligned
2035          to 16 byte boundaries.  When configured for an embedded ELF
2036          target, we don't bother.  */
2037       if (strncmp (TARGET_OS, "elf", 3) != 0
2038           && strncmp (TARGET_OS, "vxworks", 7) != 0)
2039         {
2040           (void) bfd_set_section_alignment (stdoutput, text_section, 4);
2041           (void) bfd_set_section_alignment (stdoutput, data_section, 4);
2042           (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
2043         }
2044
2045       /* Create a .reginfo section for register masks and a .mdebug
2046          section for debugging information.  */
2047       {
2048         segT seg;
2049         subsegT subseg;
2050         flagword flags;
2051         segT sec;
2052
2053         seg = now_seg;
2054         subseg = now_subseg;
2055
2056         /* The ABI says this section should be loaded so that the
2057            running program can access it.  However, we don't load it
2058            if we are configured for an embedded target */
2059         flags = SEC_READONLY | SEC_DATA;
2060         if (strncmp (TARGET_OS, "elf", 3) != 0)
2061           flags |= SEC_ALLOC | SEC_LOAD;
2062
2063         if (mips_abi != N64_ABI)
2064           {
2065             sec = subseg_new (".reginfo", (subsegT) 0);
2066
2067             bfd_set_section_flags (stdoutput, sec, flags);
2068             bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
2069
2070             mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
2071           }
2072         else
2073           {
2074             /* The 64-bit ABI uses a .MIPS.options section rather than
2075                .reginfo section.  */
2076             sec = subseg_new (".MIPS.options", (subsegT) 0);
2077             bfd_set_section_flags (stdoutput, sec, flags);
2078             bfd_set_section_alignment (stdoutput, sec, 3);
2079
2080             /* Set up the option header.  */
2081             {
2082               Elf_Internal_Options opthdr;
2083               char *f;
2084
2085               opthdr.kind = ODK_REGINFO;
2086               opthdr.size = (sizeof (Elf_External_Options)
2087                              + sizeof (Elf64_External_RegInfo));
2088               opthdr.section = 0;
2089               opthdr.info = 0;
2090               f = frag_more (sizeof (Elf_External_Options));
2091               bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
2092                                              (Elf_External_Options *) f);
2093
2094               mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
2095             }
2096           }
2097
2098         if (ECOFF_DEBUGGING)
2099           {
2100             sec = subseg_new (".mdebug", (subsegT) 0);
2101             (void) bfd_set_section_flags (stdoutput, sec,
2102                                           SEC_HAS_CONTENTS | SEC_READONLY);
2103             (void) bfd_set_section_alignment (stdoutput, sec, 2);
2104           }
2105         else if (mips_flag_pdr)
2106           {
2107             pdr_seg = subseg_new (".pdr", (subsegT) 0);
2108             (void) bfd_set_section_flags (stdoutput, pdr_seg,
2109                                           SEC_READONLY | SEC_RELOC
2110                                           | SEC_DEBUGGING);
2111             (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
2112           }
2113
2114         subseg_set (seg, subseg);
2115       }
2116     }
2117 #endif /* OBJ_ELF */
2118
2119   if (! ECOFF_DEBUGGING)
2120     md_obj_begin ();
2121
2122   if (mips_fix_vr4120)
2123     init_vr4120_conflicts ();
2124 }
2125
2126 void
2127 md_mips_end (void)
2128 {
2129   mips_emit_delays ();
2130   if (! ECOFF_DEBUGGING)
2131     md_obj_end ();
2132 }
2133
2134 void
2135 md_assemble (char *str)
2136 {
2137   struct mips_cl_insn insn;
2138   bfd_reloc_code_real_type unused_reloc[3]
2139     = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
2140
2141   imm_expr.X_op = O_absent;
2142   imm2_expr.X_op = O_absent;
2143   offset_expr.X_op = O_absent;
2144   imm_reloc[0] = BFD_RELOC_UNUSED;
2145   imm_reloc[1] = BFD_RELOC_UNUSED;
2146   imm_reloc[2] = BFD_RELOC_UNUSED;
2147   offset_reloc[0] = BFD_RELOC_UNUSED;
2148   offset_reloc[1] = BFD_RELOC_UNUSED;
2149   offset_reloc[2] = BFD_RELOC_UNUSED;
2150
2151   if (mips_opts.mips16)
2152     mips16_ip (str, &insn);
2153   else
2154     {
2155       mips_ip (str, &insn);
2156       DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
2157             str, insn.insn_opcode));
2158     }
2159
2160   if (insn_error)
2161     {
2162       as_bad ("%s `%s'", insn_error, str);
2163       return;
2164     }
2165
2166   if (insn.insn_mo->pinfo == INSN_MACRO)
2167     {
2168       macro_start ();
2169       if (mips_opts.mips16)
2170         mips16_macro (&insn);
2171       else
2172         macro (&insn);
2173       macro_end ();
2174     }
2175   else
2176     {
2177       if (imm_expr.X_op != O_absent)
2178         append_insn (&insn, &imm_expr, imm_reloc);
2179       else if (offset_expr.X_op != O_absent)
2180         append_insn (&insn, &offset_expr, offset_reloc);
2181       else
2182         append_insn (&insn, NULL, unused_reloc);
2183     }
2184 }
2185
2186 /* Convenience functions for abstracting away the differences between
2187    MIPS16 and non-MIPS16 relocations.  */
2188
2189 static inline bfd_boolean
2190 mips16_reloc_p (bfd_reloc_code_real_type reloc)
2191 {
2192   switch (reloc)
2193     {
2194     case BFD_RELOC_MIPS16_JMP:
2195     case BFD_RELOC_MIPS16_GPREL:
2196     case BFD_RELOC_MIPS16_GOT16:
2197     case BFD_RELOC_MIPS16_CALL16:
2198     case BFD_RELOC_MIPS16_HI16_S:
2199     case BFD_RELOC_MIPS16_HI16:
2200     case BFD_RELOC_MIPS16_LO16:
2201       return TRUE;
2202
2203     default:
2204       return FALSE;
2205     }
2206 }
2207
2208 static inline bfd_boolean
2209 got16_reloc_p (bfd_reloc_code_real_type reloc)
2210 {
2211   return reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16;
2212 }
2213
2214 static inline bfd_boolean
2215 hi16_reloc_p (bfd_reloc_code_real_type reloc)
2216 {
2217   return reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S;
2218 }
2219
2220 static inline bfd_boolean
2221 lo16_reloc_p (bfd_reloc_code_real_type reloc)
2222 {
2223   return reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16;
2224 }
2225
2226 /* Return true if the given relocation might need a matching %lo().
2227    This is only "might" because SVR4 R_MIPS_GOT16 relocations only
2228    need a matching %lo() when applied to local symbols.  */
2229
2230 static inline bfd_boolean
2231 reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
2232 {
2233   return (HAVE_IN_PLACE_ADDENDS
2234           && (hi16_reloc_p (reloc)
2235               /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
2236                  all GOT16 relocations evaluate to "G".  */
2237               || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC)));
2238 }
2239
2240 /* Return the type of %lo() reloc needed by RELOC, given that
2241    reloc_needs_lo_p.  */
2242
2243 static inline bfd_reloc_code_real_type
2244 matching_lo_reloc (bfd_reloc_code_real_type reloc)
2245 {
2246   return mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16 : BFD_RELOC_LO16;
2247 }
2248
2249 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
2250    relocation.  */
2251
2252 static inline bfd_boolean
2253 fixup_has_matching_lo_p (fixS *fixp)
2254 {
2255   return (fixp->fx_next != NULL
2256           && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type)
2257           && fixp->fx_addsy == fixp->fx_next->fx_addsy
2258           && fixp->fx_offset == fixp->fx_next->fx_offset);
2259 }
2260
2261 /* This function returns true if modifying a register requires a
2262    delay.  */
2263
2264 static int
2265 reg_needs_delay (unsigned int reg)
2266 {
2267   unsigned long prev_pinfo;
2268
2269   prev_pinfo = history[0].insn_mo->pinfo;
2270   if (! mips_opts.noreorder
2271       && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
2272            && ! gpr_interlocks)
2273           || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
2274               && ! cop_interlocks)))
2275     {
2276       /* A load from a coprocessor or from memory.  All load delays
2277          delay the use of general register rt for one instruction.  */
2278       /* Itbl support may require additional care here.  */
2279       know (prev_pinfo & INSN_WRITE_GPR_T);
2280       if (reg == EXTRACT_OPERAND (RT, history[0]))
2281         return 1;
2282     }
2283
2284   return 0;
2285 }
2286
2287 /* Move all labels in insn_labels to the current insertion point.  */
2288
2289 static void
2290 mips_move_labels (void)
2291 {
2292   segment_info_type *si = seg_info (now_seg);
2293   struct insn_label_list *l;
2294   valueT val;
2295
2296   for (l = si->label_list; l != NULL; l = l->next)
2297     {
2298       gas_assert (S_GET_SEGMENT (l->label) == now_seg);
2299       symbol_set_frag (l->label, frag_now);
2300       val = (valueT) frag_now_fix ();
2301       /* mips16 text labels are stored as odd.  */
2302       if (mips_opts.mips16)
2303         ++val;
2304       S_SET_VALUE (l->label, val);
2305     }
2306 }
2307
2308 static bfd_boolean
2309 s_is_linkonce (symbolS *sym, segT from_seg)
2310 {
2311   bfd_boolean linkonce = FALSE;
2312   segT symseg = S_GET_SEGMENT (sym);
2313
2314   if (symseg != from_seg && !S_IS_LOCAL (sym))
2315     {
2316       if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE))
2317         linkonce = TRUE;
2318 #ifdef OBJ_ELF
2319       /* The GNU toolchain uses an extension for ELF: a section
2320          beginning with the magic string .gnu.linkonce is a
2321          linkonce section.  */
2322       if (strncmp (segment_name (symseg), ".gnu.linkonce",
2323                    sizeof ".gnu.linkonce" - 1) == 0)
2324         linkonce = TRUE;
2325 #endif
2326     }
2327   return linkonce;
2328 }
2329
2330 /* Mark instruction labels in mips16 mode.  This permits the linker to
2331    handle them specially, such as generating jalx instructions when
2332    needed.  We also make them odd for the duration of the assembly, in
2333    order to generate the right sort of code.  We will make them even
2334    in the adjust_symtab routine, while leaving them marked.  This is
2335    convenient for the debugger and the disassembler.  The linker knows
2336    to make them odd again.  */
2337
2338 static void
2339 mips16_mark_labels (void)
2340 {
2341   segment_info_type *si = seg_info (now_seg);
2342   struct insn_label_list *l;
2343
2344   if (!mips_opts.mips16)
2345     return;
2346
2347   for (l = si->label_list; l != NULL; l = l->next)
2348    {
2349       symbolS *label = l->label;
2350
2351 #if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF)
2352       if (IS_ELF)
2353         S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
2354 #endif
2355       if ((S_GET_VALUE (label) & 1) == 0
2356         /* Don't adjust the address if the label is global or weak, or
2357            in a link-once section, since we'll be emitting symbol reloc
2358            references to it which will be patched up by the linker, and
2359            the final value of the symbol may or may not be MIPS16.  */
2360           && ! S_IS_WEAK (label)
2361           && ! S_IS_EXTERNAL (label)
2362           && ! s_is_linkonce (label, now_seg))
2363         S_SET_VALUE (label, S_GET_VALUE (label) | 1);
2364     }
2365 }
2366
2367 /* End the current frag.  Make it a variant frag and record the
2368    relaxation info.  */
2369
2370 static void
2371 relax_close_frag (void)
2372 {
2373   mips_macro_warning.first_frag = frag_now;
2374   frag_var (rs_machine_dependent, 0, 0,
2375             RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
2376             mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
2377
2378   memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
2379   mips_relax.first_fixup = 0;
2380 }
2381
2382 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
2383    See the comment above RELAX_ENCODE for more details.  */
2384
2385 static void
2386 relax_start (symbolS *symbol)
2387 {
2388   gas_assert (mips_relax.sequence == 0);
2389   mips_relax.sequence = 1;
2390   mips_relax.symbol = symbol;
2391 }
2392
2393 /* Start generating the second version of a relaxable sequence.
2394    See the comment above RELAX_ENCODE for more details.  */
2395
2396 static void
2397 relax_switch (void)
2398 {
2399   gas_assert (mips_relax.sequence == 1);
2400   mips_relax.sequence = 2;
2401 }
2402
2403 /* End the current relaxable sequence.  */
2404
2405 static void
2406 relax_end (void)
2407 {
2408   gas_assert (mips_relax.sequence == 2);
2409   relax_close_frag ();
2410   mips_relax.sequence = 0;
2411 }
2412
2413 /* Return the mask of core registers that IP reads.  */
2414
2415 static unsigned int
2416 gpr_read_mask (const struct mips_cl_insn *ip)
2417 {
2418   unsigned long pinfo, pinfo2;
2419   unsigned int mask;
2420
2421   mask = 0;
2422   pinfo = ip->insn_mo->pinfo;
2423   pinfo2 = ip->insn_mo->pinfo2;
2424   if (mips_opts.mips16)
2425     {
2426       if (pinfo & MIPS16_INSN_READ_X)
2427         mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)];
2428       if (pinfo & MIPS16_INSN_READ_Y)
2429         mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)];
2430       if (pinfo & MIPS16_INSN_READ_T)
2431         mask |= 1 << TREG;
2432       if (pinfo & MIPS16_INSN_READ_SP)
2433         mask |= 1 << SP;
2434       if (pinfo & MIPS16_INSN_READ_31)
2435         mask |= 1 << RA;
2436       if (pinfo & MIPS16_INSN_READ_Z)
2437         mask |= 1 << (mips16_to_32_reg_map
2438                       [MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]);
2439       if (pinfo & MIPS16_INSN_READ_GPR_X)
2440         mask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
2441     }
2442   else
2443     {
2444       if (pinfo2 & INSN2_READ_GPR_D)
2445         mask |= 1 << EXTRACT_OPERAND (RD, *ip);
2446       if (pinfo & INSN_READ_GPR_T)
2447         mask |= 1 << EXTRACT_OPERAND (RT, *ip);
2448       if (pinfo & INSN_READ_GPR_S)
2449         mask |= 1 << EXTRACT_OPERAND (RS, *ip);
2450       if (pinfo2 & INSN2_READ_GPR_Z)
2451         mask |= 1 << EXTRACT_OPERAND (RZ, *ip);
2452     }
2453   /* Don't include register 0.  */
2454   return mask & ~1;
2455 }
2456
2457 /* Return the mask of core registers that IP writes.  */
2458
2459 static unsigned int
2460 gpr_write_mask (const struct mips_cl_insn *ip)
2461 {
2462   unsigned long pinfo, pinfo2;
2463   unsigned int mask;
2464
2465   mask = 0;
2466   pinfo = ip->insn_mo->pinfo;
2467   pinfo2 = ip->insn_mo->pinfo2;
2468   if (mips_opts.mips16)
2469     {
2470       if (pinfo & MIPS16_INSN_WRITE_X)
2471         mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)];
2472       if (pinfo & MIPS16_INSN_WRITE_Y)
2473         mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)];
2474       if (pinfo & MIPS16_INSN_WRITE_Z)
2475         mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RZ, *ip)];
2476       if (pinfo & MIPS16_INSN_WRITE_T)
2477         mask |= 1 << TREG;
2478       if (pinfo & MIPS16_INSN_WRITE_SP)
2479         mask |= 1 << SP;
2480       if (pinfo & MIPS16_INSN_WRITE_31)
2481         mask |= 1 << RA;
2482       if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
2483         mask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
2484     }
2485   else
2486     {
2487       if (pinfo & INSN_WRITE_GPR_D)
2488         mask |= 1 << EXTRACT_OPERAND (RD, *ip);
2489       if (pinfo & INSN_WRITE_GPR_T)
2490         mask |= 1 << EXTRACT_OPERAND (RT, *ip);
2491       if (pinfo & INSN_WRITE_GPR_31)
2492         mask |= 1 << RA;
2493       if (pinfo2 & INSN2_WRITE_GPR_Z)
2494         mask |= 1 << EXTRACT_OPERAND (RZ, *ip);
2495     }
2496   /* Don't include register 0.  */
2497   return mask & ~1;
2498 }
2499
2500 /* Return the mask of floating-point registers that IP reads.  */
2501
2502 static unsigned int
2503 fpr_read_mask (const struct mips_cl_insn *ip)
2504 {
2505   unsigned long pinfo, pinfo2;
2506   unsigned int mask;
2507
2508   mask = 0;
2509   pinfo = ip->insn_mo->pinfo;
2510   pinfo2 = ip->insn_mo->pinfo2;
2511   if (!mips_opts.mips16)
2512     {
2513       if (pinfo & INSN_READ_FPR_S)
2514         mask |= 1 << EXTRACT_OPERAND (FS, *ip);
2515       if (pinfo & INSN_READ_FPR_T)
2516         mask |= 1 << EXTRACT_OPERAND (FT, *ip);
2517       if (pinfo & INSN_READ_FPR_R)
2518         mask |= 1 << EXTRACT_OPERAND (FR, *ip);
2519       if (pinfo2 & INSN2_READ_FPR_Z)
2520         mask |= 1 << EXTRACT_OPERAND (FZ, *ip);
2521     }
2522   /* Conservatively treat all operands to an FP_D instruction are doubles.
2523      (This is overly pessimistic for things like cvt.d.s.)  */
2524   if (HAVE_32BIT_FPRS && (pinfo & FP_D))
2525     mask |= mask << 1;
2526   return mask;
2527 }
2528
2529 /* Return the mask of floating-point registers that IP writes.  */
2530
2531 static unsigned int
2532 fpr_write_mask (const struct mips_cl_insn *ip)
2533 {
2534   unsigned long pinfo, pinfo2;
2535   unsigned int mask;
2536
2537   mask = 0;
2538   pinfo = ip->insn_mo->pinfo;
2539   pinfo2 = ip->insn_mo->pinfo2;
2540   if (!mips_opts.mips16)
2541     {
2542       if (pinfo & INSN_WRITE_FPR_D)
2543         mask |= 1 << EXTRACT_OPERAND (FD, *ip);
2544       if (pinfo & INSN_WRITE_FPR_S)
2545         mask |= 1 << EXTRACT_OPERAND (FS, *ip);
2546       if (pinfo & INSN_WRITE_FPR_T)
2547         mask |= 1 << EXTRACT_OPERAND (FT, *ip);
2548       if (pinfo2 & INSN2_WRITE_FPR_Z)
2549         mask |= 1 << EXTRACT_OPERAND (FZ, *ip);
2550     }
2551   /* Conservatively treat all operands to an FP_D instruction are doubles.
2552      (This is overly pessimistic for things like cvt.s.d.)  */
2553   if (HAVE_32BIT_FPRS && (pinfo & FP_D))
2554     mask |= mask << 1;
2555   return mask;
2556 }
2557
2558 /* Classify an instruction according to the FIX_VR4120_* enumeration.
2559    Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
2560    by VR4120 errata.  */
2561
2562 static unsigned int
2563 classify_vr4120_insn (const char *name)
2564 {
2565   if (strncmp (name, "macc", 4) == 0)
2566     return FIX_VR4120_MACC;
2567   if (strncmp (name, "dmacc", 5) == 0)
2568     return FIX_VR4120_DMACC;
2569   if (strncmp (name, "mult", 4) == 0)
2570     return FIX_VR4120_MULT;
2571   if (strncmp (name, "dmult", 5) == 0)
2572     return FIX_VR4120_DMULT;
2573   if (strstr (name, "div"))
2574     return FIX_VR4120_DIV;
2575   if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
2576     return FIX_VR4120_MTHILO;
2577   return NUM_FIX_VR4120_CLASSES;
2578 }
2579
2580 #define INSN_ERET  0x42000018
2581 #define INSN_DERET 0x4200001f
2582
2583 /* Return the number of instructions that must separate INSN1 and INSN2,
2584    where INSN1 is the earlier instruction.  Return the worst-case value
2585    for any INSN2 if INSN2 is null.  */
2586
2587 static unsigned int
2588 insns_between (const struct mips_cl_insn *insn1,
2589                const struct mips_cl_insn *insn2)
2590 {
2591   unsigned long pinfo1, pinfo2;
2592   unsigned int mask;
2593
2594   /* This function needs to know which pinfo flags are set for INSN2
2595      and which registers INSN2 uses.  The former is stored in PINFO2 and
2596      the latter is tested via INSN2_USES_GPR.  If INSN2 is null, PINFO2
2597      will have every flag set and INSN2_USES_GPR will always return true.  */
2598   pinfo1 = insn1->insn_mo->pinfo;
2599   pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
2600
2601 #define INSN2_USES_GPR(REG) \
2602   (insn2 == NULL || (gpr_read_mask (insn2) & (1U << (REG))) != 0)
2603
2604   /* For most targets, write-after-read dependencies on the HI and LO
2605      registers must be separated by at least two instructions.  */
2606   if (!hilo_interlocks)
2607     {
2608       if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
2609         return 2;
2610       if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
2611         return 2;
2612     }
2613
2614   /* If we're working around r7000 errata, there must be two instructions
2615      between an mfhi or mflo and any instruction that uses the result.  */
2616   if (mips_7000_hilo_fix
2617       && MF_HILO_INSN (pinfo1)
2618       && INSN2_USES_GPR (EXTRACT_OPERAND (RD, *insn1)))
2619     return 2;
2620
2621   /* If we're working around 24K errata, one instruction is required
2622      if an ERET or DERET is followed by a branch instruction.  */
2623   if (mips_fix_24k)
2624     {
2625       if (insn1->insn_opcode == INSN_ERET
2626           || insn1->insn_opcode == INSN_DERET)
2627         {
2628           if (insn2 == NULL
2629               || insn2->insn_opcode == INSN_ERET
2630               || insn2->insn_opcode == INSN_DERET
2631               || (insn2->insn_mo->pinfo
2632                   & (INSN_UNCOND_BRANCH_DELAY
2633                      | INSN_COND_BRANCH_DELAY
2634                      | INSN_COND_BRANCH_LIKELY)) != 0)
2635             return 1;
2636         }
2637     }
2638
2639   /* If working around VR4120 errata, check for combinations that need
2640      a single intervening instruction.  */
2641   if (mips_fix_vr4120)
2642     {
2643       unsigned int class1, class2;
2644
2645       class1 = classify_vr4120_insn (insn1->insn_mo->name);
2646       if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
2647         {
2648           if (insn2 == NULL)
2649             return 1;
2650           class2 = classify_vr4120_insn (insn2->insn_mo->name);
2651           if (vr4120_conflicts[class1] & (1 << class2))
2652             return 1;
2653         }
2654     }
2655
2656   if (!mips_opts.mips16)
2657     {
2658       /* Check for GPR or coprocessor load delays.  All such delays
2659          are on the RT register.  */
2660       /* Itbl support may require additional care here.  */
2661       if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY_DELAY))
2662           || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY)))
2663         {
2664           know (pinfo1 & INSN_WRITE_GPR_T);
2665           if (INSN2_USES_GPR (EXTRACT_OPERAND (RT, *insn1)))
2666             return 1;
2667         }
2668
2669       /* Check for generic coprocessor hazards.
2670
2671          This case is not handled very well.  There is no special
2672          knowledge of CP0 handling, and the coprocessors other than
2673          the floating point unit are not distinguished at all.  */
2674       /* Itbl support may require additional care here. FIXME!
2675          Need to modify this to include knowledge about
2676          user specified delays!  */
2677       else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE_DELAY))
2678                || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
2679         {
2680           /* Handle cases where INSN1 writes to a known general coprocessor
2681              register.  There must be a one instruction delay before INSN2
2682              if INSN2 reads that register, otherwise no delay is needed.  */
2683           mask = fpr_write_mask (insn1);
2684           if (mask != 0)
2685             {
2686               if (!insn2 || (mask & fpr_read_mask (insn2)) != 0)
2687                 return 1;
2688             }
2689           else
2690             {
2691               /* Read-after-write dependencies on the control registers
2692                  require a two-instruction gap.  */
2693               if ((pinfo1 & INSN_WRITE_COND_CODE)
2694                   && (pinfo2 & INSN_READ_COND_CODE))
2695                 return 2;
2696
2697               /* We don't know exactly what INSN1 does.  If INSN2 is
2698                  also a coprocessor instruction, assume there must be
2699                  a one instruction gap.  */
2700               if (pinfo2 & INSN_COP)
2701                 return 1;
2702             }
2703         }
2704
2705       /* Check for read-after-write dependencies on the coprocessor
2706          control registers in cases where INSN1 does not need a general
2707          coprocessor delay.  This means that INSN1 is a floating point
2708          comparison instruction.  */
2709       /* Itbl support may require additional care here.  */
2710       else if (!cop_interlocks
2711                && (pinfo1 & INSN_WRITE_COND_CODE)
2712                && (pinfo2 & INSN_READ_COND_CODE))
2713         return 1;
2714     }
2715
2716 #undef INSN2_USES_GPR
2717
2718   return 0;
2719 }
2720
2721 /* Return the number of nops that would be needed to work around the
2722    VR4130 mflo/mfhi errata if instruction INSN immediately followed
2723    the MAX_VR4130_NOPS instructions described by HIST.  Ignore hazards
2724    that are contained within the first IGNORE instructions of HIST.  */
2725
2726 static int
2727 nops_for_vr4130 (int ignore, const struct mips_cl_insn *hist,
2728                  const struct mips_cl_insn *insn)
2729 {
2730   int i, j;
2731   unsigned int mask;
2732
2733   /* Check if the instruction writes to HI or LO.  MTHI and MTLO
2734      are not affected by the errata.  */
2735   if (insn != 0
2736       && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
2737           || strcmp (insn->insn_mo->name, "mtlo") == 0
2738           || strcmp (insn->insn_mo->name, "mthi") == 0))
2739     return 0;
2740
2741   /* Search for the first MFLO or MFHI.  */
2742   for (i = 0; i < MAX_VR4130_NOPS; i++)
2743     if (MF_HILO_INSN (hist[i].insn_mo->pinfo))
2744       {
2745         /* Extract the destination register.  */
2746         mask = gpr_write_mask (&hist[i]);
2747
2748         /* No nops are needed if INSN reads that register.  */
2749         if (insn != NULL && (gpr_read_mask (insn) & mask) != 0)
2750           return 0;
2751
2752         /* ...or if any of the intervening instructions do.  */
2753         for (j = 0; j < i; j++)
2754           if (gpr_read_mask (&hist[j]) & mask)
2755             return 0;
2756
2757         if (i >= ignore)
2758           return MAX_VR4130_NOPS - i;
2759       }
2760   return 0;
2761 }
2762
2763 #define BASE_REG_EQ(INSN1, INSN2)       \
2764   ((((INSN1) >> OP_SH_RS) & OP_MASK_RS) \
2765       == (((INSN2) >> OP_SH_RS) & OP_MASK_RS))
2766
2767 /* Return the minimum alignment for this store instruction.  */
2768
2769 static int
2770 fix_24k_align_to (const struct mips_opcode *mo)
2771 {
2772   if (strcmp (mo->name, "sh") == 0)
2773     return 2;
2774
2775   if (strcmp (mo->name, "swc1") == 0
2776       || strcmp (mo->name, "swc2") == 0
2777       || strcmp (mo->name, "sw") == 0
2778       || strcmp (mo->name, "sc") == 0
2779       || strcmp (mo->name, "s.s") == 0)
2780     return 4;
2781
2782   if (strcmp (mo->name, "sdc1") == 0
2783       || strcmp (mo->name, "sdc2") == 0
2784       || strcmp (mo->name, "s.d") == 0)
2785     return 8;
2786
2787   /* sb, swl, swr */
2788   return 1;
2789 }
2790
2791 struct fix_24k_store_info
2792   {
2793     /* Immediate offset, if any, for this store instruction.  */
2794     short off;
2795     /* Alignment required by this store instruction.  */
2796     int align_to;
2797     /* True for register offsets.  */
2798     int register_offset;
2799   };
2800
2801 /* Comparison function used by qsort.  */
2802
2803 static int
2804 fix_24k_sort (const void *a, const void *b)
2805 {
2806   const struct fix_24k_store_info *pos1 = a;
2807   const struct fix_24k_store_info *pos2 = b;
2808
2809   return (pos1->off - pos2->off);
2810 }
2811
2812 /* INSN is a store instruction.  Try to record the store information
2813    in STINFO.  Return false if the information isn't known.  */
2814
2815 static bfd_boolean
2816 fix_24k_record_store_info (struct fix_24k_store_info *stinfo,
2817                            const struct mips_cl_insn *insn)
2818 {
2819   /* The instruction must have a known offset.  */
2820   if (!insn->complete_p || !strstr (insn->insn_mo->args, "o("))
2821     return FALSE;
2822
2823   stinfo->off = (insn->insn_opcode >> OP_SH_IMMEDIATE) & OP_MASK_IMMEDIATE;
2824   stinfo->align_to = fix_24k_align_to (insn->insn_mo);
2825   return TRUE;
2826 }
2827
2828 /* Return the number of nops that would be needed to work around the 24k
2829    "lost data on stores during refill" errata if instruction INSN
2830    immediately followed the 2 instructions described by HIST.
2831    Ignore hazards that are contained within the first IGNORE
2832    instructions of HIST.
2833
2834    Problem: The FSB (fetch store buffer) acts as an intermediate buffer
2835    for the data cache refills and store data. The following describes
2836    the scenario where the store data could be lost.
2837
2838    * A data cache miss, due to either a load or a store, causing fill
2839      data to be supplied by the memory subsystem
2840    * The first three doublewords of fill data are returned and written
2841      into the cache
2842    * A sequence of four stores occurs in consecutive cycles around the
2843      final doubleword of the fill:
2844    * Store A
2845    * Store B
2846    * Store C
2847    * Zero, One or more instructions
2848    * Store D
2849
2850    The four stores A-D must be to different doublewords of the line that
2851    is being filled. The fourth instruction in the sequence above permits
2852    the fill of the final doubleword to be transferred from the FSB into
2853    the cache. In the sequence above, the stores may be either integer
2854    (sb, sh, sw, swr, swl, sc) or coprocessor (swc1/swc2, sdc1/sdc2,
2855    swxc1, sdxc1, suxc1) stores, as long as the four stores are to
2856    different doublewords on the line. If the floating point unit is
2857    running in 1:2 mode, it is not possible to create the sequence above
2858    using only floating point store instructions.
2859
2860    In this case, the cache line being filled is incorrectly marked
2861    invalid, thereby losing the data from any store to the line that
2862    occurs between the original miss and the completion of the five
2863    cycle sequence shown above.
2864
2865    The workarounds are:
2866
2867    * Run the data cache in write-through mode.
2868    * Insert a non-store instruction between
2869      Store A and Store B or Store B and Store C.  */
2870   
2871 static int
2872 nops_for_24k (int ignore, const struct mips_cl_insn *hist,
2873               const struct mips_cl_insn *insn)
2874 {
2875   struct fix_24k_store_info pos[3];
2876   int align, i, base_offset;
2877
2878   if (ignore >= 2)
2879     return 0;
2880
2881   /* If the previous instruction wasn't a store, there's nothing to
2882      worry about.  */
2883   if ((hist[0].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
2884     return 0;
2885
2886   /* If the instructions after the previous one are unknown, we have
2887      to assume the worst.  */
2888   if (!insn)
2889     return 1;
2890
2891   /* Check whether we are dealing with three consecutive stores.  */
2892   if ((insn->insn_mo->pinfo & INSN_STORE_MEMORY) == 0
2893       || (hist[1].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
2894     return 0;
2895
2896   /* If we don't know the relationship between the store addresses,
2897      assume the worst.  */
2898   if (!BASE_REG_EQ (insn->insn_opcode, hist[0].insn_opcode)
2899       || !BASE_REG_EQ (insn->insn_opcode, hist[1].insn_opcode))
2900     return 1;
2901
2902   if (!fix_24k_record_store_info (&pos[0], insn)
2903       || !fix_24k_record_store_info (&pos[1], &hist[0])
2904       || !fix_24k_record_store_info (&pos[2], &hist[1]))
2905     return 1;
2906
2907   qsort (&pos, 3, sizeof (struct fix_24k_store_info), fix_24k_sort);
2908
2909   /* Pick a value of ALIGN and X such that all offsets are adjusted by
2910      X bytes and such that the base register + X is known to be aligned
2911      to align bytes.  */
2912
2913   if (((insn->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == SP)
2914     align = 8;
2915   else
2916     {
2917       align = pos[0].align_to;
2918       base_offset = pos[0].off;
2919       for (i = 1; i < 3; i++)
2920         if (align < pos[i].align_to)
2921           {
2922             align = pos[i].align_to;
2923             base_offset = pos[i].off;
2924           }
2925       for (i = 0; i < 3; i++)
2926         pos[i].off -= base_offset;
2927     }
2928
2929   pos[0].off &= ~align + 1;
2930   pos[1].off &= ~align + 1;
2931   pos[2].off &= ~align + 1;
2932
2933   /* If any two stores write to the same chunk, they also write to the
2934      same doubleword.  The offsets are still sorted at this point.  */
2935   if (pos[0].off == pos[1].off || pos[1].off == pos[2].off)
2936     return 0;
2937
2938   /* A range of at least 9 bytes is needed for the stores to be in
2939      non-overlapping doublewords.  */
2940   if (pos[2].off - pos[0].off <= 8)
2941     return 0;
2942
2943   if (pos[2].off - pos[1].off >= 24
2944       || pos[1].off - pos[0].off >= 24
2945       || pos[2].off - pos[0].off >= 32)
2946     return 0;
2947
2948   return 1;
2949 }
2950
2951 /* Return the number of nops that would be needed if instruction INSN
2952    immediately followed the MAX_NOPS instructions given by HIST,
2953    where HIST[0] is the most recent instruction.  Ignore hazards
2954    between INSN and the first IGNORE instructions in HIST.
2955
2956    If INSN is null, return the worse-case number of nops for any
2957    instruction.  */
2958
2959 static int
2960 nops_for_insn (int ignore, const struct mips_cl_insn *hist,
2961                const struct mips_cl_insn *insn)
2962 {
2963   int i, nops, tmp_nops;
2964
2965   nops = 0;
2966   for (i = ignore; i < MAX_DELAY_NOPS; i++)
2967     {
2968       tmp_nops = insns_between (hist + i, insn) - i;
2969       if (tmp_nops > nops)
2970         nops = tmp_nops;
2971     }
2972
2973   if (mips_fix_vr4130)
2974     {
2975       tmp_nops = nops_for_vr4130 (ignore, hist, insn);
2976       if (tmp_nops > nops)
2977         nops = tmp_nops;
2978     }
2979
2980   if (mips_fix_24k)
2981     {
2982       tmp_nops = nops_for_24k (ignore, hist, insn);
2983       if (tmp_nops > nops)
2984         nops = tmp_nops;
2985     }
2986
2987   return nops;
2988 }
2989
2990 /* The variable arguments provide NUM_INSNS extra instructions that
2991    might be added to HIST.  Return the largest number of nops that
2992    would be needed after the extended sequence, ignoring hazards
2993    in the first IGNORE instructions.  */
2994
2995 static int
2996 nops_for_sequence (int num_insns, int ignore,
2997                    const struct mips_cl_insn *hist, ...)
2998 {
2999   va_list args;
3000   struct mips_cl_insn buffer[MAX_NOPS];
3001   struct mips_cl_insn *cursor;
3002   int nops;
3003
3004   va_start (args, hist);
3005   cursor = buffer + num_insns;
3006   memcpy (cursor, hist, (MAX_NOPS - num_insns) * sizeof (*cursor));
3007   while (cursor > buffer)
3008     *--cursor = *va_arg (args, const struct mips_cl_insn *);
3009
3010   nops = nops_for_insn (ignore, buffer, NULL);
3011   va_end (args);
3012   return nops;
3013 }
3014
3015 /* Like nops_for_insn, but if INSN is a branch, take into account the
3016    worst-case delay for the branch target.  */
3017
3018 static int
3019 nops_for_insn_or_target (int ignore, const struct mips_cl_insn *hist,
3020                          const struct mips_cl_insn *insn)
3021 {
3022   int nops, tmp_nops;
3023
3024   nops = nops_for_insn (ignore, hist, insn);
3025   if (insn->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
3026                               | INSN_COND_BRANCH_DELAY
3027                               | INSN_COND_BRANCH_LIKELY))
3028     {
3029       tmp_nops = nops_for_sequence (2, ignore ? ignore + 2 : 0,
3030                                     hist, insn, NOP_INSN);
3031       if (tmp_nops > nops)
3032         nops = tmp_nops;
3033     }
3034   else if (mips_opts.mips16
3035            && (insn->insn_mo->pinfo & (MIPS16_INSN_UNCOND_BRANCH
3036                                        | MIPS16_INSN_COND_BRANCH)))
3037     {
3038       tmp_nops = nops_for_sequence (1, ignore ? ignore + 1 : 0, hist, insn);
3039       if (tmp_nops > nops)
3040         nops = tmp_nops;
3041     }
3042   return nops;
3043 }
3044
3045 /* Fix NOP issue: Replace nops by "or at,at,zero".  */
3046
3047 static void
3048 fix_loongson2f_nop (struct mips_cl_insn * ip)
3049 {
3050   if (strcmp (ip->insn_mo->name, "nop") == 0)
3051     ip->insn_opcode = LOONGSON2F_NOP_INSN;
3052 }
3053
3054 /* Fix Jump Issue: Eliminate instruction fetch from outside 256M region
3055                    jr target pc &= 'hffff_ffff_cfff_ffff.  */
3056
3057 static void
3058 fix_loongson2f_jump (struct mips_cl_insn * ip)
3059 {
3060   if (strcmp (ip->insn_mo->name, "j") == 0
3061       || strcmp (ip->insn_mo->name, "jr") == 0
3062       || strcmp (ip->insn_mo->name, "jalr") == 0)
3063     {
3064       int sreg;
3065       expressionS ep;
3066
3067       if (! mips_opts.at)
3068         return;
3069
3070       sreg = EXTRACT_OPERAND (RS, *ip);
3071       if (sreg == ZERO || sreg == KT0 || sreg == KT1 || sreg == ATREG)
3072         return;
3073
3074       ep.X_op = O_constant;
3075       ep.X_add_number = 0xcfff0000;
3076       macro_build (&ep, "lui", "t,u", ATREG, BFD_RELOC_HI16);
3077       ep.X_add_number = 0xffff;
3078       macro_build (&ep, "ori", "t,r,i", ATREG, ATREG, BFD_RELOC_LO16);
3079       macro_build (NULL, "and", "d,v,t", sreg, sreg, ATREG);
3080     }
3081 }
3082
3083 static void
3084 fix_loongson2f (struct mips_cl_insn * ip)
3085 {
3086   if (mips_fix_loongson2f_nop)
3087     fix_loongson2f_nop (ip);
3088
3089   if (mips_fix_loongson2f_jump)
3090     fix_loongson2f_jump (ip);
3091 }
3092
3093 /* IP is a branch that has a delay slot, and we need to fill it
3094    automatically.   Return true if we can do that by swapping IP
3095    with the previous instruction.  */
3096
3097 static bfd_boolean
3098 can_swap_branch_p (struct mips_cl_insn *ip)
3099 {
3100   unsigned long pinfo, prev_pinfo;
3101   unsigned int gpr_read, gpr_write, prev_gpr_read, prev_gpr_write;
3102
3103   /* -O2 and above is required for this optimization.  */
3104   if (mips_optimize < 2)
3105     return FALSE;
3106
3107   /* If we have seen .set volatile or .set nomove, don't optimize.  */
3108   if (mips_opts.nomove)
3109     return FALSE;
3110
3111   /* We can't swap if the previous instruction's position is fixed.  */
3112   if (history[0].fixed_p)
3113     return FALSE;
3114
3115   /* If the previous previous insn was in a .set noreorder, we can't
3116      swap.  Actually, the MIPS assembler will swap in this situation.
3117      However, gcc configured -with-gnu-as will generate code like
3118
3119         .set    noreorder
3120         lw      $4,XXX
3121         .set    reorder
3122         INSN
3123         bne     $4,$0,foo
3124
3125      in which we can not swap the bne and INSN.  If gcc is not configured
3126      -with-gnu-as, it does not output the .set pseudo-ops.  */
3127   if (history[1].noreorder_p)
3128     return FALSE;
3129
3130   /* If the previous instruction had a fixup in mips16 mode, we can not
3131      swap.  This normally means that the previous instruction was a 4
3132      byte branch anyhow.  */
3133   if (mips_opts.mips16 && history[0].fixp[0])
3134     return FALSE;
3135
3136   /* If the branch is itself the target of a branch, we can not swap.
3137      We cheat on this; all we check for is whether there is a label on
3138      this instruction.  If there are any branches to anything other than
3139      a label, users must use .set noreorder.  */
3140   if (seg_info (now_seg)->label_list)
3141     return FALSE;
3142
3143   /* If the previous instruction is in a variant frag other than this
3144      branch's one, we cannot do the swap.  This does not apply to the
3145      mips16, which uses variant frags for different purposes.  */
3146   if (!mips_opts.mips16
3147       && history[0].frag
3148       && history[0].frag->fr_type == rs_machine_dependent)
3149     return FALSE;
3150
3151   /* We do not swap with instructions that cannot architecturally
3152      be placed in a branch delay slot, such as SYNC or ERET.  We
3153      also refrain from swapping with a trap instruction, since it
3154      complicates trap handlers to have the trap instruction be in
3155      a delay slot.  */
3156   prev_pinfo = history[0].insn_mo->pinfo;
3157   if (prev_pinfo & INSN_NO_DELAY_SLOT)
3158     return FALSE;
3159
3160   /* Check for conflicts between the branch and the instructions
3161      before the candidate delay slot.  */
3162   if (nops_for_insn (0, history + 1, ip) > 0)
3163     return FALSE;
3164
3165   /* Check for conflicts between the swapped sequence and the
3166      target of the branch.  */
3167   if (nops_for_sequence (2, 0, history + 1, ip, history) > 0)
3168     return FALSE;
3169
3170   /* If the branch reads a register that the previous
3171      instruction sets, we can not swap.  */
3172   gpr_read = gpr_read_mask (ip);
3173   prev_gpr_write = gpr_write_mask (&history[0]);
3174   if (gpr_read & prev_gpr_write)
3175     return FALSE;
3176
3177   /* If the branch writes a register that the previous
3178      instruction sets, we can not swap.  */
3179   gpr_write = gpr_write_mask (ip);
3180   if (gpr_write & prev_gpr_write)
3181     return FALSE;
3182
3183   /* If the branch writes a register that the previous
3184      instruction reads, we can not swap.  */
3185   prev_gpr_read = gpr_read_mask (&history[0]);
3186   if (gpr_write & prev_gpr_read)
3187     return FALSE;
3188
3189   /* If one instruction sets a condition code and the
3190      other one uses a condition code, we can not swap.  */
3191   pinfo = ip->insn_mo->pinfo;
3192   if ((pinfo & INSN_READ_COND_CODE)
3193       && (prev_pinfo & INSN_WRITE_COND_CODE))
3194     return FALSE;
3195   if ((pinfo & INSN_WRITE_COND_CODE)
3196       && (prev_pinfo & INSN_READ_COND_CODE))
3197     return FALSE;
3198
3199   /* If the previous instruction uses the PC, we can not swap.  */
3200   if (mips_opts.mips16 && (prev_pinfo & MIPS16_INSN_READ_PC))
3201     return FALSE;
3202
3203   return TRUE;
3204 }
3205
3206 /* Decide how we should add IP to the instruction stream.  */
3207
3208 static enum append_method
3209 get_append_method (struct mips_cl_insn *ip)
3210 {
3211   unsigned long pinfo;
3212
3213   /* The relaxed version of a macro sequence must be inherently
3214      hazard-free.  */
3215   if (mips_relax.sequence == 2)
3216     return APPEND_ADD;
3217
3218   /* We must not dabble with instructions in a ".set norerorder" block.  */
3219   if (mips_opts.noreorder)
3220     return APPEND_ADD;
3221
3222   /* Otherwise, it's our responsibility to fill branch delay slots.  */
3223   pinfo = ip->insn_mo->pinfo;
3224   if ((pinfo & INSN_UNCOND_BRANCH_DELAY)
3225       || (pinfo & INSN_COND_BRANCH_DELAY))
3226     {
3227       if (can_swap_branch_p (ip))
3228         return APPEND_SWAP;
3229
3230       if (mips_opts.mips16
3231           && ISA_SUPPORTS_MIPS16E
3232           && (pinfo & INSN_UNCOND_BRANCH_DELAY)
3233           && (pinfo & (MIPS16_INSN_READ_X | MIPS16_INSN_READ_31)))
3234         return APPEND_ADD_COMPACT;
3235
3236       return APPEND_ADD_WITH_NOP;
3237     }
3238
3239   /* We don't bother trying to track the target of branches, so there's
3240      nothing we can use to fill a branch-likely slot.  */
3241   if (pinfo & INSN_COND_BRANCH_LIKELY)
3242     return APPEND_ADD_WITH_NOP;
3243
3244   return APPEND_ADD;
3245 }
3246
3247 /* IP is a MIPS16 instruction whose opcode we have just changed.
3248    Point IP->insn_mo to the new opcode's definition.  */
3249
3250 static void
3251 find_altered_mips16_opcode (struct mips_cl_insn *ip)
3252 {
3253   const struct mips_opcode *mo, *end;
3254
3255   end = &mips16_opcodes[bfd_mips16_num_opcodes];
3256   for (mo = ip->insn_mo; mo < end; mo++)
3257     if ((ip->insn_opcode & mo->mask) == mo->match)
3258       {
3259         ip->insn_mo = mo;
3260         return;
3261       }
3262   abort ();
3263 }
3264
3265 /* Output an instruction.  IP is the instruction information.
3266    ADDRESS_EXPR is an operand of the instruction to be used with
3267    RELOC_TYPE.  */
3268
3269 static void
3270 append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
3271              bfd_reloc_code_real_type *reloc_type)
3272 {
3273   unsigned long prev_pinfo, pinfo;
3274   bfd_boolean relaxed_branch = FALSE;
3275   enum append_method method;
3276
3277   if (mips_fix_loongson2f)
3278     fix_loongson2f (ip);
3279
3280   /* Mark instruction labels in mips16 mode.  */
3281   mips16_mark_labels ();
3282
3283   file_ase_mips16 |= mips_opts.mips16;
3284
3285   prev_pinfo = history[0].insn_mo->pinfo;
3286   pinfo = ip->insn_mo->pinfo;
3287
3288   if (address_expr == NULL)
3289     ip->complete_p = 1;
3290   else if (*reloc_type <= BFD_RELOC_UNUSED
3291            && address_expr->X_op == O_constant)
3292     {
3293       unsigned int tmp;
3294
3295       ip->complete_p = 1;
3296       switch (*reloc_type)
3297         {
3298         case BFD_RELOC_32:
3299           ip->insn_opcode |= address_expr->X_add_number;
3300           break;
3301
3302         case BFD_RELOC_MIPS_HIGHEST:
3303           tmp = (address_expr->X_add_number + 0x800080008000ull) >> 48;
3304           ip->insn_opcode |= tmp & 0xffff;
3305           break;
3306
3307         case BFD_RELOC_MIPS_HIGHER:
3308           tmp = (address_expr->X_add_number + 0x80008000ull) >> 32;
3309           ip->insn_opcode |= tmp & 0xffff;
3310           break;
3311
3312         case BFD_RELOC_HI16_S:
3313           tmp = (address_expr->X_add_number + 0x8000) >> 16;
3314           ip->insn_opcode |= tmp & 0xffff;
3315           break;
3316
3317         case BFD_RELOC_HI16:
3318           ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
3319           break;
3320
3321         case BFD_RELOC_UNUSED:
3322         case BFD_RELOC_LO16:
3323         case BFD_RELOC_MIPS_GOT_DISP:
3324           ip->insn_opcode |= address_expr->X_add_number & 0xffff;
3325           break;
3326
3327         case BFD_RELOC_MIPS_JMP:
3328           if ((address_expr->X_add_number & 3) != 0)
3329             as_bad (_("jump to misaligned address (0x%lx)"),
3330                     (unsigned long) address_expr->X_add_number);
3331           ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff;
3332           ip->complete_p = 0;
3333           break;
3334
3335         case BFD_RELOC_MIPS16_JMP:
3336           if ((address_expr->X_add_number & 3) != 0)
3337             as_bad (_("jump to misaligned address (0x%lx)"),
3338                     (unsigned long) address_expr->X_add_number);
3339           ip->insn_opcode |=
3340             (((address_expr->X_add_number & 0x7c0000) << 3)
3341                | ((address_expr->X_add_number & 0xf800000) >> 7)
3342                | ((address_expr->X_add_number & 0x3fffc) >> 2));
3343           ip->complete_p = 0;
3344           break;
3345
3346         case BFD_RELOC_16_PCREL_S2:
3347           if ((address_expr->X_add_number & 3) != 0)
3348             as_bad (_("branch to misaligned address (0x%lx)"),
3349                     (unsigned long) address_expr->X_add_number);
3350           if (!mips_relax_branch)
3351             {
3352               if ((address_expr->X_add_number + 0x20000) & ~0x3ffff)
3353                 as_bad (_("branch address range overflow (0x%lx)"),
3354                         (unsigned long) address_expr->X_add_number);
3355               ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0xffff;
3356             }
3357           ip->complete_p = 0;
3358           break;
3359
3360         default:
3361           internalError ();
3362         }       
3363     }
3364
3365   if (mips_relax.sequence != 2 && !mips_opts.noreorder)
3366     {
3367       /* There are a lot of optimizations we could do that we don't.
3368          In particular, we do not, in general, reorder instructions.
3369          If you use gcc with optimization, it will reorder
3370          instructions and generally do much more optimization then we
3371          do here; repeating all that work in the assembler would only
3372          benefit hand written assembly code, and does not seem worth
3373          it.  */
3374       int nops = (mips_optimize == 0
3375                   ? nops_for_insn (0, history, NULL)
3376                   : nops_for_insn_or_target (0, history, ip));
3377       if (nops > 0)
3378         {
3379           fragS *old_frag;
3380           unsigned long old_frag_offset;
3381           int i;
3382
3383           old_frag = frag_now;
3384           old_frag_offset = frag_now_fix ();
3385
3386           for (i = 0; i < nops; i++)
3387             emit_nop ();
3388
3389           if (listing)
3390             {
3391               listing_prev_line ();
3392               /* We may be at the start of a variant frag.  In case we
3393                  are, make sure there is enough space for the frag
3394                  after the frags created by listing_prev_line.  The
3395                  argument to frag_grow here must be at least as large
3396                  as the argument to all other calls to frag_grow in
3397                  this file.  We don't have to worry about being in the
3398                  middle of a variant frag, because the variants insert
3399                  all needed nop instructions themselves.  */
3400               frag_grow (40);
3401             }
3402
3403           mips_move_labels ();
3404
3405 #ifndef NO_ECOFF_DEBUGGING
3406           if (ECOFF_DEBUGGING)
3407             ecoff_fix_loc (old_frag, old_frag_offset);
3408 #endif
3409         }
3410     }
3411   else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
3412     {
3413       int nops;
3414
3415       /* Work out how many nops in prev_nop_frag are needed by IP,
3416          ignoring hazards generated by the first prev_nop_frag_since
3417          instructions.  */
3418       nops = nops_for_insn_or_target (prev_nop_frag_since, history, ip);
3419       gas_assert (nops <= prev_nop_frag_holds);
3420
3421       /* Enforce NOPS as a minimum.  */
3422       if (nops > prev_nop_frag_required)
3423         prev_nop_frag_required = nops;
3424
3425       if (prev_nop_frag_holds == prev_nop_frag_required)
3426         {
3427           /* Settle for the current number of nops.  Update the history
3428              accordingly (for the benefit of any future .set reorder code).  */
3429           prev_nop_frag = NULL;
3430           insert_into_history (prev_nop_frag_since,
3431                                prev_nop_frag_holds, NOP_INSN);
3432         }
3433       else
3434         {
3435           /* Allow this instruction to replace one of the nops that was
3436              tentatively added to prev_nop_frag.  */
3437           prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
3438           prev_nop_frag_holds--;
3439           prev_nop_frag_since++;
3440         }
3441     }
3442
3443   method = get_append_method (ip);
3444
3445 #ifdef OBJ_ELF
3446   /* The value passed to dwarf2_emit_insn is the distance between
3447      the beginning of the current instruction and the address that
3448      should be recorded in the debug tables.  This is normally the
3449      current address.
3450
3451      For MIPS16 debug info we want to use ISA-encoded addresses,
3452      so we use -1 for an address higher by one than the current one.
3453
3454      If the instruction produced is a branch that we will swap with
3455      the preceding instruction, then we add the displacement by which
3456      the branch will be moved backwards.  This is more appropriate
3457      and for MIPS16 code also prevents a debugger from placing a
3458      breakpoint in the middle of the branch (and corrupting code if
3459      software breakpoints are used).  */
3460   dwarf2_emit_insn ((mips_opts.mips16 ? -1 : 0)
3461                     + (method == APPEND_SWAP ? insn_length (history) : 0));
3462 #endif
3463
3464   if (address_expr
3465       && *reloc_type == BFD_RELOC_16_PCREL_S2
3466       && (pinfo & INSN_UNCOND_BRANCH_DELAY || pinfo & INSN_COND_BRANCH_DELAY
3467           || pinfo & INSN_COND_BRANCH_LIKELY)
3468       && mips_relax_branch
3469       /* Don't try branch relaxation within .set nomacro, or within
3470          .set noat if we use $at for PIC computations.  If it turns
3471          out that the branch was out-of-range, we'll get an error.  */
3472       && !mips_opts.warn_about_macros
3473       && (mips_opts.at || mips_pic == NO_PIC)
3474       /* Don't relax BPOSGE32/64 as they have no complementing branches.  */
3475       && !(ip->insn_mo->membership & (INSN_DSP64 | INSN_DSP))
3476       && !mips_opts.mips16)
3477     {
3478       relaxed_branch = TRUE;
3479       add_relaxed_insn (ip, (relaxed_branch_length
3480                              (NULL, NULL,
3481                               (pinfo & INSN_UNCOND_BRANCH_DELAY) ? -1
3482                               : (pinfo & INSN_COND_BRANCH_LIKELY) ? 1
3483                               : 0)), 4,
3484                         RELAX_BRANCH_ENCODE
3485                         (AT,
3486                          pinfo & INSN_UNCOND_BRANCH_DELAY,
3487                          pinfo & INSN_COND_BRANCH_LIKELY,
3488                          pinfo & INSN_WRITE_GPR_31,
3489                          0),
3490                         address_expr->X_add_symbol,
3491                         address_expr->X_add_number);
3492       *reloc_type = BFD_RELOC_UNUSED;
3493     }
3494   else if (*reloc_type > BFD_RELOC_UNUSED)
3495     {
3496       /* We need to set up a variant frag.  */
3497       gas_assert (mips_opts.mips16 && address_expr != NULL);
3498       add_relaxed_insn (ip, 4, 0,
3499                         RELAX_MIPS16_ENCODE
3500                         (*reloc_type - BFD_RELOC_UNUSED,
3501                          mips16_small, mips16_ext,
3502                          prev_pinfo & INSN_UNCOND_BRANCH_DELAY,
3503                          history[0].mips16_absolute_jump_p),
3504                         make_expr_symbol (address_expr), 0);
3505     }
3506   else if (mips_opts.mips16
3507            && ! ip->use_extend
3508            && *reloc_type != BFD_RELOC_MIPS16_JMP)
3509     {
3510       if ((pinfo & INSN_UNCOND_BRANCH_DELAY) == 0)
3511         /* Make sure there is enough room to swap this instruction with
3512            a following jump instruction.  */
3513         frag_grow (6);
3514       add_fixed_insn (ip);
3515     }
3516   else
3517     {
3518       if (mips_opts.mips16
3519           && mips_opts.noreorder
3520           && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0)
3521         as_warn (_("extended instruction in delay slot"));
3522
3523       if (mips_relax.sequence)
3524         {
3525           /* If we've reached the end of this frag, turn it into a variant
3526              frag and record the information for the instructions we've
3527              written so far.  */
3528           if (frag_room () < 4)
3529             relax_close_frag ();
3530           mips_relax.sizes[mips_relax.sequence - 1] += 4;
3531         }
3532
3533       if (mips_relax.sequence != 2)
3534         mips_macro_warning.sizes[0] += 4;
3535       if (mips_relax.sequence != 1)
3536         mips_macro_warning.sizes[1] += 4;
3537
3538       if (mips_opts.mips16)
3539         {
3540           ip->fixed_p = 1;
3541           ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
3542         }
3543       add_fixed_insn (ip);
3544     }
3545
3546   if (!ip->complete_p && *reloc_type < BFD_RELOC_UNUSED)
3547     {
3548       reloc_howto_type *howto;
3549       int i;
3550
3551       /* In a compound relocation, it is the final (outermost)
3552          operator that determines the relocated field.  */
3553       for (i = 1; i < 3; i++)
3554         if (reloc_type[i] == BFD_RELOC_UNUSED)
3555           break;
3556
3557       howto = bfd_reloc_type_lookup (stdoutput, reloc_type[i - 1]);
3558       if (howto == NULL)
3559         {
3560           /* To reproduce this failure try assembling gas/testsuites/
3561              gas/mips/mips16-intermix.s with a mips-ecoff targeted
3562              assembler.  */
3563           as_bad (_("Unsupported MIPS relocation number %d"), reloc_type[i - 1]);
3564           howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_16);
3565         }
3566           
3567       ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
3568                                  bfd_get_reloc_size (howto),
3569                                  address_expr,
3570                                  reloc_type[0] == BFD_RELOC_16_PCREL_S2,
3571                                  reloc_type[0]);
3572
3573       /* Tag symbols that have a R_MIPS16_26 relocation against them.  */
3574       if (reloc_type[0] == BFD_RELOC_MIPS16_JMP
3575           && ip->fixp[0]->fx_addsy)
3576         *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
3577
3578       /* These relocations can have an addend that won't fit in
3579          4 octets for 64bit assembly.  */
3580       if (HAVE_64BIT_GPRS
3581           && ! howto->partial_inplace
3582           && (reloc_type[0] == BFD_RELOC_16
3583               || reloc_type[0] == BFD_RELOC_32
3584               || reloc_type[0] == BFD_RELOC_MIPS_JMP
3585               || reloc_type[0] == BFD_RELOC_GPREL16
3586               || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
3587               || reloc_type[0] == BFD_RELOC_GPREL32
3588               || reloc_type[0] == BFD_RELOC_64
3589               || reloc_type[0] == BFD_RELOC_CTOR
3590               || reloc_type[0] == BFD_RELOC_MIPS_SUB
3591               || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
3592               || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
3593               || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
3594               || reloc_type[0] == BFD_RELOC_MIPS_REL16
3595               || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
3596               || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
3597               || hi16_reloc_p (reloc_type[0])
3598               || lo16_reloc_p (reloc_type[0])))
3599         ip->fixp[0]->fx_no_overflow = 1;
3600
3601       if (mips_relax.sequence)
3602         {
3603           if (mips_relax.first_fixup == 0)
3604             mips_relax.first_fixup = ip->fixp[0];
3605         }
3606       else if (reloc_needs_lo_p (*reloc_type))
3607         {
3608           struct mips_hi_fixup *hi_fixup;
3609
3610           /* Reuse the last entry if it already has a matching %lo.  */
3611           hi_fixup = mips_hi_fixup_list;
3612           if (hi_fixup == 0
3613               || !fixup_has_matching_lo_p (hi_fixup->fixp))
3614             {
3615               hi_fixup = ((struct mips_hi_fixup *)
3616                           xmalloc (sizeof (struct mips_hi_fixup)));
3617               hi_fixup->next = mips_hi_fixup_list;
3618               mips_hi_fixup_list = hi_fixup;
3619             }
3620           hi_fixup->fixp = ip->fixp[0];
3621           hi_fixup->seg = now_seg;
3622         }
3623
3624       /* Add fixups for the second and third relocations, if given.
3625          Note that the ABI allows the second relocation to be
3626          against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC.  At the
3627          moment we only use RSS_UNDEF, but we could add support
3628          for the others if it ever becomes necessary.  */
3629       for (i = 1; i < 3; i++)
3630         if (reloc_type[i] != BFD_RELOC_UNUSED)
3631           {
3632             ip->fixp[i] = fix_new (ip->frag, ip->where,
3633                                    ip->fixp[0]->fx_size, NULL, 0,
3634                                    FALSE, reloc_type[i]);
3635
3636             /* Use fx_tcbit to mark compound relocs.  */
3637             ip->fixp[0]->fx_tcbit = 1;
3638             ip->fixp[i]->fx_tcbit = 1;
3639           }
3640     }
3641   install_insn (ip);
3642
3643   /* Update the register mask information.  */
3644   mips_gprmask |= gpr_read_mask (ip) | gpr_write_mask (ip);
3645   mips_cprmask[1] |= fpr_read_mask (ip) | fpr_write_mask (ip);
3646
3647   switch (method)
3648     {
3649     case APPEND_ADD:
3650       insert_into_history (0, 1, ip);
3651       break;
3652
3653     case APPEND_ADD_WITH_NOP:
3654       insert_into_history (0, 1, ip);
3655       emit_nop ();
3656       if (mips_relax.sequence)
3657         mips_relax.sizes[mips_relax.sequence - 1] += 4;
3658       break;
3659
3660     case APPEND_ADD_COMPACT:
3661       /* Convert MIPS16 jr/jalr into a "compact" jump.  */
3662       gas_assert (mips_opts.mips16);
3663       ip->insn_opcode |= 0x0080;
3664       find_altered_mips16_opcode (ip);
3665       install_insn (ip);
3666       insert_into_history (0, 1, ip);
3667       break;
3668
3669     case APPEND_SWAP:
3670       {
3671         struct mips_cl_insn delay = history[0];
3672         if (mips_opts.mips16)
3673           {
3674             know (delay.frag == ip->frag);
3675             move_insn (ip, delay.frag, delay.where);
3676             move_insn (&delay, ip->frag, ip->where + insn_length (ip));
3677           }
3678         else if (relaxed_branch)
3679           {
3680             /* Add the delay slot instruction to the end of the
3681                current frag and shrink the fixed part of the
3682                original frag.  If the branch occupies the tail of
3683                the latter, move it backwards to cover the gap.  */
3684             delay.frag->fr_fix -= 4;
3685             if (delay.frag == ip->frag)
3686               move_insn (ip, ip->frag, ip->where - 4);
3687             add_fixed_insn (&delay);
3688           }
3689         else
3690           {
3691             move_insn (&delay, ip->frag, ip->where);
3692             move_insn (ip, history[0].frag, history[0].where);
3693           }
3694         history[0] = *ip;
3695         delay.fixed_p = 1;
3696         insert_into_history (0, 1, &delay);
3697       }
3698       break;
3699     }
3700
3701   /* If we have just completed an unconditional branch, clear the history.  */
3702   if ((history[1].insn_mo->pinfo & INSN_UNCOND_BRANCH_DELAY)
3703       || (mips_opts.mips16
3704           && (history[0].insn_mo->pinfo & MIPS16_INSN_UNCOND_BRANCH)))
3705     mips_no_prev_insn ();
3706
3707   /* We just output an insn, so the next one doesn't have a label.  */
3708   mips_clear_insn_labels ();
3709 }
3710
3711 /* Forget that there was any previous instruction or label.  */
3712
3713 static void
3714 mips_no_prev_insn (void)
3715 {
3716   prev_nop_frag = NULL;
3717   insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
3718   mips_clear_insn_labels ();
3719 }
3720
3721 /* This function must be called before we emit something other than
3722    instructions.  It is like mips_no_prev_insn except that it inserts
3723    any NOPS that might be needed by previous instructions.  */
3724
3725 void
3726 mips_emit_delays (void)
3727 {
3728   if (! mips_opts.noreorder)
3729     {
3730       int nops = nops_for_insn (0, history, NULL);
3731       if (nops > 0)
3732         {
3733           while (nops-- > 0)
3734             add_fixed_insn (NOP_INSN);
3735           mips_move_labels ();
3736         }
3737     }
3738   mips_no_prev_insn ();
3739 }
3740
3741 /* Start a (possibly nested) noreorder block.  */
3742
3743 static void
3744 start_noreorder (void)
3745 {
3746   if (mips_opts.noreorder == 0)
3747     {
3748       unsigned int i;
3749       int nops;
3750
3751       /* None of the instructions before the .set noreorder can be moved.  */
3752       for (i = 0; i < ARRAY_SIZE (history); i++)
3753         history[i].fixed_p = 1;
3754
3755       /* Insert any nops that might be needed between the .set noreorder
3756          block and the previous instructions.  We will later remove any
3757          nops that turn out not to be needed.  */
3758       nops = nops_for_insn (0, history, NULL);
3759       if (nops > 0)
3760         {
3761           if (mips_optimize != 0)
3762             {
3763               /* Record the frag which holds the nop instructions, so
3764                  that we can remove them if we don't need them.  */
3765               frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4);
3766               prev_nop_frag = frag_now;
3767               prev_nop_frag_holds = nops;
3768               prev_nop_frag_required = 0;
3769               prev_nop_frag_since = 0;
3770             }
3771
3772           for (; nops > 0; --nops)
3773             add_fixed_insn (NOP_INSN);
3774
3775           /* Move on to a new frag, so that it is safe to simply
3776              decrease the size of prev_nop_frag.  */
3777           frag_wane (frag_now);
3778           frag_new (0);
3779           mips_move_labels ();
3780         }
3781       mips16_mark_labels ();
3782       mips_clear_insn_labels ();
3783     }
3784   mips_opts.noreorder++;
3785   mips_any_noreorder = 1;
3786 }
3787
3788 /* End a nested noreorder block.  */
3789
3790 static void
3791 end_noreorder (void)
3792 {
3793
3794   mips_opts.noreorder--;
3795   if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
3796     {
3797       /* Commit to inserting prev_nop_frag_required nops and go back to
3798          handling nop insertion the .set reorder way.  */
3799       prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
3800                                 * (mips_opts.mips16 ? 2 : 4));
3801       insert_into_history (prev_nop_frag_since,
3802                            prev_nop_frag_required, NOP_INSN);
3803       prev_nop_frag = NULL;
3804     }
3805 }
3806
3807 /* Set up global variables for the start of a new macro.  */
3808
3809 static void
3810 macro_start (void)
3811 {
3812   memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
3813   mips_macro_warning.delay_slot_p = (mips_opts.noreorder
3814                                      && (history[0].insn_mo->pinfo
3815                                          & (INSN_UNCOND_BRANCH_DELAY
3816                                             | INSN_COND_BRANCH_DELAY
3817                                             | INSN_COND_BRANCH_LIKELY)) != 0);
3818 }
3819
3820 /* Given that a macro is longer than 4 bytes, return the appropriate warning
3821    for it.  Return null if no warning is needed.  SUBTYPE is a bitmask of
3822    RELAX_DELAY_SLOT and RELAX_NOMACRO.  */
3823
3824 static const char *
3825 macro_warning (relax_substateT subtype)
3826 {
3827   if (subtype & RELAX_DELAY_SLOT)
3828     return _("Macro instruction expanded into multiple instructions"
3829              " in a branch delay slot");
3830   else if (subtype & RELAX_NOMACRO)
3831     return _("Macro instruction expanded into multiple instructions");
3832   else
3833     return 0;
3834 }
3835
3836 /* Finish up a macro.  Emit warnings as appropriate.  */
3837
3838 static void
3839 macro_end (void)
3840 {
3841   if (mips_macro_warning.sizes[0] > 4 || mips_macro_warning.sizes[1] > 4)
3842     {
3843       relax_substateT subtype;
3844
3845       /* Set up the relaxation warning flags.  */
3846       subtype = 0;
3847       if (mips_macro_warning.sizes[1] > mips_macro_warning.sizes[0])
3848         subtype |= RELAX_SECOND_LONGER;
3849       if (mips_opts.warn_about_macros)
3850         subtype |= RELAX_NOMACRO;
3851       if (mips_macro_warning.delay_slot_p)
3852         subtype |= RELAX_DELAY_SLOT;
3853
3854       if (mips_macro_warning.sizes[0] > 4 && mips_macro_warning.sizes[1] > 4)
3855         {
3856           /* Either the macro has a single implementation or both
3857              implementations are longer than 4 bytes.  Emit the
3858              warning now.  */
3859           const char *msg = macro_warning (subtype);
3860           if (msg != 0)
3861             as_warn ("%s", msg);
3862         }
3863       else
3864         {
3865           /* One implementation might need a warning but the other
3866              definitely doesn't.  */
3867           mips_macro_warning.first_frag->fr_subtype |= subtype;
3868         }
3869     }
3870 }
3871
3872 /* Read a macro's relocation codes from *ARGS and store them in *R.
3873    The first argument in *ARGS will be either the code for a single
3874    relocation or -1 followed by the three codes that make up a
3875    composite relocation.  */
3876
3877 static void
3878 macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
3879 {
3880   int i, next;
3881
3882   next = va_arg (*args, int);
3883   if (next >= 0)
3884     r[0] = (bfd_reloc_code_real_type) next;
3885   else
3886     for (i = 0; i < 3; i++)
3887       r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
3888 }
3889
3890 /* Build an instruction created by a macro expansion.  This is passed
3891    a pointer to the count of instructions created so far, an
3892    expression, the name of the instruction to build, an operand format
3893    string, and corresponding arguments.  */
3894
3895 static void
3896 macro_build (expressionS *ep, const char *name, const char *fmt, ...)
3897 {
3898   const struct mips_opcode *mo;
3899   struct mips_cl_insn insn;
3900   bfd_reloc_code_real_type r[3];
3901   va_list args;
3902
3903   va_start (args, fmt);
3904
3905   if (mips_opts.mips16)
3906     {
3907       mips16_macro_build (ep, name, fmt, &args);
3908       va_end (args);
3909       return;
3910     }
3911
3912   r[0] = BFD_RELOC_UNUSED;
3913   r[1] = BFD_RELOC_UNUSED;
3914   r[2] = BFD_RELOC_UNUSED;
3915   mo = (struct mips_opcode *) hash_find (op_hash, name);
3916   gas_assert (mo);
3917   gas_assert (strcmp (name, mo->name) == 0);
3918
3919   while (1)
3920     {
3921       /* Search until we get a match for NAME.  It is assumed here that
3922          macros will never generate MDMX, MIPS-3D, or MT instructions.  */
3923       if (strcmp (fmt, mo->args) == 0
3924           && mo->pinfo != INSN_MACRO
3925           && is_opcode_valid (mo))
3926         break;
3927
3928       ++mo;
3929       gas_assert (mo->name);
3930       gas_assert (strcmp (name, mo->name) == 0);
3931     }
3932
3933   create_insn (&insn, mo);
3934   for (;;)
3935     {
3936       switch (*fmt++)
3937         {
3938         case '\0':
3939           break;
3940
3941         case ',':
3942         case '(':
3943         case ')':
3944           continue;
3945
3946         case '+':
3947           switch (*fmt++)
3948             {
3949             case 'A':
3950             case 'E':
3951               INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
3952               continue;
3953
3954             case 'B':
3955             case 'F':
3956               /* Note that in the macro case, these arguments are already
3957                  in MSB form.  (When handling the instruction in the
3958                  non-macro case, these arguments are sizes from which
3959                  MSB values must be calculated.)  */
3960               INSERT_OPERAND (INSMSB, insn, va_arg (args, int));
3961               continue;
3962
3963             case 'C':
3964             case 'G':
3965             case 'H':
3966               /* Note that in the macro case, these arguments are already
3967                  in MSBD form.  (When handling the instruction in the
3968                  non-macro case, these arguments are sizes from which
3969                  MSBD values must be calculated.)  */
3970               INSERT_OPERAND (EXTMSBD, insn, va_arg (args, int));
3971               continue;
3972
3973             case 'Q':
3974               INSERT_OPERAND (SEQI, insn, va_arg (args, int));
3975               continue;
3976
3977             default:
3978               internalError ();
3979             }
3980           continue;
3981
3982         case '2':
3983           INSERT_OPERAND (BP, insn, va_arg (args, int));
3984           continue;
3985
3986         case 't':
3987         case 'w':
3988         case 'E':
3989           INSERT_OPERAND (RT, insn, va_arg (args, int));
3990           continue;
3991
3992         case 'c':
3993           INSERT_OPERAND (CODE, insn, va_arg (args, int));
3994           continue;
3995
3996         case 'T':
3997         case 'W':
3998           INSERT_OPERAND (FT, insn, va_arg (args, int));
3999           continue;
4000
4001         case 'd':
4002         case 'G':
4003         case 'K':
4004           INSERT_OPERAND (RD, insn, va_arg (args, int));
4005           continue;
4006
4007         case 'U':
4008           {
4009             int tmp = va_arg (args, int);
4010
4011             INSERT_OPERAND (RT, insn, tmp);
4012             INSERT_OPERAND (RD, insn, tmp);
4013             continue;
4014           }
4015
4016         case 'V':
4017         case 'S':
4018           INSERT_OPERAND (FS, insn, va_arg (args, int));
4019           continue;
4020
4021         case 'z':
4022           continue;
4023
4024         case '<':
4025           INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
4026           continue;
4027
4028         case 'D':
4029           INSERT_OPERAND (FD, insn, va_arg (args, int));
4030           continue;
4031
4032         case 'B':
4033           INSERT_OPERAND (CODE20, insn, va_arg (args, int));
4034           continue;
4035
4036         case 'J':
4037           INSERT_OPERAND (CODE19, insn, va_arg (args, int));
4038           continue;
4039
4040         case 'q':
4041           INSERT_OPERAND (CODE2, insn, va_arg (args, int));
4042           continue;
4043
4044         case 'b':
4045         case 's':
4046         case 'r':
4047         case 'v':
4048           INSERT_OPERAND (RS, insn, va_arg (args, int));
4049           continue;
4050
4051         case 'i':
4052         case 'j':
4053           macro_read_relocs (&args, r);
4054           gas_assert (*r == BFD_RELOC_GPREL16
4055                       || *r == BFD_RELOC_MIPS_HIGHER
4056                       || *r == BFD_RELOC_HI16_S
4057                       || *r == BFD_RELOC_LO16
4058                       || *r == BFD_RELOC_MIPS_GOT_OFST);
4059           continue;
4060
4061         case 'o':
4062           macro_read_relocs (&args, r);
4063           continue;
4064
4065         case 'u':
4066           macro_read_relocs (&args, r);
4067           gas_assert (ep != NULL
4068                       && (ep->X_op == O_constant
4069                           || (ep->X_op == O_symbol
4070                               && (*r == BFD_RELOC_MIPS_HIGHEST
4071                                   || *r == BFD_RELOC_HI16_S
4072                                   || *r == BFD_RELOC_HI16
4073                                   || *r == BFD_RELOC_GPREL16
4074                                   || *r == BFD_RELOC_MIPS_GOT_HI16
4075                                   || *r == BFD_RELOC_MIPS_CALL_HI16))));
4076           continue;
4077
4078         case 'p':
4079           gas_assert (ep != NULL);
4080
4081           /*
4082            * This allows macro() to pass an immediate expression for
4083            * creating short branches without creating a symbol.
4084            *
4085            * We don't allow branch relaxation for these branches, as
4086            * they should only appear in ".set nomacro" anyway.
4087            */
4088           if (ep->X_op == O_constant)
4089             {
4090               if ((ep->X_add_number & 3) != 0)
4091                 as_bad (_("branch to misaligned address (0x%lx)"),
4092                         (unsigned long) ep->X_add_number);
4093               if ((ep->X_add_number + 0x20000) & ~0x3ffff)
4094                 as_bad (_("branch address range overflow (0x%lx)"),
4095                         (unsigned long) ep->X_add_number);
4096               insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
4097               ep = NULL;
4098             }
4099           else
4100             *r = BFD_RELOC_16_PCREL_S2;
4101           continue;
4102
4103         case 'a':
4104           gas_assert (ep != NULL);
4105           *r = BFD_RELOC_MIPS_JMP;
4106           continue;
4107
4108         case 'C':
4109           INSERT_OPERAND (COPZ, insn, va_arg (args, unsigned long));
4110           continue;
4111
4112         case 'k':
4113           INSERT_OPERAND (CACHE, insn, va_arg (args, unsigned long));
4114           continue;
4115
4116         default:
4117           internalError ();
4118         }
4119       break;
4120     }
4121   va_end (args);
4122   gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
4123
4124   append_insn (&insn, ep, r);
4125 }
4126
4127 static void
4128 mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
4129                     va_list *args)
4130 {
4131   struct mips_opcode *mo;
4132   struct mips_cl_insn insn;
4133   bfd_reloc_code_real_type r[3]
4134     = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
4135
4136   mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
4137   gas_assert (mo);
4138   gas_assert (strcmp (name, mo->name) == 0);
4139
4140   while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
4141     {
4142       ++mo;
4143       gas_assert (mo->name);
4144       gas_assert (strcmp (name, mo->name) == 0);
4145     }
4146
4147   create_insn (&insn, mo);
4148   for (;;)
4149     {
4150       int c;
4151
4152       c = *fmt++;
4153       switch (c)
4154         {
4155         case '\0':
4156           break;
4157
4158         case ',':
4159         case '(':
4160         case ')':
4161           continue;
4162
4163         case 'y':
4164         case 'w':
4165           MIPS16_INSERT_OPERAND (RY, insn, va_arg (*args, int));
4166           continue;
4167
4168         case 'x':
4169         case 'v':
4170           MIPS16_INSERT_OPERAND (RX, insn, va_arg (*args, int));
4171           continue;
4172
4173         case 'z':
4174           MIPS16_INSERT_OPERAND (RZ, insn, va_arg (*args, int));
4175           continue;
4176
4177         case 'Z':
4178           MIPS16_INSERT_OPERAND (MOVE32Z, insn, va_arg (*args, int));
4179           continue;
4180
4181         case '0':
4182         case 'S':
4183         case 'P':
4184         case 'R':
4185           continue;
4186
4187         case 'X':
4188           MIPS16_INSERT_OPERAND (REGR32, insn, va_arg (*args, int));
4189           continue;
4190
4191         case 'Y':
4192           {
4193             int regno;
4194
4195             regno = va_arg (*args, int);
4196             regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
4197             MIPS16_INSERT_OPERAND (REG32R, insn, regno);
4198           }
4199           continue;
4200
4201         case '<':
4202         case '>':
4203         case '4':
4204         case '5':
4205         case 'H':
4206         case 'W':
4207         case 'D':
4208         case 'j':
4209         case '8':
4210         case 'V':
4211         case 'C':
4212         case 'U':
4213         case 'k':
4214         case 'K':
4215         case 'p':
4216         case 'q':
4217           {
4218             gas_assert (ep != NULL);
4219
4220             if (ep->X_op != O_constant)
4221               *r = (int) BFD_RELOC_UNUSED + c;
4222             else
4223               {
4224                 mips16_immed (NULL, 0, c, ep->X_add_number, FALSE, FALSE,
4225                               FALSE, &insn.insn_opcode, &insn.use_extend,
4226                               &insn.extend);
4227                 ep = NULL;
4228                 *r = BFD_RELOC_UNUSED;
4229               }
4230           }
4231           continue;
4232
4233         case '6':
4234           MIPS16_INSERT_OPERAND (IMM6, insn, va_arg (*args, int));
4235           continue;
4236         }
4237
4238       break;
4239     }
4240
4241   gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
4242
4243   append_insn (&insn, ep, r);
4244 }
4245
4246 /*
4247  * Sign-extend 32-bit mode constants that have bit 31 set and all
4248  * higher bits unset.
4249  */
4250 static void
4251 normalize_constant_expr (expressionS *ex)
4252 {
4253   if (ex->X_op == O_constant
4254       && IS_ZEXT_32BIT_NUM (ex->X_add_number))
4255     ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
4256                         - 0x80000000);
4257 }
4258
4259 /*
4260  * Sign-extend 32-bit mode address offsets that have bit 31 set and
4261  * all higher bits unset.
4262  */
4263 static void
4264 normalize_address_expr (expressionS *ex)
4265 {
4266   if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
4267         || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
4268       && IS_ZEXT_32BIT_NUM (ex->X_add_number))
4269     ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
4270                         - 0x80000000);
4271 }
4272
4273 /*
4274  * Generate a "jalr" instruction with a relocation hint to the called
4275  * function.  This occurs in NewABI PIC code.
4276  */
4277 static void
4278 macro_build_jalr (expressionS *ep)
4279 {
4280   char *f = NULL;
4281
4282   if (MIPS_JALR_HINT_P (ep))
4283     {
4284       frag_grow (8);
4285       f = frag_more (0);
4286     }
4287   macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
4288   if (MIPS_JALR_HINT_P (ep))
4289     fix_new_exp (frag_now, f - frag_now->fr_literal,
4290                  4, ep, FALSE, BFD_RELOC_MIPS_JALR);
4291 }
4292
4293 /*
4294  * Generate a "lui" instruction.
4295  */
4296 static void
4297 macro_build_lui (expressionS *ep, int regnum)
4298 {
4299   expressionS high_expr;
4300   const struct mips_opcode *mo;
4301   struct mips_cl_insn insn;
4302   bfd_reloc_code_real_type r[3]
4303     = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
4304   const char *name = "lui";
4305   const char *fmt = "t,u";
4306
4307   gas_assert (! mips_opts.mips16);
4308
4309   high_expr = *ep;
4310
4311   if (high_expr.X_op == O_constant)
4312     {
4313       /* We can compute the instruction now without a relocation entry.  */
4314       high_expr.X_add_number = ((high_expr.X_add_number + 0x8000)
4315                                 >> 16) & 0xffff;
4316       *r = BFD_RELOC_UNUSED;
4317     }
4318   else
4319     {
4320       gas_assert (ep->X_op == O_symbol);
4321       /* _gp_disp is a special case, used from s_cpload.
4322          __gnu_local_gp is used if mips_no_shared.  */
4323       gas_assert (mips_pic == NO_PIC
4324               || (! HAVE_NEWABI
4325                   && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
4326               || (! mips_in_shared
4327                   && strcmp (S_GET_NAME (ep->X_add_symbol),
4328                              "__gnu_local_gp") == 0));
4329       *r = BFD_RELOC_HI16_S;
4330     }
4331
4332   mo = hash_find (op_hash, name);
4333   gas_assert (strcmp (name, mo->name) == 0);
4334   gas_assert (strcmp (fmt, mo->args) == 0);
4335   create_insn (&insn, mo);
4336
4337   insn.insn_opcode = insn.insn_mo->match;
4338   INSERT_OPERAND (RT, insn, regnum);
4339   if (*r == BFD_RELOC_UNUSED)
4340     {
4341       insn.insn_opcode |= high_expr.X_add_number;
4342       append_insn (&insn, NULL, r);
4343     }
4344   else
4345     append_insn (&insn, &high_expr, r);
4346 }
4347
4348 /* Generate a sequence of instructions to do a load or store from a constant
4349    offset off of a base register (breg) into/from a target register (treg),
4350    using AT if necessary.  */
4351 static void
4352 macro_build_ldst_constoffset (expressionS *ep, const char *op,
4353                               int treg, int breg, int dbl)
4354 {
4355   gas_assert (ep->X_op == O_constant);
4356
4357   /* Sign-extending 32-bit constants makes their handling easier.  */
4358   if (!dbl)
4359     normalize_constant_expr (ep);
4360
4361   /* Right now, this routine can only handle signed 32-bit constants.  */
4362   if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
4363     as_warn (_("operand overflow"));
4364
4365   if (IS_SEXT_16BIT_NUM(ep->X_add_number))
4366     {
4367       /* Signed 16-bit offset will fit in the op.  Easy!  */
4368       macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
4369     }
4370   else
4371     {
4372       /* 32-bit offset, need multiple instructions and AT, like:
4373            lui      $tempreg,const_hi       (BFD_RELOC_HI16_S)
4374            addu     $tempreg,$tempreg,$breg
4375            <op>     $treg,const_lo($tempreg)   (BFD_RELOC_LO16)
4376          to handle the complete offset.  */
4377       macro_build_lui (ep, AT);
4378       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
4379       macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
4380
4381       if (!mips_opts.at)
4382         as_bad (_("Macro used $at after \".set noat\""));
4383     }
4384 }
4385
4386 /*                      set_at()
4387  * Generates code to set the $at register to true (one)
4388  * if reg is less than the immediate expression.
4389  */
4390 static void
4391 set_at (int reg, int unsignedp)
4392 {
4393   if (imm_expr.X_op == O_constant
4394       && imm_expr.X_add_number >= -0x8000
4395       && imm_expr.X_add_number < 0x8000)
4396     macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
4397                  AT, reg, BFD_RELOC_LO16);
4398   else
4399     {
4400       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4401       macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
4402     }
4403 }
4404
4405 /* Warn if an expression is not a constant.  */
4406
4407 static void
4408 check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
4409 {
4410   if (ex->X_op == O_big)
4411     as_bad (_("unsupported large constant"));
4412   else if (ex->X_op != O_constant)
4413     as_bad (_("Instruction %s requires absolute expression"),
4414             ip->insn_mo->name);
4415
4416   if (HAVE_32BIT_GPRS)
4417     normalize_constant_expr (ex);
4418 }
4419
4420 /* Count the leading zeroes by performing a binary chop. This is a
4421    bulky bit of source, but performance is a LOT better for the
4422    majority of values than a simple loop to count the bits:
4423        for (lcnt = 0; (lcnt < 32); lcnt++)
4424          if ((v) & (1 << (31 - lcnt)))
4425            break;
4426   However it is not code size friendly, and the gain will drop a bit
4427   on certain cached systems.
4428 */
4429 #define COUNT_TOP_ZEROES(v)             \
4430   (((v) & ~0xffff) == 0                 \
4431    ? ((v) & ~0xff) == 0                 \
4432      ? ((v) & ~0xf) == 0                \
4433        ? ((v) & ~0x3) == 0              \
4434          ? ((v) & ~0x1) == 0            \
4435            ? !(v)                       \
4436              ? 32                       \
4437              : 31                       \
4438            : 30                         \
4439          : ((v) & ~0x7) == 0            \
4440            ? 29                         \
4441            : 28                         \
4442        : ((v) & ~0x3f) == 0             \
4443          ? ((v) & ~0x1f) == 0           \
4444            ? 27                         \
4445            : 26                         \
4446          : ((v) & ~0x7f) == 0           \
4447            ? 25                         \
4448            : 24                         \
4449      : ((v) & ~0xfff) == 0              \
4450        ? ((v) & ~0x3ff) == 0            \
4451          ? ((v) & ~0x1ff) == 0          \
4452            ? 23                         \
4453            : 22                         \
4454          : ((v) & ~0x7ff) == 0          \
4455            ? 21                         \
4456            : 20                         \
4457        : ((v) & ~0x3fff) == 0           \
4458          ? ((v) & ~0x1fff) == 0         \
4459            ? 19                         \
4460            : 18                         \
4461          : ((v) & ~0x7fff) == 0         \
4462            ? 17                         \
4463            : 16                         \
4464    : ((v) & ~0xffffff) == 0             \
4465      ? ((v) & ~0xfffff) == 0            \
4466        ? ((v) & ~0x3ffff) == 0          \
4467          ? ((v) & ~0x1ffff) == 0        \
4468            ? 15                         \
4469            : 14                         \
4470          : ((v) & ~0x7ffff) == 0        \
4471            ? 13                         \
4472            : 12                         \
4473        : ((v) & ~0x3fffff) == 0         \
4474          ? ((v) & ~0x1fffff) == 0       \
4475            ? 11                         \
4476            : 10                         \
4477          : ((v) & ~0x7fffff) == 0       \
4478            ? 9                          \
4479            : 8                          \
4480      : ((v) & ~0xfffffff) == 0          \
4481        ? ((v) & ~0x3ffffff) == 0        \
4482          ? ((v) & ~0x1ffffff) == 0      \
4483            ? 7                          \
4484            : 6                          \
4485          : ((v) & ~0x7ffffff) == 0      \
4486            ? 5                          \
4487            : 4                          \
4488        : ((v) & ~0x3fffffff) == 0       \
4489          ? ((v) & ~0x1fffffff) == 0     \
4490            ? 3                          \
4491            : 2                          \
4492          : ((v) & ~0x7fffffff) == 0     \
4493            ? 1                          \
4494            : 0)
4495
4496 /*                      load_register()
4497  *  This routine generates the least number of instructions necessary to load
4498  *  an absolute expression value into a register.
4499  */
4500 static void
4501 load_register (int reg, expressionS *ep, int dbl)
4502 {
4503   int freg;
4504   expressionS hi32, lo32;
4505
4506   if (ep->X_op != O_big)
4507     {
4508       gas_assert (ep->X_op == O_constant);
4509
4510       /* Sign-extending 32-bit constants makes their handling easier.  */
4511       if (!dbl)
4512         normalize_constant_expr (ep);
4513
4514       if (IS_SEXT_16BIT_NUM (ep->X_add_number))
4515         {
4516           /* We can handle 16 bit signed values with an addiu to
4517              $zero.  No need to ever use daddiu here, since $zero and
4518              the result are always correct in 32 bit mode.  */
4519           macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
4520           return;
4521         }
4522       else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
4523         {
4524           /* We can handle 16 bit unsigned values with an ori to
4525              $zero.  */
4526           macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
4527           return;
4528         }
4529       else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
4530         {
4531           /* 32 bit values require an lui.  */
4532           macro_build (ep, "lui", "t,u", reg, BFD_RELOC_HI16);
4533           if ((ep->X_add_number & 0xffff) != 0)
4534             macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
4535           return;
4536         }
4537     }
4538
4539   /* The value is larger than 32 bits.  */
4540
4541   if (!dbl || HAVE_32BIT_GPRS)
4542     {
4543       char value[32];
4544
4545       sprintf_vma (value, ep->X_add_number);
4546       as_bad (_("Number (0x%s) larger than 32 bits"), value);
4547       macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
4548       return;
4549     }
4550
4551   if (ep->X_op != O_big)
4552     {
4553       hi32 = *ep;
4554       hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
4555       hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
4556       hi32.X_add_number &= 0xffffffff;
4557       lo32 = *ep;
4558       lo32.X_add_number &= 0xffffffff;
4559     }
4560   else
4561     {
4562       gas_assert (ep->X_add_number > 2);
4563       if (ep->X_add_number == 3)
4564         generic_bignum[3] = 0;
4565       else if (ep->X_add_number > 4)
4566         as_bad (_("Number larger than 64 bits"));
4567       lo32.X_op = O_constant;
4568       lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
4569       hi32.X_op = O_constant;
4570       hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
4571     }
4572
4573   if (hi32.X_add_number == 0)
4574     freg = 0;
4575   else
4576     {
4577       int shift, bit;
4578       unsigned long hi, lo;
4579
4580       if (hi32.X_add_number == (offsetT) 0xffffffff)
4581         {
4582           if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
4583             {
4584               macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
4585               return;
4586             }
4587           if (lo32.X_add_number & 0x80000000)
4588             {
4589               macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
4590               if (lo32.X_add_number & 0xffff)
4591                 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
4592               return;
4593             }
4594         }
4595
4596       /* Check for 16bit shifted constant.  We know that hi32 is
4597          non-zero, so start the mask on the first bit of the hi32
4598          value.  */
4599       shift = 17;
4600       do
4601         {
4602           unsigned long himask, lomask;
4603
4604           if (shift < 32)
4605             {
4606               himask = 0xffff >> (32 - shift);
4607               lomask = (0xffff << shift) & 0xffffffff;
4608             }
4609           else
4610             {
4611               himask = 0xffff << (shift - 32);
4612               lomask = 0;
4613             }
4614           if ((hi32.X_add_number & ~(offsetT) himask) == 0
4615               && (lo32.X_add_number & ~(offsetT) lomask) == 0)
4616             {
4617               expressionS tmp;
4618
4619               tmp.X_op = O_constant;
4620               if (shift < 32)
4621                 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
4622                                     | (lo32.X_add_number >> shift));
4623               else
4624                 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
4625               macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
4626               macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", "d,w,<",
4627                            reg, reg, (shift >= 32) ? shift - 32 : shift);
4628               return;
4629             }
4630           ++shift;
4631         }
4632       while (shift <= (64 - 16));
4633
4634       /* Find the bit number of the lowest one bit, and store the
4635          shifted value in hi/lo.  */
4636       hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
4637       lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
4638       if (lo != 0)
4639         {
4640           bit = 0;
4641           while ((lo & 1) == 0)
4642             {
4643               lo >>= 1;
4644               ++bit;
4645             }
4646           lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
4647           hi >>= bit;
4648         }
4649       else
4650         {
4651           bit = 32;
4652           while ((hi & 1) == 0)
4653             {
4654               hi >>= 1;
4655               ++bit;
4656             }
4657           lo = hi;
4658           hi = 0;
4659         }
4660
4661       /* Optimize if the shifted value is a (power of 2) - 1.  */
4662       if ((hi == 0 && ((lo + 1) & lo) == 0)
4663           || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
4664         {
4665           shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
4666           if (shift != 0)
4667             {
4668               expressionS tmp;
4669
4670               /* This instruction will set the register to be all
4671                  ones.  */
4672               tmp.X_op = O_constant;
4673               tmp.X_add_number = (offsetT) -1;
4674               macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
4675               if (bit != 0)
4676                 {
4677                   bit += shift;
4678                   macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", "d,w,<",
4679                                reg, reg, (bit >= 32) ? bit - 32 : bit);
4680                 }
4681               macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", "d,w,<",
4682                            reg, reg, (shift >= 32) ? shift - 32 : shift);
4683               return;
4684             }
4685         }
4686
4687       /* Sign extend hi32 before calling load_register, because we can
4688          generally get better code when we load a sign extended value.  */
4689       if ((hi32.X_add_number & 0x80000000) != 0)
4690         hi32.X_add_number |= ~(offsetT) 0xffffffff;
4691       load_register (reg, &hi32, 0);
4692       freg = reg;
4693     }
4694   if ((lo32.X_add_number & 0xffff0000) == 0)
4695     {
4696       if (freg != 0)
4697         {
4698           macro_build (NULL, "dsll32", "d,w,<", reg, freg, 0);
4699           freg = reg;
4700         }
4701     }
4702   else
4703     {
4704       expressionS mid16;
4705
4706       if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
4707         {
4708           macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
4709           macro_build (NULL, "dsrl32", "d,w,<", reg, reg, 0);
4710           return;
4711         }
4712
4713       if (freg != 0)
4714         {
4715           macro_build (NULL, "dsll", "d,w,<", reg, freg, 16);
4716           freg = reg;
4717         }
4718       mid16 = lo32;
4719       mid16.X_add_number >>= 16;
4720       macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
4721       macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4722       freg = reg;
4723     }
4724   if ((lo32.X_add_number & 0xffff) != 0)
4725     macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
4726 }
4727
4728 static inline void
4729 load_delay_nop (void)
4730 {
4731   if (!gpr_interlocks)
4732     macro_build (NULL, "nop", "");
4733 }
4734
4735 /* Load an address into a register.  */
4736
4737 static void
4738 load_address (int reg, expressionS *ep, int *used_at)
4739 {
4740   if (ep->X_op != O_constant
4741       && ep->X_op != O_symbol)
4742     {
4743       as_bad (_("expression too complex"));
4744       ep->X_op = O_constant;
4745     }
4746
4747   if (ep->X_op == O_constant)
4748     {
4749       load_register (reg, ep, HAVE_64BIT_ADDRESSES);
4750       return;
4751     }
4752
4753   if (mips_pic == NO_PIC)
4754     {
4755       /* If this is a reference to a GP relative symbol, we want
4756            addiu        $reg,$gp,<sym>          (BFD_RELOC_GPREL16)
4757          Otherwise we want
4758            lui          $reg,<sym>              (BFD_RELOC_HI16_S)
4759            addiu        $reg,$reg,<sym>         (BFD_RELOC_LO16)
4760          If we have an addend, we always use the latter form.
4761
4762          With 64bit address space and a usable $at we want
4763            lui          $reg,<sym>              (BFD_RELOC_MIPS_HIGHEST)
4764            lui          $at,<sym>               (BFD_RELOC_HI16_S)
4765            daddiu       $reg,<sym>              (BFD_RELOC_MIPS_HIGHER)
4766            daddiu       $at,<sym>               (BFD_RELOC_LO16)
4767            dsll32       $reg,0
4768            daddu        $reg,$reg,$at
4769
4770          If $at is already in use, we use a path which is suboptimal
4771          on superscalar processors.
4772            lui          $reg,<sym>              (BFD_RELOC_MIPS_HIGHEST)
4773            daddiu       $reg,<sym>              (BFD_RELOC_MIPS_HIGHER)
4774            dsll         $reg,16
4775            daddiu       $reg,<sym>              (BFD_RELOC_HI16_S)
4776            dsll         $reg,16
4777            daddiu       $reg,<sym>              (BFD_RELOC_LO16)
4778
4779          For GP relative symbols in 64bit address space we can use
4780          the same sequence as in 32bit address space.  */
4781       if (HAVE_64BIT_SYMBOLS)
4782         {
4783           if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
4784               && !nopic_need_relax (ep->X_add_symbol, 1))
4785             {
4786               relax_start (ep->X_add_symbol);
4787               macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
4788                            mips_gp_register, BFD_RELOC_GPREL16);
4789               relax_switch ();
4790             }
4791
4792           if (*used_at == 0 && mips_opts.at)
4793             {
4794               macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
4795               macro_build (ep, "lui", "t,u", AT, BFD_RELOC_HI16_S);
4796               macro_build (ep, "daddiu", "t,r,j", reg, reg,
4797                            BFD_RELOC_MIPS_HIGHER);
4798               macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
4799               macro_build (NULL, "dsll32", "d,w,<", reg, reg, 0);
4800               macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
4801               *used_at = 1;
4802             }
4803           else
4804             {
4805               macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
4806               macro_build (ep, "daddiu", "t,r,j", reg, reg,
4807                            BFD_RELOC_MIPS_HIGHER);
4808               macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4809               macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
4810               macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4811               macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
4812             }
4813
4814           if (mips_relax.sequence)
4815             relax_end ();
4816         }
4817       else
4818         {
4819           if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
4820               && !nopic_need_relax (ep->X_add_symbol, 1))
4821             {
4822               relax_start (ep->X_add_symbol);
4823               macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
4824                            mips_gp_register, BFD_RELOC_GPREL16);
4825               relax_switch ();
4826             }
4827           macro_build_lui (ep, reg);
4828           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
4829                        reg, reg, BFD_RELOC_LO16);
4830           if (mips_relax.sequence)
4831             relax_end ();
4832         }
4833     }
4834   else if (!mips_big_got)
4835     {
4836       expressionS ex;
4837
4838       /* If this is a reference to an external symbol, we want
4839            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT16)
4840          Otherwise we want
4841            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT16)
4842            nop
4843            addiu        $reg,$reg,<sym>         (BFD_RELOC_LO16)
4844          If there is a constant, it must be added in after.
4845
4846          If we have NewABI, we want
4847            lw           $reg,<sym+cst>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
4848          unless we're referencing a global symbol with a non-zero
4849          offset, in which case cst must be added separately.  */
4850       if (HAVE_NEWABI)
4851         {
4852           if (ep->X_add_number)
4853             {
4854               ex.X_add_number = ep->X_add_number;
4855               ep->X_add_number = 0;
4856               relax_start (ep->X_add_symbol);
4857               macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4858                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4859               if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4860                 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4861               ex.X_op = O_constant;
4862               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
4863                            reg, reg, BFD_RELOC_LO16);
4864               ep->X_add_number = ex.X_add_number;
4865               relax_switch ();
4866             }
4867           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4868                        BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4869           if (mips_relax.sequence)
4870             relax_end ();
4871         }
4872       else
4873         {
4874           ex.X_add_number = ep->X_add_number;
4875           ep->X_add_number = 0;
4876           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4877                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
4878           load_delay_nop ();
4879           relax_start (ep->X_add_symbol);
4880           relax_switch ();
4881           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4882                        BFD_RELOC_LO16);
4883           relax_end ();
4884
4885           if (ex.X_add_number != 0)
4886             {
4887               if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4888                 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4889               ex.X_op = O_constant;
4890               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
4891                            reg, reg, BFD_RELOC_LO16);
4892             }
4893         }
4894     }
4895   else if (mips_big_got)
4896     {
4897       expressionS ex;
4898
4899       /* This is the large GOT case.  If this is a reference to an
4900          external symbol, we want
4901            lui          $reg,<sym>              (BFD_RELOC_MIPS_GOT_HI16)
4902            addu         $reg,$reg,$gp
4903            lw           $reg,<sym>($reg)        (BFD_RELOC_MIPS_GOT_LO16)
4904
4905          Otherwise, for a reference to a local symbol in old ABI, we want
4906            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT16)
4907            nop
4908            addiu        $reg,$reg,<sym>         (BFD_RELOC_LO16)
4909          If there is a constant, it must be added in after.
4910
4911          In the NewABI, for local symbols, with or without offsets, we want:
4912            lw           $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT_PAGE)
4913            addiu        $reg,$reg,<sym>         (BFD_RELOC_MIPS_GOT_OFST)
4914       */
4915       if (HAVE_NEWABI)
4916         {
4917           ex.X_add_number = ep->X_add_number;
4918           ep->X_add_number = 0;
4919           relax_start (ep->X_add_symbol);
4920           macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
4921           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
4922                        reg, reg, mips_gp_register);
4923           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
4924                        reg, BFD_RELOC_MIPS_GOT_LO16, reg);
4925           if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4926             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4927           else if (ex.X_add_number)
4928             {
4929               ex.X_op = O_constant;
4930               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4931                            BFD_RELOC_LO16);
4932             }
4933
4934           ep->X_add_number = ex.X_add_number;
4935           relax_switch ();
4936           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4937                        BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
4938           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4939                        BFD_RELOC_MIPS_GOT_OFST);
4940           relax_end ();
4941         }
4942       else
4943         {
4944           ex.X_add_number = ep->X_add_number;
4945           ep->X_add_number = 0;
4946           relax_start (ep->X_add_symbol);
4947           macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
4948           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
4949                        reg, reg, mips_gp_register);
4950           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
4951                        reg, BFD_RELOC_MIPS_GOT_LO16, reg);
4952           relax_switch ();
4953           if (reg_needs_delay (mips_gp_register))
4954             {
4955               /* We need a nop before loading from $gp.  This special
4956                  check is required because the lui which starts the main
4957                  instruction stream does not refer to $gp, and so will not
4958                  insert the nop which may be required.  */
4959               macro_build (NULL, "nop", "");
4960             }
4961           macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4962                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
4963           load_delay_nop ();
4964           macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4965                        BFD_RELOC_LO16);
4966           relax_end ();
4967
4968           if (ex.X_add_number != 0)
4969             {
4970               if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4971                 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4972               ex.X_op = O_constant;
4973               macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4974                            BFD_RELOC_LO16);
4975             }
4976         }
4977     }
4978   else
4979     abort ();
4980
4981   if (!mips_opts.at && *used_at == 1)
4982     as_bad (_("Macro used $at after \".set noat\""));
4983 }
4984
4985 /* Move the contents of register SOURCE into register DEST.  */
4986
4987 static void
4988 move_register (int dest, int source)
4989 {
4990   macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
4991                dest, source, 0);
4992 }
4993
4994 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
4995    LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
4996    The two alternatives are:
4997
4998    Global symbol                Local sybmol
4999    -------------                ------------
5000    lw DEST,%got(SYMBOL)         lw DEST,%got(SYMBOL + OFFSET)
5001    ...                          ...
5002    addiu DEST,DEST,OFFSET       addiu DEST,DEST,%lo(SYMBOL + OFFSET)
5003
5004    load_got_offset emits the first instruction and add_got_offset
5005    emits the second for a 16-bit offset or add_got_offset_hilo emits
5006    a sequence to add a 32-bit offset using a scratch register.  */
5007
5008 static void
5009 load_got_offset (int dest, expressionS *local)
5010 {
5011   expressionS global;
5012
5013   global = *local;
5014   global.X_add_number = 0;
5015
5016   relax_start (local->X_add_symbol);
5017   macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
5018                BFD_RELOC_MIPS_GOT16, mips_gp_register);
5019   relax_switch ();
5020   macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
5021                BFD_RELOC_MIPS_GOT16, mips_gp_register);
5022   relax_end ();
5023 }
5024
5025 static void
5026 add_got_offset (int dest, expressionS *local)
5027 {
5028   expressionS global;
5029
5030   global.X_op = O_constant;
5031   global.X_op_symbol = NULL;
5032   global.X_add_symbol = NULL;
5033   global.X_add_number = local->X_add_number;
5034
5035   relax_start (local->X_add_symbol);
5036   macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
5037                dest, dest, BFD_RELOC_LO16);
5038   relax_switch ();
5039   macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
5040   relax_end ();
5041 }
5042
5043 static void
5044 add_got_offset_hilo (int dest, expressionS *local, int tmp)
5045 {
5046   expressionS global;
5047   int hold_mips_optimize;
5048
5049   global.X_op = O_constant;
5050   global.X_op_symbol = NULL;
5051   global.X_add_symbol = NULL;
5052   global.X_add_number = local->X_add_number;
5053
5054   relax_start (local->X_add_symbol);
5055   load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
5056   relax_switch ();
5057   /* Set mips_optimize around the lui instruction to avoid
5058      inserting an unnecessary nop after the lw.  */
5059   hold_mips_optimize = mips_optimize;
5060   mips_optimize = 2;
5061   macro_build_lui (&global, tmp);
5062   mips_optimize = hold_mips_optimize;
5063   macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
5064   relax_end ();
5065
5066   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
5067 }
5068
5069 /*
5070  *                      Build macros
5071  *   This routine implements the seemingly endless macro or synthesized
5072  * instructions and addressing modes in the mips assembly language. Many
5073  * of these macros are simple and are similar to each other. These could
5074  * probably be handled by some kind of table or grammar approach instead of
5075  * this verbose method. Others are not simple macros but are more like
5076  * optimizing code generation.
5077  *   One interesting optimization is when several store macros appear
5078  * consecutively that would load AT with the upper half of the same address.
5079  * The ensuing load upper instructions are ommited. This implies some kind
5080  * of global optimization. We currently only optimize within a single macro.
5081  *   For many of the load and store macros if the address is specified as a
5082  * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
5083  * first load register 'at' with zero and use it as the base register. The
5084  * mips assembler simply uses register $zero. Just one tiny optimization
5085  * we're missing.
5086  */
5087 static void
5088 macro (struct mips_cl_insn *ip)
5089 {
5090   unsigned int treg, sreg, dreg, breg;
5091   unsigned int tempreg;
5092   int mask;
5093   int used_at = 0;
5094   expressionS expr1;
5095   const char *s;
5096   const char *s2;
5097   const char *fmt;
5098   int likely = 0;
5099   int dbl = 0;
5100   int coproc = 0;
5101   int lr = 0;
5102   int imm = 0;
5103   int call = 0;
5104   int off;
5105   offsetT maxnum;
5106   bfd_reloc_code_real_type r;
5107   int hold_mips_optimize;
5108
5109   gas_assert (! mips_opts.mips16);
5110
5111   treg = EXTRACT_OPERAND (RT, *ip);
5112   dreg = EXTRACT_OPERAND (RD, *ip);
5113   sreg = breg = EXTRACT_OPERAND (RS, *ip);
5114   mask = ip->insn_mo->mask;
5115
5116   expr1.X_op = O_constant;
5117   expr1.X_op_symbol = NULL;
5118   expr1.X_add_symbol = NULL;
5119   expr1.X_add_number = 1;
5120
5121   switch (mask)
5122     {
5123     case M_DABS:
5124       dbl = 1;
5125     case M_ABS:
5126       /* bgez $a0,.+12
5127          move v0,$a0
5128          sub v0,$zero,$a0
5129          */
5130
5131       start_noreorder ();
5132
5133       expr1.X_add_number = 8;
5134       macro_build (&expr1, "bgez", "s,p", sreg);
5135       if (dreg == sreg)
5136         macro_build (NULL, "nop", "");
5137       else
5138         move_register (dreg, sreg);
5139       macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
5140
5141       end_noreorder ();
5142       break;
5143
5144     case M_ADD_I:
5145       s = "addi";
5146       s2 = "add";
5147       goto do_addi;
5148     case M_ADDU_I:
5149       s = "addiu";
5150       s2 = "addu";
5151       goto do_addi;
5152     case M_DADD_I:
5153       dbl = 1;
5154       s = "daddi";
5155       s2 = "dadd";
5156       goto do_addi;
5157     case M_DADDU_I:
5158       dbl = 1;
5159       s = "daddiu";
5160       s2 = "daddu";
5161     do_addi:
5162       if (imm_expr.X_op == O_constant
5163           && imm_expr.X_add_number >= -0x8000
5164           && imm_expr.X_add_number < 0x8000)
5165         {
5166           macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
5167           break;
5168         }
5169       used_at = 1;
5170       load_register (AT, &imm_expr, dbl);
5171       macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
5172       break;
5173
5174     case M_AND_I:
5175       s = "andi";
5176       s2 = "and";
5177       goto do_bit;
5178     case M_OR_I:
5179       s = "ori";
5180       s2 = "or";
5181       goto do_bit;
5182     case M_NOR_I:
5183       s = "";
5184       s2 = "nor";
5185       goto do_bit;
5186     case M_XOR_I:
5187       s = "xori";
5188       s2 = "xor";
5189     do_bit:
5190       if (imm_expr.X_op == O_constant
5191           && imm_expr.X_add_number >= 0
5192           && imm_expr.X_add_number < 0x10000)
5193         {
5194           if (mask != M_NOR_I)
5195             macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16);
5196           else
5197             {
5198               macro_build (&imm_expr, "ori", "t,r,i",
5199                            treg, sreg, BFD_RELOC_LO16);
5200               macro_build (NULL, "nor", "d,v,t", treg, treg, 0);
5201             }
5202           break;
5203         }
5204
5205       used_at = 1;
5206       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
5207       macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
5208       break;
5209
5210     case M_BALIGN:
5211       switch (imm_expr.X_add_number)
5212         {
5213         case 0:
5214           macro_build (NULL, "nop", "");
5215           break;
5216         case 2:
5217           macro_build (NULL, "packrl.ph", "d,s,t", treg, treg, sreg);
5218           break;
5219         default:
5220           macro_build (NULL, "balign", "t,s,2", treg, sreg,
5221                        (int) imm_expr.X_add_number);
5222           break;
5223         }
5224       break;
5225
5226     case M_BEQ_I:
5227       s = "beq";
5228       goto beq_i;
5229     case M_BEQL_I:
5230       s = "beql";
5231       likely = 1;
5232       goto beq_i;
5233     case M_BNE_I:
5234       s = "bne";
5235       goto beq_i;
5236     case M_BNEL_I:
5237       s = "bnel";
5238       likely = 1;
5239     beq_i:
5240       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5241         {
5242           macro_build (&offset_expr, s, "s,t,p", sreg, ZERO);
5243           break;
5244         }
5245       used_at = 1;
5246       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
5247       macro_build (&offset_expr, s, "s,t,p", sreg, AT);
5248       break;
5249
5250     case M_BGEL:
5251       likely = 1;
5252     case M_BGE:
5253       if (treg == 0)
5254         {
5255           macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
5256           break;
5257         }
5258       if (sreg == 0)
5259         {
5260           macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", treg);
5261           break;
5262         }
5263       used_at = 1;
5264       macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
5265       macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
5266       break;
5267
5268     case M_BGTL_I:
5269       likely = 1;
5270     case M_BGT_I:
5271       /* Check for > max integer.  */
5272       maxnum = 0x7fffffff;
5273       if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
5274         {
5275           maxnum <<= 16;
5276           maxnum |= 0xffff;
5277           maxnum <<= 16;
5278           maxnum |= 0xffff;
5279         }
5280       if (imm_expr.X_op == O_constant
5281           && imm_expr.X_add_number >= maxnum
5282           && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
5283         {
5284         do_false:
5285           /* Result is always false.  */
5286           if (! likely)
5287             macro_build (NULL, "nop", "");
5288           else
5289             macro_build (&offset_expr, "bnel", "s,t,p", ZERO, ZERO);
5290           break;
5291         }
5292       if (imm_expr.X_op != O_constant)
5293         as_bad (_("Unsupported large constant"));
5294       ++imm_expr.X_add_number;
5295       /* FALLTHROUGH */
5296     case M_BGE_I:
5297     case M_BGEL_I:
5298       if (mask == M_BGEL_I)
5299         likely = 1;
5300       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5301         {
5302           macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
5303           break;
5304         }
5305       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5306         {
5307           macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
5308           break;
5309         }
5310       maxnum = 0x7fffffff;
5311       if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
5312         {
5313           maxnum <<= 16;
5314           maxnum |= 0xffff;
5315           maxnum <<= 16;
5316           maxnum |= 0xffff;
5317         }
5318       maxnum = - maxnum - 1;
5319       if (imm_expr.X_op == O_constant
5320           && imm_expr.X_add_number <= maxnum
5321           && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
5322         {
5323         do_true:
5324           /* result is always true */
5325           as_warn (_("Branch %s is always true"), ip->insn_mo->name);
5326           macro_build (&offset_expr, "b", "p");
5327           break;
5328         }
5329       used_at = 1;
5330       set_at (sreg, 0);
5331       macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
5332       break;
5333
5334     case M_BGEUL:
5335       likely = 1;
5336     case M_BGEU:
5337       if (treg == 0)
5338         goto do_true;
5339       if (sreg == 0)
5340         {
5341           macro_build (&offset_expr, likely ? "beql" : "beq",
5342                        "s,t,p", ZERO, treg);
5343           break;
5344         }
5345       used_at = 1;
5346       macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
5347       macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
5348       break;
5349
5350     case M_BGTUL_I:
5351       likely = 1;
5352     case M_BGTU_I:
5353       if (sreg == 0
5354           || (HAVE_32BIT_GPRS
5355               && imm_expr.X_op == O_constant
5356               && imm_expr.X_add_number == -1))
5357         goto do_false;
5358       if (imm_expr.X_op != O_constant)
5359         as_bad (_("Unsupported large constant"));
5360       ++imm_expr.X_add_number;
5361       /* FALLTHROUGH */
5362     case M_BGEU_I:
5363     case M_BGEUL_I:
5364       if (mask == M_BGEUL_I)
5365         likely = 1;
5366       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5367         goto do_true;
5368       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5369         {
5370           macro_build (&offset_expr, likely ? "bnel" : "bne",
5371                        "s,t,p", sreg, ZERO);
5372           break;
5373         }
5374       used_at = 1;
5375       set_at (sreg, 1);
5376       macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
5377       break;
5378
5379     case M_BGTL:
5380       likely = 1;
5381     case M_BGT:
5382       if (treg == 0)
5383         {
5384           macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
5385           break;
5386         }
5387       if (sreg == 0)
5388         {
5389           macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", treg);
5390           break;
5391         }
5392       used_at = 1;
5393       macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
5394       macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
5395       break;
5396
5397     case M_BGTUL:
5398       likely = 1;
5399     case M_BGTU:
5400       if (treg == 0)
5401         {
5402           macro_build (&offset_expr, likely ? "bnel" : "bne",
5403                        "s,t,p", sreg, ZERO);
5404           break;
5405         }
5406       if (sreg == 0)
5407         goto do_false;
5408       used_at = 1;
5409       macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
5410       macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
5411       break;
5412
5413     case M_BLEL:
5414       likely = 1;
5415     case M_BLE:
5416       if (treg == 0)
5417         {
5418           macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
5419           break;
5420         }
5421       if (sreg == 0)
5422         {
5423           macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", treg);
5424           break;
5425         }
5426       used_at = 1;
5427       macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
5428       macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
5429       break;
5430
5431     case M_BLEL_I:
5432       likely = 1;
5433     case M_BLE_I:
5434       maxnum = 0x7fffffff;
5435       if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
5436         {
5437           maxnum <<= 16;
5438           maxnum |= 0xffff;
5439           maxnum <<= 16;
5440           maxnum |= 0xffff;
5441         }
5442       if (imm_expr.X_op == O_constant
5443           && imm_expr.X_add_number >= maxnum
5444           && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
5445         goto do_true;
5446       if (imm_expr.X_op != O_constant)
5447         as_bad (_("Unsupported large constant"));
5448       ++imm_expr.X_add_number;
5449       /* FALLTHROUGH */
5450     case M_BLT_I:
5451     case M_BLTL_I:
5452       if (mask == M_BLTL_I)
5453         likely = 1;
5454       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5455         {
5456           macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
5457           break;
5458         }
5459       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5460         {
5461           macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
5462           break;
5463         }
5464       used_at = 1;
5465       set_at (sreg, 0);
5466       macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
5467       break;
5468
5469     case M_BLEUL:
5470       likely = 1;
5471     case M_BLEU:
5472       if (treg == 0)
5473         {
5474           macro_build (&offset_expr, likely ? "beql" : "beq",
5475                        "s,t,p", sreg, ZERO);
5476           break;
5477         }
5478       if (sreg == 0)
5479         goto do_true;
5480       used_at = 1;
5481       macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
5482       macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
5483       break;
5484
5485     case M_BLEUL_I:
5486       likely = 1;
5487     case M_BLEU_I:
5488       if (sreg == 0
5489           || (HAVE_32BIT_GPRS
5490               && imm_expr.X_op == O_constant
5491               && imm_expr.X_add_number == -1))
5492         goto do_true;
5493       if (imm_expr.X_op != O_constant)
5494         as_bad (_("Unsupported large constant"));
5495       ++imm_expr.X_add_number;
5496       /* FALLTHROUGH */
5497     case M_BLTU_I:
5498     case M_BLTUL_I:
5499       if (mask == M_BLTUL_I)
5500         likely = 1;
5501       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5502         goto do_false;
5503       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5504         {
5505           macro_build (&offset_expr, likely ? "beql" : "beq",
5506                        "s,t,p", sreg, ZERO);
5507           break;
5508         }
5509       used_at = 1;
5510       set_at (sreg, 1);
5511       macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
5512       break;
5513
5514     case M_BLTL:
5515       likely = 1;
5516     case M_BLT:
5517       if (treg == 0)
5518         {
5519           macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
5520           break;
5521         }
5522       if (sreg == 0)
5523         {
5524           macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", treg);
5525           break;
5526         }
5527       used_at = 1;
5528       macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
5529       macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
5530       break;
5531
5532     case M_BLTUL:
5533       likely = 1;
5534     case M_BLTU:
5535       if (treg == 0)
5536         goto do_false;
5537       if (sreg == 0)
5538         {
5539           macro_build (&offset_expr, likely ? "bnel" : "bne",
5540                        "s,t,p", ZERO, treg);
5541           break;
5542         }
5543       used_at = 1;
5544       macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
5545       macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
5546       break;
5547
5548     case M_DEXT:
5549       {
5550         /* Use unsigned arithmetic.  */
5551         addressT pos;
5552         addressT size;
5553
5554         if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
5555           {
5556             as_bad (_("Unsupported large constant"));
5557             pos = size = 1;
5558           }
5559         else
5560           {
5561             pos = imm_expr.X_add_number;
5562             size = imm2_expr.X_add_number;
5563           }
5564
5565         if (pos > 63)
5566           {
5567             as_bad (_("Improper position (%lu)"), (unsigned long) pos);
5568             pos = 1;
5569           }
5570         if (size == 0 || size > 64 || (pos + size - 1) > 63)
5571           {
5572             as_bad (_("Improper extract size (%lu, position %lu)"),
5573                     (unsigned long) size, (unsigned long) pos);
5574             size = 1;
5575           }
5576
5577         if (size <= 32 && pos < 32)
5578           {
5579             s = "dext";
5580             fmt = "t,r,+A,+C";
5581           }
5582         else if (size <= 32)
5583           {
5584             s = "dextu";
5585             fmt = "t,r,+E,+H";
5586           }
5587         else
5588           {
5589             s = "dextm";
5590             fmt = "t,r,+A,+G";
5591           }
5592         macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
5593                      (int) (size - 1));
5594       }
5595       break;
5596
5597     case M_DINS:
5598       {
5599         /* Use unsigned arithmetic.  */
5600         addressT pos;
5601         addressT size;
5602
5603         if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
5604           {
5605             as_bad (_("Unsupported large constant"));
5606             pos = size = 1;
5607           }
5608         else
5609           {
5610             pos = imm_expr.X_add_number;
5611             size = imm2_expr.X_add_number;
5612           }
5613
5614         if (pos > 63)
5615           {
5616             as_bad (_("Improper position (%lu)"), (unsigned long) pos);
5617             pos = 1;
5618           }
5619         if (size == 0 || size > 64 || (pos + size - 1) > 63)
5620           {
5621             as_bad (_("Improper insert size (%lu, position %lu)"),
5622                     (unsigned long) size, (unsigned long) pos);
5623             size = 1;
5624           }
5625
5626         if (pos < 32 && (pos + size - 1) < 32)
5627           {
5628             s = "dins";
5629             fmt = "t,r,+A,+B";
5630           }
5631         else if (pos >= 32)
5632           {
5633             s = "dinsu";
5634             fmt = "t,r,+E,+F";
5635           }
5636         else
5637           {
5638             s = "dinsm";
5639             fmt = "t,r,+A,+F";
5640           }
5641         macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
5642                      (int) (pos + size - 1));
5643       }
5644       break;
5645
5646     case M_DDIV_3:
5647       dbl = 1;
5648     case M_DIV_3:
5649       s = "mflo";
5650       goto do_div3;
5651     case M_DREM_3:
5652       dbl = 1;
5653     case M_REM_3:
5654       s = "mfhi";
5655     do_div3:
5656       if (treg == 0)
5657         {
5658           as_warn (_("Divide by zero."));
5659           if (mips_trap)
5660             macro_build (NULL, "teq", "s,t,q", ZERO, ZERO, 7);
5661           else
5662             macro_build (NULL, "break", "c", 7);
5663           break;
5664         }
5665
5666       start_noreorder ();
5667       if (mips_trap)
5668         {
5669           macro_build (NULL, "teq", "s,t,q", treg, ZERO, 7);
5670           macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
5671         }
5672       else
5673         {
5674           expr1.X_add_number = 8;
5675           macro_build (&expr1, "bne", "s,t,p", treg, ZERO);
5676           macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
5677           macro_build (NULL, "break", "c", 7);
5678         }
5679       expr1.X_add_number = -1;
5680       used_at = 1;
5681       load_register (AT, &expr1, dbl);
5682       expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
5683       macro_build (&expr1, "bne", "s,t,p", treg, AT);
5684       if (dbl)
5685         {
5686           expr1.X_add_number = 1;
5687           load_register (AT, &expr1, dbl);
5688           macro_build (NULL, "dsll32", "d,w,<", AT, AT, 31);
5689         }
5690       else
5691         {
5692           expr1.X_add_number = 0x80000000;
5693           macro_build (&expr1, "lui", "t,u", AT, BFD_RELOC_HI16);
5694         }
5695       if (mips_trap)
5696         {
5697           macro_build (NULL, "teq", "s,t,q", sreg, AT, 6);
5698           /* We want to close the noreorder block as soon as possible, so
5699              that later insns are available for delay slot filling.  */
5700           end_noreorder ();
5701         }
5702       else
5703         {
5704           expr1.X_add_number = 8;
5705           macro_build (&expr1, "bne", "s,t,p", sreg, AT);
5706           macro_build (NULL, "nop", "");
5707
5708           /* We want to close the noreorder block as soon as possible, so
5709              that later insns are available for delay slot filling.  */
5710           end_noreorder ();
5711
5712           macro_build (NULL, "break", "c", 6);
5713         }
5714       macro_build (NULL, s, "d", dreg);
5715       break;
5716
5717     case M_DIV_3I:
5718       s = "div";
5719       s2 = "mflo";
5720       goto do_divi;
5721     case M_DIVU_3I:
5722       s = "divu";
5723       s2 = "mflo";
5724       goto do_divi;
5725     case M_REM_3I:
5726       s = "div";
5727       s2 = "mfhi";
5728       goto do_divi;
5729     case M_REMU_3I:
5730       s = "divu";
5731       s2 = "mfhi";
5732       goto do_divi;
5733     case M_DDIV_3I:
5734       dbl = 1;
5735       s = "ddiv";
5736       s2 = "mflo";
5737       goto do_divi;
5738     case M_DDIVU_3I:
5739       dbl = 1;
5740       s = "ddivu";
5741       s2 = "mflo";
5742       goto do_divi;
5743     case M_DREM_3I:
5744       dbl = 1;
5745       s = "ddiv";
5746       s2 = "mfhi";
5747       goto do_divi;
5748     case M_DREMU_3I:
5749       dbl = 1;
5750       s = "ddivu";
5751       s2 = "mfhi";
5752     do_divi:
5753       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5754         {
5755           as_warn (_("Divide by zero."));
5756           if (mips_trap)
5757             macro_build (NULL, "teq", "s,t,q", ZERO, ZERO, 7);
5758           else
5759             macro_build (NULL, "break", "c", 7);
5760           break;
5761         }
5762       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5763         {
5764           if (strcmp (s2, "mflo") == 0)
5765             move_register (dreg, sreg);
5766           else
5767             move_register (dreg, ZERO);
5768           break;
5769         }
5770       if (imm_expr.X_op == O_constant
5771           && imm_expr.X_add_number == -1
5772           && s[strlen (s) - 1] != 'u')
5773         {
5774           if (strcmp (s2, "mflo") == 0)
5775             {
5776               macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
5777             }
5778           else
5779             move_register (dreg, ZERO);
5780           break;
5781         }
5782
5783       used_at = 1;
5784       load_register (AT, &imm_expr, dbl);
5785       macro_build (NULL, s, "z,s,t", sreg, AT);
5786       macro_build (NULL, s2, "d", dreg);
5787       break;
5788
5789     case M_DIVU_3:
5790       s = "divu";
5791       s2 = "mflo";
5792       goto do_divu3;
5793     case M_REMU_3:
5794       s = "divu";
5795       s2 = "mfhi";
5796       goto do_divu3;
5797     case M_DDIVU_3:
5798       s = "ddivu";
5799       s2 = "mflo";
5800       goto do_divu3;
5801     case M_DREMU_3:
5802       s = "ddivu";
5803       s2 = "mfhi";
5804     do_divu3:
5805       start_noreorder ();
5806       if (mips_trap)
5807         {
5808           macro_build (NULL, "teq", "s,t,q", treg, ZERO, 7);
5809           macro_build (NULL, s, "z,s,t", sreg, treg);
5810           /* We want to close the noreorder block as soon as possible, so
5811              that later insns are available for delay slot filling.  */
5812           end_noreorder ();
5813         }
5814       else
5815         {
5816           expr1.X_add_number = 8;
5817           macro_build (&expr1, "bne", "s,t,p", treg, ZERO);
5818           macro_build (NULL, s, "z,s,t", sreg, treg);
5819
5820           /* We want to close the noreorder block as soon as possible, so
5821              that later insns are available for delay slot filling.  */
5822           end_noreorder ();
5823           macro_build (NULL, "break", "c", 7);
5824         }
5825       macro_build (NULL, s2, "d", dreg);
5826       break;
5827
5828     case M_DLCA_AB:
5829       dbl = 1;
5830     case M_LCA_AB:
5831       call = 1;
5832       goto do_la;
5833     case M_DLA_AB:
5834       dbl = 1;
5835     case M_LA_AB:
5836     do_la:
5837       /* Load the address of a symbol into a register.  If breg is not
5838          zero, we then add a base register to it.  */
5839
5840       if (dbl && HAVE_32BIT_GPRS)
5841         as_warn (_("dla used to load 32-bit register"));
5842
5843       if (!dbl && HAVE_64BIT_OBJECTS)
5844         as_warn (_("la used to load 64-bit address"));
5845
5846       if (offset_expr.X_op == O_constant
5847           && offset_expr.X_add_number >= -0x8000
5848           && offset_expr.X_add_number < 0x8000)
5849         {
5850           macro_build (&offset_expr, ADDRESS_ADDI_INSN,
5851                        "t,r,j", treg, sreg, BFD_RELOC_LO16);
5852           break;
5853         }
5854
5855       if (mips_opts.at && (treg == breg))
5856         {
5857           tempreg = AT;
5858           used_at = 1;
5859         }
5860       else
5861         {
5862           tempreg = treg;
5863         }
5864
5865       if (offset_expr.X_op != O_symbol
5866           && offset_expr.X_op != O_constant)
5867         {
5868           as_bad (_("Expression too complex"));
5869           offset_expr.X_op = O_constant;
5870         }
5871
5872       if (offset_expr.X_op == O_constant)
5873         load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
5874       else if (mips_pic == NO_PIC)
5875         {
5876           /* If this is a reference to a GP relative symbol, we want
5877                addiu    $tempreg,$gp,<sym>      (BFD_RELOC_GPREL16)
5878              Otherwise we want
5879                lui      $tempreg,<sym>          (BFD_RELOC_HI16_S)
5880                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5881              If we have a constant, we need two instructions anyhow,
5882              so we may as well always use the latter form.
5883
5884              With 64bit address space and a usable $at we want
5885                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
5886                lui      $at,<sym>               (BFD_RELOC_HI16_S)
5887                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
5888                daddiu   $at,<sym>               (BFD_RELOC_LO16)
5889                dsll32   $tempreg,0
5890                daddu    $tempreg,$tempreg,$at
5891
5892              If $at is already in use, we use a path which is suboptimal
5893              on superscalar processors.
5894                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
5895                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
5896                dsll     $tempreg,16
5897                daddiu   $tempreg,<sym>          (BFD_RELOC_HI16_S)
5898                dsll     $tempreg,16
5899                daddiu   $tempreg,<sym>          (BFD_RELOC_LO16)
5900
5901              For GP relative symbols in 64bit address space we can use
5902              the same sequence as in 32bit address space.  */
5903           if (HAVE_64BIT_SYMBOLS)
5904             {
5905               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5906                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5907                 {
5908                   relax_start (offset_expr.X_add_symbol);
5909                   macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5910                                tempreg, mips_gp_register, BFD_RELOC_GPREL16);
5911                   relax_switch ();
5912                 }
5913
5914               if (used_at == 0 && mips_opts.at)
5915                 {
5916                   macro_build (&offset_expr, "lui", "t,u",
5917                                tempreg, BFD_RELOC_MIPS_HIGHEST);
5918                   macro_build (&offset_expr, "lui", "t,u",
5919                                AT, BFD_RELOC_HI16_S);
5920                   macro_build (&offset_expr, "daddiu", "t,r,j",
5921                                tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
5922                   macro_build (&offset_expr, "daddiu", "t,r,j",
5923                                AT, AT, BFD_RELOC_LO16);
5924                   macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
5925                   macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
5926                   used_at = 1;
5927                 }
5928               else
5929                 {
5930                   macro_build (&offset_expr, "lui", "t,u",
5931                                tempreg, BFD_RELOC_MIPS_HIGHEST);
5932                   macro_build (&offset_expr, "daddiu", "t,r,j",
5933                                tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
5934                   macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5935                   macro_build (&offset_expr, "daddiu", "t,r,j",
5936                                tempreg, tempreg, BFD_RELOC_HI16_S);
5937                   macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5938                   macro_build (&offset_expr, "daddiu", "t,r,j",
5939                                tempreg, tempreg, BFD_RELOC_LO16);
5940                 }
5941
5942               if (mips_relax.sequence)
5943                 relax_end ();
5944             }
5945           else
5946             {
5947               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5948                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5949                 {
5950                   relax_start (offset_expr.X_add_symbol);
5951                   macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5952                                tempreg, mips_gp_register, BFD_RELOC_GPREL16);
5953                   relax_switch ();
5954                 }
5955               if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
5956                 as_bad (_("Offset too large"));
5957               macro_build_lui (&offset_expr, tempreg);
5958               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5959                            tempreg, tempreg, BFD_RELOC_LO16);
5960               if (mips_relax.sequence)
5961                 relax_end ();
5962             }
5963         }
5964       else if (!mips_big_got && !HAVE_NEWABI)
5965         {
5966           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
5967
5968           /* If this is a reference to an external symbol, and there
5969              is no constant, we want
5970                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
5971              or for lca or if tempreg is PIC_CALL_REG
5972                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_CALL16)
5973              For a local symbol, we want
5974                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
5975                nop
5976                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5977
5978              If we have a small constant, and this is a reference to
5979              an external symbol, we want
5980                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
5981                nop
5982                addiu    $tempreg,$tempreg,<constant>
5983              For a local symbol, we want the same instruction
5984              sequence, but we output a BFD_RELOC_LO16 reloc on the
5985              addiu instruction.
5986
5987              If we have a large constant, and this is a reference to
5988              an external symbol, we want
5989                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
5990                lui      $at,<hiconstant>
5991                addiu    $at,$at,<loconstant>
5992                addu     $tempreg,$tempreg,$at
5993              For a local symbol, we want the same instruction
5994              sequence, but we output a BFD_RELOC_LO16 reloc on the
5995              addiu instruction.
5996            */
5997
5998           if (offset_expr.X_add_number == 0)
5999             {
6000               if (mips_pic == SVR4_PIC
6001                   && breg == 0
6002                   && (call || tempreg == PIC_CALL_REG))
6003                 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
6004
6005               relax_start (offset_expr.X_add_symbol);
6006               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6007                            lw_reloc_type, mips_gp_register);
6008               if (breg != 0)
6009                 {
6010                   /* We're going to put in an addu instruction using
6011                      tempreg, so we may as well insert the nop right
6012                      now.  */
6013                   load_delay_nop ();
6014                 }
6015               relax_switch ();
6016               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6017                            tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
6018               load_delay_nop ();
6019               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6020                            tempreg, tempreg, BFD_RELOC_LO16);
6021               relax_end ();
6022               /* FIXME: If breg == 0, and the next instruction uses
6023                  $tempreg, then if this variant case is used an extra
6024                  nop will be generated.  */
6025             }
6026           else if (offset_expr.X_add_number >= -0x8000
6027                    && offset_expr.X_add_number < 0x8000)
6028             {
6029               load_got_offset (tempreg, &offset_expr);
6030               load_delay_nop ();
6031               add_got_offset (tempreg, &offset_expr);
6032             }
6033           else
6034             {
6035               expr1.X_add_number = offset_expr.X_add_number;
6036               offset_expr.X_add_number =
6037                 ((offset_expr.X_add_number + 0x8000) & 0xffff) - 0x8000;
6038               load_got_offset (tempreg, &offset_expr);
6039               offset_expr.X_add_number = expr1.X_add_number;
6040               /* If we are going to add in a base register, and the
6041                  target register and the base register are the same,
6042                  then we are using AT as a temporary register.  Since
6043                  we want to load the constant into AT, we add our
6044                  current AT (from the global offset table) and the
6045                  register into the register now, and pretend we were
6046                  not using a base register.  */
6047               if (breg == treg)
6048                 {
6049                   load_delay_nop ();
6050                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6051                                treg, AT, breg);
6052                   breg = 0;
6053                   tempreg = treg;
6054                 }
6055               add_got_offset_hilo (tempreg, &offset_expr, AT);
6056               used_at = 1;
6057             }
6058         }
6059       else if (!mips_big_got && HAVE_NEWABI)
6060         {
6061           int add_breg_early = 0;
6062
6063           /* If this is a reference to an external, and there is no
6064              constant, or local symbol (*), with or without a
6065              constant, we want
6066                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
6067              or for lca or if tempreg is PIC_CALL_REG
6068                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_CALL16)
6069
6070              If we have a small constant, and this is a reference to
6071              an external symbol, we want
6072                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
6073                addiu    $tempreg,$tempreg,<constant>
6074
6075              If we have a large constant, and this is a reference to
6076              an external symbol, we want
6077                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_DISP)
6078                lui      $at,<hiconstant>
6079                addiu    $at,$at,<loconstant>
6080                addu     $tempreg,$tempreg,$at
6081
6082              (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
6083              local symbols, even though it introduces an additional
6084              instruction.  */
6085
6086           if (offset_expr.X_add_number)
6087             {
6088               expr1.X_add_number = offset_expr.X_add_number;
6089               offset_expr.X_add_number = 0;
6090
6091               relax_start (offset_expr.X_add_symbol);
6092               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6093                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
6094
6095               if (expr1.X_add_number >= -0x8000
6096                   && expr1.X_add_number < 0x8000)
6097                 {
6098                   macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
6099                                tempreg, tempreg, BFD_RELOC_LO16);
6100                 }
6101               else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
6102                 {
6103                   /* If we are going to add in a base register, and the
6104                      target register and the base register are the same,
6105                      then we are using AT as a temporary register.  Since
6106                      we want to load the constant into AT, we add our
6107                      current AT (from the global offset table) and the
6108                      register into the register now, and pretend we were
6109                      not using a base register.  */
6110                   if (breg != treg)
6111                     dreg = tempreg;
6112                   else
6113                     {
6114                       gas_assert (tempreg == AT);
6115                       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6116                                    treg, AT, breg);
6117                       dreg = treg;
6118                       add_breg_early = 1;
6119                     }
6120
6121                   load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
6122                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6123                                dreg, dreg, AT);
6124
6125                   used_at = 1;
6126                 }
6127               else
6128                 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
6129
6130               relax_switch ();
6131               offset_expr.X_add_number = expr1.X_add_number;
6132
6133               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6134                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
6135               if (add_breg_early)
6136                 {
6137                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6138                                treg, tempreg, breg);
6139                   breg = 0;
6140                   tempreg = treg;
6141                 }
6142               relax_end ();
6143             }
6144           else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
6145             {
6146               relax_start (offset_expr.X_add_symbol);
6147               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6148                            BFD_RELOC_MIPS_CALL16, mips_gp_register);
6149               relax_switch ();
6150               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6151                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
6152               relax_end ();
6153             }
6154           else
6155             {
6156               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6157                            BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
6158             }
6159         }
6160       else if (mips_big_got && !HAVE_NEWABI)
6161         {
6162           int gpdelay;
6163           int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
6164           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
6165           int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
6166
6167           /* This is the large GOT case.  If this is a reference to an
6168              external symbol, and there is no constant, we want
6169                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
6170                addu     $tempreg,$tempreg,$gp
6171                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6172              or for lca or if tempreg is PIC_CALL_REG
6173                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_CALL_HI16)
6174                addu     $tempreg,$tempreg,$gp
6175                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
6176              For a local symbol, we want
6177                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
6178                nop
6179                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6180
6181              If we have a small constant, and this is a reference to
6182              an external symbol, we want
6183                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
6184                addu     $tempreg,$tempreg,$gp
6185                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6186                nop
6187                addiu    $tempreg,$tempreg,<constant>
6188              For a local symbol, we want
6189                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
6190                nop
6191                addiu    $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
6192
6193              If we have a large constant, and this is a reference to
6194              an external symbol, we want
6195                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
6196                addu     $tempreg,$tempreg,$gp
6197                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6198                lui      $at,<hiconstant>
6199                addiu    $at,$at,<loconstant>
6200                addu     $tempreg,$tempreg,$at
6201              For a local symbol, we want
6202                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
6203                lui      $at,<hiconstant>
6204                addiu    $at,$at,<loconstant>    (BFD_RELOC_LO16)
6205                addu     $tempreg,$tempreg,$at
6206           */
6207
6208           expr1.X_add_number = offset_expr.X_add_number;
6209           offset_expr.X_add_number = 0;
6210           relax_start (offset_expr.X_add_symbol);
6211           gpdelay = reg_needs_delay (mips_gp_register);
6212           if (expr1.X_add_number == 0 && breg == 0
6213               && (call || tempreg == PIC_CALL_REG))
6214             {
6215               lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
6216               lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
6217             }
6218           macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
6219           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6220                        tempreg, tempreg, mips_gp_register);
6221           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6222                        tempreg, lw_reloc_type, tempreg);
6223           if (expr1.X_add_number == 0)
6224             {
6225               if (breg != 0)
6226                 {
6227                   /* We're going to put in an addu instruction using
6228                      tempreg, so we may as well insert the nop right
6229                      now.  */
6230                   load_delay_nop ();
6231                 }
6232             }
6233           else if (expr1.X_add_number >= -0x8000
6234                    && expr1.X_add_number < 0x8000)
6235             {
6236               load_delay_nop ();
6237               macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
6238                            tempreg, tempreg, BFD_RELOC_LO16);
6239             }
6240           else
6241             {
6242               /* If we are going to add in a base register, and the
6243                  target register and the base register are the same,
6244                  then we are using AT as a temporary register.  Since
6245                  we want to load the constant into AT, we add our
6246                  current AT (from the global offset table) and the
6247                  register into the register now, and pretend we were
6248                  not using a base register.  */
6249               if (breg != treg)
6250                 dreg = tempreg;
6251               else
6252                 {
6253                   gas_assert (tempreg == AT);
6254                   load_delay_nop ();
6255                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6256                                treg, AT, breg);
6257                   dreg = treg;
6258                 }
6259
6260               load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
6261               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
6262
6263               used_at = 1;
6264             }
6265           offset_expr.X_add_number =
6266             ((expr1.X_add_number + 0x8000) & 0xffff) - 0x8000;
6267           relax_switch ();
6268
6269           if (gpdelay)
6270             {
6271               /* This is needed because this instruction uses $gp, but
6272                  the first instruction on the main stream does not.  */
6273               macro_build (NULL, "nop", "");
6274             }
6275
6276           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6277                        local_reloc_type, mips_gp_register);
6278           if (expr1.X_add_number >= -0x8000
6279               && expr1.X_add_number < 0x8000)
6280             {
6281               load_delay_nop ();
6282               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6283                            tempreg, tempreg, BFD_RELOC_LO16);
6284               /* FIXME: If add_number is 0, and there was no base
6285                  register, the external symbol case ended with a load,
6286                  so if the symbol turns out to not be external, and
6287                  the next instruction uses tempreg, an unnecessary nop
6288                  will be inserted.  */
6289             }
6290           else
6291             {
6292               if (breg == treg)
6293                 {
6294                   /* We must add in the base register now, as in the
6295                      external symbol case.  */
6296                   gas_assert (tempreg == AT);
6297                   load_delay_nop ();
6298                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6299                                treg, AT, breg);
6300                   tempreg = treg;
6301                   /* We set breg to 0 because we have arranged to add
6302                      it in in both cases.  */
6303                   breg = 0;
6304                 }
6305
6306               macro_build_lui (&expr1, AT);
6307               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6308                            AT, AT, BFD_RELOC_LO16);
6309               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6310                            tempreg, tempreg, AT);
6311               used_at = 1;
6312             }
6313           relax_end ();
6314         }
6315       else if (mips_big_got && HAVE_NEWABI)
6316         {
6317           int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
6318           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
6319           int add_breg_early = 0;
6320
6321           /* This is the large GOT case.  If this is a reference to an
6322              external symbol, and there is no constant, we want
6323                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
6324                add      $tempreg,$tempreg,$gp
6325                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6326              or for lca or if tempreg is PIC_CALL_REG
6327                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_CALL_HI16)
6328                add      $tempreg,$tempreg,$gp
6329                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
6330
6331              If we have a small constant, and this is a reference to
6332              an external symbol, we want
6333                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
6334                add      $tempreg,$tempreg,$gp
6335                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6336                addi     $tempreg,$tempreg,<constant>
6337
6338              If we have a large constant, and this is a reference to
6339              an external symbol, we want
6340                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
6341                addu     $tempreg,$tempreg,$gp
6342                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6343                lui      $at,<hiconstant>
6344                addi     $at,$at,<loconstant>
6345                add      $tempreg,$tempreg,$at
6346
6347              If we have NewABI, and we know it's a local symbol, we want
6348                lw       $reg,<sym>($gp)         (BFD_RELOC_MIPS_GOT_PAGE)
6349                addiu    $reg,$reg,<sym>         (BFD_RELOC_MIPS_GOT_OFST)
6350              otherwise we have to resort to GOT_HI16/GOT_LO16.  */
6351
6352           relax_start (offset_expr.X_add_symbol);
6353
6354           expr1.X_add_number = offset_expr.X_add_number;
6355           offset_expr.X_add_number = 0;
6356
6357           if (expr1.X_add_number == 0 && breg == 0
6358               && (call || tempreg == PIC_CALL_REG))
6359             {
6360               lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
6361               lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
6362             }
6363           macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
6364           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6365                        tempreg, tempreg, mips_gp_register);
6366           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6367                        tempreg, lw_reloc_type, tempreg);
6368
6369           if (expr1.X_add_number == 0)
6370             ;
6371           else if (expr1.X_add_number >= -0x8000
6372                    && expr1.X_add_number < 0x8000)
6373             {
6374               macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
6375                            tempreg, tempreg, BFD_RELOC_LO16);
6376             }
6377           else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
6378             {
6379               /* If we are going to add in a base register, and the
6380                  target register and the base register are the same,
6381                  then we are using AT as a temporary register.  Since
6382                  we want to load the constant into AT, we add our
6383                  current AT (from the global offset table) and the
6384                  register into the register now, and pretend we were
6385                  not using a base register.  */
6386               if (breg != treg)
6387                 dreg = tempreg;
6388               else
6389                 {
6390                   gas_assert (tempreg == AT);
6391                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6392                                treg, AT, breg);
6393                   dreg = treg;
6394                   add_breg_early = 1;
6395                 }
6396
6397               load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
6398               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
6399
6400               used_at = 1;
6401             }
6402           else
6403             as_bad (_("PIC code offset overflow (max 32 signed bits)"));
6404
6405           relax_switch ();
6406           offset_expr.X_add_number = expr1.X_add_number;
6407           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6408                        BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6409           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6410                        tempreg, BFD_RELOC_MIPS_GOT_OFST);
6411           if (add_breg_early)
6412             {
6413               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6414                            treg, tempreg, breg);
6415               breg = 0;
6416               tempreg = treg;
6417             }
6418           relax_end ();
6419         }
6420       else
6421         abort ();
6422
6423       if (breg != 0)
6424         macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", treg, tempreg, breg);
6425       break;
6426
6427     case M_MSGSND:
6428       {
6429         unsigned long temp = (treg << 16) | (0x01);
6430         macro_build (NULL, "c2", "C", temp);
6431       }
6432       break;
6433
6434     case M_MSGLD:
6435       {
6436         unsigned long temp = (0x02);
6437         macro_build (NULL, "c2", "C", temp);
6438       }
6439       break;
6440
6441     case M_MSGLD_T:
6442       {
6443         unsigned long temp = (treg << 16) | (0x02);
6444         macro_build (NULL, "c2", "C", temp);
6445       }
6446       break;
6447
6448     case M_MSGWAIT:
6449       macro_build (NULL, "c2", "C", 3);
6450       break;
6451
6452     case M_MSGWAIT_T:
6453       {
6454         unsigned long temp = (treg << 16) | 0x03;
6455         macro_build (NULL, "c2", "C", temp);
6456       }
6457       break;
6458
6459     case M_J_A:
6460       /* The j instruction may not be used in PIC code, since it
6461          requires an absolute address.  We convert it to a b
6462          instruction.  */
6463       if (mips_pic == NO_PIC)
6464         macro_build (&offset_expr, "j", "a");
6465       else
6466         macro_build (&offset_expr, "b", "p");
6467       break;
6468
6469       /* The jal instructions must be handled as macros because when
6470          generating PIC code they expand to multi-instruction
6471          sequences.  Normally they are simple instructions.  */
6472     case M_JAL_1:
6473       dreg = RA;
6474       /* Fall through.  */
6475     case M_JAL_2:
6476       if (mips_pic == NO_PIC)
6477         macro_build (NULL, "jalr", "d,s", dreg, sreg);
6478       else
6479         {
6480           if (sreg != PIC_CALL_REG)
6481             as_warn (_("MIPS PIC call to register other than $25"));
6482
6483           macro_build (NULL, "jalr", "d,s", dreg, sreg);
6484           if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
6485             {
6486               if (mips_cprestore_offset < 0)
6487                 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6488               else
6489                 {
6490                   if (!mips_frame_reg_valid)
6491                     {
6492                       as_warn (_("No .frame pseudo-op used in PIC code"));
6493                       /* Quiet this warning.  */
6494                       mips_frame_reg_valid = 1;
6495                     }
6496                   if (!mips_cprestore_valid)
6497                     {
6498                       as_warn (_("No .cprestore pseudo-op used in PIC code"));
6499                       /* Quiet this warning.  */
6500                       mips_cprestore_valid = 1;
6501                     }
6502                   if (mips_opts.noreorder)
6503                     macro_build (NULL, "nop", "");
6504                   expr1.X_add_number = mips_cprestore_offset;
6505                   macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
6506                                                 mips_gp_register,
6507                                                 mips_frame_reg,
6508                                                 HAVE_64BIT_ADDRESSES);
6509                 }
6510             }
6511         }
6512
6513       break;
6514
6515     case M_JAL_A:
6516       if (mips_pic == NO_PIC)
6517         macro_build (&offset_expr, "jal", "a");
6518       else if (mips_pic == SVR4_PIC)
6519         {
6520           /* If this is a reference to an external symbol, and we are
6521              using a small GOT, we want
6522                lw       $25,<sym>($gp)          (BFD_RELOC_MIPS_CALL16)
6523                nop
6524                jalr     $ra,$25
6525                nop
6526                lw       $gp,cprestore($sp)
6527              The cprestore value is set using the .cprestore
6528              pseudo-op.  If we are using a big GOT, we want
6529                lui      $25,<sym>               (BFD_RELOC_MIPS_CALL_HI16)
6530                addu     $25,$25,$gp
6531                lw       $25,<sym>($25)          (BFD_RELOC_MIPS_CALL_LO16)
6532                nop
6533                jalr     $ra,$25
6534                nop
6535                lw       $gp,cprestore($sp)
6536              If the symbol is not external, we want
6537                lw       $25,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
6538                nop
6539                addiu    $25,$25,<sym>           (BFD_RELOC_LO16)
6540                jalr     $ra,$25
6541                nop
6542                lw $gp,cprestore($sp)
6543
6544              For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
6545              sequences above, minus nops, unless the symbol is local,
6546              which enables us to use GOT_PAGE/GOT_OFST (big got) or
6547              GOT_DISP.  */
6548           if (HAVE_NEWABI)
6549             {
6550               if (!mips_big_got)
6551                 {
6552                   relax_start (offset_expr.X_add_symbol);
6553                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6554                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
6555                                mips_gp_register);
6556                   relax_switch ();
6557                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6558                                PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
6559                                mips_gp_register);
6560                   relax_end ();
6561                 }
6562               else
6563                 {
6564                   relax_start (offset_expr.X_add_symbol);
6565                   macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
6566                                BFD_RELOC_MIPS_CALL_HI16);
6567                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
6568                                PIC_CALL_REG, mips_gp_register);
6569                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6570                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
6571                                PIC_CALL_REG);
6572                   relax_switch ();
6573                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6574                                PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
6575                                mips_gp_register);
6576                   macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6577                                PIC_CALL_REG, PIC_CALL_REG,
6578                                BFD_RELOC_MIPS_GOT_OFST);
6579                   relax_end ();
6580                 }
6581
6582               macro_build_jalr (&offset_expr);
6583             }
6584           else
6585             {
6586               relax_start (offset_expr.X_add_symbol);
6587               if (!mips_big_got)
6588                 {
6589                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6590                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
6591                                mips_gp_register);
6592                   load_delay_nop ();
6593                   relax_switch ();
6594                 }
6595               else
6596                 {
6597                   int gpdelay;
6598
6599                   gpdelay = reg_needs_delay (mips_gp_register);
6600                   macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
6601                                BFD_RELOC_MIPS_CALL_HI16);
6602                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
6603                                PIC_CALL_REG, mips_gp_register);
6604                   macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6605                                PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
6606                                PIC_CALL_REG);
6607                   load_delay_nop ();
6608                   relax_switch ();
6609                   if (gpdelay)
6610                     macro_build (NULL, "nop", "");
6611                 }
6612               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6613                            PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
6614                            mips_gp_register);
6615               load_delay_nop ();
6616               macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6617                            PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
6618               relax_end ();
6619               macro_build_jalr (&offset_expr);
6620
6621               if (mips_cprestore_offset < 0)
6622                 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6623               else
6624                 {
6625                   if (!mips_frame_reg_valid)
6626                     {
6627                       as_warn (_("No .frame pseudo-op used in PIC code"));
6628                       /* Quiet this warning.  */
6629                       mips_frame_reg_valid = 1;
6630                     }
6631                   if (!mips_cprestore_valid)
6632                     {
6633                       as_warn (_("No .cprestore pseudo-op used in PIC code"));
6634                       /* Quiet this warning.  */
6635                       mips_cprestore_valid = 1;
6636                     }
6637                   if (mips_opts.noreorder)
6638                     macro_build (NULL, "nop", "");
6639                   expr1.X_add_number = mips_cprestore_offset;
6640                   macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
6641                                                 mips_gp_register,
6642                                                 mips_frame_reg,
6643                                                 HAVE_64BIT_ADDRESSES);
6644                 }
6645             }
6646         }
6647       else if (mips_pic == VXWORKS_PIC)
6648         as_bad (_("Non-PIC jump used in PIC library"));
6649       else
6650         abort ();
6651
6652       break;
6653
6654     case M_LB_AB:
6655       s = "lb";
6656       goto ld;
6657     case M_LBU_AB:
6658       s = "lbu";
6659       goto ld;
6660     case M_LH_AB:
6661       s = "lh";
6662       goto ld;
6663     case M_LHU_AB:
6664       s = "lhu";
6665       goto ld;
6666     case M_LW_AB:
6667       s = "lw";
6668       goto ld;
6669     case M_LWC0_AB:
6670       s = "lwc0";
6671       /* Itbl support may require additional care here.  */
6672       coproc = 1;
6673       goto ld;
6674     case M_LWC1_AB:
6675       s = "lwc1";
6676       /* Itbl support may require additional care here.  */
6677       coproc = 1;
6678       goto ld;
6679     case M_LWC2_AB:
6680       s = "lwc2";
6681       /* Itbl support may require additional care here.  */
6682       coproc = 1;
6683       goto ld;
6684     case M_LWC3_AB:
6685       s = "lwc3";
6686       /* Itbl support may require additional care here.  */
6687       coproc = 1;
6688       goto ld;
6689     case M_LWL_AB:
6690       s = "lwl";
6691       lr = 1;
6692       goto ld;
6693     case M_LWR_AB:
6694       s = "lwr";
6695       lr = 1;
6696       goto ld;
6697     case M_LDC1_AB:
6698       s = "ldc1";
6699       /* Itbl support may require additional care here.  */
6700       coproc = 1;
6701       goto ld;
6702     case M_LDC2_AB:
6703       s = "ldc2";
6704       /* Itbl support may require additional care here.  */
6705       coproc = 1;
6706       goto ld;
6707     case M_LDC3_AB:
6708       s = "ldc3";
6709       /* Itbl support may require additional care here.  */
6710       coproc = 1;
6711       goto ld;
6712     case M_LDL_AB:
6713       s = "ldl";
6714       lr = 1;
6715       goto ld;
6716     case M_LDR_AB:
6717       s = "ldr";
6718       lr = 1;
6719       goto ld;
6720     case M_LL_AB:
6721       s = "ll";
6722       goto ld;
6723     case M_LLD_AB:
6724       s = "lld";
6725       goto ld;
6726     case M_LWU_AB:
6727       s = "lwu";
6728     ld:
6729       if (breg == treg || coproc || lr)
6730         {
6731           tempreg = AT;
6732           used_at = 1;
6733         }
6734       else
6735         {
6736           tempreg = treg;
6737         }
6738       goto ld_st;
6739     case M_SB_AB:
6740       s = "sb";
6741       goto st;
6742     case M_SH_AB:
6743       s = "sh";
6744       goto st;
6745     case M_SW_AB:
6746       s = "sw";
6747       goto st;
6748     case M_SWC0_AB:
6749       s = "swc0";
6750       /* Itbl support may require additional care here.  */
6751       coproc = 1;
6752       goto st;
6753     case M_SWC1_AB:
6754       s = "swc1";
6755       /* Itbl support may require additional care here.  */
6756       coproc = 1;
6757       goto st;
6758     case M_SWC2_AB:
6759       s = "swc2";
6760       /* Itbl support may require additional care here.  */
6761       coproc = 1;
6762       goto st;
6763     case M_SWC3_AB:
6764       s = "swc3";
6765       /* Itbl support may require additional care here.  */
6766       coproc = 1;
6767       goto st;
6768     case M_SWL_AB:
6769       s = "swl";
6770       goto st;
6771     case M_SWR_AB:
6772       s = "swr";
6773       goto st;
6774     case M_SC_AB:
6775       s = "sc";
6776       goto st;
6777     case M_SCD_AB:
6778       s = "scd";
6779       goto st;
6780     case M_CACHE_AB:
6781       s = "cache";
6782       goto st;
6783     case M_PREF_AB:
6784       s = "pref";
6785       goto st;
6786     case M_SDC1_AB:
6787       s = "sdc1";
6788       coproc = 1;
6789       /* Itbl support may require additional care here.  */
6790       goto st;
6791     case M_SDC2_AB:
6792       s = "sdc2";
6793       /* Itbl support may require additional care here.  */
6794       coproc = 1;
6795       goto st;
6796     case M_SDC3_AB:
6797       s = "sdc3";
6798       /* Itbl support may require additional care here.  */
6799       coproc = 1;
6800       goto st;
6801     case M_SDL_AB:
6802       s = "sdl";
6803       goto st;
6804     case M_SDR_AB:
6805       s = "sdr";
6806     st:
6807       tempreg = AT;
6808       used_at = 1;
6809     ld_st:
6810       if (coproc
6811           && NO_ISA_COP (mips_opts.arch)
6812           && (ip->insn_mo->pinfo2 & (INSN2_M_FP_S | INSN2_M_FP_D)) == 0)
6813         {
6814           as_bad (_("Opcode not supported on this processor: %s"),
6815                   mips_cpu_info_from_arch (mips_opts.arch)->name);
6816           break;
6817         }
6818
6819       /* Itbl support may require additional care here.  */
6820       if (mask == M_LWC1_AB
6821           || mask == M_SWC1_AB
6822           || mask == M_LDC1_AB
6823           || mask == M_SDC1_AB
6824           || mask == M_L_DAB
6825           || mask == M_S_DAB)
6826         fmt = "T,o(b)";
6827       else if (mask == M_CACHE_AB || mask == M_PREF_AB)
6828         fmt = "k,o(b)";
6829       else if (coproc)
6830         fmt = "E,o(b)";
6831       else
6832         fmt = "t,o(b)";
6833
6834       if (offset_expr.X_op != O_constant
6835           && offset_expr.X_op != O_symbol)
6836         {
6837           as_bad (_("Expression too complex"));
6838           offset_expr.X_op = O_constant;
6839         }
6840
6841       if (HAVE_32BIT_ADDRESSES
6842           && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
6843         {
6844           char value [32];
6845
6846           sprintf_vma (value, offset_expr.X_add_number);
6847           as_bad (_("Number (0x%s) larger than 32 bits"), value);
6848         }
6849
6850       /* A constant expression in PIC code can be handled just as it
6851          is in non PIC code.  */
6852       if (offset_expr.X_op == O_constant)
6853         {
6854           expr1.X_add_number = offset_expr.X_add_number;
6855           normalize_address_expr (&expr1);
6856           if (!IS_SEXT_16BIT_NUM (expr1.X_add_number))
6857             {
6858               expr1.X_add_number = ((expr1.X_add_number + 0x8000)
6859                                     & ~(bfd_vma) 0xffff);
6860               load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
6861               if (breg != 0)
6862                 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6863                              tempreg, tempreg, breg);
6864               breg = tempreg;
6865             }
6866           macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, breg);
6867         }
6868       else if (mips_pic == NO_PIC)
6869         {
6870           /* If this is a reference to a GP relative symbol, and there
6871              is no base register, we want
6872                <op>     $treg,<sym>($gp)        (BFD_RELOC_GPREL16)
6873              Otherwise, if there is no base register, we want
6874                lui      $tempreg,<sym>          (BFD_RELOC_HI16_S)
6875                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_LO16)
6876              If we have a constant, we need two instructions anyhow,
6877              so we always use the latter form.
6878
6879              If we have a base register, and this is a reference to a
6880              GP relative symbol, we want
6881                addu     $tempreg,$breg,$gp
6882                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_GPREL16)
6883              Otherwise we want
6884                lui      $tempreg,<sym>          (BFD_RELOC_HI16_S)
6885                addu     $tempreg,$tempreg,$breg
6886                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_LO16)
6887              With a constant we always use the latter case.
6888
6889              With 64bit address space and no base register and $at usable,
6890              we want
6891                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
6892                lui      $at,<sym>               (BFD_RELOC_HI16_S)
6893                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
6894                dsll32   $tempreg,0
6895                daddu    $tempreg,$at
6896                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_LO16)
6897              If we have a base register, we want
6898                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
6899                lui      $at,<sym>               (BFD_RELOC_HI16_S)
6900                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
6901                daddu    $at,$breg
6902                dsll32   $tempreg,0
6903                daddu    $tempreg,$at
6904                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_LO16)
6905
6906              Without $at we can't generate the optimal path for superscalar
6907              processors here since this would require two temporary registers.
6908                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
6909                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
6910                dsll     $tempreg,16
6911                daddiu   $tempreg,<sym>          (BFD_RELOC_HI16_S)
6912                dsll     $tempreg,16
6913                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_LO16)
6914              If we have a base register, we want
6915                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHEST)
6916                daddiu   $tempreg,<sym>          (BFD_RELOC_MIPS_HIGHER)
6917                dsll     $tempreg,16
6918                daddiu   $tempreg,<sym>          (BFD_RELOC_HI16_S)
6919                dsll     $tempreg,16
6920                daddu    $tempreg,$tempreg,$breg
6921                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_LO16)
6922
6923              For GP relative symbols in 64bit address space we can use
6924              the same sequence as in 32bit address space.  */
6925           if (HAVE_64BIT_SYMBOLS)
6926             {
6927               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6928                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
6929                 {
6930                   relax_start (offset_expr.X_add_symbol);
6931                   if (breg == 0)
6932                     {
6933                       macro_build (&offset_expr, s, fmt, treg,
6934                                    BFD_RELOC_GPREL16, mips_gp_register);
6935                     }
6936                   else
6937                     {
6938                       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6939                                    tempreg, breg, mips_gp_register);
6940                       macro_build (&offset_expr, s, fmt, treg,
6941                                    BFD_RELOC_GPREL16, tempreg);
6942                     }
6943                   relax_switch ();
6944                 }
6945
6946               if (used_at == 0 && mips_opts.at)
6947                 {
6948                   macro_build (&offset_expr, "lui", "t,u", tempreg,
6949                                BFD_RELOC_MIPS_HIGHEST);
6950                   macro_build (&offset_expr, "lui", "t,u", AT,
6951                                BFD_RELOC_HI16_S);
6952                   macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6953                                tempreg, BFD_RELOC_MIPS_HIGHER);
6954                   if (breg != 0)
6955                     macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
6956                   macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
6957                   macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
6958                   macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16,
6959                                tempreg);
6960                   used_at = 1;
6961                 }
6962               else
6963                 {
6964                   macro_build (&offset_expr, "lui", "t,u", tempreg,
6965                                BFD_RELOC_MIPS_HIGHEST);
6966                   macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6967                                tempreg, BFD_RELOC_MIPS_HIGHER);
6968                   macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
6969                   macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6970                                tempreg, BFD_RELOC_HI16_S);
6971                   macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
6972                   if (breg != 0)
6973                     macro_build (NULL, "daddu", "d,v,t",
6974                                  tempreg, tempreg, breg);
6975                   macro_build (&offset_expr, s, fmt, treg,
6976                                BFD_RELOC_LO16, tempreg);
6977                 }
6978
6979               if (mips_relax.sequence)
6980                 relax_end ();
6981               break;
6982             }
6983
6984           if (breg == 0)
6985             {
6986               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6987                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
6988                 {
6989                   relax_start (offset_expr.X_add_symbol);
6990                   macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16,
6991                                mips_gp_register);
6992                   relax_switch ();
6993                 }
6994               macro_build_lui (&offset_expr, tempreg);
6995               macro_build (&offset_expr, s, fmt, treg,
6996                            BFD_RELOC_LO16, tempreg);
6997               if (mips_relax.sequence)
6998                 relax_end ();
6999             }
7000           else
7001             {
7002               if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
7003                   && !nopic_need_relax (offset_expr.X_add_symbol, 1))
7004                 {
7005                   relax_start (offset_expr.X_add_symbol);
7006                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7007                                tempreg, breg, mips_gp_register);
7008                   macro_build (&offset_expr, s, fmt, treg,
7009                                BFD_RELOC_GPREL16, tempreg);
7010                   relax_switch ();
7011                 }
7012               macro_build_lui (&offset_expr, tempreg);
7013               macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7014                            tempreg, tempreg, breg);
7015               macro_build (&offset_expr, s, fmt, treg,
7016                            BFD_RELOC_LO16, tempreg);
7017               if (mips_relax.sequence)
7018                 relax_end ();
7019             }
7020         }
7021       else if (!mips_big_got)
7022         {
7023           int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
7024
7025           /* If this is a reference to an external symbol, we want
7026                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
7027                nop
7028                <op>     $treg,0($tempreg)
7029              Otherwise we want
7030                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
7031                nop
7032                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7033                <op>     $treg,0($tempreg)
7034
7035              For NewABI, we want
7036                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_PAGE)
7037                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_MIPS_GOT_OFST)
7038
7039              If there is a base register, we add it to $tempreg before
7040              the <op>.  If there is a constant, we stick it in the
7041              <op> instruction.  We don't handle constants larger than
7042              16 bits, because we have no way to load the upper 16 bits
7043              (actually, we could handle them for the subset of cases
7044              in which we are not using $at).  */
7045           gas_assert (offset_expr.X_op == O_symbol);
7046           if (HAVE_NEWABI)
7047             {
7048               macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7049                            BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
7050               if (breg != 0)
7051                 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7052                              tempreg, tempreg, breg);
7053               macro_build (&offset_expr, s, fmt, treg,
7054                            BFD_RELOC_MIPS_GOT_OFST, tempreg);
7055               break;
7056             }
7057           expr1.X_add_number = offset_expr.X_add_number;
7058           offset_expr.X_add_number = 0;
7059           if (expr1.X_add_number < -0x8000
7060               || expr1.X_add_number >= 0x8000)
7061             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7062           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7063                        lw_reloc_type, mips_gp_register);
7064           load_delay_nop ();
7065           relax_start (offset_expr.X_add_symbol);
7066           relax_switch ();
7067           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
7068                        tempreg, BFD_RELOC_LO16);
7069           relax_end ();
7070           if (breg != 0)
7071             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7072                          tempreg, tempreg, breg);
7073           macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
7074         }
7075       else if (mips_big_got && !HAVE_NEWABI)
7076         {
7077           int gpdelay;
7078
7079           /* If this is a reference to an external symbol, we want
7080                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
7081                addu     $tempreg,$tempreg,$gp
7082                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7083                <op>     $treg,0($tempreg)
7084              Otherwise we want
7085                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT16)
7086                nop
7087                addiu    $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7088                <op>     $treg,0($tempreg)
7089              If there is a base register, we add it to $tempreg before
7090              the <op>.  If there is a constant, we stick it in the
7091              <op> instruction.  We don't handle constants larger than
7092              16 bits, because we have no way to load the upper 16 bits
7093              (actually, we could handle them for the subset of cases
7094              in which we are not using $at).  */
7095           gas_assert (offset_expr.X_op == O_symbol);
7096           expr1.X_add_number = offset_expr.X_add_number;
7097           offset_expr.X_add_number = 0;
7098           if (expr1.X_add_number < -0x8000
7099               || expr1.X_add_number >= 0x8000)
7100             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7101           gpdelay = reg_needs_delay (mips_gp_register);
7102           relax_start (offset_expr.X_add_symbol);
7103           macro_build (&offset_expr, "lui", "t,u", tempreg,
7104                        BFD_RELOC_MIPS_GOT_HI16);
7105           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
7106                        mips_gp_register);
7107           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7108                        BFD_RELOC_MIPS_GOT_LO16, tempreg);
7109           relax_switch ();
7110           if (gpdelay)
7111             macro_build (NULL, "nop", "");
7112           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7113                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
7114           load_delay_nop ();
7115           macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
7116                        tempreg, BFD_RELOC_LO16);
7117           relax_end ();
7118
7119           if (breg != 0)
7120             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7121                          tempreg, tempreg, breg);
7122           macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
7123         }
7124       else if (mips_big_got && HAVE_NEWABI)
7125         {
7126           /* If this is a reference to an external symbol, we want
7127                lui      $tempreg,<sym>          (BFD_RELOC_MIPS_GOT_HI16)
7128                add      $tempreg,$tempreg,$gp
7129                lw       $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7130                <op>     $treg,<ofst>($tempreg)
7131              Otherwise, for local symbols, we want:
7132                lw       $tempreg,<sym>($gp)     (BFD_RELOC_MIPS_GOT_PAGE)
7133                <op>     $treg,<sym>($tempreg)   (BFD_RELOC_MIPS_GOT_OFST)  */
7134           gas_assert (offset_expr.X_op == O_symbol);
7135           expr1.X_add_number = offset_expr.X_add_number;
7136           offset_expr.X_add_number = 0;
7137           if (expr1.X_add_number < -0x8000
7138               || expr1.X_add_number >= 0x8000)
7139             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7140           relax_start (offset_expr.X_add_symbol);
7141           macro_build (&offset_expr, "lui", "t,u", tempreg,
7142                        BFD_RELOC_MIPS_GOT_HI16);
7143           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
7144                        mips_gp_register);
7145           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7146                        BFD_RELOC_MIPS_GOT_LO16, tempreg);
7147           if (breg != 0)
7148             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7149                          tempreg, tempreg, breg);
7150           macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
7151
7152           relax_switch ();
7153           offset_expr.X_add_number = expr1.X_add_number;
7154           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7155                        BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
7156           if (breg != 0)
7157             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7158                          tempreg, tempreg, breg);
7159           macro_build (&offset_expr, s, fmt, treg,
7160                        BFD_RELOC_MIPS_GOT_OFST, tempreg);
7161           relax_end ();
7162         }
7163       else
7164         abort ();
7165
7166       break;
7167
7168     case M_LI:
7169     case M_LI_S:
7170       load_register (treg, &imm_expr, 0);
7171       break;
7172
7173     case M_DLI:
7174       load_register (treg, &imm_expr, 1);
7175       break;
7176
7177     case M_LI_SS:
7178       if (imm_expr.X_op == O_constant)
7179         {
7180           used_at = 1;
7181           load_register (AT, &imm_expr, 0);
7182           macro_build (NULL, "mtc1", "t,G", AT, treg);
7183           break;
7184         }
7185       else
7186         {
7187           gas_assert (offset_expr.X_op == O_symbol
7188                       && strcmp (segment_name (S_GET_SEGMENT
7189                                                (offset_expr.X_add_symbol)),
7190                                  ".lit4") == 0
7191                       && offset_expr.X_add_number == 0);
7192           macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
7193                        BFD_RELOC_MIPS_LITERAL, mips_gp_register);
7194           break;
7195         }
7196
7197     case M_LI_D:
7198       /* Check if we have a constant in IMM_EXPR.  If the GPRs are 64 bits
7199          wide, IMM_EXPR is the entire value.  Otherwise IMM_EXPR is the high
7200          order 32 bits of the value and the low order 32 bits are either
7201          zero or in OFFSET_EXPR.  */
7202       if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
7203         {
7204           if (HAVE_64BIT_GPRS)
7205             load_register (treg, &imm_expr, 1);
7206           else
7207             {
7208               int hreg, lreg;
7209
7210               if (target_big_endian)
7211                 {
7212                   hreg = treg;
7213                   lreg = treg + 1;
7214                 }
7215               else
7216                 {
7217                   hreg = treg + 1;
7218                   lreg = treg;
7219                 }
7220
7221               if (hreg <= 31)
7222                 load_register (hreg, &imm_expr, 0);
7223               if (lreg <= 31)
7224                 {
7225                   if (offset_expr.X_op == O_absent)
7226                     move_register (lreg, 0);
7227                   else
7228                     {
7229                       gas_assert (offset_expr.X_op == O_constant);
7230                       load_register (lreg, &offset_expr, 0);
7231                     }
7232                 }
7233             }
7234           break;
7235         }
7236
7237       /* We know that sym is in the .rdata section.  First we get the
7238          upper 16 bits of the address.  */
7239       if (mips_pic == NO_PIC)
7240         {
7241           macro_build_lui (&offset_expr, AT);
7242           used_at = 1;
7243         }
7244       else
7245         {
7246           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
7247                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
7248           used_at = 1;
7249         }
7250
7251       /* Now we load the register(s).  */
7252       if (HAVE_64BIT_GPRS)
7253         {
7254           used_at = 1;
7255           macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT);
7256         }
7257       else
7258         {
7259           used_at = 1;
7260           macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT);
7261           if (treg != RA)
7262             {
7263               /* FIXME: How in the world do we deal with the possible
7264                  overflow here?  */
7265               offset_expr.X_add_number += 4;
7266               macro_build (&offset_expr, "lw", "t,o(b)",
7267                            treg + 1, BFD_RELOC_LO16, AT);
7268             }
7269         }
7270       break;
7271
7272     case M_LI_DD:
7273       /* Check if we have a constant in IMM_EXPR.  If the FPRs are 64 bits
7274          wide, IMM_EXPR is the entire value and the GPRs are known to be 64
7275          bits wide as well.  Otherwise IMM_EXPR is the high order 32 bits of
7276          the value and the low order 32 bits are either zero or in
7277          OFFSET_EXPR.  */
7278       if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
7279         {
7280           used_at = 1;
7281           load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
7282           if (HAVE_64BIT_FPRS)
7283             {
7284               gas_assert (HAVE_64BIT_GPRS);
7285               macro_build (NULL, "dmtc1", "t,S", AT, treg);
7286             }
7287           else
7288             {
7289               macro_build (NULL, "mtc1", "t,G", AT, treg + 1);
7290               if (offset_expr.X_op == O_absent)
7291                 macro_build (NULL, "mtc1", "t,G", 0, treg);
7292               else
7293                 {
7294                   gas_assert (offset_expr.X_op == O_constant);
7295                   load_register (AT, &offset_expr, 0);
7296                   macro_build (NULL, "mtc1", "t,G", AT, treg);
7297                 }
7298             }
7299           break;
7300         }
7301
7302       gas_assert (offset_expr.X_op == O_symbol
7303                   && offset_expr.X_add_number == 0);
7304       s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
7305       if (strcmp (s, ".lit8") == 0)
7306         {
7307           if (mips_opts.isa != ISA_MIPS1)
7308             {
7309               macro_build (&offset_expr, "ldc1", "T,o(b)", treg,
7310                            BFD_RELOC_MIPS_LITERAL, mips_gp_register);
7311               break;
7312             }
7313           breg = mips_gp_register;
7314           r = BFD_RELOC_MIPS_LITERAL;
7315           goto dob;
7316         }
7317       else
7318         {
7319           gas_assert (strcmp (s, RDATA_SECTION_NAME) == 0);
7320           used_at = 1;
7321           if (mips_pic != NO_PIC)
7322             macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
7323                          BFD_RELOC_MIPS_GOT16, mips_gp_register);
7324           else
7325             {
7326               /* FIXME: This won't work for a 64 bit address.  */
7327               macro_build_lui (&offset_expr, AT);
7328             }
7329
7330           if (mips_opts.isa != ISA_MIPS1)
7331             {
7332               macro_build (&offset_expr, "ldc1", "T,o(b)",
7333                            treg, BFD_RELOC_LO16, AT);
7334               break;
7335             }
7336           breg = AT;
7337           r = BFD_RELOC_LO16;
7338           goto dob;
7339         }
7340
7341     case M_L_DOB:
7342       /* Even on a big endian machine $fn comes before $fn+1.  We have
7343          to adjust when loading from memory.  */
7344       r = BFD_RELOC_LO16;
7345     dob:
7346       gas_assert (mips_opts.isa == ISA_MIPS1);
7347       macro_build (&offset_expr, "lwc1", "T,o(b)",
7348                    target_big_endian ? treg + 1 : treg, r, breg);
7349       /* FIXME: A possible overflow which I don't know how to deal
7350          with.  */
7351       offset_expr.X_add_number += 4;
7352       macro_build (&offset_expr, "lwc1", "T,o(b)",
7353                    target_big_endian ? treg : treg + 1, r, breg);
7354       break;
7355
7356     case M_S_DOB:
7357       gas_assert (mips_opts.isa == ISA_MIPS1);
7358       /* Even on a big endian machine $fn comes before $fn+1.  We have
7359          to adjust when storing to memory.  */
7360       macro_build (&offset_expr, "swc1", "T,o(b)",
7361                    target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg);
7362       offset_expr.X_add_number += 4;
7363       macro_build (&offset_expr, "swc1", "T,o(b)",
7364                    target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg);
7365       break;
7366
7367     case M_L_DAB:
7368       /*
7369        * The MIPS assembler seems to check for X_add_number not
7370        * being double aligned and generating:
7371        *        lui     at,%hi(foo+1)
7372        *        addu    at,at,v1
7373        *        addiu   at,at,%lo(foo+1)
7374        *        lwc1    f2,0(at)
7375        *        lwc1    f3,4(at)
7376        * But, the resulting address is the same after relocation so why
7377        * generate the extra instruction?
7378        */
7379       /* Itbl support may require additional care here.  */
7380       coproc = 1;
7381       if (mips_opts.isa != ISA_MIPS1)
7382         {
7383           s = "ldc1";
7384           goto ld;
7385         }
7386
7387       s = "lwc1";
7388       fmt = "T,o(b)";
7389       goto ldd_std;
7390
7391     case M_S_DAB:
7392       if (mips_opts.isa != ISA_MIPS1)
7393         {
7394           s = "sdc1";
7395           goto st;
7396         }
7397
7398       s = "swc1";
7399       fmt = "T,o(b)";
7400       /* Itbl support may require additional care here.  */
7401       coproc = 1;
7402       goto ldd_std;
7403
7404     case M_LD_AB:
7405       if (HAVE_64BIT_GPRS)
7406         {
7407           s = "ld";
7408           goto ld;
7409         }
7410
7411       s = "lw";
7412       fmt = "t,o(b)";
7413       goto ldd_std;
7414
7415     case M_SD_AB:
7416       if (HAVE_64BIT_GPRS)
7417         {
7418           s = "sd";
7419           goto st;
7420         }
7421
7422       s = "sw";
7423       fmt = "t,o(b)";
7424
7425     ldd_std:
7426       if (offset_expr.X_op != O_symbol
7427           && offset_expr.X_op != O_constant)
7428         {
7429           as_bad (_("Expression too complex"));
7430           offset_expr.X_op = O_constant;
7431         }
7432
7433       if (HAVE_32BIT_ADDRESSES
7434           && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
7435         {
7436           char value [32];
7437
7438           sprintf_vma (value, offset_expr.X_add_number);
7439           as_bad (_("Number (0x%s) larger than 32 bits"), value);
7440         }
7441
7442       /* Even on a big endian machine $fn comes before $fn+1.  We have
7443          to adjust when loading from memory.  We set coproc if we must
7444          load $fn+1 first.  */
7445       /* Itbl support may require additional care here.  */
7446       if (!target_big_endian)
7447         coproc = 0;
7448
7449       if (mips_pic == NO_PIC || offset_expr.X_op == O_constant)
7450         {
7451           /* If this is a reference to a GP relative symbol, we want
7452                <op>     $treg,<sym>($gp)        (BFD_RELOC_GPREL16)
7453                <op>     $treg+1,<sym>+4($gp)    (BFD_RELOC_GPREL16)
7454              If we have a base register, we use this
7455                addu     $at,$breg,$gp
7456                <op>     $treg,<sym>($at)        (BFD_RELOC_GPREL16)
7457                <op>     $treg+1,<sym>+4($at)    (BFD_RELOC_GPREL16)
7458              If this is not a GP relative symbol, we want
7459                lui      $at,<sym>               (BFD_RELOC_HI16_S)
7460                <op>     $treg,<sym>($at)        (BFD_RELOC_LO16)
7461                <op>     $treg+1,<sym>+4($at)    (BFD_RELOC_LO16)
7462              If there is a base register, we add it to $at after the
7463              lui instruction.  If there is a constant, we always use
7464              the last case.  */
7465           if (offset_expr.X_op == O_symbol
7466               && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
7467               && !nopic_need_relax (offset_expr.X_add_symbol, 1))
7468             {
7469               relax_start (offset_expr.X_add_symbol);
7470               if (breg == 0)
7471                 {
7472                   tempreg = mips_gp_register;
7473                 }
7474               else
7475                 {
7476                   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7477                                AT, breg, mips_gp_register);
7478                   tempreg = AT;
7479                   used_at = 1;
7480                 }
7481
7482               /* Itbl support may require additional care here.  */
7483               macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7484                            BFD_RELOC_GPREL16, tempreg);
7485               offset_expr.X_add_number += 4;
7486
7487               /* Set mips_optimize to 2 to avoid inserting an
7488                  undesired nop.  */
7489               hold_mips_optimize = mips_optimize;
7490               mips_optimize = 2;
7491               /* Itbl support may require additional care here.  */
7492               macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7493                            BFD_RELOC_GPREL16, tempreg);
7494               mips_optimize = hold_mips_optimize;
7495
7496               relax_switch ();
7497
7498               offset_expr.X_add_number -= 4;
7499             }
7500           used_at = 1;
7501           macro_build_lui (&offset_expr, AT);
7502           if (breg != 0)
7503             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
7504           /* Itbl support may require additional care here.  */
7505           macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7506                        BFD_RELOC_LO16, AT);
7507           /* FIXME: How do we handle overflow here?  */
7508           offset_expr.X_add_number += 4;
7509           /* Itbl support may require additional care here.  */
7510           macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7511                        BFD_RELOC_LO16, AT);
7512           if (mips_relax.sequence)
7513             relax_end ();
7514         }
7515       else if (!mips_big_got)
7516         {
7517           /* If this is a reference to an external symbol, we want
7518                lw       $at,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
7519                nop
7520                <op>     $treg,0($at)
7521                <op>     $treg+1,4($at)
7522              Otherwise we want
7523                lw       $at,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
7524                nop
7525                <op>     $treg,<sym>($at)        (BFD_RELOC_LO16)
7526                <op>     $treg+1,<sym>+4($at)    (BFD_RELOC_LO16)
7527              If there is a base register we add it to $at before the
7528              lwc1 instructions.  If there is a constant we include it
7529              in the lwc1 instructions.  */
7530           used_at = 1;
7531           expr1.X_add_number = offset_expr.X_add_number;
7532           if (expr1.X_add_number < -0x8000
7533               || expr1.X_add_number >= 0x8000 - 4)
7534             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7535           load_got_offset (AT, &offset_expr);
7536           load_delay_nop ();
7537           if (breg != 0)
7538             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
7539
7540           /* Set mips_optimize to 2 to avoid inserting an undesired
7541              nop.  */
7542           hold_mips_optimize = mips_optimize;
7543           mips_optimize = 2;
7544
7545           /* Itbl support may require additional care here.  */
7546           relax_start (offset_expr.X_add_symbol);
7547           macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
7548                        BFD_RELOC_LO16, AT);
7549           expr1.X_add_number += 4;
7550           macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
7551                        BFD_RELOC_LO16, AT);
7552           relax_switch ();
7553           macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7554                        BFD_RELOC_LO16, AT);
7555           offset_expr.X_add_number += 4;
7556           macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7557                        BFD_RELOC_LO16, AT);
7558           relax_end ();
7559
7560           mips_optimize = hold_mips_optimize;
7561         }
7562       else if (mips_big_got)
7563         {
7564           int gpdelay;
7565
7566           /* If this is a reference to an external symbol, we want
7567                lui      $at,<sym>               (BFD_RELOC_MIPS_GOT_HI16)
7568                addu     $at,$at,$gp
7569                lw       $at,<sym>($at)          (BFD_RELOC_MIPS_GOT_LO16)
7570                nop
7571                <op>     $treg,0($at)
7572                <op>     $treg+1,4($at)
7573              Otherwise we want
7574                lw       $at,<sym>($gp)          (BFD_RELOC_MIPS_GOT16)
7575                nop
7576                <op>     $treg,<sym>($at)        (BFD_RELOC_LO16)
7577                <op>     $treg+1,<sym>+4($at)    (BFD_RELOC_LO16)
7578              If there is a base register we add it to $at before the
7579              lwc1 instructions.  If there is a constant we include it
7580              in the lwc1 instructions.  */
7581           used_at = 1;
7582           expr1.X_add_number = offset_expr.X_add_number;
7583           offset_expr.X_add_number = 0;
7584           if (expr1.X_add_number < -0x8000
7585               || expr1.X_add_number >= 0x8000 - 4)
7586             as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7587           gpdelay = reg_needs_delay (mips_gp_register);
7588           relax_start (offset_expr.X_add_symbol);
7589           macro_build (&offset_expr, "lui", "t,u",
7590                        AT, BFD_RELOC_MIPS_GOT_HI16);
7591           macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7592                        AT, AT, mips_gp_register);
7593           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7594                        AT, BFD_RELOC_MIPS_GOT_LO16, AT);
7595           load_delay_nop ();
7596           if (breg != 0)
7597             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
7598           /* Itbl support may require additional care here.  */
7599           macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
7600                        BFD_RELOC_LO16, AT);
7601           expr1.X_add_number += 4;
7602
7603           /* Set mips_optimize to 2 to avoid inserting an undesired
7604              nop.  */
7605           hold_mips_optimize = mips_optimize;
7606           mips_optimize = 2;
7607           /* Itbl support may require additional care here.  */
7608           macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
7609                        BFD_RELOC_LO16, AT);
7610           mips_optimize = hold_mips_optimize;
7611           expr1.X_add_number -= 4;
7612
7613           relax_switch ();
7614           offset_expr.X_add_number = expr1.X_add_number;
7615           if (gpdelay)
7616             macro_build (NULL, "nop", "");
7617           macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
7618                        BFD_RELOC_MIPS_GOT16, mips_gp_register);
7619           load_delay_nop ();
7620           if (breg != 0)
7621             macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
7622           /* Itbl support may require additional care here.  */
7623           macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7624                        BFD_RELOC_LO16, AT);
7625           offset_expr.X_add_number += 4;
7626
7627           /* Set mips_optimize to 2 to avoid inserting an undesired
7628              nop.  */
7629           hold_mips_optimize = mips_optimize;
7630           mips_optimize = 2;
7631           /* Itbl support may require additional care here.  */
7632           macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7633                        BFD_RELOC_LO16, AT);
7634           mips_optimize = hold_mips_optimize;
7635           relax_end ();
7636         }
7637       else
7638         abort ();
7639
7640       break;
7641
7642     case M_LD_OB:
7643       s = HAVE_64BIT_GPRS ? "ld" : "lw";
7644       goto sd_ob;
7645     case M_SD_OB:
7646       s = HAVE_64BIT_GPRS ? "sd" : "sw";
7647     sd_ob:
7648       macro_build (&offset_expr, s, "t,o(b)", treg,
7649                    -1, offset_reloc[0], offset_reloc[1], offset_reloc[2],
7650                    breg);
7651       if (!HAVE_64BIT_GPRS)
7652         {
7653           offset_expr.X_add_number += 4;
7654           macro_build (&offset_expr, s, "t,o(b)", treg + 1,
7655                        -1, offset_reloc[0], offset_reloc[1], offset_reloc[2],
7656                        breg);
7657         }
7658       break;
7659
7660    /* New code added to support COPZ instructions.
7661       This code builds table entries out of the macros in mip_opcodes.
7662       R4000 uses interlocks to handle coproc delays.
7663       Other chips (like the R3000) require nops to be inserted for delays.
7664
7665       FIXME: Currently, we require that the user handle delays.
7666       In order to fill delay slots for non-interlocked chips,
7667       we must have a way to specify delays based on the coprocessor.
7668       Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
7669       What are the side-effects of the cop instruction?
7670       What cache support might we have and what are its effects?
7671       Both coprocessor & memory require delays. how long???
7672       What registers are read/set/modified?
7673
7674       If an itbl is provided to interpret cop instructions,
7675       this knowledge can be encoded in the itbl spec.  */
7676
7677     case M_COP0:
7678       s = "c0";
7679       goto copz;
7680     case M_COP1:
7681       s = "c1";
7682       goto copz;
7683     case M_COP2:
7684       s = "c2";
7685       goto copz;
7686     case M_COP3:
7687       s = "c3";
7688     copz:
7689       if (NO_ISA_COP (mips_opts.arch)
7690           && (ip->insn_mo->pinfo2 & INSN2_M_FP_S) == 0)
7691         {
7692           as_bad (_("opcode not supported on this processor: %s"),
7693                   mips_cpu_info_from_arch (mips_opts.arch)->name);
7694           break;
7695         }
7696
7697       /* For now we just do C (same as Cz).  The parameter will be
7698          stored in insn_opcode by mips_ip.  */
7699       macro_build (NULL, s, "C", ip->insn_opcode);
7700       break;
7701
7702     case M_MOVE:
7703       move_register (dreg, sreg);
7704       break;
7705
7706     case M_DMUL:
7707       dbl = 1;
7708     case M_MUL:
7709       macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
7710       macro_build (NULL, "mflo", "d", dreg);
7711       break;
7712
7713     case M_DMUL_I:
7714       dbl = 1;
7715     case M_MUL_I:
7716       /* The MIPS assembler some times generates shifts and adds.  I'm
7717          not trying to be that fancy. GCC should do this for us
7718          anyway.  */
7719       used_at = 1;
7720       load_register (AT, &imm_expr, dbl);
7721       macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT);
7722       macro_build (NULL, "mflo", "d", dreg);
7723       break;
7724
7725     case M_DMULO_I:
7726       dbl = 1;
7727     case M_MULO_I:
7728       imm = 1;
7729       goto do_mulo;
7730
7731     case M_DMULO:
7732       dbl = 1;
7733     case M_MULO:
7734     do_mulo:
7735       start_noreorder ();
7736       used_at = 1;
7737       if (imm)
7738         load_register (AT, &imm_expr, dbl);
7739       macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
7740       macro_build (NULL, "mflo", "d", dreg);
7741       macro_build (NULL, dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA);
7742       macro_build (NULL, "mfhi", "d", AT);
7743       if (mips_trap)
7744         macro_build (NULL, "tne", "s,t,q", dreg, AT, 6);
7745       else
7746         {
7747           expr1.X_add_number = 8;
7748           macro_build (&expr1, "beq", "s,t,p", dreg, AT);
7749           macro_build (NULL, "nop", "");
7750           macro_build (NULL, "break", "c", 6);
7751         }
7752       end_noreorder ();
7753       macro_build (NULL, "mflo", "d", dreg);
7754       break;
7755
7756     case M_DMULOU_I:
7757       dbl = 1;
7758     case M_MULOU_I:
7759       imm = 1;
7760       goto do_mulou;
7761
7762     case M_DMULOU:
7763       dbl = 1;
7764     case M_MULOU:
7765     do_mulou:
7766       start_noreorder ();
7767       used_at = 1;
7768       if (imm)
7769         load_register (AT, &imm_expr, dbl);
7770       macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
7771                    sreg, imm ? AT : treg);
7772       macro_build (NULL, "mfhi", "d", AT);
7773       macro_build (NULL, "mflo", "d", dreg);
7774       if (mips_trap)
7775         macro_build (NULL, "tne", "s,t,q", AT, ZERO, 6);
7776       else
7777         {
7778           expr1.X_add_number = 8;
7779           macro_build (&expr1, "beq", "s,t,p", AT, ZERO);
7780           macro_build (NULL, "nop", "");
7781           macro_build (NULL, "break", "c", 6);
7782         }
7783       end_noreorder ();
7784       break;
7785
7786     case M_DROL:
7787       if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
7788         {
7789           if (dreg == sreg)
7790             {
7791               tempreg = AT;
7792               used_at = 1;
7793             }
7794           else
7795             {
7796               tempreg = dreg;
7797             }
7798           macro_build (NULL, "dnegu", "d,w", tempreg, treg);
7799           macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg);
7800           break;
7801         }
7802       used_at = 1;
7803       macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
7804       macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT);
7805       macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg);
7806       macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7807       break;
7808
7809     case M_ROL:
7810       if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7811         {
7812           if (dreg == sreg)
7813             {
7814               tempreg = AT;
7815               used_at = 1;
7816             }
7817           else
7818             {
7819               tempreg = dreg;
7820             }
7821           macro_build (NULL, "negu", "d,w", tempreg, treg);
7822           macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg);
7823           break;
7824         }
7825       used_at = 1;
7826       macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
7827       macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT);
7828       macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg);
7829       macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7830       break;
7831
7832     case M_DROL_I:
7833       {
7834         unsigned int rot;
7835         char *l;
7836         char *rr;
7837
7838         if (imm_expr.X_op != O_constant)
7839           as_bad (_("Improper rotate count"));
7840         rot = imm_expr.X_add_number & 0x3f;
7841         if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
7842           {
7843             rot = (64 - rot) & 0x3f;
7844             if (rot >= 32)
7845               macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
7846             else
7847               macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
7848             break;
7849           }
7850         if (rot == 0)
7851           {
7852             macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
7853             break;
7854           }
7855         l = (rot < 0x20) ? "dsll" : "dsll32";
7856         rr = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
7857         rot &= 0x1f;
7858         used_at = 1;
7859         macro_build (NULL, l, "d,w,<", AT, sreg, rot);
7860         macro_build (NULL, rr, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7861         macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7862       }
7863       break;
7864
7865     case M_ROL_I:
7866       {
7867         unsigned int rot;
7868
7869         if (imm_expr.X_op != O_constant)
7870           as_bad (_("Improper rotate count"));
7871         rot = imm_expr.X_add_number & 0x1f;
7872         if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7873           {
7874             macro_build (NULL, "ror", "d,w,<", dreg, sreg, (32 - rot) & 0x1f);
7875             break;
7876           }
7877         if (rot == 0)
7878           {
7879             macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
7880             break;
7881           }
7882         used_at = 1;
7883         macro_build (NULL, "sll", "d,w,<", AT, sreg, rot);
7884         macro_build (NULL, "srl", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7885         macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7886       }
7887       break;
7888
7889     case M_DROR:
7890       if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
7891         {
7892           macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg);
7893           break;
7894         }
7895       used_at = 1;
7896       macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
7897       macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT);
7898       macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
7899       macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7900       break;
7901
7902     case M_ROR:
7903       if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7904         {
7905           macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg);
7906           break;
7907         }
7908       used_at = 1;
7909       macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
7910       macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT);
7911       macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg);
7912       macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7913       break;
7914
7915     case M_DROR_I:
7916       {
7917         unsigned int rot;
7918         char *l;
7919         char *rr;
7920
7921         if (imm_expr.X_op != O_constant)
7922           as_bad (_("Improper rotate count"));
7923         rot = imm_expr.X_add_number & 0x3f;
7924         if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
7925           {
7926             if (rot >= 32)
7927               macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
7928             else
7929               macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
7930             break;
7931           }
7932         if (rot == 0)
7933           {
7934             macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
7935             break;
7936           }
7937         rr = (rot < 0x20) ? "dsrl" : "dsrl32";
7938         l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
7939         rot &= 0x1f;
7940         used_at = 1;
7941         macro_build (NULL, rr, "d,w,<", AT, sreg, rot);
7942         macro_build (NULL, l, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7943         macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7944       }
7945       break;
7946
7947     case M_ROR_I:
7948       {
7949         unsigned int rot;
7950
7951         if (imm_expr.X_op != O_constant)
7952           as_bad (_("Improper rotate count"));
7953         rot = imm_expr.X_add_number & 0x1f;
7954         if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7955           {
7956             macro_build (NULL, "ror", "d,w,<", dreg, sreg, rot);
7957             break;
7958           }
7959         if (rot == 0)
7960           {
7961             macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
7962             break;
7963           }
7964         used_at = 1;
7965         macro_build (NULL, "srl", "d,w,<", AT, sreg, rot);
7966         macro_build (NULL, "sll", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7967         macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7968       }
7969       break;
7970
7971     case M_SEQ:
7972       if (sreg == 0)
7973         macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
7974       else if (treg == 0)
7975         macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7976       else
7977         {
7978           macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7979           macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
7980         }
7981       break;
7982
7983     case M_SEQ_I:
7984       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7985         {
7986           macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7987           break;
7988         }
7989       if (sreg == 0)
7990         {
7991           as_warn (_("Instruction %s: result is always false"),
7992                    ip->insn_mo->name);
7993           move_register (dreg, 0);
7994           break;
7995         }
7996       if (CPU_HAS_SEQ (mips_opts.arch)
7997           && -512 <= imm_expr.X_add_number
7998           && imm_expr.X_add_number < 512)
7999         {
8000           macro_build (NULL, "seqi", "t,r,+Q", dreg, sreg,
8001                        (int) imm_expr.X_add_number);
8002           break;
8003         }
8004       if (imm_expr.X_op == O_constant
8005           && imm_expr.X_add_number >= 0
8006           && imm_expr.X_add_number < 0x10000)
8007         {
8008           macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
8009         }
8010       else if (imm_expr.X_op == O_constant
8011                && imm_expr.X_add_number > -0x8000
8012                && imm_expr.X_add_number < 0)
8013         {
8014           imm_expr.X_add_number = -imm_expr.X_add_number;
8015           macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
8016                        "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8017         }
8018       else if (CPU_HAS_SEQ (mips_opts.arch))
8019         {
8020           used_at = 1;
8021           load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8022           macro_build (NULL, "seq", "d,v,t", dreg, sreg, AT);
8023           break;
8024         }
8025       else
8026         {
8027           load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8028           macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
8029           used_at = 1;
8030         }
8031       macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
8032       break;
8033
8034     case M_SGE:         /* sreg >= treg <==> not (sreg < treg) */
8035       s = "slt";
8036       goto sge;
8037     case M_SGEU:
8038       s = "sltu";
8039     sge:
8040       macro_build (NULL, s, "d,v,t", dreg, sreg, treg);
8041       macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8042       break;
8043
8044     case M_SGE_I:               /* sreg >= I <==> not (sreg < I) */
8045     case M_SGEU_I:
8046       if (imm_expr.X_op == O_constant
8047           && imm_expr.X_add_number >= -0x8000
8048           && imm_expr.X_add_number < 0x8000)
8049         {
8050           macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
8051                        dreg, sreg, BFD_RELOC_LO16);
8052         }
8053       else
8054         {
8055           load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8056           macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
8057                        dreg, sreg, AT);
8058           used_at = 1;
8059         }
8060       macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8061       break;
8062
8063     case M_SGT:         /* sreg > treg  <==>  treg < sreg */
8064       s = "slt";
8065       goto sgt;
8066     case M_SGTU:
8067       s = "sltu";
8068     sgt:
8069       macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
8070       break;
8071
8072     case M_SGT_I:               /* sreg > I  <==>  I < sreg */
8073       s = "slt";
8074       goto sgti;
8075     case M_SGTU_I:
8076       s = "sltu";
8077     sgti:
8078       used_at = 1;
8079       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8080       macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
8081       break;
8082
8083     case M_SLE: /* sreg <= treg  <==>  treg >= sreg  <==>  not (treg < sreg) */
8084       s = "slt";
8085       goto sle;
8086     case M_SLEU:
8087       s = "sltu";
8088     sle:
8089       macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
8090       macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8091       break;
8092
8093     case M_SLE_I:       /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
8094       s = "slt";
8095       goto slei;
8096     case M_SLEU_I:
8097       s = "sltu";
8098     slei:
8099       used_at = 1;
8100       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8101       macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
8102       macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8103       break;
8104
8105     case M_SLT_I:
8106       if (imm_expr.X_op == O_constant
8107           && imm_expr.X_add_number >= -0x8000
8108           && imm_expr.X_add_number < 0x8000)
8109         {
8110           macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8111           break;
8112         }
8113       used_at = 1;
8114       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8115       macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT);
8116       break;
8117
8118     case M_SLTU_I:
8119       if (imm_expr.X_op == O_constant
8120           && imm_expr.X_add_number >= -0x8000
8121           && imm_expr.X_add_number < 0x8000)
8122         {
8123           macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg,
8124                        BFD_RELOC_LO16);
8125           break;
8126         }
8127       used_at = 1;
8128       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8129       macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT);
8130       break;
8131
8132     case M_SNE:
8133       if (sreg == 0)
8134         macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg);
8135       else if (treg == 0)
8136         macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
8137       else
8138         {
8139           macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
8140           macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
8141         }
8142       break;
8143
8144     case M_SNE_I:
8145       if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
8146         {
8147           macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
8148           break;
8149         }
8150       if (sreg == 0)
8151         {
8152           as_warn (_("Instruction %s: result is always true"),
8153                    ip->insn_mo->name);
8154           macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
8155                        dreg, 0, BFD_RELOC_LO16);
8156           break;
8157         }
8158       if (CPU_HAS_SEQ (mips_opts.arch)
8159           && -512 <= imm_expr.X_add_number
8160           && imm_expr.X_add_number < 512)
8161         {
8162           macro_build (NULL, "snei", "t,r,+Q", dreg, sreg,
8163                        (int) imm_expr.X_add_number);
8164           break;
8165         }
8166       if (imm_expr.X_op == O_constant
8167           && imm_expr.X_add_number >= 0
8168           && imm_expr.X_add_number < 0x10000)
8169         {
8170           macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
8171         }
8172       else if (imm_expr.X_op == O_constant
8173                && imm_expr.X_add_number > -0x8000
8174                && imm_expr.X_add_number < 0)
8175         {
8176           imm_expr.X_add_number = -imm_expr.X_add_number;
8177           macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
8178                        "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8179         }
8180       else if (CPU_HAS_SEQ (mips_opts.arch))
8181         {
8182           used_at = 1;
8183           load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8184           macro_build (NULL, "sne", "d,v,t", dreg, sreg, AT);
8185           break;
8186         }
8187       else
8188         {
8189           load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8190           macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
8191           used_at = 1;
8192         }
8193       macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
8194       break;
8195
8196     case M_DSUB_I:
8197       dbl = 1;
8198     case M_SUB_I:
8199       if (imm_expr.X_op == O_constant
8200           && imm_expr.X_add_number > -0x8000
8201           && imm_expr.X_add_number <= 0x8000)
8202         {
8203           imm_expr.X_add_number = -imm_expr.X_add_number;
8204           macro_build (&imm_expr, dbl ? "daddi" : "addi", "t,r,j",
8205                        dreg, sreg, BFD_RELOC_LO16);
8206           break;
8207         }
8208       used_at = 1;
8209       load_register (AT, &imm_expr, dbl);
8210       macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
8211       break;
8212
8213     case M_DSUBU_I:
8214       dbl = 1;
8215     case M_SUBU_I:
8216       if (imm_expr.X_op == O_constant
8217           && imm_expr.X_add_number > -0x8000
8218           && imm_expr.X_add_number <= 0x8000)
8219         {
8220           imm_expr.X_add_number = -imm_expr.X_add_number;
8221           macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "t,r,j",
8222                        dreg, sreg, BFD_RELOC_LO16);
8223           break;
8224         }
8225       used_at = 1;
8226       load_register (AT, &imm_expr, dbl);
8227       macro_build (NULL, dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
8228       break;
8229
8230     case M_TEQ_I:
8231       s = "teq";
8232       goto trap;
8233     case M_TGE_I:
8234       s = "tge";
8235       goto trap;
8236     case M_TGEU_I:
8237       s = "tgeu";
8238       goto trap;
8239     case M_TLT_I:
8240       s = "tlt";
8241       goto trap;
8242     case M_TLTU_I:
8243       s = "tltu";
8244       goto trap;
8245     case M_TNE_I:
8246       s = "tne";
8247     trap:
8248       used_at = 1;
8249       load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8250       macro_build (NULL, s, "s,t", sreg, AT);
8251       break;
8252
8253     case M_TRUNCWS:
8254     case M_TRUNCWD:
8255       gas_assert (mips_opts.isa == ISA_MIPS1);
8256       used_at = 1;
8257       sreg = (ip->insn_opcode >> 11) & 0x1f;    /* floating reg */
8258       dreg = (ip->insn_opcode >> 06) & 0x1f;    /* floating reg */
8259
8260       /*
8261        * Is the double cfc1 instruction a bug in the mips assembler;
8262        * or is there a reason for it?
8263        */
8264       start_noreorder ();
8265       macro_build (NULL, "cfc1", "t,G", treg, RA);
8266       macro_build (NULL, "cfc1", "t,G", treg, RA);
8267       macro_build (NULL, "nop", "");
8268       expr1.X_add_number = 3;
8269       macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16);
8270       expr1.X_add_number = 2;
8271       macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
8272       macro_build (NULL, "ctc1", "t,G", AT, RA);
8273       macro_build (NULL, "nop", "");
8274       macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
8275                    dreg, sreg);
8276       macro_build (NULL, "ctc1", "t,G", treg, RA);
8277       macro_build (NULL, "nop", "");
8278       end_noreorder ();
8279       break;
8280
8281     case M_ULH:
8282       s = "lb";
8283       goto ulh;
8284     case M_ULHU:
8285       s = "lbu";
8286     ulh:
8287       used_at = 1;
8288       if (offset_expr.X_add_number >= 0x7fff)
8289         as_bad (_("Operand overflow"));
8290       if (!target_big_endian)
8291         ++offset_expr.X_add_number;
8292       macro_build (&offset_expr, s, "t,o(b)", AT, BFD_RELOC_LO16, breg);
8293       if (!target_big_endian)
8294         --offset_expr.X_add_number;
8295       else
8296         ++offset_expr.X_add_number;
8297       macro_build (&offset_expr, "lbu", "t,o(b)", treg, BFD_RELOC_LO16, breg);
8298       macro_build (NULL, "sll", "d,w,<", AT, AT, 8);
8299       macro_build (NULL, "or", "d,v,t", treg, treg, AT);
8300       break;
8301
8302     case M_ULD:
8303       s = "ldl";
8304       s2 = "ldr";
8305       off = 7;
8306       goto ulw;
8307     case M_ULW:
8308       s = "lwl";
8309       s2 = "lwr";
8310       off = 3;
8311     ulw:
8312       if (offset_expr.X_add_number >= 0x8000 - off)
8313         as_bad (_("Operand overflow"));
8314       if (treg != breg)
8315         tempreg = treg;
8316       else
8317         {
8318           used_at = 1;
8319           tempreg = AT;
8320         }
8321       if (!target_big_endian)
8322         offset_expr.X_add_number += off;
8323       macro_build (&offset_expr, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
8324       if (!target_big_endian)
8325         offset_expr.X_add_number -= off;
8326       else
8327         offset_expr.X_add_number += off;
8328       macro_build (&offset_expr, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
8329
8330       /* If necessary, move the result in tempreg to the final destination.  */
8331       if (treg == tempreg)
8332         break;
8333       /* Protect second load's delay slot.  */
8334       load_delay_nop ();
8335       move_register (treg, tempreg);
8336       break;
8337
8338     case M_ULD_A:
8339       s = "ldl";
8340       s2 = "ldr";
8341       off = 7;
8342       goto ulwa;
8343     case M_ULW_A:
8344       s = "lwl";
8345       s2 = "lwr";
8346       off = 3;
8347     ulwa:
8348       used_at = 1;
8349       load_address (AT, &offset_expr, &used_at);
8350       if (breg != 0)
8351         macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8352       if (!target_big_endian)
8353         expr1.X_add_number = off;
8354       else
8355         expr1.X_add_number = 0;
8356       macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8357       if (!target_big_endian)
8358         expr1.X_add_number = 0;
8359       else
8360         expr1.X_add_number = off;
8361       macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8362       break;
8363
8364     case M_ULH_A:
8365     case M_ULHU_A:
8366       used_at = 1;
8367       load_address (AT, &offset_expr, &used_at);
8368       if (breg != 0)
8369         macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8370       if (target_big_endian)
8371         expr1.X_add_number = 0;
8372       macro_build (&expr1, mask == M_ULH_A ? "lb" : "lbu", "t,o(b)",
8373                    treg, BFD_RELOC_LO16, AT);
8374       if (target_big_endian)
8375         expr1.X_add_number = 1;
8376       else
8377         expr1.X_add_number = 0;
8378       macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
8379       macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
8380       macro_build (NULL, "or", "d,v,t", treg, treg, AT);
8381       break;
8382
8383     case M_USH:
8384       used_at = 1;
8385       if (offset_expr.X_add_number >= 0x7fff)
8386         as_bad (_("Operand overflow"));
8387       if (target_big_endian)
8388         ++offset_expr.X_add_number;
8389       macro_build (&offset_expr, "sb", "t,o(b)", treg, BFD_RELOC_LO16, breg);
8390       macro_build (NULL, "srl", "d,w,<", AT, treg, 8);
8391       if (target_big_endian)
8392         --offset_expr.X_add_number;
8393       else
8394         ++offset_expr.X_add_number;
8395       macro_build (&offset_expr, "sb", "t,o(b)", AT, BFD_RELOC_LO16, breg);
8396       break;
8397
8398     case M_USD:
8399       s = "sdl";
8400       s2 = "sdr";
8401       off = 7;
8402       goto usw;
8403     case M_USW:
8404       s = "swl";
8405       s2 = "swr";
8406       off = 3;
8407     usw:
8408       if (offset_expr.X_add_number >= 0x8000 - off)
8409         as_bad (_("Operand overflow"));
8410       if (!target_big_endian)
8411         offset_expr.X_add_number += off;
8412       macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
8413       if (!target_big_endian)
8414         offset_expr.X_add_number -= off;
8415       else
8416         offset_expr.X_add_number += off;
8417       macro_build (&offset_expr, s2, "t,o(b)", treg, BFD_RELOC_LO16, breg);
8418       break;
8419
8420     case M_USD_A:
8421       s = "sdl";
8422       s2 = "sdr";
8423       off = 7;
8424       goto uswa;
8425     case M_USW_A:
8426       s = "swl";
8427       s2 = "swr";
8428       off = 3;
8429     uswa:
8430       used_at = 1;
8431       load_address (AT, &offset_expr, &used_at);
8432       if (breg != 0)
8433         macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8434       if (!target_big_endian)
8435         expr1.X_add_number = off;
8436       else
8437         expr1.X_add_number = 0;
8438       macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8439       if (!target_big_endian)
8440         expr1.X_add_number = 0;
8441       else
8442         expr1.X_add_number = off;
8443       macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8444       break;
8445
8446     case M_USH_A:
8447       used_at = 1;
8448       load_address (AT, &offset_expr, &used_at);
8449       if (breg != 0)
8450         macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8451       if (!target_big_endian)
8452         expr1.X_add_number = 0;
8453       macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
8454       macro_build (NULL, "srl", "d,w,<", treg, treg, 8);
8455       if (!target_big_endian)
8456         expr1.X_add_number = 1;
8457       else
8458         expr1.X_add_number = 0;
8459       macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
8460       if (!target_big_endian)
8461         expr1.X_add_number = 0;
8462       else
8463         expr1.X_add_number = 1;
8464       macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
8465       macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
8466       macro_build (NULL, "or", "d,v,t", treg, treg, AT);
8467       break;
8468
8469     default:
8470       /* FIXME: Check if this is one of the itbl macros, since they
8471          are added dynamically.  */
8472       as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
8473       break;
8474     }
8475   if (!mips_opts.at && used_at)
8476     as_bad (_("Macro used $at after \".set noat\""));
8477 }
8478
8479 /* Implement macros in mips16 mode.  */
8480
8481 static void
8482 mips16_macro (struct mips_cl_insn *ip)
8483 {
8484   int mask;
8485   int xreg, yreg, zreg, tmp;
8486   expressionS expr1;
8487   int dbl;
8488   const char *s, *s2, *s3;
8489
8490   mask = ip->insn_mo->mask;
8491
8492   xreg = MIPS16_EXTRACT_OPERAND (RX, *ip);
8493   yreg = MIPS16_EXTRACT_OPERAND (RY, *ip);
8494   zreg = MIPS16_EXTRACT_OPERAND (RZ, *ip);
8495
8496   expr1.X_op = O_constant;
8497   expr1.X_op_symbol = NULL;
8498   expr1.X_add_symbol = NULL;
8499   expr1.X_add_number = 1;
8500
8501   dbl = 0;
8502
8503   switch (mask)
8504     {
8505     default:
8506       internalError ();
8507
8508     case M_DDIV_3:
8509       dbl = 1;
8510     case M_DIV_3:
8511       s = "mflo";
8512       goto do_div3;
8513     case M_DREM_3:
8514       dbl = 1;
8515     case M_REM_3:
8516       s = "mfhi";
8517     do_div3:
8518       start_noreorder ();
8519       macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg);
8520       expr1.X_add_number = 2;
8521       macro_build (&expr1, "bnez", "x,p", yreg);
8522       macro_build (NULL, "break", "6", 7);
8523
8524       /* FIXME: The normal code checks for of -1 / -0x80000000 here,
8525          since that causes an overflow.  We should do that as well,
8526          but I don't see how to do the comparisons without a temporary
8527          register.  */
8528       end_noreorder ();
8529       macro_build (NULL, s, "x", zreg);
8530       break;
8531
8532     case M_DIVU_3:
8533       s = "divu";
8534       s2 = "mflo";
8535       goto do_divu3;
8536     case M_REMU_3:
8537       s = "divu";
8538       s2 = "mfhi";
8539       goto do_divu3;
8540     case M_DDIVU_3:
8541       s = "ddivu";
8542       s2 = "mflo";
8543       goto do_divu3;
8544     case M_DREMU_3:
8545       s = "ddivu";
8546       s2 = "mfhi";
8547     do_divu3:
8548       start_noreorder ();
8549       macro_build (NULL, s, "0,x,y", xreg, yreg);
8550       expr1.X_add_number = 2;
8551       macro_build (&expr1, "bnez", "x,p", yreg);
8552       macro_build (NULL, "break", "6", 7);
8553       end_noreorder ();
8554       macro_build (NULL, s2, "x", zreg);
8555       break;
8556
8557     case M_DMUL:
8558       dbl = 1;
8559     case M_MUL:
8560       macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
8561       macro_build (NULL, "mflo", "x", zreg);
8562       break;
8563
8564     case M_DSUBU_I:
8565       dbl = 1;
8566       goto do_subu;
8567     case M_SUBU_I:
8568     do_subu:
8569       if (imm_expr.X_op != O_constant)
8570         as_bad (_("Unsupported large constant"));
8571       imm_expr.X_add_number = -imm_expr.X_add_number;
8572       macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
8573       break;
8574
8575     case M_SUBU_I_2:
8576       if (imm_expr.X_op != O_constant)
8577         as_bad (_("Unsupported large constant"));
8578       imm_expr.X_add_number = -imm_expr.X_add_number;
8579       macro_build (&imm_expr, "addiu", "x,k", xreg);
8580       break;
8581
8582     case M_DSUBU_I_2:
8583       if (imm_expr.X_op != O_constant)
8584         as_bad (_("Unsupported large constant"));
8585       imm_expr.X_add_number = -imm_expr.X_add_number;
8586       macro_build (&imm_expr, "daddiu", "y,j", yreg);
8587       break;
8588
8589     case M_BEQ:
8590       s = "cmp";
8591       s2 = "bteqz";
8592       goto do_branch;
8593     case M_BNE:
8594       s = "cmp";
8595       s2 = "btnez";
8596       goto do_branch;
8597     case M_BLT:
8598       s = "slt";
8599       s2 = "btnez";
8600       goto do_branch;
8601     case M_BLTU:
8602       s = "sltu";
8603       s2 = "btnez";
8604       goto do_branch;
8605     case M_BLE:
8606       s = "slt";
8607       s2 = "bteqz";
8608       goto do_reverse_branch;
8609     case M_BLEU:
8610       s = "sltu";
8611       s2 = "bteqz";
8612       goto do_reverse_branch;
8613     case M_BGE:
8614       s = "slt";
8615       s2 = "bteqz";
8616       goto do_branch;
8617     case M_BGEU:
8618       s = "sltu";
8619       s2 = "bteqz";
8620       goto do_branch;
8621     case M_BGT:
8622       s = "slt";
8623       s2 = "btnez";
8624       goto do_reverse_branch;
8625     case M_BGTU:
8626       s = "sltu";
8627       s2 = "btnez";
8628
8629     do_reverse_branch:
8630       tmp = xreg;
8631       xreg = yreg;
8632       yreg = tmp;
8633
8634     do_branch:
8635       macro_build (NULL, s, "x,y", xreg, yreg);
8636       macro_build (&offset_expr, s2, "p");
8637       break;
8638
8639     case M_BEQ_I:
8640       s = "cmpi";
8641       s2 = "bteqz";
8642       s3 = "x,U";
8643       goto do_branch_i;
8644     case M_BNE_I:
8645       s = "cmpi";
8646       s2 = "btnez";
8647       s3 = "x,U";
8648       goto do_branch_i;
8649     case M_BLT_I:
8650       s = "slti";
8651       s2 = "btnez";
8652       s3 = "x,8";
8653       goto do_branch_i;
8654     case M_BLTU_I:
8655       s = "sltiu";
8656       s2 = "btnez";
8657       s3 = "x,8";
8658       goto do_branch_i;
8659     case M_BLE_I:
8660       s = "slti";
8661       s2 = "btnez";
8662       s3 = "x,8";
8663       goto do_addone_branch_i;
8664     case M_BLEU_I:
8665       s = "sltiu";
8666       s2 = "btnez";
8667       s3 = "x,8";
8668       goto do_addone_branch_i;
8669     case M_BGE_I:
8670       s = "slti";
8671       s2 = "bteqz";
8672       s3 = "x,8";
8673       goto do_branch_i;
8674     case M_BGEU_I:
8675       s = "sltiu";
8676       s2 = "bteqz";
8677       s3 = "x,8";
8678       goto do_branch_i;
8679     case M_BGT_I:
8680       s = "slti";
8681       s2 = "bteqz";
8682       s3 = "x,8";
8683       goto do_addone_branch_i;
8684     case M_BGTU_I:
8685       s = "sltiu";
8686       s2 = "bteqz";
8687       s3 = "x,8";
8688
8689     do_addone_branch_i:
8690       if (imm_expr.X_op != O_constant)
8691         as_bad (_("Unsupported large constant"));
8692       ++imm_expr.X_add_number;
8693
8694     do_branch_i:
8695       macro_build (&imm_expr, s, s3, xreg);
8696       macro_build (&offset_expr, s2, "p");
8697       break;
8698
8699     case M_ABS:
8700       expr1.X_add_number = 0;
8701       macro_build (&expr1, "slti", "x,8", yreg);
8702       if (xreg != yreg)
8703         move_register (xreg, yreg);
8704       expr1.X_add_number = 2;
8705       macro_build (&expr1, "bteqz", "p");
8706       macro_build (NULL, "neg", "x,w", xreg, xreg);
8707     }
8708 }
8709
8710 /* For consistency checking, verify that all bits are specified either
8711    by the match/mask part of the instruction definition, or by the
8712    operand list.  */
8713 static int
8714 validate_mips_insn (const struct mips_opcode *opc)
8715 {
8716   const char *p = opc->args;
8717   char c;
8718   unsigned long used_bits = opc->mask;
8719
8720   if ((used_bits & opc->match) != opc->match)
8721     {
8722       as_bad (_("internal: bad mips opcode (mask error): %s %s"),
8723               opc->name, opc->args);
8724       return 0;
8725     }
8726 #define USE_BITS(mask,shift)    (used_bits |= ((mask) << (shift)))
8727   while (*p)
8728     switch (c = *p++)
8729       {
8730       case ',': break;
8731       case '(': break;
8732       case ')': break;
8733       case '+':
8734         switch (c = *p++)
8735           {
8736           case '1': USE_BITS (OP_MASK_UDI1,     OP_SH_UDI1);    break;
8737           case '2': USE_BITS (OP_MASK_UDI2,     OP_SH_UDI2);    break;
8738           case '3': USE_BITS (OP_MASK_UDI3,     OP_SH_UDI3);    break;
8739           case '4': USE_BITS (OP_MASK_UDI4,     OP_SH_UDI4);    break;
8740           case 'A': USE_BITS (OP_MASK_SHAMT,    OP_SH_SHAMT);   break;
8741           case 'B': USE_BITS (OP_MASK_INSMSB,   OP_SH_INSMSB);  break;
8742           case 'C': USE_BITS (OP_MASK_EXTMSBD,  OP_SH_EXTMSBD); break;
8743           case 'D': USE_BITS (OP_MASK_RD,       OP_SH_RD);
8744                     USE_BITS (OP_MASK_SEL,      OP_SH_SEL);     break;
8745           case 'E': USE_BITS (OP_MASK_SHAMT,    OP_SH_SHAMT);   break;
8746           case 'F': USE_BITS (OP_MASK_INSMSB,   OP_SH_INSMSB);  break;
8747           case 'G': USE_BITS (OP_MASK_EXTMSBD,  OP_SH_EXTMSBD); break;
8748           case 'H': USE_BITS (OP_MASK_EXTMSBD,  OP_SH_EXTMSBD); break;
8749           case 'I': break;
8750           case 't': USE_BITS (OP_MASK_RT,       OP_SH_RT);      break;
8751           case 'T': USE_BITS (OP_MASK_RT,       OP_SH_RT);
8752                     USE_BITS (OP_MASK_SEL,      OP_SH_SEL);     break;
8753           case 'x': USE_BITS (OP_MASK_BBITIND,  OP_SH_BBITIND); break;
8754           case 'X': USE_BITS (OP_MASK_BBITIND,  OP_SH_BBITIND); break;
8755           case 'p': USE_BITS (OP_MASK_CINSPOS,  OP_SH_CINSPOS); break;
8756           case 'P': USE_BITS (OP_MASK_CINSPOS,  OP_SH_CINSPOS); break;
8757           case 'Q': USE_BITS (OP_MASK_SEQI,     OP_SH_SEQI);    break;
8758           case 's': USE_BITS (OP_MASK_CINSLM1,  OP_SH_CINSLM1); break;
8759           case 'S': USE_BITS (OP_MASK_CINSLM1,  OP_SH_CINSLM1); break;
8760           case 'z': USE_BITS (OP_MASK_RZ,       OP_SH_RZ);      break;
8761           case 'Z': USE_BITS (OP_MASK_FZ,       OP_SH_FZ);      break;
8762           case 'a': USE_BITS (OP_MASK_OFFSET_A, OP_SH_OFFSET_A); break;
8763           case 'b': USE_BITS (OP_MASK_OFFSET_B, OP_SH_OFFSET_B); break;
8764           case 'c': USE_BITS (OP_MASK_OFFSET_C, OP_SH_OFFSET_C); break;
8765
8766           default:
8767             as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
8768                     c, opc->name, opc->args);
8769             return 0;
8770           }
8771         break;
8772       case '<': USE_BITS (OP_MASK_SHAMT,        OP_SH_SHAMT);   break;
8773       case '>': USE_BITS (OP_MASK_SHAMT,        OP_SH_SHAMT);   break;
8774       case 'A': break;
8775       case 'B': USE_BITS (OP_MASK_CODE20,       OP_SH_CODE20);  break;
8776       case 'C': USE_BITS (OP_MASK_COPZ,         OP_SH_COPZ);    break;
8777       case 'D': USE_BITS (OP_MASK_FD,           OP_SH_FD);      break;
8778       case 'E': USE_BITS (OP_MASK_RT,           OP_SH_RT);      break;
8779       case 'F': break;
8780       case 'G': USE_BITS (OP_MASK_RD,           OP_SH_RD);      break;
8781       case 'H': USE_BITS (OP_MASK_SEL,          OP_SH_SEL);     break;
8782       case 'I': break;
8783       case 'J': USE_BITS (OP_MASK_CODE19,       OP_SH_CODE19);  break;
8784       case 'K': USE_BITS (OP_MASK_RD,           OP_SH_RD);      break;
8785       case 'L': break;
8786       case 'M': USE_BITS (OP_MASK_CCC,          OP_SH_CCC);     break;
8787       case 'N': USE_BITS (OP_MASK_BCC,          OP_SH_BCC);     break;
8788       case 'O': USE_BITS (OP_MASK_ALN,          OP_SH_ALN);     break;
8789       case 'Q': USE_BITS (OP_MASK_VSEL,         OP_SH_VSEL);
8790                 USE_BITS (OP_MASK_FT,           OP_SH_FT);      break;
8791       case 'R': USE_BITS (OP_MASK_FR,           OP_SH_FR);      break;
8792       case 'S': USE_BITS (OP_MASK_FS,           OP_SH_FS);      break;
8793       case 'T': USE_BITS (OP_MASK_FT,           OP_SH_FT);      break;
8794       case 'V': USE_BITS (OP_MASK_FS,           OP_SH_FS);      break;
8795       case 'W': USE_BITS (OP_MASK_FT,           OP_SH_FT);      break;
8796       case 'X': USE_BITS (OP_MASK_FD,           OP_SH_FD);      break;
8797       case 'Y': USE_BITS (OP_MASK_FS,           OP_SH_FS);      break;
8798       case 'Z': USE_BITS (OP_MASK_FT,           OP_SH_FT);      break;
8799       case 'a': USE_BITS (OP_MASK_TARGET,       OP_SH_TARGET);  break;
8800       case 'b': USE_BITS (OP_MASK_RS,           OP_SH_RS);      break;
8801       case 'c': USE_BITS (OP_MASK_CODE,         OP_SH_CODE);    break;
8802       case 'd': USE_BITS (OP_MASK_RD,           OP_SH_RD);      break;
8803       case 'f': break;
8804       case 'h': USE_BITS (OP_MASK_PREFX,        OP_SH_PREFX);   break;
8805       case 'i': USE_BITS (OP_MASK_IMMEDIATE,    OP_SH_IMMEDIATE); break;
8806       case 'j': USE_BITS (OP_MASK_DELTA,        OP_SH_DELTA);   break;
8807       case 'k': USE_BITS (OP_MASK_CACHE,        OP_SH_CACHE);   break;
8808       case 'l': break;
8809       case 'o': USE_BITS (OP_MASK_DELTA,        OP_SH_DELTA);   break;
8810       case 'p': USE_BITS (OP_MASK_DELTA,        OP_SH_DELTA);   break;
8811       case 'q': USE_BITS (OP_MASK_CODE2,        OP_SH_CODE2);   break;
8812       case 'r': USE_BITS (OP_MASK_RS,           OP_SH_RS);      break;
8813       case 's': USE_BITS (OP_MASK_RS,           OP_SH_RS);      break;
8814       case 't': USE_BITS (OP_MASK_RT,           OP_SH_RT);      break;
8815       case 'u': USE_BITS (OP_MASK_IMMEDIATE,    OP_SH_IMMEDIATE); break;
8816       case 'v': USE_BITS (OP_MASK_RS,           OP_SH_RS);      break;
8817       case 'w': USE_BITS (OP_MASK_RT,           OP_SH_RT);      break;
8818       case 'x': break;
8819       case 'z': break;
8820       case 'P': USE_BITS (OP_MASK_PERFREG,      OP_SH_PERFREG); break;
8821       case 'U': USE_BITS (OP_MASK_RD,           OP_SH_RD);
8822                 USE_BITS (OP_MASK_RT,           OP_SH_RT);      break;
8823       case 'e': USE_BITS (OP_MASK_VECBYTE,      OP_SH_VECBYTE); break;
8824       case '%': USE_BITS (OP_MASK_VECALIGN,     OP_SH_VECALIGN); break;
8825       case '[': break;
8826       case ']': break;
8827       case '1': USE_BITS (OP_MASK_SHAMT,        OP_SH_SHAMT);   break;
8828       case '2': USE_BITS (OP_MASK_BP,           OP_SH_BP);      break;
8829       case '3': USE_BITS (OP_MASK_SA3,          OP_SH_SA3);     break;
8830       case '4': USE_BITS (OP_MASK_SA4,          OP_SH_SA4);     break;
8831       case '5': USE_BITS (OP_MASK_IMM8,         OP_SH_IMM8);    break;
8832       case '6': USE_BITS (OP_MASK_RS,           OP_SH_RS);      break;
8833       case '7': USE_BITS (OP_MASK_DSPACC,       OP_SH_DSPACC);  break;
8834       case '8': USE_BITS (OP_MASK_WRDSP,        OP_SH_WRDSP);   break;
8835       case '9': USE_BITS (OP_MASK_DSPACC_S,     OP_SH_DSPACC_S);break;
8836       case '0': USE_BITS (OP_MASK_DSPSFT,       OP_SH_DSPSFT);  break;
8837       case '\'': USE_BITS (OP_MASK_RDDSP,       OP_SH_RDDSP);   break;
8838       case ':': USE_BITS (OP_MASK_DSPSFT_7,     OP_SH_DSPSFT_7);break;
8839       case '@': USE_BITS (OP_MASK_IMM10,        OP_SH_IMM10);   break;
8840       case '!': USE_BITS (OP_MASK_MT_U,         OP_SH_MT_U);    break;
8841       case '$': USE_BITS (OP_MASK_MT_H,         OP_SH_MT_H);    break;
8842       case '*': USE_BITS (OP_MASK_MTACC_T,      OP_SH_MTACC_T); break;
8843       case '&': USE_BITS (OP_MASK_MTACC_D,      OP_SH_MTACC_D); break;
8844       case 'g': USE_BITS (OP_MASK_RD,           OP_SH_RD);      break;
8845       default:
8846         as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
8847                 c, opc->name, opc->args);
8848         return 0;
8849       }
8850 #undef USE_BITS
8851   if (used_bits != 0xffffffff)
8852     {
8853       as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
8854               ~used_bits & 0xffffffff, opc->name, opc->args);
8855       return 0;
8856     }
8857   return 1;
8858 }
8859
8860 /* UDI immediates.  */
8861 struct mips_immed {
8862   char          type;
8863   unsigned int  shift;
8864   unsigned long mask;
8865   const char *  desc;
8866 };
8867
8868 static const struct mips_immed mips_immed[] = {
8869   { '1',        OP_SH_UDI1,     OP_MASK_UDI1,           0},
8870   { '2',        OP_SH_UDI2,     OP_MASK_UDI2,           0},
8871   { '3',        OP_SH_UDI3,     OP_MASK_UDI3,           0},
8872   { '4',        OP_SH_UDI4,     OP_MASK_UDI4,           0},
8873   { 0,0,0,0 }
8874 };
8875
8876 /* Check whether an odd floating-point register is allowed.  */
8877 static int
8878 mips_oddfpreg_ok (const struct mips_opcode *insn, int argnum)
8879 {
8880   const char *s = insn->name;
8881
8882   if (insn->pinfo == INSN_MACRO)
8883     /* Let a macro pass, we'll catch it later when it is expanded.  */
8884     return 1;
8885
8886   if (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa))
8887     {
8888       /* Allow odd registers for single-precision ops.  */
8889       switch (insn->pinfo & (FP_S | FP_D))
8890         {
8891         case FP_S:
8892         case 0:
8893           return 1;     /* both single precision - ok */
8894         case FP_D:
8895           return 0;     /* both double precision - fail */
8896         default:
8897           break;
8898         }
8899
8900       /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand.  */
8901       s = strchr (insn->name, '.');
8902       if (argnum == 2)
8903         s = s != NULL ? strchr (s + 1, '.') : NULL;
8904       return (s != NULL && (s[1] == 'w' || s[1] == 's'));
8905     } 
8906
8907   /* Single-precision coprocessor loads and moves are OK too.  */
8908   if ((insn->pinfo & FP_S)
8909       && (insn->pinfo & (INSN_COPROC_MEMORY_DELAY | INSN_STORE_MEMORY
8910                          | INSN_LOAD_COPROC_DELAY | INSN_COPROC_MOVE_DELAY)))
8911     return 1;
8912
8913   return 0;
8914 }
8915
8916 /* This routine assembles an instruction into its binary format.  As a
8917    side effect, it sets one of the global variables imm_reloc or
8918    offset_reloc to the type of relocation to do if one of the operands
8919    is an address expression.  */
8920
8921 static void
8922 mips_ip (char *str, struct mips_cl_insn *ip)
8923 {
8924   char *s;
8925   const char *args;
8926   char c = 0;
8927   struct mips_opcode *insn;
8928   char *argsStart;
8929   unsigned int regno;
8930   unsigned int lastregno;
8931   unsigned int lastpos = 0;
8932   unsigned int limlo, limhi;
8933   char *s_reset;
8934   offsetT min_range, max_range;
8935   char *name;
8936   int argnum;
8937   unsigned int rtype;
8938   long end;
8939
8940   insn_error = NULL;
8941
8942   insn = NULL;
8943
8944   /* Try to match an instruction up to a space or to the end.  */
8945   for (end = 0; str[end] != '\0' && !ISSPACE (str[end]); end++)
8946     continue;
8947
8948   /* Make a copy of the instruction so that we can fiddle with it.  */
8949   name = alloca (end + 1);
8950   memcpy (name, str, end);
8951   name[end] = '\0';
8952
8953   insn = (struct mips_opcode *) hash_find (op_hash, name);
8954   if (insn == NULL)
8955     {
8956       insn_error = _("Unrecognized opcode");
8957       return;
8958     }
8959
8960   argsStart = s = str + end;
8961   for (;;)
8962     {
8963       bfd_boolean ok;
8964
8965       gas_assert (strcmp (insn->name, name) == 0);
8966
8967       ok = is_opcode_valid (insn);
8968       if (! ok)
8969         {
8970           if (insn + 1 < &mips_opcodes[NUMOPCODES]
8971               && strcmp (insn->name, insn[1].name) == 0)
8972             {
8973               ++insn;
8974               continue;
8975             }
8976           else
8977             {
8978               if (!insn_error)
8979                 {
8980                   static char buf[100];
8981                   sprintf (buf,
8982                            _("opcode not supported on this processor: %s (%s)"),
8983                            mips_cpu_info_from_arch (mips_opts.arch)->name,
8984                            mips_cpu_info_from_isa (mips_opts.isa)->name);
8985                   insn_error = buf;
8986                 }
8987               return;
8988             }
8989         }
8990
8991       create_insn (ip, insn);
8992       insn_error = NULL;
8993       argnum = 1;
8994       lastregno = 0xffffffff;
8995       for (args = insn->args;; ++args)
8996         {
8997           int is_mdmx;
8998
8999           s += strspn (s, " \t");
9000           is_mdmx = 0;
9001           switch (*args)
9002             {
9003             case '\0':          /* end of args */
9004               if (*s == '\0')
9005                 return;
9006               break;
9007
9008             case '2': /* DSP 2-bit unsigned immediate in bit 11.  */
9009               my_getExpression (&imm_expr, s);
9010               check_absolute_expr (ip, &imm_expr);
9011               if ((unsigned long) imm_expr.X_add_number != 1
9012                   && (unsigned long) imm_expr.X_add_number != 3)
9013                 {
9014                   as_bad (_("BALIGN immediate not 1 or 3 (%lu)"),
9015                           (unsigned long) imm_expr.X_add_number);
9016                 }
9017               INSERT_OPERAND (BP, *ip, imm_expr.X_add_number);
9018               imm_expr.X_op = O_absent;
9019               s = expr_end;
9020               continue;
9021
9022             case '3': /* DSP 3-bit unsigned immediate in bit 21.  */
9023               my_getExpression (&imm_expr, s);
9024               check_absolute_expr (ip, &imm_expr);
9025               if (imm_expr.X_add_number & ~OP_MASK_SA3)
9026                 {
9027                   as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9028                           OP_MASK_SA3, (unsigned long) imm_expr.X_add_number);
9029                 }
9030               INSERT_OPERAND (SA3, *ip, imm_expr.X_add_number);
9031               imm_expr.X_op = O_absent;
9032               s = expr_end;
9033               continue;
9034
9035             case '4': /* DSP 4-bit unsigned immediate in bit 21.  */
9036               my_getExpression (&imm_expr, s);
9037               check_absolute_expr (ip, &imm_expr);
9038               if (imm_expr.X_add_number & ~OP_MASK_SA4)
9039                 {
9040                   as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9041                           OP_MASK_SA4, (unsigned long) imm_expr.X_add_number);
9042                 }
9043               INSERT_OPERAND (SA4, *ip, imm_expr.X_add_number);
9044               imm_expr.X_op = O_absent;
9045               s = expr_end;
9046               continue;
9047
9048             case '5': /* DSP 8-bit unsigned immediate in bit 16.  */
9049               my_getExpression (&imm_expr, s);
9050               check_absolute_expr (ip, &imm_expr);
9051               if (imm_expr.X_add_number & ~OP_MASK_IMM8)
9052                 {
9053                   as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9054                           OP_MASK_IMM8, (unsigned long) imm_expr.X_add_number);
9055                 }
9056               INSERT_OPERAND (IMM8, *ip, imm_expr.X_add_number);
9057               imm_expr.X_op = O_absent;
9058               s = expr_end;
9059               continue;
9060
9061             case '6': /* DSP 5-bit unsigned immediate in bit 21.  */
9062               my_getExpression (&imm_expr, s);
9063               check_absolute_expr (ip, &imm_expr);
9064               if (imm_expr.X_add_number & ~OP_MASK_RS)
9065                 {
9066                   as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9067                           OP_MASK_RS, (unsigned long) imm_expr.X_add_number);
9068                 }
9069               INSERT_OPERAND (RS, *ip, imm_expr.X_add_number);
9070               imm_expr.X_op = O_absent;
9071               s = expr_end;
9072               continue;
9073
9074             case '7': /* Four DSP accumulators in bits 11,12.  */
9075               if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
9076                   s[3] >= '0' && s[3] <= '3')
9077                 {
9078                   regno = s[3] - '0';
9079                   s += 4;
9080                   INSERT_OPERAND (DSPACC, *ip, regno);
9081                   continue;
9082                 }
9083               else
9084                 as_bad (_("Invalid dsp acc register"));
9085               break;
9086
9087             case '8': /* DSP 6-bit unsigned immediate in bit 11.  */
9088               my_getExpression (&imm_expr, s);
9089               check_absolute_expr (ip, &imm_expr);
9090               if (imm_expr.X_add_number & ~OP_MASK_WRDSP)
9091                 {
9092                   as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9093                           OP_MASK_WRDSP,
9094                           (unsigned long) imm_expr.X_add_number);
9095                 }
9096               INSERT_OPERAND (WRDSP, *ip, imm_expr.X_add_number);
9097               imm_expr.X_op = O_absent;
9098               s = expr_end;
9099               continue;
9100
9101             case '9': /* Four DSP accumulators in bits 21,22.  */
9102               if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
9103                   s[3] >= '0' && s[3] <= '3')
9104                 {
9105                   regno = s[3] - '0';
9106                   s += 4;
9107                   INSERT_OPERAND (DSPACC_S, *ip, regno);
9108                   continue;
9109                 }
9110               else
9111                 as_bad (_("Invalid dsp acc register"));
9112               break;
9113
9114             case '0': /* DSP 6-bit signed immediate in bit 20.  */
9115               my_getExpression (&imm_expr, s);
9116               check_absolute_expr (ip, &imm_expr);
9117               min_range = -((OP_MASK_DSPSFT + 1) >> 1);
9118               max_range = ((OP_MASK_DSPSFT + 1) >> 1) - 1;
9119               if (imm_expr.X_add_number < min_range ||
9120                   imm_expr.X_add_number > max_range)
9121                 {
9122                   as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
9123                           (long) min_range, (long) max_range,
9124                           (long) imm_expr.X_add_number);
9125                 }
9126               INSERT_OPERAND (DSPSFT, *ip, imm_expr.X_add_number);
9127               imm_expr.X_op = O_absent;
9128               s = expr_end;
9129               continue;
9130
9131             case '\'': /* DSP 6-bit unsigned immediate in bit 16.  */
9132               my_getExpression (&imm_expr, s);
9133               check_absolute_expr (ip, &imm_expr);
9134               if (imm_expr.X_add_number & ~OP_MASK_RDDSP)
9135                 {
9136                   as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9137                           OP_MASK_RDDSP,
9138                           (unsigned long) imm_expr.X_add_number);
9139                 }
9140               INSERT_OPERAND (RDDSP, *ip, imm_expr.X_add_number);
9141               imm_expr.X_op = O_absent;
9142               s = expr_end;
9143               continue;
9144
9145             case ':': /* DSP 7-bit signed immediate in bit 19.  */
9146               my_getExpression (&imm_expr, s);
9147               check_absolute_expr (ip, &imm_expr);
9148               min_range = -((OP_MASK_DSPSFT_7 + 1) >> 1);
9149               max_range = ((OP_MASK_DSPSFT_7 + 1) >> 1) - 1;
9150               if (imm_expr.X_add_number < min_range ||
9151                   imm_expr.X_add_number > max_range)
9152                 {
9153                   as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
9154                           (long) min_range, (long) max_range,
9155                           (long) imm_expr.X_add_number);
9156                 }
9157               INSERT_OPERAND (DSPSFT_7, *ip, imm_expr.X_add_number);
9158               imm_expr.X_op = O_absent;
9159               s = expr_end;
9160               continue;
9161
9162             case '@': /* DSP 10-bit signed immediate in bit 16.  */
9163               my_getExpression (&imm_expr, s);
9164               check_absolute_expr (ip, &imm_expr);
9165               min_range = -((OP_MASK_IMM10 + 1) >> 1);
9166               max_range = ((OP_MASK_IMM10 + 1) >> 1) - 1;
9167               if (imm_expr.X_add_number < min_range ||
9168                   imm_expr.X_add_number > max_range)
9169                 {
9170                   as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
9171                           (long) min_range, (long) max_range,
9172                           (long) imm_expr.X_add_number);
9173                 }
9174               INSERT_OPERAND (IMM10, *ip, imm_expr.X_add_number);
9175               imm_expr.X_op = O_absent;
9176               s = expr_end;
9177               continue;
9178
9179             case '!': /* MT usermode flag bit.  */
9180               my_getExpression (&imm_expr, s);
9181               check_absolute_expr (ip, &imm_expr);
9182               if (imm_expr.X_add_number & ~OP_MASK_MT_U)
9183                 as_bad (_("MT usermode bit not 0 or 1 (%lu)"),
9184                         (unsigned long) imm_expr.X_add_number);
9185               INSERT_OPERAND (MT_U, *ip, imm_expr.X_add_number);
9186               imm_expr.X_op = O_absent;
9187               s = expr_end;
9188               continue;
9189
9190             case '$': /* MT load high flag bit.  */
9191               my_getExpression (&imm_expr, s);
9192               check_absolute_expr (ip, &imm_expr);
9193               if (imm_expr.X_add_number & ~OP_MASK_MT_H)
9194                 as_bad (_("MT load high bit not 0 or 1 (%lu)"),
9195                         (unsigned long) imm_expr.X_add_number);
9196               INSERT_OPERAND (MT_H, *ip, imm_expr.X_add_number);
9197               imm_expr.X_op = O_absent;
9198               s = expr_end;
9199               continue;
9200
9201             case '*': /* Four DSP accumulators in bits 18,19.  */
9202               if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
9203                   s[3] >= '0' && s[3] <= '3')
9204                 {
9205                   regno = s[3] - '0';
9206                   s += 4;
9207                   INSERT_OPERAND (MTACC_T, *ip, regno);
9208                   continue;
9209                 }
9210               else
9211                 as_bad (_("Invalid dsp/smartmips acc register"));
9212               break;
9213
9214             case '&': /* Four DSP accumulators in bits 13,14.  */
9215               if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
9216                   s[3] >= '0' && s[3] <= '3')
9217                 {
9218                   regno = s[3] - '0';
9219                   s += 4;
9220                   INSERT_OPERAND (MTACC_D, *ip, regno);
9221                   continue;
9222                 }
9223               else
9224                 as_bad (_("Invalid dsp/smartmips acc register"));
9225               break;
9226
9227             case ',':
9228               ++argnum;
9229               if (*s++ == *args)
9230                 continue;
9231               s--;
9232               switch (*++args)
9233                 {
9234                 case 'r':
9235                 case 'v':
9236                   INSERT_OPERAND (RS, *ip, lastregno);
9237                   continue;
9238
9239                 case 'w':
9240                   INSERT_OPERAND (RT, *ip, lastregno);
9241                   continue;
9242
9243                 case 'W':
9244                   INSERT_OPERAND (FT, *ip, lastregno);
9245                   continue;
9246
9247                 case 'V':
9248                   INSERT_OPERAND (FS, *ip, lastregno);
9249                   continue;
9250                 }
9251               break;
9252
9253             case '(':
9254               /* Handle optional base register.
9255                  Either the base register is omitted or
9256                  we must have a left paren.  */
9257               /* This is dependent on the next operand specifier
9258                  is a base register specification.  */
9259               gas_assert (args[1] == 'b');
9260               if (*s == '\0')
9261                 return;
9262
9263             case ')':           /* These must match exactly.  */
9264             case '[':
9265             case ']':
9266               if (*s++ == *args)
9267                 continue;
9268               break;
9269
9270             case '+':           /* Opcode extension character.  */
9271               switch (*++args)
9272                 {
9273                 case '1':       /* UDI immediates.  */
9274                 case '2':
9275                 case '3':
9276                 case '4':
9277                   {
9278                     const struct mips_immed *imm = mips_immed;
9279
9280                     while (imm->type && imm->type != *args)
9281                       ++imm;
9282                     if (! imm->type)
9283                       internalError ();
9284                     my_getExpression (&imm_expr, s);
9285                     check_absolute_expr (ip, &imm_expr);
9286                     if ((unsigned long) imm_expr.X_add_number & ~imm->mask)
9287                       {
9288                         as_warn (_("Illegal %s number (%lu, 0x%lx)"),
9289                                  imm->desc ? imm->desc : ip->insn_mo->name,
9290                                  (unsigned long) imm_expr.X_add_number,
9291                                  (unsigned long) imm_expr.X_add_number);
9292                         imm_expr.X_add_number &= imm->mask;
9293                       }
9294                     ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number
9295                                         << imm->shift);
9296                     imm_expr.X_op = O_absent;
9297                     s = expr_end;
9298                   }
9299                   continue;
9300
9301                 case 'A':               /* ins/ext position, becomes LSB.  */
9302                   limlo = 0;
9303                   limhi = 31;
9304                   goto do_lsb;
9305                 case 'E':
9306                   limlo = 32;
9307                   limhi = 63;
9308                   goto do_lsb;
9309                 do_lsb:
9310                   my_getExpression (&imm_expr, s);
9311                   check_absolute_expr (ip, &imm_expr);
9312                   if ((unsigned long) imm_expr.X_add_number < limlo
9313                       || (unsigned long) imm_expr.X_add_number > limhi)
9314                     {
9315                       as_bad (_("Improper position (%lu)"),
9316                               (unsigned long) imm_expr.X_add_number);
9317                       imm_expr.X_add_number = limlo;
9318                     }
9319                   lastpos = imm_expr.X_add_number;
9320                   INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
9321                   imm_expr.X_op = O_absent;
9322                   s = expr_end;
9323                   continue;
9324
9325                 case 'B':               /* ins size, becomes MSB.  */
9326                   limlo = 1;
9327                   limhi = 32;
9328                   goto do_msb;
9329                 case 'F':
9330                   limlo = 33;
9331                   limhi = 64;
9332                   goto do_msb;
9333                 do_msb:
9334                   my_getExpression (&imm_expr, s);
9335                   check_absolute_expr (ip, &imm_expr);
9336                   /* Check for negative input so that small negative numbers
9337                      will not succeed incorrectly.  The checks against
9338                      (pos+size) transitively check "size" itself,
9339                      assuming that "pos" is reasonable.  */
9340                   if ((long) imm_expr.X_add_number < 0
9341                       || ((unsigned long) imm_expr.X_add_number
9342                           + lastpos) < limlo
9343                       || ((unsigned long) imm_expr.X_add_number
9344                           + lastpos) > limhi)
9345                     {
9346                       as_bad (_("Improper insert size (%lu, position %lu)"),
9347                               (unsigned long) imm_expr.X_add_number,
9348                               (unsigned long) lastpos);
9349                       imm_expr.X_add_number = limlo - lastpos;
9350                     }
9351                   INSERT_OPERAND (INSMSB, *ip,
9352                                  lastpos + imm_expr.X_add_number - 1);
9353                   imm_expr.X_op = O_absent;
9354                   s = expr_end;
9355                   continue;
9356
9357                 case 'C':               /* ext size, becomes MSBD.  */
9358                   limlo = 1;
9359                   limhi = 32;
9360                   goto do_msbd;
9361                 case 'G':
9362                   limlo = 33;
9363                   limhi = 64;
9364                   goto do_msbd;
9365                 case 'H':
9366                   limlo = 33;
9367                   limhi = 64;
9368                   goto do_msbd;
9369                 do_msbd:
9370                   my_getExpression (&imm_expr, s);
9371                   check_absolute_expr (ip, &imm_expr);
9372                   /* Check for negative input so that small negative numbers
9373                      will not succeed incorrectly.  The checks against
9374                      (pos+size) transitively check "size" itself,
9375                      assuming that "pos" is reasonable.  */
9376                   if ((long) imm_expr.X_add_number < 0
9377                       || ((unsigned long) imm_expr.X_add_number
9378                           + lastpos) < limlo
9379                       || ((unsigned long) imm_expr.X_add_number
9380                           + lastpos) > limhi)
9381                     {
9382                       as_bad (_("Improper extract size (%lu, position %lu)"),
9383                               (unsigned long) imm_expr.X_add_number,
9384                               (unsigned long) lastpos);
9385                       imm_expr.X_add_number = limlo - lastpos;
9386                     }
9387                   INSERT_OPERAND (EXTMSBD, *ip, imm_expr.X_add_number - 1);
9388                   imm_expr.X_op = O_absent;
9389                   s = expr_end;
9390                   continue;
9391
9392                 case 'D':
9393                   /* +D is for disassembly only; never match.  */
9394                   break;
9395
9396                 case 'I':
9397                   /* "+I" is like "I", except that imm2_expr is used.  */
9398                   my_getExpression (&imm2_expr, s);
9399                   if (imm2_expr.X_op != O_big
9400                       && imm2_expr.X_op != O_constant)
9401                   insn_error = _("absolute expression required");
9402                   if (HAVE_32BIT_GPRS)
9403                     normalize_constant_expr (&imm2_expr);
9404                   s = expr_end;
9405                   continue;
9406
9407                 case 'T': /* Coprocessor register.  */
9408                   /* +T is for disassembly only; never match.  */
9409                   break;
9410
9411                 case 't': /* Coprocessor register number.  */
9412                   if (s[0] == '$' && ISDIGIT (s[1]))
9413                     {
9414                       ++s;
9415                       regno = 0;
9416                       do
9417                         {
9418                           regno *= 10;
9419                           regno += *s - '0';
9420                           ++s;
9421                         }
9422                       while (ISDIGIT (*s));
9423                       if (regno > 31)
9424                         as_bad (_("Invalid register number (%d)"), regno);
9425                       else
9426                         {
9427                           INSERT_OPERAND (RT, *ip, regno);
9428                           continue;
9429                         }
9430                     }
9431                   else
9432                     as_bad (_("Invalid coprocessor 0 register number"));
9433                   break;
9434
9435                 case 'x':
9436                   /* bbit[01] and bbit[01]32 bit index.  Give error if index
9437                      is not in the valid range.  */
9438                   my_getExpression (&imm_expr, s);
9439                   check_absolute_expr (ip, &imm_expr);
9440                   if ((unsigned) imm_expr.X_add_number > 31)
9441                     {
9442                       as_bad (_("Improper bit index (%lu)"),
9443                               (unsigned long) imm_expr.X_add_number);
9444                       imm_expr.X_add_number = 0;
9445                     }
9446                   INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number);
9447                   imm_expr.X_op = O_absent;
9448                   s = expr_end;
9449                   continue;
9450
9451                 case 'X':
9452                   /* bbit[01] bit index when bbit is used but we generate
9453                      bbit[01]32 because the index is over 32.  Move to the
9454                      next candidate if index is not in the valid range.  */
9455                   my_getExpression (&imm_expr, s);
9456                   check_absolute_expr (ip, &imm_expr);
9457                   if ((unsigned) imm_expr.X_add_number < 32
9458                       || (unsigned) imm_expr.X_add_number > 63)
9459                     break;
9460                   INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number - 32);
9461                   imm_expr.X_op = O_absent;
9462                   s = expr_end;
9463                   continue;
9464
9465                 case 'p':
9466                   /* cins, cins32, exts and exts32 position field.  Give error
9467                      if it's not in the valid range.  */
9468                   my_getExpression (&imm_expr, s);
9469                   check_absolute_expr (ip, &imm_expr);
9470                   if ((unsigned) imm_expr.X_add_number > 31)
9471                     {
9472                       as_bad (_("Improper position (%lu)"),
9473                               (unsigned long) imm_expr.X_add_number);
9474                       imm_expr.X_add_number = 0;
9475                     }
9476                   /* Make the pos explicit to simplify +S.  */
9477                   lastpos = imm_expr.X_add_number + 32;
9478                   INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number);
9479                   imm_expr.X_op = O_absent;
9480                   s = expr_end;
9481                   continue;
9482
9483                 case 'P':
9484                   /* cins, cins32, exts and exts32 position field.  Move to
9485                      the next candidate if it's not in the valid range.  */
9486                   my_getExpression (&imm_expr, s);
9487                   check_absolute_expr (ip, &imm_expr);
9488                   if ((unsigned) imm_expr.X_add_number < 32
9489                       || (unsigned) imm_expr.X_add_number > 63)
9490                     break;
9491                   lastpos = imm_expr.X_add_number;
9492                   INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number - 32);
9493                   imm_expr.X_op = O_absent;
9494                   s = expr_end;
9495                   continue;
9496
9497                 case 's':
9498                   /* cins and exts length-minus-one field.  */
9499                   my_getExpression (&imm_expr, s);
9500                   check_absolute_expr (ip, &imm_expr);
9501                   if ((unsigned long) imm_expr.X_add_number > 31)
9502                     {
9503                       as_bad (_("Improper size (%lu)"),
9504                               (unsigned long) imm_expr.X_add_number);
9505                       imm_expr.X_add_number = 0;
9506                     }
9507                   INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number);
9508                   imm_expr.X_op = O_absent;
9509                   s = expr_end;
9510                   continue;
9511
9512                 case 'S':
9513                   /* cins32/exts32 and cins/exts aliasing cint32/exts32
9514                      length-minus-one field.  */
9515                   my_getExpression (&imm_expr, s);
9516                   check_absolute_expr (ip, &imm_expr);
9517                   if ((long) imm_expr.X_add_number < 0
9518                       || (unsigned long) imm_expr.X_add_number + lastpos > 63)
9519                     {
9520                       as_bad (_("Improper size (%lu)"),
9521                               (unsigned long) imm_expr.X_add_number);
9522                       imm_expr.X_add_number = 0;
9523                     }
9524                   INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number);
9525                   imm_expr.X_op = O_absent;
9526                   s = expr_end;
9527                   continue;
9528
9529                 case 'Q':
9530                   /* seqi/snei immediate field.  */
9531                   my_getExpression (&imm_expr, s);
9532                   check_absolute_expr (ip, &imm_expr);
9533                   if ((long) imm_expr.X_add_number < -512
9534                       || (long) imm_expr.X_add_number >= 512)
9535                     {
9536                       as_bad (_("Improper immediate (%ld)"),
9537                                (long) imm_expr.X_add_number);
9538                       imm_expr.X_add_number = 0;
9539                     }
9540                   INSERT_OPERAND (SEQI, *ip, imm_expr.X_add_number);
9541                   imm_expr.X_op = O_absent;
9542                   s = expr_end;
9543                   continue;
9544
9545                 case 'a': /* 8-bit signed offset in bit 6 */
9546                   my_getExpression (&imm_expr, s);
9547                   check_absolute_expr (ip, &imm_expr);
9548                   min_range = -((OP_MASK_OFFSET_A + 1) >> 1);
9549                   max_range = ((OP_MASK_OFFSET_A + 1) >> 1) - 1;
9550                   if (imm_expr.X_add_number < min_range
9551                       || imm_expr.X_add_number > max_range)
9552                     {
9553                       as_bad (_("Offset not in range %ld..%ld (%ld)"),
9554                               (long) min_range, (long) max_range,
9555                               (long) imm_expr.X_add_number);
9556                     }
9557                   INSERT_OPERAND (OFFSET_A, *ip, imm_expr.X_add_number);
9558                   imm_expr.X_op = O_absent;
9559                   s = expr_end;
9560                   continue;
9561
9562                 case 'b': /* 8-bit signed offset in bit 3 */
9563                   my_getExpression (&imm_expr, s);
9564                   check_absolute_expr (ip, &imm_expr);
9565                   min_range = -((OP_MASK_OFFSET_B + 1) >> 1);
9566                   max_range = ((OP_MASK_OFFSET_B + 1) >> 1) - 1;
9567                   if (imm_expr.X_add_number < min_range
9568                       || imm_expr.X_add_number > max_range)
9569                     {
9570                       as_bad (_("Offset not in range %ld..%ld (%ld)"),
9571                               (long) min_range, (long) max_range,
9572                               (long) imm_expr.X_add_number);
9573                     }
9574                   INSERT_OPERAND (OFFSET_B, *ip, imm_expr.X_add_number);
9575                   imm_expr.X_op = O_absent;
9576                   s = expr_end;
9577                   continue;
9578
9579                 case 'c': /* 9-bit signed offset in bit 6 */
9580                   my_getExpression (&imm_expr, s);
9581                   check_absolute_expr (ip, &imm_expr);
9582                   min_range = -((OP_MASK_OFFSET_C + 1) >> 1);
9583                   max_range = ((OP_MASK_OFFSET_C + 1) >> 1) - 1;
9584                   /* We check the offset range before adjusted.  */
9585                   min_range <<= 4;
9586                   max_range <<= 4;
9587                   if (imm_expr.X_add_number < min_range
9588                       || imm_expr.X_add_number > max_range)
9589                     {
9590                       as_bad (_("Offset not in range %ld..%ld (%ld)"),
9591                               (long) min_range, (long) max_range,
9592                               (long) imm_expr.X_add_number);
9593                     }
9594                   if (imm_expr.X_add_number & 0xf)
9595                     {
9596                       as_bad (_("Offset not 16 bytes alignment (%ld)"),
9597                               (long) imm_expr.X_add_number);
9598                     }
9599                   /* Right shift 4 bits to adjust the offset operand.  */
9600                   INSERT_OPERAND (OFFSET_C, *ip, imm_expr.X_add_number >> 4);
9601                   imm_expr.X_op = O_absent;
9602                   s = expr_end;
9603                   continue;
9604
9605                 case 'z':
9606                   if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
9607                     break;
9608                   if (regno == AT && mips_opts.at)
9609                     {
9610                       if (mips_opts.at == ATREG)
9611                         as_warn (_("used $at without \".set noat\""));
9612                       else
9613                         as_warn (_("used $%u with \".set at=$%u\""),
9614                                  regno, mips_opts.at);
9615                     }
9616                   INSERT_OPERAND (RZ, *ip, regno);
9617                   continue;
9618
9619                 case 'Z':
9620                   if (!reg_lookup (&s, RTYPE_FPU, &regno))
9621                     break;
9622                   INSERT_OPERAND (FZ, *ip, regno);
9623                   continue;
9624
9625                 default:
9626                   as_bad (_("Internal error: bad mips opcode "
9627                             "(unknown extension operand type `+%c'): %s %s"),
9628                           *args, insn->name, insn->args);
9629                   /* Further processing is fruitless.  */
9630                   return;
9631                 }
9632               break;
9633
9634             case '<':           /* must be at least one digit */
9635               /*
9636                * According to the manual, if the shift amount is greater
9637                * than 31 or less than 0, then the shift amount should be
9638                * mod 32.  In reality the mips assembler issues an error.
9639                * We issue a warning and mask out all but the low 5 bits.
9640                */
9641               my_getExpression (&imm_expr, s);
9642               check_absolute_expr (ip, &imm_expr);
9643               if ((unsigned long) imm_expr.X_add_number > 31)
9644                 as_warn (_("Improper shift amount (%lu)"),
9645                          (unsigned long) imm_expr.X_add_number);
9646               INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
9647               imm_expr.X_op = O_absent;
9648               s = expr_end;
9649               continue;
9650
9651             case '>':           /* shift amount minus 32 */
9652               my_getExpression (&imm_expr, s);
9653               check_absolute_expr (ip, &imm_expr);
9654               if ((unsigned long) imm_expr.X_add_number < 32
9655                   || (unsigned long) imm_expr.X_add_number > 63)
9656                 break;
9657               INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number - 32);
9658               imm_expr.X_op = O_absent;
9659               s = expr_end;
9660               continue;
9661
9662             case 'k':           /* CACHE code.  */
9663             case 'h':           /* PREFX code.  */
9664             case '1':           /* SYNC type.  */
9665               my_getExpression (&imm_expr, s);
9666               check_absolute_expr (ip, &imm_expr);
9667               if ((unsigned long) imm_expr.X_add_number > 31)
9668                 as_warn (_("Invalid value for `%s' (%lu)"),
9669                          ip->insn_mo->name,
9670                          (unsigned long) imm_expr.X_add_number);
9671               if (*args == 'k')
9672                 {
9673                   if (mips_fix_cn63xxp1 && strcmp ("pref", insn->name) == 0)
9674                     switch (imm_expr.X_add_number)
9675                       {
9676                       case 5:
9677                       case 25:
9678                       case 26:
9679                       case 27:
9680                       case 28:
9681                       case 29:
9682                       case 30:
9683                       case 31:  /* These are ok.  */
9684                         break;
9685
9686                       default:  /* The rest must be changed to 28.  */
9687                         imm_expr.X_add_number = 28;
9688                         break;
9689                       }
9690                   INSERT_OPERAND (CACHE, *ip, imm_expr.X_add_number);
9691                 }
9692               else if (*args == 'h')
9693                 INSERT_OPERAND (PREFX, *ip, imm_expr.X_add_number);
9694               else
9695                 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
9696               imm_expr.X_op = O_absent;
9697               s = expr_end;
9698               continue;
9699
9700             case 'c':           /* BREAK code.  */
9701               my_getExpression (&imm_expr, s);
9702               check_absolute_expr (ip, &imm_expr);
9703               if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE)
9704                 as_warn (_("Code for %s not in range 0..1023 (%lu)"),
9705                          ip->insn_mo->name,
9706                          (unsigned long) imm_expr.X_add_number);
9707               INSERT_OPERAND (CODE, *ip, imm_expr.X_add_number);
9708               imm_expr.X_op = O_absent;
9709               s = expr_end;
9710               continue;
9711
9712             case 'q':           /* Lower BREAK code.  */
9713               my_getExpression (&imm_expr, s);
9714               check_absolute_expr (ip, &imm_expr);
9715               if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE2)
9716                 as_warn (_("Lower code for %s not in range 0..1023 (%lu)"),
9717                          ip->insn_mo->name,
9718                          (unsigned long) imm_expr.X_add_number);
9719               INSERT_OPERAND (CODE2, *ip, imm_expr.X_add_number);
9720               imm_expr.X_op = O_absent;
9721               s = expr_end;
9722               continue;
9723
9724             case 'B':           /* 20-bit SYSCALL/BREAK code.  */
9725               my_getExpression (&imm_expr, s);
9726               check_absolute_expr (ip, &imm_expr);
9727               if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20)
9728                 as_warn (_("Code for %s not in range 0..1048575 (%lu)"),
9729                          ip->insn_mo->name,
9730                          (unsigned long) imm_expr.X_add_number);
9731               INSERT_OPERAND (CODE20, *ip, imm_expr.X_add_number);
9732               imm_expr.X_op = O_absent;
9733               s = expr_end;
9734               continue;
9735
9736             case 'C':           /* Coprocessor code.  */
9737               my_getExpression (&imm_expr, s);
9738               check_absolute_expr (ip, &imm_expr);
9739               if ((unsigned long) imm_expr.X_add_number > OP_MASK_COPZ)
9740                 {
9741                   as_warn (_("Coproccesor code > 25 bits (%lu)"),
9742                            (unsigned long) imm_expr.X_add_number);
9743                   imm_expr.X_add_number &= OP_MASK_COPZ;
9744                 }
9745               INSERT_OPERAND (COPZ, *ip, imm_expr.X_add_number);
9746               imm_expr.X_op = O_absent;
9747               s = expr_end;
9748               continue;
9749
9750             case 'J':           /* 19-bit WAIT code.  */
9751               my_getExpression (&imm_expr, s);
9752               check_absolute_expr (ip, &imm_expr);
9753               if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
9754                 {
9755                   as_warn (_("Illegal 19-bit code (%lu)"),
9756                            (unsigned long) imm_expr.X_add_number);
9757                   imm_expr.X_add_number &= OP_MASK_CODE19;
9758                 }
9759               INSERT_OPERAND (CODE19, *ip, imm_expr.X_add_number);
9760               imm_expr.X_op = O_absent;
9761               s = expr_end;
9762               continue;
9763
9764             case 'P':           /* Performance register.  */
9765               my_getExpression (&imm_expr, s);
9766               check_absolute_expr (ip, &imm_expr);
9767               if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
9768                 as_warn (_("Invalid performance register (%lu)"),
9769                          (unsigned long) imm_expr.X_add_number);
9770               INSERT_OPERAND (PERFREG, *ip, imm_expr.X_add_number);
9771               imm_expr.X_op = O_absent;
9772               s = expr_end;
9773               continue;
9774
9775             case 'G':           /* Coprocessor destination register.  */
9776               if (((ip->insn_opcode >> OP_SH_OP) & OP_MASK_OP) == OP_OP_COP0)
9777                 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_CP0, &regno);
9778               else
9779                 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
9780               INSERT_OPERAND (RD, *ip, regno);
9781               if (ok) 
9782                 {
9783                   lastregno = regno;
9784                   continue;
9785                 }
9786               else
9787                 break;
9788
9789             case 'b':           /* Base register.  */
9790             case 'd':           /* Destination register.  */
9791             case 's':           /* Source register.  */
9792             case 't':           /* Target register.  */
9793             case 'r':           /* Both target and source.  */
9794             case 'v':           /* Both dest and source.  */
9795             case 'w':           /* Both dest and target.  */
9796             case 'E':           /* Coprocessor target register.  */
9797             case 'K':           /* RDHWR destination register.  */
9798             case 'x':           /* Ignore register name.  */
9799             case 'z':           /* Must be zero register.  */
9800             case 'U':           /* Destination register (CLO/CLZ).  */
9801             case 'g':           /* Coprocessor destination register.  */
9802               s_reset = s;
9803               if (*args == 'E' || *args == 'K')
9804                 ok = reg_lookup (&s, RTYPE_NUM, &regno);
9805               else
9806                 {
9807                   ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
9808                   if (regno == AT && mips_opts.at)
9809                     {
9810                       if (mips_opts.at == ATREG)
9811                         as_warn (_("Used $at without \".set noat\""));
9812                       else
9813                         as_warn (_("Used $%u with \".set at=$%u\""),
9814                                  regno, mips_opts.at);
9815                     }
9816                 }
9817               if (ok)
9818                 {
9819                   c = *args;
9820                   if (*s == ' ')
9821                     ++s;
9822                   if (args[1] != *s)
9823                     {
9824                       if (c == 'r' || c == 'v' || c == 'w')
9825                         {
9826                           regno = lastregno;
9827                           s = s_reset;
9828                           ++args;
9829                         }
9830                     }
9831                   /* 'z' only matches $0.  */
9832                   if (c == 'z' && regno != 0)
9833                     break;
9834
9835                   if (c == 's' && !strncmp (ip->insn_mo->name, "jalr", 4))
9836                     {
9837                       if (regno == lastregno)
9838                         {
9839                           insn_error
9840                             = _("Source and destination must be different");
9841                           continue;
9842                         }
9843                       if (regno == 31 && lastregno == 0xffffffff)
9844                         {
9845                           insn_error
9846                             = _("A destination register must be supplied");
9847                           continue;
9848                         }
9849                     }
9850                   /* Now that we have assembled one operand, we use the args
9851                      string to figure out where it goes in the instruction.  */
9852                   switch (c)
9853                     {
9854                     case 'r':
9855                     case 's':
9856                     case 'v':
9857                     case 'b':
9858                       INSERT_OPERAND (RS, *ip, regno);
9859                       break;
9860                     case 'd':
9861                     case 'K':
9862                     case 'g':
9863                       INSERT_OPERAND (RD, *ip, regno);
9864                       break;
9865                     case 'U':
9866                       INSERT_OPERAND (RD, *ip, regno);
9867                       INSERT_OPERAND (RT, *ip, regno);
9868                       break;
9869                     case 'w':
9870                     case 't':
9871                     case 'E':
9872                       INSERT_OPERAND (RT, *ip, regno);
9873                       break;
9874                     case 'x':
9875                       /* This case exists because on the r3000 trunc
9876                          expands into a macro which requires a gp
9877                          register.  On the r6000 or r4000 it is
9878                          assembled into a single instruction which
9879                          ignores the register.  Thus the insn version
9880                          is MIPS_ISA2 and uses 'x', and the macro
9881                          version is MIPS_ISA1 and uses 't'.  */
9882                       break;
9883                     case 'z':
9884                       /* This case is for the div instruction, which
9885                          acts differently if the destination argument
9886                          is $0.  This only matches $0, and is checked
9887                          outside the switch.  */
9888                       break;
9889                     }
9890                   lastregno = regno;
9891                   continue;
9892                 }
9893               switch (*args++)
9894                 {
9895                 case 'r':
9896                 case 'v':
9897                   INSERT_OPERAND (RS, *ip, lastregno);
9898                   continue;
9899                 case 'w':
9900                   INSERT_OPERAND (RT, *ip, lastregno);
9901                   continue;
9902                 }
9903               break;
9904
9905             case 'O':           /* MDMX alignment immediate constant.  */
9906               my_getExpression (&imm_expr, s);
9907               check_absolute_expr (ip, &imm_expr);
9908               if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
9909                 as_warn (_("Improper align amount (%ld), using low bits"),
9910                          (long) imm_expr.X_add_number);
9911               INSERT_OPERAND (ALN, *ip, imm_expr.X_add_number);
9912               imm_expr.X_op = O_absent;
9913               s = expr_end;
9914               continue;
9915
9916             case 'Q':           /* MDMX vector, element sel, or const.  */
9917               if (s[0] != '$')
9918                 {
9919                   /* MDMX Immediate.  */
9920                   my_getExpression (&imm_expr, s);
9921                   check_absolute_expr (ip, &imm_expr);
9922                   if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
9923                     as_warn (_("Invalid MDMX Immediate (%ld)"),
9924                              (long) imm_expr.X_add_number);
9925                   INSERT_OPERAND (FT, *ip, imm_expr.X_add_number);
9926                   if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
9927                     ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
9928                   else
9929                     ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
9930                   imm_expr.X_op = O_absent;
9931                   s = expr_end;
9932                   continue;
9933                 }
9934               /* Not MDMX Immediate.  Fall through.  */
9935             case 'X':           /* MDMX destination register.  */
9936             case 'Y':           /* MDMX source register.  */
9937             case 'Z':           /* MDMX target register.  */
9938               is_mdmx = 1;
9939             case 'D':           /* Floating point destination register.  */
9940             case 'S':           /* Floating point source register.  */
9941             case 'T':           /* Floating point target register.  */
9942             case 'R':           /* Floating point source register.  */
9943             case 'V':
9944             case 'W':
9945               rtype = RTYPE_FPU;
9946               if (is_mdmx
9947                   || (mips_opts.ase_mdmx
9948                       && (ip->insn_mo->pinfo & FP_D)
9949                       && (ip->insn_mo->pinfo & (INSN_COPROC_MOVE_DELAY
9950                                                 | INSN_COPROC_MEMORY_DELAY
9951                                                 | INSN_LOAD_COPROC_DELAY
9952                                                 | INSN_LOAD_MEMORY_DELAY
9953                                                 | INSN_STORE_MEMORY))))
9954                 rtype |= RTYPE_VEC;
9955               s_reset = s;
9956               if (reg_lookup (&s, rtype, &regno))
9957                 {
9958                   if ((regno & 1) != 0
9959                       && HAVE_32BIT_FPRS
9960                       && !mips_oddfpreg_ok (ip->insn_mo, argnum))
9961                     as_warn (_("Float register should be even, was %d"),
9962                              regno);
9963
9964                   c = *args;
9965                   if (*s == ' ')
9966                     ++s;
9967                   if (args[1] != *s)
9968                     {
9969                       if (c == 'V' || c == 'W')
9970                         {
9971                           regno = lastregno;
9972                           s = s_reset;
9973                           ++args;
9974                         }
9975                     }
9976                   switch (c)
9977                     {
9978                     case 'D':
9979                     case 'X':
9980                       INSERT_OPERAND (FD, *ip, regno);
9981                       break;
9982                     case 'V':
9983                     case 'S':
9984                     case 'Y':
9985                       INSERT_OPERAND (FS, *ip, regno);
9986                       break;
9987                     case 'Q':
9988                       /* This is like 'Z', but also needs to fix the MDMX
9989                          vector/scalar select bits.  Note that the
9990                          scalar immediate case is handled above.  */
9991                       if (*s == '[')
9992                         {
9993                           int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
9994                           int max_el = (is_qh ? 3 : 7);
9995                           s++;
9996                           my_getExpression(&imm_expr, s);
9997                           check_absolute_expr (ip, &imm_expr);
9998                           s = expr_end;
9999                           if (imm_expr.X_add_number > max_el)
10000                             as_bad (_("Bad element selector %ld"),
10001                                     (long) imm_expr.X_add_number);
10002                           imm_expr.X_add_number &= max_el;
10003                           ip->insn_opcode |= (imm_expr.X_add_number
10004                                               << (OP_SH_VSEL +
10005                                                   (is_qh ? 2 : 1)));
10006                           imm_expr.X_op = O_absent;
10007                           if (*s != ']')
10008                             as_warn (_("Expecting ']' found '%s'"), s);
10009                           else
10010                             s++;
10011                         }
10012                       else
10013                         {
10014                           if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
10015                             ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
10016                                                 << OP_SH_VSEL);
10017                           else
10018                             ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
10019                                                 OP_SH_VSEL);
10020                         }
10021                       /* Fall through.  */
10022                     case 'W':
10023                     case 'T':
10024                     case 'Z':
10025                       INSERT_OPERAND (FT, *ip, regno);
10026                       break;
10027                     case 'R':
10028                       INSERT_OPERAND (FR, *ip, regno);
10029                       break;
10030                     }
10031                   lastregno = regno;
10032                   continue;
10033                 }
10034
10035               switch (*args++)
10036                 {
10037                 case 'V':
10038                   INSERT_OPERAND (FS, *ip, lastregno);
10039                   continue;
10040                 case 'W':
10041                   INSERT_OPERAND (FT, *ip, lastregno);
10042                   continue;
10043                 }
10044               break;
10045
10046             case 'I':
10047               my_getExpression (&imm_expr, s);
10048               if (imm_expr.X_op != O_big
10049                   && imm_expr.X_op != O_constant)
10050                 insn_error = _("absolute expression required");
10051               if (HAVE_32BIT_GPRS)
10052                 normalize_constant_expr (&imm_expr);
10053               s = expr_end;
10054               continue;
10055
10056             case 'A':
10057               my_getExpression (&offset_expr, s);
10058               normalize_address_expr (&offset_expr);
10059               *imm_reloc = BFD_RELOC_32;
10060               s = expr_end;
10061               continue;
10062
10063             case 'F':
10064             case 'L':
10065             case 'f':
10066             case 'l':
10067               {
10068                 int f64;
10069                 int using_gprs;
10070                 char *save_in;
10071                 char *err;
10072                 unsigned char temp[8];
10073                 int len;
10074                 unsigned int length;
10075                 segT seg;
10076                 subsegT subseg;
10077                 char *p;
10078
10079                 /* These only appear as the last operand in an
10080                    instruction, and every instruction that accepts
10081                    them in any variant accepts them in all variants.
10082                    This means we don't have to worry about backing out
10083                    any changes if the instruction does not match.
10084
10085                    The difference between them is the size of the
10086                    floating point constant and where it goes.  For 'F'
10087                    and 'L' the constant is 64 bits; for 'f' and 'l' it
10088                    is 32 bits.  Where the constant is placed is based
10089                    on how the MIPS assembler does things:
10090                     F -- .rdata
10091                     L -- .lit8
10092                     f -- immediate value
10093                     l -- .lit4
10094
10095                     The .lit4 and .lit8 sections are only used if
10096                     permitted by the -G argument.
10097
10098                     The code below needs to know whether the target register
10099                     is 32 or 64 bits wide.  It relies on the fact 'f' and
10100                     'F' are used with GPR-based instructions and 'l' and
10101                     'L' are used with FPR-based instructions.  */
10102
10103                 f64 = *args == 'F' || *args == 'L';
10104                 using_gprs = *args == 'F' || *args == 'f';
10105
10106                 save_in = input_line_pointer;
10107                 input_line_pointer = s;
10108                 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
10109                 length = len;
10110                 s = input_line_pointer;
10111                 input_line_pointer = save_in;
10112                 if (err != NULL && *err != '\0')
10113                   {
10114                     as_bad (_("Bad floating point constant: %s"), err);
10115                     memset (temp, '\0', sizeof temp);
10116                     length = f64 ? 8 : 4;
10117                   }
10118
10119                 gas_assert (length == (unsigned) (f64 ? 8 : 4));
10120
10121                 if (*args == 'f'
10122                     || (*args == 'l'
10123                         && (g_switch_value < 4
10124                             || (temp[0] == 0 && temp[1] == 0)
10125                             || (temp[2] == 0 && temp[3] == 0))))
10126                   {
10127                     imm_expr.X_op = O_constant;
10128                     if (!target_big_endian)
10129                       imm_expr.X_add_number = bfd_getl32 (temp);
10130                     else
10131                       imm_expr.X_add_number = bfd_getb32 (temp);
10132                   }
10133                 else if (length > 4
10134                          && !mips_disable_float_construction
10135                          /* Constants can only be constructed in GPRs and
10136                             copied to FPRs if the GPRs are at least as wide
10137                             as the FPRs.  Force the constant into memory if
10138                             we are using 64-bit FPRs but the GPRs are only
10139                             32 bits wide.  */
10140                          && (using_gprs
10141                              || !(HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
10142                          && ((temp[0] == 0 && temp[1] == 0)
10143                              || (temp[2] == 0 && temp[3] == 0))
10144                          && ((temp[4] == 0 && temp[5] == 0)
10145                              || (temp[6] == 0 && temp[7] == 0)))
10146                   {
10147                     /* The value is simple enough to load with a couple of
10148                        instructions.  If using 32-bit registers, set
10149                        imm_expr to the high order 32 bits and offset_expr to
10150                        the low order 32 bits.  Otherwise, set imm_expr to
10151                        the entire 64 bit constant.  */
10152                     if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
10153                       {
10154                         imm_expr.X_op = O_constant;
10155                         offset_expr.X_op = O_constant;
10156                         if (!target_big_endian)
10157                           {
10158                             imm_expr.X_add_number = bfd_getl32 (temp + 4);
10159                             offset_expr.X_add_number = bfd_getl32 (temp);
10160                           }
10161                         else
10162                           {
10163                             imm_expr.X_add_number = bfd_getb32 (temp);
10164                             offset_expr.X_add_number = bfd_getb32 (temp + 4);
10165                           }
10166                         if (offset_expr.X_add_number == 0)
10167                           offset_expr.X_op = O_absent;
10168                       }
10169                     else if (sizeof (imm_expr.X_add_number) > 4)
10170                       {
10171                         imm_expr.X_op = O_constant;
10172                         if (!target_big_endian)
10173                           imm_expr.X_add_number = bfd_getl64 (temp);
10174                         else
10175                           imm_expr.X_add_number = bfd_getb64 (temp);
10176                       }
10177                     else
10178                       {
10179                         imm_expr.X_op = O_big;
10180                         imm_expr.X_add_number = 4;
10181                         if (!target_big_endian)
10182                           {
10183                             generic_bignum[0] = bfd_getl16 (temp);
10184                             generic_bignum[1] = bfd_getl16 (temp + 2);
10185                             generic_bignum[2] = bfd_getl16 (temp + 4);
10186                             generic_bignum[3] = bfd_getl16 (temp + 6);
10187                           }
10188                         else
10189                           {
10190                             generic_bignum[0] = bfd_getb16 (temp + 6);
10191                             generic_bignum[1] = bfd_getb16 (temp + 4);
10192                             generic_bignum[2] = bfd_getb16 (temp + 2);
10193                             generic_bignum[3] = bfd_getb16 (temp);
10194                           }
10195                       }
10196                   }
10197                 else
10198                   {
10199                     const char *newname;
10200                     segT new_seg;
10201
10202                     /* Switch to the right section.  */
10203                     seg = now_seg;
10204                     subseg = now_subseg;
10205                     switch (*args)
10206                       {
10207                       default: /* unused default case avoids warnings.  */
10208                       case 'L':
10209                         newname = RDATA_SECTION_NAME;
10210                         if (g_switch_value >= 8)
10211                           newname = ".lit8";
10212                         break;
10213                       case 'F':
10214                         newname = RDATA_SECTION_NAME;
10215                         break;
10216                       case 'l':
10217                         gas_assert (g_switch_value >= 4);
10218                         newname = ".lit4";
10219                         break;
10220                       }
10221                     new_seg = subseg_new (newname, (subsegT) 0);
10222                     if (IS_ELF)
10223                       bfd_set_section_flags (stdoutput, new_seg,
10224                                              (SEC_ALLOC
10225                                               | SEC_LOAD
10226                                               | SEC_READONLY
10227                                               | SEC_DATA));
10228                     frag_align (*args == 'l' ? 2 : 3, 0, 0);
10229                     if (IS_ELF && strncmp (TARGET_OS, "elf", 3) != 0)
10230                       record_alignment (new_seg, 4);
10231                     else
10232                       record_alignment (new_seg, *args == 'l' ? 2 : 3);
10233                     if (seg == now_seg)
10234                       as_bad (_("Can't use floating point insn in this section"));
10235
10236                     /* Set the argument to the current address in the
10237                        section.  */
10238                     offset_expr.X_op = O_symbol;
10239                     offset_expr.X_add_symbol = symbol_temp_new_now ();
10240                     offset_expr.X_add_number = 0;
10241
10242                     /* Put the floating point number into the section.  */
10243                     p = frag_more ((int) length);
10244                     memcpy (p, temp, length);
10245
10246                     /* Switch back to the original section.  */
10247                     subseg_set (seg, subseg);
10248                   }
10249               }
10250               continue;
10251
10252             case 'i':           /* 16-bit unsigned immediate.  */
10253             case 'j':           /* 16-bit signed immediate.  */
10254               *imm_reloc = BFD_RELOC_LO16;
10255               if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
10256                 {
10257                   int more;
10258                   offsetT minval, maxval;
10259
10260                   more = (insn + 1 < &mips_opcodes[NUMOPCODES]
10261                           && strcmp (insn->name, insn[1].name) == 0);
10262
10263                   /* If the expression was written as an unsigned number,
10264                      only treat it as signed if there are no more
10265                      alternatives.  */
10266                   if (more
10267                       && *args == 'j'
10268                       && sizeof (imm_expr.X_add_number) <= 4
10269                       && imm_expr.X_op == O_constant
10270                       && imm_expr.X_add_number < 0
10271                       && imm_expr.X_unsigned
10272                       && HAVE_64BIT_GPRS)
10273                     break;
10274
10275                   /* For compatibility with older assemblers, we accept
10276                      0x8000-0xffff as signed 16-bit numbers when only
10277                      signed numbers are allowed.  */
10278                   if (*args == 'i')
10279                     minval = 0, maxval = 0xffff;
10280                   else if (more)
10281                     minval = -0x8000, maxval = 0x7fff;
10282                   else
10283                     minval = -0x8000, maxval = 0xffff;
10284
10285                   if (imm_expr.X_op != O_constant
10286                       || imm_expr.X_add_number < minval
10287                       || imm_expr.X_add_number > maxval)
10288                     {
10289                       if (more)
10290                         break;
10291                       if (imm_expr.X_op == O_constant
10292                           || imm_expr.X_op == O_big)
10293                         as_bad (_("Expression out of range"));
10294                     }
10295                 }
10296               s = expr_end;
10297               continue;
10298
10299             case 'o':           /* 16-bit offset.  */
10300               offset_reloc[0] = BFD_RELOC_LO16;
10301               offset_reloc[1] = BFD_RELOC_UNUSED;
10302               offset_reloc[2] = BFD_RELOC_UNUSED;
10303
10304               /* Check whether there is only a single bracketed expression
10305                  left.  If so, it must be the base register and the
10306                  constant must be zero.  */
10307               if (*s == '(' && strchr (s + 1, '(') == 0)
10308                 {
10309                   offset_expr.X_op = O_constant;
10310                   offset_expr.X_add_number = 0;
10311                   continue;
10312                 }
10313
10314               /* If this value won't fit into a 16 bit offset, then go
10315                  find a macro that will generate the 32 bit offset
10316                  code pattern.  */
10317               if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
10318                   && (offset_expr.X_op != O_constant
10319                       || offset_expr.X_add_number >= 0x8000
10320                       || offset_expr.X_add_number < -0x8000))
10321                 break;
10322
10323               s = expr_end;
10324               continue;
10325
10326             case 'p':           /* PC-relative offset.  */
10327               *offset_reloc = BFD_RELOC_16_PCREL_S2;
10328               my_getExpression (&offset_expr, s);
10329               s = expr_end;
10330               continue;
10331
10332             case 'u':           /* Upper 16 bits.  */
10333               if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0
10334                   && imm_expr.X_op == O_constant
10335                   && (imm_expr.X_add_number < 0
10336                       || imm_expr.X_add_number >= 0x10000))
10337                 as_bad (_("lui expression (%lu) not in range 0..65535"),
10338                         (unsigned long) imm_expr.X_add_number);
10339               s = expr_end;
10340               continue;
10341
10342             case 'a':           /* 26-bit address.  */
10343               my_getExpression (&offset_expr, s);
10344               s = expr_end;
10345               *offset_reloc = BFD_RELOC_MIPS_JMP;
10346               continue;
10347
10348             case 'N':           /* 3-bit branch condition code.  */
10349             case 'M':           /* 3-bit compare condition code.  */
10350               rtype = RTYPE_CCC;
10351               if (ip->insn_mo->pinfo & (FP_D | FP_S))
10352                 rtype |= RTYPE_FCC;
10353               if (!reg_lookup (&s, rtype, &regno))
10354                 break;
10355               if ((strcmp (str + strlen (str) - 3, ".ps") == 0
10356                    || strcmp (str + strlen (str) - 5, "any2f") == 0
10357                    || strcmp (str + strlen (str) - 5, "any2t") == 0)
10358                   && (regno & 1) != 0)
10359                 as_warn (_("Condition code register should be even for %s, "
10360                            "was %d"),
10361                          str, regno);
10362               if ((strcmp (str + strlen (str) - 5, "any4f") == 0
10363                    || strcmp (str + strlen (str) - 5, "any4t") == 0)
10364                   && (regno & 3) != 0)
10365                 as_warn (_("Condition code register should be 0 or 4 for %s, "
10366                            "was %d"),
10367                          str, regno);
10368               if (*args == 'N')
10369                 INSERT_OPERAND (BCC, *ip, regno);
10370               else
10371                 INSERT_OPERAND (CCC, *ip, regno);
10372               continue;
10373
10374             case 'H':
10375               if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
10376                 s += 2;
10377               if (ISDIGIT (*s))
10378                 {
10379                   c = 0;
10380                   do
10381                     {
10382                       c *= 10;
10383                       c += *s - '0';
10384                       ++s;
10385                     }
10386                   while (ISDIGIT (*s));
10387                 }
10388               else
10389                 c = 8; /* Invalid sel value.  */
10390
10391               if (c > 7)
10392                 as_bad (_("Invalid coprocessor sub-selection value (0-7)"));
10393               ip->insn_opcode |= c;
10394               continue;
10395
10396             case 'e':
10397               /* Must be at least one digit.  */
10398               my_getExpression (&imm_expr, s);
10399               check_absolute_expr (ip, &imm_expr);
10400
10401               if ((unsigned long) imm_expr.X_add_number
10402                   > (unsigned long) OP_MASK_VECBYTE)
10403                 {
10404                   as_bad (_("bad byte vector index (%ld)"),
10405                            (long) imm_expr.X_add_number);
10406                   imm_expr.X_add_number = 0;
10407                 }
10408
10409               INSERT_OPERAND (VECBYTE, *ip, imm_expr.X_add_number);
10410               imm_expr.X_op = O_absent;
10411               s = expr_end;
10412               continue;
10413
10414             case '%':
10415               my_getExpression (&imm_expr, s);
10416               check_absolute_expr (ip, &imm_expr);
10417
10418               if ((unsigned long) imm_expr.X_add_number
10419                   > (unsigned long) OP_MASK_VECALIGN)
10420                 {
10421                   as_bad (_("bad byte vector index (%ld)"),
10422                            (long) imm_expr.X_add_number);
10423                   imm_expr.X_add_number = 0;
10424                 }
10425
10426               INSERT_OPERAND (VECALIGN, *ip, imm_expr.X_add_number);
10427               imm_expr.X_op = O_absent;
10428               s = expr_end;
10429               continue;
10430
10431             default:
10432               as_bad (_("Bad char = '%c'\n"), *args);
10433               internalError ();
10434             }
10435           break;
10436         }
10437       /* Args don't match.  */
10438       if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
10439           !strcmp (insn->name, insn[1].name))
10440         {
10441           ++insn;
10442           s = argsStart;
10443           insn_error = _("Illegal operands");
10444           continue;
10445         }
10446       insn_error = _("Illegal operands");
10447       return;
10448     }
10449 }
10450
10451 #define SKIP_SPACE_TABS(S) { while (*(S) == ' ' || *(S) == '\t') ++(S); }
10452
10453 /* This routine assembles an instruction into its binary format when
10454    assembling for the mips16.  As a side effect, it sets one of the
10455    global variables imm_reloc or offset_reloc to the type of
10456    relocation to do if one of the operands is an address expression.
10457    It also sets mips16_small and mips16_ext if the user explicitly
10458    requested a small or extended instruction.  */
10459
10460 static void
10461 mips16_ip (char *str, struct mips_cl_insn *ip)
10462 {
10463   char *s;
10464   const char *args;
10465   struct mips_opcode *insn;
10466   char *argsstart;
10467   unsigned int regno;
10468   unsigned int lastregno = 0;
10469   char *s_reset;
10470   size_t i;
10471
10472   insn_error = NULL;
10473
10474   mips16_small = FALSE;
10475   mips16_ext = FALSE;
10476
10477   for (s = str; ISLOWER (*s); ++s)
10478     ;
10479   switch (*s)
10480     {
10481     case '\0':
10482       break;
10483
10484     case ' ':
10485       *s++ = '\0';
10486       break;
10487
10488     case '.':
10489       if (s[1] == 't' && s[2] == ' ')
10490         {
10491           *s = '\0';
10492           mips16_small = TRUE;
10493           s += 3;
10494           break;
10495         }
10496       else if (s[1] == 'e' && s[2] == ' ')
10497         {
10498           *s = '\0';
10499           mips16_ext = TRUE;
10500           s += 3;
10501           break;
10502         }
10503       /* Fall through.  */
10504     default:
10505       insn_error = _("unknown opcode");
10506       return;
10507     }
10508
10509   if (mips_opts.noautoextend && ! mips16_ext)
10510     mips16_small = TRUE;
10511
10512   if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
10513     {
10514       insn_error = _("unrecognized opcode");
10515       return;
10516     }
10517
10518   argsstart = s;
10519   for (;;)
10520     {
10521       bfd_boolean ok;
10522
10523       gas_assert (strcmp (insn->name, str) == 0);
10524
10525       ok = is_opcode_valid_16 (insn);
10526       if (! ok)
10527         {
10528           if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes]
10529               && strcmp (insn->name, insn[1].name) == 0)
10530             {
10531               ++insn;
10532               continue;
10533             }
10534           else
10535             {
10536               if (!insn_error)
10537                 {
10538                   static char buf[100];
10539                   sprintf (buf,
10540                            _("opcode not supported on this processor: %s (%s)"),
10541                            mips_cpu_info_from_arch (mips_opts.arch)->name,
10542                            mips_cpu_info_from_isa (mips_opts.isa)->name);
10543                   insn_error = buf;
10544                 }
10545               return;
10546             }
10547         }
10548
10549       create_insn (ip, insn);
10550       imm_expr.X_op = O_absent;
10551       imm_reloc[0] = BFD_RELOC_UNUSED;
10552       imm_reloc[1] = BFD_RELOC_UNUSED;
10553       imm_reloc[2] = BFD_RELOC_UNUSED;
10554       imm2_expr.X_op = O_absent;
10555       offset_expr.X_op = O_absent;
10556       offset_reloc[0] = BFD_RELOC_UNUSED;
10557       offset_reloc[1] = BFD_RELOC_UNUSED;
10558       offset_reloc[2] = BFD_RELOC_UNUSED;
10559       for (args = insn->args; 1; ++args)
10560         {
10561           int c;
10562
10563           if (*s == ' ')
10564             ++s;
10565
10566           /* In this switch statement we call break if we did not find
10567              a match, continue if we did find a match, or return if we
10568              are done.  */
10569
10570           c = *args;
10571           switch (c)
10572             {
10573             case '\0':
10574               if (*s == '\0')
10575                 {
10576                   /* Stuff the immediate value in now, if we can.  */
10577                   if (imm_expr.X_op == O_constant
10578                       && *imm_reloc > BFD_RELOC_UNUSED
10579                       && *imm_reloc != BFD_RELOC_MIPS16_GOT16
10580                       && *imm_reloc != BFD_RELOC_MIPS16_CALL16
10581                       && insn->pinfo != INSN_MACRO)
10582                     {
10583                       valueT tmp;
10584
10585                       switch (*offset_reloc)
10586                         {
10587                           case BFD_RELOC_MIPS16_HI16_S:
10588                             tmp = (imm_expr.X_add_number + 0x8000) >> 16;
10589                             break;
10590
10591                           case BFD_RELOC_MIPS16_HI16:
10592                             tmp = imm_expr.X_add_number >> 16;
10593                             break;
10594
10595                           case BFD_RELOC_MIPS16_LO16:
10596                             tmp = ((imm_expr.X_add_number + 0x8000) & 0xffff)
10597                                   - 0x8000;
10598                             break;
10599
10600                           case BFD_RELOC_UNUSED:
10601                             tmp = imm_expr.X_add_number;
10602                             break;
10603
10604                           default:
10605                             internalError ();
10606                         }
10607                       *offset_reloc = BFD_RELOC_UNUSED;
10608
10609                       mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
10610                                     tmp, TRUE, mips16_small,
10611                                     mips16_ext, &ip->insn_opcode,
10612                                     &ip->use_extend, &ip->extend);
10613                       imm_expr.X_op = O_absent;
10614                       *imm_reloc = BFD_RELOC_UNUSED;
10615                     }
10616
10617                   return;
10618                 }
10619               break;
10620
10621             case ',':
10622               if (*s++ == c)
10623                 continue;
10624               s--;
10625               switch (*++args)
10626                 {
10627                 case 'v':
10628                   MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
10629                   continue;
10630                 case 'w':
10631                   MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
10632                   continue;
10633                 }
10634               break;
10635
10636             case '(':
10637             case ')':
10638               if (*s++ == c)
10639                 continue;
10640               break;
10641
10642             case 'v':
10643             case 'w':
10644               if (s[0] != '$')
10645                 {
10646                   if (c == 'v')
10647                     MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
10648                   else
10649                     MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
10650                   ++args;
10651                   continue;
10652                 }
10653               /* Fall through.  */
10654             case 'x':
10655             case 'y':
10656             case 'z':
10657             case 'Z':
10658             case '0':
10659             case 'S':
10660             case 'R':
10661             case 'X':
10662             case 'Y':
10663               s_reset = s;
10664               if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
10665                 {
10666                   if (c == 'v' || c == 'w')
10667                     {
10668                       if (c == 'v')
10669                         MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
10670                       else
10671                         MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
10672                       ++args;
10673                       continue;
10674                     }
10675                   break;
10676                 }
10677
10678               if (*s == ' ')
10679                 ++s;
10680               if (args[1] != *s)
10681                 {
10682                   if (c == 'v' || c == 'w')
10683                     {
10684                       regno = mips16_to_32_reg_map[lastregno];
10685                       s = s_reset;
10686                       ++args;
10687                     }
10688                 }
10689
10690               switch (c)
10691                 {
10692                 case 'x':
10693                 case 'y':
10694                 case 'z':
10695                 case 'v':
10696                 case 'w':
10697                 case 'Z':
10698                   regno = mips32_to_16_reg_map[regno];
10699                   break;
10700
10701                 case '0':
10702                   if (regno != 0)
10703                     regno = ILLEGAL_REG;
10704                   break;
10705
10706                 case 'S':
10707                   if (regno != SP)
10708                     regno = ILLEGAL_REG;
10709                   break;
10710
10711                 case 'R':
10712                   if (regno != RA)
10713                     regno = ILLEGAL_REG;
10714                   break;
10715
10716                 case 'X':
10717                 case 'Y':
10718                   if (regno == AT && mips_opts.at)
10719                     {
10720                       if (mips_opts.at == ATREG)
10721                         as_warn (_("used $at without \".set noat\""));
10722                       else
10723                         as_warn (_("used $%u with \".set at=$%u\""),
10724                                  regno, mips_opts.at);
10725                     }
10726                   break;
10727
10728                 default:
10729                   internalError ();
10730                 }
10731
10732               if (regno == ILLEGAL_REG)
10733                 break;
10734
10735               switch (c)
10736                 {
10737                 case 'x':
10738                 case 'v':
10739                   MIPS16_INSERT_OPERAND (RX, *ip, regno);
10740                   break;
10741                 case 'y':
10742                 case 'w':
10743                   MIPS16_INSERT_OPERAND (RY, *ip, regno);
10744                   break;
10745                 case 'z':
10746                   MIPS16_INSERT_OPERAND (RZ, *ip, regno);
10747                   break;
10748                 case 'Z':
10749                   MIPS16_INSERT_OPERAND (MOVE32Z, *ip, regno);
10750                 case '0':
10751                 case 'S':
10752                 case 'R':
10753                   break;
10754                 case 'X':
10755                   MIPS16_INSERT_OPERAND (REGR32, *ip, regno);
10756                   break;
10757                 case 'Y':
10758                   regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
10759                   MIPS16_INSERT_OPERAND (REG32R, *ip, regno);
10760                   break;
10761                 default:
10762                   internalError ();
10763                 }
10764
10765               lastregno = regno;
10766               continue;
10767
10768             case 'P':
10769               if (strncmp (s, "$pc", 3) == 0)
10770                 {
10771                   s += 3;
10772                   continue;
10773                 }
10774               break;
10775
10776             case '5':
10777             case 'H':
10778             case 'W':
10779             case 'D':
10780             case 'j':
10781             case 'V':
10782             case 'C':
10783             case 'U':
10784             case 'k':
10785             case 'K':
10786               i = my_getSmallExpression (&imm_expr, imm_reloc, s);
10787               if (i > 0)
10788                 {
10789                   if (imm_expr.X_op != O_constant)
10790                     {
10791                       mips16_ext = TRUE;
10792                       ip->use_extend = TRUE;
10793                       ip->extend = 0;
10794                     }
10795                   else
10796                     {
10797                       /* We need to relax this instruction.  */
10798                       *offset_reloc = *imm_reloc;
10799                       *imm_reloc = (int) BFD_RELOC_UNUSED + c;
10800                     }
10801                   s = expr_end;
10802                   continue;
10803                 }
10804               *imm_reloc = BFD_RELOC_UNUSED;
10805               /* Fall through.  */
10806             case '<':
10807             case '>':
10808             case '[':
10809             case ']':
10810             case '4':
10811             case '8':
10812               my_getExpression (&imm_expr, s);
10813               if (imm_expr.X_op == O_register)
10814                 {
10815                   /* What we thought was an expression turned out to
10816                      be a register.  */
10817
10818                   if (s[0] == '(' && args[1] == '(')
10819                     {
10820                       /* It looks like the expression was omitted
10821                          before a register indirection, which means
10822                          that the expression is implicitly zero.  We
10823                          still set up imm_expr, so that we handle
10824                          explicit extensions correctly.  */
10825                       imm_expr.X_op = O_constant;
10826                       imm_expr.X_add_number = 0;
10827                       *imm_reloc = (int) BFD_RELOC_UNUSED + c;
10828                       continue;
10829                     }
10830
10831                   break;
10832                 }
10833
10834               /* We need to relax this instruction.  */
10835               *imm_reloc = (int) BFD_RELOC_UNUSED + c;
10836               s = expr_end;
10837               continue;
10838
10839             case 'p':
10840             case 'q':
10841             case 'A':
10842             case 'B':
10843             case 'E':
10844               /* We use offset_reloc rather than imm_reloc for the PC
10845                  relative operands.  This lets macros with both
10846                  immediate and address operands work correctly.  */
10847               my_getExpression (&offset_expr, s);
10848
10849               if (offset_expr.X_op == O_register)
10850                 break;
10851
10852               /* We need to relax this instruction.  */
10853               *offset_reloc = (int) BFD_RELOC_UNUSED + c;
10854               s = expr_end;
10855               continue;
10856
10857             case '6':           /* break code */
10858               my_getExpression (&imm_expr, s);
10859               check_absolute_expr (ip, &imm_expr);
10860               if ((unsigned long) imm_expr.X_add_number > 63)
10861                 as_warn (_("Invalid value for `%s' (%lu)"),
10862                          ip->insn_mo->name,
10863                          (unsigned long) imm_expr.X_add_number);
10864               MIPS16_INSERT_OPERAND (IMM6, *ip, imm_expr.X_add_number);
10865               imm_expr.X_op = O_absent;
10866               s = expr_end;
10867               continue;
10868
10869             case 'a':           /* 26 bit address */
10870               my_getExpression (&offset_expr, s);
10871               s = expr_end;
10872               *offset_reloc = BFD_RELOC_MIPS16_JMP;
10873               ip->insn_opcode <<= 16;
10874               continue;
10875
10876             case 'l':           /* register list for entry macro */
10877             case 'L':           /* register list for exit macro */
10878               {
10879                 int mask;
10880
10881                 if (c == 'l')
10882                   mask = 0;
10883                 else
10884                   mask = 7 << 3;
10885                 while (*s != '\0')
10886                   {
10887                     unsigned int freg, reg1, reg2;
10888
10889                     while (*s == ' ' || *s == ',')
10890                       ++s;
10891                     if (reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
10892                       freg = 0;
10893                     else if (reg_lookup (&s, RTYPE_FPU, &reg1))
10894                       freg = 1;
10895                     else
10896                       {
10897                         as_bad (_("can't parse register list"));
10898                         break;
10899                       }
10900                     if (*s == ' ')
10901                       ++s;
10902                     if (*s != '-')
10903                       reg2 = reg1;
10904                     else
10905                       {
10906                         ++s;
10907                         if (!reg_lookup (&s, freg ? RTYPE_FPU 
10908                                          : (RTYPE_GP | RTYPE_NUM), &reg2))
10909                           {
10910                             as_bad (_("invalid register list"));
10911                             break;
10912                           }
10913                       }
10914                     if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
10915                       {
10916                         mask &= ~ (7 << 3);
10917                         mask |= 5 << 3;
10918                       }
10919                     else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
10920                       {
10921                         mask &= ~ (7 << 3);
10922                         mask |= 6 << 3;
10923                       }
10924                     else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
10925                       mask |= (reg2 - 3) << 3;
10926                     else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
10927                       mask |= (reg2 - 15) << 1;
10928                     else if (reg1 == RA && reg2 == RA)
10929                       mask |= 1;
10930                     else
10931                       {
10932                         as_bad (_("invalid register list"));
10933                         break;
10934                       }
10935                   }
10936                 /* The mask is filled in in the opcode table for the
10937                    benefit of the disassembler.  We remove it before
10938                    applying the actual mask.  */
10939                 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
10940                 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
10941               }
10942             continue;
10943
10944             case 'm':           /* Register list for save insn.  */
10945             case 'M':           /* Register list for restore insn.  */
10946               {
10947                 int opcode = 0;
10948                 int framesz = 0, seen_framesz = 0;
10949                 int nargs = 0, statics = 0, sregs = 0;
10950
10951                 while (*s != '\0')
10952                   {
10953                     unsigned int reg1, reg2;
10954
10955                     SKIP_SPACE_TABS (s);
10956                     while (*s == ',')
10957                       ++s;
10958                     SKIP_SPACE_TABS (s);
10959
10960                     my_getExpression (&imm_expr, s);
10961                     if (imm_expr.X_op == O_constant)
10962                       {
10963                         /* Handle the frame size.  */
10964                         if (seen_framesz)
10965                           {
10966                             as_bad (_("more than one frame size in list"));
10967                             break;
10968                           }
10969                         seen_framesz = 1;
10970                         framesz = imm_expr.X_add_number;
10971                         imm_expr.X_op = O_absent;
10972                         s = expr_end;
10973                         continue;
10974                       }
10975
10976                     if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
10977                       {
10978                         as_bad (_("can't parse register list"));
10979                         break;
10980                       }
10981
10982                     while (*s == ' ')
10983                       ++s;
10984
10985                     if (*s != '-')
10986                       reg2 = reg1;
10987                     else
10988                       {
10989                         ++s;
10990                         if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg2)
10991                             || reg2 < reg1)
10992                           {
10993                             as_bad (_("can't parse register list"));
10994                             break;
10995                           }
10996                       }
10997
10998                     while (reg1 <= reg2)
10999                       {
11000                         if (reg1 >= 4 && reg1 <= 7)
11001                           {
11002                             if (!seen_framesz)
11003                                 /* args $a0-$a3 */
11004                                 nargs |= 1 << (reg1 - 4);
11005                             else
11006                                 /* statics $a0-$a3 */
11007                                 statics |= 1 << (reg1 - 4);
11008                           }
11009                         else if ((reg1 >= 16 && reg1 <= 23) || reg1 == 30)
11010                           {
11011                             /* $s0-$s8 */
11012                             sregs |= 1 << ((reg1 == 30) ? 8 : (reg1 - 16));
11013                           }
11014                         else if (reg1 == 31)
11015                           {
11016                             /* Add $ra to insn.  */
11017                             opcode |= 0x40;
11018                           }
11019                         else
11020                           {
11021                             as_bad (_("unexpected register in list"));
11022                             break;
11023                           }
11024                         if (++reg1 == 24)
11025                           reg1 = 30;
11026                       }
11027                   }
11028
11029                 /* Encode args/statics combination.  */
11030                 if (nargs & statics)
11031                   as_bad (_("arg/static registers overlap"));
11032                 else if (nargs == 0xf)
11033                   /* All $a0-$a3 are args.  */
11034                   opcode |= MIPS16_ALL_ARGS << 16;
11035                 else if (statics == 0xf)
11036                   /* All $a0-$a3 are statics.  */
11037                   opcode |= MIPS16_ALL_STATICS << 16;
11038                 else 
11039                   {
11040                     int narg = 0, nstat = 0;
11041
11042                     /* Count arg registers.  */
11043                     while (nargs & 0x1)
11044                       {
11045                         nargs >>= 1;
11046                         narg++;
11047                       }
11048                     if (nargs != 0)
11049                       as_bad (_("invalid arg register list"));
11050
11051                     /* Count static registers.  */
11052                     while (statics & 0x8)
11053                       {
11054                         statics = (statics << 1) & 0xf;
11055                         nstat++;
11056                       }
11057                     if (statics != 0) 
11058                       as_bad (_("invalid static register list"));
11059
11060                     /* Encode args/statics.  */
11061                     opcode |= ((narg << 2) | nstat) << 16;
11062                   }
11063
11064                 /* Encode $s0/$s1.  */
11065                 if (sregs & (1 << 0))           /* $s0 */
11066                   opcode |= 0x20;
11067                 if (sregs & (1 << 1))           /* $s1 */
11068                   opcode |= 0x10;
11069                 sregs >>= 2;
11070
11071                 if (sregs != 0)
11072                   {
11073                     /* Count regs $s2-$s8.  */
11074                     int nsreg = 0;
11075                     while (sregs & 1)
11076                       {
11077                         sregs >>= 1;
11078                         nsreg++;
11079                       }
11080                     if (sregs != 0)
11081                       as_bad (_("invalid static register list"));
11082                     /* Encode $s2-$s8. */
11083                     opcode |= nsreg << 24;
11084                   }
11085
11086                 /* Encode frame size.  */
11087                 if (!seen_framesz)
11088                   as_bad (_("missing frame size"));
11089                 else if ((framesz & 7) != 0 || framesz < 0
11090                          || framesz > 0xff * 8)
11091                   as_bad (_("invalid frame size"));
11092                 else if (framesz != 128 || (opcode >> 16) != 0)
11093                   {
11094                     framesz /= 8;
11095                     opcode |= (((framesz & 0xf0) << 16)
11096                              | (framesz & 0x0f));
11097                   }
11098
11099                 /* Finally build the instruction.  */
11100                 if ((opcode >> 16) != 0 || framesz == 0)
11101                   {
11102                     ip->use_extend = TRUE;
11103                     ip->extend = opcode >> 16;
11104                   }
11105                 ip->insn_opcode |= opcode & 0x7f;
11106               }
11107             continue;
11108
11109             case 'e':           /* extend code */
11110               my_getExpression (&imm_expr, s);
11111               check_absolute_expr (ip, &imm_expr);
11112               if ((unsigned long) imm_expr.X_add_number > 0x7ff)
11113                 {
11114                   as_warn (_("Invalid value for `%s' (%lu)"),
11115                            ip->insn_mo->name,
11116                            (unsigned long) imm_expr.X_add_number);
11117                   imm_expr.X_add_number &= 0x7ff;
11118                 }
11119               ip->insn_opcode |= imm_expr.X_add_number;
11120               imm_expr.X_op = O_absent;
11121               s = expr_end;
11122               continue;
11123
11124             default:
11125               internalError ();
11126             }
11127           break;
11128         }
11129
11130       /* Args don't match.  */
11131       if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
11132           strcmp (insn->name, insn[1].name) == 0)
11133         {
11134           ++insn;
11135           s = argsstart;
11136           continue;
11137         }
11138
11139       insn_error = _("illegal operands");
11140
11141       return;
11142     }
11143 }
11144
11145 /* This structure holds information we know about a mips16 immediate
11146    argument type.  */
11147
11148 struct mips16_immed_operand
11149 {
11150   /* The type code used in the argument string in the opcode table.  */
11151   int type;
11152   /* The number of bits in the short form of the opcode.  */
11153   int nbits;
11154   /* The number of bits in the extended form of the opcode.  */
11155   int extbits;
11156   /* The amount by which the short form is shifted when it is used;
11157      for example, the sw instruction has a shift count of 2.  */
11158   int shift;
11159   /* The amount by which the short form is shifted when it is stored
11160      into the instruction code.  */
11161   int op_shift;
11162   /* Non-zero if the short form is unsigned.  */
11163   int unsp;
11164   /* Non-zero if the extended form is unsigned.  */
11165   int extu;
11166   /* Non-zero if the value is PC relative.  */
11167   int pcrel;
11168 };
11169
11170 /* The mips16 immediate operand types.  */
11171
11172 static const struct mips16_immed_operand mips16_immed_operands[] =
11173 {
11174   { '<',  3,  5, 0, MIPS16OP_SH_RZ,   1, 1, 0 },
11175   { '>',  3,  5, 0, MIPS16OP_SH_RX,   1, 1, 0 },
11176   { '[',  3,  6, 0, MIPS16OP_SH_RZ,   1, 1, 0 },
11177   { ']',  3,  6, 0, MIPS16OP_SH_RX,   1, 1, 0 },
11178   { '4',  4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
11179   { '5',  5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
11180   { 'H',  5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
11181   { 'W',  5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
11182   { 'D',  5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
11183   { 'j',  5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
11184   { '8',  8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
11185   { 'V',  8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
11186   { 'C',  8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
11187   { 'U',  8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
11188   { 'k',  8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
11189   { 'K',  8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
11190   { 'p',  8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
11191   { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
11192   { 'A',  8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
11193   { 'B',  5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
11194   { 'E',  5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
11195 };
11196
11197 #define MIPS16_NUM_IMMED \
11198   (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
11199
11200 /* Handle a mips16 instruction with an immediate value.  This or's the
11201    small immediate value into *INSN.  It sets *USE_EXTEND to indicate
11202    whether an extended value is needed; if one is needed, it sets
11203    *EXTEND to the value.  The argument type is TYPE.  The value is VAL.
11204    If SMALL is true, an unextended opcode was explicitly requested.
11205    If EXT is true, an extended opcode was explicitly requested.  If
11206    WARN is true, warn if EXT does not match reality.  */
11207
11208 static void
11209 mips16_immed (char *file, unsigned int line, int type, offsetT val,
11210               bfd_boolean warn, bfd_boolean small, bfd_boolean ext,
11211               unsigned long *insn, bfd_boolean *use_extend,
11212               unsigned short *extend)
11213 {
11214   const struct mips16_immed_operand *op;
11215   int mintiny, maxtiny;
11216   bfd_boolean needext;
11217
11218   op = mips16_immed_operands;
11219   while (op->type != type)
11220     {
11221       ++op;
11222       gas_assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
11223     }
11224
11225   if (op->unsp)
11226     {
11227       if (type == '<' || type == '>' || type == '[' || type == ']')
11228         {
11229           mintiny = 1;
11230           maxtiny = 1 << op->nbits;
11231         }
11232       else
11233         {
11234           mintiny = 0;
11235           maxtiny = (1 << op->nbits) - 1;
11236         }
11237     }
11238   else
11239     {
11240       mintiny = - (1 << (op->nbits - 1));
11241       maxtiny = (1 << (op->nbits - 1)) - 1;
11242     }
11243
11244   /* Branch offsets have an implicit 0 in the lowest bit.  */
11245   if (type == 'p' || type == 'q')
11246     val /= 2;
11247
11248   if ((val & ((1 << op->shift) - 1)) != 0
11249       || val < (mintiny << op->shift)
11250       || val > (maxtiny << op->shift))
11251     needext = TRUE;
11252   else
11253     needext = FALSE;
11254
11255   if (warn && ext && ! needext)
11256     as_warn_where (file, line,
11257                    _("extended operand requested but not required"));
11258   if (small && needext)
11259     as_bad_where (file, line, _("invalid unextended operand value"));
11260
11261   if (small || (! ext && ! needext))
11262     {
11263       int insnval;
11264
11265       *use_extend = FALSE;
11266       insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
11267       insnval <<= op->op_shift;
11268       *insn |= insnval;
11269     }
11270   else
11271     {
11272       long minext, maxext;
11273       int extval;
11274
11275       if (op->extu)
11276         {
11277           minext = 0;
11278           maxext = (1 << op->extbits) - 1;
11279         }
11280       else
11281         {
11282           minext = - (1 << (op->extbits - 1));
11283           maxext = (1 << (op->extbits - 1)) - 1;
11284         }
11285       if (val < minext || val > maxext)
11286         as_bad_where (file, line,
11287                       _("operand value out of range for instruction"));
11288
11289       *use_extend = TRUE;
11290       if (op->extbits == 16)
11291         {
11292           extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
11293           val &= 0x1f;
11294         }
11295       else if (op->extbits == 15)
11296         {
11297           extval = ((val >> 11) & 0xf) | (val & 0x7f0);
11298           val &= 0xf;
11299         }
11300       else
11301         {
11302           extval = ((val & 0x1f) << 6) | (val & 0x20);
11303           val = 0;
11304         }
11305
11306       *extend = (unsigned short) extval;
11307       *insn |= val;
11308     }
11309 }
11310 \f
11311 struct percent_op_match
11312 {
11313   const char *str;
11314   bfd_reloc_code_real_type reloc;
11315 };
11316
11317 static const struct percent_op_match mips_percent_op[] =
11318 {
11319   {"%lo", BFD_RELOC_LO16},
11320 #ifdef OBJ_ELF
11321   {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
11322   {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
11323   {"%call16", BFD_RELOC_MIPS_CALL16},
11324   {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
11325   {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
11326   {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
11327   {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
11328   {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
11329   {"%got", BFD_RELOC_MIPS_GOT16},
11330   {"%gp_rel", BFD_RELOC_GPREL16},
11331   {"%half", BFD_RELOC_16},
11332   {"%highest", BFD_RELOC_MIPS_HIGHEST},
11333   {"%higher", BFD_RELOC_MIPS_HIGHER},
11334   {"%neg", BFD_RELOC_MIPS_SUB},
11335   {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
11336   {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
11337   {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
11338   {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
11339   {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
11340   {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
11341   {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
11342 #endif
11343   {"%hi", BFD_RELOC_HI16_S}
11344 };
11345
11346 static const struct percent_op_match mips16_percent_op[] =
11347 {
11348   {"%lo", BFD_RELOC_MIPS16_LO16},
11349   {"%gprel", BFD_RELOC_MIPS16_GPREL},
11350   {"%got", BFD_RELOC_MIPS16_GOT16},
11351   {"%call16", BFD_RELOC_MIPS16_CALL16},
11352   {"%hi", BFD_RELOC_MIPS16_HI16_S}
11353 };
11354
11355
11356 /* Return true if *STR points to a relocation operator.  When returning true,
11357    move *STR over the operator and store its relocation code in *RELOC.
11358    Leave both *STR and *RELOC alone when returning false.  */
11359
11360 static bfd_boolean
11361 parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
11362 {
11363   const struct percent_op_match *percent_op;
11364   size_t limit, i;
11365
11366   if (mips_opts.mips16)
11367     {
11368       percent_op = mips16_percent_op;
11369       limit = ARRAY_SIZE (mips16_percent_op);
11370     }
11371   else
11372     {
11373       percent_op = mips_percent_op;
11374       limit = ARRAY_SIZE (mips_percent_op);
11375     }
11376
11377   for (i = 0; i < limit; i++)
11378     if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
11379       {
11380         int len = strlen (percent_op[i].str);
11381
11382         if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
11383           continue;
11384
11385         *str += strlen (percent_op[i].str);
11386         *reloc = percent_op[i].reloc;
11387
11388         /* Check whether the output BFD supports this relocation.
11389            If not, issue an error and fall back on something safe.  */
11390         if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
11391           {
11392             as_bad (_("relocation %s isn't supported by the current ABI"),
11393                     percent_op[i].str);
11394             *reloc = BFD_RELOC_UNUSED;
11395           }
11396         return TRUE;
11397       }
11398   return FALSE;
11399 }
11400
11401
11402 /* Parse string STR as a 16-bit relocatable operand.  Store the
11403    expression in *EP and the relocations in the array starting
11404    at RELOC.  Return the number of relocation operators used.
11405
11406    On exit, EXPR_END points to the first character after the expression.  */
11407
11408 static size_t
11409 my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
11410                        char *str)
11411 {
11412   bfd_reloc_code_real_type reversed_reloc[3];
11413   size_t reloc_index, i;
11414   int crux_depth, str_depth;
11415   char *crux;
11416
11417   /* Search for the start of the main expression, recoding relocations
11418      in REVERSED_RELOC.  End the loop with CRUX pointing to the start
11419      of the main expression and with CRUX_DEPTH containing the number
11420      of open brackets at that point.  */
11421   reloc_index = -1;
11422   str_depth = 0;
11423   do
11424     {
11425       reloc_index++;
11426       crux = str;
11427       crux_depth = str_depth;
11428
11429       /* Skip over whitespace and brackets, keeping count of the number
11430          of brackets.  */
11431       while (*str == ' ' || *str == '\t' || *str == '(')
11432         if (*str++ == '(')
11433           str_depth++;
11434     }
11435   while (*str == '%'
11436          && reloc_index < (HAVE_NEWABI ? 3 : 1)
11437          && parse_relocation (&str, &reversed_reloc[reloc_index]));
11438
11439   my_getExpression (ep, crux);
11440   str = expr_end;
11441
11442   /* Match every open bracket.  */
11443   while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
11444     if (*str++ == ')')
11445       crux_depth--;
11446
11447   if (crux_depth > 0)
11448     as_bad (_("unclosed '('"));
11449
11450   expr_end = str;
11451
11452   if (reloc_index != 0)
11453     {
11454       prev_reloc_op_frag = frag_now;
11455       for (i = 0; i < reloc_index; i++)
11456         reloc[i] = reversed_reloc[reloc_index - 1 - i];
11457     }
11458
11459   return reloc_index;
11460 }
11461
11462 static void
11463 my_getExpression (expressionS *ep, char *str)
11464 {
11465   char *save_in;
11466
11467   save_in = input_line_pointer;
11468   input_line_pointer = str;
11469   expression (ep);
11470   expr_end = input_line_pointer;
11471   input_line_pointer = save_in;
11472 }
11473
11474 char *
11475 md_atof (int type, char *litP, int *sizeP)
11476 {
11477   return ieee_md_atof (type, litP, sizeP, target_big_endian);
11478 }
11479
11480 void
11481 md_number_to_chars (char *buf, valueT val, int n)
11482 {
11483   if (target_big_endian)
11484     number_to_chars_bigendian (buf, val, n);
11485   else
11486     number_to_chars_littleendian (buf, val, n);
11487 }
11488 \f
11489 #ifdef OBJ_ELF
11490 static int support_64bit_objects(void)
11491 {
11492   const char **list, **l;
11493   int yes;
11494
11495   list = bfd_target_list ();
11496   for (l = list; *l != NULL; l++)
11497     if (strcmp (*l, ELF_TARGET ("elf64-", "big")) == 0
11498         || strcmp (*l, ELF_TARGET ("elf64-", "little")) == 0)
11499       break;
11500   yes = (*l != NULL);
11501   free (list);
11502   return yes;
11503 }
11504 #endif /* OBJ_ELF */
11505
11506 const char *md_shortopts = "O::g::G:";
11507
11508 enum options
11509   {
11510     OPTION_MARCH = OPTION_MD_BASE,
11511     OPTION_MTUNE,
11512     OPTION_MIPS1,
11513     OPTION_MIPS2,
11514     OPTION_MIPS3,
11515     OPTION_MIPS4,
11516     OPTION_MIPS5,
11517     OPTION_MIPS32,
11518     OPTION_MIPS64,
11519     OPTION_MIPS32R2,
11520     OPTION_MIPS64R2,
11521     OPTION_MIPS16,
11522     OPTION_NO_MIPS16,
11523     OPTION_MIPS3D,
11524     OPTION_NO_MIPS3D,
11525     OPTION_MDMX,
11526     OPTION_NO_MDMX,
11527     OPTION_DSP,
11528     OPTION_NO_DSP,
11529     OPTION_MT,
11530     OPTION_NO_MT,
11531     OPTION_SMARTMIPS,
11532     OPTION_NO_SMARTMIPS,
11533     OPTION_DSPR2,
11534     OPTION_NO_DSPR2,
11535     OPTION_COMPAT_ARCH_BASE,
11536     OPTION_M4650,
11537     OPTION_NO_M4650,
11538     OPTION_M4010,
11539     OPTION_NO_M4010,
11540     OPTION_M4100,
11541     OPTION_NO_M4100,
11542     OPTION_M3900,
11543     OPTION_NO_M3900,
11544     OPTION_M7000_HILO_FIX,
11545     OPTION_MNO_7000_HILO_FIX, 
11546     OPTION_FIX_24K,
11547     OPTION_NO_FIX_24K,
11548     OPTION_FIX_LOONGSON2F_JUMP,
11549     OPTION_NO_FIX_LOONGSON2F_JUMP,
11550     OPTION_FIX_LOONGSON2F_NOP,
11551     OPTION_NO_FIX_LOONGSON2F_NOP,
11552     OPTION_FIX_VR4120,
11553     OPTION_NO_FIX_VR4120,
11554     OPTION_FIX_VR4130,
11555     OPTION_NO_FIX_VR4130,
11556     OPTION_FIX_CN63XXP1,
11557     OPTION_NO_FIX_CN63XXP1,
11558     OPTION_TRAP,
11559     OPTION_BREAK,
11560     OPTION_EB,
11561     OPTION_EL,
11562     OPTION_FP32,
11563     OPTION_GP32,
11564     OPTION_CONSTRUCT_FLOATS,
11565     OPTION_NO_CONSTRUCT_FLOATS,
11566     OPTION_FP64,
11567     OPTION_GP64,
11568     OPTION_RELAX_BRANCH,
11569     OPTION_NO_RELAX_BRANCH,
11570     OPTION_MSHARED,
11571     OPTION_MNO_SHARED,
11572     OPTION_MSYM32,
11573     OPTION_MNO_SYM32,
11574     OPTION_SOFT_FLOAT,
11575     OPTION_HARD_FLOAT,
11576     OPTION_SINGLE_FLOAT,
11577     OPTION_DOUBLE_FLOAT,
11578     OPTION_32,
11579 #ifdef OBJ_ELF
11580     OPTION_CALL_SHARED,
11581     OPTION_CALL_NONPIC,
11582     OPTION_NON_SHARED,
11583     OPTION_XGOT,
11584     OPTION_MABI,
11585     OPTION_N32,
11586     OPTION_64,
11587     OPTION_MDEBUG,
11588     OPTION_NO_MDEBUG,
11589     OPTION_PDR,
11590     OPTION_NO_PDR,
11591     OPTION_MVXWORKS_PIC,
11592 #endif /* OBJ_ELF */
11593     OPTION_END_OF_ENUM    
11594   };
11595   
11596 struct option md_longopts[] =
11597 {
11598   /* Options which specify architecture.  */
11599   {"march", required_argument, NULL, OPTION_MARCH},
11600   {"mtune", required_argument, NULL, OPTION_MTUNE},
11601   {"mips0", no_argument, NULL, OPTION_MIPS1},
11602   {"mips1", no_argument, NULL, OPTION_MIPS1},
11603   {"mips2", no_argument, NULL, OPTION_MIPS2},
11604   {"mips3", no_argument, NULL, OPTION_MIPS3},
11605   {"mips4", no_argument, NULL, OPTION_MIPS4},
11606   {"mips5", no_argument, NULL, OPTION_MIPS5},
11607   {"mips32", no_argument, NULL, OPTION_MIPS32},
11608   {"mips64", no_argument, NULL, OPTION_MIPS64},
11609   {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
11610   {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
11611
11612   /* Options which specify Application Specific Extensions (ASEs).  */
11613   {"mips16", no_argument, NULL, OPTION_MIPS16},
11614   {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
11615   {"mips3d", no_argument, NULL, OPTION_MIPS3D},
11616   {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
11617   {"mdmx", no_argument, NULL, OPTION_MDMX},
11618   {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
11619   {"mdsp", no_argument, NULL, OPTION_DSP},
11620   {"mno-dsp", no_argument, NULL, OPTION_NO_DSP},
11621   {"mmt", no_argument, NULL, OPTION_MT},
11622   {"mno-mt", no_argument, NULL, OPTION_NO_MT},
11623   {"msmartmips", no_argument, NULL, OPTION_SMARTMIPS},
11624   {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS},
11625   {"mdspr2", no_argument, NULL, OPTION_DSPR2},
11626   {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2},
11627
11628   /* Old-style architecture options.  Don't add more of these.  */
11629   {"m4650", no_argument, NULL, OPTION_M4650},
11630   {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
11631   {"m4010", no_argument, NULL, OPTION_M4010},
11632   {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
11633   {"m4100", no_argument, NULL, OPTION_M4100},
11634   {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
11635   {"m3900", no_argument, NULL, OPTION_M3900},
11636   {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
11637
11638   /* Options which enable bug fixes.  */
11639   {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
11640   {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
11641   {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
11642   {"mfix-loongson2f-jump", no_argument, NULL, OPTION_FIX_LOONGSON2F_JUMP},
11643   {"mno-fix-loongson2f-jump", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_JUMP},
11644   {"mfix-loongson2f-nop", no_argument, NULL, OPTION_FIX_LOONGSON2F_NOP},
11645   {"mno-fix-loongson2f-nop", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_NOP},
11646   {"mfix-vr4120",    no_argument, NULL, OPTION_FIX_VR4120},
11647   {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
11648   {"mfix-vr4130",    no_argument, NULL, OPTION_FIX_VR4130},
11649   {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
11650   {"mfix-24k",    no_argument, NULL, OPTION_FIX_24K},
11651   {"mno-fix-24k", no_argument, NULL, OPTION_NO_FIX_24K},
11652   {"mfix-cn63xxp1", no_argument, NULL, OPTION_FIX_CN63XXP1},
11653   {"mno-fix-cn63xxp1", no_argument, NULL, OPTION_NO_FIX_CN63XXP1},
11654
11655   /* Miscellaneous options.  */
11656   {"trap", no_argument, NULL, OPTION_TRAP},
11657   {"no-break", no_argument, NULL, OPTION_TRAP},
11658   {"break", no_argument, NULL, OPTION_BREAK},
11659   {"no-trap", no_argument, NULL, OPTION_BREAK},
11660   {"EB", no_argument, NULL, OPTION_EB},
11661   {"EL", no_argument, NULL, OPTION_EL},
11662   {"mfp32", no_argument, NULL, OPTION_FP32},
11663   {"mgp32", no_argument, NULL, OPTION_GP32},
11664   {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
11665   {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
11666   {"mfp64", no_argument, NULL, OPTION_FP64},
11667   {"mgp64", no_argument, NULL, OPTION_GP64},
11668   {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
11669   {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
11670   {"mshared", no_argument, NULL, OPTION_MSHARED},
11671   {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
11672   {"msym32", no_argument, NULL, OPTION_MSYM32},
11673   {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
11674   {"msoft-float", no_argument, NULL, OPTION_SOFT_FLOAT},
11675   {"mhard-float", no_argument, NULL, OPTION_HARD_FLOAT},
11676   {"msingle-float", no_argument, NULL, OPTION_SINGLE_FLOAT},
11677   {"mdouble-float", no_argument, NULL, OPTION_DOUBLE_FLOAT},
11678
11679   /* Strictly speaking this next option is ELF specific,
11680      but we allow it for other ports as well in order to
11681      make testing easier.  */
11682   {"32",          no_argument, NULL, OPTION_32},
11683   
11684   /* ELF-specific options.  */
11685 #ifdef OBJ_ELF
11686   {"KPIC",        no_argument, NULL, OPTION_CALL_SHARED},
11687   {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
11688   {"call_nonpic", no_argument, NULL, OPTION_CALL_NONPIC},
11689   {"non_shared",  no_argument, NULL, OPTION_NON_SHARED},
11690   {"xgot",        no_argument, NULL, OPTION_XGOT},
11691   {"mabi", required_argument, NULL, OPTION_MABI},
11692   {"n32",         no_argument, NULL, OPTION_N32},
11693   {"64",          no_argument, NULL, OPTION_64},
11694   {"mdebug", no_argument, NULL, OPTION_MDEBUG},
11695   {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
11696   {"mpdr", no_argument, NULL, OPTION_PDR},
11697   {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
11698   {"mvxworks-pic", no_argument, NULL, OPTION_MVXWORKS_PIC},
11699 #endif /* OBJ_ELF */
11700
11701   {NULL, no_argument, NULL, 0}
11702 };
11703 size_t md_longopts_size = sizeof (md_longopts);
11704
11705 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
11706    NEW_VALUE.  Warn if another value was already specified.  Note:
11707    we have to defer parsing the -march and -mtune arguments in order
11708    to handle 'from-abi' correctly, since the ABI might be specified
11709    in a later argument.  */
11710
11711 static void
11712 mips_set_option_string (const char **string_ptr, const char *new_value)
11713 {
11714   if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
11715     as_warn (_("A different %s was already specified, is now %s"),
11716              string_ptr == &mips_arch_string ? "-march" : "-mtune",
11717              new_value);
11718
11719   *string_ptr = new_value;
11720 }
11721
11722 int
11723 md_parse_option (int c, char *arg)
11724 {
11725   switch (c)
11726     {
11727     case OPTION_CONSTRUCT_FLOATS:
11728       mips_disable_float_construction = 0;
11729       break;
11730
11731     case OPTION_NO_CONSTRUCT_FLOATS:
11732       mips_disable_float_construction = 1;
11733       break;
11734
11735     case OPTION_TRAP:
11736       mips_trap = 1;
11737       break;
11738
11739     case OPTION_BREAK:
11740       mips_trap = 0;
11741       break;
11742
11743     case OPTION_EB:
11744       target_big_endian = 1;
11745       break;
11746
11747     case OPTION_EL:
11748       target_big_endian = 0;
11749       break;
11750
11751     case 'O':
11752       if (arg == NULL)
11753         mips_optimize = 1;
11754       else if (arg[0] == '0')
11755         mips_optimize = 0;
11756       else if (arg[0] == '1')
11757         mips_optimize = 1;
11758       else
11759         mips_optimize = 2;
11760       break;
11761
11762     case 'g':
11763       if (arg == NULL)
11764         mips_debug = 2;
11765       else
11766         mips_debug = atoi (arg);
11767       break;
11768
11769     case OPTION_MIPS1:
11770       file_mips_isa = ISA_MIPS1;
11771       break;
11772
11773     case OPTION_MIPS2:
11774       file_mips_isa = ISA_MIPS2;
11775       break;
11776
11777     case OPTION_MIPS3:
11778       file_mips_isa = ISA_MIPS3;
11779       break;
11780
11781     case OPTION_MIPS4:
11782       file_mips_isa = ISA_MIPS4;
11783       break;
11784
11785     case OPTION_MIPS5:
11786       file_mips_isa = ISA_MIPS5;
11787       break;
11788
11789     case OPTION_MIPS32:
11790       file_mips_isa = ISA_MIPS32;
11791       break;
11792
11793     case OPTION_MIPS32R2:
11794       file_mips_isa = ISA_MIPS32R2;
11795       break;
11796
11797     case OPTION_MIPS64R2:
11798       file_mips_isa = ISA_MIPS64R2;
11799       break;
11800
11801     case OPTION_MIPS64:
11802       file_mips_isa = ISA_MIPS64;
11803       break;
11804
11805     case OPTION_MTUNE:
11806       mips_set_option_string (&mips_tune_string, arg);
11807       break;
11808
11809     case OPTION_MARCH:
11810       mips_set_option_string (&mips_arch_string, arg);
11811       break;
11812
11813     case OPTION_M4650:
11814       mips_set_option_string (&mips_arch_string, "4650");
11815       mips_set_option_string (&mips_tune_string, "4650");
11816       break;
11817
11818     case OPTION_NO_M4650:
11819       break;
11820
11821     case OPTION_M4010:
11822       mips_set_option_string (&mips_arch_string, "4010");
11823       mips_set_option_string (&mips_tune_string, "4010");
11824       break;
11825
11826     case OPTION_NO_M4010:
11827       break;
11828
11829     case OPTION_M4100:
11830       mips_set_option_string (&mips_arch_string, "4100");
11831       mips_set_option_string (&mips_tune_string, "4100");
11832       break;
11833
11834     case OPTION_NO_M4100:
11835       break;
11836
11837     case OPTION_M3900:
11838       mips_set_option_string (&mips_arch_string, "3900");
11839       mips_set_option_string (&mips_tune_string, "3900");
11840       break;
11841
11842     case OPTION_NO_M3900:
11843       break;
11844
11845     case OPTION_MDMX:
11846       mips_opts.ase_mdmx = 1;
11847       break;
11848
11849     case OPTION_NO_MDMX:
11850       mips_opts.ase_mdmx = 0;
11851       break;
11852
11853     case OPTION_DSP:
11854       mips_opts.ase_dsp = 1;
11855       mips_opts.ase_dspr2 = 0;
11856       break;
11857
11858     case OPTION_NO_DSP:
11859       mips_opts.ase_dsp = 0;
11860       mips_opts.ase_dspr2 = 0;
11861       break;
11862
11863     case OPTION_DSPR2:
11864       mips_opts.ase_dspr2 = 1;
11865       mips_opts.ase_dsp = 1;
11866       break;
11867
11868     case OPTION_NO_DSPR2:
11869       mips_opts.ase_dspr2 = 0;
11870       mips_opts.ase_dsp = 0;
11871       break;
11872
11873     case OPTION_MT:
11874       mips_opts.ase_mt = 1;
11875       break;
11876
11877     case OPTION_NO_MT:
11878       mips_opts.ase_mt = 0;
11879       break;
11880
11881     case OPTION_MIPS16:
11882       mips_opts.mips16 = 1;
11883       mips_no_prev_insn ();
11884       break;
11885
11886     case OPTION_NO_MIPS16:
11887       mips_opts.mips16 = 0;
11888       mips_no_prev_insn ();
11889       break;
11890
11891     case OPTION_MIPS3D:
11892       mips_opts.ase_mips3d = 1;
11893       break;
11894
11895     case OPTION_NO_MIPS3D:
11896       mips_opts.ase_mips3d = 0;
11897       break;
11898
11899     case OPTION_SMARTMIPS:
11900       mips_opts.ase_smartmips = 1;
11901       break;
11902
11903     case OPTION_NO_SMARTMIPS:
11904       mips_opts.ase_smartmips = 0;
11905       break;
11906
11907     case OPTION_FIX_24K:
11908       mips_fix_24k = 1;
11909       break;
11910
11911     case OPTION_NO_FIX_24K:
11912       mips_fix_24k = 0;
11913       break;
11914
11915     case OPTION_FIX_LOONGSON2F_JUMP:
11916       mips_fix_loongson2f_jump = TRUE;
11917       break;
11918
11919     case OPTION_NO_FIX_LOONGSON2F_JUMP:
11920       mips_fix_loongson2f_jump = FALSE;
11921       break;
11922
11923     case OPTION_FIX_LOONGSON2F_NOP:
11924       mips_fix_loongson2f_nop = TRUE;
11925       break;
11926
11927     case OPTION_NO_FIX_LOONGSON2F_NOP:
11928       mips_fix_loongson2f_nop = FALSE;
11929       break;
11930
11931     case OPTION_FIX_VR4120:
11932       mips_fix_vr4120 = 1;
11933       break;
11934
11935     case OPTION_NO_FIX_VR4120:
11936       mips_fix_vr4120 = 0;
11937       break;
11938
11939     case OPTION_FIX_VR4130:
11940       mips_fix_vr4130 = 1;
11941       break;
11942
11943     case OPTION_NO_FIX_VR4130:
11944       mips_fix_vr4130 = 0;
11945       break;
11946
11947     case OPTION_FIX_CN63XXP1:
11948       mips_fix_cn63xxp1 = TRUE;
11949       break;
11950
11951     case OPTION_NO_FIX_CN63XXP1:
11952       mips_fix_cn63xxp1 = FALSE;
11953       break;
11954
11955     case OPTION_RELAX_BRANCH:
11956       mips_relax_branch = 1;
11957       break;
11958
11959     case OPTION_NO_RELAX_BRANCH:
11960       mips_relax_branch = 0;
11961       break;
11962
11963     case OPTION_MSHARED:
11964       mips_in_shared = TRUE;
11965       break;
11966
11967     case OPTION_MNO_SHARED:
11968       mips_in_shared = FALSE;
11969       break;
11970
11971     case OPTION_MSYM32:
11972       mips_opts.sym32 = TRUE;
11973       break;
11974
11975     case OPTION_MNO_SYM32:
11976       mips_opts.sym32 = FALSE;
11977       break;
11978
11979 #ifdef OBJ_ELF
11980       /* When generating ELF code, we permit -KPIC and -call_shared to
11981          select SVR4_PIC, and -non_shared to select no PIC.  This is
11982          intended to be compatible with Irix 5.  */
11983     case OPTION_CALL_SHARED:
11984       if (!IS_ELF)
11985         {
11986           as_bad (_("-call_shared is supported only for ELF format"));
11987           return 0;
11988         }
11989       mips_pic = SVR4_PIC;
11990       mips_abicalls = TRUE;
11991       break;
11992
11993     case OPTION_CALL_NONPIC:
11994       if (!IS_ELF)
11995         {
11996           as_bad (_("-call_nonpic is supported only for ELF format"));
11997           return 0;
11998         }
11999       mips_pic = NO_PIC;
12000       mips_abicalls = TRUE;
12001       break;
12002
12003     case OPTION_NON_SHARED:
12004       if (!IS_ELF)
12005         {
12006           as_bad (_("-non_shared is supported only for ELF format"));
12007           return 0;
12008         }
12009       mips_pic = NO_PIC;
12010       mips_abicalls = FALSE;
12011       break;
12012
12013       /* The -xgot option tells the assembler to use 32 bit offsets
12014          when accessing the got in SVR4_PIC mode.  It is for Irix
12015          compatibility.  */
12016     case OPTION_XGOT:
12017       mips_big_got = 1;
12018       break;
12019 #endif /* OBJ_ELF */
12020
12021     case 'G':
12022       g_switch_value = atoi (arg);
12023       g_switch_seen = 1;
12024       break;
12025
12026       /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
12027          and -mabi=64.  */
12028     case OPTION_32:
12029       if (IS_ELF)
12030         mips_abi = O32_ABI;
12031       /* We silently ignore -32 for non-ELF targets.  This greatly
12032          simplifies the construction of the MIPS GAS test cases.  */
12033       break;
12034
12035 #ifdef OBJ_ELF
12036     case OPTION_N32:
12037       if (!IS_ELF)
12038         {
12039           as_bad (_("-n32 is supported for ELF format only"));
12040           return 0;
12041         }
12042       mips_abi = N32_ABI;
12043       break;
12044
12045     case OPTION_64:
12046       if (!IS_ELF)
12047         {
12048           as_bad (_("-64 is supported for ELF format only"));
12049           return 0;
12050         }
12051       mips_abi = N64_ABI;
12052       if (!support_64bit_objects())
12053         as_fatal (_("No compiled in support for 64 bit object file format"));
12054       break;
12055 #endif /* OBJ_ELF */
12056
12057     case OPTION_GP32:
12058       file_mips_gp32 = 1;
12059       break;
12060
12061     case OPTION_GP64:
12062       file_mips_gp32 = 0;
12063       break;
12064
12065     case OPTION_FP32:
12066       file_mips_fp32 = 1;
12067       break;
12068
12069     case OPTION_FP64:
12070       file_mips_fp32 = 0;
12071       break;
12072
12073     case OPTION_SINGLE_FLOAT:
12074       file_mips_single_float = 1;
12075       break;
12076
12077     case OPTION_DOUBLE_FLOAT:
12078       file_mips_single_float = 0;
12079       break;
12080
12081     case OPTION_SOFT_FLOAT:
12082       file_mips_soft_float = 1;
12083       break;
12084
12085     case OPTION_HARD_FLOAT:
12086       file_mips_soft_float = 0;
12087       break;
12088
12089 #ifdef OBJ_ELF
12090     case OPTION_MABI:
12091       if (!IS_ELF)
12092         {
12093           as_bad (_("-mabi is supported for ELF format only"));
12094           return 0;
12095         }
12096       if (strcmp (arg, "32") == 0)
12097         mips_abi = O32_ABI;
12098       else if (strcmp (arg, "o64") == 0)
12099         mips_abi = O64_ABI;
12100       else if (strcmp (arg, "n32") == 0)
12101         mips_abi = N32_ABI;
12102       else if (strcmp (arg, "64") == 0)
12103         {
12104           mips_abi = N64_ABI;
12105           if (! support_64bit_objects())
12106             as_fatal (_("No compiled in support for 64 bit object file "
12107                         "format"));
12108         }
12109       else if (strcmp (arg, "eabi") == 0)
12110         mips_abi = EABI_ABI;
12111       else
12112         {
12113           as_fatal (_("invalid abi -mabi=%s"), arg);
12114           return 0;
12115         }
12116       break;
12117 #endif /* OBJ_ELF */
12118
12119     case OPTION_M7000_HILO_FIX:
12120       mips_7000_hilo_fix = TRUE;
12121       break;
12122
12123     case OPTION_MNO_7000_HILO_FIX:
12124       mips_7000_hilo_fix = FALSE;
12125       break;
12126
12127 #ifdef OBJ_ELF
12128     case OPTION_MDEBUG:
12129       mips_flag_mdebug = TRUE;
12130       break;
12131
12132     case OPTION_NO_MDEBUG:
12133       mips_flag_mdebug = FALSE;
12134       break;
12135
12136     case OPTION_PDR:
12137       mips_flag_pdr = TRUE;
12138       break;
12139
12140     case OPTION_NO_PDR:
12141       mips_flag_pdr = FALSE;
12142       break;
12143
12144     case OPTION_MVXWORKS_PIC:
12145       mips_pic = VXWORKS_PIC;
12146       break;
12147 #endif /* OBJ_ELF */
12148
12149     default:
12150       return 0;
12151     }
12152
12153     mips_fix_loongson2f = mips_fix_loongson2f_nop || mips_fix_loongson2f_jump;
12154
12155   return 1;
12156 }
12157 \f
12158 /* Set up globals to generate code for the ISA or processor
12159    described by INFO.  */
12160
12161 static void
12162 mips_set_architecture (const struct mips_cpu_info *info)
12163 {
12164   if (info != 0)
12165     {
12166       file_mips_arch = info->cpu;
12167       mips_opts.arch = info->cpu;
12168       mips_opts.isa = info->isa;
12169     }
12170 }
12171
12172
12173 /* Likewise for tuning.  */
12174
12175 static void
12176 mips_set_tune (const struct mips_cpu_info *info)
12177 {
12178   if (info != 0)
12179     mips_tune = info->cpu;
12180 }
12181
12182
12183 void
12184 mips_after_parse_args (void)
12185 {
12186   const struct mips_cpu_info *arch_info = 0;
12187   const struct mips_cpu_info *tune_info = 0;
12188
12189   /* GP relative stuff not working for PE */
12190   if (strncmp (TARGET_OS, "pe", 2) == 0)
12191     {
12192       if (g_switch_seen && g_switch_value != 0)
12193         as_bad (_("-G not supported in this configuration."));
12194       g_switch_value = 0;
12195     }
12196
12197   if (mips_abi == NO_ABI)
12198     mips_abi = MIPS_DEFAULT_ABI;
12199
12200   /* The following code determines the architecture and register size.
12201      Similar code was added to GCC 3.3 (see override_options() in
12202      config/mips/mips.c).  The GAS and GCC code should be kept in sync
12203      as much as possible.  */
12204
12205   if (mips_arch_string != 0)
12206     arch_info = mips_parse_cpu ("-march", mips_arch_string);
12207
12208   if (file_mips_isa != ISA_UNKNOWN)
12209     {
12210       /* Handle -mipsN.  At this point, file_mips_isa contains the
12211          ISA level specified by -mipsN, while arch_info->isa contains
12212          the -march selection (if any).  */
12213       if (arch_info != 0)
12214         {
12215           /* -march takes precedence over -mipsN, since it is more descriptive.
12216              There's no harm in specifying both as long as the ISA levels
12217              are the same.  */
12218           if (file_mips_isa != arch_info->isa)
12219             as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
12220                     mips_cpu_info_from_isa (file_mips_isa)->name,
12221                     mips_cpu_info_from_isa (arch_info->isa)->name);
12222         }
12223       else
12224         arch_info = mips_cpu_info_from_isa (file_mips_isa);
12225     }
12226
12227   if (arch_info == 0)
12228     arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
12229
12230   if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
12231     as_bad (_("-march=%s is not compatible with the selected ABI"),
12232             arch_info->name);
12233
12234   mips_set_architecture (arch_info);
12235
12236   /* Optimize for file_mips_arch, unless -mtune selects a different processor.  */
12237   if (mips_tune_string != 0)
12238     tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
12239
12240   if (tune_info == 0)
12241     mips_set_tune (arch_info);
12242   else
12243     mips_set_tune (tune_info);
12244
12245   if (file_mips_gp32 >= 0)
12246     {
12247       /* The user specified the size of the integer registers.  Make sure
12248          it agrees with the ABI and ISA.  */
12249       if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
12250         as_bad (_("-mgp64 used with a 32-bit processor"));
12251       else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
12252         as_bad (_("-mgp32 used with a 64-bit ABI"));
12253       else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
12254         as_bad (_("-mgp64 used with a 32-bit ABI"));
12255     }
12256   else
12257     {
12258       /* Infer the integer register size from the ABI and processor.
12259          Restrict ourselves to 32-bit registers if that's all the
12260          processor has, or if the ABI cannot handle 64-bit registers.  */
12261       file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
12262                         || !ISA_HAS_64BIT_REGS (mips_opts.isa));
12263     }
12264
12265   switch (file_mips_fp32)
12266     {
12267     default:
12268     case -1:
12269       /* No user specified float register size.
12270          ??? GAS treats single-float processors as though they had 64-bit
12271          float registers (although it complains when double-precision
12272          instructions are used).  As things stand, saying they have 32-bit
12273          registers would lead to spurious "register must be even" messages.
12274          So here we assume float registers are never smaller than the
12275          integer ones.  */
12276       if (file_mips_gp32 == 0)
12277         /* 64-bit integer registers implies 64-bit float registers.  */
12278         file_mips_fp32 = 0;
12279       else if ((mips_opts.ase_mips3d > 0 || mips_opts.ase_mdmx > 0)
12280                && ISA_HAS_64BIT_FPRS (mips_opts.isa))
12281         /* -mips3d and -mdmx imply 64-bit float registers, if possible.  */
12282         file_mips_fp32 = 0;
12283       else
12284         /* 32-bit float registers.  */
12285         file_mips_fp32 = 1;
12286       break;
12287
12288     /* The user specified the size of the float registers.  Check if it
12289        agrees with the ABI and ISA.  */
12290     case 0:
12291       if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
12292         as_bad (_("-mfp64 used with a 32-bit fpu"));
12293       else if (ABI_NEEDS_32BIT_REGS (mips_abi)
12294                && !ISA_HAS_MXHC1 (mips_opts.isa))
12295         as_warn (_("-mfp64 used with a 32-bit ABI"));
12296       break;
12297     case 1:
12298       if (ABI_NEEDS_64BIT_REGS (mips_abi))
12299         as_warn (_("-mfp32 used with a 64-bit ABI"));
12300       break;
12301     }
12302
12303   /* End of GCC-shared inference code.  */
12304
12305   /* This flag is set when we have a 64-bit capable CPU but use only
12306      32-bit wide registers.  Note that EABI does not use it.  */
12307   if (ISA_HAS_64BIT_REGS (mips_opts.isa)
12308       && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
12309           || mips_abi == O32_ABI))
12310     mips_32bitmode = 1;
12311
12312   if (mips_opts.isa == ISA_MIPS1 && mips_trap)
12313     as_bad (_("trap exception not supported at ISA 1"));
12314
12315   /* If the selected architecture includes support for ASEs, enable
12316      generation of code for them.  */
12317   if (mips_opts.mips16 == -1)
12318     mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
12319   if (mips_opts.ase_mips3d == -1)
12320     mips_opts.ase_mips3d = ((arch_info->flags & MIPS_CPU_ASE_MIPS3D)
12321                             && file_mips_fp32 == 0) ? 1 : 0;
12322   if (mips_opts.ase_mips3d && file_mips_fp32 == 1)
12323     as_bad (_("-mfp32 used with -mips3d"));
12324
12325   if (mips_opts.ase_mdmx == -1)
12326     mips_opts.ase_mdmx = ((arch_info->flags & MIPS_CPU_ASE_MDMX)
12327                           && file_mips_fp32 == 0) ? 1 : 0;
12328   if (mips_opts.ase_mdmx && file_mips_fp32 == 1)
12329     as_bad (_("-mfp32 used with -mdmx"));
12330
12331   if (mips_opts.ase_smartmips == -1)
12332     mips_opts.ase_smartmips = (arch_info->flags & MIPS_CPU_ASE_SMARTMIPS) ? 1 : 0;
12333   if (mips_opts.ase_smartmips && !ISA_SUPPORTS_SMARTMIPS)
12334     as_warn (_("%s ISA does not support SmartMIPS"), 
12335              mips_cpu_info_from_isa (mips_opts.isa)->name);
12336
12337   if (mips_opts.ase_dsp == -1)
12338     mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0;
12339   if (mips_opts.ase_dsp && !ISA_SUPPORTS_DSP_ASE)
12340     as_warn (_("%s ISA does not support DSP ASE"), 
12341              mips_cpu_info_from_isa (mips_opts.isa)->name);
12342
12343   if (mips_opts.ase_dspr2 == -1)
12344     {
12345       mips_opts.ase_dspr2 = (arch_info->flags & MIPS_CPU_ASE_DSPR2) ? 1 : 0;
12346       mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0;
12347     }
12348   if (mips_opts.ase_dspr2 && !ISA_SUPPORTS_DSPR2_ASE)
12349     as_warn (_("%s ISA does not support DSP R2 ASE"),
12350              mips_cpu_info_from_isa (mips_opts.isa)->name);
12351
12352   if (mips_opts.ase_mt == -1)
12353     mips_opts.ase_mt = (arch_info->flags & MIPS_CPU_ASE_MT) ? 1 : 0;
12354   if (mips_opts.ase_mt && !ISA_SUPPORTS_MT_ASE)
12355     as_warn (_("%s ISA does not support MT ASE"),
12356              mips_cpu_info_from_isa (mips_opts.isa)->name);
12357
12358   file_mips_isa = mips_opts.isa;
12359   file_ase_mips3d = mips_opts.ase_mips3d;
12360   file_ase_mdmx = mips_opts.ase_mdmx;
12361   file_ase_smartmips = mips_opts.ase_smartmips;
12362   file_ase_dsp = mips_opts.ase_dsp;
12363   file_ase_dspr2 = mips_opts.ase_dspr2;
12364   file_ase_mt = mips_opts.ase_mt;
12365   mips_opts.gp32 = file_mips_gp32;
12366   mips_opts.fp32 = file_mips_fp32;
12367   mips_opts.soft_float = file_mips_soft_float;
12368   mips_opts.single_float = file_mips_single_float;
12369
12370   if (mips_flag_mdebug < 0)
12371     {
12372 #ifdef OBJ_MAYBE_ECOFF
12373       if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour)
12374         mips_flag_mdebug = 1;
12375       else
12376 #endif /* OBJ_MAYBE_ECOFF */
12377         mips_flag_mdebug = 0;
12378     }
12379 }
12380 \f
12381 void
12382 mips_init_after_args (void)
12383 {
12384   /* initialize opcodes */
12385   bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
12386   mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
12387 }
12388
12389 long
12390 md_pcrel_from (fixS *fixP)
12391 {
12392   valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
12393   switch (fixP->fx_r_type)
12394     {
12395     case BFD_RELOC_16_PCREL_S2:
12396     case BFD_RELOC_MIPS_JMP:
12397       /* Return the address of the delay slot.  */
12398       return addr + 4;
12399     default:
12400       /* We have no relocation type for PC relative MIPS16 instructions.  */
12401       if (fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != now_seg)
12402         as_bad_where (fixP->fx_file, fixP->fx_line,
12403                       _("PC relative MIPS16 instruction references a different section"));
12404       return addr;
12405     }
12406 }
12407
12408 /* This is called before the symbol table is processed.  In order to
12409    work with gcc when using mips-tfile, we must keep all local labels.
12410    However, in other cases, we want to discard them.  If we were
12411    called with -g, but we didn't see any debugging information, it may
12412    mean that gcc is smuggling debugging information through to
12413    mips-tfile, in which case we must generate all local labels.  */
12414
12415 void
12416 mips_frob_file_before_adjust (void)
12417 {
12418 #ifndef NO_ECOFF_DEBUGGING
12419   if (ECOFF_DEBUGGING
12420       && mips_debug != 0
12421       && ! ecoff_debugging_seen)
12422     flag_keep_locals = 1;
12423 #endif
12424 }
12425
12426 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
12427    the corresponding LO16 reloc.  This is called before md_apply_fix and
12428    tc_gen_reloc.  Unmatched relocs can only be generated by use of explicit
12429    relocation operators.
12430
12431    For our purposes, a %lo() expression matches a %got() or %hi()
12432    expression if:
12433
12434       (a) it refers to the same symbol; and
12435       (b) the offset applied in the %lo() expression is no lower than
12436           the offset applied in the %got() or %hi().
12437
12438    (b) allows us to cope with code like:
12439
12440         lui     $4,%hi(foo)
12441         lh      $4,%lo(foo+2)($4)
12442
12443    ...which is legal on RELA targets, and has a well-defined behaviour
12444    if the user knows that adding 2 to "foo" will not induce a carry to
12445    the high 16 bits.
12446
12447    When several %lo()s match a particular %got() or %hi(), we use the
12448    following rules to distinguish them:
12449
12450      (1) %lo()s with smaller offsets are a better match than %lo()s with
12451          higher offsets.
12452
12453      (2) %lo()s with no matching %got() or %hi() are better than those
12454          that already have a matching %got() or %hi().
12455
12456      (3) later %lo()s are better than earlier %lo()s.
12457
12458    These rules are applied in order.
12459
12460    (1) means, among other things, that %lo()s with identical offsets are
12461    chosen if they exist.
12462
12463    (2) means that we won't associate several high-part relocations with
12464    the same low-part relocation unless there's no alternative.  Having
12465    several high parts for the same low part is a GNU extension; this rule
12466    allows careful users to avoid it.
12467
12468    (3) is purely cosmetic.  mips_hi_fixup_list is is in reverse order,
12469    with the last high-part relocation being at the front of the list.
12470    It therefore makes sense to choose the last matching low-part
12471    relocation, all other things being equal.  It's also easier
12472    to code that way.  */
12473
12474 void
12475 mips_frob_file (void)
12476 {
12477   struct mips_hi_fixup *l;
12478   bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED;
12479
12480   for (l = mips_hi_fixup_list; l != NULL; l = l->next)
12481     {
12482       segment_info_type *seginfo;
12483       bfd_boolean matched_lo_p;
12484       fixS **hi_pos, **lo_pos, **pos;
12485
12486       gas_assert (reloc_needs_lo_p (l->fixp->fx_r_type));
12487
12488       /* If a GOT16 relocation turns out to be against a global symbol,
12489          there isn't supposed to be a matching LO.  */
12490       if (got16_reloc_p (l->fixp->fx_r_type)
12491           && !pic_need_relax (l->fixp->fx_addsy, l->seg))
12492         continue;
12493
12494       /* Check quickly whether the next fixup happens to be a matching %lo.  */
12495       if (fixup_has_matching_lo_p (l->fixp))
12496         continue;
12497
12498       seginfo = seg_info (l->seg);
12499
12500       /* Set HI_POS to the position of this relocation in the chain.
12501          Set LO_POS to the position of the chosen low-part relocation.
12502          MATCHED_LO_P is true on entry to the loop if *POS is a low-part
12503          relocation that matches an immediately-preceding high-part
12504          relocation.  */
12505       hi_pos = NULL;
12506       lo_pos = NULL;
12507       matched_lo_p = FALSE;
12508       looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type);
12509
12510       for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
12511         {
12512           if (*pos == l->fixp)
12513             hi_pos = pos;
12514
12515           if ((*pos)->fx_r_type == looking_for_rtype
12516               && symbol_same_p ((*pos)->fx_addsy, l->fixp->fx_addsy)
12517               && (*pos)->fx_offset >= l->fixp->fx_offset
12518               && (lo_pos == NULL
12519                   || (*pos)->fx_offset < (*lo_pos)->fx_offset
12520                   || (!matched_lo_p
12521                       && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
12522             lo_pos = pos;
12523
12524           matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
12525                           && fixup_has_matching_lo_p (*pos));
12526         }
12527
12528       /* If we found a match, remove the high-part relocation from its
12529          current position and insert it before the low-part relocation.
12530          Make the offsets match so that fixup_has_matching_lo_p()
12531          will return true.
12532
12533          We don't warn about unmatched high-part relocations since some
12534          versions of gcc have been known to emit dead "lui ...%hi(...)"
12535          instructions.  */
12536       if (lo_pos != NULL)
12537         {
12538           l->fixp->fx_offset = (*lo_pos)->fx_offset;
12539           if (l->fixp->fx_next != *lo_pos)
12540             {
12541               *hi_pos = l->fixp->fx_next;
12542               l->fixp->fx_next = *lo_pos;
12543               *lo_pos = l->fixp;
12544             }
12545         }
12546     }
12547 }
12548
12549 /* We may have combined relocations without symbols in the N32/N64 ABI.
12550    We have to prevent gas from dropping them.  */
12551
12552 int
12553 mips_force_relocation (fixS *fixp)
12554 {
12555   if (generic_force_reloc (fixp))
12556     return 1;
12557
12558   if (HAVE_NEWABI
12559       && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr
12560       && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB
12561           || hi16_reloc_p (fixp->fx_r_type)
12562           || lo16_reloc_p (fixp->fx_r_type)))
12563     return 1;
12564
12565   return 0;
12566 }
12567
12568 /* Apply a fixup to the object file.  */
12569
12570 void
12571 md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
12572 {
12573   bfd_byte *buf;
12574   long insn;
12575   reloc_howto_type *howto;
12576
12577   /* We ignore generic BFD relocations we don't know about.  */
12578   howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
12579   if (! howto)
12580     return;
12581
12582   gas_assert (fixP->fx_size == 4
12583               || fixP->fx_r_type == BFD_RELOC_16
12584               || fixP->fx_r_type == BFD_RELOC_64
12585               || fixP->fx_r_type == BFD_RELOC_CTOR
12586               || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
12587               || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
12588               || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
12589               || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
12590
12591   buf = (bfd_byte *) (fixP->fx_frag->fr_literal + fixP->fx_where);
12592
12593   gas_assert (!fixP->fx_pcrel || fixP->fx_r_type == BFD_RELOC_16_PCREL_S2);
12594
12595   /* Don't treat parts of a composite relocation as done.  There are two
12596      reasons for this:
12597
12598      (1) The second and third parts will be against 0 (RSS_UNDEF) but
12599          should nevertheless be emitted if the first part is.
12600
12601      (2) In normal usage, composite relocations are never assembly-time
12602          constants.  The easiest way of dealing with the pathological
12603          exceptions is to generate a relocation against STN_UNDEF and
12604          leave everything up to the linker.  */
12605   if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0)
12606     fixP->fx_done = 1;
12607
12608   switch (fixP->fx_r_type)
12609     {
12610     case BFD_RELOC_MIPS_TLS_GD:
12611     case BFD_RELOC_MIPS_TLS_LDM:
12612     case BFD_RELOC_MIPS_TLS_DTPREL32:
12613     case BFD_RELOC_MIPS_TLS_DTPREL64:
12614     case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
12615     case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
12616     case BFD_RELOC_MIPS_TLS_GOTTPREL:
12617     case BFD_RELOC_MIPS_TLS_TPREL_HI16:
12618     case BFD_RELOC_MIPS_TLS_TPREL_LO16:
12619       S_SET_THREAD_LOCAL (fixP->fx_addsy);
12620       /* fall through */
12621
12622     case BFD_RELOC_MIPS_JMP:
12623     case BFD_RELOC_MIPS_SHIFT5:
12624     case BFD_RELOC_MIPS_SHIFT6:
12625     case BFD_RELOC_MIPS_GOT_DISP:
12626     case BFD_RELOC_MIPS_GOT_PAGE:
12627     case BFD_RELOC_MIPS_GOT_OFST:
12628     case BFD_RELOC_MIPS_SUB:
12629     case BFD_RELOC_MIPS_INSERT_A:
12630     case BFD_RELOC_MIPS_INSERT_B:
12631     case BFD_RELOC_MIPS_DELETE:
12632     case BFD_RELOC_MIPS_HIGHEST:
12633     case BFD_RELOC_MIPS_HIGHER:
12634     case BFD_RELOC_MIPS_SCN_DISP:
12635     case BFD_RELOC_MIPS_REL16:
12636     case BFD_RELOC_MIPS_RELGOT:
12637     case BFD_RELOC_MIPS_JALR:
12638     case BFD_RELOC_HI16:
12639     case BFD_RELOC_HI16_S:
12640     case BFD_RELOC_GPREL16:
12641     case BFD_RELOC_MIPS_LITERAL:
12642     case BFD_RELOC_MIPS_CALL16:
12643     case BFD_RELOC_MIPS_GOT16:
12644     case BFD_RELOC_GPREL32:
12645     case BFD_RELOC_MIPS_GOT_HI16:
12646     case BFD_RELOC_MIPS_GOT_LO16:
12647     case BFD_RELOC_MIPS_CALL_HI16:
12648     case BFD_RELOC_MIPS_CALL_LO16:
12649     case BFD_RELOC_MIPS16_GPREL:
12650     case BFD_RELOC_MIPS16_GOT16:
12651     case BFD_RELOC_MIPS16_CALL16:
12652     case BFD_RELOC_MIPS16_HI16:
12653     case BFD_RELOC_MIPS16_HI16_S:
12654     case BFD_RELOC_MIPS16_JMP:
12655       /* Nothing needed to do.  The value comes from the reloc entry.  */
12656       break;
12657
12658     case BFD_RELOC_64:
12659       /* This is handled like BFD_RELOC_32, but we output a sign
12660          extended value if we are only 32 bits.  */
12661       if (fixP->fx_done)
12662         {
12663           if (8 <= sizeof (valueT))
12664             md_number_to_chars ((char *) buf, *valP, 8);
12665           else
12666             {
12667               valueT hiv;
12668
12669               if ((*valP & 0x80000000) != 0)
12670                 hiv = 0xffffffff;
12671               else
12672                 hiv = 0;
12673               md_number_to_chars ((char *)(buf + (target_big_endian ? 4 : 0)),
12674                                   *valP, 4);
12675               md_number_to_chars ((char *)(buf + (target_big_endian ? 0 : 4)),
12676                                   hiv, 4);
12677             }
12678         }
12679       break;
12680
12681     case BFD_RELOC_RVA:
12682     case BFD_RELOC_32:
12683     case BFD_RELOC_16:
12684       /* If we are deleting this reloc entry, we must fill in the
12685          value now.  This can happen if we have a .word which is not
12686          resolved when it appears but is later defined.  */
12687       if (fixP->fx_done)
12688         md_number_to_chars ((char *) buf, *valP, fixP->fx_size);
12689       break;
12690
12691     case BFD_RELOC_LO16:
12692     case BFD_RELOC_MIPS16_LO16:
12693       /* FIXME: Now that embedded-PIC is gone, some of this code/comment
12694          may be safe to remove, but if so it's not obvious.  */
12695       /* When handling an embedded PIC switch statement, we can wind
12696          up deleting a LO16 reloc.  See the 'o' case in mips_ip.  */
12697       if (fixP->fx_done)
12698         {
12699           if (*valP + 0x8000 > 0xffff)
12700             as_bad_where (fixP->fx_file, fixP->fx_line,
12701                           _("relocation overflow"));
12702           if (target_big_endian)
12703             buf += 2;
12704           md_number_to_chars ((char *) buf, *valP, 2);
12705         }
12706       break;
12707
12708     case BFD_RELOC_16_PCREL_S2:
12709       if ((*valP & 0x3) != 0)
12710         as_bad_where (fixP->fx_file, fixP->fx_line,
12711                       _("Branch to misaligned address (%lx)"), (long) *valP);
12712
12713       /* We need to save the bits in the instruction since fixup_segment()
12714          might be deleting the relocation entry (i.e., a branch within
12715          the current segment).  */
12716       if (! fixP->fx_done)
12717         break;
12718
12719       /* Update old instruction data.  */
12720       if (target_big_endian)
12721         insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
12722       else
12723         insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
12724
12725       if (*valP + 0x20000 <= 0x3ffff)
12726         {
12727           insn |= (*valP >> 2) & 0xffff;
12728           md_number_to_chars ((char *) buf, insn, 4);
12729         }
12730       else if (mips_pic == NO_PIC
12731                && fixP->fx_done
12732                && fixP->fx_frag->fr_address >= text_section->vma
12733                && (fixP->fx_frag->fr_address
12734                    < text_section->vma + bfd_get_section_size (text_section))
12735                && ((insn & 0xffff0000) == 0x10000000     /* beq $0,$0 */
12736                    || (insn & 0xffff0000) == 0x04010000  /* bgez $0 */
12737                    || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
12738         {
12739           /* The branch offset is too large.  If this is an
12740              unconditional branch, and we are not generating PIC code,
12741              we can convert it to an absolute jump instruction.  */
12742           if ((insn & 0xffff0000) == 0x04110000)         /* bgezal $0 */
12743             insn = 0x0c000000;  /* jal */
12744           else
12745             insn = 0x08000000;  /* j */
12746           fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
12747           fixP->fx_done = 0;
12748           fixP->fx_addsy = section_symbol (text_section);
12749           *valP += md_pcrel_from (fixP);
12750           md_number_to_chars ((char *) buf, insn, 4);
12751         }
12752       else
12753         {
12754           /* If we got here, we have branch-relaxation disabled,
12755              and there's nothing we can do to fix this instruction
12756              without turning it into a longer sequence.  */
12757           as_bad_where (fixP->fx_file, fixP->fx_line,
12758                         _("Branch out of range"));
12759         }
12760       break;
12761
12762     case BFD_RELOC_VTABLE_INHERIT:
12763       fixP->fx_done = 0;
12764       if (fixP->fx_addsy
12765           && !S_IS_DEFINED (fixP->fx_addsy)
12766           && !S_IS_WEAK (fixP->fx_addsy))
12767         S_SET_WEAK (fixP->fx_addsy);
12768       break;
12769
12770     case BFD_RELOC_VTABLE_ENTRY:
12771       fixP->fx_done = 0;
12772       break;
12773
12774     default:
12775       internalError ();
12776     }
12777
12778   /* Remember value for tc_gen_reloc.  */
12779   fixP->fx_addnumber = *valP;
12780 }
12781
12782 static symbolS *
12783 get_symbol (void)
12784 {
12785   int c;
12786   char *name;
12787   symbolS *p;
12788
12789   name = input_line_pointer;
12790   c = get_symbol_end ();
12791   p = (symbolS *) symbol_find_or_make (name);
12792   *input_line_pointer = c;
12793   return p;
12794 }
12795
12796 /* Align the current frag to a given power of two.  If a particular
12797    fill byte should be used, FILL points to an integer that contains
12798    that byte, otherwise FILL is null.
12799
12800    The MIPS assembler also automatically adjusts any preceding
12801    label.  */
12802
12803 static void
12804 mips_align (int to, int *fill, symbolS *label)
12805 {
12806   mips_emit_delays ();
12807   mips_record_mips16_mode ();
12808   if (fill == NULL && subseg_text_p (now_seg))
12809     frag_align_code (to, 0);
12810   else
12811     frag_align (to, fill ? *fill : 0, 0);
12812   record_alignment (now_seg, to);
12813   if (label != NULL)
12814     {
12815       gas_assert (S_GET_SEGMENT (label) == now_seg);
12816       symbol_set_frag (label, frag_now);
12817       S_SET_VALUE (label, (valueT) frag_now_fix ());
12818     }
12819 }
12820
12821 /* Align to a given power of two.  .align 0 turns off the automatic
12822    alignment used by the data creating pseudo-ops.  */
12823
12824 static void
12825 s_align (int x ATTRIBUTE_UNUSED)
12826 {
12827   int temp, fill_value, *fill_ptr;
12828   long max_alignment = 28;
12829
12830   /* o Note that the assembler pulls down any immediately preceding label
12831        to the aligned address.
12832      o It's not documented but auto alignment is reinstated by
12833        a .align pseudo instruction.
12834      o Note also that after auto alignment is turned off the mips assembler
12835        issues an error on attempt to assemble an improperly aligned data item.
12836        We don't.  */
12837
12838   temp = get_absolute_expression ();
12839   if (temp > max_alignment)
12840     as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
12841   else if (temp < 0)
12842     {
12843       as_warn (_("Alignment negative: 0 assumed."));
12844       temp = 0;
12845     }
12846   if (*input_line_pointer == ',')
12847     {
12848       ++input_line_pointer;
12849       fill_value = get_absolute_expression ();
12850       fill_ptr = &fill_value;
12851     }
12852   else
12853     fill_ptr = 0;
12854   if (temp)
12855     {
12856       segment_info_type *si = seg_info (now_seg);
12857       struct insn_label_list *l = si->label_list;
12858       /* Auto alignment should be switched on by next section change.  */
12859       auto_align = 1;
12860       mips_align (temp, fill_ptr, l != NULL ? l->label : NULL);
12861     }
12862   else
12863     {
12864       auto_align = 0;
12865     }
12866
12867   demand_empty_rest_of_line ();
12868 }
12869
12870 static void
12871 s_change_sec (int sec)
12872 {
12873   segT seg;
12874
12875 #ifdef OBJ_ELF
12876   /* The ELF backend needs to know that we are changing sections, so
12877      that .previous works correctly.  We could do something like check
12878      for an obj_section_change_hook macro, but that might be confusing
12879      as it would not be appropriate to use it in the section changing
12880      functions in read.c, since obj-elf.c intercepts those.  FIXME:
12881      This should be cleaner, somehow.  */
12882   if (IS_ELF)
12883     obj_elf_section_change_hook ();
12884 #endif
12885
12886   mips_emit_delays ();
12887
12888   switch (sec)
12889     {
12890     case 't':
12891       s_text (0);
12892       break;
12893     case 'd':
12894       s_data (0);
12895       break;
12896     case 'b':
12897       subseg_set (bss_section, (subsegT) get_absolute_expression ());
12898       demand_empty_rest_of_line ();
12899       break;
12900
12901     case 'r':
12902       seg = subseg_new (RDATA_SECTION_NAME,
12903                         (subsegT) get_absolute_expression ());
12904       if (IS_ELF)
12905         {
12906           bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
12907                                                   | SEC_READONLY | SEC_RELOC
12908                                                   | SEC_DATA));
12909           if (strncmp (TARGET_OS, "elf", 3) != 0)
12910             record_alignment (seg, 4);
12911         }
12912       demand_empty_rest_of_line ();
12913       break;
12914
12915     case 's':
12916       seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
12917       if (IS_ELF)
12918         {
12919           bfd_set_section_flags (stdoutput, seg,
12920                                  SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
12921           if (strncmp (TARGET_OS, "elf", 3) != 0)
12922             record_alignment (seg, 4);
12923         }
12924       demand_empty_rest_of_line ();
12925       break;
12926
12927     case 'B':
12928       seg = subseg_new (".sbss", (subsegT) get_absolute_expression ());
12929       if (IS_ELF)
12930         {
12931           bfd_set_section_flags (stdoutput, seg, SEC_ALLOC);
12932           if (strncmp (TARGET_OS, "elf", 3) != 0)
12933             record_alignment (seg, 4);
12934         }
12935       demand_empty_rest_of_line ();
12936       break;
12937     }
12938
12939   auto_align = 1;
12940 }
12941
12942 void
12943 s_change_section (int ignore ATTRIBUTE_UNUSED)
12944 {
12945 #ifdef OBJ_ELF
12946   char *section_name;
12947   char c;
12948   char next_c = 0;
12949   int section_type;
12950   int section_flag;
12951   int section_entry_size;
12952   int section_alignment;
12953
12954   if (!IS_ELF)
12955     return;
12956
12957   section_name = input_line_pointer;
12958   c = get_symbol_end ();
12959   if (c)
12960     next_c = *(input_line_pointer + 1);
12961
12962   /* Do we have .section Name<,"flags">?  */
12963   if (c != ',' || (c == ',' && next_c == '"'))
12964     {
12965       /* just after name is now '\0'.  */
12966       *input_line_pointer = c;
12967       input_line_pointer = section_name;
12968       obj_elf_section (ignore);
12969       return;
12970     }
12971   input_line_pointer++;
12972
12973   /* Do we have .section Name<,type><,flag><,entry_size><,alignment>  */
12974   if (c == ',')
12975     section_type = get_absolute_expression ();
12976   else
12977     section_type = 0;
12978   if (*input_line_pointer++ == ',')
12979     section_flag = get_absolute_expression ();
12980   else
12981     section_flag = 0;
12982   if (*input_line_pointer++ == ',')
12983     section_entry_size = get_absolute_expression ();
12984   else
12985     section_entry_size = 0;
12986   if (*input_line_pointer++ == ',')
12987     section_alignment = get_absolute_expression ();
12988   else
12989     section_alignment = 0;
12990   /* FIXME: really ignore?  */
12991   (void) section_alignment;
12992
12993   section_name = xstrdup (section_name);
12994
12995   /* When using the generic form of .section (as implemented by obj-elf.c),
12996      there's no way to set the section type to SHT_MIPS_DWARF.  Users have
12997      traditionally had to fall back on the more common @progbits instead.
12998
12999      There's nothing really harmful in this, since bfd will correct
13000      SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file.  But it
13001      means that, for backwards compatibility, the special_section entries
13002      for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
13003
13004      Even so, we shouldn't force users of the MIPS .section syntax to
13005      incorrectly label the sections as SHT_PROGBITS.  The best compromise
13006      seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
13007      generic type-checking code.  */
13008   if (section_type == SHT_MIPS_DWARF)
13009     section_type = SHT_PROGBITS;
13010
13011   obj_elf_change_section (section_name, section_type, section_flag,
13012                           section_entry_size, 0, 0, 0);
13013
13014   if (now_seg->name != section_name)
13015     free (section_name);
13016 #endif /* OBJ_ELF */
13017 }
13018
13019 void
13020 mips_enable_auto_align (void)
13021 {
13022   auto_align = 1;
13023 }
13024
13025 static void
13026 s_cons (int log_size)
13027 {
13028   segment_info_type *si = seg_info (now_seg);
13029   struct insn_label_list *l = si->label_list;
13030   symbolS *label;
13031
13032   label = l != NULL ? l->label : NULL;
13033   mips_emit_delays ();
13034   if (log_size > 0 && auto_align)
13035     mips_align (log_size, 0, label);
13036   cons (1 << log_size);
13037   mips_clear_insn_labels ();
13038 }
13039
13040 static void
13041 s_float_cons (int type)
13042 {
13043   segment_info_type *si = seg_info (now_seg);
13044   struct insn_label_list *l = si->label_list;
13045   symbolS *label;
13046
13047   label = l != NULL ? l->label : NULL;
13048
13049   mips_emit_delays ();
13050
13051   if (auto_align)
13052     {
13053       if (type == 'd')
13054         mips_align (3, 0, label);
13055       else
13056         mips_align (2, 0, label);
13057     }
13058
13059   float_cons (type);
13060   mips_clear_insn_labels ();
13061 }
13062
13063 /* Handle .globl.  We need to override it because on Irix 5 you are
13064    permitted to say
13065        .globl foo .text
13066    where foo is an undefined symbol, to mean that foo should be
13067    considered to be the address of a function.  */
13068
13069 static void
13070 s_mips_globl (int x ATTRIBUTE_UNUSED)
13071 {
13072   char *name;
13073   int c;
13074   symbolS *symbolP;
13075   flagword flag;
13076
13077   do
13078     {
13079       name = input_line_pointer;
13080       c = get_symbol_end ();
13081       symbolP = symbol_find_or_make (name);
13082       S_SET_EXTERNAL (symbolP);
13083
13084       *input_line_pointer = c;
13085       SKIP_WHITESPACE ();
13086
13087       /* On Irix 5, every global symbol that is not explicitly labelled as
13088          being a function is apparently labelled as being an object.  */
13089       flag = BSF_OBJECT;
13090
13091       if (!is_end_of_line[(unsigned char) *input_line_pointer]
13092           && (*input_line_pointer != ','))
13093         {
13094           char *secname;
13095           asection *sec;
13096
13097           secname = input_line_pointer;
13098           c = get_symbol_end ();
13099           sec = bfd_get_section_by_name (stdoutput, secname);
13100           if (sec == NULL)
13101             as_bad (_("%s: no such section"), secname);
13102           *input_line_pointer = c;
13103
13104           if (sec != NULL && (sec->flags & SEC_CODE) != 0)
13105             flag = BSF_FUNCTION;
13106         }
13107
13108       symbol_get_bfdsym (symbolP)->flags |= flag;
13109
13110       c = *input_line_pointer;
13111       if (c == ',')
13112         {
13113           input_line_pointer++;
13114           SKIP_WHITESPACE ();
13115           if (is_end_of_line[(unsigned char) *input_line_pointer])
13116             c = '\n';
13117         }
13118     }
13119   while (c == ',');
13120
13121   demand_empty_rest_of_line ();
13122 }
13123
13124 static void
13125 s_option (int x ATTRIBUTE_UNUSED)
13126 {
13127   char *opt;
13128   char c;
13129
13130   opt = input_line_pointer;
13131   c = get_symbol_end ();
13132
13133   if (*opt == 'O')
13134     {
13135       /* FIXME: What does this mean?  */
13136     }
13137   else if (strncmp (opt, "pic", 3) == 0)
13138     {
13139       int i;
13140
13141       i = atoi (opt + 3);
13142       if (i == 0)
13143         mips_pic = NO_PIC;
13144       else if (i == 2)
13145         {
13146         mips_pic = SVR4_PIC;
13147           mips_abicalls = TRUE;
13148         }
13149       else
13150         as_bad (_(".option pic%d not supported"), i);
13151
13152       if (mips_pic == SVR4_PIC)
13153         {
13154           if (g_switch_seen && g_switch_value != 0)
13155             as_warn (_("-G may not be used with SVR4 PIC code"));
13156           g_switch_value = 0;
13157           bfd_set_gp_size (stdoutput, 0);
13158         }
13159     }
13160   else
13161     as_warn (_("Unrecognized option \"%s\""), opt);
13162
13163   *input_line_pointer = c;
13164   demand_empty_rest_of_line ();
13165 }
13166
13167 /* This structure is used to hold a stack of .set values.  */
13168
13169 struct mips_option_stack
13170 {
13171   struct mips_option_stack *next;
13172   struct mips_set_options options;
13173 };
13174
13175 static struct mips_option_stack *mips_opts_stack;
13176
13177 /* Handle the .set pseudo-op.  */
13178
13179 static void
13180 s_mipsset (int x ATTRIBUTE_UNUSED)
13181 {
13182   char *name = input_line_pointer, ch;
13183
13184   while (!is_end_of_line[(unsigned char) *input_line_pointer])
13185     ++input_line_pointer;
13186   ch = *input_line_pointer;
13187   *input_line_pointer = '\0';
13188
13189   if (strcmp (name, "reorder") == 0)
13190     {
13191       if (mips_opts.noreorder)
13192         end_noreorder ();
13193     }
13194   else if (strcmp (name, "noreorder") == 0)
13195     {
13196       if (!mips_opts.noreorder)
13197         start_noreorder ();
13198     }
13199   else if (strncmp (name, "at=", 3) == 0)
13200     {
13201       char *s = name + 3;
13202
13203       if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at))
13204         as_bad (_("Unrecognized register name `%s'"), s);
13205     }
13206   else if (strcmp (name, "at") == 0)
13207     {
13208       mips_opts.at = ATREG;
13209     }
13210   else if (strcmp (name, "noat") == 0)
13211     {
13212       mips_opts.at = ZERO;
13213     }
13214   else if (strcmp (name, "macro") == 0)
13215     {
13216       mips_opts.warn_about_macros = 0;
13217     }
13218   else if (strcmp (name, "nomacro") == 0)
13219     {
13220       if (mips_opts.noreorder == 0)
13221         as_bad (_("`noreorder' must be set before `nomacro'"));
13222       mips_opts.warn_about_macros = 1;
13223     }
13224   else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
13225     {
13226       mips_opts.nomove = 0;
13227     }
13228   else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
13229     {
13230       mips_opts.nomove = 1;
13231     }
13232   else if (strcmp (name, "bopt") == 0)
13233     {
13234       mips_opts.nobopt = 0;
13235     }
13236   else if (strcmp (name, "nobopt") == 0)
13237     {
13238       mips_opts.nobopt = 1;
13239     }
13240   else if (strcmp (name, "gp=default") == 0)
13241     mips_opts.gp32 = file_mips_gp32;
13242   else if (strcmp (name, "gp=32") == 0)
13243     mips_opts.gp32 = 1;
13244   else if (strcmp (name, "gp=64") == 0)
13245     {
13246       if (!ISA_HAS_64BIT_REGS (mips_opts.isa))
13247         as_warn (_("%s isa does not support 64-bit registers"),
13248                  mips_cpu_info_from_isa (mips_opts.isa)->name);
13249       mips_opts.gp32 = 0;
13250     }
13251   else if (strcmp (name, "fp=default") == 0)
13252     mips_opts.fp32 = file_mips_fp32;
13253   else if (strcmp (name, "fp=32") == 0)
13254     mips_opts.fp32 = 1;
13255   else if (strcmp (name, "fp=64") == 0)
13256     {
13257       if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
13258         as_warn (_("%s isa does not support 64-bit floating point registers"),
13259                  mips_cpu_info_from_isa (mips_opts.isa)->name);
13260       mips_opts.fp32 = 0;
13261     }
13262   else if (strcmp (name, "softfloat") == 0)
13263     mips_opts.soft_float = 1;
13264   else if (strcmp (name, "hardfloat") == 0)
13265     mips_opts.soft_float = 0;
13266   else if (strcmp (name, "singlefloat") == 0)
13267     mips_opts.single_float = 1;
13268   else if (strcmp (name, "doublefloat") == 0)
13269     mips_opts.single_float = 0;
13270   else if (strcmp (name, "mips16") == 0
13271            || strcmp (name, "MIPS-16") == 0)
13272     mips_opts.mips16 = 1;
13273   else if (strcmp (name, "nomips16") == 0
13274            || strcmp (name, "noMIPS-16") == 0)
13275     mips_opts.mips16 = 0;
13276   else if (strcmp (name, "smartmips") == 0)
13277     {
13278       if (!ISA_SUPPORTS_SMARTMIPS)
13279         as_warn (_("%s ISA does not support SmartMIPS ASE"), 
13280                  mips_cpu_info_from_isa (mips_opts.isa)->name);
13281       mips_opts.ase_smartmips = 1;
13282     }
13283   else if (strcmp (name, "nosmartmips") == 0)
13284     mips_opts.ase_smartmips = 0;
13285   else if (strcmp (name, "mips3d") == 0)
13286     mips_opts.ase_mips3d = 1;
13287   else if (strcmp (name, "nomips3d") == 0)
13288     mips_opts.ase_mips3d = 0;
13289   else if (strcmp (name, "mdmx") == 0)
13290     mips_opts.ase_mdmx = 1;
13291   else if (strcmp (name, "nomdmx") == 0)
13292     mips_opts.ase_mdmx = 0;
13293   else if (strcmp (name, "dsp") == 0)
13294     {
13295       if (!ISA_SUPPORTS_DSP_ASE)
13296         as_warn (_("%s ISA does not support DSP ASE"), 
13297                  mips_cpu_info_from_isa (mips_opts.isa)->name);
13298       mips_opts.ase_dsp = 1;
13299       mips_opts.ase_dspr2 = 0;
13300     }
13301   else if (strcmp (name, "nodsp") == 0)
13302     {
13303       mips_opts.ase_dsp = 0;
13304       mips_opts.ase_dspr2 = 0;
13305     }
13306   else if (strcmp (name, "dspr2") == 0)
13307     {
13308       if (!ISA_SUPPORTS_DSPR2_ASE)
13309         as_warn (_("%s ISA does not support DSP R2 ASE"),
13310                  mips_cpu_info_from_isa (mips_opts.isa)->name);
13311       mips_opts.ase_dspr2 = 1;
13312       mips_opts.ase_dsp = 1;
13313     }
13314   else if (strcmp (name, "nodspr2") == 0)
13315     {
13316       mips_opts.ase_dspr2 = 0;
13317       mips_opts.ase_dsp = 0;
13318     }
13319   else if (strcmp (name, "mt") == 0)
13320     {
13321       if (!ISA_SUPPORTS_MT_ASE)
13322         as_warn (_("%s ISA does not support MT ASE"), 
13323                  mips_cpu_info_from_isa (mips_opts.isa)->name);
13324       mips_opts.ase_mt = 1;
13325     }
13326   else if (strcmp (name, "nomt") == 0)
13327     mips_opts.ase_mt = 0;
13328   else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
13329     {
13330       int reset = 0;
13331
13332       /* Permit the user to change the ISA and architecture on the fly.
13333          Needless to say, misuse can cause serious problems.  */
13334       if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
13335         {
13336           reset = 1;
13337           mips_opts.isa = file_mips_isa;
13338           mips_opts.arch = file_mips_arch;
13339         }
13340       else if (strncmp (name, "arch=", 5) == 0)
13341         {
13342           const struct mips_cpu_info *p;
13343
13344           p = mips_parse_cpu("internal use", name + 5);
13345           if (!p)
13346             as_bad (_("unknown architecture %s"), name + 5);
13347           else
13348             {
13349               mips_opts.arch = p->cpu;
13350               mips_opts.isa = p->isa;
13351             }
13352         }
13353       else if (strncmp (name, "mips", 4) == 0)
13354         {
13355           const struct mips_cpu_info *p;
13356
13357           p = mips_parse_cpu("internal use", name);
13358           if (!p)
13359             as_bad (_("unknown ISA level %s"), name + 4);
13360           else
13361             {
13362               mips_opts.arch = p->cpu;
13363               mips_opts.isa = p->isa;
13364             }
13365         }
13366       else
13367         as_bad (_("unknown ISA or architecture %s"), name);
13368
13369       switch (mips_opts.isa)
13370         {
13371         case  0:
13372           break;
13373         case ISA_MIPS1:
13374         case ISA_MIPS2:
13375         case ISA_MIPS32:
13376         case ISA_MIPS32R2:
13377           mips_opts.gp32 = 1;
13378           mips_opts.fp32 = 1;
13379           break;
13380         case ISA_MIPS3:
13381         case ISA_MIPS4:
13382         case ISA_MIPS5:
13383         case ISA_MIPS64:
13384         case ISA_MIPS64R2:
13385           mips_opts.gp32 = 0;
13386           mips_opts.fp32 = 0;
13387           break;
13388         default:
13389           as_bad (_("unknown ISA level %s"), name + 4);
13390           break;
13391         }
13392       if (reset)
13393         {
13394           mips_opts.gp32 = file_mips_gp32;
13395           mips_opts.fp32 = file_mips_fp32;
13396         }
13397     }
13398   else if (strcmp (name, "autoextend") == 0)
13399     mips_opts.noautoextend = 0;
13400   else if (strcmp (name, "noautoextend") == 0)
13401     mips_opts.noautoextend = 1;
13402   else if (strcmp (name, "push") == 0)
13403     {
13404       struct mips_option_stack *s;
13405
13406       s = (struct mips_option_stack *) xmalloc (sizeof *s);
13407       s->next = mips_opts_stack;
13408       s->options = mips_opts;
13409       mips_opts_stack = s;
13410     }
13411   else if (strcmp (name, "pop") == 0)
13412     {
13413       struct mips_option_stack *s;
13414
13415       s = mips_opts_stack;
13416       if (s == NULL)
13417         as_bad (_(".set pop with no .set push"));
13418       else
13419         {
13420           /* If we're changing the reorder mode we need to handle
13421              delay slots correctly.  */
13422           if (s->options.noreorder && ! mips_opts.noreorder)
13423             start_noreorder ();
13424           else if (! s->options.noreorder && mips_opts.noreorder)
13425             end_noreorder ();
13426
13427           mips_opts = s->options;
13428           mips_opts_stack = s->next;
13429           free (s);
13430         }
13431     }
13432   else if (strcmp (name, "sym32") == 0)
13433     mips_opts.sym32 = TRUE;
13434   else if (strcmp (name, "nosym32") == 0)
13435     mips_opts.sym32 = FALSE;
13436   else if (strchr (name, ','))
13437     {
13438       /* Generic ".set" directive; use the generic handler.  */
13439       *input_line_pointer = ch;
13440       input_line_pointer = name;
13441       s_set (0);
13442       return;
13443     }
13444   else
13445     {
13446       as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
13447     }
13448   *input_line_pointer = ch;
13449   demand_empty_rest_of_line ();
13450 }
13451
13452 /* Handle the .abicalls pseudo-op.  I believe this is equivalent to
13453    .option pic2.  It means to generate SVR4 PIC calls.  */
13454
13455 static void
13456 s_abicalls (int ignore ATTRIBUTE_UNUSED)
13457 {
13458   mips_pic = SVR4_PIC;
13459   mips_abicalls = TRUE;
13460
13461   if (g_switch_seen && g_switch_value != 0)
13462     as_warn (_("-G may not be used with SVR4 PIC code"));
13463   g_switch_value = 0;
13464
13465   bfd_set_gp_size (stdoutput, 0);
13466   demand_empty_rest_of_line ();
13467 }
13468
13469 /* Handle the .cpload pseudo-op.  This is used when generating SVR4
13470    PIC code.  It sets the $gp register for the function based on the
13471    function address, which is in the register named in the argument.
13472    This uses a relocation against _gp_disp, which is handled specially
13473    by the linker.  The result is:
13474         lui     $gp,%hi(_gp_disp)
13475         addiu   $gp,$gp,%lo(_gp_disp)
13476         addu    $gp,$gp,.cpload argument
13477    The .cpload argument is normally $25 == $t9.
13478
13479    The -mno-shared option changes this to:
13480         lui     $gp,%hi(__gnu_local_gp)
13481         addiu   $gp,$gp,%lo(__gnu_local_gp)
13482    and the argument is ignored.  This saves an instruction, but the
13483    resulting code is not position independent; it uses an absolute
13484    address for __gnu_local_gp.  Thus code assembled with -mno-shared
13485    can go into an ordinary executable, but not into a shared library.  */
13486
13487 static void
13488 s_cpload (int ignore ATTRIBUTE_UNUSED)
13489 {
13490   expressionS ex;
13491   int reg;
13492   int in_shared;
13493
13494   /* If we are not generating SVR4 PIC code, or if this is NewABI code,
13495      .cpload is ignored.  */
13496   if (mips_pic != SVR4_PIC || HAVE_NEWABI)
13497     {
13498       s_ignore (0);
13499       return;
13500     }
13501
13502   /* .cpload should be in a .set noreorder section.  */
13503   if (mips_opts.noreorder == 0)
13504     as_warn (_(".cpload not in noreorder section"));
13505
13506   reg = tc_get_register (0);
13507
13508   /* If we need to produce a 64-bit address, we are better off using
13509      the default instruction sequence.  */
13510   in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
13511
13512   ex.X_op = O_symbol;
13513   ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
13514                                          "__gnu_local_gp");
13515   ex.X_op_symbol = NULL;
13516   ex.X_add_number = 0;
13517
13518   /* In ELF, this symbol is implicitly an STT_OBJECT symbol.  */
13519   symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
13520
13521   macro_start ();
13522   macro_build_lui (&ex, mips_gp_register);
13523   macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
13524                mips_gp_register, BFD_RELOC_LO16);
13525   if (in_shared)
13526     macro_build (NULL, "addu", "d,v,t", mips_gp_register,
13527                  mips_gp_register, reg);
13528   macro_end ();
13529
13530   demand_empty_rest_of_line ();
13531 }
13532
13533 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code.  The syntax is:
13534      .cpsetup $reg1, offset|$reg2, label
13535
13536    If offset is given, this results in:
13537      sd         $gp, offset($sp)
13538      lui        $gp, %hi(%neg(%gp_rel(label)))
13539      addiu      $gp, $gp, %lo(%neg(%gp_rel(label)))
13540      daddu      $gp, $gp, $reg1
13541
13542    If $reg2 is given, this results in:
13543      daddu      $reg2, $gp, $0
13544      lui        $gp, %hi(%neg(%gp_rel(label)))
13545      addiu      $gp, $gp, %lo(%neg(%gp_rel(label)))
13546      daddu      $gp, $gp, $reg1
13547    $reg1 is normally $25 == $t9.
13548
13549    The -mno-shared option replaces the last three instructions with
13550         lui     $gp,%hi(_gp)
13551         addiu   $gp,$gp,%lo(_gp)  */
13552
13553 static void
13554 s_cpsetup (int ignore ATTRIBUTE_UNUSED)
13555 {
13556   expressionS ex_off;
13557   expressionS ex_sym;
13558   int reg1;
13559
13560   /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
13561      We also need NewABI support.  */
13562   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13563     {
13564       s_ignore (0);
13565       return;
13566     }
13567
13568   reg1 = tc_get_register (0);
13569   SKIP_WHITESPACE ();
13570   if (*input_line_pointer != ',')
13571     {
13572       as_bad (_("missing argument separator ',' for .cpsetup"));
13573       return;
13574     }
13575   else
13576     ++input_line_pointer;
13577   SKIP_WHITESPACE ();
13578   if (*input_line_pointer == '$')
13579     {
13580       mips_cpreturn_register = tc_get_register (0);
13581       mips_cpreturn_offset = -1;
13582     }
13583   else
13584     {
13585       mips_cpreturn_offset = get_absolute_expression ();
13586       mips_cpreturn_register = -1;
13587     }
13588   SKIP_WHITESPACE ();
13589   if (*input_line_pointer != ',')
13590     {
13591       as_bad (_("missing argument separator ',' for .cpsetup"));
13592       return;
13593     }
13594   else
13595     ++input_line_pointer;
13596   SKIP_WHITESPACE ();
13597   expression (&ex_sym);
13598
13599   macro_start ();
13600   if (mips_cpreturn_register == -1)
13601     {
13602       ex_off.X_op = O_constant;
13603       ex_off.X_add_symbol = NULL;
13604       ex_off.X_op_symbol = NULL;
13605       ex_off.X_add_number = mips_cpreturn_offset;
13606
13607       macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
13608                    BFD_RELOC_LO16, SP);
13609     }
13610   else
13611     macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
13612                  mips_gp_register, 0);
13613
13614   if (mips_in_shared || HAVE_64BIT_SYMBOLS)
13615     {
13616       macro_build (&ex_sym, "lui", "t,u", mips_gp_register,
13617                    -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
13618                    BFD_RELOC_HI16_S);
13619
13620       macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
13621                    mips_gp_register, -1, BFD_RELOC_GPREL16,
13622                    BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
13623
13624       macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
13625                    mips_gp_register, reg1);
13626     }
13627   else
13628     {
13629       expressionS ex;
13630
13631       ex.X_op = O_symbol;
13632       ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
13633       ex.X_op_symbol = NULL;
13634       ex.X_add_number = 0;
13635
13636       /* In ELF, this symbol is implicitly an STT_OBJECT symbol.  */
13637       symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
13638
13639       macro_build_lui (&ex, mips_gp_register);
13640       macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
13641                    mips_gp_register, BFD_RELOC_LO16);
13642     }
13643
13644   macro_end ();
13645
13646   demand_empty_rest_of_line ();
13647 }
13648
13649 static void
13650 s_cplocal (int ignore ATTRIBUTE_UNUSED)
13651 {
13652   /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
13653      .cplocal is ignored.  */
13654   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13655     {
13656       s_ignore (0);
13657       return;
13658     }
13659
13660   mips_gp_register = tc_get_register (0);
13661   demand_empty_rest_of_line ();
13662 }
13663
13664 /* Handle the .cprestore pseudo-op.  This stores $gp into a given
13665    offset from $sp.  The offset is remembered, and after making a PIC
13666    call $gp is restored from that location.  */
13667
13668 static void
13669 s_cprestore (int ignore ATTRIBUTE_UNUSED)
13670 {
13671   expressionS ex;
13672
13673   /* If we are not generating SVR4 PIC code, or if this is NewABI code,
13674      .cprestore is ignored.  */
13675   if (mips_pic != SVR4_PIC || HAVE_NEWABI)
13676     {
13677       s_ignore (0);
13678       return;
13679     }
13680
13681   mips_cprestore_offset = get_absolute_expression ();
13682   mips_cprestore_valid = 1;
13683
13684   ex.X_op = O_constant;
13685   ex.X_add_symbol = NULL;
13686   ex.X_op_symbol = NULL;
13687   ex.X_add_number = mips_cprestore_offset;
13688
13689   macro_start ();
13690   macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
13691                                 SP, HAVE_64BIT_ADDRESSES);
13692   macro_end ();
13693
13694   demand_empty_rest_of_line ();
13695 }
13696
13697 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
13698    was given in the preceding .cpsetup, it results in:
13699      ld         $gp, offset($sp)
13700
13701    If a register $reg2 was given there, it results in:
13702      daddu      $gp, $reg2, $0  */
13703
13704 static void
13705 s_cpreturn (int ignore ATTRIBUTE_UNUSED)
13706 {
13707   expressionS ex;
13708
13709   /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
13710      We also need NewABI support.  */
13711   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13712     {
13713       s_ignore (0);
13714       return;
13715     }
13716
13717   macro_start ();
13718   if (mips_cpreturn_register == -1)
13719     {
13720       ex.X_op = O_constant;
13721       ex.X_add_symbol = NULL;
13722       ex.X_op_symbol = NULL;
13723       ex.X_add_number = mips_cpreturn_offset;
13724
13725       macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
13726     }
13727   else
13728     macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
13729                  mips_cpreturn_register, 0);
13730   macro_end ();
13731
13732   demand_empty_rest_of_line ();
13733 }
13734
13735 /* Handle the .dtprelword and .dtpreldword pseudo-ops.  They generate
13736    a 32-bit or 64-bit DTP-relative relocation (BYTES says which) for
13737    use in DWARF debug information.  */
13738
13739 static void
13740 s_dtprel_internal (size_t bytes)
13741 {
13742   expressionS ex;
13743   char *p;
13744
13745   expression (&ex);
13746
13747   if (ex.X_op != O_symbol)
13748     {
13749       as_bad (_("Unsupported use of %s"), (bytes == 8
13750                                            ? ".dtpreldword"
13751                                            : ".dtprelword"));
13752       ignore_rest_of_line ();
13753     }
13754
13755   p = frag_more (bytes);
13756   md_number_to_chars (p, 0, bytes);
13757   fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE,
13758                (bytes == 8
13759                 ? BFD_RELOC_MIPS_TLS_DTPREL64
13760                 : BFD_RELOC_MIPS_TLS_DTPREL32));
13761
13762   demand_empty_rest_of_line ();
13763 }
13764
13765 /* Handle .dtprelword.  */
13766
13767 static void
13768 s_dtprelword (int ignore ATTRIBUTE_UNUSED)
13769 {
13770   s_dtprel_internal (4);
13771 }
13772
13773 /* Handle .dtpreldword.  */
13774
13775 static void
13776 s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
13777 {
13778   s_dtprel_internal (8);
13779 }
13780
13781 /* Handle the .gpvalue pseudo-op.  This is used when generating NewABI PIC
13782    code.  It sets the offset to use in gp_rel relocations.  */
13783
13784 static void
13785 s_gpvalue (int ignore ATTRIBUTE_UNUSED)
13786 {
13787   /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
13788      We also need NewABI support.  */
13789   if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13790     {
13791       s_ignore (0);
13792       return;
13793     }
13794
13795   mips_gprel_offset = get_absolute_expression ();
13796
13797   demand_empty_rest_of_line ();
13798 }
13799
13800 /* Handle the .gpword pseudo-op.  This is used when generating PIC
13801    code.  It generates a 32 bit GP relative reloc.  */
13802
13803 static void
13804 s_gpword (int ignore ATTRIBUTE_UNUSED)
13805 {
13806   segment_info_type *si;
13807   struct insn_label_list *l;
13808   symbolS *label;
13809   expressionS ex;
13810   char *p;
13811
13812   /* When not generating PIC code, this is treated as .word.  */
13813   if (mips_pic != SVR4_PIC)
13814     {
13815       s_cons (2);
13816       return;
13817     }
13818
13819   si = seg_info (now_seg);
13820   l = si->label_list;
13821   label = l != NULL ? l->label : NULL;
13822   mips_emit_delays ();
13823   if (auto_align)
13824     mips_align (2, 0, label);
13825
13826   expression (&ex);
13827   mips_clear_insn_labels ();
13828
13829   if (ex.X_op != O_symbol || ex.X_add_number != 0)
13830     {
13831       as_bad (_("Unsupported use of .gpword"));
13832       ignore_rest_of_line ();
13833     }
13834
13835   p = frag_more (4);
13836   md_number_to_chars (p, 0, 4);
13837   fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
13838                BFD_RELOC_GPREL32);
13839
13840   demand_empty_rest_of_line ();
13841 }
13842
13843 static void
13844 s_gpdword (int ignore ATTRIBUTE_UNUSED)
13845 {
13846   segment_info_type *si;
13847   struct insn_label_list *l;
13848   symbolS *label;
13849   expressionS ex;
13850   char *p;
13851
13852   /* When not generating PIC code, this is treated as .dword.  */
13853   if (mips_pic != SVR4_PIC)
13854     {
13855       s_cons (3);
13856       return;
13857     }
13858
13859   si = seg_info (now_seg);
13860   l = si->label_list;
13861   label = l != NULL ? l->label : NULL;
13862   mips_emit_delays ();
13863   if (auto_align)
13864     mips_align (3, 0, label);
13865
13866   expression (&ex);
13867   mips_clear_insn_labels ();
13868
13869   if (ex.X_op != O_symbol || ex.X_add_number != 0)
13870     {
13871       as_bad (_("Unsupported use of .gpdword"));
13872       ignore_rest_of_line ();
13873     }
13874
13875   p = frag_more (8);
13876   md_number_to_chars (p, 0, 8);
13877   fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
13878                BFD_RELOC_GPREL32)->fx_tcbit = 1;
13879
13880   /* GPREL32 composed with 64 gives a 64-bit GP offset.  */
13881   fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
13882            FALSE, BFD_RELOC_64)->fx_tcbit = 1;
13883
13884   demand_empty_rest_of_line ();
13885 }
13886
13887 /* Handle the .cpadd pseudo-op.  This is used when dealing with switch
13888    tables in SVR4 PIC code.  */
13889
13890 static void
13891 s_cpadd (int ignore ATTRIBUTE_UNUSED)
13892 {
13893   int reg;
13894
13895   /* This is ignored when not generating SVR4 PIC code.  */
13896   if (mips_pic != SVR4_PIC)
13897     {
13898       s_ignore (0);
13899       return;
13900     }
13901
13902   /* Add $gp to the register named as an argument.  */
13903   macro_start ();
13904   reg = tc_get_register (0);
13905   macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
13906   macro_end ();
13907
13908   demand_empty_rest_of_line ();
13909 }
13910
13911 /* Handle the .insn pseudo-op.  This marks instruction labels in
13912    mips16 mode.  This permits the linker to handle them specially,
13913    such as generating jalx instructions when needed.  We also make
13914    them odd for the duration of the assembly, in order to generate the
13915    right sort of code.  We will make them even in the adjust_symtab
13916    routine, while leaving them marked.  This is convenient for the
13917    debugger and the disassembler.  The linker knows to make them odd
13918    again.  */
13919
13920 static void
13921 s_insn (int ignore ATTRIBUTE_UNUSED)
13922 {
13923   mips16_mark_labels ();
13924
13925   demand_empty_rest_of_line ();
13926 }
13927
13928 /* Handle a .stabn directive.  We need these in order to mark a label
13929    as being a mips16 text label correctly.  Sometimes the compiler
13930    will emit a label, followed by a .stabn, and then switch sections.
13931    If the label and .stabn are in mips16 mode, then the label is
13932    really a mips16 text label.  */
13933
13934 static void
13935 s_mips_stab (int type)
13936 {
13937   if (type == 'n')
13938     mips16_mark_labels ();
13939
13940   s_stab (type);
13941 }
13942
13943 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich.  */
13944
13945 static void
13946 s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
13947 {
13948   char *name;
13949   int c;
13950   symbolS *symbolP;
13951   expressionS exp;
13952
13953   name = input_line_pointer;
13954   c = get_symbol_end ();
13955   symbolP = symbol_find_or_make (name);
13956   S_SET_WEAK (symbolP);
13957   *input_line_pointer = c;
13958
13959   SKIP_WHITESPACE ();
13960
13961   if (! is_end_of_line[(unsigned char) *input_line_pointer])
13962     {
13963       if (S_IS_DEFINED (symbolP))
13964         {
13965           as_bad (_("ignoring attempt to redefine symbol %s"),
13966                   S_GET_NAME (symbolP));
13967           ignore_rest_of_line ();
13968           return;
13969         }
13970
13971       if (*input_line_pointer == ',')
13972         {
13973           ++input_line_pointer;
13974           SKIP_WHITESPACE ();
13975         }
13976
13977       expression (&exp);
13978       if (exp.X_op != O_symbol)
13979         {
13980           as_bad (_("bad .weakext directive"));
13981           ignore_rest_of_line ();
13982           return;
13983         }
13984       symbol_set_value_expression (symbolP, &exp);
13985     }
13986
13987   demand_empty_rest_of_line ();
13988 }
13989
13990 /* Parse a register string into a number.  Called from the ECOFF code
13991    to parse .frame.  The argument is non-zero if this is the frame
13992    register, so that we can record it in mips_frame_reg.  */
13993
13994 int
13995 tc_get_register (int frame)
13996 {
13997   unsigned int reg;
13998
13999   SKIP_WHITESPACE ();
14000   if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, &reg))
14001     reg = 0;
14002   if (frame)
14003     {
14004       mips_frame_reg = reg != 0 ? reg : SP;
14005       mips_frame_reg_valid = 1;
14006       mips_cprestore_valid = 0;
14007     }
14008   return reg;
14009 }
14010
14011 valueT
14012 md_section_align (asection *seg, valueT addr)
14013 {
14014   int align = bfd_get_section_alignment (stdoutput, seg);
14015
14016   if (IS_ELF)
14017     {
14018       /* We don't need to align ELF sections to the full alignment.
14019          However, Irix 5 may prefer that we align them at least to a 16
14020          byte boundary.  We don't bother to align the sections if we
14021          are targeted for an embedded system.  */
14022       if (strncmp (TARGET_OS, "elf", 3) == 0)
14023         return addr;
14024       if (align > 4)
14025         align = 4;
14026     }
14027
14028   return ((addr + (1 << align) - 1) & (-1 << align));
14029 }
14030
14031 /* Utility routine, called from above as well.  If called while the
14032    input file is still being read, it's only an approximation.  (For
14033    example, a symbol may later become defined which appeared to be
14034    undefined earlier.)  */
14035
14036 static int
14037 nopic_need_relax (symbolS *sym, int before_relaxing)
14038 {
14039   if (sym == 0)
14040     return 0;
14041
14042   if (g_switch_value > 0)
14043     {
14044       const char *symname;
14045       int change;
14046
14047       /* Find out whether this symbol can be referenced off the $gp
14048          register.  It can be if it is smaller than the -G size or if
14049          it is in the .sdata or .sbss section.  Certain symbols can
14050          not be referenced off the $gp, although it appears as though
14051          they can.  */
14052       symname = S_GET_NAME (sym);
14053       if (symname != (const char *) NULL
14054           && (strcmp (symname, "eprol") == 0
14055               || strcmp (symname, "etext") == 0
14056               || strcmp (symname, "_gp") == 0
14057               || strcmp (symname, "edata") == 0
14058               || strcmp (symname, "_fbss") == 0
14059               || strcmp (symname, "_fdata") == 0
14060               || strcmp (symname, "_ftext") == 0
14061               || strcmp (symname, "end") == 0
14062               || strcmp (symname, "_gp_disp") == 0))
14063         change = 1;
14064       else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
14065                && (0
14066 #ifndef NO_ECOFF_DEBUGGING
14067                    || (symbol_get_obj (sym)->ecoff_extern_size != 0
14068                        && (symbol_get_obj (sym)->ecoff_extern_size
14069                            <= g_switch_value))
14070 #endif
14071                    /* We must defer this decision until after the whole
14072                       file has been read, since there might be a .extern
14073                       after the first use of this symbol.  */
14074                    || (before_relaxing
14075 #ifndef NO_ECOFF_DEBUGGING
14076                        && symbol_get_obj (sym)->ecoff_extern_size == 0
14077 #endif
14078                        && S_GET_VALUE (sym) == 0)
14079                    || (S_GET_VALUE (sym) != 0
14080                        && S_GET_VALUE (sym) <= g_switch_value)))
14081         change = 0;
14082       else
14083         {
14084           const char *segname;
14085
14086           segname = segment_name (S_GET_SEGMENT (sym));
14087           gas_assert (strcmp (segname, ".lit8") != 0
14088                   && strcmp (segname, ".lit4") != 0);
14089           change = (strcmp (segname, ".sdata") != 0
14090                     && strcmp (segname, ".sbss") != 0
14091                     && strncmp (segname, ".sdata.", 7) != 0
14092                     && strncmp (segname, ".sbss.", 6) != 0
14093                     && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0
14094                     && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
14095         }
14096       return change;
14097     }
14098   else
14099     /* We are not optimizing for the $gp register.  */
14100     return 1;
14101 }
14102
14103
14104 /* Return true if the given symbol should be considered local for SVR4 PIC.  */
14105
14106 static bfd_boolean
14107 pic_need_relax (symbolS *sym, asection *segtype)
14108 {
14109   asection *symsec;
14110
14111   /* Handle the case of a symbol equated to another symbol.  */
14112   while (symbol_equated_reloc_p (sym))
14113     {
14114       symbolS *n;
14115
14116       /* It's possible to get a loop here in a badly written program.  */
14117       n = symbol_get_value_expression (sym)->X_add_symbol;
14118       if (n == sym)
14119         break;
14120       sym = n;
14121     }
14122
14123   if (symbol_section_p (sym))
14124     return TRUE;
14125
14126   symsec = S_GET_SEGMENT (sym);
14127
14128   /* This must duplicate the test in adjust_reloc_syms.  */
14129   return (symsec != &bfd_und_section
14130           && symsec != &bfd_abs_section
14131           && !bfd_is_com_section (symsec)
14132           && !s_is_linkonce (sym, segtype)
14133 #ifdef OBJ_ELF
14134           /* A global or weak symbol is treated as external.  */
14135           && (!IS_ELF || (! S_IS_WEAK (sym) && ! S_IS_EXTERNAL (sym)))
14136 #endif
14137           );
14138 }
14139
14140
14141 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
14142    extended opcode.  SEC is the section the frag is in.  */
14143
14144 static int
14145 mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
14146 {
14147   int type;
14148   const struct mips16_immed_operand *op;
14149   offsetT val;
14150   int mintiny, maxtiny;
14151   segT symsec;
14152   fragS *sym_frag;
14153
14154   if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
14155     return 0;
14156   if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
14157     return 1;
14158
14159   type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
14160   op = mips16_immed_operands;
14161   while (op->type != type)
14162     {
14163       ++op;
14164       gas_assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
14165     }
14166
14167   if (op->unsp)
14168     {
14169       if (type == '<' || type == '>' || type == '[' || type == ']')
14170         {
14171           mintiny = 1;
14172           maxtiny = 1 << op->nbits;
14173         }
14174       else
14175         {
14176           mintiny = 0;
14177           maxtiny = (1 << op->nbits) - 1;
14178         }
14179     }
14180   else
14181     {
14182       mintiny = - (1 << (op->nbits - 1));
14183       maxtiny = (1 << (op->nbits - 1)) - 1;
14184     }
14185
14186   sym_frag = symbol_get_frag (fragp->fr_symbol);
14187   val = S_GET_VALUE (fragp->fr_symbol);
14188   symsec = S_GET_SEGMENT (fragp->fr_symbol);
14189
14190   if (op->pcrel)
14191     {
14192       addressT addr;
14193
14194       /* We won't have the section when we are called from
14195          mips_relax_frag.  However, we will always have been called
14196          from md_estimate_size_before_relax first.  If this is a
14197          branch to a different section, we mark it as such.  If SEC is
14198          NULL, and the frag is not marked, then it must be a branch to
14199          the same section.  */
14200       if (sec == NULL)
14201         {
14202           if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
14203             return 1;
14204         }
14205       else
14206         {
14207           /* Must have been called from md_estimate_size_before_relax.  */
14208           if (symsec != sec)
14209             {
14210               fragp->fr_subtype =
14211                 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
14212
14213               /* FIXME: We should support this, and let the linker
14214                  catch branches and loads that are out of range.  */
14215               as_bad_where (fragp->fr_file, fragp->fr_line,
14216                             _("unsupported PC relative reference to different section"));
14217
14218               return 1;
14219             }
14220           if (fragp != sym_frag && sym_frag->fr_address == 0)
14221             /* Assume non-extended on the first relaxation pass.
14222                The address we have calculated will be bogus if this is
14223                a forward branch to another frag, as the forward frag
14224                will have fr_address == 0.  */
14225             return 0;
14226         }
14227
14228       /* In this case, we know for sure that the symbol fragment is in
14229          the same section.  If the relax_marker of the symbol fragment
14230          differs from the relax_marker of this fragment, we have not
14231          yet adjusted the symbol fragment fr_address.  We want to add
14232          in STRETCH in order to get a better estimate of the address.
14233          This particularly matters because of the shift bits.  */
14234       if (stretch != 0
14235           && sym_frag->relax_marker != fragp->relax_marker)
14236         {
14237           fragS *f;
14238
14239           /* Adjust stretch for any alignment frag.  Note that if have
14240              been expanding the earlier code, the symbol may be
14241              defined in what appears to be an earlier frag.  FIXME:
14242              This doesn't handle the fr_subtype field, which specifies
14243              a maximum number of bytes to skip when doing an
14244              alignment.  */
14245           for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
14246             {
14247               if (f->fr_type == rs_align || f->fr_type == rs_align_code)
14248                 {
14249                   if (stretch < 0)
14250                     stretch = - ((- stretch)
14251                                  & ~ ((1 << (int) f->fr_offset) - 1));
14252                   else
14253                     stretch &= ~ ((1 << (int) f->fr_offset) - 1);
14254                   if (stretch == 0)
14255                     break;
14256                 }
14257             }
14258           if (f != NULL)
14259             val += stretch;
14260         }
14261
14262       addr = fragp->fr_address + fragp->fr_fix;
14263
14264       /* The base address rules are complicated.  The base address of
14265          a branch is the following instruction.  The base address of a
14266          PC relative load or add is the instruction itself, but if it
14267          is in a delay slot (in which case it can not be extended) use
14268          the address of the instruction whose delay slot it is in.  */
14269       if (type == 'p' || type == 'q')
14270         {
14271           addr += 2;
14272
14273           /* If we are currently assuming that this frag should be
14274              extended, then, the current address is two bytes
14275              higher.  */
14276           if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14277             addr += 2;
14278
14279           /* Ignore the low bit in the target, since it will be set
14280              for a text label.  */
14281           if ((val & 1) != 0)
14282             --val;
14283         }
14284       else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
14285         addr -= 4;
14286       else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
14287         addr -= 2;
14288
14289       val -= addr & ~ ((1 << op->shift) - 1);
14290
14291       /* Branch offsets have an implicit 0 in the lowest bit.  */
14292       if (type == 'p' || type == 'q')
14293         val /= 2;
14294
14295       /* If any of the shifted bits are set, we must use an extended
14296          opcode.  If the address depends on the size of this
14297          instruction, this can lead to a loop, so we arrange to always
14298          use an extended opcode.  We only check this when we are in
14299          the main relaxation loop, when SEC is NULL.  */
14300       if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
14301         {
14302           fragp->fr_subtype =
14303             RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
14304           return 1;
14305         }
14306
14307       /* If we are about to mark a frag as extended because the value
14308          is precisely maxtiny + 1, then there is a chance of an
14309          infinite loop as in the following code:
14310              la $4,foo
14311              .skip      1020
14312              .align     2
14313            foo:
14314          In this case when the la is extended, foo is 0x3fc bytes
14315          away, so the la can be shrunk, but then foo is 0x400 away, so
14316          the la must be extended.  To avoid this loop, we mark the
14317          frag as extended if it was small, and is about to become
14318          extended with a value of maxtiny + 1.  */
14319       if (val == ((maxtiny + 1) << op->shift)
14320           && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
14321           && sec == NULL)
14322         {
14323           fragp->fr_subtype =
14324             RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
14325           return 1;
14326         }
14327     }
14328   else if (symsec != absolute_section && sec != NULL)
14329     as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
14330
14331   if ((val & ((1 << op->shift) - 1)) != 0
14332       || val < (mintiny << op->shift)
14333       || val > (maxtiny << op->shift))
14334     return 1;
14335   else
14336     return 0;
14337 }
14338
14339 /* Compute the length of a branch sequence, and adjust the
14340    RELAX_BRANCH_TOOFAR bit accordingly.  If FRAGP is NULL, the
14341    worst-case length is computed, with UPDATE being used to indicate
14342    whether an unconditional (-1), branch-likely (+1) or regular (0)
14343    branch is to be computed.  */
14344 static int
14345 relaxed_branch_length (fragS *fragp, asection *sec, int update)
14346 {
14347   bfd_boolean toofar;
14348   int length;
14349
14350   if (fragp
14351       && S_IS_DEFINED (fragp->fr_symbol)
14352       && sec == S_GET_SEGMENT (fragp->fr_symbol))
14353     {
14354       addressT addr;
14355       offsetT val;
14356
14357       val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
14358
14359       addr = fragp->fr_address + fragp->fr_fix + 4;
14360
14361       val -= addr;
14362
14363       toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
14364     }
14365   else if (fragp)
14366     /* If the symbol is not defined or it's in a different segment,
14367        assume the user knows what's going on and emit a short
14368        branch.  */
14369     toofar = FALSE;
14370   else
14371     toofar = TRUE;
14372
14373   if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
14374     fragp->fr_subtype
14375       = RELAX_BRANCH_ENCODE (RELAX_BRANCH_AT (fragp->fr_subtype),
14376                              RELAX_BRANCH_UNCOND (fragp->fr_subtype),
14377                              RELAX_BRANCH_LIKELY (fragp->fr_subtype),
14378                              RELAX_BRANCH_LINK (fragp->fr_subtype),
14379                              toofar);
14380
14381   length = 4;
14382   if (toofar)
14383     {
14384       if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
14385         length += 8;
14386
14387       if (mips_pic != NO_PIC)
14388         {
14389           /* Additional space for PIC loading of target address.  */
14390           length += 8;
14391           if (mips_opts.isa == ISA_MIPS1)
14392             /* Additional space for $at-stabilizing nop.  */
14393             length += 4;
14394         }
14395
14396       /* If branch is conditional.  */
14397       if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
14398         length += 8;
14399     }
14400
14401   return length;
14402 }
14403
14404 /* Estimate the size of a frag before relaxing.  Unless this is the
14405    mips16, we are not really relaxing here, and the final size is
14406    encoded in the subtype information.  For the mips16, we have to
14407    decide whether we are using an extended opcode or not.  */
14408
14409 int
14410 md_estimate_size_before_relax (fragS *fragp, asection *segtype)
14411 {
14412   int change;
14413
14414   if (RELAX_BRANCH_P (fragp->fr_subtype))
14415     {
14416
14417       fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
14418
14419       return fragp->fr_var;
14420     }
14421
14422   if (RELAX_MIPS16_P (fragp->fr_subtype))
14423     /* We don't want to modify the EXTENDED bit here; it might get us
14424        into infinite loops.  We change it only in mips_relax_frag().  */
14425     return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
14426
14427   if (mips_pic == NO_PIC)
14428     change = nopic_need_relax (fragp->fr_symbol, 0);
14429   else if (mips_pic == SVR4_PIC)
14430     change = pic_need_relax (fragp->fr_symbol, segtype);
14431   else if (mips_pic == VXWORKS_PIC)
14432     /* For vxworks, GOT16 relocations never have a corresponding LO16.  */
14433     change = 0;
14434   else
14435     abort ();
14436
14437   if (change)
14438     {
14439       fragp->fr_subtype |= RELAX_USE_SECOND;
14440       return -RELAX_FIRST (fragp->fr_subtype);
14441     }
14442   else
14443     return -RELAX_SECOND (fragp->fr_subtype);
14444 }
14445
14446 /* This is called to see whether a reloc against a defined symbol
14447    should be converted into a reloc against a section.  */
14448
14449 int
14450 mips_fix_adjustable (fixS *fixp)
14451 {
14452   if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
14453       || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
14454     return 0;
14455
14456   if (fixp->fx_addsy == NULL)
14457     return 1;
14458
14459   /* If symbol SYM is in a mergeable section, relocations of the form
14460      SYM + 0 can usually be made section-relative.  The mergeable data
14461      is then identified by the section offset rather than by the symbol.
14462
14463      However, if we're generating REL LO16 relocations, the offset is split
14464      between the LO16 and parterning high part relocation.  The linker will
14465      need to recalculate the complete offset in order to correctly identify
14466      the merge data.
14467
14468      The linker has traditionally not looked for the parterning high part
14469      relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
14470      placed anywhere.  Rather than break backwards compatibility by changing
14471      this, it seems better not to force the issue, and instead keep the
14472      original symbol.  This will work with either linker behavior.  */
14473   if ((lo16_reloc_p (fixp->fx_r_type)
14474        || reloc_needs_lo_p (fixp->fx_r_type))
14475       && HAVE_IN_PLACE_ADDENDS
14476       && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
14477     return 0;
14478
14479   /* There is no place to store an in-place offset for JALR relocations.
14480      Likewise an in-range offset of PC-relative relocations may overflow
14481      the in-place relocatable field if recalculated against the start
14482      address of the symbol's containing section.  */
14483   if (HAVE_IN_PLACE_ADDENDS
14484       && (fixp->fx_pcrel || fixp->fx_r_type == BFD_RELOC_MIPS_JALR))
14485     return 0;
14486
14487 #ifdef OBJ_ELF
14488   /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
14489      to a floating-point stub.  The same is true for non-R_MIPS16_26
14490      relocations against MIPS16 functions; in this case, the stub becomes
14491      the function's canonical address.
14492
14493      Floating-point stubs are stored in unique .mips16.call.* or
14494      .mips16.fn.* sections.  If a stub T for function F is in section S,
14495      the first relocation in section S must be against F; this is how the
14496      linker determines the target function.  All relocations that might
14497      resolve to T must also be against F.  We therefore have the following
14498      restrictions, which are given in an intentionally-redundant way:
14499
14500        1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
14501           symbols.
14502
14503        2. We cannot reduce a stub's relocations against non-MIPS16 symbols
14504           if that stub might be used.
14505
14506        3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
14507           symbols.
14508
14509        4. We cannot reduce a stub's relocations against MIPS16 symbols if
14510           that stub might be used.
14511
14512      There is a further restriction:
14513
14514        5. We cannot reduce R_MIPS16_26 relocations against MIPS16 symbols
14515           on targets with in-place addends; the relocation field cannot
14516           encode the low bit.
14517
14518      For simplicity, we deal with (3)-(5) by not reducing _any_ relocation
14519      against a MIPS16 symbol.
14520
14521      We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
14522      relocation against some symbol R, no relocation against R may be
14523      reduced.  (Note that this deals with (2) as well as (1) because
14524      relocations against global symbols will never be reduced on ELF
14525      targets.)  This approach is a little simpler than trying to detect
14526      stub sections, and gives the "all or nothing" per-symbol consistency
14527      that we have for MIPS16 symbols.  */
14528   if (IS_ELF
14529       && fixp->fx_subsy == NULL
14530       && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
14531           || *symbol_get_tc (fixp->fx_addsy)))
14532     return 0;
14533 #endif
14534
14535   return 1;
14536 }
14537
14538 /* Translate internal representation of relocation info to BFD target
14539    format.  */
14540
14541 arelent **
14542 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
14543 {
14544   static arelent *retval[4];
14545   arelent *reloc;
14546   bfd_reloc_code_real_type code;
14547
14548   memset (retval, 0, sizeof(retval));
14549   reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
14550   reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
14551   *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
14552   reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
14553
14554   if (fixp->fx_pcrel)
14555     {
14556       gas_assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2);
14557
14558       /* At this point, fx_addnumber is "symbol offset - pcrel address".
14559          Relocations want only the symbol offset.  */
14560       reloc->addend = fixp->fx_addnumber + reloc->address;
14561       if (!IS_ELF)
14562         {
14563           /* A gruesome hack which is a result of the gruesome gas
14564              reloc handling.  What's worse, for COFF (as opposed to
14565              ECOFF), we might need yet another copy of reloc->address.
14566              See bfd_install_relocation.  */
14567           reloc->addend += reloc->address;
14568         }
14569     }
14570   else
14571     reloc->addend = fixp->fx_addnumber;
14572
14573   /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
14574      entry to be used in the relocation's section offset.  */
14575   if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
14576     {
14577       reloc->address = reloc->addend;
14578       reloc->addend = 0;
14579     }
14580
14581   code = fixp->fx_r_type;
14582
14583   reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
14584   if (reloc->howto == NULL)
14585     {
14586       as_bad_where (fixp->fx_file, fixp->fx_line,
14587                     _("Can not represent %s relocation in this object file format"),
14588                     bfd_get_reloc_code_name (code));
14589       retval[0] = NULL;
14590     }
14591
14592   return retval;
14593 }
14594
14595 /* Relax a machine dependent frag.  This returns the amount by which
14596    the current size of the frag should change.  */
14597
14598 int
14599 mips_relax_frag (asection *sec, fragS *fragp, long stretch)
14600 {
14601   if (RELAX_BRANCH_P (fragp->fr_subtype))
14602     {
14603       offsetT old_var = fragp->fr_var;
14604
14605       fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
14606
14607       return fragp->fr_var - old_var;
14608     }
14609
14610   if (! RELAX_MIPS16_P (fragp->fr_subtype))
14611     return 0;
14612
14613   if (mips16_extended_frag (fragp, NULL, stretch))
14614     {
14615       if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14616         return 0;
14617       fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
14618       return 2;
14619     }
14620   else
14621     {
14622       if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14623         return 0;
14624       fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
14625       return -2;
14626     }
14627
14628   return 0;
14629 }
14630
14631 /* Convert a machine dependent frag.  */
14632
14633 void
14634 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
14635 {
14636   if (RELAX_BRANCH_P (fragp->fr_subtype))
14637     {
14638       bfd_byte *buf;
14639       unsigned long insn;
14640       expressionS exp;
14641       fixS *fixp;
14642
14643       buf = (bfd_byte *)fragp->fr_literal + fragp->fr_fix;
14644
14645       if (target_big_endian)
14646         insn = bfd_getb32 (buf);
14647       else
14648         insn = bfd_getl32 (buf);
14649
14650       if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
14651         {
14652           /* We generate a fixup instead of applying it right now
14653              because, if there are linker relaxations, we're going to
14654              need the relocations.  */
14655           exp.X_op = O_symbol;
14656           exp.X_add_symbol = fragp->fr_symbol;
14657           exp.X_add_number = fragp->fr_offset;
14658
14659           fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
14660                               4, &exp, TRUE, BFD_RELOC_16_PCREL_S2);
14661           fixp->fx_file = fragp->fr_file;
14662           fixp->fx_line = fragp->fr_line;
14663
14664           md_number_to_chars ((char *) buf, insn, 4);
14665           buf += 4;
14666         }
14667       else
14668         {
14669           int i;
14670
14671           as_warn_where (fragp->fr_file, fragp->fr_line,
14672                          _("Relaxed out-of-range branch into a jump"));
14673
14674           if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
14675             goto uncond;
14676
14677           if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14678             {
14679               /* Reverse the branch.  */
14680               switch ((insn >> 28) & 0xf)
14681                 {
14682                 case 4:
14683                   /* bc[0-3][tf]l? and bc1any[24][ft] instructions can
14684                      have the condition reversed by tweaking a single
14685                      bit, and their opcodes all have 0x4???????.  */
14686                   gas_assert ((insn & 0xf1000000) == 0x41000000);
14687                   insn ^= 0x00010000;
14688                   break;
14689
14690                 case 0:
14691                   /* bltz       0x04000000      bgez    0x04010000
14692                      bltzal     0x04100000      bgezal  0x04110000  */
14693                   gas_assert ((insn & 0xfc0e0000) == 0x04000000);
14694                   insn ^= 0x00010000;
14695                   break;
14696
14697                 case 1:
14698                   /* beq        0x10000000      bne     0x14000000
14699                      blez       0x18000000      bgtz    0x1c000000  */
14700                   insn ^= 0x04000000;
14701                   break;
14702
14703                 default:
14704                   abort ();
14705                 }
14706             }
14707
14708           if (RELAX_BRANCH_LINK (fragp->fr_subtype))
14709             {
14710               /* Clear the and-link bit.  */
14711               gas_assert ((insn & 0xfc1c0000) == 0x04100000);
14712
14713               /* bltzal         0x04100000      bgezal  0x04110000
14714                  bltzall        0x04120000      bgezall 0x04130000  */
14715               insn &= ~0x00100000;
14716             }
14717
14718           /* Branch over the branch (if the branch was likely) or the
14719              full jump (not likely case).  Compute the offset from the
14720              current instruction to branch to.  */
14721           if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14722             i = 16;
14723           else
14724             {
14725               /* How many bytes in instructions we've already emitted?  */
14726               i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
14727               /* How many bytes in instructions from here to the end?  */
14728               i = fragp->fr_var - i;
14729             }
14730           /* Convert to instruction count.  */
14731           i >>= 2;
14732           /* Branch counts from the next instruction.  */
14733           i--;
14734           insn |= i;
14735           /* Branch over the jump.  */
14736           md_number_to_chars ((char *) buf, insn, 4);
14737           buf += 4;
14738
14739           /* nop */
14740           md_number_to_chars ((char *) buf, 0, 4);
14741           buf += 4;
14742
14743           if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14744             {
14745               /* beql $0, $0, 2f */
14746               insn = 0x50000000;
14747               /* Compute the PC offset from the current instruction to
14748                  the end of the variable frag.  */
14749               /* How many bytes in instructions we've already emitted?  */
14750               i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
14751               /* How many bytes in instructions from here to the end?  */
14752               i = fragp->fr_var - i;
14753               /* Convert to instruction count.  */
14754               i >>= 2;
14755               /* Don't decrement i, because we want to branch over the
14756                  delay slot.  */
14757
14758               insn |= i;
14759               md_number_to_chars ((char *) buf, insn, 4);
14760               buf += 4;
14761
14762               md_number_to_chars ((char *) buf, 0, 4);
14763               buf += 4;
14764             }
14765
14766         uncond:
14767           if (mips_pic == NO_PIC)
14768             {
14769               /* j or jal.  */
14770               insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
14771                       ? 0x0c000000 : 0x08000000);
14772               exp.X_op = O_symbol;
14773               exp.X_add_symbol = fragp->fr_symbol;
14774               exp.X_add_number = fragp->fr_offset;
14775
14776               fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
14777                                   4, &exp, FALSE, BFD_RELOC_MIPS_JMP);
14778               fixp->fx_file = fragp->fr_file;
14779               fixp->fx_line = fragp->fr_line;
14780
14781               md_number_to_chars ((char *) buf, insn, 4);
14782               buf += 4;
14783             }
14784           else
14785             {
14786               unsigned long at = RELAX_BRANCH_AT (fragp->fr_subtype);
14787
14788               /* lw/ld $at, <sym>($gp)  R_MIPS_GOT16 */
14789               insn = HAVE_64BIT_ADDRESSES ? 0xdf800000 : 0x8f800000;
14790               insn |= at << OP_SH_RT;
14791               exp.X_op = O_symbol;
14792               exp.X_add_symbol = fragp->fr_symbol;
14793               exp.X_add_number = fragp->fr_offset;
14794
14795               if (fragp->fr_offset)
14796                 {
14797                   exp.X_add_symbol = make_expr_symbol (&exp);
14798                   exp.X_add_number = 0;
14799                 }
14800
14801               fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
14802                                   4, &exp, FALSE, BFD_RELOC_MIPS_GOT16);
14803               fixp->fx_file = fragp->fr_file;
14804               fixp->fx_line = fragp->fr_line;
14805
14806               md_number_to_chars ((char *) buf, insn, 4);
14807               buf += 4;
14808
14809               if (mips_opts.isa == ISA_MIPS1)
14810                 {
14811                   /* nop */
14812                   md_number_to_chars ((char *) buf, 0, 4);
14813                   buf += 4;
14814                 }
14815
14816               /* d/addiu $at, $at, <sym>  R_MIPS_LO16 */
14817               insn = HAVE_64BIT_ADDRESSES ? 0x64000000 : 0x24000000;
14818               insn |= at << OP_SH_RS | at << OP_SH_RT;
14819
14820               fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
14821                                   4, &exp, FALSE, BFD_RELOC_LO16);
14822               fixp->fx_file = fragp->fr_file;
14823               fixp->fx_line = fragp->fr_line;
14824
14825               md_number_to_chars ((char *) buf, insn, 4);
14826               buf += 4;
14827
14828               /* j(al)r $at.  */
14829               if (RELAX_BRANCH_LINK (fragp->fr_subtype))
14830                 insn = 0x0000f809;
14831               else
14832                 insn = 0x00000008;
14833               insn |= at << OP_SH_RS;
14834
14835               md_number_to_chars ((char *) buf, insn, 4);
14836               buf += 4;
14837             }
14838         }
14839
14840       gas_assert (buf == (bfd_byte *)fragp->fr_literal
14841               + fragp->fr_fix + fragp->fr_var);
14842
14843       fragp->fr_fix += fragp->fr_var;
14844
14845       return;
14846     }
14847
14848   if (RELAX_MIPS16_P (fragp->fr_subtype))
14849     {
14850       int type;
14851       const struct mips16_immed_operand *op;
14852       bfd_boolean small, ext;
14853       offsetT val;
14854       bfd_byte *buf;
14855       unsigned long insn;
14856       bfd_boolean use_extend;
14857       unsigned short extend;
14858
14859       type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
14860       op = mips16_immed_operands;
14861       while (op->type != type)
14862         ++op;
14863
14864       if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14865         {
14866           small = FALSE;
14867           ext = TRUE;
14868         }
14869       else
14870         {
14871           small = TRUE;
14872           ext = FALSE;
14873         }
14874
14875       val = resolve_symbol_value (fragp->fr_symbol);
14876       if (op->pcrel)
14877         {
14878           addressT addr;
14879
14880           addr = fragp->fr_address + fragp->fr_fix;
14881
14882           /* The rules for the base address of a PC relative reloc are
14883              complicated; see mips16_extended_frag.  */
14884           if (type == 'p' || type == 'q')
14885             {
14886               addr += 2;
14887               if (ext)
14888                 addr += 2;
14889               /* Ignore the low bit in the target, since it will be
14890                  set for a text label.  */
14891               if ((val & 1) != 0)
14892                 --val;
14893             }
14894           else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
14895             addr -= 4;
14896           else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
14897             addr -= 2;
14898
14899           addr &= ~ (addressT) ((1 << op->shift) - 1);
14900           val -= addr;
14901
14902           /* Make sure the section winds up with the alignment we have
14903              assumed.  */
14904           if (op->shift > 0)
14905             record_alignment (asec, op->shift);
14906         }
14907
14908       if (ext
14909           && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
14910               || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
14911         as_warn_where (fragp->fr_file, fragp->fr_line,
14912                        _("extended instruction in delay slot"));
14913
14914       buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix);
14915
14916       if (target_big_endian)
14917         insn = bfd_getb16 (buf);
14918       else
14919         insn = bfd_getl16 (buf);
14920
14921       mips16_immed (fragp->fr_file, fragp->fr_line, type, val,
14922                     RELAX_MIPS16_USER_EXT (fragp->fr_subtype),
14923                     small, ext, &insn, &use_extend, &extend);
14924
14925       if (use_extend)
14926         {
14927           md_number_to_chars ((char *) buf, 0xf000 | extend, 2);
14928           fragp->fr_fix += 2;
14929           buf += 2;
14930         }
14931
14932       md_number_to_chars ((char *) buf, insn, 2);
14933       fragp->fr_fix += 2;
14934       buf += 2;
14935     }
14936   else
14937     {
14938       int first, second;
14939       fixS *fixp;
14940
14941       first = RELAX_FIRST (fragp->fr_subtype);
14942       second = RELAX_SECOND (fragp->fr_subtype);
14943       fixp = (fixS *) fragp->fr_opcode;
14944
14945       /* Possibly emit a warning if we've chosen the longer option.  */
14946       if (((fragp->fr_subtype & RELAX_USE_SECOND) != 0)
14947           == ((fragp->fr_subtype & RELAX_SECOND_LONGER) != 0))
14948         {
14949           const char *msg = macro_warning (fragp->fr_subtype);
14950           if (msg != 0)
14951             as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
14952         }
14953
14954       /* Go through all the fixups for the first sequence.  Disable them
14955          (by marking them as done) if we're going to use the second
14956          sequence instead.  */
14957       while (fixp
14958              && fixp->fx_frag == fragp
14959              && fixp->fx_where < fragp->fr_fix - second)
14960         {
14961           if (fragp->fr_subtype & RELAX_USE_SECOND)
14962             fixp->fx_done = 1;
14963           fixp = fixp->fx_next;
14964         }
14965
14966       /* Go through the fixups for the second sequence.  Disable them if
14967          we're going to use the first sequence, otherwise adjust their
14968          addresses to account for the relaxation.  */
14969       while (fixp && fixp->fx_frag == fragp)
14970         {
14971           if (fragp->fr_subtype & RELAX_USE_SECOND)
14972             fixp->fx_where -= first;
14973           else
14974             fixp->fx_done = 1;
14975           fixp = fixp->fx_next;
14976         }
14977
14978       /* Now modify the frag contents.  */
14979       if (fragp->fr_subtype & RELAX_USE_SECOND)
14980         {
14981           char *start;
14982
14983           start = fragp->fr_literal + fragp->fr_fix - first - second;
14984           memmove (start, start + first, second);
14985           fragp->fr_fix -= first;
14986         }
14987       else
14988         fragp->fr_fix -= second;
14989     }
14990 }
14991
14992 #ifdef OBJ_ELF
14993
14994 /* This function is called after the relocs have been generated.
14995    We've been storing mips16 text labels as odd.  Here we convert them
14996    back to even for the convenience of the debugger.  */
14997
14998 void
14999 mips_frob_file_after_relocs (void)
15000 {
15001   asymbol **syms;
15002   unsigned int count, i;
15003
15004   if (!IS_ELF)
15005     return;
15006
15007   syms = bfd_get_outsymbols (stdoutput);
15008   count = bfd_get_symcount (stdoutput);
15009   for (i = 0; i < count; i++, syms++)
15010     {
15011       if (ELF_ST_IS_MIPS16 (elf_symbol (*syms)->internal_elf_sym.st_other)
15012           && ((*syms)->value & 1) != 0)
15013         {
15014           (*syms)->value &= ~1;
15015           /* If the symbol has an odd size, it was probably computed
15016              incorrectly, so adjust that as well.  */
15017           if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
15018             ++elf_symbol (*syms)->internal_elf_sym.st_size;
15019         }
15020     }
15021 }
15022
15023 #endif
15024
15025 /* This function is called whenever a label is defined, including fake
15026    labels instantiated off the dot special symbol.  It is used when
15027    handling branch delays; if a branch has a label, we assume we cannot
15028    move it.  This also bumps the value of the symbol by 1 in compressed
15029    code.  */
15030
15031 void
15032 mips_record_label (symbolS *sym)
15033 {
15034   segment_info_type *si = seg_info (now_seg);
15035   struct insn_label_list *l;
15036
15037   if (free_insn_labels == NULL)
15038     l = (struct insn_label_list *) xmalloc (sizeof *l);
15039   else
15040     {
15041       l = free_insn_labels;
15042       free_insn_labels = l->next;
15043     }
15044
15045   l->label = sym;
15046   l->next = si->label_list;
15047   si->label_list = l;
15048 }
15049
15050 /* This function is called as tc_frob_label() whenever a label is defined
15051    and adds a DWARF-2 record we only want for true labels.  */
15052
15053 void
15054 mips_define_label (symbolS *sym)
15055 {
15056   mips_record_label (sym);
15057 #ifdef OBJ_ELF
15058   dwarf2_emit_label (sym);
15059 #endif
15060 }
15061 \f
15062 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
15063
15064 /* Some special processing for a MIPS ELF file.  */
15065
15066 void
15067 mips_elf_final_processing (void)
15068 {
15069   /* Write out the register information.  */
15070   if (mips_abi != N64_ABI)
15071     {
15072       Elf32_RegInfo s;
15073
15074       s.ri_gprmask = mips_gprmask;
15075       s.ri_cprmask[0] = mips_cprmask[0];
15076       s.ri_cprmask[1] = mips_cprmask[1];
15077       s.ri_cprmask[2] = mips_cprmask[2];
15078       s.ri_cprmask[3] = mips_cprmask[3];
15079       /* The gp_value field is set by the MIPS ELF backend.  */
15080
15081       bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
15082                                        ((Elf32_External_RegInfo *)
15083                                         mips_regmask_frag));
15084     }
15085   else
15086     {
15087       Elf64_Internal_RegInfo s;
15088
15089       s.ri_gprmask = mips_gprmask;
15090       s.ri_pad = 0;
15091       s.ri_cprmask[0] = mips_cprmask[0];
15092       s.ri_cprmask[1] = mips_cprmask[1];
15093       s.ri_cprmask[2] = mips_cprmask[2];
15094       s.ri_cprmask[3] = mips_cprmask[3];
15095       /* The gp_value field is set by the MIPS ELF backend.  */
15096
15097       bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
15098                                        ((Elf64_External_RegInfo *)
15099                                         mips_regmask_frag));
15100     }
15101
15102   /* Set the MIPS ELF flag bits.  FIXME: There should probably be some
15103      sort of BFD interface for this.  */
15104   if (mips_any_noreorder)
15105     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
15106   if (mips_pic != NO_PIC)
15107     {
15108     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
15109       elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
15110     }
15111   if (mips_abicalls)
15112     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
15113
15114   /* Set MIPS ELF flags for ASEs.  */
15115   /* We may need to define a new flag for DSP ASE, and set this flag when
15116      file_ase_dsp is true.  */
15117   /* Same for DSP R2.  */
15118   /* We may need to define a new flag for MT ASE, and set this flag when
15119      file_ase_mt is true.  */
15120   if (file_ase_mips16)
15121     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
15122 #if 0 /* XXX FIXME */
15123   if (file_ase_mips3d)
15124     elf_elfheader (stdoutput)->e_flags |= ???;
15125 #endif
15126   if (file_ase_mdmx)
15127     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
15128
15129   /* Set the MIPS ELF ABI flags.  */
15130   if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
15131     elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
15132   else if (mips_abi == O64_ABI)
15133     elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
15134   else if (mips_abi == EABI_ABI)
15135     {
15136       if (!file_mips_gp32)
15137         elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
15138       else
15139         elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
15140     }
15141   else if (mips_abi == N32_ABI)
15142     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
15143
15144   /* Nothing to do for N64_ABI.  */
15145
15146   if (mips_32bitmode)
15147     elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
15148
15149 #if 0 /* XXX FIXME */
15150   /* 32 bit code with 64 bit FP registers.  */
15151   if (!file_mips_fp32 && ABI_NEEDS_32BIT_REGS (mips_abi))
15152     elf_elfheader (stdoutput)->e_flags |= ???;
15153 #endif
15154 }
15155
15156 #endif /* OBJ_ELF || OBJ_MAYBE_ELF */
15157 \f
15158 typedef struct proc {
15159   symbolS *func_sym;
15160   symbolS *func_end_sym;
15161   unsigned long reg_mask;
15162   unsigned long reg_offset;
15163   unsigned long fpreg_mask;
15164   unsigned long fpreg_offset;
15165   unsigned long frame_offset;
15166   unsigned long frame_reg;
15167   unsigned long pc_reg;
15168 } procS;
15169
15170 static procS cur_proc;
15171 static procS *cur_proc_ptr;
15172 static int numprocs;
15173
15174 /* Implement NOP_OPCODE.  We encode a MIPS16 nop as "1" and a normal
15175    nop as "0".  */
15176
15177 char
15178 mips_nop_opcode (void)
15179 {
15180   return seg_info (now_seg)->tc_segment_info_data.mips16;
15181 }
15182
15183 /* Fill in an rs_align_code fragment.  This only needs to do something
15184    for MIPS16 code, where 0 is not a nop.  */
15185
15186 void
15187 mips_handle_align (fragS *fragp)
15188 {
15189   char *p;
15190   int bytes, size, excess;
15191   valueT opcode;
15192
15193   if (fragp->fr_type != rs_align_code)
15194     return;
15195
15196   p = fragp->fr_literal + fragp->fr_fix;
15197   if (*p)
15198     {
15199       opcode = mips16_nop_insn.insn_opcode;
15200       size = 2;
15201     }
15202   else
15203     {
15204       opcode = nop_insn.insn_opcode;
15205       size = 4;
15206     }
15207
15208   bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
15209   excess = bytes % size;
15210   if (excess != 0)
15211     {
15212       /* If we're not inserting a whole number of instructions,
15213          pad the end of the fixed part of the frag with zeros.  */
15214       memset (p, 0, excess);
15215       p += excess;
15216       fragp->fr_fix += excess;
15217     }
15218
15219   md_number_to_chars (p, opcode, size);
15220   fragp->fr_var = size;
15221 }
15222
15223 static void
15224 md_obj_begin (void)
15225 {
15226 }
15227
15228 static void
15229 md_obj_end (void)
15230 {
15231   /* Check for premature end, nesting errors, etc.  */
15232   if (cur_proc_ptr)
15233     as_warn (_("missing .end at end of assembly"));
15234 }
15235
15236 static long
15237 get_number (void)
15238 {
15239   int negative = 0;
15240   long val = 0;
15241
15242   if (*input_line_pointer == '-')
15243     {
15244       ++input_line_pointer;
15245       negative = 1;
15246     }
15247   if (!ISDIGIT (*input_line_pointer))
15248     as_bad (_("expected simple number"));
15249   if (input_line_pointer[0] == '0')
15250     {
15251       if (input_line_pointer[1] == 'x')
15252         {
15253           input_line_pointer += 2;
15254           while (ISXDIGIT (*input_line_pointer))
15255             {
15256               val <<= 4;
15257               val |= hex_value (*input_line_pointer++);
15258             }
15259           return negative ? -val : val;
15260         }
15261       else
15262         {
15263           ++input_line_pointer;
15264           while (ISDIGIT (*input_line_pointer))
15265             {
15266               val <<= 3;
15267               val |= *input_line_pointer++ - '0';
15268             }
15269           return negative ? -val : val;
15270         }
15271     }
15272   if (!ISDIGIT (*input_line_pointer))
15273     {
15274       printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
15275               *input_line_pointer, *input_line_pointer);
15276       as_warn (_("invalid number"));
15277       return -1;
15278     }
15279   while (ISDIGIT (*input_line_pointer))
15280     {
15281       val *= 10;
15282       val += *input_line_pointer++ - '0';
15283     }
15284   return negative ? -val : val;
15285 }
15286
15287 /* The .file directive; just like the usual .file directive, but there
15288    is an initial number which is the ECOFF file index.  In the non-ECOFF
15289    case .file implies DWARF-2.  */
15290
15291 static void
15292 s_mips_file (int x ATTRIBUTE_UNUSED)
15293 {
15294   static int first_file_directive = 0;
15295
15296   if (ECOFF_DEBUGGING)
15297     {
15298       get_number ();
15299       s_app_file (0);
15300     }
15301   else
15302     {
15303       char *filename;
15304
15305       filename = dwarf2_directive_file (0);
15306
15307       /* Versions of GCC up to 3.1 start files with a ".file"
15308          directive even for stabs output.  Make sure that this
15309          ".file" is handled.  Note that you need a version of GCC
15310          after 3.1 in order to support DWARF-2 on MIPS.  */
15311       if (filename != NULL && ! first_file_directive)
15312         {
15313           (void) new_logical_line (filename, -1);
15314           s_app_file_string (filename, 0);
15315         }
15316       first_file_directive = 1;
15317     }
15318 }
15319
15320 /* The .loc directive, implying DWARF-2.  */
15321
15322 static void
15323 s_mips_loc (int x ATTRIBUTE_UNUSED)
15324 {
15325   if (!ECOFF_DEBUGGING)
15326     dwarf2_directive_loc (0);
15327 }
15328
15329 /* The .end directive.  */
15330
15331 static void
15332 s_mips_end (int x ATTRIBUTE_UNUSED)
15333 {
15334   symbolS *p;
15335
15336   /* Following functions need their own .frame and .cprestore directives.  */
15337   mips_frame_reg_valid = 0;
15338   mips_cprestore_valid = 0;
15339
15340   if (!is_end_of_line[(unsigned char) *input_line_pointer])
15341     {
15342       p = get_symbol ();
15343       demand_empty_rest_of_line ();
15344     }
15345   else
15346     p = NULL;
15347
15348   if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
15349     as_warn (_(".end not in text section"));
15350
15351   if (!cur_proc_ptr)
15352     {
15353       as_warn (_(".end directive without a preceding .ent directive."));
15354       demand_empty_rest_of_line ();
15355       return;
15356     }
15357
15358   if (p != NULL)
15359     {
15360       gas_assert (S_GET_NAME (p));
15361       if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
15362         as_warn (_(".end symbol does not match .ent symbol."));
15363
15364       if (debug_type == DEBUG_STABS)
15365         stabs_generate_asm_endfunc (S_GET_NAME (p),
15366                                     S_GET_NAME (p));
15367     }
15368   else
15369     as_warn (_(".end directive missing or unknown symbol"));
15370
15371 #ifdef OBJ_ELF
15372   /* Create an expression to calculate the size of the function.  */
15373   if (p && cur_proc_ptr)
15374     {
15375       OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
15376       expressionS *exp = xmalloc (sizeof (expressionS));
15377
15378       obj->size = exp;
15379       exp->X_op = O_subtract;
15380       exp->X_add_symbol = symbol_temp_new_now ();
15381       exp->X_op_symbol = p;
15382       exp->X_add_number = 0;
15383
15384       cur_proc_ptr->func_end_sym = exp->X_add_symbol;
15385     }
15386
15387   /* Generate a .pdr section.  */
15388   if (IS_ELF && !ECOFF_DEBUGGING && mips_flag_pdr)
15389     {
15390       segT saved_seg = now_seg;
15391       subsegT saved_subseg = now_subseg;
15392       expressionS exp;
15393       char *fragp;
15394
15395 #ifdef md_flush_pending_output
15396       md_flush_pending_output ();
15397 #endif
15398
15399       gas_assert (pdr_seg);
15400       subseg_set (pdr_seg, 0);
15401
15402       /* Write the symbol.  */
15403       exp.X_op = O_symbol;
15404       exp.X_add_symbol = p;
15405       exp.X_add_number = 0;
15406       emit_expr (&exp, 4);
15407
15408       fragp = frag_more (7 * 4);
15409
15410       md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
15411       md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
15412       md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
15413       md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
15414       md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
15415       md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
15416       md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
15417
15418       subseg_set (saved_seg, saved_subseg);
15419     }
15420 #endif /* OBJ_ELF */
15421
15422   cur_proc_ptr = NULL;
15423 }
15424
15425 /* The .aent and .ent directives.  */
15426
15427 static void
15428 s_mips_ent (int aent)
15429 {
15430   symbolS *symbolP;
15431
15432   symbolP = get_symbol ();
15433   if (*input_line_pointer == ',')
15434     ++input_line_pointer;
15435   SKIP_WHITESPACE ();
15436   if (ISDIGIT (*input_line_pointer)
15437       || *input_line_pointer == '-')
15438     get_number ();
15439
15440   if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
15441     as_warn (_(".ent or .aent not in text section."));
15442
15443   if (!aent && cur_proc_ptr)
15444     as_warn (_("missing .end"));
15445
15446   if (!aent)
15447     {
15448       /* This function needs its own .frame and .cprestore directives.  */
15449       mips_frame_reg_valid = 0;
15450       mips_cprestore_valid = 0;
15451
15452       cur_proc_ptr = &cur_proc;
15453       memset (cur_proc_ptr, '\0', sizeof (procS));
15454
15455       cur_proc_ptr->func_sym = symbolP;
15456
15457       ++numprocs;
15458
15459       if (debug_type == DEBUG_STABS)
15460         stabs_generate_asm_func (S_GET_NAME (symbolP),
15461                                  S_GET_NAME (symbolP));
15462     }
15463
15464   symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
15465
15466   demand_empty_rest_of_line ();
15467 }
15468
15469 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
15470    then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
15471    s_mips_frame is used so that we can set the PDR information correctly.
15472    We can't use the ecoff routines because they make reference to the ecoff
15473    symbol table (in the mdebug section).  */
15474
15475 static void
15476 s_mips_frame (int ignore ATTRIBUTE_UNUSED)
15477 {
15478 #ifdef OBJ_ELF
15479   if (IS_ELF && !ECOFF_DEBUGGING)
15480     {
15481       long val;
15482
15483       if (cur_proc_ptr == (procS *) NULL)
15484         {
15485           as_warn (_(".frame outside of .ent"));
15486           demand_empty_rest_of_line ();
15487           return;
15488         }
15489
15490       cur_proc_ptr->frame_reg = tc_get_register (1);
15491
15492       SKIP_WHITESPACE ();
15493       if (*input_line_pointer++ != ','
15494           || get_absolute_expression_and_terminator (&val) != ',')
15495         {
15496           as_warn (_("Bad .frame directive"));
15497           --input_line_pointer;
15498           demand_empty_rest_of_line ();
15499           return;
15500         }
15501
15502       cur_proc_ptr->frame_offset = val;
15503       cur_proc_ptr->pc_reg = tc_get_register (0);
15504
15505       demand_empty_rest_of_line ();
15506     }
15507   else
15508 #endif /* OBJ_ELF */
15509     s_ignore (ignore);
15510 }
15511
15512 /* The .fmask and .mask directives. If the mdebug section is present
15513    (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
15514    embedded targets, s_mips_mask is used so that we can set the PDR
15515    information correctly. We can't use the ecoff routines because they
15516    make reference to the ecoff symbol table (in the mdebug section).  */
15517
15518 static void
15519 s_mips_mask (int reg_type)
15520 {
15521 #ifdef OBJ_ELF
15522   if (IS_ELF && !ECOFF_DEBUGGING)
15523     {
15524       long mask, off;
15525
15526       if (cur_proc_ptr == (procS *) NULL)
15527         {
15528           as_warn (_(".mask/.fmask outside of .ent"));
15529           demand_empty_rest_of_line ();
15530           return;
15531         }
15532
15533       if (get_absolute_expression_and_terminator (&mask) != ',')
15534         {
15535           as_warn (_("Bad .mask/.fmask directive"));
15536           --input_line_pointer;
15537           demand_empty_rest_of_line ();
15538           return;
15539         }
15540
15541       off = get_absolute_expression ();
15542
15543       if (reg_type == 'F')
15544         {
15545           cur_proc_ptr->fpreg_mask = mask;
15546           cur_proc_ptr->fpreg_offset = off;
15547         }
15548       else
15549         {
15550           cur_proc_ptr->reg_mask = mask;
15551           cur_proc_ptr->reg_offset = off;
15552         }
15553
15554       demand_empty_rest_of_line ();
15555     }
15556   else
15557 #endif /* OBJ_ELF */
15558     s_ignore (reg_type);
15559 }
15560
15561 /* A table describing all the processors gas knows about.  Names are
15562    matched in the order listed.
15563
15564    To ease comparison, please keep this table in the same order as
15565    gcc's mips_cpu_info_table[].  */
15566 static const struct mips_cpu_info mips_cpu_info_table[] =
15567 {
15568   /* Entries for generic ISAs */
15569   { "mips1",          MIPS_CPU_IS_ISA,          ISA_MIPS1,      CPU_R3000 },
15570   { "mips2",          MIPS_CPU_IS_ISA,          ISA_MIPS2,      CPU_R6000 },
15571   { "mips3",          MIPS_CPU_IS_ISA,          ISA_MIPS3,      CPU_R4000 },
15572   { "mips4",          MIPS_CPU_IS_ISA,          ISA_MIPS4,      CPU_R8000 },
15573   { "mips5",          MIPS_CPU_IS_ISA,          ISA_MIPS5,      CPU_MIPS5 },
15574   { "mips32",         MIPS_CPU_IS_ISA,          ISA_MIPS32,     CPU_MIPS32 },
15575   { "mips32r2",       MIPS_CPU_IS_ISA,          ISA_MIPS32R2,   CPU_MIPS32R2 },
15576   { "mips64",         MIPS_CPU_IS_ISA,          ISA_MIPS64,     CPU_MIPS64 },
15577   { "mips64r2",       MIPS_CPU_IS_ISA,          ISA_MIPS64R2,   CPU_MIPS64R2 },
15578
15579   /* MIPS I */
15580   { "r3000",          0,                        ISA_MIPS1,      CPU_R3000 },
15581   { "r2000",          0,                        ISA_MIPS1,      CPU_R3000 },
15582   { "r3900",          0,                        ISA_MIPS1,      CPU_R3900 },
15583
15584   /* MIPS II */
15585   { "r6000",          0,                        ISA_MIPS2,      CPU_R6000 },
15586
15587   /* MIPS III */
15588   { "r4000",          0,                        ISA_MIPS3,      CPU_R4000 },
15589   { "r4010",          0,                        ISA_MIPS2,      CPU_R4010 },
15590   { "vr4100",         0,                        ISA_MIPS3,      CPU_VR4100 },
15591   { "vr4111",         0,                        ISA_MIPS3,      CPU_R4111 },
15592   { "vr4120",         0,                        ISA_MIPS3,      CPU_VR4120 },
15593   { "vr4130",         0,                        ISA_MIPS3,      CPU_VR4120 },
15594   { "vr4181",         0,                        ISA_MIPS3,      CPU_R4111 },
15595   { "vr4300",         0,                        ISA_MIPS3,      CPU_R4300 },
15596   { "r4400",          0,                        ISA_MIPS3,      CPU_R4400 },
15597   { "r4600",          0,                        ISA_MIPS3,      CPU_R4600 },
15598   { "orion",          0,                        ISA_MIPS3,      CPU_R4600 },
15599   { "r4650",          0,                        ISA_MIPS3,      CPU_R4650 },
15600   /* ST Microelectronics Loongson 2E and 2F cores */
15601   { "loongson2e",     0,                        ISA_MIPS3,   CPU_LOONGSON_2E },
15602   { "loongson2f",     0,                        ISA_MIPS3,   CPU_LOONGSON_2F },
15603
15604   /* MIPS IV */
15605   { "r8000",          0,                        ISA_MIPS4,      CPU_R8000 },
15606   { "r10000",         0,                        ISA_MIPS4,      CPU_R10000 },
15607   { "r12000",         0,                        ISA_MIPS4,      CPU_R12000 },
15608   { "r14000",         0,                        ISA_MIPS4,      CPU_R14000 },
15609   { "r16000",         0,                        ISA_MIPS4,      CPU_R16000 },
15610   { "vr5000",         0,                        ISA_MIPS4,      CPU_R5000 },
15611   { "vr5400",         0,                        ISA_MIPS4,      CPU_VR5400 },
15612   { "vr5500",         0,                        ISA_MIPS4,      CPU_VR5500 },
15613   { "rm5200",         0,                        ISA_MIPS4,      CPU_R5000 },
15614   { "rm5230",         0,                        ISA_MIPS4,      CPU_R5000 },
15615   { "rm5231",         0,                        ISA_MIPS4,      CPU_R5000 },
15616   { "rm5261",         0,                        ISA_MIPS4,      CPU_R5000 },
15617   { "rm5721",         0,                        ISA_MIPS4,      CPU_R5000 },
15618   { "rm7000",         0,                        ISA_MIPS4,      CPU_RM7000 },
15619   { "rm9000",         0,                        ISA_MIPS4,      CPU_RM9000 },
15620
15621   /* MIPS 32 */
15622   { "4kc",            0,                        ISA_MIPS32,     CPU_MIPS32 },
15623   { "4km",            0,                        ISA_MIPS32,     CPU_MIPS32 },
15624   { "4kp",            0,                        ISA_MIPS32,     CPU_MIPS32 },
15625   { "4ksc",           MIPS_CPU_ASE_SMARTMIPS,   ISA_MIPS32,     CPU_MIPS32 },
15626
15627   /* MIPS 32 Release 2 */
15628   { "4kec",           0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15629   { "4kem",           0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15630   { "4kep",           0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15631   { "4ksd",           MIPS_CPU_ASE_SMARTMIPS,   ISA_MIPS32R2,   CPU_MIPS32R2 },
15632   { "m4k",            0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15633   { "m4kp",           0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15634   { "24kc",           0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15635   { "24kf2_1",        0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15636   { "24kf",           0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15637   { "24kf1_1",        0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15638   /* Deprecated forms of the above.  */
15639   { "24kfx",          0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15640   { "24kx",           0,                        ISA_MIPS32R2,   CPU_MIPS32R2 },
15641   /* 24KE is a 24K with DSP ASE, other ASEs are optional.  */
15642   { "24kec",          MIPS_CPU_ASE_DSP,         ISA_MIPS32R2,   CPU_MIPS32R2 },
15643   { "24kef2_1",       MIPS_CPU_ASE_DSP,         ISA_MIPS32R2,   CPU_MIPS32R2 },
15644   { "24kef",          MIPS_CPU_ASE_DSP,         ISA_MIPS32R2,   CPU_MIPS32R2 },
15645   { "24kef1_1",       MIPS_CPU_ASE_DSP,         ISA_MIPS32R2,   CPU_MIPS32R2 },
15646   /* Deprecated forms of the above.  */
15647   { "24kefx",         MIPS_CPU_ASE_DSP,         ISA_MIPS32R2,   CPU_MIPS32R2 },
15648   { "24kex",          MIPS_CPU_ASE_DSP,         ISA_MIPS32R2,   CPU_MIPS32R2 },
15649   /* 34K is a 24K with DSP and MT ASE, other ASEs are optional.  */
15650   { "34kc",           MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15651                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15652   { "34kf2_1",        MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15653                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15654   { "34kf",           MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15655                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15656   { "34kf1_1",        MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15657                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15658   /* Deprecated forms of the above.  */
15659   { "34kfx",          MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15660                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15661   { "34kx",           MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15662                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15663   /* 74K with DSP and DSPR2 ASE, other ASEs are optional.  */
15664   { "74kc",           MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15665                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15666   { "74kf2_1",        MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15667                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15668   { "74kf",           MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15669                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15670   { "74kf1_1",        MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15671                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15672   { "74kf3_2",        MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15673                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15674   /* Deprecated forms of the above.  */
15675   { "74kfx",          MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15676                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15677   { "74kx",           MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15678                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15679   /* 1004K cores are multiprocessor versions of the 34K.  */
15680   { "1004kc",         MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15681                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15682   { "1004kf2_1",      MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15683                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15684   { "1004kf",         MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15685                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15686   { "1004kf1_1",      MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15687                                                 ISA_MIPS32R2,   CPU_MIPS32R2 },
15688
15689   /* MIPS 64 */
15690   { "5kc",            0,                        ISA_MIPS64,     CPU_MIPS64 },
15691   { "5kf",            0,                        ISA_MIPS64,     CPU_MIPS64 },
15692   { "20kc",           MIPS_CPU_ASE_MIPS3D,      ISA_MIPS64,     CPU_MIPS64 },
15693   { "25kf",           MIPS_CPU_ASE_MIPS3D,      ISA_MIPS64,     CPU_MIPS64 },
15694
15695   /* Broadcom SB-1 CPU core */
15696   { "sb1",            MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
15697                                                 ISA_MIPS64,     CPU_SB1 },
15698   /* Broadcom SB-1A CPU core */
15699   { "sb1a",           MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
15700                                                 ISA_MIPS64,     CPU_SB1 },
15701   
15702   { "loongson3a",     0,                        ISA_MIPS64,     CPU_LOONGSON_3A },
15703
15704   /* MIPS 64 Release 2 */
15705
15706   /* Cavium Networks Octeon CPU core */
15707   { "octeon",         0,      ISA_MIPS64R2,   CPU_OCTEON },
15708
15709   /* RMI Xlr */
15710   { "xlr",            0,      ISA_MIPS64,     CPU_XLR },
15711
15712   /* End marker */
15713   { NULL, 0, 0, 0 }
15714 };
15715
15716
15717 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
15718    with a final "000" replaced by "k".  Ignore case.
15719
15720    Note: this function is shared between GCC and GAS.  */
15721
15722 static bfd_boolean
15723 mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
15724 {
15725   while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
15726     given++, canonical++;
15727
15728   return ((*given == 0 && *canonical == 0)
15729           || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
15730 }
15731
15732
15733 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
15734    CPU name.  We've traditionally allowed a lot of variation here.
15735
15736    Note: this function is shared between GCC and GAS.  */
15737
15738 static bfd_boolean
15739 mips_matching_cpu_name_p (const char *canonical, const char *given)
15740 {
15741   /* First see if the name matches exactly, or with a final "000"
15742      turned into "k".  */
15743   if (mips_strict_matching_cpu_name_p (canonical, given))
15744     return TRUE;
15745
15746   /* If not, try comparing based on numerical designation alone.
15747      See if GIVEN is an unadorned number, or 'r' followed by a number.  */
15748   if (TOLOWER (*given) == 'r')
15749     given++;
15750   if (!ISDIGIT (*given))
15751     return FALSE;
15752
15753   /* Skip over some well-known prefixes in the canonical name,
15754      hoping to find a number there too.  */
15755   if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
15756     canonical += 2;
15757   else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
15758     canonical += 2;
15759   else if (TOLOWER (canonical[0]) == 'r')
15760     canonical += 1;
15761
15762   return mips_strict_matching_cpu_name_p (canonical, given);
15763 }
15764
15765
15766 /* Parse an option that takes the name of a processor as its argument.
15767    OPTION is the name of the option and CPU_STRING is the argument.
15768    Return the corresponding processor enumeration if the CPU_STRING is
15769    recognized, otherwise report an error and return null.
15770
15771    A similar function exists in GCC.  */
15772
15773 static const struct mips_cpu_info *
15774 mips_parse_cpu (const char *option, const char *cpu_string)
15775 {
15776   const struct mips_cpu_info *p;
15777
15778   /* 'from-abi' selects the most compatible architecture for the given
15779      ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs.  For the
15780      EABIs, we have to decide whether we're using the 32-bit or 64-bit
15781      version.  Look first at the -mgp options, if given, otherwise base
15782      the choice on MIPS_DEFAULT_64BIT.
15783
15784      Treat NO_ABI like the EABIs.  One reason to do this is that the
15785      plain 'mips' and 'mips64' configs have 'from-abi' as their default
15786      architecture.  This code picks MIPS I for 'mips' and MIPS III for
15787      'mips64', just as we did in the days before 'from-abi'.  */
15788   if (strcasecmp (cpu_string, "from-abi") == 0)
15789     {
15790       if (ABI_NEEDS_32BIT_REGS (mips_abi))
15791         return mips_cpu_info_from_isa (ISA_MIPS1);
15792
15793       if (ABI_NEEDS_64BIT_REGS (mips_abi))
15794         return mips_cpu_info_from_isa (ISA_MIPS3);
15795
15796       if (file_mips_gp32 >= 0)
15797         return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
15798
15799       return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
15800                                      ? ISA_MIPS3
15801                                      : ISA_MIPS1);
15802     }
15803
15804   /* 'default' has traditionally been a no-op.  Probably not very useful.  */
15805   if (strcasecmp (cpu_string, "default") == 0)
15806     return 0;
15807
15808   for (p = mips_cpu_info_table; p->name != 0; p++)
15809     if (mips_matching_cpu_name_p (p->name, cpu_string))
15810       return p;
15811
15812   as_bad (_("Bad value (%s) for %s"), cpu_string, option);
15813   return 0;
15814 }
15815
15816 /* Return the canonical processor information for ISA (a member of the
15817    ISA_MIPS* enumeration).  */
15818
15819 static const struct mips_cpu_info *
15820 mips_cpu_info_from_isa (int isa)
15821 {
15822   int i;
15823
15824   for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
15825     if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA)
15826         && isa == mips_cpu_info_table[i].isa)
15827       return (&mips_cpu_info_table[i]);
15828
15829   return NULL;
15830 }
15831
15832 static const struct mips_cpu_info *
15833 mips_cpu_info_from_arch (int arch)
15834 {
15835   int i;
15836
15837   for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
15838     if (arch == mips_cpu_info_table[i].cpu)
15839       return (&mips_cpu_info_table[i]);
15840
15841   return NULL;
15842 }
15843 \f
15844 static void
15845 show (FILE *stream, const char *string, int *col_p, int *first_p)
15846 {
15847   if (*first_p)
15848     {
15849       fprintf (stream, "%24s", "");
15850       *col_p = 24;
15851     }
15852   else
15853     {
15854       fprintf (stream, ", ");
15855       *col_p += 2;
15856     }
15857
15858   if (*col_p + strlen (string) > 72)
15859     {
15860       fprintf (stream, "\n%24s", "");
15861       *col_p = 24;
15862     }
15863
15864   fprintf (stream, "%s", string);
15865   *col_p += strlen (string);
15866
15867   *first_p = 0;
15868 }
15869
15870 void
15871 md_show_usage (FILE *stream)
15872 {
15873   int column, first;
15874   size_t i;
15875
15876   fprintf (stream, _("\
15877 MIPS options:\n\
15878 -EB                     generate big endian output\n\
15879 -EL                     generate little endian output\n\
15880 -g, -g2                 do not remove unneeded NOPs or swap branches\n\
15881 -G NUM                  allow referencing objects up to NUM bytes\n\
15882                         implicitly with the gp register [default 8]\n"));
15883   fprintf (stream, _("\
15884 -mips1                  generate MIPS ISA I instructions\n\
15885 -mips2                  generate MIPS ISA II instructions\n\
15886 -mips3                  generate MIPS ISA III instructions\n\
15887 -mips4                  generate MIPS ISA IV instructions\n\
15888 -mips5                  generate MIPS ISA V instructions\n\
15889 -mips32                 generate MIPS32 ISA instructions\n\
15890 -mips32r2               generate MIPS32 release 2 ISA instructions\n\
15891 -mips64                 generate MIPS64 ISA instructions\n\
15892 -mips64r2               generate MIPS64 release 2 ISA instructions\n\
15893 -march=CPU/-mtune=CPU   generate code/schedule for CPU, where CPU is one of:\n"));
15894
15895   first = 1;
15896
15897   for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
15898     show (stream, mips_cpu_info_table[i].name, &column, &first);
15899   show (stream, "from-abi", &column, &first);
15900   fputc ('\n', stream);
15901
15902   fprintf (stream, _("\
15903 -mCPU                   equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
15904 -no-mCPU                don't generate code specific to CPU.\n\
15905                         For -mCPU and -no-mCPU, CPU must be one of:\n"));
15906
15907   first = 1;
15908
15909   show (stream, "3900", &column, &first);
15910   show (stream, "4010", &column, &first);
15911   show (stream, "4100", &column, &first);
15912   show (stream, "4650", &column, &first);
15913   fputc ('\n', stream);
15914
15915   fprintf (stream, _("\
15916 -mips16                 generate mips16 instructions\n\
15917 -no-mips16              do not generate mips16 instructions\n"));
15918   fprintf (stream, _("\
15919 -msmartmips             generate smartmips instructions\n\
15920 -mno-smartmips          do not generate smartmips instructions\n"));  
15921   fprintf (stream, _("\
15922 -mdsp                   generate DSP instructions\n\
15923 -mno-dsp                do not generate DSP instructions\n"));
15924   fprintf (stream, _("\
15925 -mdspr2                 generate DSP R2 instructions\n\
15926 -mno-dspr2              do not generate DSP R2 instructions\n"));
15927   fprintf (stream, _("\
15928 -mmt                    generate MT instructions\n\
15929 -mno-mt                 do not generate MT instructions\n"));
15930   fprintf (stream, _("\
15931 -mfix-loongson2f-jump   work around Loongson2F JUMP instructions\n\
15932 -mfix-loongson2f-nop    work around Loongson2F NOP errata\n\
15933 -mfix-vr4120            work around certain VR4120 errata\n\
15934 -mfix-vr4130            work around VR4130 mflo/mfhi errata\n\
15935 -mfix-24k               insert a nop after ERET and DERET instructions\n\
15936 -mfix-cn63xxp1          work around CN63XXP1 PREF errata\n\
15937 -mgp32                  use 32-bit GPRs, regardless of the chosen ISA\n\
15938 -mfp32                  use 32-bit FPRs, regardless of the chosen ISA\n\
15939 -msym32                 assume all symbols have 32-bit values\n\
15940 -O0                     remove unneeded NOPs, do not swap branches\n\
15941 -O                      remove unneeded NOPs and swap branches\n\
15942 --trap, --no-break      trap exception on div by 0 and mult overflow\n\
15943 --break, --no-trap      break exception on div by 0 and mult overflow\n"));
15944   fprintf (stream, _("\
15945 -mhard-float            allow floating-point instructions\n\
15946 -msoft-float            do not allow floating-point instructions\n\
15947 -msingle-float          only allow 32-bit floating-point operations\n\
15948 -mdouble-float          allow 32-bit and 64-bit floating-point operations\n\
15949 --[no-]construct-floats [dis]allow floating point values to be constructed\n"
15950                      ));
15951 #ifdef OBJ_ELF
15952   fprintf (stream, _("\
15953 -KPIC, -call_shared     generate SVR4 position independent code\n\
15954 -call_nonpic            generate non-PIC code that can operate with DSOs\n\
15955 -mvxworks-pic           generate VxWorks position independent code\n\
15956 -non_shared             do not generate code that can operate with DSOs\n\
15957 -xgot                   assume a 32 bit GOT\n\
15958 -mpdr, -mno-pdr         enable/disable creation of .pdr sections\n\
15959 -mshared, -mno-shared   disable/enable .cpload optimization for\n\
15960                         position dependent (non shared) code\n\
15961 -mabi=ABI               create ABI conformant object file for:\n"));
15962
15963   first = 1;
15964
15965   show (stream, "32", &column, &first);
15966   show (stream, "o64", &column, &first);
15967   show (stream, "n32", &column, &first);
15968   show (stream, "64", &column, &first);
15969   show (stream, "eabi", &column, &first);
15970
15971   fputc ('\n', stream);
15972
15973   fprintf (stream, _("\
15974 -32                     create o32 ABI object file (default)\n\
15975 -n32                    create n32 ABI object file\n\
15976 -64                     create 64 ABI object file\n"));
15977 #endif
15978 }
15979
15980 #ifdef TE_IRIX
15981 enum dwarf2_format
15982 mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
15983 {
15984   if (HAVE_64BIT_SYMBOLS)
15985     return dwarf2_format_64bit_irix;
15986   else
15987     return dwarf2_format_32bit;
15988 }
15989 #endif
15990
15991 int
15992 mips_dwarf2_addr_size (void)
15993 {
15994   if (HAVE_64BIT_OBJECTS)
15995     return 8;
15996   else
15997     return 4;
15998 }
15999
16000 /* Standard calling conventions leave the CFA at SP on entry.  */
16001 void
16002 mips_cfi_frame_initial_instructions (void)
16003 {
16004   cfi_add_CFA_def_cfa_register (SP);
16005 }
16006
16007 int
16008 tc_mips_regname_to_dw2regnum (char *regname)
16009 {
16010   unsigned int regnum = -1;
16011   unsigned int reg;
16012
16013   if (reg_lookup (&regname, RTYPE_GP | RTYPE_NUM, &reg))
16014     regnum = reg;
16015
16016   return regnum;
16017 }