bfd/
[deliverable/binutils-gdb.git] / gas / config / tc-mips.c
CommitLineData
252b5132 1/* tc-mips.c -- assemble code for a MIPS chip.
81912461 2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
c67a084a
NC
3 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
252b5132
RH
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
ec2655a6 14 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
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
4b4da160
NC
24 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
25 02110-1301, USA. */
252b5132
RH
26
27#include "as.h"
28#include "config.h"
29#include "subsegs.h"
3882b010 30#include "safe-ctype.h"
252b5132 31
252b5132
RH
32#include "opcode/mips.h"
33#include "itbl-ops.h"
c5dd6aab 34#include "dwarf2dbg.h"
5862107c 35#include "dw2gencfi.h"
252b5132
RH
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. */
17a2f251
TS
45static int mips_output_flavor (void);
46static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
252b5132
RH
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
252b5132
RH
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
ecb4347a
DJ
75int mips_flag_mdebug = -1;
76
dcd410fe
RO
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
81int mips_flag_pdr = FALSE;
82#else
83int mips_flag_pdr = TRUE;
84#endif
85
252b5132
RH
86#include "ecoff.h"
87
88#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
89static char *mips_regmask_frag;
90#endif
91
85b51719 92#define ZERO 0
741fe287 93#define ATREG 1
252b5132
RH
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
741fe287
MR
105#define AT mips_opts.at
106
252b5132
RH
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
113extern int target_big_endian;
114
252b5132 115/* The name of the readonly data section. */
4d0d148d 116#define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_ecoff_flavour \
252b5132 117 ? ".rdata" \
056350c6
NC
118 : OUTPUT_FLAVOR == bfd_target_coff_flavour \
119 ? ".rdata" \
252b5132
RH
120 : OUTPUT_FLAVOR == bfd_target_elf_flavour \
121 ? ".rodata" \
122 : (abort (), ""))
123
47e39b9d
RS
124/* Information about an instruction, including its format, operands
125 and fixups. */
126struct mips_cl_insn
127{
128 /* The opcode's entry in mips_opcodes or mips16_opcodes. */
129 const struct mips_opcode *insn_mo;
130
131 /* True if this is a mips16 instruction and if we want the extended
132 form of INSN_MO. */
133 bfd_boolean use_extend;
134
135 /* The 16-bit extension instruction to use when USE_EXTEND is true. */
136 unsigned short extend;
137
138 /* The 16-bit or 32-bit bitstring of the instruction itself. This is
139 a copy of INSN_MO->match with the operands filled in. */
140 unsigned long insn_opcode;
141
142 /* The frag that contains the instruction. */
143 struct frag *frag;
144
145 /* The offset into FRAG of the first instruction byte. */
146 long where;
147
148 /* The relocs associated with the instruction, if any. */
149 fixS *fixp[3];
150
a38419a5
RS
151 /* True if this entry cannot be moved from its current position. */
152 unsigned int fixed_p : 1;
47e39b9d 153
708587a4 154 /* True if this instruction occurred in a .set noreorder block. */
47e39b9d
RS
155 unsigned int noreorder_p : 1;
156
2fa15973
RS
157 /* True for mips16 instructions that jump to an absolute address. */
158 unsigned int mips16_absolute_jump_p : 1;
15be625d
CM
159
160 /* True if this instruction is complete. */
161 unsigned int complete_p : 1;
47e39b9d
RS
162};
163
a325df1d
TS
164/* The ABI to use. */
165enum mips_abi_level
166{
167 NO_ABI = 0,
168 O32_ABI,
169 O64_ABI,
170 N32_ABI,
171 N64_ABI,
172 EABI_ABI
173};
174
175/* MIPS ABI we are using for this output file. */
316f5878 176static enum mips_abi_level mips_abi = NO_ABI;
a325df1d 177
143d77c5
EC
178/* Whether or not we have code that can call pic code. */
179int mips_abicalls = FALSE;
180
aa6975fb
ILT
181/* Whether or not we have code which can be put into a shared
182 library. */
183static bfd_boolean mips_in_shared = TRUE;
184
252b5132
RH
185/* This is the set of options which may be modified by the .set
186 pseudo-op. We use a struct so that .set push and .set pop are more
187 reliable. */
188
e972090a
NC
189struct mips_set_options
190{
252b5132
RH
191 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
192 if it has not been initialized. Changed by `.set mipsN', and the
193 -mipsN command line option, and the default CPU. */
194 int isa;
1f25f5d3
CD
195 /* Enabled Application Specific Extensions (ASEs). These are set to -1
196 if they have not been initialized. Changed by `.set <asename>', by
197 command line options, and based on the default architecture. */
198 int ase_mips3d;
deec1734 199 int ase_mdmx;
e16bfa71 200 int ase_smartmips;
74cd071d 201 int ase_dsp;
8b082fb1 202 int ase_dspr2;
ef2e4d86 203 int ase_mt;
252b5132
RH
204 /* Whether we are assembling for the mips16 processor. 0 if we are
205 not, 1 if we are, and -1 if the value has not been initialized.
206 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
207 -nomips16 command line options, and the default CPU. */
208 int mips16;
209 /* Non-zero if we should not reorder instructions. Changed by `.set
210 reorder' and `.set noreorder'. */
211 int noreorder;
741fe287
MR
212 /* Non-zero if we should not permit the register designated "assembler
213 temporary" to be used in instructions. The value is the register
214 number, normally $at ($1). Changed by `.set at=REG', `.set noat'
215 (same as `.set at=$0') and `.set at' (same as `.set at=$1'). */
216 unsigned int at;
252b5132
RH
217 /* Non-zero if we should warn when a macro instruction expands into
218 more than one machine instruction. Changed by `.set nomacro' and
219 `.set macro'. */
220 int warn_about_macros;
221 /* Non-zero if we should not move instructions. Changed by `.set
222 move', `.set volatile', `.set nomove', and `.set novolatile'. */
223 int nomove;
224 /* Non-zero if we should not optimize branches by moving the target
225 of the branch into the delay slot. Actually, we don't perform
226 this optimization anyhow. Changed by `.set bopt' and `.set
227 nobopt'. */
228 int nobopt;
229 /* Non-zero if we should not autoextend mips16 instructions.
230 Changed by `.set autoextend' and `.set noautoextend'. */
231 int noautoextend;
a325df1d
TS
232 /* Restrict general purpose registers and floating point registers
233 to 32 bit. This is initially determined when -mgp32 or -mfp32
234 is passed but can changed if the assembler code uses .set mipsN. */
235 int gp32;
236 int fp32;
fef14a42
TS
237 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
238 command line option, and the default CPU. */
239 int arch;
aed1a261
RS
240 /* True if ".set sym32" is in effect. */
241 bfd_boolean sym32;
037b32b9
AN
242 /* True if floating-point operations are not allowed. Changed by .set
243 softfloat or .set hardfloat, by command line options -msoft-float or
244 -mhard-float. The default is false. */
245 bfd_boolean soft_float;
246
247 /* True if only single-precision floating-point operations are allowed.
248 Changed by .set singlefloat or .set doublefloat, command-line options
249 -msingle-float or -mdouble-float. The default is false. */
250 bfd_boolean single_float;
252b5132
RH
251};
252
037b32b9
AN
253/* This is the struct we use to hold the current set of options. Note
254 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
255 -1 to indicate that they have not been initialized. */
256
a325df1d 257/* True if -mgp32 was passed. */
a8e8e863 258static int file_mips_gp32 = -1;
a325df1d
TS
259
260/* True if -mfp32 was passed. */
a8e8e863 261static int file_mips_fp32 = -1;
a325df1d 262
037b32b9
AN
263/* 1 if -msoft-float, 0 if -mhard-float. The default is 0. */
264static int file_mips_soft_float = 0;
265
266/* 1 if -msingle-float, 0 if -mdouble-float. The default is 0. */
267static int file_mips_single_float = 0;
252b5132 268
e972090a
NC
269static struct mips_set_options mips_opts =
270{
037b32b9
AN
271 /* isa */ ISA_UNKNOWN, /* ase_mips3d */ -1, /* ase_mdmx */ -1,
272 /* ase_smartmips */ 0, /* ase_dsp */ -1, /* ase_dspr2 */ -1, /* ase_mt */ -1,
273 /* mips16 */ -1, /* noreorder */ 0, /* at */ ATREG,
274 /* warn_about_macros */ 0, /* nomove */ 0, /* nobopt */ 0,
275 /* noautoextend */ 0, /* gp32 */ 0, /* fp32 */ 0, /* arch */ CPU_UNKNOWN,
276 /* sym32 */ FALSE, /* soft_float */ FALSE, /* single_float */ FALSE
e7af610e 277};
252b5132
RH
278
279/* These variables are filled in with the masks of registers used.
280 The object format code reads them and puts them in the appropriate
281 place. */
282unsigned long mips_gprmask;
283unsigned long mips_cprmask[4];
284
285/* MIPS ISA we are using for this output file. */
e7af610e 286static int file_mips_isa = ISA_UNKNOWN;
252b5132 287
738f4d98 288/* True if any MIPS16 code was produced. */
a4672219
TS
289static int file_ase_mips16;
290
3994f87e
TS
291#define ISA_SUPPORTS_MIPS16E (mips_opts.isa == ISA_MIPS32 \
292 || mips_opts.isa == ISA_MIPS32R2 \
293 || mips_opts.isa == ISA_MIPS64 \
294 || mips_opts.isa == ISA_MIPS64R2)
295
b12dd2e4
CF
296/* True if we want to create R_MIPS_JALR for jalr $25. */
297#ifdef TE_IRIX
1180b5a4 298#define MIPS_JALR_HINT_P(EXPR) HAVE_NEWABI
b12dd2e4 299#else
1180b5a4
RS
300/* As a GNU extension, we use R_MIPS_JALR for o32 too. However,
301 because there's no place for any addend, the only acceptable
302 expression is a bare symbol. */
303#define MIPS_JALR_HINT_P(EXPR) \
304 (!HAVE_IN_PLACE_ADDENDS \
305 || ((EXPR)->X_op == O_symbol && (EXPR)->X_add_number == 0))
b12dd2e4
CF
306#endif
307
1f25f5d3
CD
308/* True if -mips3d was passed or implied by arguments passed on the
309 command line (e.g., by -march). */
310static int file_ase_mips3d;
311
deec1734
CD
312/* True if -mdmx was passed or implied by arguments passed on the
313 command line (e.g., by -march). */
314static int file_ase_mdmx;
315
e16bfa71
TS
316/* True if -msmartmips was passed or implied by arguments passed on the
317 command line (e.g., by -march). */
318static int file_ase_smartmips;
319
ad3fea08
TS
320#define ISA_SUPPORTS_SMARTMIPS (mips_opts.isa == ISA_MIPS32 \
321 || mips_opts.isa == ISA_MIPS32R2)
e16bfa71 322
74cd071d
CF
323/* True if -mdsp was passed or implied by arguments passed on the
324 command line (e.g., by -march). */
325static int file_ase_dsp;
326
ad3fea08
TS
327#define ISA_SUPPORTS_DSP_ASE (mips_opts.isa == ISA_MIPS32R2 \
328 || mips_opts.isa == ISA_MIPS64R2)
329
65263ce3
TS
330#define ISA_SUPPORTS_DSP64_ASE (mips_opts.isa == ISA_MIPS64R2)
331
8b082fb1
TS
332/* True if -mdspr2 was passed or implied by arguments passed on the
333 command line (e.g., by -march). */
334static int file_ase_dspr2;
335
336#define ISA_SUPPORTS_DSPR2_ASE (mips_opts.isa == ISA_MIPS32R2 \
337 || mips_opts.isa == ISA_MIPS64R2)
338
ef2e4d86
CF
339/* True if -mmt was passed or implied by arguments passed on the
340 command line (e.g., by -march). */
341static int file_ase_mt;
342
ad3fea08
TS
343#define ISA_SUPPORTS_MT_ASE (mips_opts.isa == ISA_MIPS32R2 \
344 || mips_opts.isa == ISA_MIPS64R2)
345
ec68c924 346/* The argument of the -march= flag. The architecture we are assembling. */
fef14a42 347static int file_mips_arch = CPU_UNKNOWN;
316f5878 348static const char *mips_arch_string;
ec68c924
EC
349
350/* The argument of the -mtune= flag. The architecture for which we
351 are optimizing. */
352static int mips_tune = CPU_UNKNOWN;
316f5878 353static const char *mips_tune_string;
ec68c924 354
316f5878 355/* True when generating 32-bit code for a 64-bit processor. */
252b5132
RH
356static int mips_32bitmode = 0;
357
316f5878
RS
358/* True if the given ABI requires 32-bit registers. */
359#define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
360
361/* Likewise 64-bit registers. */
707bfff6
TS
362#define ABI_NEEDS_64BIT_REGS(ABI) \
363 ((ABI) == N32_ABI \
364 || (ABI) == N64_ABI \
316f5878
RS
365 || (ABI) == O64_ABI)
366
ad3fea08 367/* Return true if ISA supports 64 bit wide gp registers. */
707bfff6
TS
368#define ISA_HAS_64BIT_REGS(ISA) \
369 ((ISA) == ISA_MIPS3 \
370 || (ISA) == ISA_MIPS4 \
371 || (ISA) == ISA_MIPS5 \
372 || (ISA) == ISA_MIPS64 \
373 || (ISA) == ISA_MIPS64R2)
9ce8a5dd 374
ad3fea08
TS
375/* Return true if ISA supports 64 bit wide float registers. */
376#define ISA_HAS_64BIT_FPRS(ISA) \
377 ((ISA) == ISA_MIPS3 \
378 || (ISA) == ISA_MIPS4 \
379 || (ISA) == ISA_MIPS5 \
380 || (ISA) == ISA_MIPS32R2 \
381 || (ISA) == ISA_MIPS64 \
382 || (ISA) == ISA_MIPS64R2)
383
af7ee8bf
CD
384/* Return true if ISA supports 64-bit right rotate (dror et al.)
385 instructions. */
707bfff6
TS
386#define ISA_HAS_DROR(ISA) \
387 ((ISA) == ISA_MIPS64R2)
af7ee8bf
CD
388
389/* Return true if ISA supports 32-bit right rotate (ror et al.)
390 instructions. */
707bfff6
TS
391#define ISA_HAS_ROR(ISA) \
392 ((ISA) == ISA_MIPS32R2 \
393 || (ISA) == ISA_MIPS64R2 \
394 || mips_opts.ase_smartmips)
395
7455baf8
TS
396/* Return true if ISA supports single-precision floats in odd registers. */
397#define ISA_HAS_ODD_SINGLE_FPR(ISA) \
398 ((ISA) == ISA_MIPS32 \
399 || (ISA) == ISA_MIPS32R2 \
400 || (ISA) == ISA_MIPS64 \
401 || (ISA) == ISA_MIPS64R2)
af7ee8bf 402
ad3fea08
TS
403/* Return true if ISA supports move to/from high part of a 64-bit
404 floating-point register. */
405#define ISA_HAS_MXHC1(ISA) \
406 ((ISA) == ISA_MIPS32R2 \
407 || (ISA) == ISA_MIPS64R2)
408
e013f690 409#define HAVE_32BIT_GPRS \
ad3fea08 410 (mips_opts.gp32 || !ISA_HAS_64BIT_REGS (mips_opts.isa))
ca4e0257 411
e013f690 412#define HAVE_32BIT_FPRS \
ad3fea08 413 (mips_opts.fp32 || !ISA_HAS_64BIT_FPRS (mips_opts.isa))
ca4e0257 414
ad3fea08
TS
415#define HAVE_64BIT_GPRS (!HAVE_32BIT_GPRS)
416#define HAVE_64BIT_FPRS (!HAVE_32BIT_FPRS)
ca4e0257 417
316f5878 418#define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
e013f690 419
316f5878 420#define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
e013f690 421
3b91255e
RS
422/* True if relocations are stored in-place. */
423#define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
424
aed1a261
RS
425/* The ABI-derived address size. */
426#define HAVE_64BIT_ADDRESSES \
427 (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
428#define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
e013f690 429
aed1a261
RS
430/* The size of symbolic constants (i.e., expressions of the form
431 "SYMBOL" or "SYMBOL + OFFSET"). */
432#define HAVE_32BIT_SYMBOLS \
433 (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
434#define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
ca4e0257 435
b7c7d6c1
TS
436/* Addresses are loaded in different ways, depending on the address size
437 in use. The n32 ABI Documentation also mandates the use of additions
438 with overflow checking, but existing implementations don't follow it. */
f899b4b8 439#define ADDRESS_ADD_INSN \
b7c7d6c1 440 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
f899b4b8
TS
441
442#define ADDRESS_ADDI_INSN \
b7c7d6c1 443 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
f899b4b8
TS
444
445#define ADDRESS_LOAD_INSN \
446 (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
447
448#define ADDRESS_STORE_INSN \
449 (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
450
a4672219 451/* Return true if the given CPU supports the MIPS16 ASE. */
3396de36
TS
452#define CPU_HAS_MIPS16(cpu) \
453 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
454 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
a4672219 455
60b63b72
RS
456/* True if CPU has a dror instruction. */
457#define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
458
459/* True if CPU has a ror instruction. */
460#define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU)
461
dd3cbb7e
NC
462/* True if CPU has seq/sne and seqi/snei instructions. */
463#define CPU_HAS_SEQ(CPU) ((CPU) == CPU_OCTEON)
464
b19e8a9b
AN
465/* True if CPU does not implement the all the coprocessor insns. For these
466 CPUs only those COP insns are accepted that are explicitly marked to be
467 available on the CPU. ISA membership for COP insns is ignored. */
468#define NO_ISA_COP(CPU) ((CPU) == CPU_OCTEON)
469
c8978940
CD
470/* True if mflo and mfhi can be immediately followed by instructions
471 which write to the HI and LO registers.
472
473 According to MIPS specifications, MIPS ISAs I, II, and III need
474 (at least) two instructions between the reads of HI/LO and
475 instructions which write them, and later ISAs do not. Contradicting
476 the MIPS specifications, some MIPS IV processor user manuals (e.g.
477 the UM for the NEC Vr5000) document needing the instructions between
478 HI/LO reads and writes, as well. Therefore, we declare only MIPS32,
479 MIPS64 and later ISAs to have the interlocks, plus any specific
480 earlier-ISA CPUs for which CPU documentation declares that the
481 instructions are really interlocked. */
482#define hilo_interlocks \
483 (mips_opts.isa == ISA_MIPS32 \
484 || mips_opts.isa == ISA_MIPS32R2 \
485 || mips_opts.isa == ISA_MIPS64 \
486 || mips_opts.isa == ISA_MIPS64R2 \
487 || mips_opts.arch == CPU_R4010 \
488 || mips_opts.arch == CPU_R10000 \
489 || mips_opts.arch == CPU_R12000 \
3aa3176b
TS
490 || mips_opts.arch == CPU_R14000 \
491 || mips_opts.arch == CPU_R16000 \
c8978940 492 || mips_opts.arch == CPU_RM7000 \
c8978940
CD
493 || mips_opts.arch == CPU_VR5500 \
494 )
252b5132
RH
495
496/* Whether the processor uses hardware interlocks to protect reads
81912461
ILT
497 from the GPRs after they are loaded from memory, and thus does not
498 require nops to be inserted. This applies to instructions marked
499 INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA
500 level I. */
252b5132 501#define gpr_interlocks \
e7af610e 502 (mips_opts.isa != ISA_MIPS1 \
fef14a42 503 || mips_opts.arch == CPU_R3900)
252b5132 504
81912461
ILT
505/* Whether the processor uses hardware interlocks to avoid delays
506 required by coprocessor instructions, and thus does not require
507 nops to be inserted. This applies to instructions marked
508 INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
509 between instructions marked INSN_WRITE_COND_CODE and ones marked
510 INSN_READ_COND_CODE. These nops are only required at MIPS ISA
511 levels I, II, and III. */
bdaaa2e1 512/* Itbl support may require additional care here. */
81912461
ILT
513#define cop_interlocks \
514 ((mips_opts.isa != ISA_MIPS1 \
515 && mips_opts.isa != ISA_MIPS2 \
516 && mips_opts.isa != ISA_MIPS3) \
517 || mips_opts.arch == CPU_R4300 \
81912461
ILT
518 )
519
520/* Whether the processor uses hardware interlocks to protect reads
521 from coprocessor registers after they are loaded from memory, and
522 thus does not require nops to be inserted. This applies to
523 instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only
524 requires at MIPS ISA level I. */
525#define cop_mem_interlocks (mips_opts.isa != ISA_MIPS1)
252b5132 526
6b76fefe
CM
527/* Is this a mfhi or mflo instruction? */
528#define MF_HILO_INSN(PINFO) \
b19e8a9b
AN
529 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
530
531/* Returns true for a (non floating-point) coprocessor instruction. Reading
532 or writing the condition code is only possible on the coprocessors and
533 these insns are not marked with INSN_COP. Thus for these insns use the
a242dc0d 534 condition-code flags. */
b19e8a9b
AN
535#define COP_INSN(PINFO) \
536 (PINFO != INSN_MACRO \
a242dc0d
AN
537 && ((PINFO) & (FP_S | FP_D)) == 0 \
538 && ((PINFO) & (INSN_COP | INSN_READ_COND_CODE | INSN_WRITE_COND_CODE)))
6b76fefe 539
252b5132
RH
540/* MIPS PIC level. */
541
a161fe53 542enum mips_pic_level mips_pic;
252b5132 543
c9914766 544/* 1 if we should generate 32 bit offsets from the $gp register in
252b5132 545 SVR4_PIC mode. Currently has no meaning in other modes. */
c9914766 546static int mips_big_got = 0;
252b5132
RH
547
548/* 1 if trap instructions should used for overflow rather than break
549 instructions. */
c9914766 550static int mips_trap = 0;
252b5132 551
119d663a 552/* 1 if double width floating point constants should not be constructed
b6ff326e 553 by assembling two single width halves into two single width floating
119d663a
NC
554 point registers which just happen to alias the double width destination
555 register. On some architectures this aliasing can be disabled by a bit
d547a75e 556 in the status register, and the setting of this bit cannot be determined
119d663a
NC
557 automatically at assemble time. */
558static int mips_disable_float_construction;
559
252b5132
RH
560/* Non-zero if any .set noreorder directives were used. */
561
562static int mips_any_noreorder;
563
6b76fefe
CM
564/* Non-zero if nops should be inserted when the register referenced in
565 an mfhi/mflo instruction is read in the next two instructions. */
566static int mips_7000_hilo_fix;
567
02ffd3e4 568/* The size of objects in the small data section. */
156c2f8b 569static unsigned int g_switch_value = 8;
252b5132
RH
570/* Whether the -G option was used. */
571static int g_switch_seen = 0;
572
573#define N_RMASK 0xc4
574#define N_VFP 0xd4
575
576/* If we can determine in advance that GP optimization won't be
577 possible, we can skip the relaxation stuff that tries to produce
578 GP-relative references. This makes delay slot optimization work
579 better.
580
581 This function can only provide a guess, but it seems to work for
fba2b7f9
GK
582 gcc output. It needs to guess right for gcc, otherwise gcc
583 will put what it thinks is a GP-relative instruction in a branch
584 delay slot.
252b5132
RH
585
586 I don't know if a fix is needed for the SVR4_PIC mode. I've only
587 fixed it for the non-PIC mode. KR 95/04/07 */
17a2f251 588static int nopic_need_relax (symbolS *, int);
252b5132
RH
589
590/* handle of the OPCODE hash table */
591static struct hash_control *op_hash = NULL;
592
593/* The opcode hash table we use for the mips16. */
594static struct hash_control *mips16_op_hash = NULL;
595
596/* This array holds the chars that always start a comment. If the
597 pre-processor is disabled, these aren't very useful */
598const char comment_chars[] = "#";
599
600/* This array holds the chars that only start a comment at the beginning of
601 a line. If the line seems to have the form '# 123 filename'
602 .line and .file directives will appear in the pre-processed output */
603/* Note that input_file.c hand checks for '#' at the beginning of the
604 first line of the input file. This is because the compiler outputs
bdaaa2e1 605 #NO_APP at the beginning of its output. */
252b5132
RH
606/* Also note that C style comments are always supported. */
607const char line_comment_chars[] = "#";
608
bdaaa2e1 609/* This array holds machine specific line separator characters. */
63a0b638 610const char line_separator_chars[] = ";";
252b5132
RH
611
612/* Chars that can be used to separate mant from exp in floating point nums */
613const char EXP_CHARS[] = "eE";
614
615/* Chars that mean this number is a floating point constant */
616/* As in 0f12.456 */
617/* or 0d1.2345e12 */
618const char FLT_CHARS[] = "rRsSfFdDxXpP";
619
620/* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
621 changed in read.c . Ideally it shouldn't have to know about it at all,
622 but nothing is ideal around here.
623 */
624
625static char *insn_error;
626
627static int auto_align = 1;
628
629/* When outputting SVR4 PIC code, the assembler needs to know the
630 offset in the stack frame from which to restore the $gp register.
631 This is set by the .cprestore pseudo-op, and saved in this
632 variable. */
633static offsetT mips_cprestore_offset = -1;
634
67c1ffbe 635/* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
6478892d 636 more optimizations, it can use a register value instead of a memory-saved
956cd1d6 637 offset and even an other register than $gp as global pointer. */
6478892d
TS
638static offsetT mips_cpreturn_offset = -1;
639static int mips_cpreturn_register = -1;
640static int mips_gp_register = GP;
def2e0dd 641static int mips_gprel_offset = 0;
6478892d 642
7a621144
DJ
643/* Whether mips_cprestore_offset has been set in the current function
644 (or whether it has already been warned about, if not). */
645static int mips_cprestore_valid = 0;
646
252b5132
RH
647/* This is the register which holds the stack frame, as set by the
648 .frame pseudo-op. This is needed to implement .cprestore. */
649static int mips_frame_reg = SP;
650
7a621144
DJ
651/* Whether mips_frame_reg has been set in the current function
652 (or whether it has already been warned about, if not). */
653static int mips_frame_reg_valid = 0;
654
252b5132
RH
655/* To output NOP instructions correctly, we need to keep information
656 about the previous two instructions. */
657
658/* Whether we are optimizing. The default value of 2 means to remove
659 unneeded NOPs and swap branch instructions when possible. A value
660 of 1 means to not swap branches. A value of 0 means to always
661 insert NOPs. */
662static int mips_optimize = 2;
663
664/* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
665 equivalent to seeing no -g option at all. */
666static int mips_debug = 0;
667
7d8e00cf
RS
668/* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata. */
669#define MAX_VR4130_NOPS 4
670
671/* The maximum number of NOPs needed to fill delay slots. */
672#define MAX_DELAY_NOPS 2
673
674/* The maximum number of NOPs needed for any purpose. */
675#define MAX_NOPS 4
71400594
RS
676
677/* A list of previous instructions, with index 0 being the most recent.
678 We need to look back MAX_NOPS instructions when filling delay slots
679 or working around processor errata. We need to look back one
680 instruction further if we're thinking about using history[0] to
681 fill a branch delay slot. */
682static struct mips_cl_insn history[1 + MAX_NOPS];
252b5132 683
1e915849
RS
684/* Nop instructions used by emit_nop. */
685static struct mips_cl_insn nop_insn, mips16_nop_insn;
686
687/* The appropriate nop for the current mode. */
688#define NOP_INSN (mips_opts.mips16 ? &mips16_nop_insn : &nop_insn)
252b5132 689
252b5132
RH
690/* If this is set, it points to a frag holding nop instructions which
691 were inserted before the start of a noreorder section. If those
692 nops turn out to be unnecessary, the size of the frag can be
693 decreased. */
694static fragS *prev_nop_frag;
695
696/* The number of nop instructions we created in prev_nop_frag. */
697static int prev_nop_frag_holds;
698
699/* The number of nop instructions that we know we need in
bdaaa2e1 700 prev_nop_frag. */
252b5132
RH
701static int prev_nop_frag_required;
702
703/* The number of instructions we've seen since prev_nop_frag. */
704static int prev_nop_frag_since;
705
706/* For ECOFF and ELF, relocations against symbols are done in two
707 parts, with a HI relocation and a LO relocation. Each relocation
708 has only 16 bits of space to store an addend. This means that in
709 order for the linker to handle carries correctly, it must be able
710 to locate both the HI and the LO relocation. This means that the
711 relocations must appear in order in the relocation table.
712
713 In order to implement this, we keep track of each unmatched HI
714 relocation. We then sort them so that they immediately precede the
bdaaa2e1 715 corresponding LO relocation. */
252b5132 716
e972090a
NC
717struct mips_hi_fixup
718{
252b5132
RH
719 /* Next HI fixup. */
720 struct mips_hi_fixup *next;
721 /* This fixup. */
722 fixS *fixp;
723 /* The section this fixup is in. */
724 segT seg;
725};
726
727/* The list of unmatched HI relocs. */
728
729static struct mips_hi_fixup *mips_hi_fixup_list;
730
64bdfcaf
RS
731/* The frag containing the last explicit relocation operator.
732 Null if explicit relocations have not been used. */
733
734static fragS *prev_reloc_op_frag;
735
252b5132
RH
736/* Map normal MIPS register numbers to mips16 register numbers. */
737
738#define X ILLEGAL_REG
e972090a
NC
739static const int mips32_to_16_reg_map[] =
740{
252b5132
RH
741 X, X, 2, 3, 4, 5, 6, 7,
742 X, X, X, X, X, X, X, X,
743 0, 1, X, X, X, X, X, X,
744 X, X, X, X, X, X, X, X
745};
746#undef X
747
748/* Map mips16 register numbers to normal MIPS register numbers. */
749
e972090a
NC
750static const unsigned int mips16_to_32_reg_map[] =
751{
252b5132
RH
752 16, 17, 2, 3, 4, 5, 6, 7
753};
60b63b72 754
71400594
RS
755/* Classifies the kind of instructions we're interested in when
756 implementing -mfix-vr4120. */
c67a084a
NC
757enum fix_vr4120_class
758{
71400594
RS
759 FIX_VR4120_MACC,
760 FIX_VR4120_DMACC,
761 FIX_VR4120_MULT,
762 FIX_VR4120_DMULT,
763 FIX_VR4120_DIV,
764 FIX_VR4120_MTHILO,
765 NUM_FIX_VR4120_CLASSES
766};
767
c67a084a
NC
768/* ...likewise -mfix-loongson2f-jump. */
769static bfd_boolean mips_fix_loongson2f_jump;
770
771/* ...likewise -mfix-loongson2f-nop. */
772static bfd_boolean mips_fix_loongson2f_nop;
773
774/* True if -mfix-loongson2f-nop or -mfix-loongson2f-jump passed. */
775static bfd_boolean mips_fix_loongson2f;
776
71400594
RS
777/* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
778 there must be at least one other instruction between an instruction
779 of type X and an instruction of type Y. */
780static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
781
782/* True if -mfix-vr4120 is in force. */
d766e8ec 783static int mips_fix_vr4120;
4a6a3df4 784
7d8e00cf
RS
785/* ...likewise -mfix-vr4130. */
786static int mips_fix_vr4130;
787
6a32d874
CM
788/* ...likewise -mfix-24k. */
789static int mips_fix_24k;
790
d954098f
DD
791/* ...likewise -mfix-cn63xxp1 */
792static bfd_boolean mips_fix_cn63xxp1;
793
4a6a3df4
AO
794/* We don't relax branches by default, since this causes us to expand
795 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
796 fail to compute the offset before expanding the macro to the most
797 efficient expansion. */
798
799static int mips_relax_branch;
252b5132 800\f
4d7206a2
RS
801/* The expansion of many macros depends on the type of symbol that
802 they refer to. For example, when generating position-dependent code,
803 a macro that refers to a symbol may have two different expansions,
804 one which uses GP-relative addresses and one which uses absolute
805 addresses. When generating SVR4-style PIC, a macro may have
806 different expansions for local and global symbols.
807
808 We handle these situations by generating both sequences and putting
809 them in variant frags. In position-dependent code, the first sequence
810 will be the GP-relative one and the second sequence will be the
811 absolute one. In SVR4 PIC, the first sequence will be for global
812 symbols and the second will be for local symbols.
813
584892a6
RS
814 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
815 SECOND are the lengths of the two sequences in bytes. These fields
816 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
817 the subtype has the following flags:
4d7206a2 818
584892a6
RS
819 RELAX_USE_SECOND
820 Set if it has been decided that we should use the second
821 sequence instead of the first.
822
823 RELAX_SECOND_LONGER
824 Set in the first variant frag if the macro's second implementation
825 is longer than its first. This refers to the macro as a whole,
826 not an individual relaxation.
827
828 RELAX_NOMACRO
829 Set in the first variant frag if the macro appeared in a .set nomacro
830 block and if one alternative requires a warning but the other does not.
831
832 RELAX_DELAY_SLOT
833 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
834 delay slot.
4d7206a2
RS
835
836 The frag's "opcode" points to the first fixup for relaxable code.
837
838 Relaxable macros are generated using a sequence such as:
839
840 relax_start (SYMBOL);
841 ... generate first expansion ...
842 relax_switch ();
843 ... generate second expansion ...
844 relax_end ();
845
846 The code and fixups for the unwanted alternative are discarded
847 by md_convert_frag. */
584892a6 848#define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
4d7206a2 849
584892a6
RS
850#define RELAX_FIRST(X) (((X) >> 8) & 0xff)
851#define RELAX_SECOND(X) ((X) & 0xff)
852#define RELAX_USE_SECOND 0x10000
853#define RELAX_SECOND_LONGER 0x20000
854#define RELAX_NOMACRO 0x40000
855#define RELAX_DELAY_SLOT 0x80000
252b5132 856
4a6a3df4
AO
857/* Branch without likely bit. If label is out of range, we turn:
858
859 beq reg1, reg2, label
860 delay slot
861
862 into
863
864 bne reg1, reg2, 0f
865 nop
866 j label
867 0: delay slot
868
869 with the following opcode replacements:
870
871 beq <-> bne
872 blez <-> bgtz
873 bltz <-> bgez
874 bc1f <-> bc1t
875
876 bltzal <-> bgezal (with jal label instead of j label)
877
878 Even though keeping the delay slot instruction in the delay slot of
879 the branch would be more efficient, it would be very tricky to do
880 correctly, because we'd have to introduce a variable frag *after*
881 the delay slot instruction, and expand that instead. Let's do it
882 the easy way for now, even if the branch-not-taken case now costs
883 one additional instruction. Out-of-range branches are not supposed
884 to be common, anyway.
885
886 Branch likely. If label is out of range, we turn:
887
888 beql reg1, reg2, label
889 delay slot (annulled if branch not taken)
890
891 into
892
893 beql reg1, reg2, 1f
894 nop
895 beql $0, $0, 2f
896 nop
897 1: j[al] label
898 delay slot (executed only if branch taken)
899 2:
900
901 It would be possible to generate a shorter sequence by losing the
902 likely bit, generating something like:
b34976b6 903
4a6a3df4
AO
904 bne reg1, reg2, 0f
905 nop
906 j[al] label
907 delay slot (executed only if branch taken)
908 0:
909
910 beql -> bne
911 bnel -> beq
912 blezl -> bgtz
913 bgtzl -> blez
914 bltzl -> bgez
915 bgezl -> bltz
916 bc1fl -> bc1t
917 bc1tl -> bc1f
918
919 bltzall -> bgezal (with jal label instead of j label)
920 bgezall -> bltzal (ditto)
921
922
923 but it's not clear that it would actually improve performance. */
66b3e8da
MR
924#define RELAX_BRANCH_ENCODE(at, uncond, likely, link, toofar) \
925 ((relax_substateT) \
926 (0xc0000000 \
927 | ((at) & 0x1f) \
928 | ((toofar) ? 0x20 : 0) \
929 | ((link) ? 0x40 : 0) \
930 | ((likely) ? 0x80 : 0) \
931 | ((uncond) ? 0x100 : 0)))
4a6a3df4 932#define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
66b3e8da
MR
933#define RELAX_BRANCH_UNCOND(i) (((i) & 0x100) != 0)
934#define RELAX_BRANCH_LIKELY(i) (((i) & 0x80) != 0)
935#define RELAX_BRANCH_LINK(i) (((i) & 0x40) != 0)
936#define RELAX_BRANCH_TOOFAR(i) (((i) & 0x20) != 0)
937#define RELAX_BRANCH_AT(i) ((i) & 0x1f)
4a6a3df4 938
252b5132
RH
939/* For mips16 code, we use an entirely different form of relaxation.
940 mips16 supports two versions of most instructions which take
941 immediate values: a small one which takes some small value, and a
942 larger one which takes a 16 bit value. Since branches also follow
943 this pattern, relaxing these values is required.
944
945 We can assemble both mips16 and normal MIPS code in a single
946 object. Therefore, we need to support this type of relaxation at
947 the same time that we support the relaxation described above. We
948 use the high bit of the subtype field to distinguish these cases.
949
950 The information we store for this type of relaxation is the
951 argument code found in the opcode file for this relocation, whether
952 the user explicitly requested a small or extended form, and whether
953 the relocation is in a jump or jal delay slot. That tells us the
954 size of the value, and how it should be stored. We also store
955 whether the fragment is considered to be extended or not. We also
956 store whether this is known to be a branch to a different section,
957 whether we have tried to relax this frag yet, and whether we have
958 ever extended a PC relative fragment because of a shift count. */
959#define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
960 (0x80000000 \
961 | ((type) & 0xff) \
962 | ((small) ? 0x100 : 0) \
963 | ((ext) ? 0x200 : 0) \
964 | ((dslot) ? 0x400 : 0) \
965 | ((jal_dslot) ? 0x800 : 0))
4a6a3df4 966#define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
252b5132
RH
967#define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
968#define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
969#define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
970#define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
971#define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
972#define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
973#define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
974#define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
975#define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
976#define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
977#define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
885add95
CD
978
979/* Is the given value a sign-extended 32-bit value? */
980#define IS_SEXT_32BIT_NUM(x) \
981 (((x) &~ (offsetT) 0x7fffffff) == 0 \
982 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
983
984/* Is the given value a sign-extended 16-bit value? */
985#define IS_SEXT_16BIT_NUM(x) \
986 (((x) &~ (offsetT) 0x7fff) == 0 \
987 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
988
2051e8c4
MR
989/* Is the given value a zero-extended 32-bit value? Or a negated one? */
990#define IS_ZEXT_32BIT_NUM(x) \
991 (((x) &~ (offsetT) 0xffffffff) == 0 \
992 || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
993
bf12938e
RS
994/* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
995 VALUE << SHIFT. VALUE is evaluated exactly once. */
996#define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
997 (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
998 | (((VALUE) & (MASK)) << (SHIFT)))
999
1000/* Extract bits MASK << SHIFT from STRUCT and shift them right
1001 SHIFT places. */
1002#define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
1003 (((STRUCT) >> (SHIFT)) & (MASK))
1004
1005/* Change INSN's opcode so that the operand given by FIELD has value VALUE.
1006 INSN is a mips_cl_insn structure and VALUE is evaluated exactly once.
1007
1008 include/opcode/mips.h specifies operand fields using the macros
1009 OP_MASK_<FIELD> and OP_SH_<FIELD>. The MIPS16 equivalents start
1010 with "MIPS16OP" instead of "OP". */
1011#define INSERT_OPERAND(FIELD, INSN, VALUE) \
1012 INSERT_BITS ((INSN).insn_opcode, VALUE, OP_MASK_##FIELD, OP_SH_##FIELD)
1013#define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
1014 INSERT_BITS ((INSN).insn_opcode, VALUE, \
1015 MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
1016
1017/* Extract the operand given by FIELD from mips_cl_insn INSN. */
1018#define EXTRACT_OPERAND(FIELD, INSN) \
1019 EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD)
1020#define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
1021 EXTRACT_BITS ((INSN).insn_opcode, \
1022 MIPS16OP_MASK_##FIELD, \
1023 MIPS16OP_SH_##FIELD)
4d7206a2
RS
1024\f
1025/* Global variables used when generating relaxable macros. See the
1026 comment above RELAX_ENCODE for more details about how relaxation
1027 is used. */
1028static struct {
1029 /* 0 if we're not emitting a relaxable macro.
1030 1 if we're emitting the first of the two relaxation alternatives.
1031 2 if we're emitting the second alternative. */
1032 int sequence;
1033
1034 /* The first relaxable fixup in the current frag. (In other words,
1035 the first fixup that refers to relaxable code.) */
1036 fixS *first_fixup;
1037
1038 /* sizes[0] says how many bytes of the first alternative are stored in
1039 the current frag. Likewise sizes[1] for the second alternative. */
1040 unsigned int sizes[2];
1041
1042 /* The symbol on which the choice of sequence depends. */
1043 symbolS *symbol;
1044} mips_relax;
252b5132 1045\f
584892a6
RS
1046/* Global variables used to decide whether a macro needs a warning. */
1047static struct {
1048 /* True if the macro is in a branch delay slot. */
1049 bfd_boolean delay_slot_p;
1050
1051 /* For relaxable macros, sizes[0] is the length of the first alternative
1052 in bytes and sizes[1] is the length of the second alternative.
1053 For non-relaxable macros, both elements give the length of the
1054 macro in bytes. */
1055 unsigned int sizes[2];
1056
1057 /* The first variant frag for this macro. */
1058 fragS *first_frag;
1059} mips_macro_warning;
1060\f
252b5132
RH
1061/* Prototypes for static functions. */
1062
17a2f251 1063#define internalError() \
252b5132 1064 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
252b5132
RH
1065
1066enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
1067
b34976b6 1068static void append_insn
c67a084a 1069 (struct mips_cl_insn *, expressionS *, bfd_reloc_code_real_type *);
7d10b47d 1070static void mips_no_prev_insn (void);
c67a084a 1071static void macro_build (expressionS *, const char *, const char *, ...);
b34976b6 1072static void mips16_macro_build
03ea81db 1073 (expressionS *, const char *, const char *, va_list *);
67c0d1eb 1074static void load_register (int, expressionS *, int);
584892a6
RS
1075static void macro_start (void);
1076static void macro_end (void);
17a2f251
TS
1077static void macro (struct mips_cl_insn * ip);
1078static void mips16_macro (struct mips_cl_insn * ip);
17a2f251
TS
1079static void mips_ip (char *str, struct mips_cl_insn * ip);
1080static void mips16_ip (char *str, struct mips_cl_insn * ip);
b34976b6 1081static void mips16_immed
17a2f251
TS
1082 (char *, unsigned int, int, offsetT, bfd_boolean, bfd_boolean, bfd_boolean,
1083 unsigned long *, bfd_boolean *, unsigned short *);
5e0116d5 1084static size_t my_getSmallExpression
17a2f251
TS
1085 (expressionS *, bfd_reloc_code_real_type *, char *);
1086static void my_getExpression (expressionS *, char *);
1087static void s_align (int);
1088static void s_change_sec (int);
1089static void s_change_section (int);
1090static void s_cons (int);
1091static void s_float_cons (int);
1092static void s_mips_globl (int);
1093static void s_option (int);
1094static void s_mipsset (int);
1095static void s_abicalls (int);
1096static void s_cpload (int);
1097static void s_cpsetup (int);
1098static void s_cplocal (int);
1099static void s_cprestore (int);
1100static void s_cpreturn (int);
741d6ea8
JM
1101static void s_dtprelword (int);
1102static void s_dtpreldword (int);
17a2f251
TS
1103static void s_gpvalue (int);
1104static void s_gpword (int);
1105static void s_gpdword (int);
1106static void s_cpadd (int);
1107static void s_insn (int);
1108static void md_obj_begin (void);
1109static void md_obj_end (void);
1110static void s_mips_ent (int);
1111static void s_mips_end (int);
1112static void s_mips_frame (int);
1113static void s_mips_mask (int reg_type);
1114static void s_mips_stab (int);
1115static void s_mips_weakext (int);
1116static void s_mips_file (int);
1117static void s_mips_loc (int);
1118static bfd_boolean pic_need_relax (symbolS *, asection *);
4a6a3df4 1119static int relaxed_branch_length (fragS *, asection *, int);
17a2f251 1120static int validate_mips_insn (const struct mips_opcode *);
e7af610e
NC
1121
1122/* Table and functions used to map between CPU/ISA names, and
1123 ISA levels, and CPU numbers. */
1124
e972090a
NC
1125struct mips_cpu_info
1126{
e7af610e 1127 const char *name; /* CPU or ISA name. */
ad3fea08 1128 int flags; /* ASEs available, or ISA flag. */
e7af610e
NC
1129 int isa; /* ISA level. */
1130 int cpu; /* CPU number (default CPU if ISA). */
1131};
1132
ad3fea08
TS
1133#define MIPS_CPU_IS_ISA 0x0001 /* Is this an ISA? (If 0, a CPU.) */
1134#define MIPS_CPU_ASE_SMARTMIPS 0x0002 /* CPU implements SmartMIPS ASE */
1135#define MIPS_CPU_ASE_DSP 0x0004 /* CPU implements DSP ASE */
1136#define MIPS_CPU_ASE_MT 0x0008 /* CPU implements MT ASE */
1137#define MIPS_CPU_ASE_MIPS3D 0x0010 /* CPU implements MIPS-3D ASE */
1138#define MIPS_CPU_ASE_MDMX 0x0020 /* CPU implements MDMX ASE */
8b082fb1 1139#define MIPS_CPU_ASE_DSPR2 0x0040 /* CPU implements DSP R2 ASE */
ad3fea08 1140
17a2f251
TS
1141static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1142static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1143static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
252b5132
RH
1144\f
1145/* Pseudo-op table.
1146
1147 The following pseudo-ops from the Kane and Heinrich MIPS book
1148 should be defined here, but are currently unsupported: .alias,
1149 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1150
1151 The following pseudo-ops from the Kane and Heinrich MIPS book are
1152 specific to the type of debugging information being generated, and
1153 should be defined by the object format: .aent, .begin, .bend,
1154 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1155 .vreg.
1156
1157 The following pseudo-ops from the Kane and Heinrich MIPS book are
1158 not MIPS CPU specific, but are also not specific to the object file
1159 format. This file is probably the best place to define them, but
d84bcf09 1160 they are not currently supported: .asm0, .endr, .lab, .struct. */
252b5132 1161
e972090a
NC
1162static const pseudo_typeS mips_pseudo_table[] =
1163{
beae10d5 1164 /* MIPS specific pseudo-ops. */
252b5132
RH
1165 {"option", s_option, 0},
1166 {"set", s_mipsset, 0},
1167 {"rdata", s_change_sec, 'r'},
1168 {"sdata", s_change_sec, 's'},
1169 {"livereg", s_ignore, 0},
1170 {"abicalls", s_abicalls, 0},
1171 {"cpload", s_cpload, 0},
6478892d
TS
1172 {"cpsetup", s_cpsetup, 0},
1173 {"cplocal", s_cplocal, 0},
252b5132 1174 {"cprestore", s_cprestore, 0},
6478892d 1175 {"cpreturn", s_cpreturn, 0},
741d6ea8
JM
1176 {"dtprelword", s_dtprelword, 0},
1177 {"dtpreldword", s_dtpreldword, 0},
6478892d 1178 {"gpvalue", s_gpvalue, 0},
252b5132 1179 {"gpword", s_gpword, 0},
10181a0d 1180 {"gpdword", s_gpdword, 0},
252b5132
RH
1181 {"cpadd", s_cpadd, 0},
1182 {"insn", s_insn, 0},
1183
beae10d5 1184 /* Relatively generic pseudo-ops that happen to be used on MIPS
252b5132 1185 chips. */
38a57ae7 1186 {"asciiz", stringer, 8 + 1},
252b5132
RH
1187 {"bss", s_change_sec, 'b'},
1188 {"err", s_err, 0},
1189 {"half", s_cons, 1},
1190 {"dword", s_cons, 3},
1191 {"weakext", s_mips_weakext, 0},
7c752c2a
TS
1192 {"origin", s_org, 0},
1193 {"repeat", s_rept, 0},
252b5132 1194
998b3c36
MR
1195 /* For MIPS this is non-standard, but we define it for consistency. */
1196 {"sbss", s_change_sec, 'B'},
1197
beae10d5 1198 /* These pseudo-ops are defined in read.c, but must be overridden
252b5132
RH
1199 here for one reason or another. */
1200 {"align", s_align, 0},
1201 {"byte", s_cons, 0},
1202 {"data", s_change_sec, 'd'},
1203 {"double", s_float_cons, 'd'},
1204 {"float", s_float_cons, 'f'},
1205 {"globl", s_mips_globl, 0},
1206 {"global", s_mips_globl, 0},
1207 {"hword", s_cons, 1},
1208 {"int", s_cons, 2},
1209 {"long", s_cons, 2},
1210 {"octa", s_cons, 4},
1211 {"quad", s_cons, 3},
cca86cc8 1212 {"section", s_change_section, 0},
252b5132
RH
1213 {"short", s_cons, 1},
1214 {"single", s_float_cons, 'f'},
1215 {"stabn", s_mips_stab, 'n'},
1216 {"text", s_change_sec, 't'},
1217 {"word", s_cons, 2},
add56521 1218
add56521 1219 { "extern", ecoff_directive_extern, 0},
add56521 1220
43841e91 1221 { NULL, NULL, 0 },
252b5132
RH
1222};
1223
e972090a
NC
1224static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1225{
beae10d5
KH
1226 /* These pseudo-ops should be defined by the object file format.
1227 However, a.out doesn't support them, so we have versions here. */
252b5132
RH
1228 {"aent", s_mips_ent, 1},
1229 {"bgnb", s_ignore, 0},
1230 {"end", s_mips_end, 0},
1231 {"endb", s_ignore, 0},
1232 {"ent", s_mips_ent, 0},
c5dd6aab 1233 {"file", s_mips_file, 0},
252b5132
RH
1234 {"fmask", s_mips_mask, 'F'},
1235 {"frame", s_mips_frame, 0},
c5dd6aab 1236 {"loc", s_mips_loc, 0},
252b5132
RH
1237 {"mask", s_mips_mask, 'R'},
1238 {"verstamp", s_ignore, 0},
43841e91 1239 { NULL, NULL, 0 },
252b5132
RH
1240};
1241
3ae8dd8d
MR
1242/* Export the ABI address size for use by TC_ADDRESS_BYTES for the
1243 purpose of the `.dc.a' internal pseudo-op. */
1244
1245int
1246mips_address_bytes (void)
1247{
1248 return HAVE_64BIT_ADDRESSES ? 8 : 4;
1249}
1250
17a2f251 1251extern void pop_insert (const pseudo_typeS *);
252b5132
RH
1252
1253void
17a2f251 1254mips_pop_insert (void)
252b5132
RH
1255{
1256 pop_insert (mips_pseudo_table);
1257 if (! ECOFF_DEBUGGING)
1258 pop_insert (mips_nonecoff_pseudo_table);
1259}
1260\f
1261/* Symbols labelling the current insn. */
1262
e972090a
NC
1263struct insn_label_list
1264{
252b5132
RH
1265 struct insn_label_list *next;
1266 symbolS *label;
1267};
1268
252b5132 1269static struct insn_label_list *free_insn_labels;
742a56fe 1270#define label_list tc_segment_info_data.labels
252b5132 1271
17a2f251 1272static void mips_clear_insn_labels (void);
252b5132
RH
1273
1274static inline void
17a2f251 1275mips_clear_insn_labels (void)
252b5132
RH
1276{
1277 register struct insn_label_list **pl;
a8dbcb85 1278 segment_info_type *si;
252b5132 1279
a8dbcb85
TS
1280 if (now_seg)
1281 {
1282 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1283 ;
1284
1285 si = seg_info (now_seg);
1286 *pl = si->label_list;
1287 si->label_list = NULL;
1288 }
252b5132 1289}
a8dbcb85 1290
252b5132
RH
1291\f
1292static char *expr_end;
1293
1294/* Expressions which appear in instructions. These are set by
1295 mips_ip. */
1296
1297static expressionS imm_expr;
5f74bc13 1298static expressionS imm2_expr;
252b5132
RH
1299static expressionS offset_expr;
1300
1301/* Relocs associated with imm_expr and offset_expr. */
1302
f6688943
TS
1303static bfd_reloc_code_real_type imm_reloc[3]
1304 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1305static bfd_reloc_code_real_type offset_reloc[3]
1306 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 1307
252b5132
RH
1308/* These are set by mips16_ip if an explicit extension is used. */
1309
b34976b6 1310static bfd_boolean mips16_small, mips16_ext;
252b5132 1311
7ed4a06a 1312#ifdef OBJ_ELF
ecb4347a
DJ
1313/* The pdr segment for per procedure frame/regmask info. Not used for
1314 ECOFF debugging. */
252b5132
RH
1315
1316static segT pdr_seg;
7ed4a06a 1317#endif
252b5132 1318
e013f690
TS
1319/* The default target format to use. */
1320
aeffff67
RS
1321#if defined (TE_FreeBSD)
1322#define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips-freebsd"
1323#elif defined (TE_TMIPS)
1324#define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips"
1325#else
1326#define ELF_TARGET(PREFIX, ENDIAN) PREFIX ENDIAN "mips"
1327#endif
1328
e013f690 1329const char *
17a2f251 1330mips_target_format (void)
e013f690
TS
1331{
1332 switch (OUTPUT_FLAVOR)
1333 {
e013f690
TS
1334 case bfd_target_ecoff_flavour:
1335 return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT;
1336 case bfd_target_coff_flavour:
1337 return "pe-mips";
1338 case bfd_target_elf_flavour:
0a44bf69
RS
1339#ifdef TE_VXWORKS
1340 if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI)
1341 return (target_big_endian
1342 ? "elf32-bigmips-vxworks"
1343 : "elf32-littlemips-vxworks");
1344#endif
e013f690 1345 return (target_big_endian
cfe86eaa 1346 ? (HAVE_64BIT_OBJECTS
aeffff67 1347 ? ELF_TARGET ("elf64-", "big")
cfe86eaa 1348 : (HAVE_NEWABI
aeffff67
RS
1349 ? ELF_TARGET ("elf32-n", "big")
1350 : ELF_TARGET ("elf32-", "big")))
cfe86eaa 1351 : (HAVE_64BIT_OBJECTS
aeffff67 1352 ? ELF_TARGET ("elf64-", "little")
cfe86eaa 1353 : (HAVE_NEWABI
aeffff67
RS
1354 ? ELF_TARGET ("elf32-n", "little")
1355 : ELF_TARGET ("elf32-", "little"))));
e013f690
TS
1356 default:
1357 abort ();
1358 return NULL;
1359 }
1360}
1361
1e915849
RS
1362/* Return the length of instruction INSN. */
1363
1364static inline unsigned int
1365insn_length (const struct mips_cl_insn *insn)
1366{
1367 if (!mips_opts.mips16)
1368 return 4;
1369 return insn->mips16_absolute_jump_p || insn->use_extend ? 4 : 2;
1370}
1371
1372/* Initialise INSN from opcode entry MO. Leave its position unspecified. */
1373
1374static void
1375create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
1376{
1377 size_t i;
1378
1379 insn->insn_mo = mo;
1380 insn->use_extend = FALSE;
1381 insn->extend = 0;
1382 insn->insn_opcode = mo->match;
1383 insn->frag = NULL;
1384 insn->where = 0;
1385 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1386 insn->fixp[i] = NULL;
1387 insn->fixed_p = (mips_opts.noreorder > 0);
1388 insn->noreorder_p = (mips_opts.noreorder > 0);
1389 insn->mips16_absolute_jump_p = 0;
15be625d 1390 insn->complete_p = 0;
1e915849
RS
1391}
1392
742a56fe
RS
1393/* Record the current MIPS16 mode in now_seg. */
1394
1395static void
1396mips_record_mips16_mode (void)
1397{
1398 segment_info_type *si;
1399
1400 si = seg_info (now_seg);
1401 if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
1402 si->tc_segment_info_data.mips16 = mips_opts.mips16;
1403}
1404
1e915849
RS
1405/* Install INSN at the location specified by its "frag" and "where" fields. */
1406
1407static void
1408install_insn (const struct mips_cl_insn *insn)
1409{
1410 char *f = insn->frag->fr_literal + insn->where;
1411 if (!mips_opts.mips16)
1412 md_number_to_chars (f, insn->insn_opcode, 4);
1413 else if (insn->mips16_absolute_jump_p)
1414 {
1415 md_number_to_chars (f, insn->insn_opcode >> 16, 2);
1416 md_number_to_chars (f + 2, insn->insn_opcode & 0xffff, 2);
1417 }
1418 else
1419 {
1420 if (insn->use_extend)
1421 {
1422 md_number_to_chars (f, 0xf000 | insn->extend, 2);
1423 f += 2;
1424 }
1425 md_number_to_chars (f, insn->insn_opcode, 2);
1426 }
742a56fe 1427 mips_record_mips16_mode ();
1e915849
RS
1428}
1429
1430/* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
1431 and install the opcode in the new location. */
1432
1433static void
1434move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
1435{
1436 size_t i;
1437
1438 insn->frag = frag;
1439 insn->where = where;
1440 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1441 if (insn->fixp[i] != NULL)
1442 {
1443 insn->fixp[i]->fx_frag = frag;
1444 insn->fixp[i]->fx_where = where;
1445 }
1446 install_insn (insn);
1447}
1448
1449/* Add INSN to the end of the output. */
1450
1451static void
1452add_fixed_insn (struct mips_cl_insn *insn)
1453{
1454 char *f = frag_more (insn_length (insn));
1455 move_insn (insn, frag_now, f - frag_now->fr_literal);
1456}
1457
1458/* Start a variant frag and move INSN to the start of the variant part,
1459 marking it as fixed. The other arguments are as for frag_var. */
1460
1461static void
1462add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
1463 relax_substateT subtype, symbolS *symbol, offsetT offset)
1464{
1465 frag_grow (max_chars);
1466 move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
1467 insn->fixed_p = 1;
1468 frag_var (rs_machine_dependent, max_chars, var,
1469 subtype, symbol, offset, NULL);
1470}
1471
1472/* Insert N copies of INSN into the history buffer, starting at
1473 position FIRST. Neither FIRST nor N need to be clipped. */
1474
1475static void
1476insert_into_history (unsigned int first, unsigned int n,
1477 const struct mips_cl_insn *insn)
1478{
1479 if (mips_relax.sequence != 2)
1480 {
1481 unsigned int i;
1482
1483 for (i = ARRAY_SIZE (history); i-- > first;)
1484 if (i >= first + n)
1485 history[i] = history[i - n];
1486 else
1487 history[i] = *insn;
1488 }
1489}
1490
1491/* Emit a nop instruction, recording it in the history buffer. */
1492
1493static void
1494emit_nop (void)
1495{
1496 add_fixed_insn (NOP_INSN);
1497 insert_into_history (0, 1, NOP_INSN);
1498}
1499
71400594
RS
1500/* Initialize vr4120_conflicts. There is a bit of duplication here:
1501 the idea is to make it obvious at a glance that each errata is
1502 included. */
1503
1504static void
1505init_vr4120_conflicts (void)
1506{
1507#define CONFLICT(FIRST, SECOND) \
1508 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
1509
1510 /* Errata 21 - [D]DIV[U] after [D]MACC */
1511 CONFLICT (MACC, DIV);
1512 CONFLICT (DMACC, DIV);
1513
1514 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
1515 CONFLICT (DMULT, DMULT);
1516 CONFLICT (DMULT, DMACC);
1517 CONFLICT (DMACC, DMULT);
1518 CONFLICT (DMACC, DMACC);
1519
1520 /* Errata 24 - MT{LO,HI} after [D]MACC */
1521 CONFLICT (MACC, MTHILO);
1522 CONFLICT (DMACC, MTHILO);
1523
1524 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
1525 instruction is executed immediately after a MACC or DMACC
1526 instruction, the result of [either instruction] is incorrect." */
1527 CONFLICT (MACC, MULT);
1528 CONFLICT (MACC, DMULT);
1529 CONFLICT (DMACC, MULT);
1530 CONFLICT (DMACC, DMULT);
1531
1532 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
1533 executed immediately after a DMULT, DMULTU, DIV, DIVU,
1534 DDIV or DDIVU instruction, the result of the MACC or
1535 DMACC instruction is incorrect.". */
1536 CONFLICT (DMULT, MACC);
1537 CONFLICT (DMULT, DMACC);
1538 CONFLICT (DIV, MACC);
1539 CONFLICT (DIV, DMACC);
1540
1541#undef CONFLICT
1542}
1543
707bfff6
TS
1544struct regname {
1545 const char *name;
1546 unsigned int num;
1547};
1548
1549#define RTYPE_MASK 0x1ff00
1550#define RTYPE_NUM 0x00100
1551#define RTYPE_FPU 0x00200
1552#define RTYPE_FCC 0x00400
1553#define RTYPE_VEC 0x00800
1554#define RTYPE_GP 0x01000
1555#define RTYPE_CP0 0x02000
1556#define RTYPE_PC 0x04000
1557#define RTYPE_ACC 0x08000
1558#define RTYPE_CCC 0x10000
1559#define RNUM_MASK 0x000ff
1560#define RWARN 0x80000
1561
1562#define GENERIC_REGISTER_NUMBERS \
1563 {"$0", RTYPE_NUM | 0}, \
1564 {"$1", RTYPE_NUM | 1}, \
1565 {"$2", RTYPE_NUM | 2}, \
1566 {"$3", RTYPE_NUM | 3}, \
1567 {"$4", RTYPE_NUM | 4}, \
1568 {"$5", RTYPE_NUM | 5}, \
1569 {"$6", RTYPE_NUM | 6}, \
1570 {"$7", RTYPE_NUM | 7}, \
1571 {"$8", RTYPE_NUM | 8}, \
1572 {"$9", RTYPE_NUM | 9}, \
1573 {"$10", RTYPE_NUM | 10}, \
1574 {"$11", RTYPE_NUM | 11}, \
1575 {"$12", RTYPE_NUM | 12}, \
1576 {"$13", RTYPE_NUM | 13}, \
1577 {"$14", RTYPE_NUM | 14}, \
1578 {"$15", RTYPE_NUM | 15}, \
1579 {"$16", RTYPE_NUM | 16}, \
1580 {"$17", RTYPE_NUM | 17}, \
1581 {"$18", RTYPE_NUM | 18}, \
1582 {"$19", RTYPE_NUM | 19}, \
1583 {"$20", RTYPE_NUM | 20}, \
1584 {"$21", RTYPE_NUM | 21}, \
1585 {"$22", RTYPE_NUM | 22}, \
1586 {"$23", RTYPE_NUM | 23}, \
1587 {"$24", RTYPE_NUM | 24}, \
1588 {"$25", RTYPE_NUM | 25}, \
1589 {"$26", RTYPE_NUM | 26}, \
1590 {"$27", RTYPE_NUM | 27}, \
1591 {"$28", RTYPE_NUM | 28}, \
1592 {"$29", RTYPE_NUM | 29}, \
1593 {"$30", RTYPE_NUM | 30}, \
1594 {"$31", RTYPE_NUM | 31}
1595
1596#define FPU_REGISTER_NAMES \
1597 {"$f0", RTYPE_FPU | 0}, \
1598 {"$f1", RTYPE_FPU | 1}, \
1599 {"$f2", RTYPE_FPU | 2}, \
1600 {"$f3", RTYPE_FPU | 3}, \
1601 {"$f4", RTYPE_FPU | 4}, \
1602 {"$f5", RTYPE_FPU | 5}, \
1603 {"$f6", RTYPE_FPU | 6}, \
1604 {"$f7", RTYPE_FPU | 7}, \
1605 {"$f8", RTYPE_FPU | 8}, \
1606 {"$f9", RTYPE_FPU | 9}, \
1607 {"$f10", RTYPE_FPU | 10}, \
1608 {"$f11", RTYPE_FPU | 11}, \
1609 {"$f12", RTYPE_FPU | 12}, \
1610 {"$f13", RTYPE_FPU | 13}, \
1611 {"$f14", RTYPE_FPU | 14}, \
1612 {"$f15", RTYPE_FPU | 15}, \
1613 {"$f16", RTYPE_FPU | 16}, \
1614 {"$f17", RTYPE_FPU | 17}, \
1615 {"$f18", RTYPE_FPU | 18}, \
1616 {"$f19", RTYPE_FPU | 19}, \
1617 {"$f20", RTYPE_FPU | 20}, \
1618 {"$f21", RTYPE_FPU | 21}, \
1619 {"$f22", RTYPE_FPU | 22}, \
1620 {"$f23", RTYPE_FPU | 23}, \
1621 {"$f24", RTYPE_FPU | 24}, \
1622 {"$f25", RTYPE_FPU | 25}, \
1623 {"$f26", RTYPE_FPU | 26}, \
1624 {"$f27", RTYPE_FPU | 27}, \
1625 {"$f28", RTYPE_FPU | 28}, \
1626 {"$f29", RTYPE_FPU | 29}, \
1627 {"$f30", RTYPE_FPU | 30}, \
1628 {"$f31", RTYPE_FPU | 31}
1629
1630#define FPU_CONDITION_CODE_NAMES \
1631 {"$fcc0", RTYPE_FCC | 0}, \
1632 {"$fcc1", RTYPE_FCC | 1}, \
1633 {"$fcc2", RTYPE_FCC | 2}, \
1634 {"$fcc3", RTYPE_FCC | 3}, \
1635 {"$fcc4", RTYPE_FCC | 4}, \
1636 {"$fcc5", RTYPE_FCC | 5}, \
1637 {"$fcc6", RTYPE_FCC | 6}, \
1638 {"$fcc7", RTYPE_FCC | 7}
1639
1640#define COPROC_CONDITION_CODE_NAMES \
1641 {"$cc0", RTYPE_FCC | RTYPE_CCC | 0}, \
1642 {"$cc1", RTYPE_FCC | RTYPE_CCC | 1}, \
1643 {"$cc2", RTYPE_FCC | RTYPE_CCC | 2}, \
1644 {"$cc3", RTYPE_FCC | RTYPE_CCC | 3}, \
1645 {"$cc4", RTYPE_FCC | RTYPE_CCC | 4}, \
1646 {"$cc5", RTYPE_FCC | RTYPE_CCC | 5}, \
1647 {"$cc6", RTYPE_FCC | RTYPE_CCC | 6}, \
1648 {"$cc7", RTYPE_FCC | RTYPE_CCC | 7}
1649
1650#define N32N64_SYMBOLIC_REGISTER_NAMES \
1651 {"$a4", RTYPE_GP | 8}, \
1652 {"$a5", RTYPE_GP | 9}, \
1653 {"$a6", RTYPE_GP | 10}, \
1654 {"$a7", RTYPE_GP | 11}, \
1655 {"$ta0", RTYPE_GP | 8}, /* alias for $a4 */ \
1656 {"$ta1", RTYPE_GP | 9}, /* alias for $a5 */ \
1657 {"$ta2", RTYPE_GP | 10}, /* alias for $a6 */ \
1658 {"$ta3", RTYPE_GP | 11}, /* alias for $a7 */ \
1659 {"$t0", RTYPE_GP | 12}, \
1660 {"$t1", RTYPE_GP | 13}, \
1661 {"$t2", RTYPE_GP | 14}, \
1662 {"$t3", RTYPE_GP | 15}
1663
1664#define O32_SYMBOLIC_REGISTER_NAMES \
1665 {"$t0", RTYPE_GP | 8}, \
1666 {"$t1", RTYPE_GP | 9}, \
1667 {"$t2", RTYPE_GP | 10}, \
1668 {"$t3", RTYPE_GP | 11}, \
1669 {"$t4", RTYPE_GP | 12}, \
1670 {"$t5", RTYPE_GP | 13}, \
1671 {"$t6", RTYPE_GP | 14}, \
1672 {"$t7", RTYPE_GP | 15}, \
1673 {"$ta0", RTYPE_GP | 12}, /* alias for $t4 */ \
1674 {"$ta1", RTYPE_GP | 13}, /* alias for $t5 */ \
1675 {"$ta2", RTYPE_GP | 14}, /* alias for $t6 */ \
1676 {"$ta3", RTYPE_GP | 15} /* alias for $t7 */
1677
1678/* Remaining symbolic register names */
1679#define SYMBOLIC_REGISTER_NAMES \
1680 {"$zero", RTYPE_GP | 0}, \
1681 {"$at", RTYPE_GP | 1}, \
1682 {"$AT", RTYPE_GP | 1}, \
1683 {"$v0", RTYPE_GP | 2}, \
1684 {"$v1", RTYPE_GP | 3}, \
1685 {"$a0", RTYPE_GP | 4}, \
1686 {"$a1", RTYPE_GP | 5}, \
1687 {"$a2", RTYPE_GP | 6}, \
1688 {"$a3", RTYPE_GP | 7}, \
1689 {"$s0", RTYPE_GP | 16}, \
1690 {"$s1", RTYPE_GP | 17}, \
1691 {"$s2", RTYPE_GP | 18}, \
1692 {"$s3", RTYPE_GP | 19}, \
1693 {"$s4", RTYPE_GP | 20}, \
1694 {"$s5", RTYPE_GP | 21}, \
1695 {"$s6", RTYPE_GP | 22}, \
1696 {"$s7", RTYPE_GP | 23}, \
1697 {"$t8", RTYPE_GP | 24}, \
1698 {"$t9", RTYPE_GP | 25}, \
1699 {"$k0", RTYPE_GP | 26}, \
1700 {"$kt0", RTYPE_GP | 26}, \
1701 {"$k1", RTYPE_GP | 27}, \
1702 {"$kt1", RTYPE_GP | 27}, \
1703 {"$gp", RTYPE_GP | 28}, \
1704 {"$sp", RTYPE_GP | 29}, \
1705 {"$s8", RTYPE_GP | 30}, \
1706 {"$fp", RTYPE_GP | 30}, \
1707 {"$ra", RTYPE_GP | 31}
1708
1709#define MIPS16_SPECIAL_REGISTER_NAMES \
1710 {"$pc", RTYPE_PC | 0}
1711
1712#define MDMX_VECTOR_REGISTER_NAMES \
1713 /* {"$v0", RTYPE_VEC | 0}, clash with REG 2 above */ \
1714 /* {"$v1", RTYPE_VEC | 1}, clash with REG 3 above */ \
1715 {"$v2", RTYPE_VEC | 2}, \
1716 {"$v3", RTYPE_VEC | 3}, \
1717 {"$v4", RTYPE_VEC | 4}, \
1718 {"$v5", RTYPE_VEC | 5}, \
1719 {"$v6", RTYPE_VEC | 6}, \
1720 {"$v7", RTYPE_VEC | 7}, \
1721 {"$v8", RTYPE_VEC | 8}, \
1722 {"$v9", RTYPE_VEC | 9}, \
1723 {"$v10", RTYPE_VEC | 10}, \
1724 {"$v11", RTYPE_VEC | 11}, \
1725 {"$v12", RTYPE_VEC | 12}, \
1726 {"$v13", RTYPE_VEC | 13}, \
1727 {"$v14", RTYPE_VEC | 14}, \
1728 {"$v15", RTYPE_VEC | 15}, \
1729 {"$v16", RTYPE_VEC | 16}, \
1730 {"$v17", RTYPE_VEC | 17}, \
1731 {"$v18", RTYPE_VEC | 18}, \
1732 {"$v19", RTYPE_VEC | 19}, \
1733 {"$v20", RTYPE_VEC | 20}, \
1734 {"$v21", RTYPE_VEC | 21}, \
1735 {"$v22", RTYPE_VEC | 22}, \
1736 {"$v23", RTYPE_VEC | 23}, \
1737 {"$v24", RTYPE_VEC | 24}, \
1738 {"$v25", RTYPE_VEC | 25}, \
1739 {"$v26", RTYPE_VEC | 26}, \
1740 {"$v27", RTYPE_VEC | 27}, \
1741 {"$v28", RTYPE_VEC | 28}, \
1742 {"$v29", RTYPE_VEC | 29}, \
1743 {"$v30", RTYPE_VEC | 30}, \
1744 {"$v31", RTYPE_VEC | 31}
1745
1746#define MIPS_DSP_ACCUMULATOR_NAMES \
1747 {"$ac0", RTYPE_ACC | 0}, \
1748 {"$ac1", RTYPE_ACC | 1}, \
1749 {"$ac2", RTYPE_ACC | 2}, \
1750 {"$ac3", RTYPE_ACC | 3}
1751
1752static const struct regname reg_names[] = {
1753 GENERIC_REGISTER_NUMBERS,
1754 FPU_REGISTER_NAMES,
1755 FPU_CONDITION_CODE_NAMES,
1756 COPROC_CONDITION_CODE_NAMES,
1757
1758 /* The $txx registers depends on the abi,
1759 these will be added later into the symbol table from
1760 one of the tables below once mips_abi is set after
1761 parsing of arguments from the command line. */
1762 SYMBOLIC_REGISTER_NAMES,
1763
1764 MIPS16_SPECIAL_REGISTER_NAMES,
1765 MDMX_VECTOR_REGISTER_NAMES,
1766 MIPS_DSP_ACCUMULATOR_NAMES,
1767 {0, 0}
1768};
1769
1770static const struct regname reg_names_o32[] = {
1771 O32_SYMBOLIC_REGISTER_NAMES,
1772 {0, 0}
1773};
1774
1775static const struct regname reg_names_n32n64[] = {
1776 N32N64_SYMBOLIC_REGISTER_NAMES,
1777 {0, 0}
1778};
1779
1780static int
1781reg_lookup (char **s, unsigned int types, unsigned int *regnop)
1782{
1783 symbolS *symbolP;
1784 char *e;
1785 char save_c;
1786 int reg = -1;
1787
1788 /* Find end of name. */
1789 e = *s;
1790 if (is_name_beginner (*e))
1791 ++e;
1792 while (is_part_of_name (*e))
1793 ++e;
1794
1795 /* Terminate name. */
1796 save_c = *e;
1797 *e = '\0';
1798
1799 /* Look for a register symbol. */
1800 if ((symbolP = symbol_find (*s)) && S_GET_SEGMENT (symbolP) == reg_section)
1801 {
1802 int r = S_GET_VALUE (symbolP);
1803 if (r & types)
1804 reg = r & RNUM_MASK;
1805 else if ((types & RTYPE_VEC) && (r & ~1) == (RTYPE_GP | 2))
1806 /* Convert GP reg $v0/1 to MDMX reg $v0/1! */
1807 reg = (r & RNUM_MASK) - 2;
1808 }
1809 /* Else see if this is a register defined in an itbl entry. */
1810 else if ((types & RTYPE_GP) && itbl_have_entries)
1811 {
1812 char *n = *s;
1813 unsigned long r;
1814
1815 if (*n == '$')
1816 ++n;
1817 if (itbl_get_reg_val (n, &r))
1818 reg = r & RNUM_MASK;
1819 }
1820
1821 /* Advance to next token if a register was recognised. */
1822 if (reg >= 0)
1823 *s = e;
1824 else if (types & RWARN)
20203fb9 1825 as_warn (_("Unrecognized register name `%s'"), *s);
707bfff6
TS
1826
1827 *e = save_c;
1828 if (regnop)
1829 *regnop = reg;
1830 return reg >= 0;
1831}
1832
037b32b9 1833/* Return TRUE if opcode MO is valid on the currently selected ISA and
f79e2745 1834 architecture. Use is_opcode_valid_16 for MIPS16 opcodes. */
037b32b9
AN
1835
1836static bfd_boolean
f79e2745 1837is_opcode_valid (const struct mips_opcode *mo)
037b32b9
AN
1838{
1839 int isa = mips_opts.isa;
1840 int fp_s, fp_d;
1841
1842 if (mips_opts.ase_mdmx)
1843 isa |= INSN_MDMX;
1844 if (mips_opts.ase_dsp)
1845 isa |= INSN_DSP;
1846 if (mips_opts.ase_dsp && ISA_SUPPORTS_DSP64_ASE)
1847 isa |= INSN_DSP64;
1848 if (mips_opts.ase_dspr2)
1849 isa |= INSN_DSPR2;
1850 if (mips_opts.ase_mt)
1851 isa |= INSN_MT;
1852 if (mips_opts.ase_mips3d)
1853 isa |= INSN_MIPS3D;
1854 if (mips_opts.ase_smartmips)
1855 isa |= INSN_SMARTMIPS;
1856
b19e8a9b
AN
1857 /* Don't accept instructions based on the ISA if the CPU does not implement
1858 all the coprocessor insns. */
1859 if (NO_ISA_COP (mips_opts.arch)
1860 && COP_INSN (mo->pinfo))
1861 isa = 0;
1862
037b32b9
AN
1863 if (!OPCODE_IS_MEMBER (mo, isa, mips_opts.arch))
1864 return FALSE;
1865
1866 /* Check whether the instruction or macro requires single-precision or
1867 double-precision floating-point support. Note that this information is
1868 stored differently in the opcode table for insns and macros. */
1869 if (mo->pinfo == INSN_MACRO)
1870 {
1871 fp_s = mo->pinfo2 & INSN2_M_FP_S;
1872 fp_d = mo->pinfo2 & INSN2_M_FP_D;
1873 }
1874 else
1875 {
1876 fp_s = mo->pinfo & FP_S;
1877 fp_d = mo->pinfo & FP_D;
1878 }
1879
1880 if (fp_d && (mips_opts.soft_float || mips_opts.single_float))
1881 return FALSE;
1882
1883 if (fp_s && mips_opts.soft_float)
1884 return FALSE;
1885
1886 return TRUE;
1887}
1888
1889/* Return TRUE if the MIPS16 opcode MO is valid on the currently
1890 selected ISA and architecture. */
1891
1892static bfd_boolean
1893is_opcode_valid_16 (const struct mips_opcode *mo)
1894{
1895 return OPCODE_IS_MEMBER (mo, mips_opts.isa, mips_opts.arch) ? TRUE : FALSE;
1896}
1897
707bfff6
TS
1898/* This function is called once, at assembler startup time. It should set up
1899 all the tables, etc. that the MD part of the assembler will need. */
156c2f8b 1900
252b5132 1901void
17a2f251 1902md_begin (void)
252b5132 1903{
3994f87e 1904 const char *retval = NULL;
156c2f8b 1905 int i = 0;
252b5132 1906 int broken = 0;
1f25f5d3 1907
0a44bf69
RS
1908 if (mips_pic != NO_PIC)
1909 {
1910 if (g_switch_seen && g_switch_value != 0)
1911 as_bad (_("-G may not be used in position-independent code"));
1912 g_switch_value = 0;
1913 }
1914
fef14a42 1915 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
252b5132
RH
1916 as_warn (_("Could not set architecture and machine"));
1917
252b5132
RH
1918 op_hash = hash_new ();
1919
1920 for (i = 0; i < NUMOPCODES;)
1921 {
1922 const char *name = mips_opcodes[i].name;
1923
17a2f251 1924 retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
252b5132
RH
1925 if (retval != NULL)
1926 {
1927 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
1928 mips_opcodes[i].name, retval);
1929 /* Probably a memory allocation problem? Give up now. */
1930 as_fatal (_("Broken assembler. No assembly attempted."));
1931 }
1932 do
1933 {
1934 if (mips_opcodes[i].pinfo != INSN_MACRO)
1935 {
1936 if (!validate_mips_insn (&mips_opcodes[i]))
1937 broken = 1;
1e915849
RS
1938 if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1939 {
1940 create_insn (&nop_insn, mips_opcodes + i);
c67a084a
NC
1941 if (mips_fix_loongson2f_nop)
1942 nop_insn.insn_opcode = LOONGSON2F_NOP_INSN;
1e915849
RS
1943 nop_insn.fixed_p = 1;
1944 }
252b5132
RH
1945 }
1946 ++i;
1947 }
1948 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
1949 }
1950
1951 mips16_op_hash = hash_new ();
1952
1953 i = 0;
1954 while (i < bfd_mips16_num_opcodes)
1955 {
1956 const char *name = mips16_opcodes[i].name;
1957
17a2f251 1958 retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
252b5132
RH
1959 if (retval != NULL)
1960 as_fatal (_("internal: can't hash `%s': %s"),
1961 mips16_opcodes[i].name, retval);
1962 do
1963 {
1964 if (mips16_opcodes[i].pinfo != INSN_MACRO
1965 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
1966 != mips16_opcodes[i].match))
1967 {
1968 fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
1969 mips16_opcodes[i].name, mips16_opcodes[i].args);
1970 broken = 1;
1971 }
1e915849
RS
1972 if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1973 {
1974 create_insn (&mips16_nop_insn, mips16_opcodes + i);
1975 mips16_nop_insn.fixed_p = 1;
1976 }
252b5132
RH
1977 ++i;
1978 }
1979 while (i < bfd_mips16_num_opcodes
1980 && strcmp (mips16_opcodes[i].name, name) == 0);
1981 }
1982
1983 if (broken)
1984 as_fatal (_("Broken assembler. No assembly attempted."));
1985
1986 /* We add all the general register names to the symbol table. This
1987 helps us detect invalid uses of them. */
707bfff6
TS
1988 for (i = 0; reg_names[i].name; i++)
1989 symbol_table_insert (symbol_new (reg_names[i].name, reg_section,
8fc4ee9b 1990 reg_names[i].num, /* & RNUM_MASK, */
707bfff6
TS
1991 &zero_address_frag));
1992 if (HAVE_NEWABI)
1993 for (i = 0; reg_names_n32n64[i].name; i++)
1994 symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section,
8fc4ee9b 1995 reg_names_n32n64[i].num, /* & RNUM_MASK, */
252b5132 1996 &zero_address_frag));
707bfff6
TS
1997 else
1998 for (i = 0; reg_names_o32[i].name; i++)
1999 symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section,
8fc4ee9b 2000 reg_names_o32[i].num, /* & RNUM_MASK, */
6047c971 2001 &zero_address_frag));
6047c971 2002
7d10b47d 2003 mips_no_prev_insn ();
252b5132
RH
2004
2005 mips_gprmask = 0;
2006 mips_cprmask[0] = 0;
2007 mips_cprmask[1] = 0;
2008 mips_cprmask[2] = 0;
2009 mips_cprmask[3] = 0;
2010
2011 /* set the default alignment for the text section (2**2) */
2012 record_alignment (text_section, 2);
2013
4d0d148d 2014 bfd_set_gp_size (stdoutput, g_switch_value);
252b5132 2015
707bfff6 2016#ifdef OBJ_ELF
f43abd2b 2017 if (IS_ELF)
252b5132 2018 {
0a44bf69
RS
2019 /* On a native system other than VxWorks, sections must be aligned
2020 to 16 byte boundaries. When configured for an embedded ELF
2021 target, we don't bother. */
c41e87e3
CF
2022 if (strncmp (TARGET_OS, "elf", 3) != 0
2023 && strncmp (TARGET_OS, "vxworks", 7) != 0)
252b5132
RH
2024 {
2025 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
2026 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
2027 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
2028 }
2029
2030 /* Create a .reginfo section for register masks and a .mdebug
2031 section for debugging information. */
2032 {
2033 segT seg;
2034 subsegT subseg;
2035 flagword flags;
2036 segT sec;
2037
2038 seg = now_seg;
2039 subseg = now_subseg;
2040
2041 /* The ABI says this section should be loaded so that the
2042 running program can access it. However, we don't load it
2043 if we are configured for an embedded target */
2044 flags = SEC_READONLY | SEC_DATA;
c41e87e3 2045 if (strncmp (TARGET_OS, "elf", 3) != 0)
252b5132
RH
2046 flags |= SEC_ALLOC | SEC_LOAD;
2047
316f5878 2048 if (mips_abi != N64_ABI)
252b5132
RH
2049 {
2050 sec = subseg_new (".reginfo", (subsegT) 0);
2051
195325d2
TS
2052 bfd_set_section_flags (stdoutput, sec, flags);
2053 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
bdaaa2e1 2054
252b5132 2055 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
252b5132
RH
2056 }
2057 else
2058 {
2059 /* The 64-bit ABI uses a .MIPS.options section rather than
2060 .reginfo section. */
2061 sec = subseg_new (".MIPS.options", (subsegT) 0);
195325d2
TS
2062 bfd_set_section_flags (stdoutput, sec, flags);
2063 bfd_set_section_alignment (stdoutput, sec, 3);
252b5132 2064
252b5132
RH
2065 /* Set up the option header. */
2066 {
2067 Elf_Internal_Options opthdr;
2068 char *f;
2069
2070 opthdr.kind = ODK_REGINFO;
2071 opthdr.size = (sizeof (Elf_External_Options)
2072 + sizeof (Elf64_External_RegInfo));
2073 opthdr.section = 0;
2074 opthdr.info = 0;
2075 f = frag_more (sizeof (Elf_External_Options));
2076 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
2077 (Elf_External_Options *) f);
2078
2079 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
2080 }
252b5132
RH
2081 }
2082
2083 if (ECOFF_DEBUGGING)
2084 {
2085 sec = subseg_new (".mdebug", (subsegT) 0);
2086 (void) bfd_set_section_flags (stdoutput, sec,
2087 SEC_HAS_CONTENTS | SEC_READONLY);
2088 (void) bfd_set_section_alignment (stdoutput, sec, 2);
2089 }
f43abd2b 2090 else if (mips_flag_pdr)
ecb4347a
DJ
2091 {
2092 pdr_seg = subseg_new (".pdr", (subsegT) 0);
2093 (void) bfd_set_section_flags (stdoutput, pdr_seg,
2094 SEC_READONLY | SEC_RELOC
2095 | SEC_DEBUGGING);
2096 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
2097 }
252b5132
RH
2098
2099 subseg_set (seg, subseg);
2100 }
2101 }
707bfff6 2102#endif /* OBJ_ELF */
252b5132
RH
2103
2104 if (! ECOFF_DEBUGGING)
2105 md_obj_begin ();
71400594
RS
2106
2107 if (mips_fix_vr4120)
2108 init_vr4120_conflicts ();
252b5132
RH
2109}
2110
2111void
17a2f251 2112md_mips_end (void)
252b5132
RH
2113{
2114 if (! ECOFF_DEBUGGING)
2115 md_obj_end ();
2116}
2117
2118void
17a2f251 2119md_assemble (char *str)
252b5132
RH
2120{
2121 struct mips_cl_insn insn;
f6688943
TS
2122 bfd_reloc_code_real_type unused_reloc[3]
2123 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132
RH
2124
2125 imm_expr.X_op = O_absent;
5f74bc13 2126 imm2_expr.X_op = O_absent;
252b5132 2127 offset_expr.X_op = O_absent;
f6688943
TS
2128 imm_reloc[0] = BFD_RELOC_UNUSED;
2129 imm_reloc[1] = BFD_RELOC_UNUSED;
2130 imm_reloc[2] = BFD_RELOC_UNUSED;
2131 offset_reloc[0] = BFD_RELOC_UNUSED;
2132 offset_reloc[1] = BFD_RELOC_UNUSED;
2133 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132
RH
2134
2135 if (mips_opts.mips16)
2136 mips16_ip (str, &insn);
2137 else
2138 {
2139 mips_ip (str, &insn);
beae10d5
KH
2140 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
2141 str, insn.insn_opcode));
252b5132
RH
2142 }
2143
2144 if (insn_error)
2145 {
2146 as_bad ("%s `%s'", insn_error, str);
2147 return;
2148 }
2149
2150 if (insn.insn_mo->pinfo == INSN_MACRO)
2151 {
584892a6 2152 macro_start ();
252b5132
RH
2153 if (mips_opts.mips16)
2154 mips16_macro (&insn);
2155 else
2156 macro (&insn);
584892a6 2157 macro_end ();
252b5132
RH
2158 }
2159 else
2160 {
2161 if (imm_expr.X_op != O_absent)
4d7206a2 2162 append_insn (&insn, &imm_expr, imm_reloc);
252b5132 2163 else if (offset_expr.X_op != O_absent)
4d7206a2 2164 append_insn (&insn, &offset_expr, offset_reloc);
252b5132 2165 else
4d7206a2 2166 append_insn (&insn, NULL, unused_reloc);
252b5132
RH
2167 }
2168}
2169
738e5348
RS
2170/* Convenience functions for abstracting away the differences between
2171 MIPS16 and non-MIPS16 relocations. */
2172
2173static inline bfd_boolean
2174mips16_reloc_p (bfd_reloc_code_real_type reloc)
2175{
2176 switch (reloc)
2177 {
2178 case BFD_RELOC_MIPS16_JMP:
2179 case BFD_RELOC_MIPS16_GPREL:
2180 case BFD_RELOC_MIPS16_GOT16:
2181 case BFD_RELOC_MIPS16_CALL16:
2182 case BFD_RELOC_MIPS16_HI16_S:
2183 case BFD_RELOC_MIPS16_HI16:
2184 case BFD_RELOC_MIPS16_LO16:
2185 return TRUE;
2186
2187 default:
2188 return FALSE;
2189 }
2190}
2191
2192static inline bfd_boolean
2193got16_reloc_p (bfd_reloc_code_real_type reloc)
2194{
2195 return reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16;
2196}
2197
2198static inline bfd_boolean
2199hi16_reloc_p (bfd_reloc_code_real_type reloc)
2200{
2201 return reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S;
2202}
2203
2204static inline bfd_boolean
2205lo16_reloc_p (bfd_reloc_code_real_type reloc)
2206{
2207 return reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16;
2208}
2209
5919d012 2210/* Return true if the given relocation might need a matching %lo().
0a44bf69
RS
2211 This is only "might" because SVR4 R_MIPS_GOT16 relocations only
2212 need a matching %lo() when applied to local symbols. */
5919d012
RS
2213
2214static inline bfd_boolean
17a2f251 2215reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
5919d012 2216{
3b91255e 2217 return (HAVE_IN_PLACE_ADDENDS
738e5348 2218 && (hi16_reloc_p (reloc)
0a44bf69
RS
2219 /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
2220 all GOT16 relocations evaluate to "G". */
738e5348
RS
2221 || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC)));
2222}
2223
2224/* Return the type of %lo() reloc needed by RELOC, given that
2225 reloc_needs_lo_p. */
2226
2227static inline bfd_reloc_code_real_type
2228matching_lo_reloc (bfd_reloc_code_real_type reloc)
2229{
2230 return mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16 : BFD_RELOC_LO16;
5919d012
RS
2231}
2232
2233/* Return true if the given fixup is followed by a matching R_MIPS_LO16
2234 relocation. */
2235
2236static inline bfd_boolean
17a2f251 2237fixup_has_matching_lo_p (fixS *fixp)
5919d012
RS
2238{
2239 return (fixp->fx_next != NULL
738e5348 2240 && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type)
5919d012
RS
2241 && fixp->fx_addsy == fixp->fx_next->fx_addsy
2242 && fixp->fx_offset == fixp->fx_next->fx_offset);
2243}
2244
252b5132
RH
2245/* See whether instruction IP reads register REG. CLASS is the type
2246 of register. */
2247
2248static int
71400594 2249insn_uses_reg (const struct mips_cl_insn *ip, unsigned int reg,
96d56e9f 2250 enum mips_regclass regclass)
252b5132 2251{
96d56e9f 2252 if (regclass == MIPS16_REG)
252b5132 2253 {
9c2799c2 2254 gas_assert (mips_opts.mips16);
252b5132 2255 reg = mips16_to_32_reg_map[reg];
96d56e9f 2256 regclass = MIPS_GR_REG;
252b5132
RH
2257 }
2258
85b51719 2259 /* Don't report on general register ZERO, since it never changes. */
96d56e9f 2260 if (regclass == MIPS_GR_REG && reg == ZERO)
252b5132
RH
2261 return 0;
2262
96d56e9f 2263 if (regclass == MIPS_FP_REG)
252b5132 2264 {
9c2799c2 2265 gas_assert (! mips_opts.mips16);
252b5132
RH
2266 /* If we are called with either $f0 or $f1, we must check $f0.
2267 This is not optimal, because it will introduce an unnecessary
2268 NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would
2269 need to distinguish reading both $f0 and $f1 or just one of
2270 them. Note that we don't have to check the other way,
2271 because there is no instruction that sets both $f0 and $f1
2272 and requires a delay. */
2273 if ((ip->insn_mo->pinfo & INSN_READ_FPR_S)
bf12938e 2274 && ((EXTRACT_OPERAND (FS, *ip) & ~(unsigned) 1)
252b5132
RH
2275 == (reg &~ (unsigned) 1)))
2276 return 1;
2277 if ((ip->insn_mo->pinfo & INSN_READ_FPR_T)
bf12938e 2278 && ((EXTRACT_OPERAND (FT, *ip) & ~(unsigned) 1)
252b5132
RH
2279 == (reg &~ (unsigned) 1)))
2280 return 1;
98675402
RS
2281 if ((ip->insn_mo->pinfo2 & INSN2_READ_FPR_Z)
2282 && ((EXTRACT_OPERAND (FZ, *ip) & ~(unsigned) 1)
2283 == (reg &~ (unsigned) 1)))
2284 return 1;
252b5132
RH
2285 }
2286 else if (! mips_opts.mips16)
2287 {
2288 if ((ip->insn_mo->pinfo & INSN_READ_GPR_S)
bf12938e 2289 && EXTRACT_OPERAND (RS, *ip) == reg)
252b5132
RH
2290 return 1;
2291 if ((ip->insn_mo->pinfo & INSN_READ_GPR_T)
bf12938e 2292 && EXTRACT_OPERAND (RT, *ip) == reg)
252b5132 2293 return 1;
98675402
RS
2294 if ((ip->insn_mo->pinfo2 & INSN2_READ_GPR_D)
2295 && EXTRACT_OPERAND (RD, *ip) == reg)
2296 return 1;
2297 if ((ip->insn_mo->pinfo2 & INSN2_READ_GPR_Z)
2298 && EXTRACT_OPERAND (RZ, *ip) == reg)
2299 return 1;
252b5132
RH
2300 }
2301 else
2302 {
2303 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X)
bf12938e 2304 && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)] == reg)
252b5132
RH
2305 return 1;
2306 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y)
bf12938e 2307 && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)] == reg)
252b5132
RH
2308 return 1;
2309 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z)
bf12938e 2310 && (mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]
252b5132
RH
2311 == reg))
2312 return 1;
2313 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_T) && reg == TREG)
2314 return 1;
2315 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_SP) && reg == SP)
2316 return 1;
2317 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_31) && reg == RA)
2318 return 1;
2319 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_GPR_X)
bf12938e 2320 && MIPS16_EXTRACT_OPERAND (REGR32, *ip) == reg)
252b5132
RH
2321 return 1;
2322 }
2323
2324 return 0;
2325}
2326
2327/* This function returns true if modifying a register requires a
2328 delay. */
2329
2330static int
17a2f251 2331reg_needs_delay (unsigned int reg)
252b5132
RH
2332{
2333 unsigned long prev_pinfo;
2334
47e39b9d 2335 prev_pinfo = history[0].insn_mo->pinfo;
252b5132 2336 if (! mips_opts.noreorder
81912461
ILT
2337 && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
2338 && ! gpr_interlocks)
2339 || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
2340 && ! cop_interlocks)))
252b5132 2341 {
81912461
ILT
2342 /* A load from a coprocessor or from memory. All load delays
2343 delay the use of general register rt for one instruction. */
bdaaa2e1 2344 /* Itbl support may require additional care here. */
252b5132 2345 know (prev_pinfo & INSN_WRITE_GPR_T);
bf12938e 2346 if (reg == EXTRACT_OPERAND (RT, history[0]))
252b5132
RH
2347 return 1;
2348 }
2349
2350 return 0;
2351}
2352
404a8071
RS
2353/* Move all labels in insn_labels to the current insertion point. */
2354
2355static void
2356mips_move_labels (void)
2357{
a8dbcb85 2358 segment_info_type *si = seg_info (now_seg);
404a8071
RS
2359 struct insn_label_list *l;
2360 valueT val;
2361
a8dbcb85 2362 for (l = si->label_list; l != NULL; l = l->next)
404a8071 2363 {
9c2799c2 2364 gas_assert (S_GET_SEGMENT (l->label) == now_seg);
404a8071
RS
2365 symbol_set_frag (l->label, frag_now);
2366 val = (valueT) frag_now_fix ();
2367 /* mips16 text labels are stored as odd. */
2368 if (mips_opts.mips16)
2369 ++val;
2370 S_SET_VALUE (l->label, val);
2371 }
2372}
2373
5f0fe04b
TS
2374static bfd_boolean
2375s_is_linkonce (symbolS *sym, segT from_seg)
2376{
2377 bfd_boolean linkonce = FALSE;
2378 segT symseg = S_GET_SEGMENT (sym);
2379
2380 if (symseg != from_seg && !S_IS_LOCAL (sym))
2381 {
2382 if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE))
2383 linkonce = TRUE;
2384#ifdef OBJ_ELF
2385 /* The GNU toolchain uses an extension for ELF: a section
2386 beginning with the magic string .gnu.linkonce is a
2387 linkonce section. */
2388 if (strncmp (segment_name (symseg), ".gnu.linkonce",
2389 sizeof ".gnu.linkonce" - 1) == 0)
2390 linkonce = TRUE;
2391#endif
2392 }
2393 return linkonce;
2394}
2395
252b5132
RH
2396/* Mark instruction labels in mips16 mode. This permits the linker to
2397 handle them specially, such as generating jalx instructions when
2398 needed. We also make them odd for the duration of the assembly, in
2399 order to generate the right sort of code. We will make them even
2400 in the adjust_symtab routine, while leaving them marked. This is
2401 convenient for the debugger and the disassembler. The linker knows
2402 to make them odd again. */
2403
2404static void
17a2f251 2405mips16_mark_labels (void)
252b5132 2406{
a8dbcb85
TS
2407 segment_info_type *si = seg_info (now_seg);
2408 struct insn_label_list *l;
252b5132 2409
a8dbcb85
TS
2410 if (!mips_opts.mips16)
2411 return;
2412
2413 for (l = si->label_list; l != NULL; l = l->next)
2414 {
2415 symbolS *label = l->label;
2416
2417#if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF)
f43abd2b 2418 if (IS_ELF)
30c09090 2419 S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
252b5132 2420#endif
5f0fe04b
TS
2421 if ((S_GET_VALUE (label) & 1) == 0
2422 /* Don't adjust the address if the label is global or weak, or
2423 in a link-once section, since we'll be emitting symbol reloc
2424 references to it which will be patched up by the linker, and
2425 the final value of the symbol may or may not be MIPS16. */
2426 && ! S_IS_WEAK (label)
2427 && ! S_IS_EXTERNAL (label)
2428 && ! s_is_linkonce (label, now_seg))
a8dbcb85 2429 S_SET_VALUE (label, S_GET_VALUE (label) | 1);
252b5132
RH
2430 }
2431}
2432
4d7206a2
RS
2433/* End the current frag. Make it a variant frag and record the
2434 relaxation info. */
2435
2436static void
2437relax_close_frag (void)
2438{
584892a6 2439 mips_macro_warning.first_frag = frag_now;
4d7206a2 2440 frag_var (rs_machine_dependent, 0, 0,
584892a6 2441 RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
4d7206a2
RS
2442 mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
2443
2444 memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
2445 mips_relax.first_fixup = 0;
2446}
2447
2448/* Start a new relaxation sequence whose expansion depends on SYMBOL.
2449 See the comment above RELAX_ENCODE for more details. */
2450
2451static void
2452relax_start (symbolS *symbol)
2453{
9c2799c2 2454 gas_assert (mips_relax.sequence == 0);
4d7206a2
RS
2455 mips_relax.sequence = 1;
2456 mips_relax.symbol = symbol;
2457}
2458
2459/* Start generating the second version of a relaxable sequence.
2460 See the comment above RELAX_ENCODE for more details. */
252b5132
RH
2461
2462static void
4d7206a2
RS
2463relax_switch (void)
2464{
9c2799c2 2465 gas_assert (mips_relax.sequence == 1);
4d7206a2
RS
2466 mips_relax.sequence = 2;
2467}
2468
2469/* End the current relaxable sequence. */
2470
2471static void
2472relax_end (void)
2473{
9c2799c2 2474 gas_assert (mips_relax.sequence == 2);
4d7206a2
RS
2475 relax_close_frag ();
2476 mips_relax.sequence = 0;
2477}
2478
71400594
RS
2479/* Classify an instruction according to the FIX_VR4120_* enumeration.
2480 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
2481 by VR4120 errata. */
4d7206a2 2482
71400594
RS
2483static unsigned int
2484classify_vr4120_insn (const char *name)
252b5132 2485{
71400594
RS
2486 if (strncmp (name, "macc", 4) == 0)
2487 return FIX_VR4120_MACC;
2488 if (strncmp (name, "dmacc", 5) == 0)
2489 return FIX_VR4120_DMACC;
2490 if (strncmp (name, "mult", 4) == 0)
2491 return FIX_VR4120_MULT;
2492 if (strncmp (name, "dmult", 5) == 0)
2493 return FIX_VR4120_DMULT;
2494 if (strstr (name, "div"))
2495 return FIX_VR4120_DIV;
2496 if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
2497 return FIX_VR4120_MTHILO;
2498 return NUM_FIX_VR4120_CLASSES;
2499}
252b5132 2500
ff239038
CM
2501#define INSN_ERET 0x42000018
2502#define INSN_DERET 0x4200001f
2503
71400594
RS
2504/* Return the number of instructions that must separate INSN1 and INSN2,
2505 where INSN1 is the earlier instruction. Return the worst-case value
2506 for any INSN2 if INSN2 is null. */
252b5132 2507
71400594
RS
2508static unsigned int
2509insns_between (const struct mips_cl_insn *insn1,
2510 const struct mips_cl_insn *insn2)
2511{
2512 unsigned long pinfo1, pinfo2;
2513
2514 /* This function needs to know which pinfo flags are set for INSN2
2515 and which registers INSN2 uses. The former is stored in PINFO2 and
2516 the latter is tested via INSN2_USES_REG. If INSN2 is null, PINFO2
2517 will have every flag set and INSN2_USES_REG will always return true. */
2518 pinfo1 = insn1->insn_mo->pinfo;
2519 pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
252b5132 2520
71400594
RS
2521#define INSN2_USES_REG(REG, CLASS) \
2522 (insn2 == NULL || insn_uses_reg (insn2, REG, CLASS))
2523
2524 /* For most targets, write-after-read dependencies on the HI and LO
2525 registers must be separated by at least two instructions. */
2526 if (!hilo_interlocks)
252b5132 2527 {
71400594
RS
2528 if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
2529 return 2;
2530 if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
2531 return 2;
2532 }
2533
2534 /* If we're working around r7000 errata, there must be two instructions
2535 between an mfhi or mflo and any instruction that uses the result. */
2536 if (mips_7000_hilo_fix
2537 && MF_HILO_INSN (pinfo1)
2538 && INSN2_USES_REG (EXTRACT_OPERAND (RD, *insn1), MIPS_GR_REG))
2539 return 2;
2540
ff239038
CM
2541 /* If we're working around 24K errata, one instruction is required
2542 if an ERET or DERET is followed by a branch instruction. */
2543 if (mips_fix_24k)
2544 {
2545 if (insn1->insn_opcode == INSN_ERET
2546 || insn1->insn_opcode == INSN_DERET)
2547 {
2548 if (insn2 == NULL
2549 || insn2->insn_opcode == INSN_ERET
2550 || insn2->insn_opcode == INSN_DERET
2551 || (insn2->insn_mo->pinfo
2552 & (INSN_UNCOND_BRANCH_DELAY
2553 | INSN_COND_BRANCH_DELAY
2554 | INSN_COND_BRANCH_LIKELY)) != 0)
2555 return 1;
2556 }
2557 }
2558
71400594
RS
2559 /* If working around VR4120 errata, check for combinations that need
2560 a single intervening instruction. */
2561 if (mips_fix_vr4120)
2562 {
2563 unsigned int class1, class2;
252b5132 2564
71400594
RS
2565 class1 = classify_vr4120_insn (insn1->insn_mo->name);
2566 if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
252b5132 2567 {
71400594
RS
2568 if (insn2 == NULL)
2569 return 1;
2570 class2 = classify_vr4120_insn (insn2->insn_mo->name);
2571 if (vr4120_conflicts[class1] & (1 << class2))
2572 return 1;
252b5132 2573 }
71400594
RS
2574 }
2575
2576 if (!mips_opts.mips16)
2577 {
2578 /* Check for GPR or coprocessor load delays. All such delays
2579 are on the RT register. */
2580 /* Itbl support may require additional care here. */
2581 if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY_DELAY))
2582 || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY)))
252b5132 2583 {
71400594
RS
2584 know (pinfo1 & INSN_WRITE_GPR_T);
2585 if (INSN2_USES_REG (EXTRACT_OPERAND (RT, *insn1), MIPS_GR_REG))
2586 return 1;
2587 }
2588
2589 /* Check for generic coprocessor hazards.
2590
2591 This case is not handled very well. There is no special
2592 knowledge of CP0 handling, and the coprocessors other than
2593 the floating point unit are not distinguished at all. */
2594 /* Itbl support may require additional care here. FIXME!
2595 Need to modify this to include knowledge about
2596 user specified delays! */
2597 else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE_DELAY))
2598 || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
2599 {
2600 /* Handle cases where INSN1 writes to a known general coprocessor
2601 register. There must be a one instruction delay before INSN2
2602 if INSN2 reads that register, otherwise no delay is needed. */
2603 if (pinfo1 & INSN_WRITE_FPR_T)
252b5132 2604 {
71400594
RS
2605 if (INSN2_USES_REG (EXTRACT_OPERAND (FT, *insn1), MIPS_FP_REG))
2606 return 1;
252b5132 2607 }
71400594 2608 else if (pinfo1 & INSN_WRITE_FPR_S)
252b5132 2609 {
71400594
RS
2610 if (INSN2_USES_REG (EXTRACT_OPERAND (FS, *insn1), MIPS_FP_REG))
2611 return 1;
252b5132
RH
2612 }
2613 else
2614 {
71400594
RS
2615 /* Read-after-write dependencies on the control registers
2616 require a two-instruction gap. */
2617 if ((pinfo1 & INSN_WRITE_COND_CODE)
2618 && (pinfo2 & INSN_READ_COND_CODE))
2619 return 2;
2620
2621 /* We don't know exactly what INSN1 does. If INSN2 is
2622 also a coprocessor instruction, assume there must be
2623 a one instruction gap. */
2624 if (pinfo2 & INSN_COP)
2625 return 1;
252b5132
RH
2626 }
2627 }
6b76fefe 2628
71400594
RS
2629 /* Check for read-after-write dependencies on the coprocessor
2630 control registers in cases where INSN1 does not need a general
2631 coprocessor delay. This means that INSN1 is a floating point
2632 comparison instruction. */
2633 /* Itbl support may require additional care here. */
2634 else if (!cop_interlocks
2635 && (pinfo1 & INSN_WRITE_COND_CODE)
2636 && (pinfo2 & INSN_READ_COND_CODE))
2637 return 1;
2638 }
6b76fefe 2639
71400594 2640#undef INSN2_USES_REG
6b76fefe 2641
71400594
RS
2642 return 0;
2643}
6b76fefe 2644
7d8e00cf
RS
2645/* Return the number of nops that would be needed to work around the
2646 VR4130 mflo/mfhi errata if instruction INSN immediately followed
91d6fa6a 2647 the MAX_VR4130_NOPS instructions described by HIST. */
7d8e00cf
RS
2648
2649static int
91d6fa6a 2650nops_for_vr4130 (const struct mips_cl_insn *hist,
7d8e00cf
RS
2651 const struct mips_cl_insn *insn)
2652{
2653 int i, j, reg;
2654
2655 /* Check if the instruction writes to HI or LO. MTHI and MTLO
2656 are not affected by the errata. */
2657 if (insn != 0
2658 && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
2659 || strcmp (insn->insn_mo->name, "mtlo") == 0
2660 || strcmp (insn->insn_mo->name, "mthi") == 0))
2661 return 0;
2662
2663 /* Search for the first MFLO or MFHI. */
2664 for (i = 0; i < MAX_VR4130_NOPS; i++)
91d6fa6a 2665 if (MF_HILO_INSN (hist[i].insn_mo->pinfo))
7d8e00cf
RS
2666 {
2667 /* Extract the destination register. */
2668 if (mips_opts.mips16)
91d6fa6a 2669 reg = mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, hist[i])];
7d8e00cf 2670 else
91d6fa6a 2671 reg = EXTRACT_OPERAND (RD, hist[i]);
7d8e00cf
RS
2672
2673 /* No nops are needed if INSN reads that register. */
2674 if (insn != NULL && insn_uses_reg (insn, reg, MIPS_GR_REG))
2675 return 0;
2676
2677 /* ...or if any of the intervening instructions do. */
2678 for (j = 0; j < i; j++)
91d6fa6a 2679 if (insn_uses_reg (&hist[j], reg, MIPS_GR_REG))
7d8e00cf
RS
2680 return 0;
2681
2682 return MAX_VR4130_NOPS - i;
2683 }
2684 return 0;
2685}
2686
15be625d
CM
2687#define BASE_REG_EQ(INSN1, INSN2) \
2688 ((((INSN1) >> OP_SH_RS) & OP_MASK_RS) \
2689 == (((INSN2) >> OP_SH_RS) & OP_MASK_RS))
2690
2691/* Return the minimum alignment for this store instruction. */
2692
2693static int
2694fix_24k_align_to (const struct mips_opcode *mo)
2695{
2696 if (strcmp (mo->name, "sh") == 0)
2697 return 2;
2698
2699 if (strcmp (mo->name, "swc1") == 0
2700 || strcmp (mo->name, "swc2") == 0
2701 || strcmp (mo->name, "sw") == 0
2702 || strcmp (mo->name, "sc") == 0
2703 || strcmp (mo->name, "s.s") == 0)
2704 return 4;
2705
2706 if (strcmp (mo->name, "sdc1") == 0
2707 || strcmp (mo->name, "sdc2") == 0
2708 || strcmp (mo->name, "s.d") == 0)
2709 return 8;
2710
2711 /* sb, swl, swr */
2712 return 1;
2713}
2714
2715struct fix_24k_store_info
2716 {
2717 /* Immediate offset, if any, for this store instruction. */
2718 short off;
2719 /* Alignment required by this store instruction. */
2720 int align_to;
2721 /* True for register offsets. */
2722 int register_offset;
2723 };
2724
2725/* Comparison function used by qsort. */
2726
2727static int
2728fix_24k_sort (const void *a, const void *b)
2729{
2730 const struct fix_24k_store_info *pos1 = a;
2731 const struct fix_24k_store_info *pos2 = b;
2732
2733 return (pos1->off - pos2->off);
2734}
2735
2736/* INSN is a store instruction. Try to record the store information
2737 in STINFO. Return false if the information isn't known. */
2738
2739static bfd_boolean
2740fix_24k_record_store_info (struct fix_24k_store_info *stinfo,
2741 const struct mips_cl_insn *insn)
2742{
2743 /* The instruction must have a known offset. */
2744 if (!insn->complete_p || !strstr (insn->insn_mo->args, "o("))
2745 return FALSE;
2746
2747 stinfo->off = (insn->insn_opcode >> OP_SH_IMMEDIATE) & OP_MASK_IMMEDIATE;
2748 stinfo->align_to = fix_24k_align_to (insn->insn_mo);
2749 return TRUE;
2750}
2751
2752/* 24K Errata: Lost Data on Stores During Refill.
2753
2754 Problem: The FSB (fetch store buffer) acts as an intermediate buffer
2755 for the data cache refills and store data. The following describes
2756 the scenario where the store data could be lost.
2757
2758 * A data cache miss, due to either a load or a store, causing fill
2759 data to be supplied by the memory subsystem
2760 * The first three doublewords of fill data are returned and written
2761 into the cache
2762 * A sequence of four stores occurs in consecutive cycles around the
2763 final doubleword of the fill:
2764 * Store A
2765 * Store B
2766 * Store C
2767 * Zero, One or more instructions
2768 * Store D
2769
2770 The four stores A-D must be to different doublewords of the line that
2771 is being filled. The fourth instruction in the sequence above permits
2772 the fill of the final doubleword to be transferred from the FSB into
2773 the cache. In the sequence above, the stores may be either integer
2774 (sb, sh, sw, swr, swl, sc) or coprocessor (swc1/swc2, sdc1/sdc2,
2775 swxc1, sdxc1, suxc1) stores, as long as the four stores are to
2776 different doublewords on the line. If the floating point unit is
2777 running in 1:2 mode, it is not possible to create the sequence above
2778 using only floating point store instructions.
2779
2780 In this case, the cache line being filled is incorrectly marked
2781 invalid, thereby losing the data from any store to the line that
2782 occurs between the original miss and the completion of the five
2783 cycle sequence shown above.
2784
2785 The workarounds are:
2786
2787 * Run the data cache in write-through mode.
2788 * Insert a non-store instruction between
2789 Store A and Store B or Store B and Store C. */
2790
2791static int
2792nops_for_24k (const struct mips_cl_insn *hist,
2793 const struct mips_cl_insn *insn)
2794{
2795 struct fix_24k_store_info pos[3];
2796 int align, i, base_offset;
2797
2798 /* If INSN is definitely not a store, there's nothing to worry about. */
2799 if (insn && (insn->insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
2800 return 0;
2801
2802 /* Likewise, the previous instruction wasn't a store. */
2803 if ((hist[0].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
2804 return 0;
2805
2806 /* If we don't know what came before, assume the worst. */
2807 if (hist[1].frag == NULL)
2808 return 1;
2809
2810 /* If the instruction was not a store, there's nothing to worry about. */
2811 if ((hist[1].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
2812 return 0;
2813
2814 /* If we don't know the relationship between the store addresses,
2815 assume the worst. */
2816 if (insn == NULL
2817 || !BASE_REG_EQ (insn->insn_opcode, hist[0].insn_opcode)
2818 || !BASE_REG_EQ (insn->insn_opcode, hist[1].insn_opcode))
2819 return 1;
2820
2821 if (!fix_24k_record_store_info (&pos[0], insn)
2822 || !fix_24k_record_store_info (&pos[1], &hist[0])
2823 || !fix_24k_record_store_info (&pos[2], &hist[1]))
2824 return 1;
2825
2826 qsort (&pos, 3, sizeof (struct fix_24k_store_info), fix_24k_sort);
2827
2828 /* Pick a value of ALIGN and X such that all offsets are adjusted by
2829 X bytes and such that the base register + X is known to be aligned
2830 to align bytes. */
2831
2832 if (((insn->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == SP)
2833 align = 8;
2834 else
2835 {
2836 align = pos[0].align_to;
2837 base_offset = pos[0].off;
2838 for (i = 1; i < 3; i++)
2839 if (align < pos[i].align_to)
2840 {
2841 align = pos[i].align_to;
2842 base_offset = pos[i].off;
2843 }
2844 for (i = 0; i < 3; i++)
2845 pos[i].off -= base_offset;
2846 }
2847
2848 pos[0].off &= ~align + 1;
2849 pos[1].off &= ~align + 1;
2850 pos[2].off &= ~align + 1;
2851
2852 /* If any two stores write to the same chunk, they also write to the
2853 same doubleword. The offsets are still sorted at this point. */
2854 if (pos[0].off == pos[1].off || pos[1].off == pos[2].off)
2855 return 0;
2856
2857 /* A range of at least 9 bytes is needed for the stores to be in
2858 non-overlapping doublewords. */
2859 if (pos[2].off - pos[0].off <= 8)
2860 return 0;
2861
2862 if (pos[2].off - pos[1].off >= 24
2863 || pos[1].off - pos[0].off >= 24
2864 || pos[2].off - pos[0].off >= 32)
2865 return 0;
2866
2867 return 1;
2868}
2869
71400594 2870/* Return the number of nops that would be needed if instruction INSN
91d6fa6a
NC
2871 immediately followed the MAX_NOPS instructions given by HIST,
2872 where HIST[0] is the most recent instruction. If INSN is null,
71400594 2873 return the worse-case number of nops for any instruction. */
bdaaa2e1 2874
71400594 2875static int
91d6fa6a 2876nops_for_insn (const struct mips_cl_insn *hist,
71400594
RS
2877 const struct mips_cl_insn *insn)
2878{
2879 int i, nops, tmp_nops;
bdaaa2e1 2880
71400594 2881 nops = 0;
7d8e00cf 2882 for (i = 0; i < MAX_DELAY_NOPS; i++)
65b02341 2883 {
91d6fa6a 2884 tmp_nops = insns_between (hist + i, insn) - i;
65b02341
RS
2885 if (tmp_nops > nops)
2886 nops = tmp_nops;
2887 }
7d8e00cf
RS
2888
2889 if (mips_fix_vr4130)
2890 {
91d6fa6a 2891 tmp_nops = nops_for_vr4130 (hist, insn);
7d8e00cf
RS
2892 if (tmp_nops > nops)
2893 nops = tmp_nops;
2894 }
2895
15be625d
CM
2896 if (mips_fix_24k)
2897 {
2898 tmp_nops = nops_for_24k (hist, insn);
2899 if (tmp_nops > nops)
2900 nops = tmp_nops;
2901 }
2902
71400594
RS
2903 return nops;
2904}
252b5132 2905
71400594 2906/* The variable arguments provide NUM_INSNS extra instructions that
91d6fa6a 2907 might be added to HIST. Return the largest number of nops that
71400594 2908 would be needed after the extended sequence. */
252b5132 2909
71400594 2910static int
91d6fa6a 2911nops_for_sequence (int num_insns, const struct mips_cl_insn *hist, ...)
71400594
RS
2912{
2913 va_list args;
2914 struct mips_cl_insn buffer[MAX_NOPS];
2915 struct mips_cl_insn *cursor;
2916 int nops;
2917
91d6fa6a 2918 va_start (args, hist);
71400594 2919 cursor = buffer + num_insns;
91d6fa6a 2920 memcpy (cursor, hist, (MAX_NOPS - num_insns) * sizeof (*cursor));
71400594
RS
2921 while (cursor > buffer)
2922 *--cursor = *va_arg (args, const struct mips_cl_insn *);
2923
2924 nops = nops_for_insn (buffer, NULL);
2925 va_end (args);
2926 return nops;
2927}
252b5132 2928
71400594
RS
2929/* Like nops_for_insn, but if INSN is a branch, take into account the
2930 worst-case delay for the branch target. */
252b5132 2931
71400594 2932static int
91d6fa6a 2933nops_for_insn_or_target (const struct mips_cl_insn *hist,
71400594
RS
2934 const struct mips_cl_insn *insn)
2935{
2936 int nops, tmp_nops;
60b63b72 2937
91d6fa6a 2938 nops = nops_for_insn (hist, insn);
71400594
RS
2939 if (insn->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
2940 | INSN_COND_BRANCH_DELAY
2941 | INSN_COND_BRANCH_LIKELY))
2942 {
91d6fa6a 2943 tmp_nops = nops_for_sequence (2, hist, insn, NOP_INSN);
71400594
RS
2944 if (tmp_nops > nops)
2945 nops = tmp_nops;
2946 }
9a2c7088
MR
2947 else if (mips_opts.mips16
2948 && (insn->insn_mo->pinfo & (MIPS16_INSN_UNCOND_BRANCH
2949 | MIPS16_INSN_COND_BRANCH)))
71400594 2950 {
91d6fa6a 2951 tmp_nops = nops_for_sequence (1, hist, insn);
71400594
RS
2952 if (tmp_nops > nops)
2953 nops = tmp_nops;
2954 }
2955 return nops;
2956}
2957
c67a084a
NC
2958/* Fix NOP issue: Replace nops by "or at,at,zero". */
2959
2960static void
2961fix_loongson2f_nop (struct mips_cl_insn * ip)
2962{
2963 if (strcmp (ip->insn_mo->name, "nop") == 0)
2964 ip->insn_opcode = LOONGSON2F_NOP_INSN;
2965}
2966
2967/* Fix Jump Issue: Eliminate instruction fetch from outside 256M region
2968 jr target pc &= 'hffff_ffff_cfff_ffff. */
2969
2970static void
2971fix_loongson2f_jump (struct mips_cl_insn * ip)
2972{
2973 if (strcmp (ip->insn_mo->name, "j") == 0
2974 || strcmp (ip->insn_mo->name, "jr") == 0
2975 || strcmp (ip->insn_mo->name, "jalr") == 0)
2976 {
2977 int sreg;
2978 expressionS ep;
2979
2980 if (! mips_opts.at)
2981 return;
2982
2983 sreg = EXTRACT_OPERAND (RS, *ip);
2984 if (sreg == ZERO || sreg == KT0 || sreg == KT1 || sreg == ATREG)
2985 return;
2986
2987 ep.X_op = O_constant;
2988 ep.X_add_number = 0xcfff0000;
2989 macro_build (&ep, "lui", "t,u", ATREG, BFD_RELOC_HI16);
2990 ep.X_add_number = 0xffff;
2991 macro_build (&ep, "ori", "t,r,i", ATREG, ATREG, BFD_RELOC_LO16);
2992 macro_build (NULL, "and", "d,v,t", sreg, sreg, ATREG);
2993 }
2994}
2995
2996static void
2997fix_loongson2f (struct mips_cl_insn * ip)
2998{
2999 if (mips_fix_loongson2f_nop)
3000 fix_loongson2f_nop (ip);
3001
3002 if (mips_fix_loongson2f_jump)
3003 fix_loongson2f_jump (ip);
3004}
3005
71400594
RS
3006/* Output an instruction. IP is the instruction information.
3007 ADDRESS_EXPR is an operand of the instruction to be used with
3008 RELOC_TYPE. */
3009
3010static void
3011append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
3012 bfd_reloc_code_real_type *reloc_type)
3013{
3994f87e 3014 unsigned long prev_pinfo, pinfo;
98675402 3015 unsigned long prev_pinfo2, pinfo2;
71400594
RS
3016 relax_stateT prev_insn_frag_type = 0;
3017 bfd_boolean relaxed_branch = FALSE;
a8dbcb85 3018 segment_info_type *si = seg_info (now_seg);
71400594 3019
c67a084a
NC
3020 if (mips_fix_loongson2f)
3021 fix_loongson2f (ip);
3022
71400594
RS
3023 /* Mark instruction labels in mips16 mode. */
3024 mips16_mark_labels ();
3025
738f4d98
MR
3026 file_ase_mips16 |= mips_opts.mips16;
3027
71400594 3028 prev_pinfo = history[0].insn_mo->pinfo;
98675402 3029 prev_pinfo2 = history[0].insn_mo->pinfo2;
71400594 3030 pinfo = ip->insn_mo->pinfo;
98675402 3031 pinfo2 = ip->insn_mo->pinfo2;
71400594 3032
15be625d
CM
3033 if (address_expr == NULL)
3034 ip->complete_p = 1;
3035 else if (*reloc_type <= BFD_RELOC_UNUSED
3036 && address_expr->X_op == O_constant)
3037 {
3038 unsigned int tmp;
3039
3040 ip->complete_p = 1;
3041 switch (*reloc_type)
3042 {
3043 case BFD_RELOC_32:
3044 ip->insn_opcode |= address_expr->X_add_number;
3045 break;
3046
3047 case BFD_RELOC_MIPS_HIGHEST:
3048 tmp = (address_expr->X_add_number + 0x800080008000ull) >> 48;
3049 ip->insn_opcode |= tmp & 0xffff;
3050 break;
3051
3052 case BFD_RELOC_MIPS_HIGHER:
3053 tmp = (address_expr->X_add_number + 0x80008000ull) >> 32;
3054 ip->insn_opcode |= tmp & 0xffff;
3055 break;
3056
3057 case BFD_RELOC_HI16_S:
3058 tmp = (address_expr->X_add_number + 0x8000) >> 16;
3059 ip->insn_opcode |= tmp & 0xffff;
3060 break;
3061
3062 case BFD_RELOC_HI16:
3063 ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
3064 break;
3065
3066 case BFD_RELOC_UNUSED:
3067 case BFD_RELOC_LO16:
3068 case BFD_RELOC_MIPS_GOT_DISP:
3069 ip->insn_opcode |= address_expr->X_add_number & 0xffff;
3070 break;
3071
3072 case BFD_RELOC_MIPS_JMP:
3073 if ((address_expr->X_add_number & 3) != 0)
3074 as_bad (_("jump to misaligned address (0x%lx)"),
3075 (unsigned long) address_expr->X_add_number);
3076 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff;
3077 ip->complete_p = 0;
3078 break;
3079
3080 case BFD_RELOC_MIPS16_JMP:
3081 if ((address_expr->X_add_number & 3) != 0)
3082 as_bad (_("jump to misaligned address (0x%lx)"),
3083 (unsigned long) address_expr->X_add_number);
3084 ip->insn_opcode |=
3085 (((address_expr->X_add_number & 0x7c0000) << 3)
3086 | ((address_expr->X_add_number & 0xf800000) >> 7)
3087 | ((address_expr->X_add_number & 0x3fffc) >> 2));
3088 ip->complete_p = 0;
3089 break;
3090
3091 case BFD_RELOC_16_PCREL_S2:
3092 if ((address_expr->X_add_number & 3) != 0)
3093 as_bad (_("branch to misaligned address (0x%lx)"),
3094 (unsigned long) address_expr->X_add_number);
3095 if (mips_relax_branch)
3096 goto need_reloc;
3097 if ((address_expr->X_add_number + 0x20000) & ~0x3ffff)
3098 as_bad (_("branch address range overflow (0x%lx)"),
3099 (unsigned long) address_expr->X_add_number);
3100 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0xffff;
3101 ip->complete_p = 0;
3102 break;
3103
3104 default:
3105 internalError ();
3106 }
3107 }
3108
71400594
RS
3109 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
3110 {
3111 /* There are a lot of optimizations we could do that we don't.
3112 In particular, we do not, in general, reorder instructions.
3113 If you use gcc with optimization, it will reorder
3114 instructions and generally do much more optimization then we
3115 do here; repeating all that work in the assembler would only
3116 benefit hand written assembly code, and does not seem worth
3117 it. */
3118 int nops = (mips_optimize == 0
3119 ? nops_for_insn (history, NULL)
3120 : nops_for_insn_or_target (history, ip));
3121 if (nops > 0)
252b5132
RH
3122 {
3123 fragS *old_frag;
3124 unsigned long old_frag_offset;
3125 int i;
252b5132
RH
3126
3127 old_frag = frag_now;
3128 old_frag_offset = frag_now_fix ();
3129
3130 for (i = 0; i < nops; i++)
3131 emit_nop ();
3132
3133 if (listing)
3134 {
3135 listing_prev_line ();
3136 /* We may be at the start of a variant frag. In case we
3137 are, make sure there is enough space for the frag
3138 after the frags created by listing_prev_line. The
3139 argument to frag_grow here must be at least as large
3140 as the argument to all other calls to frag_grow in
3141 this file. We don't have to worry about being in the
3142 middle of a variant frag, because the variants insert
3143 all needed nop instructions themselves. */
3144 frag_grow (40);
3145 }
3146
404a8071 3147 mips_move_labels ();
252b5132
RH
3148
3149#ifndef NO_ECOFF_DEBUGGING
3150 if (ECOFF_DEBUGGING)
3151 ecoff_fix_loc (old_frag, old_frag_offset);
3152#endif
3153 }
71400594
RS
3154 }
3155 else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
3156 {
f77ef3e2
RS
3157 struct mips_cl_insn stubbed_history[ARRAY_SIZE (history)];
3158 int nops, i;
3159
3160 /* Work out how many nops in prev_nop_frag are needed by IP.
3161 Base this on a history in which all insns since prev_nop_frag
3162 are stubbed out with nops. */
3163 for (i = 0; i < (int) ARRAY_SIZE (history); i++)
3164 if (i < prev_nop_frag_since)
3165 stubbed_history[i] = *NOP_INSN;
3166 else
3167 stubbed_history[i] = history[i];
3168 nops = nops_for_insn_or_target (stubbed_history, ip);
9c2799c2 3169 gas_assert (nops <= prev_nop_frag_holds);
252b5132 3170
71400594
RS
3171 /* Enforce NOPS as a minimum. */
3172 if (nops > prev_nop_frag_required)
3173 prev_nop_frag_required = nops;
252b5132 3174
71400594
RS
3175 if (prev_nop_frag_holds == prev_nop_frag_required)
3176 {
3177 /* Settle for the current number of nops. Update the history
3178 accordingly (for the benefit of any future .set reorder code). */
3179 prev_nop_frag = NULL;
3180 insert_into_history (prev_nop_frag_since,
3181 prev_nop_frag_holds, NOP_INSN);
3182 }
3183 else
3184 {
3185 /* Allow this instruction to replace one of the nops that was
3186 tentatively added to prev_nop_frag. */
3187 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
3188 prev_nop_frag_holds--;
3189 prev_nop_frag_since++;
252b5132
RH
3190 }
3191 }
3192
58e2ea4d
MR
3193#ifdef OBJ_ELF
3194 /* The value passed to dwarf2_emit_insn is the distance between
3195 the beginning of the current instruction and the address that
3196 should be recorded in the debug tables. For MIPS16 debug info
3197 we want to use ISA-encoded addresses, so we pass -1 for an
3198 address higher by one than the current. */
3199 dwarf2_emit_insn (mips_opts.mips16 ? -1 : 0);
3200#endif
3201
895921c9 3202 /* Record the frag type before frag_var. */
47e39b9d
RS
3203 if (history[0].frag)
3204 prev_insn_frag_type = history[0].frag->fr_type;
895921c9 3205
4d7206a2 3206 if (address_expr
0b25d3e6 3207 && *reloc_type == BFD_RELOC_16_PCREL_S2
4a6a3df4
AO
3208 && (pinfo & INSN_UNCOND_BRANCH_DELAY || pinfo & INSN_COND_BRANCH_DELAY
3209 || pinfo & INSN_COND_BRANCH_LIKELY)
3210 && mips_relax_branch
3211 /* Don't try branch relaxation within .set nomacro, or within
3212 .set noat if we use $at for PIC computations. If it turns
3213 out that the branch was out-of-range, we'll get an error. */
3214 && !mips_opts.warn_about_macros
741fe287 3215 && (mips_opts.at || mips_pic == NO_PIC)
d455268f
MR
3216 /* Don't relax BPOSGE32/64 as they have no complementing branches. */
3217 && !(ip->insn_mo->membership & (INSN_DSP64 | INSN_DSP))
4a6a3df4
AO
3218 && !mips_opts.mips16)
3219 {
895921c9 3220 relaxed_branch = TRUE;
1e915849
RS
3221 add_relaxed_insn (ip, (relaxed_branch_length
3222 (NULL, NULL,
3223 (pinfo & INSN_UNCOND_BRANCH_DELAY) ? -1
3224 : (pinfo & INSN_COND_BRANCH_LIKELY) ? 1
3225 : 0)), 4,
3226 RELAX_BRANCH_ENCODE
66b3e8da
MR
3227 (AT,
3228 pinfo & INSN_UNCOND_BRANCH_DELAY,
1e915849
RS
3229 pinfo & INSN_COND_BRANCH_LIKELY,
3230 pinfo & INSN_WRITE_GPR_31,
3231 0),
3232 address_expr->X_add_symbol,
3233 address_expr->X_add_number);
4a6a3df4
AO
3234 *reloc_type = BFD_RELOC_UNUSED;
3235 }
3236 else if (*reloc_type > BFD_RELOC_UNUSED)
252b5132
RH
3237 {
3238 /* We need to set up a variant frag. */
9c2799c2 3239 gas_assert (mips_opts.mips16 && address_expr != NULL);
1e915849
RS
3240 add_relaxed_insn (ip, 4, 0,
3241 RELAX_MIPS16_ENCODE
3242 (*reloc_type - BFD_RELOC_UNUSED,
3243 mips16_small, mips16_ext,
3244 prev_pinfo & INSN_UNCOND_BRANCH_DELAY,
3245 history[0].mips16_absolute_jump_p),
3246 make_expr_symbol (address_expr), 0);
252b5132 3247 }
252b5132
RH
3248 else if (mips_opts.mips16
3249 && ! ip->use_extend
f6688943 3250 && *reloc_type != BFD_RELOC_MIPS16_JMP)
9497f5ac 3251 {
b8ee1a6e
DU
3252 if ((pinfo & INSN_UNCOND_BRANCH_DELAY) == 0)
3253 /* Make sure there is enough room to swap this instruction with
3254 a following jump instruction. */
3255 frag_grow (6);
1e915849 3256 add_fixed_insn (ip);
252b5132
RH
3257 }
3258 else
3259 {
3260 if (mips_opts.mips16
3261 && mips_opts.noreorder
3262 && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0)
3263 as_warn (_("extended instruction in delay slot"));
3264
4d7206a2
RS
3265 if (mips_relax.sequence)
3266 {
3267 /* If we've reached the end of this frag, turn it into a variant
3268 frag and record the information for the instructions we've
3269 written so far. */
3270 if (frag_room () < 4)
3271 relax_close_frag ();
3272 mips_relax.sizes[mips_relax.sequence - 1] += 4;
3273 }
3274
584892a6
RS
3275 if (mips_relax.sequence != 2)
3276 mips_macro_warning.sizes[0] += 4;
3277 if (mips_relax.sequence != 1)
3278 mips_macro_warning.sizes[1] += 4;
3279
1e915849
RS
3280 if (mips_opts.mips16)
3281 {
3282 ip->fixed_p = 1;
3283 ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
3284 }
3285 add_fixed_insn (ip);
252b5132
RH
3286 }
3287
01a3f561 3288 if (address_expr != NULL && *reloc_type <= BFD_RELOC_UNUSED)
252b5132 3289 {
15be625d
CM
3290 if (!ip->complete_p
3291 && *reloc_type < BFD_RELOC_UNUSED)
252b5132 3292 need_reloc:
4d7206a2
RS
3293 {
3294 reloc_howto_type *howto;
3295 int i;
34ce925e 3296
4d7206a2
RS
3297 /* In a compound relocation, it is the final (outermost)
3298 operator that determines the relocated field. */
3299 for (i = 1; i < 3; i++)
3300 if (reloc_type[i] == BFD_RELOC_UNUSED)
3301 break;
34ce925e 3302
4d7206a2 3303 howto = bfd_reloc_type_lookup (stdoutput, reloc_type[i - 1]);
23fce1e3
NC
3304 if (howto == NULL)
3305 {
3306 /* To reproduce this failure try assembling gas/testsuites/
3307 gas/mips/mips16-intermix.s with a mips-ecoff targeted
3308 assembler. */
3309 as_bad (_("Unsupported MIPS relocation number %d"), reloc_type[i - 1]);
3310 howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_16);
3311 }
3312
1e915849
RS
3313 ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
3314 bfd_get_reloc_size (howto),
3315 address_expr,
3316 reloc_type[0] == BFD_RELOC_16_PCREL_S2,
3317 reloc_type[0]);
4d7206a2 3318
b314ec0e
RS
3319 /* Tag symbols that have a R_MIPS16_26 relocation against them. */
3320 if (reloc_type[0] == BFD_RELOC_MIPS16_JMP
3321 && ip->fixp[0]->fx_addsy)
3322 *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
3323
4d7206a2
RS
3324 /* These relocations can have an addend that won't fit in
3325 4 octets for 64bit assembly. */
3326 if (HAVE_64BIT_GPRS
3327 && ! howto->partial_inplace
3328 && (reloc_type[0] == BFD_RELOC_16
3329 || reloc_type[0] == BFD_RELOC_32
3330 || reloc_type[0] == BFD_RELOC_MIPS_JMP
4d7206a2
RS
3331 || reloc_type[0] == BFD_RELOC_GPREL16
3332 || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
3333 || reloc_type[0] == BFD_RELOC_GPREL32
3334 || reloc_type[0] == BFD_RELOC_64
3335 || reloc_type[0] == BFD_RELOC_CTOR
3336 || reloc_type[0] == BFD_RELOC_MIPS_SUB
3337 || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
3338 || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
3339 || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
3340 || reloc_type[0] == BFD_RELOC_MIPS_REL16
d6f16593
MR
3341 || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
3342 || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
738e5348
RS
3343 || hi16_reloc_p (reloc_type[0])
3344 || lo16_reloc_p (reloc_type[0])))
1e915849 3345 ip->fixp[0]->fx_no_overflow = 1;
4d7206a2
RS
3346
3347 if (mips_relax.sequence)
3348 {
3349 if (mips_relax.first_fixup == 0)
1e915849 3350 mips_relax.first_fixup = ip->fixp[0];
4d7206a2
RS
3351 }
3352 else if (reloc_needs_lo_p (*reloc_type))
3353 {
3354 struct mips_hi_fixup *hi_fixup;
252b5132 3355
4d7206a2
RS
3356 /* Reuse the last entry if it already has a matching %lo. */
3357 hi_fixup = mips_hi_fixup_list;
3358 if (hi_fixup == 0
3359 || !fixup_has_matching_lo_p (hi_fixup->fixp))
3360 {
3361 hi_fixup = ((struct mips_hi_fixup *)
3362 xmalloc (sizeof (struct mips_hi_fixup)));
3363 hi_fixup->next = mips_hi_fixup_list;
3364 mips_hi_fixup_list = hi_fixup;
252b5132 3365 }
1e915849 3366 hi_fixup->fixp = ip->fixp[0];
4d7206a2
RS
3367 hi_fixup->seg = now_seg;
3368 }
f6688943 3369
4d7206a2
RS
3370 /* Add fixups for the second and third relocations, if given.
3371 Note that the ABI allows the second relocation to be
3372 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
3373 moment we only use RSS_UNDEF, but we could add support
3374 for the others if it ever becomes necessary. */
3375 for (i = 1; i < 3; i++)
3376 if (reloc_type[i] != BFD_RELOC_UNUSED)
3377 {
1e915849
RS
3378 ip->fixp[i] = fix_new (ip->frag, ip->where,
3379 ip->fixp[0]->fx_size, NULL, 0,
3380 FALSE, reloc_type[i]);
b1dca8ee
RS
3381
3382 /* Use fx_tcbit to mark compound relocs. */
1e915849
RS
3383 ip->fixp[0]->fx_tcbit = 1;
3384 ip->fixp[i]->fx_tcbit = 1;
4d7206a2 3385 }
252b5132
RH
3386 }
3387 }
1e915849 3388 install_insn (ip);
252b5132
RH
3389
3390 /* Update the register mask information. */
3391 if (! mips_opts.mips16)
3392 {
98675402 3393 if ((pinfo & INSN_WRITE_GPR_D) || (pinfo2 & INSN2_READ_GPR_D))
bf12938e 3394 mips_gprmask |= 1 << EXTRACT_OPERAND (RD, *ip);
252b5132 3395 if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0)
bf12938e 3396 mips_gprmask |= 1 << EXTRACT_OPERAND (RT, *ip);
252b5132 3397 if (pinfo & INSN_READ_GPR_S)
bf12938e 3398 mips_gprmask |= 1 << EXTRACT_OPERAND (RS, *ip);
252b5132 3399 if (pinfo & INSN_WRITE_GPR_31)
f9419b05 3400 mips_gprmask |= 1 << RA;
98675402
RS
3401 if (pinfo2 & (INSN2_WRITE_GPR_Z | INSN2_READ_GPR_Z))
3402 mips_gprmask |= 1 << EXTRACT_OPERAND (RZ, *ip);
252b5132 3403 if (pinfo & INSN_WRITE_FPR_D)
bf12938e 3404 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FD, *ip);
252b5132 3405 if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0)
bf12938e 3406 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FS, *ip);
252b5132 3407 if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0)
bf12938e 3408 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FT, *ip);
252b5132 3409 if ((pinfo & INSN_READ_FPR_R) != 0)
bf12938e 3410 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FR, *ip);
98675402
RS
3411 if (pinfo2 & (INSN2_WRITE_FPR_Z | INSN2_READ_FPR_Z))
3412 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FZ, *ip);
252b5132
RH
3413 if (pinfo & INSN_COP)
3414 {
bdaaa2e1
KH
3415 /* We don't keep enough information to sort these cases out.
3416 The itbl support does keep this information however, although
3417 we currently don't support itbl fprmats as part of the cop
3418 instruction. May want to add this support in the future. */
252b5132
RH
3419 }
3420 /* Never set the bit for $0, which is always zero. */
beae10d5 3421 mips_gprmask &= ~1 << 0;
252b5132
RH
3422 }
3423 else
3424 {
3425 if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X))
bf12938e 3426 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RX, *ip);
252b5132 3427 if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y))
bf12938e 3428 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RY, *ip);
252b5132 3429 if (pinfo & MIPS16_INSN_WRITE_Z)
bf12938e 3430 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RZ, *ip);
252b5132
RH
3431 if (pinfo & (MIPS16_INSN_WRITE_T | MIPS16_INSN_READ_T))
3432 mips_gprmask |= 1 << TREG;
3433 if (pinfo & (MIPS16_INSN_WRITE_SP | MIPS16_INSN_READ_SP))
3434 mips_gprmask |= 1 << SP;
3435 if (pinfo & (MIPS16_INSN_WRITE_31 | MIPS16_INSN_READ_31))
3436 mips_gprmask |= 1 << RA;
3437 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
3438 mips_gprmask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
3439 if (pinfo & MIPS16_INSN_READ_Z)
bf12938e 3440 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip);
252b5132 3441 if (pinfo & MIPS16_INSN_READ_GPR_X)
bf12938e 3442 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
252b5132
RH
3443 }
3444
4d7206a2 3445 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
252b5132
RH
3446 {
3447 /* Filling the branch delay slot is more complex. We try to
3448 switch the branch with the previous instruction, which we can
3449 do if the previous instruction does not set up a condition
3450 that the branch tests and if the branch is not itself the
3451 target of any branch. */
3452 if ((pinfo & INSN_UNCOND_BRANCH_DELAY)
3453 || (pinfo & INSN_COND_BRANCH_DELAY))
3454 {
3455 if (mips_optimize < 2
3456 /* If we have seen .set volatile or .set nomove, don't
3457 optimize. */
3458 || mips_opts.nomove != 0
a38419a5
RS
3459 /* We can't swap if the previous instruction's position
3460 is fixed. */
3461 || history[0].fixed_p
252b5132
RH
3462 /* If the previous previous insn was in a .set
3463 noreorder, we can't swap. Actually, the MIPS
3464 assembler will swap in this situation. However, gcc
3465 configured -with-gnu-as will generate code like
3466 .set noreorder
3467 lw $4,XXX
3468 .set reorder
3469 INSN
3470 bne $4,$0,foo
3471 in which we can not swap the bne and INSN. If gcc is
3472 not configured -with-gnu-as, it does not output the
a38419a5 3473 .set pseudo-ops. */
47e39b9d 3474 || history[1].noreorder_p
252b5132
RH
3475 /* If the branch is itself the target of a branch, we
3476 can not swap. We cheat on this; all we check for is
3477 whether there is a label on this instruction. If
3478 there are any branches to anything other than a
3479 label, users must use .set noreorder. */
a8dbcb85 3480 || si->label_list != NULL
895921c9
MR
3481 /* If the previous instruction is in a variant frag
3482 other than this branch's one, we cannot do the swap.
3483 This does not apply to the mips16, which uses variant
3484 frags for different purposes. */
252b5132 3485 || (! mips_opts.mips16
895921c9 3486 && prev_insn_frag_type == rs_machine_dependent)
71400594
RS
3487 /* Check for conflicts between the branch and the instructions
3488 before the candidate delay slot. */
3489 || nops_for_insn (history + 1, ip) > 0
3490 /* Check for conflicts between the swapped sequence and the
3491 target of the branch. */
3492 || nops_for_sequence (2, history + 1, ip, history) > 0
252b5132
RH
3493 /* We do not swap with a trap instruction, since it
3494 complicates trap handlers to have the trap
3495 instruction be in a delay slot. */
3496 || (prev_pinfo & INSN_TRAP)
3497 /* If the branch reads a register that the previous
3498 instruction sets, we can not swap. */
3499 || (! mips_opts.mips16
3500 && (prev_pinfo & INSN_WRITE_GPR_T)
bf12938e 3501 && insn_uses_reg (ip, EXTRACT_OPERAND (RT, history[0]),
252b5132
RH
3502 MIPS_GR_REG))
3503 || (! mips_opts.mips16
3504 && (prev_pinfo & INSN_WRITE_GPR_D)
bf12938e 3505 && insn_uses_reg (ip, EXTRACT_OPERAND (RD, history[0]),
252b5132 3506 MIPS_GR_REG))
98675402
RS
3507 || (! mips_opts.mips16
3508 && (prev_pinfo2 & INSN2_WRITE_GPR_Z)
3509 && insn_uses_reg (ip, EXTRACT_OPERAND (RZ, history[0]),
3510 MIPS_GR_REG))
252b5132
RH
3511 || (mips_opts.mips16
3512 && (((prev_pinfo & MIPS16_INSN_WRITE_X)
bf12938e
RS
3513 && (insn_uses_reg
3514 (ip, MIPS16_EXTRACT_OPERAND (RX, history[0]),
3515 MIPS16_REG)))
252b5132 3516 || ((prev_pinfo & MIPS16_INSN_WRITE_Y)
bf12938e
RS
3517 && (insn_uses_reg
3518 (ip, MIPS16_EXTRACT_OPERAND (RY, history[0]),
3519 MIPS16_REG)))
252b5132 3520 || ((prev_pinfo & MIPS16_INSN_WRITE_Z)
bf12938e
RS
3521 && (insn_uses_reg
3522 (ip, MIPS16_EXTRACT_OPERAND (RZ, history[0]),
3523 MIPS16_REG)))
252b5132
RH
3524 || ((prev_pinfo & MIPS16_INSN_WRITE_T)
3525 && insn_uses_reg (ip, TREG, MIPS_GR_REG))
3526 || ((prev_pinfo & MIPS16_INSN_WRITE_31)
3527 && insn_uses_reg (ip, RA, MIPS_GR_REG))
3528 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
3529 && insn_uses_reg (ip,
47e39b9d
RS
3530 MIPS16OP_EXTRACT_REG32R
3531 (history[0].insn_opcode),
252b5132
RH
3532 MIPS_GR_REG))))
3533 /* If the branch writes a register that the previous
3534 instruction sets, we can not swap (we know that
3535 branches write only to RD or to $31). */
3536 || (! mips_opts.mips16
3537 && (prev_pinfo & INSN_WRITE_GPR_T)
3538 && (((pinfo & INSN_WRITE_GPR_D)
bf12938e
RS
3539 && (EXTRACT_OPERAND (RT, history[0])
3540 == EXTRACT_OPERAND (RD, *ip)))
252b5132 3541 || ((pinfo & INSN_WRITE_GPR_31)
bf12938e 3542 && EXTRACT_OPERAND (RT, history[0]) == RA)))
252b5132
RH
3543 || (! mips_opts.mips16
3544 && (prev_pinfo & INSN_WRITE_GPR_D)
3545 && (((pinfo & INSN_WRITE_GPR_D)
bf12938e
RS
3546 && (EXTRACT_OPERAND (RD, history[0])
3547 == EXTRACT_OPERAND (RD, *ip)))
252b5132 3548 || ((pinfo & INSN_WRITE_GPR_31)
bf12938e 3549 && EXTRACT_OPERAND (RD, history[0]) == RA)))
252b5132
RH
3550 || (mips_opts.mips16
3551 && (pinfo & MIPS16_INSN_WRITE_31)
3552 && ((prev_pinfo & MIPS16_INSN_WRITE_31)
3553 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
47e39b9d 3554 && (MIPS16OP_EXTRACT_REG32R (history[0].insn_opcode)
252b5132
RH
3555 == RA))))
3556 /* If the branch writes a register that the previous
3557 instruction reads, we can not swap (we know that
3558 branches only write to RD or to $31). */
3559 || (! mips_opts.mips16
3560 && (pinfo & INSN_WRITE_GPR_D)
47e39b9d 3561 && insn_uses_reg (&history[0],
bf12938e 3562 EXTRACT_OPERAND (RD, *ip),
252b5132
RH
3563 MIPS_GR_REG))
3564 || (! mips_opts.mips16
3565 && (pinfo & INSN_WRITE_GPR_31)
47e39b9d 3566 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
252b5132
RH
3567 || (mips_opts.mips16
3568 && (pinfo & MIPS16_INSN_WRITE_31)
47e39b9d 3569 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
252b5132
RH
3570 /* If one instruction sets a condition code and the
3571 other one uses a condition code, we can not swap. */
3572 || ((pinfo & INSN_READ_COND_CODE)
3573 && (prev_pinfo & INSN_WRITE_COND_CODE))
3574 || ((pinfo & INSN_WRITE_COND_CODE)
3575 && (prev_pinfo & INSN_READ_COND_CODE))
3576 /* If the previous instruction uses the PC, we can not
3577 swap. */
3578 || (mips_opts.mips16
3579 && (prev_pinfo & MIPS16_INSN_READ_PC))
252b5132
RH
3580 /* If the previous instruction had a fixup in mips16
3581 mode, we can not swap. This normally means that the
3582 previous instruction was a 4 byte branch anyhow. */
47e39b9d 3583 || (mips_opts.mips16 && history[0].fixp[0])
bdaaa2e1
KH
3584 /* If the previous instruction is a sync, sync.l, or
3585 sync.p, we can not swap. */
6a32d874
CM
3586 || (prev_pinfo & INSN_SYNC)
3587 /* If the previous instruction is an ERET or
3588 DERET, avoid the swap. */
3589 || (history[0].insn_opcode == INSN_ERET)
3590 || (history[0].insn_opcode == INSN_DERET))
252b5132 3591 {
29024861
DU
3592 if (mips_opts.mips16
3593 && (pinfo & INSN_UNCOND_BRANCH_DELAY)
3594 && (pinfo & (MIPS16_INSN_READ_X | MIPS16_INSN_READ_31))
3994f87e 3595 && ISA_SUPPORTS_MIPS16E)
29024861
DU
3596 {
3597 /* Convert MIPS16 jr/jalr into a "compact" jump. */
3598 ip->insn_opcode |= 0x0080;
3599 install_insn (ip);
3600 insert_into_history (0, 1, ip);
3601 }
3602 else
3603 {
3604 /* We could do even better for unconditional branches to
3605 portions of this object file; we could pick up the
3606 instruction at the destination, put it in the delay
3607 slot, and bump the destination address. */
3608 insert_into_history (0, 1, ip);
3609 emit_nop ();
3610 }
3611
dd22970f
ILT
3612 if (mips_relax.sequence)
3613 mips_relax.sizes[mips_relax.sequence - 1] += 4;
252b5132
RH
3614 }
3615 else
3616 {
3617 /* It looks like we can actually do the swap. */
1e915849
RS
3618 struct mips_cl_insn delay = history[0];
3619 if (mips_opts.mips16)
252b5132 3620 {
b8ee1a6e
DU
3621 know (delay.frag == ip->frag);
3622 move_insn (ip, delay.frag, delay.where);
3623 move_insn (&delay, ip->frag, ip->where + insn_length (ip));
1e915849
RS
3624 }
3625 else if (relaxed_branch)
3626 {
3627 /* Add the delay slot instruction to the end of the
3628 current frag and shrink the fixed part of the
3629 original frag. If the branch occupies the tail of
3630 the latter, move it backwards to cover the gap. */
3631 delay.frag->fr_fix -= 4;
3632 if (delay.frag == ip->frag)
3633 move_insn (ip, ip->frag, ip->where - 4);
3634 add_fixed_insn (&delay);
252b5132
RH
3635 }
3636 else
3637 {
1e915849
RS
3638 move_insn (&delay, ip->frag, ip->where);
3639 move_insn (ip, history[0].frag, history[0].where);
252b5132 3640 }
1e915849
RS
3641 history[0] = *ip;
3642 delay.fixed_p = 1;
3643 insert_into_history (0, 1, &delay);
252b5132 3644 }
252b5132
RH
3645
3646 /* If that was an unconditional branch, forget the previous
3647 insn information. */
3648 if (pinfo & INSN_UNCOND_BRANCH_DELAY)
6a32d874 3649 {
6a32d874
CM
3650 mips_no_prev_insn ();
3651 }
252b5132
RH
3652 }
3653 else if (pinfo & INSN_COND_BRANCH_LIKELY)
3654 {
3655 /* We don't yet optimize a branch likely. What we should do
3656 is look at the target, copy the instruction found there
3657 into the delay slot, and increment the branch to jump to
3658 the next instruction. */
1e915849 3659 insert_into_history (0, 1, ip);
252b5132 3660 emit_nop ();
252b5132
RH
3661 }
3662 else
1e915849 3663 insert_into_history (0, 1, ip);
252b5132 3664 }
1e915849
RS
3665 else
3666 insert_into_history (0, 1, ip);
252b5132
RH
3667
3668 /* We just output an insn, so the next one doesn't have a label. */
3669 mips_clear_insn_labels ();
252b5132
RH
3670}
3671
7d10b47d 3672/* Forget that there was any previous instruction or label. */
252b5132
RH
3673
3674static void
7d10b47d 3675mips_no_prev_insn (void)
252b5132 3676{
7d10b47d
RS
3677 prev_nop_frag = NULL;
3678 insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
252b5132
RH
3679 mips_clear_insn_labels ();
3680}
3681
7d10b47d
RS
3682/* This function must be called before we emit something other than
3683 instructions. It is like mips_no_prev_insn except that it inserts
3684 any NOPS that might be needed by previous instructions. */
252b5132 3685
7d10b47d
RS
3686void
3687mips_emit_delays (void)
252b5132
RH
3688{
3689 if (! mips_opts.noreorder)
3690 {
71400594 3691 int nops = nops_for_insn (history, NULL);
252b5132
RH
3692 if (nops > 0)
3693 {
7d10b47d
RS
3694 while (nops-- > 0)
3695 add_fixed_insn (NOP_INSN);
3696 mips_move_labels ();
3697 }
3698 }
3699 mips_no_prev_insn ();
3700}
3701
3702/* Start a (possibly nested) noreorder block. */
3703
3704static void
3705start_noreorder (void)
3706{
3707 if (mips_opts.noreorder == 0)
3708 {
3709 unsigned int i;
3710 int nops;
3711
3712 /* None of the instructions before the .set noreorder can be moved. */
3713 for (i = 0; i < ARRAY_SIZE (history); i++)
3714 history[i].fixed_p = 1;
3715
3716 /* Insert any nops that might be needed between the .set noreorder
3717 block and the previous instructions. We will later remove any
3718 nops that turn out not to be needed. */
3719 nops = nops_for_insn (history, NULL);
3720 if (nops > 0)
3721 {
3722 if (mips_optimize != 0)
252b5132
RH
3723 {
3724 /* Record the frag which holds the nop instructions, so
3725 that we can remove them if we don't need them. */
3726 frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4);
3727 prev_nop_frag = frag_now;
3728 prev_nop_frag_holds = nops;
3729 prev_nop_frag_required = 0;
3730 prev_nop_frag_since = 0;
3731 }
3732
3733 for (; nops > 0; --nops)
1e915849 3734 add_fixed_insn (NOP_INSN);
252b5132 3735
7d10b47d
RS
3736 /* Move on to a new frag, so that it is safe to simply
3737 decrease the size of prev_nop_frag. */
3738 frag_wane (frag_now);
3739 frag_new (0);
404a8071 3740 mips_move_labels ();
252b5132 3741 }
7d10b47d
RS
3742 mips16_mark_labels ();
3743 mips_clear_insn_labels ();
252b5132 3744 }
7d10b47d
RS
3745 mips_opts.noreorder++;
3746 mips_any_noreorder = 1;
3747}
252b5132 3748
7d10b47d 3749/* End a nested noreorder block. */
252b5132 3750
7d10b47d
RS
3751static void
3752end_noreorder (void)
3753{
6a32d874 3754
7d10b47d
RS
3755 mips_opts.noreorder--;
3756 if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
3757 {
3758 /* Commit to inserting prev_nop_frag_required nops and go back to
3759 handling nop insertion the .set reorder way. */
3760 prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
3761 * (mips_opts.mips16 ? 2 : 4));
3762 insert_into_history (prev_nop_frag_since,
3763 prev_nop_frag_required, NOP_INSN);
3764 prev_nop_frag = NULL;
3765 }
252b5132
RH
3766}
3767
584892a6
RS
3768/* Set up global variables for the start of a new macro. */
3769
3770static void
3771macro_start (void)
3772{
3773 memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
3774 mips_macro_warning.delay_slot_p = (mips_opts.noreorder
47e39b9d 3775 && (history[0].insn_mo->pinfo
584892a6
RS
3776 & (INSN_UNCOND_BRANCH_DELAY
3777 | INSN_COND_BRANCH_DELAY
3778 | INSN_COND_BRANCH_LIKELY)) != 0);
3779}
3780
3781/* Given that a macro is longer than 4 bytes, return the appropriate warning
3782 for it. Return null if no warning is needed. SUBTYPE is a bitmask of
3783 RELAX_DELAY_SLOT and RELAX_NOMACRO. */
3784
3785static const char *
3786macro_warning (relax_substateT subtype)
3787{
3788 if (subtype & RELAX_DELAY_SLOT)
3789 return _("Macro instruction expanded into multiple instructions"
3790 " in a branch delay slot");
3791 else if (subtype & RELAX_NOMACRO)
3792 return _("Macro instruction expanded into multiple instructions");
3793 else
3794 return 0;
3795}
3796
3797/* Finish up a macro. Emit warnings as appropriate. */
3798
3799static void
3800macro_end (void)
3801{
3802 if (mips_macro_warning.sizes[0] > 4 || mips_macro_warning.sizes[1] > 4)
3803 {
3804 relax_substateT subtype;
3805
3806 /* Set up the relaxation warning flags. */
3807 subtype = 0;
3808 if (mips_macro_warning.sizes[1] > mips_macro_warning.sizes[0])
3809 subtype |= RELAX_SECOND_LONGER;
3810 if (mips_opts.warn_about_macros)
3811 subtype |= RELAX_NOMACRO;
3812 if (mips_macro_warning.delay_slot_p)
3813 subtype |= RELAX_DELAY_SLOT;
3814
3815 if (mips_macro_warning.sizes[0] > 4 && mips_macro_warning.sizes[1] > 4)
3816 {
3817 /* Either the macro has a single implementation or both
3818 implementations are longer than 4 bytes. Emit the
3819 warning now. */
3820 const char *msg = macro_warning (subtype);
3821 if (msg != 0)
520725ea 3822 as_warn ("%s", msg);
584892a6
RS
3823 }
3824 else
3825 {
3826 /* One implementation might need a warning but the other
3827 definitely doesn't. */
3828 mips_macro_warning.first_frag->fr_subtype |= subtype;
3829 }
3830 }
3831}
3832
6e1304d8
RS
3833/* Read a macro's relocation codes from *ARGS and store them in *R.
3834 The first argument in *ARGS will be either the code for a single
3835 relocation or -1 followed by the three codes that make up a
3836 composite relocation. */
3837
3838static void
3839macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
3840{
3841 int i, next;
3842
3843 next = va_arg (*args, int);
3844 if (next >= 0)
3845 r[0] = (bfd_reloc_code_real_type) next;
3846 else
3847 for (i = 0; i < 3; i++)
3848 r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
3849}
3850
252b5132
RH
3851/* Build an instruction created by a macro expansion. This is passed
3852 a pointer to the count of instructions created so far, an
3853 expression, the name of the instruction to build, an operand format
3854 string, and corresponding arguments. */
3855
252b5132 3856static void
67c0d1eb 3857macro_build (expressionS *ep, const char *name, const char *fmt, ...)
252b5132 3858{
1e915849 3859 const struct mips_opcode *mo;
252b5132 3860 struct mips_cl_insn insn;
f6688943 3861 bfd_reloc_code_real_type r[3];
252b5132 3862 va_list args;
252b5132 3863
252b5132 3864 va_start (args, fmt);
252b5132 3865
252b5132
RH
3866 if (mips_opts.mips16)
3867 {
03ea81db 3868 mips16_macro_build (ep, name, fmt, &args);
252b5132
RH
3869 va_end (args);
3870 return;
3871 }
3872
f6688943
TS
3873 r[0] = BFD_RELOC_UNUSED;
3874 r[1] = BFD_RELOC_UNUSED;
3875 r[2] = BFD_RELOC_UNUSED;
1e915849 3876 mo = (struct mips_opcode *) hash_find (op_hash, name);
9c2799c2
NC
3877 gas_assert (mo);
3878 gas_assert (strcmp (name, mo->name) == 0);
1e915849 3879
8b082fb1
TS
3880 while (1)
3881 {
3882 /* Search until we get a match for NAME. It is assumed here that
3883 macros will never generate MDMX, MIPS-3D, or MT instructions. */
3884 if (strcmp (fmt, mo->args) == 0
3885 && mo->pinfo != INSN_MACRO
f79e2745 3886 && is_opcode_valid (mo))
8b082fb1
TS
3887 break;
3888
1e915849 3889 ++mo;
9c2799c2
NC
3890 gas_assert (mo->name);
3891 gas_assert (strcmp (name, mo->name) == 0);
252b5132
RH
3892 }
3893
1e915849 3894 create_insn (&insn, mo);
252b5132
RH
3895 for (;;)
3896 {
3897 switch (*fmt++)
3898 {
3899 case '\0':
3900 break;
3901
3902 case ',':
3903 case '(':
3904 case ')':
3905 continue;
3906
5f74bc13
CD
3907 case '+':
3908 switch (*fmt++)
3909 {
3910 case 'A':
3911 case 'E':
bf12938e 3912 INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
5f74bc13
CD
3913 continue;
3914
3915 case 'B':
3916 case 'F':
3917 /* Note that in the macro case, these arguments are already
3918 in MSB form. (When handling the instruction in the
3919 non-macro case, these arguments are sizes from which
3920 MSB values must be calculated.) */
bf12938e 3921 INSERT_OPERAND (INSMSB, insn, va_arg (args, int));
5f74bc13
CD
3922 continue;
3923
3924 case 'C':
3925 case 'G':
3926 case 'H':
3927 /* Note that in the macro case, these arguments are already
3928 in MSBD form. (When handling the instruction in the
3929 non-macro case, these arguments are sizes from which
3930 MSBD values must be calculated.) */
bf12938e 3931 INSERT_OPERAND (EXTMSBD, insn, va_arg (args, int));
5f74bc13
CD
3932 continue;
3933
dd3cbb7e
NC
3934 case 'Q':
3935 INSERT_OPERAND (SEQI, insn, va_arg (args, int));
3936 continue;
3937
5f74bc13
CD
3938 default:
3939 internalError ();
3940 }
3941 continue;
3942
8b082fb1
TS
3943 case '2':
3944 INSERT_OPERAND (BP, insn, va_arg (args, int));
3945 continue;
3946
252b5132
RH
3947 case 't':
3948 case 'w':
3949 case 'E':
bf12938e 3950 INSERT_OPERAND (RT, insn, va_arg (args, int));
252b5132
RH
3951 continue;
3952
3953 case 'c':
bf12938e 3954 INSERT_OPERAND (CODE, insn, va_arg (args, int));
38487616
TS
3955 continue;
3956
252b5132
RH
3957 case 'T':
3958 case 'W':
bf12938e 3959 INSERT_OPERAND (FT, insn, va_arg (args, int));
252b5132
RH
3960 continue;
3961
3962 case 'd':
3963 case 'G':
af7ee8bf 3964 case 'K':
bf12938e 3965 INSERT_OPERAND (RD, insn, va_arg (args, int));
252b5132
RH
3966 continue;
3967
4372b673
NC
3968 case 'U':
3969 {
3970 int tmp = va_arg (args, int);
3971
bf12938e
RS
3972 INSERT_OPERAND (RT, insn, tmp);
3973 INSERT_OPERAND (RD, insn, tmp);
beae10d5 3974 continue;
4372b673
NC
3975 }
3976
252b5132
RH
3977 case 'V':
3978 case 'S':
bf12938e 3979 INSERT_OPERAND (FS, insn, va_arg (args, int));
252b5132
RH
3980 continue;
3981
3982 case 'z':
3983 continue;
3984
3985 case '<':
bf12938e 3986 INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
252b5132
RH
3987 continue;
3988
3989 case 'D':
bf12938e 3990 INSERT_OPERAND (FD, insn, va_arg (args, int));
252b5132
RH
3991 continue;
3992
3993 case 'B':
bf12938e 3994 INSERT_OPERAND (CODE20, insn, va_arg (args, int));
252b5132
RH
3995 continue;
3996
4372b673 3997 case 'J':
bf12938e 3998 INSERT_OPERAND (CODE19, insn, va_arg (args, int));
4372b673
NC
3999 continue;
4000
252b5132 4001 case 'q':
bf12938e 4002 INSERT_OPERAND (CODE2, insn, va_arg (args, int));
252b5132
RH
4003 continue;
4004
4005 case 'b':
4006 case 's':
4007 case 'r':
4008 case 'v':
bf12938e 4009 INSERT_OPERAND (RS, insn, va_arg (args, int));
252b5132
RH
4010 continue;
4011
4012 case 'i':
4013 case 'j':
6e1304d8 4014 macro_read_relocs (&args, r);
9c2799c2 4015 gas_assert (*r == BFD_RELOC_GPREL16
e391c024
RS
4016 || *r == BFD_RELOC_MIPS_HIGHER
4017 || *r == BFD_RELOC_HI16_S
4018 || *r == BFD_RELOC_LO16
4019 || *r == BFD_RELOC_MIPS_GOT_OFST);
4020 continue;
4021
4022 case 'o':
4023 macro_read_relocs (&args, r);
252b5132
RH
4024 continue;
4025
4026 case 'u':
6e1304d8 4027 macro_read_relocs (&args, r);
9c2799c2 4028 gas_assert (ep != NULL
90ecf173
MR
4029 && (ep->X_op == O_constant
4030 || (ep->X_op == O_symbol
4031 && (*r == BFD_RELOC_MIPS_HIGHEST
4032 || *r == BFD_RELOC_HI16_S
4033 || *r == BFD_RELOC_HI16
4034 || *r == BFD_RELOC_GPREL16
4035 || *r == BFD_RELOC_MIPS_GOT_HI16
4036 || *r == BFD_RELOC_MIPS_CALL_HI16))));
252b5132
RH
4037 continue;
4038
4039 case 'p':
9c2799c2 4040 gas_assert (ep != NULL);
bad36eac 4041
252b5132
RH
4042 /*
4043 * This allows macro() to pass an immediate expression for
4044 * creating short branches without creating a symbol.
bad36eac
DJ
4045 *
4046 * We don't allow branch relaxation for these branches, as
4047 * they should only appear in ".set nomacro" anyway.
252b5132
RH
4048 */
4049 if (ep->X_op == O_constant)
4050 {
bad36eac
DJ
4051 if ((ep->X_add_number & 3) != 0)
4052 as_bad (_("branch to misaligned address (0x%lx)"),
4053 (unsigned long) ep->X_add_number);
4054 if ((ep->X_add_number + 0x20000) & ~0x3ffff)
4055 as_bad (_("branch address range overflow (0x%lx)"),
4056 (unsigned long) ep->X_add_number);
252b5132
RH
4057 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
4058 ep = NULL;
4059 }
4060 else
0b25d3e6 4061 *r = BFD_RELOC_16_PCREL_S2;
252b5132
RH
4062 continue;
4063
4064 case 'a':
9c2799c2 4065 gas_assert (ep != NULL);
f6688943 4066 *r = BFD_RELOC_MIPS_JMP;
252b5132
RH
4067 continue;
4068
4069 case 'C':
a9e24354 4070 INSERT_OPERAND (COPZ, insn, va_arg (args, unsigned long));
252b5132
RH
4071 continue;
4072
d43b4baf 4073 case 'k':
a9e24354 4074 INSERT_OPERAND (CACHE, insn, va_arg (args, unsigned long));
d43b4baf
TS
4075 continue;
4076
252b5132
RH
4077 default:
4078 internalError ();
4079 }
4080 break;
4081 }
4082 va_end (args);
9c2799c2 4083 gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132 4084
4d7206a2 4085 append_insn (&insn, ep, r);
252b5132
RH
4086}
4087
4088static void
67c0d1eb 4089mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
03ea81db 4090 va_list *args)
252b5132 4091{
1e915849 4092 struct mips_opcode *mo;
252b5132 4093 struct mips_cl_insn insn;
f6688943
TS
4094 bfd_reloc_code_real_type r[3]
4095 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 4096
1e915849 4097 mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
9c2799c2
NC
4098 gas_assert (mo);
4099 gas_assert (strcmp (name, mo->name) == 0);
252b5132 4100
1e915849 4101 while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
252b5132 4102 {
1e915849 4103 ++mo;
9c2799c2
NC
4104 gas_assert (mo->name);
4105 gas_assert (strcmp (name, mo->name) == 0);
252b5132
RH
4106 }
4107
1e915849 4108 create_insn (&insn, mo);
252b5132
RH
4109 for (;;)
4110 {
4111 int c;
4112
4113 c = *fmt++;
4114 switch (c)
4115 {
4116 case '\0':
4117 break;
4118
4119 case ',':
4120 case '(':
4121 case ')':
4122 continue;
4123
4124 case 'y':
4125 case 'w':
03ea81db 4126 MIPS16_INSERT_OPERAND (RY, insn, va_arg (*args, int));
252b5132
RH
4127 continue;
4128
4129 case 'x':
4130 case 'v':
03ea81db 4131 MIPS16_INSERT_OPERAND (RX, insn, va_arg (*args, int));
252b5132
RH
4132 continue;
4133
4134 case 'z':
03ea81db 4135 MIPS16_INSERT_OPERAND (RZ, insn, va_arg (*args, int));
252b5132
RH
4136 continue;
4137
4138 case 'Z':
03ea81db 4139 MIPS16_INSERT_OPERAND (MOVE32Z, insn, va_arg (*args, int));
252b5132
RH
4140 continue;
4141
4142 case '0':
4143 case 'S':
4144 case 'P':
4145 case 'R':
4146 continue;
4147
4148 case 'X':
03ea81db 4149 MIPS16_INSERT_OPERAND (REGR32, insn, va_arg (*args, int));
252b5132
RH
4150 continue;
4151
4152 case 'Y':
4153 {
4154 int regno;
4155
03ea81db 4156 regno = va_arg (*args, int);
252b5132 4157 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
a9e24354 4158 MIPS16_INSERT_OPERAND (REG32R, insn, regno);
252b5132
RH
4159 }
4160 continue;
4161
4162 case '<':
4163 case '>':
4164 case '4':
4165 case '5':
4166 case 'H':
4167 case 'W':
4168 case 'D':
4169 case 'j':
4170 case '8':
4171 case 'V':
4172 case 'C':
4173 case 'U':
4174 case 'k':
4175 case 'K':
4176 case 'p':
4177 case 'q':
4178 {
9c2799c2 4179 gas_assert (ep != NULL);
252b5132
RH
4180
4181 if (ep->X_op != O_constant)
874e8986 4182 *r = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
4183 else
4184 {
b34976b6
AM
4185 mips16_immed (NULL, 0, c, ep->X_add_number, FALSE, FALSE,
4186 FALSE, &insn.insn_opcode, &insn.use_extend,
c4e7957c 4187 &insn.extend);
252b5132 4188 ep = NULL;
f6688943 4189 *r = BFD_RELOC_UNUSED;
252b5132
RH
4190 }
4191 }
4192 continue;
4193
4194 case '6':
03ea81db 4195 MIPS16_INSERT_OPERAND (IMM6, insn, va_arg (*args, int));
252b5132
RH
4196 continue;
4197 }
4198
4199 break;
4200 }
4201
9c2799c2 4202 gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132 4203
4d7206a2 4204 append_insn (&insn, ep, r);
252b5132
RH
4205}
4206
2051e8c4
MR
4207/*
4208 * Sign-extend 32-bit mode constants that have bit 31 set and all
4209 * higher bits unset.
4210 */
9f872bbe 4211static void
2051e8c4
MR
4212normalize_constant_expr (expressionS *ex)
4213{
9ee2a2d4 4214 if (ex->X_op == O_constant
2051e8c4
MR
4215 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
4216 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
4217 - 0x80000000);
4218}
4219
4220/*
4221 * Sign-extend 32-bit mode address offsets that have bit 31 set and
4222 * all higher bits unset.
4223 */
4224static void
4225normalize_address_expr (expressionS *ex)
4226{
4227 if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
4228 || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
4229 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
4230 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
4231 - 0x80000000);
4232}
4233
438c16b8
TS
4234/*
4235 * Generate a "jalr" instruction with a relocation hint to the called
4236 * function. This occurs in NewABI PIC code.
4237 */
4238static void
67c0d1eb 4239macro_build_jalr (expressionS *ep)
438c16b8 4240{
685736be 4241 char *f = NULL;
b34976b6 4242
1180b5a4 4243 if (MIPS_JALR_HINT_P (ep))
f21f8242 4244 {
cc3d92a5 4245 frag_grow (8);
f21f8242
AO
4246 f = frag_more (0);
4247 }
67c0d1eb 4248 macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
1180b5a4 4249 if (MIPS_JALR_HINT_P (ep))
f21f8242 4250 fix_new_exp (frag_now, f - frag_now->fr_literal,
a105a300 4251 4, ep, FALSE, BFD_RELOC_MIPS_JALR);
438c16b8
TS
4252}
4253
252b5132
RH
4254/*
4255 * Generate a "lui" instruction.
4256 */
4257static void
67c0d1eb 4258macro_build_lui (expressionS *ep, int regnum)
252b5132
RH
4259{
4260 expressionS high_expr;
1e915849 4261 const struct mips_opcode *mo;
252b5132 4262 struct mips_cl_insn insn;
f6688943
TS
4263 bfd_reloc_code_real_type r[3]
4264 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
5a38dc70
AM
4265 const char *name = "lui";
4266 const char *fmt = "t,u";
252b5132 4267
9c2799c2 4268 gas_assert (! mips_opts.mips16);
252b5132 4269
4d7206a2 4270 high_expr = *ep;
252b5132
RH
4271
4272 if (high_expr.X_op == O_constant)
4273 {
54f4ddb3 4274 /* We can compute the instruction now without a relocation entry. */
e7d556df
TS
4275 high_expr.X_add_number = ((high_expr.X_add_number + 0x8000)
4276 >> 16) & 0xffff;
f6688943 4277 *r = BFD_RELOC_UNUSED;
252b5132 4278 }
78e1bb40 4279 else
252b5132 4280 {
9c2799c2 4281 gas_assert (ep->X_op == O_symbol);
bbe506e8
TS
4282 /* _gp_disp is a special case, used from s_cpload.
4283 __gnu_local_gp is used if mips_no_shared. */
9c2799c2 4284 gas_assert (mips_pic == NO_PIC
78e1bb40 4285 || (! HAVE_NEWABI
aa6975fb
ILT
4286 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
4287 || (! mips_in_shared
bbe506e8
TS
4288 && strcmp (S_GET_NAME (ep->X_add_symbol),
4289 "__gnu_local_gp") == 0));
f6688943 4290 *r = BFD_RELOC_HI16_S;
252b5132
RH
4291 }
4292
1e915849 4293 mo = hash_find (op_hash, name);
9c2799c2
NC
4294 gas_assert (strcmp (name, mo->name) == 0);
4295 gas_assert (strcmp (fmt, mo->args) == 0);
1e915849 4296 create_insn (&insn, mo);
252b5132 4297
bf12938e
RS
4298 insn.insn_opcode = insn.insn_mo->match;
4299 INSERT_OPERAND (RT, insn, regnum);
f6688943 4300 if (*r == BFD_RELOC_UNUSED)
252b5132
RH
4301 {
4302 insn.insn_opcode |= high_expr.X_add_number;
4d7206a2 4303 append_insn (&insn, NULL, r);
252b5132
RH
4304 }
4305 else
4d7206a2 4306 append_insn (&insn, &high_expr, r);
252b5132
RH
4307}
4308
885add95
CD
4309/* Generate a sequence of instructions to do a load or store from a constant
4310 offset off of a base register (breg) into/from a target register (treg),
4311 using AT if necessary. */
4312static void
67c0d1eb
RS
4313macro_build_ldst_constoffset (expressionS *ep, const char *op,
4314 int treg, int breg, int dbl)
885add95 4315{
9c2799c2 4316 gas_assert (ep->X_op == O_constant);
885add95 4317
256ab948 4318 /* Sign-extending 32-bit constants makes their handling easier. */
2051e8c4
MR
4319 if (!dbl)
4320 normalize_constant_expr (ep);
256ab948 4321
67c1ffbe 4322 /* Right now, this routine can only handle signed 32-bit constants. */
ecd13cd3 4323 if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
885add95
CD
4324 as_warn (_("operand overflow"));
4325
4326 if (IS_SEXT_16BIT_NUM(ep->X_add_number))
4327 {
4328 /* Signed 16-bit offset will fit in the op. Easy! */
67c0d1eb 4329 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
885add95
CD
4330 }
4331 else
4332 {
4333 /* 32-bit offset, need multiple instructions and AT, like:
4334 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
4335 addu $tempreg,$tempreg,$breg
4336 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
4337 to handle the complete offset. */
67c0d1eb
RS
4338 macro_build_lui (ep, AT);
4339 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
4340 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
885add95 4341
741fe287 4342 if (!mips_opts.at)
8fc2e39e 4343 as_bad (_("Macro used $at after \".set noat\""));
885add95
CD
4344 }
4345}
4346
252b5132
RH
4347/* set_at()
4348 * Generates code to set the $at register to true (one)
4349 * if reg is less than the immediate expression.
4350 */
4351static void
67c0d1eb 4352set_at (int reg, int unsignedp)
252b5132
RH
4353{
4354 if (imm_expr.X_op == O_constant
4355 && imm_expr.X_add_number >= -0x8000
4356 && imm_expr.X_add_number < 0x8000)
67c0d1eb
RS
4357 macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
4358 AT, reg, BFD_RELOC_LO16);
252b5132
RH
4359 else
4360 {
67c0d1eb
RS
4361 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4362 macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
252b5132
RH
4363 }
4364}
4365
4366/* Warn if an expression is not a constant. */
4367
4368static void
17a2f251 4369check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
252b5132
RH
4370{
4371 if (ex->X_op == O_big)
4372 as_bad (_("unsupported large constant"));
4373 else if (ex->X_op != O_constant)
9ee2a2d4
MR
4374 as_bad (_("Instruction %s requires absolute expression"),
4375 ip->insn_mo->name);
13757d0c 4376
9ee2a2d4
MR
4377 if (HAVE_32BIT_GPRS)
4378 normalize_constant_expr (ex);
252b5132
RH
4379}
4380
4381/* Count the leading zeroes by performing a binary chop. This is a
4382 bulky bit of source, but performance is a LOT better for the
4383 majority of values than a simple loop to count the bits:
4384 for (lcnt = 0; (lcnt < 32); lcnt++)
4385 if ((v) & (1 << (31 - lcnt)))
4386 break;
4387 However it is not code size friendly, and the gain will drop a bit
4388 on certain cached systems.
4389*/
4390#define COUNT_TOP_ZEROES(v) \
4391 (((v) & ~0xffff) == 0 \
4392 ? ((v) & ~0xff) == 0 \
4393 ? ((v) & ~0xf) == 0 \
4394 ? ((v) & ~0x3) == 0 \
4395 ? ((v) & ~0x1) == 0 \
4396 ? !(v) \
4397 ? 32 \
4398 : 31 \
4399 : 30 \
4400 : ((v) & ~0x7) == 0 \
4401 ? 29 \
4402 : 28 \
4403 : ((v) & ~0x3f) == 0 \
4404 ? ((v) & ~0x1f) == 0 \
4405 ? 27 \
4406 : 26 \
4407 : ((v) & ~0x7f) == 0 \
4408 ? 25 \
4409 : 24 \
4410 : ((v) & ~0xfff) == 0 \
4411 ? ((v) & ~0x3ff) == 0 \
4412 ? ((v) & ~0x1ff) == 0 \
4413 ? 23 \
4414 : 22 \
4415 : ((v) & ~0x7ff) == 0 \
4416 ? 21 \
4417 : 20 \
4418 : ((v) & ~0x3fff) == 0 \
4419 ? ((v) & ~0x1fff) == 0 \
4420 ? 19 \
4421 : 18 \
4422 : ((v) & ~0x7fff) == 0 \
4423 ? 17 \
4424 : 16 \
4425 : ((v) & ~0xffffff) == 0 \
4426 ? ((v) & ~0xfffff) == 0 \
4427 ? ((v) & ~0x3ffff) == 0 \
4428 ? ((v) & ~0x1ffff) == 0 \
4429 ? 15 \
4430 : 14 \
4431 : ((v) & ~0x7ffff) == 0 \
4432 ? 13 \
4433 : 12 \
4434 : ((v) & ~0x3fffff) == 0 \
4435 ? ((v) & ~0x1fffff) == 0 \
4436 ? 11 \
4437 : 10 \
4438 : ((v) & ~0x7fffff) == 0 \
4439 ? 9 \
4440 : 8 \
4441 : ((v) & ~0xfffffff) == 0 \
4442 ? ((v) & ~0x3ffffff) == 0 \
4443 ? ((v) & ~0x1ffffff) == 0 \
4444 ? 7 \
4445 : 6 \
4446 : ((v) & ~0x7ffffff) == 0 \
4447 ? 5 \
4448 : 4 \
4449 : ((v) & ~0x3fffffff) == 0 \
4450 ? ((v) & ~0x1fffffff) == 0 \
4451 ? 3 \
4452 : 2 \
4453 : ((v) & ~0x7fffffff) == 0 \
4454 ? 1 \
4455 : 0)
4456
4457/* load_register()
67c1ffbe 4458 * This routine generates the least number of instructions necessary to load
252b5132
RH
4459 * an absolute expression value into a register.
4460 */
4461static void
67c0d1eb 4462load_register (int reg, expressionS *ep, int dbl)
252b5132
RH
4463{
4464 int freg;
4465 expressionS hi32, lo32;
4466
4467 if (ep->X_op != O_big)
4468 {
9c2799c2 4469 gas_assert (ep->X_op == O_constant);
256ab948
TS
4470
4471 /* Sign-extending 32-bit constants makes their handling easier. */
2051e8c4
MR
4472 if (!dbl)
4473 normalize_constant_expr (ep);
256ab948
TS
4474
4475 if (IS_SEXT_16BIT_NUM (ep->X_add_number))
252b5132
RH
4476 {
4477 /* We can handle 16 bit signed values with an addiu to
4478 $zero. No need to ever use daddiu here, since $zero and
4479 the result are always correct in 32 bit mode. */
67c0d1eb 4480 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
252b5132
RH
4481 return;
4482 }
4483 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
4484 {
4485 /* We can handle 16 bit unsigned values with an ori to
4486 $zero. */
67c0d1eb 4487 macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
252b5132
RH
4488 return;
4489 }
256ab948 4490 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
252b5132
RH
4491 {
4492 /* 32 bit values require an lui. */
67c0d1eb 4493 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_HI16);
252b5132 4494 if ((ep->X_add_number & 0xffff) != 0)
67c0d1eb 4495 macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
252b5132
RH
4496 return;
4497 }
4498 }
4499
4500 /* The value is larger than 32 bits. */
4501
2051e8c4 4502 if (!dbl || HAVE_32BIT_GPRS)
252b5132 4503 {
55e08f71
NC
4504 char value[32];
4505
4506 sprintf_vma (value, ep->X_add_number);
20e1fcfd 4507 as_bad (_("Number (0x%s) larger than 32 bits"), value);
67c0d1eb 4508 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
252b5132
RH
4509 return;
4510 }
4511
4512 if (ep->X_op != O_big)
4513 {
4514 hi32 = *ep;
4515 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
4516 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
4517 hi32.X_add_number &= 0xffffffff;
4518 lo32 = *ep;
4519 lo32.X_add_number &= 0xffffffff;
4520 }
4521 else
4522 {
9c2799c2 4523 gas_assert (ep->X_add_number > 2);
252b5132
RH
4524 if (ep->X_add_number == 3)
4525 generic_bignum[3] = 0;
4526 else if (ep->X_add_number > 4)
4527 as_bad (_("Number larger than 64 bits"));
4528 lo32.X_op = O_constant;
4529 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
4530 hi32.X_op = O_constant;
4531 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
4532 }
4533
4534 if (hi32.X_add_number == 0)
4535 freg = 0;
4536 else
4537 {
4538 int shift, bit;
4539 unsigned long hi, lo;
4540
956cd1d6 4541 if (hi32.X_add_number == (offsetT) 0xffffffff)
beae10d5
KH
4542 {
4543 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
4544 {
67c0d1eb 4545 macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
beae10d5
KH
4546 return;
4547 }
4548 if (lo32.X_add_number & 0x80000000)
4549 {
67c0d1eb 4550 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
252b5132 4551 if (lo32.X_add_number & 0xffff)
67c0d1eb 4552 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
beae10d5
KH
4553 return;
4554 }
4555 }
252b5132
RH
4556
4557 /* Check for 16bit shifted constant. We know that hi32 is
4558 non-zero, so start the mask on the first bit of the hi32
4559 value. */
4560 shift = 17;
4561 do
beae10d5
KH
4562 {
4563 unsigned long himask, lomask;
4564
4565 if (shift < 32)
4566 {
4567 himask = 0xffff >> (32 - shift);
4568 lomask = (0xffff << shift) & 0xffffffff;
4569 }
4570 else
4571 {
4572 himask = 0xffff << (shift - 32);
4573 lomask = 0;
4574 }
4575 if ((hi32.X_add_number & ~(offsetT) himask) == 0
4576 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
4577 {
4578 expressionS tmp;
4579
4580 tmp.X_op = O_constant;
4581 if (shift < 32)
4582 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
4583 | (lo32.X_add_number >> shift));
4584 else
4585 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
67c0d1eb
RS
4586 macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
4587 macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", "d,w,<",
4588 reg, reg, (shift >= 32) ? shift - 32 : shift);
beae10d5
KH
4589 return;
4590 }
f9419b05 4591 ++shift;
beae10d5
KH
4592 }
4593 while (shift <= (64 - 16));
252b5132
RH
4594
4595 /* Find the bit number of the lowest one bit, and store the
4596 shifted value in hi/lo. */
4597 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
4598 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
4599 if (lo != 0)
4600 {
4601 bit = 0;
4602 while ((lo & 1) == 0)
4603 {
4604 lo >>= 1;
4605 ++bit;
4606 }
4607 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
4608 hi >>= bit;
4609 }
4610 else
4611 {
4612 bit = 32;
4613 while ((hi & 1) == 0)
4614 {
4615 hi >>= 1;
4616 ++bit;
4617 }
4618 lo = hi;
4619 hi = 0;
4620 }
4621
4622 /* Optimize if the shifted value is a (power of 2) - 1. */
4623 if ((hi == 0 && ((lo + 1) & lo) == 0)
4624 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
beae10d5
KH
4625 {
4626 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
252b5132 4627 if (shift != 0)
beae10d5 4628 {
252b5132
RH
4629 expressionS tmp;
4630
4631 /* This instruction will set the register to be all
4632 ones. */
beae10d5
KH
4633 tmp.X_op = O_constant;
4634 tmp.X_add_number = (offsetT) -1;
67c0d1eb 4635 macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
beae10d5
KH
4636 if (bit != 0)
4637 {
4638 bit += shift;
67c0d1eb
RS
4639 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", "d,w,<",
4640 reg, reg, (bit >= 32) ? bit - 32 : bit);
beae10d5 4641 }
67c0d1eb
RS
4642 macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", "d,w,<",
4643 reg, reg, (shift >= 32) ? shift - 32 : shift);
beae10d5
KH
4644 return;
4645 }
4646 }
252b5132
RH
4647
4648 /* Sign extend hi32 before calling load_register, because we can
4649 generally get better code when we load a sign extended value. */
4650 if ((hi32.X_add_number & 0x80000000) != 0)
beae10d5 4651 hi32.X_add_number |= ~(offsetT) 0xffffffff;
67c0d1eb 4652 load_register (reg, &hi32, 0);
252b5132
RH
4653 freg = reg;
4654 }
4655 if ((lo32.X_add_number & 0xffff0000) == 0)
4656 {
4657 if (freg != 0)
4658 {
67c0d1eb 4659 macro_build (NULL, "dsll32", "d,w,<", reg, freg, 0);
252b5132
RH
4660 freg = reg;
4661 }
4662 }
4663 else
4664 {
4665 expressionS mid16;
4666
956cd1d6 4667 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
beae10d5 4668 {
67c0d1eb
RS
4669 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
4670 macro_build (NULL, "dsrl32", "d,w,<", reg, reg, 0);
beae10d5
KH
4671 return;
4672 }
252b5132
RH
4673
4674 if (freg != 0)
4675 {
67c0d1eb 4676 macro_build (NULL, "dsll", "d,w,<", reg, freg, 16);
252b5132
RH
4677 freg = reg;
4678 }
4679 mid16 = lo32;
4680 mid16.X_add_number >>= 16;
67c0d1eb
RS
4681 macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
4682 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
252b5132
RH
4683 freg = reg;
4684 }
4685 if ((lo32.X_add_number & 0xffff) != 0)
67c0d1eb 4686 macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
252b5132
RH
4687}
4688
269137b2
TS
4689static inline void
4690load_delay_nop (void)
4691{
4692 if (!gpr_interlocks)
4693 macro_build (NULL, "nop", "");
4694}
4695
252b5132
RH
4696/* Load an address into a register. */
4697
4698static void
67c0d1eb 4699load_address (int reg, expressionS *ep, int *used_at)
252b5132 4700{
252b5132
RH
4701 if (ep->X_op != O_constant
4702 && ep->X_op != O_symbol)
4703 {
4704 as_bad (_("expression too complex"));
4705 ep->X_op = O_constant;
4706 }
4707
4708 if (ep->X_op == O_constant)
4709 {
67c0d1eb 4710 load_register (reg, ep, HAVE_64BIT_ADDRESSES);
252b5132
RH
4711 return;
4712 }
4713
4714 if (mips_pic == NO_PIC)
4715 {
4716 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 4717 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
4718 Otherwise we want
4719 lui $reg,<sym> (BFD_RELOC_HI16_S)
4720 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
d6bc6245 4721 If we have an addend, we always use the latter form.
76b3015f 4722
d6bc6245
TS
4723 With 64bit address space and a usable $at we want
4724 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4725 lui $at,<sym> (BFD_RELOC_HI16_S)
4726 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
4727 daddiu $at,<sym> (BFD_RELOC_LO16)
4728 dsll32 $reg,0
3a482fd5 4729 daddu $reg,$reg,$at
76b3015f 4730
c03099e6 4731 If $at is already in use, we use a path which is suboptimal
d6bc6245
TS
4732 on superscalar processors.
4733 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4734 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
4735 dsll $reg,16
4736 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
4737 dsll $reg,16
4738 daddiu $reg,<sym> (BFD_RELOC_LO16)
6caf9ef4
TS
4739
4740 For GP relative symbols in 64bit address space we can use
4741 the same sequence as in 32bit address space. */
aed1a261 4742 if (HAVE_64BIT_SYMBOLS)
d6bc6245 4743 {
6caf9ef4
TS
4744 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
4745 && !nopic_need_relax (ep->X_add_symbol, 1))
4746 {
4747 relax_start (ep->X_add_symbol);
4748 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
4749 mips_gp_register, BFD_RELOC_GPREL16);
4750 relax_switch ();
4751 }
d6bc6245 4752
741fe287 4753 if (*used_at == 0 && mips_opts.at)
d6bc6245 4754 {
67c0d1eb
RS
4755 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
4756 macro_build (ep, "lui", "t,u", AT, BFD_RELOC_HI16_S);
4757 macro_build (ep, "daddiu", "t,r,j", reg, reg,
4758 BFD_RELOC_MIPS_HIGHER);
4759 macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
4760 macro_build (NULL, "dsll32", "d,w,<", reg, reg, 0);
4761 macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
d6bc6245
TS
4762 *used_at = 1;
4763 }
4764 else
4765 {
67c0d1eb
RS
4766 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
4767 macro_build (ep, "daddiu", "t,r,j", reg, reg,
4768 BFD_RELOC_MIPS_HIGHER);
4769 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4770 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
4771 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4772 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
d6bc6245 4773 }
6caf9ef4
TS
4774
4775 if (mips_relax.sequence)
4776 relax_end ();
d6bc6245 4777 }
252b5132
RH
4778 else
4779 {
d6bc6245 4780 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 4781 && !nopic_need_relax (ep->X_add_symbol, 1))
d6bc6245 4782 {
4d7206a2 4783 relax_start (ep->X_add_symbol);
67c0d1eb 4784 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
17a2f251 4785 mips_gp_register, BFD_RELOC_GPREL16);
4d7206a2 4786 relax_switch ();
d6bc6245 4787 }
67c0d1eb
RS
4788 macro_build_lui (ep, reg);
4789 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
4790 reg, reg, BFD_RELOC_LO16);
4d7206a2
RS
4791 if (mips_relax.sequence)
4792 relax_end ();
d6bc6245 4793 }
252b5132 4794 }
0a44bf69 4795 else if (!mips_big_got)
252b5132
RH
4796 {
4797 expressionS ex;
4798
4799 /* If this is a reference to an external symbol, we want
4800 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4801 Otherwise we want
4802 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4803 nop
4804 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
f5040a92
AO
4805 If there is a constant, it must be added in after.
4806
ed6fb7bd 4807 If we have NewABI, we want
f5040a92
AO
4808 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
4809 unless we're referencing a global symbol with a non-zero
4810 offset, in which case cst must be added separately. */
ed6fb7bd
SC
4811 if (HAVE_NEWABI)
4812 {
f5040a92
AO
4813 if (ep->X_add_number)
4814 {
4d7206a2 4815 ex.X_add_number = ep->X_add_number;
f5040a92 4816 ep->X_add_number = 0;
4d7206a2 4817 relax_start (ep->X_add_symbol);
67c0d1eb
RS
4818 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4819 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
4820 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4821 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4822 ex.X_op = O_constant;
67c0d1eb 4823 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 4824 reg, reg, BFD_RELOC_LO16);
f5040a92 4825 ep->X_add_number = ex.X_add_number;
4d7206a2 4826 relax_switch ();
f5040a92 4827 }
67c0d1eb 4828 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 4829 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4d7206a2
RS
4830 if (mips_relax.sequence)
4831 relax_end ();
ed6fb7bd
SC
4832 }
4833 else
4834 {
f5040a92
AO
4835 ex.X_add_number = ep->X_add_number;
4836 ep->X_add_number = 0;
67c0d1eb
RS
4837 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4838 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 4839 load_delay_nop ();
4d7206a2
RS
4840 relax_start (ep->X_add_symbol);
4841 relax_switch ();
67c0d1eb 4842 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
17a2f251 4843 BFD_RELOC_LO16);
4d7206a2 4844 relax_end ();
ed6fb7bd 4845
f5040a92
AO
4846 if (ex.X_add_number != 0)
4847 {
4848 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4849 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4850 ex.X_op = O_constant;
67c0d1eb 4851 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 4852 reg, reg, BFD_RELOC_LO16);
f5040a92 4853 }
252b5132
RH
4854 }
4855 }
0a44bf69 4856 else if (mips_big_got)
252b5132
RH
4857 {
4858 expressionS ex;
252b5132
RH
4859
4860 /* This is the large GOT case. If this is a reference to an
4861 external symbol, we want
4862 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4863 addu $reg,$reg,$gp
4864 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
f5040a92
AO
4865
4866 Otherwise, for a reference to a local symbol in old ABI, we want
252b5132
RH
4867 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4868 nop
4869 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
684022ea 4870 If there is a constant, it must be added in after.
f5040a92
AO
4871
4872 In the NewABI, for local symbols, with or without offsets, we want:
438c16b8
TS
4873 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
4874 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
f5040a92 4875 */
438c16b8
TS
4876 if (HAVE_NEWABI)
4877 {
4d7206a2 4878 ex.X_add_number = ep->X_add_number;
f5040a92 4879 ep->X_add_number = 0;
4d7206a2 4880 relax_start (ep->X_add_symbol);
67c0d1eb
RS
4881 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
4882 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
4883 reg, reg, mips_gp_register);
4884 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
4885 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
f5040a92
AO
4886 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4887 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4888 else if (ex.X_add_number)
4889 {
4890 ex.X_op = O_constant;
67c0d1eb
RS
4891 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4892 BFD_RELOC_LO16);
f5040a92
AO
4893 }
4894
4895 ep->X_add_number = ex.X_add_number;
4d7206a2 4896 relax_switch ();
67c0d1eb 4897 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 4898 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
67c0d1eb
RS
4899 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4900 BFD_RELOC_MIPS_GOT_OFST);
4d7206a2 4901 relax_end ();
438c16b8 4902 }
252b5132 4903 else
438c16b8 4904 {
f5040a92
AO
4905 ex.X_add_number = ep->X_add_number;
4906 ep->X_add_number = 0;
4d7206a2 4907 relax_start (ep->X_add_symbol);
67c0d1eb
RS
4908 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
4909 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
4910 reg, reg, mips_gp_register);
4911 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
4912 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
4d7206a2
RS
4913 relax_switch ();
4914 if (reg_needs_delay (mips_gp_register))
438c16b8
TS
4915 {
4916 /* We need a nop before loading from $gp. This special
4917 check is required because the lui which starts the main
4918 instruction stream does not refer to $gp, and so will not
4919 insert the nop which may be required. */
67c0d1eb 4920 macro_build (NULL, "nop", "");
438c16b8 4921 }
67c0d1eb 4922 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 4923 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 4924 load_delay_nop ();
67c0d1eb 4925 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
17a2f251 4926 BFD_RELOC_LO16);
4d7206a2 4927 relax_end ();
438c16b8 4928
f5040a92
AO
4929 if (ex.X_add_number != 0)
4930 {
4931 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4932 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4933 ex.X_op = O_constant;
67c0d1eb
RS
4934 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4935 BFD_RELOC_LO16);
f5040a92 4936 }
252b5132
RH
4937 }
4938 }
252b5132
RH
4939 else
4940 abort ();
8fc2e39e 4941
741fe287 4942 if (!mips_opts.at && *used_at == 1)
8fc2e39e 4943 as_bad (_("Macro used $at after \".set noat\""));
252b5132
RH
4944}
4945
ea1fb5dc
RS
4946/* Move the contents of register SOURCE into register DEST. */
4947
4948static void
67c0d1eb 4949move_register (int dest, int source)
ea1fb5dc 4950{
67c0d1eb
RS
4951 macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
4952 dest, source, 0);
ea1fb5dc
RS
4953}
4954
4d7206a2 4955/* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
f6a22291
MR
4956 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
4957 The two alternatives are:
4d7206a2
RS
4958
4959 Global symbol Local sybmol
4960 ------------- ------------
4961 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
4962 ... ...
4963 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
4964
4965 load_got_offset emits the first instruction and add_got_offset
f6a22291
MR
4966 emits the second for a 16-bit offset or add_got_offset_hilo emits
4967 a sequence to add a 32-bit offset using a scratch register. */
4d7206a2
RS
4968
4969static void
67c0d1eb 4970load_got_offset (int dest, expressionS *local)
4d7206a2
RS
4971{
4972 expressionS global;
4973
4974 global = *local;
4975 global.X_add_number = 0;
4976
4977 relax_start (local->X_add_symbol);
67c0d1eb
RS
4978 macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4979 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4d7206a2 4980 relax_switch ();
67c0d1eb
RS
4981 macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4982 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4d7206a2
RS
4983 relax_end ();
4984}
4985
4986static void
67c0d1eb 4987add_got_offset (int dest, expressionS *local)
4d7206a2
RS
4988{
4989 expressionS global;
4990
4991 global.X_op = O_constant;
4992 global.X_op_symbol = NULL;
4993 global.X_add_symbol = NULL;
4994 global.X_add_number = local->X_add_number;
4995
4996 relax_start (local->X_add_symbol);
67c0d1eb 4997 macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
4d7206a2
RS
4998 dest, dest, BFD_RELOC_LO16);
4999 relax_switch ();
67c0d1eb 5000 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
4d7206a2
RS
5001 relax_end ();
5002}
5003
f6a22291
MR
5004static void
5005add_got_offset_hilo (int dest, expressionS *local, int tmp)
5006{
5007 expressionS global;
5008 int hold_mips_optimize;
5009
5010 global.X_op = O_constant;
5011 global.X_op_symbol = NULL;
5012 global.X_add_symbol = NULL;
5013 global.X_add_number = local->X_add_number;
5014
5015 relax_start (local->X_add_symbol);
5016 load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
5017 relax_switch ();
5018 /* Set mips_optimize around the lui instruction to avoid
5019 inserting an unnecessary nop after the lw. */
5020 hold_mips_optimize = mips_optimize;
5021 mips_optimize = 2;
5022 macro_build_lui (&global, tmp);
5023 mips_optimize = hold_mips_optimize;
5024 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
5025 relax_end ();
5026
5027 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
5028}
5029
252b5132
RH
5030/*
5031 * Build macros
5032 * This routine implements the seemingly endless macro or synthesized
5033 * instructions and addressing modes in the mips assembly language. Many
5034 * of these macros are simple and are similar to each other. These could
67c1ffbe 5035 * probably be handled by some kind of table or grammar approach instead of
252b5132
RH
5036 * this verbose method. Others are not simple macros but are more like
5037 * optimizing code generation.
5038 * One interesting optimization is when several store macros appear
67c1ffbe 5039 * consecutively that would load AT with the upper half of the same address.
252b5132
RH
5040 * The ensuing load upper instructions are ommited. This implies some kind
5041 * of global optimization. We currently only optimize within a single macro.
5042 * For many of the load and store macros if the address is specified as a
5043 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
5044 * first load register 'at' with zero and use it as the base register. The
5045 * mips assembler simply uses register $zero. Just one tiny optimization
5046 * we're missing.
5047 */
5048static void
17a2f251 5049macro (struct mips_cl_insn *ip)
252b5132 5050{
741fe287
MR
5051 unsigned int treg, sreg, dreg, breg;
5052 unsigned int tempreg;
252b5132 5053 int mask;
43841e91 5054 int used_at = 0;
252b5132
RH
5055 expressionS expr1;
5056 const char *s;
5057 const char *s2;
5058 const char *fmt;
5059 int likely = 0;
5060 int dbl = 0;
5061 int coproc = 0;
5062 int lr = 0;
5063 int imm = 0;
1abe91b1 5064 int call = 0;
252b5132 5065 int off;
67c0d1eb 5066 offsetT maxnum;
252b5132 5067 bfd_reloc_code_real_type r;
252b5132
RH
5068 int hold_mips_optimize;
5069
9c2799c2 5070 gas_assert (! mips_opts.mips16);
252b5132 5071
bbea7ebc
MR
5072 treg = EXTRACT_OPERAND (RT, *ip);
5073 dreg = EXTRACT_OPERAND (RD, *ip);
5074 sreg = breg = EXTRACT_OPERAND (RS, *ip);
252b5132
RH
5075 mask = ip->insn_mo->mask;
5076
5077 expr1.X_op = O_constant;
5078 expr1.X_op_symbol = NULL;
5079 expr1.X_add_symbol = NULL;
5080 expr1.X_add_number = 1;
5081
5082 switch (mask)
5083 {
5084 case M_DABS:
5085 dbl = 1;
5086 case M_ABS:
5087 /* bgez $a0,.+12
5088 move v0,$a0
5089 sub v0,$zero,$a0
5090 */
5091
7d10b47d 5092 start_noreorder ();
252b5132
RH
5093
5094 expr1.X_add_number = 8;
67c0d1eb 5095 macro_build (&expr1, "bgez", "s,p", sreg);
252b5132 5096 if (dreg == sreg)
a605d2b3 5097 macro_build (NULL, "nop", "");
252b5132 5098 else
67c0d1eb
RS
5099 move_register (dreg, sreg);
5100 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
252b5132 5101
7d10b47d 5102 end_noreorder ();
8fc2e39e 5103 break;
252b5132
RH
5104
5105 case M_ADD_I:
5106 s = "addi";
5107 s2 = "add";
5108 goto do_addi;
5109 case M_ADDU_I:
5110 s = "addiu";
5111 s2 = "addu";
5112 goto do_addi;
5113 case M_DADD_I:
5114 dbl = 1;
5115 s = "daddi";
5116 s2 = "dadd";
5117 goto do_addi;
5118 case M_DADDU_I:
5119 dbl = 1;
5120 s = "daddiu";
5121 s2 = "daddu";
5122 do_addi:
5123 if (imm_expr.X_op == O_constant
5124 && imm_expr.X_add_number >= -0x8000
5125 && imm_expr.X_add_number < 0x8000)
5126 {
67c0d1eb 5127 macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
8fc2e39e 5128 break;
252b5132 5129 }
8fc2e39e 5130 used_at = 1;
67c0d1eb
RS
5131 load_register (AT, &imm_expr, dbl);
5132 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
252b5132
RH
5133 break;
5134
5135 case M_AND_I:
5136 s = "andi";
5137 s2 = "and";
5138 goto do_bit;
5139 case M_OR_I:
5140 s = "ori";
5141 s2 = "or";
5142 goto do_bit;
5143 case M_NOR_I:
5144 s = "";
5145 s2 = "nor";
5146 goto do_bit;
5147 case M_XOR_I:
5148 s = "xori";
5149 s2 = "xor";
5150 do_bit:
5151 if (imm_expr.X_op == O_constant
5152 && imm_expr.X_add_number >= 0
5153 && imm_expr.X_add_number < 0x10000)
5154 {
5155 if (mask != M_NOR_I)
67c0d1eb 5156 macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16);
252b5132
RH
5157 else
5158 {
67c0d1eb
RS
5159 macro_build (&imm_expr, "ori", "t,r,i",
5160 treg, sreg, BFD_RELOC_LO16);
5161 macro_build (NULL, "nor", "d,v,t", treg, treg, 0);
252b5132 5162 }
8fc2e39e 5163 break;
252b5132
RH
5164 }
5165
8fc2e39e 5166 used_at = 1;
67c0d1eb
RS
5167 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
5168 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
252b5132
RH
5169 break;
5170
8b082fb1
TS
5171 case M_BALIGN:
5172 switch (imm_expr.X_add_number)
5173 {
5174 case 0:
5175 macro_build (NULL, "nop", "");
5176 break;
5177 case 2:
5178 macro_build (NULL, "packrl.ph", "d,s,t", treg, treg, sreg);
5179 break;
5180 default:
5181 macro_build (NULL, "balign", "t,s,2", treg, sreg,
90ecf173 5182 (int) imm_expr.X_add_number);
8b082fb1
TS
5183 break;
5184 }
5185 break;
5186
252b5132
RH
5187 case M_BEQ_I:
5188 s = "beq";
5189 goto beq_i;
5190 case M_BEQL_I:
5191 s = "beql";
5192 likely = 1;
5193 goto beq_i;
5194 case M_BNE_I:
5195 s = "bne";
5196 goto beq_i;
5197 case M_BNEL_I:
5198 s = "bnel";
5199 likely = 1;
5200 beq_i:
5201 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5202 {
c80c840e 5203 macro_build (&offset_expr, s, "s,t,p", sreg, ZERO);
8fc2e39e 5204 break;
252b5132 5205 }
8fc2e39e 5206 used_at = 1;
67c0d1eb
RS
5207 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
5208 macro_build (&offset_expr, s, "s,t,p", sreg, AT);
252b5132
RH
5209 break;
5210
5211 case M_BGEL:
5212 likely = 1;
5213 case M_BGE:
5214 if (treg == 0)
5215 {
67c0d1eb 5216 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
8fc2e39e 5217 break;
252b5132
RH
5218 }
5219 if (sreg == 0)
5220 {
67c0d1eb 5221 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", treg);
8fc2e39e 5222 break;
252b5132 5223 }
8fc2e39e 5224 used_at = 1;
67c0d1eb 5225 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
c80c840e 5226 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
252b5132
RH
5227 break;
5228
5229 case M_BGTL_I:
5230 likely = 1;
5231 case M_BGT_I:
90ecf173 5232 /* Check for > max integer. */
252b5132 5233 maxnum = 0x7fffffff;
ca4e0257 5234 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
5235 {
5236 maxnum <<= 16;
5237 maxnum |= 0xffff;
5238 maxnum <<= 16;
5239 maxnum |= 0xffff;
5240 }
5241 if (imm_expr.X_op == O_constant
5242 && imm_expr.X_add_number >= maxnum
ca4e0257 5243 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
5244 {
5245 do_false:
90ecf173 5246 /* Result is always false. */
252b5132 5247 if (! likely)
a605d2b3 5248 macro_build (NULL, "nop", "");
252b5132 5249 else
c80c840e 5250 macro_build (&offset_expr, "bnel", "s,t,p", ZERO, ZERO);
8fc2e39e 5251 break;
252b5132
RH
5252 }
5253 if (imm_expr.X_op != O_constant)
5254 as_bad (_("Unsupported large constant"));
f9419b05 5255 ++imm_expr.X_add_number;
252b5132
RH
5256 /* FALLTHROUGH */
5257 case M_BGE_I:
5258 case M_BGEL_I:
5259 if (mask == M_BGEL_I)
5260 likely = 1;
5261 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5262 {
67c0d1eb 5263 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
8fc2e39e 5264 break;
252b5132
RH
5265 }
5266 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5267 {
67c0d1eb 5268 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
8fc2e39e 5269 break;
252b5132
RH
5270 }
5271 maxnum = 0x7fffffff;
ca4e0257 5272 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
5273 {
5274 maxnum <<= 16;
5275 maxnum |= 0xffff;
5276 maxnum <<= 16;
5277 maxnum |= 0xffff;
5278 }
5279 maxnum = - maxnum - 1;
5280 if (imm_expr.X_op == O_constant
5281 && imm_expr.X_add_number <= maxnum
ca4e0257 5282 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
5283 {
5284 do_true:
5285 /* result is always true */
5286 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
67c0d1eb 5287 macro_build (&offset_expr, "b", "p");
8fc2e39e 5288 break;
252b5132 5289 }
8fc2e39e 5290 used_at = 1;
67c0d1eb 5291 set_at (sreg, 0);
c80c840e 5292 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
252b5132
RH
5293 break;
5294
5295 case M_BGEUL:
5296 likely = 1;
5297 case M_BGEU:
5298 if (treg == 0)
5299 goto do_true;
5300 if (sreg == 0)
5301 {
67c0d1eb 5302 macro_build (&offset_expr, likely ? "beql" : "beq",
c80c840e 5303 "s,t,p", ZERO, treg);
8fc2e39e 5304 break;
252b5132 5305 }
8fc2e39e 5306 used_at = 1;
67c0d1eb 5307 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
c80c840e 5308 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
252b5132
RH
5309 break;
5310
5311 case M_BGTUL_I:
5312 likely = 1;
5313 case M_BGTU_I:
5314 if (sreg == 0
ca4e0257 5315 || (HAVE_32BIT_GPRS
252b5132 5316 && imm_expr.X_op == O_constant
f01dc953 5317 && imm_expr.X_add_number == -1))
252b5132
RH
5318 goto do_false;
5319 if (imm_expr.X_op != O_constant)
5320 as_bad (_("Unsupported large constant"));
f9419b05 5321 ++imm_expr.X_add_number;
252b5132
RH
5322 /* FALLTHROUGH */
5323 case M_BGEU_I:
5324 case M_BGEUL_I:
5325 if (mask == M_BGEUL_I)
5326 likely = 1;
5327 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5328 goto do_true;
5329 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5330 {
67c0d1eb 5331 macro_build (&offset_expr, likely ? "bnel" : "bne",
c80c840e 5332 "s,t,p", sreg, ZERO);
8fc2e39e 5333 break;
252b5132 5334 }
8fc2e39e 5335 used_at = 1;
67c0d1eb 5336 set_at (sreg, 1);
c80c840e 5337 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
252b5132
RH
5338 break;
5339
5340 case M_BGTL:
5341 likely = 1;
5342 case M_BGT:
5343 if (treg == 0)
5344 {
67c0d1eb 5345 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
8fc2e39e 5346 break;
252b5132
RH
5347 }
5348 if (sreg == 0)
5349 {
67c0d1eb 5350 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", treg);
8fc2e39e 5351 break;
252b5132 5352 }
8fc2e39e 5353 used_at = 1;
67c0d1eb 5354 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
c80c840e 5355 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
252b5132
RH
5356 break;
5357
5358 case M_BGTUL:
5359 likely = 1;
5360 case M_BGTU:
5361 if (treg == 0)
5362 {
67c0d1eb 5363 macro_build (&offset_expr, likely ? "bnel" : "bne",
c80c840e 5364 "s,t,p", sreg, ZERO);
8fc2e39e 5365 break;
252b5132
RH
5366 }
5367 if (sreg == 0)
5368 goto do_false;
8fc2e39e 5369 used_at = 1;
67c0d1eb 5370 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
c80c840e 5371 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
252b5132
RH
5372 break;
5373
5374 case M_BLEL:
5375 likely = 1;
5376 case M_BLE:
5377 if (treg == 0)
5378 {
67c0d1eb 5379 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
8fc2e39e 5380 break;
252b5132
RH
5381 }
5382 if (sreg == 0)
5383 {
67c0d1eb 5384 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", treg);
8fc2e39e 5385 break;
252b5132 5386 }
8fc2e39e 5387 used_at = 1;
67c0d1eb 5388 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
c80c840e 5389 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
252b5132
RH
5390 break;
5391
5392 case M_BLEL_I:
5393 likely = 1;
5394 case M_BLE_I:
5395 maxnum = 0x7fffffff;
ca4e0257 5396 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
5397 {
5398 maxnum <<= 16;
5399 maxnum |= 0xffff;
5400 maxnum <<= 16;
5401 maxnum |= 0xffff;
5402 }
5403 if (imm_expr.X_op == O_constant
5404 && imm_expr.X_add_number >= maxnum
ca4e0257 5405 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
5406 goto do_true;
5407 if (imm_expr.X_op != O_constant)
5408 as_bad (_("Unsupported large constant"));
f9419b05 5409 ++imm_expr.X_add_number;
252b5132
RH
5410 /* FALLTHROUGH */
5411 case M_BLT_I:
5412 case M_BLTL_I:
5413 if (mask == M_BLTL_I)
5414 likely = 1;
5415 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5416 {
67c0d1eb 5417 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
8fc2e39e 5418 break;
252b5132
RH
5419 }
5420 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5421 {
67c0d1eb 5422 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
8fc2e39e 5423 break;
252b5132 5424 }
8fc2e39e 5425 used_at = 1;
67c0d1eb 5426 set_at (sreg, 0);
c80c840e 5427 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
252b5132
RH
5428 break;
5429
5430 case M_BLEUL:
5431 likely = 1;
5432 case M_BLEU:
5433 if (treg == 0)
5434 {
67c0d1eb 5435 macro_build (&offset_expr, likely ? "beql" : "beq",
c80c840e 5436 "s,t,p", sreg, ZERO);
8fc2e39e 5437 break;
252b5132
RH
5438 }
5439 if (sreg == 0)
5440 goto do_true;
8fc2e39e 5441 used_at = 1;
67c0d1eb 5442 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
c80c840e 5443 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, ZERO);
252b5132
RH
5444 break;
5445
5446 case M_BLEUL_I:
5447 likely = 1;
5448 case M_BLEU_I:
5449 if (sreg == 0
ca4e0257 5450 || (HAVE_32BIT_GPRS
252b5132 5451 && imm_expr.X_op == O_constant
f01dc953 5452 && imm_expr.X_add_number == -1))
252b5132
RH
5453 goto do_true;
5454 if (imm_expr.X_op != O_constant)
5455 as_bad (_("Unsupported large constant"));
f9419b05 5456 ++imm_expr.X_add_number;
252b5132
RH
5457 /* FALLTHROUGH */
5458 case M_BLTU_I:
5459 case M_BLTUL_I:
5460 if (mask == M_BLTUL_I)
5461 likely = 1;
5462 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5463 goto do_false;
5464 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5465 {
67c0d1eb 5466 macro_build (&offset_expr, likely ? "beql" : "beq",
c80c840e 5467 "s,t,p", sreg, ZERO);
8fc2e39e 5468 break;
252b5132 5469 }
8fc2e39e 5470 used_at = 1;
67c0d1eb 5471 set_at (sreg, 1);
c80c840e 5472 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
252b5132
RH
5473 break;
5474
5475 case M_BLTL:
5476 likely = 1;
5477 case M_BLT:
5478 if (treg == 0)
5479 {
67c0d1eb 5480 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
8fc2e39e 5481 break;
252b5132
RH
5482 }
5483 if (sreg == 0)
5484 {
67c0d1eb 5485 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", treg);
8fc2e39e 5486 break;
252b5132 5487 }
8fc2e39e 5488 used_at = 1;
67c0d1eb 5489 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
c80c840e 5490 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
252b5132
RH
5491 break;
5492
5493 case M_BLTUL:
5494 likely = 1;
5495 case M_BLTU:
5496 if (treg == 0)
5497 goto do_false;
5498 if (sreg == 0)
5499 {
67c0d1eb 5500 macro_build (&offset_expr, likely ? "bnel" : "bne",
c80c840e 5501 "s,t,p", ZERO, treg);
8fc2e39e 5502 break;
252b5132 5503 }
8fc2e39e 5504 used_at = 1;
67c0d1eb 5505 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
c80c840e 5506 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, ZERO);
252b5132
RH
5507 break;
5508
5f74bc13
CD
5509 case M_DEXT:
5510 {
d5818fca
MR
5511 /* Use unsigned arithmetic. */
5512 addressT pos;
5513 addressT size;
5f74bc13 5514
90ecf173 5515 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
5f74bc13
CD
5516 {
5517 as_bad (_("Unsupported large constant"));
5518 pos = size = 1;
5519 }
5520 else
5521 {
d5818fca
MR
5522 pos = imm_expr.X_add_number;
5523 size = imm2_expr.X_add_number;
5f74bc13
CD
5524 }
5525
5526 if (pos > 63)
5527 {
d5818fca 5528 as_bad (_("Improper position (%lu)"), (unsigned long) pos);
5f74bc13
CD
5529 pos = 1;
5530 }
90ecf173 5531 if (size == 0 || size > 64 || (pos + size - 1) > 63)
5f74bc13
CD
5532 {
5533 as_bad (_("Improper extract size (%lu, position %lu)"),
d5818fca 5534 (unsigned long) size, (unsigned long) pos);
5f74bc13
CD
5535 size = 1;
5536 }
5537
5538 if (size <= 32 && pos < 32)
5539 {
5540 s = "dext";
5541 fmt = "t,r,+A,+C";
5542 }
5543 else if (size <= 32)
5544 {
5545 s = "dextu";
5546 fmt = "t,r,+E,+H";
5547 }
5548 else
5549 {
5550 s = "dextm";
5551 fmt = "t,r,+A,+G";
5552 }
d5818fca
MR
5553 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
5554 (int) (size - 1));
5f74bc13 5555 }
8fc2e39e 5556 break;
5f74bc13
CD
5557
5558 case M_DINS:
5559 {
d5818fca
MR
5560 /* Use unsigned arithmetic. */
5561 addressT pos;
5562 addressT size;
5f74bc13 5563
90ecf173 5564 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
5f74bc13
CD
5565 {
5566 as_bad (_("Unsupported large constant"));
5567 pos = size = 1;
5568 }
5569 else
5570 {
d5818fca
MR
5571 pos = imm_expr.X_add_number;
5572 size = imm2_expr.X_add_number;
5f74bc13
CD
5573 }
5574
5575 if (pos > 63)
5576 {
d5818fca 5577 as_bad (_("Improper position (%lu)"), (unsigned long) pos);
5f74bc13
CD
5578 pos = 1;
5579 }
90ecf173 5580 if (size == 0 || size > 64 || (pos + size - 1) > 63)
5f74bc13
CD
5581 {
5582 as_bad (_("Improper insert size (%lu, position %lu)"),
d5818fca 5583 (unsigned long) size, (unsigned long) pos);
5f74bc13
CD
5584 size = 1;
5585 }
5586
5587 if (pos < 32 && (pos + size - 1) < 32)
5588 {
5589 s = "dins";
5590 fmt = "t,r,+A,+B";
5591 }
5592 else if (pos >= 32)
5593 {
5594 s = "dinsu";
5595 fmt = "t,r,+E,+F";
5596 }
5597 else
5598 {
5599 s = "dinsm";
5600 fmt = "t,r,+A,+F";
5601 }
750bdd57
AS
5602 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
5603 (int) (pos + size - 1));
5f74bc13 5604 }
8fc2e39e 5605 break;
5f74bc13 5606
252b5132
RH
5607 case M_DDIV_3:
5608 dbl = 1;
5609 case M_DIV_3:
5610 s = "mflo";
5611 goto do_div3;
5612 case M_DREM_3:
5613 dbl = 1;
5614 case M_REM_3:
5615 s = "mfhi";
5616 do_div3:
5617 if (treg == 0)
5618 {
5619 as_warn (_("Divide by zero."));
5620 if (mips_trap)
c80c840e 5621 macro_build (NULL, "teq", "s,t,q", ZERO, ZERO, 7);
252b5132 5622 else
67c0d1eb 5623 macro_build (NULL, "break", "c", 7);
8fc2e39e 5624 break;
252b5132
RH
5625 }
5626
7d10b47d 5627 start_noreorder ();
252b5132
RH
5628 if (mips_trap)
5629 {
c80c840e 5630 macro_build (NULL, "teq", "s,t,q", treg, ZERO, 7);
67c0d1eb 5631 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
252b5132
RH
5632 }
5633 else
5634 {
5635 expr1.X_add_number = 8;
c80c840e 5636 macro_build (&expr1, "bne", "s,t,p", treg, ZERO);
67c0d1eb
RS
5637 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
5638 macro_build (NULL, "break", "c", 7);
252b5132
RH
5639 }
5640 expr1.X_add_number = -1;
8fc2e39e 5641 used_at = 1;
f6a22291 5642 load_register (AT, &expr1, dbl);
252b5132 5643 expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
67c0d1eb 5644 macro_build (&expr1, "bne", "s,t,p", treg, AT);
252b5132
RH
5645 if (dbl)
5646 {
5647 expr1.X_add_number = 1;
f6a22291 5648 load_register (AT, &expr1, dbl);
67c0d1eb 5649 macro_build (NULL, "dsll32", "d,w,<", AT, AT, 31);
252b5132
RH
5650 }
5651 else
5652 {
5653 expr1.X_add_number = 0x80000000;
67c0d1eb 5654 macro_build (&expr1, "lui", "t,u", AT, BFD_RELOC_HI16);
252b5132
RH
5655 }
5656 if (mips_trap)
5657 {
67c0d1eb 5658 macro_build (NULL, "teq", "s,t,q", sreg, AT, 6);
252b5132
RH
5659 /* We want to close the noreorder block as soon as possible, so
5660 that later insns are available for delay slot filling. */
7d10b47d 5661 end_noreorder ();
252b5132
RH
5662 }
5663 else
5664 {
5665 expr1.X_add_number = 8;
67c0d1eb 5666 macro_build (&expr1, "bne", "s,t,p", sreg, AT);
a605d2b3 5667 macro_build (NULL, "nop", "");
252b5132
RH
5668
5669 /* We want to close the noreorder block as soon as possible, so
5670 that later insns are available for delay slot filling. */
7d10b47d 5671 end_noreorder ();
252b5132 5672
67c0d1eb 5673 macro_build (NULL, "break", "c", 6);
252b5132 5674 }
67c0d1eb 5675 macro_build (NULL, s, "d", dreg);
252b5132
RH
5676 break;
5677
5678 case M_DIV_3I:
5679 s = "div";
5680 s2 = "mflo";
5681 goto do_divi;
5682 case M_DIVU_3I:
5683 s = "divu";
5684 s2 = "mflo";
5685 goto do_divi;
5686 case M_REM_3I:
5687 s = "div";
5688 s2 = "mfhi";
5689 goto do_divi;
5690 case M_REMU_3I:
5691 s = "divu";
5692 s2 = "mfhi";
5693 goto do_divi;
5694 case M_DDIV_3I:
5695 dbl = 1;
5696 s = "ddiv";
5697 s2 = "mflo";
5698 goto do_divi;
5699 case M_DDIVU_3I:
5700 dbl = 1;
5701 s = "ddivu";
5702 s2 = "mflo";
5703 goto do_divi;
5704 case M_DREM_3I:
5705 dbl = 1;
5706 s = "ddiv";
5707 s2 = "mfhi";
5708 goto do_divi;
5709 case M_DREMU_3I:
5710 dbl = 1;
5711 s = "ddivu";
5712 s2 = "mfhi";
5713 do_divi:
5714 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5715 {
5716 as_warn (_("Divide by zero."));
5717 if (mips_trap)
c80c840e 5718 macro_build (NULL, "teq", "s,t,q", ZERO, ZERO, 7);
252b5132 5719 else
67c0d1eb 5720 macro_build (NULL, "break", "c", 7);
8fc2e39e 5721 break;
252b5132
RH
5722 }
5723 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5724 {
5725 if (strcmp (s2, "mflo") == 0)
67c0d1eb 5726 move_register (dreg, sreg);
252b5132 5727 else
c80c840e 5728 move_register (dreg, ZERO);
8fc2e39e 5729 break;
252b5132
RH
5730 }
5731 if (imm_expr.X_op == O_constant
5732 && imm_expr.X_add_number == -1
5733 && s[strlen (s) - 1] != 'u')
5734 {
5735 if (strcmp (s2, "mflo") == 0)
5736 {
67c0d1eb 5737 macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
252b5132
RH
5738 }
5739 else
c80c840e 5740 move_register (dreg, ZERO);
8fc2e39e 5741 break;
252b5132
RH
5742 }
5743
8fc2e39e 5744 used_at = 1;
67c0d1eb
RS
5745 load_register (AT, &imm_expr, dbl);
5746 macro_build (NULL, s, "z,s,t", sreg, AT);
5747 macro_build (NULL, s2, "d", dreg);
252b5132
RH
5748 break;
5749
5750 case M_DIVU_3:
5751 s = "divu";
5752 s2 = "mflo";
5753 goto do_divu3;
5754 case M_REMU_3:
5755 s = "divu";
5756 s2 = "mfhi";
5757 goto do_divu3;
5758 case M_DDIVU_3:
5759 s = "ddivu";
5760 s2 = "mflo";
5761 goto do_divu3;
5762 case M_DREMU_3:
5763 s = "ddivu";
5764 s2 = "mfhi";
5765 do_divu3:
7d10b47d 5766 start_noreorder ();
252b5132
RH
5767 if (mips_trap)
5768 {
c80c840e 5769 macro_build (NULL, "teq", "s,t,q", treg, ZERO, 7);
67c0d1eb 5770 macro_build (NULL, s, "z,s,t", sreg, treg);
252b5132
RH
5771 /* We want to close the noreorder block as soon as possible, so
5772 that later insns are available for delay slot filling. */
7d10b47d 5773 end_noreorder ();
252b5132
RH
5774 }
5775 else
5776 {
5777 expr1.X_add_number = 8;
c80c840e 5778 macro_build (&expr1, "bne", "s,t,p", treg, ZERO);
67c0d1eb 5779 macro_build (NULL, s, "z,s,t", sreg, treg);
252b5132
RH
5780
5781 /* We want to close the noreorder block as soon as possible, so
5782 that later insns are available for delay slot filling. */
7d10b47d 5783 end_noreorder ();
67c0d1eb 5784 macro_build (NULL, "break", "c", 7);
252b5132 5785 }
67c0d1eb 5786 macro_build (NULL, s2, "d", dreg);
8fc2e39e 5787 break;
252b5132 5788
1abe91b1
MR
5789 case M_DLCA_AB:
5790 dbl = 1;
5791 case M_LCA_AB:
5792 call = 1;
5793 goto do_la;
252b5132
RH
5794 case M_DLA_AB:
5795 dbl = 1;
5796 case M_LA_AB:
1abe91b1 5797 do_la:
252b5132
RH
5798 /* Load the address of a symbol into a register. If breg is not
5799 zero, we then add a base register to it. */
5800
3bec30a8
TS
5801 if (dbl && HAVE_32BIT_GPRS)
5802 as_warn (_("dla used to load 32-bit register"));
5803
90ecf173 5804 if (!dbl && HAVE_64BIT_OBJECTS)
3bec30a8
TS
5805 as_warn (_("la used to load 64-bit address"));
5806
0c11417f
MR
5807 if (offset_expr.X_op == O_constant
5808 && offset_expr.X_add_number >= -0x8000
5809 && offset_expr.X_add_number < 0x8000)
5810 {
aed1a261 5811 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
17a2f251 5812 "t,r,j", treg, sreg, BFD_RELOC_LO16);
8fc2e39e 5813 break;
0c11417f
MR
5814 }
5815
741fe287 5816 if (mips_opts.at && (treg == breg))
afdbd6d0
CD
5817 {
5818 tempreg = AT;
5819 used_at = 1;
5820 }
5821 else
5822 {
5823 tempreg = treg;
afdbd6d0
CD
5824 }
5825
252b5132
RH
5826 if (offset_expr.X_op != O_symbol
5827 && offset_expr.X_op != O_constant)
5828 {
f71d0d44 5829 as_bad (_("Expression too complex"));
252b5132
RH
5830 offset_expr.X_op = O_constant;
5831 }
5832
252b5132 5833 if (offset_expr.X_op == O_constant)
aed1a261 5834 load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
252b5132
RH
5835 else if (mips_pic == NO_PIC)
5836 {
d6bc6245 5837 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 5838 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
5839 Otherwise we want
5840 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5841 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5842 If we have a constant, we need two instructions anyhow,
d6bc6245 5843 so we may as well always use the latter form.
76b3015f 5844
6caf9ef4
TS
5845 With 64bit address space and a usable $at we want
5846 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5847 lui $at,<sym> (BFD_RELOC_HI16_S)
5848 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5849 daddiu $at,<sym> (BFD_RELOC_LO16)
5850 dsll32 $tempreg,0
5851 daddu $tempreg,$tempreg,$at
5852
5853 If $at is already in use, we use a path which is suboptimal
5854 on superscalar processors.
5855 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5856 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5857 dsll $tempreg,16
5858 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5859 dsll $tempreg,16
5860 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
5861
5862 For GP relative symbols in 64bit address space we can use
5863 the same sequence as in 32bit address space. */
aed1a261 5864 if (HAVE_64BIT_SYMBOLS)
252b5132 5865 {
6caf9ef4
TS
5866 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5867 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5868 {
5869 relax_start (offset_expr.X_add_symbol);
5870 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5871 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
5872 relax_switch ();
5873 }
d6bc6245 5874
741fe287 5875 if (used_at == 0 && mips_opts.at)
98d3f06f 5876 {
67c0d1eb 5877 macro_build (&offset_expr, "lui", "t,u",
17a2f251 5878 tempreg, BFD_RELOC_MIPS_HIGHEST);
67c0d1eb 5879 macro_build (&offset_expr, "lui", "t,u",
17a2f251 5880 AT, BFD_RELOC_HI16_S);
67c0d1eb 5881 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5882 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
67c0d1eb 5883 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5884 AT, AT, BFD_RELOC_LO16);
67c0d1eb
RS
5885 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
5886 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
98d3f06f
KH
5887 used_at = 1;
5888 }
5889 else
5890 {
67c0d1eb 5891 macro_build (&offset_expr, "lui", "t,u",
17a2f251 5892 tempreg, BFD_RELOC_MIPS_HIGHEST);
67c0d1eb 5893 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5894 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
67c0d1eb
RS
5895 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5896 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5897 tempreg, tempreg, BFD_RELOC_HI16_S);
67c0d1eb
RS
5898 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5899 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5900 tempreg, tempreg, BFD_RELOC_LO16);
98d3f06f 5901 }
6caf9ef4
TS
5902
5903 if (mips_relax.sequence)
5904 relax_end ();
98d3f06f
KH
5905 }
5906 else
5907 {
5908 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 5909 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
98d3f06f 5910 {
4d7206a2 5911 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
5912 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5913 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
4d7206a2 5914 relax_switch ();
98d3f06f 5915 }
6943caf0 5916 if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
f71d0d44 5917 as_bad (_("Offset too large"));
67c0d1eb
RS
5918 macro_build_lui (&offset_expr, tempreg);
5919 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5920 tempreg, tempreg, BFD_RELOC_LO16);
4d7206a2
RS
5921 if (mips_relax.sequence)
5922 relax_end ();
98d3f06f 5923 }
252b5132 5924 }
0a44bf69 5925 else if (!mips_big_got && !HAVE_NEWABI)
252b5132 5926 {
9117d219
NC
5927 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
5928
252b5132
RH
5929 /* If this is a reference to an external symbol, and there
5930 is no constant, we want
5931 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
1abe91b1 5932 or for lca or if tempreg is PIC_CALL_REG
9117d219 5933 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
252b5132
RH
5934 For a local symbol, we want
5935 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5936 nop
5937 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5938
5939 If we have a small constant, and this is a reference to
5940 an external symbol, we want
5941 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5942 nop
5943 addiu $tempreg,$tempreg,<constant>
5944 For a local symbol, we want the same instruction
5945 sequence, but we output a BFD_RELOC_LO16 reloc on the
5946 addiu instruction.
5947
5948 If we have a large constant, and this is a reference to
5949 an external symbol, we want
5950 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5951 lui $at,<hiconstant>
5952 addiu $at,$at,<loconstant>
5953 addu $tempreg,$tempreg,$at
5954 For a local symbol, we want the same instruction
5955 sequence, but we output a BFD_RELOC_LO16 reloc on the
ed6fb7bd 5956 addiu instruction.
ed6fb7bd
SC
5957 */
5958
4d7206a2 5959 if (offset_expr.X_add_number == 0)
252b5132 5960 {
0a44bf69
RS
5961 if (mips_pic == SVR4_PIC
5962 && breg == 0
5963 && (call || tempreg == PIC_CALL_REG))
4d7206a2
RS
5964 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
5965
5966 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
5967 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5968 lw_reloc_type, mips_gp_register);
4d7206a2 5969 if (breg != 0)
252b5132
RH
5970 {
5971 /* We're going to put in an addu instruction using
5972 tempreg, so we may as well insert the nop right
5973 now. */
269137b2 5974 load_delay_nop ();
252b5132 5975 }
4d7206a2 5976 relax_switch ();
67c0d1eb
RS
5977 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5978 tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 5979 load_delay_nop ();
67c0d1eb
RS
5980 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5981 tempreg, tempreg, BFD_RELOC_LO16);
4d7206a2 5982 relax_end ();
252b5132
RH
5983 /* FIXME: If breg == 0, and the next instruction uses
5984 $tempreg, then if this variant case is used an extra
5985 nop will be generated. */
5986 }
4d7206a2
RS
5987 else if (offset_expr.X_add_number >= -0x8000
5988 && offset_expr.X_add_number < 0x8000)
252b5132 5989 {
67c0d1eb 5990 load_got_offset (tempreg, &offset_expr);
269137b2 5991 load_delay_nop ();
67c0d1eb 5992 add_got_offset (tempreg, &offset_expr);
252b5132
RH
5993 }
5994 else
5995 {
4d7206a2
RS
5996 expr1.X_add_number = offset_expr.X_add_number;
5997 offset_expr.X_add_number =
5998 ((offset_expr.X_add_number + 0x8000) & 0xffff) - 0x8000;
67c0d1eb 5999 load_got_offset (tempreg, &offset_expr);
f6a22291 6000 offset_expr.X_add_number = expr1.X_add_number;
252b5132
RH
6001 /* If we are going to add in a base register, and the
6002 target register and the base register are the same,
6003 then we are using AT as a temporary register. Since
6004 we want to load the constant into AT, we add our
6005 current AT (from the global offset table) and the
6006 register into the register now, and pretend we were
6007 not using a base register. */
67c0d1eb 6008 if (breg == treg)
252b5132 6009 {
269137b2 6010 load_delay_nop ();
67c0d1eb 6011 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6012 treg, AT, breg);
252b5132
RH
6013 breg = 0;
6014 tempreg = treg;
252b5132 6015 }
f6a22291 6016 add_got_offset_hilo (tempreg, &offset_expr, AT);
252b5132
RH
6017 used_at = 1;
6018 }
6019 }
0a44bf69 6020 else if (!mips_big_got && HAVE_NEWABI)
f5040a92 6021 {
67c0d1eb 6022 int add_breg_early = 0;
f5040a92
AO
6023
6024 /* If this is a reference to an external, and there is no
6025 constant, or local symbol (*), with or without a
6026 constant, we want
6027 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
1abe91b1 6028 or for lca or if tempreg is PIC_CALL_REG
f5040a92
AO
6029 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
6030
6031 If we have a small constant, and this is a reference to
6032 an external symbol, we want
6033 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
6034 addiu $tempreg,$tempreg,<constant>
6035
6036 If we have a large constant, and this is a reference to
6037 an external symbol, we want
6038 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
6039 lui $at,<hiconstant>
6040 addiu $at,$at,<loconstant>
6041 addu $tempreg,$tempreg,$at
6042
6043 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
6044 local symbols, even though it introduces an additional
6045 instruction. */
6046
f5040a92
AO
6047 if (offset_expr.X_add_number)
6048 {
4d7206a2 6049 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
6050 offset_expr.X_add_number = 0;
6051
4d7206a2 6052 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
6053 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6054 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
6055
6056 if (expr1.X_add_number >= -0x8000
6057 && expr1.X_add_number < 0x8000)
6058 {
67c0d1eb
RS
6059 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
6060 tempreg, tempreg, BFD_RELOC_LO16);
f5040a92 6061 }
ecd13cd3 6062 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
f5040a92 6063 {
f5040a92
AO
6064 /* If we are going to add in a base register, and the
6065 target register and the base register are the same,
6066 then we are using AT as a temporary register. Since
6067 we want to load the constant into AT, we add our
6068 current AT (from the global offset table) and the
6069 register into the register now, and pretend we were
6070 not using a base register. */
6071 if (breg != treg)
6072 dreg = tempreg;
6073 else
6074 {
9c2799c2 6075 gas_assert (tempreg == AT);
67c0d1eb
RS
6076 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6077 treg, AT, breg);
f5040a92 6078 dreg = treg;
67c0d1eb 6079 add_breg_early = 1;
f5040a92
AO
6080 }
6081
f6a22291 6082 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 6083 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6084 dreg, dreg, AT);
f5040a92 6085
f5040a92
AO
6086 used_at = 1;
6087 }
6088 else
6089 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
6090
4d7206a2 6091 relax_switch ();
f5040a92
AO
6092 offset_expr.X_add_number = expr1.X_add_number;
6093
67c0d1eb
RS
6094 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6095 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
6096 if (add_breg_early)
f5040a92 6097 {
67c0d1eb 6098 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
f899b4b8 6099 treg, tempreg, breg);
f5040a92
AO
6100 breg = 0;
6101 tempreg = treg;
6102 }
4d7206a2 6103 relax_end ();
f5040a92 6104 }
4d7206a2 6105 else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
f5040a92 6106 {
4d7206a2 6107 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
6108 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6109 BFD_RELOC_MIPS_CALL16, mips_gp_register);
4d7206a2 6110 relax_switch ();
67c0d1eb
RS
6111 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6112 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4d7206a2 6113 relax_end ();
f5040a92 6114 }
4d7206a2 6115 else
f5040a92 6116 {
67c0d1eb
RS
6117 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6118 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
6119 }
6120 }
0a44bf69 6121 else if (mips_big_got && !HAVE_NEWABI)
252b5132 6122 {
67c0d1eb 6123 int gpdelay;
9117d219
NC
6124 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
6125 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
ed6fb7bd 6126 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
252b5132
RH
6127
6128 /* This is the large GOT case. If this is a reference to an
6129 external symbol, and there is no constant, we want
6130 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6131 addu $tempreg,$tempreg,$gp
6132 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
1abe91b1 6133 or for lca or if tempreg is PIC_CALL_REG
9117d219
NC
6134 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
6135 addu $tempreg,$tempreg,$gp
6136 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
252b5132
RH
6137 For a local symbol, we want
6138 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6139 nop
6140 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6141
6142 If we have a small constant, and this is a reference to
6143 an external symbol, we want
6144 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6145 addu $tempreg,$tempreg,$gp
6146 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6147 nop
6148 addiu $tempreg,$tempreg,<constant>
6149 For a local symbol, we want
6150 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6151 nop
6152 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
6153
6154 If we have a large constant, and this is a reference to
6155 an external symbol, we want
6156 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6157 addu $tempreg,$tempreg,$gp
6158 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6159 lui $at,<hiconstant>
6160 addiu $at,$at,<loconstant>
6161 addu $tempreg,$tempreg,$at
6162 For a local symbol, we want
6163 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6164 lui $at,<hiconstant>
6165 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
6166 addu $tempreg,$tempreg,$at
f5040a92 6167 */
438c16b8 6168
252b5132
RH
6169 expr1.X_add_number = offset_expr.X_add_number;
6170 offset_expr.X_add_number = 0;
4d7206a2 6171 relax_start (offset_expr.X_add_symbol);
67c0d1eb 6172 gpdelay = reg_needs_delay (mips_gp_register);
1abe91b1
MR
6173 if (expr1.X_add_number == 0 && breg == 0
6174 && (call || tempreg == PIC_CALL_REG))
9117d219
NC
6175 {
6176 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
6177 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
6178 }
67c0d1eb
RS
6179 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
6180 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6181 tempreg, tempreg, mips_gp_register);
67c0d1eb 6182 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
17a2f251 6183 tempreg, lw_reloc_type, tempreg);
252b5132
RH
6184 if (expr1.X_add_number == 0)
6185 {
67c0d1eb 6186 if (breg != 0)
252b5132
RH
6187 {
6188 /* We're going to put in an addu instruction using
6189 tempreg, so we may as well insert the nop right
6190 now. */
269137b2 6191 load_delay_nop ();
252b5132 6192 }
252b5132
RH
6193 }
6194 else if (expr1.X_add_number >= -0x8000
6195 && expr1.X_add_number < 0x8000)
6196 {
269137b2 6197 load_delay_nop ();
67c0d1eb 6198 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 6199 tempreg, tempreg, BFD_RELOC_LO16);
252b5132
RH
6200 }
6201 else
6202 {
252b5132
RH
6203 /* If we are going to add in a base register, and the
6204 target register and the base register are the same,
6205 then we are using AT as a temporary register. Since
6206 we want to load the constant into AT, we add our
6207 current AT (from the global offset table) and the
6208 register into the register now, and pretend we were
6209 not using a base register. */
6210 if (breg != treg)
67c0d1eb 6211 dreg = tempreg;
252b5132
RH
6212 else
6213 {
9c2799c2 6214 gas_assert (tempreg == AT);
269137b2 6215 load_delay_nop ();
67c0d1eb 6216 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6217 treg, AT, breg);
252b5132 6218 dreg = treg;
252b5132
RH
6219 }
6220
f6a22291 6221 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 6222 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
252b5132 6223
252b5132
RH
6224 used_at = 1;
6225 }
4d7206a2
RS
6226 offset_expr.X_add_number =
6227 ((expr1.X_add_number + 0x8000) & 0xffff) - 0x8000;
6228 relax_switch ();
252b5132 6229
67c0d1eb 6230 if (gpdelay)
252b5132
RH
6231 {
6232 /* This is needed because this instruction uses $gp, but
f5040a92 6233 the first instruction on the main stream does not. */
67c0d1eb 6234 macro_build (NULL, "nop", "");
252b5132 6235 }
ed6fb7bd 6236
67c0d1eb
RS
6237 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6238 local_reloc_type, mips_gp_register);
f5040a92 6239 if (expr1.X_add_number >= -0x8000
252b5132
RH
6240 && expr1.X_add_number < 0x8000)
6241 {
269137b2 6242 load_delay_nop ();
67c0d1eb
RS
6243 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6244 tempreg, tempreg, BFD_RELOC_LO16);
252b5132 6245 /* FIXME: If add_number is 0, and there was no base
f5040a92
AO
6246 register, the external symbol case ended with a load,
6247 so if the symbol turns out to not be external, and
6248 the next instruction uses tempreg, an unnecessary nop
6249 will be inserted. */
252b5132
RH
6250 }
6251 else
6252 {
6253 if (breg == treg)
6254 {
6255 /* We must add in the base register now, as in the
f5040a92 6256 external symbol case. */
9c2799c2 6257 gas_assert (tempreg == AT);
269137b2 6258 load_delay_nop ();
67c0d1eb 6259 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6260 treg, AT, breg);
252b5132
RH
6261 tempreg = treg;
6262 /* We set breg to 0 because we have arranged to add
f5040a92 6263 it in in both cases. */
252b5132
RH
6264 breg = 0;
6265 }
6266
67c0d1eb
RS
6267 macro_build_lui (&expr1, AT);
6268 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 6269 AT, AT, BFD_RELOC_LO16);
67c0d1eb 6270 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6271 tempreg, tempreg, AT);
8fc2e39e 6272 used_at = 1;
252b5132 6273 }
4d7206a2 6274 relax_end ();
252b5132 6275 }
0a44bf69 6276 else if (mips_big_got && HAVE_NEWABI)
f5040a92 6277 {
f5040a92
AO
6278 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
6279 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
67c0d1eb 6280 int add_breg_early = 0;
f5040a92
AO
6281
6282 /* This is the large GOT case. If this is a reference to an
6283 external symbol, and there is no constant, we want
6284 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6285 add $tempreg,$tempreg,$gp
6286 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
1abe91b1 6287 or for lca or if tempreg is PIC_CALL_REG
f5040a92
AO
6288 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
6289 add $tempreg,$tempreg,$gp
6290 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
6291
6292 If we have a small constant, and this is a reference to
6293 an external symbol, we want
6294 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6295 add $tempreg,$tempreg,$gp
6296 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6297 addi $tempreg,$tempreg,<constant>
6298
6299 If we have a large constant, and this is a reference to
6300 an external symbol, we want
6301 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6302 addu $tempreg,$tempreg,$gp
6303 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6304 lui $at,<hiconstant>
6305 addi $at,$at,<loconstant>
6306 add $tempreg,$tempreg,$at
6307
6308 If we have NewABI, and we know it's a local symbol, we want
6309 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6310 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
6311 otherwise we have to resort to GOT_HI16/GOT_LO16. */
6312
4d7206a2 6313 relax_start (offset_expr.X_add_symbol);
f5040a92 6314
4d7206a2 6315 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
6316 offset_expr.X_add_number = 0;
6317
1abe91b1
MR
6318 if (expr1.X_add_number == 0 && breg == 0
6319 && (call || tempreg == PIC_CALL_REG))
f5040a92
AO
6320 {
6321 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
6322 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
6323 }
67c0d1eb
RS
6324 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
6325 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6326 tempreg, tempreg, mips_gp_register);
67c0d1eb
RS
6327 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6328 tempreg, lw_reloc_type, tempreg);
f5040a92
AO
6329
6330 if (expr1.X_add_number == 0)
4d7206a2 6331 ;
f5040a92
AO
6332 else if (expr1.X_add_number >= -0x8000
6333 && expr1.X_add_number < 0x8000)
6334 {
67c0d1eb 6335 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 6336 tempreg, tempreg, BFD_RELOC_LO16);
f5040a92 6337 }
ecd13cd3 6338 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
f5040a92 6339 {
f5040a92
AO
6340 /* If we are going to add in a base register, and the
6341 target register and the base register are the same,
6342 then we are using AT as a temporary register. Since
6343 we want to load the constant into AT, we add our
6344 current AT (from the global offset table) and the
6345 register into the register now, and pretend we were
6346 not using a base register. */
6347 if (breg != treg)
6348 dreg = tempreg;
6349 else
6350 {
9c2799c2 6351 gas_assert (tempreg == AT);
67c0d1eb 6352 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6353 treg, AT, breg);
f5040a92 6354 dreg = treg;
67c0d1eb 6355 add_breg_early = 1;
f5040a92
AO
6356 }
6357
f6a22291 6358 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 6359 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
f5040a92 6360
f5040a92
AO
6361 used_at = 1;
6362 }
6363 else
6364 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
6365
4d7206a2 6366 relax_switch ();
f5040a92 6367 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
6368 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6369 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6370 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6371 tempreg, BFD_RELOC_MIPS_GOT_OFST);
6372 if (add_breg_early)
f5040a92 6373 {
67c0d1eb 6374 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6375 treg, tempreg, breg);
f5040a92
AO
6376 breg = 0;
6377 tempreg = treg;
6378 }
4d7206a2 6379 relax_end ();
f5040a92 6380 }
252b5132
RH
6381 else
6382 abort ();
6383
6384 if (breg != 0)
aed1a261 6385 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", treg, tempreg, breg);
252b5132
RH
6386 break;
6387
52b6b6b9
JM
6388 case M_MSGSND:
6389 {
6390 unsigned long temp = (treg << 16) | (0x01);
6391 macro_build (NULL, "c2", "C", temp);
6392 }
c7af4273 6393 break;
52b6b6b9
JM
6394
6395 case M_MSGLD:
6396 {
6397 unsigned long temp = (0x02);
6398 macro_build (NULL, "c2", "C", temp);
6399 }
c7af4273 6400 break;
52b6b6b9
JM
6401
6402 case M_MSGLD_T:
6403 {
6404 unsigned long temp = (treg << 16) | (0x02);
6405 macro_build (NULL, "c2", "C", temp);
6406 }
c7af4273 6407 break;
52b6b6b9
JM
6408
6409 case M_MSGWAIT:
6410 macro_build (NULL, "c2", "C", 3);
c7af4273 6411 break;
52b6b6b9
JM
6412
6413 case M_MSGWAIT_T:
6414 {
6415 unsigned long temp = (treg << 16) | 0x03;
6416 macro_build (NULL, "c2", "C", temp);
6417 }
c7af4273 6418 break;
52b6b6b9 6419
252b5132
RH
6420 case M_J_A:
6421 /* The j instruction may not be used in PIC code, since it
6422 requires an absolute address. We convert it to a b
6423 instruction. */
6424 if (mips_pic == NO_PIC)
67c0d1eb 6425 macro_build (&offset_expr, "j", "a");
252b5132 6426 else
67c0d1eb 6427 macro_build (&offset_expr, "b", "p");
8fc2e39e 6428 break;
252b5132
RH
6429
6430 /* The jal instructions must be handled as macros because when
6431 generating PIC code they expand to multi-instruction
6432 sequences. Normally they are simple instructions. */
6433 case M_JAL_1:
6434 dreg = RA;
6435 /* Fall through. */
6436 case M_JAL_2:
3e722fb5 6437 if (mips_pic == NO_PIC)
67c0d1eb 6438 macro_build (NULL, "jalr", "d,s", dreg, sreg);
0a44bf69 6439 else
252b5132
RH
6440 {
6441 if (sreg != PIC_CALL_REG)
6442 as_warn (_("MIPS PIC call to register other than $25"));
bdaaa2e1 6443
67c0d1eb 6444 macro_build (NULL, "jalr", "d,s", dreg, sreg);
0a44bf69 6445 if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
252b5132 6446 {
6478892d
TS
6447 if (mips_cprestore_offset < 0)
6448 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6449 else
6450 {
90ecf173 6451 if (!mips_frame_reg_valid)
7a621144
DJ
6452 {
6453 as_warn (_("No .frame pseudo-op used in PIC code"));
6454 /* Quiet this warning. */
6455 mips_frame_reg_valid = 1;
6456 }
90ecf173 6457 if (!mips_cprestore_valid)
7a621144
DJ
6458 {
6459 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6460 /* Quiet this warning. */
6461 mips_cprestore_valid = 1;
6462 }
d3fca0b5
MR
6463 if (mips_opts.noreorder)
6464 macro_build (NULL, "nop", "");
6478892d 6465 expr1.X_add_number = mips_cprestore_offset;
67c0d1eb 6466 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
f899b4b8 6467 mips_gp_register,
256ab948
TS
6468 mips_frame_reg,
6469 HAVE_64BIT_ADDRESSES);
6478892d 6470 }
252b5132
RH
6471 }
6472 }
252b5132 6473
8fc2e39e 6474 break;
252b5132
RH
6475
6476 case M_JAL_A:
6477 if (mips_pic == NO_PIC)
67c0d1eb 6478 macro_build (&offset_expr, "jal", "a");
252b5132
RH
6479 else if (mips_pic == SVR4_PIC)
6480 {
6481 /* If this is a reference to an external symbol, and we are
6482 using a small GOT, we want
6483 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
6484 nop
f9419b05 6485 jalr $ra,$25
252b5132
RH
6486 nop
6487 lw $gp,cprestore($sp)
6488 The cprestore value is set using the .cprestore
6489 pseudo-op. If we are using a big GOT, we want
6490 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
6491 addu $25,$25,$gp
6492 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
6493 nop
f9419b05 6494 jalr $ra,$25
252b5132
RH
6495 nop
6496 lw $gp,cprestore($sp)
6497 If the symbol is not external, we want
6498 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6499 nop
6500 addiu $25,$25,<sym> (BFD_RELOC_LO16)
f9419b05 6501 jalr $ra,$25
252b5132 6502 nop
438c16b8 6503 lw $gp,cprestore($sp)
f5040a92
AO
6504
6505 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
6506 sequences above, minus nops, unless the symbol is local,
6507 which enables us to use GOT_PAGE/GOT_OFST (big got) or
6508 GOT_DISP. */
438c16b8 6509 if (HAVE_NEWABI)
252b5132 6510 {
90ecf173 6511 if (!mips_big_got)
f5040a92 6512 {
4d7206a2 6513 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
6514 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6515 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
f5040a92 6516 mips_gp_register);
4d7206a2 6517 relax_switch ();
67c0d1eb
RS
6518 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6519 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
4d7206a2
RS
6520 mips_gp_register);
6521 relax_end ();
f5040a92
AO
6522 }
6523 else
6524 {
4d7206a2 6525 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
6526 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
6527 BFD_RELOC_MIPS_CALL_HI16);
6528 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
6529 PIC_CALL_REG, mips_gp_register);
6530 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6531 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
6532 PIC_CALL_REG);
4d7206a2 6533 relax_switch ();
67c0d1eb
RS
6534 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6535 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
6536 mips_gp_register);
6537 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6538 PIC_CALL_REG, PIC_CALL_REG,
17a2f251 6539 BFD_RELOC_MIPS_GOT_OFST);
4d7206a2 6540 relax_end ();
f5040a92 6541 }
684022ea 6542
67c0d1eb 6543 macro_build_jalr (&offset_expr);
252b5132
RH
6544 }
6545 else
6546 {
4d7206a2 6547 relax_start (offset_expr.X_add_symbol);
90ecf173 6548 if (!mips_big_got)
438c16b8 6549 {
67c0d1eb
RS
6550 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6551 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
17a2f251 6552 mips_gp_register);
269137b2 6553 load_delay_nop ();
4d7206a2 6554 relax_switch ();
438c16b8 6555 }
252b5132 6556 else
252b5132 6557 {
67c0d1eb
RS
6558 int gpdelay;
6559
6560 gpdelay = reg_needs_delay (mips_gp_register);
6561 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
6562 BFD_RELOC_MIPS_CALL_HI16);
6563 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
6564 PIC_CALL_REG, mips_gp_register);
6565 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6566 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
6567 PIC_CALL_REG);
269137b2 6568 load_delay_nop ();
4d7206a2 6569 relax_switch ();
67c0d1eb
RS
6570 if (gpdelay)
6571 macro_build (NULL, "nop", "");
252b5132 6572 }
67c0d1eb
RS
6573 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6574 PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
4d7206a2 6575 mips_gp_register);
269137b2 6576 load_delay_nop ();
67c0d1eb
RS
6577 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6578 PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
4d7206a2 6579 relax_end ();
67c0d1eb 6580 macro_build_jalr (&offset_expr);
438c16b8 6581
6478892d
TS
6582 if (mips_cprestore_offset < 0)
6583 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6584 else
6585 {
90ecf173 6586 if (!mips_frame_reg_valid)
7a621144
DJ
6587 {
6588 as_warn (_("No .frame pseudo-op used in PIC code"));
6589 /* Quiet this warning. */
6590 mips_frame_reg_valid = 1;
6591 }
90ecf173 6592 if (!mips_cprestore_valid)
7a621144
DJ
6593 {
6594 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6595 /* Quiet this warning. */
6596 mips_cprestore_valid = 1;
6597 }
6478892d 6598 if (mips_opts.noreorder)
67c0d1eb 6599 macro_build (NULL, "nop", "");
6478892d 6600 expr1.X_add_number = mips_cprestore_offset;
67c0d1eb 6601 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
f899b4b8 6602 mips_gp_register,
256ab948
TS
6603 mips_frame_reg,
6604 HAVE_64BIT_ADDRESSES);
6478892d 6605 }
252b5132
RH
6606 }
6607 }
0a44bf69
RS
6608 else if (mips_pic == VXWORKS_PIC)
6609 as_bad (_("Non-PIC jump used in PIC library"));
252b5132
RH
6610 else
6611 abort ();
6612
8fc2e39e 6613 break;
252b5132
RH
6614
6615 case M_LB_AB:
6616 s = "lb";
6617 goto ld;
6618 case M_LBU_AB:
6619 s = "lbu";
6620 goto ld;
6621 case M_LH_AB:
6622 s = "lh";
6623 goto ld;
6624 case M_LHU_AB:
6625 s = "lhu";
6626 goto ld;
6627 case M_LW_AB:
6628 s = "lw";
6629 goto ld;
6630 case M_LWC0_AB:
6631 s = "lwc0";
bdaaa2e1 6632 /* Itbl support may require additional care here. */
252b5132
RH
6633 coproc = 1;
6634 goto ld;
6635 case M_LWC1_AB:
6636 s = "lwc1";
bdaaa2e1 6637 /* Itbl support may require additional care here. */
252b5132
RH
6638 coproc = 1;
6639 goto ld;
6640 case M_LWC2_AB:
6641 s = "lwc2";
bdaaa2e1 6642 /* Itbl support may require additional care here. */
252b5132
RH
6643 coproc = 1;
6644 goto ld;
6645 case M_LWC3_AB:
6646 s = "lwc3";
bdaaa2e1 6647 /* Itbl support may require additional care here. */
252b5132
RH
6648 coproc = 1;
6649 goto ld;
6650 case M_LWL_AB:
6651 s = "lwl";
6652 lr = 1;
6653 goto ld;
6654 case M_LWR_AB:
6655 s = "lwr";
6656 lr = 1;
6657 goto ld;
6658 case M_LDC1_AB:
252b5132 6659 s = "ldc1";
bdaaa2e1 6660 /* Itbl support may require additional care here. */
252b5132
RH
6661 coproc = 1;
6662 goto ld;
6663 case M_LDC2_AB:
6664 s = "ldc2";
bdaaa2e1 6665 /* Itbl support may require additional care here. */
252b5132
RH
6666 coproc = 1;
6667 goto ld;
6668 case M_LDC3_AB:
6669 s = "ldc3";
bdaaa2e1 6670 /* Itbl support may require additional care here. */
252b5132
RH
6671 coproc = 1;
6672 goto ld;
6673 case M_LDL_AB:
6674 s = "ldl";
6675 lr = 1;
6676 goto ld;
6677 case M_LDR_AB:
6678 s = "ldr";
6679 lr = 1;
6680 goto ld;
6681 case M_LL_AB:
6682 s = "ll";
6683 goto ld;
6684 case M_LLD_AB:
6685 s = "lld";
6686 goto ld;
6687 case M_LWU_AB:
6688 s = "lwu";
6689 ld:
8fc2e39e 6690 if (breg == treg || coproc || lr)
252b5132
RH
6691 {
6692 tempreg = AT;
6693 used_at = 1;
6694 }
6695 else
6696 {
6697 tempreg = treg;
252b5132
RH
6698 }
6699 goto ld_st;
6700 case M_SB_AB:
6701 s = "sb";
6702 goto st;
6703 case M_SH_AB:
6704 s = "sh";
6705 goto st;
6706 case M_SW_AB:
6707 s = "sw";
6708 goto st;
6709 case M_SWC0_AB:
6710 s = "swc0";
bdaaa2e1 6711 /* Itbl support may require additional care here. */
252b5132
RH
6712 coproc = 1;
6713 goto st;
6714 case M_SWC1_AB:
6715 s = "swc1";
bdaaa2e1 6716 /* Itbl support may require additional care here. */
252b5132
RH
6717 coproc = 1;
6718 goto st;
6719 case M_SWC2_AB:
6720 s = "swc2";
bdaaa2e1 6721 /* Itbl support may require additional care here. */
252b5132
RH
6722 coproc = 1;
6723 goto st;
6724 case M_SWC3_AB:
6725 s = "swc3";
bdaaa2e1 6726 /* Itbl support may require additional care here. */
252b5132
RH
6727 coproc = 1;
6728 goto st;
6729 case M_SWL_AB:
6730 s = "swl";
6731 goto st;
6732 case M_SWR_AB:
6733 s = "swr";
6734 goto st;
6735 case M_SC_AB:
6736 s = "sc";
6737 goto st;
6738 case M_SCD_AB:
6739 s = "scd";
6740 goto st;
d43b4baf
TS
6741 case M_CACHE_AB:
6742 s = "cache";
6743 goto st;
3eebd5eb
MR
6744 case M_PREF_AB:
6745 s = "pref";
6746 goto st;
252b5132 6747 case M_SDC1_AB:
252b5132
RH
6748 s = "sdc1";
6749 coproc = 1;
bdaaa2e1 6750 /* Itbl support may require additional care here. */
252b5132
RH
6751 goto st;
6752 case M_SDC2_AB:
6753 s = "sdc2";
bdaaa2e1 6754 /* Itbl support may require additional care here. */
252b5132
RH
6755 coproc = 1;
6756 goto st;
6757 case M_SDC3_AB:
6758 s = "sdc3";
bdaaa2e1 6759 /* Itbl support may require additional care here. */
252b5132
RH
6760 coproc = 1;
6761 goto st;
6762 case M_SDL_AB:
6763 s = "sdl";
6764 goto st;
6765 case M_SDR_AB:
6766 s = "sdr";
6767 st:
8fc2e39e
TS
6768 tempreg = AT;
6769 used_at = 1;
252b5132 6770 ld_st:
b19e8a9b
AN
6771 if (coproc
6772 && NO_ISA_COP (mips_opts.arch)
6773 && (ip->insn_mo->pinfo2 & (INSN2_M_FP_S | INSN2_M_FP_D)) == 0)
6774 {
f71d0d44 6775 as_bad (_("Opcode not supported on this processor: %s"),
b19e8a9b
AN
6776 mips_cpu_info_from_arch (mips_opts.arch)->name);
6777 break;
6778 }
6779
bdaaa2e1 6780 /* Itbl support may require additional care here. */
252b5132
RH
6781 if (mask == M_LWC1_AB
6782 || mask == M_SWC1_AB
6783 || mask == M_LDC1_AB
6784 || mask == M_SDC1_AB
6785 || mask == M_L_DAB
6786 || mask == M_S_DAB)
6787 fmt = "T,o(b)";
3eebd5eb 6788 else if (mask == M_CACHE_AB || mask == M_PREF_AB)
d43b4baf 6789 fmt = "k,o(b)";
252b5132
RH
6790 else if (coproc)
6791 fmt = "E,o(b)";
6792 else
6793 fmt = "t,o(b)";
6794
6795 if (offset_expr.X_op != O_constant
6796 && offset_expr.X_op != O_symbol)
6797 {
f71d0d44 6798 as_bad (_("Expression too complex"));
252b5132
RH
6799 offset_expr.X_op = O_constant;
6800 }
6801
2051e8c4
MR
6802 if (HAVE_32BIT_ADDRESSES
6803 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
55e08f71
NC
6804 {
6805 char value [32];
6806
6807 sprintf_vma (value, offset_expr.X_add_number);
20e1fcfd 6808 as_bad (_("Number (0x%s) larger than 32 bits"), value);
55e08f71 6809 }
2051e8c4 6810
252b5132
RH
6811 /* A constant expression in PIC code can be handled just as it
6812 is in non PIC code. */
aed1a261
RS
6813 if (offset_expr.X_op == O_constant)
6814 {
842f8b2a 6815 expr1.X_add_number = offset_expr.X_add_number;
2051e8c4 6816 normalize_address_expr (&expr1);
842f8b2a
MR
6817 if (!IS_SEXT_16BIT_NUM (expr1.X_add_number))
6818 {
6819 expr1.X_add_number = ((expr1.X_add_number + 0x8000)
6820 & ~(bfd_vma) 0xffff);
6821 load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
6822 if (breg != 0)
6823 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6824 tempreg, tempreg, breg);
6825 breg = tempreg;
6826 }
6827 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, breg);
aed1a261
RS
6828 }
6829 else if (mips_pic == NO_PIC)
252b5132
RH
6830 {
6831 /* If this is a reference to a GP relative symbol, and there
6832 is no base register, we want
cdf6fd85 6833 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
252b5132
RH
6834 Otherwise, if there is no base register, we want
6835 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
6836 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6837 If we have a constant, we need two instructions anyhow,
6838 so we always use the latter form.
6839
6840 If we have a base register, and this is a reference to a
6841 GP relative symbol, we want
6842 addu $tempreg,$breg,$gp
cdf6fd85 6843 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
252b5132
RH
6844 Otherwise we want
6845 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
6846 addu $tempreg,$tempreg,$breg
6847 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
d6bc6245 6848 With a constant we always use the latter case.
76b3015f 6849
d6bc6245
TS
6850 With 64bit address space and no base register and $at usable,
6851 we want
6852 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6853 lui $at,<sym> (BFD_RELOC_HI16_S)
6854 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6855 dsll32 $tempreg,0
6856 daddu $tempreg,$at
6857 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6858 If we have a base register, we want
6859 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6860 lui $at,<sym> (BFD_RELOC_HI16_S)
6861 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6862 daddu $at,$breg
6863 dsll32 $tempreg,0
6864 daddu $tempreg,$at
6865 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6866
6867 Without $at we can't generate the optimal path for superscalar
6868 processors here since this would require two temporary registers.
6869 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6870 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6871 dsll $tempreg,16
6872 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
6873 dsll $tempreg,16
6874 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6875 If we have a base register, we want
6876 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6877 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6878 dsll $tempreg,16
6879 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
6880 dsll $tempreg,16
6881 daddu $tempreg,$tempreg,$breg
6882 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6373ee54 6883
6caf9ef4 6884 For GP relative symbols in 64bit address space we can use
aed1a261
RS
6885 the same sequence as in 32bit address space. */
6886 if (HAVE_64BIT_SYMBOLS)
d6bc6245 6887 {
aed1a261 6888 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4
TS
6889 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
6890 {
6891 relax_start (offset_expr.X_add_symbol);
6892 if (breg == 0)
6893 {
6894 macro_build (&offset_expr, s, fmt, treg,
6895 BFD_RELOC_GPREL16, mips_gp_register);
6896 }
6897 else
6898 {
6899 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6900 tempreg, breg, mips_gp_register);
6901 macro_build (&offset_expr, s, fmt, treg,
6902 BFD_RELOC_GPREL16, tempreg);
6903 }
6904 relax_switch ();
6905 }
d6bc6245 6906
741fe287 6907 if (used_at == 0 && mips_opts.at)
d6bc6245 6908 {
67c0d1eb
RS
6909 macro_build (&offset_expr, "lui", "t,u", tempreg,
6910 BFD_RELOC_MIPS_HIGHEST);
6911 macro_build (&offset_expr, "lui", "t,u", AT,
6912 BFD_RELOC_HI16_S);
6913 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6914 tempreg, BFD_RELOC_MIPS_HIGHER);
d6bc6245 6915 if (breg != 0)
67c0d1eb
RS
6916 macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
6917 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
6918 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
6919 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16,
6920 tempreg);
d6bc6245
TS
6921 used_at = 1;
6922 }
6923 else
6924 {
67c0d1eb
RS
6925 macro_build (&offset_expr, "lui", "t,u", tempreg,
6926 BFD_RELOC_MIPS_HIGHEST);
6927 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6928 tempreg, BFD_RELOC_MIPS_HIGHER);
6929 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
6930 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6931 tempreg, BFD_RELOC_HI16_S);
6932 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
d6bc6245 6933 if (breg != 0)
67c0d1eb 6934 macro_build (NULL, "daddu", "d,v,t",
17a2f251 6935 tempreg, tempreg, breg);
67c0d1eb 6936 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6937 BFD_RELOC_LO16, tempreg);
d6bc6245 6938 }
6caf9ef4
TS
6939
6940 if (mips_relax.sequence)
6941 relax_end ();
8fc2e39e 6942 break;
d6bc6245 6943 }
256ab948 6944
252b5132
RH
6945 if (breg == 0)
6946 {
67c0d1eb 6947 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 6948 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 6949 {
4d7206a2 6950 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
6951 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16,
6952 mips_gp_register);
4d7206a2 6953 relax_switch ();
252b5132 6954 }
67c0d1eb
RS
6955 macro_build_lui (&offset_expr, tempreg);
6956 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6957 BFD_RELOC_LO16, tempreg);
4d7206a2
RS
6958 if (mips_relax.sequence)
6959 relax_end ();
252b5132
RH
6960 }
6961 else
6962 {
67c0d1eb 6963 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 6964 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 6965 {
4d7206a2 6966 relax_start (offset_expr.X_add_symbol);
67c0d1eb 6967 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6968 tempreg, breg, mips_gp_register);
67c0d1eb 6969 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6970 BFD_RELOC_GPREL16, tempreg);
4d7206a2 6971 relax_switch ();
252b5132 6972 }
67c0d1eb
RS
6973 macro_build_lui (&offset_expr, tempreg);
6974 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6975 tempreg, tempreg, breg);
67c0d1eb 6976 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6977 BFD_RELOC_LO16, tempreg);
4d7206a2
RS
6978 if (mips_relax.sequence)
6979 relax_end ();
252b5132
RH
6980 }
6981 }
0a44bf69 6982 else if (!mips_big_got)
252b5132 6983 {
ed6fb7bd 6984 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
f9419b05 6985
252b5132
RH
6986 /* If this is a reference to an external symbol, we want
6987 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6988 nop
6989 <op> $treg,0($tempreg)
6990 Otherwise we want
6991 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6992 nop
6993 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6994 <op> $treg,0($tempreg)
f5040a92
AO
6995
6996 For NewABI, we want
6997 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6998 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
6999
252b5132
RH
7000 If there is a base register, we add it to $tempreg before
7001 the <op>. If there is a constant, we stick it in the
7002 <op> instruction. We don't handle constants larger than
7003 16 bits, because we have no way to load the upper 16 bits
7004 (actually, we could handle them for the subset of cases
7005 in which we are not using $at). */
9c2799c2 7006 gas_assert (offset_expr.X_op == O_symbol);
f5040a92
AO
7007 if (HAVE_NEWABI)
7008 {
67c0d1eb
RS
7009 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7010 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
f5040a92 7011 if (breg != 0)
67c0d1eb 7012 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 7013 tempreg, tempreg, breg);
67c0d1eb 7014 macro_build (&offset_expr, s, fmt, treg,
17a2f251 7015 BFD_RELOC_MIPS_GOT_OFST, tempreg);
f5040a92
AO
7016 break;
7017 }
252b5132
RH
7018 expr1.X_add_number = offset_expr.X_add_number;
7019 offset_expr.X_add_number = 0;
7020 if (expr1.X_add_number < -0x8000
7021 || expr1.X_add_number >= 0x8000)
7022 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb
RS
7023 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7024 lw_reloc_type, mips_gp_register);
269137b2 7025 load_delay_nop ();
4d7206a2
RS
7026 relax_start (offset_expr.X_add_symbol);
7027 relax_switch ();
67c0d1eb
RS
7028 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
7029 tempreg, BFD_RELOC_LO16);
4d7206a2 7030 relax_end ();
252b5132 7031 if (breg != 0)
67c0d1eb 7032 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 7033 tempreg, tempreg, breg);
67c0d1eb 7034 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
252b5132 7035 }
0a44bf69 7036 else if (mips_big_got && !HAVE_NEWABI)
252b5132 7037 {
67c0d1eb 7038 int gpdelay;
252b5132
RH
7039
7040 /* If this is a reference to an external symbol, we want
7041 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7042 addu $tempreg,$tempreg,$gp
7043 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7044 <op> $treg,0($tempreg)
7045 Otherwise we want
7046 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7047 nop
7048 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7049 <op> $treg,0($tempreg)
7050 If there is a base register, we add it to $tempreg before
7051 the <op>. If there is a constant, we stick it in the
7052 <op> instruction. We don't handle constants larger than
7053 16 bits, because we have no way to load the upper 16 bits
7054 (actually, we could handle them for the subset of cases
f5040a92 7055 in which we are not using $at). */
9c2799c2 7056 gas_assert (offset_expr.X_op == O_symbol);
252b5132
RH
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)"));
67c0d1eb 7062 gpdelay = reg_needs_delay (mips_gp_register);
4d7206a2 7063 relax_start (offset_expr.X_add_symbol);
67c0d1eb 7064 macro_build (&offset_expr, "lui", "t,u", tempreg,
17a2f251 7065 BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
7066 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
7067 mips_gp_register);
7068 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7069 BFD_RELOC_MIPS_GOT_LO16, tempreg);
4d7206a2 7070 relax_switch ();
67c0d1eb
RS
7071 if (gpdelay)
7072 macro_build (NULL, "nop", "");
7073 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7074 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 7075 load_delay_nop ();
67c0d1eb
RS
7076 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
7077 tempreg, BFD_RELOC_LO16);
4d7206a2
RS
7078 relax_end ();
7079
252b5132 7080 if (breg != 0)
67c0d1eb 7081 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 7082 tempreg, tempreg, breg);
67c0d1eb 7083 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
252b5132 7084 }
0a44bf69 7085 else if (mips_big_got && HAVE_NEWABI)
f5040a92 7086 {
f5040a92
AO
7087 /* If this is a reference to an external symbol, we want
7088 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7089 add $tempreg,$tempreg,$gp
7090 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7091 <op> $treg,<ofst>($tempreg)
7092 Otherwise, for local symbols, we want:
7093 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
7094 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
9c2799c2 7095 gas_assert (offset_expr.X_op == O_symbol);
4d7206a2 7096 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
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)"));
4d7206a2 7101 relax_start (offset_expr.X_add_symbol);
67c0d1eb 7102 macro_build (&offset_expr, "lui", "t,u", tempreg,
17a2f251 7103 BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
7104 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
7105 mips_gp_register);
7106 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7107 BFD_RELOC_MIPS_GOT_LO16, tempreg);
f5040a92 7108 if (breg != 0)
67c0d1eb 7109 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 7110 tempreg, tempreg, breg);
67c0d1eb 7111 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
684022ea 7112
4d7206a2 7113 relax_switch ();
f5040a92 7114 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
7115 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7116 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
f5040a92 7117 if (breg != 0)
67c0d1eb 7118 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 7119 tempreg, tempreg, breg);
67c0d1eb 7120 macro_build (&offset_expr, s, fmt, treg,
17a2f251 7121 BFD_RELOC_MIPS_GOT_OFST, tempreg);
4d7206a2 7122 relax_end ();
f5040a92 7123 }
252b5132
RH
7124 else
7125 abort ();
7126
252b5132
RH
7127 break;
7128
7129 case M_LI:
7130 case M_LI_S:
67c0d1eb 7131 load_register (treg, &imm_expr, 0);
8fc2e39e 7132 break;
252b5132
RH
7133
7134 case M_DLI:
67c0d1eb 7135 load_register (treg, &imm_expr, 1);
8fc2e39e 7136 break;
252b5132
RH
7137
7138 case M_LI_SS:
7139 if (imm_expr.X_op == O_constant)
7140 {
8fc2e39e 7141 used_at = 1;
67c0d1eb
RS
7142 load_register (AT, &imm_expr, 0);
7143 macro_build (NULL, "mtc1", "t,G", AT, treg);
252b5132
RH
7144 break;
7145 }
7146 else
7147 {
9c2799c2 7148 gas_assert (offset_expr.X_op == O_symbol
90ecf173
MR
7149 && strcmp (segment_name (S_GET_SEGMENT
7150 (offset_expr.X_add_symbol)),
7151 ".lit4") == 0
7152 && offset_expr.X_add_number == 0);
67c0d1eb 7153 macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
17a2f251 7154 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
8fc2e39e 7155 break;
252b5132
RH
7156 }
7157
7158 case M_LI_D:
ca4e0257
RS
7159 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
7160 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
7161 order 32 bits of the value and the low order 32 bits are either
7162 zero or in OFFSET_EXPR. */
252b5132
RH
7163 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
7164 {
ca4e0257 7165 if (HAVE_64BIT_GPRS)
67c0d1eb 7166 load_register (treg, &imm_expr, 1);
252b5132
RH
7167 else
7168 {
7169 int hreg, lreg;
7170
7171 if (target_big_endian)
7172 {
7173 hreg = treg;
7174 lreg = treg + 1;
7175 }
7176 else
7177 {
7178 hreg = treg + 1;
7179 lreg = treg;
7180 }
7181
7182 if (hreg <= 31)
67c0d1eb 7183 load_register (hreg, &imm_expr, 0);
252b5132
RH
7184 if (lreg <= 31)
7185 {
7186 if (offset_expr.X_op == O_absent)
67c0d1eb 7187 move_register (lreg, 0);
252b5132
RH
7188 else
7189 {
9c2799c2 7190 gas_assert (offset_expr.X_op == O_constant);
67c0d1eb 7191 load_register (lreg, &offset_expr, 0);
252b5132
RH
7192 }
7193 }
7194 }
8fc2e39e 7195 break;
252b5132
RH
7196 }
7197
7198 /* We know that sym is in the .rdata section. First we get the
7199 upper 16 bits of the address. */
7200 if (mips_pic == NO_PIC)
7201 {
67c0d1eb 7202 macro_build_lui (&offset_expr, AT);
8fc2e39e 7203 used_at = 1;
252b5132 7204 }
0a44bf69 7205 else
252b5132 7206 {
67c0d1eb
RS
7207 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
7208 BFD_RELOC_MIPS_GOT16, mips_gp_register);
8fc2e39e 7209 used_at = 1;
252b5132 7210 }
bdaaa2e1 7211
252b5132 7212 /* Now we load the register(s). */
ca4e0257 7213 if (HAVE_64BIT_GPRS)
8fc2e39e
TS
7214 {
7215 used_at = 1;
7216 macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT);
7217 }
252b5132
RH
7218 else
7219 {
8fc2e39e 7220 used_at = 1;
67c0d1eb 7221 macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT);
f9419b05 7222 if (treg != RA)
252b5132
RH
7223 {
7224 /* FIXME: How in the world do we deal with the possible
7225 overflow here? */
7226 offset_expr.X_add_number += 4;
67c0d1eb 7227 macro_build (&offset_expr, "lw", "t,o(b)",
17a2f251 7228 treg + 1, BFD_RELOC_LO16, AT);
252b5132
RH
7229 }
7230 }
252b5132
RH
7231 break;
7232
7233 case M_LI_DD:
ca4e0257
RS
7234 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
7235 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
7236 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
7237 the value and the low order 32 bits are either zero or in
7238 OFFSET_EXPR. */
252b5132
RH
7239 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
7240 {
8fc2e39e 7241 used_at = 1;
67c0d1eb 7242 load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
ca4e0257
RS
7243 if (HAVE_64BIT_FPRS)
7244 {
9c2799c2 7245 gas_assert (HAVE_64BIT_GPRS);
67c0d1eb 7246 macro_build (NULL, "dmtc1", "t,S", AT, treg);
ca4e0257 7247 }
252b5132
RH
7248 else
7249 {
67c0d1eb 7250 macro_build (NULL, "mtc1", "t,G", AT, treg + 1);
252b5132 7251 if (offset_expr.X_op == O_absent)
67c0d1eb 7252 macro_build (NULL, "mtc1", "t,G", 0, treg);
252b5132
RH
7253 else
7254 {
9c2799c2 7255 gas_assert (offset_expr.X_op == O_constant);
67c0d1eb
RS
7256 load_register (AT, &offset_expr, 0);
7257 macro_build (NULL, "mtc1", "t,G", AT, treg);
252b5132
RH
7258 }
7259 }
7260 break;
7261 }
7262
9c2799c2 7263 gas_assert (offset_expr.X_op == O_symbol
90ecf173 7264 && offset_expr.X_add_number == 0);
252b5132
RH
7265 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
7266 if (strcmp (s, ".lit8") == 0)
7267 {
e7af610e 7268 if (mips_opts.isa != ISA_MIPS1)
252b5132 7269 {
67c0d1eb 7270 macro_build (&offset_expr, "ldc1", "T,o(b)", treg,
17a2f251 7271 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
8fc2e39e 7272 break;
252b5132 7273 }
c9914766 7274 breg = mips_gp_register;
252b5132
RH
7275 r = BFD_RELOC_MIPS_LITERAL;
7276 goto dob;
7277 }
7278 else
7279 {
9c2799c2 7280 gas_assert (strcmp (s, RDATA_SECTION_NAME) == 0);
8fc2e39e 7281 used_at = 1;
0a44bf69 7282 if (mips_pic != NO_PIC)
67c0d1eb
RS
7283 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
7284 BFD_RELOC_MIPS_GOT16, mips_gp_register);
252b5132
RH
7285 else
7286 {
7287 /* FIXME: This won't work for a 64 bit address. */
67c0d1eb 7288 macro_build_lui (&offset_expr, AT);
252b5132 7289 }
bdaaa2e1 7290
e7af610e 7291 if (mips_opts.isa != ISA_MIPS1)
252b5132 7292 {
67c0d1eb
RS
7293 macro_build (&offset_expr, "ldc1", "T,o(b)",
7294 treg, BFD_RELOC_LO16, AT);
252b5132
RH
7295 break;
7296 }
7297 breg = AT;
7298 r = BFD_RELOC_LO16;
7299 goto dob;
7300 }
7301
7302 case M_L_DOB:
252b5132
RH
7303 /* Even on a big endian machine $fn comes before $fn+1. We have
7304 to adjust when loading from memory. */
7305 r = BFD_RELOC_LO16;
7306 dob:
9c2799c2 7307 gas_assert (mips_opts.isa == ISA_MIPS1);
67c0d1eb 7308 macro_build (&offset_expr, "lwc1", "T,o(b)",
17a2f251 7309 target_big_endian ? treg + 1 : treg, r, breg);
252b5132
RH
7310 /* FIXME: A possible overflow which I don't know how to deal
7311 with. */
7312 offset_expr.X_add_number += 4;
67c0d1eb 7313 macro_build (&offset_expr, "lwc1", "T,o(b)",
17a2f251 7314 target_big_endian ? treg : treg + 1, r, breg);
252b5132
RH
7315 break;
7316
c4a68bea
MR
7317 case M_S_DOB:
7318 gas_assert (mips_opts.isa == ISA_MIPS1);
7319 /* Even on a big endian machine $fn comes before $fn+1. We have
7320 to adjust when storing to memory. */
7321 macro_build (&offset_expr, "swc1", "T,o(b)",
7322 target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg);
7323 offset_expr.X_add_number += 4;
7324 macro_build (&offset_expr, "swc1", "T,o(b)",
7325 target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg);
7326 break;
7327
252b5132
RH
7328 case M_L_DAB:
7329 /*
7330 * The MIPS assembler seems to check for X_add_number not
7331 * being double aligned and generating:
7332 * lui at,%hi(foo+1)
7333 * addu at,at,v1
7334 * addiu at,at,%lo(foo+1)
7335 * lwc1 f2,0(at)
7336 * lwc1 f3,4(at)
7337 * But, the resulting address is the same after relocation so why
7338 * generate the extra instruction?
7339 */
bdaaa2e1 7340 /* Itbl support may require additional care here. */
252b5132 7341 coproc = 1;
e7af610e 7342 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
7343 {
7344 s = "ldc1";
7345 goto ld;
7346 }
7347
7348 s = "lwc1";
7349 fmt = "T,o(b)";
7350 goto ldd_std;
7351
7352 case M_S_DAB:
e7af610e 7353 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
7354 {
7355 s = "sdc1";
7356 goto st;
7357 }
7358
7359 s = "swc1";
7360 fmt = "T,o(b)";
bdaaa2e1 7361 /* Itbl support may require additional care here. */
252b5132
RH
7362 coproc = 1;
7363 goto ldd_std;
7364
7365 case M_LD_AB:
ca4e0257 7366 if (HAVE_64BIT_GPRS)
252b5132
RH
7367 {
7368 s = "ld";
7369 goto ld;
7370 }
7371
7372 s = "lw";
7373 fmt = "t,o(b)";
7374 goto ldd_std;
7375
7376 case M_SD_AB:
ca4e0257 7377 if (HAVE_64BIT_GPRS)
252b5132
RH
7378 {
7379 s = "sd";
7380 goto st;
7381 }
7382
7383 s = "sw";
7384 fmt = "t,o(b)";
7385
7386 ldd_std:
7387 if (offset_expr.X_op != O_symbol
7388 && offset_expr.X_op != O_constant)
7389 {
f71d0d44 7390 as_bad (_("Expression too complex"));
252b5132
RH
7391 offset_expr.X_op = O_constant;
7392 }
7393
2051e8c4
MR
7394 if (HAVE_32BIT_ADDRESSES
7395 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
55e08f71
NC
7396 {
7397 char value [32];
7398
7399 sprintf_vma (value, offset_expr.X_add_number);
20e1fcfd 7400 as_bad (_("Number (0x%s) larger than 32 bits"), value);
55e08f71 7401 }
2051e8c4 7402
252b5132
RH
7403 /* Even on a big endian machine $fn comes before $fn+1. We have
7404 to adjust when loading from memory. We set coproc if we must
7405 load $fn+1 first. */
bdaaa2e1 7406 /* Itbl support may require additional care here. */
90ecf173 7407 if (!target_big_endian)
252b5132
RH
7408 coproc = 0;
7409
90ecf173 7410 if (mips_pic == NO_PIC || offset_expr.X_op == O_constant)
252b5132
RH
7411 {
7412 /* If this is a reference to a GP relative symbol, we want
cdf6fd85
TS
7413 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
7414 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
252b5132
RH
7415 If we have a base register, we use this
7416 addu $at,$breg,$gp
cdf6fd85
TS
7417 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
7418 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
252b5132
RH
7419 If this is not a GP relative symbol, we want
7420 lui $at,<sym> (BFD_RELOC_HI16_S)
7421 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7422 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7423 If there is a base register, we add it to $at after the
7424 lui instruction. If there is a constant, we always use
7425 the last case. */
39a59cf8
MR
7426 if (offset_expr.X_op == O_symbol
7427 && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 7428 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 7429 {
4d7206a2 7430 relax_start (offset_expr.X_add_symbol);
252b5132
RH
7431 if (breg == 0)
7432 {
c9914766 7433 tempreg = mips_gp_register;
252b5132
RH
7434 }
7435 else
7436 {
67c0d1eb 7437 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 7438 AT, breg, mips_gp_register);
252b5132 7439 tempreg = AT;
252b5132
RH
7440 used_at = 1;
7441 }
7442
beae10d5 7443 /* Itbl support may require additional care here. */
67c0d1eb 7444 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
17a2f251 7445 BFD_RELOC_GPREL16, tempreg);
252b5132
RH
7446 offset_expr.X_add_number += 4;
7447
7448 /* Set mips_optimize to 2 to avoid inserting an
7449 undesired nop. */
7450 hold_mips_optimize = mips_optimize;
7451 mips_optimize = 2;
beae10d5 7452 /* Itbl support may require additional care here. */
67c0d1eb 7453 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
17a2f251 7454 BFD_RELOC_GPREL16, tempreg);
252b5132
RH
7455 mips_optimize = hold_mips_optimize;
7456
4d7206a2 7457 relax_switch ();
252b5132 7458
0970e49e 7459 offset_expr.X_add_number -= 4;
252b5132 7460 }
8fc2e39e 7461 used_at = 1;
67c0d1eb 7462 macro_build_lui (&offset_expr, AT);
252b5132 7463 if (breg != 0)
67c0d1eb 7464 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 7465 /* Itbl support may require additional care here. */
67c0d1eb 7466 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
17a2f251 7467 BFD_RELOC_LO16, AT);
252b5132
RH
7468 /* FIXME: How do we handle overflow here? */
7469 offset_expr.X_add_number += 4;
beae10d5 7470 /* Itbl support may require additional care here. */
67c0d1eb 7471 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
17a2f251 7472 BFD_RELOC_LO16, AT);
4d7206a2
RS
7473 if (mips_relax.sequence)
7474 relax_end ();
bdaaa2e1 7475 }
0a44bf69 7476 else if (!mips_big_got)
252b5132 7477 {
252b5132
RH
7478 /* If this is a reference to an external symbol, we want
7479 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7480 nop
7481 <op> $treg,0($at)
7482 <op> $treg+1,4($at)
7483 Otherwise we want
7484 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7485 nop
7486 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7487 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7488 If there is a base register we add it to $at before the
7489 lwc1 instructions. If there is a constant we include it
7490 in the lwc1 instructions. */
7491 used_at = 1;
7492 expr1.X_add_number = offset_expr.X_add_number;
252b5132
RH
7493 if (expr1.X_add_number < -0x8000
7494 || expr1.X_add_number >= 0x8000 - 4)
7495 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb 7496 load_got_offset (AT, &offset_expr);
269137b2 7497 load_delay_nop ();
252b5132 7498 if (breg != 0)
67c0d1eb 7499 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
252b5132
RH
7500
7501 /* Set mips_optimize to 2 to avoid inserting an undesired
7502 nop. */
7503 hold_mips_optimize = mips_optimize;
7504 mips_optimize = 2;
4d7206a2 7505
beae10d5 7506 /* Itbl support may require additional care here. */
4d7206a2 7507 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
7508 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
7509 BFD_RELOC_LO16, AT);
4d7206a2 7510 expr1.X_add_number += 4;
67c0d1eb
RS
7511 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
7512 BFD_RELOC_LO16, AT);
4d7206a2 7513 relax_switch ();
67c0d1eb
RS
7514 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7515 BFD_RELOC_LO16, AT);
4d7206a2 7516 offset_expr.X_add_number += 4;
67c0d1eb
RS
7517 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7518 BFD_RELOC_LO16, AT);
4d7206a2 7519 relax_end ();
252b5132 7520
4d7206a2 7521 mips_optimize = hold_mips_optimize;
252b5132 7522 }
0a44bf69 7523 else if (mips_big_got)
252b5132 7524 {
67c0d1eb 7525 int gpdelay;
252b5132
RH
7526
7527 /* If this is a reference to an external symbol, we want
7528 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7529 addu $at,$at,$gp
7530 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
7531 nop
7532 <op> $treg,0($at)
7533 <op> $treg+1,4($at)
7534 Otherwise we want
7535 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7536 nop
7537 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7538 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7539 If there is a base register we add it to $at before the
7540 lwc1 instructions. If there is a constant we include it
7541 in the lwc1 instructions. */
7542 used_at = 1;
7543 expr1.X_add_number = offset_expr.X_add_number;
7544 offset_expr.X_add_number = 0;
7545 if (expr1.X_add_number < -0x8000
7546 || expr1.X_add_number >= 0x8000 - 4)
7547 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb 7548 gpdelay = reg_needs_delay (mips_gp_register);
4d7206a2 7549 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
7550 macro_build (&offset_expr, "lui", "t,u",
7551 AT, BFD_RELOC_MIPS_GOT_HI16);
7552 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 7553 AT, AT, mips_gp_register);
67c0d1eb 7554 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
17a2f251 7555 AT, BFD_RELOC_MIPS_GOT_LO16, AT);
269137b2 7556 load_delay_nop ();
252b5132 7557 if (breg != 0)
67c0d1eb 7558 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 7559 /* Itbl support may require additional care here. */
67c0d1eb 7560 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
17a2f251 7561 BFD_RELOC_LO16, AT);
252b5132
RH
7562 expr1.X_add_number += 4;
7563
7564 /* Set mips_optimize to 2 to avoid inserting an undesired
7565 nop. */
7566 hold_mips_optimize = mips_optimize;
7567 mips_optimize = 2;
beae10d5 7568 /* Itbl support may require additional care here. */
67c0d1eb 7569 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
17a2f251 7570 BFD_RELOC_LO16, AT);
252b5132
RH
7571 mips_optimize = hold_mips_optimize;
7572 expr1.X_add_number -= 4;
7573
4d7206a2
RS
7574 relax_switch ();
7575 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
7576 if (gpdelay)
7577 macro_build (NULL, "nop", "");
7578 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
7579 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 7580 load_delay_nop ();
252b5132 7581 if (breg != 0)
67c0d1eb 7582 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 7583 /* Itbl support may require additional care here. */
67c0d1eb
RS
7584 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7585 BFD_RELOC_LO16, AT);
4d7206a2 7586 offset_expr.X_add_number += 4;
252b5132
RH
7587
7588 /* Set mips_optimize to 2 to avoid inserting an undesired
7589 nop. */
7590 hold_mips_optimize = mips_optimize;
7591 mips_optimize = 2;
beae10d5 7592 /* Itbl support may require additional care here. */
67c0d1eb
RS
7593 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7594 BFD_RELOC_LO16, AT);
252b5132 7595 mips_optimize = hold_mips_optimize;
4d7206a2 7596 relax_end ();
252b5132 7597 }
252b5132
RH
7598 else
7599 abort ();
7600
252b5132
RH
7601 break;
7602
7603 case M_LD_OB:
704897fb 7604 s = HAVE_64BIT_GPRS ? "ld" : "lw";
252b5132
RH
7605 goto sd_ob;
7606 case M_SD_OB:
704897fb 7607 s = HAVE_64BIT_GPRS ? "sd" : "sw";
252b5132 7608 sd_ob:
4614d845
MR
7609 macro_build (&offset_expr, s, "t,o(b)", treg,
7610 -1, offset_reloc[0], offset_reloc[1], offset_reloc[2],
7611 breg);
704897fb
MR
7612 if (!HAVE_64BIT_GPRS)
7613 {
7614 offset_expr.X_add_number += 4;
7615 macro_build (&offset_expr, s, "t,o(b)", treg + 1,
4614d845
MR
7616 -1, offset_reloc[0], offset_reloc[1], offset_reloc[2],
7617 breg);
704897fb 7618 }
8fc2e39e 7619 break;
252b5132
RH
7620
7621 /* New code added to support COPZ instructions.
7622 This code builds table entries out of the macros in mip_opcodes.
7623 R4000 uses interlocks to handle coproc delays.
7624 Other chips (like the R3000) require nops to be inserted for delays.
7625
f72c8c98 7626 FIXME: Currently, we require that the user handle delays.
252b5132
RH
7627 In order to fill delay slots for non-interlocked chips,
7628 we must have a way to specify delays based on the coprocessor.
7629 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
7630 What are the side-effects of the cop instruction?
7631 What cache support might we have and what are its effects?
7632 Both coprocessor & memory require delays. how long???
bdaaa2e1 7633 What registers are read/set/modified?
252b5132
RH
7634
7635 If an itbl is provided to interpret cop instructions,
bdaaa2e1 7636 this knowledge can be encoded in the itbl spec. */
252b5132
RH
7637
7638 case M_COP0:
7639 s = "c0";
7640 goto copz;
7641 case M_COP1:
7642 s = "c1";
7643 goto copz;
7644 case M_COP2:
7645 s = "c2";
7646 goto copz;
7647 case M_COP3:
7648 s = "c3";
7649 copz:
b19e8a9b
AN
7650 if (NO_ISA_COP (mips_opts.arch)
7651 && (ip->insn_mo->pinfo2 & INSN2_M_FP_S) == 0)
7652 {
7653 as_bad (_("opcode not supported on this processor: %s"),
7654 mips_cpu_info_from_arch (mips_opts.arch)->name);
7655 break;
7656 }
7657
252b5132
RH
7658 /* For now we just do C (same as Cz). The parameter will be
7659 stored in insn_opcode by mips_ip. */
67c0d1eb 7660 macro_build (NULL, s, "C", ip->insn_opcode);
8fc2e39e 7661 break;
252b5132 7662
ea1fb5dc 7663 case M_MOVE:
67c0d1eb 7664 move_register (dreg, sreg);
8fc2e39e 7665 break;
ea1fb5dc 7666
252b5132
RH
7667 case M_DMUL:
7668 dbl = 1;
7669 case M_MUL:
67c0d1eb
RS
7670 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
7671 macro_build (NULL, "mflo", "d", dreg);
8fc2e39e 7672 break;
252b5132
RH
7673
7674 case M_DMUL_I:
7675 dbl = 1;
7676 case M_MUL_I:
7677 /* The MIPS assembler some times generates shifts and adds. I'm
7678 not trying to be that fancy. GCC should do this for us
7679 anyway. */
8fc2e39e 7680 used_at = 1;
67c0d1eb
RS
7681 load_register (AT, &imm_expr, dbl);
7682 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT);
7683 macro_build (NULL, "mflo", "d", dreg);
252b5132
RH
7684 break;
7685
7686 case M_DMULO_I:
7687 dbl = 1;
7688 case M_MULO_I:
7689 imm = 1;
7690 goto do_mulo;
7691
7692 case M_DMULO:
7693 dbl = 1;
7694 case M_MULO:
7695 do_mulo:
7d10b47d 7696 start_noreorder ();
8fc2e39e 7697 used_at = 1;
252b5132 7698 if (imm)
67c0d1eb
RS
7699 load_register (AT, &imm_expr, dbl);
7700 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
7701 macro_build (NULL, "mflo", "d", dreg);
7702 macro_build (NULL, dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA);
7703 macro_build (NULL, "mfhi", "d", AT);
252b5132 7704 if (mips_trap)
67c0d1eb 7705 macro_build (NULL, "tne", "s,t,q", dreg, AT, 6);
252b5132
RH
7706 else
7707 {
7708 expr1.X_add_number = 8;
67c0d1eb 7709 macro_build (&expr1, "beq", "s,t,p", dreg, AT);
a605d2b3 7710 macro_build (NULL, "nop", "");
67c0d1eb 7711 macro_build (NULL, "break", "c", 6);
252b5132 7712 }
7d10b47d 7713 end_noreorder ();
67c0d1eb 7714 macro_build (NULL, "mflo", "d", dreg);
252b5132
RH
7715 break;
7716
7717 case M_DMULOU_I:
7718 dbl = 1;
7719 case M_MULOU_I:
7720 imm = 1;
7721 goto do_mulou;
7722
7723 case M_DMULOU:
7724 dbl = 1;
7725 case M_MULOU:
7726 do_mulou:
7d10b47d 7727 start_noreorder ();
8fc2e39e 7728 used_at = 1;
252b5132 7729 if (imm)
67c0d1eb
RS
7730 load_register (AT, &imm_expr, dbl);
7731 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
17a2f251 7732 sreg, imm ? AT : treg);
67c0d1eb
RS
7733 macro_build (NULL, "mfhi", "d", AT);
7734 macro_build (NULL, "mflo", "d", dreg);
252b5132 7735 if (mips_trap)
c80c840e 7736 macro_build (NULL, "tne", "s,t,q", AT, ZERO, 6);
252b5132
RH
7737 else
7738 {
7739 expr1.X_add_number = 8;
c80c840e 7740 macro_build (&expr1, "beq", "s,t,p", AT, ZERO);
a605d2b3 7741 macro_build (NULL, "nop", "");
67c0d1eb 7742 macro_build (NULL, "break", "c", 6);
252b5132 7743 }
7d10b47d 7744 end_noreorder ();
252b5132
RH
7745 break;
7746
771c7ce4 7747 case M_DROL:
fef14a42 7748 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097
CD
7749 {
7750 if (dreg == sreg)
7751 {
7752 tempreg = AT;
7753 used_at = 1;
7754 }
7755 else
7756 {
7757 tempreg = dreg;
82dd0097 7758 }
67c0d1eb
RS
7759 macro_build (NULL, "dnegu", "d,w", tempreg, treg);
7760 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg);
8fc2e39e 7761 break;
82dd0097 7762 }
8fc2e39e 7763 used_at = 1;
c80c840e 7764 macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
67c0d1eb
RS
7765 macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT);
7766 macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg);
7767 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
7768 break;
7769
252b5132 7770 case M_ROL:
fef14a42 7771 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097
CD
7772 {
7773 if (dreg == sreg)
7774 {
7775 tempreg = AT;
7776 used_at = 1;
7777 }
7778 else
7779 {
7780 tempreg = dreg;
82dd0097 7781 }
67c0d1eb
RS
7782 macro_build (NULL, "negu", "d,w", tempreg, treg);
7783 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg);
8fc2e39e 7784 break;
82dd0097 7785 }
8fc2e39e 7786 used_at = 1;
c80c840e 7787 macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
67c0d1eb
RS
7788 macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT);
7789 macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg);
7790 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
252b5132
RH
7791 break;
7792
771c7ce4
TS
7793 case M_DROL_I:
7794 {
7795 unsigned int rot;
91d6fa6a
NC
7796 char *l;
7797 char *rr;
771c7ce4
TS
7798
7799 if (imm_expr.X_op != O_constant)
82dd0097 7800 as_bad (_("Improper rotate count"));
771c7ce4 7801 rot = imm_expr.X_add_number & 0x3f;
fef14a42 7802 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
60b63b72
RS
7803 {
7804 rot = (64 - rot) & 0x3f;
7805 if (rot >= 32)
67c0d1eb 7806 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
60b63b72 7807 else
67c0d1eb 7808 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
8fc2e39e 7809 break;
60b63b72 7810 }
483fc7cd 7811 if (rot == 0)
483fc7cd 7812 {
67c0d1eb 7813 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
8fc2e39e 7814 break;
483fc7cd 7815 }
82dd0097 7816 l = (rot < 0x20) ? "dsll" : "dsll32";
91d6fa6a 7817 rr = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
82dd0097 7818 rot &= 0x1f;
8fc2e39e 7819 used_at = 1;
67c0d1eb 7820 macro_build (NULL, l, "d,w,<", AT, sreg, rot);
91d6fa6a 7821 macro_build (NULL, rr, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
67c0d1eb 7822 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
7823 }
7824 break;
7825
252b5132 7826 case M_ROL_I:
771c7ce4
TS
7827 {
7828 unsigned int rot;
7829
7830 if (imm_expr.X_op != O_constant)
82dd0097 7831 as_bad (_("Improper rotate count"));
771c7ce4 7832 rot = imm_expr.X_add_number & 0x1f;
fef14a42 7833 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
60b63b72 7834 {
67c0d1eb 7835 macro_build (NULL, "ror", "d,w,<", dreg, sreg, (32 - rot) & 0x1f);
8fc2e39e 7836 break;
60b63b72 7837 }
483fc7cd 7838 if (rot == 0)
483fc7cd 7839 {
67c0d1eb 7840 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
8fc2e39e 7841 break;
483fc7cd 7842 }
8fc2e39e 7843 used_at = 1;
67c0d1eb
RS
7844 macro_build (NULL, "sll", "d,w,<", AT, sreg, rot);
7845 macro_build (NULL, "srl", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7846 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
7847 }
7848 break;
7849
7850 case M_DROR:
fef14a42 7851 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097 7852 {
67c0d1eb 7853 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg);
8fc2e39e 7854 break;
82dd0097 7855 }
8fc2e39e 7856 used_at = 1;
c80c840e 7857 macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
67c0d1eb
RS
7858 macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT);
7859 macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
7860 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
252b5132
RH
7861 break;
7862
7863 case M_ROR:
fef14a42 7864 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097 7865 {
67c0d1eb 7866 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg);
8fc2e39e 7867 break;
82dd0097 7868 }
8fc2e39e 7869 used_at = 1;
c80c840e 7870 macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
67c0d1eb
RS
7871 macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT);
7872 macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg);
7873 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
252b5132
RH
7874 break;
7875
771c7ce4
TS
7876 case M_DROR_I:
7877 {
7878 unsigned int rot;
91d6fa6a
NC
7879 char *l;
7880 char *rr;
771c7ce4
TS
7881
7882 if (imm_expr.X_op != O_constant)
82dd0097 7883 as_bad (_("Improper rotate count"));
771c7ce4 7884 rot = imm_expr.X_add_number & 0x3f;
fef14a42 7885 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097
CD
7886 {
7887 if (rot >= 32)
67c0d1eb 7888 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
82dd0097 7889 else
67c0d1eb 7890 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
8fc2e39e 7891 break;
82dd0097 7892 }
483fc7cd 7893 if (rot == 0)
483fc7cd 7894 {
67c0d1eb 7895 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
8fc2e39e 7896 break;
483fc7cd 7897 }
91d6fa6a 7898 rr = (rot < 0x20) ? "dsrl" : "dsrl32";
82dd0097
CD
7899 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
7900 rot &= 0x1f;
8fc2e39e 7901 used_at = 1;
91d6fa6a 7902 macro_build (NULL, rr, "d,w,<", AT, sreg, rot);
67c0d1eb
RS
7903 macro_build (NULL, l, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7904 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
7905 }
7906 break;
7907
252b5132 7908 case M_ROR_I:
771c7ce4
TS
7909 {
7910 unsigned int rot;
7911
7912 if (imm_expr.X_op != O_constant)
82dd0097 7913 as_bad (_("Improper rotate count"));
771c7ce4 7914 rot = imm_expr.X_add_number & 0x1f;
fef14a42 7915 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097 7916 {
67c0d1eb 7917 macro_build (NULL, "ror", "d,w,<", dreg, sreg, rot);
8fc2e39e 7918 break;
82dd0097 7919 }
483fc7cd 7920 if (rot == 0)
483fc7cd 7921 {
67c0d1eb 7922 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
8fc2e39e 7923 break;
483fc7cd 7924 }
8fc2e39e 7925 used_at = 1;
67c0d1eb
RS
7926 macro_build (NULL, "srl", "d,w,<", AT, sreg, rot);
7927 macro_build (NULL, "sll", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7928 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4 7929 }
252b5132
RH
7930 break;
7931
252b5132
RH
7932 case M_SEQ:
7933 if (sreg == 0)
67c0d1eb 7934 macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
252b5132 7935 else if (treg == 0)
67c0d1eb 7936 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
7937 else
7938 {
67c0d1eb
RS
7939 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7940 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
252b5132 7941 }
8fc2e39e 7942 break;
252b5132
RH
7943
7944 case M_SEQ_I:
7945 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7946 {
67c0d1eb 7947 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 7948 break;
252b5132
RH
7949 }
7950 if (sreg == 0)
7951 {
7952 as_warn (_("Instruction %s: result is always false"),
7953 ip->insn_mo->name);
67c0d1eb 7954 move_register (dreg, 0);
8fc2e39e 7955 break;
252b5132 7956 }
dd3cbb7e
NC
7957 if (CPU_HAS_SEQ (mips_opts.arch)
7958 && -512 <= imm_expr.X_add_number
7959 && imm_expr.X_add_number < 512)
7960 {
7961 macro_build (NULL, "seqi", "t,r,+Q", dreg, sreg,
750bdd57 7962 (int) imm_expr.X_add_number);
dd3cbb7e
NC
7963 break;
7964 }
252b5132
RH
7965 if (imm_expr.X_op == O_constant
7966 && imm_expr.X_add_number >= 0
7967 && imm_expr.X_add_number < 0x10000)
7968 {
67c0d1eb 7969 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
7970 }
7971 else if (imm_expr.X_op == O_constant
7972 && imm_expr.X_add_number > -0x8000
7973 && imm_expr.X_add_number < 0)
7974 {
7975 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 7976 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
17a2f251 7977 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132 7978 }
dd3cbb7e
NC
7979 else if (CPU_HAS_SEQ (mips_opts.arch))
7980 {
7981 used_at = 1;
7982 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7983 macro_build (NULL, "seq", "d,v,t", dreg, sreg, AT);
7984 break;
7985 }
252b5132
RH
7986 else
7987 {
67c0d1eb
RS
7988 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7989 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
252b5132
RH
7990 used_at = 1;
7991 }
67c0d1eb 7992 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 7993 break;
252b5132
RH
7994
7995 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
7996 s = "slt";
7997 goto sge;
7998 case M_SGEU:
7999 s = "sltu";
8000 sge:
67c0d1eb
RS
8001 macro_build (NULL, s, "d,v,t", dreg, sreg, treg);
8002 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 8003 break;
252b5132
RH
8004
8005 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
8006 case M_SGEU_I:
8007 if (imm_expr.X_op == O_constant
8008 && imm_expr.X_add_number >= -0x8000
8009 && imm_expr.X_add_number < 0x8000)
8010 {
67c0d1eb
RS
8011 macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
8012 dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
8013 }
8014 else
8015 {
67c0d1eb
RS
8016 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8017 macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
8018 dreg, sreg, AT);
252b5132
RH
8019 used_at = 1;
8020 }
67c0d1eb 8021 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 8022 break;
252b5132
RH
8023
8024 case M_SGT: /* sreg > treg <==> treg < sreg */
8025 s = "slt";
8026 goto sgt;
8027 case M_SGTU:
8028 s = "sltu";
8029 sgt:
67c0d1eb 8030 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
8fc2e39e 8031 break;
252b5132
RH
8032
8033 case M_SGT_I: /* sreg > I <==> I < sreg */
8034 s = "slt";
8035 goto sgti;
8036 case M_SGTU_I:
8037 s = "sltu";
8038 sgti:
8fc2e39e 8039 used_at = 1;
67c0d1eb
RS
8040 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8041 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
252b5132
RH
8042 break;
8043
2396cfb9 8044 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
252b5132
RH
8045 s = "slt";
8046 goto sle;
8047 case M_SLEU:
8048 s = "sltu";
8049 sle:
67c0d1eb
RS
8050 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
8051 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 8052 break;
252b5132 8053
2396cfb9 8054 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
252b5132
RH
8055 s = "slt";
8056 goto slei;
8057 case M_SLEU_I:
8058 s = "sltu";
8059 slei:
8fc2e39e 8060 used_at = 1;
67c0d1eb
RS
8061 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8062 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
8063 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
252b5132
RH
8064 break;
8065
8066 case M_SLT_I:
8067 if (imm_expr.X_op == O_constant
8068 && imm_expr.X_add_number >= -0x8000
8069 && imm_expr.X_add_number < 0x8000)
8070 {
67c0d1eb 8071 macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 8072 break;
252b5132 8073 }
8fc2e39e 8074 used_at = 1;
67c0d1eb
RS
8075 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8076 macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT);
252b5132
RH
8077 break;
8078
8079 case M_SLTU_I:
8080 if (imm_expr.X_op == O_constant
8081 && imm_expr.X_add_number >= -0x8000
8082 && imm_expr.X_add_number < 0x8000)
8083 {
67c0d1eb 8084 macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg,
17a2f251 8085 BFD_RELOC_LO16);
8fc2e39e 8086 break;
252b5132 8087 }
8fc2e39e 8088 used_at = 1;
67c0d1eb
RS
8089 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8090 macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT);
252b5132
RH
8091 break;
8092
8093 case M_SNE:
8094 if (sreg == 0)
67c0d1eb 8095 macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg);
252b5132 8096 else if (treg == 0)
67c0d1eb 8097 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
252b5132
RH
8098 else
8099 {
67c0d1eb
RS
8100 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
8101 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
252b5132 8102 }
8fc2e39e 8103 break;
252b5132
RH
8104
8105 case M_SNE_I:
8106 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
8107 {
67c0d1eb 8108 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
8fc2e39e 8109 break;
252b5132
RH
8110 }
8111 if (sreg == 0)
8112 {
8113 as_warn (_("Instruction %s: result is always true"),
8114 ip->insn_mo->name);
67c0d1eb
RS
8115 macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
8116 dreg, 0, BFD_RELOC_LO16);
8fc2e39e 8117 break;
252b5132 8118 }
dd3cbb7e
NC
8119 if (CPU_HAS_SEQ (mips_opts.arch)
8120 && -512 <= imm_expr.X_add_number
8121 && imm_expr.X_add_number < 512)
8122 {
8123 macro_build (NULL, "snei", "t,r,+Q", dreg, sreg,
750bdd57 8124 (int) imm_expr.X_add_number);
dd3cbb7e
NC
8125 break;
8126 }
252b5132
RH
8127 if (imm_expr.X_op == O_constant
8128 && imm_expr.X_add_number >= 0
8129 && imm_expr.X_add_number < 0x10000)
8130 {
67c0d1eb 8131 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
8132 }
8133 else if (imm_expr.X_op == O_constant
8134 && imm_expr.X_add_number > -0x8000
8135 && imm_expr.X_add_number < 0)
8136 {
8137 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 8138 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
17a2f251 8139 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132 8140 }
dd3cbb7e
NC
8141 else if (CPU_HAS_SEQ (mips_opts.arch))
8142 {
8143 used_at = 1;
8144 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8145 macro_build (NULL, "sne", "d,v,t", dreg, sreg, AT);
8146 break;
8147 }
252b5132
RH
8148 else
8149 {
67c0d1eb
RS
8150 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8151 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
252b5132
RH
8152 used_at = 1;
8153 }
67c0d1eb 8154 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
8fc2e39e 8155 break;
252b5132
RH
8156
8157 case M_DSUB_I:
8158 dbl = 1;
8159 case M_SUB_I:
8160 if (imm_expr.X_op == O_constant
8161 && imm_expr.X_add_number > -0x8000
8162 && imm_expr.X_add_number <= 0x8000)
8163 {
8164 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb
RS
8165 macro_build (&imm_expr, dbl ? "daddi" : "addi", "t,r,j",
8166 dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 8167 break;
252b5132 8168 }
8fc2e39e 8169 used_at = 1;
67c0d1eb
RS
8170 load_register (AT, &imm_expr, dbl);
8171 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
252b5132
RH
8172 break;
8173
8174 case M_DSUBU_I:
8175 dbl = 1;
8176 case M_SUBU_I:
8177 if (imm_expr.X_op == O_constant
8178 && imm_expr.X_add_number > -0x8000
8179 && imm_expr.X_add_number <= 0x8000)
8180 {
8181 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb
RS
8182 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "t,r,j",
8183 dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 8184 break;
252b5132 8185 }
8fc2e39e 8186 used_at = 1;
67c0d1eb
RS
8187 load_register (AT, &imm_expr, dbl);
8188 macro_build (NULL, dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
252b5132
RH
8189 break;
8190
8191 case M_TEQ_I:
8192 s = "teq";
8193 goto trap;
8194 case M_TGE_I:
8195 s = "tge";
8196 goto trap;
8197 case M_TGEU_I:
8198 s = "tgeu";
8199 goto trap;
8200 case M_TLT_I:
8201 s = "tlt";
8202 goto trap;
8203 case M_TLTU_I:
8204 s = "tltu";
8205 goto trap;
8206 case M_TNE_I:
8207 s = "tne";
8208 trap:
8fc2e39e 8209 used_at = 1;
67c0d1eb
RS
8210 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8211 macro_build (NULL, s, "s,t", sreg, AT);
252b5132
RH
8212 break;
8213
252b5132 8214 case M_TRUNCWS:
43841e91 8215 case M_TRUNCWD:
9c2799c2 8216 gas_assert (mips_opts.isa == ISA_MIPS1);
8fc2e39e 8217 used_at = 1;
252b5132
RH
8218 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
8219 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
8220
8221 /*
8222 * Is the double cfc1 instruction a bug in the mips assembler;
8223 * or is there a reason for it?
8224 */
7d10b47d 8225 start_noreorder ();
67c0d1eb
RS
8226 macro_build (NULL, "cfc1", "t,G", treg, RA);
8227 macro_build (NULL, "cfc1", "t,G", treg, RA);
8228 macro_build (NULL, "nop", "");
252b5132 8229 expr1.X_add_number = 3;
67c0d1eb 8230 macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16);
252b5132 8231 expr1.X_add_number = 2;
67c0d1eb
RS
8232 macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
8233 macro_build (NULL, "ctc1", "t,G", AT, RA);
8234 macro_build (NULL, "nop", "");
8235 macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
8236 dreg, sreg);
8237 macro_build (NULL, "ctc1", "t,G", treg, RA);
8238 macro_build (NULL, "nop", "");
7d10b47d 8239 end_noreorder ();
252b5132
RH
8240 break;
8241
8242 case M_ULH:
8243 s = "lb";
8244 goto ulh;
8245 case M_ULHU:
8246 s = "lbu";
8247 ulh:
8fc2e39e 8248 used_at = 1;
252b5132 8249 if (offset_expr.X_add_number >= 0x7fff)
f71d0d44 8250 as_bad (_("Operand overflow"));
90ecf173 8251 if (!target_big_endian)
f9419b05 8252 ++offset_expr.X_add_number;
67c0d1eb 8253 macro_build (&offset_expr, s, "t,o(b)", AT, BFD_RELOC_LO16, breg);
90ecf173 8254 if (!target_big_endian)
f9419b05 8255 --offset_expr.X_add_number;
252b5132 8256 else
f9419b05 8257 ++offset_expr.X_add_number;
67c0d1eb
RS
8258 macro_build (&offset_expr, "lbu", "t,o(b)", treg, BFD_RELOC_LO16, breg);
8259 macro_build (NULL, "sll", "d,w,<", AT, AT, 8);
8260 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
252b5132
RH
8261 break;
8262
8263 case M_ULD:
8264 s = "ldl";
8265 s2 = "ldr";
8266 off = 7;
8267 goto ulw;
8268 case M_ULW:
8269 s = "lwl";
8270 s2 = "lwr";
8271 off = 3;
8272 ulw:
8273 if (offset_expr.X_add_number >= 0x8000 - off)
f71d0d44 8274 as_bad (_("Operand overflow"));
af22f5b2
CD
8275 if (treg != breg)
8276 tempreg = treg;
8277 else
8fc2e39e
TS
8278 {
8279 used_at = 1;
8280 tempreg = AT;
8281 }
90ecf173 8282 if (!target_big_endian)
252b5132 8283 offset_expr.X_add_number += off;
67c0d1eb 8284 macro_build (&offset_expr, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
90ecf173 8285 if (!target_big_endian)
252b5132
RH
8286 offset_expr.X_add_number -= off;
8287 else
8288 offset_expr.X_add_number += off;
67c0d1eb 8289 macro_build (&offset_expr, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
af22f5b2 8290
90ecf173 8291 /* If necessary, move the result in tempreg to the final destination. */
af22f5b2 8292 if (treg == tempreg)
8fc2e39e 8293 break;
af22f5b2 8294 /* Protect second load's delay slot. */
017315e4 8295 load_delay_nop ();
67c0d1eb 8296 move_register (treg, tempreg);
af22f5b2 8297 break;
252b5132
RH
8298
8299 case M_ULD_A:
8300 s = "ldl";
8301 s2 = "ldr";
8302 off = 7;
8303 goto ulwa;
8304 case M_ULW_A:
8305 s = "lwl";
8306 s2 = "lwr";
8307 off = 3;
8308 ulwa:
d6bc6245 8309 used_at = 1;
67c0d1eb 8310 load_address (AT, &offset_expr, &used_at);
252b5132 8311 if (breg != 0)
67c0d1eb 8312 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
90ecf173 8313 if (!target_big_endian)
252b5132
RH
8314 expr1.X_add_number = off;
8315 else
8316 expr1.X_add_number = 0;
67c0d1eb 8317 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
90ecf173 8318 if (!target_big_endian)
252b5132
RH
8319 expr1.X_add_number = 0;
8320 else
8321 expr1.X_add_number = off;
67c0d1eb 8322 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
8323 break;
8324
8325 case M_ULH_A:
8326 case M_ULHU_A:
d6bc6245 8327 used_at = 1;
67c0d1eb 8328 load_address (AT, &offset_expr, &used_at);
252b5132 8329 if (breg != 0)
67c0d1eb 8330 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
252b5132
RH
8331 if (target_big_endian)
8332 expr1.X_add_number = 0;
67c0d1eb 8333 macro_build (&expr1, mask == M_ULH_A ? "lb" : "lbu", "t,o(b)",
17a2f251 8334 treg, BFD_RELOC_LO16, AT);
252b5132
RH
8335 if (target_big_endian)
8336 expr1.X_add_number = 1;
8337 else
8338 expr1.X_add_number = 0;
67c0d1eb
RS
8339 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
8340 macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
8341 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
252b5132
RH
8342 break;
8343
8344 case M_USH:
8fc2e39e 8345 used_at = 1;
252b5132 8346 if (offset_expr.X_add_number >= 0x7fff)
f71d0d44 8347 as_bad (_("Operand overflow"));
252b5132 8348 if (target_big_endian)
f9419b05 8349 ++offset_expr.X_add_number;
67c0d1eb
RS
8350 macro_build (&offset_expr, "sb", "t,o(b)", treg, BFD_RELOC_LO16, breg);
8351 macro_build (NULL, "srl", "d,w,<", AT, treg, 8);
252b5132 8352 if (target_big_endian)
f9419b05 8353 --offset_expr.X_add_number;
252b5132 8354 else
f9419b05 8355 ++offset_expr.X_add_number;
67c0d1eb 8356 macro_build (&offset_expr, "sb", "t,o(b)", AT, BFD_RELOC_LO16, breg);
252b5132
RH
8357 break;
8358
8359 case M_USD:
8360 s = "sdl";
8361 s2 = "sdr";
8362 off = 7;
8363 goto usw;
8364 case M_USW:
8365 s = "swl";
8366 s2 = "swr";
8367 off = 3;
8368 usw:
8369 if (offset_expr.X_add_number >= 0x8000 - off)
f71d0d44 8370 as_bad (_("Operand overflow"));
90ecf173 8371 if (!target_big_endian)
252b5132 8372 offset_expr.X_add_number += off;
67c0d1eb 8373 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
90ecf173 8374 if (!target_big_endian)
252b5132
RH
8375 offset_expr.X_add_number -= off;
8376 else
8377 offset_expr.X_add_number += off;
67c0d1eb 8378 macro_build (&offset_expr, s2, "t,o(b)", treg, BFD_RELOC_LO16, breg);
8fc2e39e 8379 break;
252b5132
RH
8380
8381 case M_USD_A:
8382 s = "sdl";
8383 s2 = "sdr";
8384 off = 7;
8385 goto uswa;
8386 case M_USW_A:
8387 s = "swl";
8388 s2 = "swr";
8389 off = 3;
8390 uswa:
d6bc6245 8391 used_at = 1;
67c0d1eb 8392 load_address (AT, &offset_expr, &used_at);
252b5132 8393 if (breg != 0)
67c0d1eb 8394 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
90ecf173 8395 if (!target_big_endian)
252b5132
RH
8396 expr1.X_add_number = off;
8397 else
8398 expr1.X_add_number = 0;
67c0d1eb 8399 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
90ecf173 8400 if (!target_big_endian)
252b5132
RH
8401 expr1.X_add_number = 0;
8402 else
8403 expr1.X_add_number = off;
67c0d1eb 8404 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
8405 break;
8406
8407 case M_USH_A:
d6bc6245 8408 used_at = 1;
67c0d1eb 8409 load_address (AT, &offset_expr, &used_at);
252b5132 8410 if (breg != 0)
67c0d1eb 8411 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
90ecf173 8412 if (!target_big_endian)
252b5132 8413 expr1.X_add_number = 0;
67c0d1eb
RS
8414 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
8415 macro_build (NULL, "srl", "d,w,<", treg, treg, 8);
90ecf173 8416 if (!target_big_endian)
252b5132
RH
8417 expr1.X_add_number = 1;
8418 else
8419 expr1.X_add_number = 0;
67c0d1eb 8420 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
90ecf173 8421 if (!target_big_endian)
252b5132
RH
8422 expr1.X_add_number = 0;
8423 else
8424 expr1.X_add_number = 1;
67c0d1eb
RS
8425 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
8426 macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
8427 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
252b5132
RH
8428 break;
8429
8430 default:
8431 /* FIXME: Check if this is one of the itbl macros, since they
bdaaa2e1 8432 are added dynamically. */
252b5132
RH
8433 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
8434 break;
8435 }
741fe287 8436 if (!mips_opts.at && used_at)
8fc2e39e 8437 as_bad (_("Macro used $at after \".set noat\""));
252b5132
RH
8438}
8439
8440/* Implement macros in mips16 mode. */
8441
8442static void
17a2f251 8443mips16_macro (struct mips_cl_insn *ip)
252b5132
RH
8444{
8445 int mask;
8446 int xreg, yreg, zreg, tmp;
252b5132
RH
8447 expressionS expr1;
8448 int dbl;
8449 const char *s, *s2, *s3;
8450
8451 mask = ip->insn_mo->mask;
8452
bf12938e
RS
8453 xreg = MIPS16_EXTRACT_OPERAND (RX, *ip);
8454 yreg = MIPS16_EXTRACT_OPERAND (RY, *ip);
8455 zreg = MIPS16_EXTRACT_OPERAND (RZ, *ip);
252b5132 8456
252b5132
RH
8457 expr1.X_op = O_constant;
8458 expr1.X_op_symbol = NULL;
8459 expr1.X_add_symbol = NULL;
8460 expr1.X_add_number = 1;
8461
8462 dbl = 0;
8463
8464 switch (mask)
8465 {
8466 default:
8467 internalError ();
8468
8469 case M_DDIV_3:
8470 dbl = 1;
8471 case M_DIV_3:
8472 s = "mflo";
8473 goto do_div3;
8474 case M_DREM_3:
8475 dbl = 1;
8476 case M_REM_3:
8477 s = "mfhi";
8478 do_div3:
7d10b47d 8479 start_noreorder ();
67c0d1eb 8480 macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg);
252b5132 8481 expr1.X_add_number = 2;
67c0d1eb
RS
8482 macro_build (&expr1, "bnez", "x,p", yreg);
8483 macro_build (NULL, "break", "6", 7);
bdaaa2e1 8484
252b5132
RH
8485 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
8486 since that causes an overflow. We should do that as well,
8487 but I don't see how to do the comparisons without a temporary
8488 register. */
7d10b47d 8489 end_noreorder ();
67c0d1eb 8490 macro_build (NULL, s, "x", zreg);
252b5132
RH
8491 break;
8492
8493 case M_DIVU_3:
8494 s = "divu";
8495 s2 = "mflo";
8496 goto do_divu3;
8497 case M_REMU_3:
8498 s = "divu";
8499 s2 = "mfhi";
8500 goto do_divu3;
8501 case M_DDIVU_3:
8502 s = "ddivu";
8503 s2 = "mflo";
8504 goto do_divu3;
8505 case M_DREMU_3:
8506 s = "ddivu";
8507 s2 = "mfhi";
8508 do_divu3:
7d10b47d 8509 start_noreorder ();
67c0d1eb 8510 macro_build (NULL, s, "0,x,y", xreg, yreg);
252b5132 8511 expr1.X_add_number = 2;
67c0d1eb
RS
8512 macro_build (&expr1, "bnez", "x,p", yreg);
8513 macro_build (NULL, "break", "6", 7);
7d10b47d 8514 end_noreorder ();
67c0d1eb 8515 macro_build (NULL, s2, "x", zreg);
252b5132
RH
8516 break;
8517
8518 case M_DMUL:
8519 dbl = 1;
8520 case M_MUL:
67c0d1eb
RS
8521 macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
8522 macro_build (NULL, "mflo", "x", zreg);
8fc2e39e 8523 break;
252b5132
RH
8524
8525 case M_DSUBU_I:
8526 dbl = 1;
8527 goto do_subu;
8528 case M_SUBU_I:
8529 do_subu:
8530 if (imm_expr.X_op != O_constant)
8531 as_bad (_("Unsupported large constant"));
8532 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 8533 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
252b5132
RH
8534 break;
8535
8536 case M_SUBU_I_2:
8537 if (imm_expr.X_op != O_constant)
8538 as_bad (_("Unsupported large constant"));
8539 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 8540 macro_build (&imm_expr, "addiu", "x,k", xreg);
252b5132
RH
8541 break;
8542
8543 case M_DSUBU_I_2:
8544 if (imm_expr.X_op != O_constant)
8545 as_bad (_("Unsupported large constant"));
8546 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 8547 macro_build (&imm_expr, "daddiu", "y,j", yreg);
252b5132
RH
8548 break;
8549
8550 case M_BEQ:
8551 s = "cmp";
8552 s2 = "bteqz";
8553 goto do_branch;
8554 case M_BNE:
8555 s = "cmp";
8556 s2 = "btnez";
8557 goto do_branch;
8558 case M_BLT:
8559 s = "slt";
8560 s2 = "btnez";
8561 goto do_branch;
8562 case M_BLTU:
8563 s = "sltu";
8564 s2 = "btnez";
8565 goto do_branch;
8566 case M_BLE:
8567 s = "slt";
8568 s2 = "bteqz";
8569 goto do_reverse_branch;
8570 case M_BLEU:
8571 s = "sltu";
8572 s2 = "bteqz";
8573 goto do_reverse_branch;
8574 case M_BGE:
8575 s = "slt";
8576 s2 = "bteqz";
8577 goto do_branch;
8578 case M_BGEU:
8579 s = "sltu";
8580 s2 = "bteqz";
8581 goto do_branch;
8582 case M_BGT:
8583 s = "slt";
8584 s2 = "btnez";
8585 goto do_reverse_branch;
8586 case M_BGTU:
8587 s = "sltu";
8588 s2 = "btnez";
8589
8590 do_reverse_branch:
8591 tmp = xreg;
8592 xreg = yreg;
8593 yreg = tmp;
8594
8595 do_branch:
67c0d1eb
RS
8596 macro_build (NULL, s, "x,y", xreg, yreg);
8597 macro_build (&offset_expr, s2, "p");
252b5132
RH
8598 break;
8599
8600 case M_BEQ_I:
8601 s = "cmpi";
8602 s2 = "bteqz";
8603 s3 = "x,U";
8604 goto do_branch_i;
8605 case M_BNE_I:
8606 s = "cmpi";
8607 s2 = "btnez";
8608 s3 = "x,U";
8609 goto do_branch_i;
8610 case M_BLT_I:
8611 s = "slti";
8612 s2 = "btnez";
8613 s3 = "x,8";
8614 goto do_branch_i;
8615 case M_BLTU_I:
8616 s = "sltiu";
8617 s2 = "btnez";
8618 s3 = "x,8";
8619 goto do_branch_i;
8620 case M_BLE_I:
8621 s = "slti";
8622 s2 = "btnez";
8623 s3 = "x,8";
8624 goto do_addone_branch_i;
8625 case M_BLEU_I:
8626 s = "sltiu";
8627 s2 = "btnez";
8628 s3 = "x,8";
8629 goto do_addone_branch_i;
8630 case M_BGE_I:
8631 s = "slti";
8632 s2 = "bteqz";
8633 s3 = "x,8";
8634 goto do_branch_i;
8635 case M_BGEU_I:
8636 s = "sltiu";
8637 s2 = "bteqz";
8638 s3 = "x,8";
8639 goto do_branch_i;
8640 case M_BGT_I:
8641 s = "slti";
8642 s2 = "bteqz";
8643 s3 = "x,8";
8644 goto do_addone_branch_i;
8645 case M_BGTU_I:
8646 s = "sltiu";
8647 s2 = "bteqz";
8648 s3 = "x,8";
8649
8650 do_addone_branch_i:
8651 if (imm_expr.X_op != O_constant)
8652 as_bad (_("Unsupported large constant"));
8653 ++imm_expr.X_add_number;
8654
8655 do_branch_i:
67c0d1eb
RS
8656 macro_build (&imm_expr, s, s3, xreg);
8657 macro_build (&offset_expr, s2, "p");
252b5132
RH
8658 break;
8659
8660 case M_ABS:
8661 expr1.X_add_number = 0;
67c0d1eb 8662 macro_build (&expr1, "slti", "x,8", yreg);
252b5132 8663 if (xreg != yreg)
67c0d1eb 8664 move_register (xreg, yreg);
252b5132 8665 expr1.X_add_number = 2;
67c0d1eb
RS
8666 macro_build (&expr1, "bteqz", "p");
8667 macro_build (NULL, "neg", "x,w", xreg, xreg);
252b5132
RH
8668 }
8669}
8670
8671/* For consistency checking, verify that all bits are specified either
8672 by the match/mask part of the instruction definition, or by the
8673 operand list. */
8674static int
17a2f251 8675validate_mips_insn (const struct mips_opcode *opc)
252b5132
RH
8676{
8677 const char *p = opc->args;
8678 char c;
8679 unsigned long used_bits = opc->mask;
8680
8681 if ((used_bits & opc->match) != opc->match)
8682 {
8683 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
8684 opc->name, opc->args);
8685 return 0;
8686 }
8687#define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
8688 while (*p)
8689 switch (c = *p++)
8690 {
8691 case ',': break;
8692 case '(': break;
8693 case ')': break;
af7ee8bf
CD
8694 case '+':
8695 switch (c = *p++)
8696 {
9bcd4f99
TS
8697 case '1': USE_BITS (OP_MASK_UDI1, OP_SH_UDI1); break;
8698 case '2': USE_BITS (OP_MASK_UDI2, OP_SH_UDI2); break;
8699 case '3': USE_BITS (OP_MASK_UDI3, OP_SH_UDI3); break;
8700 case '4': USE_BITS (OP_MASK_UDI4, OP_SH_UDI4); break;
af7ee8bf
CD
8701 case 'A': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8702 case 'B': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
8703 case 'C': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
bbcc0807
CD
8704 case 'D': USE_BITS (OP_MASK_RD, OP_SH_RD);
8705 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
5f74bc13
CD
8706 case 'E': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8707 case 'F': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
8708 case 'G': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
8709 case 'H': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
8710 case 'I': break;
ef2e4d86
CF
8711 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8712 case 'T': USE_BITS (OP_MASK_RT, OP_SH_RT);
8713 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
bb35fb24
NC
8714 case 'x': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
8715 case 'X': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
8716 case 'p': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
8717 case 'P': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
dd3cbb7e 8718 case 'Q': USE_BITS (OP_MASK_SEQI, OP_SH_SEQI); break;
bb35fb24
NC
8719 case 's': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
8720 case 'S': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
98675402
RS
8721 case 'z': USE_BITS (OP_MASK_RZ, OP_SH_RZ); break;
8722 case 'Z': USE_BITS (OP_MASK_FZ, OP_SH_FZ); break;
8723 case 'a': USE_BITS (OP_MASK_OFFSET_A, OP_SH_OFFSET_A); break;
8724 case 'b': USE_BITS (OP_MASK_OFFSET_B, OP_SH_OFFSET_B); break;
8725 case 'c': USE_BITS (OP_MASK_OFFSET_C, OP_SH_OFFSET_C); break;
bb35fb24 8726
af7ee8bf
CD
8727 default:
8728 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
8729 c, opc->name, opc->args);
8730 return 0;
8731 }
8732 break;
252b5132
RH
8733 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8734 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8735 case 'A': break;
4372b673 8736 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
252b5132
RH
8737 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
8738 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
8739 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8740 case 'F': break;
8741 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
156c2f8b 8742 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
252b5132 8743 case 'I': break;
e972090a 8744 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
af7ee8bf 8745 case 'K': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
252b5132
RH
8746 case 'L': break;
8747 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
8748 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
deec1734
CD
8749 case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break;
8750 case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL);
8751 USE_BITS (OP_MASK_FT, OP_SH_FT); break;
252b5132
RH
8752 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
8753 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
8754 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
8755 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
8756 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
deec1734
CD
8757 case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
8758 case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
8759 case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
252b5132
RH
8760 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
8761 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8762 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
8763 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
8764 case 'f': break;
8765 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
8766 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
8767 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
8768 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
8769 case 'l': break;
8770 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
8771 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
8772 case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break;
8773 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8774 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8775 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8776 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
8777 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8778 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8779 case 'x': break;
8780 case 'z': break;
8781 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
4372b673
NC
8782 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
8783 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
60b63b72
RS
8784 case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break;
8785 case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break;
8786 case '[': break;
8787 case ']': break;
620edafd 8788 case '1': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8b082fb1 8789 case '2': USE_BITS (OP_MASK_BP, OP_SH_BP); break;
74cd071d
CF
8790 case '3': USE_BITS (OP_MASK_SA3, OP_SH_SA3); break;
8791 case '4': USE_BITS (OP_MASK_SA4, OP_SH_SA4); break;
8792 case '5': USE_BITS (OP_MASK_IMM8, OP_SH_IMM8); break;
8793 case '6': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8794 case '7': USE_BITS (OP_MASK_DSPACC, OP_SH_DSPACC); break;
8795 case '8': USE_BITS (OP_MASK_WRDSP, OP_SH_WRDSP); break;
8796 case '9': USE_BITS (OP_MASK_DSPACC_S, OP_SH_DSPACC_S);break;
8797 case '0': USE_BITS (OP_MASK_DSPSFT, OP_SH_DSPSFT); break;
8798 case '\'': USE_BITS (OP_MASK_RDDSP, OP_SH_RDDSP); break;
8799 case ':': USE_BITS (OP_MASK_DSPSFT_7, OP_SH_DSPSFT_7);break;
8800 case '@': USE_BITS (OP_MASK_IMM10, OP_SH_IMM10); break;
ef2e4d86
CF
8801 case '!': USE_BITS (OP_MASK_MT_U, OP_SH_MT_U); break;
8802 case '$': USE_BITS (OP_MASK_MT_H, OP_SH_MT_H); break;
8803 case '*': USE_BITS (OP_MASK_MTACC_T, OP_SH_MTACC_T); break;
8804 case '&': USE_BITS (OP_MASK_MTACC_D, OP_SH_MTACC_D); break;
8805 case 'g': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
252b5132
RH
8806 default:
8807 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
8808 c, opc->name, opc->args);
8809 return 0;
8810 }
8811#undef USE_BITS
8812 if (used_bits != 0xffffffff)
8813 {
8814 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
8815 ~used_bits & 0xffffffff, opc->name, opc->args);
8816 return 0;
8817 }
8818 return 1;
8819}
8820
9bcd4f99
TS
8821/* UDI immediates. */
8822struct mips_immed {
8823 char type;
8824 unsigned int shift;
8825 unsigned long mask;
8826 const char * desc;
8827};
8828
8829static const struct mips_immed mips_immed[] = {
8830 { '1', OP_SH_UDI1, OP_MASK_UDI1, 0},
8831 { '2', OP_SH_UDI2, OP_MASK_UDI2, 0},
8832 { '3', OP_SH_UDI3, OP_MASK_UDI3, 0},
8833 { '4', OP_SH_UDI4, OP_MASK_UDI4, 0},
8834 { 0,0,0,0 }
8835};
8836
7455baf8
TS
8837/* Check whether an odd floating-point register is allowed. */
8838static int
8839mips_oddfpreg_ok (const struct mips_opcode *insn, int argnum)
8840{
8841 const char *s = insn->name;
8842
8843 if (insn->pinfo == INSN_MACRO)
8844 /* Let a macro pass, we'll catch it later when it is expanded. */
8845 return 1;
8846
8847 if (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa))
8848 {
8849 /* Allow odd registers for single-precision ops. */
8850 switch (insn->pinfo & (FP_S | FP_D))
8851 {
8852 case FP_S:
8853 case 0:
8854 return 1; /* both single precision - ok */
8855 case FP_D:
8856 return 0; /* both double precision - fail */
8857 default:
8858 break;
8859 }
8860
8861 /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand. */
8862 s = strchr (insn->name, '.');
8863 if (argnum == 2)
8864 s = s != NULL ? strchr (s + 1, '.') : NULL;
8865 return (s != NULL && (s[1] == 'w' || s[1] == 's'));
8866 }
8867
8868 /* Single-precision coprocessor loads and moves are OK too. */
8869 if ((insn->pinfo & FP_S)
8870 && (insn->pinfo & (INSN_COPROC_MEMORY_DELAY | INSN_STORE_MEMORY
8871 | INSN_LOAD_COPROC_DELAY | INSN_COPROC_MOVE_DELAY)))
8872 return 1;
8873
8874 return 0;
8875}
8876
252b5132
RH
8877/* This routine assembles an instruction into its binary format. As a
8878 side effect, it sets one of the global variables imm_reloc or
8879 offset_reloc to the type of relocation to do if one of the operands
8880 is an address expression. */
8881
8882static void
17a2f251 8883mips_ip (char *str, struct mips_cl_insn *ip)
252b5132
RH
8884{
8885 char *s;
8886 const char *args;
43841e91 8887 char c = 0;
252b5132
RH
8888 struct mips_opcode *insn;
8889 char *argsStart;
8890 unsigned int regno;
34224acf 8891 unsigned int lastregno;
af7ee8bf 8892 unsigned int lastpos = 0;
071742cf 8893 unsigned int limlo, limhi;
252b5132
RH
8894 char *s_reset;
8895 char save_c = 0;
74cd071d 8896 offsetT min_range, max_range;
707bfff6
TS
8897 int argnum;
8898 unsigned int rtype;
252b5132
RH
8899
8900 insn_error = NULL;
8901
8902 /* If the instruction contains a '.', we first try to match an instruction
8903 including the '.'. Then we try again without the '.'. */
8904 insn = NULL;
3882b010 8905 for (s = str; *s != '\0' && !ISSPACE (*s); ++s)
252b5132
RH
8906 continue;
8907
8908 /* If we stopped on whitespace, then replace the whitespace with null for
8909 the call to hash_find. Save the character we replaced just in case we
8910 have to re-parse the instruction. */
3882b010 8911 if (ISSPACE (*s))
252b5132
RH
8912 {
8913 save_c = *s;
8914 *s++ = '\0';
8915 }
bdaaa2e1 8916
252b5132
RH
8917 insn = (struct mips_opcode *) hash_find (op_hash, str);
8918
8919 /* If we didn't find the instruction in the opcode table, try again, but
8920 this time with just the instruction up to, but not including the
8921 first '.'. */
8922 if (insn == NULL)
8923 {
bdaaa2e1 8924 /* Restore the character we overwrite above (if any). */
252b5132
RH
8925 if (save_c)
8926 *(--s) = save_c;
8927
8928 /* Scan up to the first '.' or whitespace. */
3882b010
L
8929 for (s = str;
8930 *s != '\0' && *s != '.' && !ISSPACE (*s);
8931 ++s)
252b5132
RH
8932 continue;
8933
8934 /* If we did not find a '.', then we can quit now. */
8935 if (*s != '.')
8936 {
f71d0d44 8937 insn_error = _("Unrecognized opcode");
252b5132
RH
8938 return;
8939 }
8940
8941 /* Lookup the instruction in the hash table. */
8942 *s++ = '\0';
8943 if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL)
8944 {
f71d0d44 8945 insn_error = _("Unrecognized opcode");
252b5132
RH
8946 return;
8947 }
252b5132
RH
8948 }
8949
8950 argsStart = s;
8951 for (;;)
8952 {
b34976b6 8953 bfd_boolean ok;
252b5132 8954
9c2799c2 8955 gas_assert (strcmp (insn->name, str) == 0);
252b5132 8956
f79e2745 8957 ok = is_opcode_valid (insn);
252b5132
RH
8958 if (! ok)
8959 {
8960 if (insn + 1 < &mips_opcodes[NUMOPCODES]
8961 && strcmp (insn->name, insn[1].name) == 0)
8962 {
8963 ++insn;
8964 continue;
8965 }
252b5132 8966 else
beae10d5 8967 {
268f6bed
L
8968 if (!insn_error)
8969 {
8970 static char buf[100];
fef14a42
TS
8971 sprintf (buf,
8972 _("opcode not supported on this processor: %s (%s)"),
8973 mips_cpu_info_from_arch (mips_opts.arch)->name,
8974 mips_cpu_info_from_isa (mips_opts.isa)->name);
268f6bed
L
8975 insn_error = buf;
8976 }
8977 if (save_c)
8978 *(--s) = save_c;
2bd7f1f3 8979 return;
252b5132 8980 }
252b5132
RH
8981 }
8982
1e915849 8983 create_insn (ip, insn);
268f6bed 8984 insn_error = NULL;
707bfff6 8985 argnum = 1;
24864476 8986 lastregno = 0xffffffff;
252b5132
RH
8987 for (args = insn->args;; ++args)
8988 {
deec1734
CD
8989 int is_mdmx;
8990
ad8d3bb3 8991 s += strspn (s, " \t");
deec1734 8992 is_mdmx = 0;
252b5132
RH
8993 switch (*args)
8994 {
8995 case '\0': /* end of args */
8996 if (*s == '\0')
8997 return;
8998 break;
8999
90ecf173 9000 case '2': /* DSP 2-bit unsigned immediate in bit 11. */
8b082fb1
TS
9001 my_getExpression (&imm_expr, s);
9002 check_absolute_expr (ip, &imm_expr);
9003 if ((unsigned long) imm_expr.X_add_number != 1
9004 && (unsigned long) imm_expr.X_add_number != 3)
9005 {
9006 as_bad (_("BALIGN immediate not 1 or 3 (%lu)"),
9007 (unsigned long) imm_expr.X_add_number);
9008 }
9009 INSERT_OPERAND (BP, *ip, imm_expr.X_add_number);
9010 imm_expr.X_op = O_absent;
9011 s = expr_end;
9012 continue;
9013
90ecf173 9014 case '3': /* DSP 3-bit unsigned immediate in bit 21. */
74cd071d
CF
9015 my_getExpression (&imm_expr, s);
9016 check_absolute_expr (ip, &imm_expr);
9017 if (imm_expr.X_add_number & ~OP_MASK_SA3)
9018 {
a9e24354
TS
9019 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9020 OP_MASK_SA3, (unsigned long) imm_expr.X_add_number);
74cd071d 9021 }
a9e24354 9022 INSERT_OPERAND (SA3, *ip, imm_expr.X_add_number);
74cd071d
CF
9023 imm_expr.X_op = O_absent;
9024 s = expr_end;
9025 continue;
9026
90ecf173 9027 case '4': /* DSP 4-bit unsigned immediate in bit 21. */
74cd071d
CF
9028 my_getExpression (&imm_expr, s);
9029 check_absolute_expr (ip, &imm_expr);
9030 if (imm_expr.X_add_number & ~OP_MASK_SA4)
9031 {
a9e24354
TS
9032 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9033 OP_MASK_SA4, (unsigned long) imm_expr.X_add_number);
74cd071d 9034 }
a9e24354 9035 INSERT_OPERAND (SA4, *ip, imm_expr.X_add_number);
74cd071d
CF
9036 imm_expr.X_op = O_absent;
9037 s = expr_end;
9038 continue;
9039
90ecf173 9040 case '5': /* DSP 8-bit unsigned immediate in bit 16. */
74cd071d
CF
9041 my_getExpression (&imm_expr, s);
9042 check_absolute_expr (ip, &imm_expr);
9043 if (imm_expr.X_add_number & ~OP_MASK_IMM8)
9044 {
a9e24354
TS
9045 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9046 OP_MASK_IMM8, (unsigned long) imm_expr.X_add_number);
74cd071d 9047 }
a9e24354 9048 INSERT_OPERAND (IMM8, *ip, imm_expr.X_add_number);
74cd071d
CF
9049 imm_expr.X_op = O_absent;
9050 s = expr_end;
9051 continue;
9052
90ecf173 9053 case '6': /* DSP 5-bit unsigned immediate in bit 21. */
74cd071d
CF
9054 my_getExpression (&imm_expr, s);
9055 check_absolute_expr (ip, &imm_expr);
9056 if (imm_expr.X_add_number & ~OP_MASK_RS)
9057 {
a9e24354
TS
9058 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9059 OP_MASK_RS, (unsigned long) imm_expr.X_add_number);
74cd071d 9060 }
a9e24354 9061 INSERT_OPERAND (RS, *ip, imm_expr.X_add_number);
74cd071d
CF
9062 imm_expr.X_op = O_absent;
9063 s = expr_end;
9064 continue;
9065
90ecf173 9066 case '7': /* Four DSP accumulators in bits 11,12. */
74cd071d
CF
9067 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
9068 s[3] >= '0' && s[3] <= '3')
9069 {
9070 regno = s[3] - '0';
9071 s += 4;
a9e24354 9072 INSERT_OPERAND (DSPACC, *ip, regno);
74cd071d
CF
9073 continue;
9074 }
9075 else
9076 as_bad (_("Invalid dsp acc register"));
9077 break;
9078
90ecf173 9079 case '8': /* DSP 6-bit unsigned immediate in bit 11. */
74cd071d
CF
9080 my_getExpression (&imm_expr, s);
9081 check_absolute_expr (ip, &imm_expr);
9082 if (imm_expr.X_add_number & ~OP_MASK_WRDSP)
9083 {
a9e24354
TS
9084 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9085 OP_MASK_WRDSP,
9086 (unsigned long) imm_expr.X_add_number);
74cd071d 9087 }
a9e24354 9088 INSERT_OPERAND (WRDSP, *ip, imm_expr.X_add_number);
74cd071d
CF
9089 imm_expr.X_op = O_absent;
9090 s = expr_end;
9091 continue;
9092
90ecf173 9093 case '9': /* Four DSP accumulators in bits 21,22. */
74cd071d
CF
9094 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
9095 s[3] >= '0' && s[3] <= '3')
9096 {
9097 regno = s[3] - '0';
9098 s += 4;
a9e24354 9099 INSERT_OPERAND (DSPACC_S, *ip, regno);
74cd071d
CF
9100 continue;
9101 }
9102 else
9103 as_bad (_("Invalid dsp acc register"));
9104 break;
9105
90ecf173 9106 case '0': /* DSP 6-bit signed immediate in bit 20. */
74cd071d
CF
9107 my_getExpression (&imm_expr, s);
9108 check_absolute_expr (ip, &imm_expr);
9109 min_range = -((OP_MASK_DSPSFT + 1) >> 1);
9110 max_range = ((OP_MASK_DSPSFT + 1) >> 1) - 1;
9111 if (imm_expr.X_add_number < min_range ||
9112 imm_expr.X_add_number > max_range)
9113 {
a9e24354
TS
9114 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
9115 (long) min_range, (long) max_range,
9116 (long) imm_expr.X_add_number);
74cd071d 9117 }
a9e24354 9118 INSERT_OPERAND (DSPSFT, *ip, imm_expr.X_add_number);
74cd071d
CF
9119 imm_expr.X_op = O_absent;
9120 s = expr_end;
9121 continue;
9122
90ecf173 9123 case '\'': /* DSP 6-bit unsigned immediate in bit 16. */
74cd071d
CF
9124 my_getExpression (&imm_expr, s);
9125 check_absolute_expr (ip, &imm_expr);
9126 if (imm_expr.X_add_number & ~OP_MASK_RDDSP)
9127 {
a9e24354
TS
9128 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
9129 OP_MASK_RDDSP,
9130 (unsigned long) imm_expr.X_add_number);
74cd071d 9131 }
a9e24354 9132 INSERT_OPERAND (RDDSP, *ip, imm_expr.X_add_number);
74cd071d
CF
9133 imm_expr.X_op = O_absent;
9134 s = expr_end;
9135 continue;
9136
90ecf173 9137 case ':': /* DSP 7-bit signed immediate in bit 19. */
74cd071d
CF
9138 my_getExpression (&imm_expr, s);
9139 check_absolute_expr (ip, &imm_expr);
9140 min_range = -((OP_MASK_DSPSFT_7 + 1) >> 1);
9141 max_range = ((OP_MASK_DSPSFT_7 + 1) >> 1) - 1;
9142 if (imm_expr.X_add_number < min_range ||
9143 imm_expr.X_add_number > max_range)
9144 {
a9e24354
TS
9145 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
9146 (long) min_range, (long) max_range,
9147 (long) imm_expr.X_add_number);
74cd071d 9148 }
a9e24354 9149 INSERT_OPERAND (DSPSFT_7, *ip, imm_expr.X_add_number);
74cd071d
CF
9150 imm_expr.X_op = O_absent;
9151 s = expr_end;
9152 continue;
9153
90ecf173 9154 case '@': /* DSP 10-bit signed immediate in bit 16. */
74cd071d
CF
9155 my_getExpression (&imm_expr, s);
9156 check_absolute_expr (ip, &imm_expr);
9157 min_range = -((OP_MASK_IMM10 + 1) >> 1);
9158 max_range = ((OP_MASK_IMM10 + 1) >> 1) - 1;
9159 if (imm_expr.X_add_number < min_range ||
9160 imm_expr.X_add_number > max_range)
9161 {
a9e24354
TS
9162 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
9163 (long) min_range, (long) max_range,
9164 (long) imm_expr.X_add_number);
74cd071d 9165 }
a9e24354 9166 INSERT_OPERAND (IMM10, *ip, imm_expr.X_add_number);
74cd071d
CF
9167 imm_expr.X_op = O_absent;
9168 s = expr_end;
9169 continue;
9170
a9e24354 9171 case '!': /* MT usermode flag bit. */
ef2e4d86
CF
9172 my_getExpression (&imm_expr, s);
9173 check_absolute_expr (ip, &imm_expr);
9174 if (imm_expr.X_add_number & ~OP_MASK_MT_U)
a9e24354
TS
9175 as_bad (_("MT usermode bit not 0 or 1 (%lu)"),
9176 (unsigned long) imm_expr.X_add_number);
9177 INSERT_OPERAND (MT_U, *ip, imm_expr.X_add_number);
ef2e4d86
CF
9178 imm_expr.X_op = O_absent;
9179 s = expr_end;
9180 continue;
9181
a9e24354 9182 case '$': /* MT load high flag bit. */
ef2e4d86
CF
9183 my_getExpression (&imm_expr, s);
9184 check_absolute_expr (ip, &imm_expr);
9185 if (imm_expr.X_add_number & ~OP_MASK_MT_H)
a9e24354
TS
9186 as_bad (_("MT load high bit not 0 or 1 (%lu)"),
9187 (unsigned long) imm_expr.X_add_number);
9188 INSERT_OPERAND (MT_H, *ip, imm_expr.X_add_number);
ef2e4d86
CF
9189 imm_expr.X_op = O_absent;
9190 s = expr_end;
9191 continue;
9192
90ecf173 9193 case '*': /* Four DSP accumulators in bits 18,19. */
ef2e4d86
CF
9194 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
9195 s[3] >= '0' && s[3] <= '3')
9196 {
9197 regno = s[3] - '0';
9198 s += 4;
a9e24354 9199 INSERT_OPERAND (MTACC_T, *ip, regno);
ef2e4d86
CF
9200 continue;
9201 }
9202 else
9203 as_bad (_("Invalid dsp/smartmips acc register"));
9204 break;
9205
90ecf173 9206 case '&': /* Four DSP accumulators in bits 13,14. */
ef2e4d86
CF
9207 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
9208 s[3] >= '0' && s[3] <= '3')
9209 {
9210 regno = s[3] - '0';
9211 s += 4;
a9e24354 9212 INSERT_OPERAND (MTACC_D, *ip, regno);
ef2e4d86
CF
9213 continue;
9214 }
9215 else
9216 as_bad (_("Invalid dsp/smartmips acc register"));
9217 break;
9218
252b5132 9219 case ',':
a339155f 9220 ++argnum;
252b5132
RH
9221 if (*s++ == *args)
9222 continue;
9223 s--;
9224 switch (*++args)
9225 {
9226 case 'r':
9227 case 'v':
bf12938e 9228 INSERT_OPERAND (RS, *ip, lastregno);
252b5132
RH
9229 continue;
9230
9231 case 'w':
bf12938e 9232 INSERT_OPERAND (RT, *ip, lastregno);
38487616
TS
9233 continue;
9234
252b5132 9235 case 'W':
bf12938e 9236 INSERT_OPERAND (FT, *ip, lastregno);
252b5132
RH
9237 continue;
9238
9239 case 'V':
bf12938e 9240 INSERT_OPERAND (FS, *ip, lastregno);
252b5132
RH
9241 continue;
9242 }
9243 break;
9244
9245 case '(':
9246 /* Handle optional base register.
9247 Either the base register is omitted or
bdaaa2e1 9248 we must have a left paren. */
252b5132
RH
9249 /* This is dependent on the next operand specifier
9250 is a base register specification. */
f9bbfb18 9251 gas_assert (args[1] == 'b');
252b5132
RH
9252 if (*s == '\0')
9253 return;
9254
90ecf173 9255 case ')': /* These must match exactly. */
60b63b72
RS
9256 case '[':
9257 case ']':
252b5132
RH
9258 if (*s++ == *args)
9259 continue;
9260 break;
9261
af7ee8bf
CD
9262 case '+': /* Opcode extension character. */
9263 switch (*++args)
9264 {
9bcd4f99
TS
9265 case '1': /* UDI immediates. */
9266 case '2':
9267 case '3':
9268 case '4':
9269 {
9270 const struct mips_immed *imm = mips_immed;
9271
9272 while (imm->type && imm->type != *args)
9273 ++imm;
9274 if (! imm->type)
9275 internalError ();
9276 my_getExpression (&imm_expr, s);
9277 check_absolute_expr (ip, &imm_expr);
9278 if ((unsigned long) imm_expr.X_add_number & ~imm->mask)
9279 {
9280 as_warn (_("Illegal %s number (%lu, 0x%lx)"),
9281 imm->desc ? imm->desc : ip->insn_mo->name,
9282 (unsigned long) imm_expr.X_add_number,
9283 (unsigned long) imm_expr.X_add_number);
90ecf173 9284 imm_expr.X_add_number &= imm->mask;
9bcd4f99
TS
9285 }
9286 ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number
9287 << imm->shift);
9288 imm_expr.X_op = O_absent;
9289 s = expr_end;
9290 }
9291 continue;
90ecf173 9292
071742cf
CD
9293 case 'A': /* ins/ext position, becomes LSB. */
9294 limlo = 0;
9295 limhi = 31;
5f74bc13
CD
9296 goto do_lsb;
9297 case 'E':
9298 limlo = 32;
9299 limhi = 63;
9300 goto do_lsb;
90ecf173 9301 do_lsb:
071742cf
CD
9302 my_getExpression (&imm_expr, s);
9303 check_absolute_expr (ip, &imm_expr);
9304 if ((unsigned long) imm_expr.X_add_number < limlo
9305 || (unsigned long) imm_expr.X_add_number > limhi)
9306 {
9307 as_bad (_("Improper position (%lu)"),
9308 (unsigned long) imm_expr.X_add_number);
9309 imm_expr.X_add_number = limlo;
9310 }
9311 lastpos = imm_expr.X_add_number;
bf12938e 9312 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
071742cf
CD
9313 imm_expr.X_op = O_absent;
9314 s = expr_end;
9315 continue;
9316
9317 case 'B': /* ins size, becomes MSB. */
9318 limlo = 1;
9319 limhi = 32;
5f74bc13
CD
9320 goto do_msb;
9321 case 'F':
9322 limlo = 33;
9323 limhi = 64;
9324 goto do_msb;
90ecf173 9325 do_msb:
071742cf
CD
9326 my_getExpression (&imm_expr, s);
9327 check_absolute_expr (ip, &imm_expr);
9328 /* Check for negative input so that small negative numbers
9329 will not succeed incorrectly. The checks against
9330 (pos+size) transitively check "size" itself,
9331 assuming that "pos" is reasonable. */
9332 if ((long) imm_expr.X_add_number < 0
9333 || ((unsigned long) imm_expr.X_add_number
9334 + lastpos) < limlo
9335 || ((unsigned long) imm_expr.X_add_number
9336 + lastpos) > limhi)
9337 {
9338 as_bad (_("Improper insert size (%lu, position %lu)"),
9339 (unsigned long) imm_expr.X_add_number,
9340 (unsigned long) lastpos);
9341 imm_expr.X_add_number = limlo - lastpos;
9342 }
bf12938e
RS
9343 INSERT_OPERAND (INSMSB, *ip,
9344 lastpos + imm_expr.X_add_number - 1);
071742cf
CD
9345 imm_expr.X_op = O_absent;
9346 s = expr_end;
9347 continue;
9348
9349 case 'C': /* ext size, becomes MSBD. */
9350 limlo = 1;
9351 limhi = 32;
5f74bc13
CD
9352 goto do_msbd;
9353 case 'G':
9354 limlo = 33;
9355 limhi = 64;
9356 goto do_msbd;
9357 case 'H':
9358 limlo = 33;
9359 limhi = 64;
9360 goto do_msbd;
90ecf173 9361 do_msbd:
071742cf
CD
9362 my_getExpression (&imm_expr, s);
9363 check_absolute_expr (ip, &imm_expr);
9364 /* Check for negative input so that small negative numbers
9365 will not succeed incorrectly. The checks against
9366 (pos+size) transitively check "size" itself,
9367 assuming that "pos" is reasonable. */
9368 if ((long) imm_expr.X_add_number < 0
9369 || ((unsigned long) imm_expr.X_add_number
9370 + lastpos) < limlo
9371 || ((unsigned long) imm_expr.X_add_number
9372 + lastpos) > limhi)
9373 {
9374 as_bad (_("Improper extract size (%lu, position %lu)"),
9375 (unsigned long) imm_expr.X_add_number,
9376 (unsigned long) lastpos);
9377 imm_expr.X_add_number = limlo - lastpos;
9378 }
bf12938e 9379 INSERT_OPERAND (EXTMSBD, *ip, imm_expr.X_add_number - 1);
071742cf
CD
9380 imm_expr.X_op = O_absent;
9381 s = expr_end;
9382 continue;
af7ee8bf 9383
bbcc0807
CD
9384 case 'D':
9385 /* +D is for disassembly only; never match. */
9386 break;
9387
5f74bc13
CD
9388 case 'I':
9389 /* "+I" is like "I", except that imm2_expr is used. */
9390 my_getExpression (&imm2_expr, s);
9391 if (imm2_expr.X_op != O_big
9392 && imm2_expr.X_op != O_constant)
9393 insn_error = _("absolute expression required");
9ee2a2d4
MR
9394 if (HAVE_32BIT_GPRS)
9395 normalize_constant_expr (&imm2_expr);
5f74bc13
CD
9396 s = expr_end;
9397 continue;
9398
707bfff6 9399 case 'T': /* Coprocessor register. */
ef2e4d86
CF
9400 /* +T is for disassembly only; never match. */
9401 break;
9402
707bfff6 9403 case 't': /* Coprocessor register number. */
ef2e4d86
CF
9404 if (s[0] == '$' && ISDIGIT (s[1]))
9405 {
9406 ++s;
9407 regno = 0;
9408 do
9409 {
9410 regno *= 10;
9411 regno += *s - '0';
9412 ++s;
9413 }
9414 while (ISDIGIT (*s));
9415 if (regno > 31)
9416 as_bad (_("Invalid register number (%d)"), regno);
9417 else
9418 {
a9e24354 9419 INSERT_OPERAND (RT, *ip, regno);
ef2e4d86
CF
9420 continue;
9421 }
9422 }
9423 else
9424 as_bad (_("Invalid coprocessor 0 register number"));
9425 break;
9426
bb35fb24
NC
9427 case 'x':
9428 /* bbit[01] and bbit[01]32 bit index. Give error if index
9429 is not in the valid range. */
9430 my_getExpression (&imm_expr, s);
9431 check_absolute_expr (ip, &imm_expr);
9432 if ((unsigned) imm_expr.X_add_number > 31)
9433 {
9434 as_bad (_("Improper bit index (%lu)"),
9435 (unsigned long) imm_expr.X_add_number);
9436 imm_expr.X_add_number = 0;
9437 }
9438 INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number);
9439 imm_expr.X_op = O_absent;
9440 s = expr_end;
9441 continue;
9442
9443 case 'X':
9444 /* bbit[01] bit index when bbit is used but we generate
9445 bbit[01]32 because the index is over 32. Move to the
9446 next candidate if index is not in the valid range. */
9447 my_getExpression (&imm_expr, s);
9448 check_absolute_expr (ip, &imm_expr);
9449 if ((unsigned) imm_expr.X_add_number < 32
9450 || (unsigned) imm_expr.X_add_number > 63)
9451 break;
9452 INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number - 32);
9453 imm_expr.X_op = O_absent;
9454 s = expr_end;
9455 continue;
9456
9457 case 'p':
9458 /* cins, cins32, exts and exts32 position field. Give error
9459 if it's not in the valid range. */
9460 my_getExpression (&imm_expr, s);
9461 check_absolute_expr (ip, &imm_expr);
9462 if ((unsigned) imm_expr.X_add_number > 31)
9463 {
9464 as_bad (_("Improper position (%lu)"),
9465 (unsigned long) imm_expr.X_add_number);
9466 imm_expr.X_add_number = 0;
9467 }
9468 /* Make the pos explicit to simplify +S. */
9469 lastpos = imm_expr.X_add_number + 32;
9470 INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number);
9471 imm_expr.X_op = O_absent;
9472 s = expr_end;
9473 continue;
9474
9475 case 'P':
9476 /* cins, cins32, exts and exts32 position field. Move to
9477 the next candidate if it's not in the valid range. */
9478 my_getExpression (&imm_expr, s);
9479 check_absolute_expr (ip, &imm_expr);
9480 if ((unsigned) imm_expr.X_add_number < 32
9481 || (unsigned) imm_expr.X_add_number > 63)
9482 break;
9483 lastpos = imm_expr.X_add_number;
9484 INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number - 32);
9485 imm_expr.X_op = O_absent;
9486 s = expr_end;
9487 continue;
9488
9489 case 's':
9490 /* cins and exts length-minus-one field. */
9491 my_getExpression (&imm_expr, s);
9492 check_absolute_expr (ip, &imm_expr);
9493 if ((unsigned long) imm_expr.X_add_number > 31)
9494 {
9495 as_bad (_("Improper size (%lu)"),
9496 (unsigned long) imm_expr.X_add_number);
9497 imm_expr.X_add_number = 0;
9498 }
9499 INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number);
9500 imm_expr.X_op = O_absent;
9501 s = expr_end;
9502 continue;
9503
9504 case 'S':
9505 /* cins32/exts32 and cins/exts aliasing cint32/exts32
9506 length-minus-one field. */
9507 my_getExpression (&imm_expr, s);
9508 check_absolute_expr (ip, &imm_expr);
9509 if ((long) imm_expr.X_add_number < 0
9510 || (unsigned long) imm_expr.X_add_number + lastpos > 63)
9511 {
9512 as_bad (_("Improper size (%lu)"),
9513 (unsigned long) imm_expr.X_add_number);
9514 imm_expr.X_add_number = 0;
9515 }
9516 INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number);
9517 imm_expr.X_op = O_absent;
9518 s = expr_end;
9519 continue;
9520
dd3cbb7e
NC
9521 case 'Q':
9522 /* seqi/snei immediate field. */
9523 my_getExpression (&imm_expr, s);
9524 check_absolute_expr (ip, &imm_expr);
9525 if ((long) imm_expr.X_add_number < -512
9526 || (long) imm_expr.X_add_number >= 512)
9527 {
9528 as_bad (_("Improper immediate (%ld)"),
9529 (long) imm_expr.X_add_number);
9530 imm_expr.X_add_number = 0;
9531 }
9532 INSERT_OPERAND (SEQI, *ip, imm_expr.X_add_number);
9533 imm_expr.X_op = O_absent;
9534 s = expr_end;
9535 continue;
9536
98675402
RS
9537 case 'a': /* 8-bit signed offset in bit 6 */
9538 my_getExpression (&imm_expr, s);
9539 check_absolute_expr (ip, &imm_expr);
9540 min_range = -((OP_MASK_OFFSET_A + 1) >> 1);
9541 max_range = ((OP_MASK_OFFSET_A + 1) >> 1) - 1;
9542 if (imm_expr.X_add_number < min_range
9543 || imm_expr.X_add_number > max_range)
9544 {
c95354ed 9545 as_bad (_("Offset not in range %ld..%ld (%ld)"),
98675402
RS
9546 (long) min_range, (long) max_range,
9547 (long) imm_expr.X_add_number);
9548 }
9549 INSERT_OPERAND (OFFSET_A, *ip, imm_expr.X_add_number);
9550 imm_expr.X_op = O_absent;
9551 s = expr_end;
9552 continue;
9553
9554 case 'b': /* 8-bit signed offset in bit 3 */
9555 my_getExpression (&imm_expr, s);
9556 check_absolute_expr (ip, &imm_expr);
9557 min_range = -((OP_MASK_OFFSET_B + 1) >> 1);
9558 max_range = ((OP_MASK_OFFSET_B + 1) >> 1) - 1;
9559 if (imm_expr.X_add_number < min_range
9560 || imm_expr.X_add_number > max_range)
9561 {
c95354ed 9562 as_bad (_("Offset not in range %ld..%ld (%ld)"),
98675402
RS
9563 (long) min_range, (long) max_range,
9564 (long) imm_expr.X_add_number);
9565 }
9566 INSERT_OPERAND (OFFSET_B, *ip, imm_expr.X_add_number);
9567 imm_expr.X_op = O_absent;
9568 s = expr_end;
9569 continue;
9570
9571 case 'c': /* 9-bit signed offset in bit 6 */
9572 my_getExpression (&imm_expr, s);
9573 check_absolute_expr (ip, &imm_expr);
9574 min_range = -((OP_MASK_OFFSET_C + 1) >> 1);
9575 max_range = ((OP_MASK_OFFSET_C + 1) >> 1) - 1;
c95354ed
MX
9576 /* We check the offset range before adjusted. */
9577 min_range <<= 4;
9578 max_range <<= 4;
98675402
RS
9579 if (imm_expr.X_add_number < min_range
9580 || imm_expr.X_add_number > max_range)
9581 {
c95354ed 9582 as_bad (_("Offset not in range %ld..%ld (%ld)"),
98675402
RS
9583 (long) min_range, (long) max_range,
9584 (long) imm_expr.X_add_number);
9585 }
c95354ed
MX
9586 if (imm_expr.X_add_number & 0xf)
9587 {
9588 as_bad (_("Offset not 16 bytes alignment (%ld)"),
9589 (long) imm_expr.X_add_number);
9590 }
9591 /* Right shift 4 bits to adjust the offset operand. */
9592 INSERT_OPERAND (OFFSET_C, *ip, imm_expr.X_add_number >> 4);
98675402
RS
9593 imm_expr.X_op = O_absent;
9594 s = expr_end;
9595 continue;
9596
9597 case 'z':
9598 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
9599 break;
9600 if (regno == AT && mips_opts.at)
9601 {
9602 if (mips_opts.at == ATREG)
9603 as_warn (_("used $at without \".set noat\""));
9604 else
9605 as_warn (_("used $%u with \".set at=$%u\""),
9606 regno, mips_opts.at);
9607 }
9608 INSERT_OPERAND (RZ, *ip, regno);
9609 continue;
9610
9611 case 'Z':
9612 if (!reg_lookup (&s, RTYPE_FPU, &regno))
9613 break;
9614 INSERT_OPERAND (FZ, *ip, regno);
9615 continue;
9616
af7ee8bf 9617 default:
f71d0d44 9618 as_bad (_("Internal error: bad mips opcode "
90ecf173
MR
9619 "(unknown extension operand type `+%c'): %s %s"),
9620 *args, insn->name, insn->args);
af7ee8bf
CD
9621 /* Further processing is fruitless. */
9622 return;
9623 }
9624 break;
9625
252b5132
RH
9626 case '<': /* must be at least one digit */
9627 /*
9628 * According to the manual, if the shift amount is greater
b6ff326e
KH
9629 * than 31 or less than 0, then the shift amount should be
9630 * mod 32. In reality the mips assembler issues an error.
252b5132
RH
9631 * We issue a warning and mask out all but the low 5 bits.
9632 */
9633 my_getExpression (&imm_expr, s);
9634 check_absolute_expr (ip, &imm_expr);
9635 if ((unsigned long) imm_expr.X_add_number > 31)
bf12938e
RS
9636 as_warn (_("Improper shift amount (%lu)"),
9637 (unsigned long) imm_expr.X_add_number);
9638 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
252b5132
RH
9639 imm_expr.X_op = O_absent;
9640 s = expr_end;
9641 continue;
9642
9643 case '>': /* shift amount minus 32 */
9644 my_getExpression (&imm_expr, s);
9645 check_absolute_expr (ip, &imm_expr);
9646 if ((unsigned long) imm_expr.X_add_number < 32
9647 || (unsigned long) imm_expr.X_add_number > 63)
9648 break;
bf12938e 9649 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number - 32);
252b5132
RH
9650 imm_expr.X_op = O_absent;
9651 s = expr_end;
9652 continue;
9653
90ecf173
MR
9654 case 'k': /* CACHE code. */
9655 case 'h': /* PREFX code. */
9656 case '1': /* SYNC type. */
252b5132
RH
9657 my_getExpression (&imm_expr, s);
9658 check_absolute_expr (ip, &imm_expr);
9659 if ((unsigned long) imm_expr.X_add_number > 31)
bf12938e
RS
9660 as_warn (_("Invalid value for `%s' (%lu)"),
9661 ip->insn_mo->name,
9662 (unsigned long) imm_expr.X_add_number);
252b5132 9663 if (*args == 'k')
d954098f
DD
9664 {
9665 if (mips_fix_cn63xxp1 && strcmp ("pref", insn->name) == 0)
9666 switch (imm_expr.X_add_number)
9667 {
9668 case 5:
9669 case 25:
9670 case 26:
9671 case 27:
9672 case 28:
9673 case 29:
9674 case 30:
9675 case 31: /* These are ok. */
9676 break;
9677
9678 default: /* The rest must be changed to 28. */
9679 imm_expr.X_add_number = 28;
9680 break;
9681 }
9682 INSERT_OPERAND (CACHE, *ip, imm_expr.X_add_number);
9683 }
620edafd 9684 else if (*args == 'h')
bf12938e 9685 INSERT_OPERAND (PREFX, *ip, imm_expr.X_add_number);
620edafd
CF
9686 else
9687 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
252b5132
RH
9688 imm_expr.X_op = O_absent;
9689 s = expr_end;
9690 continue;
9691
90ecf173 9692 case 'c': /* BREAK code. */
252b5132
RH
9693 my_getExpression (&imm_expr, s);
9694 check_absolute_expr (ip, &imm_expr);
a9e24354
TS
9695 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE)
9696 as_warn (_("Code for %s not in range 0..1023 (%lu)"),
9697 ip->insn_mo->name,
bf12938e
RS
9698 (unsigned long) imm_expr.X_add_number);
9699 INSERT_OPERAND (CODE, *ip, imm_expr.X_add_number);
252b5132
RH
9700 imm_expr.X_op = O_absent;
9701 s = expr_end;
9702 continue;
9703
90ecf173 9704 case 'q': /* Lower BREAK code. */
252b5132
RH
9705 my_getExpression (&imm_expr, s);
9706 check_absolute_expr (ip, &imm_expr);
a9e24354
TS
9707 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE2)
9708 as_warn (_("Lower code for %s not in range 0..1023 (%lu)"),
9709 ip->insn_mo->name,
bf12938e
RS
9710 (unsigned long) imm_expr.X_add_number);
9711 INSERT_OPERAND (CODE2, *ip, imm_expr.X_add_number);
252b5132
RH
9712 imm_expr.X_op = O_absent;
9713 s = expr_end;
9714 continue;
9715
90ecf173 9716 case 'B': /* 20-bit SYSCALL/BREAK code. */
156c2f8b 9717 my_getExpression (&imm_expr, s);
156c2f8b 9718 check_absolute_expr (ip, &imm_expr);
793b27f4 9719 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20)
a9e24354
TS
9720 as_warn (_("Code for %s not in range 0..1048575 (%lu)"),
9721 ip->insn_mo->name,
793b27f4 9722 (unsigned long) imm_expr.X_add_number);
bf12938e 9723 INSERT_OPERAND (CODE20, *ip, imm_expr.X_add_number);
252b5132
RH
9724 imm_expr.X_op = O_absent;
9725 s = expr_end;
9726 continue;
9727
90ecf173 9728 case 'C': /* Coprocessor code. */
beae10d5 9729 my_getExpression (&imm_expr, s);
252b5132 9730 check_absolute_expr (ip, &imm_expr);
a9e24354 9731 if ((unsigned long) imm_expr.X_add_number > OP_MASK_COPZ)
252b5132 9732 {
793b27f4
TS
9733 as_warn (_("Coproccesor code > 25 bits (%lu)"),
9734 (unsigned long) imm_expr.X_add_number);
a9e24354 9735 imm_expr.X_add_number &= OP_MASK_COPZ;
252b5132 9736 }
a9e24354 9737 INSERT_OPERAND (COPZ, *ip, imm_expr.X_add_number);
beae10d5
KH
9738 imm_expr.X_op = O_absent;
9739 s = expr_end;
9740 continue;
252b5132 9741
90ecf173 9742 case 'J': /* 19-bit WAIT code. */
4372b673
NC
9743 my_getExpression (&imm_expr, s);
9744 check_absolute_expr (ip, &imm_expr);
793b27f4 9745 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
a9e24354
TS
9746 {
9747 as_warn (_("Illegal 19-bit code (%lu)"),
9748 (unsigned long) imm_expr.X_add_number);
9749 imm_expr.X_add_number &= OP_MASK_CODE19;
9750 }
bf12938e 9751 INSERT_OPERAND (CODE19, *ip, imm_expr.X_add_number);
4372b673
NC
9752 imm_expr.X_op = O_absent;
9753 s = expr_end;
9754 continue;
9755
707bfff6 9756 case 'P': /* Performance register. */
beae10d5 9757 my_getExpression (&imm_expr, s);
252b5132 9758 check_absolute_expr (ip, &imm_expr);
beae10d5 9759 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
bf12938e
RS
9760 as_warn (_("Invalid performance register (%lu)"),
9761 (unsigned long) imm_expr.X_add_number);
9762 INSERT_OPERAND (PERFREG, *ip, imm_expr.X_add_number);
beae10d5
KH
9763 imm_expr.X_op = O_absent;
9764 s = expr_end;
9765 continue;
252b5132 9766
707bfff6
TS
9767 case 'G': /* Coprocessor destination register. */
9768 if (((ip->insn_opcode >> OP_SH_OP) & OP_MASK_OP) == OP_OP_COP0)
9769 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_CP0, &regno);
9770 else
9771 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
a9e24354 9772 INSERT_OPERAND (RD, *ip, regno);
707bfff6
TS
9773 if (ok)
9774 {
9775 lastregno = regno;
9776 continue;
9777 }
9778 else
9779 break;
9780
90ecf173
MR
9781 case 'b': /* Base register. */
9782 case 'd': /* Destination register. */
9783 case 's': /* Source register. */
9784 case 't': /* Target register. */
9785 case 'r': /* Both target and source. */
9786 case 'v': /* Both dest and source. */
9787 case 'w': /* Both dest and target. */
9788 case 'E': /* Coprocessor target register. */
9789 case 'K': /* RDHWR destination register. */
9790 case 'x': /* Ignore register name. */
9791 case 'z': /* Must be zero register. */
9792 case 'U': /* Destination register (CLO/CLZ). */
9793 case 'g': /* Coprocessor destination register. */
9794 s_reset = s;
707bfff6
TS
9795 if (*args == 'E' || *args == 'K')
9796 ok = reg_lookup (&s, RTYPE_NUM, &regno);
9797 else
9798 {
9799 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
741fe287
MR
9800 if (regno == AT && mips_opts.at)
9801 {
9802 if (mips_opts.at == ATREG)
f71d0d44 9803 as_warn (_("Used $at without \".set noat\""));
741fe287 9804 else
f71d0d44 9805 as_warn (_("Used $%u with \".set at=$%u\""),
741fe287
MR
9806 regno, mips_opts.at);
9807 }
707bfff6
TS
9808 }
9809 if (ok)
252b5132 9810 {
252b5132
RH
9811 c = *args;
9812 if (*s == ' ')
f9419b05 9813 ++s;
252b5132
RH
9814 if (args[1] != *s)
9815 {
9816 if (c == 'r' || c == 'v' || c == 'w')
9817 {
9818 regno = lastregno;
9819 s = s_reset;
f9419b05 9820 ++args;
252b5132
RH
9821 }
9822 }
9823 /* 'z' only matches $0. */
9824 if (c == 'z' && regno != 0)
9825 break;
9826
24864476 9827 if (c == 's' && !strncmp (ip->insn_mo->name, "jalr", 4))
e7c604dd
CM
9828 {
9829 if (regno == lastregno)
90ecf173
MR
9830 {
9831 insn_error
f71d0d44 9832 = _("Source and destination must be different");
e7c604dd 9833 continue;
90ecf173 9834 }
24864476 9835 if (regno == 31 && lastregno == 0xffffffff)
90ecf173
MR
9836 {
9837 insn_error
f71d0d44 9838 = _("A destination register must be supplied");
e7c604dd 9839 continue;
90ecf173 9840 }
e7c604dd 9841 }
90ecf173
MR
9842 /* Now that we have assembled one operand, we use the args
9843 string to figure out where it goes in the instruction. */
252b5132
RH
9844 switch (c)
9845 {
9846 case 'r':
9847 case 's':
9848 case 'v':
9849 case 'b':
bf12938e 9850 INSERT_OPERAND (RS, *ip, regno);
252b5132
RH
9851 break;
9852 case 'd':
af7ee8bf 9853 case 'K':
ef2e4d86 9854 case 'g':
bf12938e 9855 INSERT_OPERAND (RD, *ip, regno);
252b5132 9856 break;
4372b673 9857 case 'U':
bf12938e
RS
9858 INSERT_OPERAND (RD, *ip, regno);
9859 INSERT_OPERAND (RT, *ip, regno);
4372b673 9860 break;
252b5132
RH
9861 case 'w':
9862 case 't':
9863 case 'E':
bf12938e 9864 INSERT_OPERAND (RT, *ip, regno);
252b5132
RH
9865 break;
9866 case 'x':
9867 /* This case exists because on the r3000 trunc
9868 expands into a macro which requires a gp
9869 register. On the r6000 or r4000 it is
9870 assembled into a single instruction which
9871 ignores the register. Thus the insn version
9872 is MIPS_ISA2 and uses 'x', and the macro
9873 version is MIPS_ISA1 and uses 't'. */
9874 break;
9875 case 'z':
9876 /* This case is for the div instruction, which
9877 acts differently if the destination argument
9878 is $0. This only matches $0, and is checked
9879 outside the switch. */
9880 break;
252b5132
RH
9881 }
9882 lastregno = regno;
9883 continue;
9884 }
252b5132
RH
9885 switch (*args++)
9886 {
9887 case 'r':
9888 case 'v':
bf12938e 9889 INSERT_OPERAND (RS, *ip, lastregno);
252b5132
RH
9890 continue;
9891 case 'w':
bf12938e 9892 INSERT_OPERAND (RT, *ip, lastregno);
252b5132
RH
9893 continue;
9894 }
9895 break;
9896
deec1734
CD
9897 case 'O': /* MDMX alignment immediate constant. */
9898 my_getExpression (&imm_expr, s);
9899 check_absolute_expr (ip, &imm_expr);
9900 if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
20203fb9 9901 as_warn (_("Improper align amount (%ld), using low bits"),
bf12938e
RS
9902 (long) imm_expr.X_add_number);
9903 INSERT_OPERAND (ALN, *ip, imm_expr.X_add_number);
deec1734
CD
9904 imm_expr.X_op = O_absent;
9905 s = expr_end;
9906 continue;
9907
9908 case 'Q': /* MDMX vector, element sel, or const. */
9909 if (s[0] != '$')
9910 {
9911 /* MDMX Immediate. */
9912 my_getExpression (&imm_expr, s);
9913 check_absolute_expr (ip, &imm_expr);
9914 if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
bf12938e
RS
9915 as_warn (_("Invalid MDMX Immediate (%ld)"),
9916 (long) imm_expr.X_add_number);
9917 INSERT_OPERAND (FT, *ip, imm_expr.X_add_number);
deec1734
CD
9918 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
9919 ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
9920 else
9921 ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
deec1734
CD
9922 imm_expr.X_op = O_absent;
9923 s = expr_end;
9924 continue;
9925 }
9926 /* Not MDMX Immediate. Fall through. */
9927 case 'X': /* MDMX destination register. */
9928 case 'Y': /* MDMX source register. */
9929 case 'Z': /* MDMX target register. */
9930 is_mdmx = 1;
90ecf173
MR
9931 case 'D': /* Floating point destination register. */
9932 case 'S': /* Floating point source register. */
9933 case 'T': /* Floating point target register. */
9934 case 'R': /* Floating point source register. */
252b5132
RH
9935 case 'V':
9936 case 'W':
707bfff6
TS
9937 rtype = RTYPE_FPU;
9938 if (is_mdmx
9939 || (mips_opts.ase_mdmx
9940 && (ip->insn_mo->pinfo & FP_D)
9941 && (ip->insn_mo->pinfo & (INSN_COPROC_MOVE_DELAY
9942 | INSN_COPROC_MEMORY_DELAY
9943 | INSN_LOAD_COPROC_DELAY
9944 | INSN_LOAD_MEMORY_DELAY
9945 | INSN_STORE_MEMORY))))
9946 rtype |= RTYPE_VEC;
252b5132 9947 s_reset = s;
707bfff6 9948 if (reg_lookup (&s, rtype, &regno))
252b5132 9949 {
252b5132 9950 if ((regno & 1) != 0
ca4e0257 9951 && HAVE_32BIT_FPRS
90ecf173 9952 && !mips_oddfpreg_ok (ip->insn_mo, argnum))
252b5132
RH
9953 as_warn (_("Float register should be even, was %d"),
9954 regno);
9955
9956 c = *args;
9957 if (*s == ' ')
f9419b05 9958 ++s;
252b5132
RH
9959 if (args[1] != *s)
9960 {
9961 if (c == 'V' || c == 'W')
9962 {
9963 regno = lastregno;
9964 s = s_reset;
f9419b05 9965 ++args;
252b5132
RH
9966 }
9967 }
9968 switch (c)
9969 {
9970 case 'D':
deec1734 9971 case 'X':
bf12938e 9972 INSERT_OPERAND (FD, *ip, regno);
252b5132
RH
9973 break;
9974 case 'V':
9975 case 'S':
deec1734 9976 case 'Y':
bf12938e 9977 INSERT_OPERAND (FS, *ip, regno);
252b5132 9978 break;
deec1734
CD
9979 case 'Q':
9980 /* This is like 'Z', but also needs to fix the MDMX
9981 vector/scalar select bits. Note that the
9982 scalar immediate case is handled above. */
9983 if (*s == '[')
9984 {
9985 int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
9986 int max_el = (is_qh ? 3 : 7);
9987 s++;
9988 my_getExpression(&imm_expr, s);
9989 check_absolute_expr (ip, &imm_expr);
9990 s = expr_end;
9991 if (imm_expr.X_add_number > max_el)
20203fb9
NC
9992 as_bad (_("Bad element selector %ld"),
9993 (long) imm_expr.X_add_number);
deec1734
CD
9994 imm_expr.X_add_number &= max_el;
9995 ip->insn_opcode |= (imm_expr.X_add_number
9996 << (OP_SH_VSEL +
9997 (is_qh ? 2 : 1)));
01a3f561 9998 imm_expr.X_op = O_absent;
deec1734 9999 if (*s != ']')
20203fb9 10000 as_warn (_("Expecting ']' found '%s'"), s);
deec1734
CD
10001 else
10002 s++;
10003 }
10004 else
10005 {
10006 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
10007 ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
10008 << OP_SH_VSEL);
10009 else
10010 ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
10011 OP_SH_VSEL);
10012 }
90ecf173 10013 /* Fall through. */
252b5132
RH
10014 case 'W':
10015 case 'T':
deec1734 10016 case 'Z':
bf12938e 10017 INSERT_OPERAND (FT, *ip, regno);
252b5132
RH
10018 break;
10019 case 'R':
bf12938e 10020 INSERT_OPERAND (FR, *ip, regno);
252b5132
RH
10021 break;
10022 }
10023 lastregno = regno;
10024 continue;
10025 }
10026
252b5132
RH
10027 switch (*args++)
10028 {
10029 case 'V':
bf12938e 10030 INSERT_OPERAND (FS, *ip, lastregno);
252b5132
RH
10031 continue;
10032 case 'W':
bf12938e 10033 INSERT_OPERAND (FT, *ip, lastregno);
252b5132
RH
10034 continue;
10035 }
10036 break;
10037
10038 case 'I':
10039 my_getExpression (&imm_expr, s);
10040 if (imm_expr.X_op != O_big
10041 && imm_expr.X_op != O_constant)
10042 insn_error = _("absolute expression required");
9ee2a2d4
MR
10043 if (HAVE_32BIT_GPRS)
10044 normalize_constant_expr (&imm_expr);
252b5132
RH
10045 s = expr_end;
10046 continue;
10047
10048 case 'A':
10049 my_getExpression (&offset_expr, s);
2051e8c4 10050 normalize_address_expr (&offset_expr);
f6688943 10051 *imm_reloc = BFD_RELOC_32;
252b5132
RH
10052 s = expr_end;
10053 continue;
10054
10055 case 'F':
10056 case 'L':
10057 case 'f':
10058 case 'l':
10059 {
10060 int f64;
ca4e0257 10061 int using_gprs;
252b5132
RH
10062 char *save_in;
10063 char *err;
10064 unsigned char temp[8];
10065 int len;
10066 unsigned int length;
10067 segT seg;
10068 subsegT subseg;
10069 char *p;
10070
10071 /* These only appear as the last operand in an
10072 instruction, and every instruction that accepts
10073 them in any variant accepts them in all variants.
10074 This means we don't have to worry about backing out
10075 any changes if the instruction does not match.
10076
10077 The difference between them is the size of the
10078 floating point constant and where it goes. For 'F'
10079 and 'L' the constant is 64 bits; for 'f' and 'l' it
10080 is 32 bits. Where the constant is placed is based
10081 on how the MIPS assembler does things:
10082 F -- .rdata
10083 L -- .lit8
10084 f -- immediate value
10085 l -- .lit4
10086
10087 The .lit4 and .lit8 sections are only used if
10088 permitted by the -G argument.
10089
ca4e0257
RS
10090 The code below needs to know whether the target register
10091 is 32 or 64 bits wide. It relies on the fact 'f' and
10092 'F' are used with GPR-based instructions and 'l' and
10093 'L' are used with FPR-based instructions. */
252b5132
RH
10094
10095 f64 = *args == 'F' || *args == 'L';
ca4e0257 10096 using_gprs = *args == 'F' || *args == 'f';
252b5132
RH
10097
10098 save_in = input_line_pointer;
10099 input_line_pointer = s;
10100 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
10101 length = len;
10102 s = input_line_pointer;
10103 input_line_pointer = save_in;
10104 if (err != NULL && *err != '\0')
10105 {
10106 as_bad (_("Bad floating point constant: %s"), err);
10107 memset (temp, '\0', sizeof temp);
10108 length = f64 ? 8 : 4;
10109 }
10110
9c2799c2 10111 gas_assert (length == (unsigned) (f64 ? 8 : 4));
252b5132
RH
10112
10113 if (*args == 'f'
10114 || (*args == 'l'
3e722fb5 10115 && (g_switch_value < 4
252b5132
RH
10116 || (temp[0] == 0 && temp[1] == 0)
10117 || (temp[2] == 0 && temp[3] == 0))))
10118 {
10119 imm_expr.X_op = O_constant;
90ecf173 10120 if (!target_big_endian)
252b5132
RH
10121 imm_expr.X_add_number = bfd_getl32 (temp);
10122 else
10123 imm_expr.X_add_number = bfd_getb32 (temp);
10124 }
10125 else if (length > 4
90ecf173 10126 && !mips_disable_float_construction
ca4e0257
RS
10127 /* Constants can only be constructed in GPRs and
10128 copied to FPRs if the GPRs are at least as wide
10129 as the FPRs. Force the constant into memory if
10130 we are using 64-bit FPRs but the GPRs are only
10131 32 bits wide. */
10132 && (using_gprs
90ecf173 10133 || !(HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
252b5132
RH
10134 && ((temp[0] == 0 && temp[1] == 0)
10135 || (temp[2] == 0 && temp[3] == 0))
10136 && ((temp[4] == 0 && temp[5] == 0)
10137 || (temp[6] == 0 && temp[7] == 0)))
10138 {
ca4e0257 10139 /* The value is simple enough to load with a couple of
90ecf173
MR
10140 instructions. If using 32-bit registers, set
10141 imm_expr to the high order 32 bits and offset_expr to
10142 the low order 32 bits. Otherwise, set imm_expr to
10143 the entire 64 bit constant. */
ca4e0257 10144 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
252b5132
RH
10145 {
10146 imm_expr.X_op = O_constant;
10147 offset_expr.X_op = O_constant;
90ecf173 10148 if (!target_big_endian)
252b5132
RH
10149 {
10150 imm_expr.X_add_number = bfd_getl32 (temp + 4);
10151 offset_expr.X_add_number = bfd_getl32 (temp);
10152 }
10153 else
10154 {
10155 imm_expr.X_add_number = bfd_getb32 (temp);
10156 offset_expr.X_add_number = bfd_getb32 (temp + 4);
10157 }
10158 if (offset_expr.X_add_number == 0)
10159 offset_expr.X_op = O_absent;
10160 }
10161 else if (sizeof (imm_expr.X_add_number) > 4)
10162 {
10163 imm_expr.X_op = O_constant;
90ecf173 10164 if (!target_big_endian)
252b5132
RH
10165 imm_expr.X_add_number = bfd_getl64 (temp);
10166 else
10167 imm_expr.X_add_number = bfd_getb64 (temp);
10168 }
10169 else
10170 {
10171 imm_expr.X_op = O_big;
10172 imm_expr.X_add_number = 4;
90ecf173 10173 if (!target_big_endian)
252b5132
RH
10174 {
10175 generic_bignum[0] = bfd_getl16 (temp);
10176 generic_bignum[1] = bfd_getl16 (temp + 2);
10177 generic_bignum[2] = bfd_getl16 (temp + 4);
10178 generic_bignum[3] = bfd_getl16 (temp + 6);
10179 }
10180 else
10181 {
10182 generic_bignum[0] = bfd_getb16 (temp + 6);
10183 generic_bignum[1] = bfd_getb16 (temp + 4);
10184 generic_bignum[2] = bfd_getb16 (temp + 2);
10185 generic_bignum[3] = bfd_getb16 (temp);
10186 }
10187 }
10188 }
10189 else
10190 {
10191 const char *newname;
10192 segT new_seg;
10193
10194 /* Switch to the right section. */
10195 seg = now_seg;
10196 subseg = now_subseg;
10197 switch (*args)
10198 {
10199 default: /* unused default case avoids warnings. */
10200 case 'L':
10201 newname = RDATA_SECTION_NAME;
3e722fb5 10202 if (g_switch_value >= 8)
252b5132
RH
10203 newname = ".lit8";
10204 break;
10205 case 'F':
3e722fb5 10206 newname = RDATA_SECTION_NAME;
252b5132
RH
10207 break;
10208 case 'l':
9c2799c2 10209 gas_assert (g_switch_value >= 4);
252b5132
RH
10210 newname = ".lit4";
10211 break;
10212 }
10213 new_seg = subseg_new (newname, (subsegT) 0);
f43abd2b 10214 if (IS_ELF)
252b5132
RH
10215 bfd_set_section_flags (stdoutput, new_seg,
10216 (SEC_ALLOC
10217 | SEC_LOAD
10218 | SEC_READONLY
10219 | SEC_DATA));
10220 frag_align (*args == 'l' ? 2 : 3, 0, 0);
c41e87e3 10221 if (IS_ELF && strncmp (TARGET_OS, "elf", 3) != 0)
252b5132
RH
10222 record_alignment (new_seg, 4);
10223 else
10224 record_alignment (new_seg, *args == 'l' ? 2 : 3);
10225 if (seg == now_seg)
10226 as_bad (_("Can't use floating point insn in this section"));
10227
10228 /* Set the argument to the current address in the
10229 section. */
10230 offset_expr.X_op = O_symbol;
8680f6e1 10231 offset_expr.X_add_symbol = symbol_temp_new_now ();
252b5132
RH
10232 offset_expr.X_add_number = 0;
10233
10234 /* Put the floating point number into the section. */
10235 p = frag_more ((int) length);
10236 memcpy (p, temp, length);
10237
10238 /* Switch back to the original section. */
10239 subseg_set (seg, subseg);
10240 }
10241 }
10242 continue;
10243
90ecf173
MR
10244 case 'i': /* 16-bit unsigned immediate. */
10245 case 'j': /* 16-bit signed immediate. */
f6688943 10246 *imm_reloc = BFD_RELOC_LO16;
5e0116d5 10247 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
252b5132
RH
10248 {
10249 int more;
5e0116d5
RS
10250 offsetT minval, maxval;
10251
10252 more = (insn + 1 < &mips_opcodes[NUMOPCODES]
10253 && strcmp (insn->name, insn[1].name) == 0);
10254
10255 /* If the expression was written as an unsigned number,
10256 only treat it as signed if there are no more
10257 alternatives. */
10258 if (more
10259 && *args == 'j'
10260 && sizeof (imm_expr.X_add_number) <= 4
10261 && imm_expr.X_op == O_constant
10262 && imm_expr.X_add_number < 0
10263 && imm_expr.X_unsigned
10264 && HAVE_64BIT_GPRS)
10265 break;
10266
10267 /* For compatibility with older assemblers, we accept
10268 0x8000-0xffff as signed 16-bit numbers when only
10269 signed numbers are allowed. */
10270 if (*args == 'i')
10271 minval = 0, maxval = 0xffff;
10272 else if (more)
10273 minval = -0x8000, maxval = 0x7fff;
252b5132 10274 else
5e0116d5
RS
10275 minval = -0x8000, maxval = 0xffff;
10276
10277 if (imm_expr.X_op != O_constant
10278 || imm_expr.X_add_number < minval
10279 || imm_expr.X_add_number > maxval)
252b5132
RH
10280 {
10281 if (more)
10282 break;
2ae7e77b
AH
10283 if (imm_expr.X_op == O_constant
10284 || imm_expr.X_op == O_big)
f71d0d44 10285 as_bad (_("Expression out of range"));
252b5132
RH
10286 }
10287 }
10288 s = expr_end;
10289 continue;
10290
90ecf173 10291 case 'o': /* 16-bit offset. */
4614d845
MR
10292 offset_reloc[0] = BFD_RELOC_LO16;
10293 offset_reloc[1] = BFD_RELOC_UNUSED;
10294 offset_reloc[2] = BFD_RELOC_UNUSED;
10295
5e0116d5
RS
10296 /* Check whether there is only a single bracketed expression
10297 left. If so, it must be the base register and the
10298 constant must be zero. */
10299 if (*s == '(' && strchr (s + 1, '(') == 0)
10300 {
10301 offset_expr.X_op = O_constant;
10302 offset_expr.X_add_number = 0;
10303 continue;
10304 }
252b5132
RH
10305
10306 /* If this value won't fit into a 16 bit offset, then go
10307 find a macro that will generate the 32 bit offset
afdbd6d0 10308 code pattern. */
5e0116d5 10309 if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
252b5132
RH
10310 && (offset_expr.X_op != O_constant
10311 || offset_expr.X_add_number >= 0x8000
afdbd6d0 10312 || offset_expr.X_add_number < -0x8000))
252b5132
RH
10313 break;
10314
252b5132
RH
10315 s = expr_end;
10316 continue;
10317
90ecf173 10318 case 'p': /* PC-relative offset. */
0b25d3e6 10319 *offset_reloc = BFD_RELOC_16_PCREL_S2;
252b5132
RH
10320 my_getExpression (&offset_expr, s);
10321 s = expr_end;
10322 continue;
10323
90ecf173 10324 case 'u': /* Upper 16 bits. */
5e0116d5
RS
10325 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0
10326 && imm_expr.X_op == O_constant
10327 && (imm_expr.X_add_number < 0
10328 || imm_expr.X_add_number >= 0x10000))
88320db2
MR
10329 as_bad (_("lui expression (%lu) not in range 0..65535"),
10330 (unsigned long) imm_expr.X_add_number);
252b5132
RH
10331 s = expr_end;
10332 continue;
10333
90ecf173 10334 case 'a': /* 26-bit address. */
252b5132
RH
10335 my_getExpression (&offset_expr, s);
10336 s = expr_end;
f6688943 10337 *offset_reloc = BFD_RELOC_MIPS_JMP;
252b5132
RH
10338 continue;
10339
90ecf173
MR
10340 case 'N': /* 3-bit branch condition code. */
10341 case 'M': /* 3-bit compare condition code. */
707bfff6 10342 rtype = RTYPE_CCC;
90ecf173 10343 if (ip->insn_mo->pinfo & (FP_D | FP_S))
707bfff6
TS
10344 rtype |= RTYPE_FCC;
10345 if (!reg_lookup (&s, rtype, &regno))
252b5132 10346 break;
90ecf173
MR
10347 if ((strcmp (str + strlen (str) - 3, ".ps") == 0
10348 || strcmp (str + strlen (str) - 5, "any2f") == 0
10349 || strcmp (str + strlen (str) - 5, "any2t") == 0)
30c378fd 10350 && (regno & 1) != 0)
90ecf173
MR
10351 as_warn (_("Condition code register should be even for %s, "
10352 "was %d"),
20203fb9 10353 str, regno);
90ecf173
MR
10354 if ((strcmp (str + strlen (str) - 5, "any4f") == 0
10355 || strcmp (str + strlen (str) - 5, "any4t") == 0)
30c378fd 10356 && (regno & 3) != 0)
90ecf173
MR
10357 as_warn (_("Condition code register should be 0 or 4 for %s, "
10358 "was %d"),
20203fb9 10359 str, regno);
252b5132 10360 if (*args == 'N')
bf12938e 10361 INSERT_OPERAND (BCC, *ip, regno);
252b5132 10362 else
bf12938e 10363 INSERT_OPERAND (CCC, *ip, regno);
beae10d5 10364 continue;
252b5132 10365
156c2f8b
NC
10366 case 'H':
10367 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
10368 s += 2;
3882b010 10369 if (ISDIGIT (*s))
156c2f8b
NC
10370 {
10371 c = 0;
10372 do
10373 {
10374 c *= 10;
10375 c += *s - '0';
10376 ++s;
10377 }
3882b010 10378 while (ISDIGIT (*s));
156c2f8b
NC
10379 }
10380 else
10381 c = 8; /* Invalid sel value. */
10382
10383 if (c > 7)
f71d0d44 10384 as_bad (_("Invalid coprocessor sub-selection value (0-7)"));
156c2f8b
NC
10385 ip->insn_opcode |= c;
10386 continue;
10387
60b63b72
RS
10388 case 'e':
10389 /* Must be at least one digit. */
10390 my_getExpression (&imm_expr, s);
10391 check_absolute_expr (ip, &imm_expr);
10392
10393 if ((unsigned long) imm_expr.X_add_number
10394 > (unsigned long) OP_MASK_VECBYTE)
10395 {
10396 as_bad (_("bad byte vector index (%ld)"),
10397 (long) imm_expr.X_add_number);
10398 imm_expr.X_add_number = 0;
10399 }
10400
bf12938e 10401 INSERT_OPERAND (VECBYTE, *ip, imm_expr.X_add_number);
60b63b72
RS
10402 imm_expr.X_op = O_absent;
10403 s = expr_end;
10404 continue;
10405
10406 case '%':
10407 my_getExpression (&imm_expr, s);
10408 check_absolute_expr (ip, &imm_expr);
10409
10410 if ((unsigned long) imm_expr.X_add_number
10411 > (unsigned long) OP_MASK_VECALIGN)
10412 {
10413 as_bad (_("bad byte vector index (%ld)"),
10414 (long) imm_expr.X_add_number);
10415 imm_expr.X_add_number = 0;
10416 }
10417
bf12938e 10418 INSERT_OPERAND (VECALIGN, *ip, imm_expr.X_add_number);
60b63b72
RS
10419 imm_expr.X_op = O_absent;
10420 s = expr_end;
10421 continue;
10422
252b5132 10423 default:
f71d0d44 10424 as_bad (_("Bad char = '%c'\n"), *args);
252b5132
RH
10425 internalError ();
10426 }
10427 break;
10428 }
10429 /* Args don't match. */
10430 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
10431 !strcmp (insn->name, insn[1].name))
10432 {
10433 ++insn;
10434 s = argsStart;
f71d0d44 10435 insn_error = _("Illegal operands");
252b5132
RH
10436 continue;
10437 }
268f6bed 10438 if (save_c)
570de991 10439 *(--argsStart) = save_c;
f71d0d44 10440 insn_error = _("Illegal operands");
252b5132
RH
10441 return;
10442 }
10443}
10444
0499d65b
TS
10445#define SKIP_SPACE_TABS(S) { while (*(S) == ' ' || *(S) == '\t') ++(S); }
10446
252b5132
RH
10447/* This routine assembles an instruction into its binary format when
10448 assembling for the mips16. As a side effect, it sets one of the
10449 global variables imm_reloc or offset_reloc to the type of
10450 relocation to do if one of the operands is an address expression.
10451 It also sets mips16_small and mips16_ext if the user explicitly
10452 requested a small or extended instruction. */
10453
10454static void
17a2f251 10455mips16_ip (char *str, struct mips_cl_insn *ip)
252b5132
RH
10456{
10457 char *s;
10458 const char *args;
10459 struct mips_opcode *insn;
10460 char *argsstart;
10461 unsigned int regno;
10462 unsigned int lastregno = 0;
10463 char *s_reset;
d6f16593 10464 size_t i;
252b5132
RH
10465
10466 insn_error = NULL;
10467
b34976b6
AM
10468 mips16_small = FALSE;
10469 mips16_ext = FALSE;
252b5132 10470
3882b010 10471 for (s = str; ISLOWER (*s); ++s)
252b5132
RH
10472 ;
10473 switch (*s)
10474 {
10475 case '\0':
10476 break;
10477
10478 case ' ':
10479 *s++ = '\0';
10480 break;
10481
10482 case '.':
10483 if (s[1] == 't' && s[2] == ' ')
10484 {
10485 *s = '\0';
b34976b6 10486 mips16_small = TRUE;
252b5132
RH
10487 s += 3;
10488 break;
10489 }
10490 else if (s[1] == 'e' && s[2] == ' ')
10491 {
10492 *s = '\0';
b34976b6 10493 mips16_ext = TRUE;
252b5132
RH
10494 s += 3;
10495 break;
10496 }
10497 /* Fall through. */
10498 default:
10499 insn_error = _("unknown opcode");
10500 return;
10501 }
10502
10503 if (mips_opts.noautoextend && ! mips16_ext)
b34976b6 10504 mips16_small = TRUE;
252b5132
RH
10505
10506 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
10507 {
10508 insn_error = _("unrecognized opcode");
10509 return;
10510 }
10511
10512 argsstart = s;
10513 for (;;)
10514 {
9b3f89ee
TS
10515 bfd_boolean ok;
10516
9c2799c2 10517 gas_assert (strcmp (insn->name, str) == 0);
252b5132 10518
037b32b9 10519 ok = is_opcode_valid_16 (insn);
9b3f89ee
TS
10520 if (! ok)
10521 {
10522 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes]
10523 && strcmp (insn->name, insn[1].name) == 0)
10524 {
10525 ++insn;
10526 continue;
10527 }
10528 else
10529 {
10530 if (!insn_error)
10531 {
10532 static char buf[100];
10533 sprintf (buf,
10534 _("opcode not supported on this processor: %s (%s)"),
10535 mips_cpu_info_from_arch (mips_opts.arch)->name,
10536 mips_cpu_info_from_isa (mips_opts.isa)->name);
10537 insn_error = buf;
10538 }
10539 return;
10540 }
10541 }
10542
1e915849 10543 create_insn (ip, insn);
252b5132 10544 imm_expr.X_op = O_absent;
f6688943
TS
10545 imm_reloc[0] = BFD_RELOC_UNUSED;
10546 imm_reloc[1] = BFD_RELOC_UNUSED;
10547 imm_reloc[2] = BFD_RELOC_UNUSED;
5f74bc13 10548 imm2_expr.X_op = O_absent;
252b5132 10549 offset_expr.X_op = O_absent;
f6688943
TS
10550 offset_reloc[0] = BFD_RELOC_UNUSED;
10551 offset_reloc[1] = BFD_RELOC_UNUSED;
10552 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132
RH
10553 for (args = insn->args; 1; ++args)
10554 {
10555 int c;
10556
10557 if (*s == ' ')
10558 ++s;
10559
10560 /* In this switch statement we call break if we did not find
10561 a match, continue if we did find a match, or return if we
10562 are done. */
10563
10564 c = *args;
10565 switch (c)
10566 {
10567 case '\0':
10568 if (*s == '\0')
10569 {
10570 /* Stuff the immediate value in now, if we can. */
10571 if (imm_expr.X_op == O_constant
f6688943 10572 && *imm_reloc > BFD_RELOC_UNUSED
738e5348
RS
10573 && *imm_reloc != BFD_RELOC_MIPS16_GOT16
10574 && *imm_reloc != BFD_RELOC_MIPS16_CALL16
252b5132
RH
10575 && insn->pinfo != INSN_MACRO)
10576 {
d6f16593
MR
10577 valueT tmp;
10578
10579 switch (*offset_reloc)
10580 {
10581 case BFD_RELOC_MIPS16_HI16_S:
10582 tmp = (imm_expr.X_add_number + 0x8000) >> 16;
10583 break;
10584
10585 case BFD_RELOC_MIPS16_HI16:
10586 tmp = imm_expr.X_add_number >> 16;
10587 break;
10588
10589 case BFD_RELOC_MIPS16_LO16:
10590 tmp = ((imm_expr.X_add_number + 0x8000) & 0xffff)
10591 - 0x8000;
10592 break;
10593
10594 case BFD_RELOC_UNUSED:
10595 tmp = imm_expr.X_add_number;
10596 break;
10597
10598 default:
10599 internalError ();
10600 }
10601 *offset_reloc = BFD_RELOC_UNUSED;
10602
c4e7957c 10603 mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
d6f16593 10604 tmp, TRUE, mips16_small,
252b5132
RH
10605 mips16_ext, &ip->insn_opcode,
10606 &ip->use_extend, &ip->extend);
10607 imm_expr.X_op = O_absent;
f6688943 10608 *imm_reloc = BFD_RELOC_UNUSED;
252b5132
RH
10609 }
10610
10611 return;
10612 }
10613 break;
10614
10615 case ',':
10616 if (*s++ == c)
10617 continue;
10618 s--;
10619 switch (*++args)
10620 {
10621 case 'v':
bf12938e 10622 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
252b5132
RH
10623 continue;
10624 case 'w':
bf12938e 10625 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
252b5132
RH
10626 continue;
10627 }
10628 break;
10629
10630 case '(':
10631 case ')':
10632 if (*s++ == c)
10633 continue;
10634 break;
10635
10636 case 'v':
10637 case 'w':
10638 if (s[0] != '$')
10639 {
10640 if (c == 'v')
bf12938e 10641 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
252b5132 10642 else
bf12938e 10643 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
252b5132
RH
10644 ++args;
10645 continue;
10646 }
10647 /* Fall through. */
10648 case 'x':
10649 case 'y':
10650 case 'z':
10651 case 'Z':
10652 case '0':
10653 case 'S':
10654 case 'R':
10655 case 'X':
10656 case 'Y':
707bfff6
TS
10657 s_reset = s;
10658 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
252b5132 10659 {
707bfff6 10660 if (c == 'v' || c == 'w')
85b51719 10661 {
707bfff6 10662 if (c == 'v')
a9e24354 10663 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
707bfff6 10664 else
a9e24354 10665 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
707bfff6
TS
10666 ++args;
10667 continue;
85b51719 10668 }
707bfff6 10669 break;
252b5132
RH
10670 }
10671
10672 if (*s == ' ')
10673 ++s;
10674 if (args[1] != *s)
10675 {
10676 if (c == 'v' || c == 'w')
10677 {
10678 regno = mips16_to_32_reg_map[lastregno];
10679 s = s_reset;
f9419b05 10680 ++args;
252b5132
RH
10681 }
10682 }
10683
10684 switch (c)
10685 {
10686 case 'x':
10687 case 'y':
10688 case 'z':
10689 case 'v':
10690 case 'w':
10691 case 'Z':
10692 regno = mips32_to_16_reg_map[regno];
10693 break;
10694
10695 case '0':
10696 if (regno != 0)
10697 regno = ILLEGAL_REG;
10698 break;
10699
10700 case 'S':
10701 if (regno != SP)
10702 regno = ILLEGAL_REG;
10703 break;
10704
10705 case 'R':
10706 if (regno != RA)
10707 regno = ILLEGAL_REG;
10708 break;
10709
10710 case 'X':
10711 case 'Y':
741fe287
MR
10712 if (regno == AT && mips_opts.at)
10713 {
10714 if (mips_opts.at == ATREG)
10715 as_warn (_("used $at without \".set noat\""));
10716 else
10717 as_warn (_("used $%u with \".set at=$%u\""),
10718 regno, mips_opts.at);
10719 }
252b5132
RH
10720 break;
10721
10722 default:
10723 internalError ();
10724 }
10725
10726 if (regno == ILLEGAL_REG)
10727 break;
10728
10729 switch (c)
10730 {
10731 case 'x':
10732 case 'v':
bf12938e 10733 MIPS16_INSERT_OPERAND (RX, *ip, regno);
252b5132
RH
10734 break;
10735 case 'y':
10736 case 'w':
bf12938e 10737 MIPS16_INSERT_OPERAND (RY, *ip, regno);
252b5132
RH
10738 break;
10739 case 'z':
bf12938e 10740 MIPS16_INSERT_OPERAND (RZ, *ip, regno);
252b5132
RH
10741 break;
10742 case 'Z':
bf12938e 10743 MIPS16_INSERT_OPERAND (MOVE32Z, *ip, regno);
252b5132
RH
10744 case '0':
10745 case 'S':
10746 case 'R':
10747 break;
10748 case 'X':
bf12938e 10749 MIPS16_INSERT_OPERAND (REGR32, *ip, regno);
252b5132
RH
10750 break;
10751 case 'Y':
10752 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
bf12938e 10753 MIPS16_INSERT_OPERAND (REG32R, *ip, regno);
252b5132
RH
10754 break;
10755 default:
10756 internalError ();
10757 }
10758
10759 lastregno = regno;
10760 continue;
10761
10762 case 'P':
10763 if (strncmp (s, "$pc", 3) == 0)
10764 {
10765 s += 3;
10766 continue;
10767 }
10768 break;
10769
252b5132
RH
10770 case '5':
10771 case 'H':
10772 case 'W':
10773 case 'D':
10774 case 'j':
252b5132
RH
10775 case 'V':
10776 case 'C':
10777 case 'U':
10778 case 'k':
10779 case 'K':
d6f16593
MR
10780 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
10781 if (i > 0)
252b5132 10782 {
d6f16593 10783 if (imm_expr.X_op != O_constant)
252b5132 10784 {
b34976b6 10785 mips16_ext = TRUE;
b34976b6 10786 ip->use_extend = TRUE;
252b5132 10787 ip->extend = 0;
252b5132 10788 }
d6f16593
MR
10789 else
10790 {
10791 /* We need to relax this instruction. */
10792 *offset_reloc = *imm_reloc;
10793 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
10794 }
10795 s = expr_end;
10796 continue;
252b5132 10797 }
d6f16593
MR
10798 *imm_reloc = BFD_RELOC_UNUSED;
10799 /* Fall through. */
10800 case '<':
10801 case '>':
10802 case '[':
10803 case ']':
10804 case '4':
10805 case '8':
10806 my_getExpression (&imm_expr, s);
252b5132
RH
10807 if (imm_expr.X_op == O_register)
10808 {
10809 /* What we thought was an expression turned out to
10810 be a register. */
10811
10812 if (s[0] == '(' && args[1] == '(')
10813 {
10814 /* It looks like the expression was omitted
10815 before a register indirection, which means
10816 that the expression is implicitly zero. We
10817 still set up imm_expr, so that we handle
10818 explicit extensions correctly. */
10819 imm_expr.X_op = O_constant;
10820 imm_expr.X_add_number = 0;
f6688943 10821 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
10822 continue;
10823 }
10824
10825 break;
10826 }
10827
10828 /* We need to relax this instruction. */
f6688943 10829 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
10830 s = expr_end;
10831 continue;
10832
10833 case 'p':
10834 case 'q':
10835 case 'A':
10836 case 'B':
10837 case 'E':
10838 /* We use offset_reloc rather than imm_reloc for the PC
10839 relative operands. This lets macros with both
10840 immediate and address operands work correctly. */
10841 my_getExpression (&offset_expr, s);
10842
10843 if (offset_expr.X_op == O_register)
10844 break;
10845
10846 /* We need to relax this instruction. */
f6688943 10847 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
10848 s = expr_end;
10849 continue;
10850
10851 case '6': /* break code */
10852 my_getExpression (&imm_expr, s);
10853 check_absolute_expr (ip, &imm_expr);
10854 if ((unsigned long) imm_expr.X_add_number > 63)
bf12938e
RS
10855 as_warn (_("Invalid value for `%s' (%lu)"),
10856 ip->insn_mo->name,
10857 (unsigned long) imm_expr.X_add_number);
10858 MIPS16_INSERT_OPERAND (IMM6, *ip, imm_expr.X_add_number);
252b5132
RH
10859 imm_expr.X_op = O_absent;
10860 s = expr_end;
10861 continue;
10862
10863 case 'a': /* 26 bit address */
10864 my_getExpression (&offset_expr, s);
10865 s = expr_end;
f6688943 10866 *offset_reloc = BFD_RELOC_MIPS16_JMP;
252b5132
RH
10867 ip->insn_opcode <<= 16;
10868 continue;
10869
10870 case 'l': /* register list for entry macro */
10871 case 'L': /* register list for exit macro */
10872 {
10873 int mask;
10874
10875 if (c == 'l')
10876 mask = 0;
10877 else
10878 mask = 7 << 3;
10879 while (*s != '\0')
10880 {
707bfff6 10881 unsigned int freg, reg1, reg2;
252b5132
RH
10882
10883 while (*s == ' ' || *s == ',')
10884 ++s;
707bfff6 10885 if (reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
252b5132 10886 freg = 0;
707bfff6
TS
10887 else if (reg_lookup (&s, RTYPE_FPU, &reg1))
10888 freg = 1;
252b5132
RH
10889 else
10890 {
707bfff6
TS
10891 as_bad (_("can't parse register list"));
10892 break;
252b5132
RH
10893 }
10894 if (*s == ' ')
10895 ++s;
10896 if (*s != '-')
10897 reg2 = reg1;
10898 else
10899 {
10900 ++s;
707bfff6
TS
10901 if (!reg_lookup (&s, freg ? RTYPE_FPU
10902 : (RTYPE_GP | RTYPE_NUM), &reg2))
252b5132 10903 {
707bfff6
TS
10904 as_bad (_("invalid register list"));
10905 break;
252b5132
RH
10906 }
10907 }
10908 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
10909 {
10910 mask &= ~ (7 << 3);
10911 mask |= 5 << 3;
10912 }
10913 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
10914 {
10915 mask &= ~ (7 << 3);
10916 mask |= 6 << 3;
10917 }
10918 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
10919 mask |= (reg2 - 3) << 3;
10920 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
10921 mask |= (reg2 - 15) << 1;
f9419b05 10922 else if (reg1 == RA && reg2 == RA)
252b5132
RH
10923 mask |= 1;
10924 else
10925 {
10926 as_bad (_("invalid register list"));
10927 break;
10928 }
10929 }
10930 /* The mask is filled in in the opcode table for the
10931 benefit of the disassembler. We remove it before
10932 applying the actual mask. */
10933 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
10934 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
10935 }
10936 continue;
10937
0499d65b
TS
10938 case 'm': /* Register list for save insn. */
10939 case 'M': /* Register list for restore insn. */
10940 {
10941 int opcode = 0;
10942 int framesz = 0, seen_framesz = 0;
91d6fa6a 10943 int nargs = 0, statics = 0, sregs = 0;
0499d65b
TS
10944
10945 while (*s != '\0')
10946 {
10947 unsigned int reg1, reg2;
10948
10949 SKIP_SPACE_TABS (s);
10950 while (*s == ',')
10951 ++s;
10952 SKIP_SPACE_TABS (s);
10953
10954 my_getExpression (&imm_expr, s);
10955 if (imm_expr.X_op == O_constant)
10956 {
10957 /* Handle the frame size. */
10958 if (seen_framesz)
10959 {
10960 as_bad (_("more than one frame size in list"));
10961 break;
10962 }
10963 seen_framesz = 1;
10964 framesz = imm_expr.X_add_number;
10965 imm_expr.X_op = O_absent;
10966 s = expr_end;
10967 continue;
10968 }
10969
707bfff6 10970 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
0499d65b
TS
10971 {
10972 as_bad (_("can't parse register list"));
10973 break;
10974 }
0499d65b 10975
707bfff6
TS
10976 while (*s == ' ')
10977 ++s;
10978
0499d65b
TS
10979 if (*s != '-')
10980 reg2 = reg1;
10981 else
10982 {
10983 ++s;
707bfff6
TS
10984 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg2)
10985 || reg2 < reg1)
0499d65b
TS
10986 {
10987 as_bad (_("can't parse register list"));
10988 break;
10989 }
0499d65b
TS
10990 }
10991
10992 while (reg1 <= reg2)
10993 {
10994 if (reg1 >= 4 && reg1 <= 7)
10995 {
3a93f742 10996 if (!seen_framesz)
0499d65b 10997 /* args $a0-$a3 */
91d6fa6a 10998 nargs |= 1 << (reg1 - 4);
0499d65b
TS
10999 else
11000 /* statics $a0-$a3 */
11001 statics |= 1 << (reg1 - 4);
11002 }
11003 else if ((reg1 >= 16 && reg1 <= 23) || reg1 == 30)
11004 {
11005 /* $s0-$s8 */
11006 sregs |= 1 << ((reg1 == 30) ? 8 : (reg1 - 16));
11007 }
11008 else if (reg1 == 31)
11009 {
11010 /* Add $ra to insn. */
11011 opcode |= 0x40;
11012 }
11013 else
11014 {
11015 as_bad (_("unexpected register in list"));
11016 break;
11017 }
11018 if (++reg1 == 24)
11019 reg1 = 30;
11020 }
11021 }
11022
11023 /* Encode args/statics combination. */
91d6fa6a 11024 if (nargs & statics)
0499d65b 11025 as_bad (_("arg/static registers overlap"));
91d6fa6a 11026 else if (nargs == 0xf)
0499d65b
TS
11027 /* All $a0-$a3 are args. */
11028 opcode |= MIPS16_ALL_ARGS << 16;
11029 else if (statics == 0xf)
11030 /* All $a0-$a3 are statics. */
11031 opcode |= MIPS16_ALL_STATICS << 16;
11032 else
11033 {
11034 int narg = 0, nstat = 0;
11035
11036 /* Count arg registers. */
91d6fa6a 11037 while (nargs & 0x1)
0499d65b 11038 {
91d6fa6a 11039 nargs >>= 1;
0499d65b
TS
11040 narg++;
11041 }
91d6fa6a 11042 if (nargs != 0)
0499d65b
TS
11043 as_bad (_("invalid arg register list"));
11044
11045 /* Count static registers. */
11046 while (statics & 0x8)
11047 {
11048 statics = (statics << 1) & 0xf;
11049 nstat++;
11050 }
11051 if (statics != 0)
11052 as_bad (_("invalid static register list"));
11053
11054 /* Encode args/statics. */
11055 opcode |= ((narg << 2) | nstat) << 16;
11056 }
11057
11058 /* Encode $s0/$s1. */
11059 if (sregs & (1 << 0)) /* $s0 */
11060 opcode |= 0x20;
11061 if (sregs & (1 << 1)) /* $s1 */
11062 opcode |= 0x10;
11063 sregs >>= 2;
11064
11065 if (sregs != 0)
11066 {
11067 /* Count regs $s2-$s8. */
11068 int nsreg = 0;
11069 while (sregs & 1)
11070 {
11071 sregs >>= 1;
11072 nsreg++;
11073 }
11074 if (sregs != 0)
11075 as_bad (_("invalid static register list"));
11076 /* Encode $s2-$s8. */
11077 opcode |= nsreg << 24;
11078 }
11079
11080 /* Encode frame size. */
11081 if (!seen_framesz)
11082 as_bad (_("missing frame size"));
11083 else if ((framesz & 7) != 0 || framesz < 0
11084 || framesz > 0xff * 8)
11085 as_bad (_("invalid frame size"));
11086 else if (framesz != 128 || (opcode >> 16) != 0)
11087 {
11088 framesz /= 8;
11089 opcode |= (((framesz & 0xf0) << 16)
11090 | (framesz & 0x0f));
11091 }
11092
11093 /* Finally build the instruction. */
11094 if ((opcode >> 16) != 0 || framesz == 0)
11095 {
11096 ip->use_extend = TRUE;
11097 ip->extend = opcode >> 16;
11098 }
11099 ip->insn_opcode |= opcode & 0x7f;
11100 }
11101 continue;
11102
252b5132
RH
11103 case 'e': /* extend code */
11104 my_getExpression (&imm_expr, s);
11105 check_absolute_expr (ip, &imm_expr);
11106 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
11107 {
11108 as_warn (_("Invalid value for `%s' (%lu)"),
11109 ip->insn_mo->name,
11110 (unsigned long) imm_expr.X_add_number);
11111 imm_expr.X_add_number &= 0x7ff;
11112 }
11113 ip->insn_opcode |= imm_expr.X_add_number;
11114 imm_expr.X_op = O_absent;
11115 s = expr_end;
11116 continue;
11117
11118 default:
11119 internalError ();
11120 }
11121 break;
11122 }
11123
11124 /* Args don't match. */
11125 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
11126 strcmp (insn->name, insn[1].name) == 0)
11127 {
11128 ++insn;
11129 s = argsstart;
11130 continue;
11131 }
11132
11133 insn_error = _("illegal operands");
11134
11135 return;
11136 }
11137}
11138
11139/* This structure holds information we know about a mips16 immediate
11140 argument type. */
11141
e972090a
NC
11142struct mips16_immed_operand
11143{
252b5132
RH
11144 /* The type code used in the argument string in the opcode table. */
11145 int type;
11146 /* The number of bits in the short form of the opcode. */
11147 int nbits;
11148 /* The number of bits in the extended form of the opcode. */
11149 int extbits;
11150 /* The amount by which the short form is shifted when it is used;
11151 for example, the sw instruction has a shift count of 2. */
11152 int shift;
11153 /* The amount by which the short form is shifted when it is stored
11154 into the instruction code. */
11155 int op_shift;
11156 /* Non-zero if the short form is unsigned. */
11157 int unsp;
11158 /* Non-zero if the extended form is unsigned. */
11159 int extu;
11160 /* Non-zero if the value is PC relative. */
11161 int pcrel;
11162};
11163
11164/* The mips16 immediate operand types. */
11165
11166static const struct mips16_immed_operand mips16_immed_operands[] =
11167{
11168 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
11169 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
11170 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
11171 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
11172 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
11173 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
11174 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
11175 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
11176 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
11177 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
11178 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
11179 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
11180 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
11181 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
11182 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
11183 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
11184 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
11185 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
11186 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
11187 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
11188 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
11189};
11190
11191#define MIPS16_NUM_IMMED \
11192 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
11193
11194/* Handle a mips16 instruction with an immediate value. This or's the
11195 small immediate value into *INSN. It sets *USE_EXTEND to indicate
11196 whether an extended value is needed; if one is needed, it sets
11197 *EXTEND to the value. The argument type is TYPE. The value is VAL.
11198 If SMALL is true, an unextended opcode was explicitly requested.
11199 If EXT is true, an extended opcode was explicitly requested. If
11200 WARN is true, warn if EXT does not match reality. */
11201
11202static void
17a2f251
TS
11203mips16_immed (char *file, unsigned int line, int type, offsetT val,
11204 bfd_boolean warn, bfd_boolean small, bfd_boolean ext,
11205 unsigned long *insn, bfd_boolean *use_extend,
11206 unsigned short *extend)
252b5132 11207{
3994f87e 11208 const struct mips16_immed_operand *op;
252b5132 11209 int mintiny, maxtiny;
b34976b6 11210 bfd_boolean needext;
252b5132
RH
11211
11212 op = mips16_immed_operands;
11213 while (op->type != type)
11214 {
11215 ++op;
9c2799c2 11216 gas_assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
252b5132
RH
11217 }
11218
11219 if (op->unsp)
11220 {
11221 if (type == '<' || type == '>' || type == '[' || type == ']')
11222 {
11223 mintiny = 1;
11224 maxtiny = 1 << op->nbits;
11225 }
11226 else
11227 {
11228 mintiny = 0;
11229 maxtiny = (1 << op->nbits) - 1;
11230 }
11231 }
11232 else
11233 {
11234 mintiny = - (1 << (op->nbits - 1));
11235 maxtiny = (1 << (op->nbits - 1)) - 1;
11236 }
11237
11238 /* Branch offsets have an implicit 0 in the lowest bit. */
11239 if (type == 'p' || type == 'q')
11240 val /= 2;
11241
11242 if ((val & ((1 << op->shift) - 1)) != 0
11243 || val < (mintiny << op->shift)
11244 || val > (maxtiny << op->shift))
b34976b6 11245 needext = TRUE;
252b5132 11246 else
b34976b6 11247 needext = FALSE;
252b5132
RH
11248
11249 if (warn && ext && ! needext)
beae10d5
KH
11250 as_warn_where (file, line,
11251 _("extended operand requested but not required"));
252b5132
RH
11252 if (small && needext)
11253 as_bad_where (file, line, _("invalid unextended operand value"));
11254
11255 if (small || (! ext && ! needext))
11256 {
11257 int insnval;
11258
b34976b6 11259 *use_extend = FALSE;
252b5132
RH
11260 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
11261 insnval <<= op->op_shift;
11262 *insn |= insnval;
11263 }
11264 else
11265 {
11266 long minext, maxext;
11267 int extval;
11268
11269 if (op->extu)
11270 {
11271 minext = 0;
11272 maxext = (1 << op->extbits) - 1;
11273 }
11274 else
11275 {
11276 minext = - (1 << (op->extbits - 1));
11277 maxext = (1 << (op->extbits - 1)) - 1;
11278 }
11279 if (val < minext || val > maxext)
11280 as_bad_where (file, line,
11281 _("operand value out of range for instruction"));
11282
b34976b6 11283 *use_extend = TRUE;
252b5132
RH
11284 if (op->extbits == 16)
11285 {
11286 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
11287 val &= 0x1f;
11288 }
11289 else if (op->extbits == 15)
11290 {
11291 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
11292 val &= 0xf;
11293 }
11294 else
11295 {
11296 extval = ((val & 0x1f) << 6) | (val & 0x20);
11297 val = 0;
11298 }
11299
11300 *extend = (unsigned short) extval;
11301 *insn |= val;
11302 }
11303}
11304\f
d6f16593 11305struct percent_op_match
ad8d3bb3 11306{
5e0116d5
RS
11307 const char *str;
11308 bfd_reloc_code_real_type reloc;
d6f16593
MR
11309};
11310
11311static const struct percent_op_match mips_percent_op[] =
ad8d3bb3 11312{
5e0116d5 11313 {"%lo", BFD_RELOC_LO16},
ad8d3bb3 11314#ifdef OBJ_ELF
5e0116d5
RS
11315 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
11316 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
11317 {"%call16", BFD_RELOC_MIPS_CALL16},
11318 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
11319 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
11320 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
11321 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
11322 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
11323 {"%got", BFD_RELOC_MIPS_GOT16},
11324 {"%gp_rel", BFD_RELOC_GPREL16},
11325 {"%half", BFD_RELOC_16},
11326 {"%highest", BFD_RELOC_MIPS_HIGHEST},
11327 {"%higher", BFD_RELOC_MIPS_HIGHER},
11328 {"%neg", BFD_RELOC_MIPS_SUB},
3f98094e
DJ
11329 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
11330 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
11331 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
11332 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
11333 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
11334 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
11335 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
ad8d3bb3 11336#endif
5e0116d5 11337 {"%hi", BFD_RELOC_HI16_S}
ad8d3bb3
TS
11338};
11339
d6f16593
MR
11340static const struct percent_op_match mips16_percent_op[] =
11341{
11342 {"%lo", BFD_RELOC_MIPS16_LO16},
11343 {"%gprel", BFD_RELOC_MIPS16_GPREL},
738e5348
RS
11344 {"%got", BFD_RELOC_MIPS16_GOT16},
11345 {"%call16", BFD_RELOC_MIPS16_CALL16},
d6f16593
MR
11346 {"%hi", BFD_RELOC_MIPS16_HI16_S}
11347};
11348
252b5132 11349
5e0116d5
RS
11350/* Return true if *STR points to a relocation operator. When returning true,
11351 move *STR over the operator and store its relocation code in *RELOC.
11352 Leave both *STR and *RELOC alone when returning false. */
11353
11354static bfd_boolean
17a2f251 11355parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
252b5132 11356{
d6f16593
MR
11357 const struct percent_op_match *percent_op;
11358 size_t limit, i;
11359
11360 if (mips_opts.mips16)
11361 {
11362 percent_op = mips16_percent_op;
11363 limit = ARRAY_SIZE (mips16_percent_op);
11364 }
11365 else
11366 {
11367 percent_op = mips_percent_op;
11368 limit = ARRAY_SIZE (mips_percent_op);
11369 }
76b3015f 11370
d6f16593 11371 for (i = 0; i < limit; i++)
5e0116d5 11372 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
394f9b3a 11373 {
3f98094e
DJ
11374 int len = strlen (percent_op[i].str);
11375
11376 if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
11377 continue;
11378
5e0116d5
RS
11379 *str += strlen (percent_op[i].str);
11380 *reloc = percent_op[i].reloc;
394f9b3a 11381
5e0116d5
RS
11382 /* Check whether the output BFD supports this relocation.
11383 If not, issue an error and fall back on something safe. */
11384 if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
394f9b3a 11385 {
20203fb9 11386 as_bad (_("relocation %s isn't supported by the current ABI"),
5e0116d5 11387 percent_op[i].str);
01a3f561 11388 *reloc = BFD_RELOC_UNUSED;
394f9b3a 11389 }
5e0116d5 11390 return TRUE;
394f9b3a 11391 }
5e0116d5 11392 return FALSE;
394f9b3a 11393}
ad8d3bb3 11394
ad8d3bb3 11395
5e0116d5
RS
11396/* Parse string STR as a 16-bit relocatable operand. Store the
11397 expression in *EP and the relocations in the array starting
11398 at RELOC. Return the number of relocation operators used.
ad8d3bb3 11399
01a3f561 11400 On exit, EXPR_END points to the first character after the expression. */
ad8d3bb3 11401
5e0116d5 11402static size_t
17a2f251
TS
11403my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
11404 char *str)
ad8d3bb3 11405{
5e0116d5
RS
11406 bfd_reloc_code_real_type reversed_reloc[3];
11407 size_t reloc_index, i;
09b8f35a
RS
11408 int crux_depth, str_depth;
11409 char *crux;
5e0116d5
RS
11410
11411 /* Search for the start of the main expression, recoding relocations
09b8f35a
RS
11412 in REVERSED_RELOC. End the loop with CRUX pointing to the start
11413 of the main expression and with CRUX_DEPTH containing the number
11414 of open brackets at that point. */
11415 reloc_index = -1;
11416 str_depth = 0;
11417 do
fb1b3232 11418 {
09b8f35a
RS
11419 reloc_index++;
11420 crux = str;
11421 crux_depth = str_depth;
11422
11423 /* Skip over whitespace and brackets, keeping count of the number
11424 of brackets. */
11425 while (*str == ' ' || *str == '\t' || *str == '(')
11426 if (*str++ == '(')
11427 str_depth++;
5e0116d5 11428 }
09b8f35a
RS
11429 while (*str == '%'
11430 && reloc_index < (HAVE_NEWABI ? 3 : 1)
11431 && parse_relocation (&str, &reversed_reloc[reloc_index]));
ad8d3bb3 11432
09b8f35a 11433 my_getExpression (ep, crux);
5e0116d5 11434 str = expr_end;
394f9b3a 11435
5e0116d5 11436 /* Match every open bracket. */
09b8f35a 11437 while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
5e0116d5 11438 if (*str++ == ')')
09b8f35a 11439 crux_depth--;
394f9b3a 11440
09b8f35a 11441 if (crux_depth > 0)
20203fb9 11442 as_bad (_("unclosed '('"));
394f9b3a 11443
5e0116d5 11444 expr_end = str;
252b5132 11445
01a3f561 11446 if (reloc_index != 0)
64bdfcaf
RS
11447 {
11448 prev_reloc_op_frag = frag_now;
11449 for (i = 0; i < reloc_index; i++)
11450 reloc[i] = reversed_reloc[reloc_index - 1 - i];
11451 }
fb1b3232 11452
5e0116d5 11453 return reloc_index;
252b5132
RH
11454}
11455
11456static void
17a2f251 11457my_getExpression (expressionS *ep, char *str)
252b5132
RH
11458{
11459 char *save_in;
11460
11461 save_in = input_line_pointer;
11462 input_line_pointer = str;
11463 expression (ep);
11464 expr_end = input_line_pointer;
11465 input_line_pointer = save_in;
252b5132
RH
11466}
11467
252b5132 11468char *
17a2f251 11469md_atof (int type, char *litP, int *sizeP)
252b5132 11470{
499ac353 11471 return ieee_md_atof (type, litP, sizeP, target_big_endian);
252b5132
RH
11472}
11473
11474void
17a2f251 11475md_number_to_chars (char *buf, valueT val, int n)
252b5132
RH
11476{
11477 if (target_big_endian)
11478 number_to_chars_bigendian (buf, val, n);
11479 else
11480 number_to_chars_littleendian (buf, val, n);
11481}
11482\f
ae948b86 11483#ifdef OBJ_ELF
e013f690
TS
11484static int support_64bit_objects(void)
11485{
11486 const char **list, **l;
aa3d8fdf 11487 int yes;
e013f690
TS
11488
11489 list = bfd_target_list ();
11490 for (l = list; *l != NULL; l++)
aeffff67
RS
11491 if (strcmp (*l, ELF_TARGET ("elf64-", "big")) == 0
11492 || strcmp (*l, ELF_TARGET ("elf64-", "little")) == 0)
e013f690 11493 break;
aa3d8fdf 11494 yes = (*l != NULL);
e013f690 11495 free (list);
aa3d8fdf 11496 return yes;
e013f690 11497}
ae948b86 11498#endif /* OBJ_ELF */
e013f690 11499
78849248 11500const char *md_shortopts = "O::g::G:";
252b5132 11501
23fce1e3
NC
11502enum options
11503 {
11504 OPTION_MARCH = OPTION_MD_BASE,
11505 OPTION_MTUNE,
11506 OPTION_MIPS1,
11507 OPTION_MIPS2,
11508 OPTION_MIPS3,
11509 OPTION_MIPS4,
11510 OPTION_MIPS5,
11511 OPTION_MIPS32,
11512 OPTION_MIPS64,
11513 OPTION_MIPS32R2,
11514 OPTION_MIPS64R2,
11515 OPTION_MIPS16,
11516 OPTION_NO_MIPS16,
11517 OPTION_MIPS3D,
11518 OPTION_NO_MIPS3D,
11519 OPTION_MDMX,
11520 OPTION_NO_MDMX,
11521 OPTION_DSP,
11522 OPTION_NO_DSP,
11523 OPTION_MT,
11524 OPTION_NO_MT,
11525 OPTION_SMARTMIPS,
11526 OPTION_NO_SMARTMIPS,
11527 OPTION_DSPR2,
11528 OPTION_NO_DSPR2,
11529 OPTION_COMPAT_ARCH_BASE,
11530 OPTION_M4650,
11531 OPTION_NO_M4650,
11532 OPTION_M4010,
11533 OPTION_NO_M4010,
11534 OPTION_M4100,
11535 OPTION_NO_M4100,
11536 OPTION_M3900,
11537 OPTION_NO_M3900,
11538 OPTION_M7000_HILO_FIX,
6a32d874
CM
11539 OPTION_MNO_7000_HILO_FIX,
11540 OPTION_FIX_24K,
11541 OPTION_NO_FIX_24K,
c67a084a
NC
11542 OPTION_FIX_LOONGSON2F_JUMP,
11543 OPTION_NO_FIX_LOONGSON2F_JUMP,
11544 OPTION_FIX_LOONGSON2F_NOP,
11545 OPTION_NO_FIX_LOONGSON2F_NOP,
23fce1e3
NC
11546 OPTION_FIX_VR4120,
11547 OPTION_NO_FIX_VR4120,
11548 OPTION_FIX_VR4130,
11549 OPTION_NO_FIX_VR4130,
d954098f
DD
11550 OPTION_FIX_CN63XXP1,
11551 OPTION_NO_FIX_CN63XXP1,
23fce1e3
NC
11552 OPTION_TRAP,
11553 OPTION_BREAK,
11554 OPTION_EB,
11555 OPTION_EL,
11556 OPTION_FP32,
11557 OPTION_GP32,
11558 OPTION_CONSTRUCT_FLOATS,
11559 OPTION_NO_CONSTRUCT_FLOATS,
11560 OPTION_FP64,
11561 OPTION_GP64,
11562 OPTION_RELAX_BRANCH,
11563 OPTION_NO_RELAX_BRANCH,
11564 OPTION_MSHARED,
11565 OPTION_MNO_SHARED,
11566 OPTION_MSYM32,
11567 OPTION_MNO_SYM32,
11568 OPTION_SOFT_FLOAT,
11569 OPTION_HARD_FLOAT,
11570 OPTION_SINGLE_FLOAT,
11571 OPTION_DOUBLE_FLOAT,
11572 OPTION_32,
11573#ifdef OBJ_ELF
11574 OPTION_CALL_SHARED,
11575 OPTION_CALL_NONPIC,
11576 OPTION_NON_SHARED,
11577 OPTION_XGOT,
11578 OPTION_MABI,
11579 OPTION_N32,
11580 OPTION_64,
11581 OPTION_MDEBUG,
11582 OPTION_NO_MDEBUG,
11583 OPTION_PDR,
11584 OPTION_NO_PDR,
11585 OPTION_MVXWORKS_PIC,
11586#endif /* OBJ_ELF */
11587 OPTION_END_OF_ENUM
11588 };
11589
e972090a
NC
11590struct option md_longopts[] =
11591{
f9b4148d 11592 /* Options which specify architecture. */
f9b4148d 11593 {"march", required_argument, NULL, OPTION_MARCH},
f9b4148d 11594 {"mtune", required_argument, NULL, OPTION_MTUNE},
252b5132
RH
11595 {"mips0", no_argument, NULL, OPTION_MIPS1},
11596 {"mips1", no_argument, NULL, OPTION_MIPS1},
252b5132 11597 {"mips2", no_argument, NULL, OPTION_MIPS2},
252b5132 11598 {"mips3", no_argument, NULL, OPTION_MIPS3},
252b5132 11599 {"mips4", no_argument, NULL, OPTION_MIPS4},
ae948b86 11600 {"mips5", no_argument, NULL, OPTION_MIPS5},
ae948b86 11601 {"mips32", no_argument, NULL, OPTION_MIPS32},
ae948b86 11602 {"mips64", no_argument, NULL, OPTION_MIPS64},
f9b4148d 11603 {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
5f74bc13 11604 {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
f9b4148d
CD
11605
11606 /* Options which specify Application Specific Extensions (ASEs). */
f9b4148d 11607 {"mips16", no_argument, NULL, OPTION_MIPS16},
f9b4148d 11608 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
f9b4148d 11609 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
f9b4148d 11610 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
f9b4148d 11611 {"mdmx", no_argument, NULL, OPTION_MDMX},
f9b4148d 11612 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
74cd071d 11613 {"mdsp", no_argument, NULL, OPTION_DSP},
74cd071d 11614 {"mno-dsp", no_argument, NULL, OPTION_NO_DSP},
ef2e4d86 11615 {"mmt", no_argument, NULL, OPTION_MT},
ef2e4d86 11616 {"mno-mt", no_argument, NULL, OPTION_NO_MT},
e16bfa71 11617 {"msmartmips", no_argument, NULL, OPTION_SMARTMIPS},
e16bfa71 11618 {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS},
8b082fb1 11619 {"mdspr2", no_argument, NULL, OPTION_DSPR2},
8b082fb1 11620 {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2},
f9b4148d
CD
11621
11622 /* Old-style architecture options. Don't add more of these. */
f9b4148d 11623 {"m4650", no_argument, NULL, OPTION_M4650},
f9b4148d 11624 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
f9b4148d 11625 {"m4010", no_argument, NULL, OPTION_M4010},
f9b4148d 11626 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
f9b4148d 11627 {"m4100", no_argument, NULL, OPTION_M4100},
f9b4148d 11628 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
f9b4148d 11629 {"m3900", no_argument, NULL, OPTION_M3900},
f9b4148d
CD
11630 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
11631
11632 /* Options which enable bug fixes. */
f9b4148d 11633 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
f9b4148d
CD
11634 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
11635 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
c67a084a
NC
11636 {"mfix-loongson2f-jump", no_argument, NULL, OPTION_FIX_LOONGSON2F_JUMP},
11637 {"mno-fix-loongson2f-jump", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_JUMP},
11638 {"mfix-loongson2f-nop", no_argument, NULL, OPTION_FIX_LOONGSON2F_NOP},
11639 {"mno-fix-loongson2f-nop", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_NOP},
d766e8ec
RS
11640 {"mfix-vr4120", no_argument, NULL, OPTION_FIX_VR4120},
11641 {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
7d8e00cf
RS
11642 {"mfix-vr4130", no_argument, NULL, OPTION_FIX_VR4130},
11643 {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
6a32d874
CM
11644 {"mfix-24k", no_argument, NULL, OPTION_FIX_24K},
11645 {"mno-fix-24k", no_argument, NULL, OPTION_NO_FIX_24K},
d954098f
DD
11646 {"mfix-cn63xxp1", no_argument, NULL, OPTION_FIX_CN63XXP1},
11647 {"mno-fix-cn63xxp1", no_argument, NULL, OPTION_NO_FIX_CN63XXP1},
f9b4148d
CD
11648
11649 /* Miscellaneous options. */
252b5132
RH
11650 {"trap", no_argument, NULL, OPTION_TRAP},
11651 {"no-break", no_argument, NULL, OPTION_TRAP},
252b5132
RH
11652 {"break", no_argument, NULL, OPTION_BREAK},
11653 {"no-trap", no_argument, NULL, OPTION_BREAK},
252b5132 11654 {"EB", no_argument, NULL, OPTION_EB},
252b5132 11655 {"EL", no_argument, NULL, OPTION_EL},
ae948b86 11656 {"mfp32", no_argument, NULL, OPTION_FP32},
c97ef257 11657 {"mgp32", no_argument, NULL, OPTION_GP32},
119d663a 11658 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
119d663a 11659 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
316f5878 11660 {"mfp64", no_argument, NULL, OPTION_FP64},
ae948b86 11661 {"mgp64", no_argument, NULL, OPTION_GP64},
4a6a3df4
AO
11662 {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
11663 {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
aa6975fb
ILT
11664 {"mshared", no_argument, NULL, OPTION_MSHARED},
11665 {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
aed1a261
RS
11666 {"msym32", no_argument, NULL, OPTION_MSYM32},
11667 {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
037b32b9
AN
11668 {"msoft-float", no_argument, NULL, OPTION_SOFT_FLOAT},
11669 {"mhard-float", no_argument, NULL, OPTION_HARD_FLOAT},
037b32b9
AN
11670 {"msingle-float", no_argument, NULL, OPTION_SINGLE_FLOAT},
11671 {"mdouble-float", no_argument, NULL, OPTION_DOUBLE_FLOAT},
23fce1e3
NC
11672
11673 /* Strictly speaking this next option is ELF specific,
11674 but we allow it for other ports as well in order to
11675 make testing easier. */
11676 {"32", no_argument, NULL, OPTION_32},
037b32b9 11677
f9b4148d 11678 /* ELF-specific options. */
156c2f8b 11679#ifdef OBJ_ELF
156c2f8b
NC
11680 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
11681 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
861fb55a 11682 {"call_nonpic", no_argument, NULL, OPTION_CALL_NONPIC},
156c2f8b
NC
11683 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
11684 {"xgot", no_argument, NULL, OPTION_XGOT},
ae948b86 11685 {"mabi", required_argument, NULL, OPTION_MABI},
e013f690 11686 {"n32", no_argument, NULL, OPTION_N32},
156c2f8b 11687 {"64", no_argument, NULL, OPTION_64},
ecb4347a 11688 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
ecb4347a 11689 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
dcd410fe 11690 {"mpdr", no_argument, NULL, OPTION_PDR},
dcd410fe 11691 {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
0a44bf69 11692 {"mvxworks-pic", no_argument, NULL, OPTION_MVXWORKS_PIC},
ae948b86 11693#endif /* OBJ_ELF */
f9b4148d 11694
252b5132
RH
11695 {NULL, no_argument, NULL, 0}
11696};
156c2f8b 11697size_t md_longopts_size = sizeof (md_longopts);
252b5132 11698
316f5878
RS
11699/* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
11700 NEW_VALUE. Warn if another value was already specified. Note:
11701 we have to defer parsing the -march and -mtune arguments in order
11702 to handle 'from-abi' correctly, since the ABI might be specified
11703 in a later argument. */
11704
11705static void
17a2f251 11706mips_set_option_string (const char **string_ptr, const char *new_value)
316f5878
RS
11707{
11708 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
11709 as_warn (_("A different %s was already specified, is now %s"),
11710 string_ptr == &mips_arch_string ? "-march" : "-mtune",
11711 new_value);
11712
11713 *string_ptr = new_value;
11714}
11715
252b5132 11716int
17a2f251 11717md_parse_option (int c, char *arg)
252b5132
RH
11718{
11719 switch (c)
11720 {
119d663a
NC
11721 case OPTION_CONSTRUCT_FLOATS:
11722 mips_disable_float_construction = 0;
11723 break;
bdaaa2e1 11724
119d663a
NC
11725 case OPTION_NO_CONSTRUCT_FLOATS:
11726 mips_disable_float_construction = 1;
11727 break;
bdaaa2e1 11728
252b5132
RH
11729 case OPTION_TRAP:
11730 mips_trap = 1;
11731 break;
11732
11733 case OPTION_BREAK:
11734 mips_trap = 0;
11735 break;
11736
11737 case OPTION_EB:
11738 target_big_endian = 1;
11739 break;
11740
11741 case OPTION_EL:
11742 target_big_endian = 0;
11743 break;
11744
11745 case 'O':
4ffff32f
TS
11746 if (arg == NULL)
11747 mips_optimize = 1;
11748 else if (arg[0] == '0')
11749 mips_optimize = 0;
11750 else if (arg[0] == '1')
252b5132
RH
11751 mips_optimize = 1;
11752 else
11753 mips_optimize = 2;
11754 break;
11755
11756 case 'g':
11757 if (arg == NULL)
11758 mips_debug = 2;
11759 else
11760 mips_debug = atoi (arg);
252b5132
RH
11761 break;
11762
11763 case OPTION_MIPS1:
316f5878 11764 file_mips_isa = ISA_MIPS1;
252b5132
RH
11765 break;
11766
11767 case OPTION_MIPS2:
316f5878 11768 file_mips_isa = ISA_MIPS2;
252b5132
RH
11769 break;
11770
11771 case OPTION_MIPS3:
316f5878 11772 file_mips_isa = ISA_MIPS3;
252b5132
RH
11773 break;
11774
11775 case OPTION_MIPS4:
316f5878 11776 file_mips_isa = ISA_MIPS4;
e7af610e
NC
11777 break;
11778
84ea6cf2 11779 case OPTION_MIPS5:
316f5878 11780 file_mips_isa = ISA_MIPS5;
84ea6cf2
NC
11781 break;
11782
e7af610e 11783 case OPTION_MIPS32:
316f5878 11784 file_mips_isa = ISA_MIPS32;
252b5132
RH
11785 break;
11786
af7ee8bf
CD
11787 case OPTION_MIPS32R2:
11788 file_mips_isa = ISA_MIPS32R2;
11789 break;
11790
5f74bc13
CD
11791 case OPTION_MIPS64R2:
11792 file_mips_isa = ISA_MIPS64R2;
11793 break;
11794
84ea6cf2 11795 case OPTION_MIPS64:
316f5878 11796 file_mips_isa = ISA_MIPS64;
84ea6cf2
NC
11797 break;
11798
ec68c924 11799 case OPTION_MTUNE:
316f5878
RS
11800 mips_set_option_string (&mips_tune_string, arg);
11801 break;
ec68c924 11802
316f5878
RS
11803 case OPTION_MARCH:
11804 mips_set_option_string (&mips_arch_string, arg);
252b5132
RH
11805 break;
11806
11807 case OPTION_M4650:
316f5878
RS
11808 mips_set_option_string (&mips_arch_string, "4650");
11809 mips_set_option_string (&mips_tune_string, "4650");
252b5132
RH
11810 break;
11811
11812 case OPTION_NO_M4650:
11813 break;
11814
11815 case OPTION_M4010:
316f5878
RS
11816 mips_set_option_string (&mips_arch_string, "4010");
11817 mips_set_option_string (&mips_tune_string, "4010");
252b5132
RH
11818 break;
11819
11820 case OPTION_NO_M4010:
11821 break;
11822
11823 case OPTION_M4100:
316f5878
RS
11824 mips_set_option_string (&mips_arch_string, "4100");
11825 mips_set_option_string (&mips_tune_string, "4100");
252b5132
RH
11826 break;
11827
11828 case OPTION_NO_M4100:
11829 break;
11830
252b5132 11831 case OPTION_M3900:
316f5878
RS
11832 mips_set_option_string (&mips_arch_string, "3900");
11833 mips_set_option_string (&mips_tune_string, "3900");
252b5132 11834 break;
bdaaa2e1 11835
252b5132
RH
11836 case OPTION_NO_M3900:
11837 break;
11838
deec1734
CD
11839 case OPTION_MDMX:
11840 mips_opts.ase_mdmx = 1;
11841 break;
11842
11843 case OPTION_NO_MDMX:
11844 mips_opts.ase_mdmx = 0;
11845 break;
11846
74cd071d
CF
11847 case OPTION_DSP:
11848 mips_opts.ase_dsp = 1;
8b082fb1 11849 mips_opts.ase_dspr2 = 0;
74cd071d
CF
11850 break;
11851
11852 case OPTION_NO_DSP:
8b082fb1
TS
11853 mips_opts.ase_dsp = 0;
11854 mips_opts.ase_dspr2 = 0;
11855 break;
11856
11857 case OPTION_DSPR2:
11858 mips_opts.ase_dspr2 = 1;
11859 mips_opts.ase_dsp = 1;
11860 break;
11861
11862 case OPTION_NO_DSPR2:
11863 mips_opts.ase_dspr2 = 0;
74cd071d
CF
11864 mips_opts.ase_dsp = 0;
11865 break;
11866
ef2e4d86
CF
11867 case OPTION_MT:
11868 mips_opts.ase_mt = 1;
11869 break;
11870
11871 case OPTION_NO_MT:
11872 mips_opts.ase_mt = 0;
11873 break;
11874
252b5132
RH
11875 case OPTION_MIPS16:
11876 mips_opts.mips16 = 1;
7d10b47d 11877 mips_no_prev_insn ();
252b5132
RH
11878 break;
11879
11880 case OPTION_NO_MIPS16:
11881 mips_opts.mips16 = 0;
7d10b47d 11882 mips_no_prev_insn ();
252b5132
RH
11883 break;
11884
1f25f5d3
CD
11885 case OPTION_MIPS3D:
11886 mips_opts.ase_mips3d = 1;
11887 break;
11888
11889 case OPTION_NO_MIPS3D:
11890 mips_opts.ase_mips3d = 0;
11891 break;
11892
e16bfa71
TS
11893 case OPTION_SMARTMIPS:
11894 mips_opts.ase_smartmips = 1;
11895 break;
11896
11897 case OPTION_NO_SMARTMIPS:
11898 mips_opts.ase_smartmips = 0;
11899 break;
11900
6a32d874
CM
11901 case OPTION_FIX_24K:
11902 mips_fix_24k = 1;
11903 break;
11904
11905 case OPTION_NO_FIX_24K:
11906 mips_fix_24k = 0;
11907 break;
11908
c67a084a
NC
11909 case OPTION_FIX_LOONGSON2F_JUMP:
11910 mips_fix_loongson2f_jump = TRUE;
11911 break;
11912
11913 case OPTION_NO_FIX_LOONGSON2F_JUMP:
11914 mips_fix_loongson2f_jump = FALSE;
11915 break;
11916
11917 case OPTION_FIX_LOONGSON2F_NOP:
11918 mips_fix_loongson2f_nop = TRUE;
11919 break;
11920
11921 case OPTION_NO_FIX_LOONGSON2F_NOP:
11922 mips_fix_loongson2f_nop = FALSE;
11923 break;
11924
d766e8ec
RS
11925 case OPTION_FIX_VR4120:
11926 mips_fix_vr4120 = 1;
60b63b72
RS
11927 break;
11928
d766e8ec
RS
11929 case OPTION_NO_FIX_VR4120:
11930 mips_fix_vr4120 = 0;
60b63b72
RS
11931 break;
11932
7d8e00cf
RS
11933 case OPTION_FIX_VR4130:
11934 mips_fix_vr4130 = 1;
11935 break;
11936
11937 case OPTION_NO_FIX_VR4130:
11938 mips_fix_vr4130 = 0;
11939 break;
11940
d954098f
DD
11941 case OPTION_FIX_CN63XXP1:
11942 mips_fix_cn63xxp1 = TRUE;
11943 break;
11944
11945 case OPTION_NO_FIX_CN63XXP1:
11946 mips_fix_cn63xxp1 = FALSE;
11947 break;
11948
4a6a3df4
AO
11949 case OPTION_RELAX_BRANCH:
11950 mips_relax_branch = 1;
11951 break;
11952
11953 case OPTION_NO_RELAX_BRANCH:
11954 mips_relax_branch = 0;
11955 break;
11956
aa6975fb
ILT
11957 case OPTION_MSHARED:
11958 mips_in_shared = TRUE;
11959 break;
11960
11961 case OPTION_MNO_SHARED:
11962 mips_in_shared = FALSE;
11963 break;
11964
aed1a261
RS
11965 case OPTION_MSYM32:
11966 mips_opts.sym32 = TRUE;
11967 break;
11968
11969 case OPTION_MNO_SYM32:
11970 mips_opts.sym32 = FALSE;
11971 break;
11972
0f074f60 11973#ifdef OBJ_ELF
252b5132
RH
11974 /* When generating ELF code, we permit -KPIC and -call_shared to
11975 select SVR4_PIC, and -non_shared to select no PIC. This is
11976 intended to be compatible with Irix 5. */
11977 case OPTION_CALL_SHARED:
f43abd2b 11978 if (!IS_ELF)
252b5132
RH
11979 {
11980 as_bad (_("-call_shared is supported only for ELF format"));
11981 return 0;
11982 }
11983 mips_pic = SVR4_PIC;
143d77c5 11984 mips_abicalls = TRUE;
252b5132
RH
11985 break;
11986
861fb55a
DJ
11987 case OPTION_CALL_NONPIC:
11988 if (!IS_ELF)
11989 {
11990 as_bad (_("-call_nonpic is supported only for ELF format"));
11991 return 0;
11992 }
11993 mips_pic = NO_PIC;
11994 mips_abicalls = TRUE;
11995 break;
11996
252b5132 11997 case OPTION_NON_SHARED:
f43abd2b 11998 if (!IS_ELF)
252b5132
RH
11999 {
12000 as_bad (_("-non_shared is supported only for ELF format"));
12001 return 0;
12002 }
12003 mips_pic = NO_PIC;
143d77c5 12004 mips_abicalls = FALSE;
252b5132
RH
12005 break;
12006
44075ae2
TS
12007 /* The -xgot option tells the assembler to use 32 bit offsets
12008 when accessing the got in SVR4_PIC mode. It is for Irix
252b5132
RH
12009 compatibility. */
12010 case OPTION_XGOT:
12011 mips_big_got = 1;
12012 break;
0f074f60 12013#endif /* OBJ_ELF */
252b5132
RH
12014
12015 case 'G':
6caf9ef4
TS
12016 g_switch_value = atoi (arg);
12017 g_switch_seen = 1;
252b5132
RH
12018 break;
12019
34ba82a8
TS
12020 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
12021 and -mabi=64. */
252b5132 12022 case OPTION_32:
23fce1e3
NC
12023 if (IS_ELF)
12024 mips_abi = O32_ABI;
12025 /* We silently ignore -32 for non-ELF targets. This greatly
12026 simplifies the construction of the MIPS GAS test cases. */
252b5132
RH
12027 break;
12028
23fce1e3 12029#ifdef OBJ_ELF
e013f690 12030 case OPTION_N32:
f43abd2b 12031 if (!IS_ELF)
34ba82a8
TS
12032 {
12033 as_bad (_("-n32 is supported for ELF format only"));
12034 return 0;
12035 }
316f5878 12036 mips_abi = N32_ABI;
e013f690 12037 break;
252b5132 12038
e013f690 12039 case OPTION_64:
f43abd2b 12040 if (!IS_ELF)
34ba82a8
TS
12041 {
12042 as_bad (_("-64 is supported for ELF format only"));
12043 return 0;
12044 }
316f5878 12045 mips_abi = N64_ABI;
f43abd2b 12046 if (!support_64bit_objects())
e013f690 12047 as_fatal (_("No compiled in support for 64 bit object file format"));
252b5132 12048 break;
ae948b86 12049#endif /* OBJ_ELF */
252b5132 12050
c97ef257 12051 case OPTION_GP32:
a325df1d 12052 file_mips_gp32 = 1;
c97ef257
AH
12053 break;
12054
12055 case OPTION_GP64:
a325df1d 12056 file_mips_gp32 = 0;
c97ef257 12057 break;
252b5132 12058
ca4e0257 12059 case OPTION_FP32:
a325df1d 12060 file_mips_fp32 = 1;
316f5878
RS
12061 break;
12062
12063 case OPTION_FP64:
12064 file_mips_fp32 = 0;
ca4e0257
RS
12065 break;
12066
037b32b9
AN
12067 case OPTION_SINGLE_FLOAT:
12068 file_mips_single_float = 1;
12069 break;
12070
12071 case OPTION_DOUBLE_FLOAT:
12072 file_mips_single_float = 0;
12073 break;
12074
12075 case OPTION_SOFT_FLOAT:
12076 file_mips_soft_float = 1;
12077 break;
12078
12079 case OPTION_HARD_FLOAT:
12080 file_mips_soft_float = 0;
12081 break;
12082
ae948b86 12083#ifdef OBJ_ELF
252b5132 12084 case OPTION_MABI:
f43abd2b 12085 if (!IS_ELF)
34ba82a8
TS
12086 {
12087 as_bad (_("-mabi is supported for ELF format only"));
12088 return 0;
12089 }
e013f690 12090 if (strcmp (arg, "32") == 0)
316f5878 12091 mips_abi = O32_ABI;
e013f690 12092 else if (strcmp (arg, "o64") == 0)
316f5878 12093 mips_abi = O64_ABI;
e013f690 12094 else if (strcmp (arg, "n32") == 0)
316f5878 12095 mips_abi = N32_ABI;
e013f690
TS
12096 else if (strcmp (arg, "64") == 0)
12097 {
316f5878 12098 mips_abi = N64_ABI;
e013f690
TS
12099 if (! support_64bit_objects())
12100 as_fatal (_("No compiled in support for 64 bit object file "
12101 "format"));
12102 }
12103 else if (strcmp (arg, "eabi") == 0)
316f5878 12104 mips_abi = EABI_ABI;
e013f690 12105 else
da0e507f
TS
12106 {
12107 as_fatal (_("invalid abi -mabi=%s"), arg);
12108 return 0;
12109 }
252b5132 12110 break;
e013f690 12111#endif /* OBJ_ELF */
252b5132 12112
6b76fefe 12113 case OPTION_M7000_HILO_FIX:
b34976b6 12114 mips_7000_hilo_fix = TRUE;
6b76fefe
CM
12115 break;
12116
9ee72ff1 12117 case OPTION_MNO_7000_HILO_FIX:
b34976b6 12118 mips_7000_hilo_fix = FALSE;
6b76fefe
CM
12119 break;
12120
ecb4347a
DJ
12121#ifdef OBJ_ELF
12122 case OPTION_MDEBUG:
b34976b6 12123 mips_flag_mdebug = TRUE;
ecb4347a
DJ
12124 break;
12125
12126 case OPTION_NO_MDEBUG:
b34976b6 12127 mips_flag_mdebug = FALSE;
ecb4347a 12128 break;
dcd410fe
RO
12129
12130 case OPTION_PDR:
12131 mips_flag_pdr = TRUE;
12132 break;
12133
12134 case OPTION_NO_PDR:
12135 mips_flag_pdr = FALSE;
12136 break;
0a44bf69
RS
12137
12138 case OPTION_MVXWORKS_PIC:
12139 mips_pic = VXWORKS_PIC;
12140 break;
ecb4347a
DJ
12141#endif /* OBJ_ELF */
12142
252b5132
RH
12143 default:
12144 return 0;
12145 }
12146
c67a084a
NC
12147 mips_fix_loongson2f = mips_fix_loongson2f_nop || mips_fix_loongson2f_jump;
12148
252b5132
RH
12149 return 1;
12150}
316f5878
RS
12151\f
12152/* Set up globals to generate code for the ISA or processor
12153 described by INFO. */
252b5132 12154
252b5132 12155static void
17a2f251 12156mips_set_architecture (const struct mips_cpu_info *info)
252b5132 12157{
316f5878 12158 if (info != 0)
252b5132 12159 {
fef14a42
TS
12160 file_mips_arch = info->cpu;
12161 mips_opts.arch = info->cpu;
316f5878 12162 mips_opts.isa = info->isa;
252b5132 12163 }
252b5132
RH
12164}
12165
252b5132 12166
316f5878 12167/* Likewise for tuning. */
252b5132 12168
316f5878 12169static void
17a2f251 12170mips_set_tune (const struct mips_cpu_info *info)
316f5878
RS
12171{
12172 if (info != 0)
fef14a42 12173 mips_tune = info->cpu;
316f5878 12174}
80cc45a5 12175
34ba82a8 12176
252b5132 12177void
17a2f251 12178mips_after_parse_args (void)
e9670677 12179{
fef14a42
TS
12180 const struct mips_cpu_info *arch_info = 0;
12181 const struct mips_cpu_info *tune_info = 0;
12182
e9670677 12183 /* GP relative stuff not working for PE */
6caf9ef4 12184 if (strncmp (TARGET_OS, "pe", 2) == 0)
e9670677 12185 {
6caf9ef4 12186 if (g_switch_seen && g_switch_value != 0)
e9670677
MR
12187 as_bad (_("-G not supported in this configuration."));
12188 g_switch_value = 0;
12189 }
12190
cac012d6
AO
12191 if (mips_abi == NO_ABI)
12192 mips_abi = MIPS_DEFAULT_ABI;
12193
22923709
RS
12194 /* The following code determines the architecture and register size.
12195 Similar code was added to GCC 3.3 (see override_options() in
12196 config/mips/mips.c). The GAS and GCC code should be kept in sync
12197 as much as possible. */
e9670677 12198
316f5878 12199 if (mips_arch_string != 0)
fef14a42 12200 arch_info = mips_parse_cpu ("-march", mips_arch_string);
e9670677 12201
316f5878 12202 if (file_mips_isa != ISA_UNKNOWN)
e9670677 12203 {
316f5878 12204 /* Handle -mipsN. At this point, file_mips_isa contains the
fef14a42 12205 ISA level specified by -mipsN, while arch_info->isa contains
316f5878 12206 the -march selection (if any). */
fef14a42 12207 if (arch_info != 0)
e9670677 12208 {
316f5878
RS
12209 /* -march takes precedence over -mipsN, since it is more descriptive.
12210 There's no harm in specifying both as long as the ISA levels
12211 are the same. */
fef14a42 12212 if (file_mips_isa != arch_info->isa)
316f5878
RS
12213 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
12214 mips_cpu_info_from_isa (file_mips_isa)->name,
fef14a42 12215 mips_cpu_info_from_isa (arch_info->isa)->name);
e9670677 12216 }
316f5878 12217 else
fef14a42 12218 arch_info = mips_cpu_info_from_isa (file_mips_isa);
e9670677
MR
12219 }
12220
fef14a42
TS
12221 if (arch_info == 0)
12222 arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
e9670677 12223
fef14a42 12224 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
20203fb9 12225 as_bad (_("-march=%s is not compatible with the selected ABI"),
fef14a42
TS
12226 arch_info->name);
12227
12228 mips_set_architecture (arch_info);
12229
12230 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
12231 if (mips_tune_string != 0)
12232 tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
e9670677 12233
fef14a42
TS
12234 if (tune_info == 0)
12235 mips_set_tune (arch_info);
12236 else
12237 mips_set_tune (tune_info);
e9670677 12238
316f5878 12239 if (file_mips_gp32 >= 0)
e9670677 12240 {
316f5878
RS
12241 /* The user specified the size of the integer registers. Make sure
12242 it agrees with the ABI and ISA. */
12243 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
12244 as_bad (_("-mgp64 used with a 32-bit processor"));
12245 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
12246 as_bad (_("-mgp32 used with a 64-bit ABI"));
12247 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
12248 as_bad (_("-mgp64 used with a 32-bit ABI"));
e9670677
MR
12249 }
12250 else
12251 {
316f5878
RS
12252 /* Infer the integer register size from the ABI and processor.
12253 Restrict ourselves to 32-bit registers if that's all the
12254 processor has, or if the ABI cannot handle 64-bit registers. */
12255 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
12256 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
e9670677
MR
12257 }
12258
ad3fea08
TS
12259 switch (file_mips_fp32)
12260 {
12261 default:
12262 case -1:
12263 /* No user specified float register size.
12264 ??? GAS treats single-float processors as though they had 64-bit
12265 float registers (although it complains when double-precision
12266 instructions are used). As things stand, saying they have 32-bit
12267 registers would lead to spurious "register must be even" messages.
12268 So here we assume float registers are never smaller than the
12269 integer ones. */
12270 if (file_mips_gp32 == 0)
12271 /* 64-bit integer registers implies 64-bit float registers. */
12272 file_mips_fp32 = 0;
12273 else if ((mips_opts.ase_mips3d > 0 || mips_opts.ase_mdmx > 0)
12274 && ISA_HAS_64BIT_FPRS (mips_opts.isa))
12275 /* -mips3d and -mdmx imply 64-bit float registers, if possible. */
12276 file_mips_fp32 = 0;
12277 else
12278 /* 32-bit float registers. */
12279 file_mips_fp32 = 1;
12280 break;
12281
12282 /* The user specified the size of the float registers. Check if it
12283 agrees with the ABI and ISA. */
12284 case 0:
12285 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
12286 as_bad (_("-mfp64 used with a 32-bit fpu"));
12287 else if (ABI_NEEDS_32BIT_REGS (mips_abi)
12288 && !ISA_HAS_MXHC1 (mips_opts.isa))
12289 as_warn (_("-mfp64 used with a 32-bit ABI"));
12290 break;
12291 case 1:
12292 if (ABI_NEEDS_64BIT_REGS (mips_abi))
12293 as_warn (_("-mfp32 used with a 64-bit ABI"));
12294 break;
12295 }
e9670677 12296
316f5878 12297 /* End of GCC-shared inference code. */
e9670677 12298
17a2f251
TS
12299 /* This flag is set when we have a 64-bit capable CPU but use only
12300 32-bit wide registers. Note that EABI does not use it. */
12301 if (ISA_HAS_64BIT_REGS (mips_opts.isa)
12302 && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
12303 || mips_abi == O32_ABI))
316f5878 12304 mips_32bitmode = 1;
e9670677
MR
12305
12306 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
12307 as_bad (_("trap exception not supported at ISA 1"));
12308
e9670677
MR
12309 /* If the selected architecture includes support for ASEs, enable
12310 generation of code for them. */
a4672219 12311 if (mips_opts.mips16 == -1)
fef14a42 12312 mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
ffdefa66 12313 if (mips_opts.ase_mips3d == -1)
65263ce3 12314 mips_opts.ase_mips3d = ((arch_info->flags & MIPS_CPU_ASE_MIPS3D)
ad3fea08
TS
12315 && file_mips_fp32 == 0) ? 1 : 0;
12316 if (mips_opts.ase_mips3d && file_mips_fp32 == 1)
12317 as_bad (_("-mfp32 used with -mips3d"));
12318
ffdefa66 12319 if (mips_opts.ase_mdmx == -1)
65263ce3 12320 mips_opts.ase_mdmx = ((arch_info->flags & MIPS_CPU_ASE_MDMX)
ad3fea08
TS
12321 && file_mips_fp32 == 0) ? 1 : 0;
12322 if (mips_opts.ase_mdmx && file_mips_fp32 == 1)
12323 as_bad (_("-mfp32 used with -mdmx"));
12324
12325 if (mips_opts.ase_smartmips == -1)
12326 mips_opts.ase_smartmips = (arch_info->flags & MIPS_CPU_ASE_SMARTMIPS) ? 1 : 0;
12327 if (mips_opts.ase_smartmips && !ISA_SUPPORTS_SMARTMIPS)
20203fb9
NC
12328 as_warn (_("%s ISA does not support SmartMIPS"),
12329 mips_cpu_info_from_isa (mips_opts.isa)->name);
ad3fea08 12330
74cd071d 12331 if (mips_opts.ase_dsp == -1)
ad3fea08
TS
12332 mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0;
12333 if (mips_opts.ase_dsp && !ISA_SUPPORTS_DSP_ASE)
20203fb9
NC
12334 as_warn (_("%s ISA does not support DSP ASE"),
12335 mips_cpu_info_from_isa (mips_opts.isa)->name);
ad3fea08 12336
8b082fb1
TS
12337 if (mips_opts.ase_dspr2 == -1)
12338 {
12339 mips_opts.ase_dspr2 = (arch_info->flags & MIPS_CPU_ASE_DSPR2) ? 1 : 0;
12340 mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0;
12341 }
12342 if (mips_opts.ase_dspr2 && !ISA_SUPPORTS_DSPR2_ASE)
20203fb9
NC
12343 as_warn (_("%s ISA does not support DSP R2 ASE"),
12344 mips_cpu_info_from_isa (mips_opts.isa)->name);
8b082fb1 12345
ef2e4d86 12346 if (mips_opts.ase_mt == -1)
ad3fea08
TS
12347 mips_opts.ase_mt = (arch_info->flags & MIPS_CPU_ASE_MT) ? 1 : 0;
12348 if (mips_opts.ase_mt && !ISA_SUPPORTS_MT_ASE)
20203fb9
NC
12349 as_warn (_("%s ISA does not support MT ASE"),
12350 mips_cpu_info_from_isa (mips_opts.isa)->name);
e9670677 12351
e9670677 12352 file_mips_isa = mips_opts.isa;
e9670677
MR
12353 file_ase_mips3d = mips_opts.ase_mips3d;
12354 file_ase_mdmx = mips_opts.ase_mdmx;
e16bfa71 12355 file_ase_smartmips = mips_opts.ase_smartmips;
74cd071d 12356 file_ase_dsp = mips_opts.ase_dsp;
8b082fb1 12357 file_ase_dspr2 = mips_opts.ase_dspr2;
ef2e4d86 12358 file_ase_mt = mips_opts.ase_mt;
e9670677
MR
12359 mips_opts.gp32 = file_mips_gp32;
12360 mips_opts.fp32 = file_mips_fp32;
037b32b9
AN
12361 mips_opts.soft_float = file_mips_soft_float;
12362 mips_opts.single_float = file_mips_single_float;
e9670677 12363
ecb4347a
DJ
12364 if (mips_flag_mdebug < 0)
12365 {
12366#ifdef OBJ_MAYBE_ECOFF
12367 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour)
12368 mips_flag_mdebug = 1;
12369 else
12370#endif /* OBJ_MAYBE_ECOFF */
12371 mips_flag_mdebug = 0;
12372 }
e9670677
MR
12373}
12374\f
12375void
17a2f251 12376mips_init_after_args (void)
252b5132
RH
12377{
12378 /* initialize opcodes */
12379 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
beae10d5 12380 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
252b5132
RH
12381}
12382
12383long
17a2f251 12384md_pcrel_from (fixS *fixP)
252b5132 12385{
a7ebbfdf
TS
12386 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
12387 switch (fixP->fx_r_type)
12388 {
12389 case BFD_RELOC_16_PCREL_S2:
12390 case BFD_RELOC_MIPS_JMP:
12391 /* Return the address of the delay slot. */
12392 return addr + 4;
12393 default:
58ea3d6a 12394 /* We have no relocation type for PC relative MIPS16 instructions. */
64817874
TS
12395 if (fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != now_seg)
12396 as_bad_where (fixP->fx_file, fixP->fx_line,
12397 _("PC relative MIPS16 instruction references a different section"));
a7ebbfdf
TS
12398 return addr;
12399 }
252b5132
RH
12400}
12401
252b5132
RH
12402/* This is called before the symbol table is processed. In order to
12403 work with gcc when using mips-tfile, we must keep all local labels.
12404 However, in other cases, we want to discard them. If we were
12405 called with -g, but we didn't see any debugging information, it may
12406 mean that gcc is smuggling debugging information through to
12407 mips-tfile, in which case we must generate all local labels. */
12408
12409void
17a2f251 12410mips_frob_file_before_adjust (void)
252b5132
RH
12411{
12412#ifndef NO_ECOFF_DEBUGGING
12413 if (ECOFF_DEBUGGING
12414 && mips_debug != 0
12415 && ! ecoff_debugging_seen)
12416 flag_keep_locals = 1;
12417#endif
12418}
12419
3b91255e 12420/* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
55cf6793 12421 the corresponding LO16 reloc. This is called before md_apply_fix and
3b91255e
RS
12422 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
12423 relocation operators.
12424
12425 For our purposes, a %lo() expression matches a %got() or %hi()
12426 expression if:
12427
12428 (a) it refers to the same symbol; and
12429 (b) the offset applied in the %lo() expression is no lower than
12430 the offset applied in the %got() or %hi().
12431
12432 (b) allows us to cope with code like:
12433
12434 lui $4,%hi(foo)
12435 lh $4,%lo(foo+2)($4)
12436
12437 ...which is legal on RELA targets, and has a well-defined behaviour
12438 if the user knows that adding 2 to "foo" will not induce a carry to
12439 the high 16 bits.
12440
12441 When several %lo()s match a particular %got() or %hi(), we use the
12442 following rules to distinguish them:
12443
12444 (1) %lo()s with smaller offsets are a better match than %lo()s with
12445 higher offsets.
12446
12447 (2) %lo()s with no matching %got() or %hi() are better than those
12448 that already have a matching %got() or %hi().
12449
12450 (3) later %lo()s are better than earlier %lo()s.
12451
12452 These rules are applied in order.
12453
12454 (1) means, among other things, that %lo()s with identical offsets are
12455 chosen if they exist.
12456
12457 (2) means that we won't associate several high-part relocations with
12458 the same low-part relocation unless there's no alternative. Having
12459 several high parts for the same low part is a GNU extension; this rule
12460 allows careful users to avoid it.
12461
12462 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
12463 with the last high-part relocation being at the front of the list.
12464 It therefore makes sense to choose the last matching low-part
12465 relocation, all other things being equal. It's also easier
12466 to code that way. */
252b5132
RH
12467
12468void
17a2f251 12469mips_frob_file (void)
252b5132
RH
12470{
12471 struct mips_hi_fixup *l;
35903be0 12472 bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED;
252b5132
RH
12473
12474 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
12475 {
12476 segment_info_type *seginfo;
3b91255e
RS
12477 bfd_boolean matched_lo_p;
12478 fixS **hi_pos, **lo_pos, **pos;
252b5132 12479
9c2799c2 12480 gas_assert (reloc_needs_lo_p (l->fixp->fx_r_type));
252b5132 12481
5919d012
RS
12482 /* If a GOT16 relocation turns out to be against a global symbol,
12483 there isn't supposed to be a matching LO. */
738e5348 12484 if (got16_reloc_p (l->fixp->fx_r_type)
5919d012
RS
12485 && !pic_need_relax (l->fixp->fx_addsy, l->seg))
12486 continue;
12487
12488 /* Check quickly whether the next fixup happens to be a matching %lo. */
12489 if (fixup_has_matching_lo_p (l->fixp))
252b5132
RH
12490 continue;
12491
252b5132 12492 seginfo = seg_info (l->seg);
252b5132 12493
3b91255e
RS
12494 /* Set HI_POS to the position of this relocation in the chain.
12495 Set LO_POS to the position of the chosen low-part relocation.
12496 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
12497 relocation that matches an immediately-preceding high-part
12498 relocation. */
12499 hi_pos = NULL;
12500 lo_pos = NULL;
12501 matched_lo_p = FALSE;
738e5348 12502 looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type);
35903be0 12503
3b91255e
RS
12504 for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
12505 {
12506 if (*pos == l->fixp)
12507 hi_pos = pos;
12508
35903be0 12509 if ((*pos)->fx_r_type == looking_for_rtype
30cfc97a 12510 && symbol_same_p ((*pos)->fx_addsy, l->fixp->fx_addsy)
3b91255e
RS
12511 && (*pos)->fx_offset >= l->fixp->fx_offset
12512 && (lo_pos == NULL
12513 || (*pos)->fx_offset < (*lo_pos)->fx_offset
12514 || (!matched_lo_p
12515 && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
12516 lo_pos = pos;
12517
12518 matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
12519 && fixup_has_matching_lo_p (*pos));
12520 }
12521
12522 /* If we found a match, remove the high-part relocation from its
12523 current position and insert it before the low-part relocation.
12524 Make the offsets match so that fixup_has_matching_lo_p()
12525 will return true.
12526
12527 We don't warn about unmatched high-part relocations since some
12528 versions of gcc have been known to emit dead "lui ...%hi(...)"
12529 instructions. */
12530 if (lo_pos != NULL)
12531 {
12532 l->fixp->fx_offset = (*lo_pos)->fx_offset;
12533 if (l->fixp->fx_next != *lo_pos)
252b5132 12534 {
3b91255e
RS
12535 *hi_pos = l->fixp->fx_next;
12536 l->fixp->fx_next = *lo_pos;
12537 *lo_pos = l->fixp;
252b5132 12538 }
252b5132
RH
12539 }
12540 }
12541}
12542
3e722fb5 12543/* We may have combined relocations without symbols in the N32/N64 ABI.
f6688943 12544 We have to prevent gas from dropping them. */
252b5132 12545
252b5132 12546int
17a2f251 12547mips_force_relocation (fixS *fixp)
252b5132 12548{
ae6063d4 12549 if (generic_force_reloc (fixp))
252b5132
RH
12550 return 1;
12551
f6688943
TS
12552 if (HAVE_NEWABI
12553 && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr
12554 && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB
738e5348
RS
12555 || hi16_reloc_p (fixp->fx_r_type)
12556 || lo16_reloc_p (fixp->fx_r_type)))
f6688943
TS
12557 return 1;
12558
3e722fb5 12559 return 0;
252b5132
RH
12560}
12561
12562/* Apply a fixup to the object file. */
12563
94f592af 12564void
55cf6793 12565md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
252b5132 12566{
874e8986 12567 bfd_byte *buf;
98aa84af 12568 long insn;
a7ebbfdf 12569 reloc_howto_type *howto;
252b5132 12570
a7ebbfdf
TS
12571 /* We ignore generic BFD relocations we don't know about. */
12572 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
12573 if (! howto)
12574 return;
65551fa4 12575
9c2799c2 12576 gas_assert (fixP->fx_size == 4
90ecf173
MR
12577 || fixP->fx_r_type == BFD_RELOC_16
12578 || fixP->fx_r_type == BFD_RELOC_64
12579 || fixP->fx_r_type == BFD_RELOC_CTOR
12580 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
12581 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
12582 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
12583 || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
252b5132 12584
a7ebbfdf 12585 buf = (bfd_byte *) (fixP->fx_frag->fr_literal + fixP->fx_where);
252b5132 12586
9c2799c2 12587 gas_assert (!fixP->fx_pcrel || fixP->fx_r_type == BFD_RELOC_16_PCREL_S2);
b1dca8ee
RS
12588
12589 /* Don't treat parts of a composite relocation as done. There are two
12590 reasons for this:
12591
12592 (1) The second and third parts will be against 0 (RSS_UNDEF) but
12593 should nevertheless be emitted if the first part is.
12594
12595 (2) In normal usage, composite relocations are never assembly-time
12596 constants. The easiest way of dealing with the pathological
12597 exceptions is to generate a relocation against STN_UNDEF and
12598 leave everything up to the linker. */
3994f87e 12599 if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0)
252b5132
RH
12600 fixP->fx_done = 1;
12601
12602 switch (fixP->fx_r_type)
12603 {
3f98094e
DJ
12604 case BFD_RELOC_MIPS_TLS_GD:
12605 case BFD_RELOC_MIPS_TLS_LDM:
741d6ea8
JM
12606 case BFD_RELOC_MIPS_TLS_DTPREL32:
12607 case BFD_RELOC_MIPS_TLS_DTPREL64:
3f98094e
DJ
12608 case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
12609 case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
12610 case BFD_RELOC_MIPS_TLS_GOTTPREL:
12611 case BFD_RELOC_MIPS_TLS_TPREL_HI16:
12612 case BFD_RELOC_MIPS_TLS_TPREL_LO16:
12613 S_SET_THREAD_LOCAL (fixP->fx_addsy);
12614 /* fall through */
12615
252b5132 12616 case BFD_RELOC_MIPS_JMP:
e369bcce
TS
12617 case BFD_RELOC_MIPS_SHIFT5:
12618 case BFD_RELOC_MIPS_SHIFT6:
12619 case BFD_RELOC_MIPS_GOT_DISP:
12620 case BFD_RELOC_MIPS_GOT_PAGE:
12621 case BFD_RELOC_MIPS_GOT_OFST:
12622 case BFD_RELOC_MIPS_SUB:
12623 case BFD_RELOC_MIPS_INSERT_A:
12624 case BFD_RELOC_MIPS_INSERT_B:
12625 case BFD_RELOC_MIPS_DELETE:
12626 case BFD_RELOC_MIPS_HIGHEST:
12627 case BFD_RELOC_MIPS_HIGHER:
12628 case BFD_RELOC_MIPS_SCN_DISP:
12629 case BFD_RELOC_MIPS_REL16:
12630 case BFD_RELOC_MIPS_RELGOT:
12631 case BFD_RELOC_MIPS_JALR:
252b5132
RH
12632 case BFD_RELOC_HI16:
12633 case BFD_RELOC_HI16_S:
cdf6fd85 12634 case BFD_RELOC_GPREL16:
252b5132
RH
12635 case BFD_RELOC_MIPS_LITERAL:
12636 case BFD_RELOC_MIPS_CALL16:
12637 case BFD_RELOC_MIPS_GOT16:
cdf6fd85 12638 case BFD_RELOC_GPREL32:
252b5132
RH
12639 case BFD_RELOC_MIPS_GOT_HI16:
12640 case BFD_RELOC_MIPS_GOT_LO16:
12641 case BFD_RELOC_MIPS_CALL_HI16:
12642 case BFD_RELOC_MIPS_CALL_LO16:
12643 case BFD_RELOC_MIPS16_GPREL:
738e5348
RS
12644 case BFD_RELOC_MIPS16_GOT16:
12645 case BFD_RELOC_MIPS16_CALL16:
d6f16593
MR
12646 case BFD_RELOC_MIPS16_HI16:
12647 case BFD_RELOC_MIPS16_HI16_S:
252b5132 12648 case BFD_RELOC_MIPS16_JMP:
54f4ddb3 12649 /* Nothing needed to do. The value comes from the reloc entry. */
252b5132
RH
12650 break;
12651
252b5132
RH
12652 case BFD_RELOC_64:
12653 /* This is handled like BFD_RELOC_32, but we output a sign
12654 extended value if we are only 32 bits. */
3e722fb5 12655 if (fixP->fx_done)
252b5132
RH
12656 {
12657 if (8 <= sizeof (valueT))
2132e3a3 12658 md_number_to_chars ((char *) buf, *valP, 8);
252b5132
RH
12659 else
12660 {
a7ebbfdf 12661 valueT hiv;
252b5132 12662
a7ebbfdf 12663 if ((*valP & 0x80000000) != 0)
252b5132
RH
12664 hiv = 0xffffffff;
12665 else
12666 hiv = 0;
b215186b 12667 md_number_to_chars ((char *)(buf + (target_big_endian ? 4 : 0)),
a7ebbfdf 12668 *valP, 4);
b215186b 12669 md_number_to_chars ((char *)(buf + (target_big_endian ? 0 : 4)),
a7ebbfdf 12670 hiv, 4);
252b5132
RH
12671 }
12672 }
12673 break;
12674
056350c6 12675 case BFD_RELOC_RVA:
252b5132 12676 case BFD_RELOC_32:
252b5132
RH
12677 case BFD_RELOC_16:
12678 /* If we are deleting this reloc entry, we must fill in the
54f4ddb3
TS
12679 value now. This can happen if we have a .word which is not
12680 resolved when it appears but is later defined. */
252b5132 12681 if (fixP->fx_done)
54f4ddb3 12682 md_number_to_chars ((char *) buf, *valP, fixP->fx_size);
252b5132
RH
12683 break;
12684
12685 case BFD_RELOC_LO16:
d6f16593 12686 case BFD_RELOC_MIPS16_LO16:
3e722fb5
CD
12687 /* FIXME: Now that embedded-PIC is gone, some of this code/comment
12688 may be safe to remove, but if so it's not obvious. */
252b5132
RH
12689 /* When handling an embedded PIC switch statement, we can wind
12690 up deleting a LO16 reloc. See the 'o' case in mips_ip. */
12691 if (fixP->fx_done)
12692 {
a7ebbfdf 12693 if (*valP + 0x8000 > 0xffff)
252b5132
RH
12694 as_bad_where (fixP->fx_file, fixP->fx_line,
12695 _("relocation overflow"));
252b5132
RH
12696 if (target_big_endian)
12697 buf += 2;
2132e3a3 12698 md_number_to_chars ((char *) buf, *valP, 2);
252b5132
RH
12699 }
12700 break;
12701
12702 case BFD_RELOC_16_PCREL_S2:
a7ebbfdf 12703 if ((*valP & 0x3) != 0)
cb56d3d3 12704 as_bad_where (fixP->fx_file, fixP->fx_line,
bad36eac 12705 _("Branch to misaligned address (%lx)"), (long) *valP);
cb56d3d3 12706
54f4ddb3
TS
12707 /* We need to save the bits in the instruction since fixup_segment()
12708 might be deleting the relocation entry (i.e., a branch within
12709 the current segment). */
a7ebbfdf 12710 if (! fixP->fx_done)
bb2d6cd7 12711 break;
252b5132 12712
54f4ddb3 12713 /* Update old instruction data. */
252b5132
RH
12714 if (target_big_endian)
12715 insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
12716 else
12717 insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
12718
a7ebbfdf
TS
12719 if (*valP + 0x20000 <= 0x3ffff)
12720 {
12721 insn |= (*valP >> 2) & 0xffff;
2132e3a3 12722 md_number_to_chars ((char *) buf, insn, 4);
a7ebbfdf
TS
12723 }
12724 else if (mips_pic == NO_PIC
12725 && fixP->fx_done
12726 && fixP->fx_frag->fr_address >= text_section->vma
12727 && (fixP->fx_frag->fr_address
587aac4e 12728 < text_section->vma + bfd_get_section_size (text_section))
a7ebbfdf
TS
12729 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
12730 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
12731 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
252b5132
RH
12732 {
12733 /* The branch offset is too large. If this is an
12734 unconditional branch, and we are not generating PIC code,
12735 we can convert it to an absolute jump instruction. */
a7ebbfdf
TS
12736 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
12737 insn = 0x0c000000; /* jal */
252b5132 12738 else
a7ebbfdf
TS
12739 insn = 0x08000000; /* j */
12740 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
12741 fixP->fx_done = 0;
12742 fixP->fx_addsy = section_symbol (text_section);
12743 *valP += md_pcrel_from (fixP);
2132e3a3 12744 md_number_to_chars ((char *) buf, insn, 4);
a7ebbfdf
TS
12745 }
12746 else
12747 {
12748 /* If we got here, we have branch-relaxation disabled,
12749 and there's nothing we can do to fix this instruction
12750 without turning it into a longer sequence. */
12751 as_bad_where (fixP->fx_file, fixP->fx_line,
12752 _("Branch out of range"));
252b5132 12753 }
252b5132
RH
12754 break;
12755
12756 case BFD_RELOC_VTABLE_INHERIT:
12757 fixP->fx_done = 0;
12758 if (fixP->fx_addsy
12759 && !S_IS_DEFINED (fixP->fx_addsy)
12760 && !S_IS_WEAK (fixP->fx_addsy))
12761 S_SET_WEAK (fixP->fx_addsy);
12762 break;
12763
12764 case BFD_RELOC_VTABLE_ENTRY:
12765 fixP->fx_done = 0;
12766 break;
12767
12768 default:
12769 internalError ();
12770 }
a7ebbfdf
TS
12771
12772 /* Remember value for tc_gen_reloc. */
12773 fixP->fx_addnumber = *valP;
252b5132
RH
12774}
12775
252b5132 12776static symbolS *
17a2f251 12777get_symbol (void)
252b5132
RH
12778{
12779 int c;
12780 char *name;
12781 symbolS *p;
12782
12783 name = input_line_pointer;
12784 c = get_symbol_end ();
12785 p = (symbolS *) symbol_find_or_make (name);
12786 *input_line_pointer = c;
12787 return p;
12788}
12789
742a56fe
RS
12790/* Align the current frag to a given power of two. If a particular
12791 fill byte should be used, FILL points to an integer that contains
12792 that byte, otherwise FILL is null.
12793
12794 The MIPS assembler also automatically adjusts any preceding
12795 label. */
252b5132
RH
12796
12797static void
742a56fe 12798mips_align (int to, int *fill, symbolS *label)
252b5132 12799{
7d10b47d 12800 mips_emit_delays ();
742a56fe
RS
12801 mips_record_mips16_mode ();
12802 if (fill == NULL && subseg_text_p (now_seg))
12803 frag_align_code (to, 0);
12804 else
12805 frag_align (to, fill ? *fill : 0, 0);
252b5132
RH
12806 record_alignment (now_seg, to);
12807 if (label != NULL)
12808 {
9c2799c2 12809 gas_assert (S_GET_SEGMENT (label) == now_seg);
49309057 12810 symbol_set_frag (label, frag_now);
252b5132
RH
12811 S_SET_VALUE (label, (valueT) frag_now_fix ());
12812 }
12813}
12814
12815/* Align to a given power of two. .align 0 turns off the automatic
12816 alignment used by the data creating pseudo-ops. */
12817
12818static void
17a2f251 12819s_align (int x ATTRIBUTE_UNUSED)
252b5132 12820{
742a56fe 12821 int temp, fill_value, *fill_ptr;
49954fb4 12822 long max_alignment = 28;
252b5132 12823
54f4ddb3 12824 /* o Note that the assembler pulls down any immediately preceding label
252b5132 12825 to the aligned address.
54f4ddb3 12826 o It's not documented but auto alignment is reinstated by
252b5132 12827 a .align pseudo instruction.
54f4ddb3 12828 o Note also that after auto alignment is turned off the mips assembler
252b5132 12829 issues an error on attempt to assemble an improperly aligned data item.
54f4ddb3 12830 We don't. */
252b5132
RH
12831
12832 temp = get_absolute_expression ();
12833 if (temp > max_alignment)
12834 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
12835 else if (temp < 0)
12836 {
12837 as_warn (_("Alignment negative: 0 assumed."));
12838 temp = 0;
12839 }
12840 if (*input_line_pointer == ',')
12841 {
f9419b05 12842 ++input_line_pointer;
742a56fe
RS
12843 fill_value = get_absolute_expression ();
12844 fill_ptr = &fill_value;
252b5132
RH
12845 }
12846 else
742a56fe 12847 fill_ptr = 0;
252b5132
RH
12848 if (temp)
12849 {
a8dbcb85
TS
12850 segment_info_type *si = seg_info (now_seg);
12851 struct insn_label_list *l = si->label_list;
54f4ddb3 12852 /* Auto alignment should be switched on by next section change. */
252b5132 12853 auto_align = 1;
742a56fe 12854 mips_align (temp, fill_ptr, l != NULL ? l->label : NULL);
252b5132
RH
12855 }
12856 else
12857 {
12858 auto_align = 0;
12859 }
12860
12861 demand_empty_rest_of_line ();
12862}
12863
252b5132 12864static void
17a2f251 12865s_change_sec (int sec)
252b5132
RH
12866{
12867 segT seg;
12868
252b5132
RH
12869#ifdef OBJ_ELF
12870 /* The ELF backend needs to know that we are changing sections, so
12871 that .previous works correctly. We could do something like check
b6ff326e 12872 for an obj_section_change_hook macro, but that might be confusing
252b5132
RH
12873 as it would not be appropriate to use it in the section changing
12874 functions in read.c, since obj-elf.c intercepts those. FIXME:
12875 This should be cleaner, somehow. */
f43abd2b
TS
12876 if (IS_ELF)
12877 obj_elf_section_change_hook ();
252b5132
RH
12878#endif
12879
7d10b47d 12880 mips_emit_delays ();
6a32d874 12881
252b5132
RH
12882 switch (sec)
12883 {
12884 case 't':
12885 s_text (0);
12886 break;
12887 case 'd':
12888 s_data (0);
12889 break;
12890 case 'b':
12891 subseg_set (bss_section, (subsegT) get_absolute_expression ());
12892 demand_empty_rest_of_line ();
12893 break;
12894
12895 case 'r':
4d0d148d
TS
12896 seg = subseg_new (RDATA_SECTION_NAME,
12897 (subsegT) get_absolute_expression ());
f43abd2b 12898 if (IS_ELF)
252b5132 12899 {
4d0d148d
TS
12900 bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
12901 | SEC_READONLY | SEC_RELOC
12902 | SEC_DATA));
c41e87e3 12903 if (strncmp (TARGET_OS, "elf", 3) != 0)
4d0d148d 12904 record_alignment (seg, 4);
252b5132 12905 }
4d0d148d 12906 demand_empty_rest_of_line ();
252b5132
RH
12907 break;
12908
12909 case 's':
4d0d148d 12910 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
f43abd2b 12911 if (IS_ELF)
252b5132 12912 {
4d0d148d
TS
12913 bfd_set_section_flags (stdoutput, seg,
12914 SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
c41e87e3 12915 if (strncmp (TARGET_OS, "elf", 3) != 0)
4d0d148d 12916 record_alignment (seg, 4);
252b5132 12917 }
4d0d148d
TS
12918 demand_empty_rest_of_line ();
12919 break;
998b3c36
MR
12920
12921 case 'B':
12922 seg = subseg_new (".sbss", (subsegT) get_absolute_expression ());
12923 if (IS_ELF)
12924 {
12925 bfd_set_section_flags (stdoutput, seg, SEC_ALLOC);
12926 if (strncmp (TARGET_OS, "elf", 3) != 0)
12927 record_alignment (seg, 4);
12928 }
12929 demand_empty_rest_of_line ();
12930 break;
252b5132
RH
12931 }
12932
12933 auto_align = 1;
12934}
b34976b6 12935
cca86cc8 12936void
17a2f251 12937s_change_section (int ignore ATTRIBUTE_UNUSED)
cca86cc8 12938{
7ed4a06a 12939#ifdef OBJ_ELF
cca86cc8
SC
12940 char *section_name;
12941 char c;
684022ea 12942 char next_c = 0;
cca86cc8
SC
12943 int section_type;
12944 int section_flag;
12945 int section_entry_size;
12946 int section_alignment;
b34976b6 12947
f43abd2b 12948 if (!IS_ELF)
7ed4a06a
TS
12949 return;
12950
cca86cc8
SC
12951 section_name = input_line_pointer;
12952 c = get_symbol_end ();
a816d1ed
AO
12953 if (c)
12954 next_c = *(input_line_pointer + 1);
cca86cc8 12955
4cf0dd0d
TS
12956 /* Do we have .section Name<,"flags">? */
12957 if (c != ',' || (c == ',' && next_c == '"'))
cca86cc8 12958 {
4cf0dd0d
TS
12959 /* just after name is now '\0'. */
12960 *input_line_pointer = c;
cca86cc8
SC
12961 input_line_pointer = section_name;
12962 obj_elf_section (ignore);
12963 return;
12964 }
12965 input_line_pointer++;
12966
12967 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
12968 if (c == ',')
12969 section_type = get_absolute_expression ();
12970 else
12971 section_type = 0;
12972 if (*input_line_pointer++ == ',')
12973 section_flag = get_absolute_expression ();
12974 else
12975 section_flag = 0;
12976 if (*input_line_pointer++ == ',')
12977 section_entry_size = get_absolute_expression ();
12978 else
12979 section_entry_size = 0;
12980 if (*input_line_pointer++ == ',')
12981 section_alignment = get_absolute_expression ();
12982 else
12983 section_alignment = 0;
87975d2a
AM
12984 /* FIXME: really ignore? */
12985 (void) section_alignment;
cca86cc8 12986
a816d1ed
AO
12987 section_name = xstrdup (section_name);
12988
8ab8a5c8
RS
12989 /* When using the generic form of .section (as implemented by obj-elf.c),
12990 there's no way to set the section type to SHT_MIPS_DWARF. Users have
12991 traditionally had to fall back on the more common @progbits instead.
12992
12993 There's nothing really harmful in this, since bfd will correct
12994 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
708587a4 12995 means that, for backwards compatibility, the special_section entries
8ab8a5c8
RS
12996 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
12997
12998 Even so, we shouldn't force users of the MIPS .section syntax to
12999 incorrectly label the sections as SHT_PROGBITS. The best compromise
13000 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
13001 generic type-checking code. */
13002 if (section_type == SHT_MIPS_DWARF)
13003 section_type = SHT_PROGBITS;
13004
cca86cc8
SC
13005 obj_elf_change_section (section_name, section_type, section_flag,
13006 section_entry_size, 0, 0, 0);
a816d1ed
AO
13007
13008 if (now_seg->name != section_name)
13009 free (section_name);
7ed4a06a 13010#endif /* OBJ_ELF */
cca86cc8 13011}
252b5132
RH
13012
13013void
17a2f251 13014mips_enable_auto_align (void)
252b5132
RH
13015{
13016 auto_align = 1;
13017}
13018
13019static void
17a2f251 13020s_cons (int log_size)
252b5132 13021{
a8dbcb85
TS
13022 segment_info_type *si = seg_info (now_seg);
13023 struct insn_label_list *l = si->label_list;
252b5132
RH
13024 symbolS *label;
13025
a8dbcb85 13026 label = l != NULL ? l->label : NULL;
7d10b47d 13027 mips_emit_delays ();
252b5132
RH
13028 if (log_size > 0 && auto_align)
13029 mips_align (log_size, 0, label);
252b5132 13030 cons (1 << log_size);
a1facbec 13031 mips_clear_insn_labels ();
252b5132
RH
13032}
13033
13034static void
17a2f251 13035s_float_cons (int type)
252b5132 13036{
a8dbcb85
TS
13037 segment_info_type *si = seg_info (now_seg);
13038 struct insn_label_list *l = si->label_list;
252b5132
RH
13039 symbolS *label;
13040
a8dbcb85 13041 label = l != NULL ? l->label : NULL;
252b5132 13042
7d10b47d 13043 mips_emit_delays ();
252b5132
RH
13044
13045 if (auto_align)
49309057
ILT
13046 {
13047 if (type == 'd')
13048 mips_align (3, 0, label);
13049 else
13050 mips_align (2, 0, label);
13051 }
252b5132 13052
252b5132 13053 float_cons (type);
a1facbec 13054 mips_clear_insn_labels ();
252b5132
RH
13055}
13056
13057/* Handle .globl. We need to override it because on Irix 5 you are
13058 permitted to say
13059 .globl foo .text
13060 where foo is an undefined symbol, to mean that foo should be
13061 considered to be the address of a function. */
13062
13063static void
17a2f251 13064s_mips_globl (int x ATTRIBUTE_UNUSED)
252b5132
RH
13065{
13066 char *name;
13067 int c;
13068 symbolS *symbolP;
13069 flagword flag;
13070
8a06b769 13071 do
252b5132 13072 {
8a06b769 13073 name = input_line_pointer;
252b5132 13074 c = get_symbol_end ();
8a06b769
TS
13075 symbolP = symbol_find_or_make (name);
13076 S_SET_EXTERNAL (symbolP);
13077
252b5132 13078 *input_line_pointer = c;
8a06b769 13079 SKIP_WHITESPACE ();
252b5132 13080
8a06b769
TS
13081 /* On Irix 5, every global symbol that is not explicitly labelled as
13082 being a function is apparently labelled as being an object. */
13083 flag = BSF_OBJECT;
252b5132 13084
8a06b769
TS
13085 if (!is_end_of_line[(unsigned char) *input_line_pointer]
13086 && (*input_line_pointer != ','))
13087 {
13088 char *secname;
13089 asection *sec;
13090
13091 secname = input_line_pointer;
13092 c = get_symbol_end ();
13093 sec = bfd_get_section_by_name (stdoutput, secname);
13094 if (sec == NULL)
13095 as_bad (_("%s: no such section"), secname);
13096 *input_line_pointer = c;
13097
13098 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
13099 flag = BSF_FUNCTION;
13100 }
13101
13102 symbol_get_bfdsym (symbolP)->flags |= flag;
13103
13104 c = *input_line_pointer;
13105 if (c == ',')
13106 {
13107 input_line_pointer++;
13108 SKIP_WHITESPACE ();
13109 if (is_end_of_line[(unsigned char) *input_line_pointer])
13110 c = '\n';
13111 }
13112 }
13113 while (c == ',');
252b5132 13114
252b5132
RH
13115 demand_empty_rest_of_line ();
13116}
13117
13118static void
17a2f251 13119s_option (int x ATTRIBUTE_UNUSED)
252b5132
RH
13120{
13121 char *opt;
13122 char c;
13123
13124 opt = input_line_pointer;
13125 c = get_symbol_end ();
13126
13127 if (*opt == 'O')
13128 {
13129 /* FIXME: What does this mean? */
13130 }
13131 else if (strncmp (opt, "pic", 3) == 0)
13132 {
13133 int i;
13134
13135 i = atoi (opt + 3);
13136 if (i == 0)
13137 mips_pic = NO_PIC;
13138 else if (i == 2)
143d77c5 13139 {
252b5132 13140 mips_pic = SVR4_PIC;
143d77c5
EC
13141 mips_abicalls = TRUE;
13142 }
252b5132
RH
13143 else
13144 as_bad (_(".option pic%d not supported"), i);
13145
4d0d148d 13146 if (mips_pic == SVR4_PIC)
252b5132
RH
13147 {
13148 if (g_switch_seen && g_switch_value != 0)
13149 as_warn (_("-G may not be used with SVR4 PIC code"));
13150 g_switch_value = 0;
13151 bfd_set_gp_size (stdoutput, 0);
13152 }
13153 }
13154 else
13155 as_warn (_("Unrecognized option \"%s\""), opt);
13156
13157 *input_line_pointer = c;
13158 demand_empty_rest_of_line ();
13159}
13160
13161/* This structure is used to hold a stack of .set values. */
13162
e972090a
NC
13163struct mips_option_stack
13164{
252b5132
RH
13165 struct mips_option_stack *next;
13166 struct mips_set_options options;
13167};
13168
13169static struct mips_option_stack *mips_opts_stack;
13170
13171/* Handle the .set pseudo-op. */
13172
13173static void
17a2f251 13174s_mipsset (int x ATTRIBUTE_UNUSED)
252b5132
RH
13175{
13176 char *name = input_line_pointer, ch;
13177
13178 while (!is_end_of_line[(unsigned char) *input_line_pointer])
f9419b05 13179 ++input_line_pointer;
252b5132
RH
13180 ch = *input_line_pointer;
13181 *input_line_pointer = '\0';
13182
13183 if (strcmp (name, "reorder") == 0)
13184 {
7d10b47d
RS
13185 if (mips_opts.noreorder)
13186 end_noreorder ();
252b5132
RH
13187 }
13188 else if (strcmp (name, "noreorder") == 0)
13189 {
7d10b47d
RS
13190 if (!mips_opts.noreorder)
13191 start_noreorder ();
252b5132 13192 }
741fe287
MR
13193 else if (strncmp (name, "at=", 3) == 0)
13194 {
13195 char *s = name + 3;
13196
13197 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at))
13198 as_bad (_("Unrecognized register name `%s'"), s);
13199 }
252b5132
RH
13200 else if (strcmp (name, "at") == 0)
13201 {
741fe287 13202 mips_opts.at = ATREG;
252b5132
RH
13203 }
13204 else if (strcmp (name, "noat") == 0)
13205 {
741fe287 13206 mips_opts.at = ZERO;
252b5132
RH
13207 }
13208 else if (strcmp (name, "macro") == 0)
13209 {
13210 mips_opts.warn_about_macros = 0;
13211 }
13212 else if (strcmp (name, "nomacro") == 0)
13213 {
13214 if (mips_opts.noreorder == 0)
13215 as_bad (_("`noreorder' must be set before `nomacro'"));
13216 mips_opts.warn_about_macros = 1;
13217 }
13218 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
13219 {
13220 mips_opts.nomove = 0;
13221 }
13222 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
13223 {
13224 mips_opts.nomove = 1;
13225 }
13226 else if (strcmp (name, "bopt") == 0)
13227 {
13228 mips_opts.nobopt = 0;
13229 }
13230 else if (strcmp (name, "nobopt") == 0)
13231 {
13232 mips_opts.nobopt = 1;
13233 }
ad3fea08
TS
13234 else if (strcmp (name, "gp=default") == 0)
13235 mips_opts.gp32 = file_mips_gp32;
13236 else if (strcmp (name, "gp=32") == 0)
13237 mips_opts.gp32 = 1;
13238 else if (strcmp (name, "gp=64") == 0)
13239 {
13240 if (!ISA_HAS_64BIT_REGS (mips_opts.isa))
20203fb9 13241 as_warn (_("%s isa does not support 64-bit registers"),
ad3fea08
TS
13242 mips_cpu_info_from_isa (mips_opts.isa)->name);
13243 mips_opts.gp32 = 0;
13244 }
13245 else if (strcmp (name, "fp=default") == 0)
13246 mips_opts.fp32 = file_mips_fp32;
13247 else if (strcmp (name, "fp=32") == 0)
13248 mips_opts.fp32 = 1;
13249 else if (strcmp (name, "fp=64") == 0)
13250 {
13251 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
20203fb9 13252 as_warn (_("%s isa does not support 64-bit floating point registers"),
ad3fea08
TS
13253 mips_cpu_info_from_isa (mips_opts.isa)->name);
13254 mips_opts.fp32 = 0;
13255 }
037b32b9
AN
13256 else if (strcmp (name, "softfloat") == 0)
13257 mips_opts.soft_float = 1;
13258 else if (strcmp (name, "hardfloat") == 0)
13259 mips_opts.soft_float = 0;
13260 else if (strcmp (name, "singlefloat") == 0)
13261 mips_opts.single_float = 1;
13262 else if (strcmp (name, "doublefloat") == 0)
13263 mips_opts.single_float = 0;
252b5132
RH
13264 else if (strcmp (name, "mips16") == 0
13265 || strcmp (name, "MIPS-16") == 0)
13266 mips_opts.mips16 = 1;
13267 else if (strcmp (name, "nomips16") == 0
13268 || strcmp (name, "noMIPS-16") == 0)
13269 mips_opts.mips16 = 0;
e16bfa71
TS
13270 else if (strcmp (name, "smartmips") == 0)
13271 {
ad3fea08 13272 if (!ISA_SUPPORTS_SMARTMIPS)
20203fb9 13273 as_warn (_("%s ISA does not support SmartMIPS ASE"),
e16bfa71
TS
13274 mips_cpu_info_from_isa (mips_opts.isa)->name);
13275 mips_opts.ase_smartmips = 1;
13276 }
13277 else if (strcmp (name, "nosmartmips") == 0)
13278 mips_opts.ase_smartmips = 0;
1f25f5d3
CD
13279 else if (strcmp (name, "mips3d") == 0)
13280 mips_opts.ase_mips3d = 1;
13281 else if (strcmp (name, "nomips3d") == 0)
13282 mips_opts.ase_mips3d = 0;
a4672219
TS
13283 else if (strcmp (name, "mdmx") == 0)
13284 mips_opts.ase_mdmx = 1;
13285 else if (strcmp (name, "nomdmx") == 0)
13286 mips_opts.ase_mdmx = 0;
74cd071d 13287 else if (strcmp (name, "dsp") == 0)
ad3fea08
TS
13288 {
13289 if (!ISA_SUPPORTS_DSP_ASE)
20203fb9 13290 as_warn (_("%s ISA does not support DSP ASE"),
ad3fea08
TS
13291 mips_cpu_info_from_isa (mips_opts.isa)->name);
13292 mips_opts.ase_dsp = 1;
8b082fb1 13293 mips_opts.ase_dspr2 = 0;
ad3fea08 13294 }
74cd071d 13295 else if (strcmp (name, "nodsp") == 0)
8b082fb1
TS
13296 {
13297 mips_opts.ase_dsp = 0;
13298 mips_opts.ase_dspr2 = 0;
13299 }
13300 else if (strcmp (name, "dspr2") == 0)
13301 {
13302 if (!ISA_SUPPORTS_DSPR2_ASE)
20203fb9 13303 as_warn (_("%s ISA does not support DSP R2 ASE"),
8b082fb1
TS
13304 mips_cpu_info_from_isa (mips_opts.isa)->name);
13305 mips_opts.ase_dspr2 = 1;
13306 mips_opts.ase_dsp = 1;
13307 }
13308 else if (strcmp (name, "nodspr2") == 0)
13309 {
13310 mips_opts.ase_dspr2 = 0;
13311 mips_opts.ase_dsp = 0;
13312 }
ef2e4d86 13313 else if (strcmp (name, "mt") == 0)
ad3fea08
TS
13314 {
13315 if (!ISA_SUPPORTS_MT_ASE)
20203fb9 13316 as_warn (_("%s ISA does not support MT ASE"),
ad3fea08
TS
13317 mips_cpu_info_from_isa (mips_opts.isa)->name);
13318 mips_opts.ase_mt = 1;
13319 }
ef2e4d86
CF
13320 else if (strcmp (name, "nomt") == 0)
13321 mips_opts.ase_mt = 0;
1a2c1fad 13322 else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
252b5132 13323 {
af7ee8bf 13324 int reset = 0;
252b5132 13325
1a2c1fad
CD
13326 /* Permit the user to change the ISA and architecture on the fly.
13327 Needless to say, misuse can cause serious problems. */
81a21e38 13328 if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
af7ee8bf
CD
13329 {
13330 reset = 1;
13331 mips_opts.isa = file_mips_isa;
1a2c1fad 13332 mips_opts.arch = file_mips_arch;
1a2c1fad
CD
13333 }
13334 else if (strncmp (name, "arch=", 5) == 0)
13335 {
13336 const struct mips_cpu_info *p;
13337
13338 p = mips_parse_cpu("internal use", name + 5);
13339 if (!p)
13340 as_bad (_("unknown architecture %s"), name + 5);
13341 else
13342 {
13343 mips_opts.arch = p->cpu;
13344 mips_opts.isa = p->isa;
13345 }
13346 }
81a21e38
TS
13347 else if (strncmp (name, "mips", 4) == 0)
13348 {
13349 const struct mips_cpu_info *p;
13350
13351 p = mips_parse_cpu("internal use", name);
13352 if (!p)
13353 as_bad (_("unknown ISA level %s"), name + 4);
13354 else
13355 {
13356 mips_opts.arch = p->cpu;
13357 mips_opts.isa = p->isa;
13358 }
13359 }
af7ee8bf 13360 else
81a21e38 13361 as_bad (_("unknown ISA or architecture %s"), name);
af7ee8bf
CD
13362
13363 switch (mips_opts.isa)
98d3f06f
KH
13364 {
13365 case 0:
98d3f06f 13366 break;
af7ee8bf
CD
13367 case ISA_MIPS1:
13368 case ISA_MIPS2:
13369 case ISA_MIPS32:
13370 case ISA_MIPS32R2:
98d3f06f
KH
13371 mips_opts.gp32 = 1;
13372 mips_opts.fp32 = 1;
13373 break;
af7ee8bf
CD
13374 case ISA_MIPS3:
13375 case ISA_MIPS4:
13376 case ISA_MIPS5:
13377 case ISA_MIPS64:
5f74bc13 13378 case ISA_MIPS64R2:
98d3f06f
KH
13379 mips_opts.gp32 = 0;
13380 mips_opts.fp32 = 0;
13381 break;
13382 default:
13383 as_bad (_("unknown ISA level %s"), name + 4);
13384 break;
13385 }
af7ee8bf 13386 if (reset)
98d3f06f 13387 {
af7ee8bf
CD
13388 mips_opts.gp32 = file_mips_gp32;
13389 mips_opts.fp32 = file_mips_fp32;
98d3f06f 13390 }
252b5132
RH
13391 }
13392 else if (strcmp (name, "autoextend") == 0)
13393 mips_opts.noautoextend = 0;
13394 else if (strcmp (name, "noautoextend") == 0)
13395 mips_opts.noautoextend = 1;
13396 else if (strcmp (name, "push") == 0)
13397 {
13398 struct mips_option_stack *s;
13399
13400 s = (struct mips_option_stack *) xmalloc (sizeof *s);
13401 s->next = mips_opts_stack;
13402 s->options = mips_opts;
13403 mips_opts_stack = s;
13404 }
13405 else if (strcmp (name, "pop") == 0)
13406 {
13407 struct mips_option_stack *s;
13408
13409 s = mips_opts_stack;
13410 if (s == NULL)
13411 as_bad (_(".set pop with no .set push"));
13412 else
13413 {
13414 /* If we're changing the reorder mode we need to handle
13415 delay slots correctly. */
13416 if (s->options.noreorder && ! mips_opts.noreorder)
7d10b47d 13417 start_noreorder ();
252b5132 13418 else if (! s->options.noreorder && mips_opts.noreorder)
7d10b47d 13419 end_noreorder ();
252b5132
RH
13420
13421 mips_opts = s->options;
13422 mips_opts_stack = s->next;
13423 free (s);
13424 }
13425 }
aed1a261
RS
13426 else if (strcmp (name, "sym32") == 0)
13427 mips_opts.sym32 = TRUE;
13428 else if (strcmp (name, "nosym32") == 0)
13429 mips_opts.sym32 = FALSE;
e6559e01
JM
13430 else if (strchr (name, ','))
13431 {
13432 /* Generic ".set" directive; use the generic handler. */
13433 *input_line_pointer = ch;
13434 input_line_pointer = name;
13435 s_set (0);
13436 return;
13437 }
252b5132
RH
13438 else
13439 {
13440 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
13441 }
13442 *input_line_pointer = ch;
13443 demand_empty_rest_of_line ();
13444}
13445
13446/* Handle the .abicalls pseudo-op. I believe this is equivalent to
13447 .option pic2. It means to generate SVR4 PIC calls. */
13448
13449static void
17a2f251 13450s_abicalls (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
13451{
13452 mips_pic = SVR4_PIC;
143d77c5 13453 mips_abicalls = TRUE;
4d0d148d
TS
13454
13455 if (g_switch_seen && g_switch_value != 0)
13456 as_warn (_("-G may not be used with SVR4 PIC code"));
13457 g_switch_value = 0;
13458
252b5132
RH
13459 bfd_set_gp_size (stdoutput, 0);
13460 demand_empty_rest_of_line ();
13461}
13462
13463/* Handle the .cpload pseudo-op. This is used when generating SVR4
13464 PIC code. It sets the $gp register for the function based on the
13465 function address, which is in the register named in the argument.
13466 This uses a relocation against _gp_disp, which is handled specially
13467 by the linker. The result is:
13468 lui $gp,%hi(_gp_disp)
13469 addiu $gp,$gp,%lo(_gp_disp)
13470 addu $gp,$gp,.cpload argument
aa6975fb
ILT
13471 The .cpload argument is normally $25 == $t9.
13472
13473 The -mno-shared option changes this to:
bbe506e8
TS
13474 lui $gp,%hi(__gnu_local_gp)
13475 addiu $gp,$gp,%lo(__gnu_local_gp)
aa6975fb
ILT
13476 and the argument is ignored. This saves an instruction, but the
13477 resulting code is not position independent; it uses an absolute
bbe506e8
TS
13478 address for __gnu_local_gp. Thus code assembled with -mno-shared
13479 can go into an ordinary executable, but not into a shared library. */
252b5132
RH
13480
13481static void
17a2f251 13482s_cpload (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
13483{
13484 expressionS ex;
aa6975fb
ILT
13485 int reg;
13486 int in_shared;
252b5132 13487
6478892d
TS
13488 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
13489 .cpload is ignored. */
13490 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
13491 {
13492 s_ignore (0);
13493 return;
13494 }
13495
d3ecfc59 13496 /* .cpload should be in a .set noreorder section. */
252b5132
RH
13497 if (mips_opts.noreorder == 0)
13498 as_warn (_(".cpload not in noreorder section"));
13499
aa6975fb
ILT
13500 reg = tc_get_register (0);
13501
13502 /* If we need to produce a 64-bit address, we are better off using
13503 the default instruction sequence. */
aed1a261 13504 in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
aa6975fb 13505
252b5132 13506 ex.X_op = O_symbol;
bbe506e8
TS
13507 ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
13508 "__gnu_local_gp");
252b5132
RH
13509 ex.X_op_symbol = NULL;
13510 ex.X_add_number = 0;
13511
13512 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
49309057 13513 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
252b5132 13514
584892a6 13515 macro_start ();
67c0d1eb
RS
13516 macro_build_lui (&ex, mips_gp_register);
13517 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
17a2f251 13518 mips_gp_register, BFD_RELOC_LO16);
aa6975fb
ILT
13519 if (in_shared)
13520 macro_build (NULL, "addu", "d,v,t", mips_gp_register,
13521 mips_gp_register, reg);
584892a6 13522 macro_end ();
252b5132
RH
13523
13524 demand_empty_rest_of_line ();
13525}
13526
6478892d
TS
13527/* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
13528 .cpsetup $reg1, offset|$reg2, label
13529
13530 If offset is given, this results in:
13531 sd $gp, offset($sp)
956cd1d6 13532 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
13533 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
13534 daddu $gp, $gp, $reg1
6478892d
TS
13535
13536 If $reg2 is given, this results in:
13537 daddu $reg2, $gp, $0
956cd1d6 13538 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
13539 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
13540 daddu $gp, $gp, $reg1
aa6975fb
ILT
13541 $reg1 is normally $25 == $t9.
13542
13543 The -mno-shared option replaces the last three instructions with
13544 lui $gp,%hi(_gp)
54f4ddb3 13545 addiu $gp,$gp,%lo(_gp) */
aa6975fb 13546
6478892d 13547static void
17a2f251 13548s_cpsetup (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
13549{
13550 expressionS ex_off;
13551 expressionS ex_sym;
13552 int reg1;
6478892d 13553
8586fc66 13554 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
6478892d
TS
13555 We also need NewABI support. */
13556 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13557 {
13558 s_ignore (0);
13559 return;
13560 }
13561
13562 reg1 = tc_get_register (0);
13563 SKIP_WHITESPACE ();
13564 if (*input_line_pointer != ',')
13565 {
13566 as_bad (_("missing argument separator ',' for .cpsetup"));
13567 return;
13568 }
13569 else
80245285 13570 ++input_line_pointer;
6478892d
TS
13571 SKIP_WHITESPACE ();
13572 if (*input_line_pointer == '$')
80245285
TS
13573 {
13574 mips_cpreturn_register = tc_get_register (0);
13575 mips_cpreturn_offset = -1;
13576 }
6478892d 13577 else
80245285
TS
13578 {
13579 mips_cpreturn_offset = get_absolute_expression ();
13580 mips_cpreturn_register = -1;
13581 }
6478892d
TS
13582 SKIP_WHITESPACE ();
13583 if (*input_line_pointer != ',')
13584 {
13585 as_bad (_("missing argument separator ',' for .cpsetup"));
13586 return;
13587 }
13588 else
f9419b05 13589 ++input_line_pointer;
6478892d 13590 SKIP_WHITESPACE ();
f21f8242 13591 expression (&ex_sym);
6478892d 13592
584892a6 13593 macro_start ();
6478892d
TS
13594 if (mips_cpreturn_register == -1)
13595 {
13596 ex_off.X_op = O_constant;
13597 ex_off.X_add_symbol = NULL;
13598 ex_off.X_op_symbol = NULL;
13599 ex_off.X_add_number = mips_cpreturn_offset;
13600
67c0d1eb 13601 macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
17a2f251 13602 BFD_RELOC_LO16, SP);
6478892d
TS
13603 }
13604 else
67c0d1eb 13605 macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
17a2f251 13606 mips_gp_register, 0);
6478892d 13607
aed1a261 13608 if (mips_in_shared || HAVE_64BIT_SYMBOLS)
aa6975fb
ILT
13609 {
13610 macro_build (&ex_sym, "lui", "t,u", mips_gp_register,
13611 -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
13612 BFD_RELOC_HI16_S);
13613
13614 macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
13615 mips_gp_register, -1, BFD_RELOC_GPREL16,
13616 BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
13617
13618 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
13619 mips_gp_register, reg1);
13620 }
13621 else
13622 {
13623 expressionS ex;
13624
13625 ex.X_op = O_symbol;
4184909a 13626 ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
aa6975fb
ILT
13627 ex.X_op_symbol = NULL;
13628 ex.X_add_number = 0;
6e1304d8 13629
aa6975fb
ILT
13630 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
13631 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
13632
13633 macro_build_lui (&ex, mips_gp_register);
13634 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
13635 mips_gp_register, BFD_RELOC_LO16);
13636 }
f21f8242 13637
584892a6 13638 macro_end ();
6478892d
TS
13639
13640 demand_empty_rest_of_line ();
13641}
13642
13643static void
17a2f251 13644s_cplocal (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
13645{
13646 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
54f4ddb3 13647 .cplocal is ignored. */
6478892d
TS
13648 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13649 {
13650 s_ignore (0);
13651 return;
13652 }
13653
13654 mips_gp_register = tc_get_register (0);
85b51719 13655 demand_empty_rest_of_line ();
6478892d
TS
13656}
13657
252b5132
RH
13658/* Handle the .cprestore pseudo-op. This stores $gp into a given
13659 offset from $sp. The offset is remembered, and after making a PIC
13660 call $gp is restored from that location. */
13661
13662static void
17a2f251 13663s_cprestore (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
13664{
13665 expressionS ex;
252b5132 13666
6478892d 13667 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
c9914766 13668 .cprestore is ignored. */
6478892d 13669 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
13670 {
13671 s_ignore (0);
13672 return;
13673 }
13674
13675 mips_cprestore_offset = get_absolute_expression ();
7a621144 13676 mips_cprestore_valid = 1;
252b5132
RH
13677
13678 ex.X_op = O_constant;
13679 ex.X_add_symbol = NULL;
13680 ex.X_op_symbol = NULL;
13681 ex.X_add_number = mips_cprestore_offset;
13682
584892a6 13683 macro_start ();
67c0d1eb
RS
13684 macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
13685 SP, HAVE_64BIT_ADDRESSES);
584892a6 13686 macro_end ();
252b5132
RH
13687
13688 demand_empty_rest_of_line ();
13689}
13690
6478892d 13691/* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
67c1ffbe 13692 was given in the preceding .cpsetup, it results in:
6478892d 13693 ld $gp, offset($sp)
76b3015f 13694
6478892d 13695 If a register $reg2 was given there, it results in:
54f4ddb3
TS
13696 daddu $gp, $reg2, $0 */
13697
6478892d 13698static void
17a2f251 13699s_cpreturn (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
13700{
13701 expressionS ex;
6478892d
TS
13702
13703 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
13704 We also need NewABI support. */
13705 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13706 {
13707 s_ignore (0);
13708 return;
13709 }
13710
584892a6 13711 macro_start ();
6478892d
TS
13712 if (mips_cpreturn_register == -1)
13713 {
13714 ex.X_op = O_constant;
13715 ex.X_add_symbol = NULL;
13716 ex.X_op_symbol = NULL;
13717 ex.X_add_number = mips_cpreturn_offset;
13718
67c0d1eb 13719 macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
6478892d
TS
13720 }
13721 else
67c0d1eb 13722 macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
17a2f251 13723 mips_cpreturn_register, 0);
584892a6 13724 macro_end ();
6478892d
TS
13725
13726 demand_empty_rest_of_line ();
13727}
13728
741d6ea8
JM
13729/* Handle the .dtprelword and .dtpreldword pseudo-ops. They generate
13730 a 32-bit or 64-bit DTP-relative relocation (BYTES says which) for
13731 use in DWARF debug information. */
13732
13733static void
13734s_dtprel_internal (size_t bytes)
13735{
13736 expressionS ex;
13737 char *p;
13738
13739 expression (&ex);
13740
13741 if (ex.X_op != O_symbol)
13742 {
13743 as_bad (_("Unsupported use of %s"), (bytes == 8
13744 ? ".dtpreldword"
13745 : ".dtprelword"));
13746 ignore_rest_of_line ();
13747 }
13748
13749 p = frag_more (bytes);
13750 md_number_to_chars (p, 0, bytes);
13751 fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE,
13752 (bytes == 8
13753 ? BFD_RELOC_MIPS_TLS_DTPREL64
13754 : BFD_RELOC_MIPS_TLS_DTPREL32));
13755
13756 demand_empty_rest_of_line ();
13757}
13758
13759/* Handle .dtprelword. */
13760
13761static void
13762s_dtprelword (int ignore ATTRIBUTE_UNUSED)
13763{
13764 s_dtprel_internal (4);
13765}
13766
13767/* Handle .dtpreldword. */
13768
13769static void
13770s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
13771{
13772 s_dtprel_internal (8);
13773}
13774
6478892d
TS
13775/* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
13776 code. It sets the offset to use in gp_rel relocations. */
13777
13778static void
17a2f251 13779s_gpvalue (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
13780{
13781 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
13782 We also need NewABI support. */
13783 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13784 {
13785 s_ignore (0);
13786 return;
13787 }
13788
def2e0dd 13789 mips_gprel_offset = get_absolute_expression ();
6478892d
TS
13790
13791 demand_empty_rest_of_line ();
13792}
13793
252b5132
RH
13794/* Handle the .gpword pseudo-op. This is used when generating PIC
13795 code. It generates a 32 bit GP relative reloc. */
13796
13797static void
17a2f251 13798s_gpword (int ignore ATTRIBUTE_UNUSED)
252b5132 13799{
a8dbcb85
TS
13800 segment_info_type *si;
13801 struct insn_label_list *l;
252b5132
RH
13802 symbolS *label;
13803 expressionS ex;
13804 char *p;
13805
13806 /* When not generating PIC code, this is treated as .word. */
13807 if (mips_pic != SVR4_PIC)
13808 {
13809 s_cons (2);
13810 return;
13811 }
13812
a8dbcb85
TS
13813 si = seg_info (now_seg);
13814 l = si->label_list;
13815 label = l != NULL ? l->label : NULL;
7d10b47d 13816 mips_emit_delays ();
252b5132
RH
13817 if (auto_align)
13818 mips_align (2, 0, label);
252b5132
RH
13819
13820 expression (&ex);
a1facbec 13821 mips_clear_insn_labels ();
252b5132
RH
13822
13823 if (ex.X_op != O_symbol || ex.X_add_number != 0)
13824 {
13825 as_bad (_("Unsupported use of .gpword"));
13826 ignore_rest_of_line ();
13827 }
13828
13829 p = frag_more (4);
17a2f251 13830 md_number_to_chars (p, 0, 4);
b34976b6 13831 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
cdf6fd85 13832 BFD_RELOC_GPREL32);
252b5132
RH
13833
13834 demand_empty_rest_of_line ();
13835}
13836
10181a0d 13837static void
17a2f251 13838s_gpdword (int ignore ATTRIBUTE_UNUSED)
10181a0d 13839{
a8dbcb85
TS
13840 segment_info_type *si;
13841 struct insn_label_list *l;
10181a0d
AO
13842 symbolS *label;
13843 expressionS ex;
13844 char *p;
13845
13846 /* When not generating PIC code, this is treated as .dword. */
13847 if (mips_pic != SVR4_PIC)
13848 {
13849 s_cons (3);
13850 return;
13851 }
13852
a8dbcb85
TS
13853 si = seg_info (now_seg);
13854 l = si->label_list;
13855 label = l != NULL ? l->label : NULL;
7d10b47d 13856 mips_emit_delays ();
10181a0d
AO
13857 if (auto_align)
13858 mips_align (3, 0, label);
10181a0d
AO
13859
13860 expression (&ex);
a1facbec 13861 mips_clear_insn_labels ();
10181a0d
AO
13862
13863 if (ex.X_op != O_symbol || ex.X_add_number != 0)
13864 {
13865 as_bad (_("Unsupported use of .gpdword"));
13866 ignore_rest_of_line ();
13867 }
13868
13869 p = frag_more (8);
17a2f251 13870 md_number_to_chars (p, 0, 8);
a105a300 13871 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
6e1304d8 13872 BFD_RELOC_GPREL32)->fx_tcbit = 1;
10181a0d
AO
13873
13874 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
6e1304d8
RS
13875 fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
13876 FALSE, BFD_RELOC_64)->fx_tcbit = 1;
10181a0d
AO
13877
13878 demand_empty_rest_of_line ();
13879}
13880
252b5132
RH
13881/* Handle the .cpadd pseudo-op. This is used when dealing with switch
13882 tables in SVR4 PIC code. */
13883
13884static void
17a2f251 13885s_cpadd (int ignore ATTRIBUTE_UNUSED)
252b5132 13886{
252b5132
RH
13887 int reg;
13888
10181a0d
AO
13889 /* This is ignored when not generating SVR4 PIC code. */
13890 if (mips_pic != SVR4_PIC)
252b5132
RH
13891 {
13892 s_ignore (0);
13893 return;
13894 }
13895
13896 /* Add $gp to the register named as an argument. */
584892a6 13897 macro_start ();
252b5132 13898 reg = tc_get_register (0);
67c0d1eb 13899 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
584892a6 13900 macro_end ();
252b5132 13901
bdaaa2e1 13902 demand_empty_rest_of_line ();
252b5132
RH
13903}
13904
13905/* Handle the .insn pseudo-op. This marks instruction labels in
13906 mips16 mode. This permits the linker to handle them specially,
13907 such as generating jalx instructions when needed. We also make
13908 them odd for the duration of the assembly, in order to generate the
13909 right sort of code. We will make them even in the adjust_symtab
13910 routine, while leaving them marked. This is convenient for the
13911 debugger and the disassembler. The linker knows to make them odd
13912 again. */
13913
13914static void
17a2f251 13915s_insn (int ignore ATTRIBUTE_UNUSED)
252b5132 13916{
f9419b05 13917 mips16_mark_labels ();
252b5132
RH
13918
13919 demand_empty_rest_of_line ();
13920}
13921
13922/* Handle a .stabn directive. We need these in order to mark a label
13923 as being a mips16 text label correctly. Sometimes the compiler
13924 will emit a label, followed by a .stabn, and then switch sections.
13925 If the label and .stabn are in mips16 mode, then the label is
13926 really a mips16 text label. */
13927
13928static void
17a2f251 13929s_mips_stab (int type)
252b5132 13930{
f9419b05 13931 if (type == 'n')
252b5132
RH
13932 mips16_mark_labels ();
13933
13934 s_stab (type);
13935}
13936
54f4ddb3 13937/* Handle the .weakext pseudo-op as defined in Kane and Heinrich. */
252b5132
RH
13938
13939static void
17a2f251 13940s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
13941{
13942 char *name;
13943 int c;
13944 symbolS *symbolP;
13945 expressionS exp;
13946
13947 name = input_line_pointer;
13948 c = get_symbol_end ();
13949 symbolP = symbol_find_or_make (name);
13950 S_SET_WEAK (symbolP);
13951 *input_line_pointer = c;
13952
13953 SKIP_WHITESPACE ();
13954
13955 if (! is_end_of_line[(unsigned char) *input_line_pointer])
13956 {
13957 if (S_IS_DEFINED (symbolP))
13958 {
20203fb9 13959 as_bad (_("ignoring attempt to redefine symbol %s"),
252b5132
RH
13960 S_GET_NAME (symbolP));
13961 ignore_rest_of_line ();
13962 return;
13963 }
bdaaa2e1 13964
252b5132
RH
13965 if (*input_line_pointer == ',')
13966 {
13967 ++input_line_pointer;
13968 SKIP_WHITESPACE ();
13969 }
bdaaa2e1 13970
252b5132
RH
13971 expression (&exp);
13972 if (exp.X_op != O_symbol)
13973 {
20203fb9 13974 as_bad (_("bad .weakext directive"));
98d3f06f 13975 ignore_rest_of_line ();
252b5132
RH
13976 return;
13977 }
49309057 13978 symbol_set_value_expression (symbolP, &exp);
252b5132
RH
13979 }
13980
13981 demand_empty_rest_of_line ();
13982}
13983
13984/* Parse a register string into a number. Called from the ECOFF code
13985 to parse .frame. The argument is non-zero if this is the frame
13986 register, so that we can record it in mips_frame_reg. */
13987
13988int
17a2f251 13989tc_get_register (int frame)
252b5132 13990{
707bfff6 13991 unsigned int reg;
252b5132
RH
13992
13993 SKIP_WHITESPACE ();
707bfff6
TS
13994 if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, &reg))
13995 reg = 0;
252b5132 13996 if (frame)
7a621144
DJ
13997 {
13998 mips_frame_reg = reg != 0 ? reg : SP;
13999 mips_frame_reg_valid = 1;
14000 mips_cprestore_valid = 0;
14001 }
252b5132
RH
14002 return reg;
14003}
14004
14005valueT
17a2f251 14006md_section_align (asection *seg, valueT addr)
252b5132
RH
14007{
14008 int align = bfd_get_section_alignment (stdoutput, seg);
14009
b4c71f56
TS
14010 if (IS_ELF)
14011 {
14012 /* We don't need to align ELF sections to the full alignment.
14013 However, Irix 5 may prefer that we align them at least to a 16
14014 byte boundary. We don't bother to align the sections if we
14015 are targeted for an embedded system. */
c41e87e3 14016 if (strncmp (TARGET_OS, "elf", 3) == 0)
b4c71f56
TS
14017 return addr;
14018 if (align > 4)
14019 align = 4;
14020 }
252b5132
RH
14021
14022 return ((addr + (1 << align) - 1) & (-1 << align));
14023}
14024
14025/* Utility routine, called from above as well. If called while the
14026 input file is still being read, it's only an approximation. (For
14027 example, a symbol may later become defined which appeared to be
14028 undefined earlier.) */
14029
14030static int
17a2f251 14031nopic_need_relax (symbolS *sym, int before_relaxing)
252b5132
RH
14032{
14033 if (sym == 0)
14034 return 0;
14035
4d0d148d 14036 if (g_switch_value > 0)
252b5132
RH
14037 {
14038 const char *symname;
14039 int change;
14040
c9914766 14041 /* Find out whether this symbol can be referenced off the $gp
252b5132
RH
14042 register. It can be if it is smaller than the -G size or if
14043 it is in the .sdata or .sbss section. Certain symbols can
c9914766 14044 not be referenced off the $gp, although it appears as though
252b5132
RH
14045 they can. */
14046 symname = S_GET_NAME (sym);
14047 if (symname != (const char *) NULL
14048 && (strcmp (symname, "eprol") == 0
14049 || strcmp (symname, "etext") == 0
14050 || strcmp (symname, "_gp") == 0
14051 || strcmp (symname, "edata") == 0
14052 || strcmp (symname, "_fbss") == 0
14053 || strcmp (symname, "_fdata") == 0
14054 || strcmp (symname, "_ftext") == 0
14055 || strcmp (symname, "end") == 0
14056 || strcmp (symname, "_gp_disp") == 0))
14057 change = 1;
14058 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
14059 && (0
14060#ifndef NO_ECOFF_DEBUGGING
49309057
ILT
14061 || (symbol_get_obj (sym)->ecoff_extern_size != 0
14062 && (symbol_get_obj (sym)->ecoff_extern_size
14063 <= g_switch_value))
252b5132
RH
14064#endif
14065 /* We must defer this decision until after the whole
14066 file has been read, since there might be a .extern
14067 after the first use of this symbol. */
14068 || (before_relaxing
14069#ifndef NO_ECOFF_DEBUGGING
49309057 14070 && symbol_get_obj (sym)->ecoff_extern_size == 0
252b5132
RH
14071#endif
14072 && S_GET_VALUE (sym) == 0)
14073 || (S_GET_VALUE (sym) != 0
14074 && S_GET_VALUE (sym) <= g_switch_value)))
14075 change = 0;
14076 else
14077 {
14078 const char *segname;
14079
14080 segname = segment_name (S_GET_SEGMENT (sym));
9c2799c2 14081 gas_assert (strcmp (segname, ".lit8") != 0
252b5132
RH
14082 && strcmp (segname, ".lit4") != 0);
14083 change = (strcmp (segname, ".sdata") != 0
fba2b7f9
GK
14084 && strcmp (segname, ".sbss") != 0
14085 && strncmp (segname, ".sdata.", 7) != 0
d4dc2f22
TS
14086 && strncmp (segname, ".sbss.", 6) != 0
14087 && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0
fba2b7f9 14088 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
252b5132
RH
14089 }
14090 return change;
14091 }
14092 else
c9914766 14093 /* We are not optimizing for the $gp register. */
252b5132
RH
14094 return 1;
14095}
14096
5919d012
RS
14097
14098/* Return true if the given symbol should be considered local for SVR4 PIC. */
14099
14100static bfd_boolean
17a2f251 14101pic_need_relax (symbolS *sym, asection *segtype)
5919d012
RS
14102{
14103 asection *symsec;
5919d012
RS
14104
14105 /* Handle the case of a symbol equated to another symbol. */
14106 while (symbol_equated_reloc_p (sym))
14107 {
14108 symbolS *n;
14109
5f0fe04b 14110 /* It's possible to get a loop here in a badly written program. */
5919d012
RS
14111 n = symbol_get_value_expression (sym)->X_add_symbol;
14112 if (n == sym)
14113 break;
14114 sym = n;
14115 }
14116
df1f3cda
DD
14117 if (symbol_section_p (sym))
14118 return TRUE;
14119
5919d012
RS
14120 symsec = S_GET_SEGMENT (sym);
14121
5919d012
RS
14122 /* This must duplicate the test in adjust_reloc_syms. */
14123 return (symsec != &bfd_und_section
14124 && symsec != &bfd_abs_section
5f0fe04b
TS
14125 && !bfd_is_com_section (symsec)
14126 && !s_is_linkonce (sym, segtype)
5919d012
RS
14127#ifdef OBJ_ELF
14128 /* A global or weak symbol is treated as external. */
f43abd2b 14129 && (!IS_ELF || (! S_IS_WEAK (sym) && ! S_IS_EXTERNAL (sym)))
5919d012
RS
14130#endif
14131 );
14132}
14133
14134
252b5132
RH
14135/* Given a mips16 variant frag FRAGP, return non-zero if it needs an
14136 extended opcode. SEC is the section the frag is in. */
14137
14138static int
17a2f251 14139mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
252b5132
RH
14140{
14141 int type;
3994f87e 14142 const struct mips16_immed_operand *op;
252b5132
RH
14143 offsetT val;
14144 int mintiny, maxtiny;
14145 segT symsec;
98aa84af 14146 fragS *sym_frag;
252b5132
RH
14147
14148 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
14149 return 0;
14150 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
14151 return 1;
14152
14153 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
14154 op = mips16_immed_operands;
14155 while (op->type != type)
14156 {
14157 ++op;
9c2799c2 14158 gas_assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
252b5132
RH
14159 }
14160
14161 if (op->unsp)
14162 {
14163 if (type == '<' || type == '>' || type == '[' || type == ']')
14164 {
14165 mintiny = 1;
14166 maxtiny = 1 << op->nbits;
14167 }
14168 else
14169 {
14170 mintiny = 0;
14171 maxtiny = (1 << op->nbits) - 1;
14172 }
14173 }
14174 else
14175 {
14176 mintiny = - (1 << (op->nbits - 1));
14177 maxtiny = (1 << (op->nbits - 1)) - 1;
14178 }
14179
98aa84af 14180 sym_frag = symbol_get_frag (fragp->fr_symbol);
ac62c346 14181 val = S_GET_VALUE (fragp->fr_symbol);
98aa84af 14182 symsec = S_GET_SEGMENT (fragp->fr_symbol);
252b5132
RH
14183
14184 if (op->pcrel)
14185 {
14186 addressT addr;
14187
14188 /* We won't have the section when we are called from
14189 mips_relax_frag. However, we will always have been called
14190 from md_estimate_size_before_relax first. If this is a
14191 branch to a different section, we mark it as such. If SEC is
14192 NULL, and the frag is not marked, then it must be a branch to
14193 the same section. */
14194 if (sec == NULL)
14195 {
14196 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
14197 return 1;
14198 }
14199 else
14200 {
98aa84af 14201 /* Must have been called from md_estimate_size_before_relax. */
252b5132
RH
14202 if (symsec != sec)
14203 {
14204 fragp->fr_subtype =
14205 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
14206
14207 /* FIXME: We should support this, and let the linker
14208 catch branches and loads that are out of range. */
14209 as_bad_where (fragp->fr_file, fragp->fr_line,
14210 _("unsupported PC relative reference to different section"));
14211
14212 return 1;
14213 }
98aa84af
AM
14214 if (fragp != sym_frag && sym_frag->fr_address == 0)
14215 /* Assume non-extended on the first relaxation pass.
14216 The address we have calculated will be bogus if this is
14217 a forward branch to another frag, as the forward frag
14218 will have fr_address == 0. */
14219 return 0;
252b5132
RH
14220 }
14221
14222 /* In this case, we know for sure that the symbol fragment is in
98aa84af
AM
14223 the same section. If the relax_marker of the symbol fragment
14224 differs from the relax_marker of this fragment, we have not
14225 yet adjusted the symbol fragment fr_address. We want to add
252b5132
RH
14226 in STRETCH in order to get a better estimate of the address.
14227 This particularly matters because of the shift bits. */
14228 if (stretch != 0
98aa84af 14229 && sym_frag->relax_marker != fragp->relax_marker)
252b5132
RH
14230 {
14231 fragS *f;
14232
14233 /* Adjust stretch for any alignment frag. Note that if have
14234 been expanding the earlier code, the symbol may be
14235 defined in what appears to be an earlier frag. FIXME:
14236 This doesn't handle the fr_subtype field, which specifies
14237 a maximum number of bytes to skip when doing an
14238 alignment. */
98aa84af 14239 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
252b5132
RH
14240 {
14241 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
14242 {
14243 if (stretch < 0)
14244 stretch = - ((- stretch)
14245 & ~ ((1 << (int) f->fr_offset) - 1));
14246 else
14247 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
14248 if (stretch == 0)
14249 break;
14250 }
14251 }
14252 if (f != NULL)
14253 val += stretch;
14254 }
14255
14256 addr = fragp->fr_address + fragp->fr_fix;
14257
14258 /* The base address rules are complicated. The base address of
14259 a branch is the following instruction. The base address of a
14260 PC relative load or add is the instruction itself, but if it
14261 is in a delay slot (in which case it can not be extended) use
14262 the address of the instruction whose delay slot it is in. */
14263 if (type == 'p' || type == 'q')
14264 {
14265 addr += 2;
14266
14267 /* If we are currently assuming that this frag should be
14268 extended, then, the current address is two bytes
bdaaa2e1 14269 higher. */
252b5132
RH
14270 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14271 addr += 2;
14272
14273 /* Ignore the low bit in the target, since it will be set
14274 for a text label. */
14275 if ((val & 1) != 0)
14276 --val;
14277 }
14278 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
14279 addr -= 4;
14280 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
14281 addr -= 2;
14282
14283 val -= addr & ~ ((1 << op->shift) - 1);
14284
14285 /* Branch offsets have an implicit 0 in the lowest bit. */
14286 if (type == 'p' || type == 'q')
14287 val /= 2;
14288
14289 /* If any of the shifted bits are set, we must use an extended
14290 opcode. If the address depends on the size of this
14291 instruction, this can lead to a loop, so we arrange to always
14292 use an extended opcode. We only check this when we are in
14293 the main relaxation loop, when SEC is NULL. */
14294 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
14295 {
14296 fragp->fr_subtype =
14297 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
14298 return 1;
14299 }
14300
14301 /* If we are about to mark a frag as extended because the value
14302 is precisely maxtiny + 1, then there is a chance of an
14303 infinite loop as in the following code:
14304 la $4,foo
14305 .skip 1020
14306 .align 2
14307 foo:
14308 In this case when the la is extended, foo is 0x3fc bytes
14309 away, so the la can be shrunk, but then foo is 0x400 away, so
14310 the la must be extended. To avoid this loop, we mark the
14311 frag as extended if it was small, and is about to become
14312 extended with a value of maxtiny + 1. */
14313 if (val == ((maxtiny + 1) << op->shift)
14314 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
14315 && sec == NULL)
14316 {
14317 fragp->fr_subtype =
14318 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
14319 return 1;
14320 }
14321 }
14322 else if (symsec != absolute_section && sec != NULL)
14323 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
14324
14325 if ((val & ((1 << op->shift) - 1)) != 0
14326 || val < (mintiny << op->shift)
14327 || val > (maxtiny << op->shift))
14328 return 1;
14329 else
14330 return 0;
14331}
14332
4a6a3df4
AO
14333/* Compute the length of a branch sequence, and adjust the
14334 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
14335 worst-case length is computed, with UPDATE being used to indicate
14336 whether an unconditional (-1), branch-likely (+1) or regular (0)
14337 branch is to be computed. */
14338static int
17a2f251 14339relaxed_branch_length (fragS *fragp, asection *sec, int update)
4a6a3df4 14340{
b34976b6 14341 bfd_boolean toofar;
4a6a3df4
AO
14342 int length;
14343
14344 if (fragp
14345 && S_IS_DEFINED (fragp->fr_symbol)
14346 && sec == S_GET_SEGMENT (fragp->fr_symbol))
14347 {
14348 addressT addr;
14349 offsetT val;
14350
14351 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
14352
14353 addr = fragp->fr_address + fragp->fr_fix + 4;
14354
14355 val -= addr;
14356
14357 toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
14358 }
14359 else if (fragp)
14360 /* If the symbol is not defined or it's in a different segment,
14361 assume the user knows what's going on and emit a short
14362 branch. */
b34976b6 14363 toofar = FALSE;
4a6a3df4 14364 else
b34976b6 14365 toofar = TRUE;
4a6a3df4
AO
14366
14367 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
14368 fragp->fr_subtype
66b3e8da
MR
14369 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_AT (fragp->fr_subtype),
14370 RELAX_BRANCH_UNCOND (fragp->fr_subtype),
4a6a3df4
AO
14371 RELAX_BRANCH_LIKELY (fragp->fr_subtype),
14372 RELAX_BRANCH_LINK (fragp->fr_subtype),
14373 toofar);
14374
14375 length = 4;
14376 if (toofar)
14377 {
14378 if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
14379 length += 8;
14380
14381 if (mips_pic != NO_PIC)
14382 {
14383 /* Additional space for PIC loading of target address. */
14384 length += 8;
14385 if (mips_opts.isa == ISA_MIPS1)
14386 /* Additional space for $at-stabilizing nop. */
14387 length += 4;
14388 }
14389
14390 /* If branch is conditional. */
14391 if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
14392 length += 8;
14393 }
b34976b6 14394
4a6a3df4
AO
14395 return length;
14396}
14397
252b5132
RH
14398/* Estimate the size of a frag before relaxing. Unless this is the
14399 mips16, we are not really relaxing here, and the final size is
14400 encoded in the subtype information. For the mips16, we have to
14401 decide whether we are using an extended opcode or not. */
14402
252b5132 14403int
17a2f251 14404md_estimate_size_before_relax (fragS *fragp, asection *segtype)
252b5132 14405{
5919d012 14406 int change;
252b5132 14407
4a6a3df4
AO
14408 if (RELAX_BRANCH_P (fragp->fr_subtype))
14409 {
14410
b34976b6
AM
14411 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
14412
4a6a3df4
AO
14413 return fragp->fr_var;
14414 }
14415
252b5132 14416 if (RELAX_MIPS16_P (fragp->fr_subtype))
177b4a6a
AO
14417 /* We don't want to modify the EXTENDED bit here; it might get us
14418 into infinite loops. We change it only in mips_relax_frag(). */
14419 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
252b5132
RH
14420
14421 if (mips_pic == NO_PIC)
5919d012 14422 change = nopic_need_relax (fragp->fr_symbol, 0);
252b5132 14423 else if (mips_pic == SVR4_PIC)
5919d012 14424 change = pic_need_relax (fragp->fr_symbol, segtype);
0a44bf69
RS
14425 else if (mips_pic == VXWORKS_PIC)
14426 /* For vxworks, GOT16 relocations never have a corresponding LO16. */
14427 change = 0;
252b5132
RH
14428 else
14429 abort ();
14430
14431 if (change)
14432 {
4d7206a2 14433 fragp->fr_subtype |= RELAX_USE_SECOND;
4d7206a2 14434 return -RELAX_FIRST (fragp->fr_subtype);
252b5132 14435 }
4d7206a2
RS
14436 else
14437 return -RELAX_SECOND (fragp->fr_subtype);
252b5132
RH
14438}
14439
14440/* This is called to see whether a reloc against a defined symbol
de7e6852 14441 should be converted into a reloc against a section. */
252b5132
RH
14442
14443int
17a2f251 14444mips_fix_adjustable (fixS *fixp)
252b5132 14445{
252b5132
RH
14446 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
14447 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
14448 return 0;
a161fe53 14449
252b5132
RH
14450 if (fixp->fx_addsy == NULL)
14451 return 1;
a161fe53 14452
de7e6852
RS
14453 /* If symbol SYM is in a mergeable section, relocations of the form
14454 SYM + 0 can usually be made section-relative. The mergeable data
14455 is then identified by the section offset rather than by the symbol.
14456
14457 However, if we're generating REL LO16 relocations, the offset is split
14458 between the LO16 and parterning high part relocation. The linker will
14459 need to recalculate the complete offset in order to correctly identify
14460 the merge data.
14461
14462 The linker has traditionally not looked for the parterning high part
14463 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
14464 placed anywhere. Rather than break backwards compatibility by changing
14465 this, it seems better not to force the issue, and instead keep the
14466 original symbol. This will work with either linker behavior. */
738e5348 14467 if ((lo16_reloc_p (fixp->fx_r_type)
704803a9 14468 || reloc_needs_lo_p (fixp->fx_r_type))
de7e6852
RS
14469 && HAVE_IN_PLACE_ADDENDS
14470 && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
14471 return 0;
14472
ce70d90a
MR
14473 /* There is no place to store an in-place offset for JALR relocations.
14474 Likewise an in-range offset of PC-relative relocations may overflow
14475 the in-place relocatable field if recalculated against the start
14476 address of the symbol's containing section. */
14477 if (HAVE_IN_PLACE_ADDENDS
14478 && (fixp->fx_pcrel || fixp->fx_r_type == BFD_RELOC_MIPS_JALR))
1180b5a4
RS
14479 return 0;
14480
252b5132 14481#ifdef OBJ_ELF
b314ec0e
RS
14482 /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
14483 to a floating-point stub. The same is true for non-R_MIPS16_26
14484 relocations against MIPS16 functions; in this case, the stub becomes
14485 the function's canonical address.
14486
14487 Floating-point stubs are stored in unique .mips16.call.* or
14488 .mips16.fn.* sections. If a stub T for function F is in section S,
14489 the first relocation in section S must be against F; this is how the
14490 linker determines the target function. All relocations that might
14491 resolve to T must also be against F. We therefore have the following
14492 restrictions, which are given in an intentionally-redundant way:
14493
14494 1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
14495 symbols.
14496
14497 2. We cannot reduce a stub's relocations against non-MIPS16 symbols
14498 if that stub might be used.
14499
14500 3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
14501 symbols.
14502
14503 4. We cannot reduce a stub's relocations against MIPS16 symbols if
14504 that stub might be used.
14505
14506 There is a further restriction:
14507
14508 5. We cannot reduce R_MIPS16_26 relocations against MIPS16 symbols
14509 on targets with in-place addends; the relocation field cannot
14510 encode the low bit.
14511
14512 For simplicity, we deal with (3)-(5) by not reducing _any_ relocation
14513 against a MIPS16 symbol.
14514
14515 We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
14516 relocation against some symbol R, no relocation against R may be
14517 reduced. (Note that this deals with (2) as well as (1) because
14518 relocations against global symbols will never be reduced on ELF
14519 targets.) This approach is a little simpler than trying to detect
14520 stub sections, and gives the "all or nothing" per-symbol consistency
14521 that we have for MIPS16 symbols. */
f43abd2b 14522 if (IS_ELF
b314ec0e 14523 && fixp->fx_subsy == NULL
30c09090 14524 && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
b314ec0e 14525 || *symbol_get_tc (fixp->fx_addsy)))
252b5132
RH
14526 return 0;
14527#endif
a161fe53 14528
252b5132
RH
14529 return 1;
14530}
14531
14532/* Translate internal representation of relocation info to BFD target
14533 format. */
14534
14535arelent **
17a2f251 14536tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
252b5132
RH
14537{
14538 static arelent *retval[4];
14539 arelent *reloc;
14540 bfd_reloc_code_real_type code;
14541
4b0cff4e
TS
14542 memset (retval, 0, sizeof(retval));
14543 reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
49309057
ILT
14544 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
14545 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
14546 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
14547
bad36eac
DJ
14548 if (fixp->fx_pcrel)
14549 {
9c2799c2 14550 gas_assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2);
bad36eac
DJ
14551
14552 /* At this point, fx_addnumber is "symbol offset - pcrel address".
14553 Relocations want only the symbol offset. */
14554 reloc->addend = fixp->fx_addnumber + reloc->address;
f43abd2b 14555 if (!IS_ELF)
bad36eac
DJ
14556 {
14557 /* A gruesome hack which is a result of the gruesome gas
14558 reloc handling. What's worse, for COFF (as opposed to
14559 ECOFF), we might need yet another copy of reloc->address.
14560 See bfd_install_relocation. */
14561 reloc->addend += reloc->address;
14562 }
14563 }
14564 else
14565 reloc->addend = fixp->fx_addnumber;
252b5132 14566
438c16b8
TS
14567 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
14568 entry to be used in the relocation's section offset. */
14569 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
252b5132
RH
14570 {
14571 reloc->address = reloc->addend;
14572 reloc->addend = 0;
14573 }
14574
252b5132 14575 code = fixp->fx_r_type;
252b5132 14576
bad36eac 14577 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
252b5132
RH
14578 if (reloc->howto == NULL)
14579 {
14580 as_bad_where (fixp->fx_file, fixp->fx_line,
14581 _("Can not represent %s relocation in this object file format"),
14582 bfd_get_reloc_code_name (code));
14583 retval[0] = NULL;
14584 }
14585
14586 return retval;
14587}
14588
14589/* Relax a machine dependent frag. This returns the amount by which
14590 the current size of the frag should change. */
14591
14592int
17a2f251 14593mips_relax_frag (asection *sec, fragS *fragp, long stretch)
252b5132 14594{
4a6a3df4
AO
14595 if (RELAX_BRANCH_P (fragp->fr_subtype))
14596 {
14597 offsetT old_var = fragp->fr_var;
b34976b6
AM
14598
14599 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
4a6a3df4
AO
14600
14601 return fragp->fr_var - old_var;
14602 }
14603
252b5132
RH
14604 if (! RELAX_MIPS16_P (fragp->fr_subtype))
14605 return 0;
14606
c4e7957c 14607 if (mips16_extended_frag (fragp, NULL, stretch))
252b5132
RH
14608 {
14609 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14610 return 0;
14611 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
14612 return 2;
14613 }
14614 else
14615 {
14616 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14617 return 0;
14618 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
14619 return -2;
14620 }
14621
14622 return 0;
14623}
14624
14625/* Convert a machine dependent frag. */
14626
14627void
17a2f251 14628md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
252b5132 14629{
4a6a3df4
AO
14630 if (RELAX_BRANCH_P (fragp->fr_subtype))
14631 {
14632 bfd_byte *buf;
14633 unsigned long insn;
14634 expressionS exp;
14635 fixS *fixp;
b34976b6 14636
4a6a3df4
AO
14637 buf = (bfd_byte *)fragp->fr_literal + fragp->fr_fix;
14638
14639 if (target_big_endian)
14640 insn = bfd_getb32 (buf);
14641 else
14642 insn = bfd_getl32 (buf);
b34976b6 14643
4a6a3df4
AO
14644 if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
14645 {
14646 /* We generate a fixup instead of applying it right now
14647 because, if there are linker relaxations, we're going to
14648 need the relocations. */
14649 exp.X_op = O_symbol;
14650 exp.X_add_symbol = fragp->fr_symbol;
14651 exp.X_add_number = fragp->fr_offset;
14652
14653 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
3994f87e 14654 4, &exp, TRUE, BFD_RELOC_16_PCREL_S2);
4a6a3df4
AO
14655 fixp->fx_file = fragp->fr_file;
14656 fixp->fx_line = fragp->fr_line;
b34976b6 14657
2132e3a3 14658 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14659 buf += 4;
14660 }
14661 else
14662 {
14663 int i;
14664
14665 as_warn_where (fragp->fr_file, fragp->fr_line,
5c4f07ba 14666 _("Relaxed out-of-range branch into a jump"));
4a6a3df4
AO
14667
14668 if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
14669 goto uncond;
14670
14671 if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14672 {
14673 /* Reverse the branch. */
14674 switch ((insn >> 28) & 0xf)
14675 {
14676 case 4:
14677 /* bc[0-3][tf]l? and bc1any[24][ft] instructions can
14678 have the condition reversed by tweaking a single
14679 bit, and their opcodes all have 0x4???????. */
9c2799c2 14680 gas_assert ((insn & 0xf1000000) == 0x41000000);
4a6a3df4
AO
14681 insn ^= 0x00010000;
14682 break;
14683
14684 case 0:
14685 /* bltz 0x04000000 bgez 0x04010000
54f4ddb3 14686 bltzal 0x04100000 bgezal 0x04110000 */
9c2799c2 14687 gas_assert ((insn & 0xfc0e0000) == 0x04000000);
4a6a3df4
AO
14688 insn ^= 0x00010000;
14689 break;
b34976b6 14690
4a6a3df4
AO
14691 case 1:
14692 /* beq 0x10000000 bne 0x14000000
54f4ddb3 14693 blez 0x18000000 bgtz 0x1c000000 */
4a6a3df4
AO
14694 insn ^= 0x04000000;
14695 break;
14696
14697 default:
14698 abort ();
14699 }
14700 }
14701
14702 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
14703 {
14704 /* Clear the and-link bit. */
9c2799c2 14705 gas_assert ((insn & 0xfc1c0000) == 0x04100000);
4a6a3df4 14706
54f4ddb3
TS
14707 /* bltzal 0x04100000 bgezal 0x04110000
14708 bltzall 0x04120000 bgezall 0x04130000 */
4a6a3df4
AO
14709 insn &= ~0x00100000;
14710 }
14711
14712 /* Branch over the branch (if the branch was likely) or the
14713 full jump (not likely case). Compute the offset from the
14714 current instruction to branch to. */
14715 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14716 i = 16;
14717 else
14718 {
14719 /* How many bytes in instructions we've already emitted? */
14720 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
14721 /* How many bytes in instructions from here to the end? */
14722 i = fragp->fr_var - i;
14723 }
14724 /* Convert to instruction count. */
14725 i >>= 2;
14726 /* Branch counts from the next instruction. */
b34976b6 14727 i--;
4a6a3df4
AO
14728 insn |= i;
14729 /* Branch over the jump. */
2132e3a3 14730 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14731 buf += 4;
14732
54f4ddb3 14733 /* nop */
2132e3a3 14734 md_number_to_chars ((char *) buf, 0, 4);
4a6a3df4
AO
14735 buf += 4;
14736
14737 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14738 {
14739 /* beql $0, $0, 2f */
14740 insn = 0x50000000;
14741 /* Compute the PC offset from the current instruction to
14742 the end of the variable frag. */
14743 /* How many bytes in instructions we've already emitted? */
14744 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
14745 /* How many bytes in instructions from here to the end? */
14746 i = fragp->fr_var - i;
14747 /* Convert to instruction count. */
14748 i >>= 2;
14749 /* Don't decrement i, because we want to branch over the
14750 delay slot. */
14751
14752 insn |= i;
2132e3a3 14753 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14754 buf += 4;
14755
2132e3a3 14756 md_number_to_chars ((char *) buf, 0, 4);
4a6a3df4
AO
14757 buf += 4;
14758 }
14759
14760 uncond:
14761 if (mips_pic == NO_PIC)
14762 {
14763 /* j or jal. */
14764 insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
14765 ? 0x0c000000 : 0x08000000);
14766 exp.X_op = O_symbol;
14767 exp.X_add_symbol = fragp->fr_symbol;
14768 exp.X_add_number = fragp->fr_offset;
14769
14770 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
3994f87e 14771 4, &exp, FALSE, BFD_RELOC_MIPS_JMP);
4a6a3df4
AO
14772 fixp->fx_file = fragp->fr_file;
14773 fixp->fx_line = fragp->fr_line;
14774
2132e3a3 14775 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14776 buf += 4;
14777 }
14778 else
14779 {
66b3e8da
MR
14780 unsigned long at = RELAX_BRANCH_AT (fragp->fr_subtype);
14781
4a6a3df4 14782 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
66b3e8da
MR
14783 insn = HAVE_64BIT_ADDRESSES ? 0xdf800000 : 0x8f800000;
14784 insn |= at << OP_SH_RT;
4a6a3df4
AO
14785 exp.X_op = O_symbol;
14786 exp.X_add_symbol = fragp->fr_symbol;
14787 exp.X_add_number = fragp->fr_offset;
14788
14789 if (fragp->fr_offset)
14790 {
14791 exp.X_add_symbol = make_expr_symbol (&exp);
14792 exp.X_add_number = 0;
14793 }
14794
14795 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
3994f87e 14796 4, &exp, FALSE, BFD_RELOC_MIPS_GOT16);
4a6a3df4
AO
14797 fixp->fx_file = fragp->fr_file;
14798 fixp->fx_line = fragp->fr_line;
14799
2132e3a3 14800 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4 14801 buf += 4;
b34976b6 14802
4a6a3df4
AO
14803 if (mips_opts.isa == ISA_MIPS1)
14804 {
14805 /* nop */
2132e3a3 14806 md_number_to_chars ((char *) buf, 0, 4);
4a6a3df4
AO
14807 buf += 4;
14808 }
14809
14810 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
66b3e8da
MR
14811 insn = HAVE_64BIT_ADDRESSES ? 0x64000000 : 0x24000000;
14812 insn |= at << OP_SH_RS | at << OP_SH_RT;
4a6a3df4
AO
14813
14814 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
3994f87e 14815 4, &exp, FALSE, BFD_RELOC_LO16);
4a6a3df4
AO
14816 fixp->fx_file = fragp->fr_file;
14817 fixp->fx_line = fragp->fr_line;
b34976b6 14818
2132e3a3 14819 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14820 buf += 4;
14821
14822 /* j(al)r $at. */
14823 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
66b3e8da 14824 insn = 0x0000f809;
4a6a3df4 14825 else
66b3e8da
MR
14826 insn = 0x00000008;
14827 insn |= at << OP_SH_RS;
4a6a3df4 14828
2132e3a3 14829 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14830 buf += 4;
14831 }
14832 }
14833
9c2799c2 14834 gas_assert (buf == (bfd_byte *)fragp->fr_literal
4a6a3df4
AO
14835 + fragp->fr_fix + fragp->fr_var);
14836
14837 fragp->fr_fix += fragp->fr_var;
14838
14839 return;
14840 }
14841
252b5132
RH
14842 if (RELAX_MIPS16_P (fragp->fr_subtype))
14843 {
14844 int type;
3994f87e 14845 const struct mips16_immed_operand *op;
b34976b6 14846 bfd_boolean small, ext;
252b5132
RH
14847 offsetT val;
14848 bfd_byte *buf;
14849 unsigned long insn;
b34976b6 14850 bfd_boolean use_extend;
252b5132
RH
14851 unsigned short extend;
14852
14853 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
14854 op = mips16_immed_operands;
14855 while (op->type != type)
14856 ++op;
14857
14858 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14859 {
b34976b6
AM
14860 small = FALSE;
14861 ext = TRUE;
252b5132
RH
14862 }
14863 else
14864 {
b34976b6
AM
14865 small = TRUE;
14866 ext = FALSE;
252b5132
RH
14867 }
14868
5f5f22c0 14869 val = resolve_symbol_value (fragp->fr_symbol);
252b5132
RH
14870 if (op->pcrel)
14871 {
14872 addressT addr;
14873
14874 addr = fragp->fr_address + fragp->fr_fix;
14875
14876 /* The rules for the base address of a PC relative reloc are
14877 complicated; see mips16_extended_frag. */
14878 if (type == 'p' || type == 'q')
14879 {
14880 addr += 2;
14881 if (ext)
14882 addr += 2;
14883 /* Ignore the low bit in the target, since it will be
14884 set for a text label. */
14885 if ((val & 1) != 0)
14886 --val;
14887 }
14888 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
14889 addr -= 4;
14890 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
14891 addr -= 2;
14892
14893 addr &= ~ (addressT) ((1 << op->shift) - 1);
14894 val -= addr;
14895
14896 /* Make sure the section winds up with the alignment we have
14897 assumed. */
14898 if (op->shift > 0)
14899 record_alignment (asec, op->shift);
14900 }
14901
14902 if (ext
14903 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
14904 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
14905 as_warn_where (fragp->fr_file, fragp->fr_line,
14906 _("extended instruction in delay slot"));
14907
14908 buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix);
14909
14910 if (target_big_endian)
14911 insn = bfd_getb16 (buf);
14912 else
14913 insn = bfd_getl16 (buf);
14914
14915 mips16_immed (fragp->fr_file, fragp->fr_line, type, val,
14916 RELAX_MIPS16_USER_EXT (fragp->fr_subtype),
14917 small, ext, &insn, &use_extend, &extend);
14918
14919 if (use_extend)
14920 {
2132e3a3 14921 md_number_to_chars ((char *) buf, 0xf000 | extend, 2);
252b5132
RH
14922 fragp->fr_fix += 2;
14923 buf += 2;
14924 }
14925
2132e3a3 14926 md_number_to_chars ((char *) buf, insn, 2);
252b5132
RH
14927 fragp->fr_fix += 2;
14928 buf += 2;
14929 }
14930 else
14931 {
4d7206a2
RS
14932 int first, second;
14933 fixS *fixp;
252b5132 14934
4d7206a2
RS
14935 first = RELAX_FIRST (fragp->fr_subtype);
14936 second = RELAX_SECOND (fragp->fr_subtype);
14937 fixp = (fixS *) fragp->fr_opcode;
252b5132 14938
584892a6
RS
14939 /* Possibly emit a warning if we've chosen the longer option. */
14940 if (((fragp->fr_subtype & RELAX_USE_SECOND) != 0)
14941 == ((fragp->fr_subtype & RELAX_SECOND_LONGER) != 0))
14942 {
14943 const char *msg = macro_warning (fragp->fr_subtype);
14944 if (msg != 0)
520725ea 14945 as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
584892a6
RS
14946 }
14947
4d7206a2
RS
14948 /* Go through all the fixups for the first sequence. Disable them
14949 (by marking them as done) if we're going to use the second
14950 sequence instead. */
14951 while (fixp
14952 && fixp->fx_frag == fragp
14953 && fixp->fx_where < fragp->fr_fix - second)
14954 {
14955 if (fragp->fr_subtype & RELAX_USE_SECOND)
14956 fixp->fx_done = 1;
14957 fixp = fixp->fx_next;
14958 }
252b5132 14959
4d7206a2
RS
14960 /* Go through the fixups for the second sequence. Disable them if
14961 we're going to use the first sequence, otherwise adjust their
14962 addresses to account for the relaxation. */
14963 while (fixp && fixp->fx_frag == fragp)
14964 {
14965 if (fragp->fr_subtype & RELAX_USE_SECOND)
14966 fixp->fx_where -= first;
14967 else
14968 fixp->fx_done = 1;
14969 fixp = fixp->fx_next;
14970 }
14971
14972 /* Now modify the frag contents. */
14973 if (fragp->fr_subtype & RELAX_USE_SECOND)
14974 {
14975 char *start;
14976
14977 start = fragp->fr_literal + fragp->fr_fix - first - second;
14978 memmove (start, start + first, second);
14979 fragp->fr_fix -= first;
14980 }
14981 else
14982 fragp->fr_fix -= second;
252b5132
RH
14983 }
14984}
14985
14986#ifdef OBJ_ELF
14987
14988/* This function is called after the relocs have been generated.
14989 We've been storing mips16 text labels as odd. Here we convert them
14990 back to even for the convenience of the debugger. */
14991
14992void
17a2f251 14993mips_frob_file_after_relocs (void)
252b5132
RH
14994{
14995 asymbol **syms;
14996 unsigned int count, i;
14997
f43abd2b 14998 if (!IS_ELF)
252b5132
RH
14999 return;
15000
15001 syms = bfd_get_outsymbols (stdoutput);
15002 count = bfd_get_symcount (stdoutput);
15003 for (i = 0; i < count; i++, syms++)
15004 {
30c09090 15005 if (ELF_ST_IS_MIPS16 (elf_symbol (*syms)->internal_elf_sym.st_other)
252b5132
RH
15006 && ((*syms)->value & 1) != 0)
15007 {
15008 (*syms)->value &= ~1;
15009 /* If the symbol has an odd size, it was probably computed
15010 incorrectly, so adjust that as well. */
15011 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
15012 ++elf_symbol (*syms)->internal_elf_sym.st_size;
15013 }
15014 }
15015}
15016
15017#endif
15018
a1facbec
MR
15019/* This function is called whenever a label is defined, including fake
15020 labels instantiated off the dot special symbol. It is used when
15021 handling branch delays; if a branch has a label, we assume we cannot
15022 move it. This also bumps the value of the symbol by 1 in compressed
15023 code. */
252b5132
RH
15024
15025void
a1facbec 15026mips_record_label (symbolS *sym)
252b5132 15027{
a8dbcb85 15028 segment_info_type *si = seg_info (now_seg);
252b5132
RH
15029 struct insn_label_list *l;
15030
15031 if (free_insn_labels == NULL)
15032 l = (struct insn_label_list *) xmalloc (sizeof *l);
15033 else
15034 {
15035 l = free_insn_labels;
15036 free_insn_labels = l->next;
15037 }
15038
15039 l->label = sym;
a8dbcb85
TS
15040 l->next = si->label_list;
15041 si->label_list = l;
a1facbec 15042}
07a53e5c 15043
a1facbec
MR
15044/* This function is called as tc_frob_label() whenever a label is defined
15045 and adds a DWARF-2 record we only want for true labels. */
15046
15047void
15048mips_define_label (symbolS *sym)
15049{
15050 mips_record_label (sym);
07a53e5c
RH
15051#ifdef OBJ_ELF
15052 dwarf2_emit_label (sym);
15053#endif
252b5132
RH
15054}
15055\f
15056#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
15057
15058/* Some special processing for a MIPS ELF file. */
15059
15060void
17a2f251 15061mips_elf_final_processing (void)
252b5132
RH
15062{
15063 /* Write out the register information. */
316f5878 15064 if (mips_abi != N64_ABI)
252b5132
RH
15065 {
15066 Elf32_RegInfo s;
15067
15068 s.ri_gprmask = mips_gprmask;
15069 s.ri_cprmask[0] = mips_cprmask[0];
15070 s.ri_cprmask[1] = mips_cprmask[1];
15071 s.ri_cprmask[2] = mips_cprmask[2];
15072 s.ri_cprmask[3] = mips_cprmask[3];
15073 /* The gp_value field is set by the MIPS ELF backend. */
15074
15075 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
15076 ((Elf32_External_RegInfo *)
15077 mips_regmask_frag));
15078 }
15079 else
15080 {
15081 Elf64_Internal_RegInfo s;
15082
15083 s.ri_gprmask = mips_gprmask;
15084 s.ri_pad = 0;
15085 s.ri_cprmask[0] = mips_cprmask[0];
15086 s.ri_cprmask[1] = mips_cprmask[1];
15087 s.ri_cprmask[2] = mips_cprmask[2];
15088 s.ri_cprmask[3] = mips_cprmask[3];
15089 /* The gp_value field is set by the MIPS ELF backend. */
15090
15091 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
15092 ((Elf64_External_RegInfo *)
15093 mips_regmask_frag));
15094 }
15095
15096 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
15097 sort of BFD interface for this. */
15098 if (mips_any_noreorder)
15099 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
15100 if (mips_pic != NO_PIC)
143d77c5 15101 {
252b5132 15102 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
143d77c5
EC
15103 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
15104 }
15105 if (mips_abicalls)
15106 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
252b5132 15107
98d3f06f 15108 /* Set MIPS ELF flags for ASEs. */
74cd071d
CF
15109 /* We may need to define a new flag for DSP ASE, and set this flag when
15110 file_ase_dsp is true. */
8b082fb1 15111 /* Same for DSP R2. */
ef2e4d86
CF
15112 /* We may need to define a new flag for MT ASE, and set this flag when
15113 file_ase_mt is true. */
a4672219
TS
15114 if (file_ase_mips16)
15115 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
1f25f5d3
CD
15116#if 0 /* XXX FIXME */
15117 if (file_ase_mips3d)
15118 elf_elfheader (stdoutput)->e_flags |= ???;
15119#endif
deec1734
CD
15120 if (file_ase_mdmx)
15121 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
1f25f5d3 15122
bdaaa2e1 15123 /* Set the MIPS ELF ABI flags. */
316f5878 15124 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
252b5132 15125 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
316f5878 15126 else if (mips_abi == O64_ABI)
252b5132 15127 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
316f5878 15128 else if (mips_abi == EABI_ABI)
252b5132 15129 {
316f5878 15130 if (!file_mips_gp32)
252b5132
RH
15131 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
15132 else
15133 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
15134 }
316f5878 15135 else if (mips_abi == N32_ABI)
be00bddd
TS
15136 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
15137
c9914766 15138 /* Nothing to do for N64_ABI. */
252b5132
RH
15139
15140 if (mips_32bitmode)
15141 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
ad3fea08
TS
15142
15143#if 0 /* XXX FIXME */
15144 /* 32 bit code with 64 bit FP registers. */
15145 if (!file_mips_fp32 && ABI_NEEDS_32BIT_REGS (mips_abi))
15146 elf_elfheader (stdoutput)->e_flags |= ???;
15147#endif
252b5132
RH
15148}
15149
15150#endif /* OBJ_ELF || OBJ_MAYBE_ELF */
15151\f
beae10d5 15152typedef struct proc {
9b2f1d35
EC
15153 symbolS *func_sym;
15154 symbolS *func_end_sym;
beae10d5
KH
15155 unsigned long reg_mask;
15156 unsigned long reg_offset;
15157 unsigned long fpreg_mask;
15158 unsigned long fpreg_offset;
15159 unsigned long frame_offset;
15160 unsigned long frame_reg;
15161 unsigned long pc_reg;
15162} procS;
252b5132
RH
15163
15164static procS cur_proc;
15165static procS *cur_proc_ptr;
15166static int numprocs;
15167
742a56fe
RS
15168/* Implement NOP_OPCODE. We encode a MIPS16 nop as "1" and a normal
15169 nop as "0". */
15170
15171char
15172mips_nop_opcode (void)
15173{
15174 return seg_info (now_seg)->tc_segment_info_data.mips16;
15175}
15176
15177/* Fill in an rs_align_code fragment. This only needs to do something
15178 for MIPS16 code, where 0 is not a nop. */
a19d8eb0 15179
0a9ef439 15180void
17a2f251 15181mips_handle_align (fragS *fragp)
a19d8eb0 15182{
742a56fe 15183 char *p;
c67a084a
NC
15184 int bytes, size, excess;
15185 valueT opcode;
742a56fe 15186
0a9ef439
RH
15187 if (fragp->fr_type != rs_align_code)
15188 return;
15189
742a56fe
RS
15190 p = fragp->fr_literal + fragp->fr_fix;
15191 if (*p)
a19d8eb0 15192 {
c67a084a
NC
15193 opcode = mips16_nop_insn.insn_opcode;
15194 size = 2;
15195 }
15196 else
15197 {
15198 opcode = nop_insn.insn_opcode;
15199 size = 4;
15200 }
a19d8eb0 15201
c67a084a
NC
15202 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
15203 excess = bytes % size;
15204 if (excess != 0)
15205 {
15206 /* If we're not inserting a whole number of instructions,
15207 pad the end of the fixed part of the frag with zeros. */
15208 memset (p, 0, excess);
15209 p += excess;
15210 fragp->fr_fix += excess;
a19d8eb0 15211 }
c67a084a
NC
15212
15213 md_number_to_chars (p, opcode, size);
15214 fragp->fr_var = size;
a19d8eb0
CP
15215}
15216
252b5132 15217static void
17a2f251 15218md_obj_begin (void)
252b5132
RH
15219{
15220}
15221
15222static void
17a2f251 15223md_obj_end (void)
252b5132 15224{
54f4ddb3 15225 /* Check for premature end, nesting errors, etc. */
252b5132 15226 if (cur_proc_ptr)
9a41af64 15227 as_warn (_("missing .end at end of assembly"));
252b5132
RH
15228}
15229
15230static long
17a2f251 15231get_number (void)
252b5132
RH
15232{
15233 int negative = 0;
15234 long val = 0;
15235
15236 if (*input_line_pointer == '-')
15237 {
15238 ++input_line_pointer;
15239 negative = 1;
15240 }
3882b010 15241 if (!ISDIGIT (*input_line_pointer))
956cd1d6 15242 as_bad (_("expected simple number"));
252b5132
RH
15243 if (input_line_pointer[0] == '0')
15244 {
15245 if (input_line_pointer[1] == 'x')
15246 {
15247 input_line_pointer += 2;
3882b010 15248 while (ISXDIGIT (*input_line_pointer))
252b5132
RH
15249 {
15250 val <<= 4;
15251 val |= hex_value (*input_line_pointer++);
15252 }
15253 return negative ? -val : val;
15254 }
15255 else
15256 {
15257 ++input_line_pointer;
3882b010 15258 while (ISDIGIT (*input_line_pointer))
252b5132
RH
15259 {
15260 val <<= 3;
15261 val |= *input_line_pointer++ - '0';
15262 }
15263 return negative ? -val : val;
15264 }
15265 }
3882b010 15266 if (!ISDIGIT (*input_line_pointer))
252b5132
RH
15267 {
15268 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
15269 *input_line_pointer, *input_line_pointer);
956cd1d6 15270 as_warn (_("invalid number"));
252b5132
RH
15271 return -1;
15272 }
3882b010 15273 while (ISDIGIT (*input_line_pointer))
252b5132
RH
15274 {
15275 val *= 10;
15276 val += *input_line_pointer++ - '0';
15277 }
15278 return negative ? -val : val;
15279}
15280
15281/* The .file directive; just like the usual .file directive, but there
c5dd6aab
DJ
15282 is an initial number which is the ECOFF file index. In the non-ECOFF
15283 case .file implies DWARF-2. */
15284
15285static void
17a2f251 15286s_mips_file (int x ATTRIBUTE_UNUSED)
c5dd6aab 15287{
ecb4347a
DJ
15288 static int first_file_directive = 0;
15289
c5dd6aab
DJ
15290 if (ECOFF_DEBUGGING)
15291 {
15292 get_number ();
15293 s_app_file (0);
15294 }
15295 else
ecb4347a
DJ
15296 {
15297 char *filename;
15298
15299 filename = dwarf2_directive_file (0);
15300
15301 /* Versions of GCC up to 3.1 start files with a ".file"
15302 directive even for stabs output. Make sure that this
15303 ".file" is handled. Note that you need a version of GCC
15304 after 3.1 in order to support DWARF-2 on MIPS. */
15305 if (filename != NULL && ! first_file_directive)
15306 {
15307 (void) new_logical_line (filename, -1);
c04f5787 15308 s_app_file_string (filename, 0);
ecb4347a
DJ
15309 }
15310 first_file_directive = 1;
15311 }
c5dd6aab
DJ
15312}
15313
15314/* The .loc directive, implying DWARF-2. */
252b5132
RH
15315
15316static void
17a2f251 15317s_mips_loc (int x ATTRIBUTE_UNUSED)
252b5132 15318{
c5dd6aab
DJ
15319 if (!ECOFF_DEBUGGING)
15320 dwarf2_directive_loc (0);
252b5132
RH
15321}
15322
252b5132
RH
15323/* The .end directive. */
15324
15325static void
17a2f251 15326s_mips_end (int x ATTRIBUTE_UNUSED)
252b5132
RH
15327{
15328 symbolS *p;
252b5132 15329
7a621144
DJ
15330 /* Following functions need their own .frame and .cprestore directives. */
15331 mips_frame_reg_valid = 0;
15332 mips_cprestore_valid = 0;
15333
252b5132
RH
15334 if (!is_end_of_line[(unsigned char) *input_line_pointer])
15335 {
15336 p = get_symbol ();
15337 demand_empty_rest_of_line ();
15338 }
15339 else
15340 p = NULL;
15341
14949570 15342 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
252b5132
RH
15343 as_warn (_(".end not in text section"));
15344
15345 if (!cur_proc_ptr)
15346 {
15347 as_warn (_(".end directive without a preceding .ent directive."));
15348 demand_empty_rest_of_line ();
15349 return;
15350 }
15351
15352 if (p != NULL)
15353 {
9c2799c2 15354 gas_assert (S_GET_NAME (p));
9b2f1d35 15355 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
252b5132 15356 as_warn (_(".end symbol does not match .ent symbol."));
ecb4347a
DJ
15357
15358 if (debug_type == DEBUG_STABS)
15359 stabs_generate_asm_endfunc (S_GET_NAME (p),
15360 S_GET_NAME (p));
252b5132
RH
15361 }
15362 else
15363 as_warn (_(".end directive missing or unknown symbol"));
15364
2132e3a3 15365#ifdef OBJ_ELF
9b2f1d35
EC
15366 /* Create an expression to calculate the size of the function. */
15367 if (p && cur_proc_ptr)
15368 {
15369 OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
15370 expressionS *exp = xmalloc (sizeof (expressionS));
15371
15372 obj->size = exp;
15373 exp->X_op = O_subtract;
15374 exp->X_add_symbol = symbol_temp_new_now ();
15375 exp->X_op_symbol = p;
15376 exp->X_add_number = 0;
15377
15378 cur_proc_ptr->func_end_sym = exp->X_add_symbol;
15379 }
15380
ecb4347a 15381 /* Generate a .pdr section. */
f43abd2b 15382 if (IS_ELF && !ECOFF_DEBUGGING && mips_flag_pdr)
ecb4347a
DJ
15383 {
15384 segT saved_seg = now_seg;
15385 subsegT saved_subseg = now_subseg;
ecb4347a
DJ
15386 expressionS exp;
15387 char *fragp;
252b5132 15388
252b5132 15389#ifdef md_flush_pending_output
ecb4347a 15390 md_flush_pending_output ();
252b5132
RH
15391#endif
15392
9c2799c2 15393 gas_assert (pdr_seg);
ecb4347a 15394 subseg_set (pdr_seg, 0);
252b5132 15395
ecb4347a
DJ
15396 /* Write the symbol. */
15397 exp.X_op = O_symbol;
15398 exp.X_add_symbol = p;
15399 exp.X_add_number = 0;
15400 emit_expr (&exp, 4);
252b5132 15401
ecb4347a 15402 fragp = frag_more (7 * 4);
252b5132 15403
17a2f251
TS
15404 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
15405 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
15406 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
15407 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
15408 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
15409 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
15410 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
252b5132 15411
ecb4347a
DJ
15412 subseg_set (saved_seg, saved_subseg);
15413 }
15414#endif /* OBJ_ELF */
252b5132
RH
15415
15416 cur_proc_ptr = NULL;
15417}
15418
15419/* The .aent and .ent directives. */
15420
15421static void
17a2f251 15422s_mips_ent (int aent)
252b5132 15423{
252b5132 15424 symbolS *symbolP;
252b5132
RH
15425
15426 symbolP = get_symbol ();
15427 if (*input_line_pointer == ',')
f9419b05 15428 ++input_line_pointer;
252b5132 15429 SKIP_WHITESPACE ();
3882b010 15430 if (ISDIGIT (*input_line_pointer)
d9a62219 15431 || *input_line_pointer == '-')
874e8986 15432 get_number ();
252b5132 15433
14949570 15434 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
252b5132
RH
15435 as_warn (_(".ent or .aent not in text section."));
15436
15437 if (!aent && cur_proc_ptr)
9a41af64 15438 as_warn (_("missing .end"));
252b5132
RH
15439
15440 if (!aent)
15441 {
7a621144
DJ
15442 /* This function needs its own .frame and .cprestore directives. */
15443 mips_frame_reg_valid = 0;
15444 mips_cprestore_valid = 0;
15445
252b5132
RH
15446 cur_proc_ptr = &cur_proc;
15447 memset (cur_proc_ptr, '\0', sizeof (procS));
15448
9b2f1d35 15449 cur_proc_ptr->func_sym = symbolP;
252b5132 15450
f9419b05 15451 ++numprocs;
ecb4347a
DJ
15452
15453 if (debug_type == DEBUG_STABS)
15454 stabs_generate_asm_func (S_GET_NAME (symbolP),
15455 S_GET_NAME (symbolP));
252b5132
RH
15456 }
15457
7c0fc524
MR
15458 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
15459
252b5132
RH
15460 demand_empty_rest_of_line ();
15461}
15462
15463/* The .frame directive. If the mdebug section is present (IRIX 5 native)
bdaaa2e1 15464 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
252b5132 15465 s_mips_frame is used so that we can set the PDR information correctly.
bdaaa2e1 15466 We can't use the ecoff routines because they make reference to the ecoff
252b5132
RH
15467 symbol table (in the mdebug section). */
15468
15469static void
17a2f251 15470s_mips_frame (int ignore ATTRIBUTE_UNUSED)
252b5132 15471{
ecb4347a 15472#ifdef OBJ_ELF
f43abd2b 15473 if (IS_ELF && !ECOFF_DEBUGGING)
ecb4347a
DJ
15474 {
15475 long val;
252b5132 15476
ecb4347a
DJ
15477 if (cur_proc_ptr == (procS *) NULL)
15478 {
15479 as_warn (_(".frame outside of .ent"));
15480 demand_empty_rest_of_line ();
15481 return;
15482 }
252b5132 15483
ecb4347a
DJ
15484 cur_proc_ptr->frame_reg = tc_get_register (1);
15485
15486 SKIP_WHITESPACE ();
15487 if (*input_line_pointer++ != ','
15488 || get_absolute_expression_and_terminator (&val) != ',')
15489 {
15490 as_warn (_("Bad .frame directive"));
15491 --input_line_pointer;
15492 demand_empty_rest_of_line ();
15493 return;
15494 }
252b5132 15495
ecb4347a
DJ
15496 cur_proc_ptr->frame_offset = val;
15497 cur_proc_ptr->pc_reg = tc_get_register (0);
252b5132 15498
252b5132 15499 demand_empty_rest_of_line ();
252b5132 15500 }
ecb4347a
DJ
15501 else
15502#endif /* OBJ_ELF */
15503 s_ignore (ignore);
252b5132
RH
15504}
15505
bdaaa2e1
KH
15506/* The .fmask and .mask directives. If the mdebug section is present
15507 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
252b5132 15508 embedded targets, s_mips_mask is used so that we can set the PDR
bdaaa2e1 15509 information correctly. We can't use the ecoff routines because they
252b5132
RH
15510 make reference to the ecoff symbol table (in the mdebug section). */
15511
15512static void
17a2f251 15513s_mips_mask (int reg_type)
252b5132 15514{
ecb4347a 15515#ifdef OBJ_ELF
f43abd2b 15516 if (IS_ELF && !ECOFF_DEBUGGING)
252b5132 15517 {
ecb4347a 15518 long mask, off;
252b5132 15519
ecb4347a
DJ
15520 if (cur_proc_ptr == (procS *) NULL)
15521 {
15522 as_warn (_(".mask/.fmask outside of .ent"));
15523 demand_empty_rest_of_line ();
15524 return;
15525 }
252b5132 15526
ecb4347a
DJ
15527 if (get_absolute_expression_and_terminator (&mask) != ',')
15528 {
15529 as_warn (_("Bad .mask/.fmask directive"));
15530 --input_line_pointer;
15531 demand_empty_rest_of_line ();
15532 return;
15533 }
252b5132 15534
ecb4347a
DJ
15535 off = get_absolute_expression ();
15536
15537 if (reg_type == 'F')
15538 {
15539 cur_proc_ptr->fpreg_mask = mask;
15540 cur_proc_ptr->fpreg_offset = off;
15541 }
15542 else
15543 {
15544 cur_proc_ptr->reg_mask = mask;
15545 cur_proc_ptr->reg_offset = off;
15546 }
15547
15548 demand_empty_rest_of_line ();
252b5132
RH
15549 }
15550 else
ecb4347a
DJ
15551#endif /* OBJ_ELF */
15552 s_ignore (reg_type);
252b5132
RH
15553}
15554
316f5878
RS
15555/* A table describing all the processors gas knows about. Names are
15556 matched in the order listed.
e7af610e 15557
316f5878
RS
15558 To ease comparison, please keep this table in the same order as
15559 gcc's mips_cpu_info_table[]. */
e972090a
NC
15560static const struct mips_cpu_info mips_cpu_info_table[] =
15561{
316f5878 15562 /* Entries for generic ISAs */
ad3fea08
TS
15563 { "mips1", MIPS_CPU_IS_ISA, ISA_MIPS1, CPU_R3000 },
15564 { "mips2", MIPS_CPU_IS_ISA, ISA_MIPS2, CPU_R6000 },
15565 { "mips3", MIPS_CPU_IS_ISA, ISA_MIPS3, CPU_R4000 },
15566 { "mips4", MIPS_CPU_IS_ISA, ISA_MIPS4, CPU_R8000 },
15567 { "mips5", MIPS_CPU_IS_ISA, ISA_MIPS5, CPU_MIPS5 },
15568 { "mips32", MIPS_CPU_IS_ISA, ISA_MIPS32, CPU_MIPS32 },
15569 { "mips32r2", MIPS_CPU_IS_ISA, ISA_MIPS32R2, CPU_MIPS32R2 },
15570 { "mips64", MIPS_CPU_IS_ISA, ISA_MIPS64, CPU_MIPS64 },
15571 { "mips64r2", MIPS_CPU_IS_ISA, ISA_MIPS64R2, CPU_MIPS64R2 },
316f5878
RS
15572
15573 /* MIPS I */
ad3fea08
TS
15574 { "r3000", 0, ISA_MIPS1, CPU_R3000 },
15575 { "r2000", 0, ISA_MIPS1, CPU_R3000 },
15576 { "r3900", 0, ISA_MIPS1, CPU_R3900 },
316f5878
RS
15577
15578 /* MIPS II */
ad3fea08 15579 { "r6000", 0, ISA_MIPS2, CPU_R6000 },
316f5878
RS
15580
15581 /* MIPS III */
ad3fea08
TS
15582 { "r4000", 0, ISA_MIPS3, CPU_R4000 },
15583 { "r4010", 0, ISA_MIPS2, CPU_R4010 },
15584 { "vr4100", 0, ISA_MIPS3, CPU_VR4100 },
15585 { "vr4111", 0, ISA_MIPS3, CPU_R4111 },
15586 { "vr4120", 0, ISA_MIPS3, CPU_VR4120 },
15587 { "vr4130", 0, ISA_MIPS3, CPU_VR4120 },
15588 { "vr4181", 0, ISA_MIPS3, CPU_R4111 },
15589 { "vr4300", 0, ISA_MIPS3, CPU_R4300 },
15590 { "r4400", 0, ISA_MIPS3, CPU_R4400 },
15591 { "r4600", 0, ISA_MIPS3, CPU_R4600 },
15592 { "orion", 0, ISA_MIPS3, CPU_R4600 },
15593 { "r4650", 0, ISA_MIPS3, CPU_R4650 },
b15591bb
AN
15594 /* ST Microelectronics Loongson 2E and 2F cores */
15595 { "loongson2e", 0, ISA_MIPS3, CPU_LOONGSON_2E },
15596 { "loongson2f", 0, ISA_MIPS3, CPU_LOONGSON_2F },
316f5878
RS
15597
15598 /* MIPS IV */
ad3fea08
TS
15599 { "r8000", 0, ISA_MIPS4, CPU_R8000 },
15600 { "r10000", 0, ISA_MIPS4, CPU_R10000 },
15601 { "r12000", 0, ISA_MIPS4, CPU_R12000 },
3aa3176b
TS
15602 { "r14000", 0, ISA_MIPS4, CPU_R14000 },
15603 { "r16000", 0, ISA_MIPS4, CPU_R16000 },
ad3fea08
TS
15604 { "vr5000", 0, ISA_MIPS4, CPU_R5000 },
15605 { "vr5400", 0, ISA_MIPS4, CPU_VR5400 },
15606 { "vr5500", 0, ISA_MIPS4, CPU_VR5500 },
15607 { "rm5200", 0, ISA_MIPS4, CPU_R5000 },
15608 { "rm5230", 0, ISA_MIPS4, CPU_R5000 },
15609 { "rm5231", 0, ISA_MIPS4, CPU_R5000 },
15610 { "rm5261", 0, ISA_MIPS4, CPU_R5000 },
15611 { "rm5721", 0, ISA_MIPS4, CPU_R5000 },
15612 { "rm7000", 0, ISA_MIPS4, CPU_RM7000 },
15613 { "rm9000", 0, ISA_MIPS4, CPU_RM9000 },
316f5878
RS
15614
15615 /* MIPS 32 */
ad3fea08
TS
15616 { "4kc", 0, ISA_MIPS32, CPU_MIPS32 },
15617 { "4km", 0, ISA_MIPS32, CPU_MIPS32 },
15618 { "4kp", 0, ISA_MIPS32, CPU_MIPS32 },
15619 { "4ksc", MIPS_CPU_ASE_SMARTMIPS, ISA_MIPS32, CPU_MIPS32 },
15620
15621 /* MIPS 32 Release 2 */
15622 { "4kec", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15623 { "4kem", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15624 { "4kep", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15625 { "4ksd", MIPS_CPU_ASE_SMARTMIPS, ISA_MIPS32R2, CPU_MIPS32R2 },
15626 { "m4k", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15627 { "m4kp", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
ad3fea08 15628 { "24kc", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951 15629 { "24kf2_1", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
ad3fea08 15630 { "24kf", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15631 { "24kf1_1", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15632 /* Deprecated forms of the above. */
15633 { "24kfx", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
ad3fea08 15634 { "24kx", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f 15635 /* 24KE is a 24K with DSP ASE, other ASEs are optional. */
ad3fea08 15636 { "24kec", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951 15637 { "24kef2_1", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
ad3fea08 15638 { "24kef", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15639 { "24kef1_1", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
15640 /* Deprecated forms of the above. */
15641 { "24kefx", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
65263ce3 15642 { "24kex", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f 15643 /* 34K is a 24K with DSP and MT ASE, other ASEs are optional. */
a360e743
TS
15644 { "34kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15645 ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15646 { "34kf2_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15647 ISA_MIPS32R2, CPU_MIPS32R2 },
a360e743
TS
15648 { "34kf", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15649 ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15650 { "34kf1_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15651 ISA_MIPS32R2, CPU_MIPS32R2 },
15652 /* Deprecated forms of the above. */
15653 { "34kfx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15654 ISA_MIPS32R2, CPU_MIPS32R2 },
a360e743
TS
15655 { "34kx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15656 ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f
TS
15657 /* 74K with DSP and DSPR2 ASE, other ASEs are optional. */
15658 { "74kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15659 ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15660 { "74kf2_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15661 ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f
TS
15662 { "74kf", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15663 ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15664 { "74kf1_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15665 ISA_MIPS32R2, CPU_MIPS32R2 },
15666 { "74kf3_2", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15667 ISA_MIPS32R2, CPU_MIPS32R2 },
15668 /* Deprecated forms of the above. */
15669 { "74kfx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15670 ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f
TS
15671 { "74kx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15672 ISA_MIPS32R2, CPU_MIPS32R2 },
30f8113a
SL
15673 /* 1004K cores are multiprocessor versions of the 34K. */
15674 { "1004kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15675 ISA_MIPS32R2, CPU_MIPS32R2 },
15676 { "1004kf2_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15677 ISA_MIPS32R2, CPU_MIPS32R2 },
15678 { "1004kf", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15679 ISA_MIPS32R2, CPU_MIPS32R2 },
15680 { "1004kf1_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15681 ISA_MIPS32R2, CPU_MIPS32R2 },
32b26a03 15682
316f5878 15683 /* MIPS 64 */
ad3fea08
TS
15684 { "5kc", 0, ISA_MIPS64, CPU_MIPS64 },
15685 { "5kf", 0, ISA_MIPS64, CPU_MIPS64 },
15686 { "20kc", MIPS_CPU_ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
7764b395 15687 { "25kf", MIPS_CPU_ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
ad3fea08 15688
c7a23324 15689 /* Broadcom SB-1 CPU core */
65263ce3
TS
15690 { "sb1", MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
15691 ISA_MIPS64, CPU_SB1 },
1e85aad8
JW
15692 /* Broadcom SB-1A CPU core */
15693 { "sb1a", MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
15694 ISA_MIPS64, CPU_SB1 },
d051516a
NC
15695
15696 { "loongson3a", 0, ISA_MIPS64, CPU_LOONGSON_3A },
e7af610e 15697
ed163775
MR
15698 /* MIPS 64 Release 2 */
15699
967344c6
AN
15700 /* Cavium Networks Octeon CPU core */
15701 { "octeon", 0, ISA_MIPS64R2, CPU_OCTEON },
15702
52b6b6b9
JM
15703 /* RMI Xlr */
15704 { "xlr", 0, ISA_MIPS64, CPU_XLR },
15705
316f5878
RS
15706 /* End marker */
15707 { NULL, 0, 0, 0 }
15708};
e7af610e 15709
84ea6cf2 15710
316f5878
RS
15711/* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
15712 with a final "000" replaced by "k". Ignore case.
e7af610e 15713
316f5878 15714 Note: this function is shared between GCC and GAS. */
c6c98b38 15715
b34976b6 15716static bfd_boolean
17a2f251 15717mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
316f5878
RS
15718{
15719 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
15720 given++, canonical++;
15721
15722 return ((*given == 0 && *canonical == 0)
15723 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
15724}
15725
15726
15727/* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
15728 CPU name. We've traditionally allowed a lot of variation here.
15729
15730 Note: this function is shared between GCC and GAS. */
15731
b34976b6 15732static bfd_boolean
17a2f251 15733mips_matching_cpu_name_p (const char *canonical, const char *given)
316f5878
RS
15734{
15735 /* First see if the name matches exactly, or with a final "000"
15736 turned into "k". */
15737 if (mips_strict_matching_cpu_name_p (canonical, given))
b34976b6 15738 return TRUE;
316f5878
RS
15739
15740 /* If not, try comparing based on numerical designation alone.
15741 See if GIVEN is an unadorned number, or 'r' followed by a number. */
15742 if (TOLOWER (*given) == 'r')
15743 given++;
15744 if (!ISDIGIT (*given))
b34976b6 15745 return FALSE;
316f5878
RS
15746
15747 /* Skip over some well-known prefixes in the canonical name,
15748 hoping to find a number there too. */
15749 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
15750 canonical += 2;
15751 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
15752 canonical += 2;
15753 else if (TOLOWER (canonical[0]) == 'r')
15754 canonical += 1;
15755
15756 return mips_strict_matching_cpu_name_p (canonical, given);
15757}
15758
15759
15760/* Parse an option that takes the name of a processor as its argument.
15761 OPTION is the name of the option and CPU_STRING is the argument.
15762 Return the corresponding processor enumeration if the CPU_STRING is
15763 recognized, otherwise report an error and return null.
15764
15765 A similar function exists in GCC. */
e7af610e
NC
15766
15767static const struct mips_cpu_info *
17a2f251 15768mips_parse_cpu (const char *option, const char *cpu_string)
e7af610e 15769{
316f5878 15770 const struct mips_cpu_info *p;
e7af610e 15771
316f5878
RS
15772 /* 'from-abi' selects the most compatible architecture for the given
15773 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
15774 EABIs, we have to decide whether we're using the 32-bit or 64-bit
15775 version. Look first at the -mgp options, if given, otherwise base
15776 the choice on MIPS_DEFAULT_64BIT.
e7af610e 15777
316f5878
RS
15778 Treat NO_ABI like the EABIs. One reason to do this is that the
15779 plain 'mips' and 'mips64' configs have 'from-abi' as their default
15780 architecture. This code picks MIPS I for 'mips' and MIPS III for
15781 'mips64', just as we did in the days before 'from-abi'. */
15782 if (strcasecmp (cpu_string, "from-abi") == 0)
15783 {
15784 if (ABI_NEEDS_32BIT_REGS (mips_abi))
15785 return mips_cpu_info_from_isa (ISA_MIPS1);
15786
15787 if (ABI_NEEDS_64BIT_REGS (mips_abi))
15788 return mips_cpu_info_from_isa (ISA_MIPS3);
15789
15790 if (file_mips_gp32 >= 0)
15791 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
15792
15793 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
15794 ? ISA_MIPS3
15795 : ISA_MIPS1);
15796 }
15797
15798 /* 'default' has traditionally been a no-op. Probably not very useful. */
15799 if (strcasecmp (cpu_string, "default") == 0)
15800 return 0;
15801
15802 for (p = mips_cpu_info_table; p->name != 0; p++)
15803 if (mips_matching_cpu_name_p (p->name, cpu_string))
15804 return p;
15805
20203fb9 15806 as_bad (_("Bad value (%s) for %s"), cpu_string, option);
316f5878 15807 return 0;
e7af610e
NC
15808}
15809
316f5878
RS
15810/* Return the canonical processor information for ISA (a member of the
15811 ISA_MIPS* enumeration). */
15812
e7af610e 15813static const struct mips_cpu_info *
17a2f251 15814mips_cpu_info_from_isa (int isa)
e7af610e
NC
15815{
15816 int i;
15817
15818 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
ad3fea08 15819 if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA)
316f5878 15820 && isa == mips_cpu_info_table[i].isa)
e7af610e
NC
15821 return (&mips_cpu_info_table[i]);
15822
e972090a 15823 return NULL;
e7af610e 15824}
fef14a42
TS
15825
15826static const struct mips_cpu_info *
17a2f251 15827mips_cpu_info_from_arch (int arch)
fef14a42
TS
15828{
15829 int i;
15830
15831 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
15832 if (arch == mips_cpu_info_table[i].cpu)
15833 return (&mips_cpu_info_table[i]);
15834
15835 return NULL;
15836}
316f5878
RS
15837\f
15838static void
17a2f251 15839show (FILE *stream, const char *string, int *col_p, int *first_p)
316f5878
RS
15840{
15841 if (*first_p)
15842 {
15843 fprintf (stream, "%24s", "");
15844 *col_p = 24;
15845 }
15846 else
15847 {
15848 fprintf (stream, ", ");
15849 *col_p += 2;
15850 }
e7af610e 15851
316f5878
RS
15852 if (*col_p + strlen (string) > 72)
15853 {
15854 fprintf (stream, "\n%24s", "");
15855 *col_p = 24;
15856 }
15857
15858 fprintf (stream, "%s", string);
15859 *col_p += strlen (string);
15860
15861 *first_p = 0;
15862}
15863
15864void
17a2f251 15865md_show_usage (FILE *stream)
e7af610e 15866{
316f5878
RS
15867 int column, first;
15868 size_t i;
15869
15870 fprintf (stream, _("\
15871MIPS options:\n\
316f5878
RS
15872-EB generate big endian output\n\
15873-EL generate little endian output\n\
15874-g, -g2 do not remove unneeded NOPs or swap branches\n\
15875-G NUM allow referencing objects up to NUM bytes\n\
15876 implicitly with the gp register [default 8]\n"));
15877 fprintf (stream, _("\
15878-mips1 generate MIPS ISA I instructions\n\
15879-mips2 generate MIPS ISA II instructions\n\
15880-mips3 generate MIPS ISA III instructions\n\
15881-mips4 generate MIPS ISA IV instructions\n\
15882-mips5 generate MIPS ISA V instructions\n\
15883-mips32 generate MIPS32 ISA instructions\n\
af7ee8bf 15884-mips32r2 generate MIPS32 release 2 ISA instructions\n\
316f5878 15885-mips64 generate MIPS64 ISA instructions\n\
5f74bc13 15886-mips64r2 generate MIPS64 release 2 ISA instructions\n\
316f5878
RS
15887-march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
15888
15889 first = 1;
e7af610e
NC
15890
15891 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
316f5878
RS
15892 show (stream, mips_cpu_info_table[i].name, &column, &first);
15893 show (stream, "from-abi", &column, &first);
15894 fputc ('\n', stream);
e7af610e 15895
316f5878
RS
15896 fprintf (stream, _("\
15897-mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
15898-no-mCPU don't generate code specific to CPU.\n\
15899 For -mCPU and -no-mCPU, CPU must be one of:\n"));
15900
15901 first = 1;
15902
15903 show (stream, "3900", &column, &first);
15904 show (stream, "4010", &column, &first);
15905 show (stream, "4100", &column, &first);
15906 show (stream, "4650", &column, &first);
15907 fputc ('\n', stream);
15908
15909 fprintf (stream, _("\
15910-mips16 generate mips16 instructions\n\
15911-no-mips16 do not generate mips16 instructions\n"));
15912 fprintf (stream, _("\
e16bfa71
TS
15913-msmartmips generate smartmips instructions\n\
15914-mno-smartmips do not generate smartmips instructions\n"));
15915 fprintf (stream, _("\
74cd071d
CF
15916-mdsp generate DSP instructions\n\
15917-mno-dsp do not generate DSP instructions\n"));
15918 fprintf (stream, _("\
8b082fb1
TS
15919-mdspr2 generate DSP R2 instructions\n\
15920-mno-dspr2 do not generate DSP R2 instructions\n"));
15921 fprintf (stream, _("\
ef2e4d86
CF
15922-mmt generate MT instructions\n\
15923-mno-mt do not generate MT instructions\n"));
15924 fprintf (stream, _("\
c67a084a
NC
15925-mfix-loongson2f-jump work around Loongson2F JUMP instructions\n\
15926-mfix-loongson2f-nop work around Loongson2F NOP errata\n\
d766e8ec 15927-mfix-vr4120 work around certain VR4120 errata\n\
7d8e00cf 15928-mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
6a32d874 15929-mfix-24k insert a nop after ERET and DERET instructions\n\
d954098f 15930-mfix-cn63xxp1 work around CN63XXP1 PREF errata\n\
316f5878
RS
15931-mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
15932-mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
aed1a261 15933-msym32 assume all symbols have 32-bit values\n\
316f5878
RS
15934-O0 remove unneeded NOPs, do not swap branches\n\
15935-O remove unneeded NOPs and swap branches\n\
316f5878
RS
15936--trap, --no-break trap exception on div by 0 and mult overflow\n\
15937--break, --no-trap break exception on div by 0 and mult overflow\n"));
037b32b9
AN
15938 fprintf (stream, _("\
15939-mhard-float allow floating-point instructions\n\
15940-msoft-float do not allow floating-point instructions\n\
15941-msingle-float only allow 32-bit floating-point operations\n\
15942-mdouble-float allow 32-bit and 64-bit floating-point operations\n\
15943--[no-]construct-floats [dis]allow floating point values to be constructed\n"
15944 ));
316f5878
RS
15945#ifdef OBJ_ELF
15946 fprintf (stream, _("\
15947-KPIC, -call_shared generate SVR4 position independent code\n\
861fb55a 15948-call_nonpic generate non-PIC code that can operate with DSOs\n\
0c000745 15949-mvxworks-pic generate VxWorks position independent code\n\
861fb55a 15950-non_shared do not generate code that can operate with DSOs\n\
316f5878 15951-xgot assume a 32 bit GOT\n\
dcd410fe 15952-mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
bbe506e8 15953-mshared, -mno-shared disable/enable .cpload optimization for\n\
d821e36b 15954 position dependent (non shared) code\n\
316f5878
RS
15955-mabi=ABI create ABI conformant object file for:\n"));
15956
15957 first = 1;
15958
15959 show (stream, "32", &column, &first);
15960 show (stream, "o64", &column, &first);
15961 show (stream, "n32", &column, &first);
15962 show (stream, "64", &column, &first);
15963 show (stream, "eabi", &column, &first);
15964
15965 fputc ('\n', stream);
15966
15967 fprintf (stream, _("\
15968-32 create o32 ABI object file (default)\n\
15969-n32 create n32 ABI object file\n\
15970-64 create 64 ABI object file\n"));
15971#endif
e7af610e 15972}
14e777e0 15973
1575952e 15974#ifdef TE_IRIX
14e777e0 15975enum dwarf2_format
413a266c 15976mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
14e777e0 15977{
369943fe 15978 if (HAVE_64BIT_SYMBOLS)
1575952e 15979 return dwarf2_format_64bit_irix;
14e777e0
KB
15980 else
15981 return dwarf2_format_32bit;
15982}
1575952e 15983#endif
73369e65
EC
15984
15985int
15986mips_dwarf2_addr_size (void)
15987{
6b6b3450 15988 if (HAVE_64BIT_OBJECTS)
73369e65 15989 return 8;
73369e65
EC
15990 else
15991 return 4;
15992}
5862107c
EC
15993
15994/* Standard calling conventions leave the CFA at SP on entry. */
15995void
15996mips_cfi_frame_initial_instructions (void)
15997{
15998 cfi_add_CFA_def_cfa_register (SP);
15999}
16000
707bfff6
TS
16001int
16002tc_mips_regname_to_dw2regnum (char *regname)
16003{
16004 unsigned int regnum = -1;
16005 unsigned int reg;
16006
16007 if (reg_lookup (&regname, RTYPE_GP | RTYPE_NUM, &reg))
16008 regnum = reg;
16009
16010 return regnum;
16011}
This page took 2.23293 seconds and 4 git commands to generate.