gas/testsuite/
[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,
23fce1e3 3 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
252b5132
RH
4 Contributed by the OSF and Ralph Campbell.
5 Written by Keith Knowles and Ralph Campbell, working independently.
6 Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
7 Support.
8
9 This file is part of GAS.
10
11 GAS is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
ec2655a6 13 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
14 any later version.
15
16 GAS is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
23 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
24 02110-1301, USA. */
252b5132
RH
25
26#include "as.h"
27#include "config.h"
28#include "subsegs.h"
3882b010 29#include "safe-ctype.h"
252b5132 30
252b5132
RH
31#include "opcode/mips.h"
32#include "itbl-ops.h"
c5dd6aab 33#include "dwarf2dbg.h"
5862107c 34#include "dw2gencfi.h"
252b5132
RH
35
36#ifdef DEBUG
37#define DBG(x) printf x
38#else
39#define DBG(x)
40#endif
41
42#ifdef OBJ_MAYBE_ELF
43/* Clean up namespace so we can include obj-elf.h too. */
17a2f251
TS
44static int mips_output_flavor (void);
45static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
252b5132
RH
46#undef OBJ_PROCESS_STAB
47#undef OUTPUT_FLAVOR
48#undef S_GET_ALIGN
49#undef S_GET_SIZE
50#undef S_SET_ALIGN
51#undef S_SET_SIZE
252b5132
RH
52#undef obj_frob_file
53#undef obj_frob_file_after_relocs
54#undef obj_frob_symbol
55#undef obj_pop_insert
56#undef obj_sec_sym_ok_for_reloc
57#undef OBJ_COPY_SYMBOL_ATTRIBUTES
58
59#include "obj-elf.h"
60/* Fix any of them that we actually care about. */
61#undef OUTPUT_FLAVOR
62#define OUTPUT_FLAVOR mips_output_flavor()
63#endif
64
65#if defined (OBJ_ELF)
66#include "elf/mips.h"
67#endif
68
69#ifndef ECOFF_DEBUGGING
70#define NO_ECOFF_DEBUGGING
71#define ECOFF_DEBUGGING 0
72#endif
73
ecb4347a
DJ
74int mips_flag_mdebug = -1;
75
dcd410fe
RO
76/* Control generation of .pdr sections. Off by default on IRIX: the native
77 linker doesn't know about and discards them, but relocations against them
78 remain, leading to rld crashes. */
79#ifdef TE_IRIX
80int mips_flag_pdr = FALSE;
81#else
82int mips_flag_pdr = TRUE;
83#endif
84
252b5132
RH
85#include "ecoff.h"
86
87#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
88static char *mips_regmask_frag;
89#endif
90
85b51719 91#define ZERO 0
741fe287 92#define ATREG 1
252b5132
RH
93#define TREG 24
94#define PIC_CALL_REG 25
95#define KT0 26
96#define KT1 27
97#define GP 28
98#define SP 29
99#define FP 30
100#define RA 31
101
102#define ILLEGAL_REG (32)
103
741fe287
MR
104#define AT mips_opts.at
105
252b5132
RH
106/* Allow override of standard little-endian ECOFF format. */
107
108#ifndef ECOFF_LITTLE_FORMAT
109#define ECOFF_LITTLE_FORMAT "ecoff-littlemips"
110#endif
111
112extern int target_big_endian;
113
252b5132 114/* The name of the readonly data section. */
4d0d148d 115#define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_ecoff_flavour \
252b5132 116 ? ".rdata" \
056350c6
NC
117 : OUTPUT_FLAVOR == bfd_target_coff_flavour \
118 ? ".rdata" \
252b5132
RH
119 : OUTPUT_FLAVOR == bfd_target_elf_flavour \
120 ? ".rodata" \
121 : (abort (), ""))
122
47e39b9d
RS
123/* Information about an instruction, including its format, operands
124 and fixups. */
125struct mips_cl_insn
126{
127 /* The opcode's entry in mips_opcodes or mips16_opcodes. */
128 const struct mips_opcode *insn_mo;
129
130 /* True if this is a mips16 instruction and if we want the extended
131 form of INSN_MO. */
132 bfd_boolean use_extend;
133
134 /* The 16-bit extension instruction to use when USE_EXTEND is true. */
135 unsigned short extend;
136
137 /* The 16-bit or 32-bit bitstring of the instruction itself. This is
138 a copy of INSN_MO->match with the operands filled in. */
139 unsigned long insn_opcode;
140
141 /* The frag that contains the instruction. */
142 struct frag *frag;
143
144 /* The offset into FRAG of the first instruction byte. */
145 long where;
146
147 /* The relocs associated with the instruction, if any. */
148 fixS *fixp[3];
149
a38419a5
RS
150 /* True if this entry cannot be moved from its current position. */
151 unsigned int fixed_p : 1;
47e39b9d 152
708587a4 153 /* True if this instruction occurred in a .set noreorder block. */
47e39b9d
RS
154 unsigned int noreorder_p : 1;
155
2fa15973
RS
156 /* True for mips16 instructions that jump to an absolute address. */
157 unsigned int mips16_absolute_jump_p : 1;
47e39b9d
RS
158};
159
a325df1d
TS
160/* The ABI to use. */
161enum mips_abi_level
162{
163 NO_ABI = 0,
164 O32_ABI,
165 O64_ABI,
166 N32_ABI,
167 N64_ABI,
168 EABI_ABI
169};
170
171/* MIPS ABI we are using for this output file. */
316f5878 172static enum mips_abi_level mips_abi = NO_ABI;
a325df1d 173
143d77c5
EC
174/* Whether or not we have code that can call pic code. */
175int mips_abicalls = FALSE;
176
aa6975fb
ILT
177/* Whether or not we have code which can be put into a shared
178 library. */
179static bfd_boolean mips_in_shared = TRUE;
180
252b5132
RH
181/* This is the set of options which may be modified by the .set
182 pseudo-op. We use a struct so that .set push and .set pop are more
183 reliable. */
184
e972090a
NC
185struct mips_set_options
186{
252b5132
RH
187 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
188 if it has not been initialized. Changed by `.set mipsN', and the
189 -mipsN command line option, and the default CPU. */
190 int isa;
1f25f5d3
CD
191 /* Enabled Application Specific Extensions (ASEs). These are set to -1
192 if they have not been initialized. Changed by `.set <asename>', by
193 command line options, and based on the default architecture. */
194 int ase_mips3d;
deec1734 195 int ase_mdmx;
e16bfa71 196 int ase_smartmips;
74cd071d 197 int ase_dsp;
8b082fb1 198 int ase_dspr2;
ef2e4d86 199 int ase_mt;
252b5132
RH
200 /* Whether we are assembling for the mips16 processor. 0 if we are
201 not, 1 if we are, and -1 if the value has not been initialized.
202 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
203 -nomips16 command line options, and the default CPU. */
204 int mips16;
205 /* Non-zero if we should not reorder instructions. Changed by `.set
206 reorder' and `.set noreorder'. */
207 int noreorder;
741fe287
MR
208 /* Non-zero if we should not permit the register designated "assembler
209 temporary" to be used in instructions. The value is the register
210 number, normally $at ($1). Changed by `.set at=REG', `.set noat'
211 (same as `.set at=$0') and `.set at' (same as `.set at=$1'). */
212 unsigned int at;
252b5132
RH
213 /* Non-zero if we should warn when a macro instruction expands into
214 more than one machine instruction. Changed by `.set nomacro' and
215 `.set macro'. */
216 int warn_about_macros;
217 /* Non-zero if we should not move instructions. Changed by `.set
218 move', `.set volatile', `.set nomove', and `.set novolatile'. */
219 int nomove;
220 /* Non-zero if we should not optimize branches by moving the target
221 of the branch into the delay slot. Actually, we don't perform
222 this optimization anyhow. Changed by `.set bopt' and `.set
223 nobopt'. */
224 int nobopt;
225 /* Non-zero if we should not autoextend mips16 instructions.
226 Changed by `.set autoextend' and `.set noautoextend'. */
227 int noautoextend;
a325df1d
TS
228 /* Restrict general purpose registers and floating point registers
229 to 32 bit. This is initially determined when -mgp32 or -mfp32
230 is passed but can changed if the assembler code uses .set mipsN. */
231 int gp32;
232 int fp32;
fef14a42
TS
233 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
234 command line option, and the default CPU. */
235 int arch;
aed1a261
RS
236 /* True if ".set sym32" is in effect. */
237 bfd_boolean sym32;
037b32b9
AN
238 /* True if floating-point operations are not allowed. Changed by .set
239 softfloat or .set hardfloat, by command line options -msoft-float or
240 -mhard-float. The default is false. */
241 bfd_boolean soft_float;
242
243 /* True if only single-precision floating-point operations are allowed.
244 Changed by .set singlefloat or .set doublefloat, command-line options
245 -msingle-float or -mdouble-float. The default is false. */
246 bfd_boolean single_float;
252b5132
RH
247};
248
037b32b9
AN
249/* This is the struct we use to hold the current set of options. Note
250 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
251 -1 to indicate that they have not been initialized. */
252
a325df1d 253/* True if -mgp32 was passed. */
a8e8e863 254static int file_mips_gp32 = -1;
a325df1d
TS
255
256/* True if -mfp32 was passed. */
a8e8e863 257static int file_mips_fp32 = -1;
a325df1d 258
037b32b9
AN
259/* 1 if -msoft-float, 0 if -mhard-float. The default is 0. */
260static int file_mips_soft_float = 0;
261
262/* 1 if -msingle-float, 0 if -mdouble-float. The default is 0. */
263static int file_mips_single_float = 0;
252b5132 264
e972090a
NC
265static struct mips_set_options mips_opts =
266{
037b32b9
AN
267 /* isa */ ISA_UNKNOWN, /* ase_mips3d */ -1, /* ase_mdmx */ -1,
268 /* ase_smartmips */ 0, /* ase_dsp */ -1, /* ase_dspr2 */ -1, /* ase_mt */ -1,
269 /* mips16 */ -1, /* noreorder */ 0, /* at */ ATREG,
270 /* warn_about_macros */ 0, /* nomove */ 0, /* nobopt */ 0,
271 /* noautoextend */ 0, /* gp32 */ 0, /* fp32 */ 0, /* arch */ CPU_UNKNOWN,
272 /* sym32 */ FALSE, /* soft_float */ FALSE, /* single_float */ FALSE
e7af610e 273};
252b5132
RH
274
275/* These variables are filled in with the masks of registers used.
276 The object format code reads them and puts them in the appropriate
277 place. */
278unsigned long mips_gprmask;
279unsigned long mips_cprmask[4];
280
281/* MIPS ISA we are using for this output file. */
e7af610e 282static int file_mips_isa = ISA_UNKNOWN;
252b5132 283
a4672219
TS
284/* True if -mips16 was passed or implied by arguments passed on the
285 command line (e.g., by -march). */
286static int file_ase_mips16;
287
3994f87e
TS
288#define ISA_SUPPORTS_MIPS16E (mips_opts.isa == ISA_MIPS32 \
289 || mips_opts.isa == ISA_MIPS32R2 \
290 || mips_opts.isa == ISA_MIPS64 \
291 || mips_opts.isa == ISA_MIPS64R2)
292
1f25f5d3
CD
293/* True if -mips3d was passed or implied by arguments passed on the
294 command line (e.g., by -march). */
295static int file_ase_mips3d;
296
deec1734
CD
297/* True if -mdmx was passed or implied by arguments passed on the
298 command line (e.g., by -march). */
299static int file_ase_mdmx;
300
e16bfa71
TS
301/* True if -msmartmips was passed or implied by arguments passed on the
302 command line (e.g., by -march). */
303static int file_ase_smartmips;
304
ad3fea08
TS
305#define ISA_SUPPORTS_SMARTMIPS (mips_opts.isa == ISA_MIPS32 \
306 || mips_opts.isa == ISA_MIPS32R2)
e16bfa71 307
74cd071d
CF
308/* True if -mdsp was passed or implied by arguments passed on the
309 command line (e.g., by -march). */
310static int file_ase_dsp;
311
ad3fea08
TS
312#define ISA_SUPPORTS_DSP_ASE (mips_opts.isa == ISA_MIPS32R2 \
313 || mips_opts.isa == ISA_MIPS64R2)
314
65263ce3
TS
315#define ISA_SUPPORTS_DSP64_ASE (mips_opts.isa == ISA_MIPS64R2)
316
8b082fb1
TS
317/* True if -mdspr2 was passed or implied by arguments passed on the
318 command line (e.g., by -march). */
319static int file_ase_dspr2;
320
321#define ISA_SUPPORTS_DSPR2_ASE (mips_opts.isa == ISA_MIPS32R2 \
322 || mips_opts.isa == ISA_MIPS64R2)
323
ef2e4d86
CF
324/* True if -mmt was passed or implied by arguments passed on the
325 command line (e.g., by -march). */
326static int file_ase_mt;
327
ad3fea08
TS
328#define ISA_SUPPORTS_MT_ASE (mips_opts.isa == ISA_MIPS32R2 \
329 || mips_opts.isa == ISA_MIPS64R2)
330
ec68c924 331/* The argument of the -march= flag. The architecture we are assembling. */
fef14a42 332static int file_mips_arch = CPU_UNKNOWN;
316f5878 333static const char *mips_arch_string;
ec68c924
EC
334
335/* The argument of the -mtune= flag. The architecture for which we
336 are optimizing. */
337static int mips_tune = CPU_UNKNOWN;
316f5878 338static const char *mips_tune_string;
ec68c924 339
316f5878 340/* True when generating 32-bit code for a 64-bit processor. */
252b5132
RH
341static int mips_32bitmode = 0;
342
316f5878
RS
343/* True if the given ABI requires 32-bit registers. */
344#define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
345
346/* Likewise 64-bit registers. */
707bfff6
TS
347#define ABI_NEEDS_64BIT_REGS(ABI) \
348 ((ABI) == N32_ABI \
349 || (ABI) == N64_ABI \
316f5878
RS
350 || (ABI) == O64_ABI)
351
ad3fea08 352/* Return true if ISA supports 64 bit wide gp registers. */
707bfff6
TS
353#define ISA_HAS_64BIT_REGS(ISA) \
354 ((ISA) == ISA_MIPS3 \
355 || (ISA) == ISA_MIPS4 \
356 || (ISA) == ISA_MIPS5 \
357 || (ISA) == ISA_MIPS64 \
358 || (ISA) == ISA_MIPS64R2)
9ce8a5dd 359
ad3fea08
TS
360/* Return true if ISA supports 64 bit wide float registers. */
361#define ISA_HAS_64BIT_FPRS(ISA) \
362 ((ISA) == ISA_MIPS3 \
363 || (ISA) == ISA_MIPS4 \
364 || (ISA) == ISA_MIPS5 \
365 || (ISA) == ISA_MIPS32R2 \
366 || (ISA) == ISA_MIPS64 \
367 || (ISA) == ISA_MIPS64R2)
368
af7ee8bf
CD
369/* Return true if ISA supports 64-bit right rotate (dror et al.)
370 instructions. */
707bfff6
TS
371#define ISA_HAS_DROR(ISA) \
372 ((ISA) == ISA_MIPS64R2)
af7ee8bf
CD
373
374/* Return true if ISA supports 32-bit right rotate (ror et al.)
375 instructions. */
707bfff6
TS
376#define ISA_HAS_ROR(ISA) \
377 ((ISA) == ISA_MIPS32R2 \
378 || (ISA) == ISA_MIPS64R2 \
379 || mips_opts.ase_smartmips)
380
7455baf8
TS
381/* Return true if ISA supports single-precision floats in odd registers. */
382#define ISA_HAS_ODD_SINGLE_FPR(ISA) \
383 ((ISA) == ISA_MIPS32 \
384 || (ISA) == ISA_MIPS32R2 \
385 || (ISA) == ISA_MIPS64 \
386 || (ISA) == ISA_MIPS64R2)
af7ee8bf 387
ad3fea08
TS
388/* Return true if ISA supports move to/from high part of a 64-bit
389 floating-point register. */
390#define ISA_HAS_MXHC1(ISA) \
391 ((ISA) == ISA_MIPS32R2 \
392 || (ISA) == ISA_MIPS64R2)
393
e013f690 394#define HAVE_32BIT_GPRS \
ad3fea08 395 (mips_opts.gp32 || !ISA_HAS_64BIT_REGS (mips_opts.isa))
ca4e0257 396
e013f690 397#define HAVE_32BIT_FPRS \
ad3fea08 398 (mips_opts.fp32 || !ISA_HAS_64BIT_FPRS (mips_opts.isa))
ca4e0257 399
ad3fea08
TS
400#define HAVE_64BIT_GPRS (!HAVE_32BIT_GPRS)
401#define HAVE_64BIT_FPRS (!HAVE_32BIT_FPRS)
ca4e0257 402
316f5878 403#define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
e013f690 404
316f5878 405#define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
e013f690 406
3b91255e
RS
407/* True if relocations are stored in-place. */
408#define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
409
aed1a261
RS
410/* The ABI-derived address size. */
411#define HAVE_64BIT_ADDRESSES \
412 (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
413#define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
e013f690 414
aed1a261
RS
415/* The size of symbolic constants (i.e., expressions of the form
416 "SYMBOL" or "SYMBOL + OFFSET"). */
417#define HAVE_32BIT_SYMBOLS \
418 (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
419#define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
ca4e0257 420
b7c7d6c1
TS
421/* Addresses are loaded in different ways, depending on the address size
422 in use. The n32 ABI Documentation also mandates the use of additions
423 with overflow checking, but existing implementations don't follow it. */
f899b4b8 424#define ADDRESS_ADD_INSN \
b7c7d6c1 425 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
f899b4b8
TS
426
427#define ADDRESS_ADDI_INSN \
b7c7d6c1 428 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
f899b4b8
TS
429
430#define ADDRESS_LOAD_INSN \
431 (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
432
433#define ADDRESS_STORE_INSN \
434 (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
435
a4672219 436/* Return true if the given CPU supports the MIPS16 ASE. */
3396de36
TS
437#define CPU_HAS_MIPS16(cpu) \
438 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
439 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
a4672219 440
60b63b72
RS
441/* True if CPU has a dror instruction. */
442#define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
443
444/* True if CPU has a ror instruction. */
445#define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU)
446
dd3cbb7e
NC
447/* True if CPU has seq/sne and seqi/snei instructions. */
448#define CPU_HAS_SEQ(CPU) ((CPU) == CPU_OCTEON)
449
b19e8a9b
AN
450/* True if CPU does not implement the all the coprocessor insns. For these
451 CPUs only those COP insns are accepted that are explicitly marked to be
452 available on the CPU. ISA membership for COP insns is ignored. */
453#define NO_ISA_COP(CPU) ((CPU) == CPU_OCTEON)
454
c8978940
CD
455/* True if mflo and mfhi can be immediately followed by instructions
456 which write to the HI and LO registers.
457
458 According to MIPS specifications, MIPS ISAs I, II, and III need
459 (at least) two instructions between the reads of HI/LO and
460 instructions which write them, and later ISAs do not. Contradicting
461 the MIPS specifications, some MIPS IV processor user manuals (e.g.
462 the UM for the NEC Vr5000) document needing the instructions between
463 HI/LO reads and writes, as well. Therefore, we declare only MIPS32,
464 MIPS64 and later ISAs to have the interlocks, plus any specific
465 earlier-ISA CPUs for which CPU documentation declares that the
466 instructions are really interlocked. */
467#define hilo_interlocks \
468 (mips_opts.isa == ISA_MIPS32 \
469 || mips_opts.isa == ISA_MIPS32R2 \
470 || mips_opts.isa == ISA_MIPS64 \
471 || mips_opts.isa == ISA_MIPS64R2 \
472 || mips_opts.arch == CPU_R4010 \
473 || mips_opts.arch == CPU_R10000 \
474 || mips_opts.arch == CPU_R12000 \
3aa3176b
TS
475 || mips_opts.arch == CPU_R14000 \
476 || mips_opts.arch == CPU_R16000 \
c8978940 477 || mips_opts.arch == CPU_RM7000 \
c8978940
CD
478 || mips_opts.arch == CPU_VR5500 \
479 )
252b5132
RH
480
481/* Whether the processor uses hardware interlocks to protect reads
81912461
ILT
482 from the GPRs after they are loaded from memory, and thus does not
483 require nops to be inserted. This applies to instructions marked
484 INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA
485 level I. */
252b5132 486#define gpr_interlocks \
e7af610e 487 (mips_opts.isa != ISA_MIPS1 \
fef14a42 488 || mips_opts.arch == CPU_R3900)
252b5132 489
81912461
ILT
490/* Whether the processor uses hardware interlocks to avoid delays
491 required by coprocessor instructions, and thus does not require
492 nops to be inserted. This applies to instructions marked
493 INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
494 between instructions marked INSN_WRITE_COND_CODE and ones marked
495 INSN_READ_COND_CODE. These nops are only required at MIPS ISA
496 levels I, II, and III. */
bdaaa2e1 497/* Itbl support may require additional care here. */
81912461
ILT
498#define cop_interlocks \
499 ((mips_opts.isa != ISA_MIPS1 \
500 && mips_opts.isa != ISA_MIPS2 \
501 && mips_opts.isa != ISA_MIPS3) \
502 || mips_opts.arch == CPU_R4300 \
81912461
ILT
503 )
504
505/* Whether the processor uses hardware interlocks to protect reads
506 from coprocessor registers after they are loaded from memory, and
507 thus does not require nops to be inserted. This applies to
508 instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only
509 requires at MIPS ISA level I. */
510#define cop_mem_interlocks (mips_opts.isa != ISA_MIPS1)
252b5132 511
6b76fefe
CM
512/* Is this a mfhi or mflo instruction? */
513#define MF_HILO_INSN(PINFO) \
b19e8a9b
AN
514 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
515
516/* Returns true for a (non floating-point) coprocessor instruction. Reading
517 or writing the condition code is only possible on the coprocessors and
518 these insns are not marked with INSN_COP. Thus for these insns use the
a242dc0d 519 condition-code flags. */
b19e8a9b
AN
520#define COP_INSN(PINFO) \
521 (PINFO != INSN_MACRO \
a242dc0d
AN
522 && ((PINFO) & (FP_S | FP_D)) == 0 \
523 && ((PINFO) & (INSN_COP | INSN_READ_COND_CODE | INSN_WRITE_COND_CODE)))
6b76fefe 524
252b5132
RH
525/* MIPS PIC level. */
526
a161fe53 527enum mips_pic_level mips_pic;
252b5132 528
c9914766 529/* 1 if we should generate 32 bit offsets from the $gp register in
252b5132 530 SVR4_PIC mode. Currently has no meaning in other modes. */
c9914766 531static int mips_big_got = 0;
252b5132
RH
532
533/* 1 if trap instructions should used for overflow rather than break
534 instructions. */
c9914766 535static int mips_trap = 0;
252b5132 536
119d663a 537/* 1 if double width floating point constants should not be constructed
b6ff326e 538 by assembling two single width halves into two single width floating
119d663a
NC
539 point registers which just happen to alias the double width destination
540 register. On some architectures this aliasing can be disabled by a bit
d547a75e 541 in the status register, and the setting of this bit cannot be determined
119d663a
NC
542 automatically at assemble time. */
543static int mips_disable_float_construction;
544
252b5132
RH
545/* Non-zero if any .set noreorder directives were used. */
546
547static int mips_any_noreorder;
548
6b76fefe
CM
549/* Non-zero if nops should be inserted when the register referenced in
550 an mfhi/mflo instruction is read in the next two instructions. */
551static int mips_7000_hilo_fix;
552
02ffd3e4 553/* The size of objects in the small data section. */
156c2f8b 554static unsigned int g_switch_value = 8;
252b5132
RH
555/* Whether the -G option was used. */
556static int g_switch_seen = 0;
557
558#define N_RMASK 0xc4
559#define N_VFP 0xd4
560
561/* If we can determine in advance that GP optimization won't be
562 possible, we can skip the relaxation stuff that tries to produce
563 GP-relative references. This makes delay slot optimization work
564 better.
565
566 This function can only provide a guess, but it seems to work for
fba2b7f9
GK
567 gcc output. It needs to guess right for gcc, otherwise gcc
568 will put what it thinks is a GP-relative instruction in a branch
569 delay slot.
252b5132
RH
570
571 I don't know if a fix is needed for the SVR4_PIC mode. I've only
572 fixed it for the non-PIC mode. KR 95/04/07 */
17a2f251 573static int nopic_need_relax (symbolS *, int);
252b5132
RH
574
575/* handle of the OPCODE hash table */
576static struct hash_control *op_hash = NULL;
577
578/* The opcode hash table we use for the mips16. */
579static struct hash_control *mips16_op_hash = NULL;
580
581/* This array holds the chars that always start a comment. If the
582 pre-processor is disabled, these aren't very useful */
583const char comment_chars[] = "#";
584
585/* This array holds the chars that only start a comment at the beginning of
586 a line. If the line seems to have the form '# 123 filename'
587 .line and .file directives will appear in the pre-processed output */
588/* Note that input_file.c hand checks for '#' at the beginning of the
589 first line of the input file. This is because the compiler outputs
bdaaa2e1 590 #NO_APP at the beginning of its output. */
252b5132
RH
591/* Also note that C style comments are always supported. */
592const char line_comment_chars[] = "#";
593
bdaaa2e1 594/* This array holds machine specific line separator characters. */
63a0b638 595const char line_separator_chars[] = ";";
252b5132
RH
596
597/* Chars that can be used to separate mant from exp in floating point nums */
598const char EXP_CHARS[] = "eE";
599
600/* Chars that mean this number is a floating point constant */
601/* As in 0f12.456 */
602/* or 0d1.2345e12 */
603const char FLT_CHARS[] = "rRsSfFdDxXpP";
604
605/* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
606 changed in read.c . Ideally it shouldn't have to know about it at all,
607 but nothing is ideal around here.
608 */
609
610static char *insn_error;
611
612static int auto_align = 1;
613
614/* When outputting SVR4 PIC code, the assembler needs to know the
615 offset in the stack frame from which to restore the $gp register.
616 This is set by the .cprestore pseudo-op, and saved in this
617 variable. */
618static offsetT mips_cprestore_offset = -1;
619
67c1ffbe 620/* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
6478892d 621 more optimizations, it can use a register value instead of a memory-saved
956cd1d6 622 offset and even an other register than $gp as global pointer. */
6478892d
TS
623static offsetT mips_cpreturn_offset = -1;
624static int mips_cpreturn_register = -1;
625static int mips_gp_register = GP;
def2e0dd 626static int mips_gprel_offset = 0;
6478892d 627
7a621144
DJ
628/* Whether mips_cprestore_offset has been set in the current function
629 (or whether it has already been warned about, if not). */
630static int mips_cprestore_valid = 0;
631
252b5132
RH
632/* This is the register which holds the stack frame, as set by the
633 .frame pseudo-op. This is needed to implement .cprestore. */
634static int mips_frame_reg = SP;
635
7a621144
DJ
636/* Whether mips_frame_reg has been set in the current function
637 (or whether it has already been warned about, if not). */
638static int mips_frame_reg_valid = 0;
639
252b5132
RH
640/* To output NOP instructions correctly, we need to keep information
641 about the previous two instructions. */
642
643/* Whether we are optimizing. The default value of 2 means to remove
644 unneeded NOPs and swap branch instructions when possible. A value
645 of 1 means to not swap branches. A value of 0 means to always
646 insert NOPs. */
647static int mips_optimize = 2;
648
649/* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
650 equivalent to seeing no -g option at all. */
651static int mips_debug = 0;
652
7d8e00cf
RS
653/* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata. */
654#define MAX_VR4130_NOPS 4
655
656/* The maximum number of NOPs needed to fill delay slots. */
657#define MAX_DELAY_NOPS 2
658
659/* The maximum number of NOPs needed for any purpose. */
660#define MAX_NOPS 4
71400594
RS
661
662/* A list of previous instructions, with index 0 being the most recent.
663 We need to look back MAX_NOPS instructions when filling delay slots
664 or working around processor errata. We need to look back one
665 instruction further if we're thinking about using history[0] to
666 fill a branch delay slot. */
667static struct mips_cl_insn history[1 + MAX_NOPS];
252b5132 668
1e915849
RS
669/* Nop instructions used by emit_nop. */
670static struct mips_cl_insn nop_insn, mips16_nop_insn;
671
672/* The appropriate nop for the current mode. */
673#define NOP_INSN (mips_opts.mips16 ? &mips16_nop_insn : &nop_insn)
252b5132 674
252b5132
RH
675/* If this is set, it points to a frag holding nop instructions which
676 were inserted before the start of a noreorder section. If those
677 nops turn out to be unnecessary, the size of the frag can be
678 decreased. */
679static fragS *prev_nop_frag;
680
681/* The number of nop instructions we created in prev_nop_frag. */
682static int prev_nop_frag_holds;
683
684/* The number of nop instructions that we know we need in
bdaaa2e1 685 prev_nop_frag. */
252b5132
RH
686static int prev_nop_frag_required;
687
688/* The number of instructions we've seen since prev_nop_frag. */
689static int prev_nop_frag_since;
690
691/* For ECOFF and ELF, relocations against symbols are done in two
692 parts, with a HI relocation and a LO relocation. Each relocation
693 has only 16 bits of space to store an addend. This means that in
694 order for the linker to handle carries correctly, it must be able
695 to locate both the HI and the LO relocation. This means that the
696 relocations must appear in order in the relocation table.
697
698 In order to implement this, we keep track of each unmatched HI
699 relocation. We then sort them so that they immediately precede the
bdaaa2e1 700 corresponding LO relocation. */
252b5132 701
e972090a
NC
702struct mips_hi_fixup
703{
252b5132
RH
704 /* Next HI fixup. */
705 struct mips_hi_fixup *next;
706 /* This fixup. */
707 fixS *fixp;
708 /* The section this fixup is in. */
709 segT seg;
710};
711
712/* The list of unmatched HI relocs. */
713
714static struct mips_hi_fixup *mips_hi_fixup_list;
715
64bdfcaf
RS
716/* The frag containing the last explicit relocation operator.
717 Null if explicit relocations have not been used. */
718
719static fragS *prev_reloc_op_frag;
720
252b5132
RH
721/* Map normal MIPS register numbers to mips16 register numbers. */
722
723#define X ILLEGAL_REG
e972090a
NC
724static const int mips32_to_16_reg_map[] =
725{
252b5132
RH
726 X, X, 2, 3, 4, 5, 6, 7,
727 X, X, X, X, X, X, X, X,
728 0, 1, X, X, X, X, X, X,
729 X, X, X, X, X, X, X, X
730};
731#undef X
732
733/* Map mips16 register numbers to normal MIPS register numbers. */
734
e972090a
NC
735static const unsigned int mips16_to_32_reg_map[] =
736{
252b5132
RH
737 16, 17, 2, 3, 4, 5, 6, 7
738};
60b63b72 739
71400594
RS
740/* Classifies the kind of instructions we're interested in when
741 implementing -mfix-vr4120. */
742enum fix_vr4120_class {
743 FIX_VR4120_MACC,
744 FIX_VR4120_DMACC,
745 FIX_VR4120_MULT,
746 FIX_VR4120_DMULT,
747 FIX_VR4120_DIV,
748 FIX_VR4120_MTHILO,
749 NUM_FIX_VR4120_CLASSES
750};
751
752/* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
753 there must be at least one other instruction between an instruction
754 of type X and an instruction of type Y. */
755static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
756
757/* True if -mfix-vr4120 is in force. */
d766e8ec 758static int mips_fix_vr4120;
4a6a3df4 759
7d8e00cf
RS
760/* ...likewise -mfix-vr4130. */
761static int mips_fix_vr4130;
762
6a32d874
CM
763/* ...likewise -mfix-24k. */
764static int mips_fix_24k;
765
4a6a3df4
AO
766/* We don't relax branches by default, since this causes us to expand
767 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
768 fail to compute the offset before expanding the macro to the most
769 efficient expansion. */
770
771static int mips_relax_branch;
252b5132 772\f
4d7206a2
RS
773/* The expansion of many macros depends on the type of symbol that
774 they refer to. For example, when generating position-dependent code,
775 a macro that refers to a symbol may have two different expansions,
776 one which uses GP-relative addresses and one which uses absolute
777 addresses. When generating SVR4-style PIC, a macro may have
778 different expansions for local and global symbols.
779
780 We handle these situations by generating both sequences and putting
781 them in variant frags. In position-dependent code, the first sequence
782 will be the GP-relative one and the second sequence will be the
783 absolute one. In SVR4 PIC, the first sequence will be for global
784 symbols and the second will be for local symbols.
785
584892a6
RS
786 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
787 SECOND are the lengths of the two sequences in bytes. These fields
788 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
789 the subtype has the following flags:
4d7206a2 790
584892a6
RS
791 RELAX_USE_SECOND
792 Set if it has been decided that we should use the second
793 sequence instead of the first.
794
795 RELAX_SECOND_LONGER
796 Set in the first variant frag if the macro's second implementation
797 is longer than its first. This refers to the macro as a whole,
798 not an individual relaxation.
799
800 RELAX_NOMACRO
801 Set in the first variant frag if the macro appeared in a .set nomacro
802 block and if one alternative requires a warning but the other does not.
803
804 RELAX_DELAY_SLOT
805 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
806 delay slot.
4d7206a2
RS
807
808 The frag's "opcode" points to the first fixup for relaxable code.
809
810 Relaxable macros are generated using a sequence such as:
811
812 relax_start (SYMBOL);
813 ... generate first expansion ...
814 relax_switch ();
815 ... generate second expansion ...
816 relax_end ();
817
818 The code and fixups for the unwanted alternative are discarded
819 by md_convert_frag. */
584892a6 820#define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
4d7206a2 821
584892a6
RS
822#define RELAX_FIRST(X) (((X) >> 8) & 0xff)
823#define RELAX_SECOND(X) ((X) & 0xff)
824#define RELAX_USE_SECOND 0x10000
825#define RELAX_SECOND_LONGER 0x20000
826#define RELAX_NOMACRO 0x40000
827#define RELAX_DELAY_SLOT 0x80000
252b5132 828
4a6a3df4
AO
829/* Branch without likely bit. If label is out of range, we turn:
830
831 beq reg1, reg2, label
832 delay slot
833
834 into
835
836 bne reg1, reg2, 0f
837 nop
838 j label
839 0: delay slot
840
841 with the following opcode replacements:
842
843 beq <-> bne
844 blez <-> bgtz
845 bltz <-> bgez
846 bc1f <-> bc1t
847
848 bltzal <-> bgezal (with jal label instead of j label)
849
850 Even though keeping the delay slot instruction in the delay slot of
851 the branch would be more efficient, it would be very tricky to do
852 correctly, because we'd have to introduce a variable frag *after*
853 the delay slot instruction, and expand that instead. Let's do it
854 the easy way for now, even if the branch-not-taken case now costs
855 one additional instruction. Out-of-range branches are not supposed
856 to be common, anyway.
857
858 Branch likely. If label is out of range, we turn:
859
860 beql reg1, reg2, label
861 delay slot (annulled if branch not taken)
862
863 into
864
865 beql reg1, reg2, 1f
866 nop
867 beql $0, $0, 2f
868 nop
869 1: j[al] label
870 delay slot (executed only if branch taken)
871 2:
872
873 It would be possible to generate a shorter sequence by losing the
874 likely bit, generating something like:
b34976b6 875
4a6a3df4
AO
876 bne reg1, reg2, 0f
877 nop
878 j[al] label
879 delay slot (executed only if branch taken)
880 0:
881
882 beql -> bne
883 bnel -> beq
884 blezl -> bgtz
885 bgtzl -> blez
886 bltzl -> bgez
887 bgezl -> bltz
888 bc1fl -> bc1t
889 bc1tl -> bc1f
890
891 bltzall -> bgezal (with jal label instead of j label)
892 bgezall -> bltzal (ditto)
893
894
895 but it's not clear that it would actually improve performance. */
af6ae2ad 896#define RELAX_BRANCH_ENCODE(uncond, likely, link, toofar) \
4a6a3df4
AO
897 ((relax_substateT) \
898 (0xc0000000 \
899 | ((toofar) ? 1 : 0) \
900 | ((link) ? 2 : 0) \
901 | ((likely) ? 4 : 0) \
af6ae2ad 902 | ((uncond) ? 8 : 0)))
4a6a3df4 903#define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
4a6a3df4
AO
904#define RELAX_BRANCH_UNCOND(i) (((i) & 8) != 0)
905#define RELAX_BRANCH_LIKELY(i) (((i) & 4) != 0)
906#define RELAX_BRANCH_LINK(i) (((i) & 2) != 0)
ae6063d4 907#define RELAX_BRANCH_TOOFAR(i) (((i) & 1) != 0)
4a6a3df4 908
252b5132
RH
909/* For mips16 code, we use an entirely different form of relaxation.
910 mips16 supports two versions of most instructions which take
911 immediate values: a small one which takes some small value, and a
912 larger one which takes a 16 bit value. Since branches also follow
913 this pattern, relaxing these values is required.
914
915 We can assemble both mips16 and normal MIPS code in a single
916 object. Therefore, we need to support this type of relaxation at
917 the same time that we support the relaxation described above. We
918 use the high bit of the subtype field to distinguish these cases.
919
920 The information we store for this type of relaxation is the
921 argument code found in the opcode file for this relocation, whether
922 the user explicitly requested a small or extended form, and whether
923 the relocation is in a jump or jal delay slot. That tells us the
924 size of the value, and how it should be stored. We also store
925 whether the fragment is considered to be extended or not. We also
926 store whether this is known to be a branch to a different section,
927 whether we have tried to relax this frag yet, and whether we have
928 ever extended a PC relative fragment because of a shift count. */
929#define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
930 (0x80000000 \
931 | ((type) & 0xff) \
932 | ((small) ? 0x100 : 0) \
933 | ((ext) ? 0x200 : 0) \
934 | ((dslot) ? 0x400 : 0) \
935 | ((jal_dslot) ? 0x800 : 0))
4a6a3df4 936#define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
252b5132
RH
937#define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
938#define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
939#define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
940#define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
941#define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
942#define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
943#define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
944#define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
945#define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
946#define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
947#define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
885add95
CD
948
949/* Is the given value a sign-extended 32-bit value? */
950#define IS_SEXT_32BIT_NUM(x) \
951 (((x) &~ (offsetT) 0x7fffffff) == 0 \
952 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
953
954/* Is the given value a sign-extended 16-bit value? */
955#define IS_SEXT_16BIT_NUM(x) \
956 (((x) &~ (offsetT) 0x7fff) == 0 \
957 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
958
2051e8c4
MR
959/* Is the given value a zero-extended 32-bit value? Or a negated one? */
960#define IS_ZEXT_32BIT_NUM(x) \
961 (((x) &~ (offsetT) 0xffffffff) == 0 \
962 || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
963
bf12938e
RS
964/* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
965 VALUE << SHIFT. VALUE is evaluated exactly once. */
966#define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
967 (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
968 | (((VALUE) & (MASK)) << (SHIFT)))
969
970/* Extract bits MASK << SHIFT from STRUCT and shift them right
971 SHIFT places. */
972#define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
973 (((STRUCT) >> (SHIFT)) & (MASK))
974
975/* Change INSN's opcode so that the operand given by FIELD has value VALUE.
976 INSN is a mips_cl_insn structure and VALUE is evaluated exactly once.
977
978 include/opcode/mips.h specifies operand fields using the macros
979 OP_MASK_<FIELD> and OP_SH_<FIELD>. The MIPS16 equivalents start
980 with "MIPS16OP" instead of "OP". */
981#define INSERT_OPERAND(FIELD, INSN, VALUE) \
982 INSERT_BITS ((INSN).insn_opcode, VALUE, OP_MASK_##FIELD, OP_SH_##FIELD)
983#define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
984 INSERT_BITS ((INSN).insn_opcode, VALUE, \
985 MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
986
987/* Extract the operand given by FIELD from mips_cl_insn INSN. */
988#define EXTRACT_OPERAND(FIELD, INSN) \
989 EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD)
990#define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
991 EXTRACT_BITS ((INSN).insn_opcode, \
992 MIPS16OP_MASK_##FIELD, \
993 MIPS16OP_SH_##FIELD)
4d7206a2
RS
994\f
995/* Global variables used when generating relaxable macros. See the
996 comment above RELAX_ENCODE for more details about how relaxation
997 is used. */
998static struct {
999 /* 0 if we're not emitting a relaxable macro.
1000 1 if we're emitting the first of the two relaxation alternatives.
1001 2 if we're emitting the second alternative. */
1002 int sequence;
1003
1004 /* The first relaxable fixup in the current frag. (In other words,
1005 the first fixup that refers to relaxable code.) */
1006 fixS *first_fixup;
1007
1008 /* sizes[0] says how many bytes of the first alternative are stored in
1009 the current frag. Likewise sizes[1] for the second alternative. */
1010 unsigned int sizes[2];
1011
1012 /* The symbol on which the choice of sequence depends. */
1013 symbolS *symbol;
1014} mips_relax;
252b5132 1015\f
584892a6
RS
1016/* Global variables used to decide whether a macro needs a warning. */
1017static struct {
1018 /* True if the macro is in a branch delay slot. */
1019 bfd_boolean delay_slot_p;
1020
1021 /* For relaxable macros, sizes[0] is the length of the first alternative
1022 in bytes and sizes[1] is the length of the second alternative.
1023 For non-relaxable macros, both elements give the length of the
1024 macro in bytes. */
1025 unsigned int sizes[2];
1026
1027 /* The first variant frag for this macro. */
1028 fragS *first_frag;
1029} mips_macro_warning;
1030\f
252b5132
RH
1031/* Prototypes for static functions. */
1032
17a2f251 1033#define internalError() \
252b5132 1034 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
252b5132
RH
1035
1036enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
1037
b34976b6 1038static void append_insn
4d7206a2 1039 (struct mips_cl_insn *ip, expressionS *p, bfd_reloc_code_real_type *r);
7d10b47d 1040static void mips_no_prev_insn (void);
b34976b6 1041static void mips16_macro_build
67c0d1eb
RS
1042 (expressionS *, const char *, const char *, va_list);
1043static void load_register (int, expressionS *, int);
584892a6
RS
1044static void macro_start (void);
1045static void macro_end (void);
17a2f251
TS
1046static void macro (struct mips_cl_insn * ip);
1047static void mips16_macro (struct mips_cl_insn * ip);
252b5132 1048#ifdef LOSING_COMPILER
17a2f251 1049static void macro2 (struct mips_cl_insn * ip);
252b5132 1050#endif
17a2f251
TS
1051static void mips_ip (char *str, struct mips_cl_insn * ip);
1052static void mips16_ip (char *str, struct mips_cl_insn * ip);
b34976b6 1053static void mips16_immed
17a2f251
TS
1054 (char *, unsigned int, int, offsetT, bfd_boolean, bfd_boolean, bfd_boolean,
1055 unsigned long *, bfd_boolean *, unsigned short *);
5e0116d5 1056static size_t my_getSmallExpression
17a2f251
TS
1057 (expressionS *, bfd_reloc_code_real_type *, char *);
1058static void my_getExpression (expressionS *, char *);
1059static void s_align (int);
1060static void s_change_sec (int);
1061static void s_change_section (int);
1062static void s_cons (int);
1063static void s_float_cons (int);
1064static void s_mips_globl (int);
1065static void s_option (int);
1066static void s_mipsset (int);
1067static void s_abicalls (int);
1068static void s_cpload (int);
1069static void s_cpsetup (int);
1070static void s_cplocal (int);
1071static void s_cprestore (int);
1072static void s_cpreturn (int);
741d6ea8
JM
1073static void s_dtprelword (int);
1074static void s_dtpreldword (int);
17a2f251
TS
1075static void s_gpvalue (int);
1076static void s_gpword (int);
1077static void s_gpdword (int);
1078static void s_cpadd (int);
1079static void s_insn (int);
1080static void md_obj_begin (void);
1081static void md_obj_end (void);
1082static void s_mips_ent (int);
1083static void s_mips_end (int);
1084static void s_mips_frame (int);
1085static void s_mips_mask (int reg_type);
1086static void s_mips_stab (int);
1087static void s_mips_weakext (int);
1088static void s_mips_file (int);
1089static void s_mips_loc (int);
1090static bfd_boolean pic_need_relax (symbolS *, asection *);
4a6a3df4 1091static int relaxed_branch_length (fragS *, asection *, int);
17a2f251 1092static int validate_mips_insn (const struct mips_opcode *);
e7af610e
NC
1093
1094/* Table and functions used to map between CPU/ISA names, and
1095 ISA levels, and CPU numbers. */
1096
e972090a
NC
1097struct mips_cpu_info
1098{
e7af610e 1099 const char *name; /* CPU or ISA name. */
ad3fea08 1100 int flags; /* ASEs available, or ISA flag. */
e7af610e
NC
1101 int isa; /* ISA level. */
1102 int cpu; /* CPU number (default CPU if ISA). */
1103};
1104
ad3fea08
TS
1105#define MIPS_CPU_IS_ISA 0x0001 /* Is this an ISA? (If 0, a CPU.) */
1106#define MIPS_CPU_ASE_SMARTMIPS 0x0002 /* CPU implements SmartMIPS ASE */
1107#define MIPS_CPU_ASE_DSP 0x0004 /* CPU implements DSP ASE */
1108#define MIPS_CPU_ASE_MT 0x0008 /* CPU implements MT ASE */
1109#define MIPS_CPU_ASE_MIPS3D 0x0010 /* CPU implements MIPS-3D ASE */
1110#define MIPS_CPU_ASE_MDMX 0x0020 /* CPU implements MDMX ASE */
8b082fb1 1111#define MIPS_CPU_ASE_DSPR2 0x0040 /* CPU implements DSP R2 ASE */
ad3fea08 1112
17a2f251
TS
1113static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1114static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1115static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
252b5132
RH
1116\f
1117/* Pseudo-op table.
1118
1119 The following pseudo-ops from the Kane and Heinrich MIPS book
1120 should be defined here, but are currently unsupported: .alias,
1121 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1122
1123 The following pseudo-ops from the Kane and Heinrich MIPS book are
1124 specific to the type of debugging information being generated, and
1125 should be defined by the object format: .aent, .begin, .bend,
1126 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1127 .vreg.
1128
1129 The following pseudo-ops from the Kane and Heinrich MIPS book are
1130 not MIPS CPU specific, but are also not specific to the object file
1131 format. This file is probably the best place to define them, but
d84bcf09 1132 they are not currently supported: .asm0, .endr, .lab, .struct. */
252b5132 1133
e972090a
NC
1134static const pseudo_typeS mips_pseudo_table[] =
1135{
beae10d5 1136 /* MIPS specific pseudo-ops. */
252b5132
RH
1137 {"option", s_option, 0},
1138 {"set", s_mipsset, 0},
1139 {"rdata", s_change_sec, 'r'},
1140 {"sdata", s_change_sec, 's'},
1141 {"livereg", s_ignore, 0},
1142 {"abicalls", s_abicalls, 0},
1143 {"cpload", s_cpload, 0},
6478892d
TS
1144 {"cpsetup", s_cpsetup, 0},
1145 {"cplocal", s_cplocal, 0},
252b5132 1146 {"cprestore", s_cprestore, 0},
6478892d 1147 {"cpreturn", s_cpreturn, 0},
741d6ea8
JM
1148 {"dtprelword", s_dtprelword, 0},
1149 {"dtpreldword", s_dtpreldword, 0},
6478892d 1150 {"gpvalue", s_gpvalue, 0},
252b5132 1151 {"gpword", s_gpword, 0},
10181a0d 1152 {"gpdword", s_gpdword, 0},
252b5132
RH
1153 {"cpadd", s_cpadd, 0},
1154 {"insn", s_insn, 0},
1155
beae10d5 1156 /* Relatively generic pseudo-ops that happen to be used on MIPS
252b5132 1157 chips. */
38a57ae7 1158 {"asciiz", stringer, 8 + 1},
252b5132
RH
1159 {"bss", s_change_sec, 'b'},
1160 {"err", s_err, 0},
1161 {"half", s_cons, 1},
1162 {"dword", s_cons, 3},
1163 {"weakext", s_mips_weakext, 0},
7c752c2a
TS
1164 {"origin", s_org, 0},
1165 {"repeat", s_rept, 0},
252b5132 1166
beae10d5 1167 /* These pseudo-ops are defined in read.c, but must be overridden
252b5132
RH
1168 here for one reason or another. */
1169 {"align", s_align, 0},
1170 {"byte", s_cons, 0},
1171 {"data", s_change_sec, 'd'},
1172 {"double", s_float_cons, 'd'},
1173 {"float", s_float_cons, 'f'},
1174 {"globl", s_mips_globl, 0},
1175 {"global", s_mips_globl, 0},
1176 {"hword", s_cons, 1},
1177 {"int", s_cons, 2},
1178 {"long", s_cons, 2},
1179 {"octa", s_cons, 4},
1180 {"quad", s_cons, 3},
cca86cc8 1181 {"section", s_change_section, 0},
252b5132
RH
1182 {"short", s_cons, 1},
1183 {"single", s_float_cons, 'f'},
1184 {"stabn", s_mips_stab, 'n'},
1185 {"text", s_change_sec, 't'},
1186 {"word", s_cons, 2},
add56521 1187
add56521 1188 { "extern", ecoff_directive_extern, 0},
add56521 1189
43841e91 1190 { NULL, NULL, 0 },
252b5132
RH
1191};
1192
e972090a
NC
1193static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1194{
beae10d5
KH
1195 /* These pseudo-ops should be defined by the object file format.
1196 However, a.out doesn't support them, so we have versions here. */
252b5132
RH
1197 {"aent", s_mips_ent, 1},
1198 {"bgnb", s_ignore, 0},
1199 {"end", s_mips_end, 0},
1200 {"endb", s_ignore, 0},
1201 {"ent", s_mips_ent, 0},
c5dd6aab 1202 {"file", s_mips_file, 0},
252b5132
RH
1203 {"fmask", s_mips_mask, 'F'},
1204 {"frame", s_mips_frame, 0},
c5dd6aab 1205 {"loc", s_mips_loc, 0},
252b5132
RH
1206 {"mask", s_mips_mask, 'R'},
1207 {"verstamp", s_ignore, 0},
43841e91 1208 { NULL, NULL, 0 },
252b5132
RH
1209};
1210
17a2f251 1211extern void pop_insert (const pseudo_typeS *);
252b5132
RH
1212
1213void
17a2f251 1214mips_pop_insert (void)
252b5132
RH
1215{
1216 pop_insert (mips_pseudo_table);
1217 if (! ECOFF_DEBUGGING)
1218 pop_insert (mips_nonecoff_pseudo_table);
1219}
1220\f
1221/* Symbols labelling the current insn. */
1222
e972090a
NC
1223struct insn_label_list
1224{
252b5132
RH
1225 struct insn_label_list *next;
1226 symbolS *label;
1227};
1228
252b5132 1229static struct insn_label_list *free_insn_labels;
742a56fe 1230#define label_list tc_segment_info_data.labels
252b5132 1231
17a2f251 1232static void mips_clear_insn_labels (void);
252b5132
RH
1233
1234static inline void
17a2f251 1235mips_clear_insn_labels (void)
252b5132
RH
1236{
1237 register struct insn_label_list **pl;
a8dbcb85 1238 segment_info_type *si;
252b5132 1239
a8dbcb85
TS
1240 if (now_seg)
1241 {
1242 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1243 ;
1244
1245 si = seg_info (now_seg);
1246 *pl = si->label_list;
1247 si->label_list = NULL;
1248 }
252b5132 1249}
a8dbcb85 1250
252b5132
RH
1251\f
1252static char *expr_end;
1253
1254/* Expressions which appear in instructions. These are set by
1255 mips_ip. */
1256
1257static expressionS imm_expr;
5f74bc13 1258static expressionS imm2_expr;
252b5132
RH
1259static expressionS offset_expr;
1260
1261/* Relocs associated with imm_expr and offset_expr. */
1262
f6688943
TS
1263static bfd_reloc_code_real_type imm_reloc[3]
1264 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1265static bfd_reloc_code_real_type offset_reloc[3]
1266 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 1267
252b5132
RH
1268/* These are set by mips16_ip if an explicit extension is used. */
1269
b34976b6 1270static bfd_boolean mips16_small, mips16_ext;
252b5132 1271
7ed4a06a 1272#ifdef OBJ_ELF
ecb4347a
DJ
1273/* The pdr segment for per procedure frame/regmask info. Not used for
1274 ECOFF debugging. */
252b5132
RH
1275
1276static segT pdr_seg;
7ed4a06a 1277#endif
252b5132 1278
e013f690
TS
1279/* The default target format to use. */
1280
1281const char *
17a2f251 1282mips_target_format (void)
e013f690
TS
1283{
1284 switch (OUTPUT_FLAVOR)
1285 {
e013f690
TS
1286 case bfd_target_ecoff_flavour:
1287 return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT;
1288 case bfd_target_coff_flavour:
1289 return "pe-mips";
1290 case bfd_target_elf_flavour:
0a44bf69
RS
1291#ifdef TE_VXWORKS
1292 if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI)
1293 return (target_big_endian
1294 ? "elf32-bigmips-vxworks"
1295 : "elf32-littlemips-vxworks");
1296#endif
e013f690 1297#ifdef TE_TMIPS
cfe86eaa 1298 /* This is traditional mips. */
e013f690 1299 return (target_big_endian
cfe86eaa
TS
1300 ? (HAVE_64BIT_OBJECTS
1301 ? "elf64-tradbigmips"
1302 : (HAVE_NEWABI
1303 ? "elf32-ntradbigmips" : "elf32-tradbigmips"))
1304 : (HAVE_64BIT_OBJECTS
1305 ? "elf64-tradlittlemips"
1306 : (HAVE_NEWABI
1307 ? "elf32-ntradlittlemips" : "elf32-tradlittlemips")));
e013f690
TS
1308#else
1309 return (target_big_endian
cfe86eaa
TS
1310 ? (HAVE_64BIT_OBJECTS
1311 ? "elf64-bigmips"
1312 : (HAVE_NEWABI
1313 ? "elf32-nbigmips" : "elf32-bigmips"))
1314 : (HAVE_64BIT_OBJECTS
1315 ? "elf64-littlemips"
1316 : (HAVE_NEWABI
1317 ? "elf32-nlittlemips" : "elf32-littlemips")));
e013f690
TS
1318#endif
1319 default:
1320 abort ();
1321 return NULL;
1322 }
1323}
1324
1e915849
RS
1325/* Return the length of instruction INSN. */
1326
1327static inline unsigned int
1328insn_length (const struct mips_cl_insn *insn)
1329{
1330 if (!mips_opts.mips16)
1331 return 4;
1332 return insn->mips16_absolute_jump_p || insn->use_extend ? 4 : 2;
1333}
1334
1335/* Initialise INSN from opcode entry MO. Leave its position unspecified. */
1336
1337static void
1338create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
1339{
1340 size_t i;
1341
1342 insn->insn_mo = mo;
1343 insn->use_extend = FALSE;
1344 insn->extend = 0;
1345 insn->insn_opcode = mo->match;
1346 insn->frag = NULL;
1347 insn->where = 0;
1348 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1349 insn->fixp[i] = NULL;
1350 insn->fixed_p = (mips_opts.noreorder > 0);
1351 insn->noreorder_p = (mips_opts.noreorder > 0);
1352 insn->mips16_absolute_jump_p = 0;
1353}
1354
742a56fe
RS
1355/* Record the current MIPS16 mode in now_seg. */
1356
1357static void
1358mips_record_mips16_mode (void)
1359{
1360 segment_info_type *si;
1361
1362 si = seg_info (now_seg);
1363 if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
1364 si->tc_segment_info_data.mips16 = mips_opts.mips16;
1365}
1366
1e915849
RS
1367/* Install INSN at the location specified by its "frag" and "where" fields. */
1368
1369static void
1370install_insn (const struct mips_cl_insn *insn)
1371{
1372 char *f = insn->frag->fr_literal + insn->where;
1373 if (!mips_opts.mips16)
1374 md_number_to_chars (f, insn->insn_opcode, 4);
1375 else if (insn->mips16_absolute_jump_p)
1376 {
1377 md_number_to_chars (f, insn->insn_opcode >> 16, 2);
1378 md_number_to_chars (f + 2, insn->insn_opcode & 0xffff, 2);
1379 }
1380 else
1381 {
1382 if (insn->use_extend)
1383 {
1384 md_number_to_chars (f, 0xf000 | insn->extend, 2);
1385 f += 2;
1386 }
1387 md_number_to_chars (f, insn->insn_opcode, 2);
1388 }
742a56fe 1389 mips_record_mips16_mode ();
1e915849
RS
1390}
1391
1392/* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
1393 and install the opcode in the new location. */
1394
1395static void
1396move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
1397{
1398 size_t i;
1399
1400 insn->frag = frag;
1401 insn->where = where;
1402 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1403 if (insn->fixp[i] != NULL)
1404 {
1405 insn->fixp[i]->fx_frag = frag;
1406 insn->fixp[i]->fx_where = where;
1407 }
1408 install_insn (insn);
1409}
1410
1411/* Add INSN to the end of the output. */
1412
1413static void
1414add_fixed_insn (struct mips_cl_insn *insn)
1415{
1416 char *f = frag_more (insn_length (insn));
1417 move_insn (insn, frag_now, f - frag_now->fr_literal);
1418}
1419
1420/* Start a variant frag and move INSN to the start of the variant part,
1421 marking it as fixed. The other arguments are as for frag_var. */
1422
1423static void
1424add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
1425 relax_substateT subtype, symbolS *symbol, offsetT offset)
1426{
1427 frag_grow (max_chars);
1428 move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
1429 insn->fixed_p = 1;
1430 frag_var (rs_machine_dependent, max_chars, var,
1431 subtype, symbol, offset, NULL);
1432}
1433
1434/* Insert N copies of INSN into the history buffer, starting at
1435 position FIRST. Neither FIRST nor N need to be clipped. */
1436
1437static void
1438insert_into_history (unsigned int first, unsigned int n,
1439 const struct mips_cl_insn *insn)
1440{
1441 if (mips_relax.sequence != 2)
1442 {
1443 unsigned int i;
1444
1445 for (i = ARRAY_SIZE (history); i-- > first;)
1446 if (i >= first + n)
1447 history[i] = history[i - n];
1448 else
1449 history[i] = *insn;
1450 }
1451}
1452
1453/* Emit a nop instruction, recording it in the history buffer. */
1454
1455static void
1456emit_nop (void)
1457{
1458 add_fixed_insn (NOP_INSN);
1459 insert_into_history (0, 1, NOP_INSN);
1460}
1461
71400594
RS
1462/* Initialize vr4120_conflicts. There is a bit of duplication here:
1463 the idea is to make it obvious at a glance that each errata is
1464 included. */
1465
1466static void
1467init_vr4120_conflicts (void)
1468{
1469#define CONFLICT(FIRST, SECOND) \
1470 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
1471
1472 /* Errata 21 - [D]DIV[U] after [D]MACC */
1473 CONFLICT (MACC, DIV);
1474 CONFLICT (DMACC, DIV);
1475
1476 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
1477 CONFLICT (DMULT, DMULT);
1478 CONFLICT (DMULT, DMACC);
1479 CONFLICT (DMACC, DMULT);
1480 CONFLICT (DMACC, DMACC);
1481
1482 /* Errata 24 - MT{LO,HI} after [D]MACC */
1483 CONFLICT (MACC, MTHILO);
1484 CONFLICT (DMACC, MTHILO);
1485
1486 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
1487 instruction is executed immediately after a MACC or DMACC
1488 instruction, the result of [either instruction] is incorrect." */
1489 CONFLICT (MACC, MULT);
1490 CONFLICT (MACC, DMULT);
1491 CONFLICT (DMACC, MULT);
1492 CONFLICT (DMACC, DMULT);
1493
1494 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
1495 executed immediately after a DMULT, DMULTU, DIV, DIVU,
1496 DDIV or DDIVU instruction, the result of the MACC or
1497 DMACC instruction is incorrect.". */
1498 CONFLICT (DMULT, MACC);
1499 CONFLICT (DMULT, DMACC);
1500 CONFLICT (DIV, MACC);
1501 CONFLICT (DIV, DMACC);
1502
1503#undef CONFLICT
1504}
1505
707bfff6
TS
1506struct regname {
1507 const char *name;
1508 unsigned int num;
1509};
1510
1511#define RTYPE_MASK 0x1ff00
1512#define RTYPE_NUM 0x00100
1513#define RTYPE_FPU 0x00200
1514#define RTYPE_FCC 0x00400
1515#define RTYPE_VEC 0x00800
1516#define RTYPE_GP 0x01000
1517#define RTYPE_CP0 0x02000
1518#define RTYPE_PC 0x04000
1519#define RTYPE_ACC 0x08000
1520#define RTYPE_CCC 0x10000
1521#define RNUM_MASK 0x000ff
1522#define RWARN 0x80000
1523
1524#define GENERIC_REGISTER_NUMBERS \
1525 {"$0", RTYPE_NUM | 0}, \
1526 {"$1", RTYPE_NUM | 1}, \
1527 {"$2", RTYPE_NUM | 2}, \
1528 {"$3", RTYPE_NUM | 3}, \
1529 {"$4", RTYPE_NUM | 4}, \
1530 {"$5", RTYPE_NUM | 5}, \
1531 {"$6", RTYPE_NUM | 6}, \
1532 {"$7", RTYPE_NUM | 7}, \
1533 {"$8", RTYPE_NUM | 8}, \
1534 {"$9", RTYPE_NUM | 9}, \
1535 {"$10", RTYPE_NUM | 10}, \
1536 {"$11", RTYPE_NUM | 11}, \
1537 {"$12", RTYPE_NUM | 12}, \
1538 {"$13", RTYPE_NUM | 13}, \
1539 {"$14", RTYPE_NUM | 14}, \
1540 {"$15", RTYPE_NUM | 15}, \
1541 {"$16", RTYPE_NUM | 16}, \
1542 {"$17", RTYPE_NUM | 17}, \
1543 {"$18", RTYPE_NUM | 18}, \
1544 {"$19", RTYPE_NUM | 19}, \
1545 {"$20", RTYPE_NUM | 20}, \
1546 {"$21", RTYPE_NUM | 21}, \
1547 {"$22", RTYPE_NUM | 22}, \
1548 {"$23", RTYPE_NUM | 23}, \
1549 {"$24", RTYPE_NUM | 24}, \
1550 {"$25", RTYPE_NUM | 25}, \
1551 {"$26", RTYPE_NUM | 26}, \
1552 {"$27", RTYPE_NUM | 27}, \
1553 {"$28", RTYPE_NUM | 28}, \
1554 {"$29", RTYPE_NUM | 29}, \
1555 {"$30", RTYPE_NUM | 30}, \
1556 {"$31", RTYPE_NUM | 31}
1557
1558#define FPU_REGISTER_NAMES \
1559 {"$f0", RTYPE_FPU | 0}, \
1560 {"$f1", RTYPE_FPU | 1}, \
1561 {"$f2", RTYPE_FPU | 2}, \
1562 {"$f3", RTYPE_FPU | 3}, \
1563 {"$f4", RTYPE_FPU | 4}, \
1564 {"$f5", RTYPE_FPU | 5}, \
1565 {"$f6", RTYPE_FPU | 6}, \
1566 {"$f7", RTYPE_FPU | 7}, \
1567 {"$f8", RTYPE_FPU | 8}, \
1568 {"$f9", RTYPE_FPU | 9}, \
1569 {"$f10", RTYPE_FPU | 10}, \
1570 {"$f11", RTYPE_FPU | 11}, \
1571 {"$f12", RTYPE_FPU | 12}, \
1572 {"$f13", RTYPE_FPU | 13}, \
1573 {"$f14", RTYPE_FPU | 14}, \
1574 {"$f15", RTYPE_FPU | 15}, \
1575 {"$f16", RTYPE_FPU | 16}, \
1576 {"$f17", RTYPE_FPU | 17}, \
1577 {"$f18", RTYPE_FPU | 18}, \
1578 {"$f19", RTYPE_FPU | 19}, \
1579 {"$f20", RTYPE_FPU | 20}, \
1580 {"$f21", RTYPE_FPU | 21}, \
1581 {"$f22", RTYPE_FPU | 22}, \
1582 {"$f23", RTYPE_FPU | 23}, \
1583 {"$f24", RTYPE_FPU | 24}, \
1584 {"$f25", RTYPE_FPU | 25}, \
1585 {"$f26", RTYPE_FPU | 26}, \
1586 {"$f27", RTYPE_FPU | 27}, \
1587 {"$f28", RTYPE_FPU | 28}, \
1588 {"$f29", RTYPE_FPU | 29}, \
1589 {"$f30", RTYPE_FPU | 30}, \
1590 {"$f31", RTYPE_FPU | 31}
1591
1592#define FPU_CONDITION_CODE_NAMES \
1593 {"$fcc0", RTYPE_FCC | 0}, \
1594 {"$fcc1", RTYPE_FCC | 1}, \
1595 {"$fcc2", RTYPE_FCC | 2}, \
1596 {"$fcc3", RTYPE_FCC | 3}, \
1597 {"$fcc4", RTYPE_FCC | 4}, \
1598 {"$fcc5", RTYPE_FCC | 5}, \
1599 {"$fcc6", RTYPE_FCC | 6}, \
1600 {"$fcc7", RTYPE_FCC | 7}
1601
1602#define COPROC_CONDITION_CODE_NAMES \
1603 {"$cc0", RTYPE_FCC | RTYPE_CCC | 0}, \
1604 {"$cc1", RTYPE_FCC | RTYPE_CCC | 1}, \
1605 {"$cc2", RTYPE_FCC | RTYPE_CCC | 2}, \
1606 {"$cc3", RTYPE_FCC | RTYPE_CCC | 3}, \
1607 {"$cc4", RTYPE_FCC | RTYPE_CCC | 4}, \
1608 {"$cc5", RTYPE_FCC | RTYPE_CCC | 5}, \
1609 {"$cc6", RTYPE_FCC | RTYPE_CCC | 6}, \
1610 {"$cc7", RTYPE_FCC | RTYPE_CCC | 7}
1611
1612#define N32N64_SYMBOLIC_REGISTER_NAMES \
1613 {"$a4", RTYPE_GP | 8}, \
1614 {"$a5", RTYPE_GP | 9}, \
1615 {"$a6", RTYPE_GP | 10}, \
1616 {"$a7", RTYPE_GP | 11}, \
1617 {"$ta0", RTYPE_GP | 8}, /* alias for $a4 */ \
1618 {"$ta1", RTYPE_GP | 9}, /* alias for $a5 */ \
1619 {"$ta2", RTYPE_GP | 10}, /* alias for $a6 */ \
1620 {"$ta3", RTYPE_GP | 11}, /* alias for $a7 */ \
1621 {"$t0", RTYPE_GP | 12}, \
1622 {"$t1", RTYPE_GP | 13}, \
1623 {"$t2", RTYPE_GP | 14}, \
1624 {"$t3", RTYPE_GP | 15}
1625
1626#define O32_SYMBOLIC_REGISTER_NAMES \
1627 {"$t0", RTYPE_GP | 8}, \
1628 {"$t1", RTYPE_GP | 9}, \
1629 {"$t2", RTYPE_GP | 10}, \
1630 {"$t3", RTYPE_GP | 11}, \
1631 {"$t4", RTYPE_GP | 12}, \
1632 {"$t5", RTYPE_GP | 13}, \
1633 {"$t6", RTYPE_GP | 14}, \
1634 {"$t7", RTYPE_GP | 15}, \
1635 {"$ta0", RTYPE_GP | 12}, /* alias for $t4 */ \
1636 {"$ta1", RTYPE_GP | 13}, /* alias for $t5 */ \
1637 {"$ta2", RTYPE_GP | 14}, /* alias for $t6 */ \
1638 {"$ta3", RTYPE_GP | 15} /* alias for $t7 */
1639
1640/* Remaining symbolic register names */
1641#define SYMBOLIC_REGISTER_NAMES \
1642 {"$zero", RTYPE_GP | 0}, \
1643 {"$at", RTYPE_GP | 1}, \
1644 {"$AT", RTYPE_GP | 1}, \
1645 {"$v0", RTYPE_GP | 2}, \
1646 {"$v1", RTYPE_GP | 3}, \
1647 {"$a0", RTYPE_GP | 4}, \
1648 {"$a1", RTYPE_GP | 5}, \
1649 {"$a2", RTYPE_GP | 6}, \
1650 {"$a3", RTYPE_GP | 7}, \
1651 {"$s0", RTYPE_GP | 16}, \
1652 {"$s1", RTYPE_GP | 17}, \
1653 {"$s2", RTYPE_GP | 18}, \
1654 {"$s3", RTYPE_GP | 19}, \
1655 {"$s4", RTYPE_GP | 20}, \
1656 {"$s5", RTYPE_GP | 21}, \
1657 {"$s6", RTYPE_GP | 22}, \
1658 {"$s7", RTYPE_GP | 23}, \
1659 {"$t8", RTYPE_GP | 24}, \
1660 {"$t9", RTYPE_GP | 25}, \
1661 {"$k0", RTYPE_GP | 26}, \
1662 {"$kt0", RTYPE_GP | 26}, \
1663 {"$k1", RTYPE_GP | 27}, \
1664 {"$kt1", RTYPE_GP | 27}, \
1665 {"$gp", RTYPE_GP | 28}, \
1666 {"$sp", RTYPE_GP | 29}, \
1667 {"$s8", RTYPE_GP | 30}, \
1668 {"$fp", RTYPE_GP | 30}, \
1669 {"$ra", RTYPE_GP | 31}
1670
1671#define MIPS16_SPECIAL_REGISTER_NAMES \
1672 {"$pc", RTYPE_PC | 0}
1673
1674#define MDMX_VECTOR_REGISTER_NAMES \
1675 /* {"$v0", RTYPE_VEC | 0}, clash with REG 2 above */ \
1676 /* {"$v1", RTYPE_VEC | 1}, clash with REG 3 above */ \
1677 {"$v2", RTYPE_VEC | 2}, \
1678 {"$v3", RTYPE_VEC | 3}, \
1679 {"$v4", RTYPE_VEC | 4}, \
1680 {"$v5", RTYPE_VEC | 5}, \
1681 {"$v6", RTYPE_VEC | 6}, \
1682 {"$v7", RTYPE_VEC | 7}, \
1683 {"$v8", RTYPE_VEC | 8}, \
1684 {"$v9", RTYPE_VEC | 9}, \
1685 {"$v10", RTYPE_VEC | 10}, \
1686 {"$v11", RTYPE_VEC | 11}, \
1687 {"$v12", RTYPE_VEC | 12}, \
1688 {"$v13", RTYPE_VEC | 13}, \
1689 {"$v14", RTYPE_VEC | 14}, \
1690 {"$v15", RTYPE_VEC | 15}, \
1691 {"$v16", RTYPE_VEC | 16}, \
1692 {"$v17", RTYPE_VEC | 17}, \
1693 {"$v18", RTYPE_VEC | 18}, \
1694 {"$v19", RTYPE_VEC | 19}, \
1695 {"$v20", RTYPE_VEC | 20}, \
1696 {"$v21", RTYPE_VEC | 21}, \
1697 {"$v22", RTYPE_VEC | 22}, \
1698 {"$v23", RTYPE_VEC | 23}, \
1699 {"$v24", RTYPE_VEC | 24}, \
1700 {"$v25", RTYPE_VEC | 25}, \
1701 {"$v26", RTYPE_VEC | 26}, \
1702 {"$v27", RTYPE_VEC | 27}, \
1703 {"$v28", RTYPE_VEC | 28}, \
1704 {"$v29", RTYPE_VEC | 29}, \
1705 {"$v30", RTYPE_VEC | 30}, \
1706 {"$v31", RTYPE_VEC | 31}
1707
1708#define MIPS_DSP_ACCUMULATOR_NAMES \
1709 {"$ac0", RTYPE_ACC | 0}, \
1710 {"$ac1", RTYPE_ACC | 1}, \
1711 {"$ac2", RTYPE_ACC | 2}, \
1712 {"$ac3", RTYPE_ACC | 3}
1713
1714static const struct regname reg_names[] = {
1715 GENERIC_REGISTER_NUMBERS,
1716 FPU_REGISTER_NAMES,
1717 FPU_CONDITION_CODE_NAMES,
1718 COPROC_CONDITION_CODE_NAMES,
1719
1720 /* The $txx registers depends on the abi,
1721 these will be added later into the symbol table from
1722 one of the tables below once mips_abi is set after
1723 parsing of arguments from the command line. */
1724 SYMBOLIC_REGISTER_NAMES,
1725
1726 MIPS16_SPECIAL_REGISTER_NAMES,
1727 MDMX_VECTOR_REGISTER_NAMES,
1728 MIPS_DSP_ACCUMULATOR_NAMES,
1729 {0, 0}
1730};
1731
1732static const struct regname reg_names_o32[] = {
1733 O32_SYMBOLIC_REGISTER_NAMES,
1734 {0, 0}
1735};
1736
1737static const struct regname reg_names_n32n64[] = {
1738 N32N64_SYMBOLIC_REGISTER_NAMES,
1739 {0, 0}
1740};
1741
1742static int
1743reg_lookup (char **s, unsigned int types, unsigned int *regnop)
1744{
1745 symbolS *symbolP;
1746 char *e;
1747 char save_c;
1748 int reg = -1;
1749
1750 /* Find end of name. */
1751 e = *s;
1752 if (is_name_beginner (*e))
1753 ++e;
1754 while (is_part_of_name (*e))
1755 ++e;
1756
1757 /* Terminate name. */
1758 save_c = *e;
1759 *e = '\0';
1760
1761 /* Look for a register symbol. */
1762 if ((symbolP = symbol_find (*s)) && S_GET_SEGMENT (symbolP) == reg_section)
1763 {
1764 int r = S_GET_VALUE (symbolP);
1765 if (r & types)
1766 reg = r & RNUM_MASK;
1767 else if ((types & RTYPE_VEC) && (r & ~1) == (RTYPE_GP | 2))
1768 /* Convert GP reg $v0/1 to MDMX reg $v0/1! */
1769 reg = (r & RNUM_MASK) - 2;
1770 }
1771 /* Else see if this is a register defined in an itbl entry. */
1772 else if ((types & RTYPE_GP) && itbl_have_entries)
1773 {
1774 char *n = *s;
1775 unsigned long r;
1776
1777 if (*n == '$')
1778 ++n;
1779 if (itbl_get_reg_val (n, &r))
1780 reg = r & RNUM_MASK;
1781 }
1782
1783 /* Advance to next token if a register was recognised. */
1784 if (reg >= 0)
1785 *s = e;
1786 else if (types & RWARN)
1787 as_warn ("Unrecognized register name `%s'", *s);
1788
1789 *e = save_c;
1790 if (regnop)
1791 *regnop = reg;
1792 return reg >= 0;
1793}
1794
6a32d874
CM
1795#define INSN_ERET 0x42000018
1796#define INSN_DERET 0x4200001f
1797
1798/* Implement the ERET/DERET Errata for MIPS 24k.
1799
1800 If an ERET/DERET is encountered in a noreorder block,
1801 warn if the ERET/DERET is followed by a branch instruction.
1802 Also warn if the ERET/DERET is the last instruction in the
1803 noreorder block.
1804
1805 IF an ERET/DERET is in a reorder block and is followed by a
1806 branch instruction, insert a nop. */
1807
1808static void
1809check_for_24k_errata (struct mips_cl_insn *insn, int eret_ndx)
1810{
1811 bfd_boolean next_insn_is_branch = FALSE;
1812
1813 /* eret_ndx will be -1 for the last instruction in a section
1814 and the ERET/DERET will be in insn, not history. */
1815 if (insn
1816 && eret_ndx == -1
1817 && (insn->insn_opcode == INSN_ERET
1818 || insn->insn_opcode == INSN_DERET)
1819 && insn->noreorder_p)
1820 {
1821 as_warn (_("ERET and DERET must be followed by a NOP on the 24K."));
1822 return;
1823 }
1824
1825 if (history[eret_ndx].insn_opcode != INSN_ERET
1826 && history[eret_ndx].insn_opcode != INSN_DERET)
1827 return;
1828
1829 if (!insn)
1830 {
1831 if (history[eret_ndx].noreorder_p)
1832 as_warn (_("ERET and DERET must be followed by a NOP on the 24K."));
1833 return;
1834 }
1835
1836 next_insn_is_branch = ((insn->insn_opcode == INSN_ERET)
1837 || (insn->insn_opcode == INSN_DERET)
1838 || (insn->insn_mo->pinfo
1839 & (INSN_UNCOND_BRANCH_DELAY
1840 | INSN_COND_BRANCH_DELAY
1841 | INSN_COND_BRANCH_LIKELY)));
1842
1843 if (next_insn_is_branch && history[eret_ndx].noreorder_p)
1844 {
1845 as_warn (_("ERET and DERET must be followed by a NOP on the 24K."));
1846 return;
1847 }
1848
1849 /* Emit nop if the next instruction is a branch. */
1850 if (next_insn_is_branch)
1851 {
1852 long nop_where, br_where;
1853 struct frag *nop_frag, *br_frag;
1854 struct mips_cl_insn br_insn, nop_insn;
1855
1856 emit_nop ();
1857
1858 nop_insn = history[eret_ndx - 1];
1859 nop_frag = history[eret_ndx - 1].frag;
1860 nop_where = history[eret_ndx - 1].where;
1861
1862 br_insn = history[eret_ndx];
1863 br_frag = history[eret_ndx].frag;
1864 br_where = history[eret_ndx].where;
1865
1866 move_insn (&nop_insn, br_frag, br_where);
1867 move_insn (&br_insn, nop_frag, nop_where);
1868
1869 history[eret_ndx-1] = br_insn;
1870 history[eret_ndx] = nop_insn;
1871 }
1872}
1873
037b32b9
AN
1874/* Return TRUE if opcode MO is valid on the currently selected ISA and
1875 architecture. If EXPANSIONP is TRUE then this check is done while
1876 expanding a macro. Use is_opcode_valid_16 for MIPS16 opcodes. */
1877
1878static bfd_boolean
1879is_opcode_valid (const struct mips_opcode *mo, bfd_boolean expansionp)
1880{
1881 int isa = mips_opts.isa;
1882 int fp_s, fp_d;
1883
1884 if (mips_opts.ase_mdmx)
1885 isa |= INSN_MDMX;
1886 if (mips_opts.ase_dsp)
1887 isa |= INSN_DSP;
1888 if (mips_opts.ase_dsp && ISA_SUPPORTS_DSP64_ASE)
1889 isa |= INSN_DSP64;
1890 if (mips_opts.ase_dspr2)
1891 isa |= INSN_DSPR2;
1892 if (mips_opts.ase_mt)
1893 isa |= INSN_MT;
1894 if (mips_opts.ase_mips3d)
1895 isa |= INSN_MIPS3D;
1896 if (mips_opts.ase_smartmips)
1897 isa |= INSN_SMARTMIPS;
1898
1899 /* For user code we don't check for mips_opts.mips16 since we want
1900 to allow jalx if -mips16 was specified on the command line. */
1901 if (expansionp ? mips_opts.mips16 : file_ase_mips16)
1902 isa |= INSN_MIPS16;
1903
b19e8a9b
AN
1904 /* Don't accept instructions based on the ISA if the CPU does not implement
1905 all the coprocessor insns. */
1906 if (NO_ISA_COP (mips_opts.arch)
1907 && COP_INSN (mo->pinfo))
1908 isa = 0;
1909
037b32b9
AN
1910 if (!OPCODE_IS_MEMBER (mo, isa, mips_opts.arch))
1911 return FALSE;
1912
1913 /* Check whether the instruction or macro requires single-precision or
1914 double-precision floating-point support. Note that this information is
1915 stored differently in the opcode table for insns and macros. */
1916 if (mo->pinfo == INSN_MACRO)
1917 {
1918 fp_s = mo->pinfo2 & INSN2_M_FP_S;
1919 fp_d = mo->pinfo2 & INSN2_M_FP_D;
1920 }
1921 else
1922 {
1923 fp_s = mo->pinfo & FP_S;
1924 fp_d = mo->pinfo & FP_D;
1925 }
1926
1927 if (fp_d && (mips_opts.soft_float || mips_opts.single_float))
1928 return FALSE;
1929
1930 if (fp_s && mips_opts.soft_float)
1931 return FALSE;
1932
1933 return TRUE;
1934}
1935
1936/* Return TRUE if the MIPS16 opcode MO is valid on the currently
1937 selected ISA and architecture. */
1938
1939static bfd_boolean
1940is_opcode_valid_16 (const struct mips_opcode *mo)
1941{
1942 return OPCODE_IS_MEMBER (mo, mips_opts.isa, mips_opts.arch) ? TRUE : FALSE;
1943}
1944
707bfff6
TS
1945/* This function is called once, at assembler startup time. It should set up
1946 all the tables, etc. that the MD part of the assembler will need. */
156c2f8b 1947
252b5132 1948void
17a2f251 1949md_begin (void)
252b5132 1950{
3994f87e 1951 const char *retval = NULL;
156c2f8b 1952 int i = 0;
252b5132 1953 int broken = 0;
1f25f5d3 1954
0a44bf69
RS
1955 if (mips_pic != NO_PIC)
1956 {
1957 if (g_switch_seen && g_switch_value != 0)
1958 as_bad (_("-G may not be used in position-independent code"));
1959 g_switch_value = 0;
1960 }
1961
fef14a42 1962 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
252b5132
RH
1963 as_warn (_("Could not set architecture and machine"));
1964
252b5132
RH
1965 op_hash = hash_new ();
1966
1967 for (i = 0; i < NUMOPCODES;)
1968 {
1969 const char *name = mips_opcodes[i].name;
1970
17a2f251 1971 retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
252b5132
RH
1972 if (retval != NULL)
1973 {
1974 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
1975 mips_opcodes[i].name, retval);
1976 /* Probably a memory allocation problem? Give up now. */
1977 as_fatal (_("Broken assembler. No assembly attempted."));
1978 }
1979 do
1980 {
1981 if (mips_opcodes[i].pinfo != INSN_MACRO)
1982 {
1983 if (!validate_mips_insn (&mips_opcodes[i]))
1984 broken = 1;
1e915849
RS
1985 if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1986 {
1987 create_insn (&nop_insn, mips_opcodes + i);
1988 nop_insn.fixed_p = 1;
1989 }
252b5132
RH
1990 }
1991 ++i;
1992 }
1993 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
1994 }
1995
1996 mips16_op_hash = hash_new ();
1997
1998 i = 0;
1999 while (i < bfd_mips16_num_opcodes)
2000 {
2001 const char *name = mips16_opcodes[i].name;
2002
17a2f251 2003 retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
252b5132
RH
2004 if (retval != NULL)
2005 as_fatal (_("internal: can't hash `%s': %s"),
2006 mips16_opcodes[i].name, retval);
2007 do
2008 {
2009 if (mips16_opcodes[i].pinfo != INSN_MACRO
2010 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
2011 != mips16_opcodes[i].match))
2012 {
2013 fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
2014 mips16_opcodes[i].name, mips16_opcodes[i].args);
2015 broken = 1;
2016 }
1e915849
RS
2017 if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
2018 {
2019 create_insn (&mips16_nop_insn, mips16_opcodes + i);
2020 mips16_nop_insn.fixed_p = 1;
2021 }
252b5132
RH
2022 ++i;
2023 }
2024 while (i < bfd_mips16_num_opcodes
2025 && strcmp (mips16_opcodes[i].name, name) == 0);
2026 }
2027
2028 if (broken)
2029 as_fatal (_("Broken assembler. No assembly attempted."));
2030
2031 /* We add all the general register names to the symbol table. This
2032 helps us detect invalid uses of them. */
707bfff6
TS
2033 for (i = 0; reg_names[i].name; i++)
2034 symbol_table_insert (symbol_new (reg_names[i].name, reg_section,
8fc4ee9b 2035 reg_names[i].num, /* & RNUM_MASK, */
707bfff6
TS
2036 &zero_address_frag));
2037 if (HAVE_NEWABI)
2038 for (i = 0; reg_names_n32n64[i].name; i++)
2039 symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section,
8fc4ee9b 2040 reg_names_n32n64[i].num, /* & RNUM_MASK, */
252b5132 2041 &zero_address_frag));
707bfff6
TS
2042 else
2043 for (i = 0; reg_names_o32[i].name; i++)
2044 symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section,
8fc4ee9b 2045 reg_names_o32[i].num, /* & RNUM_MASK, */
6047c971 2046 &zero_address_frag));
6047c971 2047
7d10b47d 2048 mips_no_prev_insn ();
252b5132
RH
2049
2050 mips_gprmask = 0;
2051 mips_cprmask[0] = 0;
2052 mips_cprmask[1] = 0;
2053 mips_cprmask[2] = 0;
2054 mips_cprmask[3] = 0;
2055
2056 /* set the default alignment for the text section (2**2) */
2057 record_alignment (text_section, 2);
2058
4d0d148d 2059 bfd_set_gp_size (stdoutput, g_switch_value);
252b5132 2060
707bfff6 2061#ifdef OBJ_ELF
f43abd2b 2062 if (IS_ELF)
252b5132 2063 {
0a44bf69
RS
2064 /* On a native system other than VxWorks, sections must be aligned
2065 to 16 byte boundaries. When configured for an embedded ELF
2066 target, we don't bother. */
c41e87e3
CF
2067 if (strncmp (TARGET_OS, "elf", 3) != 0
2068 && strncmp (TARGET_OS, "vxworks", 7) != 0)
252b5132
RH
2069 {
2070 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
2071 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
2072 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
2073 }
2074
2075 /* Create a .reginfo section for register masks and a .mdebug
2076 section for debugging information. */
2077 {
2078 segT seg;
2079 subsegT subseg;
2080 flagword flags;
2081 segT sec;
2082
2083 seg = now_seg;
2084 subseg = now_subseg;
2085
2086 /* The ABI says this section should be loaded so that the
2087 running program can access it. However, we don't load it
2088 if we are configured for an embedded target */
2089 flags = SEC_READONLY | SEC_DATA;
c41e87e3 2090 if (strncmp (TARGET_OS, "elf", 3) != 0)
252b5132
RH
2091 flags |= SEC_ALLOC | SEC_LOAD;
2092
316f5878 2093 if (mips_abi != N64_ABI)
252b5132
RH
2094 {
2095 sec = subseg_new (".reginfo", (subsegT) 0);
2096
195325d2
TS
2097 bfd_set_section_flags (stdoutput, sec, flags);
2098 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
bdaaa2e1 2099
252b5132 2100 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
252b5132
RH
2101 }
2102 else
2103 {
2104 /* The 64-bit ABI uses a .MIPS.options section rather than
2105 .reginfo section. */
2106 sec = subseg_new (".MIPS.options", (subsegT) 0);
195325d2
TS
2107 bfd_set_section_flags (stdoutput, sec, flags);
2108 bfd_set_section_alignment (stdoutput, sec, 3);
252b5132 2109
252b5132
RH
2110 /* Set up the option header. */
2111 {
2112 Elf_Internal_Options opthdr;
2113 char *f;
2114
2115 opthdr.kind = ODK_REGINFO;
2116 opthdr.size = (sizeof (Elf_External_Options)
2117 + sizeof (Elf64_External_RegInfo));
2118 opthdr.section = 0;
2119 opthdr.info = 0;
2120 f = frag_more (sizeof (Elf_External_Options));
2121 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
2122 (Elf_External_Options *) f);
2123
2124 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
2125 }
252b5132
RH
2126 }
2127
2128 if (ECOFF_DEBUGGING)
2129 {
2130 sec = subseg_new (".mdebug", (subsegT) 0);
2131 (void) bfd_set_section_flags (stdoutput, sec,
2132 SEC_HAS_CONTENTS | SEC_READONLY);
2133 (void) bfd_set_section_alignment (stdoutput, sec, 2);
2134 }
f43abd2b 2135 else if (mips_flag_pdr)
ecb4347a
DJ
2136 {
2137 pdr_seg = subseg_new (".pdr", (subsegT) 0);
2138 (void) bfd_set_section_flags (stdoutput, pdr_seg,
2139 SEC_READONLY | SEC_RELOC
2140 | SEC_DEBUGGING);
2141 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
2142 }
252b5132
RH
2143
2144 subseg_set (seg, subseg);
2145 }
2146 }
707bfff6 2147#endif /* OBJ_ELF */
252b5132
RH
2148
2149 if (! ECOFF_DEBUGGING)
2150 md_obj_begin ();
71400594
RS
2151
2152 if (mips_fix_vr4120)
2153 init_vr4120_conflicts ();
252b5132
RH
2154}
2155
2156void
17a2f251 2157md_mips_end (void)
252b5132 2158{
6a32d874
CM
2159 if (mips_fix_24k)
2160 check_for_24k_errata ((struct mips_cl_insn *) &history[0], -1);
2161
252b5132
RH
2162 if (! ECOFF_DEBUGGING)
2163 md_obj_end ();
2164}
2165
2166void
17a2f251 2167md_assemble (char *str)
252b5132
RH
2168{
2169 struct mips_cl_insn insn;
f6688943
TS
2170 bfd_reloc_code_real_type unused_reloc[3]
2171 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132
RH
2172
2173 imm_expr.X_op = O_absent;
5f74bc13 2174 imm2_expr.X_op = O_absent;
252b5132 2175 offset_expr.X_op = O_absent;
f6688943
TS
2176 imm_reloc[0] = BFD_RELOC_UNUSED;
2177 imm_reloc[1] = BFD_RELOC_UNUSED;
2178 imm_reloc[2] = BFD_RELOC_UNUSED;
2179 offset_reloc[0] = BFD_RELOC_UNUSED;
2180 offset_reloc[1] = BFD_RELOC_UNUSED;
2181 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132
RH
2182
2183 if (mips_opts.mips16)
2184 mips16_ip (str, &insn);
2185 else
2186 {
2187 mips_ip (str, &insn);
beae10d5
KH
2188 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
2189 str, insn.insn_opcode));
252b5132
RH
2190 }
2191
2192 if (insn_error)
2193 {
2194 as_bad ("%s `%s'", insn_error, str);
2195 return;
2196 }
2197
2198 if (insn.insn_mo->pinfo == INSN_MACRO)
2199 {
584892a6 2200 macro_start ();
252b5132
RH
2201 if (mips_opts.mips16)
2202 mips16_macro (&insn);
2203 else
2204 macro (&insn);
584892a6 2205 macro_end ();
252b5132
RH
2206 }
2207 else
2208 {
2209 if (imm_expr.X_op != O_absent)
4d7206a2 2210 append_insn (&insn, &imm_expr, imm_reloc);
252b5132 2211 else if (offset_expr.X_op != O_absent)
4d7206a2 2212 append_insn (&insn, &offset_expr, offset_reloc);
252b5132 2213 else
4d7206a2 2214 append_insn (&insn, NULL, unused_reloc);
252b5132
RH
2215 }
2216}
2217
738e5348
RS
2218/* Convenience functions for abstracting away the differences between
2219 MIPS16 and non-MIPS16 relocations. */
2220
2221static inline bfd_boolean
2222mips16_reloc_p (bfd_reloc_code_real_type reloc)
2223{
2224 switch (reloc)
2225 {
2226 case BFD_RELOC_MIPS16_JMP:
2227 case BFD_RELOC_MIPS16_GPREL:
2228 case BFD_RELOC_MIPS16_GOT16:
2229 case BFD_RELOC_MIPS16_CALL16:
2230 case BFD_RELOC_MIPS16_HI16_S:
2231 case BFD_RELOC_MIPS16_HI16:
2232 case BFD_RELOC_MIPS16_LO16:
2233 return TRUE;
2234
2235 default:
2236 return FALSE;
2237 }
2238}
2239
2240static inline bfd_boolean
2241got16_reloc_p (bfd_reloc_code_real_type reloc)
2242{
2243 return reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16;
2244}
2245
2246static inline bfd_boolean
2247hi16_reloc_p (bfd_reloc_code_real_type reloc)
2248{
2249 return reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S;
2250}
2251
2252static inline bfd_boolean
2253lo16_reloc_p (bfd_reloc_code_real_type reloc)
2254{
2255 return reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16;
2256}
2257
5919d012 2258/* Return true if the given relocation might need a matching %lo().
0a44bf69
RS
2259 This is only "might" because SVR4 R_MIPS_GOT16 relocations only
2260 need a matching %lo() when applied to local symbols. */
5919d012
RS
2261
2262static inline bfd_boolean
17a2f251 2263reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
5919d012 2264{
3b91255e 2265 return (HAVE_IN_PLACE_ADDENDS
738e5348 2266 && (hi16_reloc_p (reloc)
0a44bf69
RS
2267 /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
2268 all GOT16 relocations evaluate to "G". */
738e5348
RS
2269 || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC)));
2270}
2271
2272/* Return the type of %lo() reloc needed by RELOC, given that
2273 reloc_needs_lo_p. */
2274
2275static inline bfd_reloc_code_real_type
2276matching_lo_reloc (bfd_reloc_code_real_type reloc)
2277{
2278 return mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16 : BFD_RELOC_LO16;
5919d012
RS
2279}
2280
2281/* Return true if the given fixup is followed by a matching R_MIPS_LO16
2282 relocation. */
2283
2284static inline bfd_boolean
17a2f251 2285fixup_has_matching_lo_p (fixS *fixp)
5919d012
RS
2286{
2287 return (fixp->fx_next != NULL
738e5348 2288 && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type)
5919d012
RS
2289 && fixp->fx_addsy == fixp->fx_next->fx_addsy
2290 && fixp->fx_offset == fixp->fx_next->fx_offset);
2291}
2292
252b5132
RH
2293/* See whether instruction IP reads register REG. CLASS is the type
2294 of register. */
2295
2296static int
71400594 2297insn_uses_reg (const struct mips_cl_insn *ip, unsigned int reg,
17a2f251 2298 enum mips_regclass class)
252b5132
RH
2299{
2300 if (class == MIPS16_REG)
2301 {
2302 assert (mips_opts.mips16);
2303 reg = mips16_to_32_reg_map[reg];
2304 class = MIPS_GR_REG;
2305 }
2306
85b51719
TS
2307 /* Don't report on general register ZERO, since it never changes. */
2308 if (class == MIPS_GR_REG && reg == ZERO)
252b5132
RH
2309 return 0;
2310
2311 if (class == MIPS_FP_REG)
2312 {
2313 assert (! mips_opts.mips16);
2314 /* If we are called with either $f0 or $f1, we must check $f0.
2315 This is not optimal, because it will introduce an unnecessary
2316 NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would
2317 need to distinguish reading both $f0 and $f1 or just one of
2318 them. Note that we don't have to check the other way,
2319 because there is no instruction that sets both $f0 and $f1
2320 and requires a delay. */
2321 if ((ip->insn_mo->pinfo & INSN_READ_FPR_S)
bf12938e 2322 && ((EXTRACT_OPERAND (FS, *ip) & ~(unsigned) 1)
252b5132
RH
2323 == (reg &~ (unsigned) 1)))
2324 return 1;
2325 if ((ip->insn_mo->pinfo & INSN_READ_FPR_T)
bf12938e 2326 && ((EXTRACT_OPERAND (FT, *ip) & ~(unsigned) 1)
252b5132
RH
2327 == (reg &~ (unsigned) 1)))
2328 return 1;
2329 }
2330 else if (! mips_opts.mips16)
2331 {
2332 if ((ip->insn_mo->pinfo & INSN_READ_GPR_S)
bf12938e 2333 && EXTRACT_OPERAND (RS, *ip) == reg)
252b5132
RH
2334 return 1;
2335 if ((ip->insn_mo->pinfo & INSN_READ_GPR_T)
bf12938e 2336 && EXTRACT_OPERAND (RT, *ip) == reg)
252b5132
RH
2337 return 1;
2338 }
2339 else
2340 {
2341 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X)
bf12938e 2342 && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)] == reg)
252b5132
RH
2343 return 1;
2344 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y)
bf12938e 2345 && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)] == reg)
252b5132
RH
2346 return 1;
2347 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z)
bf12938e 2348 && (mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]
252b5132
RH
2349 == reg))
2350 return 1;
2351 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_T) && reg == TREG)
2352 return 1;
2353 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_SP) && reg == SP)
2354 return 1;
2355 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_31) && reg == RA)
2356 return 1;
2357 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_GPR_X)
bf12938e 2358 && MIPS16_EXTRACT_OPERAND (REGR32, *ip) == reg)
252b5132
RH
2359 return 1;
2360 }
2361
2362 return 0;
2363}
2364
2365/* This function returns true if modifying a register requires a
2366 delay. */
2367
2368static int
17a2f251 2369reg_needs_delay (unsigned int reg)
252b5132
RH
2370{
2371 unsigned long prev_pinfo;
2372
47e39b9d 2373 prev_pinfo = history[0].insn_mo->pinfo;
252b5132 2374 if (! mips_opts.noreorder
81912461
ILT
2375 && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
2376 && ! gpr_interlocks)
2377 || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
2378 && ! cop_interlocks)))
252b5132 2379 {
81912461
ILT
2380 /* A load from a coprocessor or from memory. All load delays
2381 delay the use of general register rt for one instruction. */
bdaaa2e1 2382 /* Itbl support may require additional care here. */
252b5132 2383 know (prev_pinfo & INSN_WRITE_GPR_T);
bf12938e 2384 if (reg == EXTRACT_OPERAND (RT, history[0]))
252b5132
RH
2385 return 1;
2386 }
2387
2388 return 0;
2389}
2390
404a8071
RS
2391/* Move all labels in insn_labels to the current insertion point. */
2392
2393static void
2394mips_move_labels (void)
2395{
a8dbcb85 2396 segment_info_type *si = seg_info (now_seg);
404a8071
RS
2397 struct insn_label_list *l;
2398 valueT val;
2399
a8dbcb85 2400 for (l = si->label_list; l != NULL; l = l->next)
404a8071
RS
2401 {
2402 assert (S_GET_SEGMENT (l->label) == now_seg);
2403 symbol_set_frag (l->label, frag_now);
2404 val = (valueT) frag_now_fix ();
2405 /* mips16 text labels are stored as odd. */
2406 if (mips_opts.mips16)
2407 ++val;
2408 S_SET_VALUE (l->label, val);
2409 }
2410}
2411
5f0fe04b
TS
2412static bfd_boolean
2413s_is_linkonce (symbolS *sym, segT from_seg)
2414{
2415 bfd_boolean linkonce = FALSE;
2416 segT symseg = S_GET_SEGMENT (sym);
2417
2418 if (symseg != from_seg && !S_IS_LOCAL (sym))
2419 {
2420 if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE))
2421 linkonce = TRUE;
2422#ifdef OBJ_ELF
2423 /* The GNU toolchain uses an extension for ELF: a section
2424 beginning with the magic string .gnu.linkonce is a
2425 linkonce section. */
2426 if (strncmp (segment_name (symseg), ".gnu.linkonce",
2427 sizeof ".gnu.linkonce" - 1) == 0)
2428 linkonce = TRUE;
2429#endif
2430 }
2431 return linkonce;
2432}
2433
252b5132
RH
2434/* Mark instruction labels in mips16 mode. This permits the linker to
2435 handle them specially, such as generating jalx instructions when
2436 needed. We also make them odd for the duration of the assembly, in
2437 order to generate the right sort of code. We will make them even
2438 in the adjust_symtab routine, while leaving them marked. This is
2439 convenient for the debugger and the disassembler. The linker knows
2440 to make them odd again. */
2441
2442static void
17a2f251 2443mips16_mark_labels (void)
252b5132 2444{
a8dbcb85
TS
2445 segment_info_type *si = seg_info (now_seg);
2446 struct insn_label_list *l;
252b5132 2447
a8dbcb85
TS
2448 if (!mips_opts.mips16)
2449 return;
2450
2451 for (l = si->label_list; l != NULL; l = l->next)
2452 {
2453 symbolS *label = l->label;
2454
2455#if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF)
f43abd2b 2456 if (IS_ELF)
30c09090 2457 S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
252b5132 2458#endif
5f0fe04b
TS
2459 if ((S_GET_VALUE (label) & 1) == 0
2460 /* Don't adjust the address if the label is global or weak, or
2461 in a link-once section, since we'll be emitting symbol reloc
2462 references to it which will be patched up by the linker, and
2463 the final value of the symbol may or may not be MIPS16. */
2464 && ! S_IS_WEAK (label)
2465 && ! S_IS_EXTERNAL (label)
2466 && ! s_is_linkonce (label, now_seg))
a8dbcb85 2467 S_SET_VALUE (label, S_GET_VALUE (label) | 1);
252b5132
RH
2468 }
2469}
2470
4d7206a2
RS
2471/* End the current frag. Make it a variant frag and record the
2472 relaxation info. */
2473
2474static void
2475relax_close_frag (void)
2476{
584892a6 2477 mips_macro_warning.first_frag = frag_now;
4d7206a2 2478 frag_var (rs_machine_dependent, 0, 0,
584892a6 2479 RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
4d7206a2
RS
2480 mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
2481
2482 memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
2483 mips_relax.first_fixup = 0;
2484}
2485
2486/* Start a new relaxation sequence whose expansion depends on SYMBOL.
2487 See the comment above RELAX_ENCODE for more details. */
2488
2489static void
2490relax_start (symbolS *symbol)
2491{
2492 assert (mips_relax.sequence == 0);
2493 mips_relax.sequence = 1;
2494 mips_relax.symbol = symbol;
2495}
2496
2497/* Start generating the second version of a relaxable sequence.
2498 See the comment above RELAX_ENCODE for more details. */
252b5132
RH
2499
2500static void
4d7206a2
RS
2501relax_switch (void)
2502{
2503 assert (mips_relax.sequence == 1);
2504 mips_relax.sequence = 2;
2505}
2506
2507/* End the current relaxable sequence. */
2508
2509static void
2510relax_end (void)
2511{
2512 assert (mips_relax.sequence == 2);
2513 relax_close_frag ();
2514 mips_relax.sequence = 0;
2515}
2516
71400594
RS
2517/* Classify an instruction according to the FIX_VR4120_* enumeration.
2518 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
2519 by VR4120 errata. */
4d7206a2 2520
71400594
RS
2521static unsigned int
2522classify_vr4120_insn (const char *name)
252b5132 2523{
71400594
RS
2524 if (strncmp (name, "macc", 4) == 0)
2525 return FIX_VR4120_MACC;
2526 if (strncmp (name, "dmacc", 5) == 0)
2527 return FIX_VR4120_DMACC;
2528 if (strncmp (name, "mult", 4) == 0)
2529 return FIX_VR4120_MULT;
2530 if (strncmp (name, "dmult", 5) == 0)
2531 return FIX_VR4120_DMULT;
2532 if (strstr (name, "div"))
2533 return FIX_VR4120_DIV;
2534 if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
2535 return FIX_VR4120_MTHILO;
2536 return NUM_FIX_VR4120_CLASSES;
2537}
252b5132 2538
71400594
RS
2539/* Return the number of instructions that must separate INSN1 and INSN2,
2540 where INSN1 is the earlier instruction. Return the worst-case value
2541 for any INSN2 if INSN2 is null. */
252b5132 2542
71400594
RS
2543static unsigned int
2544insns_between (const struct mips_cl_insn *insn1,
2545 const struct mips_cl_insn *insn2)
2546{
2547 unsigned long pinfo1, pinfo2;
2548
2549 /* This function needs to know which pinfo flags are set for INSN2
2550 and which registers INSN2 uses. The former is stored in PINFO2 and
2551 the latter is tested via INSN2_USES_REG. If INSN2 is null, PINFO2
2552 will have every flag set and INSN2_USES_REG will always return true. */
2553 pinfo1 = insn1->insn_mo->pinfo;
2554 pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
252b5132 2555
71400594
RS
2556#define INSN2_USES_REG(REG, CLASS) \
2557 (insn2 == NULL || insn_uses_reg (insn2, REG, CLASS))
2558
2559 /* For most targets, write-after-read dependencies on the HI and LO
2560 registers must be separated by at least two instructions. */
2561 if (!hilo_interlocks)
252b5132 2562 {
71400594
RS
2563 if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
2564 return 2;
2565 if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
2566 return 2;
2567 }
2568
2569 /* If we're working around r7000 errata, there must be two instructions
2570 between an mfhi or mflo and any instruction that uses the result. */
2571 if (mips_7000_hilo_fix
2572 && MF_HILO_INSN (pinfo1)
2573 && INSN2_USES_REG (EXTRACT_OPERAND (RD, *insn1), MIPS_GR_REG))
2574 return 2;
2575
2576 /* If working around VR4120 errata, check for combinations that need
2577 a single intervening instruction. */
2578 if (mips_fix_vr4120)
2579 {
2580 unsigned int class1, class2;
252b5132 2581
71400594
RS
2582 class1 = classify_vr4120_insn (insn1->insn_mo->name);
2583 if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
252b5132 2584 {
71400594
RS
2585 if (insn2 == NULL)
2586 return 1;
2587 class2 = classify_vr4120_insn (insn2->insn_mo->name);
2588 if (vr4120_conflicts[class1] & (1 << class2))
2589 return 1;
252b5132 2590 }
71400594
RS
2591 }
2592
2593 if (!mips_opts.mips16)
2594 {
2595 /* Check for GPR or coprocessor load delays. All such delays
2596 are on the RT register. */
2597 /* Itbl support may require additional care here. */
2598 if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY_DELAY))
2599 || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY)))
252b5132 2600 {
71400594
RS
2601 know (pinfo1 & INSN_WRITE_GPR_T);
2602 if (INSN2_USES_REG (EXTRACT_OPERAND (RT, *insn1), MIPS_GR_REG))
2603 return 1;
2604 }
2605
2606 /* Check for generic coprocessor hazards.
2607
2608 This case is not handled very well. There is no special
2609 knowledge of CP0 handling, and the coprocessors other than
2610 the floating point unit are not distinguished at all. */
2611 /* Itbl support may require additional care here. FIXME!
2612 Need to modify this to include knowledge about
2613 user specified delays! */
2614 else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE_DELAY))
2615 || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
2616 {
2617 /* Handle cases where INSN1 writes to a known general coprocessor
2618 register. There must be a one instruction delay before INSN2
2619 if INSN2 reads that register, otherwise no delay is needed. */
2620 if (pinfo1 & INSN_WRITE_FPR_T)
252b5132 2621 {
71400594
RS
2622 if (INSN2_USES_REG (EXTRACT_OPERAND (FT, *insn1), MIPS_FP_REG))
2623 return 1;
252b5132 2624 }
71400594 2625 else if (pinfo1 & INSN_WRITE_FPR_S)
252b5132 2626 {
71400594
RS
2627 if (INSN2_USES_REG (EXTRACT_OPERAND (FS, *insn1), MIPS_FP_REG))
2628 return 1;
252b5132
RH
2629 }
2630 else
2631 {
71400594
RS
2632 /* Read-after-write dependencies on the control registers
2633 require a two-instruction gap. */
2634 if ((pinfo1 & INSN_WRITE_COND_CODE)
2635 && (pinfo2 & INSN_READ_COND_CODE))
2636 return 2;
2637
2638 /* We don't know exactly what INSN1 does. If INSN2 is
2639 also a coprocessor instruction, assume there must be
2640 a one instruction gap. */
2641 if (pinfo2 & INSN_COP)
2642 return 1;
252b5132
RH
2643 }
2644 }
6b76fefe 2645
71400594
RS
2646 /* Check for read-after-write dependencies on the coprocessor
2647 control registers in cases where INSN1 does not need a general
2648 coprocessor delay. This means that INSN1 is a floating point
2649 comparison instruction. */
2650 /* Itbl support may require additional care here. */
2651 else if (!cop_interlocks
2652 && (pinfo1 & INSN_WRITE_COND_CODE)
2653 && (pinfo2 & INSN_READ_COND_CODE))
2654 return 1;
2655 }
6b76fefe 2656
71400594 2657#undef INSN2_USES_REG
6b76fefe 2658
71400594
RS
2659 return 0;
2660}
6b76fefe 2661
7d8e00cf
RS
2662/* Return the number of nops that would be needed to work around the
2663 VR4130 mflo/mfhi errata if instruction INSN immediately followed
2664 the MAX_VR4130_NOPS instructions described by HISTORY. */
2665
2666static int
2667nops_for_vr4130 (const struct mips_cl_insn *history,
2668 const struct mips_cl_insn *insn)
2669{
2670 int i, j, reg;
2671
2672 /* Check if the instruction writes to HI or LO. MTHI and MTLO
2673 are not affected by the errata. */
2674 if (insn != 0
2675 && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
2676 || strcmp (insn->insn_mo->name, "mtlo") == 0
2677 || strcmp (insn->insn_mo->name, "mthi") == 0))
2678 return 0;
2679
2680 /* Search for the first MFLO or MFHI. */
2681 for (i = 0; i < MAX_VR4130_NOPS; i++)
2682 if (!history[i].noreorder_p && MF_HILO_INSN (history[i].insn_mo->pinfo))
2683 {
2684 /* Extract the destination register. */
2685 if (mips_opts.mips16)
2686 reg = mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, history[i])];
2687 else
2688 reg = EXTRACT_OPERAND (RD, history[i]);
2689
2690 /* No nops are needed if INSN reads that register. */
2691 if (insn != NULL && insn_uses_reg (insn, reg, MIPS_GR_REG))
2692 return 0;
2693
2694 /* ...or if any of the intervening instructions do. */
2695 for (j = 0; j < i; j++)
2696 if (insn_uses_reg (&history[j], reg, MIPS_GR_REG))
2697 return 0;
2698
2699 return MAX_VR4130_NOPS - i;
2700 }
2701 return 0;
2702}
2703
71400594
RS
2704/* Return the number of nops that would be needed if instruction INSN
2705 immediately followed the MAX_NOPS instructions given by HISTORY,
2706 where HISTORY[0] is the most recent instruction. If INSN is null,
2707 return the worse-case number of nops for any instruction. */
bdaaa2e1 2708
71400594
RS
2709static int
2710nops_for_insn (const struct mips_cl_insn *history,
2711 const struct mips_cl_insn *insn)
2712{
2713 int i, nops, tmp_nops;
bdaaa2e1 2714
71400594 2715 nops = 0;
7d8e00cf 2716 for (i = 0; i < MAX_DELAY_NOPS; i++)
71400594
RS
2717 if (!history[i].noreorder_p)
2718 {
2719 tmp_nops = insns_between (history + i, insn) - i;
2720 if (tmp_nops > nops)
2721 nops = tmp_nops;
2722 }
7d8e00cf
RS
2723
2724 if (mips_fix_vr4130)
2725 {
2726 tmp_nops = nops_for_vr4130 (history, insn);
2727 if (tmp_nops > nops)
2728 nops = tmp_nops;
2729 }
2730
71400594
RS
2731 return nops;
2732}
252b5132 2733
71400594
RS
2734/* The variable arguments provide NUM_INSNS extra instructions that
2735 might be added to HISTORY. Return the largest number of nops that
2736 would be needed after the extended sequence. */
252b5132 2737
71400594
RS
2738static int
2739nops_for_sequence (int num_insns, const struct mips_cl_insn *history, ...)
2740{
2741 va_list args;
2742 struct mips_cl_insn buffer[MAX_NOPS];
2743 struct mips_cl_insn *cursor;
2744 int nops;
2745
2746 va_start (args, history);
2747 cursor = buffer + num_insns;
2748 memcpy (cursor, history, (MAX_NOPS - num_insns) * sizeof (*cursor));
2749 while (cursor > buffer)
2750 *--cursor = *va_arg (args, const struct mips_cl_insn *);
2751
2752 nops = nops_for_insn (buffer, NULL);
2753 va_end (args);
2754 return nops;
2755}
252b5132 2756
71400594
RS
2757/* Like nops_for_insn, but if INSN is a branch, take into account the
2758 worst-case delay for the branch target. */
252b5132 2759
71400594
RS
2760static int
2761nops_for_insn_or_target (const struct mips_cl_insn *history,
2762 const struct mips_cl_insn *insn)
2763{
2764 int nops, tmp_nops;
60b63b72 2765
71400594
RS
2766 nops = nops_for_insn (history, insn);
2767 if (insn->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
2768 | INSN_COND_BRANCH_DELAY
2769 | INSN_COND_BRANCH_LIKELY))
2770 {
2771 tmp_nops = nops_for_sequence (2, history, insn, NOP_INSN);
2772 if (tmp_nops > nops)
2773 nops = tmp_nops;
2774 }
2775 else if (mips_opts.mips16 && (insn->insn_mo->pinfo & MIPS16_INSN_BRANCH))
2776 {
2777 tmp_nops = nops_for_sequence (1, history, insn);
2778 if (tmp_nops > nops)
2779 nops = tmp_nops;
2780 }
2781 return nops;
2782}
2783
2784/* Output an instruction. IP is the instruction information.
2785 ADDRESS_EXPR is an operand of the instruction to be used with
2786 RELOC_TYPE. */
2787
2788static void
2789append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
2790 bfd_reloc_code_real_type *reloc_type)
2791{
3994f87e 2792 unsigned long prev_pinfo, pinfo;
6a32d874 2793 int hndx_24k = 0;
71400594
RS
2794 relax_stateT prev_insn_frag_type = 0;
2795 bfd_boolean relaxed_branch = FALSE;
a8dbcb85 2796 segment_info_type *si = seg_info (now_seg);
71400594
RS
2797
2798 /* Mark instruction labels in mips16 mode. */
2799 mips16_mark_labels ();
2800
2801 prev_pinfo = history[0].insn_mo->pinfo;
2802 pinfo = ip->insn_mo->pinfo;
2803
2804 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
2805 {
2806 /* There are a lot of optimizations we could do that we don't.
2807 In particular, we do not, in general, reorder instructions.
2808 If you use gcc with optimization, it will reorder
2809 instructions and generally do much more optimization then we
2810 do here; repeating all that work in the assembler would only
2811 benefit hand written assembly code, and does not seem worth
2812 it. */
2813 int nops = (mips_optimize == 0
2814 ? nops_for_insn (history, NULL)
2815 : nops_for_insn_or_target (history, ip));
2816 if (nops > 0)
252b5132
RH
2817 {
2818 fragS *old_frag;
2819 unsigned long old_frag_offset;
2820 int i;
252b5132
RH
2821
2822 old_frag = frag_now;
2823 old_frag_offset = frag_now_fix ();
2824
2825 for (i = 0; i < nops; i++)
2826 emit_nop ();
2827
2828 if (listing)
2829 {
2830 listing_prev_line ();
2831 /* We may be at the start of a variant frag. In case we
2832 are, make sure there is enough space for the frag
2833 after the frags created by listing_prev_line. The
2834 argument to frag_grow here must be at least as large
2835 as the argument to all other calls to frag_grow in
2836 this file. We don't have to worry about being in the
2837 middle of a variant frag, because the variants insert
2838 all needed nop instructions themselves. */
2839 frag_grow (40);
2840 }
2841
404a8071 2842 mips_move_labels ();
252b5132
RH
2843
2844#ifndef NO_ECOFF_DEBUGGING
2845 if (ECOFF_DEBUGGING)
2846 ecoff_fix_loc (old_frag, old_frag_offset);
2847#endif
2848 }
71400594
RS
2849 }
2850 else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
2851 {
2852 /* Work out how many nops in prev_nop_frag are needed by IP. */
2853 int nops = nops_for_insn_or_target (history, ip);
2854 assert (nops <= prev_nop_frag_holds);
252b5132 2855
71400594
RS
2856 /* Enforce NOPS as a minimum. */
2857 if (nops > prev_nop_frag_required)
2858 prev_nop_frag_required = nops;
252b5132 2859
71400594
RS
2860 if (prev_nop_frag_holds == prev_nop_frag_required)
2861 {
2862 /* Settle for the current number of nops. Update the history
2863 accordingly (for the benefit of any future .set reorder code). */
2864 prev_nop_frag = NULL;
2865 insert_into_history (prev_nop_frag_since,
2866 prev_nop_frag_holds, NOP_INSN);
2867 }
2868 else
2869 {
2870 /* Allow this instruction to replace one of the nops that was
2871 tentatively added to prev_nop_frag. */
2872 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
2873 prev_nop_frag_holds--;
2874 prev_nop_frag_since++;
252b5132
RH
2875 }
2876 }
2877
58e2ea4d
MR
2878#ifdef OBJ_ELF
2879 /* The value passed to dwarf2_emit_insn is the distance between
2880 the beginning of the current instruction and the address that
2881 should be recorded in the debug tables. For MIPS16 debug info
2882 we want to use ISA-encoded addresses, so we pass -1 for an
2883 address higher by one than the current. */
2884 dwarf2_emit_insn (mips_opts.mips16 ? -1 : 0);
2885#endif
2886
895921c9 2887 /* Record the frag type before frag_var. */
47e39b9d
RS
2888 if (history[0].frag)
2889 prev_insn_frag_type = history[0].frag->fr_type;
895921c9 2890
4d7206a2 2891 if (address_expr
0b25d3e6 2892 && *reloc_type == BFD_RELOC_16_PCREL_S2
4a6a3df4
AO
2893 && (pinfo & INSN_UNCOND_BRANCH_DELAY || pinfo & INSN_COND_BRANCH_DELAY
2894 || pinfo & INSN_COND_BRANCH_LIKELY)
2895 && mips_relax_branch
2896 /* Don't try branch relaxation within .set nomacro, or within
2897 .set noat if we use $at for PIC computations. If it turns
2898 out that the branch was out-of-range, we'll get an error. */
2899 && !mips_opts.warn_about_macros
741fe287 2900 && (mips_opts.at || mips_pic == NO_PIC)
4a6a3df4
AO
2901 && !mips_opts.mips16)
2902 {
895921c9 2903 relaxed_branch = TRUE;
1e915849
RS
2904 add_relaxed_insn (ip, (relaxed_branch_length
2905 (NULL, NULL,
2906 (pinfo & INSN_UNCOND_BRANCH_DELAY) ? -1
2907 : (pinfo & INSN_COND_BRANCH_LIKELY) ? 1
2908 : 0)), 4,
2909 RELAX_BRANCH_ENCODE
2910 (pinfo & INSN_UNCOND_BRANCH_DELAY,
2911 pinfo & INSN_COND_BRANCH_LIKELY,
2912 pinfo & INSN_WRITE_GPR_31,
2913 0),
2914 address_expr->X_add_symbol,
2915 address_expr->X_add_number);
4a6a3df4
AO
2916 *reloc_type = BFD_RELOC_UNUSED;
2917 }
2918 else if (*reloc_type > BFD_RELOC_UNUSED)
252b5132
RH
2919 {
2920 /* We need to set up a variant frag. */
2921 assert (mips_opts.mips16 && address_expr != NULL);
1e915849
RS
2922 add_relaxed_insn (ip, 4, 0,
2923 RELAX_MIPS16_ENCODE
2924 (*reloc_type - BFD_RELOC_UNUSED,
2925 mips16_small, mips16_ext,
2926 prev_pinfo & INSN_UNCOND_BRANCH_DELAY,
2927 history[0].mips16_absolute_jump_p),
2928 make_expr_symbol (address_expr), 0);
252b5132 2929 }
252b5132
RH
2930 else if (mips_opts.mips16
2931 && ! ip->use_extend
f6688943 2932 && *reloc_type != BFD_RELOC_MIPS16_JMP)
9497f5ac 2933 {
b8ee1a6e
DU
2934 if ((pinfo & INSN_UNCOND_BRANCH_DELAY) == 0)
2935 /* Make sure there is enough room to swap this instruction with
2936 a following jump instruction. */
2937 frag_grow (6);
1e915849 2938 add_fixed_insn (ip);
252b5132
RH
2939 }
2940 else
2941 {
2942 if (mips_opts.mips16
2943 && mips_opts.noreorder
2944 && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0)
2945 as_warn (_("extended instruction in delay slot"));
2946
4d7206a2
RS
2947 if (mips_relax.sequence)
2948 {
2949 /* If we've reached the end of this frag, turn it into a variant
2950 frag and record the information for the instructions we've
2951 written so far. */
2952 if (frag_room () < 4)
2953 relax_close_frag ();
2954 mips_relax.sizes[mips_relax.sequence - 1] += 4;
2955 }
2956
584892a6
RS
2957 if (mips_relax.sequence != 2)
2958 mips_macro_warning.sizes[0] += 4;
2959 if (mips_relax.sequence != 1)
2960 mips_macro_warning.sizes[1] += 4;
2961
1e915849
RS
2962 if (mips_opts.mips16)
2963 {
2964 ip->fixed_p = 1;
2965 ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
2966 }
2967 add_fixed_insn (ip);
252b5132
RH
2968 }
2969
01a3f561 2970 if (address_expr != NULL && *reloc_type <= BFD_RELOC_UNUSED)
252b5132
RH
2971 {
2972 if (address_expr->X_op == O_constant)
2973 {
f17c130b 2974 unsigned int tmp;
f6688943
TS
2975
2976 switch (*reloc_type)
252b5132
RH
2977 {
2978 case BFD_RELOC_32:
2979 ip->insn_opcode |= address_expr->X_add_number;
2980 break;
2981
f6688943 2982 case BFD_RELOC_MIPS_HIGHEST:
f17c130b
AM
2983 tmp = (address_expr->X_add_number + 0x800080008000ull) >> 48;
2984 ip->insn_opcode |= tmp & 0xffff;
f6688943
TS
2985 break;
2986
2987 case BFD_RELOC_MIPS_HIGHER:
f17c130b
AM
2988 tmp = (address_expr->X_add_number + 0x80008000ull) >> 32;
2989 ip->insn_opcode |= tmp & 0xffff;
f6688943
TS
2990 break;
2991
2992 case BFD_RELOC_HI16_S:
f17c130b
AM
2993 tmp = (address_expr->X_add_number + 0x8000) >> 16;
2994 ip->insn_opcode |= tmp & 0xffff;
f6688943
TS
2995 break;
2996
2997 case BFD_RELOC_HI16:
2998 ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
2999 break;
3000
01a3f561 3001 case BFD_RELOC_UNUSED:
252b5132 3002 case BFD_RELOC_LO16:
ed6fb7bd 3003 case BFD_RELOC_MIPS_GOT_DISP:
252b5132
RH
3004 ip->insn_opcode |= address_expr->X_add_number & 0xffff;
3005 break;
3006
3007 case BFD_RELOC_MIPS_JMP:
3008 if ((address_expr->X_add_number & 3) != 0)
3009 as_bad (_("jump to misaligned address (0x%lx)"),
3010 (unsigned long) address_expr->X_add_number);
3011 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff;
3012 break;
3013
3014 case BFD_RELOC_MIPS16_JMP:
3015 if ((address_expr->X_add_number & 3) != 0)
3016 as_bad (_("jump to misaligned address (0x%lx)"),
3017 (unsigned long) address_expr->X_add_number);
3018 ip->insn_opcode |=
3019 (((address_expr->X_add_number & 0x7c0000) << 3)
3020 | ((address_expr->X_add_number & 0xf800000) >> 7)
3021 | ((address_expr->X_add_number & 0x3fffc) >> 2));
3022 break;
3023
252b5132 3024 case BFD_RELOC_16_PCREL_S2:
bad36eac
DJ
3025 if ((address_expr->X_add_number & 3) != 0)
3026 as_bad (_("branch to misaligned address (0x%lx)"),
3027 (unsigned long) address_expr->X_add_number);
3028 if (mips_relax_branch)
3029 goto need_reloc;
3030 if ((address_expr->X_add_number + 0x20000) & ~0x3ffff)
3031 as_bad (_("branch address range overflow (0x%lx)"),
3032 (unsigned long) address_expr->X_add_number);
3033 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0xffff;
3034 break;
252b5132
RH
3035
3036 default:
3037 internalError ();
3038 }
3039 }
01a3f561 3040 else if (*reloc_type < BFD_RELOC_UNUSED)
252b5132 3041 need_reloc:
4d7206a2
RS
3042 {
3043 reloc_howto_type *howto;
3044 int i;
34ce925e 3045
4d7206a2
RS
3046 /* In a compound relocation, it is the final (outermost)
3047 operator that determines the relocated field. */
3048 for (i = 1; i < 3; i++)
3049 if (reloc_type[i] == BFD_RELOC_UNUSED)
3050 break;
34ce925e 3051
4d7206a2 3052 howto = bfd_reloc_type_lookup (stdoutput, reloc_type[i - 1]);
23fce1e3
NC
3053 if (howto == NULL)
3054 {
3055 /* To reproduce this failure try assembling gas/testsuites/
3056 gas/mips/mips16-intermix.s with a mips-ecoff targeted
3057 assembler. */
3058 as_bad (_("Unsupported MIPS relocation number %d"), reloc_type[i - 1]);
3059 howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_16);
3060 }
3061
1e915849
RS
3062 ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
3063 bfd_get_reloc_size (howto),
3064 address_expr,
3065 reloc_type[0] == BFD_RELOC_16_PCREL_S2,
3066 reloc_type[0]);
4d7206a2 3067
b314ec0e
RS
3068 /* Tag symbols that have a R_MIPS16_26 relocation against them. */
3069 if (reloc_type[0] == BFD_RELOC_MIPS16_JMP
3070 && ip->fixp[0]->fx_addsy)
3071 *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
3072
4d7206a2
RS
3073 /* These relocations can have an addend that won't fit in
3074 4 octets for 64bit assembly. */
3075 if (HAVE_64BIT_GPRS
3076 && ! howto->partial_inplace
3077 && (reloc_type[0] == BFD_RELOC_16
3078 || reloc_type[0] == BFD_RELOC_32
3079 || reloc_type[0] == BFD_RELOC_MIPS_JMP
4d7206a2
RS
3080 || reloc_type[0] == BFD_RELOC_GPREL16
3081 || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
3082 || reloc_type[0] == BFD_RELOC_GPREL32
3083 || reloc_type[0] == BFD_RELOC_64
3084 || reloc_type[0] == BFD_RELOC_CTOR
3085 || reloc_type[0] == BFD_RELOC_MIPS_SUB
3086 || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
3087 || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
3088 || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
3089 || reloc_type[0] == BFD_RELOC_MIPS_REL16
d6f16593
MR
3090 || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
3091 || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
738e5348
RS
3092 || hi16_reloc_p (reloc_type[0])
3093 || lo16_reloc_p (reloc_type[0])))
1e915849 3094 ip->fixp[0]->fx_no_overflow = 1;
4d7206a2
RS
3095
3096 if (mips_relax.sequence)
3097 {
3098 if (mips_relax.first_fixup == 0)
1e915849 3099 mips_relax.first_fixup = ip->fixp[0];
4d7206a2
RS
3100 }
3101 else if (reloc_needs_lo_p (*reloc_type))
3102 {
3103 struct mips_hi_fixup *hi_fixup;
252b5132 3104
4d7206a2
RS
3105 /* Reuse the last entry if it already has a matching %lo. */
3106 hi_fixup = mips_hi_fixup_list;
3107 if (hi_fixup == 0
3108 || !fixup_has_matching_lo_p (hi_fixup->fixp))
3109 {
3110 hi_fixup = ((struct mips_hi_fixup *)
3111 xmalloc (sizeof (struct mips_hi_fixup)));
3112 hi_fixup->next = mips_hi_fixup_list;
3113 mips_hi_fixup_list = hi_fixup;
252b5132 3114 }
1e915849 3115 hi_fixup->fixp = ip->fixp[0];
4d7206a2
RS
3116 hi_fixup->seg = now_seg;
3117 }
f6688943 3118
4d7206a2
RS
3119 /* Add fixups for the second and third relocations, if given.
3120 Note that the ABI allows the second relocation to be
3121 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
3122 moment we only use RSS_UNDEF, but we could add support
3123 for the others if it ever becomes necessary. */
3124 for (i = 1; i < 3; i++)
3125 if (reloc_type[i] != BFD_RELOC_UNUSED)
3126 {
1e915849
RS
3127 ip->fixp[i] = fix_new (ip->frag, ip->where,
3128 ip->fixp[0]->fx_size, NULL, 0,
3129 FALSE, reloc_type[i]);
b1dca8ee
RS
3130
3131 /* Use fx_tcbit to mark compound relocs. */
1e915849
RS
3132 ip->fixp[0]->fx_tcbit = 1;
3133 ip->fixp[i]->fx_tcbit = 1;
4d7206a2 3134 }
252b5132
RH
3135 }
3136 }
1e915849 3137 install_insn (ip);
252b5132
RH
3138
3139 /* Update the register mask information. */
3140 if (! mips_opts.mips16)
3141 {
3142 if (pinfo & INSN_WRITE_GPR_D)
bf12938e 3143 mips_gprmask |= 1 << EXTRACT_OPERAND (RD, *ip);
252b5132 3144 if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0)
bf12938e 3145 mips_gprmask |= 1 << EXTRACT_OPERAND (RT, *ip);
252b5132 3146 if (pinfo & INSN_READ_GPR_S)
bf12938e 3147 mips_gprmask |= 1 << EXTRACT_OPERAND (RS, *ip);
252b5132 3148 if (pinfo & INSN_WRITE_GPR_31)
f9419b05 3149 mips_gprmask |= 1 << RA;
252b5132 3150 if (pinfo & INSN_WRITE_FPR_D)
bf12938e 3151 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FD, *ip);
252b5132 3152 if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0)
bf12938e 3153 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FS, *ip);
252b5132 3154 if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0)
bf12938e 3155 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FT, *ip);
252b5132 3156 if ((pinfo & INSN_READ_FPR_R) != 0)
bf12938e 3157 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FR, *ip);
252b5132
RH
3158 if (pinfo & INSN_COP)
3159 {
bdaaa2e1
KH
3160 /* We don't keep enough information to sort these cases out.
3161 The itbl support does keep this information however, although
3162 we currently don't support itbl fprmats as part of the cop
3163 instruction. May want to add this support in the future. */
252b5132
RH
3164 }
3165 /* Never set the bit for $0, which is always zero. */
beae10d5 3166 mips_gprmask &= ~1 << 0;
252b5132
RH
3167 }
3168 else
3169 {
3170 if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X))
bf12938e 3171 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RX, *ip);
252b5132 3172 if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y))
bf12938e 3173 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RY, *ip);
252b5132 3174 if (pinfo & MIPS16_INSN_WRITE_Z)
bf12938e 3175 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RZ, *ip);
252b5132
RH
3176 if (pinfo & (MIPS16_INSN_WRITE_T | MIPS16_INSN_READ_T))
3177 mips_gprmask |= 1 << TREG;
3178 if (pinfo & (MIPS16_INSN_WRITE_SP | MIPS16_INSN_READ_SP))
3179 mips_gprmask |= 1 << SP;
3180 if (pinfo & (MIPS16_INSN_WRITE_31 | MIPS16_INSN_READ_31))
3181 mips_gprmask |= 1 << RA;
3182 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
3183 mips_gprmask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
3184 if (pinfo & MIPS16_INSN_READ_Z)
bf12938e 3185 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip);
252b5132 3186 if (pinfo & MIPS16_INSN_READ_GPR_X)
bf12938e 3187 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
252b5132
RH
3188 }
3189
4d7206a2 3190 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
252b5132
RH
3191 {
3192 /* Filling the branch delay slot is more complex. We try to
3193 switch the branch with the previous instruction, which we can
3194 do if the previous instruction does not set up a condition
3195 that the branch tests and if the branch is not itself the
3196 target of any branch. */
3197 if ((pinfo & INSN_UNCOND_BRANCH_DELAY)
3198 || (pinfo & INSN_COND_BRANCH_DELAY))
3199 {
3200 if (mips_optimize < 2
3201 /* If we have seen .set volatile or .set nomove, don't
3202 optimize. */
3203 || mips_opts.nomove != 0
a38419a5
RS
3204 /* We can't swap if the previous instruction's position
3205 is fixed. */
3206 || history[0].fixed_p
252b5132
RH
3207 /* If the previous previous insn was in a .set
3208 noreorder, we can't swap. Actually, the MIPS
3209 assembler will swap in this situation. However, gcc
3210 configured -with-gnu-as will generate code like
3211 .set noreorder
3212 lw $4,XXX
3213 .set reorder
3214 INSN
3215 bne $4,$0,foo
3216 in which we can not swap the bne and INSN. If gcc is
3217 not configured -with-gnu-as, it does not output the
a38419a5 3218 .set pseudo-ops. */
47e39b9d 3219 || history[1].noreorder_p
252b5132
RH
3220 /* If the branch is itself the target of a branch, we
3221 can not swap. We cheat on this; all we check for is
3222 whether there is a label on this instruction. If
3223 there are any branches to anything other than a
3224 label, users must use .set noreorder. */
a8dbcb85 3225 || si->label_list != NULL
895921c9
MR
3226 /* If the previous instruction is in a variant frag
3227 other than this branch's one, we cannot do the swap.
3228 This does not apply to the mips16, which uses variant
3229 frags for different purposes. */
252b5132 3230 || (! mips_opts.mips16
895921c9 3231 && prev_insn_frag_type == rs_machine_dependent)
71400594
RS
3232 /* Check for conflicts between the branch and the instructions
3233 before the candidate delay slot. */
3234 || nops_for_insn (history + 1, ip) > 0
3235 /* Check for conflicts between the swapped sequence and the
3236 target of the branch. */
3237 || nops_for_sequence (2, history + 1, ip, history) > 0
252b5132
RH
3238 /* We do not swap with a trap instruction, since it
3239 complicates trap handlers to have the trap
3240 instruction be in a delay slot. */
3241 || (prev_pinfo & INSN_TRAP)
3242 /* If the branch reads a register that the previous
3243 instruction sets, we can not swap. */
3244 || (! mips_opts.mips16
3245 && (prev_pinfo & INSN_WRITE_GPR_T)
bf12938e 3246 && insn_uses_reg (ip, EXTRACT_OPERAND (RT, history[0]),
252b5132
RH
3247 MIPS_GR_REG))
3248 || (! mips_opts.mips16
3249 && (prev_pinfo & INSN_WRITE_GPR_D)
bf12938e 3250 && insn_uses_reg (ip, EXTRACT_OPERAND (RD, history[0]),
252b5132
RH
3251 MIPS_GR_REG))
3252 || (mips_opts.mips16
3253 && (((prev_pinfo & MIPS16_INSN_WRITE_X)
bf12938e
RS
3254 && (insn_uses_reg
3255 (ip, MIPS16_EXTRACT_OPERAND (RX, history[0]),
3256 MIPS16_REG)))
252b5132 3257 || ((prev_pinfo & MIPS16_INSN_WRITE_Y)
bf12938e
RS
3258 && (insn_uses_reg
3259 (ip, MIPS16_EXTRACT_OPERAND (RY, history[0]),
3260 MIPS16_REG)))
252b5132 3261 || ((prev_pinfo & MIPS16_INSN_WRITE_Z)
bf12938e
RS
3262 && (insn_uses_reg
3263 (ip, MIPS16_EXTRACT_OPERAND (RZ, history[0]),
3264 MIPS16_REG)))
252b5132
RH
3265 || ((prev_pinfo & MIPS16_INSN_WRITE_T)
3266 && insn_uses_reg (ip, TREG, MIPS_GR_REG))
3267 || ((prev_pinfo & MIPS16_INSN_WRITE_31)
3268 && insn_uses_reg (ip, RA, MIPS_GR_REG))
3269 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
3270 && insn_uses_reg (ip,
47e39b9d
RS
3271 MIPS16OP_EXTRACT_REG32R
3272 (history[0].insn_opcode),
252b5132
RH
3273 MIPS_GR_REG))))
3274 /* If the branch writes a register that the previous
3275 instruction sets, we can not swap (we know that
3276 branches write only to RD or to $31). */
3277 || (! mips_opts.mips16
3278 && (prev_pinfo & INSN_WRITE_GPR_T)
3279 && (((pinfo & INSN_WRITE_GPR_D)
bf12938e
RS
3280 && (EXTRACT_OPERAND (RT, history[0])
3281 == EXTRACT_OPERAND (RD, *ip)))
252b5132 3282 || ((pinfo & INSN_WRITE_GPR_31)
bf12938e 3283 && EXTRACT_OPERAND (RT, history[0]) == RA)))
252b5132
RH
3284 || (! mips_opts.mips16
3285 && (prev_pinfo & INSN_WRITE_GPR_D)
3286 && (((pinfo & INSN_WRITE_GPR_D)
bf12938e
RS
3287 && (EXTRACT_OPERAND (RD, history[0])
3288 == EXTRACT_OPERAND (RD, *ip)))
252b5132 3289 || ((pinfo & INSN_WRITE_GPR_31)
bf12938e 3290 && EXTRACT_OPERAND (RD, history[0]) == RA)))
252b5132
RH
3291 || (mips_opts.mips16
3292 && (pinfo & MIPS16_INSN_WRITE_31)
3293 && ((prev_pinfo & MIPS16_INSN_WRITE_31)
3294 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
47e39b9d 3295 && (MIPS16OP_EXTRACT_REG32R (history[0].insn_opcode)
252b5132
RH
3296 == RA))))
3297 /* If the branch writes a register that the previous
3298 instruction reads, we can not swap (we know that
3299 branches only write to RD or to $31). */
3300 || (! mips_opts.mips16
3301 && (pinfo & INSN_WRITE_GPR_D)
47e39b9d 3302 && insn_uses_reg (&history[0],
bf12938e 3303 EXTRACT_OPERAND (RD, *ip),
252b5132
RH
3304 MIPS_GR_REG))
3305 || (! mips_opts.mips16
3306 && (pinfo & INSN_WRITE_GPR_31)
47e39b9d 3307 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
252b5132
RH
3308 || (mips_opts.mips16
3309 && (pinfo & MIPS16_INSN_WRITE_31)
47e39b9d 3310 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
252b5132
RH
3311 /* If one instruction sets a condition code and the
3312 other one uses a condition code, we can not swap. */
3313 || ((pinfo & INSN_READ_COND_CODE)
3314 && (prev_pinfo & INSN_WRITE_COND_CODE))
3315 || ((pinfo & INSN_WRITE_COND_CODE)
3316 && (prev_pinfo & INSN_READ_COND_CODE))
3317 /* If the previous instruction uses the PC, we can not
3318 swap. */
3319 || (mips_opts.mips16
3320 && (prev_pinfo & MIPS16_INSN_READ_PC))
252b5132
RH
3321 /* If the previous instruction had a fixup in mips16
3322 mode, we can not swap. This normally means that the
3323 previous instruction was a 4 byte branch anyhow. */
47e39b9d 3324 || (mips_opts.mips16 && history[0].fixp[0])
bdaaa2e1
KH
3325 /* If the previous instruction is a sync, sync.l, or
3326 sync.p, we can not swap. */
6a32d874
CM
3327 || (prev_pinfo & INSN_SYNC)
3328 /* If the previous instruction is an ERET or
3329 DERET, avoid the swap. */
3330 || (history[0].insn_opcode == INSN_ERET)
3331 || (history[0].insn_opcode == INSN_DERET))
252b5132 3332 {
29024861
DU
3333 if (mips_opts.mips16
3334 && (pinfo & INSN_UNCOND_BRANCH_DELAY)
3335 && (pinfo & (MIPS16_INSN_READ_X | MIPS16_INSN_READ_31))
3994f87e 3336 && ISA_SUPPORTS_MIPS16E)
29024861
DU
3337 {
3338 /* Convert MIPS16 jr/jalr into a "compact" jump. */
3339 ip->insn_opcode |= 0x0080;
3340 install_insn (ip);
3341 insert_into_history (0, 1, ip);
3342 }
3343 else
3344 {
3345 /* We could do even better for unconditional branches to
3346 portions of this object file; we could pick up the
3347 instruction at the destination, put it in the delay
3348 slot, and bump the destination address. */
3349 insert_into_history (0, 1, ip);
3350 emit_nop ();
6a32d874
CM
3351 if (mips_fix_24k)
3352 hndx_24k++;
29024861
DU
3353 }
3354
dd22970f
ILT
3355 if (mips_relax.sequence)
3356 mips_relax.sizes[mips_relax.sequence - 1] += 4;
252b5132
RH
3357 }
3358 else
3359 {
3360 /* It looks like we can actually do the swap. */
1e915849
RS
3361 struct mips_cl_insn delay = history[0];
3362 if (mips_opts.mips16)
252b5132 3363 {
b8ee1a6e
DU
3364 know (delay.frag == ip->frag);
3365 move_insn (ip, delay.frag, delay.where);
3366 move_insn (&delay, ip->frag, ip->where + insn_length (ip));
1e915849
RS
3367 }
3368 else if (relaxed_branch)
3369 {
3370 /* Add the delay slot instruction to the end of the
3371 current frag and shrink the fixed part of the
3372 original frag. If the branch occupies the tail of
3373 the latter, move it backwards to cover the gap. */
3374 delay.frag->fr_fix -= 4;
3375 if (delay.frag == ip->frag)
3376 move_insn (ip, ip->frag, ip->where - 4);
3377 add_fixed_insn (&delay);
252b5132
RH
3378 }
3379 else
3380 {
1e915849
RS
3381 move_insn (&delay, ip->frag, ip->where);
3382 move_insn (ip, history[0].frag, history[0].where);
252b5132 3383 }
1e915849
RS
3384 history[0] = *ip;
3385 delay.fixed_p = 1;
3386 insert_into_history (0, 1, &delay);
252b5132 3387 }
252b5132
RH
3388
3389 /* If that was an unconditional branch, forget the previous
3390 insn information. */
3391 if (pinfo & INSN_UNCOND_BRANCH_DELAY)
6a32d874
CM
3392 {
3393 /* Check for eret/deret before clearing history. */
3394 if (mips_fix_24k)
3395 check_for_24k_errata (
3396 (struct mips_cl_insn *) &history[hndx_24k],
3397 hndx_24k+1);
3398 mips_no_prev_insn ();
3399 }
252b5132
RH
3400 }
3401 else if (pinfo & INSN_COND_BRANCH_LIKELY)
3402 {
3403 /* We don't yet optimize a branch likely. What we should do
3404 is look at the target, copy the instruction found there
3405 into the delay slot, and increment the branch to jump to
3406 the next instruction. */
1e915849 3407 insert_into_history (0, 1, ip);
252b5132 3408 emit_nop ();
6a32d874
CM
3409 if (mips_fix_24k)
3410 hndx_24k++;
252b5132
RH
3411 }
3412 else
1e915849 3413 insert_into_history (0, 1, ip);
252b5132 3414 }
1e915849
RS
3415 else
3416 insert_into_history (0, 1, ip);
252b5132 3417
6a32d874
CM
3418 if (mips_fix_24k)
3419 check_for_24k_errata ((struct mips_cl_insn *) &history[hndx_24k],
3420 hndx_24k+1);
3421
252b5132
RH
3422 /* We just output an insn, so the next one doesn't have a label. */
3423 mips_clear_insn_labels ();
252b5132
RH
3424}
3425
7d10b47d 3426/* Forget that there was any previous instruction or label. */
252b5132
RH
3427
3428static void
7d10b47d 3429mips_no_prev_insn (void)
252b5132 3430{
7d10b47d
RS
3431 prev_nop_frag = NULL;
3432 insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
252b5132
RH
3433 mips_clear_insn_labels ();
3434}
3435
7d10b47d
RS
3436/* This function must be called before we emit something other than
3437 instructions. It is like mips_no_prev_insn except that it inserts
3438 any NOPS that might be needed by previous instructions. */
252b5132 3439
7d10b47d
RS
3440void
3441mips_emit_delays (void)
252b5132
RH
3442{
3443 if (! mips_opts.noreorder)
3444 {
71400594 3445 int nops = nops_for_insn (history, NULL);
252b5132
RH
3446 if (nops > 0)
3447 {
7d10b47d
RS
3448 while (nops-- > 0)
3449 add_fixed_insn (NOP_INSN);
3450 mips_move_labels ();
3451 }
3452 }
3453 mips_no_prev_insn ();
3454}
3455
3456/* Start a (possibly nested) noreorder block. */
3457
3458static void
3459start_noreorder (void)
3460{
3461 if (mips_opts.noreorder == 0)
3462 {
3463 unsigned int i;
3464 int nops;
3465
3466 /* None of the instructions before the .set noreorder can be moved. */
3467 for (i = 0; i < ARRAY_SIZE (history); i++)
3468 history[i].fixed_p = 1;
3469
3470 /* Insert any nops that might be needed between the .set noreorder
3471 block and the previous instructions. We will later remove any
3472 nops that turn out not to be needed. */
3473 nops = nops_for_insn (history, NULL);
3474 if (nops > 0)
3475 {
3476 if (mips_optimize != 0)
252b5132
RH
3477 {
3478 /* Record the frag which holds the nop instructions, so
3479 that we can remove them if we don't need them. */
3480 frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4);
3481 prev_nop_frag = frag_now;
3482 prev_nop_frag_holds = nops;
3483 prev_nop_frag_required = 0;
3484 prev_nop_frag_since = 0;
3485 }
3486
3487 for (; nops > 0; --nops)
1e915849 3488 add_fixed_insn (NOP_INSN);
252b5132 3489
7d10b47d
RS
3490 /* Move on to a new frag, so that it is safe to simply
3491 decrease the size of prev_nop_frag. */
3492 frag_wane (frag_now);
3493 frag_new (0);
404a8071 3494 mips_move_labels ();
252b5132 3495 }
7d10b47d
RS
3496 mips16_mark_labels ();
3497 mips_clear_insn_labels ();
252b5132 3498 }
7d10b47d
RS
3499 mips_opts.noreorder++;
3500 mips_any_noreorder = 1;
3501}
252b5132 3502
7d10b47d 3503/* End a nested noreorder block. */
252b5132 3504
7d10b47d
RS
3505static void
3506end_noreorder (void)
3507{
6a32d874
CM
3508 if (mips_fix_24k)
3509 check_for_24k_errata (NULL, 0);
3510
7d10b47d
RS
3511 mips_opts.noreorder--;
3512 if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
3513 {
3514 /* Commit to inserting prev_nop_frag_required nops and go back to
3515 handling nop insertion the .set reorder way. */
3516 prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
3517 * (mips_opts.mips16 ? 2 : 4));
3518 insert_into_history (prev_nop_frag_since,
3519 prev_nop_frag_required, NOP_INSN);
3520 prev_nop_frag = NULL;
3521 }
252b5132
RH
3522}
3523
584892a6
RS
3524/* Set up global variables for the start of a new macro. */
3525
3526static void
3527macro_start (void)
3528{
3529 memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
3530 mips_macro_warning.delay_slot_p = (mips_opts.noreorder
47e39b9d 3531 && (history[0].insn_mo->pinfo
584892a6
RS
3532 & (INSN_UNCOND_BRANCH_DELAY
3533 | INSN_COND_BRANCH_DELAY
3534 | INSN_COND_BRANCH_LIKELY)) != 0);
3535}
3536
3537/* Given that a macro is longer than 4 bytes, return the appropriate warning
3538 for it. Return null if no warning is needed. SUBTYPE is a bitmask of
3539 RELAX_DELAY_SLOT and RELAX_NOMACRO. */
3540
3541static const char *
3542macro_warning (relax_substateT subtype)
3543{
3544 if (subtype & RELAX_DELAY_SLOT)
3545 return _("Macro instruction expanded into multiple instructions"
3546 " in a branch delay slot");
3547 else if (subtype & RELAX_NOMACRO)
3548 return _("Macro instruction expanded into multiple instructions");
3549 else
3550 return 0;
3551}
3552
3553/* Finish up a macro. Emit warnings as appropriate. */
3554
3555static void
3556macro_end (void)
3557{
3558 if (mips_macro_warning.sizes[0] > 4 || mips_macro_warning.sizes[1] > 4)
3559 {
3560 relax_substateT subtype;
3561
3562 /* Set up the relaxation warning flags. */
3563 subtype = 0;
3564 if (mips_macro_warning.sizes[1] > mips_macro_warning.sizes[0])
3565 subtype |= RELAX_SECOND_LONGER;
3566 if (mips_opts.warn_about_macros)
3567 subtype |= RELAX_NOMACRO;
3568 if (mips_macro_warning.delay_slot_p)
3569 subtype |= RELAX_DELAY_SLOT;
3570
3571 if (mips_macro_warning.sizes[0] > 4 && mips_macro_warning.sizes[1] > 4)
3572 {
3573 /* Either the macro has a single implementation or both
3574 implementations are longer than 4 bytes. Emit the
3575 warning now. */
3576 const char *msg = macro_warning (subtype);
3577 if (msg != 0)
520725ea 3578 as_warn ("%s", msg);
584892a6
RS
3579 }
3580 else
3581 {
3582 /* One implementation might need a warning but the other
3583 definitely doesn't. */
3584 mips_macro_warning.first_frag->fr_subtype |= subtype;
3585 }
3586 }
3587}
3588
6e1304d8
RS
3589/* Read a macro's relocation codes from *ARGS and store them in *R.
3590 The first argument in *ARGS will be either the code for a single
3591 relocation or -1 followed by the three codes that make up a
3592 composite relocation. */
3593
3594static void
3595macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
3596{
3597 int i, next;
3598
3599 next = va_arg (*args, int);
3600 if (next >= 0)
3601 r[0] = (bfd_reloc_code_real_type) next;
3602 else
3603 for (i = 0; i < 3; i++)
3604 r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
3605}
3606
252b5132
RH
3607/* Build an instruction created by a macro expansion. This is passed
3608 a pointer to the count of instructions created so far, an
3609 expression, the name of the instruction to build, an operand format
3610 string, and corresponding arguments. */
3611
252b5132 3612static void
67c0d1eb 3613macro_build (expressionS *ep, const char *name, const char *fmt, ...)
252b5132 3614{
1e915849 3615 const struct mips_opcode *mo;
252b5132 3616 struct mips_cl_insn insn;
f6688943 3617 bfd_reloc_code_real_type r[3];
252b5132 3618 va_list args;
252b5132 3619
252b5132 3620 va_start (args, fmt);
252b5132 3621
252b5132
RH
3622 if (mips_opts.mips16)
3623 {
67c0d1eb 3624 mips16_macro_build (ep, name, fmt, args);
252b5132
RH
3625 va_end (args);
3626 return;
3627 }
3628
f6688943
TS
3629 r[0] = BFD_RELOC_UNUSED;
3630 r[1] = BFD_RELOC_UNUSED;
3631 r[2] = BFD_RELOC_UNUSED;
1e915849
RS
3632 mo = (struct mips_opcode *) hash_find (op_hash, name);
3633 assert (mo);
3634 assert (strcmp (name, mo->name) == 0);
3635
8b082fb1
TS
3636 while (1)
3637 {
3638 /* Search until we get a match for NAME. It is assumed here that
3639 macros will never generate MDMX, MIPS-3D, or MT instructions. */
3640 if (strcmp (fmt, mo->args) == 0
3641 && mo->pinfo != INSN_MACRO
037b32b9 3642 && is_opcode_valid (mo, TRUE))
8b082fb1
TS
3643 break;
3644
1e915849
RS
3645 ++mo;
3646 assert (mo->name);
3647 assert (strcmp (name, mo->name) == 0);
252b5132
RH
3648 }
3649
1e915849 3650 create_insn (&insn, mo);
252b5132
RH
3651 for (;;)
3652 {
3653 switch (*fmt++)
3654 {
3655 case '\0':
3656 break;
3657
3658 case ',':
3659 case '(':
3660 case ')':
3661 continue;
3662
5f74bc13
CD
3663 case '+':
3664 switch (*fmt++)
3665 {
3666 case 'A':
3667 case 'E':
bf12938e 3668 INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
5f74bc13
CD
3669 continue;
3670
3671 case 'B':
3672 case 'F':
3673 /* Note that in the macro case, these arguments are already
3674 in MSB form. (When handling the instruction in the
3675 non-macro case, these arguments are sizes from which
3676 MSB values must be calculated.) */
bf12938e 3677 INSERT_OPERAND (INSMSB, insn, va_arg (args, int));
5f74bc13
CD
3678 continue;
3679
3680 case 'C':
3681 case 'G':
3682 case 'H':
3683 /* Note that in the macro case, these arguments are already
3684 in MSBD form. (When handling the instruction in the
3685 non-macro case, these arguments are sizes from which
3686 MSBD values must be calculated.) */
bf12938e 3687 INSERT_OPERAND (EXTMSBD, insn, va_arg (args, int));
5f74bc13
CD
3688 continue;
3689
dd3cbb7e
NC
3690 case 'Q':
3691 INSERT_OPERAND (SEQI, insn, va_arg (args, int));
3692 continue;
3693
5f74bc13
CD
3694 default:
3695 internalError ();
3696 }
3697 continue;
3698
8b082fb1
TS
3699 case '2':
3700 INSERT_OPERAND (BP, insn, va_arg (args, int));
3701 continue;
3702
252b5132
RH
3703 case 't':
3704 case 'w':
3705 case 'E':
bf12938e 3706 INSERT_OPERAND (RT, insn, va_arg (args, int));
252b5132
RH
3707 continue;
3708
3709 case 'c':
bf12938e 3710 INSERT_OPERAND (CODE, insn, va_arg (args, int));
38487616
TS
3711 continue;
3712
252b5132
RH
3713 case 'T':
3714 case 'W':
bf12938e 3715 INSERT_OPERAND (FT, insn, va_arg (args, int));
252b5132
RH
3716 continue;
3717
3718 case 'd':
3719 case 'G':
af7ee8bf 3720 case 'K':
bf12938e 3721 INSERT_OPERAND (RD, insn, va_arg (args, int));
252b5132
RH
3722 continue;
3723
4372b673
NC
3724 case 'U':
3725 {
3726 int tmp = va_arg (args, int);
3727
bf12938e
RS
3728 INSERT_OPERAND (RT, insn, tmp);
3729 INSERT_OPERAND (RD, insn, tmp);
beae10d5 3730 continue;
4372b673
NC
3731 }
3732
252b5132
RH
3733 case 'V':
3734 case 'S':
bf12938e 3735 INSERT_OPERAND (FS, insn, va_arg (args, int));
252b5132
RH
3736 continue;
3737
3738 case 'z':
3739 continue;
3740
3741 case '<':
bf12938e 3742 INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
252b5132
RH
3743 continue;
3744
3745 case 'D':
bf12938e 3746 INSERT_OPERAND (FD, insn, va_arg (args, int));
252b5132
RH
3747 continue;
3748
3749 case 'B':
bf12938e 3750 INSERT_OPERAND (CODE20, insn, va_arg (args, int));
252b5132
RH
3751 continue;
3752
4372b673 3753 case 'J':
bf12938e 3754 INSERT_OPERAND (CODE19, insn, va_arg (args, int));
4372b673
NC
3755 continue;
3756
252b5132 3757 case 'q':
bf12938e 3758 INSERT_OPERAND (CODE2, insn, va_arg (args, int));
252b5132
RH
3759 continue;
3760
3761 case 'b':
3762 case 's':
3763 case 'r':
3764 case 'v':
bf12938e 3765 INSERT_OPERAND (RS, insn, va_arg (args, int));
252b5132
RH
3766 continue;
3767
3768 case 'i':
3769 case 'j':
3770 case 'o':
6e1304d8 3771 macro_read_relocs (&args, r);
cdf6fd85 3772 assert (*r == BFD_RELOC_GPREL16
f6688943
TS
3773 || *r == BFD_RELOC_MIPS_LITERAL
3774 || *r == BFD_RELOC_MIPS_HIGHER
3775 || *r == BFD_RELOC_HI16_S
3776 || *r == BFD_RELOC_LO16
3777 || *r == BFD_RELOC_MIPS_GOT16
3778 || *r == BFD_RELOC_MIPS_CALL16
438c16b8
TS
3779 || *r == BFD_RELOC_MIPS_GOT_DISP
3780 || *r == BFD_RELOC_MIPS_GOT_PAGE
3781 || *r == BFD_RELOC_MIPS_GOT_OFST
f6688943 3782 || *r == BFD_RELOC_MIPS_GOT_LO16
3e722fb5 3783 || *r == BFD_RELOC_MIPS_CALL_LO16);
252b5132
RH
3784 continue;
3785
3786 case 'u':
6e1304d8 3787 macro_read_relocs (&args, r);
252b5132
RH
3788 assert (ep != NULL
3789 && (ep->X_op == O_constant
3790 || (ep->X_op == O_symbol
f6688943
TS
3791 && (*r == BFD_RELOC_MIPS_HIGHEST
3792 || *r == BFD_RELOC_HI16_S
3793 || *r == BFD_RELOC_HI16
3794 || *r == BFD_RELOC_GPREL16
3795 || *r == BFD_RELOC_MIPS_GOT_HI16
3e722fb5 3796 || *r == BFD_RELOC_MIPS_CALL_HI16))));
252b5132
RH
3797 continue;
3798
3799 case 'p':
3800 assert (ep != NULL);
bad36eac 3801
252b5132
RH
3802 /*
3803 * This allows macro() to pass an immediate expression for
3804 * creating short branches without creating a symbol.
bad36eac
DJ
3805 *
3806 * We don't allow branch relaxation for these branches, as
3807 * they should only appear in ".set nomacro" anyway.
252b5132
RH
3808 */
3809 if (ep->X_op == O_constant)
3810 {
bad36eac
DJ
3811 if ((ep->X_add_number & 3) != 0)
3812 as_bad (_("branch to misaligned address (0x%lx)"),
3813 (unsigned long) ep->X_add_number);
3814 if ((ep->X_add_number + 0x20000) & ~0x3ffff)
3815 as_bad (_("branch address range overflow (0x%lx)"),
3816 (unsigned long) ep->X_add_number);
252b5132
RH
3817 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
3818 ep = NULL;
3819 }
3820 else
0b25d3e6 3821 *r = BFD_RELOC_16_PCREL_S2;
252b5132
RH
3822 continue;
3823
3824 case 'a':
3825 assert (ep != NULL);
f6688943 3826 *r = BFD_RELOC_MIPS_JMP;
252b5132
RH
3827 continue;
3828
3829 case 'C':
a9e24354 3830 INSERT_OPERAND (COPZ, insn, va_arg (args, unsigned long));
252b5132
RH
3831 continue;
3832
d43b4baf 3833 case 'k':
a9e24354 3834 INSERT_OPERAND (CACHE, insn, va_arg (args, unsigned long));
d43b4baf
TS
3835 continue;
3836
252b5132
RH
3837 default:
3838 internalError ();
3839 }
3840 break;
3841 }
3842 va_end (args);
f6688943 3843 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132 3844
4d7206a2 3845 append_insn (&insn, ep, r);
252b5132
RH
3846}
3847
3848static void
67c0d1eb 3849mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
17a2f251 3850 va_list args)
252b5132 3851{
1e915849 3852 struct mips_opcode *mo;
252b5132 3853 struct mips_cl_insn insn;
f6688943
TS
3854 bfd_reloc_code_real_type r[3]
3855 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 3856
1e915849
RS
3857 mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
3858 assert (mo);
3859 assert (strcmp (name, mo->name) == 0);
252b5132 3860
1e915849 3861 while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
252b5132 3862 {
1e915849
RS
3863 ++mo;
3864 assert (mo->name);
3865 assert (strcmp (name, mo->name) == 0);
252b5132
RH
3866 }
3867
1e915849 3868 create_insn (&insn, mo);
252b5132
RH
3869 for (;;)
3870 {
3871 int c;
3872
3873 c = *fmt++;
3874 switch (c)
3875 {
3876 case '\0':
3877 break;
3878
3879 case ',':
3880 case '(':
3881 case ')':
3882 continue;
3883
3884 case 'y':
3885 case 'w':
bf12938e 3886 MIPS16_INSERT_OPERAND (RY, insn, va_arg (args, int));
252b5132
RH
3887 continue;
3888
3889 case 'x':
3890 case 'v':
bf12938e 3891 MIPS16_INSERT_OPERAND (RX, insn, va_arg (args, int));
252b5132
RH
3892 continue;
3893
3894 case 'z':
bf12938e 3895 MIPS16_INSERT_OPERAND (RZ, insn, va_arg (args, int));
252b5132
RH
3896 continue;
3897
3898 case 'Z':
bf12938e 3899 MIPS16_INSERT_OPERAND (MOVE32Z, insn, va_arg (args, int));
252b5132
RH
3900 continue;
3901
3902 case '0':
3903 case 'S':
3904 case 'P':
3905 case 'R':
3906 continue;
3907
3908 case 'X':
bf12938e 3909 MIPS16_INSERT_OPERAND (REGR32, insn, va_arg (args, int));
252b5132
RH
3910 continue;
3911
3912 case 'Y':
3913 {
3914 int regno;
3915
3916 regno = va_arg (args, int);
3917 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
a9e24354 3918 MIPS16_INSERT_OPERAND (REG32R, insn, regno);
252b5132
RH
3919 }
3920 continue;
3921
3922 case '<':
3923 case '>':
3924 case '4':
3925 case '5':
3926 case 'H':
3927 case 'W':
3928 case 'D':
3929 case 'j':
3930 case '8':
3931 case 'V':
3932 case 'C':
3933 case 'U':
3934 case 'k':
3935 case 'K':
3936 case 'p':
3937 case 'q':
3938 {
3939 assert (ep != NULL);
3940
3941 if (ep->X_op != O_constant)
874e8986 3942 *r = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
3943 else
3944 {
b34976b6
AM
3945 mips16_immed (NULL, 0, c, ep->X_add_number, FALSE, FALSE,
3946 FALSE, &insn.insn_opcode, &insn.use_extend,
c4e7957c 3947 &insn.extend);
252b5132 3948 ep = NULL;
f6688943 3949 *r = BFD_RELOC_UNUSED;
252b5132
RH
3950 }
3951 }
3952 continue;
3953
3954 case '6':
bf12938e 3955 MIPS16_INSERT_OPERAND (IMM6, insn, va_arg (args, int));
252b5132
RH
3956 continue;
3957 }
3958
3959 break;
3960 }
3961
f6688943 3962 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132 3963
4d7206a2 3964 append_insn (&insn, ep, r);
252b5132
RH
3965}
3966
2051e8c4
MR
3967/*
3968 * Sign-extend 32-bit mode constants that have bit 31 set and all
3969 * higher bits unset.
3970 */
9f872bbe 3971static void
2051e8c4
MR
3972normalize_constant_expr (expressionS *ex)
3973{
9ee2a2d4 3974 if (ex->X_op == O_constant
2051e8c4
MR
3975 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
3976 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
3977 - 0x80000000);
3978}
3979
3980/*
3981 * Sign-extend 32-bit mode address offsets that have bit 31 set and
3982 * all higher bits unset.
3983 */
3984static void
3985normalize_address_expr (expressionS *ex)
3986{
3987 if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
3988 || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
3989 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
3990 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
3991 - 0x80000000);
3992}
3993
438c16b8
TS
3994/*
3995 * Generate a "jalr" instruction with a relocation hint to the called
3996 * function. This occurs in NewABI PIC code.
3997 */
3998static void
67c0d1eb 3999macro_build_jalr (expressionS *ep)
438c16b8 4000{
685736be 4001 char *f = NULL;
b34976b6 4002
438c16b8 4003 if (HAVE_NEWABI)
f21f8242 4004 {
cc3d92a5 4005 frag_grow (8);
f21f8242
AO
4006 f = frag_more (0);
4007 }
67c0d1eb 4008 macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
438c16b8 4009 if (HAVE_NEWABI)
f21f8242 4010 fix_new_exp (frag_now, f - frag_now->fr_literal,
a105a300 4011 4, ep, FALSE, BFD_RELOC_MIPS_JALR);
438c16b8
TS
4012}
4013
252b5132
RH
4014/*
4015 * Generate a "lui" instruction.
4016 */
4017static void
67c0d1eb 4018macro_build_lui (expressionS *ep, int regnum)
252b5132
RH
4019{
4020 expressionS high_expr;
1e915849 4021 const struct mips_opcode *mo;
252b5132 4022 struct mips_cl_insn insn;
f6688943
TS
4023 bfd_reloc_code_real_type r[3]
4024 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
5a38dc70
AM
4025 const char *name = "lui";
4026 const char *fmt = "t,u";
252b5132
RH
4027
4028 assert (! mips_opts.mips16);
4029
4d7206a2 4030 high_expr = *ep;
252b5132
RH
4031
4032 if (high_expr.X_op == O_constant)
4033 {
54f4ddb3 4034 /* We can compute the instruction now without a relocation entry. */
e7d556df
TS
4035 high_expr.X_add_number = ((high_expr.X_add_number + 0x8000)
4036 >> 16) & 0xffff;
f6688943 4037 *r = BFD_RELOC_UNUSED;
252b5132 4038 }
78e1bb40 4039 else
252b5132
RH
4040 {
4041 assert (ep->X_op == O_symbol);
bbe506e8
TS
4042 /* _gp_disp is a special case, used from s_cpload.
4043 __gnu_local_gp is used if mips_no_shared. */
252b5132 4044 assert (mips_pic == NO_PIC
78e1bb40 4045 || (! HAVE_NEWABI
aa6975fb
ILT
4046 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
4047 || (! mips_in_shared
bbe506e8
TS
4048 && strcmp (S_GET_NAME (ep->X_add_symbol),
4049 "__gnu_local_gp") == 0));
f6688943 4050 *r = BFD_RELOC_HI16_S;
252b5132
RH
4051 }
4052
1e915849
RS
4053 mo = hash_find (op_hash, name);
4054 assert (strcmp (name, mo->name) == 0);
4055 assert (strcmp (fmt, mo->args) == 0);
4056 create_insn (&insn, mo);
252b5132 4057
bf12938e
RS
4058 insn.insn_opcode = insn.insn_mo->match;
4059 INSERT_OPERAND (RT, insn, regnum);
f6688943 4060 if (*r == BFD_RELOC_UNUSED)
252b5132
RH
4061 {
4062 insn.insn_opcode |= high_expr.X_add_number;
4d7206a2 4063 append_insn (&insn, NULL, r);
252b5132
RH
4064 }
4065 else
4d7206a2 4066 append_insn (&insn, &high_expr, r);
252b5132
RH
4067}
4068
885add95
CD
4069/* Generate a sequence of instructions to do a load or store from a constant
4070 offset off of a base register (breg) into/from a target register (treg),
4071 using AT if necessary. */
4072static void
67c0d1eb
RS
4073macro_build_ldst_constoffset (expressionS *ep, const char *op,
4074 int treg, int breg, int dbl)
885add95
CD
4075{
4076 assert (ep->X_op == O_constant);
4077
256ab948 4078 /* Sign-extending 32-bit constants makes their handling easier. */
2051e8c4
MR
4079 if (!dbl)
4080 normalize_constant_expr (ep);
256ab948 4081
67c1ffbe 4082 /* Right now, this routine can only handle signed 32-bit constants. */
ecd13cd3 4083 if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
885add95
CD
4084 as_warn (_("operand overflow"));
4085
4086 if (IS_SEXT_16BIT_NUM(ep->X_add_number))
4087 {
4088 /* Signed 16-bit offset will fit in the op. Easy! */
67c0d1eb 4089 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
885add95
CD
4090 }
4091 else
4092 {
4093 /* 32-bit offset, need multiple instructions and AT, like:
4094 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
4095 addu $tempreg,$tempreg,$breg
4096 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
4097 to handle the complete offset. */
67c0d1eb
RS
4098 macro_build_lui (ep, AT);
4099 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
4100 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
885add95 4101
741fe287 4102 if (!mips_opts.at)
8fc2e39e 4103 as_bad (_("Macro used $at after \".set noat\""));
885add95
CD
4104 }
4105}
4106
252b5132
RH
4107/* set_at()
4108 * Generates code to set the $at register to true (one)
4109 * if reg is less than the immediate expression.
4110 */
4111static void
67c0d1eb 4112set_at (int reg, int unsignedp)
252b5132
RH
4113{
4114 if (imm_expr.X_op == O_constant
4115 && imm_expr.X_add_number >= -0x8000
4116 && imm_expr.X_add_number < 0x8000)
67c0d1eb
RS
4117 macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
4118 AT, reg, BFD_RELOC_LO16);
252b5132
RH
4119 else
4120 {
67c0d1eb
RS
4121 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4122 macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
252b5132
RH
4123 }
4124}
4125
4126/* Warn if an expression is not a constant. */
4127
4128static void
17a2f251 4129check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
252b5132
RH
4130{
4131 if (ex->X_op == O_big)
4132 as_bad (_("unsupported large constant"));
4133 else if (ex->X_op != O_constant)
9ee2a2d4
MR
4134 as_bad (_("Instruction %s requires absolute expression"),
4135 ip->insn_mo->name);
13757d0c 4136
9ee2a2d4
MR
4137 if (HAVE_32BIT_GPRS)
4138 normalize_constant_expr (ex);
252b5132
RH
4139}
4140
4141/* Count the leading zeroes by performing a binary chop. This is a
4142 bulky bit of source, but performance is a LOT better for the
4143 majority of values than a simple loop to count the bits:
4144 for (lcnt = 0; (lcnt < 32); lcnt++)
4145 if ((v) & (1 << (31 - lcnt)))
4146 break;
4147 However it is not code size friendly, and the gain will drop a bit
4148 on certain cached systems.
4149*/
4150#define COUNT_TOP_ZEROES(v) \
4151 (((v) & ~0xffff) == 0 \
4152 ? ((v) & ~0xff) == 0 \
4153 ? ((v) & ~0xf) == 0 \
4154 ? ((v) & ~0x3) == 0 \
4155 ? ((v) & ~0x1) == 0 \
4156 ? !(v) \
4157 ? 32 \
4158 : 31 \
4159 : 30 \
4160 : ((v) & ~0x7) == 0 \
4161 ? 29 \
4162 : 28 \
4163 : ((v) & ~0x3f) == 0 \
4164 ? ((v) & ~0x1f) == 0 \
4165 ? 27 \
4166 : 26 \
4167 : ((v) & ~0x7f) == 0 \
4168 ? 25 \
4169 : 24 \
4170 : ((v) & ~0xfff) == 0 \
4171 ? ((v) & ~0x3ff) == 0 \
4172 ? ((v) & ~0x1ff) == 0 \
4173 ? 23 \
4174 : 22 \
4175 : ((v) & ~0x7ff) == 0 \
4176 ? 21 \
4177 : 20 \
4178 : ((v) & ~0x3fff) == 0 \
4179 ? ((v) & ~0x1fff) == 0 \
4180 ? 19 \
4181 : 18 \
4182 : ((v) & ~0x7fff) == 0 \
4183 ? 17 \
4184 : 16 \
4185 : ((v) & ~0xffffff) == 0 \
4186 ? ((v) & ~0xfffff) == 0 \
4187 ? ((v) & ~0x3ffff) == 0 \
4188 ? ((v) & ~0x1ffff) == 0 \
4189 ? 15 \
4190 : 14 \
4191 : ((v) & ~0x7ffff) == 0 \
4192 ? 13 \
4193 : 12 \
4194 : ((v) & ~0x3fffff) == 0 \
4195 ? ((v) & ~0x1fffff) == 0 \
4196 ? 11 \
4197 : 10 \
4198 : ((v) & ~0x7fffff) == 0 \
4199 ? 9 \
4200 : 8 \
4201 : ((v) & ~0xfffffff) == 0 \
4202 ? ((v) & ~0x3ffffff) == 0 \
4203 ? ((v) & ~0x1ffffff) == 0 \
4204 ? 7 \
4205 : 6 \
4206 : ((v) & ~0x7ffffff) == 0 \
4207 ? 5 \
4208 : 4 \
4209 : ((v) & ~0x3fffffff) == 0 \
4210 ? ((v) & ~0x1fffffff) == 0 \
4211 ? 3 \
4212 : 2 \
4213 : ((v) & ~0x7fffffff) == 0 \
4214 ? 1 \
4215 : 0)
4216
4217/* load_register()
67c1ffbe 4218 * This routine generates the least number of instructions necessary to load
252b5132
RH
4219 * an absolute expression value into a register.
4220 */
4221static void
67c0d1eb 4222load_register (int reg, expressionS *ep, int dbl)
252b5132
RH
4223{
4224 int freg;
4225 expressionS hi32, lo32;
4226
4227 if (ep->X_op != O_big)
4228 {
4229 assert (ep->X_op == O_constant);
256ab948
TS
4230
4231 /* Sign-extending 32-bit constants makes their handling easier. */
2051e8c4
MR
4232 if (!dbl)
4233 normalize_constant_expr (ep);
256ab948
TS
4234
4235 if (IS_SEXT_16BIT_NUM (ep->X_add_number))
252b5132
RH
4236 {
4237 /* We can handle 16 bit signed values with an addiu to
4238 $zero. No need to ever use daddiu here, since $zero and
4239 the result are always correct in 32 bit mode. */
67c0d1eb 4240 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
252b5132
RH
4241 return;
4242 }
4243 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
4244 {
4245 /* We can handle 16 bit unsigned values with an ori to
4246 $zero. */
67c0d1eb 4247 macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
252b5132
RH
4248 return;
4249 }
256ab948 4250 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
252b5132
RH
4251 {
4252 /* 32 bit values require an lui. */
67c0d1eb 4253 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_HI16);
252b5132 4254 if ((ep->X_add_number & 0xffff) != 0)
67c0d1eb 4255 macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
252b5132
RH
4256 return;
4257 }
4258 }
4259
4260 /* The value is larger than 32 bits. */
4261
2051e8c4 4262 if (!dbl || HAVE_32BIT_GPRS)
252b5132 4263 {
55e08f71
NC
4264 char value[32];
4265
4266 sprintf_vma (value, ep->X_add_number);
20e1fcfd 4267 as_bad (_("Number (0x%s) larger than 32 bits"), value);
67c0d1eb 4268 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
252b5132
RH
4269 return;
4270 }
4271
4272 if (ep->X_op != O_big)
4273 {
4274 hi32 = *ep;
4275 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
4276 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
4277 hi32.X_add_number &= 0xffffffff;
4278 lo32 = *ep;
4279 lo32.X_add_number &= 0xffffffff;
4280 }
4281 else
4282 {
4283 assert (ep->X_add_number > 2);
4284 if (ep->X_add_number == 3)
4285 generic_bignum[3] = 0;
4286 else if (ep->X_add_number > 4)
4287 as_bad (_("Number larger than 64 bits"));
4288 lo32.X_op = O_constant;
4289 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
4290 hi32.X_op = O_constant;
4291 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
4292 }
4293
4294 if (hi32.X_add_number == 0)
4295 freg = 0;
4296 else
4297 {
4298 int shift, bit;
4299 unsigned long hi, lo;
4300
956cd1d6 4301 if (hi32.X_add_number == (offsetT) 0xffffffff)
beae10d5
KH
4302 {
4303 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
4304 {
67c0d1eb 4305 macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
beae10d5
KH
4306 return;
4307 }
4308 if (lo32.X_add_number & 0x80000000)
4309 {
67c0d1eb 4310 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
252b5132 4311 if (lo32.X_add_number & 0xffff)
67c0d1eb 4312 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
beae10d5
KH
4313 return;
4314 }
4315 }
252b5132
RH
4316
4317 /* Check for 16bit shifted constant. We know that hi32 is
4318 non-zero, so start the mask on the first bit of the hi32
4319 value. */
4320 shift = 17;
4321 do
beae10d5
KH
4322 {
4323 unsigned long himask, lomask;
4324
4325 if (shift < 32)
4326 {
4327 himask = 0xffff >> (32 - shift);
4328 lomask = (0xffff << shift) & 0xffffffff;
4329 }
4330 else
4331 {
4332 himask = 0xffff << (shift - 32);
4333 lomask = 0;
4334 }
4335 if ((hi32.X_add_number & ~(offsetT) himask) == 0
4336 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
4337 {
4338 expressionS tmp;
4339
4340 tmp.X_op = O_constant;
4341 if (shift < 32)
4342 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
4343 | (lo32.X_add_number >> shift));
4344 else
4345 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
67c0d1eb
RS
4346 macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
4347 macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", "d,w,<",
4348 reg, reg, (shift >= 32) ? shift - 32 : shift);
beae10d5
KH
4349 return;
4350 }
f9419b05 4351 ++shift;
beae10d5
KH
4352 }
4353 while (shift <= (64 - 16));
252b5132
RH
4354
4355 /* Find the bit number of the lowest one bit, and store the
4356 shifted value in hi/lo. */
4357 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
4358 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
4359 if (lo != 0)
4360 {
4361 bit = 0;
4362 while ((lo & 1) == 0)
4363 {
4364 lo >>= 1;
4365 ++bit;
4366 }
4367 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
4368 hi >>= bit;
4369 }
4370 else
4371 {
4372 bit = 32;
4373 while ((hi & 1) == 0)
4374 {
4375 hi >>= 1;
4376 ++bit;
4377 }
4378 lo = hi;
4379 hi = 0;
4380 }
4381
4382 /* Optimize if the shifted value is a (power of 2) - 1. */
4383 if ((hi == 0 && ((lo + 1) & lo) == 0)
4384 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
beae10d5
KH
4385 {
4386 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
252b5132 4387 if (shift != 0)
beae10d5 4388 {
252b5132
RH
4389 expressionS tmp;
4390
4391 /* This instruction will set the register to be all
4392 ones. */
beae10d5
KH
4393 tmp.X_op = O_constant;
4394 tmp.X_add_number = (offsetT) -1;
67c0d1eb 4395 macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
beae10d5
KH
4396 if (bit != 0)
4397 {
4398 bit += shift;
67c0d1eb
RS
4399 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", "d,w,<",
4400 reg, reg, (bit >= 32) ? bit - 32 : bit);
beae10d5 4401 }
67c0d1eb
RS
4402 macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", "d,w,<",
4403 reg, reg, (shift >= 32) ? shift - 32 : shift);
beae10d5
KH
4404 return;
4405 }
4406 }
252b5132
RH
4407
4408 /* Sign extend hi32 before calling load_register, because we can
4409 generally get better code when we load a sign extended value. */
4410 if ((hi32.X_add_number & 0x80000000) != 0)
beae10d5 4411 hi32.X_add_number |= ~(offsetT) 0xffffffff;
67c0d1eb 4412 load_register (reg, &hi32, 0);
252b5132
RH
4413 freg = reg;
4414 }
4415 if ((lo32.X_add_number & 0xffff0000) == 0)
4416 {
4417 if (freg != 0)
4418 {
67c0d1eb 4419 macro_build (NULL, "dsll32", "d,w,<", reg, freg, 0);
252b5132
RH
4420 freg = reg;
4421 }
4422 }
4423 else
4424 {
4425 expressionS mid16;
4426
956cd1d6 4427 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
beae10d5 4428 {
67c0d1eb
RS
4429 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
4430 macro_build (NULL, "dsrl32", "d,w,<", reg, reg, 0);
beae10d5
KH
4431 return;
4432 }
252b5132
RH
4433
4434 if (freg != 0)
4435 {
67c0d1eb 4436 macro_build (NULL, "dsll", "d,w,<", reg, freg, 16);
252b5132
RH
4437 freg = reg;
4438 }
4439 mid16 = lo32;
4440 mid16.X_add_number >>= 16;
67c0d1eb
RS
4441 macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
4442 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
252b5132
RH
4443 freg = reg;
4444 }
4445 if ((lo32.X_add_number & 0xffff) != 0)
67c0d1eb 4446 macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
252b5132
RH
4447}
4448
269137b2
TS
4449static inline void
4450load_delay_nop (void)
4451{
4452 if (!gpr_interlocks)
4453 macro_build (NULL, "nop", "");
4454}
4455
252b5132
RH
4456/* Load an address into a register. */
4457
4458static void
67c0d1eb 4459load_address (int reg, expressionS *ep, int *used_at)
252b5132 4460{
252b5132
RH
4461 if (ep->X_op != O_constant
4462 && ep->X_op != O_symbol)
4463 {
4464 as_bad (_("expression too complex"));
4465 ep->X_op = O_constant;
4466 }
4467
4468 if (ep->X_op == O_constant)
4469 {
67c0d1eb 4470 load_register (reg, ep, HAVE_64BIT_ADDRESSES);
252b5132
RH
4471 return;
4472 }
4473
4474 if (mips_pic == NO_PIC)
4475 {
4476 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 4477 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
4478 Otherwise we want
4479 lui $reg,<sym> (BFD_RELOC_HI16_S)
4480 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
d6bc6245 4481 If we have an addend, we always use the latter form.
76b3015f 4482
d6bc6245
TS
4483 With 64bit address space and a usable $at we want
4484 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4485 lui $at,<sym> (BFD_RELOC_HI16_S)
4486 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
4487 daddiu $at,<sym> (BFD_RELOC_LO16)
4488 dsll32 $reg,0
3a482fd5 4489 daddu $reg,$reg,$at
76b3015f 4490
c03099e6 4491 If $at is already in use, we use a path which is suboptimal
d6bc6245
TS
4492 on superscalar processors.
4493 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4494 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
4495 dsll $reg,16
4496 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
4497 dsll $reg,16
4498 daddiu $reg,<sym> (BFD_RELOC_LO16)
6caf9ef4
TS
4499
4500 For GP relative symbols in 64bit address space we can use
4501 the same sequence as in 32bit address space. */
aed1a261 4502 if (HAVE_64BIT_SYMBOLS)
d6bc6245 4503 {
6caf9ef4
TS
4504 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
4505 && !nopic_need_relax (ep->X_add_symbol, 1))
4506 {
4507 relax_start (ep->X_add_symbol);
4508 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
4509 mips_gp_register, BFD_RELOC_GPREL16);
4510 relax_switch ();
4511 }
d6bc6245 4512
741fe287 4513 if (*used_at == 0 && mips_opts.at)
d6bc6245 4514 {
67c0d1eb
RS
4515 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
4516 macro_build (ep, "lui", "t,u", AT, BFD_RELOC_HI16_S);
4517 macro_build (ep, "daddiu", "t,r,j", reg, reg,
4518 BFD_RELOC_MIPS_HIGHER);
4519 macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
4520 macro_build (NULL, "dsll32", "d,w,<", reg, reg, 0);
4521 macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
d6bc6245
TS
4522 *used_at = 1;
4523 }
4524 else
4525 {
67c0d1eb
RS
4526 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
4527 macro_build (ep, "daddiu", "t,r,j", reg, reg,
4528 BFD_RELOC_MIPS_HIGHER);
4529 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4530 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
4531 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4532 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
d6bc6245 4533 }
6caf9ef4
TS
4534
4535 if (mips_relax.sequence)
4536 relax_end ();
d6bc6245 4537 }
252b5132
RH
4538 else
4539 {
d6bc6245 4540 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 4541 && !nopic_need_relax (ep->X_add_symbol, 1))
d6bc6245 4542 {
4d7206a2 4543 relax_start (ep->X_add_symbol);
67c0d1eb 4544 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
17a2f251 4545 mips_gp_register, BFD_RELOC_GPREL16);
4d7206a2 4546 relax_switch ();
d6bc6245 4547 }
67c0d1eb
RS
4548 macro_build_lui (ep, reg);
4549 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
4550 reg, reg, BFD_RELOC_LO16);
4d7206a2
RS
4551 if (mips_relax.sequence)
4552 relax_end ();
d6bc6245 4553 }
252b5132 4554 }
0a44bf69 4555 else if (!mips_big_got)
252b5132
RH
4556 {
4557 expressionS ex;
4558
4559 /* If this is a reference to an external symbol, we want
4560 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4561 Otherwise we want
4562 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4563 nop
4564 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
f5040a92
AO
4565 If there is a constant, it must be added in after.
4566
ed6fb7bd 4567 If we have NewABI, we want
f5040a92
AO
4568 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
4569 unless we're referencing a global symbol with a non-zero
4570 offset, in which case cst must be added separately. */
ed6fb7bd
SC
4571 if (HAVE_NEWABI)
4572 {
f5040a92
AO
4573 if (ep->X_add_number)
4574 {
4d7206a2 4575 ex.X_add_number = ep->X_add_number;
f5040a92 4576 ep->X_add_number = 0;
4d7206a2 4577 relax_start (ep->X_add_symbol);
67c0d1eb
RS
4578 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4579 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
4580 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4581 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4582 ex.X_op = O_constant;
67c0d1eb 4583 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 4584 reg, reg, BFD_RELOC_LO16);
f5040a92 4585 ep->X_add_number = ex.X_add_number;
4d7206a2 4586 relax_switch ();
f5040a92 4587 }
67c0d1eb 4588 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 4589 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4d7206a2
RS
4590 if (mips_relax.sequence)
4591 relax_end ();
ed6fb7bd
SC
4592 }
4593 else
4594 {
f5040a92
AO
4595 ex.X_add_number = ep->X_add_number;
4596 ep->X_add_number = 0;
67c0d1eb
RS
4597 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4598 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 4599 load_delay_nop ();
4d7206a2
RS
4600 relax_start (ep->X_add_symbol);
4601 relax_switch ();
67c0d1eb 4602 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
17a2f251 4603 BFD_RELOC_LO16);
4d7206a2 4604 relax_end ();
ed6fb7bd 4605
f5040a92
AO
4606 if (ex.X_add_number != 0)
4607 {
4608 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4609 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4610 ex.X_op = O_constant;
67c0d1eb 4611 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 4612 reg, reg, BFD_RELOC_LO16);
f5040a92 4613 }
252b5132
RH
4614 }
4615 }
0a44bf69 4616 else if (mips_big_got)
252b5132
RH
4617 {
4618 expressionS ex;
252b5132
RH
4619
4620 /* This is the large GOT case. If this is a reference to an
4621 external symbol, we want
4622 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4623 addu $reg,$reg,$gp
4624 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
f5040a92
AO
4625
4626 Otherwise, for a reference to a local symbol in old ABI, we want
252b5132
RH
4627 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4628 nop
4629 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
684022ea 4630 If there is a constant, it must be added in after.
f5040a92
AO
4631
4632 In the NewABI, for local symbols, with or without offsets, we want:
438c16b8
TS
4633 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
4634 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
f5040a92 4635 */
438c16b8
TS
4636 if (HAVE_NEWABI)
4637 {
4d7206a2 4638 ex.X_add_number = ep->X_add_number;
f5040a92 4639 ep->X_add_number = 0;
4d7206a2 4640 relax_start (ep->X_add_symbol);
67c0d1eb
RS
4641 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
4642 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
4643 reg, reg, mips_gp_register);
4644 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
4645 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
f5040a92
AO
4646 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4647 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4648 else if (ex.X_add_number)
4649 {
4650 ex.X_op = O_constant;
67c0d1eb
RS
4651 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4652 BFD_RELOC_LO16);
f5040a92
AO
4653 }
4654
4655 ep->X_add_number = ex.X_add_number;
4d7206a2 4656 relax_switch ();
67c0d1eb 4657 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 4658 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
67c0d1eb
RS
4659 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4660 BFD_RELOC_MIPS_GOT_OFST);
4d7206a2 4661 relax_end ();
438c16b8 4662 }
252b5132 4663 else
438c16b8 4664 {
f5040a92
AO
4665 ex.X_add_number = ep->X_add_number;
4666 ep->X_add_number = 0;
4d7206a2 4667 relax_start (ep->X_add_symbol);
67c0d1eb
RS
4668 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
4669 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
4670 reg, reg, mips_gp_register);
4671 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
4672 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
4d7206a2
RS
4673 relax_switch ();
4674 if (reg_needs_delay (mips_gp_register))
438c16b8
TS
4675 {
4676 /* We need a nop before loading from $gp. This special
4677 check is required because the lui which starts the main
4678 instruction stream does not refer to $gp, and so will not
4679 insert the nop which may be required. */
67c0d1eb 4680 macro_build (NULL, "nop", "");
438c16b8 4681 }
67c0d1eb 4682 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 4683 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 4684 load_delay_nop ();
67c0d1eb 4685 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
17a2f251 4686 BFD_RELOC_LO16);
4d7206a2 4687 relax_end ();
438c16b8 4688
f5040a92
AO
4689 if (ex.X_add_number != 0)
4690 {
4691 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4692 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4693 ex.X_op = O_constant;
67c0d1eb
RS
4694 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4695 BFD_RELOC_LO16);
f5040a92 4696 }
252b5132
RH
4697 }
4698 }
252b5132
RH
4699 else
4700 abort ();
8fc2e39e 4701
741fe287 4702 if (!mips_opts.at && *used_at == 1)
8fc2e39e 4703 as_bad (_("Macro used $at after \".set noat\""));
252b5132
RH
4704}
4705
ea1fb5dc
RS
4706/* Move the contents of register SOURCE into register DEST. */
4707
4708static void
67c0d1eb 4709move_register (int dest, int source)
ea1fb5dc 4710{
67c0d1eb
RS
4711 macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
4712 dest, source, 0);
ea1fb5dc
RS
4713}
4714
4d7206a2 4715/* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
f6a22291
MR
4716 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
4717 The two alternatives are:
4d7206a2
RS
4718
4719 Global symbol Local sybmol
4720 ------------- ------------
4721 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
4722 ... ...
4723 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
4724
4725 load_got_offset emits the first instruction and add_got_offset
f6a22291
MR
4726 emits the second for a 16-bit offset or add_got_offset_hilo emits
4727 a sequence to add a 32-bit offset using a scratch register. */
4d7206a2
RS
4728
4729static void
67c0d1eb 4730load_got_offset (int dest, expressionS *local)
4d7206a2
RS
4731{
4732 expressionS global;
4733
4734 global = *local;
4735 global.X_add_number = 0;
4736
4737 relax_start (local->X_add_symbol);
67c0d1eb
RS
4738 macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4739 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4d7206a2 4740 relax_switch ();
67c0d1eb
RS
4741 macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4742 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4d7206a2
RS
4743 relax_end ();
4744}
4745
4746static void
67c0d1eb 4747add_got_offset (int dest, expressionS *local)
4d7206a2
RS
4748{
4749 expressionS global;
4750
4751 global.X_op = O_constant;
4752 global.X_op_symbol = NULL;
4753 global.X_add_symbol = NULL;
4754 global.X_add_number = local->X_add_number;
4755
4756 relax_start (local->X_add_symbol);
67c0d1eb 4757 macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
4d7206a2
RS
4758 dest, dest, BFD_RELOC_LO16);
4759 relax_switch ();
67c0d1eb 4760 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
4d7206a2
RS
4761 relax_end ();
4762}
4763
f6a22291
MR
4764static void
4765add_got_offset_hilo (int dest, expressionS *local, int tmp)
4766{
4767 expressionS global;
4768 int hold_mips_optimize;
4769
4770 global.X_op = O_constant;
4771 global.X_op_symbol = NULL;
4772 global.X_add_symbol = NULL;
4773 global.X_add_number = local->X_add_number;
4774
4775 relax_start (local->X_add_symbol);
4776 load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
4777 relax_switch ();
4778 /* Set mips_optimize around the lui instruction to avoid
4779 inserting an unnecessary nop after the lw. */
4780 hold_mips_optimize = mips_optimize;
4781 mips_optimize = 2;
4782 macro_build_lui (&global, tmp);
4783 mips_optimize = hold_mips_optimize;
4784 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
4785 relax_end ();
4786
4787 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
4788}
4789
252b5132
RH
4790/*
4791 * Build macros
4792 * This routine implements the seemingly endless macro or synthesized
4793 * instructions and addressing modes in the mips assembly language. Many
4794 * of these macros are simple and are similar to each other. These could
67c1ffbe 4795 * probably be handled by some kind of table or grammar approach instead of
252b5132
RH
4796 * this verbose method. Others are not simple macros but are more like
4797 * optimizing code generation.
4798 * One interesting optimization is when several store macros appear
67c1ffbe 4799 * consecutively that would load AT with the upper half of the same address.
252b5132
RH
4800 * The ensuing load upper instructions are ommited. This implies some kind
4801 * of global optimization. We currently only optimize within a single macro.
4802 * For many of the load and store macros if the address is specified as a
4803 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
4804 * first load register 'at' with zero and use it as the base register. The
4805 * mips assembler simply uses register $zero. Just one tiny optimization
4806 * we're missing.
4807 */
4808static void
17a2f251 4809macro (struct mips_cl_insn *ip)
252b5132 4810{
741fe287
MR
4811 unsigned int treg, sreg, dreg, breg;
4812 unsigned int tempreg;
252b5132 4813 int mask;
43841e91 4814 int used_at = 0;
252b5132
RH
4815 expressionS expr1;
4816 const char *s;
4817 const char *s2;
4818 const char *fmt;
4819 int likely = 0;
4820 int dbl = 0;
4821 int coproc = 0;
4822 int lr = 0;
4823 int imm = 0;
1abe91b1 4824 int call = 0;
252b5132 4825 int off;
67c0d1eb 4826 offsetT maxnum;
252b5132 4827 bfd_reloc_code_real_type r;
252b5132
RH
4828 int hold_mips_optimize;
4829
4830 assert (! mips_opts.mips16);
4831
4832 treg = (ip->insn_opcode >> 16) & 0x1f;
4833 dreg = (ip->insn_opcode >> 11) & 0x1f;
4834 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
4835 mask = ip->insn_mo->mask;
4836
4837 expr1.X_op = O_constant;
4838 expr1.X_op_symbol = NULL;
4839 expr1.X_add_symbol = NULL;
4840 expr1.X_add_number = 1;
4841
4842 switch (mask)
4843 {
4844 case M_DABS:
4845 dbl = 1;
4846 case M_ABS:
4847 /* bgez $a0,.+12
4848 move v0,$a0
4849 sub v0,$zero,$a0
4850 */
4851
7d10b47d 4852 start_noreorder ();
252b5132
RH
4853
4854 expr1.X_add_number = 8;
67c0d1eb 4855 macro_build (&expr1, "bgez", "s,p", sreg);
252b5132 4856 if (dreg == sreg)
67c0d1eb 4857 macro_build (NULL, "nop", "", 0);
252b5132 4858 else
67c0d1eb
RS
4859 move_register (dreg, sreg);
4860 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
252b5132 4861
7d10b47d 4862 end_noreorder ();
8fc2e39e 4863 break;
252b5132
RH
4864
4865 case M_ADD_I:
4866 s = "addi";
4867 s2 = "add";
4868 goto do_addi;
4869 case M_ADDU_I:
4870 s = "addiu";
4871 s2 = "addu";
4872 goto do_addi;
4873 case M_DADD_I:
4874 dbl = 1;
4875 s = "daddi";
4876 s2 = "dadd";
4877 goto do_addi;
4878 case M_DADDU_I:
4879 dbl = 1;
4880 s = "daddiu";
4881 s2 = "daddu";
4882 do_addi:
4883 if (imm_expr.X_op == O_constant
4884 && imm_expr.X_add_number >= -0x8000
4885 && imm_expr.X_add_number < 0x8000)
4886 {
67c0d1eb 4887 macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
8fc2e39e 4888 break;
252b5132 4889 }
8fc2e39e 4890 used_at = 1;
67c0d1eb
RS
4891 load_register (AT, &imm_expr, dbl);
4892 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
252b5132
RH
4893 break;
4894
4895 case M_AND_I:
4896 s = "andi";
4897 s2 = "and";
4898 goto do_bit;
4899 case M_OR_I:
4900 s = "ori";
4901 s2 = "or";
4902 goto do_bit;
4903 case M_NOR_I:
4904 s = "";
4905 s2 = "nor";
4906 goto do_bit;
4907 case M_XOR_I:
4908 s = "xori";
4909 s2 = "xor";
4910 do_bit:
4911 if (imm_expr.X_op == O_constant
4912 && imm_expr.X_add_number >= 0
4913 && imm_expr.X_add_number < 0x10000)
4914 {
4915 if (mask != M_NOR_I)
67c0d1eb 4916 macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16);
252b5132
RH
4917 else
4918 {
67c0d1eb
RS
4919 macro_build (&imm_expr, "ori", "t,r,i",
4920 treg, sreg, BFD_RELOC_LO16);
4921 macro_build (NULL, "nor", "d,v,t", treg, treg, 0);
252b5132 4922 }
8fc2e39e 4923 break;
252b5132
RH
4924 }
4925
8fc2e39e 4926 used_at = 1;
67c0d1eb
RS
4927 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4928 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
252b5132
RH
4929 break;
4930
8b082fb1
TS
4931 case M_BALIGN:
4932 switch (imm_expr.X_add_number)
4933 {
4934 case 0:
4935 macro_build (NULL, "nop", "");
4936 break;
4937 case 2:
4938 macro_build (NULL, "packrl.ph", "d,s,t", treg, treg, sreg);
4939 break;
4940 default:
4941 macro_build (NULL, "balign", "t,s,2", treg, sreg,
4942 (int)imm_expr.X_add_number);
4943 break;
4944 }
4945 break;
4946
252b5132
RH
4947 case M_BEQ_I:
4948 s = "beq";
4949 goto beq_i;
4950 case M_BEQL_I:
4951 s = "beql";
4952 likely = 1;
4953 goto beq_i;
4954 case M_BNE_I:
4955 s = "bne";
4956 goto beq_i;
4957 case M_BNEL_I:
4958 s = "bnel";
4959 likely = 1;
4960 beq_i:
4961 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4962 {
67c0d1eb 4963 macro_build (&offset_expr, s, "s,t,p", sreg, 0);
8fc2e39e 4964 break;
252b5132 4965 }
8fc2e39e 4966 used_at = 1;
67c0d1eb
RS
4967 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4968 macro_build (&offset_expr, s, "s,t,p", sreg, AT);
252b5132
RH
4969 break;
4970
4971 case M_BGEL:
4972 likely = 1;
4973 case M_BGE:
4974 if (treg == 0)
4975 {
67c0d1eb 4976 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
8fc2e39e 4977 break;
252b5132
RH
4978 }
4979 if (sreg == 0)
4980 {
67c0d1eb 4981 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", treg);
8fc2e39e 4982 break;
252b5132 4983 }
8fc2e39e 4984 used_at = 1;
67c0d1eb
RS
4985 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
4986 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4987 break;
4988
4989 case M_BGTL_I:
4990 likely = 1;
4991 case M_BGT_I:
4992 /* check for > max integer */
4993 maxnum = 0x7fffffff;
ca4e0257 4994 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
4995 {
4996 maxnum <<= 16;
4997 maxnum |= 0xffff;
4998 maxnum <<= 16;
4999 maxnum |= 0xffff;
5000 }
5001 if (imm_expr.X_op == O_constant
5002 && imm_expr.X_add_number >= maxnum
ca4e0257 5003 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
5004 {
5005 do_false:
5006 /* result is always false */
5007 if (! likely)
67c0d1eb 5008 macro_build (NULL, "nop", "", 0);
252b5132 5009 else
67c0d1eb 5010 macro_build (&offset_expr, "bnel", "s,t,p", 0, 0);
8fc2e39e 5011 break;
252b5132
RH
5012 }
5013 if (imm_expr.X_op != O_constant)
5014 as_bad (_("Unsupported large constant"));
f9419b05 5015 ++imm_expr.X_add_number;
252b5132
RH
5016 /* FALLTHROUGH */
5017 case M_BGE_I:
5018 case M_BGEL_I:
5019 if (mask == M_BGEL_I)
5020 likely = 1;
5021 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5022 {
67c0d1eb 5023 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
8fc2e39e 5024 break;
252b5132
RH
5025 }
5026 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5027 {
67c0d1eb 5028 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
8fc2e39e 5029 break;
252b5132
RH
5030 }
5031 maxnum = 0x7fffffff;
ca4e0257 5032 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
5033 {
5034 maxnum <<= 16;
5035 maxnum |= 0xffff;
5036 maxnum <<= 16;
5037 maxnum |= 0xffff;
5038 }
5039 maxnum = - maxnum - 1;
5040 if (imm_expr.X_op == O_constant
5041 && imm_expr.X_add_number <= maxnum
ca4e0257 5042 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
5043 {
5044 do_true:
5045 /* result is always true */
5046 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
67c0d1eb 5047 macro_build (&offset_expr, "b", "p");
8fc2e39e 5048 break;
252b5132 5049 }
8fc2e39e 5050 used_at = 1;
67c0d1eb
RS
5051 set_at (sreg, 0);
5052 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
5053 break;
5054
5055 case M_BGEUL:
5056 likely = 1;
5057 case M_BGEU:
5058 if (treg == 0)
5059 goto do_true;
5060 if (sreg == 0)
5061 {
67c0d1eb 5062 macro_build (&offset_expr, likely ? "beql" : "beq",
17a2f251 5063 "s,t,p", 0, treg);
8fc2e39e 5064 break;
252b5132 5065 }
8fc2e39e 5066 used_at = 1;
67c0d1eb
RS
5067 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
5068 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
5069 break;
5070
5071 case M_BGTUL_I:
5072 likely = 1;
5073 case M_BGTU_I:
5074 if (sreg == 0
ca4e0257 5075 || (HAVE_32BIT_GPRS
252b5132 5076 && imm_expr.X_op == O_constant
956cd1d6 5077 && imm_expr.X_add_number == (offsetT) 0xffffffff))
252b5132
RH
5078 goto do_false;
5079 if (imm_expr.X_op != O_constant)
5080 as_bad (_("Unsupported large constant"));
f9419b05 5081 ++imm_expr.X_add_number;
252b5132
RH
5082 /* FALLTHROUGH */
5083 case M_BGEU_I:
5084 case M_BGEUL_I:
5085 if (mask == M_BGEUL_I)
5086 likely = 1;
5087 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5088 goto do_true;
5089 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5090 {
67c0d1eb 5091 macro_build (&offset_expr, likely ? "bnel" : "bne",
17a2f251 5092 "s,t,p", sreg, 0);
8fc2e39e 5093 break;
252b5132 5094 }
8fc2e39e 5095 used_at = 1;
67c0d1eb
RS
5096 set_at (sreg, 1);
5097 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
5098 break;
5099
5100 case M_BGTL:
5101 likely = 1;
5102 case M_BGT:
5103 if (treg == 0)
5104 {
67c0d1eb 5105 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
8fc2e39e 5106 break;
252b5132
RH
5107 }
5108 if (sreg == 0)
5109 {
67c0d1eb 5110 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", treg);
8fc2e39e 5111 break;
252b5132 5112 }
8fc2e39e 5113 used_at = 1;
67c0d1eb
RS
5114 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
5115 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
5116 break;
5117
5118 case M_BGTUL:
5119 likely = 1;
5120 case M_BGTU:
5121 if (treg == 0)
5122 {
67c0d1eb 5123 macro_build (&offset_expr, likely ? "bnel" : "bne",
17a2f251 5124 "s,t,p", sreg, 0);
8fc2e39e 5125 break;
252b5132
RH
5126 }
5127 if (sreg == 0)
5128 goto do_false;
8fc2e39e 5129 used_at = 1;
67c0d1eb
RS
5130 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
5131 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
5132 break;
5133
5134 case M_BLEL:
5135 likely = 1;
5136 case M_BLE:
5137 if (treg == 0)
5138 {
67c0d1eb 5139 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
8fc2e39e 5140 break;
252b5132
RH
5141 }
5142 if (sreg == 0)
5143 {
67c0d1eb 5144 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", treg);
8fc2e39e 5145 break;
252b5132 5146 }
8fc2e39e 5147 used_at = 1;
67c0d1eb
RS
5148 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
5149 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
5150 break;
5151
5152 case M_BLEL_I:
5153 likely = 1;
5154 case M_BLE_I:
5155 maxnum = 0x7fffffff;
ca4e0257 5156 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
5157 {
5158 maxnum <<= 16;
5159 maxnum |= 0xffff;
5160 maxnum <<= 16;
5161 maxnum |= 0xffff;
5162 }
5163 if (imm_expr.X_op == O_constant
5164 && imm_expr.X_add_number >= maxnum
ca4e0257 5165 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
5166 goto do_true;
5167 if (imm_expr.X_op != O_constant)
5168 as_bad (_("Unsupported large constant"));
f9419b05 5169 ++imm_expr.X_add_number;
252b5132
RH
5170 /* FALLTHROUGH */
5171 case M_BLT_I:
5172 case M_BLTL_I:
5173 if (mask == M_BLTL_I)
5174 likely = 1;
5175 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5176 {
67c0d1eb 5177 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
8fc2e39e 5178 break;
252b5132
RH
5179 }
5180 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5181 {
67c0d1eb 5182 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
8fc2e39e 5183 break;
252b5132 5184 }
8fc2e39e 5185 used_at = 1;
67c0d1eb
RS
5186 set_at (sreg, 0);
5187 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
5188 break;
5189
5190 case M_BLEUL:
5191 likely = 1;
5192 case M_BLEU:
5193 if (treg == 0)
5194 {
67c0d1eb 5195 macro_build (&offset_expr, likely ? "beql" : "beq",
17a2f251 5196 "s,t,p", sreg, 0);
8fc2e39e 5197 break;
252b5132
RH
5198 }
5199 if (sreg == 0)
5200 goto do_true;
8fc2e39e 5201 used_at = 1;
67c0d1eb
RS
5202 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
5203 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
5204 break;
5205
5206 case M_BLEUL_I:
5207 likely = 1;
5208 case M_BLEU_I:
5209 if (sreg == 0
ca4e0257 5210 || (HAVE_32BIT_GPRS
252b5132 5211 && imm_expr.X_op == O_constant
956cd1d6 5212 && imm_expr.X_add_number == (offsetT) 0xffffffff))
252b5132
RH
5213 goto do_true;
5214 if (imm_expr.X_op != O_constant)
5215 as_bad (_("Unsupported large constant"));
f9419b05 5216 ++imm_expr.X_add_number;
252b5132
RH
5217 /* FALLTHROUGH */
5218 case M_BLTU_I:
5219 case M_BLTUL_I:
5220 if (mask == M_BLTUL_I)
5221 likely = 1;
5222 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5223 goto do_false;
5224 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5225 {
67c0d1eb 5226 macro_build (&offset_expr, likely ? "beql" : "beq",
252b5132 5227 "s,t,p", sreg, 0);
8fc2e39e 5228 break;
252b5132 5229 }
8fc2e39e 5230 used_at = 1;
67c0d1eb
RS
5231 set_at (sreg, 1);
5232 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
5233 break;
5234
5235 case M_BLTL:
5236 likely = 1;
5237 case M_BLT:
5238 if (treg == 0)
5239 {
67c0d1eb 5240 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
8fc2e39e 5241 break;
252b5132
RH
5242 }
5243 if (sreg == 0)
5244 {
67c0d1eb 5245 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", treg);
8fc2e39e 5246 break;
252b5132 5247 }
8fc2e39e 5248 used_at = 1;
67c0d1eb
RS
5249 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
5250 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
5251 break;
5252
5253 case M_BLTUL:
5254 likely = 1;
5255 case M_BLTU:
5256 if (treg == 0)
5257 goto do_false;
5258 if (sreg == 0)
5259 {
67c0d1eb 5260 macro_build (&offset_expr, likely ? "bnel" : "bne",
17a2f251 5261 "s,t,p", 0, treg);
8fc2e39e 5262 break;
252b5132 5263 }
8fc2e39e 5264 used_at = 1;
67c0d1eb
RS
5265 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
5266 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
5267 break;
5268
5f74bc13
CD
5269 case M_DEXT:
5270 {
5271 unsigned long pos;
5272 unsigned long size;
5273
5274 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
5275 {
5276 as_bad (_("Unsupported large constant"));
5277 pos = size = 1;
5278 }
5279 else
5280 {
5281 pos = (unsigned long) imm_expr.X_add_number;
5282 size = (unsigned long) imm2_expr.X_add_number;
5283 }
5284
5285 if (pos > 63)
5286 {
5287 as_bad (_("Improper position (%lu)"), pos);
5288 pos = 1;
5289 }
5290 if (size == 0 || size > 64
5291 || (pos + size - 1) > 63)
5292 {
5293 as_bad (_("Improper extract size (%lu, position %lu)"),
5294 size, pos);
5295 size = 1;
5296 }
5297
5298 if (size <= 32 && pos < 32)
5299 {
5300 s = "dext";
5301 fmt = "t,r,+A,+C";
5302 }
5303 else if (size <= 32)
5304 {
5305 s = "dextu";
5306 fmt = "t,r,+E,+H";
5307 }
5308 else
5309 {
5310 s = "dextm";
5311 fmt = "t,r,+A,+G";
5312 }
67c0d1eb 5313 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos, size - 1);
5f74bc13 5314 }
8fc2e39e 5315 break;
5f74bc13
CD
5316
5317 case M_DINS:
5318 {
5319 unsigned long pos;
5320 unsigned long size;
5321
5322 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
5323 {
5324 as_bad (_("Unsupported large constant"));
5325 pos = size = 1;
5326 }
5327 else
5328 {
5329 pos = (unsigned long) imm_expr.X_add_number;
5330 size = (unsigned long) imm2_expr.X_add_number;
5331 }
5332
5333 if (pos > 63)
5334 {
5335 as_bad (_("Improper position (%lu)"), pos);
5336 pos = 1;
5337 }
5338 if (size == 0 || size > 64
5339 || (pos + size - 1) > 63)
5340 {
5341 as_bad (_("Improper insert size (%lu, position %lu)"),
5342 size, pos);
5343 size = 1;
5344 }
5345
5346 if (pos < 32 && (pos + size - 1) < 32)
5347 {
5348 s = "dins";
5349 fmt = "t,r,+A,+B";
5350 }
5351 else if (pos >= 32)
5352 {
5353 s = "dinsu";
5354 fmt = "t,r,+E,+F";
5355 }
5356 else
5357 {
5358 s = "dinsm";
5359 fmt = "t,r,+A,+F";
5360 }
750bdd57
AS
5361 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
5362 (int) (pos + size - 1));
5f74bc13 5363 }
8fc2e39e 5364 break;
5f74bc13 5365
252b5132
RH
5366 case M_DDIV_3:
5367 dbl = 1;
5368 case M_DIV_3:
5369 s = "mflo";
5370 goto do_div3;
5371 case M_DREM_3:
5372 dbl = 1;
5373 case M_REM_3:
5374 s = "mfhi";
5375 do_div3:
5376 if (treg == 0)
5377 {
5378 as_warn (_("Divide by zero."));
5379 if (mips_trap)
67c0d1eb 5380 macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
252b5132 5381 else
67c0d1eb 5382 macro_build (NULL, "break", "c", 7);
8fc2e39e 5383 break;
252b5132
RH
5384 }
5385
7d10b47d 5386 start_noreorder ();
252b5132
RH
5387 if (mips_trap)
5388 {
67c0d1eb
RS
5389 macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
5390 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
252b5132
RH
5391 }
5392 else
5393 {
5394 expr1.X_add_number = 8;
67c0d1eb
RS
5395 macro_build (&expr1, "bne", "s,t,p", treg, 0);
5396 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
5397 macro_build (NULL, "break", "c", 7);
252b5132
RH
5398 }
5399 expr1.X_add_number = -1;
8fc2e39e 5400 used_at = 1;
f6a22291 5401 load_register (AT, &expr1, dbl);
252b5132 5402 expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
67c0d1eb 5403 macro_build (&expr1, "bne", "s,t,p", treg, AT);
252b5132
RH
5404 if (dbl)
5405 {
5406 expr1.X_add_number = 1;
f6a22291 5407 load_register (AT, &expr1, dbl);
67c0d1eb 5408 macro_build (NULL, "dsll32", "d,w,<", AT, AT, 31);
252b5132
RH
5409 }
5410 else
5411 {
5412 expr1.X_add_number = 0x80000000;
67c0d1eb 5413 macro_build (&expr1, "lui", "t,u", AT, BFD_RELOC_HI16);
252b5132
RH
5414 }
5415 if (mips_trap)
5416 {
67c0d1eb 5417 macro_build (NULL, "teq", "s,t,q", sreg, AT, 6);
252b5132
RH
5418 /* We want to close the noreorder block as soon as possible, so
5419 that later insns are available for delay slot filling. */
7d10b47d 5420 end_noreorder ();
252b5132
RH
5421 }
5422 else
5423 {
5424 expr1.X_add_number = 8;
67c0d1eb
RS
5425 macro_build (&expr1, "bne", "s,t,p", sreg, AT);
5426 macro_build (NULL, "nop", "", 0);
252b5132
RH
5427
5428 /* We want to close the noreorder block as soon as possible, so
5429 that later insns are available for delay slot filling. */
7d10b47d 5430 end_noreorder ();
252b5132 5431
67c0d1eb 5432 macro_build (NULL, "break", "c", 6);
252b5132 5433 }
67c0d1eb 5434 macro_build (NULL, s, "d", dreg);
252b5132
RH
5435 break;
5436
5437 case M_DIV_3I:
5438 s = "div";
5439 s2 = "mflo";
5440 goto do_divi;
5441 case M_DIVU_3I:
5442 s = "divu";
5443 s2 = "mflo";
5444 goto do_divi;
5445 case M_REM_3I:
5446 s = "div";
5447 s2 = "mfhi";
5448 goto do_divi;
5449 case M_REMU_3I:
5450 s = "divu";
5451 s2 = "mfhi";
5452 goto do_divi;
5453 case M_DDIV_3I:
5454 dbl = 1;
5455 s = "ddiv";
5456 s2 = "mflo";
5457 goto do_divi;
5458 case M_DDIVU_3I:
5459 dbl = 1;
5460 s = "ddivu";
5461 s2 = "mflo";
5462 goto do_divi;
5463 case M_DREM_3I:
5464 dbl = 1;
5465 s = "ddiv";
5466 s2 = "mfhi";
5467 goto do_divi;
5468 case M_DREMU_3I:
5469 dbl = 1;
5470 s = "ddivu";
5471 s2 = "mfhi";
5472 do_divi:
5473 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5474 {
5475 as_warn (_("Divide by zero."));
5476 if (mips_trap)
67c0d1eb 5477 macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
252b5132 5478 else
67c0d1eb 5479 macro_build (NULL, "break", "c", 7);
8fc2e39e 5480 break;
252b5132
RH
5481 }
5482 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5483 {
5484 if (strcmp (s2, "mflo") == 0)
67c0d1eb 5485 move_register (dreg, sreg);
252b5132 5486 else
67c0d1eb 5487 move_register (dreg, 0);
8fc2e39e 5488 break;
252b5132
RH
5489 }
5490 if (imm_expr.X_op == O_constant
5491 && imm_expr.X_add_number == -1
5492 && s[strlen (s) - 1] != 'u')
5493 {
5494 if (strcmp (s2, "mflo") == 0)
5495 {
67c0d1eb 5496 macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
252b5132
RH
5497 }
5498 else
67c0d1eb 5499 move_register (dreg, 0);
8fc2e39e 5500 break;
252b5132
RH
5501 }
5502
8fc2e39e 5503 used_at = 1;
67c0d1eb
RS
5504 load_register (AT, &imm_expr, dbl);
5505 macro_build (NULL, s, "z,s,t", sreg, AT);
5506 macro_build (NULL, s2, "d", dreg);
252b5132
RH
5507 break;
5508
5509 case M_DIVU_3:
5510 s = "divu";
5511 s2 = "mflo";
5512 goto do_divu3;
5513 case M_REMU_3:
5514 s = "divu";
5515 s2 = "mfhi";
5516 goto do_divu3;
5517 case M_DDIVU_3:
5518 s = "ddivu";
5519 s2 = "mflo";
5520 goto do_divu3;
5521 case M_DREMU_3:
5522 s = "ddivu";
5523 s2 = "mfhi";
5524 do_divu3:
7d10b47d 5525 start_noreorder ();
252b5132
RH
5526 if (mips_trap)
5527 {
67c0d1eb
RS
5528 macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
5529 macro_build (NULL, s, "z,s,t", sreg, treg);
252b5132
RH
5530 /* We want to close the noreorder block as soon as possible, so
5531 that later insns are available for delay slot filling. */
7d10b47d 5532 end_noreorder ();
252b5132
RH
5533 }
5534 else
5535 {
5536 expr1.X_add_number = 8;
67c0d1eb
RS
5537 macro_build (&expr1, "bne", "s,t,p", treg, 0);
5538 macro_build (NULL, s, "z,s,t", sreg, treg);
252b5132
RH
5539
5540 /* We want to close the noreorder block as soon as possible, so
5541 that later insns are available for delay slot filling. */
7d10b47d 5542 end_noreorder ();
67c0d1eb 5543 macro_build (NULL, "break", "c", 7);
252b5132 5544 }
67c0d1eb 5545 macro_build (NULL, s2, "d", dreg);
8fc2e39e 5546 break;
252b5132 5547
1abe91b1
MR
5548 case M_DLCA_AB:
5549 dbl = 1;
5550 case M_LCA_AB:
5551 call = 1;
5552 goto do_la;
252b5132
RH
5553 case M_DLA_AB:
5554 dbl = 1;
5555 case M_LA_AB:
1abe91b1 5556 do_la:
252b5132
RH
5557 /* Load the address of a symbol into a register. If breg is not
5558 zero, we then add a base register to it. */
5559
3bec30a8
TS
5560 if (dbl && HAVE_32BIT_GPRS)
5561 as_warn (_("dla used to load 32-bit register"));
5562
c90bbe5b 5563 if (! dbl && HAVE_64BIT_OBJECTS)
3bec30a8
TS
5564 as_warn (_("la used to load 64-bit address"));
5565
0c11417f
MR
5566 if (offset_expr.X_op == O_constant
5567 && offset_expr.X_add_number >= -0x8000
5568 && offset_expr.X_add_number < 0x8000)
5569 {
aed1a261 5570 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
17a2f251 5571 "t,r,j", treg, sreg, BFD_RELOC_LO16);
8fc2e39e 5572 break;
0c11417f
MR
5573 }
5574
741fe287 5575 if (mips_opts.at && (treg == breg))
afdbd6d0
CD
5576 {
5577 tempreg = AT;
5578 used_at = 1;
5579 }
5580 else
5581 {
5582 tempreg = treg;
afdbd6d0
CD
5583 }
5584
252b5132
RH
5585 if (offset_expr.X_op != O_symbol
5586 && offset_expr.X_op != O_constant)
5587 {
5588 as_bad (_("expression too complex"));
5589 offset_expr.X_op = O_constant;
5590 }
5591
252b5132 5592 if (offset_expr.X_op == O_constant)
aed1a261 5593 load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
252b5132
RH
5594 else if (mips_pic == NO_PIC)
5595 {
d6bc6245 5596 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 5597 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
5598 Otherwise we want
5599 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5600 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5601 If we have a constant, we need two instructions anyhow,
d6bc6245 5602 so we may as well always use the latter form.
76b3015f 5603
6caf9ef4
TS
5604 With 64bit address space and a usable $at we want
5605 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5606 lui $at,<sym> (BFD_RELOC_HI16_S)
5607 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5608 daddiu $at,<sym> (BFD_RELOC_LO16)
5609 dsll32 $tempreg,0
5610 daddu $tempreg,$tempreg,$at
5611
5612 If $at is already in use, we use a path which is suboptimal
5613 on superscalar processors.
5614 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5615 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5616 dsll $tempreg,16
5617 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5618 dsll $tempreg,16
5619 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
5620
5621 For GP relative symbols in 64bit address space we can use
5622 the same sequence as in 32bit address space. */
aed1a261 5623 if (HAVE_64BIT_SYMBOLS)
252b5132 5624 {
6caf9ef4
TS
5625 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5626 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5627 {
5628 relax_start (offset_expr.X_add_symbol);
5629 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5630 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
5631 relax_switch ();
5632 }
d6bc6245 5633
741fe287 5634 if (used_at == 0 && mips_opts.at)
98d3f06f 5635 {
67c0d1eb 5636 macro_build (&offset_expr, "lui", "t,u",
17a2f251 5637 tempreg, BFD_RELOC_MIPS_HIGHEST);
67c0d1eb 5638 macro_build (&offset_expr, "lui", "t,u",
17a2f251 5639 AT, BFD_RELOC_HI16_S);
67c0d1eb 5640 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5641 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
67c0d1eb 5642 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5643 AT, AT, BFD_RELOC_LO16);
67c0d1eb
RS
5644 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
5645 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
98d3f06f
KH
5646 used_at = 1;
5647 }
5648 else
5649 {
67c0d1eb 5650 macro_build (&offset_expr, "lui", "t,u",
17a2f251 5651 tempreg, BFD_RELOC_MIPS_HIGHEST);
67c0d1eb 5652 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5653 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
67c0d1eb
RS
5654 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5655 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5656 tempreg, tempreg, BFD_RELOC_HI16_S);
67c0d1eb
RS
5657 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5658 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5659 tempreg, tempreg, BFD_RELOC_LO16);
98d3f06f 5660 }
6caf9ef4
TS
5661
5662 if (mips_relax.sequence)
5663 relax_end ();
98d3f06f
KH
5664 }
5665 else
5666 {
5667 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 5668 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
98d3f06f 5669 {
4d7206a2 5670 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
5671 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5672 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
4d7206a2 5673 relax_switch ();
98d3f06f 5674 }
6943caf0
ILT
5675 if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
5676 as_bad (_("offset too large"));
67c0d1eb
RS
5677 macro_build_lui (&offset_expr, tempreg);
5678 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5679 tempreg, tempreg, BFD_RELOC_LO16);
4d7206a2
RS
5680 if (mips_relax.sequence)
5681 relax_end ();
98d3f06f 5682 }
252b5132 5683 }
0a44bf69 5684 else if (!mips_big_got && !HAVE_NEWABI)
252b5132 5685 {
9117d219
NC
5686 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
5687
252b5132
RH
5688 /* If this is a reference to an external symbol, and there
5689 is no constant, we want
5690 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
1abe91b1 5691 or for lca or if tempreg is PIC_CALL_REG
9117d219 5692 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
252b5132
RH
5693 For a local symbol, we want
5694 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5695 nop
5696 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5697
5698 If we have a small constant, and this is a reference to
5699 an external symbol, we want
5700 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5701 nop
5702 addiu $tempreg,$tempreg,<constant>
5703 For a local symbol, we want the same instruction
5704 sequence, but we output a BFD_RELOC_LO16 reloc on the
5705 addiu instruction.
5706
5707 If we have a large constant, and this is a reference to
5708 an external symbol, we want
5709 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5710 lui $at,<hiconstant>
5711 addiu $at,$at,<loconstant>
5712 addu $tempreg,$tempreg,$at
5713 For a local symbol, we want the same instruction
5714 sequence, but we output a BFD_RELOC_LO16 reloc on the
ed6fb7bd 5715 addiu instruction.
ed6fb7bd
SC
5716 */
5717
4d7206a2 5718 if (offset_expr.X_add_number == 0)
252b5132 5719 {
0a44bf69
RS
5720 if (mips_pic == SVR4_PIC
5721 && breg == 0
5722 && (call || tempreg == PIC_CALL_REG))
4d7206a2
RS
5723 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
5724
5725 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
5726 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5727 lw_reloc_type, mips_gp_register);
4d7206a2 5728 if (breg != 0)
252b5132
RH
5729 {
5730 /* We're going to put in an addu instruction using
5731 tempreg, so we may as well insert the nop right
5732 now. */
269137b2 5733 load_delay_nop ();
252b5132 5734 }
4d7206a2 5735 relax_switch ();
67c0d1eb
RS
5736 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5737 tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 5738 load_delay_nop ();
67c0d1eb
RS
5739 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5740 tempreg, tempreg, BFD_RELOC_LO16);
4d7206a2 5741 relax_end ();
252b5132
RH
5742 /* FIXME: If breg == 0, and the next instruction uses
5743 $tempreg, then if this variant case is used an extra
5744 nop will be generated. */
5745 }
4d7206a2
RS
5746 else if (offset_expr.X_add_number >= -0x8000
5747 && offset_expr.X_add_number < 0x8000)
252b5132 5748 {
67c0d1eb 5749 load_got_offset (tempreg, &offset_expr);
269137b2 5750 load_delay_nop ();
67c0d1eb 5751 add_got_offset (tempreg, &offset_expr);
252b5132
RH
5752 }
5753 else
5754 {
4d7206a2
RS
5755 expr1.X_add_number = offset_expr.X_add_number;
5756 offset_expr.X_add_number =
5757 ((offset_expr.X_add_number + 0x8000) & 0xffff) - 0x8000;
67c0d1eb 5758 load_got_offset (tempreg, &offset_expr);
f6a22291 5759 offset_expr.X_add_number = expr1.X_add_number;
252b5132
RH
5760 /* If we are going to add in a base register, and the
5761 target register and the base register are the same,
5762 then we are using AT as a temporary register. Since
5763 we want to load the constant into AT, we add our
5764 current AT (from the global offset table) and the
5765 register into the register now, and pretend we were
5766 not using a base register. */
67c0d1eb 5767 if (breg == treg)
252b5132 5768 {
269137b2 5769 load_delay_nop ();
67c0d1eb 5770 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5771 treg, AT, breg);
252b5132
RH
5772 breg = 0;
5773 tempreg = treg;
252b5132 5774 }
f6a22291 5775 add_got_offset_hilo (tempreg, &offset_expr, AT);
252b5132
RH
5776 used_at = 1;
5777 }
5778 }
0a44bf69 5779 else if (!mips_big_got && HAVE_NEWABI)
f5040a92 5780 {
67c0d1eb 5781 int add_breg_early = 0;
f5040a92
AO
5782
5783 /* If this is a reference to an external, and there is no
5784 constant, or local symbol (*), with or without a
5785 constant, we want
5786 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
1abe91b1 5787 or for lca or if tempreg is PIC_CALL_REG
f5040a92
AO
5788 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5789
5790 If we have a small constant, and this is a reference to
5791 an external symbol, we want
5792 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5793 addiu $tempreg,$tempreg,<constant>
5794
5795 If we have a large constant, and this is a reference to
5796 an external symbol, we want
5797 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5798 lui $at,<hiconstant>
5799 addiu $at,$at,<loconstant>
5800 addu $tempreg,$tempreg,$at
5801
5802 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
5803 local symbols, even though it introduces an additional
5804 instruction. */
5805
f5040a92
AO
5806 if (offset_expr.X_add_number)
5807 {
4d7206a2 5808 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
5809 offset_expr.X_add_number = 0;
5810
4d7206a2 5811 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
5812 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5813 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
5814
5815 if (expr1.X_add_number >= -0x8000
5816 && expr1.X_add_number < 0x8000)
5817 {
67c0d1eb
RS
5818 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5819 tempreg, tempreg, BFD_RELOC_LO16);
f5040a92 5820 }
ecd13cd3 5821 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
f5040a92
AO
5822 {
5823 int dreg;
5824
5825 /* If we are going to add in a base register, and the
5826 target register and the base register are the same,
5827 then we are using AT as a temporary register. Since
5828 we want to load the constant into AT, we add our
5829 current AT (from the global offset table) and the
5830 register into the register now, and pretend we were
5831 not using a base register. */
5832 if (breg != treg)
5833 dreg = tempreg;
5834 else
5835 {
5836 assert (tempreg == AT);
67c0d1eb
RS
5837 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5838 treg, AT, breg);
f5040a92 5839 dreg = treg;
67c0d1eb 5840 add_breg_early = 1;
f5040a92
AO
5841 }
5842
f6a22291 5843 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 5844 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5845 dreg, dreg, AT);
f5040a92 5846
f5040a92
AO
5847 used_at = 1;
5848 }
5849 else
5850 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5851
4d7206a2 5852 relax_switch ();
f5040a92
AO
5853 offset_expr.X_add_number = expr1.X_add_number;
5854
67c0d1eb
RS
5855 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5856 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5857 if (add_breg_early)
f5040a92 5858 {
67c0d1eb 5859 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
f899b4b8 5860 treg, tempreg, breg);
f5040a92
AO
5861 breg = 0;
5862 tempreg = treg;
5863 }
4d7206a2 5864 relax_end ();
f5040a92 5865 }
4d7206a2 5866 else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
f5040a92 5867 {
4d7206a2 5868 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
5869 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5870 BFD_RELOC_MIPS_CALL16, mips_gp_register);
4d7206a2 5871 relax_switch ();
67c0d1eb
RS
5872 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5873 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4d7206a2 5874 relax_end ();
f5040a92 5875 }
4d7206a2 5876 else
f5040a92 5877 {
67c0d1eb
RS
5878 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5879 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
5880 }
5881 }
0a44bf69 5882 else if (mips_big_got && !HAVE_NEWABI)
252b5132 5883 {
67c0d1eb 5884 int gpdelay;
9117d219
NC
5885 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
5886 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
ed6fb7bd 5887 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
252b5132
RH
5888
5889 /* This is the large GOT case. If this is a reference to an
5890 external symbol, and there is no constant, we want
5891 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5892 addu $tempreg,$tempreg,$gp
5893 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
1abe91b1 5894 or for lca or if tempreg is PIC_CALL_REG
9117d219
NC
5895 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5896 addu $tempreg,$tempreg,$gp
5897 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
252b5132
RH
5898 For a local symbol, we want
5899 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5900 nop
5901 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5902
5903 If we have a small constant, and this is a reference to
5904 an external symbol, we want
5905 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5906 addu $tempreg,$tempreg,$gp
5907 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5908 nop
5909 addiu $tempreg,$tempreg,<constant>
5910 For a local symbol, we want
5911 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5912 nop
5913 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
5914
5915 If we have a large constant, and this is a reference to
5916 an external symbol, we want
5917 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5918 addu $tempreg,$tempreg,$gp
5919 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5920 lui $at,<hiconstant>
5921 addiu $at,$at,<loconstant>
5922 addu $tempreg,$tempreg,$at
5923 For a local symbol, we want
5924 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5925 lui $at,<hiconstant>
5926 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
5927 addu $tempreg,$tempreg,$at
f5040a92 5928 */
438c16b8 5929
252b5132
RH
5930 expr1.X_add_number = offset_expr.X_add_number;
5931 offset_expr.X_add_number = 0;
4d7206a2 5932 relax_start (offset_expr.X_add_symbol);
67c0d1eb 5933 gpdelay = reg_needs_delay (mips_gp_register);
1abe91b1
MR
5934 if (expr1.X_add_number == 0 && breg == 0
5935 && (call || tempreg == PIC_CALL_REG))
9117d219
NC
5936 {
5937 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
5938 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
5939 }
67c0d1eb
RS
5940 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
5941 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5942 tempreg, tempreg, mips_gp_register);
67c0d1eb 5943 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
17a2f251 5944 tempreg, lw_reloc_type, tempreg);
252b5132
RH
5945 if (expr1.X_add_number == 0)
5946 {
67c0d1eb 5947 if (breg != 0)
252b5132
RH
5948 {
5949 /* We're going to put in an addu instruction using
5950 tempreg, so we may as well insert the nop right
5951 now. */
269137b2 5952 load_delay_nop ();
252b5132 5953 }
252b5132
RH
5954 }
5955 else if (expr1.X_add_number >= -0x8000
5956 && expr1.X_add_number < 0x8000)
5957 {
269137b2 5958 load_delay_nop ();
67c0d1eb 5959 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 5960 tempreg, tempreg, BFD_RELOC_LO16);
252b5132
RH
5961 }
5962 else
5963 {
67c0d1eb 5964 int dreg;
252b5132
RH
5965
5966 /* If we are going to add in a base register, and the
5967 target register and the base register are the same,
5968 then we are using AT as a temporary register. Since
5969 we want to load the constant into AT, we add our
5970 current AT (from the global offset table) and the
5971 register into the register now, and pretend we were
5972 not using a base register. */
5973 if (breg != treg)
67c0d1eb 5974 dreg = tempreg;
252b5132
RH
5975 else
5976 {
5977 assert (tempreg == AT);
269137b2 5978 load_delay_nop ();
67c0d1eb 5979 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5980 treg, AT, breg);
252b5132 5981 dreg = treg;
252b5132
RH
5982 }
5983
f6a22291 5984 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 5985 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
252b5132 5986
252b5132
RH
5987 used_at = 1;
5988 }
4d7206a2
RS
5989 offset_expr.X_add_number =
5990 ((expr1.X_add_number + 0x8000) & 0xffff) - 0x8000;
5991 relax_switch ();
252b5132 5992
67c0d1eb 5993 if (gpdelay)
252b5132
RH
5994 {
5995 /* This is needed because this instruction uses $gp, but
f5040a92 5996 the first instruction on the main stream does not. */
67c0d1eb 5997 macro_build (NULL, "nop", "");
252b5132 5998 }
ed6fb7bd 5999
67c0d1eb
RS
6000 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6001 local_reloc_type, mips_gp_register);
f5040a92 6002 if (expr1.X_add_number >= -0x8000
252b5132
RH
6003 && expr1.X_add_number < 0x8000)
6004 {
269137b2 6005 load_delay_nop ();
67c0d1eb
RS
6006 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6007 tempreg, tempreg, BFD_RELOC_LO16);
252b5132 6008 /* FIXME: If add_number is 0, and there was no base
f5040a92
AO
6009 register, the external symbol case ended with a load,
6010 so if the symbol turns out to not be external, and
6011 the next instruction uses tempreg, an unnecessary nop
6012 will be inserted. */
252b5132
RH
6013 }
6014 else
6015 {
6016 if (breg == treg)
6017 {
6018 /* We must add in the base register now, as in the
f5040a92 6019 external symbol case. */
252b5132 6020 assert (tempreg == AT);
269137b2 6021 load_delay_nop ();
67c0d1eb 6022 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6023 treg, AT, breg);
252b5132
RH
6024 tempreg = treg;
6025 /* We set breg to 0 because we have arranged to add
f5040a92 6026 it in in both cases. */
252b5132
RH
6027 breg = 0;
6028 }
6029
67c0d1eb
RS
6030 macro_build_lui (&expr1, AT);
6031 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 6032 AT, AT, BFD_RELOC_LO16);
67c0d1eb 6033 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6034 tempreg, tempreg, AT);
8fc2e39e 6035 used_at = 1;
252b5132 6036 }
4d7206a2 6037 relax_end ();
252b5132 6038 }
0a44bf69 6039 else if (mips_big_got && HAVE_NEWABI)
f5040a92 6040 {
f5040a92
AO
6041 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
6042 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
67c0d1eb 6043 int add_breg_early = 0;
f5040a92
AO
6044
6045 /* This is the large GOT case. If this is a reference to an
6046 external symbol, and there is no constant, we want
6047 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6048 add $tempreg,$tempreg,$gp
6049 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
1abe91b1 6050 or for lca or if tempreg is PIC_CALL_REG
f5040a92
AO
6051 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
6052 add $tempreg,$tempreg,$gp
6053 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
6054
6055 If we have a small constant, and this is a reference to
6056 an external symbol, we want
6057 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6058 add $tempreg,$tempreg,$gp
6059 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6060 addi $tempreg,$tempreg,<constant>
6061
6062 If we have a large constant, and this is a reference to
6063 an external symbol, we want
6064 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6065 addu $tempreg,$tempreg,$gp
6066 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6067 lui $at,<hiconstant>
6068 addi $at,$at,<loconstant>
6069 add $tempreg,$tempreg,$at
6070
6071 If we have NewABI, and we know it's a local symbol, we want
6072 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6073 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
6074 otherwise we have to resort to GOT_HI16/GOT_LO16. */
6075
4d7206a2 6076 relax_start (offset_expr.X_add_symbol);
f5040a92 6077
4d7206a2 6078 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
6079 offset_expr.X_add_number = 0;
6080
1abe91b1
MR
6081 if (expr1.X_add_number == 0 && breg == 0
6082 && (call || tempreg == PIC_CALL_REG))
f5040a92
AO
6083 {
6084 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
6085 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
6086 }
67c0d1eb
RS
6087 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
6088 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6089 tempreg, tempreg, mips_gp_register);
67c0d1eb
RS
6090 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6091 tempreg, lw_reloc_type, tempreg);
f5040a92
AO
6092
6093 if (expr1.X_add_number == 0)
4d7206a2 6094 ;
f5040a92
AO
6095 else if (expr1.X_add_number >= -0x8000
6096 && expr1.X_add_number < 0x8000)
6097 {
67c0d1eb 6098 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 6099 tempreg, tempreg, BFD_RELOC_LO16);
f5040a92 6100 }
ecd13cd3 6101 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
f5040a92
AO
6102 {
6103 int dreg;
6104
6105 /* If we are going to add in a base register, and the
6106 target register and the base register are the same,
6107 then we are using AT as a temporary register. Since
6108 we want to load the constant into AT, we add our
6109 current AT (from the global offset table) and the
6110 register into the register now, and pretend we were
6111 not using a base register. */
6112 if (breg != treg)
6113 dreg = tempreg;
6114 else
6115 {
6116 assert (tempreg == AT);
67c0d1eb 6117 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6118 treg, AT, breg);
f5040a92 6119 dreg = treg;
67c0d1eb 6120 add_breg_early = 1;
f5040a92
AO
6121 }
6122
f6a22291 6123 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 6124 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
f5040a92 6125
f5040a92
AO
6126 used_at = 1;
6127 }
6128 else
6129 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
6130
4d7206a2 6131 relax_switch ();
f5040a92 6132 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
6133 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6134 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6135 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6136 tempreg, BFD_RELOC_MIPS_GOT_OFST);
6137 if (add_breg_early)
f5040a92 6138 {
67c0d1eb 6139 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6140 treg, tempreg, breg);
f5040a92
AO
6141 breg = 0;
6142 tempreg = treg;
6143 }
4d7206a2 6144 relax_end ();
f5040a92 6145 }
252b5132
RH
6146 else
6147 abort ();
6148
6149 if (breg != 0)
aed1a261 6150 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", treg, tempreg, breg);
252b5132
RH
6151 break;
6152
52b6b6b9
JM
6153 case M_MSGSND:
6154 {
6155 unsigned long temp = (treg << 16) | (0x01);
6156 macro_build (NULL, "c2", "C", temp);
6157 }
6158 /* AT is not used, just return */
6159 return;
6160
6161 case M_MSGLD:
6162 {
6163 unsigned long temp = (0x02);
6164 macro_build (NULL, "c2", "C", temp);
6165 }
6166 /* AT is not used, just return */
6167 return;
6168
6169 case M_MSGLD_T:
6170 {
6171 unsigned long temp = (treg << 16) | (0x02);
6172 macro_build (NULL, "c2", "C", temp);
6173 }
6174 /* AT is not used, just return */
6175 return;
6176
6177 case M_MSGWAIT:
6178 macro_build (NULL, "c2", "C", 3);
6179 /* AT is not used, just return */
6180 return;
6181
6182 case M_MSGWAIT_T:
6183 {
6184 unsigned long temp = (treg << 16) | 0x03;
6185 macro_build (NULL, "c2", "C", temp);
6186 }
6187 /* AT is not used, just return */
6188 return;
6189
252b5132
RH
6190 case M_J_A:
6191 /* The j instruction may not be used in PIC code, since it
6192 requires an absolute address. We convert it to a b
6193 instruction. */
6194 if (mips_pic == NO_PIC)
67c0d1eb 6195 macro_build (&offset_expr, "j", "a");
252b5132 6196 else
67c0d1eb 6197 macro_build (&offset_expr, "b", "p");
8fc2e39e 6198 break;
252b5132
RH
6199
6200 /* The jal instructions must be handled as macros because when
6201 generating PIC code they expand to multi-instruction
6202 sequences. Normally they are simple instructions. */
6203 case M_JAL_1:
6204 dreg = RA;
6205 /* Fall through. */
6206 case M_JAL_2:
3e722fb5 6207 if (mips_pic == NO_PIC)
67c0d1eb 6208 macro_build (NULL, "jalr", "d,s", dreg, sreg);
0a44bf69 6209 else
252b5132
RH
6210 {
6211 if (sreg != PIC_CALL_REG)
6212 as_warn (_("MIPS PIC call to register other than $25"));
bdaaa2e1 6213
67c0d1eb 6214 macro_build (NULL, "jalr", "d,s", dreg, sreg);
0a44bf69 6215 if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
252b5132 6216 {
6478892d
TS
6217 if (mips_cprestore_offset < 0)
6218 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6219 else
6220 {
7a621144
DJ
6221 if (! mips_frame_reg_valid)
6222 {
6223 as_warn (_("No .frame pseudo-op used in PIC code"));
6224 /* Quiet this warning. */
6225 mips_frame_reg_valid = 1;
6226 }
6227 if (! mips_cprestore_valid)
6228 {
6229 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6230 /* Quiet this warning. */
6231 mips_cprestore_valid = 1;
6232 }
6478892d 6233 expr1.X_add_number = mips_cprestore_offset;
67c0d1eb 6234 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
f899b4b8 6235 mips_gp_register,
256ab948
TS
6236 mips_frame_reg,
6237 HAVE_64BIT_ADDRESSES);
6478892d 6238 }
252b5132
RH
6239 }
6240 }
252b5132 6241
8fc2e39e 6242 break;
252b5132
RH
6243
6244 case M_JAL_A:
6245 if (mips_pic == NO_PIC)
67c0d1eb 6246 macro_build (&offset_expr, "jal", "a");
252b5132
RH
6247 else if (mips_pic == SVR4_PIC)
6248 {
6249 /* If this is a reference to an external symbol, and we are
6250 using a small GOT, we want
6251 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
6252 nop
f9419b05 6253 jalr $ra,$25
252b5132
RH
6254 nop
6255 lw $gp,cprestore($sp)
6256 The cprestore value is set using the .cprestore
6257 pseudo-op. If we are using a big GOT, we want
6258 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
6259 addu $25,$25,$gp
6260 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
6261 nop
f9419b05 6262 jalr $ra,$25
252b5132
RH
6263 nop
6264 lw $gp,cprestore($sp)
6265 If the symbol is not external, we want
6266 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6267 nop
6268 addiu $25,$25,<sym> (BFD_RELOC_LO16)
f9419b05 6269 jalr $ra,$25
252b5132 6270 nop
438c16b8 6271 lw $gp,cprestore($sp)
f5040a92
AO
6272
6273 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
6274 sequences above, minus nops, unless the symbol is local,
6275 which enables us to use GOT_PAGE/GOT_OFST (big got) or
6276 GOT_DISP. */
438c16b8 6277 if (HAVE_NEWABI)
252b5132 6278 {
f5040a92
AO
6279 if (! mips_big_got)
6280 {
4d7206a2 6281 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
6282 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6283 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
f5040a92 6284 mips_gp_register);
4d7206a2 6285 relax_switch ();
67c0d1eb
RS
6286 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6287 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
4d7206a2
RS
6288 mips_gp_register);
6289 relax_end ();
f5040a92
AO
6290 }
6291 else
6292 {
4d7206a2 6293 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
6294 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
6295 BFD_RELOC_MIPS_CALL_HI16);
6296 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
6297 PIC_CALL_REG, mips_gp_register);
6298 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6299 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
6300 PIC_CALL_REG);
4d7206a2 6301 relax_switch ();
67c0d1eb
RS
6302 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6303 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
6304 mips_gp_register);
6305 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6306 PIC_CALL_REG, PIC_CALL_REG,
17a2f251 6307 BFD_RELOC_MIPS_GOT_OFST);
4d7206a2 6308 relax_end ();
f5040a92 6309 }
684022ea 6310
67c0d1eb 6311 macro_build_jalr (&offset_expr);
252b5132
RH
6312 }
6313 else
6314 {
4d7206a2 6315 relax_start (offset_expr.X_add_symbol);
438c16b8
TS
6316 if (! mips_big_got)
6317 {
67c0d1eb
RS
6318 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6319 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
17a2f251 6320 mips_gp_register);
269137b2 6321 load_delay_nop ();
4d7206a2 6322 relax_switch ();
438c16b8 6323 }
252b5132 6324 else
252b5132 6325 {
67c0d1eb
RS
6326 int gpdelay;
6327
6328 gpdelay = reg_needs_delay (mips_gp_register);
6329 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
6330 BFD_RELOC_MIPS_CALL_HI16);
6331 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
6332 PIC_CALL_REG, mips_gp_register);
6333 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6334 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
6335 PIC_CALL_REG);
269137b2 6336 load_delay_nop ();
4d7206a2 6337 relax_switch ();
67c0d1eb
RS
6338 if (gpdelay)
6339 macro_build (NULL, "nop", "");
252b5132 6340 }
67c0d1eb
RS
6341 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6342 PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
4d7206a2 6343 mips_gp_register);
269137b2 6344 load_delay_nop ();
67c0d1eb
RS
6345 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6346 PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
4d7206a2 6347 relax_end ();
67c0d1eb 6348 macro_build_jalr (&offset_expr);
438c16b8 6349
6478892d
TS
6350 if (mips_cprestore_offset < 0)
6351 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6352 else
6353 {
7a621144
DJ
6354 if (! mips_frame_reg_valid)
6355 {
6356 as_warn (_("No .frame pseudo-op used in PIC code"));
6357 /* Quiet this warning. */
6358 mips_frame_reg_valid = 1;
6359 }
6360 if (! mips_cprestore_valid)
6361 {
6362 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6363 /* Quiet this warning. */
6364 mips_cprestore_valid = 1;
6365 }
6478892d 6366 if (mips_opts.noreorder)
67c0d1eb 6367 macro_build (NULL, "nop", "");
6478892d 6368 expr1.X_add_number = mips_cprestore_offset;
67c0d1eb 6369 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
f899b4b8 6370 mips_gp_register,
256ab948
TS
6371 mips_frame_reg,
6372 HAVE_64BIT_ADDRESSES);
6478892d 6373 }
252b5132
RH
6374 }
6375 }
0a44bf69
RS
6376 else if (mips_pic == VXWORKS_PIC)
6377 as_bad (_("Non-PIC jump used in PIC library"));
252b5132
RH
6378 else
6379 abort ();
6380
8fc2e39e 6381 break;
252b5132
RH
6382
6383 case M_LB_AB:
6384 s = "lb";
6385 goto ld;
6386 case M_LBU_AB:
6387 s = "lbu";
6388 goto ld;
6389 case M_LH_AB:
6390 s = "lh";
6391 goto ld;
6392 case M_LHU_AB:
6393 s = "lhu";
6394 goto ld;
6395 case M_LW_AB:
6396 s = "lw";
6397 goto ld;
6398 case M_LWC0_AB:
6399 s = "lwc0";
bdaaa2e1 6400 /* Itbl support may require additional care here. */
252b5132
RH
6401 coproc = 1;
6402 goto ld;
6403 case M_LWC1_AB:
6404 s = "lwc1";
bdaaa2e1 6405 /* Itbl support may require additional care here. */
252b5132
RH
6406 coproc = 1;
6407 goto ld;
6408 case M_LWC2_AB:
6409 s = "lwc2";
bdaaa2e1 6410 /* Itbl support may require additional care here. */
252b5132
RH
6411 coproc = 1;
6412 goto ld;
6413 case M_LWC3_AB:
6414 s = "lwc3";
bdaaa2e1 6415 /* Itbl support may require additional care here. */
252b5132
RH
6416 coproc = 1;
6417 goto ld;
6418 case M_LWL_AB:
6419 s = "lwl";
6420 lr = 1;
6421 goto ld;
6422 case M_LWR_AB:
6423 s = "lwr";
6424 lr = 1;
6425 goto ld;
6426 case M_LDC1_AB:
252b5132 6427 s = "ldc1";
bdaaa2e1 6428 /* Itbl support may require additional care here. */
252b5132
RH
6429 coproc = 1;
6430 goto ld;
6431 case M_LDC2_AB:
6432 s = "ldc2";
bdaaa2e1 6433 /* Itbl support may require additional care here. */
252b5132
RH
6434 coproc = 1;
6435 goto ld;
6436 case M_LDC3_AB:
6437 s = "ldc3";
bdaaa2e1 6438 /* Itbl support may require additional care here. */
252b5132
RH
6439 coproc = 1;
6440 goto ld;
6441 case M_LDL_AB:
6442 s = "ldl";
6443 lr = 1;
6444 goto ld;
6445 case M_LDR_AB:
6446 s = "ldr";
6447 lr = 1;
6448 goto ld;
6449 case M_LL_AB:
6450 s = "ll";
6451 goto ld;
6452 case M_LLD_AB:
6453 s = "lld";
6454 goto ld;
6455 case M_LWU_AB:
6456 s = "lwu";
6457 ld:
8fc2e39e 6458 if (breg == treg || coproc || lr)
252b5132
RH
6459 {
6460 tempreg = AT;
6461 used_at = 1;
6462 }
6463 else
6464 {
6465 tempreg = treg;
252b5132
RH
6466 }
6467 goto ld_st;
6468 case M_SB_AB:
6469 s = "sb";
6470 goto st;
6471 case M_SH_AB:
6472 s = "sh";
6473 goto st;
6474 case M_SW_AB:
6475 s = "sw";
6476 goto st;
6477 case M_SWC0_AB:
6478 s = "swc0";
bdaaa2e1 6479 /* Itbl support may require additional care here. */
252b5132
RH
6480 coproc = 1;
6481 goto st;
6482 case M_SWC1_AB:
6483 s = "swc1";
bdaaa2e1 6484 /* Itbl support may require additional care here. */
252b5132
RH
6485 coproc = 1;
6486 goto st;
6487 case M_SWC2_AB:
6488 s = "swc2";
bdaaa2e1 6489 /* Itbl support may require additional care here. */
252b5132
RH
6490 coproc = 1;
6491 goto st;
6492 case M_SWC3_AB:
6493 s = "swc3";
bdaaa2e1 6494 /* Itbl support may require additional care here. */
252b5132
RH
6495 coproc = 1;
6496 goto st;
6497 case M_SWL_AB:
6498 s = "swl";
6499 goto st;
6500 case M_SWR_AB:
6501 s = "swr";
6502 goto st;
6503 case M_SC_AB:
6504 s = "sc";
6505 goto st;
6506 case M_SCD_AB:
6507 s = "scd";
6508 goto st;
d43b4baf
TS
6509 case M_CACHE_AB:
6510 s = "cache";
6511 goto st;
252b5132 6512 case M_SDC1_AB:
252b5132
RH
6513 s = "sdc1";
6514 coproc = 1;
bdaaa2e1 6515 /* Itbl support may require additional care here. */
252b5132
RH
6516 goto st;
6517 case M_SDC2_AB:
6518 s = "sdc2";
bdaaa2e1 6519 /* Itbl support may require additional care here. */
252b5132
RH
6520 coproc = 1;
6521 goto st;
6522 case M_SDC3_AB:
6523 s = "sdc3";
bdaaa2e1 6524 /* Itbl support may require additional care here. */
252b5132
RH
6525 coproc = 1;
6526 goto st;
6527 case M_SDL_AB:
6528 s = "sdl";
6529 goto st;
6530 case M_SDR_AB:
6531 s = "sdr";
6532 st:
8fc2e39e
TS
6533 tempreg = AT;
6534 used_at = 1;
252b5132 6535 ld_st:
b19e8a9b
AN
6536 if (coproc
6537 && NO_ISA_COP (mips_opts.arch)
6538 && (ip->insn_mo->pinfo2 & (INSN2_M_FP_S | INSN2_M_FP_D)) == 0)
6539 {
6540 as_bad (_("opcode not supported on this processor: %s"),
6541 mips_cpu_info_from_arch (mips_opts.arch)->name);
6542 break;
6543 }
6544
bdaaa2e1 6545 /* Itbl support may require additional care here. */
252b5132
RH
6546 if (mask == M_LWC1_AB
6547 || mask == M_SWC1_AB
6548 || mask == M_LDC1_AB
6549 || mask == M_SDC1_AB
6550 || mask == M_L_DAB
6551 || mask == M_S_DAB)
6552 fmt = "T,o(b)";
d43b4baf
TS
6553 else if (mask == M_CACHE_AB)
6554 fmt = "k,o(b)";
252b5132
RH
6555 else if (coproc)
6556 fmt = "E,o(b)";
6557 else
6558 fmt = "t,o(b)";
6559
6560 if (offset_expr.X_op != O_constant
6561 && offset_expr.X_op != O_symbol)
6562 {
6563 as_bad (_("expression too complex"));
6564 offset_expr.X_op = O_constant;
6565 }
6566
2051e8c4
MR
6567 if (HAVE_32BIT_ADDRESSES
6568 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
55e08f71
NC
6569 {
6570 char value [32];
6571
6572 sprintf_vma (value, offset_expr.X_add_number);
20e1fcfd 6573 as_bad (_("Number (0x%s) larger than 32 bits"), value);
55e08f71 6574 }
2051e8c4 6575
252b5132
RH
6576 /* A constant expression in PIC code can be handled just as it
6577 is in non PIC code. */
aed1a261
RS
6578 if (offset_expr.X_op == O_constant)
6579 {
aed1a261
RS
6580 expr1.X_add_number = ((offset_expr.X_add_number + 0x8000)
6581 & ~(bfd_vma) 0xffff);
2051e8c4 6582 normalize_address_expr (&expr1);
aed1a261
RS
6583 load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
6584 if (breg != 0)
6585 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6586 tempreg, tempreg, breg);
6587 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6588 }
6589 else if (mips_pic == NO_PIC)
252b5132
RH
6590 {
6591 /* If this is a reference to a GP relative symbol, and there
6592 is no base register, we want
cdf6fd85 6593 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
252b5132
RH
6594 Otherwise, if there is no base register, we want
6595 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
6596 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6597 If we have a constant, we need two instructions anyhow,
6598 so we always use the latter form.
6599
6600 If we have a base register, and this is a reference to a
6601 GP relative symbol, we want
6602 addu $tempreg,$breg,$gp
cdf6fd85 6603 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
252b5132
RH
6604 Otherwise we want
6605 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
6606 addu $tempreg,$tempreg,$breg
6607 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
d6bc6245 6608 With a constant we always use the latter case.
76b3015f 6609
d6bc6245
TS
6610 With 64bit address space and no base register and $at usable,
6611 we want
6612 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6613 lui $at,<sym> (BFD_RELOC_HI16_S)
6614 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6615 dsll32 $tempreg,0
6616 daddu $tempreg,$at
6617 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6618 If we have a base register, we want
6619 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6620 lui $at,<sym> (BFD_RELOC_HI16_S)
6621 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6622 daddu $at,$breg
6623 dsll32 $tempreg,0
6624 daddu $tempreg,$at
6625 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6626
6627 Without $at we can't generate the optimal path for superscalar
6628 processors here since this would require two temporary registers.
6629 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6630 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6631 dsll $tempreg,16
6632 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
6633 dsll $tempreg,16
6634 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6635 If we have a base register, we want
6636 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6637 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6638 dsll $tempreg,16
6639 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
6640 dsll $tempreg,16
6641 daddu $tempreg,$tempreg,$breg
6642 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6373ee54 6643
6caf9ef4 6644 For GP relative symbols in 64bit address space we can use
aed1a261
RS
6645 the same sequence as in 32bit address space. */
6646 if (HAVE_64BIT_SYMBOLS)
d6bc6245 6647 {
aed1a261 6648 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4
TS
6649 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
6650 {
6651 relax_start (offset_expr.X_add_symbol);
6652 if (breg == 0)
6653 {
6654 macro_build (&offset_expr, s, fmt, treg,
6655 BFD_RELOC_GPREL16, mips_gp_register);
6656 }
6657 else
6658 {
6659 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6660 tempreg, breg, mips_gp_register);
6661 macro_build (&offset_expr, s, fmt, treg,
6662 BFD_RELOC_GPREL16, tempreg);
6663 }
6664 relax_switch ();
6665 }
d6bc6245 6666
741fe287 6667 if (used_at == 0 && mips_opts.at)
d6bc6245 6668 {
67c0d1eb
RS
6669 macro_build (&offset_expr, "lui", "t,u", tempreg,
6670 BFD_RELOC_MIPS_HIGHEST);
6671 macro_build (&offset_expr, "lui", "t,u", AT,
6672 BFD_RELOC_HI16_S);
6673 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6674 tempreg, BFD_RELOC_MIPS_HIGHER);
d6bc6245 6675 if (breg != 0)
67c0d1eb
RS
6676 macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
6677 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
6678 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
6679 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16,
6680 tempreg);
d6bc6245
TS
6681 used_at = 1;
6682 }
6683 else
6684 {
67c0d1eb
RS
6685 macro_build (&offset_expr, "lui", "t,u", tempreg,
6686 BFD_RELOC_MIPS_HIGHEST);
6687 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6688 tempreg, BFD_RELOC_MIPS_HIGHER);
6689 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
6690 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6691 tempreg, BFD_RELOC_HI16_S);
6692 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
d6bc6245 6693 if (breg != 0)
67c0d1eb 6694 macro_build (NULL, "daddu", "d,v,t",
17a2f251 6695 tempreg, tempreg, breg);
67c0d1eb 6696 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6697 BFD_RELOC_LO16, tempreg);
d6bc6245 6698 }
6caf9ef4
TS
6699
6700 if (mips_relax.sequence)
6701 relax_end ();
8fc2e39e 6702 break;
d6bc6245 6703 }
256ab948 6704
252b5132
RH
6705 if (breg == 0)
6706 {
67c0d1eb 6707 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 6708 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 6709 {
4d7206a2 6710 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
6711 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16,
6712 mips_gp_register);
4d7206a2 6713 relax_switch ();
252b5132 6714 }
67c0d1eb
RS
6715 macro_build_lui (&offset_expr, tempreg);
6716 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6717 BFD_RELOC_LO16, tempreg);
4d7206a2
RS
6718 if (mips_relax.sequence)
6719 relax_end ();
252b5132
RH
6720 }
6721 else
6722 {
67c0d1eb 6723 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 6724 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 6725 {
4d7206a2 6726 relax_start (offset_expr.X_add_symbol);
67c0d1eb 6727 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6728 tempreg, breg, mips_gp_register);
67c0d1eb 6729 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6730 BFD_RELOC_GPREL16, tempreg);
4d7206a2 6731 relax_switch ();
252b5132 6732 }
67c0d1eb
RS
6733 macro_build_lui (&offset_expr, tempreg);
6734 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6735 tempreg, tempreg, breg);
67c0d1eb 6736 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6737 BFD_RELOC_LO16, tempreg);
4d7206a2
RS
6738 if (mips_relax.sequence)
6739 relax_end ();
252b5132
RH
6740 }
6741 }
0a44bf69 6742 else if (!mips_big_got)
252b5132 6743 {
ed6fb7bd 6744 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
f9419b05 6745
252b5132
RH
6746 /* If this is a reference to an external symbol, we want
6747 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6748 nop
6749 <op> $treg,0($tempreg)
6750 Otherwise we want
6751 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6752 nop
6753 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6754 <op> $treg,0($tempreg)
f5040a92
AO
6755
6756 For NewABI, we want
6757 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6758 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
6759
252b5132
RH
6760 If there is a base register, we add it to $tempreg before
6761 the <op>. If there is a constant, we stick it in the
6762 <op> instruction. We don't handle constants larger than
6763 16 bits, because we have no way to load the upper 16 bits
6764 (actually, we could handle them for the subset of cases
6765 in which we are not using $at). */
6766 assert (offset_expr.X_op == O_symbol);
f5040a92
AO
6767 if (HAVE_NEWABI)
6768 {
67c0d1eb
RS
6769 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6770 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
f5040a92 6771 if (breg != 0)
67c0d1eb 6772 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6773 tempreg, tempreg, breg);
67c0d1eb 6774 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6775 BFD_RELOC_MIPS_GOT_OFST, tempreg);
f5040a92
AO
6776 break;
6777 }
252b5132
RH
6778 expr1.X_add_number = offset_expr.X_add_number;
6779 offset_expr.X_add_number = 0;
6780 if (expr1.X_add_number < -0x8000
6781 || expr1.X_add_number >= 0x8000)
6782 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb
RS
6783 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6784 lw_reloc_type, mips_gp_register);
269137b2 6785 load_delay_nop ();
4d7206a2
RS
6786 relax_start (offset_expr.X_add_symbol);
6787 relax_switch ();
67c0d1eb
RS
6788 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6789 tempreg, BFD_RELOC_LO16);
4d7206a2 6790 relax_end ();
252b5132 6791 if (breg != 0)
67c0d1eb 6792 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6793 tempreg, tempreg, breg);
67c0d1eb 6794 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
252b5132 6795 }
0a44bf69 6796 else if (mips_big_got && !HAVE_NEWABI)
252b5132 6797 {
67c0d1eb 6798 int gpdelay;
252b5132
RH
6799
6800 /* If this is a reference to an external symbol, we want
6801 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6802 addu $tempreg,$tempreg,$gp
6803 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6804 <op> $treg,0($tempreg)
6805 Otherwise we want
6806 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6807 nop
6808 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6809 <op> $treg,0($tempreg)
6810 If there is a base register, we add it to $tempreg before
6811 the <op>. If there is a constant, we stick it in the
6812 <op> instruction. We don't handle constants larger than
6813 16 bits, because we have no way to load the upper 16 bits
6814 (actually, we could handle them for the subset of cases
f5040a92 6815 in which we are not using $at). */
252b5132
RH
6816 assert (offset_expr.X_op == O_symbol);
6817 expr1.X_add_number = offset_expr.X_add_number;
6818 offset_expr.X_add_number = 0;
6819 if (expr1.X_add_number < -0x8000
6820 || expr1.X_add_number >= 0x8000)
6821 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb 6822 gpdelay = reg_needs_delay (mips_gp_register);
4d7206a2 6823 relax_start (offset_expr.X_add_symbol);
67c0d1eb 6824 macro_build (&offset_expr, "lui", "t,u", tempreg,
17a2f251 6825 BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
6826 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
6827 mips_gp_register);
6828 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6829 BFD_RELOC_MIPS_GOT_LO16, tempreg);
4d7206a2 6830 relax_switch ();
67c0d1eb
RS
6831 if (gpdelay)
6832 macro_build (NULL, "nop", "");
6833 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6834 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 6835 load_delay_nop ();
67c0d1eb
RS
6836 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6837 tempreg, BFD_RELOC_LO16);
4d7206a2
RS
6838 relax_end ();
6839
252b5132 6840 if (breg != 0)
67c0d1eb 6841 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6842 tempreg, tempreg, breg);
67c0d1eb 6843 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
252b5132 6844 }
0a44bf69 6845 else if (mips_big_got && HAVE_NEWABI)
f5040a92 6846 {
f5040a92
AO
6847 /* If this is a reference to an external symbol, we want
6848 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6849 add $tempreg,$tempreg,$gp
6850 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6851 <op> $treg,<ofst>($tempreg)
6852 Otherwise, for local symbols, we want:
6853 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6854 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
6855 assert (offset_expr.X_op == O_symbol);
4d7206a2 6856 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
6857 offset_expr.X_add_number = 0;
6858 if (expr1.X_add_number < -0x8000
6859 || expr1.X_add_number >= 0x8000)
6860 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4d7206a2 6861 relax_start (offset_expr.X_add_symbol);
67c0d1eb 6862 macro_build (&offset_expr, "lui", "t,u", tempreg,
17a2f251 6863 BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
6864 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
6865 mips_gp_register);
6866 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6867 BFD_RELOC_MIPS_GOT_LO16, tempreg);
f5040a92 6868 if (breg != 0)
67c0d1eb 6869 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6870 tempreg, tempreg, breg);
67c0d1eb 6871 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
684022ea 6872
4d7206a2 6873 relax_switch ();
f5040a92 6874 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
6875 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6876 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
f5040a92 6877 if (breg != 0)
67c0d1eb 6878 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6879 tempreg, tempreg, breg);
67c0d1eb 6880 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6881 BFD_RELOC_MIPS_GOT_OFST, tempreg);
4d7206a2 6882 relax_end ();
f5040a92 6883 }
252b5132
RH
6884 else
6885 abort ();
6886
252b5132
RH
6887 break;
6888
6889 case M_LI:
6890 case M_LI_S:
67c0d1eb 6891 load_register (treg, &imm_expr, 0);
8fc2e39e 6892 break;
252b5132
RH
6893
6894 case M_DLI:
67c0d1eb 6895 load_register (treg, &imm_expr, 1);
8fc2e39e 6896 break;
252b5132
RH
6897
6898 case M_LI_SS:
6899 if (imm_expr.X_op == O_constant)
6900 {
8fc2e39e 6901 used_at = 1;
67c0d1eb
RS
6902 load_register (AT, &imm_expr, 0);
6903 macro_build (NULL, "mtc1", "t,G", AT, treg);
252b5132
RH
6904 break;
6905 }
6906 else
6907 {
6908 assert (offset_expr.X_op == O_symbol
6909 && strcmp (segment_name (S_GET_SEGMENT
6910 (offset_expr.X_add_symbol)),
6911 ".lit4") == 0
6912 && offset_expr.X_add_number == 0);
67c0d1eb 6913 macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
17a2f251 6914 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
8fc2e39e 6915 break;
252b5132
RH
6916 }
6917
6918 case M_LI_D:
ca4e0257
RS
6919 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
6920 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
6921 order 32 bits of the value and the low order 32 bits are either
6922 zero or in OFFSET_EXPR. */
252b5132
RH
6923 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6924 {
ca4e0257 6925 if (HAVE_64BIT_GPRS)
67c0d1eb 6926 load_register (treg, &imm_expr, 1);
252b5132
RH
6927 else
6928 {
6929 int hreg, lreg;
6930
6931 if (target_big_endian)
6932 {
6933 hreg = treg;
6934 lreg = treg + 1;
6935 }
6936 else
6937 {
6938 hreg = treg + 1;
6939 lreg = treg;
6940 }
6941
6942 if (hreg <= 31)
67c0d1eb 6943 load_register (hreg, &imm_expr, 0);
252b5132
RH
6944 if (lreg <= 31)
6945 {
6946 if (offset_expr.X_op == O_absent)
67c0d1eb 6947 move_register (lreg, 0);
252b5132
RH
6948 else
6949 {
6950 assert (offset_expr.X_op == O_constant);
67c0d1eb 6951 load_register (lreg, &offset_expr, 0);
252b5132
RH
6952 }
6953 }
6954 }
8fc2e39e 6955 break;
252b5132
RH
6956 }
6957
6958 /* We know that sym is in the .rdata section. First we get the
6959 upper 16 bits of the address. */
6960 if (mips_pic == NO_PIC)
6961 {
67c0d1eb 6962 macro_build_lui (&offset_expr, AT);
8fc2e39e 6963 used_at = 1;
252b5132 6964 }
0a44bf69 6965 else
252b5132 6966 {
67c0d1eb
RS
6967 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6968 BFD_RELOC_MIPS_GOT16, mips_gp_register);
8fc2e39e 6969 used_at = 1;
252b5132 6970 }
bdaaa2e1 6971
252b5132 6972 /* Now we load the register(s). */
ca4e0257 6973 if (HAVE_64BIT_GPRS)
8fc2e39e
TS
6974 {
6975 used_at = 1;
6976 macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT);
6977 }
252b5132
RH
6978 else
6979 {
8fc2e39e 6980 used_at = 1;
67c0d1eb 6981 macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT);
f9419b05 6982 if (treg != RA)
252b5132
RH
6983 {
6984 /* FIXME: How in the world do we deal with the possible
6985 overflow here? */
6986 offset_expr.X_add_number += 4;
67c0d1eb 6987 macro_build (&offset_expr, "lw", "t,o(b)",
17a2f251 6988 treg + 1, BFD_RELOC_LO16, AT);
252b5132
RH
6989 }
6990 }
252b5132
RH
6991 break;
6992
6993 case M_LI_DD:
ca4e0257
RS
6994 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
6995 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
6996 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
6997 the value and the low order 32 bits are either zero or in
6998 OFFSET_EXPR. */
252b5132
RH
6999 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
7000 {
8fc2e39e 7001 used_at = 1;
67c0d1eb 7002 load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
ca4e0257
RS
7003 if (HAVE_64BIT_FPRS)
7004 {
7005 assert (HAVE_64BIT_GPRS);
67c0d1eb 7006 macro_build (NULL, "dmtc1", "t,S", AT, treg);
ca4e0257 7007 }
252b5132
RH
7008 else
7009 {
67c0d1eb 7010 macro_build (NULL, "mtc1", "t,G", AT, treg + 1);
252b5132 7011 if (offset_expr.X_op == O_absent)
67c0d1eb 7012 macro_build (NULL, "mtc1", "t,G", 0, treg);
252b5132
RH
7013 else
7014 {
7015 assert (offset_expr.X_op == O_constant);
67c0d1eb
RS
7016 load_register (AT, &offset_expr, 0);
7017 macro_build (NULL, "mtc1", "t,G", AT, treg);
252b5132
RH
7018 }
7019 }
7020 break;
7021 }
7022
7023 assert (offset_expr.X_op == O_symbol
7024 && offset_expr.X_add_number == 0);
7025 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
7026 if (strcmp (s, ".lit8") == 0)
7027 {
e7af610e 7028 if (mips_opts.isa != ISA_MIPS1)
252b5132 7029 {
67c0d1eb 7030 macro_build (&offset_expr, "ldc1", "T,o(b)", treg,
17a2f251 7031 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
8fc2e39e 7032 break;
252b5132 7033 }
c9914766 7034 breg = mips_gp_register;
252b5132
RH
7035 r = BFD_RELOC_MIPS_LITERAL;
7036 goto dob;
7037 }
7038 else
7039 {
7040 assert (strcmp (s, RDATA_SECTION_NAME) == 0);
8fc2e39e 7041 used_at = 1;
0a44bf69 7042 if (mips_pic != NO_PIC)
67c0d1eb
RS
7043 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
7044 BFD_RELOC_MIPS_GOT16, mips_gp_register);
252b5132
RH
7045 else
7046 {
7047 /* FIXME: This won't work for a 64 bit address. */
67c0d1eb 7048 macro_build_lui (&offset_expr, AT);
252b5132 7049 }
bdaaa2e1 7050
e7af610e 7051 if (mips_opts.isa != ISA_MIPS1)
252b5132 7052 {
67c0d1eb
RS
7053 macro_build (&offset_expr, "ldc1", "T,o(b)",
7054 treg, BFD_RELOC_LO16, AT);
252b5132
RH
7055 break;
7056 }
7057 breg = AT;
7058 r = BFD_RELOC_LO16;
7059 goto dob;
7060 }
7061
7062 case M_L_DOB:
252b5132
RH
7063 /* Even on a big endian machine $fn comes before $fn+1. We have
7064 to adjust when loading from memory. */
7065 r = BFD_RELOC_LO16;
7066 dob:
e7af610e 7067 assert (mips_opts.isa == ISA_MIPS1);
67c0d1eb 7068 macro_build (&offset_expr, "lwc1", "T,o(b)",
17a2f251 7069 target_big_endian ? treg + 1 : treg, r, breg);
252b5132
RH
7070 /* FIXME: A possible overflow which I don't know how to deal
7071 with. */
7072 offset_expr.X_add_number += 4;
67c0d1eb 7073 macro_build (&offset_expr, "lwc1", "T,o(b)",
17a2f251 7074 target_big_endian ? treg : treg + 1, r, breg);
252b5132
RH
7075 break;
7076
7077 case M_L_DAB:
7078 /*
7079 * The MIPS assembler seems to check for X_add_number not
7080 * being double aligned and generating:
7081 * lui at,%hi(foo+1)
7082 * addu at,at,v1
7083 * addiu at,at,%lo(foo+1)
7084 * lwc1 f2,0(at)
7085 * lwc1 f3,4(at)
7086 * But, the resulting address is the same after relocation so why
7087 * generate the extra instruction?
7088 */
bdaaa2e1 7089 /* Itbl support may require additional care here. */
252b5132 7090 coproc = 1;
e7af610e 7091 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
7092 {
7093 s = "ldc1";
7094 goto ld;
7095 }
7096
7097 s = "lwc1";
7098 fmt = "T,o(b)";
7099 goto ldd_std;
7100
7101 case M_S_DAB:
e7af610e 7102 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
7103 {
7104 s = "sdc1";
7105 goto st;
7106 }
7107
7108 s = "swc1";
7109 fmt = "T,o(b)";
bdaaa2e1 7110 /* Itbl support may require additional care here. */
252b5132
RH
7111 coproc = 1;
7112 goto ldd_std;
7113
7114 case M_LD_AB:
ca4e0257 7115 if (HAVE_64BIT_GPRS)
252b5132
RH
7116 {
7117 s = "ld";
7118 goto ld;
7119 }
7120
7121 s = "lw";
7122 fmt = "t,o(b)";
7123 goto ldd_std;
7124
7125 case M_SD_AB:
ca4e0257 7126 if (HAVE_64BIT_GPRS)
252b5132
RH
7127 {
7128 s = "sd";
7129 goto st;
7130 }
7131
7132 s = "sw";
7133 fmt = "t,o(b)";
7134
7135 ldd_std:
7136 if (offset_expr.X_op != O_symbol
7137 && offset_expr.X_op != O_constant)
7138 {
7139 as_bad (_("expression too complex"));
7140 offset_expr.X_op = O_constant;
7141 }
7142
2051e8c4
MR
7143 if (HAVE_32BIT_ADDRESSES
7144 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
55e08f71
NC
7145 {
7146 char value [32];
7147
7148 sprintf_vma (value, offset_expr.X_add_number);
20e1fcfd 7149 as_bad (_("Number (0x%s) larger than 32 bits"), value);
55e08f71 7150 }
2051e8c4 7151
252b5132
RH
7152 /* Even on a big endian machine $fn comes before $fn+1. We have
7153 to adjust when loading from memory. We set coproc if we must
7154 load $fn+1 first. */
bdaaa2e1 7155 /* Itbl support may require additional care here. */
252b5132
RH
7156 if (! target_big_endian)
7157 coproc = 0;
7158
7159 if (mips_pic == NO_PIC
7160 || offset_expr.X_op == O_constant)
7161 {
7162 /* If this is a reference to a GP relative symbol, we want
cdf6fd85
TS
7163 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
7164 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
252b5132
RH
7165 If we have a base register, we use this
7166 addu $at,$breg,$gp
cdf6fd85
TS
7167 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
7168 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
252b5132
RH
7169 If this is not a GP relative symbol, we want
7170 lui $at,<sym> (BFD_RELOC_HI16_S)
7171 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7172 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7173 If there is a base register, we add it to $at after the
7174 lui instruction. If there is a constant, we always use
7175 the last case. */
39a59cf8
MR
7176 if (offset_expr.X_op == O_symbol
7177 && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 7178 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 7179 {
4d7206a2 7180 relax_start (offset_expr.X_add_symbol);
252b5132
RH
7181 if (breg == 0)
7182 {
c9914766 7183 tempreg = mips_gp_register;
252b5132
RH
7184 }
7185 else
7186 {
67c0d1eb 7187 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 7188 AT, breg, mips_gp_register);
252b5132 7189 tempreg = AT;
252b5132
RH
7190 used_at = 1;
7191 }
7192
beae10d5 7193 /* Itbl support may require additional care here. */
67c0d1eb 7194 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
17a2f251 7195 BFD_RELOC_GPREL16, tempreg);
252b5132
RH
7196 offset_expr.X_add_number += 4;
7197
7198 /* Set mips_optimize to 2 to avoid inserting an
7199 undesired nop. */
7200 hold_mips_optimize = mips_optimize;
7201 mips_optimize = 2;
beae10d5 7202 /* Itbl support may require additional care here. */
67c0d1eb 7203 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
17a2f251 7204 BFD_RELOC_GPREL16, tempreg);
252b5132
RH
7205 mips_optimize = hold_mips_optimize;
7206
4d7206a2 7207 relax_switch ();
252b5132
RH
7208
7209 /* We just generated two relocs. When tc_gen_reloc
7210 handles this case, it will skip the first reloc and
7211 handle the second. The second reloc already has an
7212 extra addend of 4, which we added above. We must
7213 subtract it out, and then subtract another 4 to make
7214 the first reloc come out right. The second reloc
7215 will come out right because we are going to add 4 to
7216 offset_expr when we build its instruction below.
7217
7218 If we have a symbol, then we don't want to include
7219 the offset, because it will wind up being included
7220 when we generate the reloc. */
7221
7222 if (offset_expr.X_op == O_constant)
7223 offset_expr.X_add_number -= 8;
7224 else
7225 {
7226 offset_expr.X_add_number = -4;
7227 offset_expr.X_op = O_constant;
7228 }
7229 }
8fc2e39e 7230 used_at = 1;
67c0d1eb 7231 macro_build_lui (&offset_expr, AT);
252b5132 7232 if (breg != 0)
67c0d1eb 7233 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 7234 /* Itbl support may require additional care here. */
67c0d1eb 7235 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
17a2f251 7236 BFD_RELOC_LO16, AT);
252b5132
RH
7237 /* FIXME: How do we handle overflow here? */
7238 offset_expr.X_add_number += 4;
beae10d5 7239 /* Itbl support may require additional care here. */
67c0d1eb 7240 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
17a2f251 7241 BFD_RELOC_LO16, AT);
4d7206a2
RS
7242 if (mips_relax.sequence)
7243 relax_end ();
bdaaa2e1 7244 }
0a44bf69 7245 else if (!mips_big_got)
252b5132 7246 {
252b5132
RH
7247 /* If this is a reference to an external symbol, we want
7248 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7249 nop
7250 <op> $treg,0($at)
7251 <op> $treg+1,4($at)
7252 Otherwise we want
7253 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7254 nop
7255 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7256 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7257 If there is a base register we add it to $at before the
7258 lwc1 instructions. If there is a constant we include it
7259 in the lwc1 instructions. */
7260 used_at = 1;
7261 expr1.X_add_number = offset_expr.X_add_number;
252b5132
RH
7262 if (expr1.X_add_number < -0x8000
7263 || expr1.X_add_number >= 0x8000 - 4)
7264 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb 7265 load_got_offset (AT, &offset_expr);
269137b2 7266 load_delay_nop ();
252b5132 7267 if (breg != 0)
67c0d1eb 7268 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
252b5132
RH
7269
7270 /* Set mips_optimize to 2 to avoid inserting an undesired
7271 nop. */
7272 hold_mips_optimize = mips_optimize;
7273 mips_optimize = 2;
4d7206a2 7274
beae10d5 7275 /* Itbl support may require additional care here. */
4d7206a2 7276 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
7277 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
7278 BFD_RELOC_LO16, AT);
4d7206a2 7279 expr1.X_add_number += 4;
67c0d1eb
RS
7280 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
7281 BFD_RELOC_LO16, AT);
4d7206a2 7282 relax_switch ();
67c0d1eb
RS
7283 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7284 BFD_RELOC_LO16, AT);
4d7206a2 7285 offset_expr.X_add_number += 4;
67c0d1eb
RS
7286 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7287 BFD_RELOC_LO16, AT);
4d7206a2 7288 relax_end ();
252b5132 7289
4d7206a2 7290 mips_optimize = hold_mips_optimize;
252b5132 7291 }
0a44bf69 7292 else if (mips_big_got)
252b5132 7293 {
67c0d1eb 7294 int gpdelay;
252b5132
RH
7295
7296 /* If this is a reference to an external symbol, we want
7297 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7298 addu $at,$at,$gp
7299 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
7300 nop
7301 <op> $treg,0($at)
7302 <op> $treg+1,4($at)
7303 Otherwise we want
7304 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7305 nop
7306 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7307 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7308 If there is a base register we add it to $at before the
7309 lwc1 instructions. If there is a constant we include it
7310 in the lwc1 instructions. */
7311 used_at = 1;
7312 expr1.X_add_number = offset_expr.X_add_number;
7313 offset_expr.X_add_number = 0;
7314 if (expr1.X_add_number < -0x8000
7315 || expr1.X_add_number >= 0x8000 - 4)
7316 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb 7317 gpdelay = reg_needs_delay (mips_gp_register);
4d7206a2 7318 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
7319 macro_build (&offset_expr, "lui", "t,u",
7320 AT, BFD_RELOC_MIPS_GOT_HI16);
7321 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 7322 AT, AT, mips_gp_register);
67c0d1eb 7323 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
17a2f251 7324 AT, BFD_RELOC_MIPS_GOT_LO16, AT);
269137b2 7325 load_delay_nop ();
252b5132 7326 if (breg != 0)
67c0d1eb 7327 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 7328 /* Itbl support may require additional care here. */
67c0d1eb 7329 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
17a2f251 7330 BFD_RELOC_LO16, AT);
252b5132
RH
7331 expr1.X_add_number += 4;
7332
7333 /* Set mips_optimize to 2 to avoid inserting an undesired
7334 nop. */
7335 hold_mips_optimize = mips_optimize;
7336 mips_optimize = 2;
beae10d5 7337 /* Itbl support may require additional care here. */
67c0d1eb 7338 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
17a2f251 7339 BFD_RELOC_LO16, AT);
252b5132
RH
7340 mips_optimize = hold_mips_optimize;
7341 expr1.X_add_number -= 4;
7342
4d7206a2
RS
7343 relax_switch ();
7344 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
7345 if (gpdelay)
7346 macro_build (NULL, "nop", "");
7347 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
7348 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 7349 load_delay_nop ();
252b5132 7350 if (breg != 0)
67c0d1eb 7351 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 7352 /* Itbl support may require additional care here. */
67c0d1eb
RS
7353 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7354 BFD_RELOC_LO16, AT);
4d7206a2 7355 offset_expr.X_add_number += 4;
252b5132
RH
7356
7357 /* Set mips_optimize to 2 to avoid inserting an undesired
7358 nop. */
7359 hold_mips_optimize = mips_optimize;
7360 mips_optimize = 2;
beae10d5 7361 /* Itbl support may require additional care here. */
67c0d1eb
RS
7362 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7363 BFD_RELOC_LO16, AT);
252b5132 7364 mips_optimize = hold_mips_optimize;
4d7206a2 7365 relax_end ();
252b5132 7366 }
252b5132
RH
7367 else
7368 abort ();
7369
252b5132
RH
7370 break;
7371
7372 case M_LD_OB:
7373 s = "lw";
7374 goto sd_ob;
7375 case M_SD_OB:
7376 s = "sw";
7377 sd_ob:
ca4e0257 7378 assert (HAVE_32BIT_ADDRESSES);
67c0d1eb 7379 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
252b5132 7380 offset_expr.X_add_number += 4;
67c0d1eb 7381 macro_build (&offset_expr, s, "t,o(b)", treg + 1, BFD_RELOC_LO16, breg);
8fc2e39e 7382 break;
252b5132
RH
7383
7384 /* New code added to support COPZ instructions.
7385 This code builds table entries out of the macros in mip_opcodes.
7386 R4000 uses interlocks to handle coproc delays.
7387 Other chips (like the R3000) require nops to be inserted for delays.
7388
f72c8c98 7389 FIXME: Currently, we require that the user handle delays.
252b5132
RH
7390 In order to fill delay slots for non-interlocked chips,
7391 we must have a way to specify delays based on the coprocessor.
7392 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
7393 What are the side-effects of the cop instruction?
7394 What cache support might we have and what are its effects?
7395 Both coprocessor & memory require delays. how long???
bdaaa2e1 7396 What registers are read/set/modified?
252b5132
RH
7397
7398 If an itbl is provided to interpret cop instructions,
bdaaa2e1 7399 this knowledge can be encoded in the itbl spec. */
252b5132
RH
7400
7401 case M_COP0:
7402 s = "c0";
7403 goto copz;
7404 case M_COP1:
7405 s = "c1";
7406 goto copz;
7407 case M_COP2:
7408 s = "c2";
7409 goto copz;
7410 case M_COP3:
7411 s = "c3";
7412 copz:
b19e8a9b
AN
7413 if (NO_ISA_COP (mips_opts.arch)
7414 && (ip->insn_mo->pinfo2 & INSN2_M_FP_S) == 0)
7415 {
7416 as_bad (_("opcode not supported on this processor: %s"),
7417 mips_cpu_info_from_arch (mips_opts.arch)->name);
7418 break;
7419 }
7420
252b5132
RH
7421 /* For now we just do C (same as Cz). The parameter will be
7422 stored in insn_opcode by mips_ip. */
67c0d1eb 7423 macro_build (NULL, s, "C", ip->insn_opcode);
8fc2e39e 7424 break;
252b5132 7425
ea1fb5dc 7426 case M_MOVE:
67c0d1eb 7427 move_register (dreg, sreg);
8fc2e39e 7428 break;
ea1fb5dc 7429
252b5132
RH
7430#ifdef LOSING_COMPILER
7431 default:
7432 /* Try and see if this is a new itbl instruction.
7433 This code builds table entries out of the macros in mip_opcodes.
7434 FIXME: For now we just assemble the expression and pass it's
7435 value along as a 32-bit immediate.
bdaaa2e1 7436 We may want to have the assembler assemble this value,
252b5132
RH
7437 so that we gain the assembler's knowledge of delay slots,
7438 symbols, etc.
7439 Would it be more efficient to use mask (id) here? */
bdaaa2e1 7440 if (itbl_have_entries
252b5132 7441 && (immed_expr = itbl_assemble (ip->insn_mo->name, "")))
beae10d5 7442 {
252b5132
RH
7443 s = ip->insn_mo->name;
7444 s2 = "cop3";
7445 coproc = ITBL_DECODE_PNUM (immed_expr);;
67c0d1eb 7446 macro_build (&immed_expr, s, "C");
8fc2e39e 7447 break;
beae10d5 7448 }
252b5132 7449 macro2 (ip);
8fc2e39e 7450 break;
252b5132 7451 }
741fe287 7452 if (!mips_opts.at && used_at)
8fc2e39e 7453 as_bad (_("Macro used $at after \".set noat\""));
252b5132 7454}
bdaaa2e1 7455
252b5132 7456static void
17a2f251 7457macro2 (struct mips_cl_insn *ip)
252b5132 7458{
741fe287
MR
7459 unsigned int treg, sreg, dreg, breg;
7460 unsigned int tempreg;
252b5132 7461 int mask;
252b5132
RH
7462 int used_at;
7463 expressionS expr1;
7464 const char *s;
7465 const char *s2;
7466 const char *fmt;
7467 int likely = 0;
7468 int dbl = 0;
7469 int coproc = 0;
7470 int lr = 0;
7471 int imm = 0;
7472 int off;
7473 offsetT maxnum;
7474 bfd_reloc_code_real_type r;
bdaaa2e1 7475
252b5132
RH
7476 treg = (ip->insn_opcode >> 16) & 0x1f;
7477 dreg = (ip->insn_opcode >> 11) & 0x1f;
7478 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
7479 mask = ip->insn_mo->mask;
bdaaa2e1 7480
252b5132
RH
7481 expr1.X_op = O_constant;
7482 expr1.X_op_symbol = NULL;
7483 expr1.X_add_symbol = NULL;
7484 expr1.X_add_number = 1;
bdaaa2e1 7485
252b5132
RH
7486 switch (mask)
7487 {
7488#endif /* LOSING_COMPILER */
7489
7490 case M_DMUL:
7491 dbl = 1;
7492 case M_MUL:
67c0d1eb
RS
7493 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
7494 macro_build (NULL, "mflo", "d", dreg);
8fc2e39e 7495 break;
252b5132
RH
7496
7497 case M_DMUL_I:
7498 dbl = 1;
7499 case M_MUL_I:
7500 /* The MIPS assembler some times generates shifts and adds. I'm
7501 not trying to be that fancy. GCC should do this for us
7502 anyway. */
8fc2e39e 7503 used_at = 1;
67c0d1eb
RS
7504 load_register (AT, &imm_expr, dbl);
7505 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT);
7506 macro_build (NULL, "mflo", "d", dreg);
252b5132
RH
7507 break;
7508
7509 case M_DMULO_I:
7510 dbl = 1;
7511 case M_MULO_I:
7512 imm = 1;
7513 goto do_mulo;
7514
7515 case M_DMULO:
7516 dbl = 1;
7517 case M_MULO:
7518 do_mulo:
7d10b47d 7519 start_noreorder ();
8fc2e39e 7520 used_at = 1;
252b5132 7521 if (imm)
67c0d1eb
RS
7522 load_register (AT, &imm_expr, dbl);
7523 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
7524 macro_build (NULL, "mflo", "d", dreg);
7525 macro_build (NULL, dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA);
7526 macro_build (NULL, "mfhi", "d", AT);
252b5132 7527 if (mips_trap)
67c0d1eb 7528 macro_build (NULL, "tne", "s,t,q", dreg, AT, 6);
252b5132
RH
7529 else
7530 {
7531 expr1.X_add_number = 8;
67c0d1eb
RS
7532 macro_build (&expr1, "beq", "s,t,p", dreg, AT);
7533 macro_build (NULL, "nop", "", 0);
7534 macro_build (NULL, "break", "c", 6);
252b5132 7535 }
7d10b47d 7536 end_noreorder ();
67c0d1eb 7537 macro_build (NULL, "mflo", "d", dreg);
252b5132
RH
7538 break;
7539
7540 case M_DMULOU_I:
7541 dbl = 1;
7542 case M_MULOU_I:
7543 imm = 1;
7544 goto do_mulou;
7545
7546 case M_DMULOU:
7547 dbl = 1;
7548 case M_MULOU:
7549 do_mulou:
7d10b47d 7550 start_noreorder ();
8fc2e39e 7551 used_at = 1;
252b5132 7552 if (imm)
67c0d1eb
RS
7553 load_register (AT, &imm_expr, dbl);
7554 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
17a2f251 7555 sreg, imm ? AT : treg);
67c0d1eb
RS
7556 macro_build (NULL, "mfhi", "d", AT);
7557 macro_build (NULL, "mflo", "d", dreg);
252b5132 7558 if (mips_trap)
67c0d1eb 7559 macro_build (NULL, "tne", "s,t,q", AT, 0, 6);
252b5132
RH
7560 else
7561 {
7562 expr1.X_add_number = 8;
67c0d1eb
RS
7563 macro_build (&expr1, "beq", "s,t,p", AT, 0);
7564 macro_build (NULL, "nop", "", 0);
7565 macro_build (NULL, "break", "c", 6);
252b5132 7566 }
7d10b47d 7567 end_noreorder ();
252b5132
RH
7568 break;
7569
771c7ce4 7570 case M_DROL:
fef14a42 7571 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097
CD
7572 {
7573 if (dreg == sreg)
7574 {
7575 tempreg = AT;
7576 used_at = 1;
7577 }
7578 else
7579 {
7580 tempreg = dreg;
82dd0097 7581 }
67c0d1eb
RS
7582 macro_build (NULL, "dnegu", "d,w", tempreg, treg);
7583 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg);
8fc2e39e 7584 break;
82dd0097 7585 }
8fc2e39e 7586 used_at = 1;
67c0d1eb
RS
7587 macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg);
7588 macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT);
7589 macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg);
7590 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
7591 break;
7592
252b5132 7593 case M_ROL:
fef14a42 7594 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097
CD
7595 {
7596 if (dreg == sreg)
7597 {
7598 tempreg = AT;
7599 used_at = 1;
7600 }
7601 else
7602 {
7603 tempreg = dreg;
82dd0097 7604 }
67c0d1eb
RS
7605 macro_build (NULL, "negu", "d,w", tempreg, treg);
7606 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg);
8fc2e39e 7607 break;
82dd0097 7608 }
8fc2e39e 7609 used_at = 1;
67c0d1eb
RS
7610 macro_build (NULL, "subu", "d,v,t", AT, 0, treg);
7611 macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT);
7612 macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg);
7613 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
252b5132
RH
7614 break;
7615
771c7ce4
TS
7616 case M_DROL_I:
7617 {
7618 unsigned int rot;
82dd0097 7619 char *l, *r;
771c7ce4
TS
7620
7621 if (imm_expr.X_op != O_constant)
82dd0097 7622 as_bad (_("Improper rotate count"));
771c7ce4 7623 rot = imm_expr.X_add_number & 0x3f;
fef14a42 7624 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
60b63b72
RS
7625 {
7626 rot = (64 - rot) & 0x3f;
7627 if (rot >= 32)
67c0d1eb 7628 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
60b63b72 7629 else
67c0d1eb 7630 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
8fc2e39e 7631 break;
60b63b72 7632 }
483fc7cd 7633 if (rot == 0)
483fc7cd 7634 {
67c0d1eb 7635 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
8fc2e39e 7636 break;
483fc7cd 7637 }
82dd0097
CD
7638 l = (rot < 0x20) ? "dsll" : "dsll32";
7639 r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
7640 rot &= 0x1f;
8fc2e39e 7641 used_at = 1;
67c0d1eb
RS
7642 macro_build (NULL, l, "d,w,<", AT, sreg, rot);
7643 macro_build (NULL, r, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7644 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
7645 }
7646 break;
7647
252b5132 7648 case M_ROL_I:
771c7ce4
TS
7649 {
7650 unsigned int rot;
7651
7652 if (imm_expr.X_op != O_constant)
82dd0097 7653 as_bad (_("Improper rotate count"));
771c7ce4 7654 rot = imm_expr.X_add_number & 0x1f;
fef14a42 7655 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
60b63b72 7656 {
67c0d1eb 7657 macro_build (NULL, "ror", "d,w,<", dreg, sreg, (32 - rot) & 0x1f);
8fc2e39e 7658 break;
60b63b72 7659 }
483fc7cd 7660 if (rot == 0)
483fc7cd 7661 {
67c0d1eb 7662 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
8fc2e39e 7663 break;
483fc7cd 7664 }
8fc2e39e 7665 used_at = 1;
67c0d1eb
RS
7666 macro_build (NULL, "sll", "d,w,<", AT, sreg, rot);
7667 macro_build (NULL, "srl", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7668 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
7669 }
7670 break;
7671
7672 case M_DROR:
fef14a42 7673 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097 7674 {
67c0d1eb 7675 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg);
8fc2e39e 7676 break;
82dd0097 7677 }
8fc2e39e 7678 used_at = 1;
67c0d1eb
RS
7679 macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg);
7680 macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT);
7681 macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
7682 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
252b5132
RH
7683 break;
7684
7685 case M_ROR:
fef14a42 7686 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097 7687 {
67c0d1eb 7688 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg);
8fc2e39e 7689 break;
82dd0097 7690 }
8fc2e39e 7691 used_at = 1;
67c0d1eb
RS
7692 macro_build (NULL, "subu", "d,v,t", AT, 0, treg);
7693 macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT);
7694 macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg);
7695 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
252b5132
RH
7696 break;
7697
771c7ce4
TS
7698 case M_DROR_I:
7699 {
7700 unsigned int rot;
82dd0097 7701 char *l, *r;
771c7ce4
TS
7702
7703 if (imm_expr.X_op != O_constant)
82dd0097 7704 as_bad (_("Improper rotate count"));
771c7ce4 7705 rot = imm_expr.X_add_number & 0x3f;
fef14a42 7706 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097
CD
7707 {
7708 if (rot >= 32)
67c0d1eb 7709 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
82dd0097 7710 else
67c0d1eb 7711 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
8fc2e39e 7712 break;
82dd0097 7713 }
483fc7cd 7714 if (rot == 0)
483fc7cd 7715 {
67c0d1eb 7716 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
8fc2e39e 7717 break;
483fc7cd 7718 }
82dd0097
CD
7719 r = (rot < 0x20) ? "dsrl" : "dsrl32";
7720 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
7721 rot &= 0x1f;
8fc2e39e 7722 used_at = 1;
67c0d1eb
RS
7723 macro_build (NULL, r, "d,w,<", AT, sreg, rot);
7724 macro_build (NULL, l, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7725 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
7726 }
7727 break;
7728
252b5132 7729 case M_ROR_I:
771c7ce4
TS
7730 {
7731 unsigned int rot;
7732
7733 if (imm_expr.X_op != O_constant)
82dd0097 7734 as_bad (_("Improper rotate count"));
771c7ce4 7735 rot = imm_expr.X_add_number & 0x1f;
fef14a42 7736 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097 7737 {
67c0d1eb 7738 macro_build (NULL, "ror", "d,w,<", dreg, sreg, rot);
8fc2e39e 7739 break;
82dd0097 7740 }
483fc7cd 7741 if (rot == 0)
483fc7cd 7742 {
67c0d1eb 7743 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
8fc2e39e 7744 break;
483fc7cd 7745 }
8fc2e39e 7746 used_at = 1;
67c0d1eb
RS
7747 macro_build (NULL, "srl", "d,w,<", AT, sreg, rot);
7748 macro_build (NULL, "sll", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7749 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4 7750 }
252b5132
RH
7751 break;
7752
7753 case M_S_DOB:
e7af610e 7754 assert (mips_opts.isa == ISA_MIPS1);
252b5132
RH
7755 /* Even on a big endian machine $fn comes before $fn+1. We have
7756 to adjust when storing to memory. */
67c0d1eb
RS
7757 macro_build (&offset_expr, "swc1", "T,o(b)",
7758 target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg);
252b5132 7759 offset_expr.X_add_number += 4;
67c0d1eb
RS
7760 macro_build (&offset_expr, "swc1", "T,o(b)",
7761 target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg);
8fc2e39e 7762 break;
252b5132
RH
7763
7764 case M_SEQ:
7765 if (sreg == 0)
67c0d1eb 7766 macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
252b5132 7767 else if (treg == 0)
67c0d1eb 7768 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
7769 else
7770 {
67c0d1eb
RS
7771 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7772 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
252b5132 7773 }
8fc2e39e 7774 break;
252b5132
RH
7775
7776 case M_SEQ_I:
7777 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7778 {
67c0d1eb 7779 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 7780 break;
252b5132
RH
7781 }
7782 if (sreg == 0)
7783 {
7784 as_warn (_("Instruction %s: result is always false"),
7785 ip->insn_mo->name);
67c0d1eb 7786 move_register (dreg, 0);
8fc2e39e 7787 break;
252b5132 7788 }
dd3cbb7e
NC
7789 if (CPU_HAS_SEQ (mips_opts.arch)
7790 && -512 <= imm_expr.X_add_number
7791 && imm_expr.X_add_number < 512)
7792 {
7793 macro_build (NULL, "seqi", "t,r,+Q", dreg, sreg,
750bdd57 7794 (int) imm_expr.X_add_number);
dd3cbb7e
NC
7795 break;
7796 }
252b5132
RH
7797 if (imm_expr.X_op == O_constant
7798 && imm_expr.X_add_number >= 0
7799 && imm_expr.X_add_number < 0x10000)
7800 {
67c0d1eb 7801 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
7802 }
7803 else if (imm_expr.X_op == O_constant
7804 && imm_expr.X_add_number > -0x8000
7805 && imm_expr.X_add_number < 0)
7806 {
7807 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 7808 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
17a2f251 7809 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132 7810 }
dd3cbb7e
NC
7811 else if (CPU_HAS_SEQ (mips_opts.arch))
7812 {
7813 used_at = 1;
7814 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7815 macro_build (NULL, "seq", "d,v,t", dreg, sreg, AT);
7816 break;
7817 }
252b5132
RH
7818 else
7819 {
67c0d1eb
RS
7820 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7821 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
252b5132
RH
7822 used_at = 1;
7823 }
67c0d1eb 7824 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 7825 break;
252b5132
RH
7826
7827 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
7828 s = "slt";
7829 goto sge;
7830 case M_SGEU:
7831 s = "sltu";
7832 sge:
67c0d1eb
RS
7833 macro_build (NULL, s, "d,v,t", dreg, sreg, treg);
7834 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 7835 break;
252b5132
RH
7836
7837 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
7838 case M_SGEU_I:
7839 if (imm_expr.X_op == O_constant
7840 && imm_expr.X_add_number >= -0x8000
7841 && imm_expr.X_add_number < 0x8000)
7842 {
67c0d1eb
RS
7843 macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
7844 dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
7845 }
7846 else
7847 {
67c0d1eb
RS
7848 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7849 macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
7850 dreg, sreg, AT);
252b5132
RH
7851 used_at = 1;
7852 }
67c0d1eb 7853 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 7854 break;
252b5132
RH
7855
7856 case M_SGT: /* sreg > treg <==> treg < sreg */
7857 s = "slt";
7858 goto sgt;
7859 case M_SGTU:
7860 s = "sltu";
7861 sgt:
67c0d1eb 7862 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
8fc2e39e 7863 break;
252b5132
RH
7864
7865 case M_SGT_I: /* sreg > I <==> I < sreg */
7866 s = "slt";
7867 goto sgti;
7868 case M_SGTU_I:
7869 s = "sltu";
7870 sgti:
8fc2e39e 7871 used_at = 1;
67c0d1eb
RS
7872 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7873 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
252b5132
RH
7874 break;
7875
2396cfb9 7876 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
252b5132
RH
7877 s = "slt";
7878 goto sle;
7879 case M_SLEU:
7880 s = "sltu";
7881 sle:
67c0d1eb
RS
7882 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
7883 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 7884 break;
252b5132 7885
2396cfb9 7886 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
252b5132
RH
7887 s = "slt";
7888 goto slei;
7889 case M_SLEU_I:
7890 s = "sltu";
7891 slei:
8fc2e39e 7892 used_at = 1;
67c0d1eb
RS
7893 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7894 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
7895 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
252b5132
RH
7896 break;
7897
7898 case M_SLT_I:
7899 if (imm_expr.X_op == O_constant
7900 && imm_expr.X_add_number >= -0x8000
7901 && imm_expr.X_add_number < 0x8000)
7902 {
67c0d1eb 7903 macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 7904 break;
252b5132 7905 }
8fc2e39e 7906 used_at = 1;
67c0d1eb
RS
7907 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7908 macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT);
252b5132
RH
7909 break;
7910
7911 case M_SLTU_I:
7912 if (imm_expr.X_op == O_constant
7913 && imm_expr.X_add_number >= -0x8000
7914 && imm_expr.X_add_number < 0x8000)
7915 {
67c0d1eb 7916 macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg,
17a2f251 7917 BFD_RELOC_LO16);
8fc2e39e 7918 break;
252b5132 7919 }
8fc2e39e 7920 used_at = 1;
67c0d1eb
RS
7921 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7922 macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT);
252b5132
RH
7923 break;
7924
7925 case M_SNE:
7926 if (sreg == 0)
67c0d1eb 7927 macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg);
252b5132 7928 else if (treg == 0)
67c0d1eb 7929 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
252b5132
RH
7930 else
7931 {
67c0d1eb
RS
7932 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7933 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
252b5132 7934 }
8fc2e39e 7935 break;
252b5132
RH
7936
7937 case M_SNE_I:
7938 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7939 {
67c0d1eb 7940 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
8fc2e39e 7941 break;
252b5132
RH
7942 }
7943 if (sreg == 0)
7944 {
7945 as_warn (_("Instruction %s: result is always true"),
7946 ip->insn_mo->name);
67c0d1eb
RS
7947 macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
7948 dreg, 0, BFD_RELOC_LO16);
8fc2e39e 7949 break;
252b5132 7950 }
dd3cbb7e
NC
7951 if (CPU_HAS_SEQ (mips_opts.arch)
7952 && -512 <= imm_expr.X_add_number
7953 && imm_expr.X_add_number < 512)
7954 {
7955 macro_build (NULL, "snei", "t,r,+Q", dreg, sreg,
750bdd57 7956 (int) imm_expr.X_add_number);
dd3cbb7e
NC
7957 break;
7958 }
252b5132
RH
7959 if (imm_expr.X_op == O_constant
7960 && imm_expr.X_add_number >= 0
7961 && imm_expr.X_add_number < 0x10000)
7962 {
67c0d1eb 7963 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
7964 }
7965 else if (imm_expr.X_op == O_constant
7966 && imm_expr.X_add_number > -0x8000
7967 && imm_expr.X_add_number < 0)
7968 {
7969 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 7970 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
17a2f251 7971 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132 7972 }
dd3cbb7e
NC
7973 else if (CPU_HAS_SEQ (mips_opts.arch))
7974 {
7975 used_at = 1;
7976 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7977 macro_build (NULL, "sne", "d,v,t", dreg, sreg, AT);
7978 break;
7979 }
252b5132
RH
7980 else
7981 {
67c0d1eb
RS
7982 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7983 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
252b5132
RH
7984 used_at = 1;
7985 }
67c0d1eb 7986 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
8fc2e39e 7987 break;
252b5132
RH
7988
7989 case M_DSUB_I:
7990 dbl = 1;
7991 case M_SUB_I:
7992 if (imm_expr.X_op == O_constant
7993 && imm_expr.X_add_number > -0x8000
7994 && imm_expr.X_add_number <= 0x8000)
7995 {
7996 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb
RS
7997 macro_build (&imm_expr, dbl ? "daddi" : "addi", "t,r,j",
7998 dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 7999 break;
252b5132 8000 }
8fc2e39e 8001 used_at = 1;
67c0d1eb
RS
8002 load_register (AT, &imm_expr, dbl);
8003 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
252b5132
RH
8004 break;
8005
8006 case M_DSUBU_I:
8007 dbl = 1;
8008 case M_SUBU_I:
8009 if (imm_expr.X_op == O_constant
8010 && imm_expr.X_add_number > -0x8000
8011 && imm_expr.X_add_number <= 0x8000)
8012 {
8013 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb
RS
8014 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "t,r,j",
8015 dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 8016 break;
252b5132 8017 }
8fc2e39e 8018 used_at = 1;
67c0d1eb
RS
8019 load_register (AT, &imm_expr, dbl);
8020 macro_build (NULL, dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
252b5132
RH
8021 break;
8022
8023 case M_TEQ_I:
8024 s = "teq";
8025 goto trap;
8026 case M_TGE_I:
8027 s = "tge";
8028 goto trap;
8029 case M_TGEU_I:
8030 s = "tgeu";
8031 goto trap;
8032 case M_TLT_I:
8033 s = "tlt";
8034 goto trap;
8035 case M_TLTU_I:
8036 s = "tltu";
8037 goto trap;
8038 case M_TNE_I:
8039 s = "tne";
8040 trap:
8fc2e39e 8041 used_at = 1;
67c0d1eb
RS
8042 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8043 macro_build (NULL, s, "s,t", sreg, AT);
252b5132
RH
8044 break;
8045
252b5132 8046 case M_TRUNCWS:
43841e91 8047 case M_TRUNCWD:
e7af610e 8048 assert (mips_opts.isa == ISA_MIPS1);
8fc2e39e 8049 used_at = 1;
252b5132
RH
8050 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
8051 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
8052
8053 /*
8054 * Is the double cfc1 instruction a bug in the mips assembler;
8055 * or is there a reason for it?
8056 */
7d10b47d 8057 start_noreorder ();
67c0d1eb
RS
8058 macro_build (NULL, "cfc1", "t,G", treg, RA);
8059 macro_build (NULL, "cfc1", "t,G", treg, RA);
8060 macro_build (NULL, "nop", "");
252b5132 8061 expr1.X_add_number = 3;
67c0d1eb 8062 macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16);
252b5132 8063 expr1.X_add_number = 2;
67c0d1eb
RS
8064 macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
8065 macro_build (NULL, "ctc1", "t,G", AT, RA);
8066 macro_build (NULL, "nop", "");
8067 macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
8068 dreg, sreg);
8069 macro_build (NULL, "ctc1", "t,G", treg, RA);
8070 macro_build (NULL, "nop", "");
7d10b47d 8071 end_noreorder ();
252b5132
RH
8072 break;
8073
8074 case M_ULH:
8075 s = "lb";
8076 goto ulh;
8077 case M_ULHU:
8078 s = "lbu";
8079 ulh:
8fc2e39e 8080 used_at = 1;
252b5132
RH
8081 if (offset_expr.X_add_number >= 0x7fff)
8082 as_bad (_("operand overflow"));
252b5132 8083 if (! target_big_endian)
f9419b05 8084 ++offset_expr.X_add_number;
67c0d1eb 8085 macro_build (&offset_expr, s, "t,o(b)", AT, BFD_RELOC_LO16, breg);
252b5132 8086 if (! target_big_endian)
f9419b05 8087 --offset_expr.X_add_number;
252b5132 8088 else
f9419b05 8089 ++offset_expr.X_add_number;
67c0d1eb
RS
8090 macro_build (&offset_expr, "lbu", "t,o(b)", treg, BFD_RELOC_LO16, breg);
8091 macro_build (NULL, "sll", "d,w,<", AT, AT, 8);
8092 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
252b5132
RH
8093 break;
8094
8095 case M_ULD:
8096 s = "ldl";
8097 s2 = "ldr";
8098 off = 7;
8099 goto ulw;
8100 case M_ULW:
8101 s = "lwl";
8102 s2 = "lwr";
8103 off = 3;
8104 ulw:
8105 if (offset_expr.X_add_number >= 0x8000 - off)
8106 as_bad (_("operand overflow"));
af22f5b2
CD
8107 if (treg != breg)
8108 tempreg = treg;
8109 else
8fc2e39e
TS
8110 {
8111 used_at = 1;
8112 tempreg = AT;
8113 }
252b5132
RH
8114 if (! target_big_endian)
8115 offset_expr.X_add_number += off;
67c0d1eb 8116 macro_build (&offset_expr, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
252b5132
RH
8117 if (! target_big_endian)
8118 offset_expr.X_add_number -= off;
8119 else
8120 offset_expr.X_add_number += off;
67c0d1eb 8121 macro_build (&offset_expr, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
af22f5b2
CD
8122
8123 /* If necessary, move the result in tempreg the final destination. */
8124 if (treg == tempreg)
8fc2e39e 8125 break;
af22f5b2 8126 /* Protect second load's delay slot. */
017315e4 8127 load_delay_nop ();
67c0d1eb 8128 move_register (treg, tempreg);
af22f5b2 8129 break;
252b5132
RH
8130
8131 case M_ULD_A:
8132 s = "ldl";
8133 s2 = "ldr";
8134 off = 7;
8135 goto ulwa;
8136 case M_ULW_A:
8137 s = "lwl";
8138 s2 = "lwr";
8139 off = 3;
8140 ulwa:
d6bc6245 8141 used_at = 1;
67c0d1eb 8142 load_address (AT, &offset_expr, &used_at);
252b5132 8143 if (breg != 0)
67c0d1eb 8144 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
252b5132
RH
8145 if (! target_big_endian)
8146 expr1.X_add_number = off;
8147 else
8148 expr1.X_add_number = 0;
67c0d1eb 8149 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
8150 if (! target_big_endian)
8151 expr1.X_add_number = 0;
8152 else
8153 expr1.X_add_number = off;
67c0d1eb 8154 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
8155 break;
8156
8157 case M_ULH_A:
8158 case M_ULHU_A:
d6bc6245 8159 used_at = 1;
67c0d1eb 8160 load_address (AT, &offset_expr, &used_at);
252b5132 8161 if (breg != 0)
67c0d1eb 8162 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
252b5132
RH
8163 if (target_big_endian)
8164 expr1.X_add_number = 0;
67c0d1eb 8165 macro_build (&expr1, mask == M_ULH_A ? "lb" : "lbu", "t,o(b)",
17a2f251 8166 treg, BFD_RELOC_LO16, AT);
252b5132
RH
8167 if (target_big_endian)
8168 expr1.X_add_number = 1;
8169 else
8170 expr1.X_add_number = 0;
67c0d1eb
RS
8171 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
8172 macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
8173 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
252b5132
RH
8174 break;
8175
8176 case M_USH:
8fc2e39e 8177 used_at = 1;
252b5132
RH
8178 if (offset_expr.X_add_number >= 0x7fff)
8179 as_bad (_("operand overflow"));
8180 if (target_big_endian)
f9419b05 8181 ++offset_expr.X_add_number;
67c0d1eb
RS
8182 macro_build (&offset_expr, "sb", "t,o(b)", treg, BFD_RELOC_LO16, breg);
8183 macro_build (NULL, "srl", "d,w,<", AT, treg, 8);
252b5132 8184 if (target_big_endian)
f9419b05 8185 --offset_expr.X_add_number;
252b5132 8186 else
f9419b05 8187 ++offset_expr.X_add_number;
67c0d1eb 8188 macro_build (&offset_expr, "sb", "t,o(b)", AT, BFD_RELOC_LO16, breg);
252b5132
RH
8189 break;
8190
8191 case M_USD:
8192 s = "sdl";
8193 s2 = "sdr";
8194 off = 7;
8195 goto usw;
8196 case M_USW:
8197 s = "swl";
8198 s2 = "swr";
8199 off = 3;
8200 usw:
8201 if (offset_expr.X_add_number >= 0x8000 - off)
8202 as_bad (_("operand overflow"));
8203 if (! target_big_endian)
8204 offset_expr.X_add_number += off;
67c0d1eb 8205 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
252b5132
RH
8206 if (! target_big_endian)
8207 offset_expr.X_add_number -= off;
8208 else
8209 offset_expr.X_add_number += off;
67c0d1eb 8210 macro_build (&offset_expr, s2, "t,o(b)", treg, BFD_RELOC_LO16, breg);
8fc2e39e 8211 break;
252b5132
RH
8212
8213 case M_USD_A:
8214 s = "sdl";
8215 s2 = "sdr";
8216 off = 7;
8217 goto uswa;
8218 case M_USW_A:
8219 s = "swl";
8220 s2 = "swr";
8221 off = 3;
8222 uswa:
d6bc6245 8223 used_at = 1;
67c0d1eb 8224 load_address (AT, &offset_expr, &used_at);
252b5132 8225 if (breg != 0)
67c0d1eb 8226 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
252b5132
RH
8227 if (! target_big_endian)
8228 expr1.X_add_number = off;
8229 else
8230 expr1.X_add_number = 0;
67c0d1eb 8231 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
8232 if (! target_big_endian)
8233 expr1.X_add_number = 0;
8234 else
8235 expr1.X_add_number = off;
67c0d1eb 8236 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
8237 break;
8238
8239 case M_USH_A:
d6bc6245 8240 used_at = 1;
67c0d1eb 8241 load_address (AT, &offset_expr, &used_at);
252b5132 8242 if (breg != 0)
67c0d1eb 8243 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
252b5132
RH
8244 if (! target_big_endian)
8245 expr1.X_add_number = 0;
67c0d1eb
RS
8246 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
8247 macro_build (NULL, "srl", "d,w,<", treg, treg, 8);
252b5132
RH
8248 if (! target_big_endian)
8249 expr1.X_add_number = 1;
8250 else
8251 expr1.X_add_number = 0;
67c0d1eb 8252 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
8253 if (! target_big_endian)
8254 expr1.X_add_number = 0;
8255 else
8256 expr1.X_add_number = 1;
67c0d1eb
RS
8257 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
8258 macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
8259 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
252b5132
RH
8260 break;
8261
8262 default:
8263 /* FIXME: Check if this is one of the itbl macros, since they
bdaaa2e1 8264 are added dynamically. */
252b5132
RH
8265 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
8266 break;
8267 }
741fe287 8268 if (!mips_opts.at && used_at)
8fc2e39e 8269 as_bad (_("Macro used $at after \".set noat\""));
252b5132
RH
8270}
8271
8272/* Implement macros in mips16 mode. */
8273
8274static void
17a2f251 8275mips16_macro (struct mips_cl_insn *ip)
252b5132
RH
8276{
8277 int mask;
8278 int xreg, yreg, zreg, tmp;
252b5132
RH
8279 expressionS expr1;
8280 int dbl;
8281 const char *s, *s2, *s3;
8282
8283 mask = ip->insn_mo->mask;
8284
bf12938e
RS
8285 xreg = MIPS16_EXTRACT_OPERAND (RX, *ip);
8286 yreg = MIPS16_EXTRACT_OPERAND (RY, *ip);
8287 zreg = MIPS16_EXTRACT_OPERAND (RZ, *ip);
252b5132 8288
252b5132
RH
8289 expr1.X_op = O_constant;
8290 expr1.X_op_symbol = NULL;
8291 expr1.X_add_symbol = NULL;
8292 expr1.X_add_number = 1;
8293
8294 dbl = 0;
8295
8296 switch (mask)
8297 {
8298 default:
8299 internalError ();
8300
8301 case M_DDIV_3:
8302 dbl = 1;
8303 case M_DIV_3:
8304 s = "mflo";
8305 goto do_div3;
8306 case M_DREM_3:
8307 dbl = 1;
8308 case M_REM_3:
8309 s = "mfhi";
8310 do_div3:
7d10b47d 8311 start_noreorder ();
67c0d1eb 8312 macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg);
252b5132 8313 expr1.X_add_number = 2;
67c0d1eb
RS
8314 macro_build (&expr1, "bnez", "x,p", yreg);
8315 macro_build (NULL, "break", "6", 7);
bdaaa2e1 8316
252b5132
RH
8317 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
8318 since that causes an overflow. We should do that as well,
8319 but I don't see how to do the comparisons without a temporary
8320 register. */
7d10b47d 8321 end_noreorder ();
67c0d1eb 8322 macro_build (NULL, s, "x", zreg);
252b5132
RH
8323 break;
8324
8325 case M_DIVU_3:
8326 s = "divu";
8327 s2 = "mflo";
8328 goto do_divu3;
8329 case M_REMU_3:
8330 s = "divu";
8331 s2 = "mfhi";
8332 goto do_divu3;
8333 case M_DDIVU_3:
8334 s = "ddivu";
8335 s2 = "mflo";
8336 goto do_divu3;
8337 case M_DREMU_3:
8338 s = "ddivu";
8339 s2 = "mfhi";
8340 do_divu3:
7d10b47d 8341 start_noreorder ();
67c0d1eb 8342 macro_build (NULL, s, "0,x,y", xreg, yreg);
252b5132 8343 expr1.X_add_number = 2;
67c0d1eb
RS
8344 macro_build (&expr1, "bnez", "x,p", yreg);
8345 macro_build (NULL, "break", "6", 7);
7d10b47d 8346 end_noreorder ();
67c0d1eb 8347 macro_build (NULL, s2, "x", zreg);
252b5132
RH
8348 break;
8349
8350 case M_DMUL:
8351 dbl = 1;
8352 case M_MUL:
67c0d1eb
RS
8353 macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
8354 macro_build (NULL, "mflo", "x", zreg);
8fc2e39e 8355 break;
252b5132
RH
8356
8357 case M_DSUBU_I:
8358 dbl = 1;
8359 goto do_subu;
8360 case M_SUBU_I:
8361 do_subu:
8362 if (imm_expr.X_op != O_constant)
8363 as_bad (_("Unsupported large constant"));
8364 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 8365 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
252b5132
RH
8366 break;
8367
8368 case M_SUBU_I_2:
8369 if (imm_expr.X_op != O_constant)
8370 as_bad (_("Unsupported large constant"));
8371 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 8372 macro_build (&imm_expr, "addiu", "x,k", xreg);
252b5132
RH
8373 break;
8374
8375 case M_DSUBU_I_2:
8376 if (imm_expr.X_op != O_constant)
8377 as_bad (_("Unsupported large constant"));
8378 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 8379 macro_build (&imm_expr, "daddiu", "y,j", yreg);
252b5132
RH
8380 break;
8381
8382 case M_BEQ:
8383 s = "cmp";
8384 s2 = "bteqz";
8385 goto do_branch;
8386 case M_BNE:
8387 s = "cmp";
8388 s2 = "btnez";
8389 goto do_branch;
8390 case M_BLT:
8391 s = "slt";
8392 s2 = "btnez";
8393 goto do_branch;
8394 case M_BLTU:
8395 s = "sltu";
8396 s2 = "btnez";
8397 goto do_branch;
8398 case M_BLE:
8399 s = "slt";
8400 s2 = "bteqz";
8401 goto do_reverse_branch;
8402 case M_BLEU:
8403 s = "sltu";
8404 s2 = "bteqz";
8405 goto do_reverse_branch;
8406 case M_BGE:
8407 s = "slt";
8408 s2 = "bteqz";
8409 goto do_branch;
8410 case M_BGEU:
8411 s = "sltu";
8412 s2 = "bteqz";
8413 goto do_branch;
8414 case M_BGT:
8415 s = "slt";
8416 s2 = "btnez";
8417 goto do_reverse_branch;
8418 case M_BGTU:
8419 s = "sltu";
8420 s2 = "btnez";
8421
8422 do_reverse_branch:
8423 tmp = xreg;
8424 xreg = yreg;
8425 yreg = tmp;
8426
8427 do_branch:
67c0d1eb
RS
8428 macro_build (NULL, s, "x,y", xreg, yreg);
8429 macro_build (&offset_expr, s2, "p");
252b5132
RH
8430 break;
8431
8432 case M_BEQ_I:
8433 s = "cmpi";
8434 s2 = "bteqz";
8435 s3 = "x,U";
8436 goto do_branch_i;
8437 case M_BNE_I:
8438 s = "cmpi";
8439 s2 = "btnez";
8440 s3 = "x,U";
8441 goto do_branch_i;
8442 case M_BLT_I:
8443 s = "slti";
8444 s2 = "btnez";
8445 s3 = "x,8";
8446 goto do_branch_i;
8447 case M_BLTU_I:
8448 s = "sltiu";
8449 s2 = "btnez";
8450 s3 = "x,8";
8451 goto do_branch_i;
8452 case M_BLE_I:
8453 s = "slti";
8454 s2 = "btnez";
8455 s3 = "x,8";
8456 goto do_addone_branch_i;
8457 case M_BLEU_I:
8458 s = "sltiu";
8459 s2 = "btnez";
8460 s3 = "x,8";
8461 goto do_addone_branch_i;
8462 case M_BGE_I:
8463 s = "slti";
8464 s2 = "bteqz";
8465 s3 = "x,8";
8466 goto do_branch_i;
8467 case M_BGEU_I:
8468 s = "sltiu";
8469 s2 = "bteqz";
8470 s3 = "x,8";
8471 goto do_branch_i;
8472 case M_BGT_I:
8473 s = "slti";
8474 s2 = "bteqz";
8475 s3 = "x,8";
8476 goto do_addone_branch_i;
8477 case M_BGTU_I:
8478 s = "sltiu";
8479 s2 = "bteqz";
8480 s3 = "x,8";
8481
8482 do_addone_branch_i:
8483 if (imm_expr.X_op != O_constant)
8484 as_bad (_("Unsupported large constant"));
8485 ++imm_expr.X_add_number;
8486
8487 do_branch_i:
67c0d1eb
RS
8488 macro_build (&imm_expr, s, s3, xreg);
8489 macro_build (&offset_expr, s2, "p");
252b5132
RH
8490 break;
8491
8492 case M_ABS:
8493 expr1.X_add_number = 0;
67c0d1eb 8494 macro_build (&expr1, "slti", "x,8", yreg);
252b5132 8495 if (xreg != yreg)
67c0d1eb 8496 move_register (xreg, yreg);
252b5132 8497 expr1.X_add_number = 2;
67c0d1eb
RS
8498 macro_build (&expr1, "bteqz", "p");
8499 macro_build (NULL, "neg", "x,w", xreg, xreg);
252b5132
RH
8500 }
8501}
8502
8503/* For consistency checking, verify that all bits are specified either
8504 by the match/mask part of the instruction definition, or by the
8505 operand list. */
8506static int
17a2f251 8507validate_mips_insn (const struct mips_opcode *opc)
252b5132
RH
8508{
8509 const char *p = opc->args;
8510 char c;
8511 unsigned long used_bits = opc->mask;
8512
8513 if ((used_bits & opc->match) != opc->match)
8514 {
8515 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
8516 opc->name, opc->args);
8517 return 0;
8518 }
8519#define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
8520 while (*p)
8521 switch (c = *p++)
8522 {
8523 case ',': break;
8524 case '(': break;
8525 case ')': break;
af7ee8bf
CD
8526 case '+':
8527 switch (c = *p++)
8528 {
9bcd4f99
TS
8529 case '1': USE_BITS (OP_MASK_UDI1, OP_SH_UDI1); break;
8530 case '2': USE_BITS (OP_MASK_UDI2, OP_SH_UDI2); break;
8531 case '3': USE_BITS (OP_MASK_UDI3, OP_SH_UDI3); break;
8532 case '4': USE_BITS (OP_MASK_UDI4, OP_SH_UDI4); break;
af7ee8bf
CD
8533 case 'A': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8534 case 'B': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
8535 case 'C': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
bbcc0807
CD
8536 case 'D': USE_BITS (OP_MASK_RD, OP_SH_RD);
8537 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
5f74bc13
CD
8538 case 'E': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8539 case 'F': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
8540 case 'G': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
8541 case 'H': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
8542 case 'I': break;
ef2e4d86
CF
8543 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8544 case 'T': USE_BITS (OP_MASK_RT, OP_SH_RT);
8545 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
bb35fb24
NC
8546 case 'x': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
8547 case 'X': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
8548 case 'p': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
8549 case 'P': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
dd3cbb7e 8550 case 'Q': USE_BITS (OP_MASK_SEQI, OP_SH_SEQI); break;
bb35fb24
NC
8551 case 's': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
8552 case 'S': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
8553
af7ee8bf
CD
8554 default:
8555 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
8556 c, opc->name, opc->args);
8557 return 0;
8558 }
8559 break;
252b5132
RH
8560 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8561 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8562 case 'A': break;
4372b673 8563 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
252b5132
RH
8564 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
8565 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
8566 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8567 case 'F': break;
8568 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
156c2f8b 8569 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
252b5132 8570 case 'I': break;
e972090a 8571 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
af7ee8bf 8572 case 'K': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
252b5132
RH
8573 case 'L': break;
8574 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
8575 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
deec1734
CD
8576 case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break;
8577 case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL);
8578 USE_BITS (OP_MASK_FT, OP_SH_FT); break;
252b5132
RH
8579 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
8580 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
8581 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
8582 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
8583 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
deec1734
CD
8584 case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
8585 case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
8586 case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
252b5132
RH
8587 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
8588 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8589 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
8590 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
8591 case 'f': break;
8592 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
8593 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
8594 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
8595 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
8596 case 'l': break;
8597 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
8598 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
8599 case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break;
8600 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8601 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8602 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8603 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
8604 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8605 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8606 case 'x': break;
8607 case 'z': break;
8608 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
4372b673
NC
8609 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
8610 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
60b63b72
RS
8611 case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break;
8612 case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break;
8613 case '[': break;
8614 case ']': break;
620edafd 8615 case '1': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8b082fb1 8616 case '2': USE_BITS (OP_MASK_BP, OP_SH_BP); break;
74cd071d
CF
8617 case '3': USE_BITS (OP_MASK_SA3, OP_SH_SA3); break;
8618 case '4': USE_BITS (OP_MASK_SA4, OP_SH_SA4); break;
8619 case '5': USE_BITS (OP_MASK_IMM8, OP_SH_IMM8); break;
8620 case '6': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8621 case '7': USE_BITS (OP_MASK_DSPACC, OP_SH_DSPACC); break;
8622 case '8': USE_BITS (OP_MASK_WRDSP, OP_SH_WRDSP); break;
8623 case '9': USE_BITS (OP_MASK_DSPACC_S, OP_SH_DSPACC_S);break;
8624 case '0': USE_BITS (OP_MASK_DSPSFT, OP_SH_DSPSFT); break;
8625 case '\'': USE_BITS (OP_MASK_RDDSP, OP_SH_RDDSP); break;
8626 case ':': USE_BITS (OP_MASK_DSPSFT_7, OP_SH_DSPSFT_7);break;
8627 case '@': USE_BITS (OP_MASK_IMM10, OP_SH_IMM10); break;
ef2e4d86
CF
8628 case '!': USE_BITS (OP_MASK_MT_U, OP_SH_MT_U); break;
8629 case '$': USE_BITS (OP_MASK_MT_H, OP_SH_MT_H); break;
8630 case '*': USE_BITS (OP_MASK_MTACC_T, OP_SH_MTACC_T); break;
8631 case '&': USE_BITS (OP_MASK_MTACC_D, OP_SH_MTACC_D); break;
8632 case 'g': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
252b5132
RH
8633 default:
8634 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
8635 c, opc->name, opc->args);
8636 return 0;
8637 }
8638#undef USE_BITS
8639 if (used_bits != 0xffffffff)
8640 {
8641 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
8642 ~used_bits & 0xffffffff, opc->name, opc->args);
8643 return 0;
8644 }
8645 return 1;
8646}
8647
9bcd4f99
TS
8648/* UDI immediates. */
8649struct mips_immed {
8650 char type;
8651 unsigned int shift;
8652 unsigned long mask;
8653 const char * desc;
8654};
8655
8656static const struct mips_immed mips_immed[] = {
8657 { '1', OP_SH_UDI1, OP_MASK_UDI1, 0},
8658 { '2', OP_SH_UDI2, OP_MASK_UDI2, 0},
8659 { '3', OP_SH_UDI3, OP_MASK_UDI3, 0},
8660 { '4', OP_SH_UDI4, OP_MASK_UDI4, 0},
8661 { 0,0,0,0 }
8662};
8663
7455baf8
TS
8664/* Check whether an odd floating-point register is allowed. */
8665static int
8666mips_oddfpreg_ok (const struct mips_opcode *insn, int argnum)
8667{
8668 const char *s = insn->name;
8669
8670 if (insn->pinfo == INSN_MACRO)
8671 /* Let a macro pass, we'll catch it later when it is expanded. */
8672 return 1;
8673
8674 if (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa))
8675 {
8676 /* Allow odd registers for single-precision ops. */
8677 switch (insn->pinfo & (FP_S | FP_D))
8678 {
8679 case FP_S:
8680 case 0:
8681 return 1; /* both single precision - ok */
8682 case FP_D:
8683 return 0; /* both double precision - fail */
8684 default:
8685 break;
8686 }
8687
8688 /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand. */
8689 s = strchr (insn->name, '.');
8690 if (argnum == 2)
8691 s = s != NULL ? strchr (s + 1, '.') : NULL;
8692 return (s != NULL && (s[1] == 'w' || s[1] == 's'));
8693 }
8694
8695 /* Single-precision coprocessor loads and moves are OK too. */
8696 if ((insn->pinfo & FP_S)
8697 && (insn->pinfo & (INSN_COPROC_MEMORY_DELAY | INSN_STORE_MEMORY
8698 | INSN_LOAD_COPROC_DELAY | INSN_COPROC_MOVE_DELAY)))
8699 return 1;
8700
8701 return 0;
8702}
8703
252b5132
RH
8704/* This routine assembles an instruction into its binary format. As a
8705 side effect, it sets one of the global variables imm_reloc or
8706 offset_reloc to the type of relocation to do if one of the operands
8707 is an address expression. */
8708
8709static void
17a2f251 8710mips_ip (char *str, struct mips_cl_insn *ip)
252b5132
RH
8711{
8712 char *s;
8713 const char *args;
43841e91 8714 char c = 0;
252b5132
RH
8715 struct mips_opcode *insn;
8716 char *argsStart;
8717 unsigned int regno;
8718 unsigned int lastregno = 0;
af7ee8bf 8719 unsigned int lastpos = 0;
071742cf 8720 unsigned int limlo, limhi;
252b5132
RH
8721 char *s_reset;
8722 char save_c = 0;
74cd071d 8723 offsetT min_range, max_range;
707bfff6
TS
8724 int argnum;
8725 unsigned int rtype;
252b5132
RH
8726
8727 insn_error = NULL;
8728
8729 /* If the instruction contains a '.', we first try to match an instruction
8730 including the '.'. Then we try again without the '.'. */
8731 insn = NULL;
3882b010 8732 for (s = str; *s != '\0' && !ISSPACE (*s); ++s)
252b5132
RH
8733 continue;
8734
8735 /* If we stopped on whitespace, then replace the whitespace with null for
8736 the call to hash_find. Save the character we replaced just in case we
8737 have to re-parse the instruction. */
3882b010 8738 if (ISSPACE (*s))
252b5132
RH
8739 {
8740 save_c = *s;
8741 *s++ = '\0';
8742 }
bdaaa2e1 8743
252b5132
RH
8744 insn = (struct mips_opcode *) hash_find (op_hash, str);
8745
8746 /* If we didn't find the instruction in the opcode table, try again, but
8747 this time with just the instruction up to, but not including the
8748 first '.'. */
8749 if (insn == NULL)
8750 {
bdaaa2e1 8751 /* Restore the character we overwrite above (if any). */
252b5132
RH
8752 if (save_c)
8753 *(--s) = save_c;
8754
8755 /* Scan up to the first '.' or whitespace. */
3882b010
L
8756 for (s = str;
8757 *s != '\0' && *s != '.' && !ISSPACE (*s);
8758 ++s)
252b5132
RH
8759 continue;
8760
8761 /* If we did not find a '.', then we can quit now. */
8762 if (*s != '.')
8763 {
8764 insn_error = "unrecognized opcode";
8765 return;
8766 }
8767
8768 /* Lookup the instruction in the hash table. */
8769 *s++ = '\0';
8770 if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL)
8771 {
8772 insn_error = "unrecognized opcode";
8773 return;
8774 }
252b5132
RH
8775 }
8776
8777 argsStart = s;
8778 for (;;)
8779 {
b34976b6 8780 bfd_boolean ok;
252b5132
RH
8781
8782 assert (strcmp (insn->name, str) == 0);
8783
037b32b9 8784 ok = is_opcode_valid (insn, FALSE);
252b5132
RH
8785 if (! ok)
8786 {
8787 if (insn + 1 < &mips_opcodes[NUMOPCODES]
8788 && strcmp (insn->name, insn[1].name) == 0)
8789 {
8790 ++insn;
8791 continue;
8792 }
252b5132 8793 else
beae10d5 8794 {
268f6bed
L
8795 if (!insn_error)
8796 {
8797 static char buf[100];
fef14a42
TS
8798 sprintf (buf,
8799 _("opcode not supported on this processor: %s (%s)"),
8800 mips_cpu_info_from_arch (mips_opts.arch)->name,
8801 mips_cpu_info_from_isa (mips_opts.isa)->name);
268f6bed
L
8802 insn_error = buf;
8803 }
8804 if (save_c)
8805 *(--s) = save_c;
2bd7f1f3 8806 return;
252b5132 8807 }
252b5132
RH
8808 }
8809
1e915849 8810 create_insn (ip, insn);
268f6bed 8811 insn_error = NULL;
707bfff6 8812 argnum = 1;
24864476 8813 lastregno = 0xffffffff;
252b5132
RH
8814 for (args = insn->args;; ++args)
8815 {
deec1734
CD
8816 int is_mdmx;
8817
ad8d3bb3 8818 s += strspn (s, " \t");
deec1734 8819 is_mdmx = 0;
252b5132
RH
8820 switch (*args)
8821 {
8822 case '\0': /* end of args */
8823 if (*s == '\0')
8824 return;
8825 break;
8826
8b082fb1
TS
8827 case '2': /* dsp 2-bit unsigned immediate in bit 11 */
8828 my_getExpression (&imm_expr, s);
8829 check_absolute_expr (ip, &imm_expr);
8830 if ((unsigned long) imm_expr.X_add_number != 1
8831 && (unsigned long) imm_expr.X_add_number != 3)
8832 {
8833 as_bad (_("BALIGN immediate not 1 or 3 (%lu)"),
8834 (unsigned long) imm_expr.X_add_number);
8835 }
8836 INSERT_OPERAND (BP, *ip, imm_expr.X_add_number);
8837 imm_expr.X_op = O_absent;
8838 s = expr_end;
8839 continue;
8840
74cd071d
CF
8841 case '3': /* dsp 3-bit unsigned immediate in bit 21 */
8842 my_getExpression (&imm_expr, s);
8843 check_absolute_expr (ip, &imm_expr);
8844 if (imm_expr.X_add_number & ~OP_MASK_SA3)
8845 {
a9e24354
TS
8846 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8847 OP_MASK_SA3, (unsigned long) imm_expr.X_add_number);
74cd071d 8848 }
a9e24354 8849 INSERT_OPERAND (SA3, *ip, imm_expr.X_add_number);
74cd071d
CF
8850 imm_expr.X_op = O_absent;
8851 s = expr_end;
8852 continue;
8853
8854 case '4': /* dsp 4-bit unsigned immediate in bit 21 */
8855 my_getExpression (&imm_expr, s);
8856 check_absolute_expr (ip, &imm_expr);
8857 if (imm_expr.X_add_number & ~OP_MASK_SA4)
8858 {
a9e24354
TS
8859 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8860 OP_MASK_SA4, (unsigned long) imm_expr.X_add_number);
74cd071d 8861 }
a9e24354 8862 INSERT_OPERAND (SA4, *ip, imm_expr.X_add_number);
74cd071d
CF
8863 imm_expr.X_op = O_absent;
8864 s = expr_end;
8865 continue;
8866
8867 case '5': /* dsp 8-bit unsigned immediate in bit 16 */
8868 my_getExpression (&imm_expr, s);
8869 check_absolute_expr (ip, &imm_expr);
8870 if (imm_expr.X_add_number & ~OP_MASK_IMM8)
8871 {
a9e24354
TS
8872 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8873 OP_MASK_IMM8, (unsigned long) imm_expr.X_add_number);
74cd071d 8874 }
a9e24354 8875 INSERT_OPERAND (IMM8, *ip, imm_expr.X_add_number);
74cd071d
CF
8876 imm_expr.X_op = O_absent;
8877 s = expr_end;
8878 continue;
8879
8880 case '6': /* dsp 5-bit unsigned immediate in bit 21 */
8881 my_getExpression (&imm_expr, s);
8882 check_absolute_expr (ip, &imm_expr);
8883 if (imm_expr.X_add_number & ~OP_MASK_RS)
8884 {
a9e24354
TS
8885 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8886 OP_MASK_RS, (unsigned long) imm_expr.X_add_number);
74cd071d 8887 }
a9e24354 8888 INSERT_OPERAND (RS, *ip, imm_expr.X_add_number);
74cd071d
CF
8889 imm_expr.X_op = O_absent;
8890 s = expr_end;
8891 continue;
8892
8893 case '7': /* four dsp accumulators in bits 11,12 */
8894 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
8895 s[3] >= '0' && s[3] <= '3')
8896 {
8897 regno = s[3] - '0';
8898 s += 4;
a9e24354 8899 INSERT_OPERAND (DSPACC, *ip, regno);
74cd071d
CF
8900 continue;
8901 }
8902 else
8903 as_bad (_("Invalid dsp acc register"));
8904 break;
8905
8906 case '8': /* dsp 6-bit unsigned immediate in bit 11 */
8907 my_getExpression (&imm_expr, s);
8908 check_absolute_expr (ip, &imm_expr);
8909 if (imm_expr.X_add_number & ~OP_MASK_WRDSP)
8910 {
a9e24354
TS
8911 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8912 OP_MASK_WRDSP,
8913 (unsigned long) imm_expr.X_add_number);
74cd071d 8914 }
a9e24354 8915 INSERT_OPERAND (WRDSP, *ip, imm_expr.X_add_number);
74cd071d
CF
8916 imm_expr.X_op = O_absent;
8917 s = expr_end;
8918 continue;
8919
8920 case '9': /* four dsp accumulators in bits 21,22 */
8921 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
8922 s[3] >= '0' && s[3] <= '3')
8923 {
8924 regno = s[3] - '0';
8925 s += 4;
a9e24354 8926 INSERT_OPERAND (DSPACC_S, *ip, regno);
74cd071d
CF
8927 continue;
8928 }
8929 else
8930 as_bad (_("Invalid dsp acc register"));
8931 break;
8932
8933 case '0': /* dsp 6-bit signed immediate in bit 20 */
8934 my_getExpression (&imm_expr, s);
8935 check_absolute_expr (ip, &imm_expr);
8936 min_range = -((OP_MASK_DSPSFT + 1) >> 1);
8937 max_range = ((OP_MASK_DSPSFT + 1) >> 1) - 1;
8938 if (imm_expr.X_add_number < min_range ||
8939 imm_expr.X_add_number > max_range)
8940 {
a9e24354
TS
8941 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8942 (long) min_range, (long) max_range,
8943 (long) imm_expr.X_add_number);
74cd071d 8944 }
a9e24354 8945 INSERT_OPERAND (DSPSFT, *ip, imm_expr.X_add_number);
74cd071d
CF
8946 imm_expr.X_op = O_absent;
8947 s = expr_end;
8948 continue;
8949
8950 case '\'': /* dsp 6-bit unsigned immediate in bit 16 */
8951 my_getExpression (&imm_expr, s);
8952 check_absolute_expr (ip, &imm_expr);
8953 if (imm_expr.X_add_number & ~OP_MASK_RDDSP)
8954 {
a9e24354
TS
8955 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8956 OP_MASK_RDDSP,
8957 (unsigned long) imm_expr.X_add_number);
74cd071d 8958 }
a9e24354 8959 INSERT_OPERAND (RDDSP, *ip, imm_expr.X_add_number);
74cd071d
CF
8960 imm_expr.X_op = O_absent;
8961 s = expr_end;
8962 continue;
8963
8964 case ':': /* dsp 7-bit signed immediate in bit 19 */
8965 my_getExpression (&imm_expr, s);
8966 check_absolute_expr (ip, &imm_expr);
8967 min_range = -((OP_MASK_DSPSFT_7 + 1) >> 1);
8968 max_range = ((OP_MASK_DSPSFT_7 + 1) >> 1) - 1;
8969 if (imm_expr.X_add_number < min_range ||
8970 imm_expr.X_add_number > max_range)
8971 {
a9e24354
TS
8972 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8973 (long) min_range, (long) max_range,
8974 (long) imm_expr.X_add_number);
74cd071d 8975 }
a9e24354 8976 INSERT_OPERAND (DSPSFT_7, *ip, imm_expr.X_add_number);
74cd071d
CF
8977 imm_expr.X_op = O_absent;
8978 s = expr_end;
8979 continue;
8980
8981 case '@': /* dsp 10-bit signed immediate in bit 16 */
8982 my_getExpression (&imm_expr, s);
8983 check_absolute_expr (ip, &imm_expr);
8984 min_range = -((OP_MASK_IMM10 + 1) >> 1);
8985 max_range = ((OP_MASK_IMM10 + 1) >> 1) - 1;
8986 if (imm_expr.X_add_number < min_range ||
8987 imm_expr.X_add_number > max_range)
8988 {
a9e24354
TS
8989 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8990 (long) min_range, (long) max_range,
8991 (long) imm_expr.X_add_number);
74cd071d 8992 }
a9e24354 8993 INSERT_OPERAND (IMM10, *ip, imm_expr.X_add_number);
74cd071d
CF
8994 imm_expr.X_op = O_absent;
8995 s = expr_end;
8996 continue;
8997
a9e24354 8998 case '!': /* MT usermode flag bit. */
ef2e4d86
CF
8999 my_getExpression (&imm_expr, s);
9000 check_absolute_expr (ip, &imm_expr);
9001 if (imm_expr.X_add_number & ~OP_MASK_MT_U)
a9e24354
TS
9002 as_bad (_("MT usermode bit not 0 or 1 (%lu)"),
9003 (unsigned long) imm_expr.X_add_number);
9004 INSERT_OPERAND (MT_U, *ip, imm_expr.X_add_number);
ef2e4d86
CF
9005 imm_expr.X_op = O_absent;
9006 s = expr_end;
9007 continue;
9008
a9e24354 9009 case '$': /* MT load high flag bit. */
ef2e4d86
CF
9010 my_getExpression (&imm_expr, s);
9011 check_absolute_expr (ip, &imm_expr);
9012 if (imm_expr.X_add_number & ~OP_MASK_MT_H)
a9e24354
TS
9013 as_bad (_("MT load high bit not 0 or 1 (%lu)"),
9014 (unsigned long) imm_expr.X_add_number);
9015 INSERT_OPERAND (MT_H, *ip, imm_expr.X_add_number);
ef2e4d86
CF
9016 imm_expr.X_op = O_absent;
9017 s = expr_end;
9018 continue;
9019
9020 case '*': /* four dsp accumulators in bits 18,19 */
9021 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
9022 s[3] >= '0' && s[3] <= '3')
9023 {
9024 regno = s[3] - '0';
9025 s += 4;
a9e24354 9026 INSERT_OPERAND (MTACC_T, *ip, regno);
ef2e4d86
CF
9027 continue;
9028 }
9029 else
9030 as_bad (_("Invalid dsp/smartmips acc register"));
9031 break;
9032
9033 case '&': /* four dsp accumulators in bits 13,14 */
9034 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
9035 s[3] >= '0' && s[3] <= '3')
9036 {
9037 regno = s[3] - '0';
9038 s += 4;
a9e24354 9039 INSERT_OPERAND (MTACC_D, *ip, regno);
ef2e4d86
CF
9040 continue;
9041 }
9042 else
9043 as_bad (_("Invalid dsp/smartmips acc register"));
9044 break;
9045
252b5132 9046 case ',':
a339155f 9047 ++argnum;
252b5132
RH
9048 if (*s++ == *args)
9049 continue;
9050 s--;
9051 switch (*++args)
9052 {
9053 case 'r':
9054 case 'v':
bf12938e 9055 INSERT_OPERAND (RS, *ip, lastregno);
252b5132
RH
9056 continue;
9057
9058 case 'w':
bf12938e 9059 INSERT_OPERAND (RT, *ip, lastregno);
38487616
TS
9060 continue;
9061
252b5132 9062 case 'W':
bf12938e 9063 INSERT_OPERAND (FT, *ip, lastregno);
252b5132
RH
9064 continue;
9065
9066 case 'V':
bf12938e 9067 INSERT_OPERAND (FS, *ip, lastregno);
252b5132
RH
9068 continue;
9069 }
9070 break;
9071
9072 case '(':
9073 /* Handle optional base register.
9074 Either the base register is omitted or
bdaaa2e1 9075 we must have a left paren. */
252b5132
RH
9076 /* This is dependent on the next operand specifier
9077 is a base register specification. */
9078 assert (args[1] == 'b' || args[1] == '5'
9079 || args[1] == '-' || args[1] == '4');
9080 if (*s == '\0')
9081 return;
9082
9083 case ')': /* these must match exactly */
60b63b72
RS
9084 case '[':
9085 case ']':
252b5132
RH
9086 if (*s++ == *args)
9087 continue;
9088 break;
9089
af7ee8bf
CD
9090 case '+': /* Opcode extension character. */
9091 switch (*++args)
9092 {
9bcd4f99
TS
9093 case '1': /* UDI immediates. */
9094 case '2':
9095 case '3':
9096 case '4':
9097 {
9098 const struct mips_immed *imm = mips_immed;
9099
9100 while (imm->type && imm->type != *args)
9101 ++imm;
9102 if (! imm->type)
9103 internalError ();
9104 my_getExpression (&imm_expr, s);
9105 check_absolute_expr (ip, &imm_expr);
9106 if ((unsigned long) imm_expr.X_add_number & ~imm->mask)
9107 {
9108 as_warn (_("Illegal %s number (%lu, 0x%lx)"),
9109 imm->desc ? imm->desc : ip->insn_mo->name,
9110 (unsigned long) imm_expr.X_add_number,
9111 (unsigned long) imm_expr.X_add_number);
9112 imm_expr.X_add_number &= imm->mask;
9113 }
9114 ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number
9115 << imm->shift);
9116 imm_expr.X_op = O_absent;
9117 s = expr_end;
9118 }
9119 continue;
9120
071742cf
CD
9121 case 'A': /* ins/ext position, becomes LSB. */
9122 limlo = 0;
9123 limhi = 31;
5f74bc13
CD
9124 goto do_lsb;
9125 case 'E':
9126 limlo = 32;
9127 limhi = 63;
9128 goto do_lsb;
9129do_lsb:
071742cf
CD
9130 my_getExpression (&imm_expr, s);
9131 check_absolute_expr (ip, &imm_expr);
9132 if ((unsigned long) imm_expr.X_add_number < limlo
9133 || (unsigned long) imm_expr.X_add_number > limhi)
9134 {
9135 as_bad (_("Improper position (%lu)"),
9136 (unsigned long) imm_expr.X_add_number);
9137 imm_expr.X_add_number = limlo;
9138 }
9139 lastpos = imm_expr.X_add_number;
bf12938e 9140 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
071742cf
CD
9141 imm_expr.X_op = O_absent;
9142 s = expr_end;
9143 continue;
9144
9145 case 'B': /* ins size, becomes MSB. */
9146 limlo = 1;
9147 limhi = 32;
5f74bc13
CD
9148 goto do_msb;
9149 case 'F':
9150 limlo = 33;
9151 limhi = 64;
9152 goto do_msb;
9153do_msb:
071742cf
CD
9154 my_getExpression (&imm_expr, s);
9155 check_absolute_expr (ip, &imm_expr);
9156 /* Check for negative input so that small negative numbers
9157 will not succeed incorrectly. The checks against
9158 (pos+size) transitively check "size" itself,
9159 assuming that "pos" is reasonable. */
9160 if ((long) imm_expr.X_add_number < 0
9161 || ((unsigned long) imm_expr.X_add_number
9162 + lastpos) < limlo
9163 || ((unsigned long) imm_expr.X_add_number
9164 + lastpos) > limhi)
9165 {
9166 as_bad (_("Improper insert size (%lu, position %lu)"),
9167 (unsigned long) imm_expr.X_add_number,
9168 (unsigned long) lastpos);
9169 imm_expr.X_add_number = limlo - lastpos;
9170 }
bf12938e
RS
9171 INSERT_OPERAND (INSMSB, *ip,
9172 lastpos + imm_expr.X_add_number - 1);
071742cf
CD
9173 imm_expr.X_op = O_absent;
9174 s = expr_end;
9175 continue;
9176
9177 case 'C': /* ext size, becomes MSBD. */
9178 limlo = 1;
9179 limhi = 32;
5f74bc13
CD
9180 goto do_msbd;
9181 case 'G':
9182 limlo = 33;
9183 limhi = 64;
9184 goto do_msbd;
9185 case 'H':
9186 limlo = 33;
9187 limhi = 64;
9188 goto do_msbd;
9189do_msbd:
071742cf
CD
9190 my_getExpression (&imm_expr, s);
9191 check_absolute_expr (ip, &imm_expr);
9192 /* Check for negative input so that small negative numbers
9193 will not succeed incorrectly. The checks against
9194 (pos+size) transitively check "size" itself,
9195 assuming that "pos" is reasonable. */
9196 if ((long) imm_expr.X_add_number < 0
9197 || ((unsigned long) imm_expr.X_add_number
9198 + lastpos) < limlo
9199 || ((unsigned long) imm_expr.X_add_number
9200 + lastpos) > limhi)
9201 {
9202 as_bad (_("Improper extract size (%lu, position %lu)"),
9203 (unsigned long) imm_expr.X_add_number,
9204 (unsigned long) lastpos);
9205 imm_expr.X_add_number = limlo - lastpos;
9206 }
bf12938e 9207 INSERT_OPERAND (EXTMSBD, *ip, imm_expr.X_add_number - 1);
071742cf
CD
9208 imm_expr.X_op = O_absent;
9209 s = expr_end;
9210 continue;
af7ee8bf 9211
bbcc0807
CD
9212 case 'D':
9213 /* +D is for disassembly only; never match. */
9214 break;
9215
5f74bc13
CD
9216 case 'I':
9217 /* "+I" is like "I", except that imm2_expr is used. */
9218 my_getExpression (&imm2_expr, s);
9219 if (imm2_expr.X_op != O_big
9220 && imm2_expr.X_op != O_constant)
9221 insn_error = _("absolute expression required");
9ee2a2d4
MR
9222 if (HAVE_32BIT_GPRS)
9223 normalize_constant_expr (&imm2_expr);
5f74bc13
CD
9224 s = expr_end;
9225 continue;
9226
707bfff6 9227 case 'T': /* Coprocessor register. */
ef2e4d86
CF
9228 /* +T is for disassembly only; never match. */
9229 break;
9230
707bfff6 9231 case 't': /* Coprocessor register number. */
ef2e4d86
CF
9232 if (s[0] == '$' && ISDIGIT (s[1]))
9233 {
9234 ++s;
9235 regno = 0;
9236 do
9237 {
9238 regno *= 10;
9239 regno += *s - '0';
9240 ++s;
9241 }
9242 while (ISDIGIT (*s));
9243 if (regno > 31)
9244 as_bad (_("Invalid register number (%d)"), regno);
9245 else
9246 {
a9e24354 9247 INSERT_OPERAND (RT, *ip, regno);
ef2e4d86
CF
9248 continue;
9249 }
9250 }
9251 else
9252 as_bad (_("Invalid coprocessor 0 register number"));
9253 break;
9254
bb35fb24
NC
9255 case 'x':
9256 /* bbit[01] and bbit[01]32 bit index. Give error if index
9257 is not in the valid range. */
9258 my_getExpression (&imm_expr, s);
9259 check_absolute_expr (ip, &imm_expr);
9260 if ((unsigned) imm_expr.X_add_number > 31)
9261 {
9262 as_bad (_("Improper bit index (%lu)"),
9263 (unsigned long) imm_expr.X_add_number);
9264 imm_expr.X_add_number = 0;
9265 }
9266 INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number);
9267 imm_expr.X_op = O_absent;
9268 s = expr_end;
9269 continue;
9270
9271 case 'X':
9272 /* bbit[01] bit index when bbit is used but we generate
9273 bbit[01]32 because the index is over 32. Move to the
9274 next candidate if index is not in the valid range. */
9275 my_getExpression (&imm_expr, s);
9276 check_absolute_expr (ip, &imm_expr);
9277 if ((unsigned) imm_expr.X_add_number < 32
9278 || (unsigned) imm_expr.X_add_number > 63)
9279 break;
9280 INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number - 32);
9281 imm_expr.X_op = O_absent;
9282 s = expr_end;
9283 continue;
9284
9285 case 'p':
9286 /* cins, cins32, exts and exts32 position field. Give error
9287 if it's not in the valid range. */
9288 my_getExpression (&imm_expr, s);
9289 check_absolute_expr (ip, &imm_expr);
9290 if ((unsigned) imm_expr.X_add_number > 31)
9291 {
9292 as_bad (_("Improper position (%lu)"),
9293 (unsigned long) imm_expr.X_add_number);
9294 imm_expr.X_add_number = 0;
9295 }
9296 /* Make the pos explicit to simplify +S. */
9297 lastpos = imm_expr.X_add_number + 32;
9298 INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number);
9299 imm_expr.X_op = O_absent;
9300 s = expr_end;
9301 continue;
9302
9303 case 'P':
9304 /* cins, cins32, exts and exts32 position field. Move to
9305 the next candidate if it's not in the valid range. */
9306 my_getExpression (&imm_expr, s);
9307 check_absolute_expr (ip, &imm_expr);
9308 if ((unsigned) imm_expr.X_add_number < 32
9309 || (unsigned) imm_expr.X_add_number > 63)
9310 break;
9311 lastpos = imm_expr.X_add_number;
9312 INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number - 32);
9313 imm_expr.X_op = O_absent;
9314 s = expr_end;
9315 continue;
9316
9317 case 's':
9318 /* cins and exts length-minus-one field. */
9319 my_getExpression (&imm_expr, s);
9320 check_absolute_expr (ip, &imm_expr);
9321 if ((unsigned long) imm_expr.X_add_number > 31)
9322 {
9323 as_bad (_("Improper size (%lu)"),
9324 (unsigned long) imm_expr.X_add_number);
9325 imm_expr.X_add_number = 0;
9326 }
9327 INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number);
9328 imm_expr.X_op = O_absent;
9329 s = expr_end;
9330 continue;
9331
9332 case 'S':
9333 /* cins32/exts32 and cins/exts aliasing cint32/exts32
9334 length-minus-one field. */
9335 my_getExpression (&imm_expr, s);
9336 check_absolute_expr (ip, &imm_expr);
9337 if ((long) imm_expr.X_add_number < 0
9338 || (unsigned long) imm_expr.X_add_number + lastpos > 63)
9339 {
9340 as_bad (_("Improper size (%lu)"),
9341 (unsigned long) imm_expr.X_add_number);
9342 imm_expr.X_add_number = 0;
9343 }
9344 INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number);
9345 imm_expr.X_op = O_absent;
9346 s = expr_end;
9347 continue;
9348
dd3cbb7e
NC
9349 case 'Q':
9350 /* seqi/snei immediate field. */
9351 my_getExpression (&imm_expr, s);
9352 check_absolute_expr (ip, &imm_expr);
9353 if ((long) imm_expr.X_add_number < -512
9354 || (long) imm_expr.X_add_number >= 512)
9355 {
9356 as_bad (_("Improper immediate (%ld)"),
9357 (long) imm_expr.X_add_number);
9358 imm_expr.X_add_number = 0;
9359 }
9360 INSERT_OPERAND (SEQI, *ip, imm_expr.X_add_number);
9361 imm_expr.X_op = O_absent;
9362 s = expr_end;
9363 continue;
9364
af7ee8bf
CD
9365 default:
9366 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
9367 *args, insn->name, insn->args);
9368 /* Further processing is fruitless. */
9369 return;
9370 }
9371 break;
9372
252b5132
RH
9373 case '<': /* must be at least one digit */
9374 /*
9375 * According to the manual, if the shift amount is greater
b6ff326e
KH
9376 * than 31 or less than 0, then the shift amount should be
9377 * mod 32. In reality the mips assembler issues an error.
252b5132
RH
9378 * We issue a warning and mask out all but the low 5 bits.
9379 */
9380 my_getExpression (&imm_expr, s);
9381 check_absolute_expr (ip, &imm_expr);
9382 if ((unsigned long) imm_expr.X_add_number > 31)
bf12938e
RS
9383 as_warn (_("Improper shift amount (%lu)"),
9384 (unsigned long) imm_expr.X_add_number);
9385 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
252b5132
RH
9386 imm_expr.X_op = O_absent;
9387 s = expr_end;
9388 continue;
9389
9390 case '>': /* shift amount minus 32 */
9391 my_getExpression (&imm_expr, s);
9392 check_absolute_expr (ip, &imm_expr);
9393 if ((unsigned long) imm_expr.X_add_number < 32
9394 || (unsigned long) imm_expr.X_add_number > 63)
9395 break;
bf12938e 9396 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number - 32);
252b5132
RH
9397 imm_expr.X_op = O_absent;
9398 s = expr_end;
9399 continue;
9400
252b5132
RH
9401 case 'k': /* cache code */
9402 case 'h': /* prefx code */
620edafd 9403 case '1': /* sync type */
252b5132
RH
9404 my_getExpression (&imm_expr, s);
9405 check_absolute_expr (ip, &imm_expr);
9406 if ((unsigned long) imm_expr.X_add_number > 31)
bf12938e
RS
9407 as_warn (_("Invalid value for `%s' (%lu)"),
9408 ip->insn_mo->name,
9409 (unsigned long) imm_expr.X_add_number);
252b5132 9410 if (*args == 'k')
bf12938e 9411 INSERT_OPERAND (CACHE, *ip, imm_expr.X_add_number);
620edafd 9412 else if (*args == 'h')
bf12938e 9413 INSERT_OPERAND (PREFX, *ip, imm_expr.X_add_number);
620edafd
CF
9414 else
9415 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
252b5132
RH
9416 imm_expr.X_op = O_absent;
9417 s = expr_end;
9418 continue;
9419
9420 case 'c': /* break code */
9421 my_getExpression (&imm_expr, s);
9422 check_absolute_expr (ip, &imm_expr);
a9e24354
TS
9423 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE)
9424 as_warn (_("Code for %s not in range 0..1023 (%lu)"),
9425 ip->insn_mo->name,
bf12938e
RS
9426 (unsigned long) imm_expr.X_add_number);
9427 INSERT_OPERAND (CODE, *ip, imm_expr.X_add_number);
252b5132
RH
9428 imm_expr.X_op = O_absent;
9429 s = expr_end;
9430 continue;
9431
9432 case 'q': /* lower break code */
9433 my_getExpression (&imm_expr, s);
9434 check_absolute_expr (ip, &imm_expr);
a9e24354
TS
9435 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE2)
9436 as_warn (_("Lower code for %s not in range 0..1023 (%lu)"),
9437 ip->insn_mo->name,
bf12938e
RS
9438 (unsigned long) imm_expr.X_add_number);
9439 INSERT_OPERAND (CODE2, *ip, imm_expr.X_add_number);
252b5132
RH
9440 imm_expr.X_op = O_absent;
9441 s = expr_end;
9442 continue;
9443
4372b673 9444 case 'B': /* 20-bit syscall/break code. */
156c2f8b 9445 my_getExpression (&imm_expr, s);
156c2f8b 9446 check_absolute_expr (ip, &imm_expr);
793b27f4 9447 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20)
a9e24354
TS
9448 as_warn (_("Code for %s not in range 0..1048575 (%lu)"),
9449 ip->insn_mo->name,
793b27f4 9450 (unsigned long) imm_expr.X_add_number);
bf12938e 9451 INSERT_OPERAND (CODE20, *ip, imm_expr.X_add_number);
252b5132
RH
9452 imm_expr.X_op = O_absent;
9453 s = expr_end;
9454 continue;
9455
98d3f06f 9456 case 'C': /* Coprocessor code */
beae10d5 9457 my_getExpression (&imm_expr, s);
252b5132 9458 check_absolute_expr (ip, &imm_expr);
a9e24354 9459 if ((unsigned long) imm_expr.X_add_number > OP_MASK_COPZ)
252b5132 9460 {
793b27f4
TS
9461 as_warn (_("Coproccesor code > 25 bits (%lu)"),
9462 (unsigned long) imm_expr.X_add_number);
a9e24354 9463 imm_expr.X_add_number &= OP_MASK_COPZ;
252b5132 9464 }
a9e24354 9465 INSERT_OPERAND (COPZ, *ip, imm_expr.X_add_number);
beae10d5
KH
9466 imm_expr.X_op = O_absent;
9467 s = expr_end;
9468 continue;
252b5132 9469
4372b673
NC
9470 case 'J': /* 19-bit wait code. */
9471 my_getExpression (&imm_expr, s);
9472 check_absolute_expr (ip, &imm_expr);
793b27f4 9473 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
a9e24354
TS
9474 {
9475 as_warn (_("Illegal 19-bit code (%lu)"),
9476 (unsigned long) imm_expr.X_add_number);
9477 imm_expr.X_add_number &= OP_MASK_CODE19;
9478 }
bf12938e 9479 INSERT_OPERAND (CODE19, *ip, imm_expr.X_add_number);
4372b673
NC
9480 imm_expr.X_op = O_absent;
9481 s = expr_end;
9482 continue;
9483
707bfff6 9484 case 'P': /* Performance register. */
beae10d5 9485 my_getExpression (&imm_expr, s);
252b5132 9486 check_absolute_expr (ip, &imm_expr);
beae10d5 9487 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
bf12938e
RS
9488 as_warn (_("Invalid performance register (%lu)"),
9489 (unsigned long) imm_expr.X_add_number);
9490 INSERT_OPERAND (PERFREG, *ip, imm_expr.X_add_number);
beae10d5
KH
9491 imm_expr.X_op = O_absent;
9492 s = expr_end;
9493 continue;
252b5132 9494
707bfff6
TS
9495 case 'G': /* Coprocessor destination register. */
9496 if (((ip->insn_opcode >> OP_SH_OP) & OP_MASK_OP) == OP_OP_COP0)
9497 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_CP0, &regno);
9498 else
9499 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
a9e24354 9500 INSERT_OPERAND (RD, *ip, regno);
707bfff6
TS
9501 if (ok)
9502 {
9503 lastregno = regno;
9504 continue;
9505 }
9506 else
9507 break;
9508
252b5132
RH
9509 case 'b': /* base register */
9510 case 'd': /* destination register */
9511 case 's': /* source register */
9512 case 't': /* target register */
9513 case 'r': /* both target and source */
9514 case 'v': /* both dest and source */
9515 case 'w': /* both dest and target */
9516 case 'E': /* coprocessor target register */
af7ee8bf 9517 case 'K': /* 'rdhwr' destination register */
252b5132
RH
9518 case 'x': /* ignore register name */
9519 case 'z': /* must be zero register */
4372b673 9520 case 'U': /* destination register (clo/clz). */
ef2e4d86 9521 case 'g': /* coprocessor destination register */
707bfff6
TS
9522 s_reset = s;
9523 if (*args == 'E' || *args == 'K')
9524 ok = reg_lookup (&s, RTYPE_NUM, &regno);
9525 else
9526 {
9527 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
741fe287
MR
9528 if (regno == AT && mips_opts.at)
9529 {
9530 if (mips_opts.at == ATREG)
9531 as_warn (_("used $at without \".set noat\""));
9532 else
9533 as_warn (_("used $%u with \".set at=$%u\""),
9534 regno, mips_opts.at);
9535 }
707bfff6
TS
9536 }
9537 if (ok)
252b5132 9538 {
252b5132
RH
9539 c = *args;
9540 if (*s == ' ')
f9419b05 9541 ++s;
252b5132
RH
9542 if (args[1] != *s)
9543 {
9544 if (c == 'r' || c == 'v' || c == 'w')
9545 {
9546 regno = lastregno;
9547 s = s_reset;
f9419b05 9548 ++args;
252b5132
RH
9549 }
9550 }
9551 /* 'z' only matches $0. */
9552 if (c == 'z' && regno != 0)
9553 break;
9554
24864476 9555 if (c == 's' && !strncmp (ip->insn_mo->name, "jalr", 4))
e7c604dd
CM
9556 {
9557 if (regno == lastregno)
9558 {
24864476 9559 insn_error = _("source and destination must be different");
e7c604dd
CM
9560 continue;
9561 }
24864476 9562 if (regno == 31 && lastregno == 0xffffffff)
e7c604dd
CM
9563 {
9564 insn_error = _("a destination register must be supplied");
9565 continue;
9566 }
9567 }
bdaaa2e1
KH
9568 /* Now that we have assembled one operand, we use the args string
9569 * to figure out where it goes in the instruction. */
252b5132
RH
9570 switch (c)
9571 {
9572 case 'r':
9573 case 's':
9574 case 'v':
9575 case 'b':
bf12938e 9576 INSERT_OPERAND (RS, *ip, regno);
252b5132
RH
9577 break;
9578 case 'd':
9579 case 'G':
af7ee8bf 9580 case 'K':
ef2e4d86 9581 case 'g':
bf12938e 9582 INSERT_OPERAND (RD, *ip, regno);
252b5132 9583 break;
4372b673 9584 case 'U':
bf12938e
RS
9585 INSERT_OPERAND (RD, *ip, regno);
9586 INSERT_OPERAND (RT, *ip, regno);
4372b673 9587 break;
252b5132
RH
9588 case 'w':
9589 case 't':
9590 case 'E':
bf12938e 9591 INSERT_OPERAND (RT, *ip, regno);
252b5132
RH
9592 break;
9593 case 'x':
9594 /* This case exists because on the r3000 trunc
9595 expands into a macro which requires a gp
9596 register. On the r6000 or r4000 it is
9597 assembled into a single instruction which
9598 ignores the register. Thus the insn version
9599 is MIPS_ISA2 and uses 'x', and the macro
9600 version is MIPS_ISA1 and uses 't'. */
9601 break;
9602 case 'z':
9603 /* This case is for the div instruction, which
9604 acts differently if the destination argument
9605 is $0. This only matches $0, and is checked
9606 outside the switch. */
9607 break;
9608 case 'D':
9609 /* Itbl operand; not yet implemented. FIXME ?? */
9610 break;
9611 /* What about all other operands like 'i', which
9612 can be specified in the opcode table? */
9613 }
9614 lastregno = regno;
9615 continue;
9616 }
252b5132
RH
9617 switch (*args++)
9618 {
9619 case 'r':
9620 case 'v':
bf12938e 9621 INSERT_OPERAND (RS, *ip, lastregno);
252b5132
RH
9622 continue;
9623 case 'w':
bf12938e 9624 INSERT_OPERAND (RT, *ip, lastregno);
252b5132
RH
9625 continue;
9626 }
9627 break;
9628
deec1734
CD
9629 case 'O': /* MDMX alignment immediate constant. */
9630 my_getExpression (&imm_expr, s);
9631 check_absolute_expr (ip, &imm_expr);
9632 if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
bf12938e
RS
9633 as_warn ("Improper align amount (%ld), using low bits",
9634 (long) imm_expr.X_add_number);
9635 INSERT_OPERAND (ALN, *ip, imm_expr.X_add_number);
deec1734
CD
9636 imm_expr.X_op = O_absent;
9637 s = expr_end;
9638 continue;
9639
9640 case 'Q': /* MDMX vector, element sel, or const. */
9641 if (s[0] != '$')
9642 {
9643 /* MDMX Immediate. */
9644 my_getExpression (&imm_expr, s);
9645 check_absolute_expr (ip, &imm_expr);
9646 if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
bf12938e
RS
9647 as_warn (_("Invalid MDMX Immediate (%ld)"),
9648 (long) imm_expr.X_add_number);
9649 INSERT_OPERAND (FT, *ip, imm_expr.X_add_number);
deec1734
CD
9650 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
9651 ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
9652 else
9653 ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
deec1734
CD
9654 imm_expr.X_op = O_absent;
9655 s = expr_end;
9656 continue;
9657 }
9658 /* Not MDMX Immediate. Fall through. */
9659 case 'X': /* MDMX destination register. */
9660 case 'Y': /* MDMX source register. */
9661 case 'Z': /* MDMX target register. */
9662 is_mdmx = 1;
252b5132
RH
9663 case 'D': /* floating point destination register */
9664 case 'S': /* floating point source register */
9665 case 'T': /* floating point target register */
9666 case 'R': /* floating point source register */
9667 case 'V':
9668 case 'W':
707bfff6
TS
9669 rtype = RTYPE_FPU;
9670 if (is_mdmx
9671 || (mips_opts.ase_mdmx
9672 && (ip->insn_mo->pinfo & FP_D)
9673 && (ip->insn_mo->pinfo & (INSN_COPROC_MOVE_DELAY
9674 | INSN_COPROC_MEMORY_DELAY
9675 | INSN_LOAD_COPROC_DELAY
9676 | INSN_LOAD_MEMORY_DELAY
9677 | INSN_STORE_MEMORY))))
9678 rtype |= RTYPE_VEC;
252b5132 9679 s_reset = s;
707bfff6 9680 if (reg_lookup (&s, rtype, &regno))
252b5132 9681 {
252b5132 9682 if ((regno & 1) != 0
ca4e0257 9683 && HAVE_32BIT_FPRS
7455baf8 9684 && ! mips_oddfpreg_ok (ip->insn_mo, argnum))
252b5132
RH
9685 as_warn (_("Float register should be even, was %d"),
9686 regno);
9687
9688 c = *args;
9689 if (*s == ' ')
f9419b05 9690 ++s;
252b5132
RH
9691 if (args[1] != *s)
9692 {
9693 if (c == 'V' || c == 'W')
9694 {
9695 regno = lastregno;
9696 s = s_reset;
f9419b05 9697 ++args;
252b5132
RH
9698 }
9699 }
9700 switch (c)
9701 {
9702 case 'D':
deec1734 9703 case 'X':
bf12938e 9704 INSERT_OPERAND (FD, *ip, regno);
252b5132
RH
9705 break;
9706 case 'V':
9707 case 'S':
deec1734 9708 case 'Y':
bf12938e 9709 INSERT_OPERAND (FS, *ip, regno);
252b5132 9710 break;
deec1734
CD
9711 case 'Q':
9712 /* This is like 'Z', but also needs to fix the MDMX
9713 vector/scalar select bits. Note that the
9714 scalar immediate case is handled above. */
9715 if (*s == '[')
9716 {
9717 int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
9718 int max_el = (is_qh ? 3 : 7);
9719 s++;
9720 my_getExpression(&imm_expr, s);
9721 check_absolute_expr (ip, &imm_expr);
9722 s = expr_end;
9723 if (imm_expr.X_add_number > max_el)
9724 as_bad(_("Bad element selector %ld"),
9725 (long) imm_expr.X_add_number);
9726 imm_expr.X_add_number &= max_el;
9727 ip->insn_opcode |= (imm_expr.X_add_number
9728 << (OP_SH_VSEL +
9729 (is_qh ? 2 : 1)));
01a3f561 9730 imm_expr.X_op = O_absent;
deec1734
CD
9731 if (*s != ']')
9732 as_warn(_("Expecting ']' found '%s'"), s);
9733 else
9734 s++;
9735 }
9736 else
9737 {
9738 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
9739 ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
9740 << OP_SH_VSEL);
9741 else
9742 ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
9743 OP_SH_VSEL);
9744 }
9745 /* Fall through */
252b5132
RH
9746 case 'W':
9747 case 'T':
deec1734 9748 case 'Z':
bf12938e 9749 INSERT_OPERAND (FT, *ip, regno);
252b5132
RH
9750 break;
9751 case 'R':
bf12938e 9752 INSERT_OPERAND (FR, *ip, regno);
252b5132
RH
9753 break;
9754 }
9755 lastregno = regno;
9756 continue;
9757 }
9758
252b5132
RH
9759 switch (*args++)
9760 {
9761 case 'V':
bf12938e 9762 INSERT_OPERAND (FS, *ip, lastregno);
252b5132
RH
9763 continue;
9764 case 'W':
bf12938e 9765 INSERT_OPERAND (FT, *ip, lastregno);
252b5132
RH
9766 continue;
9767 }
9768 break;
9769
9770 case 'I':
9771 my_getExpression (&imm_expr, s);
9772 if (imm_expr.X_op != O_big
9773 && imm_expr.X_op != O_constant)
9774 insn_error = _("absolute expression required");
9ee2a2d4
MR
9775 if (HAVE_32BIT_GPRS)
9776 normalize_constant_expr (&imm_expr);
252b5132
RH
9777 s = expr_end;
9778 continue;
9779
9780 case 'A':
9781 my_getExpression (&offset_expr, s);
2051e8c4 9782 normalize_address_expr (&offset_expr);
f6688943 9783 *imm_reloc = BFD_RELOC_32;
252b5132
RH
9784 s = expr_end;
9785 continue;
9786
9787 case 'F':
9788 case 'L':
9789 case 'f':
9790 case 'l':
9791 {
9792 int f64;
ca4e0257 9793 int using_gprs;
252b5132
RH
9794 char *save_in;
9795 char *err;
9796 unsigned char temp[8];
9797 int len;
9798 unsigned int length;
9799 segT seg;
9800 subsegT subseg;
9801 char *p;
9802
9803 /* These only appear as the last operand in an
9804 instruction, and every instruction that accepts
9805 them in any variant accepts them in all variants.
9806 This means we don't have to worry about backing out
9807 any changes if the instruction does not match.
9808
9809 The difference between them is the size of the
9810 floating point constant and where it goes. For 'F'
9811 and 'L' the constant is 64 bits; for 'f' and 'l' it
9812 is 32 bits. Where the constant is placed is based
9813 on how the MIPS assembler does things:
9814 F -- .rdata
9815 L -- .lit8
9816 f -- immediate value
9817 l -- .lit4
9818
9819 The .lit4 and .lit8 sections are only used if
9820 permitted by the -G argument.
9821
ca4e0257
RS
9822 The code below needs to know whether the target register
9823 is 32 or 64 bits wide. It relies on the fact 'f' and
9824 'F' are used with GPR-based instructions and 'l' and
9825 'L' are used with FPR-based instructions. */
252b5132
RH
9826
9827 f64 = *args == 'F' || *args == 'L';
ca4e0257 9828 using_gprs = *args == 'F' || *args == 'f';
252b5132
RH
9829
9830 save_in = input_line_pointer;
9831 input_line_pointer = s;
9832 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
9833 length = len;
9834 s = input_line_pointer;
9835 input_line_pointer = save_in;
9836 if (err != NULL && *err != '\0')
9837 {
9838 as_bad (_("Bad floating point constant: %s"), err);
9839 memset (temp, '\0', sizeof temp);
9840 length = f64 ? 8 : 4;
9841 }
9842
156c2f8b 9843 assert (length == (unsigned) (f64 ? 8 : 4));
252b5132
RH
9844
9845 if (*args == 'f'
9846 || (*args == 'l'
3e722fb5 9847 && (g_switch_value < 4
252b5132
RH
9848 || (temp[0] == 0 && temp[1] == 0)
9849 || (temp[2] == 0 && temp[3] == 0))))
9850 {
9851 imm_expr.X_op = O_constant;
9852 if (! target_big_endian)
9853 imm_expr.X_add_number = bfd_getl32 (temp);
9854 else
9855 imm_expr.X_add_number = bfd_getb32 (temp);
9856 }
9857 else if (length > 4
119d663a 9858 && ! mips_disable_float_construction
ca4e0257
RS
9859 /* Constants can only be constructed in GPRs and
9860 copied to FPRs if the GPRs are at least as wide
9861 as the FPRs. Force the constant into memory if
9862 we are using 64-bit FPRs but the GPRs are only
9863 32 bits wide. */
9864 && (using_gprs
9865 || ! (HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
252b5132
RH
9866 && ((temp[0] == 0 && temp[1] == 0)
9867 || (temp[2] == 0 && temp[3] == 0))
9868 && ((temp[4] == 0 && temp[5] == 0)
9869 || (temp[6] == 0 && temp[7] == 0)))
9870 {
ca4e0257
RS
9871 /* The value is simple enough to load with a couple of
9872 instructions. If using 32-bit registers, set
9873 imm_expr to the high order 32 bits and offset_expr to
9874 the low order 32 bits. Otherwise, set imm_expr to
9875 the entire 64 bit constant. */
9876 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
252b5132
RH
9877 {
9878 imm_expr.X_op = O_constant;
9879 offset_expr.X_op = O_constant;
9880 if (! target_big_endian)
9881 {
9882 imm_expr.X_add_number = bfd_getl32 (temp + 4);
9883 offset_expr.X_add_number = bfd_getl32 (temp);
9884 }
9885 else
9886 {
9887 imm_expr.X_add_number = bfd_getb32 (temp);
9888 offset_expr.X_add_number = bfd_getb32 (temp + 4);
9889 }
9890 if (offset_expr.X_add_number == 0)
9891 offset_expr.X_op = O_absent;
9892 }
9893 else if (sizeof (imm_expr.X_add_number) > 4)
9894 {
9895 imm_expr.X_op = O_constant;
9896 if (! target_big_endian)
9897 imm_expr.X_add_number = bfd_getl64 (temp);
9898 else
9899 imm_expr.X_add_number = bfd_getb64 (temp);
9900 }
9901 else
9902 {
9903 imm_expr.X_op = O_big;
9904 imm_expr.X_add_number = 4;
9905 if (! target_big_endian)
9906 {
9907 generic_bignum[0] = bfd_getl16 (temp);
9908 generic_bignum[1] = bfd_getl16 (temp + 2);
9909 generic_bignum[2] = bfd_getl16 (temp + 4);
9910 generic_bignum[3] = bfd_getl16 (temp + 6);
9911 }
9912 else
9913 {
9914 generic_bignum[0] = bfd_getb16 (temp + 6);
9915 generic_bignum[1] = bfd_getb16 (temp + 4);
9916 generic_bignum[2] = bfd_getb16 (temp + 2);
9917 generic_bignum[3] = bfd_getb16 (temp);
9918 }
9919 }
9920 }
9921 else
9922 {
9923 const char *newname;
9924 segT new_seg;
9925
9926 /* Switch to the right section. */
9927 seg = now_seg;
9928 subseg = now_subseg;
9929 switch (*args)
9930 {
9931 default: /* unused default case avoids warnings. */
9932 case 'L':
9933 newname = RDATA_SECTION_NAME;
3e722fb5 9934 if (g_switch_value >= 8)
252b5132
RH
9935 newname = ".lit8";
9936 break;
9937 case 'F':
3e722fb5 9938 newname = RDATA_SECTION_NAME;
252b5132
RH
9939 break;
9940 case 'l':
4d0d148d 9941 assert (g_switch_value >= 4);
252b5132
RH
9942 newname = ".lit4";
9943 break;
9944 }
9945 new_seg = subseg_new (newname, (subsegT) 0);
f43abd2b 9946 if (IS_ELF)
252b5132
RH
9947 bfd_set_section_flags (stdoutput, new_seg,
9948 (SEC_ALLOC
9949 | SEC_LOAD
9950 | SEC_READONLY
9951 | SEC_DATA));
9952 frag_align (*args == 'l' ? 2 : 3, 0, 0);
c41e87e3 9953 if (IS_ELF && strncmp (TARGET_OS, "elf", 3) != 0)
252b5132
RH
9954 record_alignment (new_seg, 4);
9955 else
9956 record_alignment (new_seg, *args == 'l' ? 2 : 3);
9957 if (seg == now_seg)
9958 as_bad (_("Can't use floating point insn in this section"));
9959
9960 /* Set the argument to the current address in the
9961 section. */
9962 offset_expr.X_op = O_symbol;
9963 offset_expr.X_add_symbol =
9964 symbol_new ("L0\001", now_seg,
9965 (valueT) frag_now_fix (), frag_now);
9966 offset_expr.X_add_number = 0;
9967
9968 /* Put the floating point number into the section. */
9969 p = frag_more ((int) length);
9970 memcpy (p, temp, length);
9971
9972 /* Switch back to the original section. */
9973 subseg_set (seg, subseg);
9974 }
9975 }
9976 continue;
9977
9978 case 'i': /* 16 bit unsigned immediate */
9979 case 'j': /* 16 bit signed immediate */
f6688943 9980 *imm_reloc = BFD_RELOC_LO16;
5e0116d5 9981 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
252b5132
RH
9982 {
9983 int more;
5e0116d5
RS
9984 offsetT minval, maxval;
9985
9986 more = (insn + 1 < &mips_opcodes[NUMOPCODES]
9987 && strcmp (insn->name, insn[1].name) == 0);
9988
9989 /* If the expression was written as an unsigned number,
9990 only treat it as signed if there are no more
9991 alternatives. */
9992 if (more
9993 && *args == 'j'
9994 && sizeof (imm_expr.X_add_number) <= 4
9995 && imm_expr.X_op == O_constant
9996 && imm_expr.X_add_number < 0
9997 && imm_expr.X_unsigned
9998 && HAVE_64BIT_GPRS)
9999 break;
10000
10001 /* For compatibility with older assemblers, we accept
10002 0x8000-0xffff as signed 16-bit numbers when only
10003 signed numbers are allowed. */
10004 if (*args == 'i')
10005 minval = 0, maxval = 0xffff;
10006 else if (more)
10007 minval = -0x8000, maxval = 0x7fff;
252b5132 10008 else
5e0116d5
RS
10009 minval = -0x8000, maxval = 0xffff;
10010
10011 if (imm_expr.X_op != O_constant
10012 || imm_expr.X_add_number < minval
10013 || imm_expr.X_add_number > maxval)
252b5132
RH
10014 {
10015 if (more)
10016 break;
2ae7e77b
AH
10017 if (imm_expr.X_op == O_constant
10018 || imm_expr.X_op == O_big)
5e0116d5 10019 as_bad (_("expression out of range"));
252b5132
RH
10020 }
10021 }
10022 s = expr_end;
10023 continue;
10024
10025 case 'o': /* 16 bit offset */
5e0116d5
RS
10026 /* Check whether there is only a single bracketed expression
10027 left. If so, it must be the base register and the
10028 constant must be zero. */
10029 if (*s == '(' && strchr (s + 1, '(') == 0)
10030 {
10031 offset_expr.X_op = O_constant;
10032 offset_expr.X_add_number = 0;
10033 continue;
10034 }
252b5132
RH
10035
10036 /* If this value won't fit into a 16 bit offset, then go
10037 find a macro that will generate the 32 bit offset
afdbd6d0 10038 code pattern. */
5e0116d5 10039 if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
252b5132
RH
10040 && (offset_expr.X_op != O_constant
10041 || offset_expr.X_add_number >= 0x8000
afdbd6d0 10042 || offset_expr.X_add_number < -0x8000))
252b5132
RH
10043 break;
10044
252b5132
RH
10045 s = expr_end;
10046 continue;
10047
10048 case 'p': /* pc relative offset */
0b25d3e6 10049 *offset_reloc = BFD_RELOC_16_PCREL_S2;
252b5132
RH
10050 my_getExpression (&offset_expr, s);
10051 s = expr_end;
10052 continue;
10053
10054 case 'u': /* upper 16 bits */
5e0116d5
RS
10055 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0
10056 && imm_expr.X_op == O_constant
10057 && (imm_expr.X_add_number < 0
10058 || imm_expr.X_add_number >= 0x10000))
252b5132
RH
10059 as_bad (_("lui expression not in range 0..65535"));
10060 s = expr_end;
10061 continue;
10062
10063 case 'a': /* 26 bit address */
10064 my_getExpression (&offset_expr, s);
10065 s = expr_end;
f6688943 10066 *offset_reloc = BFD_RELOC_MIPS_JMP;
252b5132
RH
10067 continue;
10068
10069 case 'N': /* 3 bit branch condition code */
10070 case 'M': /* 3 bit compare condition code */
707bfff6
TS
10071 rtype = RTYPE_CCC;
10072 if (ip->insn_mo->pinfo & (FP_D| FP_S))
10073 rtype |= RTYPE_FCC;
10074 if (!reg_lookup (&s, rtype, &regno))
252b5132 10075 break;
30c378fd
CD
10076 if ((strcmp(str + strlen(str) - 3, ".ps") == 0
10077 || strcmp(str + strlen(str) - 5, "any2f") == 0
10078 || strcmp(str + strlen(str) - 5, "any2t") == 0)
10079 && (regno & 1) != 0)
10080 as_warn(_("Condition code register should be even for %s, was %d"),
10081 str, regno);
10082 if ((strcmp(str + strlen(str) - 5, "any4f") == 0
10083 || strcmp(str + strlen(str) - 5, "any4t") == 0)
10084 && (regno & 3) != 0)
10085 as_warn(_("Condition code register should be 0 or 4 for %s, was %d"),
10086 str, regno);
252b5132 10087 if (*args == 'N')
bf12938e 10088 INSERT_OPERAND (BCC, *ip, regno);
252b5132 10089 else
bf12938e 10090 INSERT_OPERAND (CCC, *ip, regno);
beae10d5 10091 continue;
252b5132 10092
156c2f8b
NC
10093 case 'H':
10094 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
10095 s += 2;
3882b010 10096 if (ISDIGIT (*s))
156c2f8b
NC
10097 {
10098 c = 0;
10099 do
10100 {
10101 c *= 10;
10102 c += *s - '0';
10103 ++s;
10104 }
3882b010 10105 while (ISDIGIT (*s));
156c2f8b
NC
10106 }
10107 else
10108 c = 8; /* Invalid sel value. */
10109
10110 if (c > 7)
10111 as_bad (_("invalid coprocessor sub-selection value (0-7)"));
10112 ip->insn_opcode |= c;
10113 continue;
10114
60b63b72
RS
10115 case 'e':
10116 /* Must be at least one digit. */
10117 my_getExpression (&imm_expr, s);
10118 check_absolute_expr (ip, &imm_expr);
10119
10120 if ((unsigned long) imm_expr.X_add_number
10121 > (unsigned long) OP_MASK_VECBYTE)
10122 {
10123 as_bad (_("bad byte vector index (%ld)"),
10124 (long) imm_expr.X_add_number);
10125 imm_expr.X_add_number = 0;
10126 }
10127
bf12938e 10128 INSERT_OPERAND (VECBYTE, *ip, imm_expr.X_add_number);
60b63b72
RS
10129 imm_expr.X_op = O_absent;
10130 s = expr_end;
10131 continue;
10132
10133 case '%':
10134 my_getExpression (&imm_expr, s);
10135 check_absolute_expr (ip, &imm_expr);
10136
10137 if ((unsigned long) imm_expr.X_add_number
10138 > (unsigned long) OP_MASK_VECALIGN)
10139 {
10140 as_bad (_("bad byte vector index (%ld)"),
10141 (long) imm_expr.X_add_number);
10142 imm_expr.X_add_number = 0;
10143 }
10144
bf12938e 10145 INSERT_OPERAND (VECALIGN, *ip, imm_expr.X_add_number);
60b63b72
RS
10146 imm_expr.X_op = O_absent;
10147 s = expr_end;
10148 continue;
10149
252b5132
RH
10150 default:
10151 as_bad (_("bad char = '%c'\n"), *args);
10152 internalError ();
10153 }
10154 break;
10155 }
10156 /* Args don't match. */
10157 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
10158 !strcmp (insn->name, insn[1].name))
10159 {
10160 ++insn;
10161 s = argsStart;
268f6bed 10162 insn_error = _("illegal operands");
252b5132
RH
10163 continue;
10164 }
268f6bed 10165 if (save_c)
570de991 10166 *(--argsStart) = save_c;
252b5132
RH
10167 insn_error = _("illegal operands");
10168 return;
10169 }
10170}
10171
0499d65b
TS
10172#define SKIP_SPACE_TABS(S) { while (*(S) == ' ' || *(S) == '\t') ++(S); }
10173
252b5132
RH
10174/* This routine assembles an instruction into its binary format when
10175 assembling for the mips16. As a side effect, it sets one of the
10176 global variables imm_reloc or offset_reloc to the type of
10177 relocation to do if one of the operands is an address expression.
10178 It also sets mips16_small and mips16_ext if the user explicitly
10179 requested a small or extended instruction. */
10180
10181static void
17a2f251 10182mips16_ip (char *str, struct mips_cl_insn *ip)
252b5132
RH
10183{
10184 char *s;
10185 const char *args;
10186 struct mips_opcode *insn;
10187 char *argsstart;
10188 unsigned int regno;
10189 unsigned int lastregno = 0;
10190 char *s_reset;
d6f16593 10191 size_t i;
252b5132
RH
10192
10193 insn_error = NULL;
10194
b34976b6
AM
10195 mips16_small = FALSE;
10196 mips16_ext = FALSE;
252b5132 10197
3882b010 10198 for (s = str; ISLOWER (*s); ++s)
252b5132
RH
10199 ;
10200 switch (*s)
10201 {
10202 case '\0':
10203 break;
10204
10205 case ' ':
10206 *s++ = '\0';
10207 break;
10208
10209 case '.':
10210 if (s[1] == 't' && s[2] == ' ')
10211 {
10212 *s = '\0';
b34976b6 10213 mips16_small = TRUE;
252b5132
RH
10214 s += 3;
10215 break;
10216 }
10217 else if (s[1] == 'e' && s[2] == ' ')
10218 {
10219 *s = '\0';
b34976b6 10220 mips16_ext = TRUE;
252b5132
RH
10221 s += 3;
10222 break;
10223 }
10224 /* Fall through. */
10225 default:
10226 insn_error = _("unknown opcode");
10227 return;
10228 }
10229
10230 if (mips_opts.noautoextend && ! mips16_ext)
b34976b6 10231 mips16_small = TRUE;
252b5132
RH
10232
10233 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
10234 {
10235 insn_error = _("unrecognized opcode");
10236 return;
10237 }
10238
10239 argsstart = s;
10240 for (;;)
10241 {
9b3f89ee
TS
10242 bfd_boolean ok;
10243
252b5132
RH
10244 assert (strcmp (insn->name, str) == 0);
10245
037b32b9 10246 ok = is_opcode_valid_16 (insn);
9b3f89ee
TS
10247 if (! ok)
10248 {
10249 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes]
10250 && strcmp (insn->name, insn[1].name) == 0)
10251 {
10252 ++insn;
10253 continue;
10254 }
10255 else
10256 {
10257 if (!insn_error)
10258 {
10259 static char buf[100];
10260 sprintf (buf,
10261 _("opcode not supported on this processor: %s (%s)"),
10262 mips_cpu_info_from_arch (mips_opts.arch)->name,
10263 mips_cpu_info_from_isa (mips_opts.isa)->name);
10264 insn_error = buf;
10265 }
10266 return;
10267 }
10268 }
10269
1e915849 10270 create_insn (ip, insn);
252b5132 10271 imm_expr.X_op = O_absent;
f6688943
TS
10272 imm_reloc[0] = BFD_RELOC_UNUSED;
10273 imm_reloc[1] = BFD_RELOC_UNUSED;
10274 imm_reloc[2] = BFD_RELOC_UNUSED;
5f74bc13 10275 imm2_expr.X_op = O_absent;
252b5132 10276 offset_expr.X_op = O_absent;
f6688943
TS
10277 offset_reloc[0] = BFD_RELOC_UNUSED;
10278 offset_reloc[1] = BFD_RELOC_UNUSED;
10279 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132
RH
10280 for (args = insn->args; 1; ++args)
10281 {
10282 int c;
10283
10284 if (*s == ' ')
10285 ++s;
10286
10287 /* In this switch statement we call break if we did not find
10288 a match, continue if we did find a match, or return if we
10289 are done. */
10290
10291 c = *args;
10292 switch (c)
10293 {
10294 case '\0':
10295 if (*s == '\0')
10296 {
10297 /* Stuff the immediate value in now, if we can. */
10298 if (imm_expr.X_op == O_constant
f6688943 10299 && *imm_reloc > BFD_RELOC_UNUSED
738e5348
RS
10300 && *imm_reloc != BFD_RELOC_MIPS16_GOT16
10301 && *imm_reloc != BFD_RELOC_MIPS16_CALL16
252b5132
RH
10302 && insn->pinfo != INSN_MACRO)
10303 {
d6f16593
MR
10304 valueT tmp;
10305
10306 switch (*offset_reloc)
10307 {
10308 case BFD_RELOC_MIPS16_HI16_S:
10309 tmp = (imm_expr.X_add_number + 0x8000) >> 16;
10310 break;
10311
10312 case BFD_RELOC_MIPS16_HI16:
10313 tmp = imm_expr.X_add_number >> 16;
10314 break;
10315
10316 case BFD_RELOC_MIPS16_LO16:
10317 tmp = ((imm_expr.X_add_number + 0x8000) & 0xffff)
10318 - 0x8000;
10319 break;
10320
10321 case BFD_RELOC_UNUSED:
10322 tmp = imm_expr.X_add_number;
10323 break;
10324
10325 default:
10326 internalError ();
10327 }
10328 *offset_reloc = BFD_RELOC_UNUSED;
10329
c4e7957c 10330 mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
d6f16593 10331 tmp, TRUE, mips16_small,
252b5132
RH
10332 mips16_ext, &ip->insn_opcode,
10333 &ip->use_extend, &ip->extend);
10334 imm_expr.X_op = O_absent;
f6688943 10335 *imm_reloc = BFD_RELOC_UNUSED;
252b5132
RH
10336 }
10337
10338 return;
10339 }
10340 break;
10341
10342 case ',':
10343 if (*s++ == c)
10344 continue;
10345 s--;
10346 switch (*++args)
10347 {
10348 case 'v':
bf12938e 10349 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
252b5132
RH
10350 continue;
10351 case 'w':
bf12938e 10352 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
252b5132
RH
10353 continue;
10354 }
10355 break;
10356
10357 case '(':
10358 case ')':
10359 if (*s++ == c)
10360 continue;
10361 break;
10362
10363 case 'v':
10364 case 'w':
10365 if (s[0] != '$')
10366 {
10367 if (c == 'v')
bf12938e 10368 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
252b5132 10369 else
bf12938e 10370 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
252b5132
RH
10371 ++args;
10372 continue;
10373 }
10374 /* Fall through. */
10375 case 'x':
10376 case 'y':
10377 case 'z':
10378 case 'Z':
10379 case '0':
10380 case 'S':
10381 case 'R':
10382 case 'X':
10383 case 'Y':
707bfff6
TS
10384 s_reset = s;
10385 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
252b5132 10386 {
707bfff6 10387 if (c == 'v' || c == 'w')
85b51719 10388 {
707bfff6 10389 if (c == 'v')
a9e24354 10390 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
707bfff6 10391 else
a9e24354 10392 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
707bfff6
TS
10393 ++args;
10394 continue;
85b51719 10395 }
707bfff6 10396 break;
252b5132
RH
10397 }
10398
10399 if (*s == ' ')
10400 ++s;
10401 if (args[1] != *s)
10402 {
10403 if (c == 'v' || c == 'w')
10404 {
10405 regno = mips16_to_32_reg_map[lastregno];
10406 s = s_reset;
f9419b05 10407 ++args;
252b5132
RH
10408 }
10409 }
10410
10411 switch (c)
10412 {
10413 case 'x':
10414 case 'y':
10415 case 'z':
10416 case 'v':
10417 case 'w':
10418 case 'Z':
10419 regno = mips32_to_16_reg_map[regno];
10420 break;
10421
10422 case '0':
10423 if (regno != 0)
10424 regno = ILLEGAL_REG;
10425 break;
10426
10427 case 'S':
10428 if (regno != SP)
10429 regno = ILLEGAL_REG;
10430 break;
10431
10432 case 'R':
10433 if (regno != RA)
10434 regno = ILLEGAL_REG;
10435 break;
10436
10437 case 'X':
10438 case 'Y':
741fe287
MR
10439 if (regno == AT && mips_opts.at)
10440 {
10441 if (mips_opts.at == ATREG)
10442 as_warn (_("used $at without \".set noat\""));
10443 else
10444 as_warn (_("used $%u with \".set at=$%u\""),
10445 regno, mips_opts.at);
10446 }
252b5132
RH
10447 break;
10448
10449 default:
10450 internalError ();
10451 }
10452
10453 if (regno == ILLEGAL_REG)
10454 break;
10455
10456 switch (c)
10457 {
10458 case 'x':
10459 case 'v':
bf12938e 10460 MIPS16_INSERT_OPERAND (RX, *ip, regno);
252b5132
RH
10461 break;
10462 case 'y':
10463 case 'w':
bf12938e 10464 MIPS16_INSERT_OPERAND (RY, *ip, regno);
252b5132
RH
10465 break;
10466 case 'z':
bf12938e 10467 MIPS16_INSERT_OPERAND (RZ, *ip, regno);
252b5132
RH
10468 break;
10469 case 'Z':
bf12938e 10470 MIPS16_INSERT_OPERAND (MOVE32Z, *ip, regno);
252b5132
RH
10471 case '0':
10472 case 'S':
10473 case 'R':
10474 break;
10475 case 'X':
bf12938e 10476 MIPS16_INSERT_OPERAND (REGR32, *ip, regno);
252b5132
RH
10477 break;
10478 case 'Y':
10479 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
bf12938e 10480 MIPS16_INSERT_OPERAND (REG32R, *ip, regno);
252b5132
RH
10481 break;
10482 default:
10483 internalError ();
10484 }
10485
10486 lastregno = regno;
10487 continue;
10488
10489 case 'P':
10490 if (strncmp (s, "$pc", 3) == 0)
10491 {
10492 s += 3;
10493 continue;
10494 }
10495 break;
10496
252b5132
RH
10497 case '5':
10498 case 'H':
10499 case 'W':
10500 case 'D':
10501 case 'j':
252b5132
RH
10502 case 'V':
10503 case 'C':
10504 case 'U':
10505 case 'k':
10506 case 'K':
d6f16593
MR
10507 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
10508 if (i > 0)
252b5132 10509 {
d6f16593 10510 if (imm_expr.X_op != O_constant)
252b5132 10511 {
b34976b6 10512 mips16_ext = TRUE;
b34976b6 10513 ip->use_extend = TRUE;
252b5132 10514 ip->extend = 0;
252b5132 10515 }
d6f16593
MR
10516 else
10517 {
10518 /* We need to relax this instruction. */
10519 *offset_reloc = *imm_reloc;
10520 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
10521 }
10522 s = expr_end;
10523 continue;
252b5132 10524 }
d6f16593
MR
10525 *imm_reloc = BFD_RELOC_UNUSED;
10526 /* Fall through. */
10527 case '<':
10528 case '>':
10529 case '[':
10530 case ']':
10531 case '4':
10532 case '8':
10533 my_getExpression (&imm_expr, s);
252b5132
RH
10534 if (imm_expr.X_op == O_register)
10535 {
10536 /* What we thought was an expression turned out to
10537 be a register. */
10538
10539 if (s[0] == '(' && args[1] == '(')
10540 {
10541 /* It looks like the expression was omitted
10542 before a register indirection, which means
10543 that the expression is implicitly zero. We
10544 still set up imm_expr, so that we handle
10545 explicit extensions correctly. */
10546 imm_expr.X_op = O_constant;
10547 imm_expr.X_add_number = 0;
f6688943 10548 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
10549 continue;
10550 }
10551
10552 break;
10553 }
10554
10555 /* We need to relax this instruction. */
f6688943 10556 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
10557 s = expr_end;
10558 continue;
10559
10560 case 'p':
10561 case 'q':
10562 case 'A':
10563 case 'B':
10564 case 'E':
10565 /* We use offset_reloc rather than imm_reloc for the PC
10566 relative operands. This lets macros with both
10567 immediate and address operands work correctly. */
10568 my_getExpression (&offset_expr, s);
10569
10570 if (offset_expr.X_op == O_register)
10571 break;
10572
10573 /* We need to relax this instruction. */
f6688943 10574 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
10575 s = expr_end;
10576 continue;
10577
10578 case '6': /* break code */
10579 my_getExpression (&imm_expr, s);
10580 check_absolute_expr (ip, &imm_expr);
10581 if ((unsigned long) imm_expr.X_add_number > 63)
bf12938e
RS
10582 as_warn (_("Invalid value for `%s' (%lu)"),
10583 ip->insn_mo->name,
10584 (unsigned long) imm_expr.X_add_number);
10585 MIPS16_INSERT_OPERAND (IMM6, *ip, imm_expr.X_add_number);
252b5132
RH
10586 imm_expr.X_op = O_absent;
10587 s = expr_end;
10588 continue;
10589
10590 case 'a': /* 26 bit address */
10591 my_getExpression (&offset_expr, s);
10592 s = expr_end;
f6688943 10593 *offset_reloc = BFD_RELOC_MIPS16_JMP;
252b5132
RH
10594 ip->insn_opcode <<= 16;
10595 continue;
10596
10597 case 'l': /* register list for entry macro */
10598 case 'L': /* register list for exit macro */
10599 {
10600 int mask;
10601
10602 if (c == 'l')
10603 mask = 0;
10604 else
10605 mask = 7 << 3;
10606 while (*s != '\0')
10607 {
707bfff6 10608 unsigned int freg, reg1, reg2;
252b5132
RH
10609
10610 while (*s == ' ' || *s == ',')
10611 ++s;
707bfff6 10612 if (reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
252b5132 10613 freg = 0;
707bfff6
TS
10614 else if (reg_lookup (&s, RTYPE_FPU, &reg1))
10615 freg = 1;
252b5132
RH
10616 else
10617 {
707bfff6
TS
10618 as_bad (_("can't parse register list"));
10619 break;
252b5132
RH
10620 }
10621 if (*s == ' ')
10622 ++s;
10623 if (*s != '-')
10624 reg2 = reg1;
10625 else
10626 {
10627 ++s;
707bfff6
TS
10628 if (!reg_lookup (&s, freg ? RTYPE_FPU
10629 : (RTYPE_GP | RTYPE_NUM), &reg2))
252b5132 10630 {
707bfff6
TS
10631 as_bad (_("invalid register list"));
10632 break;
252b5132
RH
10633 }
10634 }
10635 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
10636 {
10637 mask &= ~ (7 << 3);
10638 mask |= 5 << 3;
10639 }
10640 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
10641 {
10642 mask &= ~ (7 << 3);
10643 mask |= 6 << 3;
10644 }
10645 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
10646 mask |= (reg2 - 3) << 3;
10647 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
10648 mask |= (reg2 - 15) << 1;
f9419b05 10649 else if (reg1 == RA && reg2 == RA)
252b5132
RH
10650 mask |= 1;
10651 else
10652 {
10653 as_bad (_("invalid register list"));
10654 break;
10655 }
10656 }
10657 /* The mask is filled in in the opcode table for the
10658 benefit of the disassembler. We remove it before
10659 applying the actual mask. */
10660 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
10661 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
10662 }
10663 continue;
10664
0499d65b
TS
10665 case 'm': /* Register list for save insn. */
10666 case 'M': /* Register list for restore insn. */
10667 {
10668 int opcode = 0;
10669 int framesz = 0, seen_framesz = 0;
10670 int args = 0, statics = 0, sregs = 0;
10671
10672 while (*s != '\0')
10673 {
10674 unsigned int reg1, reg2;
10675
10676 SKIP_SPACE_TABS (s);
10677 while (*s == ',')
10678 ++s;
10679 SKIP_SPACE_TABS (s);
10680
10681 my_getExpression (&imm_expr, s);
10682 if (imm_expr.X_op == O_constant)
10683 {
10684 /* Handle the frame size. */
10685 if (seen_framesz)
10686 {
10687 as_bad (_("more than one frame size in list"));
10688 break;
10689 }
10690 seen_framesz = 1;
10691 framesz = imm_expr.X_add_number;
10692 imm_expr.X_op = O_absent;
10693 s = expr_end;
10694 continue;
10695 }
10696
707bfff6 10697 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
0499d65b
TS
10698 {
10699 as_bad (_("can't parse register list"));
10700 break;
10701 }
0499d65b 10702
707bfff6
TS
10703 while (*s == ' ')
10704 ++s;
10705
0499d65b
TS
10706 if (*s != '-')
10707 reg2 = reg1;
10708 else
10709 {
10710 ++s;
707bfff6
TS
10711 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg2)
10712 || reg2 < reg1)
0499d65b
TS
10713 {
10714 as_bad (_("can't parse register list"));
10715 break;
10716 }
0499d65b
TS
10717 }
10718
10719 while (reg1 <= reg2)
10720 {
10721 if (reg1 >= 4 && reg1 <= 7)
10722 {
3a93f742 10723 if (!seen_framesz)
0499d65b
TS
10724 /* args $a0-$a3 */
10725 args |= 1 << (reg1 - 4);
10726 else
10727 /* statics $a0-$a3 */
10728 statics |= 1 << (reg1 - 4);
10729 }
10730 else if ((reg1 >= 16 && reg1 <= 23) || reg1 == 30)
10731 {
10732 /* $s0-$s8 */
10733 sregs |= 1 << ((reg1 == 30) ? 8 : (reg1 - 16));
10734 }
10735 else if (reg1 == 31)
10736 {
10737 /* Add $ra to insn. */
10738 opcode |= 0x40;
10739 }
10740 else
10741 {
10742 as_bad (_("unexpected register in list"));
10743 break;
10744 }
10745 if (++reg1 == 24)
10746 reg1 = 30;
10747 }
10748 }
10749
10750 /* Encode args/statics combination. */
10751 if (args & statics)
10752 as_bad (_("arg/static registers overlap"));
10753 else if (args == 0xf)
10754 /* All $a0-$a3 are args. */
10755 opcode |= MIPS16_ALL_ARGS << 16;
10756 else if (statics == 0xf)
10757 /* All $a0-$a3 are statics. */
10758 opcode |= MIPS16_ALL_STATICS << 16;
10759 else
10760 {
10761 int narg = 0, nstat = 0;
10762
10763 /* Count arg registers. */
10764 while (args & 0x1)
10765 {
10766 args >>= 1;
10767 narg++;
10768 }
10769 if (args != 0)
10770 as_bad (_("invalid arg register list"));
10771
10772 /* Count static registers. */
10773 while (statics & 0x8)
10774 {
10775 statics = (statics << 1) & 0xf;
10776 nstat++;
10777 }
10778 if (statics != 0)
10779 as_bad (_("invalid static register list"));
10780
10781 /* Encode args/statics. */
10782 opcode |= ((narg << 2) | nstat) << 16;
10783 }
10784
10785 /* Encode $s0/$s1. */
10786 if (sregs & (1 << 0)) /* $s0 */
10787 opcode |= 0x20;
10788 if (sregs & (1 << 1)) /* $s1 */
10789 opcode |= 0x10;
10790 sregs >>= 2;
10791
10792 if (sregs != 0)
10793 {
10794 /* Count regs $s2-$s8. */
10795 int nsreg = 0;
10796 while (sregs & 1)
10797 {
10798 sregs >>= 1;
10799 nsreg++;
10800 }
10801 if (sregs != 0)
10802 as_bad (_("invalid static register list"));
10803 /* Encode $s2-$s8. */
10804 opcode |= nsreg << 24;
10805 }
10806
10807 /* Encode frame size. */
10808 if (!seen_framesz)
10809 as_bad (_("missing frame size"));
10810 else if ((framesz & 7) != 0 || framesz < 0
10811 || framesz > 0xff * 8)
10812 as_bad (_("invalid frame size"));
10813 else if (framesz != 128 || (opcode >> 16) != 0)
10814 {
10815 framesz /= 8;
10816 opcode |= (((framesz & 0xf0) << 16)
10817 | (framesz & 0x0f));
10818 }
10819
10820 /* Finally build the instruction. */
10821 if ((opcode >> 16) != 0 || framesz == 0)
10822 {
10823 ip->use_extend = TRUE;
10824 ip->extend = opcode >> 16;
10825 }
10826 ip->insn_opcode |= opcode & 0x7f;
10827 }
10828 continue;
10829
252b5132
RH
10830 case 'e': /* extend code */
10831 my_getExpression (&imm_expr, s);
10832 check_absolute_expr (ip, &imm_expr);
10833 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
10834 {
10835 as_warn (_("Invalid value for `%s' (%lu)"),
10836 ip->insn_mo->name,
10837 (unsigned long) imm_expr.X_add_number);
10838 imm_expr.X_add_number &= 0x7ff;
10839 }
10840 ip->insn_opcode |= imm_expr.X_add_number;
10841 imm_expr.X_op = O_absent;
10842 s = expr_end;
10843 continue;
10844
10845 default:
10846 internalError ();
10847 }
10848 break;
10849 }
10850
10851 /* Args don't match. */
10852 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
10853 strcmp (insn->name, insn[1].name) == 0)
10854 {
10855 ++insn;
10856 s = argsstart;
10857 continue;
10858 }
10859
10860 insn_error = _("illegal operands");
10861
10862 return;
10863 }
10864}
10865
10866/* This structure holds information we know about a mips16 immediate
10867 argument type. */
10868
e972090a
NC
10869struct mips16_immed_operand
10870{
252b5132
RH
10871 /* The type code used in the argument string in the opcode table. */
10872 int type;
10873 /* The number of bits in the short form of the opcode. */
10874 int nbits;
10875 /* The number of bits in the extended form of the opcode. */
10876 int extbits;
10877 /* The amount by which the short form is shifted when it is used;
10878 for example, the sw instruction has a shift count of 2. */
10879 int shift;
10880 /* The amount by which the short form is shifted when it is stored
10881 into the instruction code. */
10882 int op_shift;
10883 /* Non-zero if the short form is unsigned. */
10884 int unsp;
10885 /* Non-zero if the extended form is unsigned. */
10886 int extu;
10887 /* Non-zero if the value is PC relative. */
10888 int pcrel;
10889};
10890
10891/* The mips16 immediate operand types. */
10892
10893static const struct mips16_immed_operand mips16_immed_operands[] =
10894{
10895 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
10896 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
10897 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
10898 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
10899 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
10900 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
10901 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
10902 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
10903 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
10904 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
10905 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
10906 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
10907 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
10908 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
10909 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
10910 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
10911 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
10912 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
10913 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
10914 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
10915 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
10916};
10917
10918#define MIPS16_NUM_IMMED \
10919 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
10920
10921/* Handle a mips16 instruction with an immediate value. This or's the
10922 small immediate value into *INSN. It sets *USE_EXTEND to indicate
10923 whether an extended value is needed; if one is needed, it sets
10924 *EXTEND to the value. The argument type is TYPE. The value is VAL.
10925 If SMALL is true, an unextended opcode was explicitly requested.
10926 If EXT is true, an extended opcode was explicitly requested. If
10927 WARN is true, warn if EXT does not match reality. */
10928
10929static void
17a2f251
TS
10930mips16_immed (char *file, unsigned int line, int type, offsetT val,
10931 bfd_boolean warn, bfd_boolean small, bfd_boolean ext,
10932 unsigned long *insn, bfd_boolean *use_extend,
10933 unsigned short *extend)
252b5132 10934{
3994f87e 10935 const struct mips16_immed_operand *op;
252b5132 10936 int mintiny, maxtiny;
b34976b6 10937 bfd_boolean needext;
252b5132
RH
10938
10939 op = mips16_immed_operands;
10940 while (op->type != type)
10941 {
10942 ++op;
10943 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
10944 }
10945
10946 if (op->unsp)
10947 {
10948 if (type == '<' || type == '>' || type == '[' || type == ']')
10949 {
10950 mintiny = 1;
10951 maxtiny = 1 << op->nbits;
10952 }
10953 else
10954 {
10955 mintiny = 0;
10956 maxtiny = (1 << op->nbits) - 1;
10957 }
10958 }
10959 else
10960 {
10961 mintiny = - (1 << (op->nbits - 1));
10962 maxtiny = (1 << (op->nbits - 1)) - 1;
10963 }
10964
10965 /* Branch offsets have an implicit 0 in the lowest bit. */
10966 if (type == 'p' || type == 'q')
10967 val /= 2;
10968
10969 if ((val & ((1 << op->shift) - 1)) != 0
10970 || val < (mintiny << op->shift)
10971 || val > (maxtiny << op->shift))
b34976b6 10972 needext = TRUE;
252b5132 10973 else
b34976b6 10974 needext = FALSE;
252b5132
RH
10975
10976 if (warn && ext && ! needext)
beae10d5
KH
10977 as_warn_where (file, line,
10978 _("extended operand requested but not required"));
252b5132
RH
10979 if (small && needext)
10980 as_bad_where (file, line, _("invalid unextended operand value"));
10981
10982 if (small || (! ext && ! needext))
10983 {
10984 int insnval;
10985
b34976b6 10986 *use_extend = FALSE;
252b5132
RH
10987 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
10988 insnval <<= op->op_shift;
10989 *insn |= insnval;
10990 }
10991 else
10992 {
10993 long minext, maxext;
10994 int extval;
10995
10996 if (op->extu)
10997 {
10998 minext = 0;
10999 maxext = (1 << op->extbits) - 1;
11000 }
11001 else
11002 {
11003 minext = - (1 << (op->extbits - 1));
11004 maxext = (1 << (op->extbits - 1)) - 1;
11005 }
11006 if (val < minext || val > maxext)
11007 as_bad_where (file, line,
11008 _("operand value out of range for instruction"));
11009
b34976b6 11010 *use_extend = TRUE;
252b5132
RH
11011 if (op->extbits == 16)
11012 {
11013 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
11014 val &= 0x1f;
11015 }
11016 else if (op->extbits == 15)
11017 {
11018 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
11019 val &= 0xf;
11020 }
11021 else
11022 {
11023 extval = ((val & 0x1f) << 6) | (val & 0x20);
11024 val = 0;
11025 }
11026
11027 *extend = (unsigned short) extval;
11028 *insn |= val;
11029 }
11030}
11031\f
d6f16593 11032struct percent_op_match
ad8d3bb3 11033{
5e0116d5
RS
11034 const char *str;
11035 bfd_reloc_code_real_type reloc;
d6f16593
MR
11036};
11037
11038static const struct percent_op_match mips_percent_op[] =
ad8d3bb3 11039{
5e0116d5 11040 {"%lo", BFD_RELOC_LO16},
ad8d3bb3 11041#ifdef OBJ_ELF
5e0116d5
RS
11042 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
11043 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
11044 {"%call16", BFD_RELOC_MIPS_CALL16},
11045 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
11046 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
11047 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
11048 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
11049 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
11050 {"%got", BFD_RELOC_MIPS_GOT16},
11051 {"%gp_rel", BFD_RELOC_GPREL16},
11052 {"%half", BFD_RELOC_16},
11053 {"%highest", BFD_RELOC_MIPS_HIGHEST},
11054 {"%higher", BFD_RELOC_MIPS_HIGHER},
11055 {"%neg", BFD_RELOC_MIPS_SUB},
3f98094e
DJ
11056 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
11057 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
11058 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
11059 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
11060 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
11061 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
11062 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
ad8d3bb3 11063#endif
5e0116d5 11064 {"%hi", BFD_RELOC_HI16_S}
ad8d3bb3
TS
11065};
11066
d6f16593
MR
11067static const struct percent_op_match mips16_percent_op[] =
11068{
11069 {"%lo", BFD_RELOC_MIPS16_LO16},
11070 {"%gprel", BFD_RELOC_MIPS16_GPREL},
738e5348
RS
11071 {"%got", BFD_RELOC_MIPS16_GOT16},
11072 {"%call16", BFD_RELOC_MIPS16_CALL16},
d6f16593
MR
11073 {"%hi", BFD_RELOC_MIPS16_HI16_S}
11074};
11075
252b5132 11076
5e0116d5
RS
11077/* Return true if *STR points to a relocation operator. When returning true,
11078 move *STR over the operator and store its relocation code in *RELOC.
11079 Leave both *STR and *RELOC alone when returning false. */
11080
11081static bfd_boolean
17a2f251 11082parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
252b5132 11083{
d6f16593
MR
11084 const struct percent_op_match *percent_op;
11085 size_t limit, i;
11086
11087 if (mips_opts.mips16)
11088 {
11089 percent_op = mips16_percent_op;
11090 limit = ARRAY_SIZE (mips16_percent_op);
11091 }
11092 else
11093 {
11094 percent_op = mips_percent_op;
11095 limit = ARRAY_SIZE (mips_percent_op);
11096 }
76b3015f 11097
d6f16593 11098 for (i = 0; i < limit; i++)
5e0116d5 11099 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
394f9b3a 11100 {
3f98094e
DJ
11101 int len = strlen (percent_op[i].str);
11102
11103 if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
11104 continue;
11105
5e0116d5
RS
11106 *str += strlen (percent_op[i].str);
11107 *reloc = percent_op[i].reloc;
394f9b3a 11108
5e0116d5
RS
11109 /* Check whether the output BFD supports this relocation.
11110 If not, issue an error and fall back on something safe. */
11111 if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
394f9b3a 11112 {
5e0116d5
RS
11113 as_bad ("relocation %s isn't supported by the current ABI",
11114 percent_op[i].str);
01a3f561 11115 *reloc = BFD_RELOC_UNUSED;
394f9b3a 11116 }
5e0116d5 11117 return TRUE;
394f9b3a 11118 }
5e0116d5 11119 return FALSE;
394f9b3a 11120}
ad8d3bb3 11121
ad8d3bb3 11122
5e0116d5
RS
11123/* Parse string STR as a 16-bit relocatable operand. Store the
11124 expression in *EP and the relocations in the array starting
11125 at RELOC. Return the number of relocation operators used.
ad8d3bb3 11126
01a3f561 11127 On exit, EXPR_END points to the first character after the expression. */
ad8d3bb3 11128
5e0116d5 11129static size_t
17a2f251
TS
11130my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
11131 char *str)
ad8d3bb3 11132{
5e0116d5
RS
11133 bfd_reloc_code_real_type reversed_reloc[3];
11134 size_t reloc_index, i;
09b8f35a
RS
11135 int crux_depth, str_depth;
11136 char *crux;
5e0116d5
RS
11137
11138 /* Search for the start of the main expression, recoding relocations
09b8f35a
RS
11139 in REVERSED_RELOC. End the loop with CRUX pointing to the start
11140 of the main expression and with CRUX_DEPTH containing the number
11141 of open brackets at that point. */
11142 reloc_index = -1;
11143 str_depth = 0;
11144 do
fb1b3232 11145 {
09b8f35a
RS
11146 reloc_index++;
11147 crux = str;
11148 crux_depth = str_depth;
11149
11150 /* Skip over whitespace and brackets, keeping count of the number
11151 of brackets. */
11152 while (*str == ' ' || *str == '\t' || *str == '(')
11153 if (*str++ == '(')
11154 str_depth++;
5e0116d5 11155 }
09b8f35a
RS
11156 while (*str == '%'
11157 && reloc_index < (HAVE_NEWABI ? 3 : 1)
11158 && parse_relocation (&str, &reversed_reloc[reloc_index]));
ad8d3bb3 11159
09b8f35a 11160 my_getExpression (ep, crux);
5e0116d5 11161 str = expr_end;
394f9b3a 11162
5e0116d5 11163 /* Match every open bracket. */
09b8f35a 11164 while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
5e0116d5 11165 if (*str++ == ')')
09b8f35a 11166 crux_depth--;
394f9b3a 11167
09b8f35a 11168 if (crux_depth > 0)
5e0116d5 11169 as_bad ("unclosed '('");
394f9b3a 11170
5e0116d5 11171 expr_end = str;
252b5132 11172
01a3f561 11173 if (reloc_index != 0)
64bdfcaf
RS
11174 {
11175 prev_reloc_op_frag = frag_now;
11176 for (i = 0; i < reloc_index; i++)
11177 reloc[i] = reversed_reloc[reloc_index - 1 - i];
11178 }
fb1b3232 11179
5e0116d5 11180 return reloc_index;
252b5132
RH
11181}
11182
11183static void
17a2f251 11184my_getExpression (expressionS *ep, char *str)
252b5132
RH
11185{
11186 char *save_in;
98aa84af 11187 valueT val;
252b5132
RH
11188
11189 save_in = input_line_pointer;
11190 input_line_pointer = str;
11191 expression (ep);
11192 expr_end = input_line_pointer;
11193 input_line_pointer = save_in;
11194
11195 /* If we are in mips16 mode, and this is an expression based on `.',
11196 then we bump the value of the symbol by 1 since that is how other
11197 text symbols are handled. We don't bother to handle complex
11198 expressions, just `.' plus or minus a constant. */
11199 if (mips_opts.mips16
11200 && ep->X_op == O_symbol
11201 && strcmp (S_GET_NAME (ep->X_add_symbol), FAKE_LABEL_NAME) == 0
11202 && S_GET_SEGMENT (ep->X_add_symbol) == now_seg
49309057
ILT
11203 && symbol_get_frag (ep->X_add_symbol) == frag_now
11204 && symbol_constant_p (ep->X_add_symbol)
98aa84af
AM
11205 && (val = S_GET_VALUE (ep->X_add_symbol)) == frag_now_fix ())
11206 S_SET_VALUE (ep->X_add_symbol, val + 1);
252b5132
RH
11207}
11208
252b5132 11209char *
17a2f251 11210md_atof (int type, char *litP, int *sizeP)
252b5132 11211{
499ac353 11212 return ieee_md_atof (type, litP, sizeP, target_big_endian);
252b5132
RH
11213}
11214
11215void
17a2f251 11216md_number_to_chars (char *buf, valueT val, int n)
252b5132
RH
11217{
11218 if (target_big_endian)
11219 number_to_chars_bigendian (buf, val, n);
11220 else
11221 number_to_chars_littleendian (buf, val, n);
11222}
11223\f
ae948b86 11224#ifdef OBJ_ELF
e013f690
TS
11225static int support_64bit_objects(void)
11226{
11227 const char **list, **l;
aa3d8fdf 11228 int yes;
e013f690
TS
11229
11230 list = bfd_target_list ();
11231 for (l = list; *l != NULL; l++)
11232#ifdef TE_TMIPS
11233 /* This is traditional mips */
11234 if (strcmp (*l, "elf64-tradbigmips") == 0
11235 || strcmp (*l, "elf64-tradlittlemips") == 0)
11236#else
11237 if (strcmp (*l, "elf64-bigmips") == 0
11238 || strcmp (*l, "elf64-littlemips") == 0)
11239#endif
11240 break;
aa3d8fdf 11241 yes = (*l != NULL);
e013f690 11242 free (list);
aa3d8fdf 11243 return yes;
e013f690 11244}
ae948b86 11245#endif /* OBJ_ELF */
e013f690 11246
78849248 11247const char *md_shortopts = "O::g::G:";
252b5132 11248
23fce1e3
NC
11249enum options
11250 {
11251 OPTION_MARCH = OPTION_MD_BASE,
11252 OPTION_MTUNE,
11253 OPTION_MIPS1,
11254 OPTION_MIPS2,
11255 OPTION_MIPS3,
11256 OPTION_MIPS4,
11257 OPTION_MIPS5,
11258 OPTION_MIPS32,
11259 OPTION_MIPS64,
11260 OPTION_MIPS32R2,
11261 OPTION_MIPS64R2,
11262 OPTION_MIPS16,
11263 OPTION_NO_MIPS16,
11264 OPTION_MIPS3D,
11265 OPTION_NO_MIPS3D,
11266 OPTION_MDMX,
11267 OPTION_NO_MDMX,
11268 OPTION_DSP,
11269 OPTION_NO_DSP,
11270 OPTION_MT,
11271 OPTION_NO_MT,
11272 OPTION_SMARTMIPS,
11273 OPTION_NO_SMARTMIPS,
11274 OPTION_DSPR2,
11275 OPTION_NO_DSPR2,
11276 OPTION_COMPAT_ARCH_BASE,
11277 OPTION_M4650,
11278 OPTION_NO_M4650,
11279 OPTION_M4010,
11280 OPTION_NO_M4010,
11281 OPTION_M4100,
11282 OPTION_NO_M4100,
11283 OPTION_M3900,
11284 OPTION_NO_M3900,
11285 OPTION_M7000_HILO_FIX,
6a32d874
CM
11286 OPTION_MNO_7000_HILO_FIX,
11287 OPTION_FIX_24K,
11288 OPTION_NO_FIX_24K,
23fce1e3
NC
11289 OPTION_FIX_VR4120,
11290 OPTION_NO_FIX_VR4120,
11291 OPTION_FIX_VR4130,
11292 OPTION_NO_FIX_VR4130,
11293 OPTION_TRAP,
11294 OPTION_BREAK,
11295 OPTION_EB,
11296 OPTION_EL,
11297 OPTION_FP32,
11298 OPTION_GP32,
11299 OPTION_CONSTRUCT_FLOATS,
11300 OPTION_NO_CONSTRUCT_FLOATS,
11301 OPTION_FP64,
11302 OPTION_GP64,
11303 OPTION_RELAX_BRANCH,
11304 OPTION_NO_RELAX_BRANCH,
11305 OPTION_MSHARED,
11306 OPTION_MNO_SHARED,
11307 OPTION_MSYM32,
11308 OPTION_MNO_SYM32,
11309 OPTION_SOFT_FLOAT,
11310 OPTION_HARD_FLOAT,
11311 OPTION_SINGLE_FLOAT,
11312 OPTION_DOUBLE_FLOAT,
11313 OPTION_32,
11314#ifdef OBJ_ELF
11315 OPTION_CALL_SHARED,
11316 OPTION_CALL_NONPIC,
11317 OPTION_NON_SHARED,
11318 OPTION_XGOT,
11319 OPTION_MABI,
11320 OPTION_N32,
11321 OPTION_64,
11322 OPTION_MDEBUG,
11323 OPTION_NO_MDEBUG,
11324 OPTION_PDR,
11325 OPTION_NO_PDR,
11326 OPTION_MVXWORKS_PIC,
11327#endif /* OBJ_ELF */
11328 OPTION_END_OF_ENUM
11329 };
11330
e972090a
NC
11331struct option md_longopts[] =
11332{
f9b4148d 11333 /* Options which specify architecture. */
f9b4148d 11334 {"march", required_argument, NULL, OPTION_MARCH},
f9b4148d 11335 {"mtune", required_argument, NULL, OPTION_MTUNE},
252b5132
RH
11336 {"mips0", no_argument, NULL, OPTION_MIPS1},
11337 {"mips1", no_argument, NULL, OPTION_MIPS1},
252b5132 11338 {"mips2", no_argument, NULL, OPTION_MIPS2},
252b5132 11339 {"mips3", no_argument, NULL, OPTION_MIPS3},
252b5132 11340 {"mips4", no_argument, NULL, OPTION_MIPS4},
ae948b86 11341 {"mips5", no_argument, NULL, OPTION_MIPS5},
ae948b86 11342 {"mips32", no_argument, NULL, OPTION_MIPS32},
ae948b86 11343 {"mips64", no_argument, NULL, OPTION_MIPS64},
f9b4148d 11344 {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
5f74bc13 11345 {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
f9b4148d
CD
11346
11347 /* Options which specify Application Specific Extensions (ASEs). */
f9b4148d 11348 {"mips16", no_argument, NULL, OPTION_MIPS16},
f9b4148d 11349 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
f9b4148d 11350 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
f9b4148d 11351 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
f9b4148d 11352 {"mdmx", no_argument, NULL, OPTION_MDMX},
f9b4148d 11353 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
74cd071d 11354 {"mdsp", no_argument, NULL, OPTION_DSP},
74cd071d 11355 {"mno-dsp", no_argument, NULL, OPTION_NO_DSP},
ef2e4d86 11356 {"mmt", no_argument, NULL, OPTION_MT},
ef2e4d86 11357 {"mno-mt", no_argument, NULL, OPTION_NO_MT},
e16bfa71 11358 {"msmartmips", no_argument, NULL, OPTION_SMARTMIPS},
e16bfa71 11359 {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS},
8b082fb1 11360 {"mdspr2", no_argument, NULL, OPTION_DSPR2},
8b082fb1 11361 {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2},
f9b4148d
CD
11362
11363 /* Old-style architecture options. Don't add more of these. */
f9b4148d 11364 {"m4650", no_argument, NULL, OPTION_M4650},
f9b4148d 11365 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
f9b4148d 11366 {"m4010", no_argument, NULL, OPTION_M4010},
f9b4148d 11367 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
f9b4148d 11368 {"m4100", no_argument, NULL, OPTION_M4100},
f9b4148d 11369 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
f9b4148d 11370 {"m3900", no_argument, NULL, OPTION_M3900},
f9b4148d
CD
11371 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
11372
11373 /* Options which enable bug fixes. */
f9b4148d 11374 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
f9b4148d
CD
11375 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
11376 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
d766e8ec
RS
11377 {"mfix-vr4120", no_argument, NULL, OPTION_FIX_VR4120},
11378 {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
7d8e00cf
RS
11379 {"mfix-vr4130", no_argument, NULL, OPTION_FIX_VR4130},
11380 {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
6a32d874
CM
11381 {"mfix-24k", no_argument, NULL, OPTION_FIX_24K},
11382 {"mno-fix-24k", no_argument, NULL, OPTION_NO_FIX_24K},
f9b4148d
CD
11383
11384 /* Miscellaneous options. */
252b5132
RH
11385 {"trap", no_argument, NULL, OPTION_TRAP},
11386 {"no-break", no_argument, NULL, OPTION_TRAP},
252b5132
RH
11387 {"break", no_argument, NULL, OPTION_BREAK},
11388 {"no-trap", no_argument, NULL, OPTION_BREAK},
252b5132 11389 {"EB", no_argument, NULL, OPTION_EB},
252b5132 11390 {"EL", no_argument, NULL, OPTION_EL},
ae948b86 11391 {"mfp32", no_argument, NULL, OPTION_FP32},
c97ef257 11392 {"mgp32", no_argument, NULL, OPTION_GP32},
119d663a 11393 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
119d663a 11394 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
316f5878 11395 {"mfp64", no_argument, NULL, OPTION_FP64},
ae948b86 11396 {"mgp64", no_argument, NULL, OPTION_GP64},
4a6a3df4
AO
11397 {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
11398 {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
aa6975fb
ILT
11399 {"mshared", no_argument, NULL, OPTION_MSHARED},
11400 {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
aed1a261
RS
11401 {"msym32", no_argument, NULL, OPTION_MSYM32},
11402 {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
037b32b9
AN
11403 {"msoft-float", no_argument, NULL, OPTION_SOFT_FLOAT},
11404 {"mhard-float", no_argument, NULL, OPTION_HARD_FLOAT},
037b32b9
AN
11405 {"msingle-float", no_argument, NULL, OPTION_SINGLE_FLOAT},
11406 {"mdouble-float", no_argument, NULL, OPTION_DOUBLE_FLOAT},
23fce1e3
NC
11407
11408 /* Strictly speaking this next option is ELF specific,
11409 but we allow it for other ports as well in order to
11410 make testing easier. */
11411 {"32", no_argument, NULL, OPTION_32},
037b32b9 11412
f9b4148d 11413 /* ELF-specific options. */
156c2f8b 11414#ifdef OBJ_ELF
156c2f8b
NC
11415 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
11416 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
861fb55a 11417 {"call_nonpic", no_argument, NULL, OPTION_CALL_NONPIC},
156c2f8b
NC
11418 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
11419 {"xgot", no_argument, NULL, OPTION_XGOT},
ae948b86 11420 {"mabi", required_argument, NULL, OPTION_MABI},
e013f690 11421 {"n32", no_argument, NULL, OPTION_N32},
156c2f8b 11422 {"64", no_argument, NULL, OPTION_64},
ecb4347a 11423 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
ecb4347a 11424 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
dcd410fe 11425 {"mpdr", no_argument, NULL, OPTION_PDR},
dcd410fe 11426 {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
0a44bf69 11427 {"mvxworks-pic", no_argument, NULL, OPTION_MVXWORKS_PIC},
ae948b86 11428#endif /* OBJ_ELF */
f9b4148d 11429
252b5132
RH
11430 {NULL, no_argument, NULL, 0}
11431};
156c2f8b 11432size_t md_longopts_size = sizeof (md_longopts);
252b5132 11433
316f5878
RS
11434/* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
11435 NEW_VALUE. Warn if another value was already specified. Note:
11436 we have to defer parsing the -march and -mtune arguments in order
11437 to handle 'from-abi' correctly, since the ABI might be specified
11438 in a later argument. */
11439
11440static void
17a2f251 11441mips_set_option_string (const char **string_ptr, const char *new_value)
316f5878
RS
11442{
11443 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
11444 as_warn (_("A different %s was already specified, is now %s"),
11445 string_ptr == &mips_arch_string ? "-march" : "-mtune",
11446 new_value);
11447
11448 *string_ptr = new_value;
11449}
11450
252b5132 11451int
17a2f251 11452md_parse_option (int c, char *arg)
252b5132
RH
11453{
11454 switch (c)
11455 {
119d663a
NC
11456 case OPTION_CONSTRUCT_FLOATS:
11457 mips_disable_float_construction = 0;
11458 break;
bdaaa2e1 11459
119d663a
NC
11460 case OPTION_NO_CONSTRUCT_FLOATS:
11461 mips_disable_float_construction = 1;
11462 break;
bdaaa2e1 11463
252b5132
RH
11464 case OPTION_TRAP:
11465 mips_trap = 1;
11466 break;
11467
11468 case OPTION_BREAK:
11469 mips_trap = 0;
11470 break;
11471
11472 case OPTION_EB:
11473 target_big_endian = 1;
11474 break;
11475
11476 case OPTION_EL:
11477 target_big_endian = 0;
11478 break;
11479
11480 case 'O':
4ffff32f
TS
11481 if (arg == NULL)
11482 mips_optimize = 1;
11483 else if (arg[0] == '0')
11484 mips_optimize = 0;
11485 else if (arg[0] == '1')
252b5132
RH
11486 mips_optimize = 1;
11487 else
11488 mips_optimize = 2;
11489 break;
11490
11491 case 'g':
11492 if (arg == NULL)
11493 mips_debug = 2;
11494 else
11495 mips_debug = atoi (arg);
252b5132
RH
11496 break;
11497
11498 case OPTION_MIPS1:
316f5878 11499 file_mips_isa = ISA_MIPS1;
252b5132
RH
11500 break;
11501
11502 case OPTION_MIPS2:
316f5878 11503 file_mips_isa = ISA_MIPS2;
252b5132
RH
11504 break;
11505
11506 case OPTION_MIPS3:
316f5878 11507 file_mips_isa = ISA_MIPS3;
252b5132
RH
11508 break;
11509
11510 case OPTION_MIPS4:
316f5878 11511 file_mips_isa = ISA_MIPS4;
e7af610e
NC
11512 break;
11513
84ea6cf2 11514 case OPTION_MIPS5:
316f5878 11515 file_mips_isa = ISA_MIPS5;
84ea6cf2
NC
11516 break;
11517
e7af610e 11518 case OPTION_MIPS32:
316f5878 11519 file_mips_isa = ISA_MIPS32;
252b5132
RH
11520 break;
11521
af7ee8bf
CD
11522 case OPTION_MIPS32R2:
11523 file_mips_isa = ISA_MIPS32R2;
11524 break;
11525
5f74bc13
CD
11526 case OPTION_MIPS64R2:
11527 file_mips_isa = ISA_MIPS64R2;
11528 break;
11529
84ea6cf2 11530 case OPTION_MIPS64:
316f5878 11531 file_mips_isa = ISA_MIPS64;
84ea6cf2
NC
11532 break;
11533
ec68c924 11534 case OPTION_MTUNE:
316f5878
RS
11535 mips_set_option_string (&mips_tune_string, arg);
11536 break;
ec68c924 11537
316f5878
RS
11538 case OPTION_MARCH:
11539 mips_set_option_string (&mips_arch_string, arg);
252b5132
RH
11540 break;
11541
11542 case OPTION_M4650:
316f5878
RS
11543 mips_set_option_string (&mips_arch_string, "4650");
11544 mips_set_option_string (&mips_tune_string, "4650");
252b5132
RH
11545 break;
11546
11547 case OPTION_NO_M4650:
11548 break;
11549
11550 case OPTION_M4010:
316f5878
RS
11551 mips_set_option_string (&mips_arch_string, "4010");
11552 mips_set_option_string (&mips_tune_string, "4010");
252b5132
RH
11553 break;
11554
11555 case OPTION_NO_M4010:
11556 break;
11557
11558 case OPTION_M4100:
316f5878
RS
11559 mips_set_option_string (&mips_arch_string, "4100");
11560 mips_set_option_string (&mips_tune_string, "4100");
252b5132
RH
11561 break;
11562
11563 case OPTION_NO_M4100:
11564 break;
11565
252b5132 11566 case OPTION_M3900:
316f5878
RS
11567 mips_set_option_string (&mips_arch_string, "3900");
11568 mips_set_option_string (&mips_tune_string, "3900");
252b5132 11569 break;
bdaaa2e1 11570
252b5132
RH
11571 case OPTION_NO_M3900:
11572 break;
11573
deec1734
CD
11574 case OPTION_MDMX:
11575 mips_opts.ase_mdmx = 1;
11576 break;
11577
11578 case OPTION_NO_MDMX:
11579 mips_opts.ase_mdmx = 0;
11580 break;
11581
74cd071d
CF
11582 case OPTION_DSP:
11583 mips_opts.ase_dsp = 1;
8b082fb1 11584 mips_opts.ase_dspr2 = 0;
74cd071d
CF
11585 break;
11586
11587 case OPTION_NO_DSP:
8b082fb1
TS
11588 mips_opts.ase_dsp = 0;
11589 mips_opts.ase_dspr2 = 0;
11590 break;
11591
11592 case OPTION_DSPR2:
11593 mips_opts.ase_dspr2 = 1;
11594 mips_opts.ase_dsp = 1;
11595 break;
11596
11597 case OPTION_NO_DSPR2:
11598 mips_opts.ase_dspr2 = 0;
74cd071d
CF
11599 mips_opts.ase_dsp = 0;
11600 break;
11601
ef2e4d86
CF
11602 case OPTION_MT:
11603 mips_opts.ase_mt = 1;
11604 break;
11605
11606 case OPTION_NO_MT:
11607 mips_opts.ase_mt = 0;
11608 break;
11609
252b5132
RH
11610 case OPTION_MIPS16:
11611 mips_opts.mips16 = 1;
7d10b47d 11612 mips_no_prev_insn ();
252b5132
RH
11613 break;
11614
11615 case OPTION_NO_MIPS16:
11616 mips_opts.mips16 = 0;
7d10b47d 11617 mips_no_prev_insn ();
252b5132
RH
11618 break;
11619
1f25f5d3
CD
11620 case OPTION_MIPS3D:
11621 mips_opts.ase_mips3d = 1;
11622 break;
11623
11624 case OPTION_NO_MIPS3D:
11625 mips_opts.ase_mips3d = 0;
11626 break;
11627
e16bfa71
TS
11628 case OPTION_SMARTMIPS:
11629 mips_opts.ase_smartmips = 1;
11630 break;
11631
11632 case OPTION_NO_SMARTMIPS:
11633 mips_opts.ase_smartmips = 0;
11634 break;
11635
6a32d874
CM
11636 case OPTION_FIX_24K:
11637 mips_fix_24k = 1;
11638 break;
11639
11640 case OPTION_NO_FIX_24K:
11641 mips_fix_24k = 0;
11642 break;
11643
d766e8ec
RS
11644 case OPTION_FIX_VR4120:
11645 mips_fix_vr4120 = 1;
60b63b72
RS
11646 break;
11647
d766e8ec
RS
11648 case OPTION_NO_FIX_VR4120:
11649 mips_fix_vr4120 = 0;
60b63b72
RS
11650 break;
11651
7d8e00cf
RS
11652 case OPTION_FIX_VR4130:
11653 mips_fix_vr4130 = 1;
11654 break;
11655
11656 case OPTION_NO_FIX_VR4130:
11657 mips_fix_vr4130 = 0;
11658 break;
11659
4a6a3df4
AO
11660 case OPTION_RELAX_BRANCH:
11661 mips_relax_branch = 1;
11662 break;
11663
11664 case OPTION_NO_RELAX_BRANCH:
11665 mips_relax_branch = 0;
11666 break;
11667
aa6975fb
ILT
11668 case OPTION_MSHARED:
11669 mips_in_shared = TRUE;
11670 break;
11671
11672 case OPTION_MNO_SHARED:
11673 mips_in_shared = FALSE;
11674 break;
11675
aed1a261
RS
11676 case OPTION_MSYM32:
11677 mips_opts.sym32 = TRUE;
11678 break;
11679
11680 case OPTION_MNO_SYM32:
11681 mips_opts.sym32 = FALSE;
11682 break;
11683
0f074f60 11684#ifdef OBJ_ELF
252b5132
RH
11685 /* When generating ELF code, we permit -KPIC and -call_shared to
11686 select SVR4_PIC, and -non_shared to select no PIC. This is
11687 intended to be compatible with Irix 5. */
11688 case OPTION_CALL_SHARED:
f43abd2b 11689 if (!IS_ELF)
252b5132
RH
11690 {
11691 as_bad (_("-call_shared is supported only for ELF format"));
11692 return 0;
11693 }
11694 mips_pic = SVR4_PIC;
143d77c5 11695 mips_abicalls = TRUE;
252b5132
RH
11696 break;
11697
861fb55a
DJ
11698 case OPTION_CALL_NONPIC:
11699 if (!IS_ELF)
11700 {
11701 as_bad (_("-call_nonpic is supported only for ELF format"));
11702 return 0;
11703 }
11704 mips_pic = NO_PIC;
11705 mips_abicalls = TRUE;
11706 break;
11707
252b5132 11708 case OPTION_NON_SHARED:
f43abd2b 11709 if (!IS_ELF)
252b5132
RH
11710 {
11711 as_bad (_("-non_shared is supported only for ELF format"));
11712 return 0;
11713 }
11714 mips_pic = NO_PIC;
143d77c5 11715 mips_abicalls = FALSE;
252b5132
RH
11716 break;
11717
44075ae2
TS
11718 /* The -xgot option tells the assembler to use 32 bit offsets
11719 when accessing the got in SVR4_PIC mode. It is for Irix
252b5132
RH
11720 compatibility. */
11721 case OPTION_XGOT:
11722 mips_big_got = 1;
11723 break;
0f074f60 11724#endif /* OBJ_ELF */
252b5132
RH
11725
11726 case 'G':
6caf9ef4
TS
11727 g_switch_value = atoi (arg);
11728 g_switch_seen = 1;
252b5132
RH
11729 break;
11730
34ba82a8
TS
11731 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
11732 and -mabi=64. */
252b5132 11733 case OPTION_32:
23fce1e3
NC
11734 if (IS_ELF)
11735 mips_abi = O32_ABI;
11736 /* We silently ignore -32 for non-ELF targets. This greatly
11737 simplifies the construction of the MIPS GAS test cases. */
252b5132
RH
11738 break;
11739
23fce1e3 11740#ifdef OBJ_ELF
e013f690 11741 case OPTION_N32:
f43abd2b 11742 if (!IS_ELF)
34ba82a8
TS
11743 {
11744 as_bad (_("-n32 is supported for ELF format only"));
11745 return 0;
11746 }
316f5878 11747 mips_abi = N32_ABI;
e013f690 11748 break;
252b5132 11749
e013f690 11750 case OPTION_64:
f43abd2b 11751 if (!IS_ELF)
34ba82a8
TS
11752 {
11753 as_bad (_("-64 is supported for ELF format only"));
11754 return 0;
11755 }
316f5878 11756 mips_abi = N64_ABI;
f43abd2b 11757 if (!support_64bit_objects())
e013f690 11758 as_fatal (_("No compiled in support for 64 bit object file format"));
252b5132 11759 break;
ae948b86 11760#endif /* OBJ_ELF */
252b5132 11761
c97ef257 11762 case OPTION_GP32:
a325df1d 11763 file_mips_gp32 = 1;
c97ef257
AH
11764 break;
11765
11766 case OPTION_GP64:
a325df1d 11767 file_mips_gp32 = 0;
c97ef257 11768 break;
252b5132 11769
ca4e0257 11770 case OPTION_FP32:
a325df1d 11771 file_mips_fp32 = 1;
316f5878
RS
11772 break;
11773
11774 case OPTION_FP64:
11775 file_mips_fp32 = 0;
ca4e0257
RS
11776 break;
11777
037b32b9
AN
11778 case OPTION_SINGLE_FLOAT:
11779 file_mips_single_float = 1;
11780 break;
11781
11782 case OPTION_DOUBLE_FLOAT:
11783 file_mips_single_float = 0;
11784 break;
11785
11786 case OPTION_SOFT_FLOAT:
11787 file_mips_soft_float = 1;
11788 break;
11789
11790 case OPTION_HARD_FLOAT:
11791 file_mips_soft_float = 0;
11792 break;
11793
ae948b86 11794#ifdef OBJ_ELF
252b5132 11795 case OPTION_MABI:
f43abd2b 11796 if (!IS_ELF)
34ba82a8
TS
11797 {
11798 as_bad (_("-mabi is supported for ELF format only"));
11799 return 0;
11800 }
e013f690 11801 if (strcmp (arg, "32") == 0)
316f5878 11802 mips_abi = O32_ABI;
e013f690 11803 else if (strcmp (arg, "o64") == 0)
316f5878 11804 mips_abi = O64_ABI;
e013f690 11805 else if (strcmp (arg, "n32") == 0)
316f5878 11806 mips_abi = N32_ABI;
e013f690
TS
11807 else if (strcmp (arg, "64") == 0)
11808 {
316f5878 11809 mips_abi = N64_ABI;
e013f690
TS
11810 if (! support_64bit_objects())
11811 as_fatal (_("No compiled in support for 64 bit object file "
11812 "format"));
11813 }
11814 else if (strcmp (arg, "eabi") == 0)
316f5878 11815 mips_abi = EABI_ABI;
e013f690 11816 else
da0e507f
TS
11817 {
11818 as_fatal (_("invalid abi -mabi=%s"), arg);
11819 return 0;
11820 }
252b5132 11821 break;
e013f690 11822#endif /* OBJ_ELF */
252b5132 11823
6b76fefe 11824 case OPTION_M7000_HILO_FIX:
b34976b6 11825 mips_7000_hilo_fix = TRUE;
6b76fefe
CM
11826 break;
11827
9ee72ff1 11828 case OPTION_MNO_7000_HILO_FIX:
b34976b6 11829 mips_7000_hilo_fix = FALSE;
6b76fefe
CM
11830 break;
11831
ecb4347a
DJ
11832#ifdef OBJ_ELF
11833 case OPTION_MDEBUG:
b34976b6 11834 mips_flag_mdebug = TRUE;
ecb4347a
DJ
11835 break;
11836
11837 case OPTION_NO_MDEBUG:
b34976b6 11838 mips_flag_mdebug = FALSE;
ecb4347a 11839 break;
dcd410fe
RO
11840
11841 case OPTION_PDR:
11842 mips_flag_pdr = TRUE;
11843 break;
11844
11845 case OPTION_NO_PDR:
11846 mips_flag_pdr = FALSE;
11847 break;
0a44bf69
RS
11848
11849 case OPTION_MVXWORKS_PIC:
11850 mips_pic = VXWORKS_PIC;
11851 break;
ecb4347a
DJ
11852#endif /* OBJ_ELF */
11853
252b5132
RH
11854 default:
11855 return 0;
11856 }
11857
11858 return 1;
11859}
316f5878
RS
11860\f
11861/* Set up globals to generate code for the ISA or processor
11862 described by INFO. */
252b5132 11863
252b5132 11864static void
17a2f251 11865mips_set_architecture (const struct mips_cpu_info *info)
252b5132 11866{
316f5878 11867 if (info != 0)
252b5132 11868 {
fef14a42
TS
11869 file_mips_arch = info->cpu;
11870 mips_opts.arch = info->cpu;
316f5878 11871 mips_opts.isa = info->isa;
252b5132 11872 }
252b5132
RH
11873}
11874
252b5132 11875
316f5878 11876/* Likewise for tuning. */
252b5132 11877
316f5878 11878static void
17a2f251 11879mips_set_tune (const struct mips_cpu_info *info)
316f5878
RS
11880{
11881 if (info != 0)
fef14a42 11882 mips_tune = info->cpu;
316f5878 11883}
80cc45a5 11884
34ba82a8 11885
252b5132 11886void
17a2f251 11887mips_after_parse_args (void)
e9670677 11888{
fef14a42
TS
11889 const struct mips_cpu_info *arch_info = 0;
11890 const struct mips_cpu_info *tune_info = 0;
11891
e9670677 11892 /* GP relative stuff not working for PE */
6caf9ef4 11893 if (strncmp (TARGET_OS, "pe", 2) == 0)
e9670677 11894 {
6caf9ef4 11895 if (g_switch_seen && g_switch_value != 0)
e9670677
MR
11896 as_bad (_("-G not supported in this configuration."));
11897 g_switch_value = 0;
11898 }
11899
cac012d6
AO
11900 if (mips_abi == NO_ABI)
11901 mips_abi = MIPS_DEFAULT_ABI;
11902
22923709
RS
11903 /* The following code determines the architecture and register size.
11904 Similar code was added to GCC 3.3 (see override_options() in
11905 config/mips/mips.c). The GAS and GCC code should be kept in sync
11906 as much as possible. */
e9670677 11907
316f5878 11908 if (mips_arch_string != 0)
fef14a42 11909 arch_info = mips_parse_cpu ("-march", mips_arch_string);
e9670677 11910
316f5878 11911 if (file_mips_isa != ISA_UNKNOWN)
e9670677 11912 {
316f5878 11913 /* Handle -mipsN. At this point, file_mips_isa contains the
fef14a42 11914 ISA level specified by -mipsN, while arch_info->isa contains
316f5878 11915 the -march selection (if any). */
fef14a42 11916 if (arch_info != 0)
e9670677 11917 {
316f5878
RS
11918 /* -march takes precedence over -mipsN, since it is more descriptive.
11919 There's no harm in specifying both as long as the ISA levels
11920 are the same. */
fef14a42 11921 if (file_mips_isa != arch_info->isa)
316f5878
RS
11922 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
11923 mips_cpu_info_from_isa (file_mips_isa)->name,
fef14a42 11924 mips_cpu_info_from_isa (arch_info->isa)->name);
e9670677 11925 }
316f5878 11926 else
fef14a42 11927 arch_info = mips_cpu_info_from_isa (file_mips_isa);
e9670677
MR
11928 }
11929
fef14a42
TS
11930 if (arch_info == 0)
11931 arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
e9670677 11932
fef14a42 11933 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
316f5878 11934 as_bad ("-march=%s is not compatible with the selected ABI",
fef14a42
TS
11935 arch_info->name);
11936
11937 mips_set_architecture (arch_info);
11938
11939 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
11940 if (mips_tune_string != 0)
11941 tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
e9670677 11942
fef14a42
TS
11943 if (tune_info == 0)
11944 mips_set_tune (arch_info);
11945 else
11946 mips_set_tune (tune_info);
e9670677 11947
316f5878 11948 if (file_mips_gp32 >= 0)
e9670677 11949 {
316f5878
RS
11950 /* The user specified the size of the integer registers. Make sure
11951 it agrees with the ABI and ISA. */
11952 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
11953 as_bad (_("-mgp64 used with a 32-bit processor"));
11954 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
11955 as_bad (_("-mgp32 used with a 64-bit ABI"));
11956 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
11957 as_bad (_("-mgp64 used with a 32-bit ABI"));
e9670677
MR
11958 }
11959 else
11960 {
316f5878
RS
11961 /* Infer the integer register size from the ABI and processor.
11962 Restrict ourselves to 32-bit registers if that's all the
11963 processor has, or if the ABI cannot handle 64-bit registers. */
11964 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
11965 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
e9670677
MR
11966 }
11967
ad3fea08
TS
11968 switch (file_mips_fp32)
11969 {
11970 default:
11971 case -1:
11972 /* No user specified float register size.
11973 ??? GAS treats single-float processors as though they had 64-bit
11974 float registers (although it complains when double-precision
11975 instructions are used). As things stand, saying they have 32-bit
11976 registers would lead to spurious "register must be even" messages.
11977 So here we assume float registers are never smaller than the
11978 integer ones. */
11979 if (file_mips_gp32 == 0)
11980 /* 64-bit integer registers implies 64-bit float registers. */
11981 file_mips_fp32 = 0;
11982 else if ((mips_opts.ase_mips3d > 0 || mips_opts.ase_mdmx > 0)
11983 && ISA_HAS_64BIT_FPRS (mips_opts.isa))
11984 /* -mips3d and -mdmx imply 64-bit float registers, if possible. */
11985 file_mips_fp32 = 0;
11986 else
11987 /* 32-bit float registers. */
11988 file_mips_fp32 = 1;
11989 break;
11990
11991 /* The user specified the size of the float registers. Check if it
11992 agrees with the ABI and ISA. */
11993 case 0:
11994 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
11995 as_bad (_("-mfp64 used with a 32-bit fpu"));
11996 else if (ABI_NEEDS_32BIT_REGS (mips_abi)
11997 && !ISA_HAS_MXHC1 (mips_opts.isa))
11998 as_warn (_("-mfp64 used with a 32-bit ABI"));
11999 break;
12000 case 1:
12001 if (ABI_NEEDS_64BIT_REGS (mips_abi))
12002 as_warn (_("-mfp32 used with a 64-bit ABI"));
12003 break;
12004 }
e9670677 12005
316f5878 12006 /* End of GCC-shared inference code. */
e9670677 12007
17a2f251
TS
12008 /* This flag is set when we have a 64-bit capable CPU but use only
12009 32-bit wide registers. Note that EABI does not use it. */
12010 if (ISA_HAS_64BIT_REGS (mips_opts.isa)
12011 && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
12012 || mips_abi == O32_ABI))
316f5878 12013 mips_32bitmode = 1;
e9670677
MR
12014
12015 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
12016 as_bad (_("trap exception not supported at ISA 1"));
12017
e9670677
MR
12018 /* If the selected architecture includes support for ASEs, enable
12019 generation of code for them. */
a4672219 12020 if (mips_opts.mips16 == -1)
fef14a42 12021 mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
ffdefa66 12022 if (mips_opts.ase_mips3d == -1)
65263ce3 12023 mips_opts.ase_mips3d = ((arch_info->flags & MIPS_CPU_ASE_MIPS3D)
ad3fea08
TS
12024 && file_mips_fp32 == 0) ? 1 : 0;
12025 if (mips_opts.ase_mips3d && file_mips_fp32 == 1)
12026 as_bad (_("-mfp32 used with -mips3d"));
12027
ffdefa66 12028 if (mips_opts.ase_mdmx == -1)
65263ce3 12029 mips_opts.ase_mdmx = ((arch_info->flags & MIPS_CPU_ASE_MDMX)
ad3fea08
TS
12030 && file_mips_fp32 == 0) ? 1 : 0;
12031 if (mips_opts.ase_mdmx && file_mips_fp32 == 1)
12032 as_bad (_("-mfp32 used with -mdmx"));
12033
12034 if (mips_opts.ase_smartmips == -1)
12035 mips_opts.ase_smartmips = (arch_info->flags & MIPS_CPU_ASE_SMARTMIPS) ? 1 : 0;
12036 if (mips_opts.ase_smartmips && !ISA_SUPPORTS_SMARTMIPS)
12037 as_warn ("%s ISA does not support SmartMIPS",
12038 mips_cpu_info_from_isa (mips_opts.isa)->name);
12039
74cd071d 12040 if (mips_opts.ase_dsp == -1)
ad3fea08
TS
12041 mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0;
12042 if (mips_opts.ase_dsp && !ISA_SUPPORTS_DSP_ASE)
12043 as_warn ("%s ISA does not support DSP ASE",
12044 mips_cpu_info_from_isa (mips_opts.isa)->name);
12045
8b082fb1
TS
12046 if (mips_opts.ase_dspr2 == -1)
12047 {
12048 mips_opts.ase_dspr2 = (arch_info->flags & MIPS_CPU_ASE_DSPR2) ? 1 : 0;
12049 mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0;
12050 }
12051 if (mips_opts.ase_dspr2 && !ISA_SUPPORTS_DSPR2_ASE)
12052 as_warn ("%s ISA does not support DSP R2 ASE",
12053 mips_cpu_info_from_isa (mips_opts.isa)->name);
12054
ef2e4d86 12055 if (mips_opts.ase_mt == -1)
ad3fea08
TS
12056 mips_opts.ase_mt = (arch_info->flags & MIPS_CPU_ASE_MT) ? 1 : 0;
12057 if (mips_opts.ase_mt && !ISA_SUPPORTS_MT_ASE)
8b082fb1 12058 as_warn ("%s ISA does not support MT ASE",
ad3fea08 12059 mips_cpu_info_from_isa (mips_opts.isa)->name);
e9670677 12060
e9670677 12061 file_mips_isa = mips_opts.isa;
a4672219 12062 file_ase_mips16 = mips_opts.mips16;
e9670677
MR
12063 file_ase_mips3d = mips_opts.ase_mips3d;
12064 file_ase_mdmx = mips_opts.ase_mdmx;
e16bfa71 12065 file_ase_smartmips = mips_opts.ase_smartmips;
74cd071d 12066 file_ase_dsp = mips_opts.ase_dsp;
8b082fb1 12067 file_ase_dspr2 = mips_opts.ase_dspr2;
ef2e4d86 12068 file_ase_mt = mips_opts.ase_mt;
e9670677
MR
12069 mips_opts.gp32 = file_mips_gp32;
12070 mips_opts.fp32 = file_mips_fp32;
037b32b9
AN
12071 mips_opts.soft_float = file_mips_soft_float;
12072 mips_opts.single_float = file_mips_single_float;
e9670677 12073
ecb4347a
DJ
12074 if (mips_flag_mdebug < 0)
12075 {
12076#ifdef OBJ_MAYBE_ECOFF
12077 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour)
12078 mips_flag_mdebug = 1;
12079 else
12080#endif /* OBJ_MAYBE_ECOFF */
12081 mips_flag_mdebug = 0;
12082 }
e9670677
MR
12083}
12084\f
12085void
17a2f251 12086mips_init_after_args (void)
252b5132
RH
12087{
12088 /* initialize opcodes */
12089 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
beae10d5 12090 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
252b5132
RH
12091}
12092
12093long
17a2f251 12094md_pcrel_from (fixS *fixP)
252b5132 12095{
a7ebbfdf
TS
12096 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
12097 switch (fixP->fx_r_type)
12098 {
12099 case BFD_RELOC_16_PCREL_S2:
12100 case BFD_RELOC_MIPS_JMP:
12101 /* Return the address of the delay slot. */
12102 return addr + 4;
12103 default:
58ea3d6a 12104 /* We have no relocation type for PC relative MIPS16 instructions. */
64817874
TS
12105 if (fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != now_seg)
12106 as_bad_where (fixP->fx_file, fixP->fx_line,
12107 _("PC relative MIPS16 instruction references a different section"));
a7ebbfdf
TS
12108 return addr;
12109 }
252b5132
RH
12110}
12111
252b5132
RH
12112/* This is called before the symbol table is processed. In order to
12113 work with gcc when using mips-tfile, we must keep all local labels.
12114 However, in other cases, we want to discard them. If we were
12115 called with -g, but we didn't see any debugging information, it may
12116 mean that gcc is smuggling debugging information through to
12117 mips-tfile, in which case we must generate all local labels. */
12118
12119void
17a2f251 12120mips_frob_file_before_adjust (void)
252b5132
RH
12121{
12122#ifndef NO_ECOFF_DEBUGGING
12123 if (ECOFF_DEBUGGING
12124 && mips_debug != 0
12125 && ! ecoff_debugging_seen)
12126 flag_keep_locals = 1;
12127#endif
12128}
12129
3b91255e 12130/* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
55cf6793 12131 the corresponding LO16 reloc. This is called before md_apply_fix and
3b91255e
RS
12132 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
12133 relocation operators.
12134
12135 For our purposes, a %lo() expression matches a %got() or %hi()
12136 expression if:
12137
12138 (a) it refers to the same symbol; and
12139 (b) the offset applied in the %lo() expression is no lower than
12140 the offset applied in the %got() or %hi().
12141
12142 (b) allows us to cope with code like:
12143
12144 lui $4,%hi(foo)
12145 lh $4,%lo(foo+2)($4)
12146
12147 ...which is legal on RELA targets, and has a well-defined behaviour
12148 if the user knows that adding 2 to "foo" will not induce a carry to
12149 the high 16 bits.
12150
12151 When several %lo()s match a particular %got() or %hi(), we use the
12152 following rules to distinguish them:
12153
12154 (1) %lo()s with smaller offsets are a better match than %lo()s with
12155 higher offsets.
12156
12157 (2) %lo()s with no matching %got() or %hi() are better than those
12158 that already have a matching %got() or %hi().
12159
12160 (3) later %lo()s are better than earlier %lo()s.
12161
12162 These rules are applied in order.
12163
12164 (1) means, among other things, that %lo()s with identical offsets are
12165 chosen if they exist.
12166
12167 (2) means that we won't associate several high-part relocations with
12168 the same low-part relocation unless there's no alternative. Having
12169 several high parts for the same low part is a GNU extension; this rule
12170 allows careful users to avoid it.
12171
12172 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
12173 with the last high-part relocation being at the front of the list.
12174 It therefore makes sense to choose the last matching low-part
12175 relocation, all other things being equal. It's also easier
12176 to code that way. */
252b5132
RH
12177
12178void
17a2f251 12179mips_frob_file (void)
252b5132
RH
12180{
12181 struct mips_hi_fixup *l;
35903be0 12182 bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED;
252b5132
RH
12183
12184 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
12185 {
12186 segment_info_type *seginfo;
3b91255e
RS
12187 bfd_boolean matched_lo_p;
12188 fixS **hi_pos, **lo_pos, **pos;
252b5132 12189
5919d012 12190 assert (reloc_needs_lo_p (l->fixp->fx_r_type));
252b5132 12191
5919d012
RS
12192 /* If a GOT16 relocation turns out to be against a global symbol,
12193 there isn't supposed to be a matching LO. */
738e5348 12194 if (got16_reloc_p (l->fixp->fx_r_type)
5919d012
RS
12195 && !pic_need_relax (l->fixp->fx_addsy, l->seg))
12196 continue;
12197
12198 /* Check quickly whether the next fixup happens to be a matching %lo. */
12199 if (fixup_has_matching_lo_p (l->fixp))
252b5132
RH
12200 continue;
12201
252b5132 12202 seginfo = seg_info (l->seg);
252b5132 12203
3b91255e
RS
12204 /* Set HI_POS to the position of this relocation in the chain.
12205 Set LO_POS to the position of the chosen low-part relocation.
12206 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
12207 relocation that matches an immediately-preceding high-part
12208 relocation. */
12209 hi_pos = NULL;
12210 lo_pos = NULL;
12211 matched_lo_p = FALSE;
738e5348 12212 looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type);
35903be0 12213
3b91255e
RS
12214 for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
12215 {
12216 if (*pos == l->fixp)
12217 hi_pos = pos;
12218
35903be0 12219 if ((*pos)->fx_r_type == looking_for_rtype
3b91255e
RS
12220 && (*pos)->fx_addsy == l->fixp->fx_addsy
12221 && (*pos)->fx_offset >= l->fixp->fx_offset
12222 && (lo_pos == NULL
12223 || (*pos)->fx_offset < (*lo_pos)->fx_offset
12224 || (!matched_lo_p
12225 && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
12226 lo_pos = pos;
12227
12228 matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
12229 && fixup_has_matching_lo_p (*pos));
12230 }
12231
12232 /* If we found a match, remove the high-part relocation from its
12233 current position and insert it before the low-part relocation.
12234 Make the offsets match so that fixup_has_matching_lo_p()
12235 will return true.
12236
12237 We don't warn about unmatched high-part relocations since some
12238 versions of gcc have been known to emit dead "lui ...%hi(...)"
12239 instructions. */
12240 if (lo_pos != NULL)
12241 {
12242 l->fixp->fx_offset = (*lo_pos)->fx_offset;
12243 if (l->fixp->fx_next != *lo_pos)
252b5132 12244 {
3b91255e
RS
12245 *hi_pos = l->fixp->fx_next;
12246 l->fixp->fx_next = *lo_pos;
12247 *lo_pos = l->fixp;
252b5132 12248 }
252b5132
RH
12249 }
12250 }
12251}
12252
3e722fb5 12253/* We may have combined relocations without symbols in the N32/N64 ABI.
f6688943 12254 We have to prevent gas from dropping them. */
252b5132 12255
252b5132 12256int
17a2f251 12257mips_force_relocation (fixS *fixp)
252b5132 12258{
ae6063d4 12259 if (generic_force_reloc (fixp))
252b5132
RH
12260 return 1;
12261
f6688943
TS
12262 if (HAVE_NEWABI
12263 && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr
12264 && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB
738e5348
RS
12265 || hi16_reloc_p (fixp->fx_r_type)
12266 || lo16_reloc_p (fixp->fx_r_type)))
f6688943
TS
12267 return 1;
12268
3e722fb5 12269 return 0;
252b5132
RH
12270}
12271
12272/* Apply a fixup to the object file. */
12273
94f592af 12274void
55cf6793 12275md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
252b5132 12276{
874e8986 12277 bfd_byte *buf;
98aa84af 12278 long insn;
a7ebbfdf 12279 reloc_howto_type *howto;
252b5132 12280
a7ebbfdf
TS
12281 /* We ignore generic BFD relocations we don't know about. */
12282 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
12283 if (! howto)
12284 return;
65551fa4 12285
252b5132
RH
12286 assert (fixP->fx_size == 4
12287 || fixP->fx_r_type == BFD_RELOC_16
12288 || fixP->fx_r_type == BFD_RELOC_64
f6688943
TS
12289 || fixP->fx_r_type == BFD_RELOC_CTOR
12290 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
252b5132 12291 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
741d6ea8
JM
12292 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
12293 || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
252b5132 12294
a7ebbfdf 12295 buf = (bfd_byte *) (fixP->fx_frag->fr_literal + fixP->fx_where);
252b5132 12296
3994f87e 12297 assert (!fixP->fx_pcrel || fixP->fx_r_type == BFD_RELOC_16_PCREL_S2);
b1dca8ee
RS
12298
12299 /* Don't treat parts of a composite relocation as done. There are two
12300 reasons for this:
12301
12302 (1) The second and third parts will be against 0 (RSS_UNDEF) but
12303 should nevertheless be emitted if the first part is.
12304
12305 (2) In normal usage, composite relocations are never assembly-time
12306 constants. The easiest way of dealing with the pathological
12307 exceptions is to generate a relocation against STN_UNDEF and
12308 leave everything up to the linker. */
3994f87e 12309 if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0)
252b5132
RH
12310 fixP->fx_done = 1;
12311
12312 switch (fixP->fx_r_type)
12313 {
3f98094e
DJ
12314 case BFD_RELOC_MIPS_TLS_GD:
12315 case BFD_RELOC_MIPS_TLS_LDM:
741d6ea8
JM
12316 case BFD_RELOC_MIPS_TLS_DTPREL32:
12317 case BFD_RELOC_MIPS_TLS_DTPREL64:
3f98094e
DJ
12318 case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
12319 case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
12320 case BFD_RELOC_MIPS_TLS_GOTTPREL:
12321 case BFD_RELOC_MIPS_TLS_TPREL_HI16:
12322 case BFD_RELOC_MIPS_TLS_TPREL_LO16:
12323 S_SET_THREAD_LOCAL (fixP->fx_addsy);
12324 /* fall through */
12325
252b5132 12326 case BFD_RELOC_MIPS_JMP:
e369bcce
TS
12327 case BFD_RELOC_MIPS_SHIFT5:
12328 case BFD_RELOC_MIPS_SHIFT6:
12329 case BFD_RELOC_MIPS_GOT_DISP:
12330 case BFD_RELOC_MIPS_GOT_PAGE:
12331 case BFD_RELOC_MIPS_GOT_OFST:
12332 case BFD_RELOC_MIPS_SUB:
12333 case BFD_RELOC_MIPS_INSERT_A:
12334 case BFD_RELOC_MIPS_INSERT_B:
12335 case BFD_RELOC_MIPS_DELETE:
12336 case BFD_RELOC_MIPS_HIGHEST:
12337 case BFD_RELOC_MIPS_HIGHER:
12338 case BFD_RELOC_MIPS_SCN_DISP:
12339 case BFD_RELOC_MIPS_REL16:
12340 case BFD_RELOC_MIPS_RELGOT:
12341 case BFD_RELOC_MIPS_JALR:
252b5132
RH
12342 case BFD_RELOC_HI16:
12343 case BFD_RELOC_HI16_S:
cdf6fd85 12344 case BFD_RELOC_GPREL16:
252b5132
RH
12345 case BFD_RELOC_MIPS_LITERAL:
12346 case BFD_RELOC_MIPS_CALL16:
12347 case BFD_RELOC_MIPS_GOT16:
cdf6fd85 12348 case BFD_RELOC_GPREL32:
252b5132
RH
12349 case BFD_RELOC_MIPS_GOT_HI16:
12350 case BFD_RELOC_MIPS_GOT_LO16:
12351 case BFD_RELOC_MIPS_CALL_HI16:
12352 case BFD_RELOC_MIPS_CALL_LO16:
12353 case BFD_RELOC_MIPS16_GPREL:
738e5348
RS
12354 case BFD_RELOC_MIPS16_GOT16:
12355 case BFD_RELOC_MIPS16_CALL16:
d6f16593
MR
12356 case BFD_RELOC_MIPS16_HI16:
12357 case BFD_RELOC_MIPS16_HI16_S:
252b5132 12358 case BFD_RELOC_MIPS16_JMP:
54f4ddb3 12359 /* Nothing needed to do. The value comes from the reloc entry. */
252b5132
RH
12360 break;
12361
252b5132
RH
12362 case BFD_RELOC_64:
12363 /* This is handled like BFD_RELOC_32, but we output a sign
12364 extended value if we are only 32 bits. */
3e722fb5 12365 if (fixP->fx_done)
252b5132
RH
12366 {
12367 if (8 <= sizeof (valueT))
2132e3a3 12368 md_number_to_chars ((char *) buf, *valP, 8);
252b5132
RH
12369 else
12370 {
a7ebbfdf 12371 valueT hiv;
252b5132 12372
a7ebbfdf 12373 if ((*valP & 0x80000000) != 0)
252b5132
RH
12374 hiv = 0xffffffff;
12375 else
12376 hiv = 0;
b215186b 12377 md_number_to_chars ((char *)(buf + (target_big_endian ? 4 : 0)),
a7ebbfdf 12378 *valP, 4);
b215186b 12379 md_number_to_chars ((char *)(buf + (target_big_endian ? 0 : 4)),
a7ebbfdf 12380 hiv, 4);
252b5132
RH
12381 }
12382 }
12383 break;
12384
056350c6 12385 case BFD_RELOC_RVA:
252b5132 12386 case BFD_RELOC_32:
252b5132
RH
12387 case BFD_RELOC_16:
12388 /* If we are deleting this reloc entry, we must fill in the
54f4ddb3
TS
12389 value now. This can happen if we have a .word which is not
12390 resolved when it appears but is later defined. */
252b5132 12391 if (fixP->fx_done)
54f4ddb3 12392 md_number_to_chars ((char *) buf, *valP, fixP->fx_size);
252b5132
RH
12393 break;
12394
12395 case BFD_RELOC_LO16:
d6f16593 12396 case BFD_RELOC_MIPS16_LO16:
3e722fb5
CD
12397 /* FIXME: Now that embedded-PIC is gone, some of this code/comment
12398 may be safe to remove, but if so it's not obvious. */
252b5132
RH
12399 /* When handling an embedded PIC switch statement, we can wind
12400 up deleting a LO16 reloc. See the 'o' case in mips_ip. */
12401 if (fixP->fx_done)
12402 {
a7ebbfdf 12403 if (*valP + 0x8000 > 0xffff)
252b5132
RH
12404 as_bad_where (fixP->fx_file, fixP->fx_line,
12405 _("relocation overflow"));
252b5132
RH
12406 if (target_big_endian)
12407 buf += 2;
2132e3a3 12408 md_number_to_chars ((char *) buf, *valP, 2);
252b5132
RH
12409 }
12410 break;
12411
12412 case BFD_RELOC_16_PCREL_S2:
a7ebbfdf 12413 if ((*valP & 0x3) != 0)
cb56d3d3 12414 as_bad_where (fixP->fx_file, fixP->fx_line,
bad36eac 12415 _("Branch to misaligned address (%lx)"), (long) *valP);
cb56d3d3 12416
54f4ddb3
TS
12417 /* We need to save the bits in the instruction since fixup_segment()
12418 might be deleting the relocation entry (i.e., a branch within
12419 the current segment). */
a7ebbfdf 12420 if (! fixP->fx_done)
bb2d6cd7 12421 break;
252b5132 12422
54f4ddb3 12423 /* Update old instruction data. */
252b5132
RH
12424 if (target_big_endian)
12425 insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
12426 else
12427 insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
12428
a7ebbfdf
TS
12429 if (*valP + 0x20000 <= 0x3ffff)
12430 {
12431 insn |= (*valP >> 2) & 0xffff;
2132e3a3 12432 md_number_to_chars ((char *) buf, insn, 4);
a7ebbfdf
TS
12433 }
12434 else if (mips_pic == NO_PIC
12435 && fixP->fx_done
12436 && fixP->fx_frag->fr_address >= text_section->vma
12437 && (fixP->fx_frag->fr_address
587aac4e 12438 < text_section->vma + bfd_get_section_size (text_section))
a7ebbfdf
TS
12439 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
12440 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
12441 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
252b5132
RH
12442 {
12443 /* The branch offset is too large. If this is an
12444 unconditional branch, and we are not generating PIC code,
12445 we can convert it to an absolute jump instruction. */
a7ebbfdf
TS
12446 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
12447 insn = 0x0c000000; /* jal */
252b5132 12448 else
a7ebbfdf
TS
12449 insn = 0x08000000; /* j */
12450 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
12451 fixP->fx_done = 0;
12452 fixP->fx_addsy = section_symbol (text_section);
12453 *valP += md_pcrel_from (fixP);
2132e3a3 12454 md_number_to_chars ((char *) buf, insn, 4);
a7ebbfdf
TS
12455 }
12456 else
12457 {
12458 /* If we got here, we have branch-relaxation disabled,
12459 and there's nothing we can do to fix this instruction
12460 without turning it into a longer sequence. */
12461 as_bad_where (fixP->fx_file, fixP->fx_line,
12462 _("Branch out of range"));
252b5132 12463 }
252b5132
RH
12464 break;
12465
12466 case BFD_RELOC_VTABLE_INHERIT:
12467 fixP->fx_done = 0;
12468 if (fixP->fx_addsy
12469 && !S_IS_DEFINED (fixP->fx_addsy)
12470 && !S_IS_WEAK (fixP->fx_addsy))
12471 S_SET_WEAK (fixP->fx_addsy);
12472 break;
12473
12474 case BFD_RELOC_VTABLE_ENTRY:
12475 fixP->fx_done = 0;
12476 break;
12477
12478 default:
12479 internalError ();
12480 }
a7ebbfdf
TS
12481
12482 /* Remember value for tc_gen_reloc. */
12483 fixP->fx_addnumber = *valP;
252b5132
RH
12484}
12485
252b5132 12486static symbolS *
17a2f251 12487get_symbol (void)
252b5132
RH
12488{
12489 int c;
12490 char *name;
12491 symbolS *p;
12492
12493 name = input_line_pointer;
12494 c = get_symbol_end ();
12495 p = (symbolS *) symbol_find_or_make (name);
12496 *input_line_pointer = c;
12497 return p;
12498}
12499
742a56fe
RS
12500/* Align the current frag to a given power of two. If a particular
12501 fill byte should be used, FILL points to an integer that contains
12502 that byte, otherwise FILL is null.
12503
12504 The MIPS assembler also automatically adjusts any preceding
12505 label. */
252b5132
RH
12506
12507static void
742a56fe 12508mips_align (int to, int *fill, symbolS *label)
252b5132 12509{
7d10b47d 12510 mips_emit_delays ();
742a56fe
RS
12511 mips_record_mips16_mode ();
12512 if (fill == NULL && subseg_text_p (now_seg))
12513 frag_align_code (to, 0);
12514 else
12515 frag_align (to, fill ? *fill : 0, 0);
252b5132
RH
12516 record_alignment (now_seg, to);
12517 if (label != NULL)
12518 {
12519 assert (S_GET_SEGMENT (label) == now_seg);
49309057 12520 symbol_set_frag (label, frag_now);
252b5132
RH
12521 S_SET_VALUE (label, (valueT) frag_now_fix ());
12522 }
12523}
12524
12525/* Align to a given power of two. .align 0 turns off the automatic
12526 alignment used by the data creating pseudo-ops. */
12527
12528static void
17a2f251 12529s_align (int x ATTRIBUTE_UNUSED)
252b5132 12530{
742a56fe 12531 int temp, fill_value, *fill_ptr;
49954fb4 12532 long max_alignment = 28;
252b5132 12533
54f4ddb3 12534 /* o Note that the assembler pulls down any immediately preceding label
252b5132 12535 to the aligned address.
54f4ddb3 12536 o It's not documented but auto alignment is reinstated by
252b5132 12537 a .align pseudo instruction.
54f4ddb3 12538 o Note also that after auto alignment is turned off the mips assembler
252b5132 12539 issues an error on attempt to assemble an improperly aligned data item.
54f4ddb3 12540 We don't. */
252b5132
RH
12541
12542 temp = get_absolute_expression ();
12543 if (temp > max_alignment)
12544 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
12545 else if (temp < 0)
12546 {
12547 as_warn (_("Alignment negative: 0 assumed."));
12548 temp = 0;
12549 }
12550 if (*input_line_pointer == ',')
12551 {
f9419b05 12552 ++input_line_pointer;
742a56fe
RS
12553 fill_value = get_absolute_expression ();
12554 fill_ptr = &fill_value;
252b5132
RH
12555 }
12556 else
742a56fe 12557 fill_ptr = 0;
252b5132
RH
12558 if (temp)
12559 {
a8dbcb85
TS
12560 segment_info_type *si = seg_info (now_seg);
12561 struct insn_label_list *l = si->label_list;
54f4ddb3 12562 /* Auto alignment should be switched on by next section change. */
252b5132 12563 auto_align = 1;
742a56fe 12564 mips_align (temp, fill_ptr, l != NULL ? l->label : NULL);
252b5132
RH
12565 }
12566 else
12567 {
12568 auto_align = 0;
12569 }
12570
12571 demand_empty_rest_of_line ();
12572}
12573
252b5132 12574static void
17a2f251 12575s_change_sec (int sec)
252b5132
RH
12576{
12577 segT seg;
12578
252b5132
RH
12579#ifdef OBJ_ELF
12580 /* The ELF backend needs to know that we are changing sections, so
12581 that .previous works correctly. We could do something like check
b6ff326e 12582 for an obj_section_change_hook macro, but that might be confusing
252b5132
RH
12583 as it would not be appropriate to use it in the section changing
12584 functions in read.c, since obj-elf.c intercepts those. FIXME:
12585 This should be cleaner, somehow. */
f43abd2b
TS
12586 if (IS_ELF)
12587 obj_elf_section_change_hook ();
252b5132
RH
12588#endif
12589
7d10b47d 12590 mips_emit_delays ();
6a32d874
CM
12591
12592 if (mips_fix_24k)
12593 check_for_24k_errata ((struct mips_cl_insn *) &history[0], -1);
12594
252b5132
RH
12595 switch (sec)
12596 {
12597 case 't':
12598 s_text (0);
12599 break;
12600 case 'd':
12601 s_data (0);
12602 break;
12603 case 'b':
12604 subseg_set (bss_section, (subsegT) get_absolute_expression ());
12605 demand_empty_rest_of_line ();
12606 break;
12607
12608 case 'r':
4d0d148d
TS
12609 seg = subseg_new (RDATA_SECTION_NAME,
12610 (subsegT) get_absolute_expression ());
f43abd2b 12611 if (IS_ELF)
252b5132 12612 {
4d0d148d
TS
12613 bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
12614 | SEC_READONLY | SEC_RELOC
12615 | SEC_DATA));
c41e87e3 12616 if (strncmp (TARGET_OS, "elf", 3) != 0)
4d0d148d 12617 record_alignment (seg, 4);
252b5132 12618 }
4d0d148d 12619 demand_empty_rest_of_line ();
252b5132
RH
12620 break;
12621
12622 case 's':
4d0d148d 12623 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
f43abd2b 12624 if (IS_ELF)
252b5132 12625 {
4d0d148d
TS
12626 bfd_set_section_flags (stdoutput, seg,
12627 SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
c41e87e3 12628 if (strncmp (TARGET_OS, "elf", 3) != 0)
4d0d148d 12629 record_alignment (seg, 4);
252b5132 12630 }
4d0d148d
TS
12631 demand_empty_rest_of_line ();
12632 break;
252b5132
RH
12633 }
12634
12635 auto_align = 1;
12636}
b34976b6 12637
cca86cc8 12638void
17a2f251 12639s_change_section (int ignore ATTRIBUTE_UNUSED)
cca86cc8 12640{
7ed4a06a 12641#ifdef OBJ_ELF
cca86cc8
SC
12642 char *section_name;
12643 char c;
684022ea 12644 char next_c = 0;
cca86cc8
SC
12645 int section_type;
12646 int section_flag;
12647 int section_entry_size;
12648 int section_alignment;
b34976b6 12649
f43abd2b 12650 if (!IS_ELF)
7ed4a06a
TS
12651 return;
12652
6a32d874
CM
12653 if (mips_fix_24k)
12654 check_for_24k_errata ((struct mips_cl_insn *) &history[0], -1);
12655
cca86cc8
SC
12656 section_name = input_line_pointer;
12657 c = get_symbol_end ();
a816d1ed
AO
12658 if (c)
12659 next_c = *(input_line_pointer + 1);
cca86cc8 12660
4cf0dd0d
TS
12661 /* Do we have .section Name<,"flags">? */
12662 if (c != ',' || (c == ',' && next_c == '"'))
cca86cc8 12663 {
4cf0dd0d
TS
12664 /* just after name is now '\0'. */
12665 *input_line_pointer = c;
cca86cc8
SC
12666 input_line_pointer = section_name;
12667 obj_elf_section (ignore);
12668 return;
12669 }
12670 input_line_pointer++;
12671
12672 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
12673 if (c == ',')
12674 section_type = get_absolute_expression ();
12675 else
12676 section_type = 0;
12677 if (*input_line_pointer++ == ',')
12678 section_flag = get_absolute_expression ();
12679 else
12680 section_flag = 0;
12681 if (*input_line_pointer++ == ',')
12682 section_entry_size = get_absolute_expression ();
12683 else
12684 section_entry_size = 0;
12685 if (*input_line_pointer++ == ',')
12686 section_alignment = get_absolute_expression ();
12687 else
12688 section_alignment = 0;
12689
a816d1ed
AO
12690 section_name = xstrdup (section_name);
12691
8ab8a5c8
RS
12692 /* When using the generic form of .section (as implemented by obj-elf.c),
12693 there's no way to set the section type to SHT_MIPS_DWARF. Users have
12694 traditionally had to fall back on the more common @progbits instead.
12695
12696 There's nothing really harmful in this, since bfd will correct
12697 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
708587a4 12698 means that, for backwards compatibility, the special_section entries
8ab8a5c8
RS
12699 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
12700
12701 Even so, we shouldn't force users of the MIPS .section syntax to
12702 incorrectly label the sections as SHT_PROGBITS. The best compromise
12703 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
12704 generic type-checking code. */
12705 if (section_type == SHT_MIPS_DWARF)
12706 section_type = SHT_PROGBITS;
12707
cca86cc8
SC
12708 obj_elf_change_section (section_name, section_type, section_flag,
12709 section_entry_size, 0, 0, 0);
a816d1ed
AO
12710
12711 if (now_seg->name != section_name)
12712 free (section_name);
7ed4a06a 12713#endif /* OBJ_ELF */
cca86cc8 12714}
252b5132
RH
12715
12716void
17a2f251 12717mips_enable_auto_align (void)
252b5132
RH
12718{
12719 auto_align = 1;
12720}
12721
12722static void
17a2f251 12723s_cons (int log_size)
252b5132 12724{
a8dbcb85
TS
12725 segment_info_type *si = seg_info (now_seg);
12726 struct insn_label_list *l = si->label_list;
252b5132
RH
12727 symbolS *label;
12728
a8dbcb85 12729 label = l != NULL ? l->label : NULL;
7d10b47d 12730 mips_emit_delays ();
252b5132
RH
12731 if (log_size > 0 && auto_align)
12732 mips_align (log_size, 0, label);
12733 mips_clear_insn_labels ();
12734 cons (1 << log_size);
12735}
12736
12737static void
17a2f251 12738s_float_cons (int type)
252b5132 12739{
a8dbcb85
TS
12740 segment_info_type *si = seg_info (now_seg);
12741 struct insn_label_list *l = si->label_list;
252b5132
RH
12742 symbolS *label;
12743
a8dbcb85 12744 label = l != NULL ? l->label : NULL;
252b5132 12745
7d10b47d 12746 mips_emit_delays ();
252b5132
RH
12747
12748 if (auto_align)
49309057
ILT
12749 {
12750 if (type == 'd')
12751 mips_align (3, 0, label);
12752 else
12753 mips_align (2, 0, label);
12754 }
252b5132
RH
12755
12756 mips_clear_insn_labels ();
12757
12758 float_cons (type);
12759}
12760
12761/* Handle .globl. We need to override it because on Irix 5 you are
12762 permitted to say
12763 .globl foo .text
12764 where foo is an undefined symbol, to mean that foo should be
12765 considered to be the address of a function. */
12766
12767static void
17a2f251 12768s_mips_globl (int x ATTRIBUTE_UNUSED)
252b5132
RH
12769{
12770 char *name;
12771 int c;
12772 symbolS *symbolP;
12773 flagword flag;
12774
8a06b769 12775 do
252b5132 12776 {
8a06b769 12777 name = input_line_pointer;
252b5132 12778 c = get_symbol_end ();
8a06b769
TS
12779 symbolP = symbol_find_or_make (name);
12780 S_SET_EXTERNAL (symbolP);
12781
252b5132 12782 *input_line_pointer = c;
8a06b769 12783 SKIP_WHITESPACE ();
252b5132 12784
8a06b769
TS
12785 /* On Irix 5, every global symbol that is not explicitly labelled as
12786 being a function is apparently labelled as being an object. */
12787 flag = BSF_OBJECT;
252b5132 12788
8a06b769
TS
12789 if (!is_end_of_line[(unsigned char) *input_line_pointer]
12790 && (*input_line_pointer != ','))
12791 {
12792 char *secname;
12793 asection *sec;
12794
12795 secname = input_line_pointer;
12796 c = get_symbol_end ();
12797 sec = bfd_get_section_by_name (stdoutput, secname);
12798 if (sec == NULL)
12799 as_bad (_("%s: no such section"), secname);
12800 *input_line_pointer = c;
12801
12802 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
12803 flag = BSF_FUNCTION;
12804 }
12805
12806 symbol_get_bfdsym (symbolP)->flags |= flag;
12807
12808 c = *input_line_pointer;
12809 if (c == ',')
12810 {
12811 input_line_pointer++;
12812 SKIP_WHITESPACE ();
12813 if (is_end_of_line[(unsigned char) *input_line_pointer])
12814 c = '\n';
12815 }
12816 }
12817 while (c == ',');
252b5132 12818
252b5132
RH
12819 demand_empty_rest_of_line ();
12820}
12821
12822static void
17a2f251 12823s_option (int x ATTRIBUTE_UNUSED)
252b5132
RH
12824{
12825 char *opt;
12826 char c;
12827
12828 opt = input_line_pointer;
12829 c = get_symbol_end ();
12830
12831 if (*opt == 'O')
12832 {
12833 /* FIXME: What does this mean? */
12834 }
12835 else if (strncmp (opt, "pic", 3) == 0)
12836 {
12837 int i;
12838
12839 i = atoi (opt + 3);
12840 if (i == 0)
12841 mips_pic = NO_PIC;
12842 else if (i == 2)
143d77c5 12843 {
252b5132 12844 mips_pic = SVR4_PIC;
143d77c5
EC
12845 mips_abicalls = TRUE;
12846 }
252b5132
RH
12847 else
12848 as_bad (_(".option pic%d not supported"), i);
12849
4d0d148d 12850 if (mips_pic == SVR4_PIC)
252b5132
RH
12851 {
12852 if (g_switch_seen && g_switch_value != 0)
12853 as_warn (_("-G may not be used with SVR4 PIC code"));
12854 g_switch_value = 0;
12855 bfd_set_gp_size (stdoutput, 0);
12856 }
12857 }
12858 else
12859 as_warn (_("Unrecognized option \"%s\""), opt);
12860
12861 *input_line_pointer = c;
12862 demand_empty_rest_of_line ();
12863}
12864
12865/* This structure is used to hold a stack of .set values. */
12866
e972090a
NC
12867struct mips_option_stack
12868{
252b5132
RH
12869 struct mips_option_stack *next;
12870 struct mips_set_options options;
12871};
12872
12873static struct mips_option_stack *mips_opts_stack;
12874
12875/* Handle the .set pseudo-op. */
12876
12877static void
17a2f251 12878s_mipsset (int x ATTRIBUTE_UNUSED)
252b5132
RH
12879{
12880 char *name = input_line_pointer, ch;
12881
12882 while (!is_end_of_line[(unsigned char) *input_line_pointer])
f9419b05 12883 ++input_line_pointer;
252b5132
RH
12884 ch = *input_line_pointer;
12885 *input_line_pointer = '\0';
12886
12887 if (strcmp (name, "reorder") == 0)
12888 {
7d10b47d
RS
12889 if (mips_opts.noreorder)
12890 end_noreorder ();
252b5132
RH
12891 }
12892 else if (strcmp (name, "noreorder") == 0)
12893 {
7d10b47d
RS
12894 if (!mips_opts.noreorder)
12895 start_noreorder ();
252b5132 12896 }
741fe287
MR
12897 else if (strncmp (name, "at=", 3) == 0)
12898 {
12899 char *s = name + 3;
12900
12901 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at))
12902 as_bad (_("Unrecognized register name `%s'"), s);
12903 }
252b5132
RH
12904 else if (strcmp (name, "at") == 0)
12905 {
741fe287 12906 mips_opts.at = ATREG;
252b5132
RH
12907 }
12908 else if (strcmp (name, "noat") == 0)
12909 {
741fe287 12910 mips_opts.at = ZERO;
252b5132
RH
12911 }
12912 else if (strcmp (name, "macro") == 0)
12913 {
12914 mips_opts.warn_about_macros = 0;
12915 }
12916 else if (strcmp (name, "nomacro") == 0)
12917 {
12918 if (mips_opts.noreorder == 0)
12919 as_bad (_("`noreorder' must be set before `nomacro'"));
12920 mips_opts.warn_about_macros = 1;
12921 }
12922 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
12923 {
12924 mips_opts.nomove = 0;
12925 }
12926 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
12927 {
12928 mips_opts.nomove = 1;
12929 }
12930 else if (strcmp (name, "bopt") == 0)
12931 {
12932 mips_opts.nobopt = 0;
12933 }
12934 else if (strcmp (name, "nobopt") == 0)
12935 {
12936 mips_opts.nobopt = 1;
12937 }
ad3fea08
TS
12938 else if (strcmp (name, "gp=default") == 0)
12939 mips_opts.gp32 = file_mips_gp32;
12940 else if (strcmp (name, "gp=32") == 0)
12941 mips_opts.gp32 = 1;
12942 else if (strcmp (name, "gp=64") == 0)
12943 {
12944 if (!ISA_HAS_64BIT_REGS (mips_opts.isa))
12945 as_warn ("%s isa does not support 64-bit registers",
12946 mips_cpu_info_from_isa (mips_opts.isa)->name);
12947 mips_opts.gp32 = 0;
12948 }
12949 else if (strcmp (name, "fp=default") == 0)
12950 mips_opts.fp32 = file_mips_fp32;
12951 else if (strcmp (name, "fp=32") == 0)
12952 mips_opts.fp32 = 1;
12953 else if (strcmp (name, "fp=64") == 0)
12954 {
12955 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
12956 as_warn ("%s isa does not support 64-bit floating point registers",
12957 mips_cpu_info_from_isa (mips_opts.isa)->name);
12958 mips_opts.fp32 = 0;
12959 }
037b32b9
AN
12960 else if (strcmp (name, "softfloat") == 0)
12961 mips_opts.soft_float = 1;
12962 else if (strcmp (name, "hardfloat") == 0)
12963 mips_opts.soft_float = 0;
12964 else if (strcmp (name, "singlefloat") == 0)
12965 mips_opts.single_float = 1;
12966 else if (strcmp (name, "doublefloat") == 0)
12967 mips_opts.single_float = 0;
252b5132
RH
12968 else if (strcmp (name, "mips16") == 0
12969 || strcmp (name, "MIPS-16") == 0)
12970 mips_opts.mips16 = 1;
12971 else if (strcmp (name, "nomips16") == 0
12972 || strcmp (name, "noMIPS-16") == 0)
12973 mips_opts.mips16 = 0;
e16bfa71
TS
12974 else if (strcmp (name, "smartmips") == 0)
12975 {
ad3fea08 12976 if (!ISA_SUPPORTS_SMARTMIPS)
e16bfa71
TS
12977 as_warn ("%s ISA does not support SmartMIPS ASE",
12978 mips_cpu_info_from_isa (mips_opts.isa)->name);
12979 mips_opts.ase_smartmips = 1;
12980 }
12981 else if (strcmp (name, "nosmartmips") == 0)
12982 mips_opts.ase_smartmips = 0;
1f25f5d3
CD
12983 else if (strcmp (name, "mips3d") == 0)
12984 mips_opts.ase_mips3d = 1;
12985 else if (strcmp (name, "nomips3d") == 0)
12986 mips_opts.ase_mips3d = 0;
a4672219
TS
12987 else if (strcmp (name, "mdmx") == 0)
12988 mips_opts.ase_mdmx = 1;
12989 else if (strcmp (name, "nomdmx") == 0)
12990 mips_opts.ase_mdmx = 0;
74cd071d 12991 else if (strcmp (name, "dsp") == 0)
ad3fea08
TS
12992 {
12993 if (!ISA_SUPPORTS_DSP_ASE)
12994 as_warn ("%s ISA does not support DSP ASE",
12995 mips_cpu_info_from_isa (mips_opts.isa)->name);
12996 mips_opts.ase_dsp = 1;
8b082fb1 12997 mips_opts.ase_dspr2 = 0;
ad3fea08 12998 }
74cd071d 12999 else if (strcmp (name, "nodsp") == 0)
8b082fb1
TS
13000 {
13001 mips_opts.ase_dsp = 0;
13002 mips_opts.ase_dspr2 = 0;
13003 }
13004 else if (strcmp (name, "dspr2") == 0)
13005 {
13006 if (!ISA_SUPPORTS_DSPR2_ASE)
13007 as_warn ("%s ISA does not support DSP R2 ASE",
13008 mips_cpu_info_from_isa (mips_opts.isa)->name);
13009 mips_opts.ase_dspr2 = 1;
13010 mips_opts.ase_dsp = 1;
13011 }
13012 else if (strcmp (name, "nodspr2") == 0)
13013 {
13014 mips_opts.ase_dspr2 = 0;
13015 mips_opts.ase_dsp = 0;
13016 }
ef2e4d86 13017 else if (strcmp (name, "mt") == 0)
ad3fea08
TS
13018 {
13019 if (!ISA_SUPPORTS_MT_ASE)
13020 as_warn ("%s ISA does not support MT ASE",
13021 mips_cpu_info_from_isa (mips_opts.isa)->name);
13022 mips_opts.ase_mt = 1;
13023 }
ef2e4d86
CF
13024 else if (strcmp (name, "nomt") == 0)
13025 mips_opts.ase_mt = 0;
1a2c1fad 13026 else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
252b5132 13027 {
af7ee8bf 13028 int reset = 0;
252b5132 13029
1a2c1fad
CD
13030 /* Permit the user to change the ISA and architecture on the fly.
13031 Needless to say, misuse can cause serious problems. */
81a21e38 13032 if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
af7ee8bf
CD
13033 {
13034 reset = 1;
13035 mips_opts.isa = file_mips_isa;
1a2c1fad 13036 mips_opts.arch = file_mips_arch;
1a2c1fad
CD
13037 }
13038 else if (strncmp (name, "arch=", 5) == 0)
13039 {
13040 const struct mips_cpu_info *p;
13041
13042 p = mips_parse_cpu("internal use", name + 5);
13043 if (!p)
13044 as_bad (_("unknown architecture %s"), name + 5);
13045 else
13046 {
13047 mips_opts.arch = p->cpu;
13048 mips_opts.isa = p->isa;
13049 }
13050 }
81a21e38
TS
13051 else if (strncmp (name, "mips", 4) == 0)
13052 {
13053 const struct mips_cpu_info *p;
13054
13055 p = mips_parse_cpu("internal use", name);
13056 if (!p)
13057 as_bad (_("unknown ISA level %s"), name + 4);
13058 else
13059 {
13060 mips_opts.arch = p->cpu;
13061 mips_opts.isa = p->isa;
13062 }
13063 }
af7ee8bf 13064 else
81a21e38 13065 as_bad (_("unknown ISA or architecture %s"), name);
af7ee8bf
CD
13066
13067 switch (mips_opts.isa)
98d3f06f
KH
13068 {
13069 case 0:
98d3f06f 13070 break;
af7ee8bf
CD
13071 case ISA_MIPS1:
13072 case ISA_MIPS2:
13073 case ISA_MIPS32:
13074 case ISA_MIPS32R2:
98d3f06f
KH
13075 mips_opts.gp32 = 1;
13076 mips_opts.fp32 = 1;
13077 break;
af7ee8bf
CD
13078 case ISA_MIPS3:
13079 case ISA_MIPS4:
13080 case ISA_MIPS5:
13081 case ISA_MIPS64:
5f74bc13 13082 case ISA_MIPS64R2:
98d3f06f
KH
13083 mips_opts.gp32 = 0;
13084 mips_opts.fp32 = 0;
13085 break;
13086 default:
13087 as_bad (_("unknown ISA level %s"), name + 4);
13088 break;
13089 }
af7ee8bf 13090 if (reset)
98d3f06f 13091 {
af7ee8bf
CD
13092 mips_opts.gp32 = file_mips_gp32;
13093 mips_opts.fp32 = file_mips_fp32;
98d3f06f 13094 }
252b5132
RH
13095 }
13096 else if (strcmp (name, "autoextend") == 0)
13097 mips_opts.noautoextend = 0;
13098 else if (strcmp (name, "noautoextend") == 0)
13099 mips_opts.noautoextend = 1;
13100 else if (strcmp (name, "push") == 0)
13101 {
13102 struct mips_option_stack *s;
13103
13104 s = (struct mips_option_stack *) xmalloc (sizeof *s);
13105 s->next = mips_opts_stack;
13106 s->options = mips_opts;
13107 mips_opts_stack = s;
13108 }
13109 else if (strcmp (name, "pop") == 0)
13110 {
13111 struct mips_option_stack *s;
13112
13113 s = mips_opts_stack;
13114 if (s == NULL)
13115 as_bad (_(".set pop with no .set push"));
13116 else
13117 {
13118 /* If we're changing the reorder mode we need to handle
13119 delay slots correctly. */
13120 if (s->options.noreorder && ! mips_opts.noreorder)
7d10b47d 13121 start_noreorder ();
252b5132 13122 else if (! s->options.noreorder && mips_opts.noreorder)
7d10b47d 13123 end_noreorder ();
252b5132
RH
13124
13125 mips_opts = s->options;
13126 mips_opts_stack = s->next;
13127 free (s);
13128 }
13129 }
aed1a261
RS
13130 else if (strcmp (name, "sym32") == 0)
13131 mips_opts.sym32 = TRUE;
13132 else if (strcmp (name, "nosym32") == 0)
13133 mips_opts.sym32 = FALSE;
e6559e01
JM
13134 else if (strchr (name, ','))
13135 {
13136 /* Generic ".set" directive; use the generic handler. */
13137 *input_line_pointer = ch;
13138 input_line_pointer = name;
13139 s_set (0);
13140 return;
13141 }
252b5132
RH
13142 else
13143 {
13144 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
13145 }
13146 *input_line_pointer = ch;
13147 demand_empty_rest_of_line ();
13148}
13149
13150/* Handle the .abicalls pseudo-op. I believe this is equivalent to
13151 .option pic2. It means to generate SVR4 PIC calls. */
13152
13153static void
17a2f251 13154s_abicalls (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
13155{
13156 mips_pic = SVR4_PIC;
143d77c5 13157 mips_abicalls = TRUE;
4d0d148d
TS
13158
13159 if (g_switch_seen && g_switch_value != 0)
13160 as_warn (_("-G may not be used with SVR4 PIC code"));
13161 g_switch_value = 0;
13162
252b5132
RH
13163 bfd_set_gp_size (stdoutput, 0);
13164 demand_empty_rest_of_line ();
13165}
13166
13167/* Handle the .cpload pseudo-op. This is used when generating SVR4
13168 PIC code. It sets the $gp register for the function based on the
13169 function address, which is in the register named in the argument.
13170 This uses a relocation against _gp_disp, which is handled specially
13171 by the linker. The result is:
13172 lui $gp,%hi(_gp_disp)
13173 addiu $gp,$gp,%lo(_gp_disp)
13174 addu $gp,$gp,.cpload argument
aa6975fb
ILT
13175 The .cpload argument is normally $25 == $t9.
13176
13177 The -mno-shared option changes this to:
bbe506e8
TS
13178 lui $gp,%hi(__gnu_local_gp)
13179 addiu $gp,$gp,%lo(__gnu_local_gp)
aa6975fb
ILT
13180 and the argument is ignored. This saves an instruction, but the
13181 resulting code is not position independent; it uses an absolute
bbe506e8
TS
13182 address for __gnu_local_gp. Thus code assembled with -mno-shared
13183 can go into an ordinary executable, but not into a shared library. */
252b5132
RH
13184
13185static void
17a2f251 13186s_cpload (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
13187{
13188 expressionS ex;
aa6975fb
ILT
13189 int reg;
13190 int in_shared;
252b5132 13191
6478892d
TS
13192 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
13193 .cpload is ignored. */
13194 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
13195 {
13196 s_ignore (0);
13197 return;
13198 }
13199
d3ecfc59 13200 /* .cpload should be in a .set noreorder section. */
252b5132
RH
13201 if (mips_opts.noreorder == 0)
13202 as_warn (_(".cpload not in noreorder section"));
13203
aa6975fb
ILT
13204 reg = tc_get_register (0);
13205
13206 /* If we need to produce a 64-bit address, we are better off using
13207 the default instruction sequence. */
aed1a261 13208 in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
aa6975fb 13209
252b5132 13210 ex.X_op = O_symbol;
bbe506e8
TS
13211 ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
13212 "__gnu_local_gp");
252b5132
RH
13213 ex.X_op_symbol = NULL;
13214 ex.X_add_number = 0;
13215
13216 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
49309057 13217 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
252b5132 13218
584892a6 13219 macro_start ();
67c0d1eb
RS
13220 macro_build_lui (&ex, mips_gp_register);
13221 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
17a2f251 13222 mips_gp_register, BFD_RELOC_LO16);
aa6975fb
ILT
13223 if (in_shared)
13224 macro_build (NULL, "addu", "d,v,t", mips_gp_register,
13225 mips_gp_register, reg);
584892a6 13226 macro_end ();
252b5132
RH
13227
13228 demand_empty_rest_of_line ();
13229}
13230
6478892d
TS
13231/* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
13232 .cpsetup $reg1, offset|$reg2, label
13233
13234 If offset is given, this results in:
13235 sd $gp, offset($sp)
956cd1d6 13236 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
13237 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
13238 daddu $gp, $gp, $reg1
6478892d
TS
13239
13240 If $reg2 is given, this results in:
13241 daddu $reg2, $gp, $0
956cd1d6 13242 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
13243 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
13244 daddu $gp, $gp, $reg1
aa6975fb
ILT
13245 $reg1 is normally $25 == $t9.
13246
13247 The -mno-shared option replaces the last three instructions with
13248 lui $gp,%hi(_gp)
54f4ddb3 13249 addiu $gp,$gp,%lo(_gp) */
aa6975fb 13250
6478892d 13251static void
17a2f251 13252s_cpsetup (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
13253{
13254 expressionS ex_off;
13255 expressionS ex_sym;
13256 int reg1;
6478892d 13257
8586fc66 13258 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
6478892d
TS
13259 We also need NewABI support. */
13260 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13261 {
13262 s_ignore (0);
13263 return;
13264 }
13265
13266 reg1 = tc_get_register (0);
13267 SKIP_WHITESPACE ();
13268 if (*input_line_pointer != ',')
13269 {
13270 as_bad (_("missing argument separator ',' for .cpsetup"));
13271 return;
13272 }
13273 else
80245285 13274 ++input_line_pointer;
6478892d
TS
13275 SKIP_WHITESPACE ();
13276 if (*input_line_pointer == '$')
80245285
TS
13277 {
13278 mips_cpreturn_register = tc_get_register (0);
13279 mips_cpreturn_offset = -1;
13280 }
6478892d 13281 else
80245285
TS
13282 {
13283 mips_cpreturn_offset = get_absolute_expression ();
13284 mips_cpreturn_register = -1;
13285 }
6478892d
TS
13286 SKIP_WHITESPACE ();
13287 if (*input_line_pointer != ',')
13288 {
13289 as_bad (_("missing argument separator ',' for .cpsetup"));
13290 return;
13291 }
13292 else
f9419b05 13293 ++input_line_pointer;
6478892d 13294 SKIP_WHITESPACE ();
f21f8242 13295 expression (&ex_sym);
6478892d 13296
584892a6 13297 macro_start ();
6478892d
TS
13298 if (mips_cpreturn_register == -1)
13299 {
13300 ex_off.X_op = O_constant;
13301 ex_off.X_add_symbol = NULL;
13302 ex_off.X_op_symbol = NULL;
13303 ex_off.X_add_number = mips_cpreturn_offset;
13304
67c0d1eb 13305 macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
17a2f251 13306 BFD_RELOC_LO16, SP);
6478892d
TS
13307 }
13308 else
67c0d1eb 13309 macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
17a2f251 13310 mips_gp_register, 0);
6478892d 13311
aed1a261 13312 if (mips_in_shared || HAVE_64BIT_SYMBOLS)
aa6975fb
ILT
13313 {
13314 macro_build (&ex_sym, "lui", "t,u", mips_gp_register,
13315 -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
13316 BFD_RELOC_HI16_S);
13317
13318 macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
13319 mips_gp_register, -1, BFD_RELOC_GPREL16,
13320 BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
13321
13322 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
13323 mips_gp_register, reg1);
13324 }
13325 else
13326 {
13327 expressionS ex;
13328
13329 ex.X_op = O_symbol;
4184909a 13330 ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
aa6975fb
ILT
13331 ex.X_op_symbol = NULL;
13332 ex.X_add_number = 0;
6e1304d8 13333
aa6975fb
ILT
13334 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
13335 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
13336
13337 macro_build_lui (&ex, mips_gp_register);
13338 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
13339 mips_gp_register, BFD_RELOC_LO16);
13340 }
f21f8242 13341
584892a6 13342 macro_end ();
6478892d
TS
13343
13344 demand_empty_rest_of_line ();
13345}
13346
13347static void
17a2f251 13348s_cplocal (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
13349{
13350 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
54f4ddb3 13351 .cplocal is ignored. */
6478892d
TS
13352 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13353 {
13354 s_ignore (0);
13355 return;
13356 }
13357
13358 mips_gp_register = tc_get_register (0);
85b51719 13359 demand_empty_rest_of_line ();
6478892d
TS
13360}
13361
252b5132
RH
13362/* Handle the .cprestore pseudo-op. This stores $gp into a given
13363 offset from $sp. The offset is remembered, and after making a PIC
13364 call $gp is restored from that location. */
13365
13366static void
17a2f251 13367s_cprestore (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
13368{
13369 expressionS ex;
252b5132 13370
6478892d 13371 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
c9914766 13372 .cprestore is ignored. */
6478892d 13373 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
13374 {
13375 s_ignore (0);
13376 return;
13377 }
13378
13379 mips_cprestore_offset = get_absolute_expression ();
7a621144 13380 mips_cprestore_valid = 1;
252b5132
RH
13381
13382 ex.X_op = O_constant;
13383 ex.X_add_symbol = NULL;
13384 ex.X_op_symbol = NULL;
13385 ex.X_add_number = mips_cprestore_offset;
13386
584892a6 13387 macro_start ();
67c0d1eb
RS
13388 macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
13389 SP, HAVE_64BIT_ADDRESSES);
584892a6 13390 macro_end ();
252b5132
RH
13391
13392 demand_empty_rest_of_line ();
13393}
13394
6478892d 13395/* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
67c1ffbe 13396 was given in the preceding .cpsetup, it results in:
6478892d 13397 ld $gp, offset($sp)
76b3015f 13398
6478892d 13399 If a register $reg2 was given there, it results in:
54f4ddb3
TS
13400 daddu $gp, $reg2, $0 */
13401
6478892d 13402static void
17a2f251 13403s_cpreturn (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
13404{
13405 expressionS ex;
6478892d
TS
13406
13407 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
13408 We also need NewABI support. */
13409 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13410 {
13411 s_ignore (0);
13412 return;
13413 }
13414
584892a6 13415 macro_start ();
6478892d
TS
13416 if (mips_cpreturn_register == -1)
13417 {
13418 ex.X_op = O_constant;
13419 ex.X_add_symbol = NULL;
13420 ex.X_op_symbol = NULL;
13421 ex.X_add_number = mips_cpreturn_offset;
13422
67c0d1eb 13423 macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
6478892d
TS
13424 }
13425 else
67c0d1eb 13426 macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
17a2f251 13427 mips_cpreturn_register, 0);
584892a6 13428 macro_end ();
6478892d
TS
13429
13430 demand_empty_rest_of_line ();
13431}
13432
741d6ea8
JM
13433/* Handle the .dtprelword and .dtpreldword pseudo-ops. They generate
13434 a 32-bit or 64-bit DTP-relative relocation (BYTES says which) for
13435 use in DWARF debug information. */
13436
13437static void
13438s_dtprel_internal (size_t bytes)
13439{
13440 expressionS ex;
13441 char *p;
13442
13443 expression (&ex);
13444
13445 if (ex.X_op != O_symbol)
13446 {
13447 as_bad (_("Unsupported use of %s"), (bytes == 8
13448 ? ".dtpreldword"
13449 : ".dtprelword"));
13450 ignore_rest_of_line ();
13451 }
13452
13453 p = frag_more (bytes);
13454 md_number_to_chars (p, 0, bytes);
13455 fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE,
13456 (bytes == 8
13457 ? BFD_RELOC_MIPS_TLS_DTPREL64
13458 : BFD_RELOC_MIPS_TLS_DTPREL32));
13459
13460 demand_empty_rest_of_line ();
13461}
13462
13463/* Handle .dtprelword. */
13464
13465static void
13466s_dtprelword (int ignore ATTRIBUTE_UNUSED)
13467{
13468 s_dtprel_internal (4);
13469}
13470
13471/* Handle .dtpreldword. */
13472
13473static void
13474s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
13475{
13476 s_dtprel_internal (8);
13477}
13478
6478892d
TS
13479/* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
13480 code. It sets the offset to use in gp_rel relocations. */
13481
13482static void
17a2f251 13483s_gpvalue (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
13484{
13485 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
13486 We also need NewABI support. */
13487 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13488 {
13489 s_ignore (0);
13490 return;
13491 }
13492
def2e0dd 13493 mips_gprel_offset = get_absolute_expression ();
6478892d
TS
13494
13495 demand_empty_rest_of_line ();
13496}
13497
252b5132
RH
13498/* Handle the .gpword pseudo-op. This is used when generating PIC
13499 code. It generates a 32 bit GP relative reloc. */
13500
13501static void
17a2f251 13502s_gpword (int ignore ATTRIBUTE_UNUSED)
252b5132 13503{
a8dbcb85
TS
13504 segment_info_type *si;
13505 struct insn_label_list *l;
252b5132
RH
13506 symbolS *label;
13507 expressionS ex;
13508 char *p;
13509
13510 /* When not generating PIC code, this is treated as .word. */
13511 if (mips_pic != SVR4_PIC)
13512 {
13513 s_cons (2);
13514 return;
13515 }
13516
a8dbcb85
TS
13517 si = seg_info (now_seg);
13518 l = si->label_list;
13519 label = l != NULL ? l->label : NULL;
7d10b47d 13520 mips_emit_delays ();
252b5132
RH
13521 if (auto_align)
13522 mips_align (2, 0, label);
13523 mips_clear_insn_labels ();
13524
13525 expression (&ex);
13526
13527 if (ex.X_op != O_symbol || ex.X_add_number != 0)
13528 {
13529 as_bad (_("Unsupported use of .gpword"));
13530 ignore_rest_of_line ();
13531 }
13532
13533 p = frag_more (4);
17a2f251 13534 md_number_to_chars (p, 0, 4);
b34976b6 13535 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
cdf6fd85 13536 BFD_RELOC_GPREL32);
252b5132
RH
13537
13538 demand_empty_rest_of_line ();
13539}
13540
10181a0d 13541static void
17a2f251 13542s_gpdword (int ignore ATTRIBUTE_UNUSED)
10181a0d 13543{
a8dbcb85
TS
13544 segment_info_type *si;
13545 struct insn_label_list *l;
10181a0d
AO
13546 symbolS *label;
13547 expressionS ex;
13548 char *p;
13549
13550 /* When not generating PIC code, this is treated as .dword. */
13551 if (mips_pic != SVR4_PIC)
13552 {
13553 s_cons (3);
13554 return;
13555 }
13556
a8dbcb85
TS
13557 si = seg_info (now_seg);
13558 l = si->label_list;
13559 label = l != NULL ? l->label : NULL;
7d10b47d 13560 mips_emit_delays ();
10181a0d
AO
13561 if (auto_align)
13562 mips_align (3, 0, label);
13563 mips_clear_insn_labels ();
13564
13565 expression (&ex);
13566
13567 if (ex.X_op != O_symbol || ex.X_add_number != 0)
13568 {
13569 as_bad (_("Unsupported use of .gpdword"));
13570 ignore_rest_of_line ();
13571 }
13572
13573 p = frag_more (8);
17a2f251 13574 md_number_to_chars (p, 0, 8);
a105a300 13575 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
6e1304d8 13576 BFD_RELOC_GPREL32)->fx_tcbit = 1;
10181a0d
AO
13577
13578 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
6e1304d8
RS
13579 fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
13580 FALSE, BFD_RELOC_64)->fx_tcbit = 1;
10181a0d
AO
13581
13582 demand_empty_rest_of_line ();
13583}
13584
252b5132
RH
13585/* Handle the .cpadd pseudo-op. This is used when dealing with switch
13586 tables in SVR4 PIC code. */
13587
13588static void
17a2f251 13589s_cpadd (int ignore ATTRIBUTE_UNUSED)
252b5132 13590{
252b5132
RH
13591 int reg;
13592
10181a0d
AO
13593 /* This is ignored when not generating SVR4 PIC code. */
13594 if (mips_pic != SVR4_PIC)
252b5132
RH
13595 {
13596 s_ignore (0);
13597 return;
13598 }
13599
13600 /* Add $gp to the register named as an argument. */
584892a6 13601 macro_start ();
252b5132 13602 reg = tc_get_register (0);
67c0d1eb 13603 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
584892a6 13604 macro_end ();
252b5132 13605
bdaaa2e1 13606 demand_empty_rest_of_line ();
252b5132
RH
13607}
13608
13609/* Handle the .insn pseudo-op. This marks instruction labels in
13610 mips16 mode. This permits the linker to handle them specially,
13611 such as generating jalx instructions when needed. We also make
13612 them odd for the duration of the assembly, in order to generate the
13613 right sort of code. We will make them even in the adjust_symtab
13614 routine, while leaving them marked. This is convenient for the
13615 debugger and the disassembler. The linker knows to make them odd
13616 again. */
13617
13618static void
17a2f251 13619s_insn (int ignore ATTRIBUTE_UNUSED)
252b5132 13620{
f9419b05 13621 mips16_mark_labels ();
252b5132
RH
13622
13623 demand_empty_rest_of_line ();
13624}
13625
13626/* Handle a .stabn directive. We need these in order to mark a label
13627 as being a mips16 text label correctly. Sometimes the compiler
13628 will emit a label, followed by a .stabn, and then switch sections.
13629 If the label and .stabn are in mips16 mode, then the label is
13630 really a mips16 text label. */
13631
13632static void
17a2f251 13633s_mips_stab (int type)
252b5132 13634{
f9419b05 13635 if (type == 'n')
252b5132
RH
13636 mips16_mark_labels ();
13637
13638 s_stab (type);
13639}
13640
54f4ddb3 13641/* Handle the .weakext pseudo-op as defined in Kane and Heinrich. */
252b5132
RH
13642
13643static void
17a2f251 13644s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
13645{
13646 char *name;
13647 int c;
13648 symbolS *symbolP;
13649 expressionS exp;
13650
13651 name = input_line_pointer;
13652 c = get_symbol_end ();
13653 symbolP = symbol_find_or_make (name);
13654 S_SET_WEAK (symbolP);
13655 *input_line_pointer = c;
13656
13657 SKIP_WHITESPACE ();
13658
13659 if (! is_end_of_line[(unsigned char) *input_line_pointer])
13660 {
13661 if (S_IS_DEFINED (symbolP))
13662 {
956cd1d6 13663 as_bad ("ignoring attempt to redefine symbol %s",
252b5132
RH
13664 S_GET_NAME (symbolP));
13665 ignore_rest_of_line ();
13666 return;
13667 }
bdaaa2e1 13668
252b5132
RH
13669 if (*input_line_pointer == ',')
13670 {
13671 ++input_line_pointer;
13672 SKIP_WHITESPACE ();
13673 }
bdaaa2e1 13674
252b5132
RH
13675 expression (&exp);
13676 if (exp.X_op != O_symbol)
13677 {
13678 as_bad ("bad .weakext directive");
98d3f06f 13679 ignore_rest_of_line ();
252b5132
RH
13680 return;
13681 }
49309057 13682 symbol_set_value_expression (symbolP, &exp);
252b5132
RH
13683 }
13684
13685 demand_empty_rest_of_line ();
13686}
13687
13688/* Parse a register string into a number. Called from the ECOFF code
13689 to parse .frame. The argument is non-zero if this is the frame
13690 register, so that we can record it in mips_frame_reg. */
13691
13692int
17a2f251 13693tc_get_register (int frame)
252b5132 13694{
707bfff6 13695 unsigned int reg;
252b5132
RH
13696
13697 SKIP_WHITESPACE ();
707bfff6
TS
13698 if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, &reg))
13699 reg = 0;
252b5132 13700 if (frame)
7a621144
DJ
13701 {
13702 mips_frame_reg = reg != 0 ? reg : SP;
13703 mips_frame_reg_valid = 1;
13704 mips_cprestore_valid = 0;
13705 }
252b5132
RH
13706 return reg;
13707}
13708
13709valueT
17a2f251 13710md_section_align (asection *seg, valueT addr)
252b5132
RH
13711{
13712 int align = bfd_get_section_alignment (stdoutput, seg);
13713
b4c71f56
TS
13714 if (IS_ELF)
13715 {
13716 /* We don't need to align ELF sections to the full alignment.
13717 However, Irix 5 may prefer that we align them at least to a 16
13718 byte boundary. We don't bother to align the sections if we
13719 are targeted for an embedded system. */
c41e87e3 13720 if (strncmp (TARGET_OS, "elf", 3) == 0)
b4c71f56
TS
13721 return addr;
13722 if (align > 4)
13723 align = 4;
13724 }
252b5132
RH
13725
13726 return ((addr + (1 << align) - 1) & (-1 << align));
13727}
13728
13729/* Utility routine, called from above as well. If called while the
13730 input file is still being read, it's only an approximation. (For
13731 example, a symbol may later become defined which appeared to be
13732 undefined earlier.) */
13733
13734static int
17a2f251 13735nopic_need_relax (symbolS *sym, int before_relaxing)
252b5132
RH
13736{
13737 if (sym == 0)
13738 return 0;
13739
4d0d148d 13740 if (g_switch_value > 0)
252b5132
RH
13741 {
13742 const char *symname;
13743 int change;
13744
c9914766 13745 /* Find out whether this symbol can be referenced off the $gp
252b5132
RH
13746 register. It can be if it is smaller than the -G size or if
13747 it is in the .sdata or .sbss section. Certain symbols can
c9914766 13748 not be referenced off the $gp, although it appears as though
252b5132
RH
13749 they can. */
13750 symname = S_GET_NAME (sym);
13751 if (symname != (const char *) NULL
13752 && (strcmp (symname, "eprol") == 0
13753 || strcmp (symname, "etext") == 0
13754 || strcmp (symname, "_gp") == 0
13755 || strcmp (symname, "edata") == 0
13756 || strcmp (symname, "_fbss") == 0
13757 || strcmp (symname, "_fdata") == 0
13758 || strcmp (symname, "_ftext") == 0
13759 || strcmp (symname, "end") == 0
13760 || strcmp (symname, "_gp_disp") == 0))
13761 change = 1;
13762 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
13763 && (0
13764#ifndef NO_ECOFF_DEBUGGING
49309057
ILT
13765 || (symbol_get_obj (sym)->ecoff_extern_size != 0
13766 && (symbol_get_obj (sym)->ecoff_extern_size
13767 <= g_switch_value))
252b5132
RH
13768#endif
13769 /* We must defer this decision until after the whole
13770 file has been read, since there might be a .extern
13771 after the first use of this symbol. */
13772 || (before_relaxing
13773#ifndef NO_ECOFF_DEBUGGING
49309057 13774 && symbol_get_obj (sym)->ecoff_extern_size == 0
252b5132
RH
13775#endif
13776 && S_GET_VALUE (sym) == 0)
13777 || (S_GET_VALUE (sym) != 0
13778 && S_GET_VALUE (sym) <= g_switch_value)))
13779 change = 0;
13780 else
13781 {
13782 const char *segname;
13783
13784 segname = segment_name (S_GET_SEGMENT (sym));
13785 assert (strcmp (segname, ".lit8") != 0
13786 && strcmp (segname, ".lit4") != 0);
13787 change = (strcmp (segname, ".sdata") != 0
fba2b7f9
GK
13788 && strcmp (segname, ".sbss") != 0
13789 && strncmp (segname, ".sdata.", 7) != 0
d4dc2f22
TS
13790 && strncmp (segname, ".sbss.", 6) != 0
13791 && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0
fba2b7f9 13792 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
252b5132
RH
13793 }
13794 return change;
13795 }
13796 else
c9914766 13797 /* We are not optimizing for the $gp register. */
252b5132
RH
13798 return 1;
13799}
13800
5919d012
RS
13801
13802/* Return true if the given symbol should be considered local for SVR4 PIC. */
13803
13804static bfd_boolean
17a2f251 13805pic_need_relax (symbolS *sym, asection *segtype)
5919d012
RS
13806{
13807 asection *symsec;
5919d012
RS
13808
13809 /* Handle the case of a symbol equated to another symbol. */
13810 while (symbol_equated_reloc_p (sym))
13811 {
13812 symbolS *n;
13813
5f0fe04b 13814 /* It's possible to get a loop here in a badly written program. */
5919d012
RS
13815 n = symbol_get_value_expression (sym)->X_add_symbol;
13816 if (n == sym)
13817 break;
13818 sym = n;
13819 }
13820
df1f3cda
DD
13821 if (symbol_section_p (sym))
13822 return TRUE;
13823
5919d012
RS
13824 symsec = S_GET_SEGMENT (sym);
13825
5919d012
RS
13826 /* This must duplicate the test in adjust_reloc_syms. */
13827 return (symsec != &bfd_und_section
13828 && symsec != &bfd_abs_section
5f0fe04b
TS
13829 && !bfd_is_com_section (symsec)
13830 && !s_is_linkonce (sym, segtype)
5919d012
RS
13831#ifdef OBJ_ELF
13832 /* A global or weak symbol is treated as external. */
f43abd2b 13833 && (!IS_ELF || (! S_IS_WEAK (sym) && ! S_IS_EXTERNAL (sym)))
5919d012
RS
13834#endif
13835 );
13836}
13837
13838
252b5132
RH
13839/* Given a mips16 variant frag FRAGP, return non-zero if it needs an
13840 extended opcode. SEC is the section the frag is in. */
13841
13842static int
17a2f251 13843mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
252b5132
RH
13844{
13845 int type;
3994f87e 13846 const struct mips16_immed_operand *op;
252b5132
RH
13847 offsetT val;
13848 int mintiny, maxtiny;
13849 segT symsec;
98aa84af 13850 fragS *sym_frag;
252b5132
RH
13851
13852 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
13853 return 0;
13854 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
13855 return 1;
13856
13857 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
13858 op = mips16_immed_operands;
13859 while (op->type != type)
13860 {
13861 ++op;
13862 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
13863 }
13864
13865 if (op->unsp)
13866 {
13867 if (type == '<' || type == '>' || type == '[' || type == ']')
13868 {
13869 mintiny = 1;
13870 maxtiny = 1 << op->nbits;
13871 }
13872 else
13873 {
13874 mintiny = 0;
13875 maxtiny = (1 << op->nbits) - 1;
13876 }
13877 }
13878 else
13879 {
13880 mintiny = - (1 << (op->nbits - 1));
13881 maxtiny = (1 << (op->nbits - 1)) - 1;
13882 }
13883
98aa84af 13884 sym_frag = symbol_get_frag (fragp->fr_symbol);
ac62c346 13885 val = S_GET_VALUE (fragp->fr_symbol);
98aa84af 13886 symsec = S_GET_SEGMENT (fragp->fr_symbol);
252b5132
RH
13887
13888 if (op->pcrel)
13889 {
13890 addressT addr;
13891
13892 /* We won't have the section when we are called from
13893 mips_relax_frag. However, we will always have been called
13894 from md_estimate_size_before_relax first. If this is a
13895 branch to a different section, we mark it as such. If SEC is
13896 NULL, and the frag is not marked, then it must be a branch to
13897 the same section. */
13898 if (sec == NULL)
13899 {
13900 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
13901 return 1;
13902 }
13903 else
13904 {
98aa84af 13905 /* Must have been called from md_estimate_size_before_relax. */
252b5132
RH
13906 if (symsec != sec)
13907 {
13908 fragp->fr_subtype =
13909 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
13910
13911 /* FIXME: We should support this, and let the linker
13912 catch branches and loads that are out of range. */
13913 as_bad_where (fragp->fr_file, fragp->fr_line,
13914 _("unsupported PC relative reference to different section"));
13915
13916 return 1;
13917 }
98aa84af
AM
13918 if (fragp != sym_frag && sym_frag->fr_address == 0)
13919 /* Assume non-extended on the first relaxation pass.
13920 The address we have calculated will be bogus if this is
13921 a forward branch to another frag, as the forward frag
13922 will have fr_address == 0. */
13923 return 0;
252b5132
RH
13924 }
13925
13926 /* In this case, we know for sure that the symbol fragment is in
98aa84af
AM
13927 the same section. If the relax_marker of the symbol fragment
13928 differs from the relax_marker of this fragment, we have not
13929 yet adjusted the symbol fragment fr_address. We want to add
252b5132
RH
13930 in STRETCH in order to get a better estimate of the address.
13931 This particularly matters because of the shift bits. */
13932 if (stretch != 0
98aa84af 13933 && sym_frag->relax_marker != fragp->relax_marker)
252b5132
RH
13934 {
13935 fragS *f;
13936
13937 /* Adjust stretch for any alignment frag. Note that if have
13938 been expanding the earlier code, the symbol may be
13939 defined in what appears to be an earlier frag. FIXME:
13940 This doesn't handle the fr_subtype field, which specifies
13941 a maximum number of bytes to skip when doing an
13942 alignment. */
98aa84af 13943 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
252b5132
RH
13944 {
13945 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
13946 {
13947 if (stretch < 0)
13948 stretch = - ((- stretch)
13949 & ~ ((1 << (int) f->fr_offset) - 1));
13950 else
13951 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
13952 if (stretch == 0)
13953 break;
13954 }
13955 }
13956 if (f != NULL)
13957 val += stretch;
13958 }
13959
13960 addr = fragp->fr_address + fragp->fr_fix;
13961
13962 /* The base address rules are complicated. The base address of
13963 a branch is the following instruction. The base address of a
13964 PC relative load or add is the instruction itself, but if it
13965 is in a delay slot (in which case it can not be extended) use
13966 the address of the instruction whose delay slot it is in. */
13967 if (type == 'p' || type == 'q')
13968 {
13969 addr += 2;
13970
13971 /* If we are currently assuming that this frag should be
13972 extended, then, the current address is two bytes
bdaaa2e1 13973 higher. */
252b5132
RH
13974 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
13975 addr += 2;
13976
13977 /* Ignore the low bit in the target, since it will be set
13978 for a text label. */
13979 if ((val & 1) != 0)
13980 --val;
13981 }
13982 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
13983 addr -= 4;
13984 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
13985 addr -= 2;
13986
13987 val -= addr & ~ ((1 << op->shift) - 1);
13988
13989 /* Branch offsets have an implicit 0 in the lowest bit. */
13990 if (type == 'p' || type == 'q')
13991 val /= 2;
13992
13993 /* If any of the shifted bits are set, we must use an extended
13994 opcode. If the address depends on the size of this
13995 instruction, this can lead to a loop, so we arrange to always
13996 use an extended opcode. We only check this when we are in
13997 the main relaxation loop, when SEC is NULL. */
13998 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
13999 {
14000 fragp->fr_subtype =
14001 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
14002 return 1;
14003 }
14004
14005 /* If we are about to mark a frag as extended because the value
14006 is precisely maxtiny + 1, then there is a chance of an
14007 infinite loop as in the following code:
14008 la $4,foo
14009 .skip 1020
14010 .align 2
14011 foo:
14012 In this case when the la is extended, foo is 0x3fc bytes
14013 away, so the la can be shrunk, but then foo is 0x400 away, so
14014 the la must be extended. To avoid this loop, we mark the
14015 frag as extended if it was small, and is about to become
14016 extended with a value of maxtiny + 1. */
14017 if (val == ((maxtiny + 1) << op->shift)
14018 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
14019 && sec == NULL)
14020 {
14021 fragp->fr_subtype =
14022 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
14023 return 1;
14024 }
14025 }
14026 else if (symsec != absolute_section && sec != NULL)
14027 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
14028
14029 if ((val & ((1 << op->shift) - 1)) != 0
14030 || val < (mintiny << op->shift)
14031 || val > (maxtiny << op->shift))
14032 return 1;
14033 else
14034 return 0;
14035}
14036
4a6a3df4
AO
14037/* Compute the length of a branch sequence, and adjust the
14038 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
14039 worst-case length is computed, with UPDATE being used to indicate
14040 whether an unconditional (-1), branch-likely (+1) or regular (0)
14041 branch is to be computed. */
14042static int
17a2f251 14043relaxed_branch_length (fragS *fragp, asection *sec, int update)
4a6a3df4 14044{
b34976b6 14045 bfd_boolean toofar;
4a6a3df4
AO
14046 int length;
14047
14048 if (fragp
14049 && S_IS_DEFINED (fragp->fr_symbol)
14050 && sec == S_GET_SEGMENT (fragp->fr_symbol))
14051 {
14052 addressT addr;
14053 offsetT val;
14054
14055 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
14056
14057 addr = fragp->fr_address + fragp->fr_fix + 4;
14058
14059 val -= addr;
14060
14061 toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
14062 }
14063 else if (fragp)
14064 /* If the symbol is not defined or it's in a different segment,
14065 assume the user knows what's going on and emit a short
14066 branch. */
b34976b6 14067 toofar = FALSE;
4a6a3df4 14068 else
b34976b6 14069 toofar = TRUE;
4a6a3df4
AO
14070
14071 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
14072 fragp->fr_subtype
af6ae2ad 14073 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_UNCOND (fragp->fr_subtype),
4a6a3df4
AO
14074 RELAX_BRANCH_LIKELY (fragp->fr_subtype),
14075 RELAX_BRANCH_LINK (fragp->fr_subtype),
14076 toofar);
14077
14078 length = 4;
14079 if (toofar)
14080 {
14081 if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
14082 length += 8;
14083
14084 if (mips_pic != NO_PIC)
14085 {
14086 /* Additional space for PIC loading of target address. */
14087 length += 8;
14088 if (mips_opts.isa == ISA_MIPS1)
14089 /* Additional space for $at-stabilizing nop. */
14090 length += 4;
14091 }
14092
14093 /* If branch is conditional. */
14094 if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
14095 length += 8;
14096 }
b34976b6 14097
4a6a3df4
AO
14098 return length;
14099}
14100
252b5132
RH
14101/* Estimate the size of a frag before relaxing. Unless this is the
14102 mips16, we are not really relaxing here, and the final size is
14103 encoded in the subtype information. For the mips16, we have to
14104 decide whether we are using an extended opcode or not. */
14105
252b5132 14106int
17a2f251 14107md_estimate_size_before_relax (fragS *fragp, asection *segtype)
252b5132 14108{
5919d012 14109 int change;
252b5132 14110
4a6a3df4
AO
14111 if (RELAX_BRANCH_P (fragp->fr_subtype))
14112 {
14113
b34976b6
AM
14114 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
14115
4a6a3df4
AO
14116 return fragp->fr_var;
14117 }
14118
252b5132 14119 if (RELAX_MIPS16_P (fragp->fr_subtype))
177b4a6a
AO
14120 /* We don't want to modify the EXTENDED bit here; it might get us
14121 into infinite loops. We change it only in mips_relax_frag(). */
14122 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
252b5132
RH
14123
14124 if (mips_pic == NO_PIC)
5919d012 14125 change = nopic_need_relax (fragp->fr_symbol, 0);
252b5132 14126 else if (mips_pic == SVR4_PIC)
5919d012 14127 change = pic_need_relax (fragp->fr_symbol, segtype);
0a44bf69
RS
14128 else if (mips_pic == VXWORKS_PIC)
14129 /* For vxworks, GOT16 relocations never have a corresponding LO16. */
14130 change = 0;
252b5132
RH
14131 else
14132 abort ();
14133
14134 if (change)
14135 {
4d7206a2 14136 fragp->fr_subtype |= RELAX_USE_SECOND;
4d7206a2 14137 return -RELAX_FIRST (fragp->fr_subtype);
252b5132 14138 }
4d7206a2
RS
14139 else
14140 return -RELAX_SECOND (fragp->fr_subtype);
252b5132
RH
14141}
14142
14143/* This is called to see whether a reloc against a defined symbol
de7e6852 14144 should be converted into a reloc against a section. */
252b5132
RH
14145
14146int
17a2f251 14147mips_fix_adjustable (fixS *fixp)
252b5132 14148{
252b5132
RH
14149 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
14150 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
14151 return 0;
a161fe53 14152
252b5132
RH
14153 if (fixp->fx_addsy == NULL)
14154 return 1;
a161fe53 14155
de7e6852
RS
14156 /* If symbol SYM is in a mergeable section, relocations of the form
14157 SYM + 0 can usually be made section-relative. The mergeable data
14158 is then identified by the section offset rather than by the symbol.
14159
14160 However, if we're generating REL LO16 relocations, the offset is split
14161 between the LO16 and parterning high part relocation. The linker will
14162 need to recalculate the complete offset in order to correctly identify
14163 the merge data.
14164
14165 The linker has traditionally not looked for the parterning high part
14166 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
14167 placed anywhere. Rather than break backwards compatibility by changing
14168 this, it seems better not to force the issue, and instead keep the
14169 original symbol. This will work with either linker behavior. */
738e5348 14170 if ((lo16_reloc_p (fixp->fx_r_type)
704803a9 14171 || reloc_needs_lo_p (fixp->fx_r_type))
de7e6852
RS
14172 && HAVE_IN_PLACE_ADDENDS
14173 && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
14174 return 0;
14175
252b5132 14176#ifdef OBJ_ELF
b314ec0e
RS
14177 /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
14178 to a floating-point stub. The same is true for non-R_MIPS16_26
14179 relocations against MIPS16 functions; in this case, the stub becomes
14180 the function's canonical address.
14181
14182 Floating-point stubs are stored in unique .mips16.call.* or
14183 .mips16.fn.* sections. If a stub T for function F is in section S,
14184 the first relocation in section S must be against F; this is how the
14185 linker determines the target function. All relocations that might
14186 resolve to T must also be against F. We therefore have the following
14187 restrictions, which are given in an intentionally-redundant way:
14188
14189 1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
14190 symbols.
14191
14192 2. We cannot reduce a stub's relocations against non-MIPS16 symbols
14193 if that stub might be used.
14194
14195 3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
14196 symbols.
14197
14198 4. We cannot reduce a stub's relocations against MIPS16 symbols if
14199 that stub might be used.
14200
14201 There is a further restriction:
14202
14203 5. We cannot reduce R_MIPS16_26 relocations against MIPS16 symbols
14204 on targets with in-place addends; the relocation field cannot
14205 encode the low bit.
14206
14207 For simplicity, we deal with (3)-(5) by not reducing _any_ relocation
14208 against a MIPS16 symbol.
14209
14210 We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
14211 relocation against some symbol R, no relocation against R may be
14212 reduced. (Note that this deals with (2) as well as (1) because
14213 relocations against global symbols will never be reduced on ELF
14214 targets.) This approach is a little simpler than trying to detect
14215 stub sections, and gives the "all or nothing" per-symbol consistency
14216 that we have for MIPS16 symbols. */
f43abd2b 14217 if (IS_ELF
b314ec0e 14218 && fixp->fx_subsy == NULL
30c09090 14219 && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
b314ec0e 14220 || *symbol_get_tc (fixp->fx_addsy)))
252b5132
RH
14221 return 0;
14222#endif
a161fe53 14223
252b5132
RH
14224 return 1;
14225}
14226
14227/* Translate internal representation of relocation info to BFD target
14228 format. */
14229
14230arelent **
17a2f251 14231tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
252b5132
RH
14232{
14233 static arelent *retval[4];
14234 arelent *reloc;
14235 bfd_reloc_code_real_type code;
14236
4b0cff4e
TS
14237 memset (retval, 0, sizeof(retval));
14238 reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
49309057
ILT
14239 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
14240 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
14241 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
14242
bad36eac
DJ
14243 if (fixp->fx_pcrel)
14244 {
14245 assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2);
14246
14247 /* At this point, fx_addnumber is "symbol offset - pcrel address".
14248 Relocations want only the symbol offset. */
14249 reloc->addend = fixp->fx_addnumber + reloc->address;
f43abd2b 14250 if (!IS_ELF)
bad36eac
DJ
14251 {
14252 /* A gruesome hack which is a result of the gruesome gas
14253 reloc handling. What's worse, for COFF (as opposed to
14254 ECOFF), we might need yet another copy of reloc->address.
14255 See bfd_install_relocation. */
14256 reloc->addend += reloc->address;
14257 }
14258 }
14259 else
14260 reloc->addend = fixp->fx_addnumber;
252b5132 14261
438c16b8
TS
14262 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
14263 entry to be used in the relocation's section offset. */
14264 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
252b5132
RH
14265 {
14266 reloc->address = reloc->addend;
14267 reloc->addend = 0;
14268 }
14269
252b5132 14270 code = fixp->fx_r_type;
252b5132 14271
bad36eac 14272 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
252b5132
RH
14273 if (reloc->howto == NULL)
14274 {
14275 as_bad_where (fixp->fx_file, fixp->fx_line,
14276 _("Can not represent %s relocation in this object file format"),
14277 bfd_get_reloc_code_name (code));
14278 retval[0] = NULL;
14279 }
14280
14281 return retval;
14282}
14283
14284/* Relax a machine dependent frag. This returns the amount by which
14285 the current size of the frag should change. */
14286
14287int
17a2f251 14288mips_relax_frag (asection *sec, fragS *fragp, long stretch)
252b5132 14289{
4a6a3df4
AO
14290 if (RELAX_BRANCH_P (fragp->fr_subtype))
14291 {
14292 offsetT old_var = fragp->fr_var;
b34976b6
AM
14293
14294 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
4a6a3df4
AO
14295
14296 return fragp->fr_var - old_var;
14297 }
14298
252b5132
RH
14299 if (! RELAX_MIPS16_P (fragp->fr_subtype))
14300 return 0;
14301
c4e7957c 14302 if (mips16_extended_frag (fragp, NULL, stretch))
252b5132
RH
14303 {
14304 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14305 return 0;
14306 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
14307 return 2;
14308 }
14309 else
14310 {
14311 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14312 return 0;
14313 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
14314 return -2;
14315 }
14316
14317 return 0;
14318}
14319
14320/* Convert a machine dependent frag. */
14321
14322void
17a2f251 14323md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
252b5132 14324{
4a6a3df4
AO
14325 if (RELAX_BRANCH_P (fragp->fr_subtype))
14326 {
14327 bfd_byte *buf;
14328 unsigned long insn;
14329 expressionS exp;
14330 fixS *fixp;
b34976b6 14331
4a6a3df4
AO
14332 buf = (bfd_byte *)fragp->fr_literal + fragp->fr_fix;
14333
14334 if (target_big_endian)
14335 insn = bfd_getb32 (buf);
14336 else
14337 insn = bfd_getl32 (buf);
b34976b6 14338
4a6a3df4
AO
14339 if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
14340 {
14341 /* We generate a fixup instead of applying it right now
14342 because, if there are linker relaxations, we're going to
14343 need the relocations. */
14344 exp.X_op = O_symbol;
14345 exp.X_add_symbol = fragp->fr_symbol;
14346 exp.X_add_number = fragp->fr_offset;
14347
14348 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
3994f87e 14349 4, &exp, TRUE, BFD_RELOC_16_PCREL_S2);
4a6a3df4
AO
14350 fixp->fx_file = fragp->fr_file;
14351 fixp->fx_line = fragp->fr_line;
b34976b6 14352
2132e3a3 14353 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14354 buf += 4;
14355 }
14356 else
14357 {
14358 int i;
14359
14360 as_warn_where (fragp->fr_file, fragp->fr_line,
14361 _("relaxed out-of-range branch into a jump"));
14362
14363 if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
14364 goto uncond;
14365
14366 if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14367 {
14368 /* Reverse the branch. */
14369 switch ((insn >> 28) & 0xf)
14370 {
14371 case 4:
14372 /* bc[0-3][tf]l? and bc1any[24][ft] instructions can
14373 have the condition reversed by tweaking a single
14374 bit, and their opcodes all have 0x4???????. */
14375 assert ((insn & 0xf1000000) == 0x41000000);
14376 insn ^= 0x00010000;
14377 break;
14378
14379 case 0:
14380 /* bltz 0x04000000 bgez 0x04010000
54f4ddb3 14381 bltzal 0x04100000 bgezal 0x04110000 */
4a6a3df4
AO
14382 assert ((insn & 0xfc0e0000) == 0x04000000);
14383 insn ^= 0x00010000;
14384 break;
b34976b6 14385
4a6a3df4
AO
14386 case 1:
14387 /* beq 0x10000000 bne 0x14000000
54f4ddb3 14388 blez 0x18000000 bgtz 0x1c000000 */
4a6a3df4
AO
14389 insn ^= 0x04000000;
14390 break;
14391
14392 default:
14393 abort ();
14394 }
14395 }
14396
14397 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
14398 {
14399 /* Clear the and-link bit. */
14400 assert ((insn & 0xfc1c0000) == 0x04100000);
14401
54f4ddb3
TS
14402 /* bltzal 0x04100000 bgezal 0x04110000
14403 bltzall 0x04120000 bgezall 0x04130000 */
4a6a3df4
AO
14404 insn &= ~0x00100000;
14405 }
14406
14407 /* Branch over the branch (if the branch was likely) or the
14408 full jump (not likely case). Compute the offset from the
14409 current instruction to branch to. */
14410 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14411 i = 16;
14412 else
14413 {
14414 /* How many bytes in instructions we've already emitted? */
14415 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
14416 /* How many bytes in instructions from here to the end? */
14417 i = fragp->fr_var - i;
14418 }
14419 /* Convert to instruction count. */
14420 i >>= 2;
14421 /* Branch counts from the next instruction. */
b34976b6 14422 i--;
4a6a3df4
AO
14423 insn |= i;
14424 /* Branch over the jump. */
2132e3a3 14425 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14426 buf += 4;
14427
54f4ddb3 14428 /* nop */
2132e3a3 14429 md_number_to_chars ((char *) buf, 0, 4);
4a6a3df4
AO
14430 buf += 4;
14431
14432 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14433 {
14434 /* beql $0, $0, 2f */
14435 insn = 0x50000000;
14436 /* Compute the PC offset from the current instruction to
14437 the end of the variable frag. */
14438 /* How many bytes in instructions we've already emitted? */
14439 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
14440 /* How many bytes in instructions from here to the end? */
14441 i = fragp->fr_var - i;
14442 /* Convert to instruction count. */
14443 i >>= 2;
14444 /* Don't decrement i, because we want to branch over the
14445 delay slot. */
14446
14447 insn |= i;
2132e3a3 14448 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14449 buf += 4;
14450
2132e3a3 14451 md_number_to_chars ((char *) buf, 0, 4);
4a6a3df4
AO
14452 buf += 4;
14453 }
14454
14455 uncond:
14456 if (mips_pic == NO_PIC)
14457 {
14458 /* j or jal. */
14459 insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
14460 ? 0x0c000000 : 0x08000000);
14461 exp.X_op = O_symbol;
14462 exp.X_add_symbol = fragp->fr_symbol;
14463 exp.X_add_number = fragp->fr_offset;
14464
14465 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
3994f87e 14466 4, &exp, FALSE, BFD_RELOC_MIPS_JMP);
4a6a3df4
AO
14467 fixp->fx_file = fragp->fr_file;
14468 fixp->fx_line = fragp->fr_line;
14469
2132e3a3 14470 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14471 buf += 4;
14472 }
14473 else
14474 {
14475 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
14476 insn = HAVE_64BIT_ADDRESSES ? 0xdf810000 : 0x8f810000;
14477 exp.X_op = O_symbol;
14478 exp.X_add_symbol = fragp->fr_symbol;
14479 exp.X_add_number = fragp->fr_offset;
14480
14481 if (fragp->fr_offset)
14482 {
14483 exp.X_add_symbol = make_expr_symbol (&exp);
14484 exp.X_add_number = 0;
14485 }
14486
14487 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
3994f87e 14488 4, &exp, FALSE, BFD_RELOC_MIPS_GOT16);
4a6a3df4
AO
14489 fixp->fx_file = fragp->fr_file;
14490 fixp->fx_line = fragp->fr_line;
14491
2132e3a3 14492 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4 14493 buf += 4;
b34976b6 14494
4a6a3df4
AO
14495 if (mips_opts.isa == ISA_MIPS1)
14496 {
14497 /* nop */
2132e3a3 14498 md_number_to_chars ((char *) buf, 0, 4);
4a6a3df4
AO
14499 buf += 4;
14500 }
14501
14502 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
14503 insn = HAVE_64BIT_ADDRESSES ? 0x64210000 : 0x24210000;
14504
14505 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
3994f87e 14506 4, &exp, FALSE, BFD_RELOC_LO16);
4a6a3df4
AO
14507 fixp->fx_file = fragp->fr_file;
14508 fixp->fx_line = fragp->fr_line;
b34976b6 14509
2132e3a3 14510 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14511 buf += 4;
14512
14513 /* j(al)r $at. */
14514 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
14515 insn = 0x0020f809;
14516 else
14517 insn = 0x00200008;
14518
2132e3a3 14519 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14520 buf += 4;
14521 }
14522 }
14523
14524 assert (buf == (bfd_byte *)fragp->fr_literal
14525 + fragp->fr_fix + fragp->fr_var);
14526
14527 fragp->fr_fix += fragp->fr_var;
14528
14529 return;
14530 }
14531
252b5132
RH
14532 if (RELAX_MIPS16_P (fragp->fr_subtype))
14533 {
14534 int type;
3994f87e 14535 const struct mips16_immed_operand *op;
b34976b6 14536 bfd_boolean small, ext;
252b5132
RH
14537 offsetT val;
14538 bfd_byte *buf;
14539 unsigned long insn;
b34976b6 14540 bfd_boolean use_extend;
252b5132
RH
14541 unsigned short extend;
14542
14543 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
14544 op = mips16_immed_operands;
14545 while (op->type != type)
14546 ++op;
14547
14548 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14549 {
b34976b6
AM
14550 small = FALSE;
14551 ext = TRUE;
252b5132
RH
14552 }
14553 else
14554 {
b34976b6
AM
14555 small = TRUE;
14556 ext = FALSE;
252b5132
RH
14557 }
14558
6386f3a7 14559 resolve_symbol_value (fragp->fr_symbol);
252b5132
RH
14560 val = S_GET_VALUE (fragp->fr_symbol);
14561 if (op->pcrel)
14562 {
14563 addressT addr;
14564
14565 addr = fragp->fr_address + fragp->fr_fix;
14566
14567 /* The rules for the base address of a PC relative reloc are
14568 complicated; see mips16_extended_frag. */
14569 if (type == 'p' || type == 'q')
14570 {
14571 addr += 2;
14572 if (ext)
14573 addr += 2;
14574 /* Ignore the low bit in the target, since it will be
14575 set for a text label. */
14576 if ((val & 1) != 0)
14577 --val;
14578 }
14579 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
14580 addr -= 4;
14581 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
14582 addr -= 2;
14583
14584 addr &= ~ (addressT) ((1 << op->shift) - 1);
14585 val -= addr;
14586
14587 /* Make sure the section winds up with the alignment we have
14588 assumed. */
14589 if (op->shift > 0)
14590 record_alignment (asec, op->shift);
14591 }
14592
14593 if (ext
14594 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
14595 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
14596 as_warn_where (fragp->fr_file, fragp->fr_line,
14597 _("extended instruction in delay slot"));
14598
14599 buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix);
14600
14601 if (target_big_endian)
14602 insn = bfd_getb16 (buf);
14603 else
14604 insn = bfd_getl16 (buf);
14605
14606 mips16_immed (fragp->fr_file, fragp->fr_line, type, val,
14607 RELAX_MIPS16_USER_EXT (fragp->fr_subtype),
14608 small, ext, &insn, &use_extend, &extend);
14609
14610 if (use_extend)
14611 {
2132e3a3 14612 md_number_to_chars ((char *) buf, 0xf000 | extend, 2);
252b5132
RH
14613 fragp->fr_fix += 2;
14614 buf += 2;
14615 }
14616
2132e3a3 14617 md_number_to_chars ((char *) buf, insn, 2);
252b5132
RH
14618 fragp->fr_fix += 2;
14619 buf += 2;
14620 }
14621 else
14622 {
4d7206a2
RS
14623 int first, second;
14624 fixS *fixp;
252b5132 14625
4d7206a2
RS
14626 first = RELAX_FIRST (fragp->fr_subtype);
14627 second = RELAX_SECOND (fragp->fr_subtype);
14628 fixp = (fixS *) fragp->fr_opcode;
252b5132 14629
584892a6
RS
14630 /* Possibly emit a warning if we've chosen the longer option. */
14631 if (((fragp->fr_subtype & RELAX_USE_SECOND) != 0)
14632 == ((fragp->fr_subtype & RELAX_SECOND_LONGER) != 0))
14633 {
14634 const char *msg = macro_warning (fragp->fr_subtype);
14635 if (msg != 0)
520725ea 14636 as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
584892a6
RS
14637 }
14638
4d7206a2
RS
14639 /* Go through all the fixups for the first sequence. Disable them
14640 (by marking them as done) if we're going to use the second
14641 sequence instead. */
14642 while (fixp
14643 && fixp->fx_frag == fragp
14644 && fixp->fx_where < fragp->fr_fix - second)
14645 {
14646 if (fragp->fr_subtype & RELAX_USE_SECOND)
14647 fixp->fx_done = 1;
14648 fixp = fixp->fx_next;
14649 }
252b5132 14650
4d7206a2
RS
14651 /* Go through the fixups for the second sequence. Disable them if
14652 we're going to use the first sequence, otherwise adjust their
14653 addresses to account for the relaxation. */
14654 while (fixp && fixp->fx_frag == fragp)
14655 {
14656 if (fragp->fr_subtype & RELAX_USE_SECOND)
14657 fixp->fx_where -= first;
14658 else
14659 fixp->fx_done = 1;
14660 fixp = fixp->fx_next;
14661 }
14662
14663 /* Now modify the frag contents. */
14664 if (fragp->fr_subtype & RELAX_USE_SECOND)
14665 {
14666 char *start;
14667
14668 start = fragp->fr_literal + fragp->fr_fix - first - second;
14669 memmove (start, start + first, second);
14670 fragp->fr_fix -= first;
14671 }
14672 else
14673 fragp->fr_fix -= second;
252b5132
RH
14674 }
14675}
14676
14677#ifdef OBJ_ELF
14678
14679/* This function is called after the relocs have been generated.
14680 We've been storing mips16 text labels as odd. Here we convert them
14681 back to even for the convenience of the debugger. */
14682
14683void
17a2f251 14684mips_frob_file_after_relocs (void)
252b5132
RH
14685{
14686 asymbol **syms;
14687 unsigned int count, i;
14688
f43abd2b 14689 if (!IS_ELF)
252b5132
RH
14690 return;
14691
14692 syms = bfd_get_outsymbols (stdoutput);
14693 count = bfd_get_symcount (stdoutput);
14694 for (i = 0; i < count; i++, syms++)
14695 {
30c09090 14696 if (ELF_ST_IS_MIPS16 (elf_symbol (*syms)->internal_elf_sym.st_other)
252b5132
RH
14697 && ((*syms)->value & 1) != 0)
14698 {
14699 (*syms)->value &= ~1;
14700 /* If the symbol has an odd size, it was probably computed
14701 incorrectly, so adjust that as well. */
14702 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
14703 ++elf_symbol (*syms)->internal_elf_sym.st_size;
14704 }
14705 }
14706}
14707
14708#endif
14709
14710/* This function is called whenever a label is defined. It is used
14711 when handling branch delays; if a branch has a label, we assume we
14712 can not move it. */
14713
14714void
17a2f251 14715mips_define_label (symbolS *sym)
252b5132 14716{
a8dbcb85 14717 segment_info_type *si = seg_info (now_seg);
252b5132
RH
14718 struct insn_label_list *l;
14719
14720 if (free_insn_labels == NULL)
14721 l = (struct insn_label_list *) xmalloc (sizeof *l);
14722 else
14723 {
14724 l = free_insn_labels;
14725 free_insn_labels = l->next;
14726 }
14727
14728 l->label = sym;
a8dbcb85
TS
14729 l->next = si->label_list;
14730 si->label_list = l;
07a53e5c
RH
14731
14732#ifdef OBJ_ELF
14733 dwarf2_emit_label (sym);
14734#endif
252b5132
RH
14735}
14736\f
14737#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
14738
14739/* Some special processing for a MIPS ELF file. */
14740
14741void
17a2f251 14742mips_elf_final_processing (void)
252b5132
RH
14743{
14744 /* Write out the register information. */
316f5878 14745 if (mips_abi != N64_ABI)
252b5132
RH
14746 {
14747 Elf32_RegInfo s;
14748
14749 s.ri_gprmask = mips_gprmask;
14750 s.ri_cprmask[0] = mips_cprmask[0];
14751 s.ri_cprmask[1] = mips_cprmask[1];
14752 s.ri_cprmask[2] = mips_cprmask[2];
14753 s.ri_cprmask[3] = mips_cprmask[3];
14754 /* The gp_value field is set by the MIPS ELF backend. */
14755
14756 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
14757 ((Elf32_External_RegInfo *)
14758 mips_regmask_frag));
14759 }
14760 else
14761 {
14762 Elf64_Internal_RegInfo s;
14763
14764 s.ri_gprmask = mips_gprmask;
14765 s.ri_pad = 0;
14766 s.ri_cprmask[0] = mips_cprmask[0];
14767 s.ri_cprmask[1] = mips_cprmask[1];
14768 s.ri_cprmask[2] = mips_cprmask[2];
14769 s.ri_cprmask[3] = mips_cprmask[3];
14770 /* The gp_value field is set by the MIPS ELF backend. */
14771
14772 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
14773 ((Elf64_External_RegInfo *)
14774 mips_regmask_frag));
14775 }
14776
14777 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
14778 sort of BFD interface for this. */
14779 if (mips_any_noreorder)
14780 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
14781 if (mips_pic != NO_PIC)
143d77c5 14782 {
252b5132 14783 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
143d77c5
EC
14784 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
14785 }
14786 if (mips_abicalls)
14787 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
252b5132 14788
98d3f06f 14789 /* Set MIPS ELF flags for ASEs. */
74cd071d
CF
14790 /* We may need to define a new flag for DSP ASE, and set this flag when
14791 file_ase_dsp is true. */
8b082fb1 14792 /* Same for DSP R2. */
ef2e4d86
CF
14793 /* We may need to define a new flag for MT ASE, and set this flag when
14794 file_ase_mt is true. */
a4672219
TS
14795 if (file_ase_mips16)
14796 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
1f25f5d3
CD
14797#if 0 /* XXX FIXME */
14798 if (file_ase_mips3d)
14799 elf_elfheader (stdoutput)->e_flags |= ???;
14800#endif
deec1734
CD
14801 if (file_ase_mdmx)
14802 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
1f25f5d3 14803
bdaaa2e1 14804 /* Set the MIPS ELF ABI flags. */
316f5878 14805 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
252b5132 14806 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
316f5878 14807 else if (mips_abi == O64_ABI)
252b5132 14808 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
316f5878 14809 else if (mips_abi == EABI_ABI)
252b5132 14810 {
316f5878 14811 if (!file_mips_gp32)
252b5132
RH
14812 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
14813 else
14814 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
14815 }
316f5878 14816 else if (mips_abi == N32_ABI)
be00bddd
TS
14817 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
14818
c9914766 14819 /* Nothing to do for N64_ABI. */
252b5132
RH
14820
14821 if (mips_32bitmode)
14822 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
ad3fea08
TS
14823
14824#if 0 /* XXX FIXME */
14825 /* 32 bit code with 64 bit FP registers. */
14826 if (!file_mips_fp32 && ABI_NEEDS_32BIT_REGS (mips_abi))
14827 elf_elfheader (stdoutput)->e_flags |= ???;
14828#endif
252b5132
RH
14829}
14830
14831#endif /* OBJ_ELF || OBJ_MAYBE_ELF */
14832\f
beae10d5 14833typedef struct proc {
9b2f1d35
EC
14834 symbolS *func_sym;
14835 symbolS *func_end_sym;
beae10d5
KH
14836 unsigned long reg_mask;
14837 unsigned long reg_offset;
14838 unsigned long fpreg_mask;
14839 unsigned long fpreg_offset;
14840 unsigned long frame_offset;
14841 unsigned long frame_reg;
14842 unsigned long pc_reg;
14843} procS;
252b5132
RH
14844
14845static procS cur_proc;
14846static procS *cur_proc_ptr;
14847static int numprocs;
14848
742a56fe
RS
14849/* Implement NOP_OPCODE. We encode a MIPS16 nop as "1" and a normal
14850 nop as "0". */
14851
14852char
14853mips_nop_opcode (void)
14854{
14855 return seg_info (now_seg)->tc_segment_info_data.mips16;
14856}
14857
14858/* Fill in an rs_align_code fragment. This only needs to do something
14859 for MIPS16 code, where 0 is not a nop. */
a19d8eb0 14860
0a9ef439 14861void
17a2f251 14862mips_handle_align (fragS *fragp)
a19d8eb0 14863{
742a56fe
RS
14864 char *p;
14865
0a9ef439
RH
14866 if (fragp->fr_type != rs_align_code)
14867 return;
14868
742a56fe
RS
14869 p = fragp->fr_literal + fragp->fr_fix;
14870 if (*p)
a19d8eb0 14871 {
0a9ef439 14872 int bytes;
a19d8eb0 14873
0a9ef439 14874 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
0a9ef439
RH
14875 if (bytes & 1)
14876 {
14877 *p++ = 0;
f9419b05 14878 fragp->fr_fix++;
0a9ef439 14879 }
742a56fe 14880 md_number_to_chars (p, mips16_nop_insn.insn_opcode, 2);
0a9ef439 14881 fragp->fr_var = 2;
a19d8eb0 14882 }
a19d8eb0
CP
14883}
14884
252b5132 14885static void
17a2f251 14886md_obj_begin (void)
252b5132
RH
14887{
14888}
14889
14890static void
17a2f251 14891md_obj_end (void)
252b5132 14892{
54f4ddb3 14893 /* Check for premature end, nesting errors, etc. */
252b5132 14894 if (cur_proc_ptr)
9a41af64 14895 as_warn (_("missing .end at end of assembly"));
252b5132
RH
14896}
14897
14898static long
17a2f251 14899get_number (void)
252b5132
RH
14900{
14901 int negative = 0;
14902 long val = 0;
14903
14904 if (*input_line_pointer == '-')
14905 {
14906 ++input_line_pointer;
14907 negative = 1;
14908 }
3882b010 14909 if (!ISDIGIT (*input_line_pointer))
956cd1d6 14910 as_bad (_("expected simple number"));
252b5132
RH
14911 if (input_line_pointer[0] == '0')
14912 {
14913 if (input_line_pointer[1] == 'x')
14914 {
14915 input_line_pointer += 2;
3882b010 14916 while (ISXDIGIT (*input_line_pointer))
252b5132
RH
14917 {
14918 val <<= 4;
14919 val |= hex_value (*input_line_pointer++);
14920 }
14921 return negative ? -val : val;
14922 }
14923 else
14924 {
14925 ++input_line_pointer;
3882b010 14926 while (ISDIGIT (*input_line_pointer))
252b5132
RH
14927 {
14928 val <<= 3;
14929 val |= *input_line_pointer++ - '0';
14930 }
14931 return negative ? -val : val;
14932 }
14933 }
3882b010 14934 if (!ISDIGIT (*input_line_pointer))
252b5132
RH
14935 {
14936 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
14937 *input_line_pointer, *input_line_pointer);
956cd1d6 14938 as_warn (_("invalid number"));
252b5132
RH
14939 return -1;
14940 }
3882b010 14941 while (ISDIGIT (*input_line_pointer))
252b5132
RH
14942 {
14943 val *= 10;
14944 val += *input_line_pointer++ - '0';
14945 }
14946 return negative ? -val : val;
14947}
14948
14949/* The .file directive; just like the usual .file directive, but there
c5dd6aab
DJ
14950 is an initial number which is the ECOFF file index. In the non-ECOFF
14951 case .file implies DWARF-2. */
14952
14953static void
17a2f251 14954s_mips_file (int x ATTRIBUTE_UNUSED)
c5dd6aab 14955{
ecb4347a
DJ
14956 static int first_file_directive = 0;
14957
c5dd6aab
DJ
14958 if (ECOFF_DEBUGGING)
14959 {
14960 get_number ();
14961 s_app_file (0);
14962 }
14963 else
ecb4347a
DJ
14964 {
14965 char *filename;
14966
14967 filename = dwarf2_directive_file (0);
14968
14969 /* Versions of GCC up to 3.1 start files with a ".file"
14970 directive even for stabs output. Make sure that this
14971 ".file" is handled. Note that you need a version of GCC
14972 after 3.1 in order to support DWARF-2 on MIPS. */
14973 if (filename != NULL && ! first_file_directive)
14974 {
14975 (void) new_logical_line (filename, -1);
c04f5787 14976 s_app_file_string (filename, 0);
ecb4347a
DJ
14977 }
14978 first_file_directive = 1;
14979 }
c5dd6aab
DJ
14980}
14981
14982/* The .loc directive, implying DWARF-2. */
252b5132
RH
14983
14984static void
17a2f251 14985s_mips_loc (int x ATTRIBUTE_UNUSED)
252b5132 14986{
c5dd6aab
DJ
14987 if (!ECOFF_DEBUGGING)
14988 dwarf2_directive_loc (0);
252b5132
RH
14989}
14990
252b5132
RH
14991/* The .end directive. */
14992
14993static void
17a2f251 14994s_mips_end (int x ATTRIBUTE_UNUSED)
252b5132
RH
14995{
14996 symbolS *p;
252b5132 14997
7a621144
DJ
14998 /* Following functions need their own .frame and .cprestore directives. */
14999 mips_frame_reg_valid = 0;
15000 mips_cprestore_valid = 0;
15001
252b5132
RH
15002 if (!is_end_of_line[(unsigned char) *input_line_pointer])
15003 {
15004 p = get_symbol ();
15005 demand_empty_rest_of_line ();
15006 }
15007 else
15008 p = NULL;
15009
14949570 15010 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
252b5132
RH
15011 as_warn (_(".end not in text section"));
15012
15013 if (!cur_proc_ptr)
15014 {
15015 as_warn (_(".end directive without a preceding .ent directive."));
15016 demand_empty_rest_of_line ();
15017 return;
15018 }
15019
15020 if (p != NULL)
15021 {
15022 assert (S_GET_NAME (p));
9b2f1d35 15023 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
252b5132 15024 as_warn (_(".end symbol does not match .ent symbol."));
ecb4347a
DJ
15025
15026 if (debug_type == DEBUG_STABS)
15027 stabs_generate_asm_endfunc (S_GET_NAME (p),
15028 S_GET_NAME (p));
252b5132
RH
15029 }
15030 else
15031 as_warn (_(".end directive missing or unknown symbol"));
15032
2132e3a3 15033#ifdef OBJ_ELF
9b2f1d35
EC
15034 /* Create an expression to calculate the size of the function. */
15035 if (p && cur_proc_ptr)
15036 {
15037 OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
15038 expressionS *exp = xmalloc (sizeof (expressionS));
15039
15040 obj->size = exp;
15041 exp->X_op = O_subtract;
15042 exp->X_add_symbol = symbol_temp_new_now ();
15043 exp->X_op_symbol = p;
15044 exp->X_add_number = 0;
15045
15046 cur_proc_ptr->func_end_sym = exp->X_add_symbol;
15047 }
15048
ecb4347a 15049 /* Generate a .pdr section. */
f43abd2b 15050 if (IS_ELF && !ECOFF_DEBUGGING && mips_flag_pdr)
ecb4347a
DJ
15051 {
15052 segT saved_seg = now_seg;
15053 subsegT saved_subseg = now_subseg;
15054 valueT dot;
15055 expressionS exp;
15056 char *fragp;
252b5132 15057
ecb4347a 15058 dot = frag_now_fix ();
252b5132
RH
15059
15060#ifdef md_flush_pending_output
ecb4347a 15061 md_flush_pending_output ();
252b5132
RH
15062#endif
15063
ecb4347a
DJ
15064 assert (pdr_seg);
15065 subseg_set (pdr_seg, 0);
252b5132 15066
ecb4347a
DJ
15067 /* Write the symbol. */
15068 exp.X_op = O_symbol;
15069 exp.X_add_symbol = p;
15070 exp.X_add_number = 0;
15071 emit_expr (&exp, 4);
252b5132 15072
ecb4347a 15073 fragp = frag_more (7 * 4);
252b5132 15074
17a2f251
TS
15075 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
15076 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
15077 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
15078 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
15079 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
15080 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
15081 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
252b5132 15082
ecb4347a
DJ
15083 subseg_set (saved_seg, saved_subseg);
15084 }
15085#endif /* OBJ_ELF */
252b5132
RH
15086
15087 cur_proc_ptr = NULL;
15088}
15089
15090/* The .aent and .ent directives. */
15091
15092static void
17a2f251 15093s_mips_ent (int aent)
252b5132 15094{
252b5132 15095 symbolS *symbolP;
252b5132
RH
15096
15097 symbolP = get_symbol ();
15098 if (*input_line_pointer == ',')
f9419b05 15099 ++input_line_pointer;
252b5132 15100 SKIP_WHITESPACE ();
3882b010 15101 if (ISDIGIT (*input_line_pointer)
d9a62219 15102 || *input_line_pointer == '-')
874e8986 15103 get_number ();
252b5132 15104
14949570 15105 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
252b5132
RH
15106 as_warn (_(".ent or .aent not in text section."));
15107
15108 if (!aent && cur_proc_ptr)
9a41af64 15109 as_warn (_("missing .end"));
252b5132
RH
15110
15111 if (!aent)
15112 {
7a621144
DJ
15113 /* This function needs its own .frame and .cprestore directives. */
15114 mips_frame_reg_valid = 0;
15115 mips_cprestore_valid = 0;
15116
252b5132
RH
15117 cur_proc_ptr = &cur_proc;
15118 memset (cur_proc_ptr, '\0', sizeof (procS));
15119
9b2f1d35 15120 cur_proc_ptr->func_sym = symbolP;
252b5132 15121
49309057 15122 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
252b5132 15123
f9419b05 15124 ++numprocs;
ecb4347a
DJ
15125
15126 if (debug_type == DEBUG_STABS)
15127 stabs_generate_asm_func (S_GET_NAME (symbolP),
15128 S_GET_NAME (symbolP));
252b5132
RH
15129 }
15130
15131 demand_empty_rest_of_line ();
15132}
15133
15134/* The .frame directive. If the mdebug section is present (IRIX 5 native)
bdaaa2e1 15135 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
252b5132 15136 s_mips_frame is used so that we can set the PDR information correctly.
bdaaa2e1 15137 We can't use the ecoff routines because they make reference to the ecoff
252b5132
RH
15138 symbol table (in the mdebug section). */
15139
15140static void
17a2f251 15141s_mips_frame (int ignore ATTRIBUTE_UNUSED)
252b5132 15142{
ecb4347a 15143#ifdef OBJ_ELF
f43abd2b 15144 if (IS_ELF && !ECOFF_DEBUGGING)
ecb4347a
DJ
15145 {
15146 long val;
252b5132 15147
ecb4347a
DJ
15148 if (cur_proc_ptr == (procS *) NULL)
15149 {
15150 as_warn (_(".frame outside of .ent"));
15151 demand_empty_rest_of_line ();
15152 return;
15153 }
252b5132 15154
ecb4347a
DJ
15155 cur_proc_ptr->frame_reg = tc_get_register (1);
15156
15157 SKIP_WHITESPACE ();
15158 if (*input_line_pointer++ != ','
15159 || get_absolute_expression_and_terminator (&val) != ',')
15160 {
15161 as_warn (_("Bad .frame directive"));
15162 --input_line_pointer;
15163 demand_empty_rest_of_line ();
15164 return;
15165 }
252b5132 15166
ecb4347a
DJ
15167 cur_proc_ptr->frame_offset = val;
15168 cur_proc_ptr->pc_reg = tc_get_register (0);
252b5132 15169
252b5132 15170 demand_empty_rest_of_line ();
252b5132 15171 }
ecb4347a
DJ
15172 else
15173#endif /* OBJ_ELF */
15174 s_ignore (ignore);
252b5132
RH
15175}
15176
bdaaa2e1
KH
15177/* The .fmask and .mask directives. If the mdebug section is present
15178 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
252b5132 15179 embedded targets, s_mips_mask is used so that we can set the PDR
bdaaa2e1 15180 information correctly. We can't use the ecoff routines because they
252b5132
RH
15181 make reference to the ecoff symbol table (in the mdebug section). */
15182
15183static void
17a2f251 15184s_mips_mask (int reg_type)
252b5132 15185{
ecb4347a 15186#ifdef OBJ_ELF
f43abd2b 15187 if (IS_ELF && !ECOFF_DEBUGGING)
252b5132 15188 {
ecb4347a 15189 long mask, off;
252b5132 15190
ecb4347a
DJ
15191 if (cur_proc_ptr == (procS *) NULL)
15192 {
15193 as_warn (_(".mask/.fmask outside of .ent"));
15194 demand_empty_rest_of_line ();
15195 return;
15196 }
252b5132 15197
ecb4347a
DJ
15198 if (get_absolute_expression_and_terminator (&mask) != ',')
15199 {
15200 as_warn (_("Bad .mask/.fmask directive"));
15201 --input_line_pointer;
15202 demand_empty_rest_of_line ();
15203 return;
15204 }
252b5132 15205
ecb4347a
DJ
15206 off = get_absolute_expression ();
15207
15208 if (reg_type == 'F')
15209 {
15210 cur_proc_ptr->fpreg_mask = mask;
15211 cur_proc_ptr->fpreg_offset = off;
15212 }
15213 else
15214 {
15215 cur_proc_ptr->reg_mask = mask;
15216 cur_proc_ptr->reg_offset = off;
15217 }
15218
15219 demand_empty_rest_of_line ();
252b5132
RH
15220 }
15221 else
ecb4347a
DJ
15222#endif /* OBJ_ELF */
15223 s_ignore (reg_type);
252b5132
RH
15224}
15225
316f5878
RS
15226/* A table describing all the processors gas knows about. Names are
15227 matched in the order listed.
e7af610e 15228
316f5878
RS
15229 To ease comparison, please keep this table in the same order as
15230 gcc's mips_cpu_info_table[]. */
e972090a
NC
15231static const struct mips_cpu_info mips_cpu_info_table[] =
15232{
316f5878 15233 /* Entries for generic ISAs */
ad3fea08
TS
15234 { "mips1", MIPS_CPU_IS_ISA, ISA_MIPS1, CPU_R3000 },
15235 { "mips2", MIPS_CPU_IS_ISA, ISA_MIPS2, CPU_R6000 },
15236 { "mips3", MIPS_CPU_IS_ISA, ISA_MIPS3, CPU_R4000 },
15237 { "mips4", MIPS_CPU_IS_ISA, ISA_MIPS4, CPU_R8000 },
15238 { "mips5", MIPS_CPU_IS_ISA, ISA_MIPS5, CPU_MIPS5 },
15239 { "mips32", MIPS_CPU_IS_ISA, ISA_MIPS32, CPU_MIPS32 },
15240 { "mips32r2", MIPS_CPU_IS_ISA, ISA_MIPS32R2, CPU_MIPS32R2 },
15241 { "mips64", MIPS_CPU_IS_ISA, ISA_MIPS64, CPU_MIPS64 },
15242 { "mips64r2", MIPS_CPU_IS_ISA, ISA_MIPS64R2, CPU_MIPS64R2 },
316f5878
RS
15243
15244 /* MIPS I */
ad3fea08
TS
15245 { "r3000", 0, ISA_MIPS1, CPU_R3000 },
15246 { "r2000", 0, ISA_MIPS1, CPU_R3000 },
15247 { "r3900", 0, ISA_MIPS1, CPU_R3900 },
316f5878
RS
15248
15249 /* MIPS II */
ad3fea08 15250 { "r6000", 0, ISA_MIPS2, CPU_R6000 },
316f5878
RS
15251
15252 /* MIPS III */
ad3fea08
TS
15253 { "r4000", 0, ISA_MIPS3, CPU_R4000 },
15254 { "r4010", 0, ISA_MIPS2, CPU_R4010 },
15255 { "vr4100", 0, ISA_MIPS3, CPU_VR4100 },
15256 { "vr4111", 0, ISA_MIPS3, CPU_R4111 },
15257 { "vr4120", 0, ISA_MIPS3, CPU_VR4120 },
15258 { "vr4130", 0, ISA_MIPS3, CPU_VR4120 },
15259 { "vr4181", 0, ISA_MIPS3, CPU_R4111 },
15260 { "vr4300", 0, ISA_MIPS3, CPU_R4300 },
15261 { "r4400", 0, ISA_MIPS3, CPU_R4400 },
15262 { "r4600", 0, ISA_MIPS3, CPU_R4600 },
15263 { "orion", 0, ISA_MIPS3, CPU_R4600 },
15264 { "r4650", 0, ISA_MIPS3, CPU_R4650 },
b15591bb
AN
15265 /* ST Microelectronics Loongson 2E and 2F cores */
15266 { "loongson2e", 0, ISA_MIPS3, CPU_LOONGSON_2E },
15267 { "loongson2f", 0, ISA_MIPS3, CPU_LOONGSON_2F },
316f5878
RS
15268
15269 /* MIPS IV */
ad3fea08
TS
15270 { "r8000", 0, ISA_MIPS4, CPU_R8000 },
15271 { "r10000", 0, ISA_MIPS4, CPU_R10000 },
15272 { "r12000", 0, ISA_MIPS4, CPU_R12000 },
3aa3176b
TS
15273 { "r14000", 0, ISA_MIPS4, CPU_R14000 },
15274 { "r16000", 0, ISA_MIPS4, CPU_R16000 },
ad3fea08
TS
15275 { "vr5000", 0, ISA_MIPS4, CPU_R5000 },
15276 { "vr5400", 0, ISA_MIPS4, CPU_VR5400 },
15277 { "vr5500", 0, ISA_MIPS4, CPU_VR5500 },
15278 { "rm5200", 0, ISA_MIPS4, CPU_R5000 },
15279 { "rm5230", 0, ISA_MIPS4, CPU_R5000 },
15280 { "rm5231", 0, ISA_MIPS4, CPU_R5000 },
15281 { "rm5261", 0, ISA_MIPS4, CPU_R5000 },
15282 { "rm5721", 0, ISA_MIPS4, CPU_R5000 },
15283 { "rm7000", 0, ISA_MIPS4, CPU_RM7000 },
15284 { "rm9000", 0, ISA_MIPS4, CPU_RM9000 },
316f5878
RS
15285
15286 /* MIPS 32 */
ad3fea08
TS
15287 { "4kc", 0, ISA_MIPS32, CPU_MIPS32 },
15288 { "4km", 0, ISA_MIPS32, CPU_MIPS32 },
15289 { "4kp", 0, ISA_MIPS32, CPU_MIPS32 },
15290 { "4ksc", MIPS_CPU_ASE_SMARTMIPS, ISA_MIPS32, CPU_MIPS32 },
15291
15292 /* MIPS 32 Release 2 */
15293 { "4kec", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15294 { "4kem", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15295 { "4kep", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15296 { "4ksd", MIPS_CPU_ASE_SMARTMIPS, ISA_MIPS32R2, CPU_MIPS32R2 },
15297 { "m4k", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15298 { "m4kp", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
ad3fea08 15299 { "24kc", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951 15300 { "24kf2_1", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
ad3fea08 15301 { "24kf", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15302 { "24kf1_1", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15303 /* Deprecated forms of the above. */
15304 { "24kfx", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
ad3fea08 15305 { "24kx", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f 15306 /* 24KE is a 24K with DSP ASE, other ASEs are optional. */
ad3fea08 15307 { "24kec", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951 15308 { "24kef2_1", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
ad3fea08 15309 { "24kef", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15310 { "24kef1_1", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
15311 /* Deprecated forms of the above. */
15312 { "24kefx", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
65263ce3 15313 { "24kex", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f 15314 /* 34K is a 24K with DSP and MT ASE, other ASEs are optional. */
a360e743
TS
15315 { "34kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15316 ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15317 { "34kf2_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15318 ISA_MIPS32R2, CPU_MIPS32R2 },
a360e743
TS
15319 { "34kf", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15320 ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15321 { "34kf1_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15322 ISA_MIPS32R2, CPU_MIPS32R2 },
15323 /* Deprecated forms of the above. */
15324 { "34kfx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15325 ISA_MIPS32R2, CPU_MIPS32R2 },
a360e743
TS
15326 { "34kx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15327 ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f
TS
15328 /* 74K with DSP and DSPR2 ASE, other ASEs are optional. */
15329 { "74kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15330 ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15331 { "74kf2_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15332 ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f
TS
15333 { "74kf", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15334 ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15335 { "74kf1_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15336 ISA_MIPS32R2, CPU_MIPS32R2 },
15337 { "74kf3_2", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15338 ISA_MIPS32R2, CPU_MIPS32R2 },
15339 /* Deprecated forms of the above. */
15340 { "74kfx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15341 ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f
TS
15342 { "74kx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15343 ISA_MIPS32R2, CPU_MIPS32R2 },
32b26a03 15344
316f5878 15345 /* MIPS 64 */
ad3fea08
TS
15346 { "5kc", 0, ISA_MIPS64, CPU_MIPS64 },
15347 { "5kf", 0, ISA_MIPS64, CPU_MIPS64 },
15348 { "20kc", MIPS_CPU_ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
7764b395 15349 { "25kf", MIPS_CPU_ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
ad3fea08 15350
c7a23324 15351 /* Broadcom SB-1 CPU core */
65263ce3
TS
15352 { "sb1", MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
15353 ISA_MIPS64, CPU_SB1 },
1e85aad8
JW
15354 /* Broadcom SB-1A CPU core */
15355 { "sb1a", MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
15356 ISA_MIPS64, CPU_SB1 },
e7af610e 15357
ed163775
MR
15358 /* MIPS 64 Release 2 */
15359
967344c6
AN
15360 /* Cavium Networks Octeon CPU core */
15361 { "octeon", 0, ISA_MIPS64R2, CPU_OCTEON },
15362
52b6b6b9
JM
15363 /* RMI Xlr */
15364 { "xlr", 0, ISA_MIPS64, CPU_XLR },
15365
316f5878
RS
15366 /* End marker */
15367 { NULL, 0, 0, 0 }
15368};
e7af610e 15369
84ea6cf2 15370
316f5878
RS
15371/* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
15372 with a final "000" replaced by "k". Ignore case.
e7af610e 15373
316f5878 15374 Note: this function is shared between GCC and GAS. */
c6c98b38 15375
b34976b6 15376static bfd_boolean
17a2f251 15377mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
316f5878
RS
15378{
15379 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
15380 given++, canonical++;
15381
15382 return ((*given == 0 && *canonical == 0)
15383 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
15384}
15385
15386
15387/* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
15388 CPU name. We've traditionally allowed a lot of variation here.
15389
15390 Note: this function is shared between GCC and GAS. */
15391
b34976b6 15392static bfd_boolean
17a2f251 15393mips_matching_cpu_name_p (const char *canonical, const char *given)
316f5878
RS
15394{
15395 /* First see if the name matches exactly, or with a final "000"
15396 turned into "k". */
15397 if (mips_strict_matching_cpu_name_p (canonical, given))
b34976b6 15398 return TRUE;
316f5878
RS
15399
15400 /* If not, try comparing based on numerical designation alone.
15401 See if GIVEN is an unadorned number, or 'r' followed by a number. */
15402 if (TOLOWER (*given) == 'r')
15403 given++;
15404 if (!ISDIGIT (*given))
b34976b6 15405 return FALSE;
316f5878
RS
15406
15407 /* Skip over some well-known prefixes in the canonical name,
15408 hoping to find a number there too. */
15409 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
15410 canonical += 2;
15411 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
15412 canonical += 2;
15413 else if (TOLOWER (canonical[0]) == 'r')
15414 canonical += 1;
15415
15416 return mips_strict_matching_cpu_name_p (canonical, given);
15417}
15418
15419
15420/* Parse an option that takes the name of a processor as its argument.
15421 OPTION is the name of the option and CPU_STRING is the argument.
15422 Return the corresponding processor enumeration if the CPU_STRING is
15423 recognized, otherwise report an error and return null.
15424
15425 A similar function exists in GCC. */
e7af610e
NC
15426
15427static const struct mips_cpu_info *
17a2f251 15428mips_parse_cpu (const char *option, const char *cpu_string)
e7af610e 15429{
316f5878 15430 const struct mips_cpu_info *p;
e7af610e 15431
316f5878
RS
15432 /* 'from-abi' selects the most compatible architecture for the given
15433 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
15434 EABIs, we have to decide whether we're using the 32-bit or 64-bit
15435 version. Look first at the -mgp options, if given, otherwise base
15436 the choice on MIPS_DEFAULT_64BIT.
e7af610e 15437
316f5878
RS
15438 Treat NO_ABI like the EABIs. One reason to do this is that the
15439 plain 'mips' and 'mips64' configs have 'from-abi' as their default
15440 architecture. This code picks MIPS I for 'mips' and MIPS III for
15441 'mips64', just as we did in the days before 'from-abi'. */
15442 if (strcasecmp (cpu_string, "from-abi") == 0)
15443 {
15444 if (ABI_NEEDS_32BIT_REGS (mips_abi))
15445 return mips_cpu_info_from_isa (ISA_MIPS1);
15446
15447 if (ABI_NEEDS_64BIT_REGS (mips_abi))
15448 return mips_cpu_info_from_isa (ISA_MIPS3);
15449
15450 if (file_mips_gp32 >= 0)
15451 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
15452
15453 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
15454 ? ISA_MIPS3
15455 : ISA_MIPS1);
15456 }
15457
15458 /* 'default' has traditionally been a no-op. Probably not very useful. */
15459 if (strcasecmp (cpu_string, "default") == 0)
15460 return 0;
15461
15462 for (p = mips_cpu_info_table; p->name != 0; p++)
15463 if (mips_matching_cpu_name_p (p->name, cpu_string))
15464 return p;
15465
15466 as_bad ("Bad value (%s) for %s", cpu_string, option);
15467 return 0;
e7af610e
NC
15468}
15469
316f5878
RS
15470/* Return the canonical processor information for ISA (a member of the
15471 ISA_MIPS* enumeration). */
15472
e7af610e 15473static const struct mips_cpu_info *
17a2f251 15474mips_cpu_info_from_isa (int isa)
e7af610e
NC
15475{
15476 int i;
15477
15478 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
ad3fea08 15479 if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA)
316f5878 15480 && isa == mips_cpu_info_table[i].isa)
e7af610e
NC
15481 return (&mips_cpu_info_table[i]);
15482
e972090a 15483 return NULL;
e7af610e 15484}
fef14a42
TS
15485
15486static const struct mips_cpu_info *
17a2f251 15487mips_cpu_info_from_arch (int arch)
fef14a42
TS
15488{
15489 int i;
15490
15491 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
15492 if (arch == mips_cpu_info_table[i].cpu)
15493 return (&mips_cpu_info_table[i]);
15494
15495 return NULL;
15496}
316f5878
RS
15497\f
15498static void
17a2f251 15499show (FILE *stream, const char *string, int *col_p, int *first_p)
316f5878
RS
15500{
15501 if (*first_p)
15502 {
15503 fprintf (stream, "%24s", "");
15504 *col_p = 24;
15505 }
15506 else
15507 {
15508 fprintf (stream, ", ");
15509 *col_p += 2;
15510 }
e7af610e 15511
316f5878
RS
15512 if (*col_p + strlen (string) > 72)
15513 {
15514 fprintf (stream, "\n%24s", "");
15515 *col_p = 24;
15516 }
15517
15518 fprintf (stream, "%s", string);
15519 *col_p += strlen (string);
15520
15521 *first_p = 0;
15522}
15523
15524void
17a2f251 15525md_show_usage (FILE *stream)
e7af610e 15526{
316f5878
RS
15527 int column, first;
15528 size_t i;
15529
15530 fprintf (stream, _("\
15531MIPS options:\n\
316f5878
RS
15532-EB generate big endian output\n\
15533-EL generate little endian output\n\
15534-g, -g2 do not remove unneeded NOPs or swap branches\n\
15535-G NUM allow referencing objects up to NUM bytes\n\
15536 implicitly with the gp register [default 8]\n"));
15537 fprintf (stream, _("\
15538-mips1 generate MIPS ISA I instructions\n\
15539-mips2 generate MIPS ISA II instructions\n\
15540-mips3 generate MIPS ISA III instructions\n\
15541-mips4 generate MIPS ISA IV instructions\n\
15542-mips5 generate MIPS ISA V instructions\n\
15543-mips32 generate MIPS32 ISA instructions\n\
af7ee8bf 15544-mips32r2 generate MIPS32 release 2 ISA instructions\n\
316f5878 15545-mips64 generate MIPS64 ISA instructions\n\
5f74bc13 15546-mips64r2 generate MIPS64 release 2 ISA instructions\n\
316f5878
RS
15547-march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
15548
15549 first = 1;
e7af610e
NC
15550
15551 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
316f5878
RS
15552 show (stream, mips_cpu_info_table[i].name, &column, &first);
15553 show (stream, "from-abi", &column, &first);
15554 fputc ('\n', stream);
e7af610e 15555
316f5878
RS
15556 fprintf (stream, _("\
15557-mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
15558-no-mCPU don't generate code specific to CPU.\n\
15559 For -mCPU and -no-mCPU, CPU must be one of:\n"));
15560
15561 first = 1;
15562
15563 show (stream, "3900", &column, &first);
15564 show (stream, "4010", &column, &first);
15565 show (stream, "4100", &column, &first);
15566 show (stream, "4650", &column, &first);
15567 fputc ('\n', stream);
15568
15569 fprintf (stream, _("\
15570-mips16 generate mips16 instructions\n\
15571-no-mips16 do not generate mips16 instructions\n"));
15572 fprintf (stream, _("\
e16bfa71
TS
15573-msmartmips generate smartmips instructions\n\
15574-mno-smartmips do not generate smartmips instructions\n"));
15575 fprintf (stream, _("\
74cd071d
CF
15576-mdsp generate DSP instructions\n\
15577-mno-dsp do not generate DSP instructions\n"));
15578 fprintf (stream, _("\
8b082fb1
TS
15579-mdspr2 generate DSP R2 instructions\n\
15580-mno-dspr2 do not generate DSP R2 instructions\n"));
15581 fprintf (stream, _("\
ef2e4d86
CF
15582-mmt generate MT instructions\n\
15583-mno-mt do not generate MT instructions\n"));
15584 fprintf (stream, _("\
d766e8ec 15585-mfix-vr4120 work around certain VR4120 errata\n\
7d8e00cf 15586-mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
6a32d874 15587-mfix-24k insert a nop after ERET and DERET instructions\n\
316f5878
RS
15588-mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
15589-mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
aed1a261 15590-msym32 assume all symbols have 32-bit values\n\
316f5878
RS
15591-O0 remove unneeded NOPs, do not swap branches\n\
15592-O remove unneeded NOPs and swap branches\n\
316f5878
RS
15593--trap, --no-break trap exception on div by 0 and mult overflow\n\
15594--break, --no-trap break exception on div by 0 and mult overflow\n"));
037b32b9
AN
15595 fprintf (stream, _("\
15596-mhard-float allow floating-point instructions\n\
15597-msoft-float do not allow floating-point instructions\n\
15598-msingle-float only allow 32-bit floating-point operations\n\
15599-mdouble-float allow 32-bit and 64-bit floating-point operations\n\
15600--[no-]construct-floats [dis]allow floating point values to be constructed\n"
15601 ));
316f5878
RS
15602#ifdef OBJ_ELF
15603 fprintf (stream, _("\
15604-KPIC, -call_shared generate SVR4 position independent code\n\
861fb55a 15605-call_nonpic generate non-PIC code that can operate with DSOs\n\
0c000745 15606-mvxworks-pic generate VxWorks position independent code\n\
861fb55a 15607-non_shared do not generate code that can operate with DSOs\n\
316f5878 15608-xgot assume a 32 bit GOT\n\
dcd410fe 15609-mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
bbe506e8 15610-mshared, -mno-shared disable/enable .cpload optimization for\n\
d821e36b 15611 position dependent (non shared) code\n\
316f5878
RS
15612-mabi=ABI create ABI conformant object file for:\n"));
15613
15614 first = 1;
15615
15616 show (stream, "32", &column, &first);
15617 show (stream, "o64", &column, &first);
15618 show (stream, "n32", &column, &first);
15619 show (stream, "64", &column, &first);
15620 show (stream, "eabi", &column, &first);
15621
15622 fputc ('\n', stream);
15623
15624 fprintf (stream, _("\
15625-32 create o32 ABI object file (default)\n\
15626-n32 create n32 ABI object file\n\
15627-64 create 64 ABI object file\n"));
15628#endif
e7af610e 15629}
14e777e0
KB
15630
15631enum dwarf2_format
413a266c 15632mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
14e777e0 15633{
369943fe 15634 if (HAVE_64BIT_SYMBOLS)
1de5b6a1
AO
15635 {
15636#ifdef TE_IRIX
15637 return dwarf2_format_64bit_irix;
15638#else
15639 return dwarf2_format_64bit;
15640#endif
15641 }
14e777e0
KB
15642 else
15643 return dwarf2_format_32bit;
15644}
73369e65
EC
15645
15646int
15647mips_dwarf2_addr_size (void)
15648{
6b6b3450 15649 if (HAVE_64BIT_OBJECTS)
73369e65 15650 return 8;
73369e65
EC
15651 else
15652 return 4;
15653}
5862107c
EC
15654
15655/* Standard calling conventions leave the CFA at SP on entry. */
15656void
15657mips_cfi_frame_initial_instructions (void)
15658{
15659 cfi_add_CFA_def_cfa_register (SP);
15660}
15661
707bfff6
TS
15662int
15663tc_mips_regname_to_dw2regnum (char *regname)
15664{
15665 unsigned int regnum = -1;
15666 unsigned int reg;
15667
15668 if (reg_lookup (&regname, RTYPE_GP | RTYPE_NUM, &reg))
15669 regnum = reg;
15670
15671 return regnum;
15672}
This page took 1.829602 seconds and 4 git commands to generate.