2009-04-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
[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
4a6a3df4
AO
763/* We don't relax branches by default, since this causes us to expand
764 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
765 fail to compute the offset before expanding the macro to the most
766 efficient expansion. */
767
768static int mips_relax_branch;
252b5132 769\f
4d7206a2
RS
770/* The expansion of many macros depends on the type of symbol that
771 they refer to. For example, when generating position-dependent code,
772 a macro that refers to a symbol may have two different expansions,
773 one which uses GP-relative addresses and one which uses absolute
774 addresses. When generating SVR4-style PIC, a macro may have
775 different expansions for local and global symbols.
776
777 We handle these situations by generating both sequences and putting
778 them in variant frags. In position-dependent code, the first sequence
779 will be the GP-relative one and the second sequence will be the
780 absolute one. In SVR4 PIC, the first sequence will be for global
781 symbols and the second will be for local symbols.
782
584892a6
RS
783 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
784 SECOND are the lengths of the two sequences in bytes. These fields
785 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
786 the subtype has the following flags:
4d7206a2 787
584892a6
RS
788 RELAX_USE_SECOND
789 Set if it has been decided that we should use the second
790 sequence instead of the first.
791
792 RELAX_SECOND_LONGER
793 Set in the first variant frag if the macro's second implementation
794 is longer than its first. This refers to the macro as a whole,
795 not an individual relaxation.
796
797 RELAX_NOMACRO
798 Set in the first variant frag if the macro appeared in a .set nomacro
799 block and if one alternative requires a warning but the other does not.
800
801 RELAX_DELAY_SLOT
802 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
803 delay slot.
4d7206a2
RS
804
805 The frag's "opcode" points to the first fixup for relaxable code.
806
807 Relaxable macros are generated using a sequence such as:
808
809 relax_start (SYMBOL);
810 ... generate first expansion ...
811 relax_switch ();
812 ... generate second expansion ...
813 relax_end ();
814
815 The code and fixups for the unwanted alternative are discarded
816 by md_convert_frag. */
584892a6 817#define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
4d7206a2 818
584892a6
RS
819#define RELAX_FIRST(X) (((X) >> 8) & 0xff)
820#define RELAX_SECOND(X) ((X) & 0xff)
821#define RELAX_USE_SECOND 0x10000
822#define RELAX_SECOND_LONGER 0x20000
823#define RELAX_NOMACRO 0x40000
824#define RELAX_DELAY_SLOT 0x80000
252b5132 825
4a6a3df4
AO
826/* Branch without likely bit. If label is out of range, we turn:
827
828 beq reg1, reg2, label
829 delay slot
830
831 into
832
833 bne reg1, reg2, 0f
834 nop
835 j label
836 0: delay slot
837
838 with the following opcode replacements:
839
840 beq <-> bne
841 blez <-> bgtz
842 bltz <-> bgez
843 bc1f <-> bc1t
844
845 bltzal <-> bgezal (with jal label instead of j label)
846
847 Even though keeping the delay slot instruction in the delay slot of
848 the branch would be more efficient, it would be very tricky to do
849 correctly, because we'd have to introduce a variable frag *after*
850 the delay slot instruction, and expand that instead. Let's do it
851 the easy way for now, even if the branch-not-taken case now costs
852 one additional instruction. Out-of-range branches are not supposed
853 to be common, anyway.
854
855 Branch likely. If label is out of range, we turn:
856
857 beql reg1, reg2, label
858 delay slot (annulled if branch not taken)
859
860 into
861
862 beql reg1, reg2, 1f
863 nop
864 beql $0, $0, 2f
865 nop
866 1: j[al] label
867 delay slot (executed only if branch taken)
868 2:
869
870 It would be possible to generate a shorter sequence by losing the
871 likely bit, generating something like:
b34976b6 872
4a6a3df4
AO
873 bne reg1, reg2, 0f
874 nop
875 j[al] label
876 delay slot (executed only if branch taken)
877 0:
878
879 beql -> bne
880 bnel -> beq
881 blezl -> bgtz
882 bgtzl -> blez
883 bltzl -> bgez
884 bgezl -> bltz
885 bc1fl -> bc1t
886 bc1tl -> bc1f
887
888 bltzall -> bgezal (with jal label instead of j label)
889 bgezall -> bltzal (ditto)
890
891
892 but it's not clear that it would actually improve performance. */
af6ae2ad 893#define RELAX_BRANCH_ENCODE(uncond, likely, link, toofar) \
4a6a3df4
AO
894 ((relax_substateT) \
895 (0xc0000000 \
896 | ((toofar) ? 1 : 0) \
897 | ((link) ? 2 : 0) \
898 | ((likely) ? 4 : 0) \
af6ae2ad 899 | ((uncond) ? 8 : 0)))
4a6a3df4 900#define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
4a6a3df4
AO
901#define RELAX_BRANCH_UNCOND(i) (((i) & 8) != 0)
902#define RELAX_BRANCH_LIKELY(i) (((i) & 4) != 0)
903#define RELAX_BRANCH_LINK(i) (((i) & 2) != 0)
ae6063d4 904#define RELAX_BRANCH_TOOFAR(i) (((i) & 1) != 0)
4a6a3df4 905
252b5132
RH
906/* For mips16 code, we use an entirely different form of relaxation.
907 mips16 supports two versions of most instructions which take
908 immediate values: a small one which takes some small value, and a
909 larger one which takes a 16 bit value. Since branches also follow
910 this pattern, relaxing these values is required.
911
912 We can assemble both mips16 and normal MIPS code in a single
913 object. Therefore, we need to support this type of relaxation at
914 the same time that we support the relaxation described above. We
915 use the high bit of the subtype field to distinguish these cases.
916
917 The information we store for this type of relaxation is the
918 argument code found in the opcode file for this relocation, whether
919 the user explicitly requested a small or extended form, and whether
920 the relocation is in a jump or jal delay slot. That tells us the
921 size of the value, and how it should be stored. We also store
922 whether the fragment is considered to be extended or not. We also
923 store whether this is known to be a branch to a different section,
924 whether we have tried to relax this frag yet, and whether we have
925 ever extended a PC relative fragment because of a shift count. */
926#define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
927 (0x80000000 \
928 | ((type) & 0xff) \
929 | ((small) ? 0x100 : 0) \
930 | ((ext) ? 0x200 : 0) \
931 | ((dslot) ? 0x400 : 0) \
932 | ((jal_dslot) ? 0x800 : 0))
4a6a3df4 933#define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
252b5132
RH
934#define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
935#define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
936#define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
937#define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
938#define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
939#define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
940#define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
941#define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
942#define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
943#define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
944#define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
885add95
CD
945
946/* Is the given value a sign-extended 32-bit value? */
947#define IS_SEXT_32BIT_NUM(x) \
948 (((x) &~ (offsetT) 0x7fffffff) == 0 \
949 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
950
951/* Is the given value a sign-extended 16-bit value? */
952#define IS_SEXT_16BIT_NUM(x) \
953 (((x) &~ (offsetT) 0x7fff) == 0 \
954 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
955
2051e8c4
MR
956/* Is the given value a zero-extended 32-bit value? Or a negated one? */
957#define IS_ZEXT_32BIT_NUM(x) \
958 (((x) &~ (offsetT) 0xffffffff) == 0 \
959 || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
960
bf12938e
RS
961/* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
962 VALUE << SHIFT. VALUE is evaluated exactly once. */
963#define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
964 (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
965 | (((VALUE) & (MASK)) << (SHIFT)))
966
967/* Extract bits MASK << SHIFT from STRUCT and shift them right
968 SHIFT places. */
969#define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
970 (((STRUCT) >> (SHIFT)) & (MASK))
971
972/* Change INSN's opcode so that the operand given by FIELD has value VALUE.
973 INSN is a mips_cl_insn structure and VALUE is evaluated exactly once.
974
975 include/opcode/mips.h specifies operand fields using the macros
976 OP_MASK_<FIELD> and OP_SH_<FIELD>. The MIPS16 equivalents start
977 with "MIPS16OP" instead of "OP". */
978#define INSERT_OPERAND(FIELD, INSN, VALUE) \
979 INSERT_BITS ((INSN).insn_opcode, VALUE, OP_MASK_##FIELD, OP_SH_##FIELD)
980#define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
981 INSERT_BITS ((INSN).insn_opcode, VALUE, \
982 MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
983
984/* Extract the operand given by FIELD from mips_cl_insn INSN. */
985#define EXTRACT_OPERAND(FIELD, INSN) \
986 EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD)
987#define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
988 EXTRACT_BITS ((INSN).insn_opcode, \
989 MIPS16OP_MASK_##FIELD, \
990 MIPS16OP_SH_##FIELD)
4d7206a2
RS
991\f
992/* Global variables used when generating relaxable macros. See the
993 comment above RELAX_ENCODE for more details about how relaxation
994 is used. */
995static struct {
996 /* 0 if we're not emitting a relaxable macro.
997 1 if we're emitting the first of the two relaxation alternatives.
998 2 if we're emitting the second alternative. */
999 int sequence;
1000
1001 /* The first relaxable fixup in the current frag. (In other words,
1002 the first fixup that refers to relaxable code.) */
1003 fixS *first_fixup;
1004
1005 /* sizes[0] says how many bytes of the first alternative are stored in
1006 the current frag. Likewise sizes[1] for the second alternative. */
1007 unsigned int sizes[2];
1008
1009 /* The symbol on which the choice of sequence depends. */
1010 symbolS *symbol;
1011} mips_relax;
252b5132 1012\f
584892a6
RS
1013/* Global variables used to decide whether a macro needs a warning. */
1014static struct {
1015 /* True if the macro is in a branch delay slot. */
1016 bfd_boolean delay_slot_p;
1017
1018 /* For relaxable macros, sizes[0] is the length of the first alternative
1019 in bytes and sizes[1] is the length of the second alternative.
1020 For non-relaxable macros, both elements give the length of the
1021 macro in bytes. */
1022 unsigned int sizes[2];
1023
1024 /* The first variant frag for this macro. */
1025 fragS *first_frag;
1026} mips_macro_warning;
1027\f
252b5132
RH
1028/* Prototypes for static functions. */
1029
17a2f251 1030#define internalError() \
252b5132 1031 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
252b5132
RH
1032
1033enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
1034
b34976b6 1035static void append_insn
4d7206a2 1036 (struct mips_cl_insn *ip, expressionS *p, bfd_reloc_code_real_type *r);
7d10b47d 1037static void mips_no_prev_insn (void);
b34976b6 1038static void mips16_macro_build
67c0d1eb
RS
1039 (expressionS *, const char *, const char *, va_list);
1040static void load_register (int, expressionS *, int);
584892a6
RS
1041static void macro_start (void);
1042static void macro_end (void);
17a2f251
TS
1043static void macro (struct mips_cl_insn * ip);
1044static void mips16_macro (struct mips_cl_insn * ip);
252b5132 1045#ifdef LOSING_COMPILER
17a2f251 1046static void macro2 (struct mips_cl_insn * ip);
252b5132 1047#endif
17a2f251
TS
1048static void mips_ip (char *str, struct mips_cl_insn * ip);
1049static void mips16_ip (char *str, struct mips_cl_insn * ip);
b34976b6 1050static void mips16_immed
17a2f251
TS
1051 (char *, unsigned int, int, offsetT, bfd_boolean, bfd_boolean, bfd_boolean,
1052 unsigned long *, bfd_boolean *, unsigned short *);
5e0116d5 1053static size_t my_getSmallExpression
17a2f251
TS
1054 (expressionS *, bfd_reloc_code_real_type *, char *);
1055static void my_getExpression (expressionS *, char *);
1056static void s_align (int);
1057static void s_change_sec (int);
1058static void s_change_section (int);
1059static void s_cons (int);
1060static void s_float_cons (int);
1061static void s_mips_globl (int);
1062static void s_option (int);
1063static void s_mipsset (int);
1064static void s_abicalls (int);
1065static void s_cpload (int);
1066static void s_cpsetup (int);
1067static void s_cplocal (int);
1068static void s_cprestore (int);
1069static void s_cpreturn (int);
741d6ea8
JM
1070static void s_dtprelword (int);
1071static void s_dtpreldword (int);
17a2f251
TS
1072static void s_gpvalue (int);
1073static void s_gpword (int);
1074static void s_gpdword (int);
1075static void s_cpadd (int);
1076static void s_insn (int);
1077static void md_obj_begin (void);
1078static void md_obj_end (void);
1079static void s_mips_ent (int);
1080static void s_mips_end (int);
1081static void s_mips_frame (int);
1082static void s_mips_mask (int reg_type);
1083static void s_mips_stab (int);
1084static void s_mips_weakext (int);
1085static void s_mips_file (int);
1086static void s_mips_loc (int);
1087static bfd_boolean pic_need_relax (symbolS *, asection *);
4a6a3df4 1088static int relaxed_branch_length (fragS *, asection *, int);
17a2f251 1089static int validate_mips_insn (const struct mips_opcode *);
e7af610e
NC
1090
1091/* Table and functions used to map between CPU/ISA names, and
1092 ISA levels, and CPU numbers. */
1093
e972090a
NC
1094struct mips_cpu_info
1095{
e7af610e 1096 const char *name; /* CPU or ISA name. */
ad3fea08 1097 int flags; /* ASEs available, or ISA flag. */
e7af610e
NC
1098 int isa; /* ISA level. */
1099 int cpu; /* CPU number (default CPU if ISA). */
1100};
1101
ad3fea08
TS
1102#define MIPS_CPU_IS_ISA 0x0001 /* Is this an ISA? (If 0, a CPU.) */
1103#define MIPS_CPU_ASE_SMARTMIPS 0x0002 /* CPU implements SmartMIPS ASE */
1104#define MIPS_CPU_ASE_DSP 0x0004 /* CPU implements DSP ASE */
1105#define MIPS_CPU_ASE_MT 0x0008 /* CPU implements MT ASE */
1106#define MIPS_CPU_ASE_MIPS3D 0x0010 /* CPU implements MIPS-3D ASE */
1107#define MIPS_CPU_ASE_MDMX 0x0020 /* CPU implements MDMX ASE */
8b082fb1 1108#define MIPS_CPU_ASE_DSPR2 0x0040 /* CPU implements DSP R2 ASE */
ad3fea08 1109
17a2f251
TS
1110static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1111static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1112static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
252b5132
RH
1113\f
1114/* Pseudo-op table.
1115
1116 The following pseudo-ops from the Kane and Heinrich MIPS book
1117 should be defined here, but are currently unsupported: .alias,
1118 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1119
1120 The following pseudo-ops from the Kane and Heinrich MIPS book are
1121 specific to the type of debugging information being generated, and
1122 should be defined by the object format: .aent, .begin, .bend,
1123 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1124 .vreg.
1125
1126 The following pseudo-ops from the Kane and Heinrich MIPS book are
1127 not MIPS CPU specific, but are also not specific to the object file
1128 format. This file is probably the best place to define them, but
d84bcf09 1129 they are not currently supported: .asm0, .endr, .lab, .struct. */
252b5132 1130
e972090a
NC
1131static const pseudo_typeS mips_pseudo_table[] =
1132{
beae10d5 1133 /* MIPS specific pseudo-ops. */
252b5132
RH
1134 {"option", s_option, 0},
1135 {"set", s_mipsset, 0},
1136 {"rdata", s_change_sec, 'r'},
1137 {"sdata", s_change_sec, 's'},
1138 {"livereg", s_ignore, 0},
1139 {"abicalls", s_abicalls, 0},
1140 {"cpload", s_cpload, 0},
6478892d
TS
1141 {"cpsetup", s_cpsetup, 0},
1142 {"cplocal", s_cplocal, 0},
252b5132 1143 {"cprestore", s_cprestore, 0},
6478892d 1144 {"cpreturn", s_cpreturn, 0},
741d6ea8
JM
1145 {"dtprelword", s_dtprelword, 0},
1146 {"dtpreldword", s_dtpreldword, 0},
6478892d 1147 {"gpvalue", s_gpvalue, 0},
252b5132 1148 {"gpword", s_gpword, 0},
10181a0d 1149 {"gpdword", s_gpdword, 0},
252b5132
RH
1150 {"cpadd", s_cpadd, 0},
1151 {"insn", s_insn, 0},
1152
beae10d5 1153 /* Relatively generic pseudo-ops that happen to be used on MIPS
252b5132 1154 chips. */
38a57ae7 1155 {"asciiz", stringer, 8 + 1},
252b5132
RH
1156 {"bss", s_change_sec, 'b'},
1157 {"err", s_err, 0},
1158 {"half", s_cons, 1},
1159 {"dword", s_cons, 3},
1160 {"weakext", s_mips_weakext, 0},
7c752c2a
TS
1161 {"origin", s_org, 0},
1162 {"repeat", s_rept, 0},
252b5132 1163
beae10d5 1164 /* These pseudo-ops are defined in read.c, but must be overridden
252b5132
RH
1165 here for one reason or another. */
1166 {"align", s_align, 0},
1167 {"byte", s_cons, 0},
1168 {"data", s_change_sec, 'd'},
1169 {"double", s_float_cons, 'd'},
1170 {"float", s_float_cons, 'f'},
1171 {"globl", s_mips_globl, 0},
1172 {"global", s_mips_globl, 0},
1173 {"hword", s_cons, 1},
1174 {"int", s_cons, 2},
1175 {"long", s_cons, 2},
1176 {"octa", s_cons, 4},
1177 {"quad", s_cons, 3},
cca86cc8 1178 {"section", s_change_section, 0},
252b5132
RH
1179 {"short", s_cons, 1},
1180 {"single", s_float_cons, 'f'},
1181 {"stabn", s_mips_stab, 'n'},
1182 {"text", s_change_sec, 't'},
1183 {"word", s_cons, 2},
add56521 1184
add56521 1185 { "extern", ecoff_directive_extern, 0},
add56521 1186
43841e91 1187 { NULL, NULL, 0 },
252b5132
RH
1188};
1189
e972090a
NC
1190static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1191{
beae10d5
KH
1192 /* These pseudo-ops should be defined by the object file format.
1193 However, a.out doesn't support them, so we have versions here. */
252b5132
RH
1194 {"aent", s_mips_ent, 1},
1195 {"bgnb", s_ignore, 0},
1196 {"end", s_mips_end, 0},
1197 {"endb", s_ignore, 0},
1198 {"ent", s_mips_ent, 0},
c5dd6aab 1199 {"file", s_mips_file, 0},
252b5132
RH
1200 {"fmask", s_mips_mask, 'F'},
1201 {"frame", s_mips_frame, 0},
c5dd6aab 1202 {"loc", s_mips_loc, 0},
252b5132
RH
1203 {"mask", s_mips_mask, 'R'},
1204 {"verstamp", s_ignore, 0},
43841e91 1205 { NULL, NULL, 0 },
252b5132
RH
1206};
1207
17a2f251 1208extern void pop_insert (const pseudo_typeS *);
252b5132
RH
1209
1210void
17a2f251 1211mips_pop_insert (void)
252b5132
RH
1212{
1213 pop_insert (mips_pseudo_table);
1214 if (! ECOFF_DEBUGGING)
1215 pop_insert (mips_nonecoff_pseudo_table);
1216}
1217\f
1218/* Symbols labelling the current insn. */
1219
e972090a
NC
1220struct insn_label_list
1221{
252b5132
RH
1222 struct insn_label_list *next;
1223 symbolS *label;
1224};
1225
252b5132 1226static struct insn_label_list *free_insn_labels;
742a56fe 1227#define label_list tc_segment_info_data.labels
252b5132 1228
17a2f251 1229static void mips_clear_insn_labels (void);
252b5132
RH
1230
1231static inline void
17a2f251 1232mips_clear_insn_labels (void)
252b5132
RH
1233{
1234 register struct insn_label_list **pl;
a8dbcb85 1235 segment_info_type *si;
252b5132 1236
a8dbcb85
TS
1237 if (now_seg)
1238 {
1239 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1240 ;
1241
1242 si = seg_info (now_seg);
1243 *pl = si->label_list;
1244 si->label_list = NULL;
1245 }
252b5132 1246}
a8dbcb85 1247
252b5132
RH
1248\f
1249static char *expr_end;
1250
1251/* Expressions which appear in instructions. These are set by
1252 mips_ip. */
1253
1254static expressionS imm_expr;
5f74bc13 1255static expressionS imm2_expr;
252b5132
RH
1256static expressionS offset_expr;
1257
1258/* Relocs associated with imm_expr and offset_expr. */
1259
f6688943
TS
1260static bfd_reloc_code_real_type imm_reloc[3]
1261 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1262static bfd_reloc_code_real_type offset_reloc[3]
1263 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 1264
252b5132
RH
1265/* These are set by mips16_ip if an explicit extension is used. */
1266
b34976b6 1267static bfd_boolean mips16_small, mips16_ext;
252b5132 1268
7ed4a06a 1269#ifdef OBJ_ELF
ecb4347a
DJ
1270/* The pdr segment for per procedure frame/regmask info. Not used for
1271 ECOFF debugging. */
252b5132
RH
1272
1273static segT pdr_seg;
7ed4a06a 1274#endif
252b5132 1275
e013f690
TS
1276/* The default target format to use. */
1277
1278const char *
17a2f251 1279mips_target_format (void)
e013f690
TS
1280{
1281 switch (OUTPUT_FLAVOR)
1282 {
e013f690
TS
1283 case bfd_target_ecoff_flavour:
1284 return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT;
1285 case bfd_target_coff_flavour:
1286 return "pe-mips";
1287 case bfd_target_elf_flavour:
0a44bf69
RS
1288#ifdef TE_VXWORKS
1289 if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI)
1290 return (target_big_endian
1291 ? "elf32-bigmips-vxworks"
1292 : "elf32-littlemips-vxworks");
1293#endif
e013f690 1294#ifdef TE_TMIPS
cfe86eaa 1295 /* This is traditional mips. */
e013f690 1296 return (target_big_endian
cfe86eaa
TS
1297 ? (HAVE_64BIT_OBJECTS
1298 ? "elf64-tradbigmips"
1299 : (HAVE_NEWABI
1300 ? "elf32-ntradbigmips" : "elf32-tradbigmips"))
1301 : (HAVE_64BIT_OBJECTS
1302 ? "elf64-tradlittlemips"
1303 : (HAVE_NEWABI
1304 ? "elf32-ntradlittlemips" : "elf32-tradlittlemips")));
e013f690
TS
1305#else
1306 return (target_big_endian
cfe86eaa
TS
1307 ? (HAVE_64BIT_OBJECTS
1308 ? "elf64-bigmips"
1309 : (HAVE_NEWABI
1310 ? "elf32-nbigmips" : "elf32-bigmips"))
1311 : (HAVE_64BIT_OBJECTS
1312 ? "elf64-littlemips"
1313 : (HAVE_NEWABI
1314 ? "elf32-nlittlemips" : "elf32-littlemips")));
e013f690
TS
1315#endif
1316 default:
1317 abort ();
1318 return NULL;
1319 }
1320}
1321
1e915849
RS
1322/* Return the length of instruction INSN. */
1323
1324static inline unsigned int
1325insn_length (const struct mips_cl_insn *insn)
1326{
1327 if (!mips_opts.mips16)
1328 return 4;
1329 return insn->mips16_absolute_jump_p || insn->use_extend ? 4 : 2;
1330}
1331
1332/* Initialise INSN from opcode entry MO. Leave its position unspecified. */
1333
1334static void
1335create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
1336{
1337 size_t i;
1338
1339 insn->insn_mo = mo;
1340 insn->use_extend = FALSE;
1341 insn->extend = 0;
1342 insn->insn_opcode = mo->match;
1343 insn->frag = NULL;
1344 insn->where = 0;
1345 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1346 insn->fixp[i] = NULL;
1347 insn->fixed_p = (mips_opts.noreorder > 0);
1348 insn->noreorder_p = (mips_opts.noreorder > 0);
1349 insn->mips16_absolute_jump_p = 0;
1350}
1351
742a56fe
RS
1352/* Record the current MIPS16 mode in now_seg. */
1353
1354static void
1355mips_record_mips16_mode (void)
1356{
1357 segment_info_type *si;
1358
1359 si = seg_info (now_seg);
1360 if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
1361 si->tc_segment_info_data.mips16 = mips_opts.mips16;
1362}
1363
1e915849
RS
1364/* Install INSN at the location specified by its "frag" and "where" fields. */
1365
1366static void
1367install_insn (const struct mips_cl_insn *insn)
1368{
1369 char *f = insn->frag->fr_literal + insn->where;
1370 if (!mips_opts.mips16)
1371 md_number_to_chars (f, insn->insn_opcode, 4);
1372 else if (insn->mips16_absolute_jump_p)
1373 {
1374 md_number_to_chars (f, insn->insn_opcode >> 16, 2);
1375 md_number_to_chars (f + 2, insn->insn_opcode & 0xffff, 2);
1376 }
1377 else
1378 {
1379 if (insn->use_extend)
1380 {
1381 md_number_to_chars (f, 0xf000 | insn->extend, 2);
1382 f += 2;
1383 }
1384 md_number_to_chars (f, insn->insn_opcode, 2);
1385 }
742a56fe 1386 mips_record_mips16_mode ();
1e915849
RS
1387}
1388
1389/* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
1390 and install the opcode in the new location. */
1391
1392static void
1393move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
1394{
1395 size_t i;
1396
1397 insn->frag = frag;
1398 insn->where = where;
1399 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1400 if (insn->fixp[i] != NULL)
1401 {
1402 insn->fixp[i]->fx_frag = frag;
1403 insn->fixp[i]->fx_where = where;
1404 }
1405 install_insn (insn);
1406}
1407
1408/* Add INSN to the end of the output. */
1409
1410static void
1411add_fixed_insn (struct mips_cl_insn *insn)
1412{
1413 char *f = frag_more (insn_length (insn));
1414 move_insn (insn, frag_now, f - frag_now->fr_literal);
1415}
1416
1417/* Start a variant frag and move INSN to the start of the variant part,
1418 marking it as fixed. The other arguments are as for frag_var. */
1419
1420static void
1421add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
1422 relax_substateT subtype, symbolS *symbol, offsetT offset)
1423{
1424 frag_grow (max_chars);
1425 move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
1426 insn->fixed_p = 1;
1427 frag_var (rs_machine_dependent, max_chars, var,
1428 subtype, symbol, offset, NULL);
1429}
1430
1431/* Insert N copies of INSN into the history buffer, starting at
1432 position FIRST. Neither FIRST nor N need to be clipped. */
1433
1434static void
1435insert_into_history (unsigned int first, unsigned int n,
1436 const struct mips_cl_insn *insn)
1437{
1438 if (mips_relax.sequence != 2)
1439 {
1440 unsigned int i;
1441
1442 for (i = ARRAY_SIZE (history); i-- > first;)
1443 if (i >= first + n)
1444 history[i] = history[i - n];
1445 else
1446 history[i] = *insn;
1447 }
1448}
1449
1450/* Emit a nop instruction, recording it in the history buffer. */
1451
1452static void
1453emit_nop (void)
1454{
1455 add_fixed_insn (NOP_INSN);
1456 insert_into_history (0, 1, NOP_INSN);
1457}
1458
71400594
RS
1459/* Initialize vr4120_conflicts. There is a bit of duplication here:
1460 the idea is to make it obvious at a glance that each errata is
1461 included. */
1462
1463static void
1464init_vr4120_conflicts (void)
1465{
1466#define CONFLICT(FIRST, SECOND) \
1467 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
1468
1469 /* Errata 21 - [D]DIV[U] after [D]MACC */
1470 CONFLICT (MACC, DIV);
1471 CONFLICT (DMACC, DIV);
1472
1473 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
1474 CONFLICT (DMULT, DMULT);
1475 CONFLICT (DMULT, DMACC);
1476 CONFLICT (DMACC, DMULT);
1477 CONFLICT (DMACC, DMACC);
1478
1479 /* Errata 24 - MT{LO,HI} after [D]MACC */
1480 CONFLICT (MACC, MTHILO);
1481 CONFLICT (DMACC, MTHILO);
1482
1483 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
1484 instruction is executed immediately after a MACC or DMACC
1485 instruction, the result of [either instruction] is incorrect." */
1486 CONFLICT (MACC, MULT);
1487 CONFLICT (MACC, DMULT);
1488 CONFLICT (DMACC, MULT);
1489 CONFLICT (DMACC, DMULT);
1490
1491 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
1492 executed immediately after a DMULT, DMULTU, DIV, DIVU,
1493 DDIV or DDIVU instruction, the result of the MACC or
1494 DMACC instruction is incorrect.". */
1495 CONFLICT (DMULT, MACC);
1496 CONFLICT (DMULT, DMACC);
1497 CONFLICT (DIV, MACC);
1498 CONFLICT (DIV, DMACC);
1499
1500#undef CONFLICT
1501}
1502
707bfff6
TS
1503struct regname {
1504 const char *name;
1505 unsigned int num;
1506};
1507
1508#define RTYPE_MASK 0x1ff00
1509#define RTYPE_NUM 0x00100
1510#define RTYPE_FPU 0x00200
1511#define RTYPE_FCC 0x00400
1512#define RTYPE_VEC 0x00800
1513#define RTYPE_GP 0x01000
1514#define RTYPE_CP0 0x02000
1515#define RTYPE_PC 0x04000
1516#define RTYPE_ACC 0x08000
1517#define RTYPE_CCC 0x10000
1518#define RNUM_MASK 0x000ff
1519#define RWARN 0x80000
1520
1521#define GENERIC_REGISTER_NUMBERS \
1522 {"$0", RTYPE_NUM | 0}, \
1523 {"$1", RTYPE_NUM | 1}, \
1524 {"$2", RTYPE_NUM | 2}, \
1525 {"$3", RTYPE_NUM | 3}, \
1526 {"$4", RTYPE_NUM | 4}, \
1527 {"$5", RTYPE_NUM | 5}, \
1528 {"$6", RTYPE_NUM | 6}, \
1529 {"$7", RTYPE_NUM | 7}, \
1530 {"$8", RTYPE_NUM | 8}, \
1531 {"$9", RTYPE_NUM | 9}, \
1532 {"$10", RTYPE_NUM | 10}, \
1533 {"$11", RTYPE_NUM | 11}, \
1534 {"$12", RTYPE_NUM | 12}, \
1535 {"$13", RTYPE_NUM | 13}, \
1536 {"$14", RTYPE_NUM | 14}, \
1537 {"$15", RTYPE_NUM | 15}, \
1538 {"$16", RTYPE_NUM | 16}, \
1539 {"$17", RTYPE_NUM | 17}, \
1540 {"$18", RTYPE_NUM | 18}, \
1541 {"$19", RTYPE_NUM | 19}, \
1542 {"$20", RTYPE_NUM | 20}, \
1543 {"$21", RTYPE_NUM | 21}, \
1544 {"$22", RTYPE_NUM | 22}, \
1545 {"$23", RTYPE_NUM | 23}, \
1546 {"$24", RTYPE_NUM | 24}, \
1547 {"$25", RTYPE_NUM | 25}, \
1548 {"$26", RTYPE_NUM | 26}, \
1549 {"$27", RTYPE_NUM | 27}, \
1550 {"$28", RTYPE_NUM | 28}, \
1551 {"$29", RTYPE_NUM | 29}, \
1552 {"$30", RTYPE_NUM | 30}, \
1553 {"$31", RTYPE_NUM | 31}
1554
1555#define FPU_REGISTER_NAMES \
1556 {"$f0", RTYPE_FPU | 0}, \
1557 {"$f1", RTYPE_FPU | 1}, \
1558 {"$f2", RTYPE_FPU | 2}, \
1559 {"$f3", RTYPE_FPU | 3}, \
1560 {"$f4", RTYPE_FPU | 4}, \
1561 {"$f5", RTYPE_FPU | 5}, \
1562 {"$f6", RTYPE_FPU | 6}, \
1563 {"$f7", RTYPE_FPU | 7}, \
1564 {"$f8", RTYPE_FPU | 8}, \
1565 {"$f9", RTYPE_FPU | 9}, \
1566 {"$f10", RTYPE_FPU | 10}, \
1567 {"$f11", RTYPE_FPU | 11}, \
1568 {"$f12", RTYPE_FPU | 12}, \
1569 {"$f13", RTYPE_FPU | 13}, \
1570 {"$f14", RTYPE_FPU | 14}, \
1571 {"$f15", RTYPE_FPU | 15}, \
1572 {"$f16", RTYPE_FPU | 16}, \
1573 {"$f17", RTYPE_FPU | 17}, \
1574 {"$f18", RTYPE_FPU | 18}, \
1575 {"$f19", RTYPE_FPU | 19}, \
1576 {"$f20", RTYPE_FPU | 20}, \
1577 {"$f21", RTYPE_FPU | 21}, \
1578 {"$f22", RTYPE_FPU | 22}, \
1579 {"$f23", RTYPE_FPU | 23}, \
1580 {"$f24", RTYPE_FPU | 24}, \
1581 {"$f25", RTYPE_FPU | 25}, \
1582 {"$f26", RTYPE_FPU | 26}, \
1583 {"$f27", RTYPE_FPU | 27}, \
1584 {"$f28", RTYPE_FPU | 28}, \
1585 {"$f29", RTYPE_FPU | 29}, \
1586 {"$f30", RTYPE_FPU | 30}, \
1587 {"$f31", RTYPE_FPU | 31}
1588
1589#define FPU_CONDITION_CODE_NAMES \
1590 {"$fcc0", RTYPE_FCC | 0}, \
1591 {"$fcc1", RTYPE_FCC | 1}, \
1592 {"$fcc2", RTYPE_FCC | 2}, \
1593 {"$fcc3", RTYPE_FCC | 3}, \
1594 {"$fcc4", RTYPE_FCC | 4}, \
1595 {"$fcc5", RTYPE_FCC | 5}, \
1596 {"$fcc6", RTYPE_FCC | 6}, \
1597 {"$fcc7", RTYPE_FCC | 7}
1598
1599#define COPROC_CONDITION_CODE_NAMES \
1600 {"$cc0", RTYPE_FCC | RTYPE_CCC | 0}, \
1601 {"$cc1", RTYPE_FCC | RTYPE_CCC | 1}, \
1602 {"$cc2", RTYPE_FCC | RTYPE_CCC | 2}, \
1603 {"$cc3", RTYPE_FCC | RTYPE_CCC | 3}, \
1604 {"$cc4", RTYPE_FCC | RTYPE_CCC | 4}, \
1605 {"$cc5", RTYPE_FCC | RTYPE_CCC | 5}, \
1606 {"$cc6", RTYPE_FCC | RTYPE_CCC | 6}, \
1607 {"$cc7", RTYPE_FCC | RTYPE_CCC | 7}
1608
1609#define N32N64_SYMBOLIC_REGISTER_NAMES \
1610 {"$a4", RTYPE_GP | 8}, \
1611 {"$a5", RTYPE_GP | 9}, \
1612 {"$a6", RTYPE_GP | 10}, \
1613 {"$a7", RTYPE_GP | 11}, \
1614 {"$ta0", RTYPE_GP | 8}, /* alias for $a4 */ \
1615 {"$ta1", RTYPE_GP | 9}, /* alias for $a5 */ \
1616 {"$ta2", RTYPE_GP | 10}, /* alias for $a6 */ \
1617 {"$ta3", RTYPE_GP | 11}, /* alias for $a7 */ \
1618 {"$t0", RTYPE_GP | 12}, \
1619 {"$t1", RTYPE_GP | 13}, \
1620 {"$t2", RTYPE_GP | 14}, \
1621 {"$t3", RTYPE_GP | 15}
1622
1623#define O32_SYMBOLIC_REGISTER_NAMES \
1624 {"$t0", RTYPE_GP | 8}, \
1625 {"$t1", RTYPE_GP | 9}, \
1626 {"$t2", RTYPE_GP | 10}, \
1627 {"$t3", RTYPE_GP | 11}, \
1628 {"$t4", RTYPE_GP | 12}, \
1629 {"$t5", RTYPE_GP | 13}, \
1630 {"$t6", RTYPE_GP | 14}, \
1631 {"$t7", RTYPE_GP | 15}, \
1632 {"$ta0", RTYPE_GP | 12}, /* alias for $t4 */ \
1633 {"$ta1", RTYPE_GP | 13}, /* alias for $t5 */ \
1634 {"$ta2", RTYPE_GP | 14}, /* alias for $t6 */ \
1635 {"$ta3", RTYPE_GP | 15} /* alias for $t7 */
1636
1637/* Remaining symbolic register names */
1638#define SYMBOLIC_REGISTER_NAMES \
1639 {"$zero", RTYPE_GP | 0}, \
1640 {"$at", RTYPE_GP | 1}, \
1641 {"$AT", RTYPE_GP | 1}, \
1642 {"$v0", RTYPE_GP | 2}, \
1643 {"$v1", RTYPE_GP | 3}, \
1644 {"$a0", RTYPE_GP | 4}, \
1645 {"$a1", RTYPE_GP | 5}, \
1646 {"$a2", RTYPE_GP | 6}, \
1647 {"$a3", RTYPE_GP | 7}, \
1648 {"$s0", RTYPE_GP | 16}, \
1649 {"$s1", RTYPE_GP | 17}, \
1650 {"$s2", RTYPE_GP | 18}, \
1651 {"$s3", RTYPE_GP | 19}, \
1652 {"$s4", RTYPE_GP | 20}, \
1653 {"$s5", RTYPE_GP | 21}, \
1654 {"$s6", RTYPE_GP | 22}, \
1655 {"$s7", RTYPE_GP | 23}, \
1656 {"$t8", RTYPE_GP | 24}, \
1657 {"$t9", RTYPE_GP | 25}, \
1658 {"$k0", RTYPE_GP | 26}, \
1659 {"$kt0", RTYPE_GP | 26}, \
1660 {"$k1", RTYPE_GP | 27}, \
1661 {"$kt1", RTYPE_GP | 27}, \
1662 {"$gp", RTYPE_GP | 28}, \
1663 {"$sp", RTYPE_GP | 29}, \
1664 {"$s8", RTYPE_GP | 30}, \
1665 {"$fp", RTYPE_GP | 30}, \
1666 {"$ra", RTYPE_GP | 31}
1667
1668#define MIPS16_SPECIAL_REGISTER_NAMES \
1669 {"$pc", RTYPE_PC | 0}
1670
1671#define MDMX_VECTOR_REGISTER_NAMES \
1672 /* {"$v0", RTYPE_VEC | 0}, clash with REG 2 above */ \
1673 /* {"$v1", RTYPE_VEC | 1}, clash with REG 3 above */ \
1674 {"$v2", RTYPE_VEC | 2}, \
1675 {"$v3", RTYPE_VEC | 3}, \
1676 {"$v4", RTYPE_VEC | 4}, \
1677 {"$v5", RTYPE_VEC | 5}, \
1678 {"$v6", RTYPE_VEC | 6}, \
1679 {"$v7", RTYPE_VEC | 7}, \
1680 {"$v8", RTYPE_VEC | 8}, \
1681 {"$v9", RTYPE_VEC | 9}, \
1682 {"$v10", RTYPE_VEC | 10}, \
1683 {"$v11", RTYPE_VEC | 11}, \
1684 {"$v12", RTYPE_VEC | 12}, \
1685 {"$v13", RTYPE_VEC | 13}, \
1686 {"$v14", RTYPE_VEC | 14}, \
1687 {"$v15", RTYPE_VEC | 15}, \
1688 {"$v16", RTYPE_VEC | 16}, \
1689 {"$v17", RTYPE_VEC | 17}, \
1690 {"$v18", RTYPE_VEC | 18}, \
1691 {"$v19", RTYPE_VEC | 19}, \
1692 {"$v20", RTYPE_VEC | 20}, \
1693 {"$v21", RTYPE_VEC | 21}, \
1694 {"$v22", RTYPE_VEC | 22}, \
1695 {"$v23", RTYPE_VEC | 23}, \
1696 {"$v24", RTYPE_VEC | 24}, \
1697 {"$v25", RTYPE_VEC | 25}, \
1698 {"$v26", RTYPE_VEC | 26}, \
1699 {"$v27", RTYPE_VEC | 27}, \
1700 {"$v28", RTYPE_VEC | 28}, \
1701 {"$v29", RTYPE_VEC | 29}, \
1702 {"$v30", RTYPE_VEC | 30}, \
1703 {"$v31", RTYPE_VEC | 31}
1704
1705#define MIPS_DSP_ACCUMULATOR_NAMES \
1706 {"$ac0", RTYPE_ACC | 0}, \
1707 {"$ac1", RTYPE_ACC | 1}, \
1708 {"$ac2", RTYPE_ACC | 2}, \
1709 {"$ac3", RTYPE_ACC | 3}
1710
1711static const struct regname reg_names[] = {
1712 GENERIC_REGISTER_NUMBERS,
1713 FPU_REGISTER_NAMES,
1714 FPU_CONDITION_CODE_NAMES,
1715 COPROC_CONDITION_CODE_NAMES,
1716
1717 /* The $txx registers depends on the abi,
1718 these will be added later into the symbol table from
1719 one of the tables below once mips_abi is set after
1720 parsing of arguments from the command line. */
1721 SYMBOLIC_REGISTER_NAMES,
1722
1723 MIPS16_SPECIAL_REGISTER_NAMES,
1724 MDMX_VECTOR_REGISTER_NAMES,
1725 MIPS_DSP_ACCUMULATOR_NAMES,
1726 {0, 0}
1727};
1728
1729static const struct regname reg_names_o32[] = {
1730 O32_SYMBOLIC_REGISTER_NAMES,
1731 {0, 0}
1732};
1733
1734static const struct regname reg_names_n32n64[] = {
1735 N32N64_SYMBOLIC_REGISTER_NAMES,
1736 {0, 0}
1737};
1738
1739static int
1740reg_lookup (char **s, unsigned int types, unsigned int *regnop)
1741{
1742 symbolS *symbolP;
1743 char *e;
1744 char save_c;
1745 int reg = -1;
1746
1747 /* Find end of name. */
1748 e = *s;
1749 if (is_name_beginner (*e))
1750 ++e;
1751 while (is_part_of_name (*e))
1752 ++e;
1753
1754 /* Terminate name. */
1755 save_c = *e;
1756 *e = '\0';
1757
1758 /* Look for a register symbol. */
1759 if ((symbolP = symbol_find (*s)) && S_GET_SEGMENT (symbolP) == reg_section)
1760 {
1761 int r = S_GET_VALUE (symbolP);
1762 if (r & types)
1763 reg = r & RNUM_MASK;
1764 else if ((types & RTYPE_VEC) && (r & ~1) == (RTYPE_GP | 2))
1765 /* Convert GP reg $v0/1 to MDMX reg $v0/1! */
1766 reg = (r & RNUM_MASK) - 2;
1767 }
1768 /* Else see if this is a register defined in an itbl entry. */
1769 else if ((types & RTYPE_GP) && itbl_have_entries)
1770 {
1771 char *n = *s;
1772 unsigned long r;
1773
1774 if (*n == '$')
1775 ++n;
1776 if (itbl_get_reg_val (n, &r))
1777 reg = r & RNUM_MASK;
1778 }
1779
1780 /* Advance to next token if a register was recognised. */
1781 if (reg >= 0)
1782 *s = e;
1783 else if (types & RWARN)
1784 as_warn ("Unrecognized register name `%s'", *s);
1785
1786 *e = save_c;
1787 if (regnop)
1788 *regnop = reg;
1789 return reg >= 0;
1790}
1791
037b32b9
AN
1792/* Return TRUE if opcode MO is valid on the currently selected ISA and
1793 architecture. If EXPANSIONP is TRUE then this check is done while
1794 expanding a macro. Use is_opcode_valid_16 for MIPS16 opcodes. */
1795
1796static bfd_boolean
1797is_opcode_valid (const struct mips_opcode *mo, bfd_boolean expansionp)
1798{
1799 int isa = mips_opts.isa;
1800 int fp_s, fp_d;
1801
1802 if (mips_opts.ase_mdmx)
1803 isa |= INSN_MDMX;
1804 if (mips_opts.ase_dsp)
1805 isa |= INSN_DSP;
1806 if (mips_opts.ase_dsp && ISA_SUPPORTS_DSP64_ASE)
1807 isa |= INSN_DSP64;
1808 if (mips_opts.ase_dspr2)
1809 isa |= INSN_DSPR2;
1810 if (mips_opts.ase_mt)
1811 isa |= INSN_MT;
1812 if (mips_opts.ase_mips3d)
1813 isa |= INSN_MIPS3D;
1814 if (mips_opts.ase_smartmips)
1815 isa |= INSN_SMARTMIPS;
1816
1817 /* For user code we don't check for mips_opts.mips16 since we want
1818 to allow jalx if -mips16 was specified on the command line. */
1819 if (expansionp ? mips_opts.mips16 : file_ase_mips16)
1820 isa |= INSN_MIPS16;
1821
b19e8a9b
AN
1822 /* Don't accept instructions based on the ISA if the CPU does not implement
1823 all the coprocessor insns. */
1824 if (NO_ISA_COP (mips_opts.arch)
1825 && COP_INSN (mo->pinfo))
1826 isa = 0;
1827
037b32b9
AN
1828 if (!OPCODE_IS_MEMBER (mo, isa, mips_opts.arch))
1829 return FALSE;
1830
1831 /* Check whether the instruction or macro requires single-precision or
1832 double-precision floating-point support. Note that this information is
1833 stored differently in the opcode table for insns and macros. */
1834 if (mo->pinfo == INSN_MACRO)
1835 {
1836 fp_s = mo->pinfo2 & INSN2_M_FP_S;
1837 fp_d = mo->pinfo2 & INSN2_M_FP_D;
1838 }
1839 else
1840 {
1841 fp_s = mo->pinfo & FP_S;
1842 fp_d = mo->pinfo & FP_D;
1843 }
1844
1845 if (fp_d && (mips_opts.soft_float || mips_opts.single_float))
1846 return FALSE;
1847
1848 if (fp_s && mips_opts.soft_float)
1849 return FALSE;
1850
1851 return TRUE;
1852}
1853
1854/* Return TRUE if the MIPS16 opcode MO is valid on the currently
1855 selected ISA and architecture. */
1856
1857static bfd_boolean
1858is_opcode_valid_16 (const struct mips_opcode *mo)
1859{
1860 return OPCODE_IS_MEMBER (mo, mips_opts.isa, mips_opts.arch) ? TRUE : FALSE;
1861}
1862
707bfff6
TS
1863/* This function is called once, at assembler startup time. It should set up
1864 all the tables, etc. that the MD part of the assembler will need. */
156c2f8b 1865
252b5132 1866void
17a2f251 1867md_begin (void)
252b5132 1868{
3994f87e 1869 const char *retval = NULL;
156c2f8b 1870 int i = 0;
252b5132 1871 int broken = 0;
1f25f5d3 1872
0a44bf69
RS
1873 if (mips_pic != NO_PIC)
1874 {
1875 if (g_switch_seen && g_switch_value != 0)
1876 as_bad (_("-G may not be used in position-independent code"));
1877 g_switch_value = 0;
1878 }
1879
fef14a42 1880 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
252b5132
RH
1881 as_warn (_("Could not set architecture and machine"));
1882
252b5132
RH
1883 op_hash = hash_new ();
1884
1885 for (i = 0; i < NUMOPCODES;)
1886 {
1887 const char *name = mips_opcodes[i].name;
1888
17a2f251 1889 retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
252b5132
RH
1890 if (retval != NULL)
1891 {
1892 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
1893 mips_opcodes[i].name, retval);
1894 /* Probably a memory allocation problem? Give up now. */
1895 as_fatal (_("Broken assembler. No assembly attempted."));
1896 }
1897 do
1898 {
1899 if (mips_opcodes[i].pinfo != INSN_MACRO)
1900 {
1901 if (!validate_mips_insn (&mips_opcodes[i]))
1902 broken = 1;
1e915849
RS
1903 if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1904 {
1905 create_insn (&nop_insn, mips_opcodes + i);
1906 nop_insn.fixed_p = 1;
1907 }
252b5132
RH
1908 }
1909 ++i;
1910 }
1911 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
1912 }
1913
1914 mips16_op_hash = hash_new ();
1915
1916 i = 0;
1917 while (i < bfd_mips16_num_opcodes)
1918 {
1919 const char *name = mips16_opcodes[i].name;
1920
17a2f251 1921 retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
252b5132
RH
1922 if (retval != NULL)
1923 as_fatal (_("internal: can't hash `%s': %s"),
1924 mips16_opcodes[i].name, retval);
1925 do
1926 {
1927 if (mips16_opcodes[i].pinfo != INSN_MACRO
1928 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
1929 != mips16_opcodes[i].match))
1930 {
1931 fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
1932 mips16_opcodes[i].name, mips16_opcodes[i].args);
1933 broken = 1;
1934 }
1e915849
RS
1935 if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1936 {
1937 create_insn (&mips16_nop_insn, mips16_opcodes + i);
1938 mips16_nop_insn.fixed_p = 1;
1939 }
252b5132
RH
1940 ++i;
1941 }
1942 while (i < bfd_mips16_num_opcodes
1943 && strcmp (mips16_opcodes[i].name, name) == 0);
1944 }
1945
1946 if (broken)
1947 as_fatal (_("Broken assembler. No assembly attempted."));
1948
1949 /* We add all the general register names to the symbol table. This
1950 helps us detect invalid uses of them. */
707bfff6
TS
1951 for (i = 0; reg_names[i].name; i++)
1952 symbol_table_insert (symbol_new (reg_names[i].name, reg_section,
8fc4ee9b 1953 reg_names[i].num, /* & RNUM_MASK, */
707bfff6
TS
1954 &zero_address_frag));
1955 if (HAVE_NEWABI)
1956 for (i = 0; reg_names_n32n64[i].name; i++)
1957 symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section,
8fc4ee9b 1958 reg_names_n32n64[i].num, /* & RNUM_MASK, */
252b5132 1959 &zero_address_frag));
707bfff6
TS
1960 else
1961 for (i = 0; reg_names_o32[i].name; i++)
1962 symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section,
8fc4ee9b 1963 reg_names_o32[i].num, /* & RNUM_MASK, */
6047c971 1964 &zero_address_frag));
6047c971 1965
7d10b47d 1966 mips_no_prev_insn ();
252b5132
RH
1967
1968 mips_gprmask = 0;
1969 mips_cprmask[0] = 0;
1970 mips_cprmask[1] = 0;
1971 mips_cprmask[2] = 0;
1972 mips_cprmask[3] = 0;
1973
1974 /* set the default alignment for the text section (2**2) */
1975 record_alignment (text_section, 2);
1976
4d0d148d 1977 bfd_set_gp_size (stdoutput, g_switch_value);
252b5132 1978
707bfff6 1979#ifdef OBJ_ELF
f43abd2b 1980 if (IS_ELF)
252b5132 1981 {
0a44bf69
RS
1982 /* On a native system other than VxWorks, sections must be aligned
1983 to 16 byte boundaries. When configured for an embedded ELF
1984 target, we don't bother. */
c41e87e3
CF
1985 if (strncmp (TARGET_OS, "elf", 3) != 0
1986 && strncmp (TARGET_OS, "vxworks", 7) != 0)
252b5132
RH
1987 {
1988 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
1989 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
1990 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
1991 }
1992
1993 /* Create a .reginfo section for register masks and a .mdebug
1994 section for debugging information. */
1995 {
1996 segT seg;
1997 subsegT subseg;
1998 flagword flags;
1999 segT sec;
2000
2001 seg = now_seg;
2002 subseg = now_subseg;
2003
2004 /* The ABI says this section should be loaded so that the
2005 running program can access it. However, we don't load it
2006 if we are configured for an embedded target */
2007 flags = SEC_READONLY | SEC_DATA;
c41e87e3 2008 if (strncmp (TARGET_OS, "elf", 3) != 0)
252b5132
RH
2009 flags |= SEC_ALLOC | SEC_LOAD;
2010
316f5878 2011 if (mips_abi != N64_ABI)
252b5132
RH
2012 {
2013 sec = subseg_new (".reginfo", (subsegT) 0);
2014
195325d2
TS
2015 bfd_set_section_flags (stdoutput, sec, flags);
2016 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
bdaaa2e1 2017
252b5132 2018 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
252b5132
RH
2019 }
2020 else
2021 {
2022 /* The 64-bit ABI uses a .MIPS.options section rather than
2023 .reginfo section. */
2024 sec = subseg_new (".MIPS.options", (subsegT) 0);
195325d2
TS
2025 bfd_set_section_flags (stdoutput, sec, flags);
2026 bfd_set_section_alignment (stdoutput, sec, 3);
252b5132 2027
252b5132
RH
2028 /* Set up the option header. */
2029 {
2030 Elf_Internal_Options opthdr;
2031 char *f;
2032
2033 opthdr.kind = ODK_REGINFO;
2034 opthdr.size = (sizeof (Elf_External_Options)
2035 + sizeof (Elf64_External_RegInfo));
2036 opthdr.section = 0;
2037 opthdr.info = 0;
2038 f = frag_more (sizeof (Elf_External_Options));
2039 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
2040 (Elf_External_Options *) f);
2041
2042 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
2043 }
252b5132
RH
2044 }
2045
2046 if (ECOFF_DEBUGGING)
2047 {
2048 sec = subseg_new (".mdebug", (subsegT) 0);
2049 (void) bfd_set_section_flags (stdoutput, sec,
2050 SEC_HAS_CONTENTS | SEC_READONLY);
2051 (void) bfd_set_section_alignment (stdoutput, sec, 2);
2052 }
f43abd2b 2053 else if (mips_flag_pdr)
ecb4347a
DJ
2054 {
2055 pdr_seg = subseg_new (".pdr", (subsegT) 0);
2056 (void) bfd_set_section_flags (stdoutput, pdr_seg,
2057 SEC_READONLY | SEC_RELOC
2058 | SEC_DEBUGGING);
2059 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
2060 }
252b5132
RH
2061
2062 subseg_set (seg, subseg);
2063 }
2064 }
707bfff6 2065#endif /* OBJ_ELF */
252b5132
RH
2066
2067 if (! ECOFF_DEBUGGING)
2068 md_obj_begin ();
71400594
RS
2069
2070 if (mips_fix_vr4120)
2071 init_vr4120_conflicts ();
252b5132
RH
2072}
2073
2074void
17a2f251 2075md_mips_end (void)
252b5132
RH
2076{
2077 if (! ECOFF_DEBUGGING)
2078 md_obj_end ();
2079}
2080
2081void
17a2f251 2082md_assemble (char *str)
252b5132
RH
2083{
2084 struct mips_cl_insn insn;
f6688943
TS
2085 bfd_reloc_code_real_type unused_reloc[3]
2086 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132
RH
2087
2088 imm_expr.X_op = O_absent;
5f74bc13 2089 imm2_expr.X_op = O_absent;
252b5132 2090 offset_expr.X_op = O_absent;
f6688943
TS
2091 imm_reloc[0] = BFD_RELOC_UNUSED;
2092 imm_reloc[1] = BFD_RELOC_UNUSED;
2093 imm_reloc[2] = BFD_RELOC_UNUSED;
2094 offset_reloc[0] = BFD_RELOC_UNUSED;
2095 offset_reloc[1] = BFD_RELOC_UNUSED;
2096 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132
RH
2097
2098 if (mips_opts.mips16)
2099 mips16_ip (str, &insn);
2100 else
2101 {
2102 mips_ip (str, &insn);
beae10d5
KH
2103 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
2104 str, insn.insn_opcode));
252b5132
RH
2105 }
2106
2107 if (insn_error)
2108 {
2109 as_bad ("%s `%s'", insn_error, str);
2110 return;
2111 }
2112
2113 if (insn.insn_mo->pinfo == INSN_MACRO)
2114 {
584892a6 2115 macro_start ();
252b5132
RH
2116 if (mips_opts.mips16)
2117 mips16_macro (&insn);
2118 else
2119 macro (&insn);
584892a6 2120 macro_end ();
252b5132
RH
2121 }
2122 else
2123 {
2124 if (imm_expr.X_op != O_absent)
4d7206a2 2125 append_insn (&insn, &imm_expr, imm_reloc);
252b5132 2126 else if (offset_expr.X_op != O_absent)
4d7206a2 2127 append_insn (&insn, &offset_expr, offset_reloc);
252b5132 2128 else
4d7206a2 2129 append_insn (&insn, NULL, unused_reloc);
252b5132
RH
2130 }
2131}
2132
738e5348
RS
2133/* Convenience functions for abstracting away the differences between
2134 MIPS16 and non-MIPS16 relocations. */
2135
2136static inline bfd_boolean
2137mips16_reloc_p (bfd_reloc_code_real_type reloc)
2138{
2139 switch (reloc)
2140 {
2141 case BFD_RELOC_MIPS16_JMP:
2142 case BFD_RELOC_MIPS16_GPREL:
2143 case BFD_RELOC_MIPS16_GOT16:
2144 case BFD_RELOC_MIPS16_CALL16:
2145 case BFD_RELOC_MIPS16_HI16_S:
2146 case BFD_RELOC_MIPS16_HI16:
2147 case BFD_RELOC_MIPS16_LO16:
2148 return TRUE;
2149
2150 default:
2151 return FALSE;
2152 }
2153}
2154
2155static inline bfd_boolean
2156got16_reloc_p (bfd_reloc_code_real_type reloc)
2157{
2158 return reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16;
2159}
2160
2161static inline bfd_boolean
2162hi16_reloc_p (bfd_reloc_code_real_type reloc)
2163{
2164 return reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S;
2165}
2166
2167static inline bfd_boolean
2168lo16_reloc_p (bfd_reloc_code_real_type reloc)
2169{
2170 return reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16;
2171}
2172
5919d012 2173/* Return true if the given relocation might need a matching %lo().
0a44bf69
RS
2174 This is only "might" because SVR4 R_MIPS_GOT16 relocations only
2175 need a matching %lo() when applied to local symbols. */
5919d012
RS
2176
2177static inline bfd_boolean
17a2f251 2178reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
5919d012 2179{
3b91255e 2180 return (HAVE_IN_PLACE_ADDENDS
738e5348 2181 && (hi16_reloc_p (reloc)
0a44bf69
RS
2182 /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
2183 all GOT16 relocations evaluate to "G". */
738e5348
RS
2184 || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC)));
2185}
2186
2187/* Return the type of %lo() reloc needed by RELOC, given that
2188 reloc_needs_lo_p. */
2189
2190static inline bfd_reloc_code_real_type
2191matching_lo_reloc (bfd_reloc_code_real_type reloc)
2192{
2193 return mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16 : BFD_RELOC_LO16;
5919d012
RS
2194}
2195
2196/* Return true if the given fixup is followed by a matching R_MIPS_LO16
2197 relocation. */
2198
2199static inline bfd_boolean
17a2f251 2200fixup_has_matching_lo_p (fixS *fixp)
5919d012
RS
2201{
2202 return (fixp->fx_next != NULL
738e5348 2203 && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type)
5919d012
RS
2204 && fixp->fx_addsy == fixp->fx_next->fx_addsy
2205 && fixp->fx_offset == fixp->fx_next->fx_offset);
2206}
2207
252b5132
RH
2208/* See whether instruction IP reads register REG. CLASS is the type
2209 of register. */
2210
2211static int
71400594 2212insn_uses_reg (const struct mips_cl_insn *ip, unsigned int reg,
17a2f251 2213 enum mips_regclass class)
252b5132
RH
2214{
2215 if (class == MIPS16_REG)
2216 {
2217 assert (mips_opts.mips16);
2218 reg = mips16_to_32_reg_map[reg];
2219 class = MIPS_GR_REG;
2220 }
2221
85b51719
TS
2222 /* Don't report on general register ZERO, since it never changes. */
2223 if (class == MIPS_GR_REG && reg == ZERO)
252b5132
RH
2224 return 0;
2225
2226 if (class == MIPS_FP_REG)
2227 {
2228 assert (! mips_opts.mips16);
2229 /* If we are called with either $f0 or $f1, we must check $f0.
2230 This is not optimal, because it will introduce an unnecessary
2231 NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would
2232 need to distinguish reading both $f0 and $f1 or just one of
2233 them. Note that we don't have to check the other way,
2234 because there is no instruction that sets both $f0 and $f1
2235 and requires a delay. */
2236 if ((ip->insn_mo->pinfo & INSN_READ_FPR_S)
bf12938e 2237 && ((EXTRACT_OPERAND (FS, *ip) & ~(unsigned) 1)
252b5132
RH
2238 == (reg &~ (unsigned) 1)))
2239 return 1;
2240 if ((ip->insn_mo->pinfo & INSN_READ_FPR_T)
bf12938e 2241 && ((EXTRACT_OPERAND (FT, *ip) & ~(unsigned) 1)
252b5132
RH
2242 == (reg &~ (unsigned) 1)))
2243 return 1;
2244 }
2245 else if (! mips_opts.mips16)
2246 {
2247 if ((ip->insn_mo->pinfo & INSN_READ_GPR_S)
bf12938e 2248 && EXTRACT_OPERAND (RS, *ip) == reg)
252b5132
RH
2249 return 1;
2250 if ((ip->insn_mo->pinfo & INSN_READ_GPR_T)
bf12938e 2251 && EXTRACT_OPERAND (RT, *ip) == reg)
252b5132
RH
2252 return 1;
2253 }
2254 else
2255 {
2256 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X)
bf12938e 2257 && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)] == reg)
252b5132
RH
2258 return 1;
2259 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y)
bf12938e 2260 && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)] == reg)
252b5132
RH
2261 return 1;
2262 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z)
bf12938e 2263 && (mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]
252b5132
RH
2264 == reg))
2265 return 1;
2266 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_T) && reg == TREG)
2267 return 1;
2268 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_SP) && reg == SP)
2269 return 1;
2270 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_31) && reg == RA)
2271 return 1;
2272 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_GPR_X)
bf12938e 2273 && MIPS16_EXTRACT_OPERAND (REGR32, *ip) == reg)
252b5132
RH
2274 return 1;
2275 }
2276
2277 return 0;
2278}
2279
2280/* This function returns true if modifying a register requires a
2281 delay. */
2282
2283static int
17a2f251 2284reg_needs_delay (unsigned int reg)
252b5132
RH
2285{
2286 unsigned long prev_pinfo;
2287
47e39b9d 2288 prev_pinfo = history[0].insn_mo->pinfo;
252b5132 2289 if (! mips_opts.noreorder
81912461
ILT
2290 && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
2291 && ! gpr_interlocks)
2292 || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
2293 && ! cop_interlocks)))
252b5132 2294 {
81912461
ILT
2295 /* A load from a coprocessor or from memory. All load delays
2296 delay the use of general register rt for one instruction. */
bdaaa2e1 2297 /* Itbl support may require additional care here. */
252b5132 2298 know (prev_pinfo & INSN_WRITE_GPR_T);
bf12938e 2299 if (reg == EXTRACT_OPERAND (RT, history[0]))
252b5132
RH
2300 return 1;
2301 }
2302
2303 return 0;
2304}
2305
404a8071
RS
2306/* Move all labels in insn_labels to the current insertion point. */
2307
2308static void
2309mips_move_labels (void)
2310{
a8dbcb85 2311 segment_info_type *si = seg_info (now_seg);
404a8071
RS
2312 struct insn_label_list *l;
2313 valueT val;
2314
a8dbcb85 2315 for (l = si->label_list; l != NULL; l = l->next)
404a8071
RS
2316 {
2317 assert (S_GET_SEGMENT (l->label) == now_seg);
2318 symbol_set_frag (l->label, frag_now);
2319 val = (valueT) frag_now_fix ();
2320 /* mips16 text labels are stored as odd. */
2321 if (mips_opts.mips16)
2322 ++val;
2323 S_SET_VALUE (l->label, val);
2324 }
2325}
2326
5f0fe04b
TS
2327static bfd_boolean
2328s_is_linkonce (symbolS *sym, segT from_seg)
2329{
2330 bfd_boolean linkonce = FALSE;
2331 segT symseg = S_GET_SEGMENT (sym);
2332
2333 if (symseg != from_seg && !S_IS_LOCAL (sym))
2334 {
2335 if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE))
2336 linkonce = TRUE;
2337#ifdef OBJ_ELF
2338 /* The GNU toolchain uses an extension for ELF: a section
2339 beginning with the magic string .gnu.linkonce is a
2340 linkonce section. */
2341 if (strncmp (segment_name (symseg), ".gnu.linkonce",
2342 sizeof ".gnu.linkonce" - 1) == 0)
2343 linkonce = TRUE;
2344#endif
2345 }
2346 return linkonce;
2347}
2348
252b5132
RH
2349/* Mark instruction labels in mips16 mode. This permits the linker to
2350 handle them specially, such as generating jalx instructions when
2351 needed. We also make them odd for the duration of the assembly, in
2352 order to generate the right sort of code. We will make them even
2353 in the adjust_symtab routine, while leaving them marked. This is
2354 convenient for the debugger and the disassembler. The linker knows
2355 to make them odd again. */
2356
2357static void
17a2f251 2358mips16_mark_labels (void)
252b5132 2359{
a8dbcb85
TS
2360 segment_info_type *si = seg_info (now_seg);
2361 struct insn_label_list *l;
252b5132 2362
a8dbcb85
TS
2363 if (!mips_opts.mips16)
2364 return;
2365
2366 for (l = si->label_list; l != NULL; l = l->next)
2367 {
2368 symbolS *label = l->label;
2369
2370#if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF)
f43abd2b 2371 if (IS_ELF)
30c09090 2372 S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
252b5132 2373#endif
5f0fe04b
TS
2374 if ((S_GET_VALUE (label) & 1) == 0
2375 /* Don't adjust the address if the label is global or weak, or
2376 in a link-once section, since we'll be emitting symbol reloc
2377 references to it which will be patched up by the linker, and
2378 the final value of the symbol may or may not be MIPS16. */
2379 && ! S_IS_WEAK (label)
2380 && ! S_IS_EXTERNAL (label)
2381 && ! s_is_linkonce (label, now_seg))
a8dbcb85 2382 S_SET_VALUE (label, S_GET_VALUE (label) | 1);
252b5132
RH
2383 }
2384}
2385
4d7206a2
RS
2386/* End the current frag. Make it a variant frag and record the
2387 relaxation info. */
2388
2389static void
2390relax_close_frag (void)
2391{
584892a6 2392 mips_macro_warning.first_frag = frag_now;
4d7206a2 2393 frag_var (rs_machine_dependent, 0, 0,
584892a6 2394 RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
4d7206a2
RS
2395 mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
2396
2397 memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
2398 mips_relax.first_fixup = 0;
2399}
2400
2401/* Start a new relaxation sequence whose expansion depends on SYMBOL.
2402 See the comment above RELAX_ENCODE for more details. */
2403
2404static void
2405relax_start (symbolS *symbol)
2406{
2407 assert (mips_relax.sequence == 0);
2408 mips_relax.sequence = 1;
2409 mips_relax.symbol = symbol;
2410}
2411
2412/* Start generating the second version of a relaxable sequence.
2413 See the comment above RELAX_ENCODE for more details. */
252b5132
RH
2414
2415static void
4d7206a2
RS
2416relax_switch (void)
2417{
2418 assert (mips_relax.sequence == 1);
2419 mips_relax.sequence = 2;
2420}
2421
2422/* End the current relaxable sequence. */
2423
2424static void
2425relax_end (void)
2426{
2427 assert (mips_relax.sequence == 2);
2428 relax_close_frag ();
2429 mips_relax.sequence = 0;
2430}
2431
71400594
RS
2432/* Classify an instruction according to the FIX_VR4120_* enumeration.
2433 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
2434 by VR4120 errata. */
4d7206a2 2435
71400594
RS
2436static unsigned int
2437classify_vr4120_insn (const char *name)
252b5132 2438{
71400594
RS
2439 if (strncmp (name, "macc", 4) == 0)
2440 return FIX_VR4120_MACC;
2441 if (strncmp (name, "dmacc", 5) == 0)
2442 return FIX_VR4120_DMACC;
2443 if (strncmp (name, "mult", 4) == 0)
2444 return FIX_VR4120_MULT;
2445 if (strncmp (name, "dmult", 5) == 0)
2446 return FIX_VR4120_DMULT;
2447 if (strstr (name, "div"))
2448 return FIX_VR4120_DIV;
2449 if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
2450 return FIX_VR4120_MTHILO;
2451 return NUM_FIX_VR4120_CLASSES;
2452}
252b5132 2453
71400594
RS
2454/* Return the number of instructions that must separate INSN1 and INSN2,
2455 where INSN1 is the earlier instruction. Return the worst-case value
2456 for any INSN2 if INSN2 is null. */
252b5132 2457
71400594
RS
2458static unsigned int
2459insns_between (const struct mips_cl_insn *insn1,
2460 const struct mips_cl_insn *insn2)
2461{
2462 unsigned long pinfo1, pinfo2;
2463
2464 /* This function needs to know which pinfo flags are set for INSN2
2465 and which registers INSN2 uses. The former is stored in PINFO2 and
2466 the latter is tested via INSN2_USES_REG. If INSN2 is null, PINFO2
2467 will have every flag set and INSN2_USES_REG will always return true. */
2468 pinfo1 = insn1->insn_mo->pinfo;
2469 pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
252b5132 2470
71400594
RS
2471#define INSN2_USES_REG(REG, CLASS) \
2472 (insn2 == NULL || insn_uses_reg (insn2, REG, CLASS))
2473
2474 /* For most targets, write-after-read dependencies on the HI and LO
2475 registers must be separated by at least two instructions. */
2476 if (!hilo_interlocks)
252b5132 2477 {
71400594
RS
2478 if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
2479 return 2;
2480 if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
2481 return 2;
2482 }
2483
2484 /* If we're working around r7000 errata, there must be two instructions
2485 between an mfhi or mflo and any instruction that uses the result. */
2486 if (mips_7000_hilo_fix
2487 && MF_HILO_INSN (pinfo1)
2488 && INSN2_USES_REG (EXTRACT_OPERAND (RD, *insn1), MIPS_GR_REG))
2489 return 2;
2490
2491 /* If working around VR4120 errata, check for combinations that need
2492 a single intervening instruction. */
2493 if (mips_fix_vr4120)
2494 {
2495 unsigned int class1, class2;
252b5132 2496
71400594
RS
2497 class1 = classify_vr4120_insn (insn1->insn_mo->name);
2498 if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
252b5132 2499 {
71400594
RS
2500 if (insn2 == NULL)
2501 return 1;
2502 class2 = classify_vr4120_insn (insn2->insn_mo->name);
2503 if (vr4120_conflicts[class1] & (1 << class2))
2504 return 1;
252b5132 2505 }
71400594
RS
2506 }
2507
2508 if (!mips_opts.mips16)
2509 {
2510 /* Check for GPR or coprocessor load delays. All such delays
2511 are on the RT register. */
2512 /* Itbl support may require additional care here. */
2513 if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY_DELAY))
2514 || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY)))
252b5132 2515 {
71400594
RS
2516 know (pinfo1 & INSN_WRITE_GPR_T);
2517 if (INSN2_USES_REG (EXTRACT_OPERAND (RT, *insn1), MIPS_GR_REG))
2518 return 1;
2519 }
2520
2521 /* Check for generic coprocessor hazards.
2522
2523 This case is not handled very well. There is no special
2524 knowledge of CP0 handling, and the coprocessors other than
2525 the floating point unit are not distinguished at all. */
2526 /* Itbl support may require additional care here. FIXME!
2527 Need to modify this to include knowledge about
2528 user specified delays! */
2529 else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE_DELAY))
2530 || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
2531 {
2532 /* Handle cases where INSN1 writes to a known general coprocessor
2533 register. There must be a one instruction delay before INSN2
2534 if INSN2 reads that register, otherwise no delay is needed. */
2535 if (pinfo1 & INSN_WRITE_FPR_T)
252b5132 2536 {
71400594
RS
2537 if (INSN2_USES_REG (EXTRACT_OPERAND (FT, *insn1), MIPS_FP_REG))
2538 return 1;
252b5132 2539 }
71400594 2540 else if (pinfo1 & INSN_WRITE_FPR_S)
252b5132 2541 {
71400594
RS
2542 if (INSN2_USES_REG (EXTRACT_OPERAND (FS, *insn1), MIPS_FP_REG))
2543 return 1;
252b5132
RH
2544 }
2545 else
2546 {
71400594
RS
2547 /* Read-after-write dependencies on the control registers
2548 require a two-instruction gap. */
2549 if ((pinfo1 & INSN_WRITE_COND_CODE)
2550 && (pinfo2 & INSN_READ_COND_CODE))
2551 return 2;
2552
2553 /* We don't know exactly what INSN1 does. If INSN2 is
2554 also a coprocessor instruction, assume there must be
2555 a one instruction gap. */
2556 if (pinfo2 & INSN_COP)
2557 return 1;
252b5132
RH
2558 }
2559 }
6b76fefe 2560
71400594
RS
2561 /* Check for read-after-write dependencies on the coprocessor
2562 control registers in cases where INSN1 does not need a general
2563 coprocessor delay. This means that INSN1 is a floating point
2564 comparison instruction. */
2565 /* Itbl support may require additional care here. */
2566 else if (!cop_interlocks
2567 && (pinfo1 & INSN_WRITE_COND_CODE)
2568 && (pinfo2 & INSN_READ_COND_CODE))
2569 return 1;
2570 }
6b76fefe 2571
71400594 2572#undef INSN2_USES_REG
6b76fefe 2573
71400594
RS
2574 return 0;
2575}
6b76fefe 2576
7d8e00cf
RS
2577/* Return the number of nops that would be needed to work around the
2578 VR4130 mflo/mfhi errata if instruction INSN immediately followed
2579 the MAX_VR4130_NOPS instructions described by HISTORY. */
2580
2581static int
2582nops_for_vr4130 (const struct mips_cl_insn *history,
2583 const struct mips_cl_insn *insn)
2584{
2585 int i, j, reg;
2586
2587 /* Check if the instruction writes to HI or LO. MTHI and MTLO
2588 are not affected by the errata. */
2589 if (insn != 0
2590 && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
2591 || strcmp (insn->insn_mo->name, "mtlo") == 0
2592 || strcmp (insn->insn_mo->name, "mthi") == 0))
2593 return 0;
2594
2595 /* Search for the first MFLO or MFHI. */
2596 for (i = 0; i < MAX_VR4130_NOPS; i++)
2597 if (!history[i].noreorder_p && MF_HILO_INSN (history[i].insn_mo->pinfo))
2598 {
2599 /* Extract the destination register. */
2600 if (mips_opts.mips16)
2601 reg = mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, history[i])];
2602 else
2603 reg = EXTRACT_OPERAND (RD, history[i]);
2604
2605 /* No nops are needed if INSN reads that register. */
2606 if (insn != NULL && insn_uses_reg (insn, reg, MIPS_GR_REG))
2607 return 0;
2608
2609 /* ...or if any of the intervening instructions do. */
2610 for (j = 0; j < i; j++)
2611 if (insn_uses_reg (&history[j], reg, MIPS_GR_REG))
2612 return 0;
2613
2614 return MAX_VR4130_NOPS - i;
2615 }
2616 return 0;
2617}
2618
71400594
RS
2619/* Return the number of nops that would be needed if instruction INSN
2620 immediately followed the MAX_NOPS instructions given by HISTORY,
2621 where HISTORY[0] is the most recent instruction. If INSN is null,
2622 return the worse-case number of nops for any instruction. */
bdaaa2e1 2623
71400594
RS
2624static int
2625nops_for_insn (const struct mips_cl_insn *history,
2626 const struct mips_cl_insn *insn)
2627{
2628 int i, nops, tmp_nops;
bdaaa2e1 2629
71400594 2630 nops = 0;
7d8e00cf 2631 for (i = 0; i < MAX_DELAY_NOPS; i++)
71400594
RS
2632 if (!history[i].noreorder_p)
2633 {
2634 tmp_nops = insns_between (history + i, insn) - i;
2635 if (tmp_nops > nops)
2636 nops = tmp_nops;
2637 }
7d8e00cf
RS
2638
2639 if (mips_fix_vr4130)
2640 {
2641 tmp_nops = nops_for_vr4130 (history, insn);
2642 if (tmp_nops > nops)
2643 nops = tmp_nops;
2644 }
2645
71400594
RS
2646 return nops;
2647}
252b5132 2648
71400594
RS
2649/* The variable arguments provide NUM_INSNS extra instructions that
2650 might be added to HISTORY. Return the largest number of nops that
2651 would be needed after the extended sequence. */
252b5132 2652
71400594
RS
2653static int
2654nops_for_sequence (int num_insns, const struct mips_cl_insn *history, ...)
2655{
2656 va_list args;
2657 struct mips_cl_insn buffer[MAX_NOPS];
2658 struct mips_cl_insn *cursor;
2659 int nops;
2660
2661 va_start (args, history);
2662 cursor = buffer + num_insns;
2663 memcpy (cursor, history, (MAX_NOPS - num_insns) * sizeof (*cursor));
2664 while (cursor > buffer)
2665 *--cursor = *va_arg (args, const struct mips_cl_insn *);
2666
2667 nops = nops_for_insn (buffer, NULL);
2668 va_end (args);
2669 return nops;
2670}
252b5132 2671
71400594
RS
2672/* Like nops_for_insn, but if INSN is a branch, take into account the
2673 worst-case delay for the branch target. */
252b5132 2674
71400594
RS
2675static int
2676nops_for_insn_or_target (const struct mips_cl_insn *history,
2677 const struct mips_cl_insn *insn)
2678{
2679 int nops, tmp_nops;
60b63b72 2680
71400594
RS
2681 nops = nops_for_insn (history, insn);
2682 if (insn->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
2683 | INSN_COND_BRANCH_DELAY
2684 | INSN_COND_BRANCH_LIKELY))
2685 {
2686 tmp_nops = nops_for_sequence (2, history, insn, NOP_INSN);
2687 if (tmp_nops > nops)
2688 nops = tmp_nops;
2689 }
2690 else if (mips_opts.mips16 && (insn->insn_mo->pinfo & MIPS16_INSN_BRANCH))
2691 {
2692 tmp_nops = nops_for_sequence (1, history, insn);
2693 if (tmp_nops > nops)
2694 nops = tmp_nops;
2695 }
2696 return nops;
2697}
2698
2699/* Output an instruction. IP is the instruction information.
2700 ADDRESS_EXPR is an operand of the instruction to be used with
2701 RELOC_TYPE. */
2702
2703static void
2704append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
2705 bfd_reloc_code_real_type *reloc_type)
2706{
3994f87e 2707 unsigned long prev_pinfo, pinfo;
71400594
RS
2708 relax_stateT prev_insn_frag_type = 0;
2709 bfd_boolean relaxed_branch = FALSE;
a8dbcb85 2710 segment_info_type *si = seg_info (now_seg);
71400594
RS
2711
2712 /* Mark instruction labels in mips16 mode. */
2713 mips16_mark_labels ();
2714
2715 prev_pinfo = history[0].insn_mo->pinfo;
2716 pinfo = ip->insn_mo->pinfo;
2717
2718 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
2719 {
2720 /* There are a lot of optimizations we could do that we don't.
2721 In particular, we do not, in general, reorder instructions.
2722 If you use gcc with optimization, it will reorder
2723 instructions and generally do much more optimization then we
2724 do here; repeating all that work in the assembler would only
2725 benefit hand written assembly code, and does not seem worth
2726 it. */
2727 int nops = (mips_optimize == 0
2728 ? nops_for_insn (history, NULL)
2729 : nops_for_insn_or_target (history, ip));
2730 if (nops > 0)
252b5132
RH
2731 {
2732 fragS *old_frag;
2733 unsigned long old_frag_offset;
2734 int i;
252b5132
RH
2735
2736 old_frag = frag_now;
2737 old_frag_offset = frag_now_fix ();
2738
2739 for (i = 0; i < nops; i++)
2740 emit_nop ();
2741
2742 if (listing)
2743 {
2744 listing_prev_line ();
2745 /* We may be at the start of a variant frag. In case we
2746 are, make sure there is enough space for the frag
2747 after the frags created by listing_prev_line. The
2748 argument to frag_grow here must be at least as large
2749 as the argument to all other calls to frag_grow in
2750 this file. We don't have to worry about being in the
2751 middle of a variant frag, because the variants insert
2752 all needed nop instructions themselves. */
2753 frag_grow (40);
2754 }
2755
404a8071 2756 mips_move_labels ();
252b5132
RH
2757
2758#ifndef NO_ECOFF_DEBUGGING
2759 if (ECOFF_DEBUGGING)
2760 ecoff_fix_loc (old_frag, old_frag_offset);
2761#endif
2762 }
71400594
RS
2763 }
2764 else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
2765 {
2766 /* Work out how many nops in prev_nop_frag are needed by IP. */
2767 int nops = nops_for_insn_or_target (history, ip);
2768 assert (nops <= prev_nop_frag_holds);
252b5132 2769
71400594
RS
2770 /* Enforce NOPS as a minimum. */
2771 if (nops > prev_nop_frag_required)
2772 prev_nop_frag_required = nops;
252b5132 2773
71400594
RS
2774 if (prev_nop_frag_holds == prev_nop_frag_required)
2775 {
2776 /* Settle for the current number of nops. Update the history
2777 accordingly (for the benefit of any future .set reorder code). */
2778 prev_nop_frag = NULL;
2779 insert_into_history (prev_nop_frag_since,
2780 prev_nop_frag_holds, NOP_INSN);
2781 }
2782 else
2783 {
2784 /* Allow this instruction to replace one of the nops that was
2785 tentatively added to prev_nop_frag. */
2786 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
2787 prev_nop_frag_holds--;
2788 prev_nop_frag_since++;
252b5132
RH
2789 }
2790 }
2791
58e2ea4d
MR
2792#ifdef OBJ_ELF
2793 /* The value passed to dwarf2_emit_insn is the distance between
2794 the beginning of the current instruction and the address that
2795 should be recorded in the debug tables. For MIPS16 debug info
2796 we want to use ISA-encoded addresses, so we pass -1 for an
2797 address higher by one than the current. */
2798 dwarf2_emit_insn (mips_opts.mips16 ? -1 : 0);
2799#endif
2800
895921c9 2801 /* Record the frag type before frag_var. */
47e39b9d
RS
2802 if (history[0].frag)
2803 prev_insn_frag_type = history[0].frag->fr_type;
895921c9 2804
4d7206a2 2805 if (address_expr
0b25d3e6 2806 && *reloc_type == BFD_RELOC_16_PCREL_S2
4a6a3df4
AO
2807 && (pinfo & INSN_UNCOND_BRANCH_DELAY || pinfo & INSN_COND_BRANCH_DELAY
2808 || pinfo & INSN_COND_BRANCH_LIKELY)
2809 && mips_relax_branch
2810 /* Don't try branch relaxation within .set nomacro, or within
2811 .set noat if we use $at for PIC computations. If it turns
2812 out that the branch was out-of-range, we'll get an error. */
2813 && !mips_opts.warn_about_macros
741fe287 2814 && (mips_opts.at || mips_pic == NO_PIC)
4a6a3df4
AO
2815 && !mips_opts.mips16)
2816 {
895921c9 2817 relaxed_branch = TRUE;
1e915849
RS
2818 add_relaxed_insn (ip, (relaxed_branch_length
2819 (NULL, NULL,
2820 (pinfo & INSN_UNCOND_BRANCH_DELAY) ? -1
2821 : (pinfo & INSN_COND_BRANCH_LIKELY) ? 1
2822 : 0)), 4,
2823 RELAX_BRANCH_ENCODE
2824 (pinfo & INSN_UNCOND_BRANCH_DELAY,
2825 pinfo & INSN_COND_BRANCH_LIKELY,
2826 pinfo & INSN_WRITE_GPR_31,
2827 0),
2828 address_expr->X_add_symbol,
2829 address_expr->X_add_number);
4a6a3df4
AO
2830 *reloc_type = BFD_RELOC_UNUSED;
2831 }
2832 else if (*reloc_type > BFD_RELOC_UNUSED)
252b5132
RH
2833 {
2834 /* We need to set up a variant frag. */
2835 assert (mips_opts.mips16 && address_expr != NULL);
1e915849
RS
2836 add_relaxed_insn (ip, 4, 0,
2837 RELAX_MIPS16_ENCODE
2838 (*reloc_type - BFD_RELOC_UNUSED,
2839 mips16_small, mips16_ext,
2840 prev_pinfo & INSN_UNCOND_BRANCH_DELAY,
2841 history[0].mips16_absolute_jump_p),
2842 make_expr_symbol (address_expr), 0);
252b5132 2843 }
252b5132
RH
2844 else if (mips_opts.mips16
2845 && ! ip->use_extend
f6688943 2846 && *reloc_type != BFD_RELOC_MIPS16_JMP)
9497f5ac 2847 {
b8ee1a6e
DU
2848 if ((pinfo & INSN_UNCOND_BRANCH_DELAY) == 0)
2849 /* Make sure there is enough room to swap this instruction with
2850 a following jump instruction. */
2851 frag_grow (6);
1e915849 2852 add_fixed_insn (ip);
252b5132
RH
2853 }
2854 else
2855 {
2856 if (mips_opts.mips16
2857 && mips_opts.noreorder
2858 && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0)
2859 as_warn (_("extended instruction in delay slot"));
2860
4d7206a2
RS
2861 if (mips_relax.sequence)
2862 {
2863 /* If we've reached the end of this frag, turn it into a variant
2864 frag and record the information for the instructions we've
2865 written so far. */
2866 if (frag_room () < 4)
2867 relax_close_frag ();
2868 mips_relax.sizes[mips_relax.sequence - 1] += 4;
2869 }
2870
584892a6
RS
2871 if (mips_relax.sequence != 2)
2872 mips_macro_warning.sizes[0] += 4;
2873 if (mips_relax.sequence != 1)
2874 mips_macro_warning.sizes[1] += 4;
2875
1e915849
RS
2876 if (mips_opts.mips16)
2877 {
2878 ip->fixed_p = 1;
2879 ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
2880 }
2881 add_fixed_insn (ip);
252b5132
RH
2882 }
2883
01a3f561 2884 if (address_expr != NULL && *reloc_type <= BFD_RELOC_UNUSED)
252b5132
RH
2885 {
2886 if (address_expr->X_op == O_constant)
2887 {
f17c130b 2888 unsigned int tmp;
f6688943
TS
2889
2890 switch (*reloc_type)
252b5132
RH
2891 {
2892 case BFD_RELOC_32:
2893 ip->insn_opcode |= address_expr->X_add_number;
2894 break;
2895
f6688943 2896 case BFD_RELOC_MIPS_HIGHEST:
f17c130b
AM
2897 tmp = (address_expr->X_add_number + 0x800080008000ull) >> 48;
2898 ip->insn_opcode |= tmp & 0xffff;
f6688943
TS
2899 break;
2900
2901 case BFD_RELOC_MIPS_HIGHER:
f17c130b
AM
2902 tmp = (address_expr->X_add_number + 0x80008000ull) >> 32;
2903 ip->insn_opcode |= tmp & 0xffff;
f6688943
TS
2904 break;
2905
2906 case BFD_RELOC_HI16_S:
f17c130b
AM
2907 tmp = (address_expr->X_add_number + 0x8000) >> 16;
2908 ip->insn_opcode |= tmp & 0xffff;
f6688943
TS
2909 break;
2910
2911 case BFD_RELOC_HI16:
2912 ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
2913 break;
2914
01a3f561 2915 case BFD_RELOC_UNUSED:
252b5132 2916 case BFD_RELOC_LO16:
ed6fb7bd 2917 case BFD_RELOC_MIPS_GOT_DISP:
252b5132
RH
2918 ip->insn_opcode |= address_expr->X_add_number & 0xffff;
2919 break;
2920
2921 case BFD_RELOC_MIPS_JMP:
2922 if ((address_expr->X_add_number & 3) != 0)
2923 as_bad (_("jump to misaligned address (0x%lx)"),
2924 (unsigned long) address_expr->X_add_number);
2925 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff;
2926 break;
2927
2928 case BFD_RELOC_MIPS16_JMP:
2929 if ((address_expr->X_add_number & 3) != 0)
2930 as_bad (_("jump to misaligned address (0x%lx)"),
2931 (unsigned long) address_expr->X_add_number);
2932 ip->insn_opcode |=
2933 (((address_expr->X_add_number & 0x7c0000) << 3)
2934 | ((address_expr->X_add_number & 0xf800000) >> 7)
2935 | ((address_expr->X_add_number & 0x3fffc) >> 2));
2936 break;
2937
252b5132 2938 case BFD_RELOC_16_PCREL_S2:
bad36eac
DJ
2939 if ((address_expr->X_add_number & 3) != 0)
2940 as_bad (_("branch to misaligned address (0x%lx)"),
2941 (unsigned long) address_expr->X_add_number);
2942 if (mips_relax_branch)
2943 goto need_reloc;
2944 if ((address_expr->X_add_number + 0x20000) & ~0x3ffff)
2945 as_bad (_("branch address range overflow (0x%lx)"),
2946 (unsigned long) address_expr->X_add_number);
2947 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0xffff;
2948 break;
252b5132
RH
2949
2950 default:
2951 internalError ();
2952 }
2953 }
01a3f561 2954 else if (*reloc_type < BFD_RELOC_UNUSED)
252b5132 2955 need_reloc:
4d7206a2
RS
2956 {
2957 reloc_howto_type *howto;
2958 int i;
34ce925e 2959
4d7206a2
RS
2960 /* In a compound relocation, it is the final (outermost)
2961 operator that determines the relocated field. */
2962 for (i = 1; i < 3; i++)
2963 if (reloc_type[i] == BFD_RELOC_UNUSED)
2964 break;
34ce925e 2965
4d7206a2 2966 howto = bfd_reloc_type_lookup (stdoutput, reloc_type[i - 1]);
23fce1e3
NC
2967 if (howto == NULL)
2968 {
2969 /* To reproduce this failure try assembling gas/testsuites/
2970 gas/mips/mips16-intermix.s with a mips-ecoff targeted
2971 assembler. */
2972 as_bad (_("Unsupported MIPS relocation number %d"), reloc_type[i - 1]);
2973 howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_16);
2974 }
2975
1e915849
RS
2976 ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
2977 bfd_get_reloc_size (howto),
2978 address_expr,
2979 reloc_type[0] == BFD_RELOC_16_PCREL_S2,
2980 reloc_type[0]);
4d7206a2 2981
b314ec0e
RS
2982 /* Tag symbols that have a R_MIPS16_26 relocation against them. */
2983 if (reloc_type[0] == BFD_RELOC_MIPS16_JMP
2984 && ip->fixp[0]->fx_addsy)
2985 *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
2986
4d7206a2
RS
2987 /* These relocations can have an addend that won't fit in
2988 4 octets for 64bit assembly. */
2989 if (HAVE_64BIT_GPRS
2990 && ! howto->partial_inplace
2991 && (reloc_type[0] == BFD_RELOC_16
2992 || reloc_type[0] == BFD_RELOC_32
2993 || reloc_type[0] == BFD_RELOC_MIPS_JMP
4d7206a2
RS
2994 || reloc_type[0] == BFD_RELOC_GPREL16
2995 || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
2996 || reloc_type[0] == BFD_RELOC_GPREL32
2997 || reloc_type[0] == BFD_RELOC_64
2998 || reloc_type[0] == BFD_RELOC_CTOR
2999 || reloc_type[0] == BFD_RELOC_MIPS_SUB
3000 || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
3001 || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
3002 || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
3003 || reloc_type[0] == BFD_RELOC_MIPS_REL16
d6f16593
MR
3004 || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
3005 || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
738e5348
RS
3006 || hi16_reloc_p (reloc_type[0])
3007 || lo16_reloc_p (reloc_type[0])))
1e915849 3008 ip->fixp[0]->fx_no_overflow = 1;
4d7206a2
RS
3009
3010 if (mips_relax.sequence)
3011 {
3012 if (mips_relax.first_fixup == 0)
1e915849 3013 mips_relax.first_fixup = ip->fixp[0];
4d7206a2
RS
3014 }
3015 else if (reloc_needs_lo_p (*reloc_type))
3016 {
3017 struct mips_hi_fixup *hi_fixup;
252b5132 3018
4d7206a2
RS
3019 /* Reuse the last entry if it already has a matching %lo. */
3020 hi_fixup = mips_hi_fixup_list;
3021 if (hi_fixup == 0
3022 || !fixup_has_matching_lo_p (hi_fixup->fixp))
3023 {
3024 hi_fixup = ((struct mips_hi_fixup *)
3025 xmalloc (sizeof (struct mips_hi_fixup)));
3026 hi_fixup->next = mips_hi_fixup_list;
3027 mips_hi_fixup_list = hi_fixup;
252b5132 3028 }
1e915849 3029 hi_fixup->fixp = ip->fixp[0];
4d7206a2
RS
3030 hi_fixup->seg = now_seg;
3031 }
f6688943 3032
4d7206a2
RS
3033 /* Add fixups for the second and third relocations, if given.
3034 Note that the ABI allows the second relocation to be
3035 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
3036 moment we only use RSS_UNDEF, but we could add support
3037 for the others if it ever becomes necessary. */
3038 for (i = 1; i < 3; i++)
3039 if (reloc_type[i] != BFD_RELOC_UNUSED)
3040 {
1e915849
RS
3041 ip->fixp[i] = fix_new (ip->frag, ip->where,
3042 ip->fixp[0]->fx_size, NULL, 0,
3043 FALSE, reloc_type[i]);
b1dca8ee
RS
3044
3045 /* Use fx_tcbit to mark compound relocs. */
1e915849
RS
3046 ip->fixp[0]->fx_tcbit = 1;
3047 ip->fixp[i]->fx_tcbit = 1;
4d7206a2 3048 }
252b5132
RH
3049 }
3050 }
1e915849 3051 install_insn (ip);
252b5132
RH
3052
3053 /* Update the register mask information. */
3054 if (! mips_opts.mips16)
3055 {
3056 if (pinfo & INSN_WRITE_GPR_D)
bf12938e 3057 mips_gprmask |= 1 << EXTRACT_OPERAND (RD, *ip);
252b5132 3058 if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0)
bf12938e 3059 mips_gprmask |= 1 << EXTRACT_OPERAND (RT, *ip);
252b5132 3060 if (pinfo & INSN_READ_GPR_S)
bf12938e 3061 mips_gprmask |= 1 << EXTRACT_OPERAND (RS, *ip);
252b5132 3062 if (pinfo & INSN_WRITE_GPR_31)
f9419b05 3063 mips_gprmask |= 1 << RA;
252b5132 3064 if (pinfo & INSN_WRITE_FPR_D)
bf12938e 3065 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FD, *ip);
252b5132 3066 if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0)
bf12938e 3067 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FS, *ip);
252b5132 3068 if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0)
bf12938e 3069 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FT, *ip);
252b5132 3070 if ((pinfo & INSN_READ_FPR_R) != 0)
bf12938e 3071 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FR, *ip);
252b5132
RH
3072 if (pinfo & INSN_COP)
3073 {
bdaaa2e1
KH
3074 /* We don't keep enough information to sort these cases out.
3075 The itbl support does keep this information however, although
3076 we currently don't support itbl fprmats as part of the cop
3077 instruction. May want to add this support in the future. */
252b5132
RH
3078 }
3079 /* Never set the bit for $0, which is always zero. */
beae10d5 3080 mips_gprmask &= ~1 << 0;
252b5132
RH
3081 }
3082 else
3083 {
3084 if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X))
bf12938e 3085 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RX, *ip);
252b5132 3086 if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y))
bf12938e 3087 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RY, *ip);
252b5132 3088 if (pinfo & MIPS16_INSN_WRITE_Z)
bf12938e 3089 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RZ, *ip);
252b5132
RH
3090 if (pinfo & (MIPS16_INSN_WRITE_T | MIPS16_INSN_READ_T))
3091 mips_gprmask |= 1 << TREG;
3092 if (pinfo & (MIPS16_INSN_WRITE_SP | MIPS16_INSN_READ_SP))
3093 mips_gprmask |= 1 << SP;
3094 if (pinfo & (MIPS16_INSN_WRITE_31 | MIPS16_INSN_READ_31))
3095 mips_gprmask |= 1 << RA;
3096 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
3097 mips_gprmask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
3098 if (pinfo & MIPS16_INSN_READ_Z)
bf12938e 3099 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip);
252b5132 3100 if (pinfo & MIPS16_INSN_READ_GPR_X)
bf12938e 3101 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
252b5132
RH
3102 }
3103
4d7206a2 3104 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
252b5132
RH
3105 {
3106 /* Filling the branch delay slot is more complex. We try to
3107 switch the branch with the previous instruction, which we can
3108 do if the previous instruction does not set up a condition
3109 that the branch tests and if the branch is not itself the
3110 target of any branch. */
3111 if ((pinfo & INSN_UNCOND_BRANCH_DELAY)
3112 || (pinfo & INSN_COND_BRANCH_DELAY))
3113 {
3114 if (mips_optimize < 2
3115 /* If we have seen .set volatile or .set nomove, don't
3116 optimize. */
3117 || mips_opts.nomove != 0
a38419a5
RS
3118 /* We can't swap if the previous instruction's position
3119 is fixed. */
3120 || history[0].fixed_p
252b5132
RH
3121 /* If the previous previous insn was in a .set
3122 noreorder, we can't swap. Actually, the MIPS
3123 assembler will swap in this situation. However, gcc
3124 configured -with-gnu-as will generate code like
3125 .set noreorder
3126 lw $4,XXX
3127 .set reorder
3128 INSN
3129 bne $4,$0,foo
3130 in which we can not swap the bne and INSN. If gcc is
3131 not configured -with-gnu-as, it does not output the
a38419a5 3132 .set pseudo-ops. */
47e39b9d 3133 || history[1].noreorder_p
252b5132
RH
3134 /* If the branch is itself the target of a branch, we
3135 can not swap. We cheat on this; all we check for is
3136 whether there is a label on this instruction. If
3137 there are any branches to anything other than a
3138 label, users must use .set noreorder. */
a8dbcb85 3139 || si->label_list != NULL
895921c9
MR
3140 /* If the previous instruction is in a variant frag
3141 other than this branch's one, we cannot do the swap.
3142 This does not apply to the mips16, which uses variant
3143 frags for different purposes. */
252b5132 3144 || (! mips_opts.mips16
895921c9 3145 && prev_insn_frag_type == rs_machine_dependent)
71400594
RS
3146 /* Check for conflicts between the branch and the instructions
3147 before the candidate delay slot. */
3148 || nops_for_insn (history + 1, ip) > 0
3149 /* Check for conflicts between the swapped sequence and the
3150 target of the branch. */
3151 || nops_for_sequence (2, history + 1, ip, history) > 0
252b5132
RH
3152 /* We do not swap with a trap instruction, since it
3153 complicates trap handlers to have the trap
3154 instruction be in a delay slot. */
3155 || (prev_pinfo & INSN_TRAP)
3156 /* If the branch reads a register that the previous
3157 instruction sets, we can not swap. */
3158 || (! mips_opts.mips16
3159 && (prev_pinfo & INSN_WRITE_GPR_T)
bf12938e 3160 && insn_uses_reg (ip, EXTRACT_OPERAND (RT, history[0]),
252b5132
RH
3161 MIPS_GR_REG))
3162 || (! mips_opts.mips16
3163 && (prev_pinfo & INSN_WRITE_GPR_D)
bf12938e 3164 && insn_uses_reg (ip, EXTRACT_OPERAND (RD, history[0]),
252b5132
RH
3165 MIPS_GR_REG))
3166 || (mips_opts.mips16
3167 && (((prev_pinfo & MIPS16_INSN_WRITE_X)
bf12938e
RS
3168 && (insn_uses_reg
3169 (ip, MIPS16_EXTRACT_OPERAND (RX, history[0]),
3170 MIPS16_REG)))
252b5132 3171 || ((prev_pinfo & MIPS16_INSN_WRITE_Y)
bf12938e
RS
3172 && (insn_uses_reg
3173 (ip, MIPS16_EXTRACT_OPERAND (RY, history[0]),
3174 MIPS16_REG)))
252b5132 3175 || ((prev_pinfo & MIPS16_INSN_WRITE_Z)
bf12938e
RS
3176 && (insn_uses_reg
3177 (ip, MIPS16_EXTRACT_OPERAND (RZ, history[0]),
3178 MIPS16_REG)))
252b5132
RH
3179 || ((prev_pinfo & MIPS16_INSN_WRITE_T)
3180 && insn_uses_reg (ip, TREG, MIPS_GR_REG))
3181 || ((prev_pinfo & MIPS16_INSN_WRITE_31)
3182 && insn_uses_reg (ip, RA, MIPS_GR_REG))
3183 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
3184 && insn_uses_reg (ip,
47e39b9d
RS
3185 MIPS16OP_EXTRACT_REG32R
3186 (history[0].insn_opcode),
252b5132
RH
3187 MIPS_GR_REG))))
3188 /* If the branch writes a register that the previous
3189 instruction sets, we can not swap (we know that
3190 branches write only to RD or to $31). */
3191 || (! mips_opts.mips16
3192 && (prev_pinfo & INSN_WRITE_GPR_T)
3193 && (((pinfo & INSN_WRITE_GPR_D)
bf12938e
RS
3194 && (EXTRACT_OPERAND (RT, history[0])
3195 == EXTRACT_OPERAND (RD, *ip)))
252b5132 3196 || ((pinfo & INSN_WRITE_GPR_31)
bf12938e 3197 && EXTRACT_OPERAND (RT, history[0]) == RA)))
252b5132
RH
3198 || (! mips_opts.mips16
3199 && (prev_pinfo & INSN_WRITE_GPR_D)
3200 && (((pinfo & INSN_WRITE_GPR_D)
bf12938e
RS
3201 && (EXTRACT_OPERAND (RD, history[0])
3202 == EXTRACT_OPERAND (RD, *ip)))
252b5132 3203 || ((pinfo & INSN_WRITE_GPR_31)
bf12938e 3204 && EXTRACT_OPERAND (RD, history[0]) == RA)))
252b5132
RH
3205 || (mips_opts.mips16
3206 && (pinfo & MIPS16_INSN_WRITE_31)
3207 && ((prev_pinfo & MIPS16_INSN_WRITE_31)
3208 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
47e39b9d 3209 && (MIPS16OP_EXTRACT_REG32R (history[0].insn_opcode)
252b5132
RH
3210 == RA))))
3211 /* If the branch writes a register that the previous
3212 instruction reads, we can not swap (we know that
3213 branches only write to RD or to $31). */
3214 || (! mips_opts.mips16
3215 && (pinfo & INSN_WRITE_GPR_D)
47e39b9d 3216 && insn_uses_reg (&history[0],
bf12938e 3217 EXTRACT_OPERAND (RD, *ip),
252b5132
RH
3218 MIPS_GR_REG))
3219 || (! mips_opts.mips16
3220 && (pinfo & INSN_WRITE_GPR_31)
47e39b9d 3221 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
252b5132
RH
3222 || (mips_opts.mips16
3223 && (pinfo & MIPS16_INSN_WRITE_31)
47e39b9d 3224 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
252b5132
RH
3225 /* If one instruction sets a condition code and the
3226 other one uses a condition code, we can not swap. */
3227 || ((pinfo & INSN_READ_COND_CODE)
3228 && (prev_pinfo & INSN_WRITE_COND_CODE))
3229 || ((pinfo & INSN_WRITE_COND_CODE)
3230 && (prev_pinfo & INSN_READ_COND_CODE))
3231 /* If the previous instruction uses the PC, we can not
3232 swap. */
3233 || (mips_opts.mips16
3234 && (prev_pinfo & MIPS16_INSN_READ_PC))
252b5132
RH
3235 /* If the previous instruction had a fixup in mips16
3236 mode, we can not swap. This normally means that the
3237 previous instruction was a 4 byte branch anyhow. */
47e39b9d 3238 || (mips_opts.mips16 && history[0].fixp[0])
bdaaa2e1
KH
3239 /* If the previous instruction is a sync, sync.l, or
3240 sync.p, we can not swap. */
f173e82e 3241 || (prev_pinfo & INSN_SYNC))
252b5132 3242 {
29024861
DU
3243 if (mips_opts.mips16
3244 && (pinfo & INSN_UNCOND_BRANCH_DELAY)
3245 && (pinfo & (MIPS16_INSN_READ_X | MIPS16_INSN_READ_31))
3994f87e 3246 && ISA_SUPPORTS_MIPS16E)
29024861
DU
3247 {
3248 /* Convert MIPS16 jr/jalr into a "compact" jump. */
3249 ip->insn_opcode |= 0x0080;
3250 install_insn (ip);
3251 insert_into_history (0, 1, ip);
3252 }
3253 else
3254 {
3255 /* We could do even better for unconditional branches to
3256 portions of this object file; we could pick up the
3257 instruction at the destination, put it in the delay
3258 slot, and bump the destination address. */
3259 insert_into_history (0, 1, ip);
3260 emit_nop ();
3261 }
3262
dd22970f
ILT
3263 if (mips_relax.sequence)
3264 mips_relax.sizes[mips_relax.sequence - 1] += 4;
252b5132
RH
3265 }
3266 else
3267 {
3268 /* It looks like we can actually do the swap. */
1e915849
RS
3269 struct mips_cl_insn delay = history[0];
3270 if (mips_opts.mips16)
252b5132 3271 {
b8ee1a6e
DU
3272 know (delay.frag == ip->frag);
3273 move_insn (ip, delay.frag, delay.where);
3274 move_insn (&delay, ip->frag, ip->where + insn_length (ip));
1e915849
RS
3275 }
3276 else if (relaxed_branch)
3277 {
3278 /* Add the delay slot instruction to the end of the
3279 current frag and shrink the fixed part of the
3280 original frag. If the branch occupies the tail of
3281 the latter, move it backwards to cover the gap. */
3282 delay.frag->fr_fix -= 4;
3283 if (delay.frag == ip->frag)
3284 move_insn (ip, ip->frag, ip->where - 4);
3285 add_fixed_insn (&delay);
252b5132
RH
3286 }
3287 else
3288 {
1e915849
RS
3289 move_insn (&delay, ip->frag, ip->where);
3290 move_insn (ip, history[0].frag, history[0].where);
252b5132 3291 }
1e915849
RS
3292 history[0] = *ip;
3293 delay.fixed_p = 1;
3294 insert_into_history (0, 1, &delay);
252b5132 3295 }
252b5132
RH
3296
3297 /* If that was an unconditional branch, forget the previous
3298 insn information. */
3299 if (pinfo & INSN_UNCOND_BRANCH_DELAY)
7d10b47d 3300 mips_no_prev_insn ();
252b5132
RH
3301 }
3302 else if (pinfo & INSN_COND_BRANCH_LIKELY)
3303 {
3304 /* We don't yet optimize a branch likely. What we should do
3305 is look at the target, copy the instruction found there
3306 into the delay slot, and increment the branch to jump to
3307 the next instruction. */
1e915849 3308 insert_into_history (0, 1, ip);
252b5132 3309 emit_nop ();
252b5132
RH
3310 }
3311 else
1e915849 3312 insert_into_history (0, 1, ip);
252b5132 3313 }
1e915849
RS
3314 else
3315 insert_into_history (0, 1, ip);
252b5132
RH
3316
3317 /* We just output an insn, so the next one doesn't have a label. */
3318 mips_clear_insn_labels ();
252b5132
RH
3319}
3320
7d10b47d 3321/* Forget that there was any previous instruction or label. */
252b5132
RH
3322
3323static void
7d10b47d 3324mips_no_prev_insn (void)
252b5132 3325{
7d10b47d
RS
3326 prev_nop_frag = NULL;
3327 insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
252b5132
RH
3328 mips_clear_insn_labels ();
3329}
3330
7d10b47d
RS
3331/* This function must be called before we emit something other than
3332 instructions. It is like mips_no_prev_insn except that it inserts
3333 any NOPS that might be needed by previous instructions. */
252b5132 3334
7d10b47d
RS
3335void
3336mips_emit_delays (void)
252b5132
RH
3337{
3338 if (! mips_opts.noreorder)
3339 {
71400594 3340 int nops = nops_for_insn (history, NULL);
252b5132
RH
3341 if (nops > 0)
3342 {
7d10b47d
RS
3343 while (nops-- > 0)
3344 add_fixed_insn (NOP_INSN);
3345 mips_move_labels ();
3346 }
3347 }
3348 mips_no_prev_insn ();
3349}
3350
3351/* Start a (possibly nested) noreorder block. */
3352
3353static void
3354start_noreorder (void)
3355{
3356 if (mips_opts.noreorder == 0)
3357 {
3358 unsigned int i;
3359 int nops;
3360
3361 /* None of the instructions before the .set noreorder can be moved. */
3362 for (i = 0; i < ARRAY_SIZE (history); i++)
3363 history[i].fixed_p = 1;
3364
3365 /* Insert any nops that might be needed between the .set noreorder
3366 block and the previous instructions. We will later remove any
3367 nops that turn out not to be needed. */
3368 nops = nops_for_insn (history, NULL);
3369 if (nops > 0)
3370 {
3371 if (mips_optimize != 0)
252b5132
RH
3372 {
3373 /* Record the frag which holds the nop instructions, so
3374 that we can remove them if we don't need them. */
3375 frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4);
3376 prev_nop_frag = frag_now;
3377 prev_nop_frag_holds = nops;
3378 prev_nop_frag_required = 0;
3379 prev_nop_frag_since = 0;
3380 }
3381
3382 for (; nops > 0; --nops)
1e915849 3383 add_fixed_insn (NOP_INSN);
252b5132 3384
7d10b47d
RS
3385 /* Move on to a new frag, so that it is safe to simply
3386 decrease the size of prev_nop_frag. */
3387 frag_wane (frag_now);
3388 frag_new (0);
404a8071 3389 mips_move_labels ();
252b5132 3390 }
7d10b47d
RS
3391 mips16_mark_labels ();
3392 mips_clear_insn_labels ();
252b5132 3393 }
7d10b47d
RS
3394 mips_opts.noreorder++;
3395 mips_any_noreorder = 1;
3396}
252b5132 3397
7d10b47d 3398/* End a nested noreorder block. */
252b5132 3399
7d10b47d
RS
3400static void
3401end_noreorder (void)
3402{
3403 mips_opts.noreorder--;
3404 if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
3405 {
3406 /* Commit to inserting prev_nop_frag_required nops and go back to
3407 handling nop insertion the .set reorder way. */
3408 prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
3409 * (mips_opts.mips16 ? 2 : 4));
3410 insert_into_history (prev_nop_frag_since,
3411 prev_nop_frag_required, NOP_INSN);
3412 prev_nop_frag = NULL;
3413 }
252b5132
RH
3414}
3415
584892a6
RS
3416/* Set up global variables for the start of a new macro. */
3417
3418static void
3419macro_start (void)
3420{
3421 memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
3422 mips_macro_warning.delay_slot_p = (mips_opts.noreorder
47e39b9d 3423 && (history[0].insn_mo->pinfo
584892a6
RS
3424 & (INSN_UNCOND_BRANCH_DELAY
3425 | INSN_COND_BRANCH_DELAY
3426 | INSN_COND_BRANCH_LIKELY)) != 0);
3427}
3428
3429/* Given that a macro is longer than 4 bytes, return the appropriate warning
3430 for it. Return null if no warning is needed. SUBTYPE is a bitmask of
3431 RELAX_DELAY_SLOT and RELAX_NOMACRO. */
3432
3433static const char *
3434macro_warning (relax_substateT subtype)
3435{
3436 if (subtype & RELAX_DELAY_SLOT)
3437 return _("Macro instruction expanded into multiple instructions"
3438 " in a branch delay slot");
3439 else if (subtype & RELAX_NOMACRO)
3440 return _("Macro instruction expanded into multiple instructions");
3441 else
3442 return 0;
3443}
3444
3445/* Finish up a macro. Emit warnings as appropriate. */
3446
3447static void
3448macro_end (void)
3449{
3450 if (mips_macro_warning.sizes[0] > 4 || mips_macro_warning.sizes[1] > 4)
3451 {
3452 relax_substateT subtype;
3453
3454 /* Set up the relaxation warning flags. */
3455 subtype = 0;
3456 if (mips_macro_warning.sizes[1] > mips_macro_warning.sizes[0])
3457 subtype |= RELAX_SECOND_LONGER;
3458 if (mips_opts.warn_about_macros)
3459 subtype |= RELAX_NOMACRO;
3460 if (mips_macro_warning.delay_slot_p)
3461 subtype |= RELAX_DELAY_SLOT;
3462
3463 if (mips_macro_warning.sizes[0] > 4 && mips_macro_warning.sizes[1] > 4)
3464 {
3465 /* Either the macro has a single implementation or both
3466 implementations are longer than 4 bytes. Emit the
3467 warning now. */
3468 const char *msg = macro_warning (subtype);
3469 if (msg != 0)
3470 as_warn (msg);
3471 }
3472 else
3473 {
3474 /* One implementation might need a warning but the other
3475 definitely doesn't. */
3476 mips_macro_warning.first_frag->fr_subtype |= subtype;
3477 }
3478 }
3479}
3480
6e1304d8
RS
3481/* Read a macro's relocation codes from *ARGS and store them in *R.
3482 The first argument in *ARGS will be either the code for a single
3483 relocation or -1 followed by the three codes that make up a
3484 composite relocation. */
3485
3486static void
3487macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
3488{
3489 int i, next;
3490
3491 next = va_arg (*args, int);
3492 if (next >= 0)
3493 r[0] = (bfd_reloc_code_real_type) next;
3494 else
3495 for (i = 0; i < 3; i++)
3496 r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
3497}
3498
252b5132
RH
3499/* Build an instruction created by a macro expansion. This is passed
3500 a pointer to the count of instructions created so far, an
3501 expression, the name of the instruction to build, an operand format
3502 string, and corresponding arguments. */
3503
252b5132 3504static void
67c0d1eb 3505macro_build (expressionS *ep, const char *name, const char *fmt, ...)
252b5132 3506{
1e915849 3507 const struct mips_opcode *mo;
252b5132 3508 struct mips_cl_insn insn;
f6688943 3509 bfd_reloc_code_real_type r[3];
252b5132 3510 va_list args;
252b5132 3511
252b5132 3512 va_start (args, fmt);
252b5132 3513
252b5132
RH
3514 if (mips_opts.mips16)
3515 {
67c0d1eb 3516 mips16_macro_build (ep, name, fmt, args);
252b5132
RH
3517 va_end (args);
3518 return;
3519 }
3520
f6688943
TS
3521 r[0] = BFD_RELOC_UNUSED;
3522 r[1] = BFD_RELOC_UNUSED;
3523 r[2] = BFD_RELOC_UNUSED;
1e915849
RS
3524 mo = (struct mips_opcode *) hash_find (op_hash, name);
3525 assert (mo);
3526 assert (strcmp (name, mo->name) == 0);
3527
8b082fb1
TS
3528 while (1)
3529 {
3530 /* Search until we get a match for NAME. It is assumed here that
3531 macros will never generate MDMX, MIPS-3D, or MT instructions. */
3532 if (strcmp (fmt, mo->args) == 0
3533 && mo->pinfo != INSN_MACRO
037b32b9 3534 && is_opcode_valid (mo, TRUE))
8b082fb1
TS
3535 break;
3536
1e915849
RS
3537 ++mo;
3538 assert (mo->name);
3539 assert (strcmp (name, mo->name) == 0);
252b5132
RH
3540 }
3541
1e915849 3542 create_insn (&insn, mo);
252b5132
RH
3543 for (;;)
3544 {
3545 switch (*fmt++)
3546 {
3547 case '\0':
3548 break;
3549
3550 case ',':
3551 case '(':
3552 case ')':
3553 continue;
3554
5f74bc13
CD
3555 case '+':
3556 switch (*fmt++)
3557 {
3558 case 'A':
3559 case 'E':
bf12938e 3560 INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
5f74bc13
CD
3561 continue;
3562
3563 case 'B':
3564 case 'F':
3565 /* Note that in the macro case, these arguments are already
3566 in MSB form. (When handling the instruction in the
3567 non-macro case, these arguments are sizes from which
3568 MSB values must be calculated.) */
bf12938e 3569 INSERT_OPERAND (INSMSB, insn, va_arg (args, int));
5f74bc13
CD
3570 continue;
3571
3572 case 'C':
3573 case 'G':
3574 case 'H':
3575 /* Note that in the macro case, these arguments are already
3576 in MSBD form. (When handling the instruction in the
3577 non-macro case, these arguments are sizes from which
3578 MSBD values must be calculated.) */
bf12938e 3579 INSERT_OPERAND (EXTMSBD, insn, va_arg (args, int));
5f74bc13
CD
3580 continue;
3581
dd3cbb7e
NC
3582 case 'Q':
3583 INSERT_OPERAND (SEQI, insn, va_arg (args, int));
3584 continue;
3585
5f74bc13
CD
3586 default:
3587 internalError ();
3588 }
3589 continue;
3590
8b082fb1
TS
3591 case '2':
3592 INSERT_OPERAND (BP, insn, va_arg (args, int));
3593 continue;
3594
252b5132
RH
3595 case 't':
3596 case 'w':
3597 case 'E':
bf12938e 3598 INSERT_OPERAND (RT, insn, va_arg (args, int));
252b5132
RH
3599 continue;
3600
3601 case 'c':
bf12938e 3602 INSERT_OPERAND (CODE, insn, va_arg (args, int));
38487616
TS
3603 continue;
3604
252b5132
RH
3605 case 'T':
3606 case 'W':
bf12938e 3607 INSERT_OPERAND (FT, insn, va_arg (args, int));
252b5132
RH
3608 continue;
3609
3610 case 'd':
3611 case 'G':
af7ee8bf 3612 case 'K':
bf12938e 3613 INSERT_OPERAND (RD, insn, va_arg (args, int));
252b5132
RH
3614 continue;
3615
4372b673
NC
3616 case 'U':
3617 {
3618 int tmp = va_arg (args, int);
3619
bf12938e
RS
3620 INSERT_OPERAND (RT, insn, tmp);
3621 INSERT_OPERAND (RD, insn, tmp);
beae10d5 3622 continue;
4372b673
NC
3623 }
3624
252b5132
RH
3625 case 'V':
3626 case 'S':
bf12938e 3627 INSERT_OPERAND (FS, insn, va_arg (args, int));
252b5132
RH
3628 continue;
3629
3630 case 'z':
3631 continue;
3632
3633 case '<':
bf12938e 3634 INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
252b5132
RH
3635 continue;
3636
3637 case 'D':
bf12938e 3638 INSERT_OPERAND (FD, insn, va_arg (args, int));
252b5132
RH
3639 continue;
3640
3641 case 'B':
bf12938e 3642 INSERT_OPERAND (CODE20, insn, va_arg (args, int));
252b5132
RH
3643 continue;
3644
4372b673 3645 case 'J':
bf12938e 3646 INSERT_OPERAND (CODE19, insn, va_arg (args, int));
4372b673
NC
3647 continue;
3648
252b5132 3649 case 'q':
bf12938e 3650 INSERT_OPERAND (CODE2, insn, va_arg (args, int));
252b5132
RH
3651 continue;
3652
3653 case 'b':
3654 case 's':
3655 case 'r':
3656 case 'v':
bf12938e 3657 INSERT_OPERAND (RS, insn, va_arg (args, int));
252b5132
RH
3658 continue;
3659
3660 case 'i':
3661 case 'j':
3662 case 'o':
6e1304d8 3663 macro_read_relocs (&args, r);
cdf6fd85 3664 assert (*r == BFD_RELOC_GPREL16
f6688943
TS
3665 || *r == BFD_RELOC_MIPS_LITERAL
3666 || *r == BFD_RELOC_MIPS_HIGHER
3667 || *r == BFD_RELOC_HI16_S
3668 || *r == BFD_RELOC_LO16
3669 || *r == BFD_RELOC_MIPS_GOT16
3670 || *r == BFD_RELOC_MIPS_CALL16
438c16b8
TS
3671 || *r == BFD_RELOC_MIPS_GOT_DISP
3672 || *r == BFD_RELOC_MIPS_GOT_PAGE
3673 || *r == BFD_RELOC_MIPS_GOT_OFST
f6688943 3674 || *r == BFD_RELOC_MIPS_GOT_LO16
3e722fb5 3675 || *r == BFD_RELOC_MIPS_CALL_LO16);
252b5132
RH
3676 continue;
3677
3678 case 'u':
6e1304d8 3679 macro_read_relocs (&args, r);
252b5132
RH
3680 assert (ep != NULL
3681 && (ep->X_op == O_constant
3682 || (ep->X_op == O_symbol
f6688943
TS
3683 && (*r == BFD_RELOC_MIPS_HIGHEST
3684 || *r == BFD_RELOC_HI16_S
3685 || *r == BFD_RELOC_HI16
3686 || *r == BFD_RELOC_GPREL16
3687 || *r == BFD_RELOC_MIPS_GOT_HI16
3e722fb5 3688 || *r == BFD_RELOC_MIPS_CALL_HI16))));
252b5132
RH
3689 continue;
3690
3691 case 'p':
3692 assert (ep != NULL);
bad36eac 3693
252b5132
RH
3694 /*
3695 * This allows macro() to pass an immediate expression for
3696 * creating short branches without creating a symbol.
bad36eac
DJ
3697 *
3698 * We don't allow branch relaxation for these branches, as
3699 * they should only appear in ".set nomacro" anyway.
252b5132
RH
3700 */
3701 if (ep->X_op == O_constant)
3702 {
bad36eac
DJ
3703 if ((ep->X_add_number & 3) != 0)
3704 as_bad (_("branch to misaligned address (0x%lx)"),
3705 (unsigned long) ep->X_add_number);
3706 if ((ep->X_add_number + 0x20000) & ~0x3ffff)
3707 as_bad (_("branch address range overflow (0x%lx)"),
3708 (unsigned long) ep->X_add_number);
252b5132
RH
3709 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
3710 ep = NULL;
3711 }
3712 else
0b25d3e6 3713 *r = BFD_RELOC_16_PCREL_S2;
252b5132
RH
3714 continue;
3715
3716 case 'a':
3717 assert (ep != NULL);
f6688943 3718 *r = BFD_RELOC_MIPS_JMP;
252b5132
RH
3719 continue;
3720
3721 case 'C':
a9e24354 3722 INSERT_OPERAND (COPZ, insn, va_arg (args, unsigned long));
252b5132
RH
3723 continue;
3724
d43b4baf 3725 case 'k':
a9e24354 3726 INSERT_OPERAND (CACHE, insn, va_arg (args, unsigned long));
d43b4baf
TS
3727 continue;
3728
252b5132
RH
3729 default:
3730 internalError ();
3731 }
3732 break;
3733 }
3734 va_end (args);
f6688943 3735 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132 3736
4d7206a2 3737 append_insn (&insn, ep, r);
252b5132
RH
3738}
3739
3740static void
67c0d1eb 3741mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
17a2f251 3742 va_list args)
252b5132 3743{
1e915849 3744 struct mips_opcode *mo;
252b5132 3745 struct mips_cl_insn insn;
f6688943
TS
3746 bfd_reloc_code_real_type r[3]
3747 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 3748
1e915849
RS
3749 mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
3750 assert (mo);
3751 assert (strcmp (name, mo->name) == 0);
252b5132 3752
1e915849 3753 while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
252b5132 3754 {
1e915849
RS
3755 ++mo;
3756 assert (mo->name);
3757 assert (strcmp (name, mo->name) == 0);
252b5132
RH
3758 }
3759
1e915849 3760 create_insn (&insn, mo);
252b5132
RH
3761 for (;;)
3762 {
3763 int c;
3764
3765 c = *fmt++;
3766 switch (c)
3767 {
3768 case '\0':
3769 break;
3770
3771 case ',':
3772 case '(':
3773 case ')':
3774 continue;
3775
3776 case 'y':
3777 case 'w':
bf12938e 3778 MIPS16_INSERT_OPERAND (RY, insn, va_arg (args, int));
252b5132
RH
3779 continue;
3780
3781 case 'x':
3782 case 'v':
bf12938e 3783 MIPS16_INSERT_OPERAND (RX, insn, va_arg (args, int));
252b5132
RH
3784 continue;
3785
3786 case 'z':
bf12938e 3787 MIPS16_INSERT_OPERAND (RZ, insn, va_arg (args, int));
252b5132
RH
3788 continue;
3789
3790 case 'Z':
bf12938e 3791 MIPS16_INSERT_OPERAND (MOVE32Z, insn, va_arg (args, int));
252b5132
RH
3792 continue;
3793
3794 case '0':
3795 case 'S':
3796 case 'P':
3797 case 'R':
3798 continue;
3799
3800 case 'X':
bf12938e 3801 MIPS16_INSERT_OPERAND (REGR32, insn, va_arg (args, int));
252b5132
RH
3802 continue;
3803
3804 case 'Y':
3805 {
3806 int regno;
3807
3808 regno = va_arg (args, int);
3809 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
a9e24354 3810 MIPS16_INSERT_OPERAND (REG32R, insn, regno);
252b5132
RH
3811 }
3812 continue;
3813
3814 case '<':
3815 case '>':
3816 case '4':
3817 case '5':
3818 case 'H':
3819 case 'W':
3820 case 'D':
3821 case 'j':
3822 case '8':
3823 case 'V':
3824 case 'C':
3825 case 'U':
3826 case 'k':
3827 case 'K':
3828 case 'p':
3829 case 'q':
3830 {
3831 assert (ep != NULL);
3832
3833 if (ep->X_op != O_constant)
874e8986 3834 *r = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
3835 else
3836 {
b34976b6
AM
3837 mips16_immed (NULL, 0, c, ep->X_add_number, FALSE, FALSE,
3838 FALSE, &insn.insn_opcode, &insn.use_extend,
c4e7957c 3839 &insn.extend);
252b5132 3840 ep = NULL;
f6688943 3841 *r = BFD_RELOC_UNUSED;
252b5132
RH
3842 }
3843 }
3844 continue;
3845
3846 case '6':
bf12938e 3847 MIPS16_INSERT_OPERAND (IMM6, insn, va_arg (args, int));
252b5132
RH
3848 continue;
3849 }
3850
3851 break;
3852 }
3853
f6688943 3854 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132 3855
4d7206a2 3856 append_insn (&insn, ep, r);
252b5132
RH
3857}
3858
2051e8c4
MR
3859/*
3860 * Sign-extend 32-bit mode constants that have bit 31 set and all
3861 * higher bits unset.
3862 */
9f872bbe 3863static void
2051e8c4
MR
3864normalize_constant_expr (expressionS *ex)
3865{
9ee2a2d4 3866 if (ex->X_op == O_constant
2051e8c4
MR
3867 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
3868 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
3869 - 0x80000000);
3870}
3871
3872/*
3873 * Sign-extend 32-bit mode address offsets that have bit 31 set and
3874 * all higher bits unset.
3875 */
3876static void
3877normalize_address_expr (expressionS *ex)
3878{
3879 if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
3880 || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
3881 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
3882 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
3883 - 0x80000000);
3884}
3885
438c16b8
TS
3886/*
3887 * Generate a "jalr" instruction with a relocation hint to the called
3888 * function. This occurs in NewABI PIC code.
3889 */
3890static void
67c0d1eb 3891macro_build_jalr (expressionS *ep)
438c16b8 3892{
685736be 3893 char *f = NULL;
b34976b6 3894
438c16b8 3895 if (HAVE_NEWABI)
f21f8242 3896 {
cc3d92a5 3897 frag_grow (8);
f21f8242
AO
3898 f = frag_more (0);
3899 }
67c0d1eb 3900 macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
438c16b8 3901 if (HAVE_NEWABI)
f21f8242 3902 fix_new_exp (frag_now, f - frag_now->fr_literal,
a105a300 3903 4, ep, FALSE, BFD_RELOC_MIPS_JALR);
438c16b8
TS
3904}
3905
252b5132
RH
3906/*
3907 * Generate a "lui" instruction.
3908 */
3909static void
67c0d1eb 3910macro_build_lui (expressionS *ep, int regnum)
252b5132
RH
3911{
3912 expressionS high_expr;
1e915849 3913 const struct mips_opcode *mo;
252b5132 3914 struct mips_cl_insn insn;
f6688943
TS
3915 bfd_reloc_code_real_type r[3]
3916 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
5a38dc70
AM
3917 const char *name = "lui";
3918 const char *fmt = "t,u";
252b5132
RH
3919
3920 assert (! mips_opts.mips16);
3921
4d7206a2 3922 high_expr = *ep;
252b5132
RH
3923
3924 if (high_expr.X_op == O_constant)
3925 {
54f4ddb3 3926 /* We can compute the instruction now without a relocation entry. */
e7d556df
TS
3927 high_expr.X_add_number = ((high_expr.X_add_number + 0x8000)
3928 >> 16) & 0xffff;
f6688943 3929 *r = BFD_RELOC_UNUSED;
252b5132 3930 }
78e1bb40 3931 else
252b5132
RH
3932 {
3933 assert (ep->X_op == O_symbol);
bbe506e8
TS
3934 /* _gp_disp is a special case, used from s_cpload.
3935 __gnu_local_gp is used if mips_no_shared. */
252b5132 3936 assert (mips_pic == NO_PIC
78e1bb40 3937 || (! HAVE_NEWABI
aa6975fb
ILT
3938 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
3939 || (! mips_in_shared
bbe506e8
TS
3940 && strcmp (S_GET_NAME (ep->X_add_symbol),
3941 "__gnu_local_gp") == 0));
f6688943 3942 *r = BFD_RELOC_HI16_S;
252b5132
RH
3943 }
3944
1e915849
RS
3945 mo = hash_find (op_hash, name);
3946 assert (strcmp (name, mo->name) == 0);
3947 assert (strcmp (fmt, mo->args) == 0);
3948 create_insn (&insn, mo);
252b5132 3949
bf12938e
RS
3950 insn.insn_opcode = insn.insn_mo->match;
3951 INSERT_OPERAND (RT, insn, regnum);
f6688943 3952 if (*r == BFD_RELOC_UNUSED)
252b5132
RH
3953 {
3954 insn.insn_opcode |= high_expr.X_add_number;
4d7206a2 3955 append_insn (&insn, NULL, r);
252b5132
RH
3956 }
3957 else
4d7206a2 3958 append_insn (&insn, &high_expr, r);
252b5132
RH
3959}
3960
885add95
CD
3961/* Generate a sequence of instructions to do a load or store from a constant
3962 offset off of a base register (breg) into/from a target register (treg),
3963 using AT if necessary. */
3964static void
67c0d1eb
RS
3965macro_build_ldst_constoffset (expressionS *ep, const char *op,
3966 int treg, int breg, int dbl)
885add95
CD
3967{
3968 assert (ep->X_op == O_constant);
3969
256ab948 3970 /* Sign-extending 32-bit constants makes their handling easier. */
2051e8c4
MR
3971 if (!dbl)
3972 normalize_constant_expr (ep);
256ab948 3973
67c1ffbe 3974 /* Right now, this routine can only handle signed 32-bit constants. */
ecd13cd3 3975 if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
885add95
CD
3976 as_warn (_("operand overflow"));
3977
3978 if (IS_SEXT_16BIT_NUM(ep->X_add_number))
3979 {
3980 /* Signed 16-bit offset will fit in the op. Easy! */
67c0d1eb 3981 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
885add95
CD
3982 }
3983 else
3984 {
3985 /* 32-bit offset, need multiple instructions and AT, like:
3986 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
3987 addu $tempreg,$tempreg,$breg
3988 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
3989 to handle the complete offset. */
67c0d1eb
RS
3990 macro_build_lui (ep, AT);
3991 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
3992 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
885add95 3993
741fe287 3994 if (!mips_opts.at)
8fc2e39e 3995 as_bad (_("Macro used $at after \".set noat\""));
885add95
CD
3996 }
3997}
3998
252b5132
RH
3999/* set_at()
4000 * Generates code to set the $at register to true (one)
4001 * if reg is less than the immediate expression.
4002 */
4003static void
67c0d1eb 4004set_at (int reg, int unsignedp)
252b5132
RH
4005{
4006 if (imm_expr.X_op == O_constant
4007 && imm_expr.X_add_number >= -0x8000
4008 && imm_expr.X_add_number < 0x8000)
67c0d1eb
RS
4009 macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
4010 AT, reg, BFD_RELOC_LO16);
252b5132
RH
4011 else
4012 {
67c0d1eb
RS
4013 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4014 macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
252b5132
RH
4015 }
4016}
4017
4018/* Warn if an expression is not a constant. */
4019
4020static void
17a2f251 4021check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
252b5132
RH
4022{
4023 if (ex->X_op == O_big)
4024 as_bad (_("unsupported large constant"));
4025 else if (ex->X_op != O_constant)
9ee2a2d4
MR
4026 as_bad (_("Instruction %s requires absolute expression"),
4027 ip->insn_mo->name);
13757d0c 4028
9ee2a2d4
MR
4029 if (HAVE_32BIT_GPRS)
4030 normalize_constant_expr (ex);
252b5132
RH
4031}
4032
4033/* Count the leading zeroes by performing a binary chop. This is a
4034 bulky bit of source, but performance is a LOT better for the
4035 majority of values than a simple loop to count the bits:
4036 for (lcnt = 0; (lcnt < 32); lcnt++)
4037 if ((v) & (1 << (31 - lcnt)))
4038 break;
4039 However it is not code size friendly, and the gain will drop a bit
4040 on certain cached systems.
4041*/
4042#define COUNT_TOP_ZEROES(v) \
4043 (((v) & ~0xffff) == 0 \
4044 ? ((v) & ~0xff) == 0 \
4045 ? ((v) & ~0xf) == 0 \
4046 ? ((v) & ~0x3) == 0 \
4047 ? ((v) & ~0x1) == 0 \
4048 ? !(v) \
4049 ? 32 \
4050 : 31 \
4051 : 30 \
4052 : ((v) & ~0x7) == 0 \
4053 ? 29 \
4054 : 28 \
4055 : ((v) & ~0x3f) == 0 \
4056 ? ((v) & ~0x1f) == 0 \
4057 ? 27 \
4058 : 26 \
4059 : ((v) & ~0x7f) == 0 \
4060 ? 25 \
4061 : 24 \
4062 : ((v) & ~0xfff) == 0 \
4063 ? ((v) & ~0x3ff) == 0 \
4064 ? ((v) & ~0x1ff) == 0 \
4065 ? 23 \
4066 : 22 \
4067 : ((v) & ~0x7ff) == 0 \
4068 ? 21 \
4069 : 20 \
4070 : ((v) & ~0x3fff) == 0 \
4071 ? ((v) & ~0x1fff) == 0 \
4072 ? 19 \
4073 : 18 \
4074 : ((v) & ~0x7fff) == 0 \
4075 ? 17 \
4076 : 16 \
4077 : ((v) & ~0xffffff) == 0 \
4078 ? ((v) & ~0xfffff) == 0 \
4079 ? ((v) & ~0x3ffff) == 0 \
4080 ? ((v) & ~0x1ffff) == 0 \
4081 ? 15 \
4082 : 14 \
4083 : ((v) & ~0x7ffff) == 0 \
4084 ? 13 \
4085 : 12 \
4086 : ((v) & ~0x3fffff) == 0 \
4087 ? ((v) & ~0x1fffff) == 0 \
4088 ? 11 \
4089 : 10 \
4090 : ((v) & ~0x7fffff) == 0 \
4091 ? 9 \
4092 : 8 \
4093 : ((v) & ~0xfffffff) == 0 \
4094 ? ((v) & ~0x3ffffff) == 0 \
4095 ? ((v) & ~0x1ffffff) == 0 \
4096 ? 7 \
4097 : 6 \
4098 : ((v) & ~0x7ffffff) == 0 \
4099 ? 5 \
4100 : 4 \
4101 : ((v) & ~0x3fffffff) == 0 \
4102 ? ((v) & ~0x1fffffff) == 0 \
4103 ? 3 \
4104 : 2 \
4105 : ((v) & ~0x7fffffff) == 0 \
4106 ? 1 \
4107 : 0)
4108
4109/* load_register()
67c1ffbe 4110 * This routine generates the least number of instructions necessary to load
252b5132
RH
4111 * an absolute expression value into a register.
4112 */
4113static void
67c0d1eb 4114load_register (int reg, expressionS *ep, int dbl)
252b5132
RH
4115{
4116 int freg;
4117 expressionS hi32, lo32;
4118
4119 if (ep->X_op != O_big)
4120 {
4121 assert (ep->X_op == O_constant);
256ab948
TS
4122
4123 /* Sign-extending 32-bit constants makes their handling easier. */
2051e8c4
MR
4124 if (!dbl)
4125 normalize_constant_expr (ep);
256ab948
TS
4126
4127 if (IS_SEXT_16BIT_NUM (ep->X_add_number))
252b5132
RH
4128 {
4129 /* We can handle 16 bit signed values with an addiu to
4130 $zero. No need to ever use daddiu here, since $zero and
4131 the result are always correct in 32 bit mode. */
67c0d1eb 4132 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
252b5132
RH
4133 return;
4134 }
4135 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
4136 {
4137 /* We can handle 16 bit unsigned values with an ori to
4138 $zero. */
67c0d1eb 4139 macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
252b5132
RH
4140 return;
4141 }
256ab948 4142 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
252b5132
RH
4143 {
4144 /* 32 bit values require an lui. */
67c0d1eb 4145 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_HI16);
252b5132 4146 if ((ep->X_add_number & 0xffff) != 0)
67c0d1eb 4147 macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
252b5132
RH
4148 return;
4149 }
4150 }
4151
4152 /* The value is larger than 32 bits. */
4153
2051e8c4 4154 if (!dbl || HAVE_32BIT_GPRS)
252b5132 4155 {
55e08f71
NC
4156 char value[32];
4157
4158 sprintf_vma (value, ep->X_add_number);
20e1fcfd 4159 as_bad (_("Number (0x%s) larger than 32 bits"), value);
67c0d1eb 4160 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
252b5132
RH
4161 return;
4162 }
4163
4164 if (ep->X_op != O_big)
4165 {
4166 hi32 = *ep;
4167 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
4168 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
4169 hi32.X_add_number &= 0xffffffff;
4170 lo32 = *ep;
4171 lo32.X_add_number &= 0xffffffff;
4172 }
4173 else
4174 {
4175 assert (ep->X_add_number > 2);
4176 if (ep->X_add_number == 3)
4177 generic_bignum[3] = 0;
4178 else if (ep->X_add_number > 4)
4179 as_bad (_("Number larger than 64 bits"));
4180 lo32.X_op = O_constant;
4181 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
4182 hi32.X_op = O_constant;
4183 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
4184 }
4185
4186 if (hi32.X_add_number == 0)
4187 freg = 0;
4188 else
4189 {
4190 int shift, bit;
4191 unsigned long hi, lo;
4192
956cd1d6 4193 if (hi32.X_add_number == (offsetT) 0xffffffff)
beae10d5
KH
4194 {
4195 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
4196 {
67c0d1eb 4197 macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
beae10d5
KH
4198 return;
4199 }
4200 if (lo32.X_add_number & 0x80000000)
4201 {
67c0d1eb 4202 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
252b5132 4203 if (lo32.X_add_number & 0xffff)
67c0d1eb 4204 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
beae10d5
KH
4205 return;
4206 }
4207 }
252b5132
RH
4208
4209 /* Check for 16bit shifted constant. We know that hi32 is
4210 non-zero, so start the mask on the first bit of the hi32
4211 value. */
4212 shift = 17;
4213 do
beae10d5
KH
4214 {
4215 unsigned long himask, lomask;
4216
4217 if (shift < 32)
4218 {
4219 himask = 0xffff >> (32 - shift);
4220 lomask = (0xffff << shift) & 0xffffffff;
4221 }
4222 else
4223 {
4224 himask = 0xffff << (shift - 32);
4225 lomask = 0;
4226 }
4227 if ((hi32.X_add_number & ~(offsetT) himask) == 0
4228 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
4229 {
4230 expressionS tmp;
4231
4232 tmp.X_op = O_constant;
4233 if (shift < 32)
4234 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
4235 | (lo32.X_add_number >> shift));
4236 else
4237 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
67c0d1eb
RS
4238 macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
4239 macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", "d,w,<",
4240 reg, reg, (shift >= 32) ? shift - 32 : shift);
beae10d5
KH
4241 return;
4242 }
f9419b05 4243 ++shift;
beae10d5
KH
4244 }
4245 while (shift <= (64 - 16));
252b5132
RH
4246
4247 /* Find the bit number of the lowest one bit, and store the
4248 shifted value in hi/lo. */
4249 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
4250 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
4251 if (lo != 0)
4252 {
4253 bit = 0;
4254 while ((lo & 1) == 0)
4255 {
4256 lo >>= 1;
4257 ++bit;
4258 }
4259 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
4260 hi >>= bit;
4261 }
4262 else
4263 {
4264 bit = 32;
4265 while ((hi & 1) == 0)
4266 {
4267 hi >>= 1;
4268 ++bit;
4269 }
4270 lo = hi;
4271 hi = 0;
4272 }
4273
4274 /* Optimize if the shifted value is a (power of 2) - 1. */
4275 if ((hi == 0 && ((lo + 1) & lo) == 0)
4276 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
beae10d5
KH
4277 {
4278 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
252b5132 4279 if (shift != 0)
beae10d5 4280 {
252b5132
RH
4281 expressionS tmp;
4282
4283 /* This instruction will set the register to be all
4284 ones. */
beae10d5
KH
4285 tmp.X_op = O_constant;
4286 tmp.X_add_number = (offsetT) -1;
67c0d1eb 4287 macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
beae10d5
KH
4288 if (bit != 0)
4289 {
4290 bit += shift;
67c0d1eb
RS
4291 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", "d,w,<",
4292 reg, reg, (bit >= 32) ? bit - 32 : bit);
beae10d5 4293 }
67c0d1eb
RS
4294 macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", "d,w,<",
4295 reg, reg, (shift >= 32) ? shift - 32 : shift);
beae10d5
KH
4296 return;
4297 }
4298 }
252b5132
RH
4299
4300 /* Sign extend hi32 before calling load_register, because we can
4301 generally get better code when we load a sign extended value. */
4302 if ((hi32.X_add_number & 0x80000000) != 0)
beae10d5 4303 hi32.X_add_number |= ~(offsetT) 0xffffffff;
67c0d1eb 4304 load_register (reg, &hi32, 0);
252b5132
RH
4305 freg = reg;
4306 }
4307 if ((lo32.X_add_number & 0xffff0000) == 0)
4308 {
4309 if (freg != 0)
4310 {
67c0d1eb 4311 macro_build (NULL, "dsll32", "d,w,<", reg, freg, 0);
252b5132
RH
4312 freg = reg;
4313 }
4314 }
4315 else
4316 {
4317 expressionS mid16;
4318
956cd1d6 4319 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
beae10d5 4320 {
67c0d1eb
RS
4321 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
4322 macro_build (NULL, "dsrl32", "d,w,<", reg, reg, 0);
beae10d5
KH
4323 return;
4324 }
252b5132
RH
4325
4326 if (freg != 0)
4327 {
67c0d1eb 4328 macro_build (NULL, "dsll", "d,w,<", reg, freg, 16);
252b5132
RH
4329 freg = reg;
4330 }
4331 mid16 = lo32;
4332 mid16.X_add_number >>= 16;
67c0d1eb
RS
4333 macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
4334 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
252b5132
RH
4335 freg = reg;
4336 }
4337 if ((lo32.X_add_number & 0xffff) != 0)
67c0d1eb 4338 macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
252b5132
RH
4339}
4340
269137b2
TS
4341static inline void
4342load_delay_nop (void)
4343{
4344 if (!gpr_interlocks)
4345 macro_build (NULL, "nop", "");
4346}
4347
252b5132
RH
4348/* Load an address into a register. */
4349
4350static void
67c0d1eb 4351load_address (int reg, expressionS *ep, int *used_at)
252b5132 4352{
252b5132
RH
4353 if (ep->X_op != O_constant
4354 && ep->X_op != O_symbol)
4355 {
4356 as_bad (_("expression too complex"));
4357 ep->X_op = O_constant;
4358 }
4359
4360 if (ep->X_op == O_constant)
4361 {
67c0d1eb 4362 load_register (reg, ep, HAVE_64BIT_ADDRESSES);
252b5132
RH
4363 return;
4364 }
4365
4366 if (mips_pic == NO_PIC)
4367 {
4368 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 4369 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
4370 Otherwise we want
4371 lui $reg,<sym> (BFD_RELOC_HI16_S)
4372 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
d6bc6245 4373 If we have an addend, we always use the latter form.
76b3015f 4374
d6bc6245
TS
4375 With 64bit address space and a usable $at we want
4376 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4377 lui $at,<sym> (BFD_RELOC_HI16_S)
4378 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
4379 daddiu $at,<sym> (BFD_RELOC_LO16)
4380 dsll32 $reg,0
3a482fd5 4381 daddu $reg,$reg,$at
76b3015f 4382
c03099e6 4383 If $at is already in use, we use a path which is suboptimal
d6bc6245
TS
4384 on superscalar processors.
4385 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4386 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
4387 dsll $reg,16
4388 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
4389 dsll $reg,16
4390 daddiu $reg,<sym> (BFD_RELOC_LO16)
6caf9ef4
TS
4391
4392 For GP relative symbols in 64bit address space we can use
4393 the same sequence as in 32bit address space. */
aed1a261 4394 if (HAVE_64BIT_SYMBOLS)
d6bc6245 4395 {
6caf9ef4
TS
4396 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
4397 && !nopic_need_relax (ep->X_add_symbol, 1))
4398 {
4399 relax_start (ep->X_add_symbol);
4400 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
4401 mips_gp_register, BFD_RELOC_GPREL16);
4402 relax_switch ();
4403 }
d6bc6245 4404
741fe287 4405 if (*used_at == 0 && mips_opts.at)
d6bc6245 4406 {
67c0d1eb
RS
4407 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
4408 macro_build (ep, "lui", "t,u", AT, BFD_RELOC_HI16_S);
4409 macro_build (ep, "daddiu", "t,r,j", reg, reg,
4410 BFD_RELOC_MIPS_HIGHER);
4411 macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
4412 macro_build (NULL, "dsll32", "d,w,<", reg, reg, 0);
4413 macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
d6bc6245
TS
4414 *used_at = 1;
4415 }
4416 else
4417 {
67c0d1eb
RS
4418 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
4419 macro_build (ep, "daddiu", "t,r,j", reg, reg,
4420 BFD_RELOC_MIPS_HIGHER);
4421 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4422 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
4423 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4424 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
d6bc6245 4425 }
6caf9ef4
TS
4426
4427 if (mips_relax.sequence)
4428 relax_end ();
d6bc6245 4429 }
252b5132
RH
4430 else
4431 {
d6bc6245 4432 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 4433 && !nopic_need_relax (ep->X_add_symbol, 1))
d6bc6245 4434 {
4d7206a2 4435 relax_start (ep->X_add_symbol);
67c0d1eb 4436 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
17a2f251 4437 mips_gp_register, BFD_RELOC_GPREL16);
4d7206a2 4438 relax_switch ();
d6bc6245 4439 }
67c0d1eb
RS
4440 macro_build_lui (ep, reg);
4441 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
4442 reg, reg, BFD_RELOC_LO16);
4d7206a2
RS
4443 if (mips_relax.sequence)
4444 relax_end ();
d6bc6245 4445 }
252b5132 4446 }
0a44bf69 4447 else if (!mips_big_got)
252b5132
RH
4448 {
4449 expressionS ex;
4450
4451 /* If this is a reference to an external symbol, we want
4452 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4453 Otherwise we want
4454 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4455 nop
4456 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
f5040a92
AO
4457 If there is a constant, it must be added in after.
4458
ed6fb7bd 4459 If we have NewABI, we want
f5040a92
AO
4460 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
4461 unless we're referencing a global symbol with a non-zero
4462 offset, in which case cst must be added separately. */
ed6fb7bd
SC
4463 if (HAVE_NEWABI)
4464 {
f5040a92
AO
4465 if (ep->X_add_number)
4466 {
4d7206a2 4467 ex.X_add_number = ep->X_add_number;
f5040a92 4468 ep->X_add_number = 0;
4d7206a2 4469 relax_start (ep->X_add_symbol);
67c0d1eb
RS
4470 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4471 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
4472 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4473 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4474 ex.X_op = O_constant;
67c0d1eb 4475 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 4476 reg, reg, BFD_RELOC_LO16);
f5040a92 4477 ep->X_add_number = ex.X_add_number;
4d7206a2 4478 relax_switch ();
f5040a92 4479 }
67c0d1eb 4480 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 4481 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4d7206a2
RS
4482 if (mips_relax.sequence)
4483 relax_end ();
ed6fb7bd
SC
4484 }
4485 else
4486 {
f5040a92
AO
4487 ex.X_add_number = ep->X_add_number;
4488 ep->X_add_number = 0;
67c0d1eb
RS
4489 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4490 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 4491 load_delay_nop ();
4d7206a2
RS
4492 relax_start (ep->X_add_symbol);
4493 relax_switch ();
67c0d1eb 4494 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
17a2f251 4495 BFD_RELOC_LO16);
4d7206a2 4496 relax_end ();
ed6fb7bd 4497
f5040a92
AO
4498 if (ex.X_add_number != 0)
4499 {
4500 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4501 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4502 ex.X_op = O_constant;
67c0d1eb 4503 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 4504 reg, reg, BFD_RELOC_LO16);
f5040a92 4505 }
252b5132
RH
4506 }
4507 }
0a44bf69 4508 else if (mips_big_got)
252b5132
RH
4509 {
4510 expressionS ex;
252b5132
RH
4511
4512 /* This is the large GOT case. If this is a reference to an
4513 external symbol, we want
4514 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4515 addu $reg,$reg,$gp
4516 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
f5040a92
AO
4517
4518 Otherwise, for a reference to a local symbol in old ABI, we want
252b5132
RH
4519 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4520 nop
4521 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
684022ea 4522 If there is a constant, it must be added in after.
f5040a92
AO
4523
4524 In the NewABI, for local symbols, with or without offsets, we want:
438c16b8
TS
4525 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
4526 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
f5040a92 4527 */
438c16b8
TS
4528 if (HAVE_NEWABI)
4529 {
4d7206a2 4530 ex.X_add_number = ep->X_add_number;
f5040a92 4531 ep->X_add_number = 0;
4d7206a2 4532 relax_start (ep->X_add_symbol);
67c0d1eb
RS
4533 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
4534 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
4535 reg, reg, mips_gp_register);
4536 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
4537 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
f5040a92
AO
4538 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4539 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4540 else if (ex.X_add_number)
4541 {
4542 ex.X_op = O_constant;
67c0d1eb
RS
4543 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4544 BFD_RELOC_LO16);
f5040a92
AO
4545 }
4546
4547 ep->X_add_number = ex.X_add_number;
4d7206a2 4548 relax_switch ();
67c0d1eb 4549 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 4550 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
67c0d1eb
RS
4551 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4552 BFD_RELOC_MIPS_GOT_OFST);
4d7206a2 4553 relax_end ();
438c16b8 4554 }
252b5132 4555 else
438c16b8 4556 {
f5040a92
AO
4557 ex.X_add_number = ep->X_add_number;
4558 ep->X_add_number = 0;
4d7206a2 4559 relax_start (ep->X_add_symbol);
67c0d1eb
RS
4560 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
4561 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
4562 reg, reg, mips_gp_register);
4563 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
4564 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
4d7206a2
RS
4565 relax_switch ();
4566 if (reg_needs_delay (mips_gp_register))
438c16b8
TS
4567 {
4568 /* We need a nop before loading from $gp. This special
4569 check is required because the lui which starts the main
4570 instruction stream does not refer to $gp, and so will not
4571 insert the nop which may be required. */
67c0d1eb 4572 macro_build (NULL, "nop", "");
438c16b8 4573 }
67c0d1eb 4574 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 4575 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 4576 load_delay_nop ();
67c0d1eb 4577 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
17a2f251 4578 BFD_RELOC_LO16);
4d7206a2 4579 relax_end ();
438c16b8 4580
f5040a92
AO
4581 if (ex.X_add_number != 0)
4582 {
4583 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4584 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4585 ex.X_op = O_constant;
67c0d1eb
RS
4586 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4587 BFD_RELOC_LO16);
f5040a92 4588 }
252b5132
RH
4589 }
4590 }
252b5132
RH
4591 else
4592 abort ();
8fc2e39e 4593
741fe287 4594 if (!mips_opts.at && *used_at == 1)
8fc2e39e 4595 as_bad (_("Macro used $at after \".set noat\""));
252b5132
RH
4596}
4597
ea1fb5dc
RS
4598/* Move the contents of register SOURCE into register DEST. */
4599
4600static void
67c0d1eb 4601move_register (int dest, int source)
ea1fb5dc 4602{
67c0d1eb
RS
4603 macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
4604 dest, source, 0);
ea1fb5dc
RS
4605}
4606
4d7206a2 4607/* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
f6a22291
MR
4608 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
4609 The two alternatives are:
4d7206a2
RS
4610
4611 Global symbol Local sybmol
4612 ------------- ------------
4613 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
4614 ... ...
4615 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
4616
4617 load_got_offset emits the first instruction and add_got_offset
f6a22291
MR
4618 emits the second for a 16-bit offset or add_got_offset_hilo emits
4619 a sequence to add a 32-bit offset using a scratch register. */
4d7206a2
RS
4620
4621static void
67c0d1eb 4622load_got_offset (int dest, expressionS *local)
4d7206a2
RS
4623{
4624 expressionS global;
4625
4626 global = *local;
4627 global.X_add_number = 0;
4628
4629 relax_start (local->X_add_symbol);
67c0d1eb
RS
4630 macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4631 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4d7206a2 4632 relax_switch ();
67c0d1eb
RS
4633 macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4634 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4d7206a2
RS
4635 relax_end ();
4636}
4637
4638static void
67c0d1eb 4639add_got_offset (int dest, expressionS *local)
4d7206a2
RS
4640{
4641 expressionS global;
4642
4643 global.X_op = O_constant;
4644 global.X_op_symbol = NULL;
4645 global.X_add_symbol = NULL;
4646 global.X_add_number = local->X_add_number;
4647
4648 relax_start (local->X_add_symbol);
67c0d1eb 4649 macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
4d7206a2
RS
4650 dest, dest, BFD_RELOC_LO16);
4651 relax_switch ();
67c0d1eb 4652 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
4d7206a2
RS
4653 relax_end ();
4654}
4655
f6a22291
MR
4656static void
4657add_got_offset_hilo (int dest, expressionS *local, int tmp)
4658{
4659 expressionS global;
4660 int hold_mips_optimize;
4661
4662 global.X_op = O_constant;
4663 global.X_op_symbol = NULL;
4664 global.X_add_symbol = NULL;
4665 global.X_add_number = local->X_add_number;
4666
4667 relax_start (local->X_add_symbol);
4668 load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
4669 relax_switch ();
4670 /* Set mips_optimize around the lui instruction to avoid
4671 inserting an unnecessary nop after the lw. */
4672 hold_mips_optimize = mips_optimize;
4673 mips_optimize = 2;
4674 macro_build_lui (&global, tmp);
4675 mips_optimize = hold_mips_optimize;
4676 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
4677 relax_end ();
4678
4679 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
4680}
4681
252b5132
RH
4682/*
4683 * Build macros
4684 * This routine implements the seemingly endless macro or synthesized
4685 * instructions and addressing modes in the mips assembly language. Many
4686 * of these macros are simple and are similar to each other. These could
67c1ffbe 4687 * probably be handled by some kind of table or grammar approach instead of
252b5132
RH
4688 * this verbose method. Others are not simple macros but are more like
4689 * optimizing code generation.
4690 * One interesting optimization is when several store macros appear
67c1ffbe 4691 * consecutively that would load AT with the upper half of the same address.
252b5132
RH
4692 * The ensuing load upper instructions are ommited. This implies some kind
4693 * of global optimization. We currently only optimize within a single macro.
4694 * For many of the load and store macros if the address is specified as a
4695 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
4696 * first load register 'at' with zero and use it as the base register. The
4697 * mips assembler simply uses register $zero. Just one tiny optimization
4698 * we're missing.
4699 */
4700static void
17a2f251 4701macro (struct mips_cl_insn *ip)
252b5132 4702{
741fe287
MR
4703 unsigned int treg, sreg, dreg, breg;
4704 unsigned int tempreg;
252b5132 4705 int mask;
43841e91 4706 int used_at = 0;
252b5132
RH
4707 expressionS expr1;
4708 const char *s;
4709 const char *s2;
4710 const char *fmt;
4711 int likely = 0;
4712 int dbl = 0;
4713 int coproc = 0;
4714 int lr = 0;
4715 int imm = 0;
1abe91b1 4716 int call = 0;
252b5132 4717 int off;
67c0d1eb 4718 offsetT maxnum;
252b5132 4719 bfd_reloc_code_real_type r;
252b5132
RH
4720 int hold_mips_optimize;
4721
4722 assert (! mips_opts.mips16);
4723
4724 treg = (ip->insn_opcode >> 16) & 0x1f;
4725 dreg = (ip->insn_opcode >> 11) & 0x1f;
4726 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
4727 mask = ip->insn_mo->mask;
4728
4729 expr1.X_op = O_constant;
4730 expr1.X_op_symbol = NULL;
4731 expr1.X_add_symbol = NULL;
4732 expr1.X_add_number = 1;
4733
4734 switch (mask)
4735 {
4736 case M_DABS:
4737 dbl = 1;
4738 case M_ABS:
4739 /* bgez $a0,.+12
4740 move v0,$a0
4741 sub v0,$zero,$a0
4742 */
4743
7d10b47d 4744 start_noreorder ();
252b5132
RH
4745
4746 expr1.X_add_number = 8;
67c0d1eb 4747 macro_build (&expr1, "bgez", "s,p", sreg);
252b5132 4748 if (dreg == sreg)
67c0d1eb 4749 macro_build (NULL, "nop", "", 0);
252b5132 4750 else
67c0d1eb
RS
4751 move_register (dreg, sreg);
4752 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
252b5132 4753
7d10b47d 4754 end_noreorder ();
8fc2e39e 4755 break;
252b5132
RH
4756
4757 case M_ADD_I:
4758 s = "addi";
4759 s2 = "add";
4760 goto do_addi;
4761 case M_ADDU_I:
4762 s = "addiu";
4763 s2 = "addu";
4764 goto do_addi;
4765 case M_DADD_I:
4766 dbl = 1;
4767 s = "daddi";
4768 s2 = "dadd";
4769 goto do_addi;
4770 case M_DADDU_I:
4771 dbl = 1;
4772 s = "daddiu";
4773 s2 = "daddu";
4774 do_addi:
4775 if (imm_expr.X_op == O_constant
4776 && imm_expr.X_add_number >= -0x8000
4777 && imm_expr.X_add_number < 0x8000)
4778 {
67c0d1eb 4779 macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
8fc2e39e 4780 break;
252b5132 4781 }
8fc2e39e 4782 used_at = 1;
67c0d1eb
RS
4783 load_register (AT, &imm_expr, dbl);
4784 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
252b5132
RH
4785 break;
4786
4787 case M_AND_I:
4788 s = "andi";
4789 s2 = "and";
4790 goto do_bit;
4791 case M_OR_I:
4792 s = "ori";
4793 s2 = "or";
4794 goto do_bit;
4795 case M_NOR_I:
4796 s = "";
4797 s2 = "nor";
4798 goto do_bit;
4799 case M_XOR_I:
4800 s = "xori";
4801 s2 = "xor";
4802 do_bit:
4803 if (imm_expr.X_op == O_constant
4804 && imm_expr.X_add_number >= 0
4805 && imm_expr.X_add_number < 0x10000)
4806 {
4807 if (mask != M_NOR_I)
67c0d1eb 4808 macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16);
252b5132
RH
4809 else
4810 {
67c0d1eb
RS
4811 macro_build (&imm_expr, "ori", "t,r,i",
4812 treg, sreg, BFD_RELOC_LO16);
4813 macro_build (NULL, "nor", "d,v,t", treg, treg, 0);
252b5132 4814 }
8fc2e39e 4815 break;
252b5132
RH
4816 }
4817
8fc2e39e 4818 used_at = 1;
67c0d1eb
RS
4819 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4820 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
252b5132
RH
4821 break;
4822
8b082fb1
TS
4823 case M_BALIGN:
4824 switch (imm_expr.X_add_number)
4825 {
4826 case 0:
4827 macro_build (NULL, "nop", "");
4828 break;
4829 case 2:
4830 macro_build (NULL, "packrl.ph", "d,s,t", treg, treg, sreg);
4831 break;
4832 default:
4833 macro_build (NULL, "balign", "t,s,2", treg, sreg,
4834 (int)imm_expr.X_add_number);
4835 break;
4836 }
4837 break;
4838
252b5132
RH
4839 case M_BEQ_I:
4840 s = "beq";
4841 goto beq_i;
4842 case M_BEQL_I:
4843 s = "beql";
4844 likely = 1;
4845 goto beq_i;
4846 case M_BNE_I:
4847 s = "bne";
4848 goto beq_i;
4849 case M_BNEL_I:
4850 s = "bnel";
4851 likely = 1;
4852 beq_i:
4853 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4854 {
67c0d1eb 4855 macro_build (&offset_expr, s, "s,t,p", sreg, 0);
8fc2e39e 4856 break;
252b5132 4857 }
8fc2e39e 4858 used_at = 1;
67c0d1eb
RS
4859 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4860 macro_build (&offset_expr, s, "s,t,p", sreg, AT);
252b5132
RH
4861 break;
4862
4863 case M_BGEL:
4864 likely = 1;
4865 case M_BGE:
4866 if (treg == 0)
4867 {
67c0d1eb 4868 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
8fc2e39e 4869 break;
252b5132
RH
4870 }
4871 if (sreg == 0)
4872 {
67c0d1eb 4873 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", treg);
8fc2e39e 4874 break;
252b5132 4875 }
8fc2e39e 4876 used_at = 1;
67c0d1eb
RS
4877 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
4878 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4879 break;
4880
4881 case M_BGTL_I:
4882 likely = 1;
4883 case M_BGT_I:
4884 /* check for > max integer */
4885 maxnum = 0x7fffffff;
ca4e0257 4886 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
4887 {
4888 maxnum <<= 16;
4889 maxnum |= 0xffff;
4890 maxnum <<= 16;
4891 maxnum |= 0xffff;
4892 }
4893 if (imm_expr.X_op == O_constant
4894 && imm_expr.X_add_number >= maxnum
ca4e0257 4895 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
4896 {
4897 do_false:
4898 /* result is always false */
4899 if (! likely)
67c0d1eb 4900 macro_build (NULL, "nop", "", 0);
252b5132 4901 else
67c0d1eb 4902 macro_build (&offset_expr, "bnel", "s,t,p", 0, 0);
8fc2e39e 4903 break;
252b5132
RH
4904 }
4905 if (imm_expr.X_op != O_constant)
4906 as_bad (_("Unsupported large constant"));
f9419b05 4907 ++imm_expr.X_add_number;
252b5132
RH
4908 /* FALLTHROUGH */
4909 case M_BGE_I:
4910 case M_BGEL_I:
4911 if (mask == M_BGEL_I)
4912 likely = 1;
4913 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4914 {
67c0d1eb 4915 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
8fc2e39e 4916 break;
252b5132
RH
4917 }
4918 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4919 {
67c0d1eb 4920 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
8fc2e39e 4921 break;
252b5132
RH
4922 }
4923 maxnum = 0x7fffffff;
ca4e0257 4924 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
4925 {
4926 maxnum <<= 16;
4927 maxnum |= 0xffff;
4928 maxnum <<= 16;
4929 maxnum |= 0xffff;
4930 }
4931 maxnum = - maxnum - 1;
4932 if (imm_expr.X_op == O_constant
4933 && imm_expr.X_add_number <= maxnum
ca4e0257 4934 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
4935 {
4936 do_true:
4937 /* result is always true */
4938 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
67c0d1eb 4939 macro_build (&offset_expr, "b", "p");
8fc2e39e 4940 break;
252b5132 4941 }
8fc2e39e 4942 used_at = 1;
67c0d1eb
RS
4943 set_at (sreg, 0);
4944 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4945 break;
4946
4947 case M_BGEUL:
4948 likely = 1;
4949 case M_BGEU:
4950 if (treg == 0)
4951 goto do_true;
4952 if (sreg == 0)
4953 {
67c0d1eb 4954 macro_build (&offset_expr, likely ? "beql" : "beq",
17a2f251 4955 "s,t,p", 0, treg);
8fc2e39e 4956 break;
252b5132 4957 }
8fc2e39e 4958 used_at = 1;
67c0d1eb
RS
4959 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
4960 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4961 break;
4962
4963 case M_BGTUL_I:
4964 likely = 1;
4965 case M_BGTU_I:
4966 if (sreg == 0
ca4e0257 4967 || (HAVE_32BIT_GPRS
252b5132 4968 && imm_expr.X_op == O_constant
956cd1d6 4969 && imm_expr.X_add_number == (offsetT) 0xffffffff))
252b5132
RH
4970 goto do_false;
4971 if (imm_expr.X_op != O_constant)
4972 as_bad (_("Unsupported large constant"));
f9419b05 4973 ++imm_expr.X_add_number;
252b5132
RH
4974 /* FALLTHROUGH */
4975 case M_BGEU_I:
4976 case M_BGEUL_I:
4977 if (mask == M_BGEUL_I)
4978 likely = 1;
4979 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4980 goto do_true;
4981 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4982 {
67c0d1eb 4983 macro_build (&offset_expr, likely ? "bnel" : "bne",
17a2f251 4984 "s,t,p", sreg, 0);
8fc2e39e 4985 break;
252b5132 4986 }
8fc2e39e 4987 used_at = 1;
67c0d1eb
RS
4988 set_at (sreg, 1);
4989 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4990 break;
4991
4992 case M_BGTL:
4993 likely = 1;
4994 case M_BGT:
4995 if (treg == 0)
4996 {
67c0d1eb 4997 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
8fc2e39e 4998 break;
252b5132
RH
4999 }
5000 if (sreg == 0)
5001 {
67c0d1eb 5002 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", treg);
8fc2e39e 5003 break;
252b5132 5004 }
8fc2e39e 5005 used_at = 1;
67c0d1eb
RS
5006 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
5007 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
5008 break;
5009
5010 case M_BGTUL:
5011 likely = 1;
5012 case M_BGTU:
5013 if (treg == 0)
5014 {
67c0d1eb 5015 macro_build (&offset_expr, likely ? "bnel" : "bne",
17a2f251 5016 "s,t,p", sreg, 0);
8fc2e39e 5017 break;
252b5132
RH
5018 }
5019 if (sreg == 0)
5020 goto do_false;
8fc2e39e 5021 used_at = 1;
67c0d1eb
RS
5022 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
5023 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
5024 break;
5025
5026 case M_BLEL:
5027 likely = 1;
5028 case M_BLE:
5029 if (treg == 0)
5030 {
67c0d1eb 5031 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
8fc2e39e 5032 break;
252b5132
RH
5033 }
5034 if (sreg == 0)
5035 {
67c0d1eb 5036 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", treg);
8fc2e39e 5037 break;
252b5132 5038 }
8fc2e39e 5039 used_at = 1;
67c0d1eb
RS
5040 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
5041 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
5042 break;
5043
5044 case M_BLEL_I:
5045 likely = 1;
5046 case M_BLE_I:
5047 maxnum = 0x7fffffff;
ca4e0257 5048 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
5049 {
5050 maxnum <<= 16;
5051 maxnum |= 0xffff;
5052 maxnum <<= 16;
5053 maxnum |= 0xffff;
5054 }
5055 if (imm_expr.X_op == O_constant
5056 && imm_expr.X_add_number >= maxnum
ca4e0257 5057 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
5058 goto do_true;
5059 if (imm_expr.X_op != O_constant)
5060 as_bad (_("Unsupported large constant"));
f9419b05 5061 ++imm_expr.X_add_number;
252b5132
RH
5062 /* FALLTHROUGH */
5063 case M_BLT_I:
5064 case M_BLTL_I:
5065 if (mask == M_BLTL_I)
5066 likely = 1;
5067 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5068 {
67c0d1eb 5069 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
8fc2e39e 5070 break;
252b5132
RH
5071 }
5072 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5073 {
67c0d1eb 5074 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
8fc2e39e 5075 break;
252b5132 5076 }
8fc2e39e 5077 used_at = 1;
67c0d1eb
RS
5078 set_at (sreg, 0);
5079 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
5080 break;
5081
5082 case M_BLEUL:
5083 likely = 1;
5084 case M_BLEU:
5085 if (treg == 0)
5086 {
67c0d1eb 5087 macro_build (&offset_expr, likely ? "beql" : "beq",
17a2f251 5088 "s,t,p", sreg, 0);
8fc2e39e 5089 break;
252b5132
RH
5090 }
5091 if (sreg == 0)
5092 goto do_true;
8fc2e39e 5093 used_at = 1;
67c0d1eb
RS
5094 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
5095 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
5096 break;
5097
5098 case M_BLEUL_I:
5099 likely = 1;
5100 case M_BLEU_I:
5101 if (sreg == 0
ca4e0257 5102 || (HAVE_32BIT_GPRS
252b5132 5103 && imm_expr.X_op == O_constant
956cd1d6 5104 && imm_expr.X_add_number == (offsetT) 0xffffffff))
252b5132
RH
5105 goto do_true;
5106 if (imm_expr.X_op != O_constant)
5107 as_bad (_("Unsupported large constant"));
f9419b05 5108 ++imm_expr.X_add_number;
252b5132
RH
5109 /* FALLTHROUGH */
5110 case M_BLTU_I:
5111 case M_BLTUL_I:
5112 if (mask == M_BLTUL_I)
5113 likely = 1;
5114 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5115 goto do_false;
5116 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5117 {
67c0d1eb 5118 macro_build (&offset_expr, likely ? "beql" : "beq",
252b5132 5119 "s,t,p", sreg, 0);
8fc2e39e 5120 break;
252b5132 5121 }
8fc2e39e 5122 used_at = 1;
67c0d1eb
RS
5123 set_at (sreg, 1);
5124 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
5125 break;
5126
5127 case M_BLTL:
5128 likely = 1;
5129 case M_BLT:
5130 if (treg == 0)
5131 {
67c0d1eb 5132 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
8fc2e39e 5133 break;
252b5132
RH
5134 }
5135 if (sreg == 0)
5136 {
67c0d1eb 5137 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", treg);
8fc2e39e 5138 break;
252b5132 5139 }
8fc2e39e 5140 used_at = 1;
67c0d1eb
RS
5141 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
5142 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
5143 break;
5144
5145 case M_BLTUL:
5146 likely = 1;
5147 case M_BLTU:
5148 if (treg == 0)
5149 goto do_false;
5150 if (sreg == 0)
5151 {
67c0d1eb 5152 macro_build (&offset_expr, likely ? "bnel" : "bne",
17a2f251 5153 "s,t,p", 0, treg);
8fc2e39e 5154 break;
252b5132 5155 }
8fc2e39e 5156 used_at = 1;
67c0d1eb
RS
5157 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
5158 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
5159 break;
5160
5f74bc13
CD
5161 case M_DEXT:
5162 {
5163 unsigned long pos;
5164 unsigned long size;
5165
5166 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
5167 {
5168 as_bad (_("Unsupported large constant"));
5169 pos = size = 1;
5170 }
5171 else
5172 {
5173 pos = (unsigned long) imm_expr.X_add_number;
5174 size = (unsigned long) imm2_expr.X_add_number;
5175 }
5176
5177 if (pos > 63)
5178 {
5179 as_bad (_("Improper position (%lu)"), pos);
5180 pos = 1;
5181 }
5182 if (size == 0 || size > 64
5183 || (pos + size - 1) > 63)
5184 {
5185 as_bad (_("Improper extract size (%lu, position %lu)"),
5186 size, pos);
5187 size = 1;
5188 }
5189
5190 if (size <= 32 && pos < 32)
5191 {
5192 s = "dext";
5193 fmt = "t,r,+A,+C";
5194 }
5195 else if (size <= 32)
5196 {
5197 s = "dextu";
5198 fmt = "t,r,+E,+H";
5199 }
5200 else
5201 {
5202 s = "dextm";
5203 fmt = "t,r,+A,+G";
5204 }
67c0d1eb 5205 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos, size - 1);
5f74bc13 5206 }
8fc2e39e 5207 break;
5f74bc13
CD
5208
5209 case M_DINS:
5210 {
5211 unsigned long pos;
5212 unsigned long size;
5213
5214 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
5215 {
5216 as_bad (_("Unsupported large constant"));
5217 pos = size = 1;
5218 }
5219 else
5220 {
5221 pos = (unsigned long) imm_expr.X_add_number;
5222 size = (unsigned long) imm2_expr.X_add_number;
5223 }
5224
5225 if (pos > 63)
5226 {
5227 as_bad (_("Improper position (%lu)"), pos);
5228 pos = 1;
5229 }
5230 if (size == 0 || size > 64
5231 || (pos + size - 1) > 63)
5232 {
5233 as_bad (_("Improper insert size (%lu, position %lu)"),
5234 size, pos);
5235 size = 1;
5236 }
5237
5238 if (pos < 32 && (pos + size - 1) < 32)
5239 {
5240 s = "dins";
5241 fmt = "t,r,+A,+B";
5242 }
5243 else if (pos >= 32)
5244 {
5245 s = "dinsu";
5246 fmt = "t,r,+E,+F";
5247 }
5248 else
5249 {
5250 s = "dinsm";
5251 fmt = "t,r,+A,+F";
5252 }
750bdd57
AS
5253 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
5254 (int) (pos + size - 1));
5f74bc13 5255 }
8fc2e39e 5256 break;
5f74bc13 5257
252b5132
RH
5258 case M_DDIV_3:
5259 dbl = 1;
5260 case M_DIV_3:
5261 s = "mflo";
5262 goto do_div3;
5263 case M_DREM_3:
5264 dbl = 1;
5265 case M_REM_3:
5266 s = "mfhi";
5267 do_div3:
5268 if (treg == 0)
5269 {
5270 as_warn (_("Divide by zero."));
5271 if (mips_trap)
67c0d1eb 5272 macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
252b5132 5273 else
67c0d1eb 5274 macro_build (NULL, "break", "c", 7);
8fc2e39e 5275 break;
252b5132
RH
5276 }
5277
7d10b47d 5278 start_noreorder ();
252b5132
RH
5279 if (mips_trap)
5280 {
67c0d1eb
RS
5281 macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
5282 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
252b5132
RH
5283 }
5284 else
5285 {
5286 expr1.X_add_number = 8;
67c0d1eb
RS
5287 macro_build (&expr1, "bne", "s,t,p", treg, 0);
5288 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
5289 macro_build (NULL, "break", "c", 7);
252b5132
RH
5290 }
5291 expr1.X_add_number = -1;
8fc2e39e 5292 used_at = 1;
f6a22291 5293 load_register (AT, &expr1, dbl);
252b5132 5294 expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
67c0d1eb 5295 macro_build (&expr1, "bne", "s,t,p", treg, AT);
252b5132
RH
5296 if (dbl)
5297 {
5298 expr1.X_add_number = 1;
f6a22291 5299 load_register (AT, &expr1, dbl);
67c0d1eb 5300 macro_build (NULL, "dsll32", "d,w,<", AT, AT, 31);
252b5132
RH
5301 }
5302 else
5303 {
5304 expr1.X_add_number = 0x80000000;
67c0d1eb 5305 macro_build (&expr1, "lui", "t,u", AT, BFD_RELOC_HI16);
252b5132
RH
5306 }
5307 if (mips_trap)
5308 {
67c0d1eb 5309 macro_build (NULL, "teq", "s,t,q", sreg, AT, 6);
252b5132
RH
5310 /* We want to close the noreorder block as soon as possible, so
5311 that later insns are available for delay slot filling. */
7d10b47d 5312 end_noreorder ();
252b5132
RH
5313 }
5314 else
5315 {
5316 expr1.X_add_number = 8;
67c0d1eb
RS
5317 macro_build (&expr1, "bne", "s,t,p", sreg, AT);
5318 macro_build (NULL, "nop", "", 0);
252b5132
RH
5319
5320 /* We want to close the noreorder block as soon as possible, so
5321 that later insns are available for delay slot filling. */
7d10b47d 5322 end_noreorder ();
252b5132 5323
67c0d1eb 5324 macro_build (NULL, "break", "c", 6);
252b5132 5325 }
67c0d1eb 5326 macro_build (NULL, s, "d", dreg);
252b5132
RH
5327 break;
5328
5329 case M_DIV_3I:
5330 s = "div";
5331 s2 = "mflo";
5332 goto do_divi;
5333 case M_DIVU_3I:
5334 s = "divu";
5335 s2 = "mflo";
5336 goto do_divi;
5337 case M_REM_3I:
5338 s = "div";
5339 s2 = "mfhi";
5340 goto do_divi;
5341 case M_REMU_3I:
5342 s = "divu";
5343 s2 = "mfhi";
5344 goto do_divi;
5345 case M_DDIV_3I:
5346 dbl = 1;
5347 s = "ddiv";
5348 s2 = "mflo";
5349 goto do_divi;
5350 case M_DDIVU_3I:
5351 dbl = 1;
5352 s = "ddivu";
5353 s2 = "mflo";
5354 goto do_divi;
5355 case M_DREM_3I:
5356 dbl = 1;
5357 s = "ddiv";
5358 s2 = "mfhi";
5359 goto do_divi;
5360 case M_DREMU_3I:
5361 dbl = 1;
5362 s = "ddivu";
5363 s2 = "mfhi";
5364 do_divi:
5365 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5366 {
5367 as_warn (_("Divide by zero."));
5368 if (mips_trap)
67c0d1eb 5369 macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
252b5132 5370 else
67c0d1eb 5371 macro_build (NULL, "break", "c", 7);
8fc2e39e 5372 break;
252b5132
RH
5373 }
5374 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5375 {
5376 if (strcmp (s2, "mflo") == 0)
67c0d1eb 5377 move_register (dreg, sreg);
252b5132 5378 else
67c0d1eb 5379 move_register (dreg, 0);
8fc2e39e 5380 break;
252b5132
RH
5381 }
5382 if (imm_expr.X_op == O_constant
5383 && imm_expr.X_add_number == -1
5384 && s[strlen (s) - 1] != 'u')
5385 {
5386 if (strcmp (s2, "mflo") == 0)
5387 {
67c0d1eb 5388 macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
252b5132
RH
5389 }
5390 else
67c0d1eb 5391 move_register (dreg, 0);
8fc2e39e 5392 break;
252b5132
RH
5393 }
5394
8fc2e39e 5395 used_at = 1;
67c0d1eb
RS
5396 load_register (AT, &imm_expr, dbl);
5397 macro_build (NULL, s, "z,s,t", sreg, AT);
5398 macro_build (NULL, s2, "d", dreg);
252b5132
RH
5399 break;
5400
5401 case M_DIVU_3:
5402 s = "divu";
5403 s2 = "mflo";
5404 goto do_divu3;
5405 case M_REMU_3:
5406 s = "divu";
5407 s2 = "mfhi";
5408 goto do_divu3;
5409 case M_DDIVU_3:
5410 s = "ddivu";
5411 s2 = "mflo";
5412 goto do_divu3;
5413 case M_DREMU_3:
5414 s = "ddivu";
5415 s2 = "mfhi";
5416 do_divu3:
7d10b47d 5417 start_noreorder ();
252b5132
RH
5418 if (mips_trap)
5419 {
67c0d1eb
RS
5420 macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
5421 macro_build (NULL, s, "z,s,t", sreg, treg);
252b5132
RH
5422 /* We want to close the noreorder block as soon as possible, so
5423 that later insns are available for delay slot filling. */
7d10b47d 5424 end_noreorder ();
252b5132
RH
5425 }
5426 else
5427 {
5428 expr1.X_add_number = 8;
67c0d1eb
RS
5429 macro_build (&expr1, "bne", "s,t,p", treg, 0);
5430 macro_build (NULL, s, "z,s,t", sreg, treg);
252b5132
RH
5431
5432 /* We want to close the noreorder block as soon as possible, so
5433 that later insns are available for delay slot filling. */
7d10b47d 5434 end_noreorder ();
67c0d1eb 5435 macro_build (NULL, "break", "c", 7);
252b5132 5436 }
67c0d1eb 5437 macro_build (NULL, s2, "d", dreg);
8fc2e39e 5438 break;
252b5132 5439
1abe91b1
MR
5440 case M_DLCA_AB:
5441 dbl = 1;
5442 case M_LCA_AB:
5443 call = 1;
5444 goto do_la;
252b5132
RH
5445 case M_DLA_AB:
5446 dbl = 1;
5447 case M_LA_AB:
1abe91b1 5448 do_la:
252b5132
RH
5449 /* Load the address of a symbol into a register. If breg is not
5450 zero, we then add a base register to it. */
5451
3bec30a8
TS
5452 if (dbl && HAVE_32BIT_GPRS)
5453 as_warn (_("dla used to load 32-bit register"));
5454
c90bbe5b 5455 if (! dbl && HAVE_64BIT_OBJECTS)
3bec30a8
TS
5456 as_warn (_("la used to load 64-bit address"));
5457
0c11417f
MR
5458 if (offset_expr.X_op == O_constant
5459 && offset_expr.X_add_number >= -0x8000
5460 && offset_expr.X_add_number < 0x8000)
5461 {
aed1a261 5462 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
17a2f251 5463 "t,r,j", treg, sreg, BFD_RELOC_LO16);
8fc2e39e 5464 break;
0c11417f
MR
5465 }
5466
741fe287 5467 if (mips_opts.at && (treg == breg))
afdbd6d0
CD
5468 {
5469 tempreg = AT;
5470 used_at = 1;
5471 }
5472 else
5473 {
5474 tempreg = treg;
afdbd6d0
CD
5475 }
5476
252b5132
RH
5477 if (offset_expr.X_op != O_symbol
5478 && offset_expr.X_op != O_constant)
5479 {
5480 as_bad (_("expression too complex"));
5481 offset_expr.X_op = O_constant;
5482 }
5483
252b5132 5484 if (offset_expr.X_op == O_constant)
aed1a261 5485 load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
252b5132
RH
5486 else if (mips_pic == NO_PIC)
5487 {
d6bc6245 5488 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 5489 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
5490 Otherwise we want
5491 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5492 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5493 If we have a constant, we need two instructions anyhow,
d6bc6245 5494 so we may as well always use the latter form.
76b3015f 5495
6caf9ef4
TS
5496 With 64bit address space and a usable $at we want
5497 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5498 lui $at,<sym> (BFD_RELOC_HI16_S)
5499 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5500 daddiu $at,<sym> (BFD_RELOC_LO16)
5501 dsll32 $tempreg,0
5502 daddu $tempreg,$tempreg,$at
5503
5504 If $at is already in use, we use a path which is suboptimal
5505 on superscalar processors.
5506 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5507 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5508 dsll $tempreg,16
5509 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5510 dsll $tempreg,16
5511 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
5512
5513 For GP relative symbols in 64bit address space we can use
5514 the same sequence as in 32bit address space. */
aed1a261 5515 if (HAVE_64BIT_SYMBOLS)
252b5132 5516 {
6caf9ef4
TS
5517 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5518 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5519 {
5520 relax_start (offset_expr.X_add_symbol);
5521 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5522 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
5523 relax_switch ();
5524 }
d6bc6245 5525
741fe287 5526 if (used_at == 0 && mips_opts.at)
98d3f06f 5527 {
67c0d1eb 5528 macro_build (&offset_expr, "lui", "t,u",
17a2f251 5529 tempreg, BFD_RELOC_MIPS_HIGHEST);
67c0d1eb 5530 macro_build (&offset_expr, "lui", "t,u",
17a2f251 5531 AT, BFD_RELOC_HI16_S);
67c0d1eb 5532 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5533 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
67c0d1eb 5534 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5535 AT, AT, BFD_RELOC_LO16);
67c0d1eb
RS
5536 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
5537 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
98d3f06f
KH
5538 used_at = 1;
5539 }
5540 else
5541 {
67c0d1eb 5542 macro_build (&offset_expr, "lui", "t,u",
17a2f251 5543 tempreg, BFD_RELOC_MIPS_HIGHEST);
67c0d1eb 5544 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5545 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
67c0d1eb
RS
5546 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5547 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5548 tempreg, tempreg, BFD_RELOC_HI16_S);
67c0d1eb
RS
5549 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5550 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 5551 tempreg, tempreg, BFD_RELOC_LO16);
98d3f06f 5552 }
6caf9ef4
TS
5553
5554 if (mips_relax.sequence)
5555 relax_end ();
98d3f06f
KH
5556 }
5557 else
5558 {
5559 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 5560 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
98d3f06f 5561 {
4d7206a2 5562 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
5563 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5564 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
4d7206a2 5565 relax_switch ();
98d3f06f 5566 }
6943caf0
ILT
5567 if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
5568 as_bad (_("offset too large"));
67c0d1eb
RS
5569 macro_build_lui (&offset_expr, tempreg);
5570 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5571 tempreg, tempreg, BFD_RELOC_LO16);
4d7206a2
RS
5572 if (mips_relax.sequence)
5573 relax_end ();
98d3f06f 5574 }
252b5132 5575 }
0a44bf69 5576 else if (!mips_big_got && !HAVE_NEWABI)
252b5132 5577 {
9117d219
NC
5578 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
5579
252b5132
RH
5580 /* If this is a reference to an external symbol, and there
5581 is no constant, we want
5582 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
1abe91b1 5583 or for lca or if tempreg is PIC_CALL_REG
9117d219 5584 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
252b5132
RH
5585 For a local symbol, we want
5586 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5587 nop
5588 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5589
5590 If we have a small constant, and this is a reference to
5591 an external symbol, we want
5592 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5593 nop
5594 addiu $tempreg,$tempreg,<constant>
5595 For a local symbol, we want the same instruction
5596 sequence, but we output a BFD_RELOC_LO16 reloc on the
5597 addiu instruction.
5598
5599 If we have a large constant, and this is a reference to
5600 an external symbol, we want
5601 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5602 lui $at,<hiconstant>
5603 addiu $at,$at,<loconstant>
5604 addu $tempreg,$tempreg,$at
5605 For a local symbol, we want the same instruction
5606 sequence, but we output a BFD_RELOC_LO16 reloc on the
ed6fb7bd 5607 addiu instruction.
ed6fb7bd
SC
5608 */
5609
4d7206a2 5610 if (offset_expr.X_add_number == 0)
252b5132 5611 {
0a44bf69
RS
5612 if (mips_pic == SVR4_PIC
5613 && breg == 0
5614 && (call || tempreg == PIC_CALL_REG))
4d7206a2
RS
5615 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
5616
5617 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
5618 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5619 lw_reloc_type, mips_gp_register);
4d7206a2 5620 if (breg != 0)
252b5132
RH
5621 {
5622 /* We're going to put in an addu instruction using
5623 tempreg, so we may as well insert the nop right
5624 now. */
269137b2 5625 load_delay_nop ();
252b5132 5626 }
4d7206a2 5627 relax_switch ();
67c0d1eb
RS
5628 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5629 tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 5630 load_delay_nop ();
67c0d1eb
RS
5631 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5632 tempreg, tempreg, BFD_RELOC_LO16);
4d7206a2 5633 relax_end ();
252b5132
RH
5634 /* FIXME: If breg == 0, and the next instruction uses
5635 $tempreg, then if this variant case is used an extra
5636 nop will be generated. */
5637 }
4d7206a2
RS
5638 else if (offset_expr.X_add_number >= -0x8000
5639 && offset_expr.X_add_number < 0x8000)
252b5132 5640 {
67c0d1eb 5641 load_got_offset (tempreg, &offset_expr);
269137b2 5642 load_delay_nop ();
67c0d1eb 5643 add_got_offset (tempreg, &offset_expr);
252b5132
RH
5644 }
5645 else
5646 {
4d7206a2
RS
5647 expr1.X_add_number = offset_expr.X_add_number;
5648 offset_expr.X_add_number =
5649 ((offset_expr.X_add_number + 0x8000) & 0xffff) - 0x8000;
67c0d1eb 5650 load_got_offset (tempreg, &offset_expr);
f6a22291 5651 offset_expr.X_add_number = expr1.X_add_number;
252b5132
RH
5652 /* If we are going to add in a base register, and the
5653 target register and the base register are the same,
5654 then we are using AT as a temporary register. Since
5655 we want to load the constant into AT, we add our
5656 current AT (from the global offset table) and the
5657 register into the register now, and pretend we were
5658 not using a base register. */
67c0d1eb 5659 if (breg == treg)
252b5132 5660 {
269137b2 5661 load_delay_nop ();
67c0d1eb 5662 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5663 treg, AT, breg);
252b5132
RH
5664 breg = 0;
5665 tempreg = treg;
252b5132 5666 }
f6a22291 5667 add_got_offset_hilo (tempreg, &offset_expr, AT);
252b5132
RH
5668 used_at = 1;
5669 }
5670 }
0a44bf69 5671 else if (!mips_big_got && HAVE_NEWABI)
f5040a92 5672 {
67c0d1eb 5673 int add_breg_early = 0;
f5040a92
AO
5674
5675 /* If this is a reference to an external, and there is no
5676 constant, or local symbol (*), with or without a
5677 constant, we want
5678 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
1abe91b1 5679 or for lca or if tempreg is PIC_CALL_REG
f5040a92
AO
5680 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5681
5682 If we have a small constant, and this is a reference to
5683 an external symbol, we want
5684 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5685 addiu $tempreg,$tempreg,<constant>
5686
5687 If we have a large constant, and this is a reference to
5688 an external symbol, we want
5689 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5690 lui $at,<hiconstant>
5691 addiu $at,$at,<loconstant>
5692 addu $tempreg,$tempreg,$at
5693
5694 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
5695 local symbols, even though it introduces an additional
5696 instruction. */
5697
f5040a92
AO
5698 if (offset_expr.X_add_number)
5699 {
4d7206a2 5700 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
5701 offset_expr.X_add_number = 0;
5702
4d7206a2 5703 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
5704 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5705 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
5706
5707 if (expr1.X_add_number >= -0x8000
5708 && expr1.X_add_number < 0x8000)
5709 {
67c0d1eb
RS
5710 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5711 tempreg, tempreg, BFD_RELOC_LO16);
f5040a92 5712 }
ecd13cd3 5713 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
f5040a92
AO
5714 {
5715 int dreg;
5716
5717 /* If we are going to add in a base register, and the
5718 target register and the base register are the same,
5719 then we are using AT as a temporary register. Since
5720 we want to load the constant into AT, we add our
5721 current AT (from the global offset table) and the
5722 register into the register now, and pretend we were
5723 not using a base register. */
5724 if (breg != treg)
5725 dreg = tempreg;
5726 else
5727 {
5728 assert (tempreg == AT);
67c0d1eb
RS
5729 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5730 treg, AT, breg);
f5040a92 5731 dreg = treg;
67c0d1eb 5732 add_breg_early = 1;
f5040a92
AO
5733 }
5734
f6a22291 5735 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 5736 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5737 dreg, dreg, AT);
f5040a92 5738
f5040a92
AO
5739 used_at = 1;
5740 }
5741 else
5742 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5743
4d7206a2 5744 relax_switch ();
f5040a92
AO
5745 offset_expr.X_add_number = expr1.X_add_number;
5746
67c0d1eb
RS
5747 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5748 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5749 if (add_breg_early)
f5040a92 5750 {
67c0d1eb 5751 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
f899b4b8 5752 treg, tempreg, breg);
f5040a92
AO
5753 breg = 0;
5754 tempreg = treg;
5755 }
4d7206a2 5756 relax_end ();
f5040a92 5757 }
4d7206a2 5758 else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
f5040a92 5759 {
4d7206a2 5760 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
5761 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5762 BFD_RELOC_MIPS_CALL16, mips_gp_register);
4d7206a2 5763 relax_switch ();
67c0d1eb
RS
5764 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5765 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4d7206a2 5766 relax_end ();
f5040a92 5767 }
4d7206a2 5768 else
f5040a92 5769 {
67c0d1eb
RS
5770 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5771 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
5772 }
5773 }
0a44bf69 5774 else if (mips_big_got && !HAVE_NEWABI)
252b5132 5775 {
67c0d1eb 5776 int gpdelay;
9117d219
NC
5777 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
5778 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
ed6fb7bd 5779 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
252b5132
RH
5780
5781 /* This is the large GOT case. If this is a reference to an
5782 external symbol, and there is no constant, we want
5783 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5784 addu $tempreg,$tempreg,$gp
5785 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
1abe91b1 5786 or for lca or if tempreg is PIC_CALL_REG
9117d219
NC
5787 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5788 addu $tempreg,$tempreg,$gp
5789 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
252b5132
RH
5790 For a local symbol, we want
5791 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5792 nop
5793 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5794
5795 If we have a small constant, and this is a reference to
5796 an external symbol, we want
5797 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5798 addu $tempreg,$tempreg,$gp
5799 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5800 nop
5801 addiu $tempreg,$tempreg,<constant>
5802 For a local symbol, we want
5803 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5804 nop
5805 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
5806
5807 If we have a large constant, and this is a reference to
5808 an external symbol, we want
5809 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5810 addu $tempreg,$tempreg,$gp
5811 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5812 lui $at,<hiconstant>
5813 addiu $at,$at,<loconstant>
5814 addu $tempreg,$tempreg,$at
5815 For a local symbol, we want
5816 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5817 lui $at,<hiconstant>
5818 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
5819 addu $tempreg,$tempreg,$at
f5040a92 5820 */
438c16b8 5821
252b5132
RH
5822 expr1.X_add_number = offset_expr.X_add_number;
5823 offset_expr.X_add_number = 0;
4d7206a2 5824 relax_start (offset_expr.X_add_symbol);
67c0d1eb 5825 gpdelay = reg_needs_delay (mips_gp_register);
1abe91b1
MR
5826 if (expr1.X_add_number == 0 && breg == 0
5827 && (call || tempreg == PIC_CALL_REG))
9117d219
NC
5828 {
5829 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
5830 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
5831 }
67c0d1eb
RS
5832 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
5833 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5834 tempreg, tempreg, mips_gp_register);
67c0d1eb 5835 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
17a2f251 5836 tempreg, lw_reloc_type, tempreg);
252b5132
RH
5837 if (expr1.X_add_number == 0)
5838 {
67c0d1eb 5839 if (breg != 0)
252b5132
RH
5840 {
5841 /* We're going to put in an addu instruction using
5842 tempreg, so we may as well insert the nop right
5843 now. */
269137b2 5844 load_delay_nop ();
252b5132 5845 }
252b5132
RH
5846 }
5847 else if (expr1.X_add_number >= -0x8000
5848 && expr1.X_add_number < 0x8000)
5849 {
269137b2 5850 load_delay_nop ();
67c0d1eb 5851 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 5852 tempreg, tempreg, BFD_RELOC_LO16);
252b5132
RH
5853 }
5854 else
5855 {
67c0d1eb 5856 int dreg;
252b5132
RH
5857
5858 /* If we are going to add in a base register, and the
5859 target register and the base register are the same,
5860 then we are using AT as a temporary register. Since
5861 we want to load the constant into AT, we add our
5862 current AT (from the global offset table) and the
5863 register into the register now, and pretend we were
5864 not using a base register. */
5865 if (breg != treg)
67c0d1eb 5866 dreg = tempreg;
252b5132
RH
5867 else
5868 {
5869 assert (tempreg == AT);
269137b2 5870 load_delay_nop ();
67c0d1eb 5871 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5872 treg, AT, breg);
252b5132 5873 dreg = treg;
252b5132
RH
5874 }
5875
f6a22291 5876 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 5877 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
252b5132 5878
252b5132
RH
5879 used_at = 1;
5880 }
4d7206a2
RS
5881 offset_expr.X_add_number =
5882 ((expr1.X_add_number + 0x8000) & 0xffff) - 0x8000;
5883 relax_switch ();
252b5132 5884
67c0d1eb 5885 if (gpdelay)
252b5132
RH
5886 {
5887 /* This is needed because this instruction uses $gp, but
f5040a92 5888 the first instruction on the main stream does not. */
67c0d1eb 5889 macro_build (NULL, "nop", "");
252b5132 5890 }
ed6fb7bd 5891
67c0d1eb
RS
5892 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5893 local_reloc_type, mips_gp_register);
f5040a92 5894 if (expr1.X_add_number >= -0x8000
252b5132
RH
5895 && expr1.X_add_number < 0x8000)
5896 {
269137b2 5897 load_delay_nop ();
67c0d1eb
RS
5898 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5899 tempreg, tempreg, BFD_RELOC_LO16);
252b5132 5900 /* FIXME: If add_number is 0, and there was no base
f5040a92
AO
5901 register, the external symbol case ended with a load,
5902 so if the symbol turns out to not be external, and
5903 the next instruction uses tempreg, an unnecessary nop
5904 will be inserted. */
252b5132
RH
5905 }
5906 else
5907 {
5908 if (breg == treg)
5909 {
5910 /* We must add in the base register now, as in the
f5040a92 5911 external symbol case. */
252b5132 5912 assert (tempreg == AT);
269137b2 5913 load_delay_nop ();
67c0d1eb 5914 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5915 treg, AT, breg);
252b5132
RH
5916 tempreg = treg;
5917 /* We set breg to 0 because we have arranged to add
f5040a92 5918 it in in both cases. */
252b5132
RH
5919 breg = 0;
5920 }
5921
67c0d1eb
RS
5922 macro_build_lui (&expr1, AT);
5923 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 5924 AT, AT, BFD_RELOC_LO16);
67c0d1eb 5925 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5926 tempreg, tempreg, AT);
8fc2e39e 5927 used_at = 1;
252b5132 5928 }
4d7206a2 5929 relax_end ();
252b5132 5930 }
0a44bf69 5931 else if (mips_big_got && HAVE_NEWABI)
f5040a92 5932 {
f5040a92
AO
5933 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
5934 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
67c0d1eb 5935 int add_breg_early = 0;
f5040a92
AO
5936
5937 /* This is the large GOT case. If this is a reference to an
5938 external symbol, and there is no constant, we want
5939 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5940 add $tempreg,$tempreg,$gp
5941 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
1abe91b1 5942 or for lca or if tempreg is PIC_CALL_REG
f5040a92
AO
5943 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5944 add $tempreg,$tempreg,$gp
5945 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
5946
5947 If we have a small constant, and this is a reference to
5948 an external symbol, we want
5949 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5950 add $tempreg,$tempreg,$gp
5951 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5952 addi $tempreg,$tempreg,<constant>
5953
5954 If we have a large constant, and this is a reference to
5955 an external symbol, we want
5956 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5957 addu $tempreg,$tempreg,$gp
5958 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5959 lui $at,<hiconstant>
5960 addi $at,$at,<loconstant>
5961 add $tempreg,$tempreg,$at
5962
5963 If we have NewABI, and we know it's a local symbol, we want
5964 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
5965 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
5966 otherwise we have to resort to GOT_HI16/GOT_LO16. */
5967
4d7206a2 5968 relax_start (offset_expr.X_add_symbol);
f5040a92 5969
4d7206a2 5970 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
5971 offset_expr.X_add_number = 0;
5972
1abe91b1
MR
5973 if (expr1.X_add_number == 0 && breg == 0
5974 && (call || tempreg == PIC_CALL_REG))
f5040a92
AO
5975 {
5976 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
5977 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
5978 }
67c0d1eb
RS
5979 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
5980 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5981 tempreg, tempreg, mips_gp_register);
67c0d1eb
RS
5982 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5983 tempreg, lw_reloc_type, tempreg);
f5040a92
AO
5984
5985 if (expr1.X_add_number == 0)
4d7206a2 5986 ;
f5040a92
AO
5987 else if (expr1.X_add_number >= -0x8000
5988 && expr1.X_add_number < 0x8000)
5989 {
67c0d1eb 5990 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 5991 tempreg, tempreg, BFD_RELOC_LO16);
f5040a92 5992 }
ecd13cd3 5993 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
f5040a92
AO
5994 {
5995 int dreg;
5996
5997 /* If we are going to add in a base register, and the
5998 target register and the base register are the same,
5999 then we are using AT as a temporary register. Since
6000 we want to load the constant into AT, we add our
6001 current AT (from the global offset table) and the
6002 register into the register now, and pretend we were
6003 not using a base register. */
6004 if (breg != treg)
6005 dreg = tempreg;
6006 else
6007 {
6008 assert (tempreg == AT);
67c0d1eb 6009 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6010 treg, AT, breg);
f5040a92 6011 dreg = treg;
67c0d1eb 6012 add_breg_early = 1;
f5040a92
AO
6013 }
6014
f6a22291 6015 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 6016 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
f5040a92 6017
f5040a92
AO
6018 used_at = 1;
6019 }
6020 else
6021 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
6022
4d7206a2 6023 relax_switch ();
f5040a92 6024 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
6025 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6026 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6027 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6028 tempreg, BFD_RELOC_MIPS_GOT_OFST);
6029 if (add_breg_early)
f5040a92 6030 {
67c0d1eb 6031 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6032 treg, tempreg, breg);
f5040a92
AO
6033 breg = 0;
6034 tempreg = treg;
6035 }
4d7206a2 6036 relax_end ();
f5040a92 6037 }
252b5132
RH
6038 else
6039 abort ();
6040
6041 if (breg != 0)
aed1a261 6042 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", treg, tempreg, breg);
252b5132
RH
6043 break;
6044
52b6b6b9
JM
6045 case M_MSGSND:
6046 {
6047 unsigned long temp = (treg << 16) | (0x01);
6048 macro_build (NULL, "c2", "C", temp);
6049 }
6050 /* AT is not used, just return */
6051 return;
6052
6053 case M_MSGLD:
6054 {
6055 unsigned long temp = (0x02);
6056 macro_build (NULL, "c2", "C", temp);
6057 }
6058 /* AT is not used, just return */
6059 return;
6060
6061 case M_MSGLD_T:
6062 {
6063 unsigned long temp = (treg << 16) | (0x02);
6064 macro_build (NULL, "c2", "C", temp);
6065 }
6066 /* AT is not used, just return */
6067 return;
6068
6069 case M_MSGWAIT:
6070 macro_build (NULL, "c2", "C", 3);
6071 /* AT is not used, just return */
6072 return;
6073
6074 case M_MSGWAIT_T:
6075 {
6076 unsigned long temp = (treg << 16) | 0x03;
6077 macro_build (NULL, "c2", "C", temp);
6078 }
6079 /* AT is not used, just return */
6080 return;
6081
252b5132
RH
6082 case M_J_A:
6083 /* The j instruction may not be used in PIC code, since it
6084 requires an absolute address. We convert it to a b
6085 instruction. */
6086 if (mips_pic == NO_PIC)
67c0d1eb 6087 macro_build (&offset_expr, "j", "a");
252b5132 6088 else
67c0d1eb 6089 macro_build (&offset_expr, "b", "p");
8fc2e39e 6090 break;
252b5132
RH
6091
6092 /* The jal instructions must be handled as macros because when
6093 generating PIC code they expand to multi-instruction
6094 sequences. Normally they are simple instructions. */
6095 case M_JAL_1:
6096 dreg = RA;
6097 /* Fall through. */
6098 case M_JAL_2:
3e722fb5 6099 if (mips_pic == NO_PIC)
67c0d1eb 6100 macro_build (NULL, "jalr", "d,s", dreg, sreg);
0a44bf69 6101 else
252b5132
RH
6102 {
6103 if (sreg != PIC_CALL_REG)
6104 as_warn (_("MIPS PIC call to register other than $25"));
bdaaa2e1 6105
67c0d1eb 6106 macro_build (NULL, "jalr", "d,s", dreg, sreg);
0a44bf69 6107 if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
252b5132 6108 {
6478892d
TS
6109 if (mips_cprestore_offset < 0)
6110 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6111 else
6112 {
7a621144
DJ
6113 if (! mips_frame_reg_valid)
6114 {
6115 as_warn (_("No .frame pseudo-op used in PIC code"));
6116 /* Quiet this warning. */
6117 mips_frame_reg_valid = 1;
6118 }
6119 if (! mips_cprestore_valid)
6120 {
6121 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6122 /* Quiet this warning. */
6123 mips_cprestore_valid = 1;
6124 }
6478892d 6125 expr1.X_add_number = mips_cprestore_offset;
67c0d1eb 6126 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
f899b4b8 6127 mips_gp_register,
256ab948
TS
6128 mips_frame_reg,
6129 HAVE_64BIT_ADDRESSES);
6478892d 6130 }
252b5132
RH
6131 }
6132 }
252b5132 6133
8fc2e39e 6134 break;
252b5132
RH
6135
6136 case M_JAL_A:
6137 if (mips_pic == NO_PIC)
67c0d1eb 6138 macro_build (&offset_expr, "jal", "a");
252b5132
RH
6139 else if (mips_pic == SVR4_PIC)
6140 {
6141 /* If this is a reference to an external symbol, and we are
6142 using a small GOT, we want
6143 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
6144 nop
f9419b05 6145 jalr $ra,$25
252b5132
RH
6146 nop
6147 lw $gp,cprestore($sp)
6148 The cprestore value is set using the .cprestore
6149 pseudo-op. If we are using a big GOT, we want
6150 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
6151 addu $25,$25,$gp
6152 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
6153 nop
f9419b05 6154 jalr $ra,$25
252b5132
RH
6155 nop
6156 lw $gp,cprestore($sp)
6157 If the symbol is not external, we want
6158 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6159 nop
6160 addiu $25,$25,<sym> (BFD_RELOC_LO16)
f9419b05 6161 jalr $ra,$25
252b5132 6162 nop
438c16b8 6163 lw $gp,cprestore($sp)
f5040a92
AO
6164
6165 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
6166 sequences above, minus nops, unless the symbol is local,
6167 which enables us to use GOT_PAGE/GOT_OFST (big got) or
6168 GOT_DISP. */
438c16b8 6169 if (HAVE_NEWABI)
252b5132 6170 {
f5040a92
AO
6171 if (! mips_big_got)
6172 {
4d7206a2 6173 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
6174 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6175 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
f5040a92 6176 mips_gp_register);
4d7206a2 6177 relax_switch ();
67c0d1eb
RS
6178 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6179 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
4d7206a2
RS
6180 mips_gp_register);
6181 relax_end ();
f5040a92
AO
6182 }
6183 else
6184 {
4d7206a2 6185 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
6186 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
6187 BFD_RELOC_MIPS_CALL_HI16);
6188 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
6189 PIC_CALL_REG, mips_gp_register);
6190 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6191 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
6192 PIC_CALL_REG);
4d7206a2 6193 relax_switch ();
67c0d1eb
RS
6194 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6195 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
6196 mips_gp_register);
6197 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6198 PIC_CALL_REG, PIC_CALL_REG,
17a2f251 6199 BFD_RELOC_MIPS_GOT_OFST);
4d7206a2 6200 relax_end ();
f5040a92 6201 }
684022ea 6202
67c0d1eb 6203 macro_build_jalr (&offset_expr);
252b5132
RH
6204 }
6205 else
6206 {
4d7206a2 6207 relax_start (offset_expr.X_add_symbol);
438c16b8
TS
6208 if (! mips_big_got)
6209 {
67c0d1eb
RS
6210 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6211 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
17a2f251 6212 mips_gp_register);
269137b2 6213 load_delay_nop ();
4d7206a2 6214 relax_switch ();
438c16b8 6215 }
252b5132 6216 else
252b5132 6217 {
67c0d1eb
RS
6218 int gpdelay;
6219
6220 gpdelay = reg_needs_delay (mips_gp_register);
6221 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
6222 BFD_RELOC_MIPS_CALL_HI16);
6223 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
6224 PIC_CALL_REG, mips_gp_register);
6225 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6226 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
6227 PIC_CALL_REG);
269137b2 6228 load_delay_nop ();
4d7206a2 6229 relax_switch ();
67c0d1eb
RS
6230 if (gpdelay)
6231 macro_build (NULL, "nop", "");
252b5132 6232 }
67c0d1eb
RS
6233 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6234 PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
4d7206a2 6235 mips_gp_register);
269137b2 6236 load_delay_nop ();
67c0d1eb
RS
6237 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6238 PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
4d7206a2 6239 relax_end ();
67c0d1eb 6240 macro_build_jalr (&offset_expr);
438c16b8 6241
6478892d
TS
6242 if (mips_cprestore_offset < 0)
6243 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6244 else
6245 {
7a621144
DJ
6246 if (! mips_frame_reg_valid)
6247 {
6248 as_warn (_("No .frame pseudo-op used in PIC code"));
6249 /* Quiet this warning. */
6250 mips_frame_reg_valid = 1;
6251 }
6252 if (! mips_cprestore_valid)
6253 {
6254 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6255 /* Quiet this warning. */
6256 mips_cprestore_valid = 1;
6257 }
6478892d 6258 if (mips_opts.noreorder)
67c0d1eb 6259 macro_build (NULL, "nop", "");
6478892d 6260 expr1.X_add_number = mips_cprestore_offset;
67c0d1eb 6261 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
f899b4b8 6262 mips_gp_register,
256ab948
TS
6263 mips_frame_reg,
6264 HAVE_64BIT_ADDRESSES);
6478892d 6265 }
252b5132
RH
6266 }
6267 }
0a44bf69
RS
6268 else if (mips_pic == VXWORKS_PIC)
6269 as_bad (_("Non-PIC jump used in PIC library"));
252b5132
RH
6270 else
6271 abort ();
6272
8fc2e39e 6273 break;
252b5132
RH
6274
6275 case M_LB_AB:
6276 s = "lb";
6277 goto ld;
6278 case M_LBU_AB:
6279 s = "lbu";
6280 goto ld;
6281 case M_LH_AB:
6282 s = "lh";
6283 goto ld;
6284 case M_LHU_AB:
6285 s = "lhu";
6286 goto ld;
6287 case M_LW_AB:
6288 s = "lw";
6289 goto ld;
6290 case M_LWC0_AB:
6291 s = "lwc0";
bdaaa2e1 6292 /* Itbl support may require additional care here. */
252b5132
RH
6293 coproc = 1;
6294 goto ld;
6295 case M_LWC1_AB:
6296 s = "lwc1";
bdaaa2e1 6297 /* Itbl support may require additional care here. */
252b5132
RH
6298 coproc = 1;
6299 goto ld;
6300 case M_LWC2_AB:
6301 s = "lwc2";
bdaaa2e1 6302 /* Itbl support may require additional care here. */
252b5132
RH
6303 coproc = 1;
6304 goto ld;
6305 case M_LWC3_AB:
6306 s = "lwc3";
bdaaa2e1 6307 /* Itbl support may require additional care here. */
252b5132
RH
6308 coproc = 1;
6309 goto ld;
6310 case M_LWL_AB:
6311 s = "lwl";
6312 lr = 1;
6313 goto ld;
6314 case M_LWR_AB:
6315 s = "lwr";
6316 lr = 1;
6317 goto ld;
6318 case M_LDC1_AB:
252b5132 6319 s = "ldc1";
bdaaa2e1 6320 /* Itbl support may require additional care here. */
252b5132
RH
6321 coproc = 1;
6322 goto ld;
6323 case M_LDC2_AB:
6324 s = "ldc2";
bdaaa2e1 6325 /* Itbl support may require additional care here. */
252b5132
RH
6326 coproc = 1;
6327 goto ld;
6328 case M_LDC3_AB:
6329 s = "ldc3";
bdaaa2e1 6330 /* Itbl support may require additional care here. */
252b5132
RH
6331 coproc = 1;
6332 goto ld;
6333 case M_LDL_AB:
6334 s = "ldl";
6335 lr = 1;
6336 goto ld;
6337 case M_LDR_AB:
6338 s = "ldr";
6339 lr = 1;
6340 goto ld;
6341 case M_LL_AB:
6342 s = "ll";
6343 goto ld;
6344 case M_LLD_AB:
6345 s = "lld";
6346 goto ld;
6347 case M_LWU_AB:
6348 s = "lwu";
6349 ld:
8fc2e39e 6350 if (breg == treg || coproc || lr)
252b5132
RH
6351 {
6352 tempreg = AT;
6353 used_at = 1;
6354 }
6355 else
6356 {
6357 tempreg = treg;
252b5132
RH
6358 }
6359 goto ld_st;
6360 case M_SB_AB:
6361 s = "sb";
6362 goto st;
6363 case M_SH_AB:
6364 s = "sh";
6365 goto st;
6366 case M_SW_AB:
6367 s = "sw";
6368 goto st;
6369 case M_SWC0_AB:
6370 s = "swc0";
bdaaa2e1 6371 /* Itbl support may require additional care here. */
252b5132
RH
6372 coproc = 1;
6373 goto st;
6374 case M_SWC1_AB:
6375 s = "swc1";
bdaaa2e1 6376 /* Itbl support may require additional care here. */
252b5132
RH
6377 coproc = 1;
6378 goto st;
6379 case M_SWC2_AB:
6380 s = "swc2";
bdaaa2e1 6381 /* Itbl support may require additional care here. */
252b5132
RH
6382 coproc = 1;
6383 goto st;
6384 case M_SWC3_AB:
6385 s = "swc3";
bdaaa2e1 6386 /* Itbl support may require additional care here. */
252b5132
RH
6387 coproc = 1;
6388 goto st;
6389 case M_SWL_AB:
6390 s = "swl";
6391 goto st;
6392 case M_SWR_AB:
6393 s = "swr";
6394 goto st;
6395 case M_SC_AB:
6396 s = "sc";
6397 goto st;
6398 case M_SCD_AB:
6399 s = "scd";
6400 goto st;
d43b4baf
TS
6401 case M_CACHE_AB:
6402 s = "cache";
6403 goto st;
252b5132 6404 case M_SDC1_AB:
252b5132
RH
6405 s = "sdc1";
6406 coproc = 1;
bdaaa2e1 6407 /* Itbl support may require additional care here. */
252b5132
RH
6408 goto st;
6409 case M_SDC2_AB:
6410 s = "sdc2";
bdaaa2e1 6411 /* Itbl support may require additional care here. */
252b5132
RH
6412 coproc = 1;
6413 goto st;
6414 case M_SDC3_AB:
6415 s = "sdc3";
bdaaa2e1 6416 /* Itbl support may require additional care here. */
252b5132
RH
6417 coproc = 1;
6418 goto st;
6419 case M_SDL_AB:
6420 s = "sdl";
6421 goto st;
6422 case M_SDR_AB:
6423 s = "sdr";
6424 st:
8fc2e39e
TS
6425 tempreg = AT;
6426 used_at = 1;
252b5132 6427 ld_st:
b19e8a9b
AN
6428 if (coproc
6429 && NO_ISA_COP (mips_opts.arch)
6430 && (ip->insn_mo->pinfo2 & (INSN2_M_FP_S | INSN2_M_FP_D)) == 0)
6431 {
6432 as_bad (_("opcode not supported on this processor: %s"),
6433 mips_cpu_info_from_arch (mips_opts.arch)->name);
6434 break;
6435 }
6436
bdaaa2e1 6437 /* Itbl support may require additional care here. */
252b5132
RH
6438 if (mask == M_LWC1_AB
6439 || mask == M_SWC1_AB
6440 || mask == M_LDC1_AB
6441 || mask == M_SDC1_AB
6442 || mask == M_L_DAB
6443 || mask == M_S_DAB)
6444 fmt = "T,o(b)";
d43b4baf
TS
6445 else if (mask == M_CACHE_AB)
6446 fmt = "k,o(b)";
252b5132
RH
6447 else if (coproc)
6448 fmt = "E,o(b)";
6449 else
6450 fmt = "t,o(b)";
6451
6452 if (offset_expr.X_op != O_constant
6453 && offset_expr.X_op != O_symbol)
6454 {
6455 as_bad (_("expression too complex"));
6456 offset_expr.X_op = O_constant;
6457 }
6458
2051e8c4
MR
6459 if (HAVE_32BIT_ADDRESSES
6460 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
55e08f71
NC
6461 {
6462 char value [32];
6463
6464 sprintf_vma (value, offset_expr.X_add_number);
20e1fcfd 6465 as_bad (_("Number (0x%s) larger than 32 bits"), value);
55e08f71 6466 }
2051e8c4 6467
252b5132
RH
6468 /* A constant expression in PIC code can be handled just as it
6469 is in non PIC code. */
aed1a261
RS
6470 if (offset_expr.X_op == O_constant)
6471 {
aed1a261
RS
6472 expr1.X_add_number = ((offset_expr.X_add_number + 0x8000)
6473 & ~(bfd_vma) 0xffff);
2051e8c4 6474 normalize_address_expr (&expr1);
aed1a261
RS
6475 load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
6476 if (breg != 0)
6477 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6478 tempreg, tempreg, breg);
6479 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6480 }
6481 else if (mips_pic == NO_PIC)
252b5132
RH
6482 {
6483 /* If this is a reference to a GP relative symbol, and there
6484 is no base register, we want
cdf6fd85 6485 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
252b5132
RH
6486 Otherwise, if there is no base register, we want
6487 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
6488 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6489 If we have a constant, we need two instructions anyhow,
6490 so we always use the latter form.
6491
6492 If we have a base register, and this is a reference to a
6493 GP relative symbol, we want
6494 addu $tempreg,$breg,$gp
cdf6fd85 6495 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
252b5132
RH
6496 Otherwise we want
6497 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
6498 addu $tempreg,$tempreg,$breg
6499 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
d6bc6245 6500 With a constant we always use the latter case.
76b3015f 6501
d6bc6245
TS
6502 With 64bit address space and no base register and $at usable,
6503 we want
6504 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6505 lui $at,<sym> (BFD_RELOC_HI16_S)
6506 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6507 dsll32 $tempreg,0
6508 daddu $tempreg,$at
6509 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6510 If we have a base register, we want
6511 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6512 lui $at,<sym> (BFD_RELOC_HI16_S)
6513 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6514 daddu $at,$breg
6515 dsll32 $tempreg,0
6516 daddu $tempreg,$at
6517 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6518
6519 Without $at we can't generate the optimal path for superscalar
6520 processors here since this would require two temporary registers.
6521 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6522 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6523 dsll $tempreg,16
6524 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
6525 dsll $tempreg,16
6526 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6527 If we have a base register, we want
6528 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6529 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6530 dsll $tempreg,16
6531 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
6532 dsll $tempreg,16
6533 daddu $tempreg,$tempreg,$breg
6534 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6373ee54 6535
6caf9ef4 6536 For GP relative symbols in 64bit address space we can use
aed1a261
RS
6537 the same sequence as in 32bit address space. */
6538 if (HAVE_64BIT_SYMBOLS)
d6bc6245 6539 {
aed1a261 6540 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4
TS
6541 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
6542 {
6543 relax_start (offset_expr.X_add_symbol);
6544 if (breg == 0)
6545 {
6546 macro_build (&offset_expr, s, fmt, treg,
6547 BFD_RELOC_GPREL16, mips_gp_register);
6548 }
6549 else
6550 {
6551 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6552 tempreg, breg, mips_gp_register);
6553 macro_build (&offset_expr, s, fmt, treg,
6554 BFD_RELOC_GPREL16, tempreg);
6555 }
6556 relax_switch ();
6557 }
d6bc6245 6558
741fe287 6559 if (used_at == 0 && mips_opts.at)
d6bc6245 6560 {
67c0d1eb
RS
6561 macro_build (&offset_expr, "lui", "t,u", tempreg,
6562 BFD_RELOC_MIPS_HIGHEST);
6563 macro_build (&offset_expr, "lui", "t,u", AT,
6564 BFD_RELOC_HI16_S);
6565 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6566 tempreg, BFD_RELOC_MIPS_HIGHER);
d6bc6245 6567 if (breg != 0)
67c0d1eb
RS
6568 macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
6569 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
6570 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
6571 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16,
6572 tempreg);
d6bc6245
TS
6573 used_at = 1;
6574 }
6575 else
6576 {
67c0d1eb
RS
6577 macro_build (&offset_expr, "lui", "t,u", tempreg,
6578 BFD_RELOC_MIPS_HIGHEST);
6579 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6580 tempreg, BFD_RELOC_MIPS_HIGHER);
6581 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
6582 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6583 tempreg, BFD_RELOC_HI16_S);
6584 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
d6bc6245 6585 if (breg != 0)
67c0d1eb 6586 macro_build (NULL, "daddu", "d,v,t",
17a2f251 6587 tempreg, tempreg, breg);
67c0d1eb 6588 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6589 BFD_RELOC_LO16, tempreg);
d6bc6245 6590 }
6caf9ef4
TS
6591
6592 if (mips_relax.sequence)
6593 relax_end ();
8fc2e39e 6594 break;
d6bc6245 6595 }
256ab948 6596
252b5132
RH
6597 if (breg == 0)
6598 {
67c0d1eb 6599 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 6600 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 6601 {
4d7206a2 6602 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
6603 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16,
6604 mips_gp_register);
4d7206a2 6605 relax_switch ();
252b5132 6606 }
67c0d1eb
RS
6607 macro_build_lui (&offset_expr, tempreg);
6608 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6609 BFD_RELOC_LO16, tempreg);
4d7206a2
RS
6610 if (mips_relax.sequence)
6611 relax_end ();
252b5132
RH
6612 }
6613 else
6614 {
67c0d1eb 6615 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 6616 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 6617 {
4d7206a2 6618 relax_start (offset_expr.X_add_symbol);
67c0d1eb 6619 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6620 tempreg, breg, mips_gp_register);
67c0d1eb 6621 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6622 BFD_RELOC_GPREL16, tempreg);
4d7206a2 6623 relax_switch ();
252b5132 6624 }
67c0d1eb
RS
6625 macro_build_lui (&offset_expr, tempreg);
6626 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6627 tempreg, tempreg, breg);
67c0d1eb 6628 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6629 BFD_RELOC_LO16, tempreg);
4d7206a2
RS
6630 if (mips_relax.sequence)
6631 relax_end ();
252b5132
RH
6632 }
6633 }
0a44bf69 6634 else if (!mips_big_got)
252b5132 6635 {
ed6fb7bd 6636 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
f9419b05 6637
252b5132
RH
6638 /* If this is a reference to an external symbol, we want
6639 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6640 nop
6641 <op> $treg,0($tempreg)
6642 Otherwise we want
6643 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6644 nop
6645 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6646 <op> $treg,0($tempreg)
f5040a92
AO
6647
6648 For NewABI, we want
6649 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6650 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
6651
252b5132
RH
6652 If there is a base register, we add it to $tempreg before
6653 the <op>. If there is a constant, we stick it in the
6654 <op> instruction. We don't handle constants larger than
6655 16 bits, because we have no way to load the upper 16 bits
6656 (actually, we could handle them for the subset of cases
6657 in which we are not using $at). */
6658 assert (offset_expr.X_op == O_symbol);
f5040a92
AO
6659 if (HAVE_NEWABI)
6660 {
67c0d1eb
RS
6661 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6662 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
f5040a92 6663 if (breg != 0)
67c0d1eb 6664 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6665 tempreg, tempreg, breg);
67c0d1eb 6666 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6667 BFD_RELOC_MIPS_GOT_OFST, tempreg);
f5040a92
AO
6668 break;
6669 }
252b5132
RH
6670 expr1.X_add_number = offset_expr.X_add_number;
6671 offset_expr.X_add_number = 0;
6672 if (expr1.X_add_number < -0x8000
6673 || expr1.X_add_number >= 0x8000)
6674 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb
RS
6675 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6676 lw_reloc_type, mips_gp_register);
269137b2 6677 load_delay_nop ();
4d7206a2
RS
6678 relax_start (offset_expr.X_add_symbol);
6679 relax_switch ();
67c0d1eb
RS
6680 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6681 tempreg, BFD_RELOC_LO16);
4d7206a2 6682 relax_end ();
252b5132 6683 if (breg != 0)
67c0d1eb 6684 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6685 tempreg, tempreg, breg);
67c0d1eb 6686 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
252b5132 6687 }
0a44bf69 6688 else if (mips_big_got && !HAVE_NEWABI)
252b5132 6689 {
67c0d1eb 6690 int gpdelay;
252b5132
RH
6691
6692 /* If this is a reference to an external symbol, we want
6693 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6694 addu $tempreg,$tempreg,$gp
6695 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6696 <op> $treg,0($tempreg)
6697 Otherwise we want
6698 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6699 nop
6700 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6701 <op> $treg,0($tempreg)
6702 If there is a base register, we add it to $tempreg before
6703 the <op>. If there is a constant, we stick it in the
6704 <op> instruction. We don't handle constants larger than
6705 16 bits, because we have no way to load the upper 16 bits
6706 (actually, we could handle them for the subset of cases
f5040a92 6707 in which we are not using $at). */
252b5132
RH
6708 assert (offset_expr.X_op == O_symbol);
6709 expr1.X_add_number = offset_expr.X_add_number;
6710 offset_expr.X_add_number = 0;
6711 if (expr1.X_add_number < -0x8000
6712 || expr1.X_add_number >= 0x8000)
6713 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb 6714 gpdelay = reg_needs_delay (mips_gp_register);
4d7206a2 6715 relax_start (offset_expr.X_add_symbol);
67c0d1eb 6716 macro_build (&offset_expr, "lui", "t,u", tempreg,
17a2f251 6717 BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
6718 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
6719 mips_gp_register);
6720 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6721 BFD_RELOC_MIPS_GOT_LO16, tempreg);
4d7206a2 6722 relax_switch ();
67c0d1eb
RS
6723 if (gpdelay)
6724 macro_build (NULL, "nop", "");
6725 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6726 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 6727 load_delay_nop ();
67c0d1eb
RS
6728 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6729 tempreg, BFD_RELOC_LO16);
4d7206a2
RS
6730 relax_end ();
6731
252b5132 6732 if (breg != 0)
67c0d1eb 6733 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6734 tempreg, tempreg, breg);
67c0d1eb 6735 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
252b5132 6736 }
0a44bf69 6737 else if (mips_big_got && HAVE_NEWABI)
f5040a92 6738 {
f5040a92
AO
6739 /* If this is a reference to an external symbol, we want
6740 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6741 add $tempreg,$tempreg,$gp
6742 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6743 <op> $treg,<ofst>($tempreg)
6744 Otherwise, for local symbols, we want:
6745 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6746 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
6747 assert (offset_expr.X_op == O_symbol);
4d7206a2 6748 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
6749 offset_expr.X_add_number = 0;
6750 if (expr1.X_add_number < -0x8000
6751 || expr1.X_add_number >= 0x8000)
6752 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4d7206a2 6753 relax_start (offset_expr.X_add_symbol);
67c0d1eb 6754 macro_build (&offset_expr, "lui", "t,u", tempreg,
17a2f251 6755 BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
6756 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
6757 mips_gp_register);
6758 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6759 BFD_RELOC_MIPS_GOT_LO16, tempreg);
f5040a92 6760 if (breg != 0)
67c0d1eb 6761 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6762 tempreg, tempreg, breg);
67c0d1eb 6763 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
684022ea 6764
4d7206a2 6765 relax_switch ();
f5040a92 6766 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
6767 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6768 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
f5040a92 6769 if (breg != 0)
67c0d1eb 6770 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6771 tempreg, tempreg, breg);
67c0d1eb 6772 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6773 BFD_RELOC_MIPS_GOT_OFST, tempreg);
4d7206a2 6774 relax_end ();
f5040a92 6775 }
252b5132
RH
6776 else
6777 abort ();
6778
252b5132
RH
6779 break;
6780
6781 case M_LI:
6782 case M_LI_S:
67c0d1eb 6783 load_register (treg, &imm_expr, 0);
8fc2e39e 6784 break;
252b5132
RH
6785
6786 case M_DLI:
67c0d1eb 6787 load_register (treg, &imm_expr, 1);
8fc2e39e 6788 break;
252b5132
RH
6789
6790 case M_LI_SS:
6791 if (imm_expr.X_op == O_constant)
6792 {
8fc2e39e 6793 used_at = 1;
67c0d1eb
RS
6794 load_register (AT, &imm_expr, 0);
6795 macro_build (NULL, "mtc1", "t,G", AT, treg);
252b5132
RH
6796 break;
6797 }
6798 else
6799 {
6800 assert (offset_expr.X_op == O_symbol
6801 && strcmp (segment_name (S_GET_SEGMENT
6802 (offset_expr.X_add_symbol)),
6803 ".lit4") == 0
6804 && offset_expr.X_add_number == 0);
67c0d1eb 6805 macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
17a2f251 6806 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
8fc2e39e 6807 break;
252b5132
RH
6808 }
6809
6810 case M_LI_D:
ca4e0257
RS
6811 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
6812 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
6813 order 32 bits of the value and the low order 32 bits are either
6814 zero or in OFFSET_EXPR. */
252b5132
RH
6815 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6816 {
ca4e0257 6817 if (HAVE_64BIT_GPRS)
67c0d1eb 6818 load_register (treg, &imm_expr, 1);
252b5132
RH
6819 else
6820 {
6821 int hreg, lreg;
6822
6823 if (target_big_endian)
6824 {
6825 hreg = treg;
6826 lreg = treg + 1;
6827 }
6828 else
6829 {
6830 hreg = treg + 1;
6831 lreg = treg;
6832 }
6833
6834 if (hreg <= 31)
67c0d1eb 6835 load_register (hreg, &imm_expr, 0);
252b5132
RH
6836 if (lreg <= 31)
6837 {
6838 if (offset_expr.X_op == O_absent)
67c0d1eb 6839 move_register (lreg, 0);
252b5132
RH
6840 else
6841 {
6842 assert (offset_expr.X_op == O_constant);
67c0d1eb 6843 load_register (lreg, &offset_expr, 0);
252b5132
RH
6844 }
6845 }
6846 }
8fc2e39e 6847 break;
252b5132
RH
6848 }
6849
6850 /* We know that sym is in the .rdata section. First we get the
6851 upper 16 bits of the address. */
6852 if (mips_pic == NO_PIC)
6853 {
67c0d1eb 6854 macro_build_lui (&offset_expr, AT);
8fc2e39e 6855 used_at = 1;
252b5132 6856 }
0a44bf69 6857 else
252b5132 6858 {
67c0d1eb
RS
6859 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6860 BFD_RELOC_MIPS_GOT16, mips_gp_register);
8fc2e39e 6861 used_at = 1;
252b5132 6862 }
bdaaa2e1 6863
252b5132 6864 /* Now we load the register(s). */
ca4e0257 6865 if (HAVE_64BIT_GPRS)
8fc2e39e
TS
6866 {
6867 used_at = 1;
6868 macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT);
6869 }
252b5132
RH
6870 else
6871 {
8fc2e39e 6872 used_at = 1;
67c0d1eb 6873 macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT);
f9419b05 6874 if (treg != RA)
252b5132
RH
6875 {
6876 /* FIXME: How in the world do we deal with the possible
6877 overflow here? */
6878 offset_expr.X_add_number += 4;
67c0d1eb 6879 macro_build (&offset_expr, "lw", "t,o(b)",
17a2f251 6880 treg + 1, BFD_RELOC_LO16, AT);
252b5132
RH
6881 }
6882 }
252b5132
RH
6883 break;
6884
6885 case M_LI_DD:
ca4e0257
RS
6886 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
6887 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
6888 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
6889 the value and the low order 32 bits are either zero or in
6890 OFFSET_EXPR. */
252b5132
RH
6891 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6892 {
8fc2e39e 6893 used_at = 1;
67c0d1eb 6894 load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
ca4e0257
RS
6895 if (HAVE_64BIT_FPRS)
6896 {
6897 assert (HAVE_64BIT_GPRS);
67c0d1eb 6898 macro_build (NULL, "dmtc1", "t,S", AT, treg);
ca4e0257 6899 }
252b5132
RH
6900 else
6901 {
67c0d1eb 6902 macro_build (NULL, "mtc1", "t,G", AT, treg + 1);
252b5132 6903 if (offset_expr.X_op == O_absent)
67c0d1eb 6904 macro_build (NULL, "mtc1", "t,G", 0, treg);
252b5132
RH
6905 else
6906 {
6907 assert (offset_expr.X_op == O_constant);
67c0d1eb
RS
6908 load_register (AT, &offset_expr, 0);
6909 macro_build (NULL, "mtc1", "t,G", AT, treg);
252b5132
RH
6910 }
6911 }
6912 break;
6913 }
6914
6915 assert (offset_expr.X_op == O_symbol
6916 && offset_expr.X_add_number == 0);
6917 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
6918 if (strcmp (s, ".lit8") == 0)
6919 {
e7af610e 6920 if (mips_opts.isa != ISA_MIPS1)
252b5132 6921 {
67c0d1eb 6922 macro_build (&offset_expr, "ldc1", "T,o(b)", treg,
17a2f251 6923 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
8fc2e39e 6924 break;
252b5132 6925 }
c9914766 6926 breg = mips_gp_register;
252b5132
RH
6927 r = BFD_RELOC_MIPS_LITERAL;
6928 goto dob;
6929 }
6930 else
6931 {
6932 assert (strcmp (s, RDATA_SECTION_NAME) == 0);
8fc2e39e 6933 used_at = 1;
0a44bf69 6934 if (mips_pic != NO_PIC)
67c0d1eb
RS
6935 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6936 BFD_RELOC_MIPS_GOT16, mips_gp_register);
252b5132
RH
6937 else
6938 {
6939 /* FIXME: This won't work for a 64 bit address. */
67c0d1eb 6940 macro_build_lui (&offset_expr, AT);
252b5132 6941 }
bdaaa2e1 6942
e7af610e 6943 if (mips_opts.isa != ISA_MIPS1)
252b5132 6944 {
67c0d1eb
RS
6945 macro_build (&offset_expr, "ldc1", "T,o(b)",
6946 treg, BFD_RELOC_LO16, AT);
252b5132
RH
6947 break;
6948 }
6949 breg = AT;
6950 r = BFD_RELOC_LO16;
6951 goto dob;
6952 }
6953
6954 case M_L_DOB:
252b5132
RH
6955 /* Even on a big endian machine $fn comes before $fn+1. We have
6956 to adjust when loading from memory. */
6957 r = BFD_RELOC_LO16;
6958 dob:
e7af610e 6959 assert (mips_opts.isa == ISA_MIPS1);
67c0d1eb 6960 macro_build (&offset_expr, "lwc1", "T,o(b)",
17a2f251 6961 target_big_endian ? treg + 1 : treg, r, breg);
252b5132
RH
6962 /* FIXME: A possible overflow which I don't know how to deal
6963 with. */
6964 offset_expr.X_add_number += 4;
67c0d1eb 6965 macro_build (&offset_expr, "lwc1", "T,o(b)",
17a2f251 6966 target_big_endian ? treg : treg + 1, r, breg);
252b5132
RH
6967 break;
6968
6969 case M_L_DAB:
6970 /*
6971 * The MIPS assembler seems to check for X_add_number not
6972 * being double aligned and generating:
6973 * lui at,%hi(foo+1)
6974 * addu at,at,v1
6975 * addiu at,at,%lo(foo+1)
6976 * lwc1 f2,0(at)
6977 * lwc1 f3,4(at)
6978 * But, the resulting address is the same after relocation so why
6979 * generate the extra instruction?
6980 */
bdaaa2e1 6981 /* Itbl support may require additional care here. */
252b5132 6982 coproc = 1;
e7af610e 6983 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
6984 {
6985 s = "ldc1";
6986 goto ld;
6987 }
6988
6989 s = "lwc1";
6990 fmt = "T,o(b)";
6991 goto ldd_std;
6992
6993 case M_S_DAB:
e7af610e 6994 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
6995 {
6996 s = "sdc1";
6997 goto st;
6998 }
6999
7000 s = "swc1";
7001 fmt = "T,o(b)";
bdaaa2e1 7002 /* Itbl support may require additional care here. */
252b5132
RH
7003 coproc = 1;
7004 goto ldd_std;
7005
7006 case M_LD_AB:
ca4e0257 7007 if (HAVE_64BIT_GPRS)
252b5132
RH
7008 {
7009 s = "ld";
7010 goto ld;
7011 }
7012
7013 s = "lw";
7014 fmt = "t,o(b)";
7015 goto ldd_std;
7016
7017 case M_SD_AB:
ca4e0257 7018 if (HAVE_64BIT_GPRS)
252b5132
RH
7019 {
7020 s = "sd";
7021 goto st;
7022 }
7023
7024 s = "sw";
7025 fmt = "t,o(b)";
7026
7027 ldd_std:
7028 if (offset_expr.X_op != O_symbol
7029 && offset_expr.X_op != O_constant)
7030 {
7031 as_bad (_("expression too complex"));
7032 offset_expr.X_op = O_constant;
7033 }
7034
2051e8c4
MR
7035 if (HAVE_32BIT_ADDRESSES
7036 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
55e08f71
NC
7037 {
7038 char value [32];
7039
7040 sprintf_vma (value, offset_expr.X_add_number);
20e1fcfd 7041 as_bad (_("Number (0x%s) larger than 32 bits"), value);
55e08f71 7042 }
2051e8c4 7043
252b5132
RH
7044 /* Even on a big endian machine $fn comes before $fn+1. We have
7045 to adjust when loading from memory. We set coproc if we must
7046 load $fn+1 first. */
bdaaa2e1 7047 /* Itbl support may require additional care here. */
252b5132
RH
7048 if (! target_big_endian)
7049 coproc = 0;
7050
7051 if (mips_pic == NO_PIC
7052 || offset_expr.X_op == O_constant)
7053 {
7054 /* If this is a reference to a GP relative symbol, we want
cdf6fd85
TS
7055 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
7056 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
252b5132
RH
7057 If we have a base register, we use this
7058 addu $at,$breg,$gp
cdf6fd85
TS
7059 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
7060 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
252b5132
RH
7061 If this is not a GP relative symbol, we want
7062 lui $at,<sym> (BFD_RELOC_HI16_S)
7063 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7064 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7065 If there is a base register, we add it to $at after the
7066 lui instruction. If there is a constant, we always use
7067 the last case. */
39a59cf8
MR
7068 if (offset_expr.X_op == O_symbol
7069 && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 7070 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 7071 {
4d7206a2 7072 relax_start (offset_expr.X_add_symbol);
252b5132
RH
7073 if (breg == 0)
7074 {
c9914766 7075 tempreg = mips_gp_register;
252b5132
RH
7076 }
7077 else
7078 {
67c0d1eb 7079 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 7080 AT, breg, mips_gp_register);
252b5132 7081 tempreg = AT;
252b5132
RH
7082 used_at = 1;
7083 }
7084
beae10d5 7085 /* Itbl support may require additional care here. */
67c0d1eb 7086 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
17a2f251 7087 BFD_RELOC_GPREL16, tempreg);
252b5132
RH
7088 offset_expr.X_add_number += 4;
7089
7090 /* Set mips_optimize to 2 to avoid inserting an
7091 undesired nop. */
7092 hold_mips_optimize = mips_optimize;
7093 mips_optimize = 2;
beae10d5 7094 /* Itbl support may require additional care here. */
67c0d1eb 7095 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
17a2f251 7096 BFD_RELOC_GPREL16, tempreg);
252b5132
RH
7097 mips_optimize = hold_mips_optimize;
7098
4d7206a2 7099 relax_switch ();
252b5132
RH
7100
7101 /* We just generated two relocs. When tc_gen_reloc
7102 handles this case, it will skip the first reloc and
7103 handle the second. The second reloc already has an
7104 extra addend of 4, which we added above. We must
7105 subtract it out, and then subtract another 4 to make
7106 the first reloc come out right. The second reloc
7107 will come out right because we are going to add 4 to
7108 offset_expr when we build its instruction below.
7109
7110 If we have a symbol, then we don't want to include
7111 the offset, because it will wind up being included
7112 when we generate the reloc. */
7113
7114 if (offset_expr.X_op == O_constant)
7115 offset_expr.X_add_number -= 8;
7116 else
7117 {
7118 offset_expr.X_add_number = -4;
7119 offset_expr.X_op = O_constant;
7120 }
7121 }
8fc2e39e 7122 used_at = 1;
67c0d1eb 7123 macro_build_lui (&offset_expr, AT);
252b5132 7124 if (breg != 0)
67c0d1eb 7125 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 7126 /* Itbl support may require additional care here. */
67c0d1eb 7127 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
17a2f251 7128 BFD_RELOC_LO16, AT);
252b5132
RH
7129 /* FIXME: How do we handle overflow here? */
7130 offset_expr.X_add_number += 4;
beae10d5 7131 /* Itbl support may require additional care here. */
67c0d1eb 7132 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
17a2f251 7133 BFD_RELOC_LO16, AT);
4d7206a2
RS
7134 if (mips_relax.sequence)
7135 relax_end ();
bdaaa2e1 7136 }
0a44bf69 7137 else if (!mips_big_got)
252b5132 7138 {
252b5132
RH
7139 /* If this is a reference to an external symbol, we want
7140 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7141 nop
7142 <op> $treg,0($at)
7143 <op> $treg+1,4($at)
7144 Otherwise we want
7145 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7146 nop
7147 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7148 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7149 If there is a base register we add it to $at before the
7150 lwc1 instructions. If there is a constant we include it
7151 in the lwc1 instructions. */
7152 used_at = 1;
7153 expr1.X_add_number = offset_expr.X_add_number;
252b5132
RH
7154 if (expr1.X_add_number < -0x8000
7155 || expr1.X_add_number >= 0x8000 - 4)
7156 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb 7157 load_got_offset (AT, &offset_expr);
269137b2 7158 load_delay_nop ();
252b5132 7159 if (breg != 0)
67c0d1eb 7160 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
252b5132
RH
7161
7162 /* Set mips_optimize to 2 to avoid inserting an undesired
7163 nop. */
7164 hold_mips_optimize = mips_optimize;
7165 mips_optimize = 2;
4d7206a2 7166
beae10d5 7167 /* Itbl support may require additional care here. */
4d7206a2 7168 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
7169 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
7170 BFD_RELOC_LO16, AT);
4d7206a2 7171 expr1.X_add_number += 4;
67c0d1eb
RS
7172 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
7173 BFD_RELOC_LO16, AT);
4d7206a2 7174 relax_switch ();
67c0d1eb
RS
7175 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7176 BFD_RELOC_LO16, AT);
4d7206a2 7177 offset_expr.X_add_number += 4;
67c0d1eb
RS
7178 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7179 BFD_RELOC_LO16, AT);
4d7206a2 7180 relax_end ();
252b5132 7181
4d7206a2 7182 mips_optimize = hold_mips_optimize;
252b5132 7183 }
0a44bf69 7184 else if (mips_big_got)
252b5132 7185 {
67c0d1eb 7186 int gpdelay;
252b5132
RH
7187
7188 /* If this is a reference to an external symbol, we want
7189 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7190 addu $at,$at,$gp
7191 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
7192 nop
7193 <op> $treg,0($at)
7194 <op> $treg+1,4($at)
7195 Otherwise we want
7196 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7197 nop
7198 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7199 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7200 If there is a base register we add it to $at before the
7201 lwc1 instructions. If there is a constant we include it
7202 in the lwc1 instructions. */
7203 used_at = 1;
7204 expr1.X_add_number = offset_expr.X_add_number;
7205 offset_expr.X_add_number = 0;
7206 if (expr1.X_add_number < -0x8000
7207 || expr1.X_add_number >= 0x8000 - 4)
7208 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb 7209 gpdelay = reg_needs_delay (mips_gp_register);
4d7206a2 7210 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
7211 macro_build (&offset_expr, "lui", "t,u",
7212 AT, BFD_RELOC_MIPS_GOT_HI16);
7213 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 7214 AT, AT, mips_gp_register);
67c0d1eb 7215 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
17a2f251 7216 AT, BFD_RELOC_MIPS_GOT_LO16, AT);
269137b2 7217 load_delay_nop ();
252b5132 7218 if (breg != 0)
67c0d1eb 7219 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 7220 /* Itbl support may require additional care here. */
67c0d1eb 7221 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
17a2f251 7222 BFD_RELOC_LO16, AT);
252b5132
RH
7223 expr1.X_add_number += 4;
7224
7225 /* Set mips_optimize to 2 to avoid inserting an undesired
7226 nop. */
7227 hold_mips_optimize = mips_optimize;
7228 mips_optimize = 2;
beae10d5 7229 /* Itbl support may require additional care here. */
67c0d1eb 7230 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
17a2f251 7231 BFD_RELOC_LO16, AT);
252b5132
RH
7232 mips_optimize = hold_mips_optimize;
7233 expr1.X_add_number -= 4;
7234
4d7206a2
RS
7235 relax_switch ();
7236 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
7237 if (gpdelay)
7238 macro_build (NULL, "nop", "");
7239 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
7240 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 7241 load_delay_nop ();
252b5132 7242 if (breg != 0)
67c0d1eb 7243 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 7244 /* Itbl support may require additional care here. */
67c0d1eb
RS
7245 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7246 BFD_RELOC_LO16, AT);
4d7206a2 7247 offset_expr.X_add_number += 4;
252b5132
RH
7248
7249 /* Set mips_optimize to 2 to avoid inserting an undesired
7250 nop. */
7251 hold_mips_optimize = mips_optimize;
7252 mips_optimize = 2;
beae10d5 7253 /* Itbl support may require additional care here. */
67c0d1eb
RS
7254 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7255 BFD_RELOC_LO16, AT);
252b5132 7256 mips_optimize = hold_mips_optimize;
4d7206a2 7257 relax_end ();
252b5132 7258 }
252b5132
RH
7259 else
7260 abort ();
7261
252b5132
RH
7262 break;
7263
7264 case M_LD_OB:
7265 s = "lw";
7266 goto sd_ob;
7267 case M_SD_OB:
7268 s = "sw";
7269 sd_ob:
ca4e0257 7270 assert (HAVE_32BIT_ADDRESSES);
67c0d1eb 7271 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
252b5132 7272 offset_expr.X_add_number += 4;
67c0d1eb 7273 macro_build (&offset_expr, s, "t,o(b)", treg + 1, BFD_RELOC_LO16, breg);
8fc2e39e 7274 break;
252b5132
RH
7275
7276 /* New code added to support COPZ instructions.
7277 This code builds table entries out of the macros in mip_opcodes.
7278 R4000 uses interlocks to handle coproc delays.
7279 Other chips (like the R3000) require nops to be inserted for delays.
7280
f72c8c98 7281 FIXME: Currently, we require that the user handle delays.
252b5132
RH
7282 In order to fill delay slots for non-interlocked chips,
7283 we must have a way to specify delays based on the coprocessor.
7284 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
7285 What are the side-effects of the cop instruction?
7286 What cache support might we have and what are its effects?
7287 Both coprocessor & memory require delays. how long???
bdaaa2e1 7288 What registers are read/set/modified?
252b5132
RH
7289
7290 If an itbl is provided to interpret cop instructions,
bdaaa2e1 7291 this knowledge can be encoded in the itbl spec. */
252b5132
RH
7292
7293 case M_COP0:
7294 s = "c0";
7295 goto copz;
7296 case M_COP1:
7297 s = "c1";
7298 goto copz;
7299 case M_COP2:
7300 s = "c2";
7301 goto copz;
7302 case M_COP3:
7303 s = "c3";
7304 copz:
b19e8a9b
AN
7305 if (NO_ISA_COP (mips_opts.arch)
7306 && (ip->insn_mo->pinfo2 & INSN2_M_FP_S) == 0)
7307 {
7308 as_bad (_("opcode not supported on this processor: %s"),
7309 mips_cpu_info_from_arch (mips_opts.arch)->name);
7310 break;
7311 }
7312
252b5132
RH
7313 /* For now we just do C (same as Cz). The parameter will be
7314 stored in insn_opcode by mips_ip. */
67c0d1eb 7315 macro_build (NULL, s, "C", ip->insn_opcode);
8fc2e39e 7316 break;
252b5132 7317
ea1fb5dc 7318 case M_MOVE:
67c0d1eb 7319 move_register (dreg, sreg);
8fc2e39e 7320 break;
ea1fb5dc 7321
252b5132
RH
7322#ifdef LOSING_COMPILER
7323 default:
7324 /* Try and see if this is a new itbl instruction.
7325 This code builds table entries out of the macros in mip_opcodes.
7326 FIXME: For now we just assemble the expression and pass it's
7327 value along as a 32-bit immediate.
bdaaa2e1 7328 We may want to have the assembler assemble this value,
252b5132
RH
7329 so that we gain the assembler's knowledge of delay slots,
7330 symbols, etc.
7331 Would it be more efficient to use mask (id) here? */
bdaaa2e1 7332 if (itbl_have_entries
252b5132 7333 && (immed_expr = itbl_assemble (ip->insn_mo->name, "")))
beae10d5 7334 {
252b5132
RH
7335 s = ip->insn_mo->name;
7336 s2 = "cop3";
7337 coproc = ITBL_DECODE_PNUM (immed_expr);;
67c0d1eb 7338 macro_build (&immed_expr, s, "C");
8fc2e39e 7339 break;
beae10d5 7340 }
252b5132 7341 macro2 (ip);
8fc2e39e 7342 break;
252b5132 7343 }
741fe287 7344 if (!mips_opts.at && used_at)
8fc2e39e 7345 as_bad (_("Macro used $at after \".set noat\""));
252b5132 7346}
bdaaa2e1 7347
252b5132 7348static void
17a2f251 7349macro2 (struct mips_cl_insn *ip)
252b5132 7350{
741fe287
MR
7351 unsigned int treg, sreg, dreg, breg;
7352 unsigned int tempreg;
252b5132 7353 int mask;
252b5132
RH
7354 int used_at;
7355 expressionS expr1;
7356 const char *s;
7357 const char *s2;
7358 const char *fmt;
7359 int likely = 0;
7360 int dbl = 0;
7361 int coproc = 0;
7362 int lr = 0;
7363 int imm = 0;
7364 int off;
7365 offsetT maxnum;
7366 bfd_reloc_code_real_type r;
bdaaa2e1 7367
252b5132
RH
7368 treg = (ip->insn_opcode >> 16) & 0x1f;
7369 dreg = (ip->insn_opcode >> 11) & 0x1f;
7370 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
7371 mask = ip->insn_mo->mask;
bdaaa2e1 7372
252b5132
RH
7373 expr1.X_op = O_constant;
7374 expr1.X_op_symbol = NULL;
7375 expr1.X_add_symbol = NULL;
7376 expr1.X_add_number = 1;
bdaaa2e1 7377
252b5132
RH
7378 switch (mask)
7379 {
7380#endif /* LOSING_COMPILER */
7381
7382 case M_DMUL:
7383 dbl = 1;
7384 case M_MUL:
67c0d1eb
RS
7385 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
7386 macro_build (NULL, "mflo", "d", dreg);
8fc2e39e 7387 break;
252b5132
RH
7388
7389 case M_DMUL_I:
7390 dbl = 1;
7391 case M_MUL_I:
7392 /* The MIPS assembler some times generates shifts and adds. I'm
7393 not trying to be that fancy. GCC should do this for us
7394 anyway. */
8fc2e39e 7395 used_at = 1;
67c0d1eb
RS
7396 load_register (AT, &imm_expr, dbl);
7397 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT);
7398 macro_build (NULL, "mflo", "d", dreg);
252b5132
RH
7399 break;
7400
7401 case M_DMULO_I:
7402 dbl = 1;
7403 case M_MULO_I:
7404 imm = 1;
7405 goto do_mulo;
7406
7407 case M_DMULO:
7408 dbl = 1;
7409 case M_MULO:
7410 do_mulo:
7d10b47d 7411 start_noreorder ();
8fc2e39e 7412 used_at = 1;
252b5132 7413 if (imm)
67c0d1eb
RS
7414 load_register (AT, &imm_expr, dbl);
7415 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
7416 macro_build (NULL, "mflo", "d", dreg);
7417 macro_build (NULL, dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA);
7418 macro_build (NULL, "mfhi", "d", AT);
252b5132 7419 if (mips_trap)
67c0d1eb 7420 macro_build (NULL, "tne", "s,t,q", dreg, AT, 6);
252b5132
RH
7421 else
7422 {
7423 expr1.X_add_number = 8;
67c0d1eb
RS
7424 macro_build (&expr1, "beq", "s,t,p", dreg, AT);
7425 macro_build (NULL, "nop", "", 0);
7426 macro_build (NULL, "break", "c", 6);
252b5132 7427 }
7d10b47d 7428 end_noreorder ();
67c0d1eb 7429 macro_build (NULL, "mflo", "d", dreg);
252b5132
RH
7430 break;
7431
7432 case M_DMULOU_I:
7433 dbl = 1;
7434 case M_MULOU_I:
7435 imm = 1;
7436 goto do_mulou;
7437
7438 case M_DMULOU:
7439 dbl = 1;
7440 case M_MULOU:
7441 do_mulou:
7d10b47d 7442 start_noreorder ();
8fc2e39e 7443 used_at = 1;
252b5132 7444 if (imm)
67c0d1eb
RS
7445 load_register (AT, &imm_expr, dbl);
7446 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
17a2f251 7447 sreg, imm ? AT : treg);
67c0d1eb
RS
7448 macro_build (NULL, "mfhi", "d", AT);
7449 macro_build (NULL, "mflo", "d", dreg);
252b5132 7450 if (mips_trap)
67c0d1eb 7451 macro_build (NULL, "tne", "s,t,q", AT, 0, 6);
252b5132
RH
7452 else
7453 {
7454 expr1.X_add_number = 8;
67c0d1eb
RS
7455 macro_build (&expr1, "beq", "s,t,p", AT, 0);
7456 macro_build (NULL, "nop", "", 0);
7457 macro_build (NULL, "break", "c", 6);
252b5132 7458 }
7d10b47d 7459 end_noreorder ();
252b5132
RH
7460 break;
7461
771c7ce4 7462 case M_DROL:
fef14a42 7463 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097
CD
7464 {
7465 if (dreg == sreg)
7466 {
7467 tempreg = AT;
7468 used_at = 1;
7469 }
7470 else
7471 {
7472 tempreg = dreg;
82dd0097 7473 }
67c0d1eb
RS
7474 macro_build (NULL, "dnegu", "d,w", tempreg, treg);
7475 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg);
8fc2e39e 7476 break;
82dd0097 7477 }
8fc2e39e 7478 used_at = 1;
67c0d1eb
RS
7479 macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg);
7480 macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT);
7481 macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg);
7482 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
7483 break;
7484
252b5132 7485 case M_ROL:
fef14a42 7486 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097
CD
7487 {
7488 if (dreg == sreg)
7489 {
7490 tempreg = AT;
7491 used_at = 1;
7492 }
7493 else
7494 {
7495 tempreg = dreg;
82dd0097 7496 }
67c0d1eb
RS
7497 macro_build (NULL, "negu", "d,w", tempreg, treg);
7498 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg);
8fc2e39e 7499 break;
82dd0097 7500 }
8fc2e39e 7501 used_at = 1;
67c0d1eb
RS
7502 macro_build (NULL, "subu", "d,v,t", AT, 0, treg);
7503 macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT);
7504 macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg);
7505 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
252b5132
RH
7506 break;
7507
771c7ce4
TS
7508 case M_DROL_I:
7509 {
7510 unsigned int rot;
82dd0097 7511 char *l, *r;
771c7ce4
TS
7512
7513 if (imm_expr.X_op != O_constant)
82dd0097 7514 as_bad (_("Improper rotate count"));
771c7ce4 7515 rot = imm_expr.X_add_number & 0x3f;
fef14a42 7516 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
60b63b72
RS
7517 {
7518 rot = (64 - rot) & 0x3f;
7519 if (rot >= 32)
67c0d1eb 7520 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
60b63b72 7521 else
67c0d1eb 7522 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
8fc2e39e 7523 break;
60b63b72 7524 }
483fc7cd 7525 if (rot == 0)
483fc7cd 7526 {
67c0d1eb 7527 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
8fc2e39e 7528 break;
483fc7cd 7529 }
82dd0097
CD
7530 l = (rot < 0x20) ? "dsll" : "dsll32";
7531 r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
7532 rot &= 0x1f;
8fc2e39e 7533 used_at = 1;
67c0d1eb
RS
7534 macro_build (NULL, l, "d,w,<", AT, sreg, rot);
7535 macro_build (NULL, r, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7536 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
7537 }
7538 break;
7539
252b5132 7540 case M_ROL_I:
771c7ce4
TS
7541 {
7542 unsigned int rot;
7543
7544 if (imm_expr.X_op != O_constant)
82dd0097 7545 as_bad (_("Improper rotate count"));
771c7ce4 7546 rot = imm_expr.X_add_number & 0x1f;
fef14a42 7547 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
60b63b72 7548 {
67c0d1eb 7549 macro_build (NULL, "ror", "d,w,<", dreg, sreg, (32 - rot) & 0x1f);
8fc2e39e 7550 break;
60b63b72 7551 }
483fc7cd 7552 if (rot == 0)
483fc7cd 7553 {
67c0d1eb 7554 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
8fc2e39e 7555 break;
483fc7cd 7556 }
8fc2e39e 7557 used_at = 1;
67c0d1eb
RS
7558 macro_build (NULL, "sll", "d,w,<", AT, sreg, rot);
7559 macro_build (NULL, "srl", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7560 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
7561 }
7562 break;
7563
7564 case M_DROR:
fef14a42 7565 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097 7566 {
67c0d1eb 7567 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg);
8fc2e39e 7568 break;
82dd0097 7569 }
8fc2e39e 7570 used_at = 1;
67c0d1eb
RS
7571 macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg);
7572 macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT);
7573 macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
7574 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
252b5132
RH
7575 break;
7576
7577 case M_ROR:
fef14a42 7578 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097 7579 {
67c0d1eb 7580 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg);
8fc2e39e 7581 break;
82dd0097 7582 }
8fc2e39e 7583 used_at = 1;
67c0d1eb
RS
7584 macro_build (NULL, "subu", "d,v,t", AT, 0, treg);
7585 macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT);
7586 macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg);
7587 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
252b5132
RH
7588 break;
7589
771c7ce4
TS
7590 case M_DROR_I:
7591 {
7592 unsigned int rot;
82dd0097 7593 char *l, *r;
771c7ce4
TS
7594
7595 if (imm_expr.X_op != O_constant)
82dd0097 7596 as_bad (_("Improper rotate count"));
771c7ce4 7597 rot = imm_expr.X_add_number & 0x3f;
fef14a42 7598 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097
CD
7599 {
7600 if (rot >= 32)
67c0d1eb 7601 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
82dd0097 7602 else
67c0d1eb 7603 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
8fc2e39e 7604 break;
82dd0097 7605 }
483fc7cd 7606 if (rot == 0)
483fc7cd 7607 {
67c0d1eb 7608 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
8fc2e39e 7609 break;
483fc7cd 7610 }
82dd0097
CD
7611 r = (rot < 0x20) ? "dsrl" : "dsrl32";
7612 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
7613 rot &= 0x1f;
8fc2e39e 7614 used_at = 1;
67c0d1eb
RS
7615 macro_build (NULL, r, "d,w,<", AT, sreg, rot);
7616 macro_build (NULL, l, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7617 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
7618 }
7619 break;
7620
252b5132 7621 case M_ROR_I:
771c7ce4
TS
7622 {
7623 unsigned int rot;
7624
7625 if (imm_expr.X_op != O_constant)
82dd0097 7626 as_bad (_("Improper rotate count"));
771c7ce4 7627 rot = imm_expr.X_add_number & 0x1f;
fef14a42 7628 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097 7629 {
67c0d1eb 7630 macro_build (NULL, "ror", "d,w,<", dreg, sreg, rot);
8fc2e39e 7631 break;
82dd0097 7632 }
483fc7cd 7633 if (rot == 0)
483fc7cd 7634 {
67c0d1eb 7635 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
8fc2e39e 7636 break;
483fc7cd 7637 }
8fc2e39e 7638 used_at = 1;
67c0d1eb
RS
7639 macro_build (NULL, "srl", "d,w,<", AT, sreg, rot);
7640 macro_build (NULL, "sll", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7641 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4 7642 }
252b5132
RH
7643 break;
7644
7645 case M_S_DOB:
e7af610e 7646 assert (mips_opts.isa == ISA_MIPS1);
252b5132
RH
7647 /* Even on a big endian machine $fn comes before $fn+1. We have
7648 to adjust when storing to memory. */
67c0d1eb
RS
7649 macro_build (&offset_expr, "swc1", "T,o(b)",
7650 target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg);
252b5132 7651 offset_expr.X_add_number += 4;
67c0d1eb
RS
7652 macro_build (&offset_expr, "swc1", "T,o(b)",
7653 target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg);
8fc2e39e 7654 break;
252b5132
RH
7655
7656 case M_SEQ:
7657 if (sreg == 0)
67c0d1eb 7658 macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
252b5132 7659 else if (treg == 0)
67c0d1eb 7660 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
7661 else
7662 {
67c0d1eb
RS
7663 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7664 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
252b5132 7665 }
8fc2e39e 7666 break;
252b5132
RH
7667
7668 case M_SEQ_I:
7669 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7670 {
67c0d1eb 7671 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 7672 break;
252b5132
RH
7673 }
7674 if (sreg == 0)
7675 {
7676 as_warn (_("Instruction %s: result is always false"),
7677 ip->insn_mo->name);
67c0d1eb 7678 move_register (dreg, 0);
8fc2e39e 7679 break;
252b5132 7680 }
dd3cbb7e
NC
7681 if (CPU_HAS_SEQ (mips_opts.arch)
7682 && -512 <= imm_expr.X_add_number
7683 && imm_expr.X_add_number < 512)
7684 {
7685 macro_build (NULL, "seqi", "t,r,+Q", dreg, sreg,
750bdd57 7686 (int) imm_expr.X_add_number);
dd3cbb7e
NC
7687 break;
7688 }
252b5132
RH
7689 if (imm_expr.X_op == O_constant
7690 && imm_expr.X_add_number >= 0
7691 && imm_expr.X_add_number < 0x10000)
7692 {
67c0d1eb 7693 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
7694 }
7695 else if (imm_expr.X_op == O_constant
7696 && imm_expr.X_add_number > -0x8000
7697 && imm_expr.X_add_number < 0)
7698 {
7699 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 7700 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
17a2f251 7701 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132 7702 }
dd3cbb7e
NC
7703 else if (CPU_HAS_SEQ (mips_opts.arch))
7704 {
7705 used_at = 1;
7706 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7707 macro_build (NULL, "seq", "d,v,t", dreg, sreg, AT);
7708 break;
7709 }
252b5132
RH
7710 else
7711 {
67c0d1eb
RS
7712 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7713 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
252b5132
RH
7714 used_at = 1;
7715 }
67c0d1eb 7716 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 7717 break;
252b5132
RH
7718
7719 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
7720 s = "slt";
7721 goto sge;
7722 case M_SGEU:
7723 s = "sltu";
7724 sge:
67c0d1eb
RS
7725 macro_build (NULL, s, "d,v,t", dreg, sreg, treg);
7726 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 7727 break;
252b5132
RH
7728
7729 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
7730 case M_SGEU_I:
7731 if (imm_expr.X_op == O_constant
7732 && imm_expr.X_add_number >= -0x8000
7733 && imm_expr.X_add_number < 0x8000)
7734 {
67c0d1eb
RS
7735 macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
7736 dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
7737 }
7738 else
7739 {
67c0d1eb
RS
7740 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7741 macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
7742 dreg, sreg, AT);
252b5132
RH
7743 used_at = 1;
7744 }
67c0d1eb 7745 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 7746 break;
252b5132
RH
7747
7748 case M_SGT: /* sreg > treg <==> treg < sreg */
7749 s = "slt";
7750 goto sgt;
7751 case M_SGTU:
7752 s = "sltu";
7753 sgt:
67c0d1eb 7754 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
8fc2e39e 7755 break;
252b5132
RH
7756
7757 case M_SGT_I: /* sreg > I <==> I < sreg */
7758 s = "slt";
7759 goto sgti;
7760 case M_SGTU_I:
7761 s = "sltu";
7762 sgti:
8fc2e39e 7763 used_at = 1;
67c0d1eb
RS
7764 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7765 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
252b5132
RH
7766 break;
7767
2396cfb9 7768 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
252b5132
RH
7769 s = "slt";
7770 goto sle;
7771 case M_SLEU:
7772 s = "sltu";
7773 sle:
67c0d1eb
RS
7774 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
7775 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 7776 break;
252b5132 7777
2396cfb9 7778 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
252b5132
RH
7779 s = "slt";
7780 goto slei;
7781 case M_SLEU_I:
7782 s = "sltu";
7783 slei:
8fc2e39e 7784 used_at = 1;
67c0d1eb
RS
7785 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7786 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
7787 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
252b5132
RH
7788 break;
7789
7790 case M_SLT_I:
7791 if (imm_expr.X_op == O_constant
7792 && imm_expr.X_add_number >= -0x8000
7793 && imm_expr.X_add_number < 0x8000)
7794 {
67c0d1eb 7795 macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 7796 break;
252b5132 7797 }
8fc2e39e 7798 used_at = 1;
67c0d1eb
RS
7799 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7800 macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT);
252b5132
RH
7801 break;
7802
7803 case M_SLTU_I:
7804 if (imm_expr.X_op == O_constant
7805 && imm_expr.X_add_number >= -0x8000
7806 && imm_expr.X_add_number < 0x8000)
7807 {
67c0d1eb 7808 macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg,
17a2f251 7809 BFD_RELOC_LO16);
8fc2e39e 7810 break;
252b5132 7811 }
8fc2e39e 7812 used_at = 1;
67c0d1eb
RS
7813 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7814 macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT);
252b5132
RH
7815 break;
7816
7817 case M_SNE:
7818 if (sreg == 0)
67c0d1eb 7819 macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg);
252b5132 7820 else if (treg == 0)
67c0d1eb 7821 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
252b5132
RH
7822 else
7823 {
67c0d1eb
RS
7824 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7825 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
252b5132 7826 }
8fc2e39e 7827 break;
252b5132
RH
7828
7829 case M_SNE_I:
7830 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7831 {
67c0d1eb 7832 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
8fc2e39e 7833 break;
252b5132
RH
7834 }
7835 if (sreg == 0)
7836 {
7837 as_warn (_("Instruction %s: result is always true"),
7838 ip->insn_mo->name);
67c0d1eb
RS
7839 macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
7840 dreg, 0, BFD_RELOC_LO16);
8fc2e39e 7841 break;
252b5132 7842 }
dd3cbb7e
NC
7843 if (CPU_HAS_SEQ (mips_opts.arch)
7844 && -512 <= imm_expr.X_add_number
7845 && imm_expr.X_add_number < 512)
7846 {
7847 macro_build (NULL, "snei", "t,r,+Q", dreg, sreg,
750bdd57 7848 (int) imm_expr.X_add_number);
dd3cbb7e
NC
7849 break;
7850 }
252b5132
RH
7851 if (imm_expr.X_op == O_constant
7852 && imm_expr.X_add_number >= 0
7853 && imm_expr.X_add_number < 0x10000)
7854 {
67c0d1eb 7855 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
7856 }
7857 else if (imm_expr.X_op == O_constant
7858 && imm_expr.X_add_number > -0x8000
7859 && imm_expr.X_add_number < 0)
7860 {
7861 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 7862 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
17a2f251 7863 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132 7864 }
dd3cbb7e
NC
7865 else if (CPU_HAS_SEQ (mips_opts.arch))
7866 {
7867 used_at = 1;
7868 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7869 macro_build (NULL, "sne", "d,v,t", dreg, sreg, AT);
7870 break;
7871 }
252b5132
RH
7872 else
7873 {
67c0d1eb
RS
7874 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7875 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
252b5132
RH
7876 used_at = 1;
7877 }
67c0d1eb 7878 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
8fc2e39e 7879 break;
252b5132
RH
7880
7881 case M_DSUB_I:
7882 dbl = 1;
7883 case M_SUB_I:
7884 if (imm_expr.X_op == O_constant
7885 && imm_expr.X_add_number > -0x8000
7886 && imm_expr.X_add_number <= 0x8000)
7887 {
7888 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb
RS
7889 macro_build (&imm_expr, dbl ? "daddi" : "addi", "t,r,j",
7890 dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 7891 break;
252b5132 7892 }
8fc2e39e 7893 used_at = 1;
67c0d1eb
RS
7894 load_register (AT, &imm_expr, dbl);
7895 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
252b5132
RH
7896 break;
7897
7898 case M_DSUBU_I:
7899 dbl = 1;
7900 case M_SUBU_I:
7901 if (imm_expr.X_op == O_constant
7902 && imm_expr.X_add_number > -0x8000
7903 && imm_expr.X_add_number <= 0x8000)
7904 {
7905 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb
RS
7906 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "t,r,j",
7907 dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 7908 break;
252b5132 7909 }
8fc2e39e 7910 used_at = 1;
67c0d1eb
RS
7911 load_register (AT, &imm_expr, dbl);
7912 macro_build (NULL, dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
252b5132
RH
7913 break;
7914
7915 case M_TEQ_I:
7916 s = "teq";
7917 goto trap;
7918 case M_TGE_I:
7919 s = "tge";
7920 goto trap;
7921 case M_TGEU_I:
7922 s = "tgeu";
7923 goto trap;
7924 case M_TLT_I:
7925 s = "tlt";
7926 goto trap;
7927 case M_TLTU_I:
7928 s = "tltu";
7929 goto trap;
7930 case M_TNE_I:
7931 s = "tne";
7932 trap:
8fc2e39e 7933 used_at = 1;
67c0d1eb
RS
7934 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7935 macro_build (NULL, s, "s,t", sreg, AT);
252b5132
RH
7936 break;
7937
252b5132 7938 case M_TRUNCWS:
43841e91 7939 case M_TRUNCWD:
e7af610e 7940 assert (mips_opts.isa == ISA_MIPS1);
8fc2e39e 7941 used_at = 1;
252b5132
RH
7942 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
7943 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
7944
7945 /*
7946 * Is the double cfc1 instruction a bug in the mips assembler;
7947 * or is there a reason for it?
7948 */
7d10b47d 7949 start_noreorder ();
67c0d1eb
RS
7950 macro_build (NULL, "cfc1", "t,G", treg, RA);
7951 macro_build (NULL, "cfc1", "t,G", treg, RA);
7952 macro_build (NULL, "nop", "");
252b5132 7953 expr1.X_add_number = 3;
67c0d1eb 7954 macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16);
252b5132 7955 expr1.X_add_number = 2;
67c0d1eb
RS
7956 macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
7957 macro_build (NULL, "ctc1", "t,G", AT, RA);
7958 macro_build (NULL, "nop", "");
7959 macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
7960 dreg, sreg);
7961 macro_build (NULL, "ctc1", "t,G", treg, RA);
7962 macro_build (NULL, "nop", "");
7d10b47d 7963 end_noreorder ();
252b5132
RH
7964 break;
7965
7966 case M_ULH:
7967 s = "lb";
7968 goto ulh;
7969 case M_ULHU:
7970 s = "lbu";
7971 ulh:
8fc2e39e 7972 used_at = 1;
252b5132
RH
7973 if (offset_expr.X_add_number >= 0x7fff)
7974 as_bad (_("operand overflow"));
252b5132 7975 if (! target_big_endian)
f9419b05 7976 ++offset_expr.X_add_number;
67c0d1eb 7977 macro_build (&offset_expr, s, "t,o(b)", AT, BFD_RELOC_LO16, breg);
252b5132 7978 if (! target_big_endian)
f9419b05 7979 --offset_expr.X_add_number;
252b5132 7980 else
f9419b05 7981 ++offset_expr.X_add_number;
67c0d1eb
RS
7982 macro_build (&offset_expr, "lbu", "t,o(b)", treg, BFD_RELOC_LO16, breg);
7983 macro_build (NULL, "sll", "d,w,<", AT, AT, 8);
7984 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
252b5132
RH
7985 break;
7986
7987 case M_ULD:
7988 s = "ldl";
7989 s2 = "ldr";
7990 off = 7;
7991 goto ulw;
7992 case M_ULW:
7993 s = "lwl";
7994 s2 = "lwr";
7995 off = 3;
7996 ulw:
7997 if (offset_expr.X_add_number >= 0x8000 - off)
7998 as_bad (_("operand overflow"));
af22f5b2
CD
7999 if (treg != breg)
8000 tempreg = treg;
8001 else
8fc2e39e
TS
8002 {
8003 used_at = 1;
8004 tempreg = AT;
8005 }
252b5132
RH
8006 if (! target_big_endian)
8007 offset_expr.X_add_number += off;
67c0d1eb 8008 macro_build (&offset_expr, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
252b5132
RH
8009 if (! target_big_endian)
8010 offset_expr.X_add_number -= off;
8011 else
8012 offset_expr.X_add_number += off;
67c0d1eb 8013 macro_build (&offset_expr, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
af22f5b2
CD
8014
8015 /* If necessary, move the result in tempreg the final destination. */
8016 if (treg == tempreg)
8fc2e39e 8017 break;
af22f5b2 8018 /* Protect second load's delay slot. */
017315e4 8019 load_delay_nop ();
67c0d1eb 8020 move_register (treg, tempreg);
af22f5b2 8021 break;
252b5132
RH
8022
8023 case M_ULD_A:
8024 s = "ldl";
8025 s2 = "ldr";
8026 off = 7;
8027 goto ulwa;
8028 case M_ULW_A:
8029 s = "lwl";
8030 s2 = "lwr";
8031 off = 3;
8032 ulwa:
d6bc6245 8033 used_at = 1;
67c0d1eb 8034 load_address (AT, &offset_expr, &used_at);
252b5132 8035 if (breg != 0)
67c0d1eb 8036 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
252b5132
RH
8037 if (! target_big_endian)
8038 expr1.X_add_number = off;
8039 else
8040 expr1.X_add_number = 0;
67c0d1eb 8041 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
8042 if (! target_big_endian)
8043 expr1.X_add_number = 0;
8044 else
8045 expr1.X_add_number = off;
67c0d1eb 8046 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
8047 break;
8048
8049 case M_ULH_A:
8050 case M_ULHU_A:
d6bc6245 8051 used_at = 1;
67c0d1eb 8052 load_address (AT, &offset_expr, &used_at);
252b5132 8053 if (breg != 0)
67c0d1eb 8054 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
252b5132
RH
8055 if (target_big_endian)
8056 expr1.X_add_number = 0;
67c0d1eb 8057 macro_build (&expr1, mask == M_ULH_A ? "lb" : "lbu", "t,o(b)",
17a2f251 8058 treg, BFD_RELOC_LO16, AT);
252b5132
RH
8059 if (target_big_endian)
8060 expr1.X_add_number = 1;
8061 else
8062 expr1.X_add_number = 0;
67c0d1eb
RS
8063 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
8064 macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
8065 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
252b5132
RH
8066 break;
8067
8068 case M_USH:
8fc2e39e 8069 used_at = 1;
252b5132
RH
8070 if (offset_expr.X_add_number >= 0x7fff)
8071 as_bad (_("operand overflow"));
8072 if (target_big_endian)
f9419b05 8073 ++offset_expr.X_add_number;
67c0d1eb
RS
8074 macro_build (&offset_expr, "sb", "t,o(b)", treg, BFD_RELOC_LO16, breg);
8075 macro_build (NULL, "srl", "d,w,<", AT, treg, 8);
252b5132 8076 if (target_big_endian)
f9419b05 8077 --offset_expr.X_add_number;
252b5132 8078 else
f9419b05 8079 ++offset_expr.X_add_number;
67c0d1eb 8080 macro_build (&offset_expr, "sb", "t,o(b)", AT, BFD_RELOC_LO16, breg);
252b5132
RH
8081 break;
8082
8083 case M_USD:
8084 s = "sdl";
8085 s2 = "sdr";
8086 off = 7;
8087 goto usw;
8088 case M_USW:
8089 s = "swl";
8090 s2 = "swr";
8091 off = 3;
8092 usw:
8093 if (offset_expr.X_add_number >= 0x8000 - off)
8094 as_bad (_("operand overflow"));
8095 if (! target_big_endian)
8096 offset_expr.X_add_number += off;
67c0d1eb 8097 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
252b5132
RH
8098 if (! target_big_endian)
8099 offset_expr.X_add_number -= off;
8100 else
8101 offset_expr.X_add_number += off;
67c0d1eb 8102 macro_build (&offset_expr, s2, "t,o(b)", treg, BFD_RELOC_LO16, breg);
8fc2e39e 8103 break;
252b5132
RH
8104
8105 case M_USD_A:
8106 s = "sdl";
8107 s2 = "sdr";
8108 off = 7;
8109 goto uswa;
8110 case M_USW_A:
8111 s = "swl";
8112 s2 = "swr";
8113 off = 3;
8114 uswa:
d6bc6245 8115 used_at = 1;
67c0d1eb 8116 load_address (AT, &offset_expr, &used_at);
252b5132 8117 if (breg != 0)
67c0d1eb 8118 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
252b5132
RH
8119 if (! target_big_endian)
8120 expr1.X_add_number = off;
8121 else
8122 expr1.X_add_number = 0;
67c0d1eb 8123 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
8124 if (! target_big_endian)
8125 expr1.X_add_number = 0;
8126 else
8127 expr1.X_add_number = off;
67c0d1eb 8128 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
8129 break;
8130
8131 case M_USH_A:
d6bc6245 8132 used_at = 1;
67c0d1eb 8133 load_address (AT, &offset_expr, &used_at);
252b5132 8134 if (breg != 0)
67c0d1eb 8135 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
252b5132
RH
8136 if (! target_big_endian)
8137 expr1.X_add_number = 0;
67c0d1eb
RS
8138 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
8139 macro_build (NULL, "srl", "d,w,<", treg, treg, 8);
252b5132
RH
8140 if (! target_big_endian)
8141 expr1.X_add_number = 1;
8142 else
8143 expr1.X_add_number = 0;
67c0d1eb 8144 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
8145 if (! target_big_endian)
8146 expr1.X_add_number = 0;
8147 else
8148 expr1.X_add_number = 1;
67c0d1eb
RS
8149 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
8150 macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
8151 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
252b5132
RH
8152 break;
8153
8154 default:
8155 /* FIXME: Check if this is one of the itbl macros, since they
bdaaa2e1 8156 are added dynamically. */
252b5132
RH
8157 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
8158 break;
8159 }
741fe287 8160 if (!mips_opts.at && used_at)
8fc2e39e 8161 as_bad (_("Macro used $at after \".set noat\""));
252b5132
RH
8162}
8163
8164/* Implement macros in mips16 mode. */
8165
8166static void
17a2f251 8167mips16_macro (struct mips_cl_insn *ip)
252b5132
RH
8168{
8169 int mask;
8170 int xreg, yreg, zreg, tmp;
252b5132
RH
8171 expressionS expr1;
8172 int dbl;
8173 const char *s, *s2, *s3;
8174
8175 mask = ip->insn_mo->mask;
8176
bf12938e
RS
8177 xreg = MIPS16_EXTRACT_OPERAND (RX, *ip);
8178 yreg = MIPS16_EXTRACT_OPERAND (RY, *ip);
8179 zreg = MIPS16_EXTRACT_OPERAND (RZ, *ip);
252b5132 8180
252b5132
RH
8181 expr1.X_op = O_constant;
8182 expr1.X_op_symbol = NULL;
8183 expr1.X_add_symbol = NULL;
8184 expr1.X_add_number = 1;
8185
8186 dbl = 0;
8187
8188 switch (mask)
8189 {
8190 default:
8191 internalError ();
8192
8193 case M_DDIV_3:
8194 dbl = 1;
8195 case M_DIV_3:
8196 s = "mflo";
8197 goto do_div3;
8198 case M_DREM_3:
8199 dbl = 1;
8200 case M_REM_3:
8201 s = "mfhi";
8202 do_div3:
7d10b47d 8203 start_noreorder ();
67c0d1eb 8204 macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg);
252b5132 8205 expr1.X_add_number = 2;
67c0d1eb
RS
8206 macro_build (&expr1, "bnez", "x,p", yreg);
8207 macro_build (NULL, "break", "6", 7);
bdaaa2e1 8208
252b5132
RH
8209 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
8210 since that causes an overflow. We should do that as well,
8211 but I don't see how to do the comparisons without a temporary
8212 register. */
7d10b47d 8213 end_noreorder ();
67c0d1eb 8214 macro_build (NULL, s, "x", zreg);
252b5132
RH
8215 break;
8216
8217 case M_DIVU_3:
8218 s = "divu";
8219 s2 = "mflo";
8220 goto do_divu3;
8221 case M_REMU_3:
8222 s = "divu";
8223 s2 = "mfhi";
8224 goto do_divu3;
8225 case M_DDIVU_3:
8226 s = "ddivu";
8227 s2 = "mflo";
8228 goto do_divu3;
8229 case M_DREMU_3:
8230 s = "ddivu";
8231 s2 = "mfhi";
8232 do_divu3:
7d10b47d 8233 start_noreorder ();
67c0d1eb 8234 macro_build (NULL, s, "0,x,y", xreg, yreg);
252b5132 8235 expr1.X_add_number = 2;
67c0d1eb
RS
8236 macro_build (&expr1, "bnez", "x,p", yreg);
8237 macro_build (NULL, "break", "6", 7);
7d10b47d 8238 end_noreorder ();
67c0d1eb 8239 macro_build (NULL, s2, "x", zreg);
252b5132
RH
8240 break;
8241
8242 case M_DMUL:
8243 dbl = 1;
8244 case M_MUL:
67c0d1eb
RS
8245 macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
8246 macro_build (NULL, "mflo", "x", zreg);
8fc2e39e 8247 break;
252b5132
RH
8248
8249 case M_DSUBU_I:
8250 dbl = 1;
8251 goto do_subu;
8252 case M_SUBU_I:
8253 do_subu:
8254 if (imm_expr.X_op != O_constant)
8255 as_bad (_("Unsupported large constant"));
8256 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 8257 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
252b5132
RH
8258 break;
8259
8260 case M_SUBU_I_2:
8261 if (imm_expr.X_op != O_constant)
8262 as_bad (_("Unsupported large constant"));
8263 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 8264 macro_build (&imm_expr, "addiu", "x,k", xreg);
252b5132
RH
8265 break;
8266
8267 case M_DSUBU_I_2:
8268 if (imm_expr.X_op != O_constant)
8269 as_bad (_("Unsupported large constant"));
8270 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 8271 macro_build (&imm_expr, "daddiu", "y,j", yreg);
252b5132
RH
8272 break;
8273
8274 case M_BEQ:
8275 s = "cmp";
8276 s2 = "bteqz";
8277 goto do_branch;
8278 case M_BNE:
8279 s = "cmp";
8280 s2 = "btnez";
8281 goto do_branch;
8282 case M_BLT:
8283 s = "slt";
8284 s2 = "btnez";
8285 goto do_branch;
8286 case M_BLTU:
8287 s = "sltu";
8288 s2 = "btnez";
8289 goto do_branch;
8290 case M_BLE:
8291 s = "slt";
8292 s2 = "bteqz";
8293 goto do_reverse_branch;
8294 case M_BLEU:
8295 s = "sltu";
8296 s2 = "bteqz";
8297 goto do_reverse_branch;
8298 case M_BGE:
8299 s = "slt";
8300 s2 = "bteqz";
8301 goto do_branch;
8302 case M_BGEU:
8303 s = "sltu";
8304 s2 = "bteqz";
8305 goto do_branch;
8306 case M_BGT:
8307 s = "slt";
8308 s2 = "btnez";
8309 goto do_reverse_branch;
8310 case M_BGTU:
8311 s = "sltu";
8312 s2 = "btnez";
8313
8314 do_reverse_branch:
8315 tmp = xreg;
8316 xreg = yreg;
8317 yreg = tmp;
8318
8319 do_branch:
67c0d1eb
RS
8320 macro_build (NULL, s, "x,y", xreg, yreg);
8321 macro_build (&offset_expr, s2, "p");
252b5132
RH
8322 break;
8323
8324 case M_BEQ_I:
8325 s = "cmpi";
8326 s2 = "bteqz";
8327 s3 = "x,U";
8328 goto do_branch_i;
8329 case M_BNE_I:
8330 s = "cmpi";
8331 s2 = "btnez";
8332 s3 = "x,U";
8333 goto do_branch_i;
8334 case M_BLT_I:
8335 s = "slti";
8336 s2 = "btnez";
8337 s3 = "x,8";
8338 goto do_branch_i;
8339 case M_BLTU_I:
8340 s = "sltiu";
8341 s2 = "btnez";
8342 s3 = "x,8";
8343 goto do_branch_i;
8344 case M_BLE_I:
8345 s = "slti";
8346 s2 = "btnez";
8347 s3 = "x,8";
8348 goto do_addone_branch_i;
8349 case M_BLEU_I:
8350 s = "sltiu";
8351 s2 = "btnez";
8352 s3 = "x,8";
8353 goto do_addone_branch_i;
8354 case M_BGE_I:
8355 s = "slti";
8356 s2 = "bteqz";
8357 s3 = "x,8";
8358 goto do_branch_i;
8359 case M_BGEU_I:
8360 s = "sltiu";
8361 s2 = "bteqz";
8362 s3 = "x,8";
8363 goto do_branch_i;
8364 case M_BGT_I:
8365 s = "slti";
8366 s2 = "bteqz";
8367 s3 = "x,8";
8368 goto do_addone_branch_i;
8369 case M_BGTU_I:
8370 s = "sltiu";
8371 s2 = "bteqz";
8372 s3 = "x,8";
8373
8374 do_addone_branch_i:
8375 if (imm_expr.X_op != O_constant)
8376 as_bad (_("Unsupported large constant"));
8377 ++imm_expr.X_add_number;
8378
8379 do_branch_i:
67c0d1eb
RS
8380 macro_build (&imm_expr, s, s3, xreg);
8381 macro_build (&offset_expr, s2, "p");
252b5132
RH
8382 break;
8383
8384 case M_ABS:
8385 expr1.X_add_number = 0;
67c0d1eb 8386 macro_build (&expr1, "slti", "x,8", yreg);
252b5132 8387 if (xreg != yreg)
67c0d1eb 8388 move_register (xreg, yreg);
252b5132 8389 expr1.X_add_number = 2;
67c0d1eb
RS
8390 macro_build (&expr1, "bteqz", "p");
8391 macro_build (NULL, "neg", "x,w", xreg, xreg);
252b5132
RH
8392 }
8393}
8394
8395/* For consistency checking, verify that all bits are specified either
8396 by the match/mask part of the instruction definition, or by the
8397 operand list. */
8398static int
17a2f251 8399validate_mips_insn (const struct mips_opcode *opc)
252b5132
RH
8400{
8401 const char *p = opc->args;
8402 char c;
8403 unsigned long used_bits = opc->mask;
8404
8405 if ((used_bits & opc->match) != opc->match)
8406 {
8407 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
8408 opc->name, opc->args);
8409 return 0;
8410 }
8411#define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
8412 while (*p)
8413 switch (c = *p++)
8414 {
8415 case ',': break;
8416 case '(': break;
8417 case ')': break;
af7ee8bf
CD
8418 case '+':
8419 switch (c = *p++)
8420 {
9bcd4f99
TS
8421 case '1': USE_BITS (OP_MASK_UDI1, OP_SH_UDI1); break;
8422 case '2': USE_BITS (OP_MASK_UDI2, OP_SH_UDI2); break;
8423 case '3': USE_BITS (OP_MASK_UDI3, OP_SH_UDI3); break;
8424 case '4': USE_BITS (OP_MASK_UDI4, OP_SH_UDI4); break;
af7ee8bf
CD
8425 case 'A': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8426 case 'B': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
8427 case 'C': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
bbcc0807
CD
8428 case 'D': USE_BITS (OP_MASK_RD, OP_SH_RD);
8429 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
5f74bc13
CD
8430 case 'E': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8431 case 'F': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
8432 case 'G': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
8433 case 'H': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
8434 case 'I': break;
ef2e4d86
CF
8435 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8436 case 'T': USE_BITS (OP_MASK_RT, OP_SH_RT);
8437 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
bb35fb24
NC
8438 case 'x': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
8439 case 'X': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
8440 case 'p': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
8441 case 'P': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
dd3cbb7e 8442 case 'Q': USE_BITS (OP_MASK_SEQI, OP_SH_SEQI); break;
bb35fb24
NC
8443 case 's': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
8444 case 'S': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
8445
af7ee8bf
CD
8446 default:
8447 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
8448 c, opc->name, opc->args);
8449 return 0;
8450 }
8451 break;
252b5132
RH
8452 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8453 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8454 case 'A': break;
4372b673 8455 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
252b5132
RH
8456 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
8457 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
8458 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8459 case 'F': break;
8460 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
156c2f8b 8461 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
252b5132 8462 case 'I': break;
e972090a 8463 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
af7ee8bf 8464 case 'K': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
252b5132
RH
8465 case 'L': break;
8466 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
8467 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
deec1734
CD
8468 case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break;
8469 case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL);
8470 USE_BITS (OP_MASK_FT, OP_SH_FT); break;
252b5132
RH
8471 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
8472 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
8473 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
8474 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
8475 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
deec1734
CD
8476 case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
8477 case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
8478 case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
252b5132
RH
8479 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
8480 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8481 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
8482 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
8483 case 'f': break;
8484 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
8485 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
8486 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
8487 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
8488 case 'l': break;
8489 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
8490 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
8491 case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break;
8492 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8493 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8494 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8495 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
8496 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8497 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8498 case 'x': break;
8499 case 'z': break;
8500 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
4372b673
NC
8501 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
8502 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
60b63b72
RS
8503 case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break;
8504 case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break;
8505 case '[': break;
8506 case ']': break;
620edafd 8507 case '1': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8b082fb1 8508 case '2': USE_BITS (OP_MASK_BP, OP_SH_BP); break;
74cd071d
CF
8509 case '3': USE_BITS (OP_MASK_SA3, OP_SH_SA3); break;
8510 case '4': USE_BITS (OP_MASK_SA4, OP_SH_SA4); break;
8511 case '5': USE_BITS (OP_MASK_IMM8, OP_SH_IMM8); break;
8512 case '6': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8513 case '7': USE_BITS (OP_MASK_DSPACC, OP_SH_DSPACC); break;
8514 case '8': USE_BITS (OP_MASK_WRDSP, OP_SH_WRDSP); break;
8515 case '9': USE_BITS (OP_MASK_DSPACC_S, OP_SH_DSPACC_S);break;
8516 case '0': USE_BITS (OP_MASK_DSPSFT, OP_SH_DSPSFT); break;
8517 case '\'': USE_BITS (OP_MASK_RDDSP, OP_SH_RDDSP); break;
8518 case ':': USE_BITS (OP_MASK_DSPSFT_7, OP_SH_DSPSFT_7);break;
8519 case '@': USE_BITS (OP_MASK_IMM10, OP_SH_IMM10); break;
ef2e4d86
CF
8520 case '!': USE_BITS (OP_MASK_MT_U, OP_SH_MT_U); break;
8521 case '$': USE_BITS (OP_MASK_MT_H, OP_SH_MT_H); break;
8522 case '*': USE_BITS (OP_MASK_MTACC_T, OP_SH_MTACC_T); break;
8523 case '&': USE_BITS (OP_MASK_MTACC_D, OP_SH_MTACC_D); break;
8524 case 'g': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
252b5132
RH
8525 default:
8526 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
8527 c, opc->name, opc->args);
8528 return 0;
8529 }
8530#undef USE_BITS
8531 if (used_bits != 0xffffffff)
8532 {
8533 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
8534 ~used_bits & 0xffffffff, opc->name, opc->args);
8535 return 0;
8536 }
8537 return 1;
8538}
8539
9bcd4f99
TS
8540/* UDI immediates. */
8541struct mips_immed {
8542 char type;
8543 unsigned int shift;
8544 unsigned long mask;
8545 const char * desc;
8546};
8547
8548static const struct mips_immed mips_immed[] = {
8549 { '1', OP_SH_UDI1, OP_MASK_UDI1, 0},
8550 { '2', OP_SH_UDI2, OP_MASK_UDI2, 0},
8551 { '3', OP_SH_UDI3, OP_MASK_UDI3, 0},
8552 { '4', OP_SH_UDI4, OP_MASK_UDI4, 0},
8553 { 0,0,0,0 }
8554};
8555
7455baf8
TS
8556/* Check whether an odd floating-point register is allowed. */
8557static int
8558mips_oddfpreg_ok (const struct mips_opcode *insn, int argnum)
8559{
8560 const char *s = insn->name;
8561
8562 if (insn->pinfo == INSN_MACRO)
8563 /* Let a macro pass, we'll catch it later when it is expanded. */
8564 return 1;
8565
8566 if (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa))
8567 {
8568 /* Allow odd registers for single-precision ops. */
8569 switch (insn->pinfo & (FP_S | FP_D))
8570 {
8571 case FP_S:
8572 case 0:
8573 return 1; /* both single precision - ok */
8574 case FP_D:
8575 return 0; /* both double precision - fail */
8576 default:
8577 break;
8578 }
8579
8580 /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand. */
8581 s = strchr (insn->name, '.');
8582 if (argnum == 2)
8583 s = s != NULL ? strchr (s + 1, '.') : NULL;
8584 return (s != NULL && (s[1] == 'w' || s[1] == 's'));
8585 }
8586
8587 /* Single-precision coprocessor loads and moves are OK too. */
8588 if ((insn->pinfo & FP_S)
8589 && (insn->pinfo & (INSN_COPROC_MEMORY_DELAY | INSN_STORE_MEMORY
8590 | INSN_LOAD_COPROC_DELAY | INSN_COPROC_MOVE_DELAY)))
8591 return 1;
8592
8593 return 0;
8594}
8595
252b5132
RH
8596/* This routine assembles an instruction into its binary format. As a
8597 side effect, it sets one of the global variables imm_reloc or
8598 offset_reloc to the type of relocation to do if one of the operands
8599 is an address expression. */
8600
8601static void
17a2f251 8602mips_ip (char *str, struct mips_cl_insn *ip)
252b5132
RH
8603{
8604 char *s;
8605 const char *args;
43841e91 8606 char c = 0;
252b5132
RH
8607 struct mips_opcode *insn;
8608 char *argsStart;
8609 unsigned int regno;
8610 unsigned int lastregno = 0;
af7ee8bf 8611 unsigned int lastpos = 0;
071742cf 8612 unsigned int limlo, limhi;
252b5132
RH
8613 char *s_reset;
8614 char save_c = 0;
74cd071d 8615 offsetT min_range, max_range;
707bfff6
TS
8616 int argnum;
8617 unsigned int rtype;
252b5132
RH
8618
8619 insn_error = NULL;
8620
8621 /* If the instruction contains a '.', we first try to match an instruction
8622 including the '.'. Then we try again without the '.'. */
8623 insn = NULL;
3882b010 8624 for (s = str; *s != '\0' && !ISSPACE (*s); ++s)
252b5132
RH
8625 continue;
8626
8627 /* If we stopped on whitespace, then replace the whitespace with null for
8628 the call to hash_find. Save the character we replaced just in case we
8629 have to re-parse the instruction. */
3882b010 8630 if (ISSPACE (*s))
252b5132
RH
8631 {
8632 save_c = *s;
8633 *s++ = '\0';
8634 }
bdaaa2e1 8635
252b5132
RH
8636 insn = (struct mips_opcode *) hash_find (op_hash, str);
8637
8638 /* If we didn't find the instruction in the opcode table, try again, but
8639 this time with just the instruction up to, but not including the
8640 first '.'. */
8641 if (insn == NULL)
8642 {
bdaaa2e1 8643 /* Restore the character we overwrite above (if any). */
252b5132
RH
8644 if (save_c)
8645 *(--s) = save_c;
8646
8647 /* Scan up to the first '.' or whitespace. */
3882b010
L
8648 for (s = str;
8649 *s != '\0' && *s != '.' && !ISSPACE (*s);
8650 ++s)
252b5132
RH
8651 continue;
8652
8653 /* If we did not find a '.', then we can quit now. */
8654 if (*s != '.')
8655 {
8656 insn_error = "unrecognized opcode";
8657 return;
8658 }
8659
8660 /* Lookup the instruction in the hash table. */
8661 *s++ = '\0';
8662 if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL)
8663 {
8664 insn_error = "unrecognized opcode";
8665 return;
8666 }
252b5132
RH
8667 }
8668
8669 argsStart = s;
8670 for (;;)
8671 {
b34976b6 8672 bfd_boolean ok;
252b5132
RH
8673
8674 assert (strcmp (insn->name, str) == 0);
8675
037b32b9 8676 ok = is_opcode_valid (insn, FALSE);
252b5132
RH
8677 if (! ok)
8678 {
8679 if (insn + 1 < &mips_opcodes[NUMOPCODES]
8680 && strcmp (insn->name, insn[1].name) == 0)
8681 {
8682 ++insn;
8683 continue;
8684 }
252b5132 8685 else
beae10d5 8686 {
268f6bed
L
8687 if (!insn_error)
8688 {
8689 static char buf[100];
fef14a42
TS
8690 sprintf (buf,
8691 _("opcode not supported on this processor: %s (%s)"),
8692 mips_cpu_info_from_arch (mips_opts.arch)->name,
8693 mips_cpu_info_from_isa (mips_opts.isa)->name);
268f6bed
L
8694 insn_error = buf;
8695 }
8696 if (save_c)
8697 *(--s) = save_c;
2bd7f1f3 8698 return;
252b5132 8699 }
252b5132
RH
8700 }
8701
1e915849 8702 create_insn (ip, insn);
268f6bed 8703 insn_error = NULL;
707bfff6 8704 argnum = 1;
24864476 8705 lastregno = 0xffffffff;
252b5132
RH
8706 for (args = insn->args;; ++args)
8707 {
deec1734
CD
8708 int is_mdmx;
8709
ad8d3bb3 8710 s += strspn (s, " \t");
deec1734 8711 is_mdmx = 0;
252b5132
RH
8712 switch (*args)
8713 {
8714 case '\0': /* end of args */
8715 if (*s == '\0')
8716 return;
8717 break;
8718
8b082fb1
TS
8719 case '2': /* dsp 2-bit unsigned immediate in bit 11 */
8720 my_getExpression (&imm_expr, s);
8721 check_absolute_expr (ip, &imm_expr);
8722 if ((unsigned long) imm_expr.X_add_number != 1
8723 && (unsigned long) imm_expr.X_add_number != 3)
8724 {
8725 as_bad (_("BALIGN immediate not 1 or 3 (%lu)"),
8726 (unsigned long) imm_expr.X_add_number);
8727 }
8728 INSERT_OPERAND (BP, *ip, imm_expr.X_add_number);
8729 imm_expr.X_op = O_absent;
8730 s = expr_end;
8731 continue;
8732
74cd071d
CF
8733 case '3': /* dsp 3-bit unsigned immediate in bit 21 */
8734 my_getExpression (&imm_expr, s);
8735 check_absolute_expr (ip, &imm_expr);
8736 if (imm_expr.X_add_number & ~OP_MASK_SA3)
8737 {
a9e24354
TS
8738 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8739 OP_MASK_SA3, (unsigned long) imm_expr.X_add_number);
74cd071d 8740 }
a9e24354 8741 INSERT_OPERAND (SA3, *ip, imm_expr.X_add_number);
74cd071d
CF
8742 imm_expr.X_op = O_absent;
8743 s = expr_end;
8744 continue;
8745
8746 case '4': /* dsp 4-bit unsigned immediate in bit 21 */
8747 my_getExpression (&imm_expr, s);
8748 check_absolute_expr (ip, &imm_expr);
8749 if (imm_expr.X_add_number & ~OP_MASK_SA4)
8750 {
a9e24354
TS
8751 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8752 OP_MASK_SA4, (unsigned long) imm_expr.X_add_number);
74cd071d 8753 }
a9e24354 8754 INSERT_OPERAND (SA4, *ip, imm_expr.X_add_number);
74cd071d
CF
8755 imm_expr.X_op = O_absent;
8756 s = expr_end;
8757 continue;
8758
8759 case '5': /* dsp 8-bit unsigned immediate in bit 16 */
8760 my_getExpression (&imm_expr, s);
8761 check_absolute_expr (ip, &imm_expr);
8762 if (imm_expr.X_add_number & ~OP_MASK_IMM8)
8763 {
a9e24354
TS
8764 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8765 OP_MASK_IMM8, (unsigned long) imm_expr.X_add_number);
74cd071d 8766 }
a9e24354 8767 INSERT_OPERAND (IMM8, *ip, imm_expr.X_add_number);
74cd071d
CF
8768 imm_expr.X_op = O_absent;
8769 s = expr_end;
8770 continue;
8771
8772 case '6': /* dsp 5-bit unsigned immediate in bit 21 */
8773 my_getExpression (&imm_expr, s);
8774 check_absolute_expr (ip, &imm_expr);
8775 if (imm_expr.X_add_number & ~OP_MASK_RS)
8776 {
a9e24354
TS
8777 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8778 OP_MASK_RS, (unsigned long) imm_expr.X_add_number);
74cd071d 8779 }
a9e24354 8780 INSERT_OPERAND (RS, *ip, imm_expr.X_add_number);
74cd071d
CF
8781 imm_expr.X_op = O_absent;
8782 s = expr_end;
8783 continue;
8784
8785 case '7': /* four dsp accumulators in bits 11,12 */
8786 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
8787 s[3] >= '0' && s[3] <= '3')
8788 {
8789 regno = s[3] - '0';
8790 s += 4;
a9e24354 8791 INSERT_OPERAND (DSPACC, *ip, regno);
74cd071d
CF
8792 continue;
8793 }
8794 else
8795 as_bad (_("Invalid dsp acc register"));
8796 break;
8797
8798 case '8': /* dsp 6-bit unsigned immediate in bit 11 */
8799 my_getExpression (&imm_expr, s);
8800 check_absolute_expr (ip, &imm_expr);
8801 if (imm_expr.X_add_number & ~OP_MASK_WRDSP)
8802 {
a9e24354
TS
8803 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8804 OP_MASK_WRDSP,
8805 (unsigned long) imm_expr.X_add_number);
74cd071d 8806 }
a9e24354 8807 INSERT_OPERAND (WRDSP, *ip, imm_expr.X_add_number);
74cd071d
CF
8808 imm_expr.X_op = O_absent;
8809 s = expr_end;
8810 continue;
8811
8812 case '9': /* four dsp accumulators in bits 21,22 */
8813 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
8814 s[3] >= '0' && s[3] <= '3')
8815 {
8816 regno = s[3] - '0';
8817 s += 4;
a9e24354 8818 INSERT_OPERAND (DSPACC_S, *ip, regno);
74cd071d
CF
8819 continue;
8820 }
8821 else
8822 as_bad (_("Invalid dsp acc register"));
8823 break;
8824
8825 case '0': /* dsp 6-bit signed immediate in bit 20 */
8826 my_getExpression (&imm_expr, s);
8827 check_absolute_expr (ip, &imm_expr);
8828 min_range = -((OP_MASK_DSPSFT + 1) >> 1);
8829 max_range = ((OP_MASK_DSPSFT + 1) >> 1) - 1;
8830 if (imm_expr.X_add_number < min_range ||
8831 imm_expr.X_add_number > max_range)
8832 {
a9e24354
TS
8833 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8834 (long) min_range, (long) max_range,
8835 (long) imm_expr.X_add_number);
74cd071d 8836 }
a9e24354 8837 INSERT_OPERAND (DSPSFT, *ip, imm_expr.X_add_number);
74cd071d
CF
8838 imm_expr.X_op = O_absent;
8839 s = expr_end;
8840 continue;
8841
8842 case '\'': /* dsp 6-bit unsigned immediate in bit 16 */
8843 my_getExpression (&imm_expr, s);
8844 check_absolute_expr (ip, &imm_expr);
8845 if (imm_expr.X_add_number & ~OP_MASK_RDDSP)
8846 {
a9e24354
TS
8847 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8848 OP_MASK_RDDSP,
8849 (unsigned long) imm_expr.X_add_number);
74cd071d 8850 }
a9e24354 8851 INSERT_OPERAND (RDDSP, *ip, imm_expr.X_add_number);
74cd071d
CF
8852 imm_expr.X_op = O_absent;
8853 s = expr_end;
8854 continue;
8855
8856 case ':': /* dsp 7-bit signed immediate in bit 19 */
8857 my_getExpression (&imm_expr, s);
8858 check_absolute_expr (ip, &imm_expr);
8859 min_range = -((OP_MASK_DSPSFT_7 + 1) >> 1);
8860 max_range = ((OP_MASK_DSPSFT_7 + 1) >> 1) - 1;
8861 if (imm_expr.X_add_number < min_range ||
8862 imm_expr.X_add_number > max_range)
8863 {
a9e24354
TS
8864 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8865 (long) min_range, (long) max_range,
8866 (long) imm_expr.X_add_number);
74cd071d 8867 }
a9e24354 8868 INSERT_OPERAND (DSPSFT_7, *ip, imm_expr.X_add_number);
74cd071d
CF
8869 imm_expr.X_op = O_absent;
8870 s = expr_end;
8871 continue;
8872
8873 case '@': /* dsp 10-bit signed immediate in bit 16 */
8874 my_getExpression (&imm_expr, s);
8875 check_absolute_expr (ip, &imm_expr);
8876 min_range = -((OP_MASK_IMM10 + 1) >> 1);
8877 max_range = ((OP_MASK_IMM10 + 1) >> 1) - 1;
8878 if (imm_expr.X_add_number < min_range ||
8879 imm_expr.X_add_number > max_range)
8880 {
a9e24354
TS
8881 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8882 (long) min_range, (long) max_range,
8883 (long) imm_expr.X_add_number);
74cd071d 8884 }
a9e24354 8885 INSERT_OPERAND (IMM10, *ip, imm_expr.X_add_number);
74cd071d
CF
8886 imm_expr.X_op = O_absent;
8887 s = expr_end;
8888 continue;
8889
a9e24354 8890 case '!': /* MT usermode flag bit. */
ef2e4d86
CF
8891 my_getExpression (&imm_expr, s);
8892 check_absolute_expr (ip, &imm_expr);
8893 if (imm_expr.X_add_number & ~OP_MASK_MT_U)
a9e24354
TS
8894 as_bad (_("MT usermode bit not 0 or 1 (%lu)"),
8895 (unsigned long) imm_expr.X_add_number);
8896 INSERT_OPERAND (MT_U, *ip, imm_expr.X_add_number);
ef2e4d86
CF
8897 imm_expr.X_op = O_absent;
8898 s = expr_end;
8899 continue;
8900
a9e24354 8901 case '$': /* MT load high flag bit. */
ef2e4d86
CF
8902 my_getExpression (&imm_expr, s);
8903 check_absolute_expr (ip, &imm_expr);
8904 if (imm_expr.X_add_number & ~OP_MASK_MT_H)
a9e24354
TS
8905 as_bad (_("MT load high bit not 0 or 1 (%lu)"),
8906 (unsigned long) imm_expr.X_add_number);
8907 INSERT_OPERAND (MT_H, *ip, imm_expr.X_add_number);
ef2e4d86
CF
8908 imm_expr.X_op = O_absent;
8909 s = expr_end;
8910 continue;
8911
8912 case '*': /* four dsp accumulators in bits 18,19 */
8913 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
8914 s[3] >= '0' && s[3] <= '3')
8915 {
8916 regno = s[3] - '0';
8917 s += 4;
a9e24354 8918 INSERT_OPERAND (MTACC_T, *ip, regno);
ef2e4d86
CF
8919 continue;
8920 }
8921 else
8922 as_bad (_("Invalid dsp/smartmips acc register"));
8923 break;
8924
8925 case '&': /* four dsp accumulators in bits 13,14 */
8926 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
8927 s[3] >= '0' && s[3] <= '3')
8928 {
8929 regno = s[3] - '0';
8930 s += 4;
a9e24354 8931 INSERT_OPERAND (MTACC_D, *ip, regno);
ef2e4d86
CF
8932 continue;
8933 }
8934 else
8935 as_bad (_("Invalid dsp/smartmips acc register"));
8936 break;
8937
252b5132 8938 case ',':
a339155f 8939 ++argnum;
252b5132
RH
8940 if (*s++ == *args)
8941 continue;
8942 s--;
8943 switch (*++args)
8944 {
8945 case 'r':
8946 case 'v':
bf12938e 8947 INSERT_OPERAND (RS, *ip, lastregno);
252b5132
RH
8948 continue;
8949
8950 case 'w':
bf12938e 8951 INSERT_OPERAND (RT, *ip, lastregno);
38487616
TS
8952 continue;
8953
252b5132 8954 case 'W':
bf12938e 8955 INSERT_OPERAND (FT, *ip, lastregno);
252b5132
RH
8956 continue;
8957
8958 case 'V':
bf12938e 8959 INSERT_OPERAND (FS, *ip, lastregno);
252b5132
RH
8960 continue;
8961 }
8962 break;
8963
8964 case '(':
8965 /* Handle optional base register.
8966 Either the base register is omitted or
bdaaa2e1 8967 we must have a left paren. */
252b5132
RH
8968 /* This is dependent on the next operand specifier
8969 is a base register specification. */
8970 assert (args[1] == 'b' || args[1] == '5'
8971 || args[1] == '-' || args[1] == '4');
8972 if (*s == '\0')
8973 return;
8974
8975 case ')': /* these must match exactly */
60b63b72
RS
8976 case '[':
8977 case ']':
252b5132
RH
8978 if (*s++ == *args)
8979 continue;
8980 break;
8981
af7ee8bf
CD
8982 case '+': /* Opcode extension character. */
8983 switch (*++args)
8984 {
9bcd4f99
TS
8985 case '1': /* UDI immediates. */
8986 case '2':
8987 case '3':
8988 case '4':
8989 {
8990 const struct mips_immed *imm = mips_immed;
8991
8992 while (imm->type && imm->type != *args)
8993 ++imm;
8994 if (! imm->type)
8995 internalError ();
8996 my_getExpression (&imm_expr, s);
8997 check_absolute_expr (ip, &imm_expr);
8998 if ((unsigned long) imm_expr.X_add_number & ~imm->mask)
8999 {
9000 as_warn (_("Illegal %s number (%lu, 0x%lx)"),
9001 imm->desc ? imm->desc : ip->insn_mo->name,
9002 (unsigned long) imm_expr.X_add_number,
9003 (unsigned long) imm_expr.X_add_number);
9004 imm_expr.X_add_number &= imm->mask;
9005 }
9006 ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number
9007 << imm->shift);
9008 imm_expr.X_op = O_absent;
9009 s = expr_end;
9010 }
9011 continue;
9012
071742cf
CD
9013 case 'A': /* ins/ext position, becomes LSB. */
9014 limlo = 0;
9015 limhi = 31;
5f74bc13
CD
9016 goto do_lsb;
9017 case 'E':
9018 limlo = 32;
9019 limhi = 63;
9020 goto do_lsb;
9021do_lsb:
071742cf
CD
9022 my_getExpression (&imm_expr, s);
9023 check_absolute_expr (ip, &imm_expr);
9024 if ((unsigned long) imm_expr.X_add_number < limlo
9025 || (unsigned long) imm_expr.X_add_number > limhi)
9026 {
9027 as_bad (_("Improper position (%lu)"),
9028 (unsigned long) imm_expr.X_add_number);
9029 imm_expr.X_add_number = limlo;
9030 }
9031 lastpos = imm_expr.X_add_number;
bf12938e 9032 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
071742cf
CD
9033 imm_expr.X_op = O_absent;
9034 s = expr_end;
9035 continue;
9036
9037 case 'B': /* ins size, becomes MSB. */
9038 limlo = 1;
9039 limhi = 32;
5f74bc13
CD
9040 goto do_msb;
9041 case 'F':
9042 limlo = 33;
9043 limhi = 64;
9044 goto do_msb;
9045do_msb:
071742cf
CD
9046 my_getExpression (&imm_expr, s);
9047 check_absolute_expr (ip, &imm_expr);
9048 /* Check for negative input so that small negative numbers
9049 will not succeed incorrectly. The checks against
9050 (pos+size) transitively check "size" itself,
9051 assuming that "pos" is reasonable. */
9052 if ((long) imm_expr.X_add_number < 0
9053 || ((unsigned long) imm_expr.X_add_number
9054 + lastpos) < limlo
9055 || ((unsigned long) imm_expr.X_add_number
9056 + lastpos) > limhi)
9057 {
9058 as_bad (_("Improper insert size (%lu, position %lu)"),
9059 (unsigned long) imm_expr.X_add_number,
9060 (unsigned long) lastpos);
9061 imm_expr.X_add_number = limlo - lastpos;
9062 }
bf12938e
RS
9063 INSERT_OPERAND (INSMSB, *ip,
9064 lastpos + imm_expr.X_add_number - 1);
071742cf
CD
9065 imm_expr.X_op = O_absent;
9066 s = expr_end;
9067 continue;
9068
9069 case 'C': /* ext size, becomes MSBD. */
9070 limlo = 1;
9071 limhi = 32;
5f74bc13
CD
9072 goto do_msbd;
9073 case 'G':
9074 limlo = 33;
9075 limhi = 64;
9076 goto do_msbd;
9077 case 'H':
9078 limlo = 33;
9079 limhi = 64;
9080 goto do_msbd;
9081do_msbd:
071742cf
CD
9082 my_getExpression (&imm_expr, s);
9083 check_absolute_expr (ip, &imm_expr);
9084 /* Check for negative input so that small negative numbers
9085 will not succeed incorrectly. The checks against
9086 (pos+size) transitively check "size" itself,
9087 assuming that "pos" is reasonable. */
9088 if ((long) imm_expr.X_add_number < 0
9089 || ((unsigned long) imm_expr.X_add_number
9090 + lastpos) < limlo
9091 || ((unsigned long) imm_expr.X_add_number
9092 + lastpos) > limhi)
9093 {
9094 as_bad (_("Improper extract size (%lu, position %lu)"),
9095 (unsigned long) imm_expr.X_add_number,
9096 (unsigned long) lastpos);
9097 imm_expr.X_add_number = limlo - lastpos;
9098 }
bf12938e 9099 INSERT_OPERAND (EXTMSBD, *ip, imm_expr.X_add_number - 1);
071742cf
CD
9100 imm_expr.X_op = O_absent;
9101 s = expr_end;
9102 continue;
af7ee8bf 9103
bbcc0807
CD
9104 case 'D':
9105 /* +D is for disassembly only; never match. */
9106 break;
9107
5f74bc13
CD
9108 case 'I':
9109 /* "+I" is like "I", except that imm2_expr is used. */
9110 my_getExpression (&imm2_expr, s);
9111 if (imm2_expr.X_op != O_big
9112 && imm2_expr.X_op != O_constant)
9113 insn_error = _("absolute expression required");
9ee2a2d4
MR
9114 if (HAVE_32BIT_GPRS)
9115 normalize_constant_expr (&imm2_expr);
5f74bc13
CD
9116 s = expr_end;
9117 continue;
9118
707bfff6 9119 case 'T': /* Coprocessor register. */
ef2e4d86
CF
9120 /* +T is for disassembly only; never match. */
9121 break;
9122
707bfff6 9123 case 't': /* Coprocessor register number. */
ef2e4d86
CF
9124 if (s[0] == '$' && ISDIGIT (s[1]))
9125 {
9126 ++s;
9127 regno = 0;
9128 do
9129 {
9130 regno *= 10;
9131 regno += *s - '0';
9132 ++s;
9133 }
9134 while (ISDIGIT (*s));
9135 if (regno > 31)
9136 as_bad (_("Invalid register number (%d)"), regno);
9137 else
9138 {
a9e24354 9139 INSERT_OPERAND (RT, *ip, regno);
ef2e4d86
CF
9140 continue;
9141 }
9142 }
9143 else
9144 as_bad (_("Invalid coprocessor 0 register number"));
9145 break;
9146
bb35fb24
NC
9147 case 'x':
9148 /* bbit[01] and bbit[01]32 bit index. Give error if index
9149 is not in the valid range. */
9150 my_getExpression (&imm_expr, s);
9151 check_absolute_expr (ip, &imm_expr);
9152 if ((unsigned) imm_expr.X_add_number > 31)
9153 {
9154 as_bad (_("Improper bit index (%lu)"),
9155 (unsigned long) imm_expr.X_add_number);
9156 imm_expr.X_add_number = 0;
9157 }
9158 INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number);
9159 imm_expr.X_op = O_absent;
9160 s = expr_end;
9161 continue;
9162
9163 case 'X':
9164 /* bbit[01] bit index when bbit is used but we generate
9165 bbit[01]32 because the index is over 32. Move to the
9166 next candidate if index is not in the valid range. */
9167 my_getExpression (&imm_expr, s);
9168 check_absolute_expr (ip, &imm_expr);
9169 if ((unsigned) imm_expr.X_add_number < 32
9170 || (unsigned) imm_expr.X_add_number > 63)
9171 break;
9172 INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number - 32);
9173 imm_expr.X_op = O_absent;
9174 s = expr_end;
9175 continue;
9176
9177 case 'p':
9178 /* cins, cins32, exts and exts32 position field. Give error
9179 if it's not in the valid range. */
9180 my_getExpression (&imm_expr, s);
9181 check_absolute_expr (ip, &imm_expr);
9182 if ((unsigned) imm_expr.X_add_number > 31)
9183 {
9184 as_bad (_("Improper position (%lu)"),
9185 (unsigned long) imm_expr.X_add_number);
9186 imm_expr.X_add_number = 0;
9187 }
9188 /* Make the pos explicit to simplify +S. */
9189 lastpos = imm_expr.X_add_number + 32;
9190 INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number);
9191 imm_expr.X_op = O_absent;
9192 s = expr_end;
9193 continue;
9194
9195 case 'P':
9196 /* cins, cins32, exts and exts32 position field. Move to
9197 the next candidate if it's not in the valid range. */
9198 my_getExpression (&imm_expr, s);
9199 check_absolute_expr (ip, &imm_expr);
9200 if ((unsigned) imm_expr.X_add_number < 32
9201 || (unsigned) imm_expr.X_add_number > 63)
9202 break;
9203 lastpos = imm_expr.X_add_number;
9204 INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number - 32);
9205 imm_expr.X_op = O_absent;
9206 s = expr_end;
9207 continue;
9208
9209 case 's':
9210 /* cins and exts length-minus-one field. */
9211 my_getExpression (&imm_expr, s);
9212 check_absolute_expr (ip, &imm_expr);
9213 if ((unsigned long) imm_expr.X_add_number > 31)
9214 {
9215 as_bad (_("Improper size (%lu)"),
9216 (unsigned long) imm_expr.X_add_number);
9217 imm_expr.X_add_number = 0;
9218 }
9219 INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number);
9220 imm_expr.X_op = O_absent;
9221 s = expr_end;
9222 continue;
9223
9224 case 'S':
9225 /* cins32/exts32 and cins/exts aliasing cint32/exts32
9226 length-minus-one field. */
9227 my_getExpression (&imm_expr, s);
9228 check_absolute_expr (ip, &imm_expr);
9229 if ((long) imm_expr.X_add_number < 0
9230 || (unsigned long) imm_expr.X_add_number + lastpos > 63)
9231 {
9232 as_bad (_("Improper size (%lu)"),
9233 (unsigned long) imm_expr.X_add_number);
9234 imm_expr.X_add_number = 0;
9235 }
9236 INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number);
9237 imm_expr.X_op = O_absent;
9238 s = expr_end;
9239 continue;
9240
dd3cbb7e
NC
9241 case 'Q':
9242 /* seqi/snei immediate field. */
9243 my_getExpression (&imm_expr, s);
9244 check_absolute_expr (ip, &imm_expr);
9245 if ((long) imm_expr.X_add_number < -512
9246 || (long) imm_expr.X_add_number >= 512)
9247 {
9248 as_bad (_("Improper immediate (%ld)"),
9249 (long) imm_expr.X_add_number);
9250 imm_expr.X_add_number = 0;
9251 }
9252 INSERT_OPERAND (SEQI, *ip, imm_expr.X_add_number);
9253 imm_expr.X_op = O_absent;
9254 s = expr_end;
9255 continue;
9256
af7ee8bf
CD
9257 default:
9258 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
9259 *args, insn->name, insn->args);
9260 /* Further processing is fruitless. */
9261 return;
9262 }
9263 break;
9264
252b5132
RH
9265 case '<': /* must be at least one digit */
9266 /*
9267 * According to the manual, if the shift amount is greater
b6ff326e
KH
9268 * than 31 or less than 0, then the shift amount should be
9269 * mod 32. In reality the mips assembler issues an error.
252b5132
RH
9270 * We issue a warning and mask out all but the low 5 bits.
9271 */
9272 my_getExpression (&imm_expr, s);
9273 check_absolute_expr (ip, &imm_expr);
9274 if ((unsigned long) imm_expr.X_add_number > 31)
bf12938e
RS
9275 as_warn (_("Improper shift amount (%lu)"),
9276 (unsigned long) imm_expr.X_add_number);
9277 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
252b5132
RH
9278 imm_expr.X_op = O_absent;
9279 s = expr_end;
9280 continue;
9281
9282 case '>': /* shift amount minus 32 */
9283 my_getExpression (&imm_expr, s);
9284 check_absolute_expr (ip, &imm_expr);
9285 if ((unsigned long) imm_expr.X_add_number < 32
9286 || (unsigned long) imm_expr.X_add_number > 63)
9287 break;
bf12938e 9288 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number - 32);
252b5132
RH
9289 imm_expr.X_op = O_absent;
9290 s = expr_end;
9291 continue;
9292
252b5132
RH
9293 case 'k': /* cache code */
9294 case 'h': /* prefx code */
620edafd 9295 case '1': /* sync type */
252b5132
RH
9296 my_getExpression (&imm_expr, s);
9297 check_absolute_expr (ip, &imm_expr);
9298 if ((unsigned long) imm_expr.X_add_number > 31)
bf12938e
RS
9299 as_warn (_("Invalid value for `%s' (%lu)"),
9300 ip->insn_mo->name,
9301 (unsigned long) imm_expr.X_add_number);
252b5132 9302 if (*args == 'k')
bf12938e 9303 INSERT_OPERAND (CACHE, *ip, imm_expr.X_add_number);
620edafd 9304 else if (*args == 'h')
bf12938e 9305 INSERT_OPERAND (PREFX, *ip, imm_expr.X_add_number);
620edafd
CF
9306 else
9307 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
252b5132
RH
9308 imm_expr.X_op = O_absent;
9309 s = expr_end;
9310 continue;
9311
9312 case 'c': /* break code */
9313 my_getExpression (&imm_expr, s);
9314 check_absolute_expr (ip, &imm_expr);
a9e24354
TS
9315 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE)
9316 as_warn (_("Code for %s not in range 0..1023 (%lu)"),
9317 ip->insn_mo->name,
bf12938e
RS
9318 (unsigned long) imm_expr.X_add_number);
9319 INSERT_OPERAND (CODE, *ip, imm_expr.X_add_number);
252b5132
RH
9320 imm_expr.X_op = O_absent;
9321 s = expr_end;
9322 continue;
9323
9324 case 'q': /* lower break code */
9325 my_getExpression (&imm_expr, s);
9326 check_absolute_expr (ip, &imm_expr);
a9e24354
TS
9327 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE2)
9328 as_warn (_("Lower code for %s not in range 0..1023 (%lu)"),
9329 ip->insn_mo->name,
bf12938e
RS
9330 (unsigned long) imm_expr.X_add_number);
9331 INSERT_OPERAND (CODE2, *ip, imm_expr.X_add_number);
252b5132
RH
9332 imm_expr.X_op = O_absent;
9333 s = expr_end;
9334 continue;
9335
4372b673 9336 case 'B': /* 20-bit syscall/break code. */
156c2f8b 9337 my_getExpression (&imm_expr, s);
156c2f8b 9338 check_absolute_expr (ip, &imm_expr);
793b27f4 9339 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20)
a9e24354
TS
9340 as_warn (_("Code for %s not in range 0..1048575 (%lu)"),
9341 ip->insn_mo->name,
793b27f4 9342 (unsigned long) imm_expr.X_add_number);
bf12938e 9343 INSERT_OPERAND (CODE20, *ip, imm_expr.X_add_number);
252b5132
RH
9344 imm_expr.X_op = O_absent;
9345 s = expr_end;
9346 continue;
9347
98d3f06f 9348 case 'C': /* Coprocessor code */
beae10d5 9349 my_getExpression (&imm_expr, s);
252b5132 9350 check_absolute_expr (ip, &imm_expr);
a9e24354 9351 if ((unsigned long) imm_expr.X_add_number > OP_MASK_COPZ)
252b5132 9352 {
793b27f4
TS
9353 as_warn (_("Coproccesor code > 25 bits (%lu)"),
9354 (unsigned long) imm_expr.X_add_number);
a9e24354 9355 imm_expr.X_add_number &= OP_MASK_COPZ;
252b5132 9356 }
a9e24354 9357 INSERT_OPERAND (COPZ, *ip, imm_expr.X_add_number);
beae10d5
KH
9358 imm_expr.X_op = O_absent;
9359 s = expr_end;
9360 continue;
252b5132 9361
4372b673
NC
9362 case 'J': /* 19-bit wait code. */
9363 my_getExpression (&imm_expr, s);
9364 check_absolute_expr (ip, &imm_expr);
793b27f4 9365 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
a9e24354
TS
9366 {
9367 as_warn (_("Illegal 19-bit code (%lu)"),
9368 (unsigned long) imm_expr.X_add_number);
9369 imm_expr.X_add_number &= OP_MASK_CODE19;
9370 }
bf12938e 9371 INSERT_OPERAND (CODE19, *ip, imm_expr.X_add_number);
4372b673
NC
9372 imm_expr.X_op = O_absent;
9373 s = expr_end;
9374 continue;
9375
707bfff6 9376 case 'P': /* Performance register. */
beae10d5 9377 my_getExpression (&imm_expr, s);
252b5132 9378 check_absolute_expr (ip, &imm_expr);
beae10d5 9379 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
bf12938e
RS
9380 as_warn (_("Invalid performance register (%lu)"),
9381 (unsigned long) imm_expr.X_add_number);
9382 INSERT_OPERAND (PERFREG, *ip, imm_expr.X_add_number);
beae10d5
KH
9383 imm_expr.X_op = O_absent;
9384 s = expr_end;
9385 continue;
252b5132 9386
707bfff6
TS
9387 case 'G': /* Coprocessor destination register. */
9388 if (((ip->insn_opcode >> OP_SH_OP) & OP_MASK_OP) == OP_OP_COP0)
9389 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_CP0, &regno);
9390 else
9391 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
a9e24354 9392 INSERT_OPERAND (RD, *ip, regno);
707bfff6
TS
9393 if (ok)
9394 {
9395 lastregno = regno;
9396 continue;
9397 }
9398 else
9399 break;
9400
252b5132
RH
9401 case 'b': /* base register */
9402 case 'd': /* destination register */
9403 case 's': /* source register */
9404 case 't': /* target register */
9405 case 'r': /* both target and source */
9406 case 'v': /* both dest and source */
9407 case 'w': /* both dest and target */
9408 case 'E': /* coprocessor target register */
af7ee8bf 9409 case 'K': /* 'rdhwr' destination register */
252b5132
RH
9410 case 'x': /* ignore register name */
9411 case 'z': /* must be zero register */
4372b673 9412 case 'U': /* destination register (clo/clz). */
ef2e4d86 9413 case 'g': /* coprocessor destination register */
707bfff6
TS
9414 s_reset = s;
9415 if (*args == 'E' || *args == 'K')
9416 ok = reg_lookup (&s, RTYPE_NUM, &regno);
9417 else
9418 {
9419 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
741fe287
MR
9420 if (regno == AT && mips_opts.at)
9421 {
9422 if (mips_opts.at == ATREG)
9423 as_warn (_("used $at without \".set noat\""));
9424 else
9425 as_warn (_("used $%u with \".set at=$%u\""),
9426 regno, mips_opts.at);
9427 }
707bfff6
TS
9428 }
9429 if (ok)
252b5132 9430 {
252b5132
RH
9431 c = *args;
9432 if (*s == ' ')
f9419b05 9433 ++s;
252b5132
RH
9434 if (args[1] != *s)
9435 {
9436 if (c == 'r' || c == 'v' || c == 'w')
9437 {
9438 regno = lastregno;
9439 s = s_reset;
f9419b05 9440 ++args;
252b5132
RH
9441 }
9442 }
9443 /* 'z' only matches $0. */
9444 if (c == 'z' && regno != 0)
9445 break;
9446
24864476 9447 if (c == 's' && !strncmp (ip->insn_mo->name, "jalr", 4))
e7c604dd
CM
9448 {
9449 if (regno == lastregno)
9450 {
24864476 9451 insn_error = _("source and destination must be different");
e7c604dd
CM
9452 continue;
9453 }
24864476 9454 if (regno == 31 && lastregno == 0xffffffff)
e7c604dd
CM
9455 {
9456 insn_error = _("a destination register must be supplied");
9457 continue;
9458 }
9459 }
bdaaa2e1
KH
9460 /* Now that we have assembled one operand, we use the args string
9461 * to figure out where it goes in the instruction. */
252b5132
RH
9462 switch (c)
9463 {
9464 case 'r':
9465 case 's':
9466 case 'v':
9467 case 'b':
bf12938e 9468 INSERT_OPERAND (RS, *ip, regno);
252b5132
RH
9469 break;
9470 case 'd':
9471 case 'G':
af7ee8bf 9472 case 'K':
ef2e4d86 9473 case 'g':
bf12938e 9474 INSERT_OPERAND (RD, *ip, regno);
252b5132 9475 break;
4372b673 9476 case 'U':
bf12938e
RS
9477 INSERT_OPERAND (RD, *ip, regno);
9478 INSERT_OPERAND (RT, *ip, regno);
4372b673 9479 break;
252b5132
RH
9480 case 'w':
9481 case 't':
9482 case 'E':
bf12938e 9483 INSERT_OPERAND (RT, *ip, regno);
252b5132
RH
9484 break;
9485 case 'x':
9486 /* This case exists because on the r3000 trunc
9487 expands into a macro which requires a gp
9488 register. On the r6000 or r4000 it is
9489 assembled into a single instruction which
9490 ignores the register. Thus the insn version
9491 is MIPS_ISA2 and uses 'x', and the macro
9492 version is MIPS_ISA1 and uses 't'. */
9493 break;
9494 case 'z':
9495 /* This case is for the div instruction, which
9496 acts differently if the destination argument
9497 is $0. This only matches $0, and is checked
9498 outside the switch. */
9499 break;
9500 case 'D':
9501 /* Itbl operand; not yet implemented. FIXME ?? */
9502 break;
9503 /* What about all other operands like 'i', which
9504 can be specified in the opcode table? */
9505 }
9506 lastregno = regno;
9507 continue;
9508 }
252b5132
RH
9509 switch (*args++)
9510 {
9511 case 'r':
9512 case 'v':
bf12938e 9513 INSERT_OPERAND (RS, *ip, lastregno);
252b5132
RH
9514 continue;
9515 case 'w':
bf12938e 9516 INSERT_OPERAND (RT, *ip, lastregno);
252b5132
RH
9517 continue;
9518 }
9519 break;
9520
deec1734
CD
9521 case 'O': /* MDMX alignment immediate constant. */
9522 my_getExpression (&imm_expr, s);
9523 check_absolute_expr (ip, &imm_expr);
9524 if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
bf12938e
RS
9525 as_warn ("Improper align amount (%ld), using low bits",
9526 (long) imm_expr.X_add_number);
9527 INSERT_OPERAND (ALN, *ip, imm_expr.X_add_number);
deec1734
CD
9528 imm_expr.X_op = O_absent;
9529 s = expr_end;
9530 continue;
9531
9532 case 'Q': /* MDMX vector, element sel, or const. */
9533 if (s[0] != '$')
9534 {
9535 /* MDMX Immediate. */
9536 my_getExpression (&imm_expr, s);
9537 check_absolute_expr (ip, &imm_expr);
9538 if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
bf12938e
RS
9539 as_warn (_("Invalid MDMX Immediate (%ld)"),
9540 (long) imm_expr.X_add_number);
9541 INSERT_OPERAND (FT, *ip, imm_expr.X_add_number);
deec1734
CD
9542 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
9543 ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
9544 else
9545 ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
deec1734
CD
9546 imm_expr.X_op = O_absent;
9547 s = expr_end;
9548 continue;
9549 }
9550 /* Not MDMX Immediate. Fall through. */
9551 case 'X': /* MDMX destination register. */
9552 case 'Y': /* MDMX source register. */
9553 case 'Z': /* MDMX target register. */
9554 is_mdmx = 1;
252b5132
RH
9555 case 'D': /* floating point destination register */
9556 case 'S': /* floating point source register */
9557 case 'T': /* floating point target register */
9558 case 'R': /* floating point source register */
9559 case 'V':
9560 case 'W':
707bfff6
TS
9561 rtype = RTYPE_FPU;
9562 if (is_mdmx
9563 || (mips_opts.ase_mdmx
9564 && (ip->insn_mo->pinfo & FP_D)
9565 && (ip->insn_mo->pinfo & (INSN_COPROC_MOVE_DELAY
9566 | INSN_COPROC_MEMORY_DELAY
9567 | INSN_LOAD_COPROC_DELAY
9568 | INSN_LOAD_MEMORY_DELAY
9569 | INSN_STORE_MEMORY))))
9570 rtype |= RTYPE_VEC;
252b5132 9571 s_reset = s;
707bfff6 9572 if (reg_lookup (&s, rtype, &regno))
252b5132 9573 {
252b5132 9574 if ((regno & 1) != 0
ca4e0257 9575 && HAVE_32BIT_FPRS
7455baf8 9576 && ! mips_oddfpreg_ok (ip->insn_mo, argnum))
252b5132
RH
9577 as_warn (_("Float register should be even, was %d"),
9578 regno);
9579
9580 c = *args;
9581 if (*s == ' ')
f9419b05 9582 ++s;
252b5132
RH
9583 if (args[1] != *s)
9584 {
9585 if (c == 'V' || c == 'W')
9586 {
9587 regno = lastregno;
9588 s = s_reset;
f9419b05 9589 ++args;
252b5132
RH
9590 }
9591 }
9592 switch (c)
9593 {
9594 case 'D':
deec1734 9595 case 'X':
bf12938e 9596 INSERT_OPERAND (FD, *ip, regno);
252b5132
RH
9597 break;
9598 case 'V':
9599 case 'S':
deec1734 9600 case 'Y':
bf12938e 9601 INSERT_OPERAND (FS, *ip, regno);
252b5132 9602 break;
deec1734
CD
9603 case 'Q':
9604 /* This is like 'Z', but also needs to fix the MDMX
9605 vector/scalar select bits. Note that the
9606 scalar immediate case is handled above. */
9607 if (*s == '[')
9608 {
9609 int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
9610 int max_el = (is_qh ? 3 : 7);
9611 s++;
9612 my_getExpression(&imm_expr, s);
9613 check_absolute_expr (ip, &imm_expr);
9614 s = expr_end;
9615 if (imm_expr.X_add_number > max_el)
9616 as_bad(_("Bad element selector %ld"),
9617 (long) imm_expr.X_add_number);
9618 imm_expr.X_add_number &= max_el;
9619 ip->insn_opcode |= (imm_expr.X_add_number
9620 << (OP_SH_VSEL +
9621 (is_qh ? 2 : 1)));
01a3f561 9622 imm_expr.X_op = O_absent;
deec1734
CD
9623 if (*s != ']')
9624 as_warn(_("Expecting ']' found '%s'"), s);
9625 else
9626 s++;
9627 }
9628 else
9629 {
9630 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
9631 ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
9632 << OP_SH_VSEL);
9633 else
9634 ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
9635 OP_SH_VSEL);
9636 }
9637 /* Fall through */
252b5132
RH
9638 case 'W':
9639 case 'T':
deec1734 9640 case 'Z':
bf12938e 9641 INSERT_OPERAND (FT, *ip, regno);
252b5132
RH
9642 break;
9643 case 'R':
bf12938e 9644 INSERT_OPERAND (FR, *ip, regno);
252b5132
RH
9645 break;
9646 }
9647 lastregno = regno;
9648 continue;
9649 }
9650
252b5132
RH
9651 switch (*args++)
9652 {
9653 case 'V':
bf12938e 9654 INSERT_OPERAND (FS, *ip, lastregno);
252b5132
RH
9655 continue;
9656 case 'W':
bf12938e 9657 INSERT_OPERAND (FT, *ip, lastregno);
252b5132
RH
9658 continue;
9659 }
9660 break;
9661
9662 case 'I':
9663 my_getExpression (&imm_expr, s);
9664 if (imm_expr.X_op != O_big
9665 && imm_expr.X_op != O_constant)
9666 insn_error = _("absolute expression required");
9ee2a2d4
MR
9667 if (HAVE_32BIT_GPRS)
9668 normalize_constant_expr (&imm_expr);
252b5132
RH
9669 s = expr_end;
9670 continue;
9671
9672 case 'A':
9673 my_getExpression (&offset_expr, s);
2051e8c4 9674 normalize_address_expr (&offset_expr);
f6688943 9675 *imm_reloc = BFD_RELOC_32;
252b5132
RH
9676 s = expr_end;
9677 continue;
9678
9679 case 'F':
9680 case 'L':
9681 case 'f':
9682 case 'l':
9683 {
9684 int f64;
ca4e0257 9685 int using_gprs;
252b5132
RH
9686 char *save_in;
9687 char *err;
9688 unsigned char temp[8];
9689 int len;
9690 unsigned int length;
9691 segT seg;
9692 subsegT subseg;
9693 char *p;
9694
9695 /* These only appear as the last operand in an
9696 instruction, and every instruction that accepts
9697 them in any variant accepts them in all variants.
9698 This means we don't have to worry about backing out
9699 any changes if the instruction does not match.
9700
9701 The difference between them is the size of the
9702 floating point constant and where it goes. For 'F'
9703 and 'L' the constant is 64 bits; for 'f' and 'l' it
9704 is 32 bits. Where the constant is placed is based
9705 on how the MIPS assembler does things:
9706 F -- .rdata
9707 L -- .lit8
9708 f -- immediate value
9709 l -- .lit4
9710
9711 The .lit4 and .lit8 sections are only used if
9712 permitted by the -G argument.
9713
ca4e0257
RS
9714 The code below needs to know whether the target register
9715 is 32 or 64 bits wide. It relies on the fact 'f' and
9716 'F' are used with GPR-based instructions and 'l' and
9717 'L' are used with FPR-based instructions. */
252b5132
RH
9718
9719 f64 = *args == 'F' || *args == 'L';
ca4e0257 9720 using_gprs = *args == 'F' || *args == 'f';
252b5132
RH
9721
9722 save_in = input_line_pointer;
9723 input_line_pointer = s;
9724 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
9725 length = len;
9726 s = input_line_pointer;
9727 input_line_pointer = save_in;
9728 if (err != NULL && *err != '\0')
9729 {
9730 as_bad (_("Bad floating point constant: %s"), err);
9731 memset (temp, '\0', sizeof temp);
9732 length = f64 ? 8 : 4;
9733 }
9734
156c2f8b 9735 assert (length == (unsigned) (f64 ? 8 : 4));
252b5132
RH
9736
9737 if (*args == 'f'
9738 || (*args == 'l'
3e722fb5 9739 && (g_switch_value < 4
252b5132
RH
9740 || (temp[0] == 0 && temp[1] == 0)
9741 || (temp[2] == 0 && temp[3] == 0))))
9742 {
9743 imm_expr.X_op = O_constant;
9744 if (! target_big_endian)
9745 imm_expr.X_add_number = bfd_getl32 (temp);
9746 else
9747 imm_expr.X_add_number = bfd_getb32 (temp);
9748 }
9749 else if (length > 4
119d663a 9750 && ! mips_disable_float_construction
ca4e0257
RS
9751 /* Constants can only be constructed in GPRs and
9752 copied to FPRs if the GPRs are at least as wide
9753 as the FPRs. Force the constant into memory if
9754 we are using 64-bit FPRs but the GPRs are only
9755 32 bits wide. */
9756 && (using_gprs
9757 || ! (HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
252b5132
RH
9758 && ((temp[0] == 0 && temp[1] == 0)
9759 || (temp[2] == 0 && temp[3] == 0))
9760 && ((temp[4] == 0 && temp[5] == 0)
9761 || (temp[6] == 0 && temp[7] == 0)))
9762 {
ca4e0257
RS
9763 /* The value is simple enough to load with a couple of
9764 instructions. If using 32-bit registers, set
9765 imm_expr to the high order 32 bits and offset_expr to
9766 the low order 32 bits. Otherwise, set imm_expr to
9767 the entire 64 bit constant. */
9768 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
252b5132
RH
9769 {
9770 imm_expr.X_op = O_constant;
9771 offset_expr.X_op = O_constant;
9772 if (! target_big_endian)
9773 {
9774 imm_expr.X_add_number = bfd_getl32 (temp + 4);
9775 offset_expr.X_add_number = bfd_getl32 (temp);
9776 }
9777 else
9778 {
9779 imm_expr.X_add_number = bfd_getb32 (temp);
9780 offset_expr.X_add_number = bfd_getb32 (temp + 4);
9781 }
9782 if (offset_expr.X_add_number == 0)
9783 offset_expr.X_op = O_absent;
9784 }
9785 else if (sizeof (imm_expr.X_add_number) > 4)
9786 {
9787 imm_expr.X_op = O_constant;
9788 if (! target_big_endian)
9789 imm_expr.X_add_number = bfd_getl64 (temp);
9790 else
9791 imm_expr.X_add_number = bfd_getb64 (temp);
9792 }
9793 else
9794 {
9795 imm_expr.X_op = O_big;
9796 imm_expr.X_add_number = 4;
9797 if (! target_big_endian)
9798 {
9799 generic_bignum[0] = bfd_getl16 (temp);
9800 generic_bignum[1] = bfd_getl16 (temp + 2);
9801 generic_bignum[2] = bfd_getl16 (temp + 4);
9802 generic_bignum[3] = bfd_getl16 (temp + 6);
9803 }
9804 else
9805 {
9806 generic_bignum[0] = bfd_getb16 (temp + 6);
9807 generic_bignum[1] = bfd_getb16 (temp + 4);
9808 generic_bignum[2] = bfd_getb16 (temp + 2);
9809 generic_bignum[3] = bfd_getb16 (temp);
9810 }
9811 }
9812 }
9813 else
9814 {
9815 const char *newname;
9816 segT new_seg;
9817
9818 /* Switch to the right section. */
9819 seg = now_seg;
9820 subseg = now_subseg;
9821 switch (*args)
9822 {
9823 default: /* unused default case avoids warnings. */
9824 case 'L':
9825 newname = RDATA_SECTION_NAME;
3e722fb5 9826 if (g_switch_value >= 8)
252b5132
RH
9827 newname = ".lit8";
9828 break;
9829 case 'F':
3e722fb5 9830 newname = RDATA_SECTION_NAME;
252b5132
RH
9831 break;
9832 case 'l':
4d0d148d 9833 assert (g_switch_value >= 4);
252b5132
RH
9834 newname = ".lit4";
9835 break;
9836 }
9837 new_seg = subseg_new (newname, (subsegT) 0);
f43abd2b 9838 if (IS_ELF)
252b5132
RH
9839 bfd_set_section_flags (stdoutput, new_seg,
9840 (SEC_ALLOC
9841 | SEC_LOAD
9842 | SEC_READONLY
9843 | SEC_DATA));
9844 frag_align (*args == 'l' ? 2 : 3, 0, 0);
c41e87e3 9845 if (IS_ELF && strncmp (TARGET_OS, "elf", 3) != 0)
252b5132
RH
9846 record_alignment (new_seg, 4);
9847 else
9848 record_alignment (new_seg, *args == 'l' ? 2 : 3);
9849 if (seg == now_seg)
9850 as_bad (_("Can't use floating point insn in this section"));
9851
9852 /* Set the argument to the current address in the
9853 section. */
9854 offset_expr.X_op = O_symbol;
9855 offset_expr.X_add_symbol =
9856 symbol_new ("L0\001", now_seg,
9857 (valueT) frag_now_fix (), frag_now);
9858 offset_expr.X_add_number = 0;
9859
9860 /* Put the floating point number into the section. */
9861 p = frag_more ((int) length);
9862 memcpy (p, temp, length);
9863
9864 /* Switch back to the original section. */
9865 subseg_set (seg, subseg);
9866 }
9867 }
9868 continue;
9869
9870 case 'i': /* 16 bit unsigned immediate */
9871 case 'j': /* 16 bit signed immediate */
f6688943 9872 *imm_reloc = BFD_RELOC_LO16;
5e0116d5 9873 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
252b5132
RH
9874 {
9875 int more;
5e0116d5
RS
9876 offsetT minval, maxval;
9877
9878 more = (insn + 1 < &mips_opcodes[NUMOPCODES]
9879 && strcmp (insn->name, insn[1].name) == 0);
9880
9881 /* If the expression was written as an unsigned number,
9882 only treat it as signed if there are no more
9883 alternatives. */
9884 if (more
9885 && *args == 'j'
9886 && sizeof (imm_expr.X_add_number) <= 4
9887 && imm_expr.X_op == O_constant
9888 && imm_expr.X_add_number < 0
9889 && imm_expr.X_unsigned
9890 && HAVE_64BIT_GPRS)
9891 break;
9892
9893 /* For compatibility with older assemblers, we accept
9894 0x8000-0xffff as signed 16-bit numbers when only
9895 signed numbers are allowed. */
9896 if (*args == 'i')
9897 minval = 0, maxval = 0xffff;
9898 else if (more)
9899 minval = -0x8000, maxval = 0x7fff;
252b5132 9900 else
5e0116d5
RS
9901 minval = -0x8000, maxval = 0xffff;
9902
9903 if (imm_expr.X_op != O_constant
9904 || imm_expr.X_add_number < minval
9905 || imm_expr.X_add_number > maxval)
252b5132
RH
9906 {
9907 if (more)
9908 break;
2ae7e77b
AH
9909 if (imm_expr.X_op == O_constant
9910 || imm_expr.X_op == O_big)
5e0116d5 9911 as_bad (_("expression out of range"));
252b5132
RH
9912 }
9913 }
9914 s = expr_end;
9915 continue;
9916
9917 case 'o': /* 16 bit offset */
5e0116d5
RS
9918 /* Check whether there is only a single bracketed expression
9919 left. If so, it must be the base register and the
9920 constant must be zero. */
9921 if (*s == '(' && strchr (s + 1, '(') == 0)
9922 {
9923 offset_expr.X_op = O_constant;
9924 offset_expr.X_add_number = 0;
9925 continue;
9926 }
252b5132
RH
9927
9928 /* If this value won't fit into a 16 bit offset, then go
9929 find a macro that will generate the 32 bit offset
afdbd6d0 9930 code pattern. */
5e0116d5 9931 if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
252b5132
RH
9932 && (offset_expr.X_op != O_constant
9933 || offset_expr.X_add_number >= 0x8000
afdbd6d0 9934 || offset_expr.X_add_number < -0x8000))
252b5132
RH
9935 break;
9936
252b5132
RH
9937 s = expr_end;
9938 continue;
9939
9940 case 'p': /* pc relative offset */
0b25d3e6 9941 *offset_reloc = BFD_RELOC_16_PCREL_S2;
252b5132
RH
9942 my_getExpression (&offset_expr, s);
9943 s = expr_end;
9944 continue;
9945
9946 case 'u': /* upper 16 bits */
5e0116d5
RS
9947 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0
9948 && imm_expr.X_op == O_constant
9949 && (imm_expr.X_add_number < 0
9950 || imm_expr.X_add_number >= 0x10000))
252b5132
RH
9951 as_bad (_("lui expression not in range 0..65535"));
9952 s = expr_end;
9953 continue;
9954
9955 case 'a': /* 26 bit address */
9956 my_getExpression (&offset_expr, s);
9957 s = expr_end;
f6688943 9958 *offset_reloc = BFD_RELOC_MIPS_JMP;
252b5132
RH
9959 continue;
9960
9961 case 'N': /* 3 bit branch condition code */
9962 case 'M': /* 3 bit compare condition code */
707bfff6
TS
9963 rtype = RTYPE_CCC;
9964 if (ip->insn_mo->pinfo & (FP_D| FP_S))
9965 rtype |= RTYPE_FCC;
9966 if (!reg_lookup (&s, rtype, &regno))
252b5132 9967 break;
30c378fd
CD
9968 if ((strcmp(str + strlen(str) - 3, ".ps") == 0
9969 || strcmp(str + strlen(str) - 5, "any2f") == 0
9970 || strcmp(str + strlen(str) - 5, "any2t") == 0)
9971 && (regno & 1) != 0)
9972 as_warn(_("Condition code register should be even for %s, was %d"),
9973 str, regno);
9974 if ((strcmp(str + strlen(str) - 5, "any4f") == 0
9975 || strcmp(str + strlen(str) - 5, "any4t") == 0)
9976 && (regno & 3) != 0)
9977 as_warn(_("Condition code register should be 0 or 4 for %s, was %d"),
9978 str, regno);
252b5132 9979 if (*args == 'N')
bf12938e 9980 INSERT_OPERAND (BCC, *ip, regno);
252b5132 9981 else
bf12938e 9982 INSERT_OPERAND (CCC, *ip, regno);
beae10d5 9983 continue;
252b5132 9984
156c2f8b
NC
9985 case 'H':
9986 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
9987 s += 2;
3882b010 9988 if (ISDIGIT (*s))
156c2f8b
NC
9989 {
9990 c = 0;
9991 do
9992 {
9993 c *= 10;
9994 c += *s - '0';
9995 ++s;
9996 }
3882b010 9997 while (ISDIGIT (*s));
156c2f8b
NC
9998 }
9999 else
10000 c = 8; /* Invalid sel value. */
10001
10002 if (c > 7)
10003 as_bad (_("invalid coprocessor sub-selection value (0-7)"));
10004 ip->insn_opcode |= c;
10005 continue;
10006
60b63b72
RS
10007 case 'e':
10008 /* Must be at least one digit. */
10009 my_getExpression (&imm_expr, s);
10010 check_absolute_expr (ip, &imm_expr);
10011
10012 if ((unsigned long) imm_expr.X_add_number
10013 > (unsigned long) OP_MASK_VECBYTE)
10014 {
10015 as_bad (_("bad byte vector index (%ld)"),
10016 (long) imm_expr.X_add_number);
10017 imm_expr.X_add_number = 0;
10018 }
10019
bf12938e 10020 INSERT_OPERAND (VECBYTE, *ip, imm_expr.X_add_number);
60b63b72
RS
10021 imm_expr.X_op = O_absent;
10022 s = expr_end;
10023 continue;
10024
10025 case '%':
10026 my_getExpression (&imm_expr, s);
10027 check_absolute_expr (ip, &imm_expr);
10028
10029 if ((unsigned long) imm_expr.X_add_number
10030 > (unsigned long) OP_MASK_VECALIGN)
10031 {
10032 as_bad (_("bad byte vector index (%ld)"),
10033 (long) imm_expr.X_add_number);
10034 imm_expr.X_add_number = 0;
10035 }
10036
bf12938e 10037 INSERT_OPERAND (VECALIGN, *ip, imm_expr.X_add_number);
60b63b72
RS
10038 imm_expr.X_op = O_absent;
10039 s = expr_end;
10040 continue;
10041
252b5132
RH
10042 default:
10043 as_bad (_("bad char = '%c'\n"), *args);
10044 internalError ();
10045 }
10046 break;
10047 }
10048 /* Args don't match. */
10049 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
10050 !strcmp (insn->name, insn[1].name))
10051 {
10052 ++insn;
10053 s = argsStart;
268f6bed 10054 insn_error = _("illegal operands");
252b5132
RH
10055 continue;
10056 }
268f6bed 10057 if (save_c)
570de991 10058 *(--argsStart) = save_c;
252b5132
RH
10059 insn_error = _("illegal operands");
10060 return;
10061 }
10062}
10063
0499d65b
TS
10064#define SKIP_SPACE_TABS(S) { while (*(S) == ' ' || *(S) == '\t') ++(S); }
10065
252b5132
RH
10066/* This routine assembles an instruction into its binary format when
10067 assembling for the mips16. As a side effect, it sets one of the
10068 global variables imm_reloc or offset_reloc to the type of
10069 relocation to do if one of the operands is an address expression.
10070 It also sets mips16_small and mips16_ext if the user explicitly
10071 requested a small or extended instruction. */
10072
10073static void
17a2f251 10074mips16_ip (char *str, struct mips_cl_insn *ip)
252b5132
RH
10075{
10076 char *s;
10077 const char *args;
10078 struct mips_opcode *insn;
10079 char *argsstart;
10080 unsigned int regno;
10081 unsigned int lastregno = 0;
10082 char *s_reset;
d6f16593 10083 size_t i;
252b5132
RH
10084
10085 insn_error = NULL;
10086
b34976b6
AM
10087 mips16_small = FALSE;
10088 mips16_ext = FALSE;
252b5132 10089
3882b010 10090 for (s = str; ISLOWER (*s); ++s)
252b5132
RH
10091 ;
10092 switch (*s)
10093 {
10094 case '\0':
10095 break;
10096
10097 case ' ':
10098 *s++ = '\0';
10099 break;
10100
10101 case '.':
10102 if (s[1] == 't' && s[2] == ' ')
10103 {
10104 *s = '\0';
b34976b6 10105 mips16_small = TRUE;
252b5132
RH
10106 s += 3;
10107 break;
10108 }
10109 else if (s[1] == 'e' && s[2] == ' ')
10110 {
10111 *s = '\0';
b34976b6 10112 mips16_ext = TRUE;
252b5132
RH
10113 s += 3;
10114 break;
10115 }
10116 /* Fall through. */
10117 default:
10118 insn_error = _("unknown opcode");
10119 return;
10120 }
10121
10122 if (mips_opts.noautoextend && ! mips16_ext)
b34976b6 10123 mips16_small = TRUE;
252b5132
RH
10124
10125 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
10126 {
10127 insn_error = _("unrecognized opcode");
10128 return;
10129 }
10130
10131 argsstart = s;
10132 for (;;)
10133 {
9b3f89ee
TS
10134 bfd_boolean ok;
10135
252b5132
RH
10136 assert (strcmp (insn->name, str) == 0);
10137
037b32b9 10138 ok = is_opcode_valid_16 (insn);
9b3f89ee
TS
10139 if (! ok)
10140 {
10141 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes]
10142 && strcmp (insn->name, insn[1].name) == 0)
10143 {
10144 ++insn;
10145 continue;
10146 }
10147 else
10148 {
10149 if (!insn_error)
10150 {
10151 static char buf[100];
10152 sprintf (buf,
10153 _("opcode not supported on this processor: %s (%s)"),
10154 mips_cpu_info_from_arch (mips_opts.arch)->name,
10155 mips_cpu_info_from_isa (mips_opts.isa)->name);
10156 insn_error = buf;
10157 }
10158 return;
10159 }
10160 }
10161
1e915849 10162 create_insn (ip, insn);
252b5132 10163 imm_expr.X_op = O_absent;
f6688943
TS
10164 imm_reloc[0] = BFD_RELOC_UNUSED;
10165 imm_reloc[1] = BFD_RELOC_UNUSED;
10166 imm_reloc[2] = BFD_RELOC_UNUSED;
5f74bc13 10167 imm2_expr.X_op = O_absent;
252b5132 10168 offset_expr.X_op = O_absent;
f6688943
TS
10169 offset_reloc[0] = BFD_RELOC_UNUSED;
10170 offset_reloc[1] = BFD_RELOC_UNUSED;
10171 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132
RH
10172 for (args = insn->args; 1; ++args)
10173 {
10174 int c;
10175
10176 if (*s == ' ')
10177 ++s;
10178
10179 /* In this switch statement we call break if we did not find
10180 a match, continue if we did find a match, or return if we
10181 are done. */
10182
10183 c = *args;
10184 switch (c)
10185 {
10186 case '\0':
10187 if (*s == '\0')
10188 {
10189 /* Stuff the immediate value in now, if we can. */
10190 if (imm_expr.X_op == O_constant
f6688943 10191 && *imm_reloc > BFD_RELOC_UNUSED
738e5348
RS
10192 && *imm_reloc != BFD_RELOC_MIPS16_GOT16
10193 && *imm_reloc != BFD_RELOC_MIPS16_CALL16
252b5132
RH
10194 && insn->pinfo != INSN_MACRO)
10195 {
d6f16593
MR
10196 valueT tmp;
10197
10198 switch (*offset_reloc)
10199 {
10200 case BFD_RELOC_MIPS16_HI16_S:
10201 tmp = (imm_expr.X_add_number + 0x8000) >> 16;
10202 break;
10203
10204 case BFD_RELOC_MIPS16_HI16:
10205 tmp = imm_expr.X_add_number >> 16;
10206 break;
10207
10208 case BFD_RELOC_MIPS16_LO16:
10209 tmp = ((imm_expr.X_add_number + 0x8000) & 0xffff)
10210 - 0x8000;
10211 break;
10212
10213 case BFD_RELOC_UNUSED:
10214 tmp = imm_expr.X_add_number;
10215 break;
10216
10217 default:
10218 internalError ();
10219 }
10220 *offset_reloc = BFD_RELOC_UNUSED;
10221
c4e7957c 10222 mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
d6f16593 10223 tmp, TRUE, mips16_small,
252b5132
RH
10224 mips16_ext, &ip->insn_opcode,
10225 &ip->use_extend, &ip->extend);
10226 imm_expr.X_op = O_absent;
f6688943 10227 *imm_reloc = BFD_RELOC_UNUSED;
252b5132
RH
10228 }
10229
10230 return;
10231 }
10232 break;
10233
10234 case ',':
10235 if (*s++ == c)
10236 continue;
10237 s--;
10238 switch (*++args)
10239 {
10240 case 'v':
bf12938e 10241 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
252b5132
RH
10242 continue;
10243 case 'w':
bf12938e 10244 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
252b5132
RH
10245 continue;
10246 }
10247 break;
10248
10249 case '(':
10250 case ')':
10251 if (*s++ == c)
10252 continue;
10253 break;
10254
10255 case 'v':
10256 case 'w':
10257 if (s[0] != '$')
10258 {
10259 if (c == 'v')
bf12938e 10260 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
252b5132 10261 else
bf12938e 10262 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
252b5132
RH
10263 ++args;
10264 continue;
10265 }
10266 /* Fall through. */
10267 case 'x':
10268 case 'y':
10269 case 'z':
10270 case 'Z':
10271 case '0':
10272 case 'S':
10273 case 'R':
10274 case 'X':
10275 case 'Y':
707bfff6
TS
10276 s_reset = s;
10277 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
252b5132 10278 {
707bfff6 10279 if (c == 'v' || c == 'w')
85b51719 10280 {
707bfff6 10281 if (c == 'v')
a9e24354 10282 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
707bfff6 10283 else
a9e24354 10284 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
707bfff6
TS
10285 ++args;
10286 continue;
85b51719 10287 }
707bfff6 10288 break;
252b5132
RH
10289 }
10290
10291 if (*s == ' ')
10292 ++s;
10293 if (args[1] != *s)
10294 {
10295 if (c == 'v' || c == 'w')
10296 {
10297 regno = mips16_to_32_reg_map[lastregno];
10298 s = s_reset;
f9419b05 10299 ++args;
252b5132
RH
10300 }
10301 }
10302
10303 switch (c)
10304 {
10305 case 'x':
10306 case 'y':
10307 case 'z':
10308 case 'v':
10309 case 'w':
10310 case 'Z':
10311 regno = mips32_to_16_reg_map[regno];
10312 break;
10313
10314 case '0':
10315 if (regno != 0)
10316 regno = ILLEGAL_REG;
10317 break;
10318
10319 case 'S':
10320 if (regno != SP)
10321 regno = ILLEGAL_REG;
10322 break;
10323
10324 case 'R':
10325 if (regno != RA)
10326 regno = ILLEGAL_REG;
10327 break;
10328
10329 case 'X':
10330 case 'Y':
741fe287
MR
10331 if (regno == AT && mips_opts.at)
10332 {
10333 if (mips_opts.at == ATREG)
10334 as_warn (_("used $at without \".set noat\""));
10335 else
10336 as_warn (_("used $%u with \".set at=$%u\""),
10337 regno, mips_opts.at);
10338 }
252b5132
RH
10339 break;
10340
10341 default:
10342 internalError ();
10343 }
10344
10345 if (regno == ILLEGAL_REG)
10346 break;
10347
10348 switch (c)
10349 {
10350 case 'x':
10351 case 'v':
bf12938e 10352 MIPS16_INSERT_OPERAND (RX, *ip, regno);
252b5132
RH
10353 break;
10354 case 'y':
10355 case 'w':
bf12938e 10356 MIPS16_INSERT_OPERAND (RY, *ip, regno);
252b5132
RH
10357 break;
10358 case 'z':
bf12938e 10359 MIPS16_INSERT_OPERAND (RZ, *ip, regno);
252b5132
RH
10360 break;
10361 case 'Z':
bf12938e 10362 MIPS16_INSERT_OPERAND (MOVE32Z, *ip, regno);
252b5132
RH
10363 case '0':
10364 case 'S':
10365 case 'R':
10366 break;
10367 case 'X':
bf12938e 10368 MIPS16_INSERT_OPERAND (REGR32, *ip, regno);
252b5132
RH
10369 break;
10370 case 'Y':
10371 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
bf12938e 10372 MIPS16_INSERT_OPERAND (REG32R, *ip, regno);
252b5132
RH
10373 break;
10374 default:
10375 internalError ();
10376 }
10377
10378 lastregno = regno;
10379 continue;
10380
10381 case 'P':
10382 if (strncmp (s, "$pc", 3) == 0)
10383 {
10384 s += 3;
10385 continue;
10386 }
10387 break;
10388
252b5132
RH
10389 case '5':
10390 case 'H':
10391 case 'W':
10392 case 'D':
10393 case 'j':
252b5132
RH
10394 case 'V':
10395 case 'C':
10396 case 'U':
10397 case 'k':
10398 case 'K':
d6f16593
MR
10399 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
10400 if (i > 0)
252b5132 10401 {
d6f16593 10402 if (imm_expr.X_op != O_constant)
252b5132 10403 {
b34976b6 10404 mips16_ext = TRUE;
b34976b6 10405 ip->use_extend = TRUE;
252b5132 10406 ip->extend = 0;
252b5132 10407 }
d6f16593
MR
10408 else
10409 {
10410 /* We need to relax this instruction. */
10411 *offset_reloc = *imm_reloc;
10412 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
10413 }
10414 s = expr_end;
10415 continue;
252b5132 10416 }
d6f16593
MR
10417 *imm_reloc = BFD_RELOC_UNUSED;
10418 /* Fall through. */
10419 case '<':
10420 case '>':
10421 case '[':
10422 case ']':
10423 case '4':
10424 case '8':
10425 my_getExpression (&imm_expr, s);
252b5132
RH
10426 if (imm_expr.X_op == O_register)
10427 {
10428 /* What we thought was an expression turned out to
10429 be a register. */
10430
10431 if (s[0] == '(' && args[1] == '(')
10432 {
10433 /* It looks like the expression was omitted
10434 before a register indirection, which means
10435 that the expression is implicitly zero. We
10436 still set up imm_expr, so that we handle
10437 explicit extensions correctly. */
10438 imm_expr.X_op = O_constant;
10439 imm_expr.X_add_number = 0;
f6688943 10440 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
10441 continue;
10442 }
10443
10444 break;
10445 }
10446
10447 /* We need to relax this instruction. */
f6688943 10448 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
10449 s = expr_end;
10450 continue;
10451
10452 case 'p':
10453 case 'q':
10454 case 'A':
10455 case 'B':
10456 case 'E':
10457 /* We use offset_reloc rather than imm_reloc for the PC
10458 relative operands. This lets macros with both
10459 immediate and address operands work correctly. */
10460 my_getExpression (&offset_expr, s);
10461
10462 if (offset_expr.X_op == O_register)
10463 break;
10464
10465 /* We need to relax this instruction. */
f6688943 10466 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
10467 s = expr_end;
10468 continue;
10469
10470 case '6': /* break code */
10471 my_getExpression (&imm_expr, s);
10472 check_absolute_expr (ip, &imm_expr);
10473 if ((unsigned long) imm_expr.X_add_number > 63)
bf12938e
RS
10474 as_warn (_("Invalid value for `%s' (%lu)"),
10475 ip->insn_mo->name,
10476 (unsigned long) imm_expr.X_add_number);
10477 MIPS16_INSERT_OPERAND (IMM6, *ip, imm_expr.X_add_number);
252b5132
RH
10478 imm_expr.X_op = O_absent;
10479 s = expr_end;
10480 continue;
10481
10482 case 'a': /* 26 bit address */
10483 my_getExpression (&offset_expr, s);
10484 s = expr_end;
f6688943 10485 *offset_reloc = BFD_RELOC_MIPS16_JMP;
252b5132
RH
10486 ip->insn_opcode <<= 16;
10487 continue;
10488
10489 case 'l': /* register list for entry macro */
10490 case 'L': /* register list for exit macro */
10491 {
10492 int mask;
10493
10494 if (c == 'l')
10495 mask = 0;
10496 else
10497 mask = 7 << 3;
10498 while (*s != '\0')
10499 {
707bfff6 10500 unsigned int freg, reg1, reg2;
252b5132
RH
10501
10502 while (*s == ' ' || *s == ',')
10503 ++s;
707bfff6 10504 if (reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
252b5132 10505 freg = 0;
707bfff6
TS
10506 else if (reg_lookup (&s, RTYPE_FPU, &reg1))
10507 freg = 1;
252b5132
RH
10508 else
10509 {
707bfff6
TS
10510 as_bad (_("can't parse register list"));
10511 break;
252b5132
RH
10512 }
10513 if (*s == ' ')
10514 ++s;
10515 if (*s != '-')
10516 reg2 = reg1;
10517 else
10518 {
10519 ++s;
707bfff6
TS
10520 if (!reg_lookup (&s, freg ? RTYPE_FPU
10521 : (RTYPE_GP | RTYPE_NUM), &reg2))
252b5132 10522 {
707bfff6
TS
10523 as_bad (_("invalid register list"));
10524 break;
252b5132
RH
10525 }
10526 }
10527 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
10528 {
10529 mask &= ~ (7 << 3);
10530 mask |= 5 << 3;
10531 }
10532 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
10533 {
10534 mask &= ~ (7 << 3);
10535 mask |= 6 << 3;
10536 }
10537 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
10538 mask |= (reg2 - 3) << 3;
10539 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
10540 mask |= (reg2 - 15) << 1;
f9419b05 10541 else if (reg1 == RA && reg2 == RA)
252b5132
RH
10542 mask |= 1;
10543 else
10544 {
10545 as_bad (_("invalid register list"));
10546 break;
10547 }
10548 }
10549 /* The mask is filled in in the opcode table for the
10550 benefit of the disassembler. We remove it before
10551 applying the actual mask. */
10552 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
10553 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
10554 }
10555 continue;
10556
0499d65b
TS
10557 case 'm': /* Register list for save insn. */
10558 case 'M': /* Register list for restore insn. */
10559 {
10560 int opcode = 0;
10561 int framesz = 0, seen_framesz = 0;
10562 int args = 0, statics = 0, sregs = 0;
10563
10564 while (*s != '\0')
10565 {
10566 unsigned int reg1, reg2;
10567
10568 SKIP_SPACE_TABS (s);
10569 while (*s == ',')
10570 ++s;
10571 SKIP_SPACE_TABS (s);
10572
10573 my_getExpression (&imm_expr, s);
10574 if (imm_expr.X_op == O_constant)
10575 {
10576 /* Handle the frame size. */
10577 if (seen_framesz)
10578 {
10579 as_bad (_("more than one frame size in list"));
10580 break;
10581 }
10582 seen_framesz = 1;
10583 framesz = imm_expr.X_add_number;
10584 imm_expr.X_op = O_absent;
10585 s = expr_end;
10586 continue;
10587 }
10588
707bfff6 10589 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
0499d65b
TS
10590 {
10591 as_bad (_("can't parse register list"));
10592 break;
10593 }
0499d65b 10594
707bfff6
TS
10595 while (*s == ' ')
10596 ++s;
10597
0499d65b
TS
10598 if (*s != '-')
10599 reg2 = reg1;
10600 else
10601 {
10602 ++s;
707bfff6
TS
10603 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg2)
10604 || reg2 < reg1)
0499d65b
TS
10605 {
10606 as_bad (_("can't parse register list"));
10607 break;
10608 }
0499d65b
TS
10609 }
10610
10611 while (reg1 <= reg2)
10612 {
10613 if (reg1 >= 4 && reg1 <= 7)
10614 {
3a93f742 10615 if (!seen_framesz)
0499d65b
TS
10616 /* args $a0-$a3 */
10617 args |= 1 << (reg1 - 4);
10618 else
10619 /* statics $a0-$a3 */
10620 statics |= 1 << (reg1 - 4);
10621 }
10622 else if ((reg1 >= 16 && reg1 <= 23) || reg1 == 30)
10623 {
10624 /* $s0-$s8 */
10625 sregs |= 1 << ((reg1 == 30) ? 8 : (reg1 - 16));
10626 }
10627 else if (reg1 == 31)
10628 {
10629 /* Add $ra to insn. */
10630 opcode |= 0x40;
10631 }
10632 else
10633 {
10634 as_bad (_("unexpected register in list"));
10635 break;
10636 }
10637 if (++reg1 == 24)
10638 reg1 = 30;
10639 }
10640 }
10641
10642 /* Encode args/statics combination. */
10643 if (args & statics)
10644 as_bad (_("arg/static registers overlap"));
10645 else if (args == 0xf)
10646 /* All $a0-$a3 are args. */
10647 opcode |= MIPS16_ALL_ARGS << 16;
10648 else if (statics == 0xf)
10649 /* All $a0-$a3 are statics. */
10650 opcode |= MIPS16_ALL_STATICS << 16;
10651 else
10652 {
10653 int narg = 0, nstat = 0;
10654
10655 /* Count arg registers. */
10656 while (args & 0x1)
10657 {
10658 args >>= 1;
10659 narg++;
10660 }
10661 if (args != 0)
10662 as_bad (_("invalid arg register list"));
10663
10664 /* Count static registers. */
10665 while (statics & 0x8)
10666 {
10667 statics = (statics << 1) & 0xf;
10668 nstat++;
10669 }
10670 if (statics != 0)
10671 as_bad (_("invalid static register list"));
10672
10673 /* Encode args/statics. */
10674 opcode |= ((narg << 2) | nstat) << 16;
10675 }
10676
10677 /* Encode $s0/$s1. */
10678 if (sregs & (1 << 0)) /* $s0 */
10679 opcode |= 0x20;
10680 if (sregs & (1 << 1)) /* $s1 */
10681 opcode |= 0x10;
10682 sregs >>= 2;
10683
10684 if (sregs != 0)
10685 {
10686 /* Count regs $s2-$s8. */
10687 int nsreg = 0;
10688 while (sregs & 1)
10689 {
10690 sregs >>= 1;
10691 nsreg++;
10692 }
10693 if (sregs != 0)
10694 as_bad (_("invalid static register list"));
10695 /* Encode $s2-$s8. */
10696 opcode |= nsreg << 24;
10697 }
10698
10699 /* Encode frame size. */
10700 if (!seen_framesz)
10701 as_bad (_("missing frame size"));
10702 else if ((framesz & 7) != 0 || framesz < 0
10703 || framesz > 0xff * 8)
10704 as_bad (_("invalid frame size"));
10705 else if (framesz != 128 || (opcode >> 16) != 0)
10706 {
10707 framesz /= 8;
10708 opcode |= (((framesz & 0xf0) << 16)
10709 | (framesz & 0x0f));
10710 }
10711
10712 /* Finally build the instruction. */
10713 if ((opcode >> 16) != 0 || framesz == 0)
10714 {
10715 ip->use_extend = TRUE;
10716 ip->extend = opcode >> 16;
10717 }
10718 ip->insn_opcode |= opcode & 0x7f;
10719 }
10720 continue;
10721
252b5132
RH
10722 case 'e': /* extend code */
10723 my_getExpression (&imm_expr, s);
10724 check_absolute_expr (ip, &imm_expr);
10725 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
10726 {
10727 as_warn (_("Invalid value for `%s' (%lu)"),
10728 ip->insn_mo->name,
10729 (unsigned long) imm_expr.X_add_number);
10730 imm_expr.X_add_number &= 0x7ff;
10731 }
10732 ip->insn_opcode |= imm_expr.X_add_number;
10733 imm_expr.X_op = O_absent;
10734 s = expr_end;
10735 continue;
10736
10737 default:
10738 internalError ();
10739 }
10740 break;
10741 }
10742
10743 /* Args don't match. */
10744 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
10745 strcmp (insn->name, insn[1].name) == 0)
10746 {
10747 ++insn;
10748 s = argsstart;
10749 continue;
10750 }
10751
10752 insn_error = _("illegal operands");
10753
10754 return;
10755 }
10756}
10757
10758/* This structure holds information we know about a mips16 immediate
10759 argument type. */
10760
e972090a
NC
10761struct mips16_immed_operand
10762{
252b5132
RH
10763 /* The type code used in the argument string in the opcode table. */
10764 int type;
10765 /* The number of bits in the short form of the opcode. */
10766 int nbits;
10767 /* The number of bits in the extended form of the opcode. */
10768 int extbits;
10769 /* The amount by which the short form is shifted when it is used;
10770 for example, the sw instruction has a shift count of 2. */
10771 int shift;
10772 /* The amount by which the short form is shifted when it is stored
10773 into the instruction code. */
10774 int op_shift;
10775 /* Non-zero if the short form is unsigned. */
10776 int unsp;
10777 /* Non-zero if the extended form is unsigned. */
10778 int extu;
10779 /* Non-zero if the value is PC relative. */
10780 int pcrel;
10781};
10782
10783/* The mips16 immediate operand types. */
10784
10785static const struct mips16_immed_operand mips16_immed_operands[] =
10786{
10787 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
10788 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
10789 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
10790 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
10791 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
10792 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
10793 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
10794 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
10795 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
10796 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
10797 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
10798 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
10799 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
10800 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
10801 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
10802 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
10803 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
10804 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
10805 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
10806 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
10807 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
10808};
10809
10810#define MIPS16_NUM_IMMED \
10811 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
10812
10813/* Handle a mips16 instruction with an immediate value. This or's the
10814 small immediate value into *INSN. It sets *USE_EXTEND to indicate
10815 whether an extended value is needed; if one is needed, it sets
10816 *EXTEND to the value. The argument type is TYPE. The value is VAL.
10817 If SMALL is true, an unextended opcode was explicitly requested.
10818 If EXT is true, an extended opcode was explicitly requested. If
10819 WARN is true, warn if EXT does not match reality. */
10820
10821static void
17a2f251
TS
10822mips16_immed (char *file, unsigned int line, int type, offsetT val,
10823 bfd_boolean warn, bfd_boolean small, bfd_boolean ext,
10824 unsigned long *insn, bfd_boolean *use_extend,
10825 unsigned short *extend)
252b5132 10826{
3994f87e 10827 const struct mips16_immed_operand *op;
252b5132 10828 int mintiny, maxtiny;
b34976b6 10829 bfd_boolean needext;
252b5132
RH
10830
10831 op = mips16_immed_operands;
10832 while (op->type != type)
10833 {
10834 ++op;
10835 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
10836 }
10837
10838 if (op->unsp)
10839 {
10840 if (type == '<' || type == '>' || type == '[' || type == ']')
10841 {
10842 mintiny = 1;
10843 maxtiny = 1 << op->nbits;
10844 }
10845 else
10846 {
10847 mintiny = 0;
10848 maxtiny = (1 << op->nbits) - 1;
10849 }
10850 }
10851 else
10852 {
10853 mintiny = - (1 << (op->nbits - 1));
10854 maxtiny = (1 << (op->nbits - 1)) - 1;
10855 }
10856
10857 /* Branch offsets have an implicit 0 in the lowest bit. */
10858 if (type == 'p' || type == 'q')
10859 val /= 2;
10860
10861 if ((val & ((1 << op->shift) - 1)) != 0
10862 || val < (mintiny << op->shift)
10863 || val > (maxtiny << op->shift))
b34976b6 10864 needext = TRUE;
252b5132 10865 else
b34976b6 10866 needext = FALSE;
252b5132
RH
10867
10868 if (warn && ext && ! needext)
beae10d5
KH
10869 as_warn_where (file, line,
10870 _("extended operand requested but not required"));
252b5132
RH
10871 if (small && needext)
10872 as_bad_where (file, line, _("invalid unextended operand value"));
10873
10874 if (small || (! ext && ! needext))
10875 {
10876 int insnval;
10877
b34976b6 10878 *use_extend = FALSE;
252b5132
RH
10879 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
10880 insnval <<= op->op_shift;
10881 *insn |= insnval;
10882 }
10883 else
10884 {
10885 long minext, maxext;
10886 int extval;
10887
10888 if (op->extu)
10889 {
10890 minext = 0;
10891 maxext = (1 << op->extbits) - 1;
10892 }
10893 else
10894 {
10895 minext = - (1 << (op->extbits - 1));
10896 maxext = (1 << (op->extbits - 1)) - 1;
10897 }
10898 if (val < minext || val > maxext)
10899 as_bad_where (file, line,
10900 _("operand value out of range for instruction"));
10901
b34976b6 10902 *use_extend = TRUE;
252b5132
RH
10903 if (op->extbits == 16)
10904 {
10905 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
10906 val &= 0x1f;
10907 }
10908 else if (op->extbits == 15)
10909 {
10910 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
10911 val &= 0xf;
10912 }
10913 else
10914 {
10915 extval = ((val & 0x1f) << 6) | (val & 0x20);
10916 val = 0;
10917 }
10918
10919 *extend = (unsigned short) extval;
10920 *insn |= val;
10921 }
10922}
10923\f
d6f16593 10924struct percent_op_match
ad8d3bb3 10925{
5e0116d5
RS
10926 const char *str;
10927 bfd_reloc_code_real_type reloc;
d6f16593
MR
10928};
10929
10930static const struct percent_op_match mips_percent_op[] =
ad8d3bb3 10931{
5e0116d5 10932 {"%lo", BFD_RELOC_LO16},
ad8d3bb3 10933#ifdef OBJ_ELF
5e0116d5
RS
10934 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
10935 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
10936 {"%call16", BFD_RELOC_MIPS_CALL16},
10937 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
10938 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
10939 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
10940 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
10941 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
10942 {"%got", BFD_RELOC_MIPS_GOT16},
10943 {"%gp_rel", BFD_RELOC_GPREL16},
10944 {"%half", BFD_RELOC_16},
10945 {"%highest", BFD_RELOC_MIPS_HIGHEST},
10946 {"%higher", BFD_RELOC_MIPS_HIGHER},
10947 {"%neg", BFD_RELOC_MIPS_SUB},
3f98094e
DJ
10948 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
10949 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
10950 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
10951 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
10952 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
10953 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
10954 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
ad8d3bb3 10955#endif
5e0116d5 10956 {"%hi", BFD_RELOC_HI16_S}
ad8d3bb3
TS
10957};
10958
d6f16593
MR
10959static const struct percent_op_match mips16_percent_op[] =
10960{
10961 {"%lo", BFD_RELOC_MIPS16_LO16},
10962 {"%gprel", BFD_RELOC_MIPS16_GPREL},
738e5348
RS
10963 {"%got", BFD_RELOC_MIPS16_GOT16},
10964 {"%call16", BFD_RELOC_MIPS16_CALL16},
d6f16593
MR
10965 {"%hi", BFD_RELOC_MIPS16_HI16_S}
10966};
10967
252b5132 10968
5e0116d5
RS
10969/* Return true if *STR points to a relocation operator. When returning true,
10970 move *STR over the operator and store its relocation code in *RELOC.
10971 Leave both *STR and *RELOC alone when returning false. */
10972
10973static bfd_boolean
17a2f251 10974parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
252b5132 10975{
d6f16593
MR
10976 const struct percent_op_match *percent_op;
10977 size_t limit, i;
10978
10979 if (mips_opts.mips16)
10980 {
10981 percent_op = mips16_percent_op;
10982 limit = ARRAY_SIZE (mips16_percent_op);
10983 }
10984 else
10985 {
10986 percent_op = mips_percent_op;
10987 limit = ARRAY_SIZE (mips_percent_op);
10988 }
76b3015f 10989
d6f16593 10990 for (i = 0; i < limit; i++)
5e0116d5 10991 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
394f9b3a 10992 {
3f98094e
DJ
10993 int len = strlen (percent_op[i].str);
10994
10995 if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
10996 continue;
10997
5e0116d5
RS
10998 *str += strlen (percent_op[i].str);
10999 *reloc = percent_op[i].reloc;
394f9b3a 11000
5e0116d5
RS
11001 /* Check whether the output BFD supports this relocation.
11002 If not, issue an error and fall back on something safe. */
11003 if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
394f9b3a 11004 {
5e0116d5
RS
11005 as_bad ("relocation %s isn't supported by the current ABI",
11006 percent_op[i].str);
01a3f561 11007 *reloc = BFD_RELOC_UNUSED;
394f9b3a 11008 }
5e0116d5 11009 return TRUE;
394f9b3a 11010 }
5e0116d5 11011 return FALSE;
394f9b3a 11012}
ad8d3bb3 11013
ad8d3bb3 11014
5e0116d5
RS
11015/* Parse string STR as a 16-bit relocatable operand. Store the
11016 expression in *EP and the relocations in the array starting
11017 at RELOC. Return the number of relocation operators used.
ad8d3bb3 11018
01a3f561 11019 On exit, EXPR_END points to the first character after the expression. */
ad8d3bb3 11020
5e0116d5 11021static size_t
17a2f251
TS
11022my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
11023 char *str)
ad8d3bb3 11024{
5e0116d5
RS
11025 bfd_reloc_code_real_type reversed_reloc[3];
11026 size_t reloc_index, i;
09b8f35a
RS
11027 int crux_depth, str_depth;
11028 char *crux;
5e0116d5
RS
11029
11030 /* Search for the start of the main expression, recoding relocations
09b8f35a
RS
11031 in REVERSED_RELOC. End the loop with CRUX pointing to the start
11032 of the main expression and with CRUX_DEPTH containing the number
11033 of open brackets at that point. */
11034 reloc_index = -1;
11035 str_depth = 0;
11036 do
fb1b3232 11037 {
09b8f35a
RS
11038 reloc_index++;
11039 crux = str;
11040 crux_depth = str_depth;
11041
11042 /* Skip over whitespace and brackets, keeping count of the number
11043 of brackets. */
11044 while (*str == ' ' || *str == '\t' || *str == '(')
11045 if (*str++ == '(')
11046 str_depth++;
5e0116d5 11047 }
09b8f35a
RS
11048 while (*str == '%'
11049 && reloc_index < (HAVE_NEWABI ? 3 : 1)
11050 && parse_relocation (&str, &reversed_reloc[reloc_index]));
ad8d3bb3 11051
09b8f35a 11052 my_getExpression (ep, crux);
5e0116d5 11053 str = expr_end;
394f9b3a 11054
5e0116d5 11055 /* Match every open bracket. */
09b8f35a 11056 while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
5e0116d5 11057 if (*str++ == ')')
09b8f35a 11058 crux_depth--;
394f9b3a 11059
09b8f35a 11060 if (crux_depth > 0)
5e0116d5 11061 as_bad ("unclosed '('");
394f9b3a 11062
5e0116d5 11063 expr_end = str;
252b5132 11064
01a3f561 11065 if (reloc_index != 0)
64bdfcaf
RS
11066 {
11067 prev_reloc_op_frag = frag_now;
11068 for (i = 0; i < reloc_index; i++)
11069 reloc[i] = reversed_reloc[reloc_index - 1 - i];
11070 }
fb1b3232 11071
5e0116d5 11072 return reloc_index;
252b5132
RH
11073}
11074
11075static void
17a2f251 11076my_getExpression (expressionS *ep, char *str)
252b5132
RH
11077{
11078 char *save_in;
98aa84af 11079 valueT val;
252b5132
RH
11080
11081 save_in = input_line_pointer;
11082 input_line_pointer = str;
11083 expression (ep);
11084 expr_end = input_line_pointer;
11085 input_line_pointer = save_in;
11086
11087 /* If we are in mips16 mode, and this is an expression based on `.',
11088 then we bump the value of the symbol by 1 since that is how other
11089 text symbols are handled. We don't bother to handle complex
11090 expressions, just `.' plus or minus a constant. */
11091 if (mips_opts.mips16
11092 && ep->X_op == O_symbol
11093 && strcmp (S_GET_NAME (ep->X_add_symbol), FAKE_LABEL_NAME) == 0
11094 && S_GET_SEGMENT (ep->X_add_symbol) == now_seg
49309057
ILT
11095 && symbol_get_frag (ep->X_add_symbol) == frag_now
11096 && symbol_constant_p (ep->X_add_symbol)
98aa84af
AM
11097 && (val = S_GET_VALUE (ep->X_add_symbol)) == frag_now_fix ())
11098 S_SET_VALUE (ep->X_add_symbol, val + 1);
252b5132
RH
11099}
11100
252b5132 11101char *
17a2f251 11102md_atof (int type, char *litP, int *sizeP)
252b5132 11103{
499ac353 11104 return ieee_md_atof (type, litP, sizeP, target_big_endian);
252b5132
RH
11105}
11106
11107void
17a2f251 11108md_number_to_chars (char *buf, valueT val, int n)
252b5132
RH
11109{
11110 if (target_big_endian)
11111 number_to_chars_bigendian (buf, val, n);
11112 else
11113 number_to_chars_littleendian (buf, val, n);
11114}
11115\f
ae948b86 11116#ifdef OBJ_ELF
e013f690
TS
11117static int support_64bit_objects(void)
11118{
11119 const char **list, **l;
aa3d8fdf 11120 int yes;
e013f690
TS
11121
11122 list = bfd_target_list ();
11123 for (l = list; *l != NULL; l++)
11124#ifdef TE_TMIPS
11125 /* This is traditional mips */
11126 if (strcmp (*l, "elf64-tradbigmips") == 0
11127 || strcmp (*l, "elf64-tradlittlemips") == 0)
11128#else
11129 if (strcmp (*l, "elf64-bigmips") == 0
11130 || strcmp (*l, "elf64-littlemips") == 0)
11131#endif
11132 break;
aa3d8fdf 11133 yes = (*l != NULL);
e013f690 11134 free (list);
aa3d8fdf 11135 return yes;
e013f690 11136}
ae948b86 11137#endif /* OBJ_ELF */
e013f690 11138
78849248 11139const char *md_shortopts = "O::g::G:";
252b5132 11140
23fce1e3
NC
11141enum options
11142 {
11143 OPTION_MARCH = OPTION_MD_BASE,
11144 OPTION_MTUNE,
11145 OPTION_MIPS1,
11146 OPTION_MIPS2,
11147 OPTION_MIPS3,
11148 OPTION_MIPS4,
11149 OPTION_MIPS5,
11150 OPTION_MIPS32,
11151 OPTION_MIPS64,
11152 OPTION_MIPS32R2,
11153 OPTION_MIPS64R2,
11154 OPTION_MIPS16,
11155 OPTION_NO_MIPS16,
11156 OPTION_MIPS3D,
11157 OPTION_NO_MIPS3D,
11158 OPTION_MDMX,
11159 OPTION_NO_MDMX,
11160 OPTION_DSP,
11161 OPTION_NO_DSP,
11162 OPTION_MT,
11163 OPTION_NO_MT,
11164 OPTION_SMARTMIPS,
11165 OPTION_NO_SMARTMIPS,
11166 OPTION_DSPR2,
11167 OPTION_NO_DSPR2,
11168 OPTION_COMPAT_ARCH_BASE,
11169 OPTION_M4650,
11170 OPTION_NO_M4650,
11171 OPTION_M4010,
11172 OPTION_NO_M4010,
11173 OPTION_M4100,
11174 OPTION_NO_M4100,
11175 OPTION_M3900,
11176 OPTION_NO_M3900,
11177 OPTION_M7000_HILO_FIX,
11178 OPTION_MNO_7000_HILO_FIX,
11179 OPTION_FIX_VR4120,
11180 OPTION_NO_FIX_VR4120,
11181 OPTION_FIX_VR4130,
11182 OPTION_NO_FIX_VR4130,
11183 OPTION_TRAP,
11184 OPTION_BREAK,
11185 OPTION_EB,
11186 OPTION_EL,
11187 OPTION_FP32,
11188 OPTION_GP32,
11189 OPTION_CONSTRUCT_FLOATS,
11190 OPTION_NO_CONSTRUCT_FLOATS,
11191 OPTION_FP64,
11192 OPTION_GP64,
11193 OPTION_RELAX_BRANCH,
11194 OPTION_NO_RELAX_BRANCH,
11195 OPTION_MSHARED,
11196 OPTION_MNO_SHARED,
11197 OPTION_MSYM32,
11198 OPTION_MNO_SYM32,
11199 OPTION_SOFT_FLOAT,
11200 OPTION_HARD_FLOAT,
11201 OPTION_SINGLE_FLOAT,
11202 OPTION_DOUBLE_FLOAT,
11203 OPTION_32,
11204#ifdef OBJ_ELF
11205 OPTION_CALL_SHARED,
11206 OPTION_CALL_NONPIC,
11207 OPTION_NON_SHARED,
11208 OPTION_XGOT,
11209 OPTION_MABI,
11210 OPTION_N32,
11211 OPTION_64,
11212 OPTION_MDEBUG,
11213 OPTION_NO_MDEBUG,
11214 OPTION_PDR,
11215 OPTION_NO_PDR,
11216 OPTION_MVXWORKS_PIC,
11217#endif /* OBJ_ELF */
11218 OPTION_END_OF_ENUM
11219 };
11220
e972090a
NC
11221struct option md_longopts[] =
11222{
f9b4148d 11223 /* Options which specify architecture. */
f9b4148d 11224 {"march", required_argument, NULL, OPTION_MARCH},
f9b4148d 11225 {"mtune", required_argument, NULL, OPTION_MTUNE},
252b5132
RH
11226 {"mips0", no_argument, NULL, OPTION_MIPS1},
11227 {"mips1", no_argument, NULL, OPTION_MIPS1},
252b5132 11228 {"mips2", no_argument, NULL, OPTION_MIPS2},
252b5132 11229 {"mips3", no_argument, NULL, OPTION_MIPS3},
252b5132 11230 {"mips4", no_argument, NULL, OPTION_MIPS4},
ae948b86 11231 {"mips5", no_argument, NULL, OPTION_MIPS5},
ae948b86 11232 {"mips32", no_argument, NULL, OPTION_MIPS32},
ae948b86 11233 {"mips64", no_argument, NULL, OPTION_MIPS64},
f9b4148d 11234 {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
5f74bc13 11235 {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
f9b4148d
CD
11236
11237 /* Options which specify Application Specific Extensions (ASEs). */
f9b4148d 11238 {"mips16", no_argument, NULL, OPTION_MIPS16},
f9b4148d 11239 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
f9b4148d 11240 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
f9b4148d 11241 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
f9b4148d 11242 {"mdmx", no_argument, NULL, OPTION_MDMX},
f9b4148d 11243 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
74cd071d 11244 {"mdsp", no_argument, NULL, OPTION_DSP},
74cd071d 11245 {"mno-dsp", no_argument, NULL, OPTION_NO_DSP},
ef2e4d86 11246 {"mmt", no_argument, NULL, OPTION_MT},
ef2e4d86 11247 {"mno-mt", no_argument, NULL, OPTION_NO_MT},
e16bfa71 11248 {"msmartmips", no_argument, NULL, OPTION_SMARTMIPS},
e16bfa71 11249 {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS},
8b082fb1 11250 {"mdspr2", no_argument, NULL, OPTION_DSPR2},
8b082fb1 11251 {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2},
f9b4148d
CD
11252
11253 /* Old-style architecture options. Don't add more of these. */
f9b4148d 11254 {"m4650", no_argument, NULL, OPTION_M4650},
f9b4148d 11255 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
f9b4148d 11256 {"m4010", no_argument, NULL, OPTION_M4010},
f9b4148d 11257 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
f9b4148d 11258 {"m4100", no_argument, NULL, OPTION_M4100},
f9b4148d 11259 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
f9b4148d 11260 {"m3900", no_argument, NULL, OPTION_M3900},
f9b4148d
CD
11261 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
11262
11263 /* Options which enable bug fixes. */
f9b4148d 11264 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
f9b4148d
CD
11265 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
11266 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
d766e8ec
RS
11267 {"mfix-vr4120", no_argument, NULL, OPTION_FIX_VR4120},
11268 {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
7d8e00cf
RS
11269 {"mfix-vr4130", no_argument, NULL, OPTION_FIX_VR4130},
11270 {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
f9b4148d
CD
11271
11272 /* Miscellaneous options. */
252b5132
RH
11273 {"trap", no_argument, NULL, OPTION_TRAP},
11274 {"no-break", no_argument, NULL, OPTION_TRAP},
252b5132
RH
11275 {"break", no_argument, NULL, OPTION_BREAK},
11276 {"no-trap", no_argument, NULL, OPTION_BREAK},
252b5132 11277 {"EB", no_argument, NULL, OPTION_EB},
252b5132 11278 {"EL", no_argument, NULL, OPTION_EL},
ae948b86 11279 {"mfp32", no_argument, NULL, OPTION_FP32},
c97ef257 11280 {"mgp32", no_argument, NULL, OPTION_GP32},
119d663a 11281 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
119d663a 11282 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
316f5878 11283 {"mfp64", no_argument, NULL, OPTION_FP64},
ae948b86 11284 {"mgp64", no_argument, NULL, OPTION_GP64},
4a6a3df4
AO
11285 {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
11286 {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
aa6975fb
ILT
11287 {"mshared", no_argument, NULL, OPTION_MSHARED},
11288 {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
aed1a261
RS
11289 {"msym32", no_argument, NULL, OPTION_MSYM32},
11290 {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
037b32b9
AN
11291 {"msoft-float", no_argument, NULL, OPTION_SOFT_FLOAT},
11292 {"mhard-float", no_argument, NULL, OPTION_HARD_FLOAT},
037b32b9
AN
11293 {"msingle-float", no_argument, NULL, OPTION_SINGLE_FLOAT},
11294 {"mdouble-float", no_argument, NULL, OPTION_DOUBLE_FLOAT},
23fce1e3
NC
11295
11296 /* Strictly speaking this next option is ELF specific,
11297 but we allow it for other ports as well in order to
11298 make testing easier. */
11299 {"32", no_argument, NULL, OPTION_32},
037b32b9 11300
f9b4148d 11301 /* ELF-specific options. */
156c2f8b 11302#ifdef OBJ_ELF
156c2f8b
NC
11303 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
11304 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
861fb55a 11305 {"call_nonpic", no_argument, NULL, OPTION_CALL_NONPIC},
156c2f8b
NC
11306 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
11307 {"xgot", no_argument, NULL, OPTION_XGOT},
ae948b86 11308 {"mabi", required_argument, NULL, OPTION_MABI},
e013f690 11309 {"n32", no_argument, NULL, OPTION_N32},
156c2f8b 11310 {"64", no_argument, NULL, OPTION_64},
ecb4347a 11311 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
ecb4347a 11312 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
dcd410fe 11313 {"mpdr", no_argument, NULL, OPTION_PDR},
dcd410fe 11314 {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
0a44bf69 11315 {"mvxworks-pic", no_argument, NULL, OPTION_MVXWORKS_PIC},
ae948b86 11316#endif /* OBJ_ELF */
f9b4148d 11317
252b5132
RH
11318 {NULL, no_argument, NULL, 0}
11319};
156c2f8b 11320size_t md_longopts_size = sizeof (md_longopts);
252b5132 11321
316f5878
RS
11322/* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
11323 NEW_VALUE. Warn if another value was already specified. Note:
11324 we have to defer parsing the -march and -mtune arguments in order
11325 to handle 'from-abi' correctly, since the ABI might be specified
11326 in a later argument. */
11327
11328static void
17a2f251 11329mips_set_option_string (const char **string_ptr, const char *new_value)
316f5878
RS
11330{
11331 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
11332 as_warn (_("A different %s was already specified, is now %s"),
11333 string_ptr == &mips_arch_string ? "-march" : "-mtune",
11334 new_value);
11335
11336 *string_ptr = new_value;
11337}
11338
252b5132 11339int
17a2f251 11340md_parse_option (int c, char *arg)
252b5132
RH
11341{
11342 switch (c)
11343 {
119d663a
NC
11344 case OPTION_CONSTRUCT_FLOATS:
11345 mips_disable_float_construction = 0;
11346 break;
bdaaa2e1 11347
119d663a
NC
11348 case OPTION_NO_CONSTRUCT_FLOATS:
11349 mips_disable_float_construction = 1;
11350 break;
bdaaa2e1 11351
252b5132
RH
11352 case OPTION_TRAP:
11353 mips_trap = 1;
11354 break;
11355
11356 case OPTION_BREAK:
11357 mips_trap = 0;
11358 break;
11359
11360 case OPTION_EB:
11361 target_big_endian = 1;
11362 break;
11363
11364 case OPTION_EL:
11365 target_big_endian = 0;
11366 break;
11367
11368 case 'O':
4ffff32f
TS
11369 if (arg == NULL)
11370 mips_optimize = 1;
11371 else if (arg[0] == '0')
11372 mips_optimize = 0;
11373 else if (arg[0] == '1')
252b5132
RH
11374 mips_optimize = 1;
11375 else
11376 mips_optimize = 2;
11377 break;
11378
11379 case 'g':
11380 if (arg == NULL)
11381 mips_debug = 2;
11382 else
11383 mips_debug = atoi (arg);
252b5132
RH
11384 break;
11385
11386 case OPTION_MIPS1:
316f5878 11387 file_mips_isa = ISA_MIPS1;
252b5132
RH
11388 break;
11389
11390 case OPTION_MIPS2:
316f5878 11391 file_mips_isa = ISA_MIPS2;
252b5132
RH
11392 break;
11393
11394 case OPTION_MIPS3:
316f5878 11395 file_mips_isa = ISA_MIPS3;
252b5132
RH
11396 break;
11397
11398 case OPTION_MIPS4:
316f5878 11399 file_mips_isa = ISA_MIPS4;
e7af610e
NC
11400 break;
11401
84ea6cf2 11402 case OPTION_MIPS5:
316f5878 11403 file_mips_isa = ISA_MIPS5;
84ea6cf2
NC
11404 break;
11405
e7af610e 11406 case OPTION_MIPS32:
316f5878 11407 file_mips_isa = ISA_MIPS32;
252b5132
RH
11408 break;
11409
af7ee8bf
CD
11410 case OPTION_MIPS32R2:
11411 file_mips_isa = ISA_MIPS32R2;
11412 break;
11413
5f74bc13
CD
11414 case OPTION_MIPS64R2:
11415 file_mips_isa = ISA_MIPS64R2;
11416 break;
11417
84ea6cf2 11418 case OPTION_MIPS64:
316f5878 11419 file_mips_isa = ISA_MIPS64;
84ea6cf2
NC
11420 break;
11421
ec68c924 11422 case OPTION_MTUNE:
316f5878
RS
11423 mips_set_option_string (&mips_tune_string, arg);
11424 break;
ec68c924 11425
316f5878
RS
11426 case OPTION_MARCH:
11427 mips_set_option_string (&mips_arch_string, arg);
252b5132
RH
11428 break;
11429
11430 case OPTION_M4650:
316f5878
RS
11431 mips_set_option_string (&mips_arch_string, "4650");
11432 mips_set_option_string (&mips_tune_string, "4650");
252b5132
RH
11433 break;
11434
11435 case OPTION_NO_M4650:
11436 break;
11437
11438 case OPTION_M4010:
316f5878
RS
11439 mips_set_option_string (&mips_arch_string, "4010");
11440 mips_set_option_string (&mips_tune_string, "4010");
252b5132
RH
11441 break;
11442
11443 case OPTION_NO_M4010:
11444 break;
11445
11446 case OPTION_M4100:
316f5878
RS
11447 mips_set_option_string (&mips_arch_string, "4100");
11448 mips_set_option_string (&mips_tune_string, "4100");
252b5132
RH
11449 break;
11450
11451 case OPTION_NO_M4100:
11452 break;
11453
252b5132 11454 case OPTION_M3900:
316f5878
RS
11455 mips_set_option_string (&mips_arch_string, "3900");
11456 mips_set_option_string (&mips_tune_string, "3900");
252b5132 11457 break;
bdaaa2e1 11458
252b5132
RH
11459 case OPTION_NO_M3900:
11460 break;
11461
deec1734
CD
11462 case OPTION_MDMX:
11463 mips_opts.ase_mdmx = 1;
11464 break;
11465
11466 case OPTION_NO_MDMX:
11467 mips_opts.ase_mdmx = 0;
11468 break;
11469
74cd071d
CF
11470 case OPTION_DSP:
11471 mips_opts.ase_dsp = 1;
8b082fb1 11472 mips_opts.ase_dspr2 = 0;
74cd071d
CF
11473 break;
11474
11475 case OPTION_NO_DSP:
8b082fb1
TS
11476 mips_opts.ase_dsp = 0;
11477 mips_opts.ase_dspr2 = 0;
11478 break;
11479
11480 case OPTION_DSPR2:
11481 mips_opts.ase_dspr2 = 1;
11482 mips_opts.ase_dsp = 1;
11483 break;
11484
11485 case OPTION_NO_DSPR2:
11486 mips_opts.ase_dspr2 = 0;
74cd071d
CF
11487 mips_opts.ase_dsp = 0;
11488 break;
11489
ef2e4d86
CF
11490 case OPTION_MT:
11491 mips_opts.ase_mt = 1;
11492 break;
11493
11494 case OPTION_NO_MT:
11495 mips_opts.ase_mt = 0;
11496 break;
11497
252b5132
RH
11498 case OPTION_MIPS16:
11499 mips_opts.mips16 = 1;
7d10b47d 11500 mips_no_prev_insn ();
252b5132
RH
11501 break;
11502
11503 case OPTION_NO_MIPS16:
11504 mips_opts.mips16 = 0;
7d10b47d 11505 mips_no_prev_insn ();
252b5132
RH
11506 break;
11507
1f25f5d3
CD
11508 case OPTION_MIPS3D:
11509 mips_opts.ase_mips3d = 1;
11510 break;
11511
11512 case OPTION_NO_MIPS3D:
11513 mips_opts.ase_mips3d = 0;
11514 break;
11515
e16bfa71
TS
11516 case OPTION_SMARTMIPS:
11517 mips_opts.ase_smartmips = 1;
11518 break;
11519
11520 case OPTION_NO_SMARTMIPS:
11521 mips_opts.ase_smartmips = 0;
11522 break;
11523
d766e8ec
RS
11524 case OPTION_FIX_VR4120:
11525 mips_fix_vr4120 = 1;
60b63b72
RS
11526 break;
11527
d766e8ec
RS
11528 case OPTION_NO_FIX_VR4120:
11529 mips_fix_vr4120 = 0;
60b63b72
RS
11530 break;
11531
7d8e00cf
RS
11532 case OPTION_FIX_VR4130:
11533 mips_fix_vr4130 = 1;
11534 break;
11535
11536 case OPTION_NO_FIX_VR4130:
11537 mips_fix_vr4130 = 0;
11538 break;
11539
4a6a3df4
AO
11540 case OPTION_RELAX_BRANCH:
11541 mips_relax_branch = 1;
11542 break;
11543
11544 case OPTION_NO_RELAX_BRANCH:
11545 mips_relax_branch = 0;
11546 break;
11547
aa6975fb
ILT
11548 case OPTION_MSHARED:
11549 mips_in_shared = TRUE;
11550 break;
11551
11552 case OPTION_MNO_SHARED:
11553 mips_in_shared = FALSE;
11554 break;
11555
aed1a261
RS
11556 case OPTION_MSYM32:
11557 mips_opts.sym32 = TRUE;
11558 break;
11559
11560 case OPTION_MNO_SYM32:
11561 mips_opts.sym32 = FALSE;
11562 break;
11563
0f074f60 11564#ifdef OBJ_ELF
252b5132
RH
11565 /* When generating ELF code, we permit -KPIC and -call_shared to
11566 select SVR4_PIC, and -non_shared to select no PIC. This is
11567 intended to be compatible with Irix 5. */
11568 case OPTION_CALL_SHARED:
f43abd2b 11569 if (!IS_ELF)
252b5132
RH
11570 {
11571 as_bad (_("-call_shared is supported only for ELF format"));
11572 return 0;
11573 }
11574 mips_pic = SVR4_PIC;
143d77c5 11575 mips_abicalls = TRUE;
252b5132
RH
11576 break;
11577
861fb55a
DJ
11578 case OPTION_CALL_NONPIC:
11579 if (!IS_ELF)
11580 {
11581 as_bad (_("-call_nonpic is supported only for ELF format"));
11582 return 0;
11583 }
11584 mips_pic = NO_PIC;
11585 mips_abicalls = TRUE;
11586 break;
11587
252b5132 11588 case OPTION_NON_SHARED:
f43abd2b 11589 if (!IS_ELF)
252b5132
RH
11590 {
11591 as_bad (_("-non_shared is supported only for ELF format"));
11592 return 0;
11593 }
11594 mips_pic = NO_PIC;
143d77c5 11595 mips_abicalls = FALSE;
252b5132
RH
11596 break;
11597
44075ae2
TS
11598 /* The -xgot option tells the assembler to use 32 bit offsets
11599 when accessing the got in SVR4_PIC mode. It is for Irix
252b5132
RH
11600 compatibility. */
11601 case OPTION_XGOT:
11602 mips_big_got = 1;
11603 break;
0f074f60 11604#endif /* OBJ_ELF */
252b5132
RH
11605
11606 case 'G':
6caf9ef4
TS
11607 g_switch_value = atoi (arg);
11608 g_switch_seen = 1;
252b5132
RH
11609 break;
11610
34ba82a8
TS
11611 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
11612 and -mabi=64. */
252b5132 11613 case OPTION_32:
23fce1e3
NC
11614 if (IS_ELF)
11615 mips_abi = O32_ABI;
11616 /* We silently ignore -32 for non-ELF targets. This greatly
11617 simplifies the construction of the MIPS GAS test cases. */
252b5132
RH
11618 break;
11619
23fce1e3 11620#ifdef OBJ_ELF
e013f690 11621 case OPTION_N32:
f43abd2b 11622 if (!IS_ELF)
34ba82a8
TS
11623 {
11624 as_bad (_("-n32 is supported for ELF format only"));
11625 return 0;
11626 }
316f5878 11627 mips_abi = N32_ABI;
e013f690 11628 break;
252b5132 11629
e013f690 11630 case OPTION_64:
f43abd2b 11631 if (!IS_ELF)
34ba82a8
TS
11632 {
11633 as_bad (_("-64 is supported for ELF format only"));
11634 return 0;
11635 }
316f5878 11636 mips_abi = N64_ABI;
f43abd2b 11637 if (!support_64bit_objects())
e013f690 11638 as_fatal (_("No compiled in support for 64 bit object file format"));
252b5132 11639 break;
ae948b86 11640#endif /* OBJ_ELF */
252b5132 11641
c97ef257 11642 case OPTION_GP32:
a325df1d 11643 file_mips_gp32 = 1;
c97ef257
AH
11644 break;
11645
11646 case OPTION_GP64:
a325df1d 11647 file_mips_gp32 = 0;
c97ef257 11648 break;
252b5132 11649
ca4e0257 11650 case OPTION_FP32:
a325df1d 11651 file_mips_fp32 = 1;
316f5878
RS
11652 break;
11653
11654 case OPTION_FP64:
11655 file_mips_fp32 = 0;
ca4e0257
RS
11656 break;
11657
037b32b9
AN
11658 case OPTION_SINGLE_FLOAT:
11659 file_mips_single_float = 1;
11660 break;
11661
11662 case OPTION_DOUBLE_FLOAT:
11663 file_mips_single_float = 0;
11664 break;
11665
11666 case OPTION_SOFT_FLOAT:
11667 file_mips_soft_float = 1;
11668 break;
11669
11670 case OPTION_HARD_FLOAT:
11671 file_mips_soft_float = 0;
11672 break;
11673
ae948b86 11674#ifdef OBJ_ELF
252b5132 11675 case OPTION_MABI:
f43abd2b 11676 if (!IS_ELF)
34ba82a8
TS
11677 {
11678 as_bad (_("-mabi is supported for ELF format only"));
11679 return 0;
11680 }
e013f690 11681 if (strcmp (arg, "32") == 0)
316f5878 11682 mips_abi = O32_ABI;
e013f690 11683 else if (strcmp (arg, "o64") == 0)
316f5878 11684 mips_abi = O64_ABI;
e013f690 11685 else if (strcmp (arg, "n32") == 0)
316f5878 11686 mips_abi = N32_ABI;
e013f690
TS
11687 else if (strcmp (arg, "64") == 0)
11688 {
316f5878 11689 mips_abi = N64_ABI;
e013f690
TS
11690 if (! support_64bit_objects())
11691 as_fatal (_("No compiled in support for 64 bit object file "
11692 "format"));
11693 }
11694 else if (strcmp (arg, "eabi") == 0)
316f5878 11695 mips_abi = EABI_ABI;
e013f690 11696 else
da0e507f
TS
11697 {
11698 as_fatal (_("invalid abi -mabi=%s"), arg);
11699 return 0;
11700 }
252b5132 11701 break;
e013f690 11702#endif /* OBJ_ELF */
252b5132 11703
6b76fefe 11704 case OPTION_M7000_HILO_FIX:
b34976b6 11705 mips_7000_hilo_fix = TRUE;
6b76fefe
CM
11706 break;
11707
9ee72ff1 11708 case OPTION_MNO_7000_HILO_FIX:
b34976b6 11709 mips_7000_hilo_fix = FALSE;
6b76fefe
CM
11710 break;
11711
ecb4347a
DJ
11712#ifdef OBJ_ELF
11713 case OPTION_MDEBUG:
b34976b6 11714 mips_flag_mdebug = TRUE;
ecb4347a
DJ
11715 break;
11716
11717 case OPTION_NO_MDEBUG:
b34976b6 11718 mips_flag_mdebug = FALSE;
ecb4347a 11719 break;
dcd410fe
RO
11720
11721 case OPTION_PDR:
11722 mips_flag_pdr = TRUE;
11723 break;
11724
11725 case OPTION_NO_PDR:
11726 mips_flag_pdr = FALSE;
11727 break;
0a44bf69
RS
11728
11729 case OPTION_MVXWORKS_PIC:
11730 mips_pic = VXWORKS_PIC;
11731 break;
ecb4347a
DJ
11732#endif /* OBJ_ELF */
11733
252b5132
RH
11734 default:
11735 return 0;
11736 }
11737
11738 return 1;
11739}
316f5878
RS
11740\f
11741/* Set up globals to generate code for the ISA or processor
11742 described by INFO. */
252b5132 11743
252b5132 11744static void
17a2f251 11745mips_set_architecture (const struct mips_cpu_info *info)
252b5132 11746{
316f5878 11747 if (info != 0)
252b5132 11748 {
fef14a42
TS
11749 file_mips_arch = info->cpu;
11750 mips_opts.arch = info->cpu;
316f5878 11751 mips_opts.isa = info->isa;
252b5132 11752 }
252b5132
RH
11753}
11754
252b5132 11755
316f5878 11756/* Likewise for tuning. */
252b5132 11757
316f5878 11758static void
17a2f251 11759mips_set_tune (const struct mips_cpu_info *info)
316f5878
RS
11760{
11761 if (info != 0)
fef14a42 11762 mips_tune = info->cpu;
316f5878 11763}
80cc45a5 11764
34ba82a8 11765
252b5132 11766void
17a2f251 11767mips_after_parse_args (void)
e9670677 11768{
fef14a42
TS
11769 const struct mips_cpu_info *arch_info = 0;
11770 const struct mips_cpu_info *tune_info = 0;
11771
e9670677 11772 /* GP relative stuff not working for PE */
6caf9ef4 11773 if (strncmp (TARGET_OS, "pe", 2) == 0)
e9670677 11774 {
6caf9ef4 11775 if (g_switch_seen && g_switch_value != 0)
e9670677
MR
11776 as_bad (_("-G not supported in this configuration."));
11777 g_switch_value = 0;
11778 }
11779
cac012d6
AO
11780 if (mips_abi == NO_ABI)
11781 mips_abi = MIPS_DEFAULT_ABI;
11782
22923709
RS
11783 /* The following code determines the architecture and register size.
11784 Similar code was added to GCC 3.3 (see override_options() in
11785 config/mips/mips.c). The GAS and GCC code should be kept in sync
11786 as much as possible. */
e9670677 11787
316f5878 11788 if (mips_arch_string != 0)
fef14a42 11789 arch_info = mips_parse_cpu ("-march", mips_arch_string);
e9670677 11790
316f5878 11791 if (file_mips_isa != ISA_UNKNOWN)
e9670677 11792 {
316f5878 11793 /* Handle -mipsN. At this point, file_mips_isa contains the
fef14a42 11794 ISA level specified by -mipsN, while arch_info->isa contains
316f5878 11795 the -march selection (if any). */
fef14a42 11796 if (arch_info != 0)
e9670677 11797 {
316f5878
RS
11798 /* -march takes precedence over -mipsN, since it is more descriptive.
11799 There's no harm in specifying both as long as the ISA levels
11800 are the same. */
fef14a42 11801 if (file_mips_isa != arch_info->isa)
316f5878
RS
11802 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
11803 mips_cpu_info_from_isa (file_mips_isa)->name,
fef14a42 11804 mips_cpu_info_from_isa (arch_info->isa)->name);
e9670677 11805 }
316f5878 11806 else
fef14a42 11807 arch_info = mips_cpu_info_from_isa (file_mips_isa);
e9670677
MR
11808 }
11809
fef14a42
TS
11810 if (arch_info == 0)
11811 arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
e9670677 11812
fef14a42 11813 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
316f5878 11814 as_bad ("-march=%s is not compatible with the selected ABI",
fef14a42
TS
11815 arch_info->name);
11816
11817 mips_set_architecture (arch_info);
11818
11819 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
11820 if (mips_tune_string != 0)
11821 tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
e9670677 11822
fef14a42
TS
11823 if (tune_info == 0)
11824 mips_set_tune (arch_info);
11825 else
11826 mips_set_tune (tune_info);
e9670677 11827
316f5878 11828 if (file_mips_gp32 >= 0)
e9670677 11829 {
316f5878
RS
11830 /* The user specified the size of the integer registers. Make sure
11831 it agrees with the ABI and ISA. */
11832 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
11833 as_bad (_("-mgp64 used with a 32-bit processor"));
11834 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
11835 as_bad (_("-mgp32 used with a 64-bit ABI"));
11836 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
11837 as_bad (_("-mgp64 used with a 32-bit ABI"));
e9670677
MR
11838 }
11839 else
11840 {
316f5878
RS
11841 /* Infer the integer register size from the ABI and processor.
11842 Restrict ourselves to 32-bit registers if that's all the
11843 processor has, or if the ABI cannot handle 64-bit registers. */
11844 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
11845 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
e9670677
MR
11846 }
11847
ad3fea08
TS
11848 switch (file_mips_fp32)
11849 {
11850 default:
11851 case -1:
11852 /* No user specified float register size.
11853 ??? GAS treats single-float processors as though they had 64-bit
11854 float registers (although it complains when double-precision
11855 instructions are used). As things stand, saying they have 32-bit
11856 registers would lead to spurious "register must be even" messages.
11857 So here we assume float registers are never smaller than the
11858 integer ones. */
11859 if (file_mips_gp32 == 0)
11860 /* 64-bit integer registers implies 64-bit float registers. */
11861 file_mips_fp32 = 0;
11862 else if ((mips_opts.ase_mips3d > 0 || mips_opts.ase_mdmx > 0)
11863 && ISA_HAS_64BIT_FPRS (mips_opts.isa))
11864 /* -mips3d and -mdmx imply 64-bit float registers, if possible. */
11865 file_mips_fp32 = 0;
11866 else
11867 /* 32-bit float registers. */
11868 file_mips_fp32 = 1;
11869 break;
11870
11871 /* The user specified the size of the float registers. Check if it
11872 agrees with the ABI and ISA. */
11873 case 0:
11874 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
11875 as_bad (_("-mfp64 used with a 32-bit fpu"));
11876 else if (ABI_NEEDS_32BIT_REGS (mips_abi)
11877 && !ISA_HAS_MXHC1 (mips_opts.isa))
11878 as_warn (_("-mfp64 used with a 32-bit ABI"));
11879 break;
11880 case 1:
11881 if (ABI_NEEDS_64BIT_REGS (mips_abi))
11882 as_warn (_("-mfp32 used with a 64-bit ABI"));
11883 break;
11884 }
e9670677 11885
316f5878 11886 /* End of GCC-shared inference code. */
e9670677 11887
17a2f251
TS
11888 /* This flag is set when we have a 64-bit capable CPU but use only
11889 32-bit wide registers. Note that EABI does not use it. */
11890 if (ISA_HAS_64BIT_REGS (mips_opts.isa)
11891 && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
11892 || mips_abi == O32_ABI))
316f5878 11893 mips_32bitmode = 1;
e9670677
MR
11894
11895 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
11896 as_bad (_("trap exception not supported at ISA 1"));
11897
e9670677
MR
11898 /* If the selected architecture includes support for ASEs, enable
11899 generation of code for them. */
a4672219 11900 if (mips_opts.mips16 == -1)
fef14a42 11901 mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
ffdefa66 11902 if (mips_opts.ase_mips3d == -1)
65263ce3 11903 mips_opts.ase_mips3d = ((arch_info->flags & MIPS_CPU_ASE_MIPS3D)
ad3fea08
TS
11904 && file_mips_fp32 == 0) ? 1 : 0;
11905 if (mips_opts.ase_mips3d && file_mips_fp32 == 1)
11906 as_bad (_("-mfp32 used with -mips3d"));
11907
ffdefa66 11908 if (mips_opts.ase_mdmx == -1)
65263ce3 11909 mips_opts.ase_mdmx = ((arch_info->flags & MIPS_CPU_ASE_MDMX)
ad3fea08
TS
11910 && file_mips_fp32 == 0) ? 1 : 0;
11911 if (mips_opts.ase_mdmx && file_mips_fp32 == 1)
11912 as_bad (_("-mfp32 used with -mdmx"));
11913
11914 if (mips_opts.ase_smartmips == -1)
11915 mips_opts.ase_smartmips = (arch_info->flags & MIPS_CPU_ASE_SMARTMIPS) ? 1 : 0;
11916 if (mips_opts.ase_smartmips && !ISA_SUPPORTS_SMARTMIPS)
11917 as_warn ("%s ISA does not support SmartMIPS",
11918 mips_cpu_info_from_isa (mips_opts.isa)->name);
11919
74cd071d 11920 if (mips_opts.ase_dsp == -1)
ad3fea08
TS
11921 mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0;
11922 if (mips_opts.ase_dsp && !ISA_SUPPORTS_DSP_ASE)
11923 as_warn ("%s ISA does not support DSP ASE",
11924 mips_cpu_info_from_isa (mips_opts.isa)->name);
11925
8b082fb1
TS
11926 if (mips_opts.ase_dspr2 == -1)
11927 {
11928 mips_opts.ase_dspr2 = (arch_info->flags & MIPS_CPU_ASE_DSPR2) ? 1 : 0;
11929 mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0;
11930 }
11931 if (mips_opts.ase_dspr2 && !ISA_SUPPORTS_DSPR2_ASE)
11932 as_warn ("%s ISA does not support DSP R2 ASE",
11933 mips_cpu_info_from_isa (mips_opts.isa)->name);
11934
ef2e4d86 11935 if (mips_opts.ase_mt == -1)
ad3fea08
TS
11936 mips_opts.ase_mt = (arch_info->flags & MIPS_CPU_ASE_MT) ? 1 : 0;
11937 if (mips_opts.ase_mt && !ISA_SUPPORTS_MT_ASE)
8b082fb1 11938 as_warn ("%s ISA does not support MT ASE",
ad3fea08 11939 mips_cpu_info_from_isa (mips_opts.isa)->name);
e9670677 11940
e9670677 11941 file_mips_isa = mips_opts.isa;
a4672219 11942 file_ase_mips16 = mips_opts.mips16;
e9670677
MR
11943 file_ase_mips3d = mips_opts.ase_mips3d;
11944 file_ase_mdmx = mips_opts.ase_mdmx;
e16bfa71 11945 file_ase_smartmips = mips_opts.ase_smartmips;
74cd071d 11946 file_ase_dsp = mips_opts.ase_dsp;
8b082fb1 11947 file_ase_dspr2 = mips_opts.ase_dspr2;
ef2e4d86 11948 file_ase_mt = mips_opts.ase_mt;
e9670677
MR
11949 mips_opts.gp32 = file_mips_gp32;
11950 mips_opts.fp32 = file_mips_fp32;
037b32b9
AN
11951 mips_opts.soft_float = file_mips_soft_float;
11952 mips_opts.single_float = file_mips_single_float;
e9670677 11953
ecb4347a
DJ
11954 if (mips_flag_mdebug < 0)
11955 {
11956#ifdef OBJ_MAYBE_ECOFF
11957 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour)
11958 mips_flag_mdebug = 1;
11959 else
11960#endif /* OBJ_MAYBE_ECOFF */
11961 mips_flag_mdebug = 0;
11962 }
e9670677
MR
11963}
11964\f
11965void
17a2f251 11966mips_init_after_args (void)
252b5132
RH
11967{
11968 /* initialize opcodes */
11969 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
beae10d5 11970 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
252b5132
RH
11971}
11972
11973long
17a2f251 11974md_pcrel_from (fixS *fixP)
252b5132 11975{
a7ebbfdf
TS
11976 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
11977 switch (fixP->fx_r_type)
11978 {
11979 case BFD_RELOC_16_PCREL_S2:
11980 case BFD_RELOC_MIPS_JMP:
11981 /* Return the address of the delay slot. */
11982 return addr + 4;
11983 default:
58ea3d6a 11984 /* We have no relocation type for PC relative MIPS16 instructions. */
64817874
TS
11985 if (fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != now_seg)
11986 as_bad_where (fixP->fx_file, fixP->fx_line,
11987 _("PC relative MIPS16 instruction references a different section"));
a7ebbfdf
TS
11988 return addr;
11989 }
252b5132
RH
11990}
11991
252b5132
RH
11992/* This is called before the symbol table is processed. In order to
11993 work with gcc when using mips-tfile, we must keep all local labels.
11994 However, in other cases, we want to discard them. If we were
11995 called with -g, but we didn't see any debugging information, it may
11996 mean that gcc is smuggling debugging information through to
11997 mips-tfile, in which case we must generate all local labels. */
11998
11999void
17a2f251 12000mips_frob_file_before_adjust (void)
252b5132
RH
12001{
12002#ifndef NO_ECOFF_DEBUGGING
12003 if (ECOFF_DEBUGGING
12004 && mips_debug != 0
12005 && ! ecoff_debugging_seen)
12006 flag_keep_locals = 1;
12007#endif
12008}
12009
3b91255e 12010/* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
55cf6793 12011 the corresponding LO16 reloc. This is called before md_apply_fix and
3b91255e
RS
12012 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
12013 relocation operators.
12014
12015 For our purposes, a %lo() expression matches a %got() or %hi()
12016 expression if:
12017
12018 (a) it refers to the same symbol; and
12019 (b) the offset applied in the %lo() expression is no lower than
12020 the offset applied in the %got() or %hi().
12021
12022 (b) allows us to cope with code like:
12023
12024 lui $4,%hi(foo)
12025 lh $4,%lo(foo+2)($4)
12026
12027 ...which is legal on RELA targets, and has a well-defined behaviour
12028 if the user knows that adding 2 to "foo" will not induce a carry to
12029 the high 16 bits.
12030
12031 When several %lo()s match a particular %got() or %hi(), we use the
12032 following rules to distinguish them:
12033
12034 (1) %lo()s with smaller offsets are a better match than %lo()s with
12035 higher offsets.
12036
12037 (2) %lo()s with no matching %got() or %hi() are better than those
12038 that already have a matching %got() or %hi().
12039
12040 (3) later %lo()s are better than earlier %lo()s.
12041
12042 These rules are applied in order.
12043
12044 (1) means, among other things, that %lo()s with identical offsets are
12045 chosen if they exist.
12046
12047 (2) means that we won't associate several high-part relocations with
12048 the same low-part relocation unless there's no alternative. Having
12049 several high parts for the same low part is a GNU extension; this rule
12050 allows careful users to avoid it.
12051
12052 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
12053 with the last high-part relocation being at the front of the list.
12054 It therefore makes sense to choose the last matching low-part
12055 relocation, all other things being equal. It's also easier
12056 to code that way. */
252b5132
RH
12057
12058void
17a2f251 12059mips_frob_file (void)
252b5132
RH
12060{
12061 struct mips_hi_fixup *l;
35903be0 12062 bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED;
252b5132
RH
12063
12064 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
12065 {
12066 segment_info_type *seginfo;
3b91255e
RS
12067 bfd_boolean matched_lo_p;
12068 fixS **hi_pos, **lo_pos, **pos;
252b5132 12069
5919d012 12070 assert (reloc_needs_lo_p (l->fixp->fx_r_type));
252b5132 12071
5919d012
RS
12072 /* If a GOT16 relocation turns out to be against a global symbol,
12073 there isn't supposed to be a matching LO. */
738e5348 12074 if (got16_reloc_p (l->fixp->fx_r_type)
5919d012
RS
12075 && !pic_need_relax (l->fixp->fx_addsy, l->seg))
12076 continue;
12077
12078 /* Check quickly whether the next fixup happens to be a matching %lo. */
12079 if (fixup_has_matching_lo_p (l->fixp))
252b5132
RH
12080 continue;
12081
252b5132 12082 seginfo = seg_info (l->seg);
252b5132 12083
3b91255e
RS
12084 /* Set HI_POS to the position of this relocation in the chain.
12085 Set LO_POS to the position of the chosen low-part relocation.
12086 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
12087 relocation that matches an immediately-preceding high-part
12088 relocation. */
12089 hi_pos = NULL;
12090 lo_pos = NULL;
12091 matched_lo_p = FALSE;
738e5348 12092 looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type);
35903be0 12093
3b91255e
RS
12094 for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
12095 {
12096 if (*pos == l->fixp)
12097 hi_pos = pos;
12098
35903be0 12099 if ((*pos)->fx_r_type == looking_for_rtype
3b91255e
RS
12100 && (*pos)->fx_addsy == l->fixp->fx_addsy
12101 && (*pos)->fx_offset >= l->fixp->fx_offset
12102 && (lo_pos == NULL
12103 || (*pos)->fx_offset < (*lo_pos)->fx_offset
12104 || (!matched_lo_p
12105 && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
12106 lo_pos = pos;
12107
12108 matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
12109 && fixup_has_matching_lo_p (*pos));
12110 }
12111
12112 /* If we found a match, remove the high-part relocation from its
12113 current position and insert it before the low-part relocation.
12114 Make the offsets match so that fixup_has_matching_lo_p()
12115 will return true.
12116
12117 We don't warn about unmatched high-part relocations since some
12118 versions of gcc have been known to emit dead "lui ...%hi(...)"
12119 instructions. */
12120 if (lo_pos != NULL)
12121 {
12122 l->fixp->fx_offset = (*lo_pos)->fx_offset;
12123 if (l->fixp->fx_next != *lo_pos)
252b5132 12124 {
3b91255e
RS
12125 *hi_pos = l->fixp->fx_next;
12126 l->fixp->fx_next = *lo_pos;
12127 *lo_pos = l->fixp;
252b5132 12128 }
252b5132
RH
12129 }
12130 }
12131}
12132
3e722fb5 12133/* We may have combined relocations without symbols in the N32/N64 ABI.
f6688943 12134 We have to prevent gas from dropping them. */
252b5132 12135
252b5132 12136int
17a2f251 12137mips_force_relocation (fixS *fixp)
252b5132 12138{
ae6063d4 12139 if (generic_force_reloc (fixp))
252b5132
RH
12140 return 1;
12141
f6688943
TS
12142 if (HAVE_NEWABI
12143 && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr
12144 && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB
738e5348
RS
12145 || hi16_reloc_p (fixp->fx_r_type)
12146 || lo16_reloc_p (fixp->fx_r_type)))
f6688943
TS
12147 return 1;
12148
3e722fb5 12149 return 0;
252b5132
RH
12150}
12151
12152/* Apply a fixup to the object file. */
12153
94f592af 12154void
55cf6793 12155md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
252b5132 12156{
874e8986 12157 bfd_byte *buf;
98aa84af 12158 long insn;
a7ebbfdf 12159 reloc_howto_type *howto;
252b5132 12160
a7ebbfdf
TS
12161 /* We ignore generic BFD relocations we don't know about. */
12162 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
12163 if (! howto)
12164 return;
65551fa4 12165
252b5132
RH
12166 assert (fixP->fx_size == 4
12167 || fixP->fx_r_type == BFD_RELOC_16
12168 || fixP->fx_r_type == BFD_RELOC_64
f6688943
TS
12169 || fixP->fx_r_type == BFD_RELOC_CTOR
12170 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
252b5132 12171 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
741d6ea8
JM
12172 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
12173 || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
252b5132 12174
a7ebbfdf 12175 buf = (bfd_byte *) (fixP->fx_frag->fr_literal + fixP->fx_where);
252b5132 12176
3994f87e 12177 assert (!fixP->fx_pcrel || fixP->fx_r_type == BFD_RELOC_16_PCREL_S2);
b1dca8ee
RS
12178
12179 /* Don't treat parts of a composite relocation as done. There are two
12180 reasons for this:
12181
12182 (1) The second and third parts will be against 0 (RSS_UNDEF) but
12183 should nevertheless be emitted if the first part is.
12184
12185 (2) In normal usage, composite relocations are never assembly-time
12186 constants. The easiest way of dealing with the pathological
12187 exceptions is to generate a relocation against STN_UNDEF and
12188 leave everything up to the linker. */
3994f87e 12189 if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0)
252b5132
RH
12190 fixP->fx_done = 1;
12191
12192 switch (fixP->fx_r_type)
12193 {
3f98094e
DJ
12194 case BFD_RELOC_MIPS_TLS_GD:
12195 case BFD_RELOC_MIPS_TLS_LDM:
741d6ea8
JM
12196 case BFD_RELOC_MIPS_TLS_DTPREL32:
12197 case BFD_RELOC_MIPS_TLS_DTPREL64:
3f98094e
DJ
12198 case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
12199 case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
12200 case BFD_RELOC_MIPS_TLS_GOTTPREL:
12201 case BFD_RELOC_MIPS_TLS_TPREL_HI16:
12202 case BFD_RELOC_MIPS_TLS_TPREL_LO16:
12203 S_SET_THREAD_LOCAL (fixP->fx_addsy);
12204 /* fall through */
12205
252b5132 12206 case BFD_RELOC_MIPS_JMP:
e369bcce
TS
12207 case BFD_RELOC_MIPS_SHIFT5:
12208 case BFD_RELOC_MIPS_SHIFT6:
12209 case BFD_RELOC_MIPS_GOT_DISP:
12210 case BFD_RELOC_MIPS_GOT_PAGE:
12211 case BFD_RELOC_MIPS_GOT_OFST:
12212 case BFD_RELOC_MIPS_SUB:
12213 case BFD_RELOC_MIPS_INSERT_A:
12214 case BFD_RELOC_MIPS_INSERT_B:
12215 case BFD_RELOC_MIPS_DELETE:
12216 case BFD_RELOC_MIPS_HIGHEST:
12217 case BFD_RELOC_MIPS_HIGHER:
12218 case BFD_RELOC_MIPS_SCN_DISP:
12219 case BFD_RELOC_MIPS_REL16:
12220 case BFD_RELOC_MIPS_RELGOT:
12221 case BFD_RELOC_MIPS_JALR:
252b5132
RH
12222 case BFD_RELOC_HI16:
12223 case BFD_RELOC_HI16_S:
cdf6fd85 12224 case BFD_RELOC_GPREL16:
252b5132
RH
12225 case BFD_RELOC_MIPS_LITERAL:
12226 case BFD_RELOC_MIPS_CALL16:
12227 case BFD_RELOC_MIPS_GOT16:
cdf6fd85 12228 case BFD_RELOC_GPREL32:
252b5132
RH
12229 case BFD_RELOC_MIPS_GOT_HI16:
12230 case BFD_RELOC_MIPS_GOT_LO16:
12231 case BFD_RELOC_MIPS_CALL_HI16:
12232 case BFD_RELOC_MIPS_CALL_LO16:
12233 case BFD_RELOC_MIPS16_GPREL:
738e5348
RS
12234 case BFD_RELOC_MIPS16_GOT16:
12235 case BFD_RELOC_MIPS16_CALL16:
d6f16593
MR
12236 case BFD_RELOC_MIPS16_HI16:
12237 case BFD_RELOC_MIPS16_HI16_S:
252b5132 12238 case BFD_RELOC_MIPS16_JMP:
54f4ddb3 12239 /* Nothing needed to do. The value comes from the reloc entry. */
252b5132
RH
12240 break;
12241
252b5132
RH
12242 case BFD_RELOC_64:
12243 /* This is handled like BFD_RELOC_32, but we output a sign
12244 extended value if we are only 32 bits. */
3e722fb5 12245 if (fixP->fx_done)
252b5132
RH
12246 {
12247 if (8 <= sizeof (valueT))
2132e3a3 12248 md_number_to_chars ((char *) buf, *valP, 8);
252b5132
RH
12249 else
12250 {
a7ebbfdf 12251 valueT hiv;
252b5132 12252
a7ebbfdf 12253 if ((*valP & 0x80000000) != 0)
252b5132
RH
12254 hiv = 0xffffffff;
12255 else
12256 hiv = 0;
b215186b 12257 md_number_to_chars ((char *)(buf + (target_big_endian ? 4 : 0)),
a7ebbfdf 12258 *valP, 4);
b215186b 12259 md_number_to_chars ((char *)(buf + (target_big_endian ? 0 : 4)),
a7ebbfdf 12260 hiv, 4);
252b5132
RH
12261 }
12262 }
12263 break;
12264
056350c6 12265 case BFD_RELOC_RVA:
252b5132 12266 case BFD_RELOC_32:
252b5132
RH
12267 case BFD_RELOC_16:
12268 /* If we are deleting this reloc entry, we must fill in the
54f4ddb3
TS
12269 value now. This can happen if we have a .word which is not
12270 resolved when it appears but is later defined. */
252b5132 12271 if (fixP->fx_done)
54f4ddb3 12272 md_number_to_chars ((char *) buf, *valP, fixP->fx_size);
252b5132
RH
12273 break;
12274
12275 case BFD_RELOC_LO16:
d6f16593 12276 case BFD_RELOC_MIPS16_LO16:
3e722fb5
CD
12277 /* FIXME: Now that embedded-PIC is gone, some of this code/comment
12278 may be safe to remove, but if so it's not obvious. */
252b5132
RH
12279 /* When handling an embedded PIC switch statement, we can wind
12280 up deleting a LO16 reloc. See the 'o' case in mips_ip. */
12281 if (fixP->fx_done)
12282 {
a7ebbfdf 12283 if (*valP + 0x8000 > 0xffff)
252b5132
RH
12284 as_bad_where (fixP->fx_file, fixP->fx_line,
12285 _("relocation overflow"));
252b5132
RH
12286 if (target_big_endian)
12287 buf += 2;
2132e3a3 12288 md_number_to_chars ((char *) buf, *valP, 2);
252b5132
RH
12289 }
12290 break;
12291
12292 case BFD_RELOC_16_PCREL_S2:
a7ebbfdf 12293 if ((*valP & 0x3) != 0)
cb56d3d3 12294 as_bad_where (fixP->fx_file, fixP->fx_line,
bad36eac 12295 _("Branch to misaligned address (%lx)"), (long) *valP);
cb56d3d3 12296
54f4ddb3
TS
12297 /* We need to save the bits in the instruction since fixup_segment()
12298 might be deleting the relocation entry (i.e., a branch within
12299 the current segment). */
a7ebbfdf 12300 if (! fixP->fx_done)
bb2d6cd7 12301 break;
252b5132 12302
54f4ddb3 12303 /* Update old instruction data. */
252b5132
RH
12304 if (target_big_endian)
12305 insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
12306 else
12307 insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
12308
a7ebbfdf
TS
12309 if (*valP + 0x20000 <= 0x3ffff)
12310 {
12311 insn |= (*valP >> 2) & 0xffff;
2132e3a3 12312 md_number_to_chars ((char *) buf, insn, 4);
a7ebbfdf
TS
12313 }
12314 else if (mips_pic == NO_PIC
12315 && fixP->fx_done
12316 && fixP->fx_frag->fr_address >= text_section->vma
12317 && (fixP->fx_frag->fr_address
587aac4e 12318 < text_section->vma + bfd_get_section_size (text_section))
a7ebbfdf
TS
12319 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
12320 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
12321 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
252b5132
RH
12322 {
12323 /* The branch offset is too large. If this is an
12324 unconditional branch, and we are not generating PIC code,
12325 we can convert it to an absolute jump instruction. */
a7ebbfdf
TS
12326 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
12327 insn = 0x0c000000; /* jal */
252b5132 12328 else
a7ebbfdf
TS
12329 insn = 0x08000000; /* j */
12330 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
12331 fixP->fx_done = 0;
12332 fixP->fx_addsy = section_symbol (text_section);
12333 *valP += md_pcrel_from (fixP);
2132e3a3 12334 md_number_to_chars ((char *) buf, insn, 4);
a7ebbfdf
TS
12335 }
12336 else
12337 {
12338 /* If we got here, we have branch-relaxation disabled,
12339 and there's nothing we can do to fix this instruction
12340 without turning it into a longer sequence. */
12341 as_bad_where (fixP->fx_file, fixP->fx_line,
12342 _("Branch out of range"));
252b5132 12343 }
252b5132
RH
12344 break;
12345
12346 case BFD_RELOC_VTABLE_INHERIT:
12347 fixP->fx_done = 0;
12348 if (fixP->fx_addsy
12349 && !S_IS_DEFINED (fixP->fx_addsy)
12350 && !S_IS_WEAK (fixP->fx_addsy))
12351 S_SET_WEAK (fixP->fx_addsy);
12352 break;
12353
12354 case BFD_RELOC_VTABLE_ENTRY:
12355 fixP->fx_done = 0;
12356 break;
12357
12358 default:
12359 internalError ();
12360 }
a7ebbfdf
TS
12361
12362 /* Remember value for tc_gen_reloc. */
12363 fixP->fx_addnumber = *valP;
252b5132
RH
12364}
12365
252b5132 12366static symbolS *
17a2f251 12367get_symbol (void)
252b5132
RH
12368{
12369 int c;
12370 char *name;
12371 symbolS *p;
12372
12373 name = input_line_pointer;
12374 c = get_symbol_end ();
12375 p = (symbolS *) symbol_find_or_make (name);
12376 *input_line_pointer = c;
12377 return p;
12378}
12379
742a56fe
RS
12380/* Align the current frag to a given power of two. If a particular
12381 fill byte should be used, FILL points to an integer that contains
12382 that byte, otherwise FILL is null.
12383
12384 The MIPS assembler also automatically adjusts any preceding
12385 label. */
252b5132
RH
12386
12387static void
742a56fe 12388mips_align (int to, int *fill, symbolS *label)
252b5132 12389{
7d10b47d 12390 mips_emit_delays ();
742a56fe
RS
12391 mips_record_mips16_mode ();
12392 if (fill == NULL && subseg_text_p (now_seg))
12393 frag_align_code (to, 0);
12394 else
12395 frag_align (to, fill ? *fill : 0, 0);
252b5132
RH
12396 record_alignment (now_seg, to);
12397 if (label != NULL)
12398 {
12399 assert (S_GET_SEGMENT (label) == now_seg);
49309057 12400 symbol_set_frag (label, frag_now);
252b5132
RH
12401 S_SET_VALUE (label, (valueT) frag_now_fix ());
12402 }
12403}
12404
12405/* Align to a given power of two. .align 0 turns off the automatic
12406 alignment used by the data creating pseudo-ops. */
12407
12408static void
17a2f251 12409s_align (int x ATTRIBUTE_UNUSED)
252b5132 12410{
742a56fe 12411 int temp, fill_value, *fill_ptr;
49954fb4 12412 long max_alignment = 28;
252b5132 12413
54f4ddb3 12414 /* o Note that the assembler pulls down any immediately preceding label
252b5132 12415 to the aligned address.
54f4ddb3 12416 o It's not documented but auto alignment is reinstated by
252b5132 12417 a .align pseudo instruction.
54f4ddb3 12418 o Note also that after auto alignment is turned off the mips assembler
252b5132 12419 issues an error on attempt to assemble an improperly aligned data item.
54f4ddb3 12420 We don't. */
252b5132
RH
12421
12422 temp = get_absolute_expression ();
12423 if (temp > max_alignment)
12424 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
12425 else if (temp < 0)
12426 {
12427 as_warn (_("Alignment negative: 0 assumed."));
12428 temp = 0;
12429 }
12430 if (*input_line_pointer == ',')
12431 {
f9419b05 12432 ++input_line_pointer;
742a56fe
RS
12433 fill_value = get_absolute_expression ();
12434 fill_ptr = &fill_value;
252b5132
RH
12435 }
12436 else
742a56fe 12437 fill_ptr = 0;
252b5132
RH
12438 if (temp)
12439 {
a8dbcb85
TS
12440 segment_info_type *si = seg_info (now_seg);
12441 struct insn_label_list *l = si->label_list;
54f4ddb3 12442 /* Auto alignment should be switched on by next section change. */
252b5132 12443 auto_align = 1;
742a56fe 12444 mips_align (temp, fill_ptr, l != NULL ? l->label : NULL);
252b5132
RH
12445 }
12446 else
12447 {
12448 auto_align = 0;
12449 }
12450
12451 demand_empty_rest_of_line ();
12452}
12453
252b5132 12454static void
17a2f251 12455s_change_sec (int sec)
252b5132
RH
12456{
12457 segT seg;
12458
252b5132
RH
12459#ifdef OBJ_ELF
12460 /* The ELF backend needs to know that we are changing sections, so
12461 that .previous works correctly. We could do something like check
b6ff326e 12462 for an obj_section_change_hook macro, but that might be confusing
252b5132
RH
12463 as it would not be appropriate to use it in the section changing
12464 functions in read.c, since obj-elf.c intercepts those. FIXME:
12465 This should be cleaner, somehow. */
f43abd2b
TS
12466 if (IS_ELF)
12467 obj_elf_section_change_hook ();
252b5132
RH
12468#endif
12469
7d10b47d 12470 mips_emit_delays ();
252b5132
RH
12471 switch (sec)
12472 {
12473 case 't':
12474 s_text (0);
12475 break;
12476 case 'd':
12477 s_data (0);
12478 break;
12479 case 'b':
12480 subseg_set (bss_section, (subsegT) get_absolute_expression ());
12481 demand_empty_rest_of_line ();
12482 break;
12483
12484 case 'r':
4d0d148d
TS
12485 seg = subseg_new (RDATA_SECTION_NAME,
12486 (subsegT) get_absolute_expression ());
f43abd2b 12487 if (IS_ELF)
252b5132 12488 {
4d0d148d
TS
12489 bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
12490 | SEC_READONLY | SEC_RELOC
12491 | SEC_DATA));
c41e87e3 12492 if (strncmp (TARGET_OS, "elf", 3) != 0)
4d0d148d 12493 record_alignment (seg, 4);
252b5132 12494 }
4d0d148d 12495 demand_empty_rest_of_line ();
252b5132
RH
12496 break;
12497
12498 case 's':
4d0d148d 12499 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
f43abd2b 12500 if (IS_ELF)
252b5132 12501 {
4d0d148d
TS
12502 bfd_set_section_flags (stdoutput, seg,
12503 SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
c41e87e3 12504 if (strncmp (TARGET_OS, "elf", 3) != 0)
4d0d148d 12505 record_alignment (seg, 4);
252b5132 12506 }
4d0d148d
TS
12507 demand_empty_rest_of_line ();
12508 break;
252b5132
RH
12509 }
12510
12511 auto_align = 1;
12512}
b34976b6 12513
cca86cc8 12514void
17a2f251 12515s_change_section (int ignore ATTRIBUTE_UNUSED)
cca86cc8 12516{
7ed4a06a 12517#ifdef OBJ_ELF
cca86cc8
SC
12518 char *section_name;
12519 char c;
684022ea 12520 char next_c = 0;
cca86cc8
SC
12521 int section_type;
12522 int section_flag;
12523 int section_entry_size;
12524 int section_alignment;
b34976b6 12525
f43abd2b 12526 if (!IS_ELF)
7ed4a06a
TS
12527 return;
12528
cca86cc8
SC
12529 section_name = input_line_pointer;
12530 c = get_symbol_end ();
a816d1ed
AO
12531 if (c)
12532 next_c = *(input_line_pointer + 1);
cca86cc8 12533
4cf0dd0d
TS
12534 /* Do we have .section Name<,"flags">? */
12535 if (c != ',' || (c == ',' && next_c == '"'))
cca86cc8 12536 {
4cf0dd0d
TS
12537 /* just after name is now '\0'. */
12538 *input_line_pointer = c;
cca86cc8
SC
12539 input_line_pointer = section_name;
12540 obj_elf_section (ignore);
12541 return;
12542 }
12543 input_line_pointer++;
12544
12545 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
12546 if (c == ',')
12547 section_type = get_absolute_expression ();
12548 else
12549 section_type = 0;
12550 if (*input_line_pointer++ == ',')
12551 section_flag = get_absolute_expression ();
12552 else
12553 section_flag = 0;
12554 if (*input_line_pointer++ == ',')
12555 section_entry_size = get_absolute_expression ();
12556 else
12557 section_entry_size = 0;
12558 if (*input_line_pointer++ == ',')
12559 section_alignment = get_absolute_expression ();
12560 else
12561 section_alignment = 0;
12562
a816d1ed
AO
12563 section_name = xstrdup (section_name);
12564
8ab8a5c8
RS
12565 /* When using the generic form of .section (as implemented by obj-elf.c),
12566 there's no way to set the section type to SHT_MIPS_DWARF. Users have
12567 traditionally had to fall back on the more common @progbits instead.
12568
12569 There's nothing really harmful in this, since bfd will correct
12570 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
708587a4 12571 means that, for backwards compatibility, the special_section entries
8ab8a5c8
RS
12572 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
12573
12574 Even so, we shouldn't force users of the MIPS .section syntax to
12575 incorrectly label the sections as SHT_PROGBITS. The best compromise
12576 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
12577 generic type-checking code. */
12578 if (section_type == SHT_MIPS_DWARF)
12579 section_type = SHT_PROGBITS;
12580
cca86cc8
SC
12581 obj_elf_change_section (section_name, section_type, section_flag,
12582 section_entry_size, 0, 0, 0);
a816d1ed
AO
12583
12584 if (now_seg->name != section_name)
12585 free (section_name);
7ed4a06a 12586#endif /* OBJ_ELF */
cca86cc8 12587}
252b5132
RH
12588
12589void
17a2f251 12590mips_enable_auto_align (void)
252b5132
RH
12591{
12592 auto_align = 1;
12593}
12594
12595static void
17a2f251 12596s_cons (int log_size)
252b5132 12597{
a8dbcb85
TS
12598 segment_info_type *si = seg_info (now_seg);
12599 struct insn_label_list *l = si->label_list;
252b5132
RH
12600 symbolS *label;
12601
a8dbcb85 12602 label = l != NULL ? l->label : NULL;
7d10b47d 12603 mips_emit_delays ();
252b5132
RH
12604 if (log_size > 0 && auto_align)
12605 mips_align (log_size, 0, label);
12606 mips_clear_insn_labels ();
12607 cons (1 << log_size);
12608}
12609
12610static void
17a2f251 12611s_float_cons (int type)
252b5132 12612{
a8dbcb85
TS
12613 segment_info_type *si = seg_info (now_seg);
12614 struct insn_label_list *l = si->label_list;
252b5132
RH
12615 symbolS *label;
12616
a8dbcb85 12617 label = l != NULL ? l->label : NULL;
252b5132 12618
7d10b47d 12619 mips_emit_delays ();
252b5132
RH
12620
12621 if (auto_align)
49309057
ILT
12622 {
12623 if (type == 'd')
12624 mips_align (3, 0, label);
12625 else
12626 mips_align (2, 0, label);
12627 }
252b5132
RH
12628
12629 mips_clear_insn_labels ();
12630
12631 float_cons (type);
12632}
12633
12634/* Handle .globl. We need to override it because on Irix 5 you are
12635 permitted to say
12636 .globl foo .text
12637 where foo is an undefined symbol, to mean that foo should be
12638 considered to be the address of a function. */
12639
12640static void
17a2f251 12641s_mips_globl (int x ATTRIBUTE_UNUSED)
252b5132
RH
12642{
12643 char *name;
12644 int c;
12645 symbolS *symbolP;
12646 flagword flag;
12647
8a06b769 12648 do
252b5132 12649 {
8a06b769 12650 name = input_line_pointer;
252b5132 12651 c = get_symbol_end ();
8a06b769
TS
12652 symbolP = symbol_find_or_make (name);
12653 S_SET_EXTERNAL (symbolP);
12654
252b5132 12655 *input_line_pointer = c;
8a06b769 12656 SKIP_WHITESPACE ();
252b5132 12657
8a06b769
TS
12658 /* On Irix 5, every global symbol that is not explicitly labelled as
12659 being a function is apparently labelled as being an object. */
12660 flag = BSF_OBJECT;
252b5132 12661
8a06b769
TS
12662 if (!is_end_of_line[(unsigned char) *input_line_pointer]
12663 && (*input_line_pointer != ','))
12664 {
12665 char *secname;
12666 asection *sec;
12667
12668 secname = input_line_pointer;
12669 c = get_symbol_end ();
12670 sec = bfd_get_section_by_name (stdoutput, secname);
12671 if (sec == NULL)
12672 as_bad (_("%s: no such section"), secname);
12673 *input_line_pointer = c;
12674
12675 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
12676 flag = BSF_FUNCTION;
12677 }
12678
12679 symbol_get_bfdsym (symbolP)->flags |= flag;
12680
12681 c = *input_line_pointer;
12682 if (c == ',')
12683 {
12684 input_line_pointer++;
12685 SKIP_WHITESPACE ();
12686 if (is_end_of_line[(unsigned char) *input_line_pointer])
12687 c = '\n';
12688 }
12689 }
12690 while (c == ',');
252b5132 12691
252b5132
RH
12692 demand_empty_rest_of_line ();
12693}
12694
12695static void
17a2f251 12696s_option (int x ATTRIBUTE_UNUSED)
252b5132
RH
12697{
12698 char *opt;
12699 char c;
12700
12701 opt = input_line_pointer;
12702 c = get_symbol_end ();
12703
12704 if (*opt == 'O')
12705 {
12706 /* FIXME: What does this mean? */
12707 }
12708 else if (strncmp (opt, "pic", 3) == 0)
12709 {
12710 int i;
12711
12712 i = atoi (opt + 3);
12713 if (i == 0)
12714 mips_pic = NO_PIC;
12715 else if (i == 2)
143d77c5 12716 {
252b5132 12717 mips_pic = SVR4_PIC;
143d77c5
EC
12718 mips_abicalls = TRUE;
12719 }
252b5132
RH
12720 else
12721 as_bad (_(".option pic%d not supported"), i);
12722
4d0d148d 12723 if (mips_pic == SVR4_PIC)
252b5132
RH
12724 {
12725 if (g_switch_seen && g_switch_value != 0)
12726 as_warn (_("-G may not be used with SVR4 PIC code"));
12727 g_switch_value = 0;
12728 bfd_set_gp_size (stdoutput, 0);
12729 }
12730 }
12731 else
12732 as_warn (_("Unrecognized option \"%s\""), opt);
12733
12734 *input_line_pointer = c;
12735 demand_empty_rest_of_line ();
12736}
12737
12738/* This structure is used to hold a stack of .set values. */
12739
e972090a
NC
12740struct mips_option_stack
12741{
252b5132
RH
12742 struct mips_option_stack *next;
12743 struct mips_set_options options;
12744};
12745
12746static struct mips_option_stack *mips_opts_stack;
12747
12748/* Handle the .set pseudo-op. */
12749
12750static void
17a2f251 12751s_mipsset (int x ATTRIBUTE_UNUSED)
252b5132
RH
12752{
12753 char *name = input_line_pointer, ch;
12754
12755 while (!is_end_of_line[(unsigned char) *input_line_pointer])
f9419b05 12756 ++input_line_pointer;
252b5132
RH
12757 ch = *input_line_pointer;
12758 *input_line_pointer = '\0';
12759
12760 if (strcmp (name, "reorder") == 0)
12761 {
7d10b47d
RS
12762 if (mips_opts.noreorder)
12763 end_noreorder ();
252b5132
RH
12764 }
12765 else if (strcmp (name, "noreorder") == 0)
12766 {
7d10b47d
RS
12767 if (!mips_opts.noreorder)
12768 start_noreorder ();
252b5132 12769 }
741fe287
MR
12770 else if (strncmp (name, "at=", 3) == 0)
12771 {
12772 char *s = name + 3;
12773
12774 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at))
12775 as_bad (_("Unrecognized register name `%s'"), s);
12776 }
252b5132
RH
12777 else if (strcmp (name, "at") == 0)
12778 {
741fe287 12779 mips_opts.at = ATREG;
252b5132
RH
12780 }
12781 else if (strcmp (name, "noat") == 0)
12782 {
741fe287 12783 mips_opts.at = ZERO;
252b5132
RH
12784 }
12785 else if (strcmp (name, "macro") == 0)
12786 {
12787 mips_opts.warn_about_macros = 0;
12788 }
12789 else if (strcmp (name, "nomacro") == 0)
12790 {
12791 if (mips_opts.noreorder == 0)
12792 as_bad (_("`noreorder' must be set before `nomacro'"));
12793 mips_opts.warn_about_macros = 1;
12794 }
12795 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
12796 {
12797 mips_opts.nomove = 0;
12798 }
12799 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
12800 {
12801 mips_opts.nomove = 1;
12802 }
12803 else if (strcmp (name, "bopt") == 0)
12804 {
12805 mips_opts.nobopt = 0;
12806 }
12807 else if (strcmp (name, "nobopt") == 0)
12808 {
12809 mips_opts.nobopt = 1;
12810 }
ad3fea08
TS
12811 else if (strcmp (name, "gp=default") == 0)
12812 mips_opts.gp32 = file_mips_gp32;
12813 else if (strcmp (name, "gp=32") == 0)
12814 mips_opts.gp32 = 1;
12815 else if (strcmp (name, "gp=64") == 0)
12816 {
12817 if (!ISA_HAS_64BIT_REGS (mips_opts.isa))
12818 as_warn ("%s isa does not support 64-bit registers",
12819 mips_cpu_info_from_isa (mips_opts.isa)->name);
12820 mips_opts.gp32 = 0;
12821 }
12822 else if (strcmp (name, "fp=default") == 0)
12823 mips_opts.fp32 = file_mips_fp32;
12824 else if (strcmp (name, "fp=32") == 0)
12825 mips_opts.fp32 = 1;
12826 else if (strcmp (name, "fp=64") == 0)
12827 {
12828 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
12829 as_warn ("%s isa does not support 64-bit floating point registers",
12830 mips_cpu_info_from_isa (mips_opts.isa)->name);
12831 mips_opts.fp32 = 0;
12832 }
037b32b9
AN
12833 else if (strcmp (name, "softfloat") == 0)
12834 mips_opts.soft_float = 1;
12835 else if (strcmp (name, "hardfloat") == 0)
12836 mips_opts.soft_float = 0;
12837 else if (strcmp (name, "singlefloat") == 0)
12838 mips_opts.single_float = 1;
12839 else if (strcmp (name, "doublefloat") == 0)
12840 mips_opts.single_float = 0;
252b5132
RH
12841 else if (strcmp (name, "mips16") == 0
12842 || strcmp (name, "MIPS-16") == 0)
12843 mips_opts.mips16 = 1;
12844 else if (strcmp (name, "nomips16") == 0
12845 || strcmp (name, "noMIPS-16") == 0)
12846 mips_opts.mips16 = 0;
e16bfa71
TS
12847 else if (strcmp (name, "smartmips") == 0)
12848 {
ad3fea08 12849 if (!ISA_SUPPORTS_SMARTMIPS)
e16bfa71
TS
12850 as_warn ("%s ISA does not support SmartMIPS ASE",
12851 mips_cpu_info_from_isa (mips_opts.isa)->name);
12852 mips_opts.ase_smartmips = 1;
12853 }
12854 else if (strcmp (name, "nosmartmips") == 0)
12855 mips_opts.ase_smartmips = 0;
1f25f5d3
CD
12856 else if (strcmp (name, "mips3d") == 0)
12857 mips_opts.ase_mips3d = 1;
12858 else if (strcmp (name, "nomips3d") == 0)
12859 mips_opts.ase_mips3d = 0;
a4672219
TS
12860 else if (strcmp (name, "mdmx") == 0)
12861 mips_opts.ase_mdmx = 1;
12862 else if (strcmp (name, "nomdmx") == 0)
12863 mips_opts.ase_mdmx = 0;
74cd071d 12864 else if (strcmp (name, "dsp") == 0)
ad3fea08
TS
12865 {
12866 if (!ISA_SUPPORTS_DSP_ASE)
12867 as_warn ("%s ISA does not support DSP ASE",
12868 mips_cpu_info_from_isa (mips_opts.isa)->name);
12869 mips_opts.ase_dsp = 1;
8b082fb1 12870 mips_opts.ase_dspr2 = 0;
ad3fea08 12871 }
74cd071d 12872 else if (strcmp (name, "nodsp") == 0)
8b082fb1
TS
12873 {
12874 mips_opts.ase_dsp = 0;
12875 mips_opts.ase_dspr2 = 0;
12876 }
12877 else if (strcmp (name, "dspr2") == 0)
12878 {
12879 if (!ISA_SUPPORTS_DSPR2_ASE)
12880 as_warn ("%s ISA does not support DSP R2 ASE",
12881 mips_cpu_info_from_isa (mips_opts.isa)->name);
12882 mips_opts.ase_dspr2 = 1;
12883 mips_opts.ase_dsp = 1;
12884 }
12885 else if (strcmp (name, "nodspr2") == 0)
12886 {
12887 mips_opts.ase_dspr2 = 0;
12888 mips_opts.ase_dsp = 0;
12889 }
ef2e4d86 12890 else if (strcmp (name, "mt") == 0)
ad3fea08
TS
12891 {
12892 if (!ISA_SUPPORTS_MT_ASE)
12893 as_warn ("%s ISA does not support MT ASE",
12894 mips_cpu_info_from_isa (mips_opts.isa)->name);
12895 mips_opts.ase_mt = 1;
12896 }
ef2e4d86
CF
12897 else if (strcmp (name, "nomt") == 0)
12898 mips_opts.ase_mt = 0;
1a2c1fad 12899 else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
252b5132 12900 {
af7ee8bf 12901 int reset = 0;
252b5132 12902
1a2c1fad
CD
12903 /* Permit the user to change the ISA and architecture on the fly.
12904 Needless to say, misuse can cause serious problems. */
81a21e38 12905 if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
af7ee8bf
CD
12906 {
12907 reset = 1;
12908 mips_opts.isa = file_mips_isa;
1a2c1fad 12909 mips_opts.arch = file_mips_arch;
1a2c1fad
CD
12910 }
12911 else if (strncmp (name, "arch=", 5) == 0)
12912 {
12913 const struct mips_cpu_info *p;
12914
12915 p = mips_parse_cpu("internal use", name + 5);
12916 if (!p)
12917 as_bad (_("unknown architecture %s"), name + 5);
12918 else
12919 {
12920 mips_opts.arch = p->cpu;
12921 mips_opts.isa = p->isa;
12922 }
12923 }
81a21e38
TS
12924 else if (strncmp (name, "mips", 4) == 0)
12925 {
12926 const struct mips_cpu_info *p;
12927
12928 p = mips_parse_cpu("internal use", name);
12929 if (!p)
12930 as_bad (_("unknown ISA level %s"), name + 4);
12931 else
12932 {
12933 mips_opts.arch = p->cpu;
12934 mips_opts.isa = p->isa;
12935 }
12936 }
af7ee8bf 12937 else
81a21e38 12938 as_bad (_("unknown ISA or architecture %s"), name);
af7ee8bf
CD
12939
12940 switch (mips_opts.isa)
98d3f06f
KH
12941 {
12942 case 0:
98d3f06f 12943 break;
af7ee8bf
CD
12944 case ISA_MIPS1:
12945 case ISA_MIPS2:
12946 case ISA_MIPS32:
12947 case ISA_MIPS32R2:
98d3f06f
KH
12948 mips_opts.gp32 = 1;
12949 mips_opts.fp32 = 1;
12950 break;
af7ee8bf
CD
12951 case ISA_MIPS3:
12952 case ISA_MIPS4:
12953 case ISA_MIPS5:
12954 case ISA_MIPS64:
5f74bc13 12955 case ISA_MIPS64R2:
98d3f06f
KH
12956 mips_opts.gp32 = 0;
12957 mips_opts.fp32 = 0;
12958 break;
12959 default:
12960 as_bad (_("unknown ISA level %s"), name + 4);
12961 break;
12962 }
af7ee8bf 12963 if (reset)
98d3f06f 12964 {
af7ee8bf
CD
12965 mips_opts.gp32 = file_mips_gp32;
12966 mips_opts.fp32 = file_mips_fp32;
98d3f06f 12967 }
252b5132
RH
12968 }
12969 else if (strcmp (name, "autoextend") == 0)
12970 mips_opts.noautoextend = 0;
12971 else if (strcmp (name, "noautoextend") == 0)
12972 mips_opts.noautoextend = 1;
12973 else if (strcmp (name, "push") == 0)
12974 {
12975 struct mips_option_stack *s;
12976
12977 s = (struct mips_option_stack *) xmalloc (sizeof *s);
12978 s->next = mips_opts_stack;
12979 s->options = mips_opts;
12980 mips_opts_stack = s;
12981 }
12982 else if (strcmp (name, "pop") == 0)
12983 {
12984 struct mips_option_stack *s;
12985
12986 s = mips_opts_stack;
12987 if (s == NULL)
12988 as_bad (_(".set pop with no .set push"));
12989 else
12990 {
12991 /* If we're changing the reorder mode we need to handle
12992 delay slots correctly. */
12993 if (s->options.noreorder && ! mips_opts.noreorder)
7d10b47d 12994 start_noreorder ();
252b5132 12995 else if (! s->options.noreorder && mips_opts.noreorder)
7d10b47d 12996 end_noreorder ();
252b5132
RH
12997
12998 mips_opts = s->options;
12999 mips_opts_stack = s->next;
13000 free (s);
13001 }
13002 }
aed1a261
RS
13003 else if (strcmp (name, "sym32") == 0)
13004 mips_opts.sym32 = TRUE;
13005 else if (strcmp (name, "nosym32") == 0)
13006 mips_opts.sym32 = FALSE;
e6559e01
JM
13007 else if (strchr (name, ','))
13008 {
13009 /* Generic ".set" directive; use the generic handler. */
13010 *input_line_pointer = ch;
13011 input_line_pointer = name;
13012 s_set (0);
13013 return;
13014 }
252b5132
RH
13015 else
13016 {
13017 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
13018 }
13019 *input_line_pointer = ch;
13020 demand_empty_rest_of_line ();
13021}
13022
13023/* Handle the .abicalls pseudo-op. I believe this is equivalent to
13024 .option pic2. It means to generate SVR4 PIC calls. */
13025
13026static void
17a2f251 13027s_abicalls (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
13028{
13029 mips_pic = SVR4_PIC;
143d77c5 13030 mips_abicalls = TRUE;
4d0d148d
TS
13031
13032 if (g_switch_seen && g_switch_value != 0)
13033 as_warn (_("-G may not be used with SVR4 PIC code"));
13034 g_switch_value = 0;
13035
252b5132
RH
13036 bfd_set_gp_size (stdoutput, 0);
13037 demand_empty_rest_of_line ();
13038}
13039
13040/* Handle the .cpload pseudo-op. This is used when generating SVR4
13041 PIC code. It sets the $gp register for the function based on the
13042 function address, which is in the register named in the argument.
13043 This uses a relocation against _gp_disp, which is handled specially
13044 by the linker. The result is:
13045 lui $gp,%hi(_gp_disp)
13046 addiu $gp,$gp,%lo(_gp_disp)
13047 addu $gp,$gp,.cpload argument
aa6975fb
ILT
13048 The .cpload argument is normally $25 == $t9.
13049
13050 The -mno-shared option changes this to:
bbe506e8
TS
13051 lui $gp,%hi(__gnu_local_gp)
13052 addiu $gp,$gp,%lo(__gnu_local_gp)
aa6975fb
ILT
13053 and the argument is ignored. This saves an instruction, but the
13054 resulting code is not position independent; it uses an absolute
bbe506e8
TS
13055 address for __gnu_local_gp. Thus code assembled with -mno-shared
13056 can go into an ordinary executable, but not into a shared library. */
252b5132
RH
13057
13058static void
17a2f251 13059s_cpload (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
13060{
13061 expressionS ex;
aa6975fb
ILT
13062 int reg;
13063 int in_shared;
252b5132 13064
6478892d
TS
13065 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
13066 .cpload is ignored. */
13067 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
13068 {
13069 s_ignore (0);
13070 return;
13071 }
13072
d3ecfc59 13073 /* .cpload should be in a .set noreorder section. */
252b5132
RH
13074 if (mips_opts.noreorder == 0)
13075 as_warn (_(".cpload not in noreorder section"));
13076
aa6975fb
ILT
13077 reg = tc_get_register (0);
13078
13079 /* If we need to produce a 64-bit address, we are better off using
13080 the default instruction sequence. */
aed1a261 13081 in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
aa6975fb 13082
252b5132 13083 ex.X_op = O_symbol;
bbe506e8
TS
13084 ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
13085 "__gnu_local_gp");
252b5132
RH
13086 ex.X_op_symbol = NULL;
13087 ex.X_add_number = 0;
13088
13089 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
49309057 13090 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
252b5132 13091
584892a6 13092 macro_start ();
67c0d1eb
RS
13093 macro_build_lui (&ex, mips_gp_register);
13094 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
17a2f251 13095 mips_gp_register, BFD_RELOC_LO16);
aa6975fb
ILT
13096 if (in_shared)
13097 macro_build (NULL, "addu", "d,v,t", mips_gp_register,
13098 mips_gp_register, reg);
584892a6 13099 macro_end ();
252b5132
RH
13100
13101 demand_empty_rest_of_line ();
13102}
13103
6478892d
TS
13104/* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
13105 .cpsetup $reg1, offset|$reg2, label
13106
13107 If offset is given, this results in:
13108 sd $gp, offset($sp)
956cd1d6 13109 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
13110 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
13111 daddu $gp, $gp, $reg1
6478892d
TS
13112
13113 If $reg2 is given, this results in:
13114 daddu $reg2, $gp, $0
956cd1d6 13115 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
13116 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
13117 daddu $gp, $gp, $reg1
aa6975fb
ILT
13118 $reg1 is normally $25 == $t9.
13119
13120 The -mno-shared option replaces the last three instructions with
13121 lui $gp,%hi(_gp)
54f4ddb3 13122 addiu $gp,$gp,%lo(_gp) */
aa6975fb 13123
6478892d 13124static void
17a2f251 13125s_cpsetup (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
13126{
13127 expressionS ex_off;
13128 expressionS ex_sym;
13129 int reg1;
6478892d 13130
8586fc66 13131 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
6478892d
TS
13132 We also need NewABI support. */
13133 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13134 {
13135 s_ignore (0);
13136 return;
13137 }
13138
13139 reg1 = tc_get_register (0);
13140 SKIP_WHITESPACE ();
13141 if (*input_line_pointer != ',')
13142 {
13143 as_bad (_("missing argument separator ',' for .cpsetup"));
13144 return;
13145 }
13146 else
80245285 13147 ++input_line_pointer;
6478892d
TS
13148 SKIP_WHITESPACE ();
13149 if (*input_line_pointer == '$')
80245285
TS
13150 {
13151 mips_cpreturn_register = tc_get_register (0);
13152 mips_cpreturn_offset = -1;
13153 }
6478892d 13154 else
80245285
TS
13155 {
13156 mips_cpreturn_offset = get_absolute_expression ();
13157 mips_cpreturn_register = -1;
13158 }
6478892d
TS
13159 SKIP_WHITESPACE ();
13160 if (*input_line_pointer != ',')
13161 {
13162 as_bad (_("missing argument separator ',' for .cpsetup"));
13163 return;
13164 }
13165 else
f9419b05 13166 ++input_line_pointer;
6478892d 13167 SKIP_WHITESPACE ();
f21f8242 13168 expression (&ex_sym);
6478892d 13169
584892a6 13170 macro_start ();
6478892d
TS
13171 if (mips_cpreturn_register == -1)
13172 {
13173 ex_off.X_op = O_constant;
13174 ex_off.X_add_symbol = NULL;
13175 ex_off.X_op_symbol = NULL;
13176 ex_off.X_add_number = mips_cpreturn_offset;
13177
67c0d1eb 13178 macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
17a2f251 13179 BFD_RELOC_LO16, SP);
6478892d
TS
13180 }
13181 else
67c0d1eb 13182 macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
17a2f251 13183 mips_gp_register, 0);
6478892d 13184
aed1a261 13185 if (mips_in_shared || HAVE_64BIT_SYMBOLS)
aa6975fb
ILT
13186 {
13187 macro_build (&ex_sym, "lui", "t,u", mips_gp_register,
13188 -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
13189 BFD_RELOC_HI16_S);
13190
13191 macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
13192 mips_gp_register, -1, BFD_RELOC_GPREL16,
13193 BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
13194
13195 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
13196 mips_gp_register, reg1);
13197 }
13198 else
13199 {
13200 expressionS ex;
13201
13202 ex.X_op = O_symbol;
4184909a 13203 ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
aa6975fb
ILT
13204 ex.X_op_symbol = NULL;
13205 ex.X_add_number = 0;
6e1304d8 13206
aa6975fb
ILT
13207 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
13208 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
13209
13210 macro_build_lui (&ex, mips_gp_register);
13211 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
13212 mips_gp_register, BFD_RELOC_LO16);
13213 }
f21f8242 13214
584892a6 13215 macro_end ();
6478892d
TS
13216
13217 demand_empty_rest_of_line ();
13218}
13219
13220static void
17a2f251 13221s_cplocal (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
13222{
13223 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
54f4ddb3 13224 .cplocal is ignored. */
6478892d
TS
13225 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13226 {
13227 s_ignore (0);
13228 return;
13229 }
13230
13231 mips_gp_register = tc_get_register (0);
85b51719 13232 demand_empty_rest_of_line ();
6478892d
TS
13233}
13234
252b5132
RH
13235/* Handle the .cprestore pseudo-op. This stores $gp into a given
13236 offset from $sp. The offset is remembered, and after making a PIC
13237 call $gp is restored from that location. */
13238
13239static void
17a2f251 13240s_cprestore (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
13241{
13242 expressionS ex;
252b5132 13243
6478892d 13244 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
c9914766 13245 .cprestore is ignored. */
6478892d 13246 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
13247 {
13248 s_ignore (0);
13249 return;
13250 }
13251
13252 mips_cprestore_offset = get_absolute_expression ();
7a621144 13253 mips_cprestore_valid = 1;
252b5132
RH
13254
13255 ex.X_op = O_constant;
13256 ex.X_add_symbol = NULL;
13257 ex.X_op_symbol = NULL;
13258 ex.X_add_number = mips_cprestore_offset;
13259
584892a6 13260 macro_start ();
67c0d1eb
RS
13261 macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
13262 SP, HAVE_64BIT_ADDRESSES);
584892a6 13263 macro_end ();
252b5132
RH
13264
13265 demand_empty_rest_of_line ();
13266}
13267
6478892d 13268/* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
67c1ffbe 13269 was given in the preceding .cpsetup, it results in:
6478892d 13270 ld $gp, offset($sp)
76b3015f 13271
6478892d 13272 If a register $reg2 was given there, it results in:
54f4ddb3
TS
13273 daddu $gp, $reg2, $0 */
13274
6478892d 13275static void
17a2f251 13276s_cpreturn (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
13277{
13278 expressionS ex;
6478892d
TS
13279
13280 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
13281 We also need NewABI support. */
13282 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13283 {
13284 s_ignore (0);
13285 return;
13286 }
13287
584892a6 13288 macro_start ();
6478892d
TS
13289 if (mips_cpreturn_register == -1)
13290 {
13291 ex.X_op = O_constant;
13292 ex.X_add_symbol = NULL;
13293 ex.X_op_symbol = NULL;
13294 ex.X_add_number = mips_cpreturn_offset;
13295
67c0d1eb 13296 macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
6478892d
TS
13297 }
13298 else
67c0d1eb 13299 macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
17a2f251 13300 mips_cpreturn_register, 0);
584892a6 13301 macro_end ();
6478892d
TS
13302
13303 demand_empty_rest_of_line ();
13304}
13305
741d6ea8
JM
13306/* Handle the .dtprelword and .dtpreldword pseudo-ops. They generate
13307 a 32-bit or 64-bit DTP-relative relocation (BYTES says which) for
13308 use in DWARF debug information. */
13309
13310static void
13311s_dtprel_internal (size_t bytes)
13312{
13313 expressionS ex;
13314 char *p;
13315
13316 expression (&ex);
13317
13318 if (ex.X_op != O_symbol)
13319 {
13320 as_bad (_("Unsupported use of %s"), (bytes == 8
13321 ? ".dtpreldword"
13322 : ".dtprelword"));
13323 ignore_rest_of_line ();
13324 }
13325
13326 p = frag_more (bytes);
13327 md_number_to_chars (p, 0, bytes);
13328 fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE,
13329 (bytes == 8
13330 ? BFD_RELOC_MIPS_TLS_DTPREL64
13331 : BFD_RELOC_MIPS_TLS_DTPREL32));
13332
13333 demand_empty_rest_of_line ();
13334}
13335
13336/* Handle .dtprelword. */
13337
13338static void
13339s_dtprelword (int ignore ATTRIBUTE_UNUSED)
13340{
13341 s_dtprel_internal (4);
13342}
13343
13344/* Handle .dtpreldword. */
13345
13346static void
13347s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
13348{
13349 s_dtprel_internal (8);
13350}
13351
6478892d
TS
13352/* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
13353 code. It sets the offset to use in gp_rel relocations. */
13354
13355static void
17a2f251 13356s_gpvalue (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
13357{
13358 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
13359 We also need NewABI support. */
13360 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13361 {
13362 s_ignore (0);
13363 return;
13364 }
13365
def2e0dd 13366 mips_gprel_offset = get_absolute_expression ();
6478892d
TS
13367
13368 demand_empty_rest_of_line ();
13369}
13370
252b5132
RH
13371/* Handle the .gpword pseudo-op. This is used when generating PIC
13372 code. It generates a 32 bit GP relative reloc. */
13373
13374static void
17a2f251 13375s_gpword (int ignore ATTRIBUTE_UNUSED)
252b5132 13376{
a8dbcb85
TS
13377 segment_info_type *si;
13378 struct insn_label_list *l;
252b5132
RH
13379 symbolS *label;
13380 expressionS ex;
13381 char *p;
13382
13383 /* When not generating PIC code, this is treated as .word. */
13384 if (mips_pic != SVR4_PIC)
13385 {
13386 s_cons (2);
13387 return;
13388 }
13389
a8dbcb85
TS
13390 si = seg_info (now_seg);
13391 l = si->label_list;
13392 label = l != NULL ? l->label : NULL;
7d10b47d 13393 mips_emit_delays ();
252b5132
RH
13394 if (auto_align)
13395 mips_align (2, 0, label);
13396 mips_clear_insn_labels ();
13397
13398 expression (&ex);
13399
13400 if (ex.X_op != O_symbol || ex.X_add_number != 0)
13401 {
13402 as_bad (_("Unsupported use of .gpword"));
13403 ignore_rest_of_line ();
13404 }
13405
13406 p = frag_more (4);
17a2f251 13407 md_number_to_chars (p, 0, 4);
b34976b6 13408 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
cdf6fd85 13409 BFD_RELOC_GPREL32);
252b5132
RH
13410
13411 demand_empty_rest_of_line ();
13412}
13413
10181a0d 13414static void
17a2f251 13415s_gpdword (int ignore ATTRIBUTE_UNUSED)
10181a0d 13416{
a8dbcb85
TS
13417 segment_info_type *si;
13418 struct insn_label_list *l;
10181a0d
AO
13419 symbolS *label;
13420 expressionS ex;
13421 char *p;
13422
13423 /* When not generating PIC code, this is treated as .dword. */
13424 if (mips_pic != SVR4_PIC)
13425 {
13426 s_cons (3);
13427 return;
13428 }
13429
a8dbcb85
TS
13430 si = seg_info (now_seg);
13431 l = si->label_list;
13432 label = l != NULL ? l->label : NULL;
7d10b47d 13433 mips_emit_delays ();
10181a0d
AO
13434 if (auto_align)
13435 mips_align (3, 0, label);
13436 mips_clear_insn_labels ();
13437
13438 expression (&ex);
13439
13440 if (ex.X_op != O_symbol || ex.X_add_number != 0)
13441 {
13442 as_bad (_("Unsupported use of .gpdword"));
13443 ignore_rest_of_line ();
13444 }
13445
13446 p = frag_more (8);
17a2f251 13447 md_number_to_chars (p, 0, 8);
a105a300 13448 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
6e1304d8 13449 BFD_RELOC_GPREL32)->fx_tcbit = 1;
10181a0d
AO
13450
13451 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
6e1304d8
RS
13452 fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
13453 FALSE, BFD_RELOC_64)->fx_tcbit = 1;
10181a0d
AO
13454
13455 demand_empty_rest_of_line ();
13456}
13457
252b5132
RH
13458/* Handle the .cpadd pseudo-op. This is used when dealing with switch
13459 tables in SVR4 PIC code. */
13460
13461static void
17a2f251 13462s_cpadd (int ignore ATTRIBUTE_UNUSED)
252b5132 13463{
252b5132
RH
13464 int reg;
13465
10181a0d
AO
13466 /* This is ignored when not generating SVR4 PIC code. */
13467 if (mips_pic != SVR4_PIC)
252b5132
RH
13468 {
13469 s_ignore (0);
13470 return;
13471 }
13472
13473 /* Add $gp to the register named as an argument. */
584892a6 13474 macro_start ();
252b5132 13475 reg = tc_get_register (0);
67c0d1eb 13476 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
584892a6 13477 macro_end ();
252b5132 13478
bdaaa2e1 13479 demand_empty_rest_of_line ();
252b5132
RH
13480}
13481
13482/* Handle the .insn pseudo-op. This marks instruction labels in
13483 mips16 mode. This permits the linker to handle them specially,
13484 such as generating jalx instructions when needed. We also make
13485 them odd for the duration of the assembly, in order to generate the
13486 right sort of code. We will make them even in the adjust_symtab
13487 routine, while leaving them marked. This is convenient for the
13488 debugger and the disassembler. The linker knows to make them odd
13489 again. */
13490
13491static void
17a2f251 13492s_insn (int ignore ATTRIBUTE_UNUSED)
252b5132 13493{
f9419b05 13494 mips16_mark_labels ();
252b5132
RH
13495
13496 demand_empty_rest_of_line ();
13497}
13498
13499/* Handle a .stabn directive. We need these in order to mark a label
13500 as being a mips16 text label correctly. Sometimes the compiler
13501 will emit a label, followed by a .stabn, and then switch sections.
13502 If the label and .stabn are in mips16 mode, then the label is
13503 really a mips16 text label. */
13504
13505static void
17a2f251 13506s_mips_stab (int type)
252b5132 13507{
f9419b05 13508 if (type == 'n')
252b5132
RH
13509 mips16_mark_labels ();
13510
13511 s_stab (type);
13512}
13513
54f4ddb3 13514/* Handle the .weakext pseudo-op as defined in Kane and Heinrich. */
252b5132
RH
13515
13516static void
17a2f251 13517s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
13518{
13519 char *name;
13520 int c;
13521 symbolS *symbolP;
13522 expressionS exp;
13523
13524 name = input_line_pointer;
13525 c = get_symbol_end ();
13526 symbolP = symbol_find_or_make (name);
13527 S_SET_WEAK (symbolP);
13528 *input_line_pointer = c;
13529
13530 SKIP_WHITESPACE ();
13531
13532 if (! is_end_of_line[(unsigned char) *input_line_pointer])
13533 {
13534 if (S_IS_DEFINED (symbolP))
13535 {
956cd1d6 13536 as_bad ("ignoring attempt to redefine symbol %s",
252b5132
RH
13537 S_GET_NAME (symbolP));
13538 ignore_rest_of_line ();
13539 return;
13540 }
bdaaa2e1 13541
252b5132
RH
13542 if (*input_line_pointer == ',')
13543 {
13544 ++input_line_pointer;
13545 SKIP_WHITESPACE ();
13546 }
bdaaa2e1 13547
252b5132
RH
13548 expression (&exp);
13549 if (exp.X_op != O_symbol)
13550 {
13551 as_bad ("bad .weakext directive");
98d3f06f 13552 ignore_rest_of_line ();
252b5132
RH
13553 return;
13554 }
49309057 13555 symbol_set_value_expression (symbolP, &exp);
252b5132
RH
13556 }
13557
13558 demand_empty_rest_of_line ();
13559}
13560
13561/* Parse a register string into a number. Called from the ECOFF code
13562 to parse .frame. The argument is non-zero if this is the frame
13563 register, so that we can record it in mips_frame_reg. */
13564
13565int
17a2f251 13566tc_get_register (int frame)
252b5132 13567{
707bfff6 13568 unsigned int reg;
252b5132
RH
13569
13570 SKIP_WHITESPACE ();
707bfff6
TS
13571 if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, &reg))
13572 reg = 0;
252b5132 13573 if (frame)
7a621144
DJ
13574 {
13575 mips_frame_reg = reg != 0 ? reg : SP;
13576 mips_frame_reg_valid = 1;
13577 mips_cprestore_valid = 0;
13578 }
252b5132
RH
13579 return reg;
13580}
13581
13582valueT
17a2f251 13583md_section_align (asection *seg, valueT addr)
252b5132
RH
13584{
13585 int align = bfd_get_section_alignment (stdoutput, seg);
13586
b4c71f56
TS
13587 if (IS_ELF)
13588 {
13589 /* We don't need to align ELF sections to the full alignment.
13590 However, Irix 5 may prefer that we align them at least to a 16
13591 byte boundary. We don't bother to align the sections if we
13592 are targeted for an embedded system. */
c41e87e3 13593 if (strncmp (TARGET_OS, "elf", 3) == 0)
b4c71f56
TS
13594 return addr;
13595 if (align > 4)
13596 align = 4;
13597 }
252b5132
RH
13598
13599 return ((addr + (1 << align) - 1) & (-1 << align));
13600}
13601
13602/* Utility routine, called from above as well. If called while the
13603 input file is still being read, it's only an approximation. (For
13604 example, a symbol may later become defined which appeared to be
13605 undefined earlier.) */
13606
13607static int
17a2f251 13608nopic_need_relax (symbolS *sym, int before_relaxing)
252b5132
RH
13609{
13610 if (sym == 0)
13611 return 0;
13612
4d0d148d 13613 if (g_switch_value > 0)
252b5132
RH
13614 {
13615 const char *symname;
13616 int change;
13617
c9914766 13618 /* Find out whether this symbol can be referenced off the $gp
252b5132
RH
13619 register. It can be if it is smaller than the -G size or if
13620 it is in the .sdata or .sbss section. Certain symbols can
c9914766 13621 not be referenced off the $gp, although it appears as though
252b5132
RH
13622 they can. */
13623 symname = S_GET_NAME (sym);
13624 if (symname != (const char *) NULL
13625 && (strcmp (symname, "eprol") == 0
13626 || strcmp (symname, "etext") == 0
13627 || strcmp (symname, "_gp") == 0
13628 || strcmp (symname, "edata") == 0
13629 || strcmp (symname, "_fbss") == 0
13630 || strcmp (symname, "_fdata") == 0
13631 || strcmp (symname, "_ftext") == 0
13632 || strcmp (symname, "end") == 0
13633 || strcmp (symname, "_gp_disp") == 0))
13634 change = 1;
13635 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
13636 && (0
13637#ifndef NO_ECOFF_DEBUGGING
49309057
ILT
13638 || (symbol_get_obj (sym)->ecoff_extern_size != 0
13639 && (symbol_get_obj (sym)->ecoff_extern_size
13640 <= g_switch_value))
252b5132
RH
13641#endif
13642 /* We must defer this decision until after the whole
13643 file has been read, since there might be a .extern
13644 after the first use of this symbol. */
13645 || (before_relaxing
13646#ifndef NO_ECOFF_DEBUGGING
49309057 13647 && symbol_get_obj (sym)->ecoff_extern_size == 0
252b5132
RH
13648#endif
13649 && S_GET_VALUE (sym) == 0)
13650 || (S_GET_VALUE (sym) != 0
13651 && S_GET_VALUE (sym) <= g_switch_value)))
13652 change = 0;
13653 else
13654 {
13655 const char *segname;
13656
13657 segname = segment_name (S_GET_SEGMENT (sym));
13658 assert (strcmp (segname, ".lit8") != 0
13659 && strcmp (segname, ".lit4") != 0);
13660 change = (strcmp (segname, ".sdata") != 0
fba2b7f9
GK
13661 && strcmp (segname, ".sbss") != 0
13662 && strncmp (segname, ".sdata.", 7) != 0
d4dc2f22
TS
13663 && strncmp (segname, ".sbss.", 6) != 0
13664 && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0
fba2b7f9 13665 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
252b5132
RH
13666 }
13667 return change;
13668 }
13669 else
c9914766 13670 /* We are not optimizing for the $gp register. */
252b5132
RH
13671 return 1;
13672}
13673
5919d012
RS
13674
13675/* Return true if the given symbol should be considered local for SVR4 PIC. */
13676
13677static bfd_boolean
17a2f251 13678pic_need_relax (symbolS *sym, asection *segtype)
5919d012
RS
13679{
13680 asection *symsec;
5919d012
RS
13681
13682 /* Handle the case of a symbol equated to another symbol. */
13683 while (symbol_equated_reloc_p (sym))
13684 {
13685 symbolS *n;
13686
5f0fe04b 13687 /* It's possible to get a loop here in a badly written program. */
5919d012
RS
13688 n = symbol_get_value_expression (sym)->X_add_symbol;
13689 if (n == sym)
13690 break;
13691 sym = n;
13692 }
13693
df1f3cda
DD
13694 if (symbol_section_p (sym))
13695 return TRUE;
13696
5919d012
RS
13697 symsec = S_GET_SEGMENT (sym);
13698
5919d012
RS
13699 /* This must duplicate the test in adjust_reloc_syms. */
13700 return (symsec != &bfd_und_section
13701 && symsec != &bfd_abs_section
5f0fe04b
TS
13702 && !bfd_is_com_section (symsec)
13703 && !s_is_linkonce (sym, segtype)
5919d012
RS
13704#ifdef OBJ_ELF
13705 /* A global or weak symbol is treated as external. */
f43abd2b 13706 && (!IS_ELF || (! S_IS_WEAK (sym) && ! S_IS_EXTERNAL (sym)))
5919d012
RS
13707#endif
13708 );
13709}
13710
13711
252b5132
RH
13712/* Given a mips16 variant frag FRAGP, return non-zero if it needs an
13713 extended opcode. SEC is the section the frag is in. */
13714
13715static int
17a2f251 13716mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
252b5132
RH
13717{
13718 int type;
3994f87e 13719 const struct mips16_immed_operand *op;
252b5132
RH
13720 offsetT val;
13721 int mintiny, maxtiny;
13722 segT symsec;
98aa84af 13723 fragS *sym_frag;
252b5132
RH
13724
13725 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
13726 return 0;
13727 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
13728 return 1;
13729
13730 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
13731 op = mips16_immed_operands;
13732 while (op->type != type)
13733 {
13734 ++op;
13735 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
13736 }
13737
13738 if (op->unsp)
13739 {
13740 if (type == '<' || type == '>' || type == '[' || type == ']')
13741 {
13742 mintiny = 1;
13743 maxtiny = 1 << op->nbits;
13744 }
13745 else
13746 {
13747 mintiny = 0;
13748 maxtiny = (1 << op->nbits) - 1;
13749 }
13750 }
13751 else
13752 {
13753 mintiny = - (1 << (op->nbits - 1));
13754 maxtiny = (1 << (op->nbits - 1)) - 1;
13755 }
13756
98aa84af 13757 sym_frag = symbol_get_frag (fragp->fr_symbol);
ac62c346 13758 val = S_GET_VALUE (fragp->fr_symbol);
98aa84af 13759 symsec = S_GET_SEGMENT (fragp->fr_symbol);
252b5132
RH
13760
13761 if (op->pcrel)
13762 {
13763 addressT addr;
13764
13765 /* We won't have the section when we are called from
13766 mips_relax_frag. However, we will always have been called
13767 from md_estimate_size_before_relax first. If this is a
13768 branch to a different section, we mark it as such. If SEC is
13769 NULL, and the frag is not marked, then it must be a branch to
13770 the same section. */
13771 if (sec == NULL)
13772 {
13773 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
13774 return 1;
13775 }
13776 else
13777 {
98aa84af 13778 /* Must have been called from md_estimate_size_before_relax. */
252b5132
RH
13779 if (symsec != sec)
13780 {
13781 fragp->fr_subtype =
13782 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
13783
13784 /* FIXME: We should support this, and let the linker
13785 catch branches and loads that are out of range. */
13786 as_bad_where (fragp->fr_file, fragp->fr_line,
13787 _("unsupported PC relative reference to different section"));
13788
13789 return 1;
13790 }
98aa84af
AM
13791 if (fragp != sym_frag && sym_frag->fr_address == 0)
13792 /* Assume non-extended on the first relaxation pass.
13793 The address we have calculated will be bogus if this is
13794 a forward branch to another frag, as the forward frag
13795 will have fr_address == 0. */
13796 return 0;
252b5132
RH
13797 }
13798
13799 /* In this case, we know for sure that the symbol fragment is in
98aa84af
AM
13800 the same section. If the relax_marker of the symbol fragment
13801 differs from the relax_marker of this fragment, we have not
13802 yet adjusted the symbol fragment fr_address. We want to add
252b5132
RH
13803 in STRETCH in order to get a better estimate of the address.
13804 This particularly matters because of the shift bits. */
13805 if (stretch != 0
98aa84af 13806 && sym_frag->relax_marker != fragp->relax_marker)
252b5132
RH
13807 {
13808 fragS *f;
13809
13810 /* Adjust stretch for any alignment frag. Note that if have
13811 been expanding the earlier code, the symbol may be
13812 defined in what appears to be an earlier frag. FIXME:
13813 This doesn't handle the fr_subtype field, which specifies
13814 a maximum number of bytes to skip when doing an
13815 alignment. */
98aa84af 13816 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
252b5132
RH
13817 {
13818 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
13819 {
13820 if (stretch < 0)
13821 stretch = - ((- stretch)
13822 & ~ ((1 << (int) f->fr_offset) - 1));
13823 else
13824 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
13825 if (stretch == 0)
13826 break;
13827 }
13828 }
13829 if (f != NULL)
13830 val += stretch;
13831 }
13832
13833 addr = fragp->fr_address + fragp->fr_fix;
13834
13835 /* The base address rules are complicated. The base address of
13836 a branch is the following instruction. The base address of a
13837 PC relative load or add is the instruction itself, but if it
13838 is in a delay slot (in which case it can not be extended) use
13839 the address of the instruction whose delay slot it is in. */
13840 if (type == 'p' || type == 'q')
13841 {
13842 addr += 2;
13843
13844 /* If we are currently assuming that this frag should be
13845 extended, then, the current address is two bytes
bdaaa2e1 13846 higher. */
252b5132
RH
13847 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
13848 addr += 2;
13849
13850 /* Ignore the low bit in the target, since it will be set
13851 for a text label. */
13852 if ((val & 1) != 0)
13853 --val;
13854 }
13855 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
13856 addr -= 4;
13857 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
13858 addr -= 2;
13859
13860 val -= addr & ~ ((1 << op->shift) - 1);
13861
13862 /* Branch offsets have an implicit 0 in the lowest bit. */
13863 if (type == 'p' || type == 'q')
13864 val /= 2;
13865
13866 /* If any of the shifted bits are set, we must use an extended
13867 opcode. If the address depends on the size of this
13868 instruction, this can lead to a loop, so we arrange to always
13869 use an extended opcode. We only check this when we are in
13870 the main relaxation loop, when SEC is NULL. */
13871 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
13872 {
13873 fragp->fr_subtype =
13874 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
13875 return 1;
13876 }
13877
13878 /* If we are about to mark a frag as extended because the value
13879 is precisely maxtiny + 1, then there is a chance of an
13880 infinite loop as in the following code:
13881 la $4,foo
13882 .skip 1020
13883 .align 2
13884 foo:
13885 In this case when the la is extended, foo is 0x3fc bytes
13886 away, so the la can be shrunk, but then foo is 0x400 away, so
13887 the la must be extended. To avoid this loop, we mark the
13888 frag as extended if it was small, and is about to become
13889 extended with a value of maxtiny + 1. */
13890 if (val == ((maxtiny + 1) << op->shift)
13891 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
13892 && sec == NULL)
13893 {
13894 fragp->fr_subtype =
13895 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
13896 return 1;
13897 }
13898 }
13899 else if (symsec != absolute_section && sec != NULL)
13900 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
13901
13902 if ((val & ((1 << op->shift) - 1)) != 0
13903 || val < (mintiny << op->shift)
13904 || val > (maxtiny << op->shift))
13905 return 1;
13906 else
13907 return 0;
13908}
13909
4a6a3df4
AO
13910/* Compute the length of a branch sequence, and adjust the
13911 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
13912 worst-case length is computed, with UPDATE being used to indicate
13913 whether an unconditional (-1), branch-likely (+1) or regular (0)
13914 branch is to be computed. */
13915static int
17a2f251 13916relaxed_branch_length (fragS *fragp, asection *sec, int update)
4a6a3df4 13917{
b34976b6 13918 bfd_boolean toofar;
4a6a3df4
AO
13919 int length;
13920
13921 if (fragp
13922 && S_IS_DEFINED (fragp->fr_symbol)
13923 && sec == S_GET_SEGMENT (fragp->fr_symbol))
13924 {
13925 addressT addr;
13926 offsetT val;
13927
13928 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
13929
13930 addr = fragp->fr_address + fragp->fr_fix + 4;
13931
13932 val -= addr;
13933
13934 toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
13935 }
13936 else if (fragp)
13937 /* If the symbol is not defined or it's in a different segment,
13938 assume the user knows what's going on and emit a short
13939 branch. */
b34976b6 13940 toofar = FALSE;
4a6a3df4 13941 else
b34976b6 13942 toofar = TRUE;
4a6a3df4
AO
13943
13944 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
13945 fragp->fr_subtype
af6ae2ad 13946 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_UNCOND (fragp->fr_subtype),
4a6a3df4
AO
13947 RELAX_BRANCH_LIKELY (fragp->fr_subtype),
13948 RELAX_BRANCH_LINK (fragp->fr_subtype),
13949 toofar);
13950
13951 length = 4;
13952 if (toofar)
13953 {
13954 if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
13955 length += 8;
13956
13957 if (mips_pic != NO_PIC)
13958 {
13959 /* Additional space for PIC loading of target address. */
13960 length += 8;
13961 if (mips_opts.isa == ISA_MIPS1)
13962 /* Additional space for $at-stabilizing nop. */
13963 length += 4;
13964 }
13965
13966 /* If branch is conditional. */
13967 if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
13968 length += 8;
13969 }
b34976b6 13970
4a6a3df4
AO
13971 return length;
13972}
13973
252b5132
RH
13974/* Estimate the size of a frag before relaxing. Unless this is the
13975 mips16, we are not really relaxing here, and the final size is
13976 encoded in the subtype information. For the mips16, we have to
13977 decide whether we are using an extended opcode or not. */
13978
252b5132 13979int
17a2f251 13980md_estimate_size_before_relax (fragS *fragp, asection *segtype)
252b5132 13981{
5919d012 13982 int change;
252b5132 13983
4a6a3df4
AO
13984 if (RELAX_BRANCH_P (fragp->fr_subtype))
13985 {
13986
b34976b6
AM
13987 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
13988
4a6a3df4
AO
13989 return fragp->fr_var;
13990 }
13991
252b5132 13992 if (RELAX_MIPS16_P (fragp->fr_subtype))
177b4a6a
AO
13993 /* We don't want to modify the EXTENDED bit here; it might get us
13994 into infinite loops. We change it only in mips_relax_frag(). */
13995 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
252b5132
RH
13996
13997 if (mips_pic == NO_PIC)
5919d012 13998 change = nopic_need_relax (fragp->fr_symbol, 0);
252b5132 13999 else if (mips_pic == SVR4_PIC)
5919d012 14000 change = pic_need_relax (fragp->fr_symbol, segtype);
0a44bf69
RS
14001 else if (mips_pic == VXWORKS_PIC)
14002 /* For vxworks, GOT16 relocations never have a corresponding LO16. */
14003 change = 0;
252b5132
RH
14004 else
14005 abort ();
14006
14007 if (change)
14008 {
4d7206a2 14009 fragp->fr_subtype |= RELAX_USE_SECOND;
4d7206a2 14010 return -RELAX_FIRST (fragp->fr_subtype);
252b5132 14011 }
4d7206a2
RS
14012 else
14013 return -RELAX_SECOND (fragp->fr_subtype);
252b5132
RH
14014}
14015
14016/* This is called to see whether a reloc against a defined symbol
de7e6852 14017 should be converted into a reloc against a section. */
252b5132
RH
14018
14019int
17a2f251 14020mips_fix_adjustable (fixS *fixp)
252b5132 14021{
252b5132
RH
14022 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
14023 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
14024 return 0;
a161fe53 14025
252b5132
RH
14026 if (fixp->fx_addsy == NULL)
14027 return 1;
a161fe53 14028
de7e6852
RS
14029 /* If symbol SYM is in a mergeable section, relocations of the form
14030 SYM + 0 can usually be made section-relative. The mergeable data
14031 is then identified by the section offset rather than by the symbol.
14032
14033 However, if we're generating REL LO16 relocations, the offset is split
14034 between the LO16 and parterning high part relocation. The linker will
14035 need to recalculate the complete offset in order to correctly identify
14036 the merge data.
14037
14038 The linker has traditionally not looked for the parterning high part
14039 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
14040 placed anywhere. Rather than break backwards compatibility by changing
14041 this, it seems better not to force the issue, and instead keep the
14042 original symbol. This will work with either linker behavior. */
738e5348 14043 if ((lo16_reloc_p (fixp->fx_r_type)
704803a9 14044 || reloc_needs_lo_p (fixp->fx_r_type))
de7e6852
RS
14045 && HAVE_IN_PLACE_ADDENDS
14046 && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
14047 return 0;
14048
252b5132 14049#ifdef OBJ_ELF
b314ec0e
RS
14050 /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
14051 to a floating-point stub. The same is true for non-R_MIPS16_26
14052 relocations against MIPS16 functions; in this case, the stub becomes
14053 the function's canonical address.
14054
14055 Floating-point stubs are stored in unique .mips16.call.* or
14056 .mips16.fn.* sections. If a stub T for function F is in section S,
14057 the first relocation in section S must be against F; this is how the
14058 linker determines the target function. All relocations that might
14059 resolve to T must also be against F. We therefore have the following
14060 restrictions, which are given in an intentionally-redundant way:
14061
14062 1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
14063 symbols.
14064
14065 2. We cannot reduce a stub's relocations against non-MIPS16 symbols
14066 if that stub might be used.
14067
14068 3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
14069 symbols.
14070
14071 4. We cannot reduce a stub's relocations against MIPS16 symbols if
14072 that stub might be used.
14073
14074 There is a further restriction:
14075
14076 5. We cannot reduce R_MIPS16_26 relocations against MIPS16 symbols
14077 on targets with in-place addends; the relocation field cannot
14078 encode the low bit.
14079
14080 For simplicity, we deal with (3)-(5) by not reducing _any_ relocation
14081 against a MIPS16 symbol.
14082
14083 We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
14084 relocation against some symbol R, no relocation against R may be
14085 reduced. (Note that this deals with (2) as well as (1) because
14086 relocations against global symbols will never be reduced on ELF
14087 targets.) This approach is a little simpler than trying to detect
14088 stub sections, and gives the "all or nothing" per-symbol consistency
14089 that we have for MIPS16 symbols. */
f43abd2b 14090 if (IS_ELF
b314ec0e 14091 && fixp->fx_subsy == NULL
30c09090 14092 && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
b314ec0e 14093 || *symbol_get_tc (fixp->fx_addsy)))
252b5132
RH
14094 return 0;
14095#endif
a161fe53 14096
252b5132
RH
14097 return 1;
14098}
14099
14100/* Translate internal representation of relocation info to BFD target
14101 format. */
14102
14103arelent **
17a2f251 14104tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
252b5132
RH
14105{
14106 static arelent *retval[4];
14107 arelent *reloc;
14108 bfd_reloc_code_real_type code;
14109
4b0cff4e
TS
14110 memset (retval, 0, sizeof(retval));
14111 reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
49309057
ILT
14112 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
14113 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
14114 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
14115
bad36eac
DJ
14116 if (fixp->fx_pcrel)
14117 {
14118 assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2);
14119
14120 /* At this point, fx_addnumber is "symbol offset - pcrel address".
14121 Relocations want only the symbol offset. */
14122 reloc->addend = fixp->fx_addnumber + reloc->address;
f43abd2b 14123 if (!IS_ELF)
bad36eac
DJ
14124 {
14125 /* A gruesome hack which is a result of the gruesome gas
14126 reloc handling. What's worse, for COFF (as opposed to
14127 ECOFF), we might need yet another copy of reloc->address.
14128 See bfd_install_relocation. */
14129 reloc->addend += reloc->address;
14130 }
14131 }
14132 else
14133 reloc->addend = fixp->fx_addnumber;
252b5132 14134
438c16b8
TS
14135 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
14136 entry to be used in the relocation's section offset. */
14137 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
252b5132
RH
14138 {
14139 reloc->address = reloc->addend;
14140 reloc->addend = 0;
14141 }
14142
252b5132 14143 code = fixp->fx_r_type;
252b5132 14144
bad36eac 14145 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
252b5132
RH
14146 if (reloc->howto == NULL)
14147 {
14148 as_bad_where (fixp->fx_file, fixp->fx_line,
14149 _("Can not represent %s relocation in this object file format"),
14150 bfd_get_reloc_code_name (code));
14151 retval[0] = NULL;
14152 }
14153
14154 return retval;
14155}
14156
14157/* Relax a machine dependent frag. This returns the amount by which
14158 the current size of the frag should change. */
14159
14160int
17a2f251 14161mips_relax_frag (asection *sec, fragS *fragp, long stretch)
252b5132 14162{
4a6a3df4
AO
14163 if (RELAX_BRANCH_P (fragp->fr_subtype))
14164 {
14165 offsetT old_var = fragp->fr_var;
b34976b6
AM
14166
14167 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
4a6a3df4
AO
14168
14169 return fragp->fr_var - old_var;
14170 }
14171
252b5132
RH
14172 if (! RELAX_MIPS16_P (fragp->fr_subtype))
14173 return 0;
14174
c4e7957c 14175 if (mips16_extended_frag (fragp, NULL, stretch))
252b5132
RH
14176 {
14177 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14178 return 0;
14179 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
14180 return 2;
14181 }
14182 else
14183 {
14184 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14185 return 0;
14186 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
14187 return -2;
14188 }
14189
14190 return 0;
14191}
14192
14193/* Convert a machine dependent frag. */
14194
14195void
17a2f251 14196md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
252b5132 14197{
4a6a3df4
AO
14198 if (RELAX_BRANCH_P (fragp->fr_subtype))
14199 {
14200 bfd_byte *buf;
14201 unsigned long insn;
14202 expressionS exp;
14203 fixS *fixp;
b34976b6 14204
4a6a3df4
AO
14205 buf = (bfd_byte *)fragp->fr_literal + fragp->fr_fix;
14206
14207 if (target_big_endian)
14208 insn = bfd_getb32 (buf);
14209 else
14210 insn = bfd_getl32 (buf);
b34976b6 14211
4a6a3df4
AO
14212 if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
14213 {
14214 /* We generate a fixup instead of applying it right now
14215 because, if there are linker relaxations, we're going to
14216 need the relocations. */
14217 exp.X_op = O_symbol;
14218 exp.X_add_symbol = fragp->fr_symbol;
14219 exp.X_add_number = fragp->fr_offset;
14220
14221 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
3994f87e 14222 4, &exp, TRUE, BFD_RELOC_16_PCREL_S2);
4a6a3df4
AO
14223 fixp->fx_file = fragp->fr_file;
14224 fixp->fx_line = fragp->fr_line;
b34976b6 14225
2132e3a3 14226 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14227 buf += 4;
14228 }
14229 else
14230 {
14231 int i;
14232
14233 as_warn_where (fragp->fr_file, fragp->fr_line,
14234 _("relaxed out-of-range branch into a jump"));
14235
14236 if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
14237 goto uncond;
14238
14239 if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14240 {
14241 /* Reverse the branch. */
14242 switch ((insn >> 28) & 0xf)
14243 {
14244 case 4:
14245 /* bc[0-3][tf]l? and bc1any[24][ft] instructions can
14246 have the condition reversed by tweaking a single
14247 bit, and their opcodes all have 0x4???????. */
14248 assert ((insn & 0xf1000000) == 0x41000000);
14249 insn ^= 0x00010000;
14250 break;
14251
14252 case 0:
14253 /* bltz 0x04000000 bgez 0x04010000
54f4ddb3 14254 bltzal 0x04100000 bgezal 0x04110000 */
4a6a3df4
AO
14255 assert ((insn & 0xfc0e0000) == 0x04000000);
14256 insn ^= 0x00010000;
14257 break;
b34976b6 14258
4a6a3df4
AO
14259 case 1:
14260 /* beq 0x10000000 bne 0x14000000
54f4ddb3 14261 blez 0x18000000 bgtz 0x1c000000 */
4a6a3df4
AO
14262 insn ^= 0x04000000;
14263 break;
14264
14265 default:
14266 abort ();
14267 }
14268 }
14269
14270 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
14271 {
14272 /* Clear the and-link bit. */
14273 assert ((insn & 0xfc1c0000) == 0x04100000);
14274
54f4ddb3
TS
14275 /* bltzal 0x04100000 bgezal 0x04110000
14276 bltzall 0x04120000 bgezall 0x04130000 */
4a6a3df4
AO
14277 insn &= ~0x00100000;
14278 }
14279
14280 /* Branch over the branch (if the branch was likely) or the
14281 full jump (not likely case). Compute the offset from the
14282 current instruction to branch to. */
14283 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14284 i = 16;
14285 else
14286 {
14287 /* How many bytes in instructions we've already emitted? */
14288 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
14289 /* How many bytes in instructions from here to the end? */
14290 i = fragp->fr_var - i;
14291 }
14292 /* Convert to instruction count. */
14293 i >>= 2;
14294 /* Branch counts from the next instruction. */
b34976b6 14295 i--;
4a6a3df4
AO
14296 insn |= i;
14297 /* Branch over the jump. */
2132e3a3 14298 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14299 buf += 4;
14300
54f4ddb3 14301 /* nop */
2132e3a3 14302 md_number_to_chars ((char *) buf, 0, 4);
4a6a3df4
AO
14303 buf += 4;
14304
14305 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14306 {
14307 /* beql $0, $0, 2f */
14308 insn = 0x50000000;
14309 /* Compute the PC offset from the current instruction to
14310 the end of the variable frag. */
14311 /* How many bytes in instructions we've already emitted? */
14312 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
14313 /* How many bytes in instructions from here to the end? */
14314 i = fragp->fr_var - i;
14315 /* Convert to instruction count. */
14316 i >>= 2;
14317 /* Don't decrement i, because we want to branch over the
14318 delay slot. */
14319
14320 insn |= i;
2132e3a3 14321 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14322 buf += 4;
14323
2132e3a3 14324 md_number_to_chars ((char *) buf, 0, 4);
4a6a3df4
AO
14325 buf += 4;
14326 }
14327
14328 uncond:
14329 if (mips_pic == NO_PIC)
14330 {
14331 /* j or jal. */
14332 insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
14333 ? 0x0c000000 : 0x08000000);
14334 exp.X_op = O_symbol;
14335 exp.X_add_symbol = fragp->fr_symbol;
14336 exp.X_add_number = fragp->fr_offset;
14337
14338 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
3994f87e 14339 4, &exp, FALSE, BFD_RELOC_MIPS_JMP);
4a6a3df4
AO
14340 fixp->fx_file = fragp->fr_file;
14341 fixp->fx_line = fragp->fr_line;
14342
2132e3a3 14343 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14344 buf += 4;
14345 }
14346 else
14347 {
14348 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
14349 insn = HAVE_64BIT_ADDRESSES ? 0xdf810000 : 0x8f810000;
14350 exp.X_op = O_symbol;
14351 exp.X_add_symbol = fragp->fr_symbol;
14352 exp.X_add_number = fragp->fr_offset;
14353
14354 if (fragp->fr_offset)
14355 {
14356 exp.X_add_symbol = make_expr_symbol (&exp);
14357 exp.X_add_number = 0;
14358 }
14359
14360 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
3994f87e 14361 4, &exp, FALSE, BFD_RELOC_MIPS_GOT16);
4a6a3df4
AO
14362 fixp->fx_file = fragp->fr_file;
14363 fixp->fx_line = fragp->fr_line;
14364
2132e3a3 14365 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4 14366 buf += 4;
b34976b6 14367
4a6a3df4
AO
14368 if (mips_opts.isa == ISA_MIPS1)
14369 {
14370 /* nop */
2132e3a3 14371 md_number_to_chars ((char *) buf, 0, 4);
4a6a3df4
AO
14372 buf += 4;
14373 }
14374
14375 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
14376 insn = HAVE_64BIT_ADDRESSES ? 0x64210000 : 0x24210000;
14377
14378 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
3994f87e 14379 4, &exp, FALSE, BFD_RELOC_LO16);
4a6a3df4
AO
14380 fixp->fx_file = fragp->fr_file;
14381 fixp->fx_line = fragp->fr_line;
b34976b6 14382
2132e3a3 14383 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14384 buf += 4;
14385
14386 /* j(al)r $at. */
14387 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
14388 insn = 0x0020f809;
14389 else
14390 insn = 0x00200008;
14391
2132e3a3 14392 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
14393 buf += 4;
14394 }
14395 }
14396
14397 assert (buf == (bfd_byte *)fragp->fr_literal
14398 + fragp->fr_fix + fragp->fr_var);
14399
14400 fragp->fr_fix += fragp->fr_var;
14401
14402 return;
14403 }
14404
252b5132
RH
14405 if (RELAX_MIPS16_P (fragp->fr_subtype))
14406 {
14407 int type;
3994f87e 14408 const struct mips16_immed_operand *op;
b34976b6 14409 bfd_boolean small, ext;
252b5132
RH
14410 offsetT val;
14411 bfd_byte *buf;
14412 unsigned long insn;
b34976b6 14413 bfd_boolean use_extend;
252b5132
RH
14414 unsigned short extend;
14415
14416 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
14417 op = mips16_immed_operands;
14418 while (op->type != type)
14419 ++op;
14420
14421 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14422 {
b34976b6
AM
14423 small = FALSE;
14424 ext = TRUE;
252b5132
RH
14425 }
14426 else
14427 {
b34976b6
AM
14428 small = TRUE;
14429 ext = FALSE;
252b5132
RH
14430 }
14431
6386f3a7 14432 resolve_symbol_value (fragp->fr_symbol);
252b5132
RH
14433 val = S_GET_VALUE (fragp->fr_symbol);
14434 if (op->pcrel)
14435 {
14436 addressT addr;
14437
14438 addr = fragp->fr_address + fragp->fr_fix;
14439
14440 /* The rules for the base address of a PC relative reloc are
14441 complicated; see mips16_extended_frag. */
14442 if (type == 'p' || type == 'q')
14443 {
14444 addr += 2;
14445 if (ext)
14446 addr += 2;
14447 /* Ignore the low bit in the target, since it will be
14448 set for a text label. */
14449 if ((val & 1) != 0)
14450 --val;
14451 }
14452 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
14453 addr -= 4;
14454 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
14455 addr -= 2;
14456
14457 addr &= ~ (addressT) ((1 << op->shift) - 1);
14458 val -= addr;
14459
14460 /* Make sure the section winds up with the alignment we have
14461 assumed. */
14462 if (op->shift > 0)
14463 record_alignment (asec, op->shift);
14464 }
14465
14466 if (ext
14467 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
14468 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
14469 as_warn_where (fragp->fr_file, fragp->fr_line,
14470 _("extended instruction in delay slot"));
14471
14472 buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix);
14473
14474 if (target_big_endian)
14475 insn = bfd_getb16 (buf);
14476 else
14477 insn = bfd_getl16 (buf);
14478
14479 mips16_immed (fragp->fr_file, fragp->fr_line, type, val,
14480 RELAX_MIPS16_USER_EXT (fragp->fr_subtype),
14481 small, ext, &insn, &use_extend, &extend);
14482
14483 if (use_extend)
14484 {
2132e3a3 14485 md_number_to_chars ((char *) buf, 0xf000 | extend, 2);
252b5132
RH
14486 fragp->fr_fix += 2;
14487 buf += 2;
14488 }
14489
2132e3a3 14490 md_number_to_chars ((char *) buf, insn, 2);
252b5132
RH
14491 fragp->fr_fix += 2;
14492 buf += 2;
14493 }
14494 else
14495 {
4d7206a2
RS
14496 int first, second;
14497 fixS *fixp;
252b5132 14498
4d7206a2
RS
14499 first = RELAX_FIRST (fragp->fr_subtype);
14500 second = RELAX_SECOND (fragp->fr_subtype);
14501 fixp = (fixS *) fragp->fr_opcode;
252b5132 14502
584892a6
RS
14503 /* Possibly emit a warning if we've chosen the longer option. */
14504 if (((fragp->fr_subtype & RELAX_USE_SECOND) != 0)
14505 == ((fragp->fr_subtype & RELAX_SECOND_LONGER) != 0))
14506 {
14507 const char *msg = macro_warning (fragp->fr_subtype);
14508 if (msg != 0)
14509 as_warn_where (fragp->fr_file, fragp->fr_line, msg);
14510 }
14511
4d7206a2
RS
14512 /* Go through all the fixups for the first sequence. Disable them
14513 (by marking them as done) if we're going to use the second
14514 sequence instead. */
14515 while (fixp
14516 && fixp->fx_frag == fragp
14517 && fixp->fx_where < fragp->fr_fix - second)
14518 {
14519 if (fragp->fr_subtype & RELAX_USE_SECOND)
14520 fixp->fx_done = 1;
14521 fixp = fixp->fx_next;
14522 }
252b5132 14523
4d7206a2
RS
14524 /* Go through the fixups for the second sequence. Disable them if
14525 we're going to use the first sequence, otherwise adjust their
14526 addresses to account for the relaxation. */
14527 while (fixp && fixp->fx_frag == fragp)
14528 {
14529 if (fragp->fr_subtype & RELAX_USE_SECOND)
14530 fixp->fx_where -= first;
14531 else
14532 fixp->fx_done = 1;
14533 fixp = fixp->fx_next;
14534 }
14535
14536 /* Now modify the frag contents. */
14537 if (fragp->fr_subtype & RELAX_USE_SECOND)
14538 {
14539 char *start;
14540
14541 start = fragp->fr_literal + fragp->fr_fix - first - second;
14542 memmove (start, start + first, second);
14543 fragp->fr_fix -= first;
14544 }
14545 else
14546 fragp->fr_fix -= second;
252b5132
RH
14547 }
14548}
14549
14550#ifdef OBJ_ELF
14551
14552/* This function is called after the relocs have been generated.
14553 We've been storing mips16 text labels as odd. Here we convert them
14554 back to even for the convenience of the debugger. */
14555
14556void
17a2f251 14557mips_frob_file_after_relocs (void)
252b5132
RH
14558{
14559 asymbol **syms;
14560 unsigned int count, i;
14561
f43abd2b 14562 if (!IS_ELF)
252b5132
RH
14563 return;
14564
14565 syms = bfd_get_outsymbols (stdoutput);
14566 count = bfd_get_symcount (stdoutput);
14567 for (i = 0; i < count; i++, syms++)
14568 {
30c09090 14569 if (ELF_ST_IS_MIPS16 (elf_symbol (*syms)->internal_elf_sym.st_other)
252b5132
RH
14570 && ((*syms)->value & 1) != 0)
14571 {
14572 (*syms)->value &= ~1;
14573 /* If the symbol has an odd size, it was probably computed
14574 incorrectly, so adjust that as well. */
14575 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
14576 ++elf_symbol (*syms)->internal_elf_sym.st_size;
14577 }
14578 }
14579}
14580
14581#endif
14582
14583/* This function is called whenever a label is defined. It is used
14584 when handling branch delays; if a branch has a label, we assume we
14585 can not move it. */
14586
14587void
17a2f251 14588mips_define_label (symbolS *sym)
252b5132 14589{
a8dbcb85 14590 segment_info_type *si = seg_info (now_seg);
252b5132
RH
14591 struct insn_label_list *l;
14592
14593 if (free_insn_labels == NULL)
14594 l = (struct insn_label_list *) xmalloc (sizeof *l);
14595 else
14596 {
14597 l = free_insn_labels;
14598 free_insn_labels = l->next;
14599 }
14600
14601 l->label = sym;
a8dbcb85
TS
14602 l->next = si->label_list;
14603 si->label_list = l;
07a53e5c
RH
14604
14605#ifdef OBJ_ELF
14606 dwarf2_emit_label (sym);
14607#endif
252b5132
RH
14608}
14609\f
14610#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
14611
14612/* Some special processing for a MIPS ELF file. */
14613
14614void
17a2f251 14615mips_elf_final_processing (void)
252b5132
RH
14616{
14617 /* Write out the register information. */
316f5878 14618 if (mips_abi != N64_ABI)
252b5132
RH
14619 {
14620 Elf32_RegInfo s;
14621
14622 s.ri_gprmask = mips_gprmask;
14623 s.ri_cprmask[0] = mips_cprmask[0];
14624 s.ri_cprmask[1] = mips_cprmask[1];
14625 s.ri_cprmask[2] = mips_cprmask[2];
14626 s.ri_cprmask[3] = mips_cprmask[3];
14627 /* The gp_value field is set by the MIPS ELF backend. */
14628
14629 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
14630 ((Elf32_External_RegInfo *)
14631 mips_regmask_frag));
14632 }
14633 else
14634 {
14635 Elf64_Internal_RegInfo s;
14636
14637 s.ri_gprmask = mips_gprmask;
14638 s.ri_pad = 0;
14639 s.ri_cprmask[0] = mips_cprmask[0];
14640 s.ri_cprmask[1] = mips_cprmask[1];
14641 s.ri_cprmask[2] = mips_cprmask[2];
14642 s.ri_cprmask[3] = mips_cprmask[3];
14643 /* The gp_value field is set by the MIPS ELF backend. */
14644
14645 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
14646 ((Elf64_External_RegInfo *)
14647 mips_regmask_frag));
14648 }
14649
14650 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
14651 sort of BFD interface for this. */
14652 if (mips_any_noreorder)
14653 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
14654 if (mips_pic != NO_PIC)
143d77c5 14655 {
252b5132 14656 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
143d77c5
EC
14657 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
14658 }
14659 if (mips_abicalls)
14660 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
252b5132 14661
98d3f06f 14662 /* Set MIPS ELF flags for ASEs. */
74cd071d
CF
14663 /* We may need to define a new flag for DSP ASE, and set this flag when
14664 file_ase_dsp is true. */
8b082fb1 14665 /* Same for DSP R2. */
ef2e4d86
CF
14666 /* We may need to define a new flag for MT ASE, and set this flag when
14667 file_ase_mt is true. */
a4672219
TS
14668 if (file_ase_mips16)
14669 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
1f25f5d3
CD
14670#if 0 /* XXX FIXME */
14671 if (file_ase_mips3d)
14672 elf_elfheader (stdoutput)->e_flags |= ???;
14673#endif
deec1734
CD
14674 if (file_ase_mdmx)
14675 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
1f25f5d3 14676
bdaaa2e1 14677 /* Set the MIPS ELF ABI flags. */
316f5878 14678 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
252b5132 14679 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
316f5878 14680 else if (mips_abi == O64_ABI)
252b5132 14681 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
316f5878 14682 else if (mips_abi == EABI_ABI)
252b5132 14683 {
316f5878 14684 if (!file_mips_gp32)
252b5132
RH
14685 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
14686 else
14687 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
14688 }
316f5878 14689 else if (mips_abi == N32_ABI)
be00bddd
TS
14690 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
14691
c9914766 14692 /* Nothing to do for N64_ABI. */
252b5132
RH
14693
14694 if (mips_32bitmode)
14695 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
ad3fea08
TS
14696
14697#if 0 /* XXX FIXME */
14698 /* 32 bit code with 64 bit FP registers. */
14699 if (!file_mips_fp32 && ABI_NEEDS_32BIT_REGS (mips_abi))
14700 elf_elfheader (stdoutput)->e_flags |= ???;
14701#endif
252b5132
RH
14702}
14703
14704#endif /* OBJ_ELF || OBJ_MAYBE_ELF */
14705\f
beae10d5 14706typedef struct proc {
9b2f1d35
EC
14707 symbolS *func_sym;
14708 symbolS *func_end_sym;
beae10d5
KH
14709 unsigned long reg_mask;
14710 unsigned long reg_offset;
14711 unsigned long fpreg_mask;
14712 unsigned long fpreg_offset;
14713 unsigned long frame_offset;
14714 unsigned long frame_reg;
14715 unsigned long pc_reg;
14716} procS;
252b5132
RH
14717
14718static procS cur_proc;
14719static procS *cur_proc_ptr;
14720static int numprocs;
14721
742a56fe
RS
14722/* Implement NOP_OPCODE. We encode a MIPS16 nop as "1" and a normal
14723 nop as "0". */
14724
14725char
14726mips_nop_opcode (void)
14727{
14728 return seg_info (now_seg)->tc_segment_info_data.mips16;
14729}
14730
14731/* Fill in an rs_align_code fragment. This only needs to do something
14732 for MIPS16 code, where 0 is not a nop. */
a19d8eb0 14733
0a9ef439 14734void
17a2f251 14735mips_handle_align (fragS *fragp)
a19d8eb0 14736{
742a56fe
RS
14737 char *p;
14738
0a9ef439
RH
14739 if (fragp->fr_type != rs_align_code)
14740 return;
14741
742a56fe
RS
14742 p = fragp->fr_literal + fragp->fr_fix;
14743 if (*p)
a19d8eb0 14744 {
0a9ef439 14745 int bytes;
a19d8eb0 14746
0a9ef439 14747 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
0a9ef439
RH
14748 if (bytes & 1)
14749 {
14750 *p++ = 0;
f9419b05 14751 fragp->fr_fix++;
0a9ef439 14752 }
742a56fe 14753 md_number_to_chars (p, mips16_nop_insn.insn_opcode, 2);
0a9ef439 14754 fragp->fr_var = 2;
a19d8eb0 14755 }
a19d8eb0
CP
14756}
14757
252b5132 14758static void
17a2f251 14759md_obj_begin (void)
252b5132
RH
14760{
14761}
14762
14763static void
17a2f251 14764md_obj_end (void)
252b5132 14765{
54f4ddb3 14766 /* Check for premature end, nesting errors, etc. */
252b5132 14767 if (cur_proc_ptr)
9a41af64 14768 as_warn (_("missing .end at end of assembly"));
252b5132
RH
14769}
14770
14771static long
17a2f251 14772get_number (void)
252b5132
RH
14773{
14774 int negative = 0;
14775 long val = 0;
14776
14777 if (*input_line_pointer == '-')
14778 {
14779 ++input_line_pointer;
14780 negative = 1;
14781 }
3882b010 14782 if (!ISDIGIT (*input_line_pointer))
956cd1d6 14783 as_bad (_("expected simple number"));
252b5132
RH
14784 if (input_line_pointer[0] == '0')
14785 {
14786 if (input_line_pointer[1] == 'x')
14787 {
14788 input_line_pointer += 2;
3882b010 14789 while (ISXDIGIT (*input_line_pointer))
252b5132
RH
14790 {
14791 val <<= 4;
14792 val |= hex_value (*input_line_pointer++);
14793 }
14794 return negative ? -val : val;
14795 }
14796 else
14797 {
14798 ++input_line_pointer;
3882b010 14799 while (ISDIGIT (*input_line_pointer))
252b5132
RH
14800 {
14801 val <<= 3;
14802 val |= *input_line_pointer++ - '0';
14803 }
14804 return negative ? -val : val;
14805 }
14806 }
3882b010 14807 if (!ISDIGIT (*input_line_pointer))
252b5132
RH
14808 {
14809 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
14810 *input_line_pointer, *input_line_pointer);
956cd1d6 14811 as_warn (_("invalid number"));
252b5132
RH
14812 return -1;
14813 }
3882b010 14814 while (ISDIGIT (*input_line_pointer))
252b5132
RH
14815 {
14816 val *= 10;
14817 val += *input_line_pointer++ - '0';
14818 }
14819 return negative ? -val : val;
14820}
14821
14822/* The .file directive; just like the usual .file directive, but there
c5dd6aab
DJ
14823 is an initial number which is the ECOFF file index. In the non-ECOFF
14824 case .file implies DWARF-2. */
14825
14826static void
17a2f251 14827s_mips_file (int x ATTRIBUTE_UNUSED)
c5dd6aab 14828{
ecb4347a
DJ
14829 static int first_file_directive = 0;
14830
c5dd6aab
DJ
14831 if (ECOFF_DEBUGGING)
14832 {
14833 get_number ();
14834 s_app_file (0);
14835 }
14836 else
ecb4347a
DJ
14837 {
14838 char *filename;
14839
14840 filename = dwarf2_directive_file (0);
14841
14842 /* Versions of GCC up to 3.1 start files with a ".file"
14843 directive even for stabs output. Make sure that this
14844 ".file" is handled. Note that you need a version of GCC
14845 after 3.1 in order to support DWARF-2 on MIPS. */
14846 if (filename != NULL && ! first_file_directive)
14847 {
14848 (void) new_logical_line (filename, -1);
c04f5787 14849 s_app_file_string (filename, 0);
ecb4347a
DJ
14850 }
14851 first_file_directive = 1;
14852 }
c5dd6aab
DJ
14853}
14854
14855/* The .loc directive, implying DWARF-2. */
252b5132
RH
14856
14857static void
17a2f251 14858s_mips_loc (int x ATTRIBUTE_UNUSED)
252b5132 14859{
c5dd6aab
DJ
14860 if (!ECOFF_DEBUGGING)
14861 dwarf2_directive_loc (0);
252b5132
RH
14862}
14863
252b5132
RH
14864/* The .end directive. */
14865
14866static void
17a2f251 14867s_mips_end (int x ATTRIBUTE_UNUSED)
252b5132
RH
14868{
14869 symbolS *p;
252b5132 14870
7a621144
DJ
14871 /* Following functions need their own .frame and .cprestore directives. */
14872 mips_frame_reg_valid = 0;
14873 mips_cprestore_valid = 0;
14874
252b5132
RH
14875 if (!is_end_of_line[(unsigned char) *input_line_pointer])
14876 {
14877 p = get_symbol ();
14878 demand_empty_rest_of_line ();
14879 }
14880 else
14881 p = NULL;
14882
14949570 14883 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
252b5132
RH
14884 as_warn (_(".end not in text section"));
14885
14886 if (!cur_proc_ptr)
14887 {
14888 as_warn (_(".end directive without a preceding .ent directive."));
14889 demand_empty_rest_of_line ();
14890 return;
14891 }
14892
14893 if (p != NULL)
14894 {
14895 assert (S_GET_NAME (p));
9b2f1d35 14896 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
252b5132 14897 as_warn (_(".end symbol does not match .ent symbol."));
ecb4347a
DJ
14898
14899 if (debug_type == DEBUG_STABS)
14900 stabs_generate_asm_endfunc (S_GET_NAME (p),
14901 S_GET_NAME (p));
252b5132
RH
14902 }
14903 else
14904 as_warn (_(".end directive missing or unknown symbol"));
14905
2132e3a3 14906#ifdef OBJ_ELF
9b2f1d35
EC
14907 /* Create an expression to calculate the size of the function. */
14908 if (p && cur_proc_ptr)
14909 {
14910 OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
14911 expressionS *exp = xmalloc (sizeof (expressionS));
14912
14913 obj->size = exp;
14914 exp->X_op = O_subtract;
14915 exp->X_add_symbol = symbol_temp_new_now ();
14916 exp->X_op_symbol = p;
14917 exp->X_add_number = 0;
14918
14919 cur_proc_ptr->func_end_sym = exp->X_add_symbol;
14920 }
14921
ecb4347a 14922 /* Generate a .pdr section. */
f43abd2b 14923 if (IS_ELF && !ECOFF_DEBUGGING && mips_flag_pdr)
ecb4347a
DJ
14924 {
14925 segT saved_seg = now_seg;
14926 subsegT saved_subseg = now_subseg;
14927 valueT dot;
14928 expressionS exp;
14929 char *fragp;
252b5132 14930
ecb4347a 14931 dot = frag_now_fix ();
252b5132
RH
14932
14933#ifdef md_flush_pending_output
ecb4347a 14934 md_flush_pending_output ();
252b5132
RH
14935#endif
14936
ecb4347a
DJ
14937 assert (pdr_seg);
14938 subseg_set (pdr_seg, 0);
252b5132 14939
ecb4347a
DJ
14940 /* Write the symbol. */
14941 exp.X_op = O_symbol;
14942 exp.X_add_symbol = p;
14943 exp.X_add_number = 0;
14944 emit_expr (&exp, 4);
252b5132 14945
ecb4347a 14946 fragp = frag_more (7 * 4);
252b5132 14947
17a2f251
TS
14948 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
14949 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
14950 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
14951 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
14952 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
14953 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
14954 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
252b5132 14955
ecb4347a
DJ
14956 subseg_set (saved_seg, saved_subseg);
14957 }
14958#endif /* OBJ_ELF */
252b5132
RH
14959
14960 cur_proc_ptr = NULL;
14961}
14962
14963/* The .aent and .ent directives. */
14964
14965static void
17a2f251 14966s_mips_ent (int aent)
252b5132 14967{
252b5132 14968 symbolS *symbolP;
252b5132
RH
14969
14970 symbolP = get_symbol ();
14971 if (*input_line_pointer == ',')
f9419b05 14972 ++input_line_pointer;
252b5132 14973 SKIP_WHITESPACE ();
3882b010 14974 if (ISDIGIT (*input_line_pointer)
d9a62219 14975 || *input_line_pointer == '-')
874e8986 14976 get_number ();
252b5132 14977
14949570 14978 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
252b5132
RH
14979 as_warn (_(".ent or .aent not in text section."));
14980
14981 if (!aent && cur_proc_ptr)
9a41af64 14982 as_warn (_("missing .end"));
252b5132
RH
14983
14984 if (!aent)
14985 {
7a621144
DJ
14986 /* This function needs its own .frame and .cprestore directives. */
14987 mips_frame_reg_valid = 0;
14988 mips_cprestore_valid = 0;
14989
252b5132
RH
14990 cur_proc_ptr = &cur_proc;
14991 memset (cur_proc_ptr, '\0', sizeof (procS));
14992
9b2f1d35 14993 cur_proc_ptr->func_sym = symbolP;
252b5132 14994
49309057 14995 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
252b5132 14996
f9419b05 14997 ++numprocs;
ecb4347a
DJ
14998
14999 if (debug_type == DEBUG_STABS)
15000 stabs_generate_asm_func (S_GET_NAME (symbolP),
15001 S_GET_NAME (symbolP));
252b5132
RH
15002 }
15003
15004 demand_empty_rest_of_line ();
15005}
15006
15007/* The .frame directive. If the mdebug section is present (IRIX 5 native)
bdaaa2e1 15008 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
252b5132 15009 s_mips_frame is used so that we can set the PDR information correctly.
bdaaa2e1 15010 We can't use the ecoff routines because they make reference to the ecoff
252b5132
RH
15011 symbol table (in the mdebug section). */
15012
15013static void
17a2f251 15014s_mips_frame (int ignore ATTRIBUTE_UNUSED)
252b5132 15015{
ecb4347a 15016#ifdef OBJ_ELF
f43abd2b 15017 if (IS_ELF && !ECOFF_DEBUGGING)
ecb4347a
DJ
15018 {
15019 long val;
252b5132 15020
ecb4347a
DJ
15021 if (cur_proc_ptr == (procS *) NULL)
15022 {
15023 as_warn (_(".frame outside of .ent"));
15024 demand_empty_rest_of_line ();
15025 return;
15026 }
252b5132 15027
ecb4347a
DJ
15028 cur_proc_ptr->frame_reg = tc_get_register (1);
15029
15030 SKIP_WHITESPACE ();
15031 if (*input_line_pointer++ != ','
15032 || get_absolute_expression_and_terminator (&val) != ',')
15033 {
15034 as_warn (_("Bad .frame directive"));
15035 --input_line_pointer;
15036 demand_empty_rest_of_line ();
15037 return;
15038 }
252b5132 15039
ecb4347a
DJ
15040 cur_proc_ptr->frame_offset = val;
15041 cur_proc_ptr->pc_reg = tc_get_register (0);
252b5132 15042
252b5132 15043 demand_empty_rest_of_line ();
252b5132 15044 }
ecb4347a
DJ
15045 else
15046#endif /* OBJ_ELF */
15047 s_ignore (ignore);
252b5132
RH
15048}
15049
bdaaa2e1
KH
15050/* The .fmask and .mask directives. If the mdebug section is present
15051 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
252b5132 15052 embedded targets, s_mips_mask is used so that we can set the PDR
bdaaa2e1 15053 information correctly. We can't use the ecoff routines because they
252b5132
RH
15054 make reference to the ecoff symbol table (in the mdebug section). */
15055
15056static void
17a2f251 15057s_mips_mask (int reg_type)
252b5132 15058{
ecb4347a 15059#ifdef OBJ_ELF
f43abd2b 15060 if (IS_ELF && !ECOFF_DEBUGGING)
252b5132 15061 {
ecb4347a 15062 long mask, off;
252b5132 15063
ecb4347a
DJ
15064 if (cur_proc_ptr == (procS *) NULL)
15065 {
15066 as_warn (_(".mask/.fmask outside of .ent"));
15067 demand_empty_rest_of_line ();
15068 return;
15069 }
252b5132 15070
ecb4347a
DJ
15071 if (get_absolute_expression_and_terminator (&mask) != ',')
15072 {
15073 as_warn (_("Bad .mask/.fmask directive"));
15074 --input_line_pointer;
15075 demand_empty_rest_of_line ();
15076 return;
15077 }
252b5132 15078
ecb4347a
DJ
15079 off = get_absolute_expression ();
15080
15081 if (reg_type == 'F')
15082 {
15083 cur_proc_ptr->fpreg_mask = mask;
15084 cur_proc_ptr->fpreg_offset = off;
15085 }
15086 else
15087 {
15088 cur_proc_ptr->reg_mask = mask;
15089 cur_proc_ptr->reg_offset = off;
15090 }
15091
15092 demand_empty_rest_of_line ();
252b5132
RH
15093 }
15094 else
ecb4347a
DJ
15095#endif /* OBJ_ELF */
15096 s_ignore (reg_type);
252b5132
RH
15097}
15098
316f5878
RS
15099/* A table describing all the processors gas knows about. Names are
15100 matched in the order listed.
e7af610e 15101
316f5878
RS
15102 To ease comparison, please keep this table in the same order as
15103 gcc's mips_cpu_info_table[]. */
e972090a
NC
15104static const struct mips_cpu_info mips_cpu_info_table[] =
15105{
316f5878 15106 /* Entries for generic ISAs */
ad3fea08
TS
15107 { "mips1", MIPS_CPU_IS_ISA, ISA_MIPS1, CPU_R3000 },
15108 { "mips2", MIPS_CPU_IS_ISA, ISA_MIPS2, CPU_R6000 },
15109 { "mips3", MIPS_CPU_IS_ISA, ISA_MIPS3, CPU_R4000 },
15110 { "mips4", MIPS_CPU_IS_ISA, ISA_MIPS4, CPU_R8000 },
15111 { "mips5", MIPS_CPU_IS_ISA, ISA_MIPS5, CPU_MIPS5 },
15112 { "mips32", MIPS_CPU_IS_ISA, ISA_MIPS32, CPU_MIPS32 },
15113 { "mips32r2", MIPS_CPU_IS_ISA, ISA_MIPS32R2, CPU_MIPS32R2 },
15114 { "mips64", MIPS_CPU_IS_ISA, ISA_MIPS64, CPU_MIPS64 },
15115 { "mips64r2", MIPS_CPU_IS_ISA, ISA_MIPS64R2, CPU_MIPS64R2 },
316f5878
RS
15116
15117 /* MIPS I */
ad3fea08
TS
15118 { "r3000", 0, ISA_MIPS1, CPU_R3000 },
15119 { "r2000", 0, ISA_MIPS1, CPU_R3000 },
15120 { "r3900", 0, ISA_MIPS1, CPU_R3900 },
316f5878
RS
15121
15122 /* MIPS II */
ad3fea08 15123 { "r6000", 0, ISA_MIPS2, CPU_R6000 },
316f5878
RS
15124
15125 /* MIPS III */
ad3fea08
TS
15126 { "r4000", 0, ISA_MIPS3, CPU_R4000 },
15127 { "r4010", 0, ISA_MIPS2, CPU_R4010 },
15128 { "vr4100", 0, ISA_MIPS3, CPU_VR4100 },
15129 { "vr4111", 0, ISA_MIPS3, CPU_R4111 },
15130 { "vr4120", 0, ISA_MIPS3, CPU_VR4120 },
15131 { "vr4130", 0, ISA_MIPS3, CPU_VR4120 },
15132 { "vr4181", 0, ISA_MIPS3, CPU_R4111 },
15133 { "vr4300", 0, ISA_MIPS3, CPU_R4300 },
15134 { "r4400", 0, ISA_MIPS3, CPU_R4400 },
15135 { "r4600", 0, ISA_MIPS3, CPU_R4600 },
15136 { "orion", 0, ISA_MIPS3, CPU_R4600 },
15137 { "r4650", 0, ISA_MIPS3, CPU_R4650 },
b15591bb
AN
15138 /* ST Microelectronics Loongson 2E and 2F cores */
15139 { "loongson2e", 0, ISA_MIPS3, CPU_LOONGSON_2E },
15140 { "loongson2f", 0, ISA_MIPS3, CPU_LOONGSON_2F },
316f5878
RS
15141
15142 /* MIPS IV */
ad3fea08
TS
15143 { "r8000", 0, ISA_MIPS4, CPU_R8000 },
15144 { "r10000", 0, ISA_MIPS4, CPU_R10000 },
15145 { "r12000", 0, ISA_MIPS4, CPU_R12000 },
3aa3176b
TS
15146 { "r14000", 0, ISA_MIPS4, CPU_R14000 },
15147 { "r16000", 0, ISA_MIPS4, CPU_R16000 },
ad3fea08
TS
15148 { "vr5000", 0, ISA_MIPS4, CPU_R5000 },
15149 { "vr5400", 0, ISA_MIPS4, CPU_VR5400 },
15150 { "vr5500", 0, ISA_MIPS4, CPU_VR5500 },
15151 { "rm5200", 0, ISA_MIPS4, CPU_R5000 },
15152 { "rm5230", 0, ISA_MIPS4, CPU_R5000 },
15153 { "rm5231", 0, ISA_MIPS4, CPU_R5000 },
15154 { "rm5261", 0, ISA_MIPS4, CPU_R5000 },
15155 { "rm5721", 0, ISA_MIPS4, CPU_R5000 },
15156 { "rm7000", 0, ISA_MIPS4, CPU_RM7000 },
15157 { "rm9000", 0, ISA_MIPS4, CPU_RM9000 },
316f5878
RS
15158
15159 /* MIPS 32 */
ad3fea08
TS
15160 { "4kc", 0, ISA_MIPS32, CPU_MIPS32 },
15161 { "4km", 0, ISA_MIPS32, CPU_MIPS32 },
15162 { "4kp", 0, ISA_MIPS32, CPU_MIPS32 },
15163 { "4ksc", MIPS_CPU_ASE_SMARTMIPS, ISA_MIPS32, CPU_MIPS32 },
15164
15165 /* MIPS 32 Release 2 */
15166 { "4kec", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15167 { "4kem", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15168 { "4kep", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15169 { "4ksd", MIPS_CPU_ASE_SMARTMIPS, ISA_MIPS32R2, CPU_MIPS32R2 },
15170 { "m4k", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15171 { "m4kp", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
ad3fea08 15172 { "24kc", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951 15173 { "24kf2_1", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
ad3fea08 15174 { "24kf", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15175 { "24kf1_1", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15176 /* Deprecated forms of the above. */
15177 { "24kfx", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
ad3fea08 15178 { "24kx", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f 15179 /* 24KE is a 24K with DSP ASE, other ASEs are optional. */
ad3fea08 15180 { "24kec", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951 15181 { "24kef2_1", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
ad3fea08 15182 { "24kef", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15183 { "24kef1_1", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
15184 /* Deprecated forms of the above. */
15185 { "24kefx", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
65263ce3 15186 { "24kex", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f 15187 /* 34K is a 24K with DSP and MT ASE, other ASEs are optional. */
a360e743
TS
15188 { "34kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15189 ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15190 { "34kf2_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15191 ISA_MIPS32R2, CPU_MIPS32R2 },
a360e743
TS
15192 { "34kf", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15193 ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15194 { "34kf1_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15195 ISA_MIPS32R2, CPU_MIPS32R2 },
15196 /* Deprecated forms of the above. */
15197 { "34kfx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15198 ISA_MIPS32R2, CPU_MIPS32R2 },
a360e743
TS
15199 { "34kx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15200 ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f
TS
15201 /* 74K with DSP and DSPR2 ASE, other ASEs are optional. */
15202 { "74kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15203 ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15204 { "74kf2_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15205 ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f
TS
15206 { "74kf", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15207 ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951
RS
15208 { "74kf1_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15209 ISA_MIPS32R2, CPU_MIPS32R2 },
15210 { "74kf3_2", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15211 ISA_MIPS32R2, CPU_MIPS32R2 },
15212 /* Deprecated forms of the above. */
15213 { "74kfx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15214 ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f
TS
15215 { "74kx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15216 ISA_MIPS32R2, CPU_MIPS32R2 },
32b26a03 15217
316f5878 15218 /* MIPS 64 */
ad3fea08
TS
15219 { "5kc", 0, ISA_MIPS64, CPU_MIPS64 },
15220 { "5kf", 0, ISA_MIPS64, CPU_MIPS64 },
15221 { "20kc", MIPS_CPU_ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
7764b395 15222 { "25kf", MIPS_CPU_ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
ad3fea08 15223
c7a23324 15224 /* Broadcom SB-1 CPU core */
65263ce3
TS
15225 { "sb1", MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
15226 ISA_MIPS64, CPU_SB1 },
1e85aad8
JW
15227 /* Broadcom SB-1A CPU core */
15228 { "sb1a", MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
15229 ISA_MIPS64, CPU_SB1 },
e7af610e 15230
ed163775
MR
15231 /* MIPS 64 Release 2 */
15232
967344c6
AN
15233 /* Cavium Networks Octeon CPU core */
15234 { "octeon", 0, ISA_MIPS64R2, CPU_OCTEON },
15235
52b6b6b9
JM
15236 /* RMI Xlr */
15237 { "xlr", 0, ISA_MIPS64, CPU_XLR },
15238
316f5878
RS
15239 /* End marker */
15240 { NULL, 0, 0, 0 }
15241};
e7af610e 15242
84ea6cf2 15243
316f5878
RS
15244/* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
15245 with a final "000" replaced by "k". Ignore case.
e7af610e 15246
316f5878 15247 Note: this function is shared between GCC and GAS. */
c6c98b38 15248
b34976b6 15249static bfd_boolean
17a2f251 15250mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
316f5878
RS
15251{
15252 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
15253 given++, canonical++;
15254
15255 return ((*given == 0 && *canonical == 0)
15256 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
15257}
15258
15259
15260/* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
15261 CPU name. We've traditionally allowed a lot of variation here.
15262
15263 Note: this function is shared between GCC and GAS. */
15264
b34976b6 15265static bfd_boolean
17a2f251 15266mips_matching_cpu_name_p (const char *canonical, const char *given)
316f5878
RS
15267{
15268 /* First see if the name matches exactly, or with a final "000"
15269 turned into "k". */
15270 if (mips_strict_matching_cpu_name_p (canonical, given))
b34976b6 15271 return TRUE;
316f5878
RS
15272
15273 /* If not, try comparing based on numerical designation alone.
15274 See if GIVEN is an unadorned number, or 'r' followed by a number. */
15275 if (TOLOWER (*given) == 'r')
15276 given++;
15277 if (!ISDIGIT (*given))
b34976b6 15278 return FALSE;
316f5878
RS
15279
15280 /* Skip over some well-known prefixes in the canonical name,
15281 hoping to find a number there too. */
15282 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
15283 canonical += 2;
15284 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
15285 canonical += 2;
15286 else if (TOLOWER (canonical[0]) == 'r')
15287 canonical += 1;
15288
15289 return mips_strict_matching_cpu_name_p (canonical, given);
15290}
15291
15292
15293/* Parse an option that takes the name of a processor as its argument.
15294 OPTION is the name of the option and CPU_STRING is the argument.
15295 Return the corresponding processor enumeration if the CPU_STRING is
15296 recognized, otherwise report an error and return null.
15297
15298 A similar function exists in GCC. */
e7af610e
NC
15299
15300static const struct mips_cpu_info *
17a2f251 15301mips_parse_cpu (const char *option, const char *cpu_string)
e7af610e 15302{
316f5878 15303 const struct mips_cpu_info *p;
e7af610e 15304
316f5878
RS
15305 /* 'from-abi' selects the most compatible architecture for the given
15306 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
15307 EABIs, we have to decide whether we're using the 32-bit or 64-bit
15308 version. Look first at the -mgp options, if given, otherwise base
15309 the choice on MIPS_DEFAULT_64BIT.
e7af610e 15310
316f5878
RS
15311 Treat NO_ABI like the EABIs. One reason to do this is that the
15312 plain 'mips' and 'mips64' configs have 'from-abi' as their default
15313 architecture. This code picks MIPS I for 'mips' and MIPS III for
15314 'mips64', just as we did in the days before 'from-abi'. */
15315 if (strcasecmp (cpu_string, "from-abi") == 0)
15316 {
15317 if (ABI_NEEDS_32BIT_REGS (mips_abi))
15318 return mips_cpu_info_from_isa (ISA_MIPS1);
15319
15320 if (ABI_NEEDS_64BIT_REGS (mips_abi))
15321 return mips_cpu_info_from_isa (ISA_MIPS3);
15322
15323 if (file_mips_gp32 >= 0)
15324 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
15325
15326 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
15327 ? ISA_MIPS3
15328 : ISA_MIPS1);
15329 }
15330
15331 /* 'default' has traditionally been a no-op. Probably not very useful. */
15332 if (strcasecmp (cpu_string, "default") == 0)
15333 return 0;
15334
15335 for (p = mips_cpu_info_table; p->name != 0; p++)
15336 if (mips_matching_cpu_name_p (p->name, cpu_string))
15337 return p;
15338
15339 as_bad ("Bad value (%s) for %s", cpu_string, option);
15340 return 0;
e7af610e
NC
15341}
15342
316f5878
RS
15343/* Return the canonical processor information for ISA (a member of the
15344 ISA_MIPS* enumeration). */
15345
e7af610e 15346static const struct mips_cpu_info *
17a2f251 15347mips_cpu_info_from_isa (int isa)
e7af610e
NC
15348{
15349 int i;
15350
15351 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
ad3fea08 15352 if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA)
316f5878 15353 && isa == mips_cpu_info_table[i].isa)
e7af610e
NC
15354 return (&mips_cpu_info_table[i]);
15355
e972090a 15356 return NULL;
e7af610e 15357}
fef14a42
TS
15358
15359static const struct mips_cpu_info *
17a2f251 15360mips_cpu_info_from_arch (int arch)
fef14a42
TS
15361{
15362 int i;
15363
15364 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
15365 if (arch == mips_cpu_info_table[i].cpu)
15366 return (&mips_cpu_info_table[i]);
15367
15368 return NULL;
15369}
316f5878
RS
15370\f
15371static void
17a2f251 15372show (FILE *stream, const char *string, int *col_p, int *first_p)
316f5878
RS
15373{
15374 if (*first_p)
15375 {
15376 fprintf (stream, "%24s", "");
15377 *col_p = 24;
15378 }
15379 else
15380 {
15381 fprintf (stream, ", ");
15382 *col_p += 2;
15383 }
e7af610e 15384
316f5878
RS
15385 if (*col_p + strlen (string) > 72)
15386 {
15387 fprintf (stream, "\n%24s", "");
15388 *col_p = 24;
15389 }
15390
15391 fprintf (stream, "%s", string);
15392 *col_p += strlen (string);
15393
15394 *first_p = 0;
15395}
15396
15397void
17a2f251 15398md_show_usage (FILE *stream)
e7af610e 15399{
316f5878
RS
15400 int column, first;
15401 size_t i;
15402
15403 fprintf (stream, _("\
15404MIPS options:\n\
316f5878
RS
15405-EB generate big endian output\n\
15406-EL generate little endian output\n\
15407-g, -g2 do not remove unneeded NOPs or swap branches\n\
15408-G NUM allow referencing objects up to NUM bytes\n\
15409 implicitly with the gp register [default 8]\n"));
15410 fprintf (stream, _("\
15411-mips1 generate MIPS ISA I instructions\n\
15412-mips2 generate MIPS ISA II instructions\n\
15413-mips3 generate MIPS ISA III instructions\n\
15414-mips4 generate MIPS ISA IV instructions\n\
15415-mips5 generate MIPS ISA V instructions\n\
15416-mips32 generate MIPS32 ISA instructions\n\
af7ee8bf 15417-mips32r2 generate MIPS32 release 2 ISA instructions\n\
316f5878 15418-mips64 generate MIPS64 ISA instructions\n\
5f74bc13 15419-mips64r2 generate MIPS64 release 2 ISA instructions\n\
316f5878
RS
15420-march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
15421
15422 first = 1;
e7af610e
NC
15423
15424 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
316f5878
RS
15425 show (stream, mips_cpu_info_table[i].name, &column, &first);
15426 show (stream, "from-abi", &column, &first);
15427 fputc ('\n', stream);
e7af610e 15428
316f5878
RS
15429 fprintf (stream, _("\
15430-mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
15431-no-mCPU don't generate code specific to CPU.\n\
15432 For -mCPU and -no-mCPU, CPU must be one of:\n"));
15433
15434 first = 1;
15435
15436 show (stream, "3900", &column, &first);
15437 show (stream, "4010", &column, &first);
15438 show (stream, "4100", &column, &first);
15439 show (stream, "4650", &column, &first);
15440 fputc ('\n', stream);
15441
15442 fprintf (stream, _("\
15443-mips16 generate mips16 instructions\n\
15444-no-mips16 do not generate mips16 instructions\n"));
15445 fprintf (stream, _("\
e16bfa71
TS
15446-msmartmips generate smartmips instructions\n\
15447-mno-smartmips do not generate smartmips instructions\n"));
15448 fprintf (stream, _("\
74cd071d
CF
15449-mdsp generate DSP instructions\n\
15450-mno-dsp do not generate DSP instructions\n"));
15451 fprintf (stream, _("\
8b082fb1
TS
15452-mdspr2 generate DSP R2 instructions\n\
15453-mno-dspr2 do not generate DSP R2 instructions\n"));
15454 fprintf (stream, _("\
ef2e4d86
CF
15455-mmt generate MT instructions\n\
15456-mno-mt do not generate MT instructions\n"));
15457 fprintf (stream, _("\
d766e8ec 15458-mfix-vr4120 work around certain VR4120 errata\n\
7d8e00cf 15459-mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
316f5878
RS
15460-mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
15461-mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
aed1a261 15462-msym32 assume all symbols have 32-bit values\n\
316f5878
RS
15463-O0 remove unneeded NOPs, do not swap branches\n\
15464-O remove unneeded NOPs and swap branches\n\
316f5878
RS
15465--trap, --no-break trap exception on div by 0 and mult overflow\n\
15466--break, --no-trap break exception on div by 0 and mult overflow\n"));
037b32b9
AN
15467 fprintf (stream, _("\
15468-mhard-float allow floating-point instructions\n\
15469-msoft-float do not allow floating-point instructions\n\
15470-msingle-float only allow 32-bit floating-point operations\n\
15471-mdouble-float allow 32-bit and 64-bit floating-point operations\n\
15472--[no-]construct-floats [dis]allow floating point values to be constructed\n"
15473 ));
316f5878
RS
15474#ifdef OBJ_ELF
15475 fprintf (stream, _("\
15476-KPIC, -call_shared generate SVR4 position independent code\n\
861fb55a 15477-call_nonpic generate non-PIC code that can operate with DSOs\n\
0c000745 15478-mvxworks-pic generate VxWorks position independent code\n\
861fb55a 15479-non_shared do not generate code that can operate with DSOs\n\
316f5878 15480-xgot assume a 32 bit GOT\n\
dcd410fe 15481-mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
bbe506e8 15482-mshared, -mno-shared disable/enable .cpload optimization for\n\
d821e36b 15483 position dependent (non shared) code\n\
316f5878
RS
15484-mabi=ABI create ABI conformant object file for:\n"));
15485
15486 first = 1;
15487
15488 show (stream, "32", &column, &first);
15489 show (stream, "o64", &column, &first);
15490 show (stream, "n32", &column, &first);
15491 show (stream, "64", &column, &first);
15492 show (stream, "eabi", &column, &first);
15493
15494 fputc ('\n', stream);
15495
15496 fprintf (stream, _("\
15497-32 create o32 ABI object file (default)\n\
15498-n32 create n32 ABI object file\n\
15499-64 create 64 ABI object file\n"));
15500#endif
e7af610e 15501}
14e777e0
KB
15502
15503enum dwarf2_format
413a266c 15504mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
14e777e0 15505{
369943fe 15506 if (HAVE_64BIT_SYMBOLS)
1de5b6a1
AO
15507 {
15508#ifdef TE_IRIX
15509 return dwarf2_format_64bit_irix;
15510#else
15511 return dwarf2_format_64bit;
15512#endif
15513 }
14e777e0
KB
15514 else
15515 return dwarf2_format_32bit;
15516}
73369e65
EC
15517
15518int
15519mips_dwarf2_addr_size (void)
15520{
6b6b3450 15521 if (HAVE_64BIT_OBJECTS)
73369e65 15522 return 8;
73369e65
EC
15523 else
15524 return 4;
15525}
5862107c
EC
15526
15527/* Standard calling conventions leave the CFA at SP on entry. */
15528void
15529mips_cfi_frame_initial_instructions (void)
15530{
15531 cfi_add_CFA_def_cfa_register (SP);
15532}
15533
707bfff6
TS
15534int
15535tc_mips_regname_to_dw2regnum (char *regname)
15536{
15537 unsigned int regnum = -1;
15538 unsigned int reg;
15539
15540 if (reg_lookup (&regname, RTYPE_GP | RTYPE_NUM, &reg))
15541 regnum = reg;
15542
15543 return regnum;
15544}
This page took 2.61581 seconds and 4 git commands to generate.